From 2794aeeed1c60869731545e31219cc32c337989d Mon Sep 17 00:00:00 2001 From: Maz-V Date: Wed, 7 Oct 2020 19:43:46 +0700 Subject: [PATCH 01/45] Adjusted the delay according to divine-pride (#5433) Adjusted the delay according to Divine-Pride * Adjusts the delay of Red_Syrup, Yellow_Syrup, White_Syrup, Blue_Syrup and Green_Ale. Thanks to @mazvi! --- db/re/item_delay.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/db/re/item_delay.txt b/db/re/item_delay.txt index 01fb16edc4..5b5afb6ca3 100644 --- a/db/re/item_delay.txt +++ b/db/re/item_delay.txt @@ -86,11 +86,11 @@ 12970,300000,SC_REUSE_LIMIT_RECALL //Emergency_Scroll3 // Misc -11621,10000 //Red_Syrup -11622,10000 //Yellow_Syrup -11623,10000 //White_Syrup +11621,1000 //Red_Syrup +11622,1000 //Yellow_Syrup +11623,1000 //White_Syrup 11624,10000 //Blue_Syrup -12135,10000 //Green_Ale +12135,3000 //Green_Ale //12202,60000 //Str_Dish10_ //12203,60000 //Agi_Dish10_ //12204,60000 //Int_Dish10_ From 00c02479dbf4fe5ec16c1c8adbe48f7544b3f4fc Mon Sep 17 00:00:00 2001 From: Aleos Date: Wed, 7 Oct 2020 09:45:58 -0400 Subject: [PATCH 02/45] Fixes Magnetic field behavior (#5423) * Fixes #5401. * Minor optimizations to core skill behavior. * Adjusts the status timer to be stored in val4. * Impose a unit lock before doing status damage. * Check for status state before attempting to reapply the status timer. Thanks to @LotusRO! --- src/map/skill.cpp | 16 ++++++++-------- src/map/status.cpp | 9 ++++++--- 2 files changed, 14 insertions(+), 11 deletions(-) diff --git a/src/map/skill.cpp b/src/map/skill.cpp index 29c263d885..7ab9ade4b7 100755 --- a/src/map/skill.cpp +++ b/src/map/skill.cpp @@ -5913,10 +5913,6 @@ int skill_castend_damage_id (struct block_list* src, struct block_list *bl, uint map_foreachinallrange(skill_area_sub, bl, skill_get_splash(skill_id, skill_lv), splash_target(src), src, skill_id, skill_lv, tick, flag|BCT_ENEMY|SD_SPLASH|1, skill_castend_damage_id); } break; - - case NC_MAGNETICFIELD: - sc_start2(src,bl,SC_MAGNETICFIELD,100,skill_lv,src->id,skill_get_time(skill_id,skill_lv)); - break; case SC_FATALMENACE: if( flag&1 ) skill_attack(BF_WEAPON,src,src,bl,skill_id,skill_lv,tick,flag); @@ -10227,10 +10223,14 @@ int skill_castend_nodamage_id (struct block_list *src, struct block_list *bl, ui break; case NC_MAGNETICFIELD: - clif_skill_damage(src,bl,tick,status_get_amotion(src),0,-30000,1,skill_id,skill_lv,DMG_SINGLE); - if (map_flag_vs(src->m)) // Doesn't affect the caster in non-PVP maps [exneval] - sc_start2(src,bl,type,100,skill_lv,src->id,skill_get_time(skill_id,skill_lv)); - map_foreachinallrange(skill_area_sub,bl,skill_get_splash(skill_id,skill_lv),splash_target(src),src,skill_id,skill_lv,tick,flag|BCT_ENEMY|SD_SPLASH|1,skill_castend_damage_id); + if (flag & 1) { + sc_start2(src, bl, SC_MAGNETICFIELD, 100, skill_lv, src->id, skill_get_time(skill_id, skill_lv)); + } else { + if (map_flag_vs(src->m)) // Doesn't affect the caster in non-PVP maps [exneval] + sc_start2(src, bl, type, 100, skill_lv, src->id, skill_get_time(skill_id, skill_lv)); + map_foreachinallrange(skill_area_sub, bl, skill_get_splash(skill_id, skill_lv), splash_target(src), src, skill_id, skill_lv, tick, flag | BCT_ENEMY | SD_SPLASH | 1, skill_castend_nodamage_id); + clif_skill_damage(src, bl, tick, status_get_amotion(src), 0, -30000, 1, skill_id, skill_lv, DMG_SINGLE); + } break; case NC_REPAIR: diff --git a/src/map/status.cpp b/src/map/status.cpp index 39081687fe..2fab6c7592 100644 --- a/src/map/status.cpp +++ b/src/map/status.cpp @@ -11564,8 +11564,8 @@ int status_change_start(struct block_list* src, struct block_list* bl,enum sc_ty tick_time = 5000; // [GodLesZ] tick time break; case SC_MAGNETICFIELD: - val3 = tick / 1000; tick_time = 1000; // [GodLesZ] tick time + val4 = tick / tick_time; break; case SC_INSPIRATION: val2 = (sd?sd->status.job_level:50); @@ -14510,14 +14510,17 @@ TIMER_FUNC(status_change_timer){ break; case SC_MAGNETICFIELD: - if (--(sce->val3) >= 0) { + if (--(sce->val4) >= 0) { struct block_list *src = map_id2bl(sce->val2); if (!src || (src && (status_isdead(src) || src->m != bl->m))) break; + map_freeblock_lock(); if (!status_charge(bl, 0, 50)) status_zap(bl, 0, status->sp); - sc_timer_next(1000 + tick); + if (sc->data[type]) + sc_timer_next(1000 + tick); + map_freeblock_unlock(); return 0; } break; From 0605037a0df6cb10ae5416f8f8fd47363dc3cc7f Mon Sep 17 00:00:00 2001 From: Aleos Date: Fri, 9 Oct 2020 08:16:42 -0400 Subject: [PATCH 03/45] Adjusts Filir's Pinions refineability (#5436) * Fixes #5415. * Filir's Pinions will no longer be refineable. Thanks to @AsuraPlop! --- db/pre-re/item_db.txt | 2 +- db/re/item_db.txt | 2 +- sql-files/item_db.sql | 2 +- sql-files/item_db_re.sql | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/db/pre-re/item_db.txt b/db/pre-re/item_db.txt index a29c80e420..ebe4fb4065 100644 --- a/db/pre-re/item_db.txt +++ b/db/pre-re/item_db.txt @@ -2844,7 +2844,7 @@ //5661,Red_Pirate_Bandana,Red Pirate Banada,4,0,,0,,3,,0,0xFFFFFFFF,7,2,256,,10,1,592,{ bonus bStr,1; bonus bDex,1; bonus bAspdRate,2; bonus bCastRate,-2; bonus3 bAutoSpell,"MO_EXTREMITYFIST",1,30; },{},{} //5662,Libra_Crown,Libra Crown,4,10,,300,,3,,0,0xFFFFFFFF,7,2,256,,1,1,593,{ bonus bDex,3; },{},{} //5663,Libra_Diadem,Libra Diadem,4,10,,300,,3,,0,0xFFFFFFFF,7,2,256,,1,1,594,{ bonus bDex,3; },{},{} -5664,Filir_Wing,Filir's Pinions,4,20,,100,,1,,0,0xFFFFFFFF,7,2,512,,70,1,595,{ bonus bAspdRate,2; bonus bCastRate,-2; },{},{} +5664,Filir_Wing,Filir's Pinions,4,20,,100,,1,,0,0xFFFFFFFF,7,2,512,,70,0,595,{ bonus bAspdRate,2; bonus bCastRate,-2; },{},{} 5665,Shaman_Hat,Shaman Hat,4,20,,400,,1,,1,0xFFFFFFFF,7,2,256,,1,1,596,{ bonus2 bSubEle,Ele_Neutral,3; bonus2 bSubEle,Ele_Water,3; bonus2 bSubEle,Ele_Earth,3; bonus2 bSubEle,Ele_Fire,3; bonus2 bSubEle,Ele_Wind,3; bonus2 bSubEle,Ele_Poison,3; bonus2 bSubEle,Ele_Holy,3; bonus2 bSubEle,Ele_Dark,3; bonus2 bSubEle,Ele_Ghost,3; bonus2 bSubEle,Ele_Undead,3; },{},{} 5666,Golden_Crown,Golden Crown,4,20,,500,,8,,1,0xFFFFFFFF,7,2,256,,1,1,597,{ bonus bInt,1; bonus bDex,1; bonus bLuk,1; },{},{} 5667,Skull_Hood,Skull Hood,4,20,,100,,1,,1,0xFFFFFFFF,7,2,768,,30,1,598,{},{},{} diff --git a/db/re/item_db.txt b/db/re/item_db.txt index b862458e9e..72b2d2a948 100644 --- a/db/re/item_db.txt +++ b/db/re/item_db.txt @@ -3853,7 +3853,7 @@ 5661,Red_Pirate_Bandana,Red Pirate Bandana,4,0,,0,,3,,0,0xFFFFFFFF,63,2,256,,10,1,592,{ bonus bStr,1; bonus bDex,1; bonus bAspdRate,2; bonus bVariableCastrate,-2; bonus3 bAutoSpell,"MO_EXTREMITYFIST",1,3; },{},{} 5662,Libra_Crown,Libra Crown,4,10,,300,,3,,0,0xFFFFFFFF,63,2,256,,1,1,593,{ bonus bDex,3; bonus2 bSubEle,Ele_Wind,7; if (getrefine()>=7) { bonus bMatkRate,3; } if (getrefine()>=9) { bonus bMatkRate,5; bonus3 bAutoSpellWhenHit,"WZ_FROSTNOVA",5,20;} },{},{} 5663,Libra_Diadem,Libra Diadem,4,10,,300,,3,,0,0xFFFFFFFF,63,2,256,,1,1,594,{ bonus bBaseAtk,7; if (getrefine()>=7) { bonus3 bAutoSpell,"TK_SEVENWIND",2,5; } if (getrefine()>=9) { bonus bFlee,5; bonus2 bAddClass,Class_All,3; } },{},{} -5664,Filir_Wing,Filir's Pinions,4,20,,100,,1,,0,0xFFFFFFFF,63,2,512,,70,1,595,{ bonus bAspdRate,2; },{},{} +5664,Filir_Wing,Filir's Pinions,4,20,,100,,1,,0,0xFFFFFFFF,63,2,512,,70,0,595,{ bonus bAspdRate,2; },{},{} 5665,Shaman_Hat,Shaman Hat,4,20,,400,,1,,1,0xFFFFFFFF,63,2,256,,1,1,596,{ bonus bMdef,5; bonus2 bSubEle,Ele_Neutral,3; bonus2 bSubEle,Ele_Water,3; bonus2 bSubEle,Ele_Earth,3; bonus2 bSubEle,Ele_Fire,3; bonus2 bSubEle,Ele_Wind,3; bonus2 bSubEle,Ele_Poison,3; bonus2 bSubEle,Ele_Holy,3; bonus2 bSubEle,Ele_Dark,3; bonus2 bSubEle,Ele_Ghost,3; bonus2 bSubEle,Ele_Undead,3; },{},{} 5666,Golden_Crown,Golden Crown,4,20,,500,,8,,1,0xFFFFFFFF,63,2,256,,1,1,597,{ bonus bInt,1; bonus bDex,1; bonus bLuk,1; },{},{} 5667,Skull_Hood,Skull Hood,4,20,,100,,1,,1,0xFFFFFFFF,63,2,768,,30,1,598,{ bonus2 bSubRace,RC_Demon,10; bonus2 bSubRace,RC_Undead,10; if(getrefine()>=7) autobonus "{ bonus bCritical,30; bonus bHit,10; }",10,10000,0,"{ specialeffect2 EF_ENHANCE; }"; },{},{} diff --git a/sql-files/item_db.sql b/sql-files/item_db.sql index 8e201f6930..86890da8ce 100644 --- a/sql-files/item_db.sql +++ b/sql-files/item_db.sql @@ -2876,7 +2876,7 @@ REPLACE INTO `item_db` VALUES (5660,'Gryphon_Hat','Gryphon Hat',4,20,NULL,400,NU #REPLACE INTO `item_db` VALUES (5661,'Red_Pirate_Bandana','Red Pirate Banada',4,0,NULL,0,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,10,1,592,'bonus bStr,1; bonus bDex,1; bonus bAspdRate,2; bonus bCastRate,-2; bonus3 bAutoSpell,"MO_EXTREMITYFIST",1,30;',NULL,NULL); #REPLACE INTO `item_db` VALUES (5662,'Libra_Crown','Libra Crown',4,10,NULL,300,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,1,1,593,'bonus bDex,3;',NULL,NULL); #REPLACE INTO `item_db` VALUES (5663,'Libra_Diadem','Libra Diadem',4,10,NULL,300,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,1,1,594,'bonus bDex,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5664,'Filir_Wing','Filir\'s Pinions',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,512,NULL,70,1,595,'bonus bAspdRate,2; bonus bCastRate,-2;',NULL,NULL); +REPLACE INTO `item_db` VALUES (5664,'Filir_Wing','Filir\'s Pinions',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,512,NULL,70,0,595,'bonus bAspdRate,2; bonus bCastRate,-2;',NULL,NULL); REPLACE INTO `item_db` VALUES (5665,'Shaman_Hat','Shaman Hat',4,20,NULL,400,NULL,1,NULL,1,0xFFFFFFFF,7,2,256,NULL,1,1,596,'bonus2 bSubEle,Ele_Neutral,3; bonus2 bSubEle,Ele_Water,3; bonus2 bSubEle,Ele_Earth,3; bonus2 bSubEle,Ele_Fire,3; bonus2 bSubEle,Ele_Wind,3; bonus2 bSubEle,Ele_Poison,3; bonus2 bSubEle,Ele_Holy,3; bonus2 bSubEle,Ele_Dark,3; bonus2 bSubEle,Ele_Ghost,3; bonus2 bSubEle,Ele_Undead,3;',NULL,NULL); REPLACE INTO `item_db` VALUES (5666,'Golden_Crown','Golden Crown',4,20,NULL,500,NULL,8,NULL,1,0xFFFFFFFF,7,2,256,NULL,1,1,597,'bonus bInt,1; bonus bDex,1; bonus bLuk,1;',NULL,NULL); REPLACE INTO `item_db` VALUES (5667,'Skull_Hood','Skull Hood',4,20,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,7,2,768,NULL,30,1,598,NULL,NULL,NULL); diff --git a/sql-files/item_db_re.sql b/sql-files/item_db_re.sql index 35f2556abc..a822f15b3f 100644 --- a/sql-files/item_db_re.sql +++ b/sql-files/item_db_re.sql @@ -3885,7 +3885,7 @@ REPLACE INTO `item_db_re` VALUES (5660,'Gryphon_Hat','Gryphon Hat',4,20,NULL,400 REPLACE INTO `item_db_re` VALUES (5661,'Red_Pirate_Bandana','Red Pirate Bandana',4,0,NULL,0,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'10',1,592,'bonus bStr,1; bonus bDex,1; bonus bAspdRate,2; bonus bVariableCastrate,-2; bonus3 bAutoSpell,"MO_EXTREMITYFIST",1,3;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (5662,'Libra_Crown','Libra Crown',4,10,NULL,300,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,593,'bonus bDex,3; bonus2 bSubEle,Ele_Wind,7; if (getrefine()>=7) { bonus bMatkRate,3; } if (getrefine()>=9) { bonus bMatkRate,5; bonus3 bAutoSpellWhenHit,"WZ_FROSTNOVA",5,20;}',NULL,NULL); REPLACE INTO `item_db_re` VALUES (5663,'Libra_Diadem','Libra Diadem',4,10,NULL,300,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,594,'bonus bBaseAtk,7; if (getrefine()>=7) { bonus3 bAutoSpell,"TK_SEVENWIND",2,5; } if (getrefine()>=9) { bonus bFlee,5; bonus2 bAddClass,Class_All,3; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5664,'Filir_Wing','Filir\'s Pinions',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,512,NULL,'70',1,595,'bonus bAspdRate,2;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (5664,'Filir_Wing','Filir\'s Pinions',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,512,NULL,'70',0,595,'bonus bAspdRate,2;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (5665,'Shaman_Hat','Shaman Hat',4,20,NULL,400,NULL,1,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,596,'bonus bMdef,5; bonus2 bSubEle,Ele_Neutral,3; bonus2 bSubEle,Ele_Water,3; bonus2 bSubEle,Ele_Earth,3; bonus2 bSubEle,Ele_Fire,3; bonus2 bSubEle,Ele_Wind,3; bonus2 bSubEle,Ele_Poison,3; bonus2 bSubEle,Ele_Holy,3; bonus2 bSubEle,Ele_Dark,3; bonus2 bSubEle,Ele_Ghost,3; bonus2 bSubEle,Ele_Undead,3;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (5666,'Golden_Crown','Golden Crown',4,20,NULL,500,NULL,8,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,597,'bonus bInt,1; bonus bDex,1; bonus bLuk,1;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (5667,'Skull_Hood','Skull Hood',4,20,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,63,2,768,NULL,'30',1,598,'bonus2 bSubRace,RC_Demon,10; bonus2 bSubRace,RC_Undead,10; if(getrefine()>=7) autobonus "{ bonus bCritical,30; bonus bHit,10; }",10,10000,0,"{ specialeffect2 EF_ENHANCE; }";',NULL,NULL); From d4c018cd90167e244c56ad676835b46cab3e503f Mon Sep 17 00:00:00 2001 From: Lemongrass3110 Date: Fri, 9 Oct 2020 14:44:59 +0200 Subject: [PATCH 04/45] Mob and NPC Identity Update (#5441) --- db/re/mob_db.txt | 201 +++++++++++++++++++++++++++++++++++ sql-files/mob_db_re.sql | 201 +++++++++++++++++++++++++++++++++++ src/map/npc.hpp | 3 + src/map/script_constants.hpp | 2 + 4 files changed, 407 insertions(+) diff --git a/db/re/mob_db.txt b/db/re/mob_db.txt index ba7aef0aab..028153d7f4 100644 --- a/db/re/mob_db.txt +++ b/db/re/mob_db.txt @@ -4217,6 +4217,207 @@ //21087,S_DUMMY_100_HUMANP //21088,S_DUMMY_100_DORAMP //21089,WANDERING_DUCK +//21090,JP_E_MONSTER_201 +//21091,JP_E_MONSTER_202 +//21092,JP_E_MONSTER_203 +//21093,JP_E_MONSTER_204 +//21094,JP_E_MONSTER_205 +//21095,JP_E_MONSTER_206 +//21096,JP_E_MONSTER_207 +//21097,JP_E_MONSTER_208 +//21098,JP_E_MONSTER_209 +//21099,JP_E_MONSTER_210 +//21100,JP_E_MONSTER_211 +//21101,JP_E_MONSTER_212 +//21102,JP_E_MONSTER_213 +//21103,JP_E_MONSTER_214 +//21104,JP_E_MONSTER_215 +//21105,JP_E_MONSTER_216 +//21106,JP_E_MONSTER_217 +//21107,JP_E_MONSTER_218 +//21108,JP_E_MONSTER_219 +//21109,JP_E_MONSTER_220 +//21110,JP_E_MONSTER_221 +//21111,JP_E_MONSTER_222 +//21112,JP_E_MONSTER_223 +//21113,JP_E_MONSTER_224 +//21114,JP_E_MONSTER_225 +//21115,JP_E_MONSTER_226 +//21116,JP_E_MONSTER_227 +//21117,JP_E_MONSTER_228 +//21118,JP_E_MONSTER_229 +//21119,JP_E_MONSTER_230 +//21120,JP_E_MONSTER_231 +//21121,JP_E_MONSTER_232 +//21122,JP_E_MONSTER_233 +//21123,JP_E_MONSTER_234 +//21124,JP_E_MONSTER_235 +//21125,JP_E_MONSTER_236 +//21126,JP_E_MONSTER_237 +//21127,JP_E_MONSTER_238 +//21128,JP_E_MONSTER_239 +//21129,JP_E_MONSTER_240 +//21130,JP_E_MONSTER_241 +//21131,JP_E_MONSTER_242 +//21132,JP_E_MONSTER_243 +//21133,JP_E_MONSTER_244 +//21134,JP_E_MONSTER_245 +//21135,JP_E_MONSTER_246 +//21136,JP_E_MONSTER_247 +//21137,JP_E_MONSTER_248 +//21138,JP_E_MONSTER_249 +//21139,JP_E_MONSTER_250 +//21140,JP_E_MONSTER_251 +//21141,JP_E_MONSTER_252 +//21142,JP_E_MONSTER_253 +//21143,JP_E_MONSTER_254 +//21144,JP_E_MONSTER_255 +//21145,JP_E_MONSTER_256 +//21146,JP_E_MONSTER_257 +//21147,JP_E_MONSTER_258 +//21148,JP_E_MONSTER_259 +//21149,JP_E_MONSTER_260 +//21150,JP_E_MONSTER_261 +//21151,JP_E_MONSTER_262 +//21152,JP_E_MONSTER_263 +//21153,JP_E_MONSTER_264 +//21154,JP_E_MONSTER_265 +//21155,JP_E_MONSTER_266 +//21156,JP_E_MONSTER_267 +//21157,JP_E_MONSTER_268 +//21158,JP_E_MONSTER_269 +//21159,JP_E_MONSTER_270 +//21160,JP_E_MONSTER_271 +//21161,JP_E_MONSTER_272 +//21162,JP_E_MONSTER_273 +//21163,JP_E_MONSTER_274 +//21164,JP_E_MONSTER_275 +//21165,JP_E_MONSTER_276 +//21166,JP_E_MONSTER_277 +//21167,JP_E_MONSTER_278 +//21168,JP_E_MONSTER_279 +//21169,JP_E_MONSTER_280 +//21170,JP_E_MONSTER_281 +//21171,JP_E_MONSTER_282 +//21172,JP_E_MONSTER_283 +//21173,JP_E_MONSTER_284 +//21174,JP_E_MONSTER_285 +//21175,JP_E_MONSTER_286 +//21176,JP_E_MONSTER_287 +//21177,JP_E_MONSTER_288 +//21178,JP_E_MONSTER_289 +//21179,JP_E_MONSTER_290 +//21180,JP_E_MONSTER_291 +//21181,JP_E_MONSTER_292 +//21182,JP_E_MONSTER_293 +//21183,JP_E_MONSTER_294 +//21184,JP_E_MONSTER_295 +//21185,JP_E_MONSTER_296 +//21186,JP_E_MONSTER_297 +//21187,JP_E_MONSTER_298 +//21188,JP_E_MONSTER_299 +//21189,JP_E_MONSTER_300 +//21190,JP_E_MONSTER_301 +//21191,JP_E_MONSTER_302 +//21192,JP_E_MONSTER_303 +//21193,JP_E_MONSTER_304 +//21194,JP_E_MONSTER_305 +//21195,JP_E_MONSTER_306 +//21196,JP_E_MONSTER_307 +//21197,JP_E_MONSTER_308 +//21198,JP_E_MONSTER_309 +//21199,JP_E_MONSTER_310 +//21200,JP_E_MONSTER_311 +//21201,JP_E_MONSTER_312 +//21202,JP_E_MONSTER_313 +//21203,JP_E_MONSTER_314 +//21204,JP_E_MONSTER_315 +//21205,JP_E_MONSTER_316 +//21206,JP_E_MONSTER_317 +//21207,JP_E_MONSTER_318 +//21208,JP_E_MONSTER_319 +//21209,JP_E_MONSTER_320 +//21210,JP_E_MONSTER_321 +//21211,JP_E_MONSTER_322 +//21212,JP_E_MONSTER_323 +//21213,JP_E_MONSTER_324 +//21214,JP_E_MONSTER_325 +//21215,JP_E_MONSTER_326 +//21216,JP_E_MONSTER_327 +//21217,JP_E_MONSTER_328 +//21218,JP_E_MONSTER_329 +//21219,JP_E_MONSTER_330 +//21220,JP_E_MONSTER_331 +//21221,JP_E_MONSTER_332 +//21222,JP_E_MONSTER_333 +//21223,JP_E_MONSTER_334 +//21224,JP_E_MONSTER_335 +//21225,JP_E_MONSTER_336 +//21226,JP_E_MONSTER_337 +//21227,JP_E_MONSTER_338 +//21228,JP_E_MONSTER_339 +//21229,JP_E_MONSTER_340 +//21230,JP_E_MONSTER_341 +//21231,JP_E_MONSTER_342 +//21232,JP_E_MONSTER_343 +//21233,JP_E_MONSTER_344 +//21234,JP_E_MONSTER_345 +//21235,JP_E_MONSTER_346 +//21236,JP_E_MONSTER_347 +//21237,JP_E_MONSTER_348 +//21238,JP_E_MONSTER_349 +//21239,JP_E_MONSTER_350 +//21240,JP_E_MONSTER_351 +//21241,JP_E_MONSTER_352 +//21242,JP_E_MONSTER_353 +//21243,JP_E_MONSTER_354 +//21244,JP_E_MONSTER_355 +//21245,JP_E_MONSTER_356 +//21246,JP_E_MONSTER_357 +//21247,JP_E_MONSTER_358 +//21248,JP_E_MONSTER_359 +//21249,JP_E_MONSTER_360 +//21250,JP_E_MONSTER_361 +//21251,JP_E_MONSTER_362 +//21252,JP_E_MONSTER_363 +//21253,JP_E_MONSTER_364 +//21254,JP_E_MONSTER_365 +//21255,JP_E_MONSTER_366 +//21256,JP_E_MONSTER_367 +//21257,JP_E_MONSTER_368 +//21258,JP_E_MONSTER_369 +//21259,JP_E_MONSTER_370 +//21260,JP_E_MONSTER_371 +//21261,JP_E_MONSTER_372 +//21262,JP_E_MONSTER_373 +//21263,JP_E_MONSTER_374 +//21264,JP_E_MONSTER_375 +//21265,JP_E_MONSTER_376 +//21266,JP_E_MONSTER_377 +//21267,JP_E_MONSTER_378 +//21268,JP_E_MONSTER_379 +//21269,JP_E_MONSTER_380 +//21270,JP_E_MONSTER_381 +//21271,JP_E_MONSTER_382 +//21272,JP_E_MONSTER_383 +//21273,JP_E_MONSTER_384 +//21274,JP_E_MONSTER_385 +//21275,JP_E_MONSTER_386 +//21276,JP_E_MONSTER_387 +//21277,JP_E_MONSTER_388 +//21278,JP_E_MONSTER_389 +//21279,JP_E_MONSTER_390 +//21280,JP_E_MONSTER_391 +//21281,JP_E_MONSTER_392 +//21282,JP_E_MONSTER_393 +//21283,JP_E_MONSTER_394 +//21284,JP_E_MONSTER_395 +//21285,JP_E_MONSTER_396 +//21286,JP_E_MONSTER_397 +//21287,JP_E_MONSTER_398 +//21288,JP_E_MONSTER_399 +//21289,JP_E_MONSTER_400 +//21290,KIEL_D_01_2 //31999,HUNTING_GID_DEFAULT //32000,MONSTER_2ND_END diff --git a/sql-files/mob_db_re.sql b/sql-files/mob_db_re.sql index 9643ae4c22..c930714128 100644 --- a/sql-files/mob_db_re.sql +++ b/sql-files/mob_db_re.sql @@ -4284,6 +4284,207 @@ REPLACE INTO `mob_db_re` VALUES (3790,'SWEETS_DROPS','Sweets Drops','Sweets Drop #21087,S_DUMMY_100_HUMANP #21088,S_DUMMY_100_DORAMP #21089,WANDERING_DUCK +#21090,JP_E_MONSTER_201 +#21091,JP_E_MONSTER_202 +#21092,JP_E_MONSTER_203 +#21093,JP_E_MONSTER_204 +#21094,JP_E_MONSTER_205 +#21095,JP_E_MONSTER_206 +#21096,JP_E_MONSTER_207 +#21097,JP_E_MONSTER_208 +#21098,JP_E_MONSTER_209 +#21099,JP_E_MONSTER_210 +#21100,JP_E_MONSTER_211 +#21101,JP_E_MONSTER_212 +#21102,JP_E_MONSTER_213 +#21103,JP_E_MONSTER_214 +#21104,JP_E_MONSTER_215 +#21105,JP_E_MONSTER_216 +#21106,JP_E_MONSTER_217 +#21107,JP_E_MONSTER_218 +#21108,JP_E_MONSTER_219 +#21109,JP_E_MONSTER_220 +#21110,JP_E_MONSTER_221 +#21111,JP_E_MONSTER_222 +#21112,JP_E_MONSTER_223 +#21113,JP_E_MONSTER_224 +#21114,JP_E_MONSTER_225 +#21115,JP_E_MONSTER_226 +#21116,JP_E_MONSTER_227 +#21117,JP_E_MONSTER_228 +#21118,JP_E_MONSTER_229 +#21119,JP_E_MONSTER_230 +#21120,JP_E_MONSTER_231 +#21121,JP_E_MONSTER_232 +#21122,JP_E_MONSTER_233 +#21123,JP_E_MONSTER_234 +#21124,JP_E_MONSTER_235 +#21125,JP_E_MONSTER_236 +#21126,JP_E_MONSTER_237 +#21127,JP_E_MONSTER_238 +#21128,JP_E_MONSTER_239 +#21129,JP_E_MONSTER_240 +#21130,JP_E_MONSTER_241 +#21131,JP_E_MONSTER_242 +#21132,JP_E_MONSTER_243 +#21133,JP_E_MONSTER_244 +#21134,JP_E_MONSTER_245 +#21135,JP_E_MONSTER_246 +#21136,JP_E_MONSTER_247 +#21137,JP_E_MONSTER_248 +#21138,JP_E_MONSTER_249 +#21139,JP_E_MONSTER_250 +#21140,JP_E_MONSTER_251 +#21141,JP_E_MONSTER_252 +#21142,JP_E_MONSTER_253 +#21143,JP_E_MONSTER_254 +#21144,JP_E_MONSTER_255 +#21145,JP_E_MONSTER_256 +#21146,JP_E_MONSTER_257 +#21147,JP_E_MONSTER_258 +#21148,JP_E_MONSTER_259 +#21149,JP_E_MONSTER_260 +#21150,JP_E_MONSTER_261 +#21151,JP_E_MONSTER_262 +#21152,JP_E_MONSTER_263 +#21153,JP_E_MONSTER_264 +#21154,JP_E_MONSTER_265 +#21155,JP_E_MONSTER_266 +#21156,JP_E_MONSTER_267 +#21157,JP_E_MONSTER_268 +#21158,JP_E_MONSTER_269 +#21159,JP_E_MONSTER_270 +#21160,JP_E_MONSTER_271 +#21161,JP_E_MONSTER_272 +#21162,JP_E_MONSTER_273 +#21163,JP_E_MONSTER_274 +#21164,JP_E_MONSTER_275 +#21165,JP_E_MONSTER_276 +#21166,JP_E_MONSTER_277 +#21167,JP_E_MONSTER_278 +#21168,JP_E_MONSTER_279 +#21169,JP_E_MONSTER_280 +#21170,JP_E_MONSTER_281 +#21171,JP_E_MONSTER_282 +#21172,JP_E_MONSTER_283 +#21173,JP_E_MONSTER_284 +#21174,JP_E_MONSTER_285 +#21175,JP_E_MONSTER_286 +#21176,JP_E_MONSTER_287 +#21177,JP_E_MONSTER_288 +#21178,JP_E_MONSTER_289 +#21179,JP_E_MONSTER_290 +#21180,JP_E_MONSTER_291 +#21181,JP_E_MONSTER_292 +#21182,JP_E_MONSTER_293 +#21183,JP_E_MONSTER_294 +#21184,JP_E_MONSTER_295 +#21185,JP_E_MONSTER_296 +#21186,JP_E_MONSTER_297 +#21187,JP_E_MONSTER_298 +#21188,JP_E_MONSTER_299 +#21189,JP_E_MONSTER_300 +#21190,JP_E_MONSTER_301 +#21191,JP_E_MONSTER_302 +#21192,JP_E_MONSTER_303 +#21193,JP_E_MONSTER_304 +#21194,JP_E_MONSTER_305 +#21195,JP_E_MONSTER_306 +#21196,JP_E_MONSTER_307 +#21197,JP_E_MONSTER_308 +#21198,JP_E_MONSTER_309 +#21199,JP_E_MONSTER_310 +#21200,JP_E_MONSTER_311 +#21201,JP_E_MONSTER_312 +#21202,JP_E_MONSTER_313 +#21203,JP_E_MONSTER_314 +#21204,JP_E_MONSTER_315 +#21205,JP_E_MONSTER_316 +#21206,JP_E_MONSTER_317 +#21207,JP_E_MONSTER_318 +#21208,JP_E_MONSTER_319 +#21209,JP_E_MONSTER_320 +#21210,JP_E_MONSTER_321 +#21211,JP_E_MONSTER_322 +#21212,JP_E_MONSTER_323 +#21213,JP_E_MONSTER_324 +#21214,JP_E_MONSTER_325 +#21215,JP_E_MONSTER_326 +#21216,JP_E_MONSTER_327 +#21217,JP_E_MONSTER_328 +#21218,JP_E_MONSTER_329 +#21219,JP_E_MONSTER_330 +#21220,JP_E_MONSTER_331 +#21221,JP_E_MONSTER_332 +#21222,JP_E_MONSTER_333 +#21223,JP_E_MONSTER_334 +#21224,JP_E_MONSTER_335 +#21225,JP_E_MONSTER_336 +#21226,JP_E_MONSTER_337 +#21227,JP_E_MONSTER_338 +#21228,JP_E_MONSTER_339 +#21229,JP_E_MONSTER_340 +#21230,JP_E_MONSTER_341 +#21231,JP_E_MONSTER_342 +#21232,JP_E_MONSTER_343 +#21233,JP_E_MONSTER_344 +#21234,JP_E_MONSTER_345 +#21235,JP_E_MONSTER_346 +#21236,JP_E_MONSTER_347 +#21237,JP_E_MONSTER_348 +#21238,JP_E_MONSTER_349 +#21239,JP_E_MONSTER_350 +#21240,JP_E_MONSTER_351 +#21241,JP_E_MONSTER_352 +#21242,JP_E_MONSTER_353 +#21243,JP_E_MONSTER_354 +#21244,JP_E_MONSTER_355 +#21245,JP_E_MONSTER_356 +#21246,JP_E_MONSTER_357 +#21247,JP_E_MONSTER_358 +#21248,JP_E_MONSTER_359 +#21249,JP_E_MONSTER_360 +#21250,JP_E_MONSTER_361 +#21251,JP_E_MONSTER_362 +#21252,JP_E_MONSTER_363 +#21253,JP_E_MONSTER_364 +#21254,JP_E_MONSTER_365 +#21255,JP_E_MONSTER_366 +#21256,JP_E_MONSTER_367 +#21257,JP_E_MONSTER_368 +#21258,JP_E_MONSTER_369 +#21259,JP_E_MONSTER_370 +#21260,JP_E_MONSTER_371 +#21261,JP_E_MONSTER_372 +#21262,JP_E_MONSTER_373 +#21263,JP_E_MONSTER_374 +#21264,JP_E_MONSTER_375 +#21265,JP_E_MONSTER_376 +#21266,JP_E_MONSTER_377 +#21267,JP_E_MONSTER_378 +#21268,JP_E_MONSTER_379 +#21269,JP_E_MONSTER_380 +#21270,JP_E_MONSTER_381 +#21271,JP_E_MONSTER_382 +#21272,JP_E_MONSTER_383 +#21273,JP_E_MONSTER_384 +#21274,JP_E_MONSTER_385 +#21275,JP_E_MONSTER_386 +#21276,JP_E_MONSTER_387 +#21277,JP_E_MONSTER_388 +#21278,JP_E_MONSTER_389 +#21279,JP_E_MONSTER_390 +#21280,JP_E_MONSTER_391 +#21281,JP_E_MONSTER_392 +#21282,JP_E_MONSTER_393 +#21283,JP_E_MONSTER_394 +#21284,JP_E_MONSTER_395 +#21285,JP_E_MONSTER_396 +#21286,JP_E_MONSTER_397 +#21287,JP_E_MONSTER_398 +#21288,JP_E_MONSTER_399 +#21289,JP_E_MONSTER_400 +#21290,KIEL_D_01_2 #31999,HUNTING_GID_DEFAULT #32000,MONSTER_2ND_END diff --git a/src/map/npc.hpp b/src/map/npc.hpp index 18f27d210c..53e6ba7e86 100644 --- a/src/map/npc.hpp +++ b/src/map/npc.hpp @@ -1188,6 +1188,9 @@ enum e_job_types JT_4_4JOB_PHANTOMBOOK1, JT_4_4JOB_PHANTOMBOOK2, JT_4_4JOB_PHANTOMBOOK3, + JT_4_VENDING_MACHINE2, + + JT_4_4JOB_MAURA = 10416, JT_NEW_NPC_3RD_END = 19999, NPC_RANGE3_END, // Official: JT_NEW_NPC_3RD_END=19999 diff --git a/src/map/script_constants.hpp b/src/map/script_constants.hpp index 3b5f19d4a2..796c7ec659 100644 --- a/src/map/script_constants.hpp +++ b/src/map/script_constants.hpp @@ -6252,6 +6252,8 @@ export_constant_npc(JT_4_4JOB_PHANTOMBOOK1); export_constant_npc(JT_4_4JOB_PHANTOMBOOK2); export_constant_npc(JT_4_4JOB_PHANTOMBOOK3); + export_constant_npc(JT_4_VENDING_MACHINE2); + export_constant_npc(JT_4_4JOB_MAURA); export_constant_npc(JT_NEW_NPC_3RD_END); #undef export_constant_npc From 8385162fdcf3db0c4c53ad7980f5726c95c09a92 Mon Sep 17 00:00:00 2001 From: Aleos Date: Fri, 9 Oct 2020 09:10:17 -0400 Subject: [PATCH 05/45] Fixes Sonic Blow damage in renewal (#5439) * Fixes #5432. * Corrects the damage formula for Sonic Blow in renewal mode. Thanks to @kyurejl! --- src/map/battle.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/map/battle.cpp b/src/map/battle.cpp index d81ac68b63..b3ee92f3d8 100644 --- a/src/map/battle.cpp +++ b/src/map/battle.cpp @@ -3790,10 +3790,12 @@ static int battle_calc_attack_skill_ratio(struct Damage* wd, struct block_list * skillratio += 30 * skill_lv; break; case AS_SONICBLOW: - skillratio += 300 + 40 * skill_lv; #ifdef RENEWAL + skillratio += 100 + 100 * skill_lv; if (tstatus->hp < tstatus->max_hp >> 1) skillratio += skillratio / 2; +#else + skillratio += 300 + 40 * skill_lv; #endif break; case TF_SPRINKLESAND: From 0d2154b0fba49498149f682d205582e406b3f254 Mon Sep 17 00:00:00 2001 From: Lemongrass3110 Date: Sat, 10 Oct 2020 10:02:30 +0200 Subject: [PATCH 06/45] Effect State Update (#5440) --- src/map/script_constants.hpp | 11 ++++++++++- src/map/status.hpp | 15 +++++++++++++-- 2 files changed, 23 insertions(+), 3 deletions(-) diff --git a/src/map/script_constants.hpp b/src/map/script_constants.hpp index 796c7ec659..f2e60af88c 100644 --- a/src/map/script_constants.hpp +++ b/src/map/script_constants.hpp @@ -3470,6 +3470,13 @@ export_constant(EFST_ABYSS_006); export_constant(EFST_ABYSS_007); export_constant(EFST_ABYSS_008); + export_constant(EFST_KAUTE); + export_constant(EFST_REUSE_LIMIT_THM); + export_constant(EFST_REUSE_LIMIT_TLI); + export_constant(EFST_REUSE_LIMIT_TKC); + export_constant(EFST_REUSE_LIMIT_TRP); + export_constant(EFST_REUSE_LIMIT_TBG); + export_constant(EFST_REUSE_LIMIT_TBM); export_constant(EFST_YGGDRASIL_BLESS); export_constant(EFST_HUNTING_EVENT); export_constant(EFST_PERIOD_RECEIVEITEM_2ND); @@ -3508,7 +3515,6 @@ export_constant(EFST_FLOWER_LEAF4); export_constant(EFST_MISTY_FROST); export_constant(EFST_MAGIC_POISON); - export_constant(EFST_KAUTE); export_constant(EFST_JPNONLY_TACTICS); export_constant(EFST_MADOGEAR); export_constant(EFST_DEADLY_DEFEASANCE); @@ -3580,6 +3586,7 @@ export_constant(EFST_ULTIMATE_S); export_constant(EFST_SPEAR_SCAR); export_constant(EFST_SHIELD_POWER); + export_constant(EFST_SHADOW_WEAPON); export_constant(EFST_RELIGIO); export_constant(EFST_BENEDICTUM); export_constant(EFST_MVPCARD_KIEL); @@ -3665,6 +3672,8 @@ export_constant(EFST_SHIELDSPELL); export_constant(EFST_CLOUD_POISON); export_constant(EFST_SPORE_EXPLOSION_DEBUFF); + export_constant(EFST_DEFSCROLL); + export_constant(EFST_MASSIVE_F_BLASTER); /// @APIHOOK_END /// Do not modify code above this, since it will be automatically generated by the API again export_constant(EFST_MAX); diff --git a/src/map/status.hpp b/src/map/status.hpp index 8367d76bc5..2440e6d797 100644 --- a/src/map/status.hpp +++ b/src/map/status.hpp @@ -1989,7 +1989,13 @@ enum efst_types : short{ EFST_ABYSS_007, EFST_ABYSS_008, - EFST_YGGDRASIL_BLESS = 1081, + EFST_REUSE_LIMIT_THM = 1075, + EFST_REUSE_LIMIT_TLI, + EFST_REUSE_LIMIT_TKC, + EFST_REUSE_LIMIT_TRP, + EFST_REUSE_LIMIT_TBG, + EFST_REUSE_LIMIT_TBM, + EFST_YGGDRASIL_BLESS, EFST_HUNTING_EVENT = 1083, EFST_PERIOD_RECEIVEITEM_2ND, @@ -2116,7 +2122,8 @@ enum efst_types : short{ EFST_SPEAR_SCAR, EFST_SHIELD_POWER, - EFST_RELIGIO = 1227, + EFST_SHADOW_WEAPON = 1226, + EFST_RELIGIO, EFST_BENEDICTUM, EFST_MVPCARD_KIEL, EFST_FIRST_BRAND, @@ -2208,6 +2215,10 @@ enum efst_types : short{ EFST_CLOUD_POISON = 1318, EFST_SPORE_EXPLOSION_DEBUFF, + + EFST_DEFSCROLL = 1321, + + EFST_MASSIVE_F_BLASTER = 1326, /// @APIHOOK_END /// Do not modify code above this, since it will be automatically generated by the API again EFST_MAX, From d3074f69ec52f7457ba2ddf7253358dbea5e8309 Mon Sep 17 00:00:00 2001 From: Kanin Temsrisuk Date: Sun, 11 Oct 2020 03:59:23 +0700 Subject: [PATCH 07/45] item_db and item_combo_db correction #5 (#4877) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Added Tenji, Item combo * Adjusted RWC Staff combo use mAtk instead of mAtkRate * Divers corrections and updates Thanks to πŸ…ΊπŸ…ΈπŸ…½πŸ…ΆπŸ…°πŸ†πŸ†ƒπŸ…΄πŸ† , Ap[a]ch€, Jumbo --- db/re/item_combo_db.txt | 83 +++++++++++++------- db/re/item_db.txt | 158 ++++++++++++++++++++++---------------- sql-files/item_db_re.sql | 162 ++++++++++++++++++++++----------------- 3 files changed, 239 insertions(+), 164 deletions(-) diff --git a/db/re/item_combo_db.txt b/db/re/item_combo_db.txt index 9e4dfc5607..0f33ff3c31 100644 --- a/db/re/item_combo_db.txt +++ b/db/re/item_combo_db.txt @@ -85,9 +85,9 @@ 1659:5920,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus2 bSkillUseSP,"AL_HEAL",6*.@r; bonus2 bSkillUseSP,"AB_CHEAL",10*.@r; bonus2 bSkillUseSP,"AB_HIGHNESSHEAL",14*.@r; } 1660:2471:2569:15029,{ bonus bHealPower,45; bonus2 bSkillUseSP,"AL_HEAL",-50; bonus3 bAutoSpellWhenHit,"AB_SILENTIUM",1,100; bonus2 bSkillCooldown,"AB_CLEARANCE",-3000; bonus2 bSkillCooldown,"AB_LAUDAAGNUS",-3000; bonus2 bSkillCooldown,"AB_LAUDARAMUS",-3000; } 1668:15089,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus bDelayrate,-10-min(.@r,10); } -1670:2968,{ bonus bMatkRate,getequiprefinerycnt(EQI_HAND_R)*5; } -1670:2968:2969,{ bonus bMatkRate,-(getequiprefinerycnt(EQI_HAND_R)*5); } -1670:2969,{ bonus bMatkRate,getequiprefinerycnt(EQI_HAND_R)*5; } +1670:2968,{ bonus bMatk,getequiprefinerycnt(EQI_HAND_R)*5; } +1670:2968:2969,{ bonus bMatk,-(getequiprefinerycnt(EQI_HAND_R)*5); } +1670:2969,{ bonus bMatk,getequiprefinerycnt(EQI_HAND_R)*5; } 1718:1774,{ bonus bLongAtkRate,50; } 1723:2718,{ bonus bDex,1; bonus bMaxSP,50; bonus bSPrecovRate,10; } 1724:5467,{ bonus bAspd,1; bonus bFlee2,3; } @@ -125,6 +125,8 @@ 2013:2469:2861:15027,{ bonus2 bMagicAtkEle,Ele_Fire,60; bonus2 bMagicAtkEle,Ele_Water,-60; bonus2 bSubEle,Ele_Water,-50; } 2014:2470:2862:15028,{ bonus2 bMagicAtkEle,Ele_Earth,60; bonus2 bMagicAtkEle,Ele_Fire,-60; bonus2 bSubEle,Ele_Fire,-50; } 2039:20847,{ .@weapon = getequiprefinerycnt(EQI_HAND_R); .@eq = getequiprefinerycnt(EQI_GARMENT); bonus2 bSkillAtk,"WL_CRIMSONROCK",10; if (.@eq >= 7 && .@weapon >= 7) { bonus2 bSkillAtk,"WL_HELLINFERNO",40; } if ((.@eq + .@weapon) >= 18) { bonus2 bMagicAtkEle,Ele_Wind,10; bonus2 bMagicAtkEle,Ele_Dark,10; if ((.@eq + .@weapon) >= 22) { bonus2 bMagicAtkEle,Ele_Fire,10; } } } +2046:19310:15250:20906:22173:28566,{ bonus bMatk,3*(min(BaseLevel,150)/10); bonus bVariableCastrate,-15; bonus2 bMagicAtkEle,Ele_Fire,5; } +2048:22171,{ autobonus "{ bonus bInt,20; bonus bMatkRate,15; }",30,7000,BF_MAGIC; } 2051:20847,{ bonus bMatk,50; .@eq = getequiprefinerycnt(EQI_GARMENT); .@weapon = getequiprefinerycnt(EQI_HAND_R); if (.@eq >= 7 && .@weapon >= 7) { bonus2 bMagicAtkEle,Ele_Water,10; bonus2 bMagicAtkEle,Ele_Wind,10; bonus2 bMagicAtkEle,Ele_Earth,10; bonus2 bMagicAtkEle,Ele_Fire,10; } if ((.@eq + .@weapon) >= 18) { bonus2 bMagicAddEle,Ele_Water,15; bonus2 bMagicAddEle,Ele_Wind,15; bonus2 bMagicAddEle,Ele_Earth,15; bonus2 bMagicAddEle,Ele_Fire,15; if ((.@eq + .@weapon) >= 22) { bonus bDelayrate,-15; } } } 2109:2239:2717,{ bonus bHPrecovRate,15; bonus bSPrecovRate,15; bonus bMatkRate,7; } 2109:2971:5135,{ bonus bHPrecovRate,15; bonus bSPrecovRate,15; bonus bMatkRate,7; } @@ -136,20 +138,23 @@ 2121:2971:5135,{ bonus bHPrecovRate,15; bonus bSPrecovRate,15; bonus bMatkRate,7; } 2121:2971:18874,{ bonus bHPrecovRate,15; bonus bSPrecovRate,15; bonus bMatkRate,7; } 2123:2701,{ bonus bVariableCastrate,-10; } -2123:2881,{ bonus bMatkRate,getequiprefinerycnt(EQI_HAND_L)*2; } +2123:2881,{ bonus bMatk,getequiprefinerycnt(EQI_HAND_L)*2; } 2124:2702,{ bonus bAspdRate,10; bonus bShortWeaponDamageReturn,5; } -2124:22064,{ .@r = getequiprefinerycnt(EQI_HAND_L)/3; bonus bAspd,.@r*6; } +2124:22064,{ .@r = getequiprefinerycnt(EQI_HAND_L)/3; bonus bAspdRate,.@r*6; } 2125:5782,{ bonus bDef,2; bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubEle,Ele_Fire,5; bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Wind,5; bonus2 bSubEle,Ele_Earth,5; bonus2 bSubEle,Ele_Dark,5; bonus2 bSubEle,Ele_Holy,5; bonus2 bSubEle,Ele_Ghost,5; } 2135:2426,{ bonus2 bAddEff,Eff_Blind,500; autobonus "{ bonus bFlee,20; }",200,10000,BF_WEAPON,"{ specialeffect2 EF_INCAGILITY; }"; } 2137:2353:5124,{ bonus bDef,2-getequiprefinerycnt(EQI_HAND_L)-getequiprefinerycnt(EQI_HEAD_TOP); bonus bMdef,5+getequiprefinerycnt(EQI_HAND_L)+getequiprefinerycnt(EQI_HEAD_TOP); } 2153:28372,{ .@r = getequiprefinerycnt(EQI_HAND_L); bonus2 bSkillAtk,"LG_SHIELDPRESS",.@r > 5 ? (.@r - 5) * 8 : 0; } +2157:2905,{ .@r = getequiprefinerycnt(EQI_ARMOR); bonus2 bSubRace,RC_Insect,10; if(.@r>=8){ bonus2 bMagicAddRace,RC_Insect,4; bonus2 bSubRace,RC_Insect,20; } } 2160:19021,{ bonus2 bSubSize,Size_Large,5+(getequiprefinerycnt(EQI_HAND_L)*2); } 2169:2491:2590:15051,{ bonus2 bAddDefMonster,2311,30; bonus2 bAddDefMonster,2312,30; bonus2 bAddDefMonster,2320,30; bonus2 bAddDefMonster,2321,30; bonus2 bAddDefMonster,2322,30; bonus2 bAddDefMonster,2317,30; bonus2 bAddDefMonster,2318,30; bonus2 bAddDefMonster,2327,30; bonus2 bAddDefMonster,2319,30; bonus2 bAddDefMonster,2330,30; bonus2 bAddDefMonster,2329,30; bonus2 bAddDefMonster,2333,30; bonus2 bAddDefMonster,2332,30; bonus2 bAddDefMonster,2309,30; bonus2 bAddDefMonster,2310,30; bonus2 bAddDefMonster,2315,30; bonus2 bAddDefMonster,2316,30; bonus2 bAddDefMonster,2314,30; bonus2 bAddDefMonster,2313,30; bonus bMaxHPrate,20; bonus bMaxSPrate,10; } 2171:15053,{ bonus bAgi,2; } 2171:15056,{ bonus bAgi,2; } 2172:15054,{ bonus2 bAddClass,Class_All,10; bonus bStr,2; } 2173:15055,{ bonus bFlee,10; bonus bFlee2,10; } -2177:18574,{ bonus2 bAddClass,Class_Boss,5; bonus2 bMagicAddClass,Class_Boss,5; if (getequiprefinerycnt(EQI_HEAD_TOP) > 7) { bonus2 bAddClass,Class_Boss,5; bonus2 bMagicAddClass,Class_Boss,5; } } +2175:20716,{ .@r = getequiprefinerycnt(EQI_GARMENT); .@r2 = getequiprefinerycnt(EQI_HAND_L); bonus2 bSubRace,RC_Angel,.@r; bonus2 bAddEle,Ele_Ghost,.@r2; } +2175:22066,{ .@r = getequiprefinerycnt(EQI_HAND_L); bonus2 bSubEle,Ele_Ghost,5+2*.@r; } +2177:18574,{ bonus2 bAddClass,Class_Boss,5; bonus2 bMagicAddClass,Class_Boss,5; if (getequiprefinerycnt(EQI_HEAD_TOP) >= 7) { bonus2 bAddClass,Class_Boss,5; bonus2 bMagicAddClass,Class_Boss,5; } } 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; } @@ -322,7 +327,7 @@ //2679:2792,{ 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; } 2701:2881,{ bonus bMatkRate,20; } 2702:2874,{ bonus bAspd,1; } -2702:22064,{ if (readparam(bAgi) > 120) bonus bAspd,2; /* Confirm: Bonus value */ } +2702:22064,{ if (readparam(bAgi) > 120) bonus bAspd,1; } 27013:27012,{ bonus bNoMadoFuel; } 27015:27016,{ bonus bCritAtkRate,10; } 27018:27019,{ autobonus "{ bonus bAspd,5; }",30,5000; } @@ -337,6 +342,7 @@ 2722:2774,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,3; bonus bHealPower,5; } 2723:2772,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,3; bonus bHealPower,5; } 2723:2773,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,3; bonus bHealPower,5; } +2723:2774,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,3; bonus bHealPower,5; } 2724:2772,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,3; bonus bHealPower,5; } 2724:2773,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,3; bonus bHealPower,5; } 2724:2774,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,3; bonus bHealPower,5; } @@ -360,7 +366,7 @@ 27363:4168,{ bonus2 bMagicAtkEle,Ele_Fire,15; bonus2 bSkillAtk,"WZ_METEOR",15; } 2747:13061,{ bonus bHit,5; bonus bMatk,5; bonus2 bSkillUseSP,"SC_ENERVATION",20; bonus2 bSkillUseSP,"SC_GROOMY",20; } 2751:2888,{ bonus bAspdRate,3; bonus bVariableCastrate,-3; } -2777:2778:5479,{ bonus bMaxHP,10*getequiprefinerycnt(EQI_HEAD_TOP); bonus bMaxSP,2*getequiprefinerycnt(EQI_ACC_L); bonus bNoCastCancel; bonus bCastrate,15; } +2777:2778:5479,{ bonus bMaxHP,10*BaseLevel; bonus bMaxSP,2*BaseLevel; bonus bNoCastCancel; bonus bVariableCastrate,15; } 2777:2825:5479,{ bonus bMaxHP,BaseLevel*10; bonus bMaxSP,BaseLevel*2; bonus bHealPower,10; } 2779:2780:5482,{ bonus bMatkRate,10; bonus bInt,5; bonus2 bSubRace,RC_Angel,10; } 2779:2780:5577,{ bonus bMatkRate,10; bonus bInt,5; bonus2 bSubRace,RC_Angel,10; } @@ -451,10 +457,10 @@ 2964:20943,{ bonus bUseSPrate,-5; } 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); } +2966:2967:18821,{ bonus2 bAddClass,Class_All,-(getequiprefinerycnt(EQI_HEAD_TOP)/2); } 2966:2968,{ bonus2 bAddClass,Class_All,4; bonus bMatkRate,4; } 2966:2969,{ bonus2 bAddClass,Class_All,4; bonus bMatkRate,4; } -2966:13092,{ bonus bBaseAtk,10*getequiprefinerycnt( (getequipid(EQI_HAND_R) == 13092) ? EQI_HAND_R : EQI_HAND_L ); } +2966:13092,{ bonus bBaseAtk,getequiprefinerycnt(EQI_HAND_R)*10; } 2966:16026,{ bonus bBaseAtk,getequiprefinerycnt(EQI_HAND_R)*5; } 2966:18821,{ bonus2 bAddClass,Class_All,getequiprefinerycnt(EQI_HEAD_TOP)/2; } 2967:2968,{ bonus2 bAddClass,Class_All,4; bonus bMatkRate,4; } @@ -462,11 +468,11 @@ 2967:13092,{ bonus bBaseAtk,getequiprefinerycnt(EQI_HAND_R)*10; } 2967:16026,{ bonus bBaseAtk,getequiprefinerycnt(EQI_HAND_R)*5; } 2967:18821,{ bonus2 bAddClass,Class_All,getequiprefinerycnt(EQI_HEAD_TOP)/2; } -2968:2969:13092,{ bonus bBaseAtk,-(getequiprefinerycnt(EQI_HAND_R)*10); } -2968:2969:18821,{ bonus bMagicAtkDef, getequiprefinerycnt(EQI_HEAD_TOP)/2; } -2968:13092,{ bonus bMatk,10*getequiprefinerycnt( (getequipid(EQI_HAND_R) == 13092) ? EQI_HAND_R : EQI_HAND_L ); } +2968:2969:13092,{ bonus bMatk,-(getequiprefinerycnt(EQI_HAND_R)*10); } +2968:2969:18821,{ bonus bMatkRate,-(getequiprefinerycnt(EQI_HEAD_TOP)/2); } +2968:13092,{ bonus bMatk,(getequiprefinerycnt(EQI_HAND_R)*10); } 2968:18821,{ bonus bMatkRate,getequiprefinerycnt(EQI_HEAD_TOP)/2; } -2969:13092,{ bonus bBaseAtk,getequiprefinerycnt(EQI_HAND_R)*10; } +2969:13092,{ bonus bMatk,getequiprefinerycnt(EQI_HAND_R)*10; } 2969:18821,{ bonus bMatkRate,getequiprefinerycnt(EQI_HEAD_TOP)/2; } 2977:2978,{ bonus5 bAutoSpell,"SO_PSYCHIC_WAVE",1,10,BF_WEAPON,1; bonus5 bAutoSpell,"HW_MAGICPOWER",1,10,BF_MAGIC,0; bonus5 bAutoSpell,"WZ_FROSTNOVA",10,10,BF_WEAPON|BF_MAGIC,0; bonus5 bAutoSpellWhenHit,"DC_SCREAM",1,10,BF_WEAPON|BF_MAGIC,0; } 2979:18852,{ bonus bMaxHPrate,15; bonus2 bSubEle,Ele_Fire,10; bonus bLongAtkRate,30; } @@ -615,6 +621,18 @@ 4683:4695,{ autobonus "{ bonus bAtk,100; }",30,6000,BF_WEAPON,"{ active_transform 3246,6000; }"; } 4697:27012,{ bonus bNoMadoFuel; } 4699:27012,{ bonus bNoMadoFuel; } +4958:19050,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if( .@r >= 7 ){ bonus bDelayrate,-1 - ( .@r >= 9 ) ? 1 : 0; } } +4959:19050,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if( .@r >= 7 ){ bonus bLongAtkRate,2 + ( .@r >= 9 ) ? 1 : 0; } } +4960:19050,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if( .@r >= 7 ){ bonus bUseSPrate,-2 - ( .@r >= 9 ) ? 1 : 0; } } +4961:19050,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if( .@r >= 7 ){ bonus bMatk,10 + ( .@r >= 9 ) ? 10 : 0; } } +4962:19050,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if( .@r >= 7 ){ bonus bAtk,2 + ( .@r >= 9 ) ? 5 : 0; } } +4963:19050,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if( .@r >= 7 ){ bonus bAtk,4 + ( .@r >= 9 ) ? 2 : 0; bonus bHit,3 + ( .@r > 9 ) ? 1 : 0; } } +4964:19050,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if( .@r >= 7 ){ bonus2 bMagicAddRace,RC_All,1 + ( .@r >= 9 ) ? 1 : 0; } } +4965:19050,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if( .@r >= 7 ){ bonus bVariableCastrate,-1 - ( .@r >= 9 ) ? 1 : 0; } } +4966:19050,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if( .@r >= 7 ){ bonus2 bAddRace,RC_All,1 + ( .@r >= 9 ) ? 1 : 0; } } +4967:19050,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if( .@r >= 7 ){ bonus bAspdRate,1 + ( .@r >= 9 ) ? 1 : 0; } } +4968:19050,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if( .@r >= 7 ){ setarray .@skills$, "AL_HEAL", "PR_SANCTUARY", "AM_POTIONPITCHER", "AB_HIGHNESSHEAL", "AB_CHEAL"; for( .@i = 0; .@i < getarraysize(.@skills$); .@i++ ){ bonus2 bSkillHeal,.@skills$[.@i],2 + ( .@r >= 9 ) ? 2 : 0; } } } +4969:19050,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if( .@r >= 7 ){ setarray .@skills$, "AL_HEAL", "PR_SANCTUARY", "AM_POTIONPITCHER", "AB_HIGHNESSHEAL", "AB_CHEAL"; for( .@i = 0; .@i < getarraysize(.@skills$); .@i++ ){ bonus2 bSkillHeal2,.@skills$[.@i],2 + ( .@r >= 9 ) ? 2 : 0; } /* TODO: Depending on some recovery items HP recovery amount + 1% or if refine >= 9 + 2% */ } } 470016:480012:490014:450018,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bMaxHPrate,5; bonus bDelayrate,-5; bonus2 bSkillAtk,"RK_DRAGONBREATH",10; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",10; if (.@r>=27) { bonus bMaxHPrate,5; bonus bDelayrate,-5; bonus2 bSkillAtk,"RK_DRAGONBREATH",10; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",10; } } 470016:480012:490014:450019,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bAspd,1; bonus bCritAtkRate,5; bonus2 bSkillAtk,"RK_IGNITIONBREAK",10; if (.@r>=27) { bonus bAspd,1; bonus bCritAtkRate,5; bonus2 bSkillAtk,"RK_IGNITIONBREAK",10; } } 470016:480012:490014:450020,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bAspd,1; bonus bLongAtkRate,5; bonus2 bSkillAtk,"LG_CANNONSPEAR",10; if (.@r>=27) { bonus bAspd,1; bonus bLongAtkRate,5; bonus2 bSkillAtk,"LG_CANNONSPEAR",10; } } @@ -723,18 +741,6 @@ 470021:480019:490020:450118,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bVariableCastrate,-5; bonus bMatkRate,2; bonus2 bSkillAtk,"SP_SWHOO",15; if (.@r>=27) { bonus bVariableCastrate,-5; bonus bMatkRate,3; bonus2 bSkillAtk,"SP_SWHOO",15; } } 470021:480019:490020:450119,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bVariableCastrate,-5; bonus bMatkRate,2; bonus2 bSkillAtk,"SP_CURSEEXPLOSION",15; if (.@r>=27) { bonus bVariableCastrate,-5; bonus bMatkRate,3; bonus2 bSkillAtk,"SP_CURSEEXPLOSION",15; } } 470021:480019:490020:450126,{ .@r = getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_ARMOR); bonus bMaxHPrate,5; bonus bMatkRate,2; bonus5 bAutoSpell,"SO_PSYCHIC_WAVE",1,70,BF_SHORT,1; if (.@r>=27) { bonus bMaxHPrate,5; bonus bMatkRate,3; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",10; } } -4958:19050,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if( .@r >= 7 ){ bonus bDelayrate,-1 - ( .@r > 9 ) ? 1 : 0; } } -4959:19050,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if( .@r >= 7 ){ bonus bLongAtkRate,2 + ( .@r > 9 ) ? 1 : 0; } } -4960:19050,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if( .@r >= 7 ){ bonus bUseSPrate,-2 - ( .@r > 9 ) ? 1 : 0; } } -4961:19050,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if( .@r >= 7 ){ bonus bMatk,10 + ( .@r > 9 ) ? 10 : 0; } } -4962:19050,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if( .@r >= 7 ){ bonus bAtk,2 + ( .@r > 9 ) ? 5 : 0; } } -4963:19050,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if( .@r >= 7 ){ bonus bAtk,4 + ( .@r > 9 ) ? 2 : 0; bonus bHit,3 + ( .@r > 9 ) ? 1 : 0; } } -4964:19050,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if( .@r >= 7 ){ bonus2 bMagicAddRace,RC_All,1 + ( .@r > 9 ) ? 1 : 0; } } -4965:19050,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if( .@r >= 7 ){ bonus bVariableCastrate,-1 - ( .@r > 9 ) ? 1 : 0; } } -4966:19050,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if( .@r >= 7 ){ bonus2 bAddRace,RC_All,1 + ( .@r > 9 ) ? 1 : 0; } } -4967:19050,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if( .@r >= 7 ){ bonus bAspdRate,1 + ( .@r > 9 ) ? 1 : 0; } } -4968:19050,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if( .@r >= 7 ){ setarray .@skills$, "AL_HEAL", "PR_SANCTUARY", "AM_POTIONPITCHER", "AB_HIGHNESSHEAL", "AB_CHEAL"; for( .@i = 0; .@i < getarraysize(.@skills$); .@i++ ){ bonus2 bSkillHeal,.@skills$[.@i],2 + ( .@r > 9 ) ? 2 : 0; } } } -4969:19050,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); if( .@r >= 7 ){ setarray .@skills$, "AL_HEAL", "PR_SANCTUARY", "AM_POTIONPITCHER", "AB_HIGHNESSHEAL", "AB_CHEAL"; for( .@i = 0; .@i < getarraysize(.@skills$); .@i++ ){ bonus2 bSkillHeal2,.@skills$[.@i],2 + ( .@r > 9 ) ? 2 : 0; } /* TODO: Depending on some recovery items HP recovery amount + 1% or if refine >= 9 + 2% */ } } 5040:5442,{ bonus bAspdRate,3; bonus bVariableCastrate,3; } 5040:18672,{ bonus bSPrecovRate,3; } 5040:18673,{ bonus bHealPower,10; } @@ -742,7 +748,7 @@ 5043:18656,{ bonus bFlee,10; bonus2 bAddEff,Eff_Stun,1000; } 5048:18538,{ bonus2 bSubRace,RC_Demon,9; } 5068:5653,{ bonus bStr,1; bonus2 bAddClass,Class_All,5; } -5070:18576,{ bonus2 bSkillAtk,"MO_TRIPLEATTACK",5; bonus2 bSkillAtk,"MO_COMBOFINISH",5; bonus2 bSkillAtk,"CH_TIGERFIST",3; bonus2 bSkillAtk,"CH_CHAINCRUSH",3; if( getequiprefinerycnt(EQI_HEAD_TOP) < 10 ) bonus bUseSPrate, getequiprefinerycnt(EQI_HEAD_TOP); } +5070:18576,{ bonus2 bSkillAtk,"MO_TRIPLEATTACK",5; bonus2 bSkillAtk,"MO_COMBOFINISH",5; bonus2 bSkillAtk,"CH_TIGERFIST",3; bonus2 bSkillAtk,"CH_CHAINCRUSH",3; .@r = getequiprefinerycnt(EQI_HEAD_TOP); bonus2 bSkillUseSPrate,"CH_TIGERFIST",-10+min(10,.@r); bonus2 bSkillUseSPrate,"CH_CHAINCRUSH",-10+min(10,.@r); } 5073:5574,{ bonus bDex,2; bonus bDef,2; } 5074:5653,{ bonus bStr,1; bonus bAspdRate,2; } 5074:18827,{ autobonus "{ bonus2 bHPLossRate,30,1000; bonus bHit,-10; bonus bSplashRange,1; }",10+getequiprefinerycnt(EQI_HEAD_TOP),5000,BF_WEAPON,"{ transform 1765,5000; }"; } @@ -817,6 +823,10 @@ 1298:4521,{ bonus bCritAtkRate,5; } 13027:15044,{ .@r = max(getequiprefinerycnt(EQI_ARMOR),1); bonus3 bAddMonsterDropItem,929,RC_DemiHuman,70*.@r; bonus3 bAddMonsterDropItem,970,RC_DemiHuman,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; }"; } +13081:4153,{ bonus2 bAddEle,Ele_Water,8; } +13081:4153:4247:4273,{ bonus2 bAddEle,Ele_Water,16; } +13081:4247,{ bonus2 bAddEle,Ele_Water,8; } +13081:4273,{ bonus2 bAddEle,Ele_Water,8; } 13215:28224,{ bonus bLongAtkRate,30; } 13332:15178:20821,{ bonus2 bSkillCooldown,"KO_HUUMARANKA",-1000; bonus bLongAtkRate,15; } 13337:19210,{ bonus bVariableCastrate,-15; .@eq = getequiprefinerycnt(EQI_HEAD_TOP); .@weapon = getequiprefinerycnt(EQI_HAND_R); if (.@eq >= 7 && .@weapon >= 7) { .@val = 25; } if ((.@eq + .@weapon) >= 18) { .@val += 25; if ((.@eq + .@weapon) >= 22) { bonus2 bSkillCooldown,"KO_HUUMARANKA",-1000; } } if (.@val) { bonus2 bSkillAtk,"KO_HUUMARANKA",.@val; } } @@ -849,7 +859,7 @@ 15138:19026:20756:22059,{ bonus bMaxHP,1000; bonus bMaxSP,100; bonus2 bExpAddRace,RC_Fish,20; bonus2 bMagicAddRace,RC_Fish,50; bonus2 bSubEle,Ele_Water,50; } 15145:18652,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); 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; } } 15145:2554,{ bonus2 bSPDrainRate,-10,1; } -15145:5208,{ .@i = (getequiprefinerycnt(EQI_HEAD_TOP)>8)?2:1; bonus2 bHPDrainRate,-50,8*.@i; bonus2 bSPDrainRate,-10,4*.@i; } +15145:5208,{ bonus2 bHPDrainRate,-50,8; bonus2 bSPDrainRate,-10,4; } 15156:20790:22085,{ bonus bMaxHP,4000; bonus bNoCastCancel; bonus bFixedCastrate,-25-(getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_SHOES)); } 15156:20790:22085:28382:28418,{ bonus bMaxHPrate,20; bonus bMaxSPrate,20; bonus2 bSkillAtk,"SU_CN_METEOR",200; } 15156:20790:22085:28380:28421,{ bonus bMaxHPrate,30; bonus bMaxSPrate,9; bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",200; } @@ -1017,6 +1027,7 @@ 19272:4365,{ bonus bVariableCastrate,-100; bonus2 bSkillCooldown,"WL_TELEKINESIS_INTENSE",-120000; } 19299:4463,{ .@type = getiteminfo(getequipid(EQI_COMPOUND_ON),11); if (.@type == W_BOOK || .@type == W_STAFF || .@type == W_2HSTAFF) { bonus2 bMagicAddRace,RC_Player_Human, getequiprefinerycnt(EQI_HAND_R)*2; } } 19299:5966,{ .@a = readparam(bDex); bonus bMatk,10; bonus bVariableCastrate,-2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; if (.@a>=108) { bonus bMatk,20; bonus bVariableCastrate,-3; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; } if (.@a>=120) { bonus bMatk,30; bonus bVariableCastrate,-5; bonus2 bSubRace,RC_DemiHuman,4; bonus2 bSubRace,RC_Player_Human,4; } } +19310:15250:20906:22173:28566,{ if(BaseLevel>=125){ bonus bBaseAtk,10; bonus bMatk,10; } if(BaseLevel>=130){ bonus bMaxHPrate,1; bonus bMaxSPrate,1; } autobonus "{}",20,100,BF_WEAPON,"{ heal 500,50; }"; autobonus "{}",20,100,BF_MAGIC,"{ heal 250,100; }"; } 19326:4187,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); bonus2 bExpAddRace,RC_DEMON,5; if (.@r>=6) bonus2 bExpAddRace,RC_DEMON,5; if (.@r>=8) bonus2 bExpAddRace,RC_DEMON,5; } 19326:4190,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); bonus2 bExpAddRace,RC_Undead,5; if (.@r>=6) bonus2 bExpAddRace,RC_Undead,5; if (.@r>=8) bonus2 bExpAddRace,RC_Undead,5; } 19326:4224,{ .@r = getequiprefinerycnt(EQI_HEAD_TOP); bonus2 bExpAddRace,RC_Brute,5; if (.@r>=6) bonus2 bExpAddRace,RC_Brute,5; if (.@r>=8) bonus2 bExpAddRace,RC_Brute,5; } @@ -1037,6 +1048,9 @@ 19397:29584,{ bonus2 bSkillAtk,"SP_SWHOO",40; bonus2 bSkillAtk,"SL_SMA",40; bonus2 bSkillAtk,"SP_SPA",40; bonus2 bSkillCooldown,"SP_SOULREAPER",-10000; } 19428:20948:32238:32239,{ bonus bInt,5; bonus bMaxSPrate,10; bonus bDef,100; bonus2 bMagicAtkEle,Ele_Water,10; bonus2 bMagicAtkEle,Ele_Earth,10; bonus2 bMagicAtkEle,Ele_Neutral,10; .@head = getequiprefinerycnt(EQI_HEAD_TOP); .@garment = getequiprefinerycnt(EQI_GARMENT); if (.@head >= 7 && .@garment >= 7) { .@matk = 40; } if ((.@head + .@garment) >= 18) { .@matk += 40; bonus2 bMagicAtkEle,Ele_Ghost,15; bonus2 bMagicAtkEle,Ele_Wind,15; bonus2 bMagicAtkEle,Ele_Holy,15; if ((.@head + .@garment) >= 22) { bonus bMatkRate,10; bonus2 bIgnoreMdefRaceRate,RC_Formless,50; bonus2 bIgnoreMdefRaceRate,RC_Demon,50; bonus2 bIgnoreMdefRaceRate,RC_Brute,50; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,50; } } bonus bMatk,.@matk; } 20135:20136,{ bonus bAllStats,12; } +2053:19451,{ bonus2 bSubRace,RC_Player_Human,3; bonus2 bAddClass,Class_All,15; bonus2 bMagicAddClass,Class_All,15; } +2053:27301,{ bonus2 bAddClass,Class_All,10; bonus bAspdRate,10; } +2060:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); bonus bMatk,30; autobonus "{ bonus2 bMagicAtkEle,Ele_Earth,10; bonus2 bMagicAtkEle,Ele_Wind,10; }",10,10000,BF_MAGIC; if (.@sum>=30) { bonus2 bMagicAddEle,Ele_Undead,20; bonus2 bMagicAddEle,Ele_Holy,20; } } 20701:2165,{ .@a = getequiprefinerycnt(EQI_GARMENT); .@b = getequiprefinerycnt(EQI_HAND_L); bonus2 bAddEle,Ele_Earth,.@b; bonus2 bSubRace,RC_Fish,.@a; } 20714:28320,{ .@val = min(12,getequiprefinerycnt(EQI_GARMENT)); bonus2 bAddRace,RC_DemiHuman,.@val; bonus2 bAddRace,RC_Player_Human,.@val; } 20717:22000,{ bonus bMaxHPRate,15; bonus bMaxSPRate,5; } @@ -1442,6 +1456,19 @@ 32222:15096,{ .@r = getequiprefinerycnt(EQI_ARMOR); bonus bAllStats,2*.@r; bonus3 bAddEff,Eff_Stun,.@r*50,ATF_SHORT; bonus3 bAddEff,Eff_Curse,.@r*50,ATF_SHORT; bonus3 bAddEff,Eff_Poison,.@r*50,ATF_SHORT; bonus3 bAddEff,Eff_Silence,.@r*50,ATF_SHORT; /* Unknow rates */ } 32238:32239,{ bonus bVariableCastrate,-10; bonus bMatkRate,10; } 1336:15388:15389,{ .@r = getequiprefinerycnt(EQI_HAND_R) + getequiprefinerycnt(EQI_ARMOR) + getequiprefinerycnt(EQI_GARMENT); bonus bBaseAtk,30; autobonus "{ bonus bLongAtkRate,10; }",10,10000,BF_WEAPON; if(.@r >= 30){ bonus2 bAddRace,RC_Undead,20; bonus2 bAddRace,RC_Angel,20; } } +1590:4037,{ bonus bAspdRate,5; } +1590:4117,{ bonus bAspdRate,5; } +1590:4037:4117,{ bonus bAspd,1; } +1598:4037,{ bonus bAspdRate,5; } +1598:4117,{ bonus bAspdRate,5; } +1598:4037:4117,{ bonus bAspd,1; } +//[TODO]Warrior's Sword:32234,{ bonus2 bAddRace,RC_Insect,20; bonus2 bAddRace,RC_Plant,20; bonus2 bMagicAddRace,RC_Insect,20; bonus2 bMagicAddRace,RC_Plant,20; bonus2 bAddEle,Ele_Wind,20; bonus2 bAddEle,Ele_Earth,20; bonus2 bMagicAddEle,Ele_Wind,15; bonus2 bMagicAddEle,Ele_Earth,20; } +//[TODO]Warrior's Gun:32234,{ bonus2 bAddRace,RC_Insect,20; bonus2 bAddRace,RC_Plant,20; bonus2 bMagicAddRace,RC_Insect,20; bonus2 bMagicAddRace,RC_Plant,20; bonus2 bAddEle,Ele_Wind,20; bonus2 bAddEle,Ele_Earth,20; bonus2 bMagicAddEle,Ele_Wind,15; bonus2 bMagicAddEle,Ele_Earth,20; } +//[TODO]Warrior's Mace:32234,{ bonus2 bAddRace,RC_Insect,20; bonus2 bAddRace,RC_Plant,20; bonus2 bMagicAddRace,RC_Insect,20; bonus2 bMagicAddRace,RC_Plant,20; bonus2 bAddEle,Ele_Wind,20; bonus2 bAddEle,Ele_Earth,20; bonus2 bMagicAddEle,Ele_Wind,15; bonus2 bMagicAddEle,Ele_Earth,20; } +//[TODO]Warrior's Staff:32234,{ bonus2 bAddRace,RC_Insect,20; bonus2 bAddRace,RC_Plant,20; bonus2 bMagicAddRace,RC_Insect,20; bonus2 bMagicAddRace,RC_Plant,20; bonus2 bAddEle,Ele_Wind,20; bonus2 bAddEle,Ele_Earth,20; bonus2 bMagicAddEle,Ele_Wind,15; bonus2 bMagicAddEle,Ele_Earth,20; } +//[TODO]Warrior's Bow:32234,{ bonus2 bAddRace,RC_Insect,20; bonus2 bAddRace,RC_Plant,20; bonus2 bMagicAddRace,RC_Insect,20; bonus2 bMagicAddRace,RC_Plant,20; bonus2 bAddEle,Ele_Wind,20; bonus2 bAddEle,Ele_Earth,20; bonus2 bMagicAddEle,Ele_Wind,15; bonus2 bMagicAddEle,Ele_Earth,20; } +1448:32234,{ bonus2 bAddRace,RC_Brute,20; bonus2 bAddRace,RC_Plant,20; bonus2 bMagicAddRace,RC_Brute,20; bonus2 bMagicAddRace,RC_Plant,20; bonus2 bAddEle,Ele_Wind,20; bonus2 bAddEle,Ele_Earth,20; bonus2 bMagicAddEle,Ele_Wind,15; bonus2 bMagicAddEle,Ele_Earth,20; } +29176:32234,{ bonus2 bAddRace,RC_Brute,15; bonus2 bAddRace,RC_Plant,15; bonus2 bMagicAddRace,RC_Brute,15; bonus2 bMagicAddRace,RC_Plant,15; bonus2 bAddEle,Ele_Wind,15; bonus2 bAddEle,Ele_Earth,15; bonus2 bMagicAddEle,Ele_Wind,15; bonus2 bMagicAddEle,Ele_Earth,15; } //22171:18164,{ autobonus "{ bonus bDex,20; bonus bLongAtkRate,20; }",30,7000,BF_WEAPON; } /*Not had item in item_db yet*/ //22171:18170,{ autobonus "{ bonus bDex,20; bonus bLongAtkRate,15; }",30,7000,BF_WEAPON; } /*Not had item in item_db yet*/ //22171:2048,{ autobonus "{ bonus bInt,20; bonus bMatkRate,15; }",30,7000,BF_MAGIC; } /*Not had item in item_db yet*/ diff --git a/db/re/item_db.txt b/db/re/item_db.txt index 72b2d2a948..1e844da37b 100644 --- a/db/re/item_db.txt +++ b/db/re/item_db.txt @@ -685,7 +685,7 @@ 1318,Dofle_Axe,Deflation Axe,5,50000,,1800,180,,1,2,0x000654E2,63,2,2,4,105,1,6,{ skill "ITM_TOMAHAWK",1; },{},{} 1319,TE_Woe_Axe,TE Woe Axe,5,0,,0,100,,1,0,0x000654E3,63,2,2,3,40,1,6,{ bonus bUnbreakableWeapon; bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Freeze,1000; },{},{} 1321,Dofle_Axe_,Deflation Axe,5,50000,,1800,180,,1,3,0x000654E2,63,2,2,4,105,1,6,{ skill "ITM_TOMAHAWK",1; },{},{} -1322,Ru_Blue_Axe,Blue Axe,5,10,,1800,180,,1,1,0xFFFBFFFF,56,2,2,1,1,1,6,{ bonus bStr,5; bonus bVit,5; },{},{} +1322,Ru_Blue_Axe,Blue Axe,5,10,,1800,180,,1,1,0xFFFBFFFF,56,2,2,3,100,1,6,{ bonus bStr,5; bonus bInt,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; },{},{} 1324,War_Axe_,War Axe,5,20,,4200,140,,1,3,0x00040400,63,2,2,3,76,1,6,{ bonus bDex,2; bonus bLuk,2; },{},{} 1326,Illusion_War_Axe,Illusion War Axe,5,0,,4200,180,,1,2,0x00040420,63,2,2,4,120,1,6,{ bonus bStr,2; bonus bDex,2; bonus bLuk,2; .@r = getrefine(); if (.@r >= 9) { .@val = 40; } else if (.@r >= 7) { .@val = 20; } bonus2 bSkillAtk,"NC_AXETORNADO",(100+.@val); bonus2 bSkillAtk,"NC_AXEBOOMERANG",(100+.@val); bonus2 bSkillAtk,"GN_CART_TORNADO",(75+.@val); },{},{} @@ -693,7 +693,7 @@ // 2-Handed Axes //=================================================================== 1333,Golden_Wrench,Golden Wrench,5,,,5500,220,,1,2,0x00000400,56,2,2,4,170,1,6,{ .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bAddClass,Class_all,5; bonus bBaseAtk,4*.@r; if (.@r>=11) .@val = 35; else if (.@r>=9) .@val = 20; bonus2 bSkillAtk,"NC_AXEBOOMERANG",.@val; bonus2 bSkillAtk,"NC_POWERSWING",.@val; },{},{} -1336,Guardian_Knight_Axe,Guardian Knight Axe,5,0,,1500,210,,1,2,0xFFFFFBFF,56,2,2,4,170,1,6,{ bonus bUnbreakableWeapon; bonus2 bAddClass,Class_All,5; .@r = getrefine(); bonus bLongAtkRate,.@r; if(.@r >= 9){ bonus2 bSkillAtk,"NC_POWERSWING",20; } if(.@r >= 11){ bonus2 bAddRace,RC_Undead,20; bonus2 bAddRace,RC_Angel,20; } },{},{} +1336,Guardian_Knight_Axe,Guardian Knight Axe,5,0,,1500,210,,1,2,0xFFFFFBFF,56,2,2,4,170,1,6,{ bonus bUnbreakableWeapon; bonus2 bAddClass,Class_All,5; .@r = getrefine(); bonus bLongAtkRate,.@r; if(.@r >= 9){ bonus2 bSkillAtk,"NC_POWERSWING",20; bonus2 bSkillAtk,"NC_AXEBOOMERANG",20; } if(.@r >= 11){ bonus2 bAddRace,RC_Undead,20; bonus2 bAddRace,RC_Angel,20; } },{},{} 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,{},{},{} @@ -727,7 +727,7 @@ 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_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-3,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-3,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,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,0x00040420,63,2,34,4,60,1,7,{ bonus2 bAddRace,RC_Undead,10; bonus3 bAutoSpell,"AL_BLESSING",5,5; },{},{} -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; bonus4 bAutoSpellOnSkill,"BS_HAMMERFALL","SM_MAGNUM",50,3; },{},{} +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; bonus4 bAutoSpellOnSkill,"BS_HAMMERFALL","SM_MAGNUM",3,50; },{},{} 1385,Bradium_Stonehammer,Bradium Stone Hammer,5,20,,2700,210,,1,0,0x00000400,2,2,34,4,75,1,7,{ bonus3 bAddEffOnSkill,"BS_HAMMERFALL",Eff_Stun,500+(200*getrefine()); },{},{} 1386,Doom_Slayer_I,Doom Slayer,5,0,,0,20,,1,0,0x000444A2,63,2,34,4,0,0,7,{ bonus bAspdRate,-25; bonus bUseSPrate,100; if(readparam(bStr)>=95){ bonus bBaseAtk,400; bonus2 bAddEff,Eff_Stun,3000; bonus bBreakArmorRate,500; } },{},{} 1387,Giant_Axe,Giant Axe,5,20,,4000,330,,1,1,0x00044480,18,2,34,3,50,1,7,{ bonus2 bSkillAtk,"WS_CARTTERMINATION",15; if(readparam(bStr)>=95) { bonus bHit,10; bonus bAspdRate,3; } },{},{} @@ -770,9 +770,9 @@ 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_Human,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; bonus bIgnoreDefRace,RC_Player_Doram; 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; },{},{} +1424,Skewer_C,Refined Brocca,5,1,,0,149,,3,0,0x00004082,63,2,2,4,1,0,4,{ bonus bIgnoreDefClass,Class_Normal; bonus2 bAddSize,Size_Medium,20; bonus2 bAddSize,Size_Large,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_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; 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_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,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; } },{},{} +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_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus bAspdRate,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,100; bonus bAspdRate,5; } },{},{} 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; },{},{} 1429,Hunting_Spear_M,Hunting Spear,5,20,,4200,180,,3,1,0x00004082,18,2,2,4,60,1,4,{ bonus bIgnoreDefRace,RC_Brute; bonus bIgnoreDefRace,RC_Player_Doram; bonus3 bAddMonsterDropItem,517,RC_Brute,1000; bonus3 bAutoSpell,"LK_JOINTBEAT",3,100; },{},{} @@ -781,17 +781,19 @@ 1432,E_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; },{},{} 1433,Imperial_Spear,Imperial Spear,5,20,,1800,180:40,,3,1,0x00004082,63,2,2,3,102,1,4,{ .@r = getrefine(); bonus2 bSkillAtk,"LG_CANNONSPEAR",20+(.@r/2*3); bonus2 bSkillAtk,"LG_BANISHINGPOINT",20+(.@r/2*3); },{},{} 1434,P_Sphere1,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); },{},{} +1435,Cannon_Spear,Cannon Spear,5,56000,,1600,180,,3,1,0x00004000,56,2,2,4,100,1,4,{ bonus bMaxSP,-100; bonus2 bSkillAtk,"LG_CANNONSPEAR",10; bonus2 bSkillAtk,"LG_CANNONSPEAR",(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_Human,60; .@r = getrefine(); if(.@r>=6) { bonus2 bSkillAtk,"RK_HUNDREDSPEAR",80; bonus2 bSkillAtk,"LG_PINPOINTATTACK",80; } if(.@r>=9) { bonus2 bAddRace,RC_Player_Human,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_Human,40; bonus2 bAddEff,Eff_Curse,3000; },{},{} +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_Human,40; bonus2 bAddEff,Eff_Curse,1000; },{},{} 1438,Thanos_Spear,Thanos Spear,5,10,,3000,150:100,,3,1,0x00004082,56,2,2,4,120,1,4,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000; },{},{ heal -1000,0; } 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_Human,45; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon; if(BaseJob==Job_Crusader) bonus bAspdRate,20; },{},{} 1440,Battle_Hook_,Battle Hook,5,20,,900,140,,3,3,0x00004082,18,2,2,4,65,1,4,{ bonus2 bAddEff,Eff_Stun,500; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; skill "KN_PIERCE",3; },{},{} -1441,Ru_Blue_Spear,Blue Spear,5,10,,1200,180:170,,3,1,0x00004000,56,2,2,3,100,1,4,{ bonus bDex,5; bonus bInt,5; },{},{} +1441,Ru_Blue_Spear,Blue Spear,5,10,,1200,180,,3,1,0x00004000,56,2,2,3,100,1,4,{ bonus bStr,5; bonus bAgi,5; },{},{} 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,0x00004082,63,2,2,3,70,1,4,{ .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); },{},{} +1443,Crimson_Spear,Crimson Spear,5,20,,900,90,,3,2,0x00004082,63,2,2,3,70,1,4,{ .@r = getrefine(); bonus bBaseAtk,(.@r<=15?pow(.@r,2):225); bonus bBaseAtk,((max(0,BaseLevel-70)/10)*5); },{},{} +1445,[Rental]_Hunting_Spear,[Rental] Hunting Spear,5,20,,0,140,,3,2,0x00004082,63,2,2,3,50,1,4,{ .@r = getrefine(); if(.@r >= 7){ bonus2 bAddRace,RC_Insect,10; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddEle,Ele_Water,10; bonus2 bAddEle,Ele_Earth,10; } if(.@r >= 9){ bonus2 bAddRace,RC_Insect,15; bonus2 bAddRace,RC_DemiHuman,15; bonus2 bAddEle,Ele_Water,15; bonus2 bAddEle,Ele_Earth,15; } bonus bAtkEle,Ele_Fire; },{},{} 1446,Requiem_Spear,Requiem Spear,5,20,,1000,130,,3,,0x00004080,63,2,2,4,100,1,4,{ .@r = getrefine(); .@b = 40; bonus bUnbreakableWeapon; if(.@r>=5){ .@b += (.@r-5)*15+20; } bonus2 bAddRace2,RC2_BioLab,.@b; },{},{} 1447,Poison_Forged_Spear,Poison Forged Spear,5,0,,500,150,,3,3,0x00004080,58,2,2,4,100,1,4,{ bonus bAtkEle,Ele_Poison; bonus bCritical,10; skill "TF_DOUBLE",5; bonus bDoubleRate,25; bonus2 bAddEff,Eff_Poison,1000; bonus2 bAddEff2,Eff_Poison,300; },{},{} +1448,Warrior's_Spear,Warrior's Spear,5,0,,2000,140,,3,3,0x00004082,63,2,2,3,50,1,4,{ .@r = getrefine(); if(.@r >= 7){ bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Plant,10; bonus2 bAddEle,Ele_Wind,10; bonus2 bAddEle,Ele_Earth,10; } if(.@r >= 9){ bonus2 bAddRace,RC_Brute,15; bonus2 bAddRace,RC_Plant,15; bonus2 bAddEle,Ele_Wind,15; bonus2 bAddEle,Ele_Earth,15; } },{},{} 1449,Gelerdria_,Gelerdria,5,20,,700,145,,3,3,0x00004082,63,2,2,4,48,1,4,{ bonus bAtkEle,Ele_Earth; bonus bMaxHP,800; bonus bMaxSP,-50; },{},{} //=================================================================== // 2-Handed Spears @@ -812,11 +814,11 @@ 1463,Halberd,Halberd,5,54000,,2500,165,,3,1,0x00004082,63,2,34,3,33,1,5,{},{},{} 1464,Halberd_,Halberd,5,54000,,2500,165,,3,2,0x00004082,63,2,34,3,33,1,5,{},{},{} 1465,Halberd__,Halberd,5,54000,,2500,165,,3,0,0x00004082,63,2,34,3,33,1,5,{},{},{} -1466,Crescent_Scythe,Crescent Scythe,5,20,,2500,180,,3,0,0x00004082,63,2,34,4,48,1,5,{ bonus bCritical,30; bonus bHit,10; },{},{} +1466,Crescent_Scythe,Crescent Scythe,5,20,,2500,180,,3,0,0x00004082,63,2,34,4,48,1,5,{ bonus bCriticalRate,30; bonus bHit,10; },{},{} 1467,Bill_Guisarme,Bill Guisarme,5,20,,1000,183,,3,0,0x00004082,63,2,34,4,48,1,5,{ bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Player_Doram,10; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; },{},{} 1468,Zephyrus,Zephyrus,5,20,,2000,170,,3,0,0x00004082,63,2,34,4,48,1,5,{ bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Silence,200; bonus3 bAutoSpell,"MG_THUNDERSTORM",3,100; },{},{} 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_Human,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; },{},{} +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; },{},{} 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 @@ -828,7 +830,7 @@ //=================================================================== 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; },{},{} +1476,Crescent_Scythe_,Crescent Scythe,5,20,,2500,180,,3,1,0x00004082,63,2,34,4,48,1,5,{ bonus bCriticalRate,30; bonus bHit,10; },{},{} 1477,Spectral_Spear,Spectral Spear,5,20,,2000,170,,3,0,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 bSubEle,Ele_Undead,10; bonus2 bSubRace,RC_Demon,10; bonus2 bAddEff2,Eff_Confusion,1000; bonus bHPGainValue,50; },{},{} 1478,Ahlspiess,Ahlspiess,5,20,,1000,120,,3,0,0x00004080,63,2,34,4,65,1,5,{ bonus bIgnoreDefClass,Class_Normal; bonus bIgnoreDefClass,Class_Boss; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus3 bAutoSpell,"KN_PIERCE",5,30; },{},{} 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 bSubEle,Ele_Undead,10; bonus2 bSubRace,RC_Demon,10; bonus2 bAddEff2,Eff_Confusion,1000; bonus bHPGainValue,50; },{},{} @@ -840,17 +842,17 @@ 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_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,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_Human,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; 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; } },{},{} +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,20; bonus2 bAddRace,RC_Player_Human,20; bonus3 bAutoSpell,"KN_PIERCE",5,30; },{},{} +1489,Spearfish_,Marlin,5,0,,0,220,,3,0,0x00004082,18,2,34,1,50,0,5,{ 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_Human,80; .@r = getrefine(); if(.@r>=6) { bonus2 bSkillAtk,"LK_SPIRALPIERCE",100; bonus2 bSkillAtk,"LG_OVERBRAND",50; } if(.@r>=9) { autobonus2 "{ bonus bShortWeaponDamageReturn,20; bonus bMagicDamageReturn,20; }",100,2000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_REFLECTSHIELD; }"; } },{},{} +1492,Velum_Glaive,Vellum Glaive,5,20,,4500,250,,3,0,0x00004082,63,2,34,4,95,1,5,{ bonus2 bAddRace,RC_Player_Human,80; bonus2 bAddRace,RC_Player_Doram,80; .@r = getrefine(); if(.@r>=6) { bonus2 bSkillAtk,"LK_SPIRALPIERCE",100; bonus2 bSkillAtk,"LG_OVERBRAND",50; } if(.@r>=9) { bonus bShortWeaponDamageReturn,20; bonus bMagicDamageReturn,20; bonus5 bAutoSpellWhenHit,"NPC_MAGICMIRROR",7,300,BF_MAGIC,0; } },{},{} 1493,Metal_Lance,Metal Lance,5,20,,0,100,,3,1,0x00004082,63,2,34,3,1,1,5,{ bonus bBaseAtk,(getrefine()*6); .@i = min(BaseLevel/10,12); 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; },{},{} -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_Human,40; bonus2 bAddEff,Eff_Blind,3000; },{},{} +1494,Undine_Spear,Spear Of Odin,5,50000,,3800,190,,3,3,0x00004082,63,2,34,4,105,1,5,{ bonus bAtkEle,Ele_Water; bonus bMaxHPrate,getrefine(); },{},{} +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_Human,40; bonus2 bAddEff,Eff_Blind,1000; },{},{} 1496,Thanos_Long_Spear,Thanos Long Spear,5,10,,3750,250:50,,3,1,0x00004082,56,2,34,4,120,1,5,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000; },{},{ heal -1000,0; } 1497,Hell_Fire_,Hellfire,5,20,,3500,200,,3,3,0x00004082,63,2,34,4,48,1,5,{ bonus bAtkEle,Ele_Fire; bonus3 bAutoSpell,"MG_FIREBALL",5,100; bonus bStr,3; },{},{} -1498,Crimson_Lance,Crimson Lance,5,20,,1750,175,,1,2,0x00004082,63,2,34,3,70,1,5,{ .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); },{},{} +1498,Crimson_Lance,Crimson Lance,5,20,,1750,175,,1,2,0x00004082,63,2,34,3,70,1,5,{ .@r = getrefine(); bonus bBaseAtk,pow(.@r,2); bonus bBaseAtk,(max(0,BaseLevel-70)/10)*5; },{},{} 1499,Requiem_Lance,Requiem Lance,5,20,,1500,220,,3,,0x00004080,63,2,34,4,100,1,5,{ .@r = getrefine(); .@b = 40; .@c = 5; bonus bUnbreakableWeapon; if(.@r>=5){ .@b += (.@r-5)*15+30; .@c += (.@r-5); } bonus2 bAddRace2,RC2_BioLab,.@b; bonus2 bSubRace2,RC2_BioLab,.@c; },{},{} //=================================================================== // Maces @@ -877,7 +879,7 @@ 1520,Chain_,Chain,5,23000,,800,84,,1,3,0x0004C5B2,63,2,2,2,14,1,8,{},{},{} 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; },{},{} +1523,Spike,Spike,5,20,,700,85,,1,0,0x00008110,63,2,2,4,40,1,8,{ bonus bCriticalRate,40; bonus bDefRate,-66; bonus bDef2Rate,-66; },{},{} 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; },{},{} 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 bComaRace,RC_Undead,10; bonus2 bExpAddRace,RC_Undead,5; },{},{} @@ -895,14 +897,14 @@ 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; },{},{} 1540,Grand_Cross_,Grand Cross,5,20,,1500,140,,1,1,0x00008110,63,2,2,4,40,1,8,{ bonus bAtkEle,Ele_Holy; 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; }"; },{},{} +1541,Nemesis,Nemesis,5,20,,900,120,,1,0,0x00008110,63,2,2,4,60,1,8,{ bonus bAtkEle,Ele_Holy; bonus2 bAddEle,Ele_Dark,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_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; },{},{} 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_Human,75; bonus bUnbreakableWeapon; 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_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,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; },{},{} +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 bCriticalRate,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 @@ -924,35 +926,40 @@ 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 bComaRace,RC_DemiHuman,10; bonus2 bComaRace,RC_Player_Human,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; },{},{} +1567,Hardback_C,Refined Hardcover Book,5,1,,0,168:100,,1,0,0x00410100,63,2,2,4,1,0,15,{ bonus bStr,5; bonus bDex,2; },{},{} 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; },{},{} 1569,Book_Of_Mother_Earth_,Book of Mother Earth,5,35000,,750,90,,1,3,0x00410100,63,2,2,3,27,1,15,{ bonus bAtkEle,Ele_Earth; },{},{} 1570,Book_Of_Blazing_Sun_,Book of Blazing Sun,5,35000,,750,90,,1,3,0x00410100,63,2,2,3,27,1,15,{ bonus bAtkEle,Ele_Fire; },{},{} 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_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; },{},{} -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_Human,25; bonus bUnbreakableWeapon; },{},{} -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_Human,80; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,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_Human,80; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,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; },{},{} +1573,Ancient_Magic,Ancient Magic,5,20,,700,30:140,,1,2,0x00410100,63,2,2,3,70,1,15,{ bonus bMdef,8; bonus bMaxSPrate,10; bonus bInt,4; },{},{} +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; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; },{},{} +1575,BF_Book2,Valorous Battle Strategy Book,5,20,,0,90:125,,1,0,0x00410100,63,2,2,3,80,1,15,{ bonus bStr,1; bonus bInt,2; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; },{},{} +1576,Krieger_Book1,Glorious Tablet,5,20,,0,90:115,,1,0,0x00410100,63,2,2,4,80,1,15,{ bonus2 bAddRace,RC_DemiHuman,80; bonus2 bAddRace,RC_Player_Human,80; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,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_Human,80; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5){ bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,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,10; 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 bComaRace,RC_DemiHuman,10; bonus2 bComaRace,RC_Player_Human,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,{ bonus bMatkRate,20; bonus bAspdRate,5; },{},{} 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_Dic1,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; 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; } } },{},{} +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 bBaseAtk,(((BaseLevel-70)/10)*5); },{},{} +1586,Velum_Bible,Vellum Bible,5,20,,600,110:125,,1,0,0x00410100,63,2,2,4,95,1,15,{ 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_Human,80+.@r; bonus2 bIgnoreDefRaceRate,RC_Player_Human,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; bonus bBaseAtk,(.@r*5); bonus bMatk,(.@r*2); .@i = min(BaseLevel/10,12); if(.@i>2) bonus bBaseAtk,((.@i-2)*5); },{},{} +1588,Metal_Book,Metal Book,5,20,,0,45:10,,1,1,0x00410100,63,2,2,3,1,1,15,{ .@r = getrefine(); bonus bBaseAtk,(.@r*5); bonus bMatk,(.@r*2); .@i = min(BaseLevel/10,12); if (BaseLevel>20) { bonus bBaseAtk,((min(BaseLevel,120)-20)/10)*5; } },{},{} 1589,Legacy_Of_Dragon_,Legacy of Dragon,5,20,,700,130,,1,2,0x00410100,63,2,2,4,70,1,15,{ bonus bInt,3; bonus bIgnoreDefRace,RC_Dragon; bonus2 bSPGainRace,RC_Dragon,10; },{},{} -1590,Snake_Encyclopedia,Daizenshu Dakatsu,5,60000,,1500,10:110,,1,2,0x00410100,63,2,2,4,105,1,15,{ bonus bUnbreakableWeapon; },{},{} -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_Human,40; bonus2 bMagicAddRace,RC_Player_Human,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; },{},{} -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_Human,35; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon; },{},{} +1590,Snake_Encyclopedia,Daizenshu Dakatsu,5,60000,,1500,10:110,,1,2,0x00010100,56,2,2,4,105,1,15,{ bonus bUnbreakableWeapon; .@r = getrefine(); bonus bBaseAtk,.@r*3; bonus bMatk,.@r*3; },{},{} +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_Human,40; bonus2 bMagicAddRace,RC_Player_Human,5; bonus2 bAddRace,RC_Player_Doram,40; bonus2 bMagicAddRace,RC_Player_Doram,5; bonus3 bAddEff,Eff_Blind,1000,ATF_MAGIC; bonus bHealPower,5; },{},{} +1592,Thor_Pedigree_Book,Raijin's Lineage,5,10,,400,90:130,,1,2,0x00410100,63,2,2,4,27,1,15,{ .@r = getrefine(); bonus bInt,3; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",5+.@r; bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Wind; },{},{} +1593,Book_of_Destiny,Book of Destiny,5,10,,400,90:90,,1,1,0x00410100,63,2,2,4,24,1,15,{ .@r = getrefine(); bonus bLuk,5; bonus bFlee2,15; if(.@r >= 7) bonus bFlee2,5; bonus bUnbreakableWeapon; },{},{} +1594,Fire_Pedigree_Book,Fire Pedigree Book,5,10,,400,90:130,,1,2,0x00410100,63,2,2,4,27,1,15,{ .@r = getrefine(); bonus bInt,3; bonus2 bSkillAtk,"MG_FIREBOLT",5+.@r; bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Fire; },{},{} +1595,Water_Pedigree_Book,Water Pedigree Book,5,10,,400,90:130,,1,2,0x00410100,63,2,2,4,27,1,15,{ .@r = getrefine(); bonus bInt,3; bonus2 bSkillAtk,"MG_COLDBOLT",5+.@r; bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Water; },{},{} +1596,Earth_Pedigree_Book,Earth Pedigree Book,5,10,,400,90:130,,1,2,0x00410100,63,2,2,4,27,1,15,{ .@r = getrefine(); bonus bInt,3; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",5+.@r; bonus2 bSkillAtk,"WZ_EARTHSPIKE",5+.@r; bonus bUnbreakableWeapon; },{},{} +1597,Half_BF_Book2,Half BF Book2,5,20,,0,90:125,,1,0,0x00210100,63,2,2,3,80,1,15,{ bonus bStr,1; bonus bInt,1; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,10; },{},{} // 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; },{},{} +1598,Snake_Encyclopedia_,Daizenshu Dakatsu,5,60000,,1500,10:110,,1,3,0x00010100,56,2,2,4,105,1,15,{ bonus bUnbreakableWeapon; .@r = getrefine(); bonus bBaseAtk,.@r*3; bonus bMatk,.@r*3; },{},{} +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; bonus bAspdRate,100; },{},{} //=================================================================== // 1-Handed Staffs //=================================================================== @@ -979,7 +986,7 @@ 1620,Survival_Rod2_,Survivor's Rod,5,85000,,1000,50:120,,1,1,0x00818314,63,2,2,3,24,1,10,{ bonus bInt,3; bonus bMaxHP,400; },{},{} 1621,Hypnotist's_Staff,Hypnotist's Staff,5,43000,,500,70:120,,1,1,0x00000001,63,2,2,3,30,1,10,{ bonus bInt,1; },{},{} 1622,Hypnotist's_Staff_,Hypnotist's Staff,5,20,,500,70:120,,1,2,0x00000001,63,2,2,3,30,1,10,{ bonus bInt,1; },{},{} -1623,Mighty_Staff_C,Mighty Staff,5,1,,0,165:120,,1,0,0x00818314,63,2,2,3,1,0,10,{ bonus bStr,10; bonus bInt,4; bonus bMatkRate,20; bonus bSPDrainValue,-1; },{},{} +1623,Mighty_Staff_C,Mighty Staff,5,1,,0,165:120,,1,0,0x00818314,63,2,2,3,1,0,10,{ bonus bStr,10; bonus bInt,4; bonus bSPDrainValue,-1; },{},{} 1624,Lich_Bone_Wand,Lich's Bone Wand,5,20,,800,60:170,,1,2,0x00018314,18,2,2,3,70,1,10,{ bonus bInt,1; bonus bDex,1; bonus bAtkEle,Ele_Undead; .@r = getrefine(); bonus3 bAutoSpellWhenHit,"NPC_WIDECURSE",5,10+.@r; if(.@r>=9){ bonus bMatkRate,3; bonus bMaxSP,300; } },{},{} 1625,Healing_Staff,Healing Staff,5,20,,400,10:105,,1,0,0x00008110,63,2,2,3,55,1,10,{ bonus bAtkEle,Ele_Holy; bonus bHealPower,(getrefine()*3/2); },{},{} 1626,Piercing_Staff,Piercing Staff,5,20,,500,80:145,,1,0,0x00018314,18,2,2,3,70,1,10,{ .@r = getrefine(); bonus bInt,4; bonus2 bIgnoreMdefClassRate,Class_Normal,10+.@r; bonus2 bIgnoreMdefClassRate,Class_Boss,10+.@r; },{},{} @@ -1020,7 +1027,7 @@ 1661,Mental_Destroyer,Mental Destroyer,5,20,,1400,100:50,,1,0,0x00000200,63,2,2,4,95,1,10,{ .@r = getrefine(); bonus bInt,10; bonus bUnbreakableWeapon; bonus bUseSPrate,100; bonus bMdef,20; bonus3 bSPVanishRate,1000,5+(.@r>5?3:0),BF_WEAPON|BF_MAGIC|BF_MISC; },{},{} 1662,Bone_Wand_,Evil Bone Wand,5,20,,700,40:110,,1,2,0x00818314,63,2,2,3,24,1,10,{ bonus bInt,4; bonus bAtkEle,Ele_Undead; },{},{} 1663,Staff_Of_Bordeaux_,Staff Of Bordeaux,5,20,,500,30:180,,1,2,0x00010200,18,2,2,4,50,1,10,{ bonus bInt,2; bonus bDex,1; if(getskilllv("SA_DRAGONOLOGY") == 5) { bonus bUseSPrate,-15; bonus bInt,3; } },{},{} -1664,Thorn_Staff_,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; },{},{} +1664,Thorn_Staff_,Thorn Staff of Darkness,5,10,,700,60:160,,,1,0x14,50,2,2,4,75,1,8,{ bonus bInt,3; bonus bDex,3; .@r = getrefine(); bonus2 bIgnoreMdefClassRate,Class_Normal,.@r; bonus2 bIgnoreMdefClassRate,Class_Boss,.@r; bonus bDelayrate,-.@r*3/2; bonus bAtkEle,Ele_Dark; },{},{} 1665,Piercing_Staff_,Piercing Staff,5,20,,500,80:145,,1,2,0x00018314,18,2,2,3,70,1,10,{ .@r = getrefine(); bonus bInt,4; bonus2 bIgnoreMdefClassRate,Class_Normal,10+.@r; bonus2 bIgnoreMdefClassRate,Class_Boss,10+.@r; },{},{} 1666,Healing_Staff_,Healing Staff,5,20,,400,10:105,,1,2,0x00008110,63,2,2,3,55,1,10,{ bonus bAtkEle,Ele_Holy; bonus bHealPower,(getrefine()*3/2); },{},{} 1667,TE_Woe_Staff,TE Woe Staff,5,0,,0,50:100,,1,0,0x00818315,63,2,2,3,40,1,10,{ bonus2 bMagicAddRace,RC_Player_Human,10; bonus3 bAddEff,Eff_Blind,1000,ATF_MAGIC; bonus bHPRecovRate,5; bonus bSPRecovRate,5; },{},{} @@ -1051,7 +1058,7 @@ 1695,Delicate_Foxtail_Model,Delicate Foxtail Model,5,20,,300,195,,1,2,0x80000000,7,2,2,3,100,1,10,{ bonus bLongAtkRate,8; bonus bMaxHP,200; .@r = getrefine(); bonus bDex,(.@r/3)*3; bonus bMaxSP,(.@r/3)*15; if(.@r>=7){ .@r = min(.@r,10)-7; bonus bWeaponAtkRate,(20*.@r)+40; bonus bWeaponMatkRate,(20*.@r)+40; } },{},{} 1696,Exquisite_Foxtail_Model,Exquisite Foxtail Model,5,20,,300,240,,1,2,0x80000000,7,2,2,3,140,1,10,{ bonus bLongAtkRate,8; bonus bMaxHPrate,5; .@r = getrefine(); bonus bDex,(.@r/2)*3; bonus bMaxSP,(.@r/2)*15; if(.@r>=7){ .@r = min(.@r,10)-7; bonus bWeaponAtkRate,(20*.@r)+40; bonus bWeaponMatkRate,(20*.@r)+40; } },{},{} 1697,Exquisite_Yellow_Foxtail_Model,Exquisite Yellow Foxtail Model,5,20,,300,270,,1,1,0x80000000,7,2,2,4,175,1,10,{ bonus bLongAtkRate,9; bonus bMaxHPrate,7; .@r = getrefine(); bonus bLongAtkRate,.@r/2; bonus bMaxSP,(.@r/2)*20; bonus4 bAutoSpellOnSkill,"SU_PICKYPECK","SU_FRESHSHRIMP",max(1,getskilllv("SU_FRESHSHRIMP")),200; if(.@r>=7){ .@r = min(.@r,10)-7; bonus bWeaponAtkRate,(20*.@r)+40; bonus bWeaponMatkRate,(20*.@r)+40; } },{},{} -1698,Requiem_Arc_Wand,Requiem Arc Wand,5,20,,500,80:145,,1,,0xFFFFFFFF,63,2,2,4,100,1,10,{ .@r = getrefine(); .@b = 40; if(.@r>=5){ .@b += (.@r-5)*15+20; } bonus2 bMagicAddRace2,RC2_BioLab,.@b; },{},{} +1698,Requiem_Arc_Wand,Requiem Arc Wand,5,20,,500,80:145,,1,,0x00000015,63,2,2,4,100,1,10,{ .@r = getrefine(); .@b = 40; if(.@r>=5){ .@b += (.@r-5)*15+20; } bonus2 bMagicAddRace2,RC2_BioLab,.@b; },{},{} 1699,Paradise_Foxtail_Staff_I,Eden Group Foxtail I,5,20,,0,120:135,,1,0,0x80000000,7,2,2,2,26,0,10,{ bonus bDex,3; bonus bInt,3; bonus bLongAtkRate,5; },{},{} //=================================================================== // Bows @@ -1314,11 +1321,17 @@ 2030,Unity_Two-Handed_Staff,Unity Two-Handed Staff,5,20,,500,95:135,,1,1,0x800200,63,2,34,3,1,1,23,{ bonus bMatk,pow(getrefine(),2)*125/100; },{},{} 2032,Requiem_Wizardry_Staff,Requiem Wizardry Staff,5,20,,500,100:230,,1,,0xFFFFFFFF,63,2,2,4,100,1,10,{ .@r = getrefine(); .@b = 40; .@c = 5; if(.@r>=5){ .@b += (.@r-5)*15+20; .@c += .@r-5; } bonus2 bMagicAddRace2,RC2_BioLab,.@b; bonus2 bSubRace2,RC2_BioLab,.@c; bonus2 bIgnoreMdefRace2Rate,RC2_BioLab,(.@r-5)*10; },{},{} 2039,Illusion_Wizardry_Staff,Illusion Wizardry Staff,5,0,,2400,150:250,,1,2,0x00810204,58,2,34,4,100,1,23,{ .@val = min(getrefine(),10)/2; bonus bInt,(6+.@val); bonus bDex,(2+.@val); },{},{} +2046,Novice_Warlock's_Staff,Novice Warlock's Staff,,0,,,70:170,,1,1,0x00000200,56,2,34,3,100,1,23,{ bonus bMatkRate,5; .@r = getrefine(); if(.@r>=7){ bonus2 bSkillAtk,"WL_CRIMSONROCK",15; } },{},{} +2048,Aeon_Staff,Aeon Staff,5,0,,800,100:200,,1,2,0x00000200,56,2,34,4,100,1,23,{ bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus2 bSkillAtk,"WL_EARTHSTRAIN",12*(.@r/3); if(.@r>=9){ bonus bVariableCastrate,-10; } if (.@r>=11) { bonus2 bSkillCooldown,"WL_EARTHSTRAIN",-1000; } },{},{} 2049,Blue_Flame_Cane,Blue Flame Cane,5,20,,800,110:300,,1,2,0x00818314,63,2,34,4,175,1,23,{ .@r = getrefine; bonus bInt,7; bonus bMatkRate,.@r/2; bonus bUnbreakableWeapon; if (.@r>=9) .@val = 15; else if (.@r>=7) .@val = 5; if (.@r>=11) bonus2 bSubSize,Size_All,20; if (.@r>=13) bonus bDelayrate,-15; bonus2 bMagicAtkEle,Ele_Fire,.@val; bonus2 bMagicAtkEle,Ele_Earth,.@val; bonus2 bMagicAtkEle,Ele_Water,.@val; bonus2 bMagicAtkEle,Ele_Holy,.@val; },{},{} 2051,Illusion_Survivor's_Staff,Illusion Survivor's Staff,5,0,,1200,100:240,,1,2,0x00818314,63,2,34,4,120,1,23,{ .@r = getrefine(); bonus bDex,2; bonus bInt,2; bonus bMaxHP,600; bonus bUnbreakableWeapon; bonus bMatkRate,(.@r/2); if (.@r >= 7) { bonus2 bMagicAddSize,Size_Small,15; bonus2 bMagicAddSize,Size_Medium,15; if (.@r >= 9) { bonus2 bSubSize,Size_Small,15; bonus2 bSubSize,Size_Medium,15; if (.@r >= 11) { bonus2 bSubDefEle,Ele_Water,15; bonus2 bSubDefEle,Ele_Wind,15; bonus2 bSubDefEle,Ele_Earth,15; bonus2 bSubDefEle,Ele_Fire,15; } } } },{},{} +2053,Abyss_Staff,Abyss Staff,5,0,,2400,120:270,,1,1,0x00000301,58,2,34,4,165,1,23,{ bonus2 bSubRace,RC_Player_Human,30; .@r = getrefine(); bonus bHealPower,.@r*2; if(.@r>=7){ bonus2 bMagicAddClass,Class_All,5; bonus2 bSubRace,RC_Player_Human,5; } if(.@r>=9){ bonus2 bMagicAddClass,Class_All,5; bonus2 bSubRace,RC_Player_Human,5; } bonus bUnbreakableWeapon; },{},{} +2054,Sealed_Aeon_Staff,Sealed Aeon Staff,5,0,,0,100:200,,1,2,0x00000200,56,2,34,4,99,1,23,{ bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus2 bSkillAtk,"WL_EARTHSTRAIN",12*(.@r/3); if(.@r>=7){ bonus bVariableCastrate,-10; } if(.@r>=9){ bonus2 bSkillCooldown,"WL_EARTHSTRAIN",-1000; } },{},{} 2055,Staff_of_Miracle,Staff of Miracle,5,20,,1200,100:270,,1,2,0x00000200,56,2,34,4,170,1,23,{ .@r = getrefine(); bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Ghost,5; if (.@r >= 9) { bonus2 bSkillAtk,"MG_SOULSTRIKE",20; bonus2 bSkillAtk,"HW_NAPALMVULCAN",20; bonus2 bSkillAtk,"WL_SOULEXPANSION",20; } if (.@r >= 11) { bonus2 bSkillAtk,"MG_SOULSTRIKE",30; bonus2 bSkillAtk,"HW_NAPALMVULCAN",30; } },{},{} 2056,Gravitation_Staff,Gravitation Staff,5,20,,1300,110:280,,1,2,0x00000200,56,2,34,4,170,1,23,{ .@r = getrefine(); bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Neutral,5; if (.@r >= 9) { bonus2 bSkillAtk,"HW_GRAVITATION",30; bonus2 bSkillAtk,"WL_DRAINLIFE",30; } if (.@r >= 11) { bonus2 bSkillCooldown,"HW_GRAVITATION",-2000; } },{},{} 2057,Adorare_Staff,Adorare Staff,5,20,,1200,100:240,,1,2,0x00000100,56,2,34,4,170,1,23,{ .@r = getrefine(); bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Holy,5; if (.@r >= 9) { bonus2 bSkillAtk,"AB_ADORAMUS",30; } if (.@r >= 11) { bonus2 bSubSize,Size_All,25; } },{},{} +2058,Detecting_Staff,Detecting Staff,5,0,,2000,180:330,,1,2,0x00000100,56,2,34,4,170,1,23,{ .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,10; if (.@r >= 7) { bonus bMatk,60; bonus bVariableCastrate,-10; } if (.@r >= 9) { bonus2 bMagicAtkEle,Ele_Fire,15; autobonus "{ bonus2 bMagicAddSize,Size_All,20; }",10,10000,BF_MAGIC; } if (.@r >= 11) { bonus bDelayrate,-20; } },{},{} +2060,Royal_Magician_Staff,Royal Magician Staff,5,0,,1500,100:270,,1,2,0x00000100,56,2,34,4,170,1,23,{ .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,5; bonus bMatk,5*.@r; if (.@r >= 9) { bonus2 bSkillAtk,"WL_CHAINLIGHTNING",20; bonus2 bSkillAtk,"WL_EARTHSTRAIN",20; } if (.@r >= 11) { bonus2 bMagicAddRace,RC_Undead,20; bonus2 bMagicAddRace,RC_Angel,20; } },{},{} //=================================================================== // Shields //=================================================================== @@ -1378,7 +1391,7 @@ 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,{ bonus bMdef,2; skill "ALL_ODINS_POWER",1; },{},{} -2157,Insecticide,Pesticide,4,20,,100,,0,,0,0xFFFFFFFF,63,2,32,,0,1,3,{},{},{} +2157,Insecticide,Pesticide,4,20,,100,,0,,0,0xFFFFFFFF,63,2,32,,0,1,3,{ bonus2 bAddRace,RC_Insect,10; },{},{} 2158,Ramor_Shield_Undead,Ramor Shield,4,20,,1300,,50,,1,0xFFFFFFFF,63,2,32,,65,1,3,{ bonus2 bSubDefEle,Ele_Undead,5; bonus2 bMagicSubDefEle,Ele_Undead,5; bonus2 bSubRace,RC_DemiHuman,5; },{},{} 2159,Sharel_Shield,Sharel Shield,4,20,,1300,,50,,1,0xFFFFFFFF,63,2,32,,65,1,3,{ bonus2 bSubDefEle,Ele_Fire,5; bonus2 bMagicSubDefEle,Ele_Fire,5; bonus2 bSubRace,RC_Demon,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; } },{},{} @@ -1408,7 +1421,7 @@ 2185,Magic_Reflector,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,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,Shield_Of_Gray,Shield of Gray,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_J,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; },{},{} +2188,Svalinn_J,Svalinn,4,10,,500,,80,,1,0xFFFFFFFF,63,2,32,,65,1,3,{ .@r = getrefine(); bonus2 bSubEle,Ele_Water,10; bonus bMaxHPrate,1*(.@r/3); bonus2 bSubEle,Ele_Water,5*(.@r/3); bonus bMdef,5; },{},{} 2189,Mad_Bunny,Mad Bunny Shield,4,10,,100,,40,,1,0xFFFFFFFF,63,2,32,,30,1,6,{ bonus2 bSubEle,Ele_All,5; bonus bMdef,6; bonus bDex,1; },{},{} 2190,Ancient_Shield_Of_Aeon,Ancient Shield Of Aeon,4,0,,200,,5,,0,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; },{},{} 2195,Lian_Shield,Lian Shield,4,0,,1300,,50,,1,0xFFFFFFFF,63,2,32,,65,1,3,{ bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubRace,RC_Formless,-5; },{},{} @@ -1917,7 +1930,7 @@ 2692,Glove_C,Glove,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bDex,4; },{},{} 2693,Brooch_C,Brooch,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bAgi,4; /*Gold PC Room bonus bAllStats,1;*/ },{},{} 2694,Rosary_C,Rosary,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bMdef,5; bonus bLuk,4; },{},{} -2695,Safety_Ring_C,Safety Ring,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bMdef,5; bonus bDef,5; /*Gold PC Room bonus bAllStats,1;*/ },{},{} +2695,Safety_Ring_C,Safety Ring,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bMdef,8; bonus bDef,8; /*Gold PC Room bonus bAllStats,1;*/ },{},{} 2696,Vesper_Core01_C,Vesper Core 01,4,1,,0,,1,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bMdef,3; bonus bInt,2; bonus bMaxSPrate,5; },{},{} 2697,Vesper_Core02_C,Vesper Core 02,4,1,,0,,1,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bMdef,3; bonus bStr,3; bonus bBaseAtk,10; },{},{} 2698,Vesper_Core03_C,Vesper Core 03,4,1,,0,,1,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bMdef,3; bonus bAgi,3; bonus bFlee,5; },{},{} @@ -2077,7 +2090,7 @@ 2852,E_Rosary_C,Rosary,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bLuk,4; bonus bMdef,5; },{},{} 2853,Telekinetic_Orb,Telekinetic Orb,4,20,,200,,2,,0,0xFFFFFFFE,63,2,136,,110,0,0,{ bonus bMdef,1; bonus bInt,3; bonus bMaxSP,30; bonus2 bSkillAtk,"WL_SOULEXPANSION",10; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",10; bonus2 bSkillUseSP,"WL_SOULEXPANSION",-50; bonus2 bSkillUseSP,"SO_PSYCHIC_WAVE",-50; },{},{} 2854,Alchemy_Glove,Alchemy Glove,4,20,,100,,1,,1,0xFFFFFFFE,63,2,136,,125,0,0,{ bonus bMdef,2; bonus bInt,1; bonus2 bMagicAtkEle,Ele_Fire,10; bonus2 bMagicAtkEle,Ele_Water,-20; bonus2 bSubEle,Ele_Water,-30; bonus3 bAutoSpell,"MG_FIREBALL",5,30; bonus5 bAutoSpell,"MG_FIREBOLT",5,30,BF_MAGIC,1; },{},{} -2855,Whike_Black_Tail,Whike Black Tail,4,20,,100,,0,,0,0xFFFFFFFF,63,2,136,,45,0,0,{ bonus bCritical,7; bonus bAspdRate,3; },{},{} +2855,Whike_Black_Tail,Whike Black Tail,4,20,,100,,0,,0,0xFFFFFFFF,63,2,136,,45,0,0,{ bonus bCriticalRate,7; bonus bAspdRate,3; },{},{} 2856,Half_Megin,Half Megingjard,4,20,,0,,1,,0,0xFFFFFFFF,63,2,136,,47,0,0,{ bonus bMdef,3; bonus bStr,20; },{},{} 2857,Half_Brysing,Half Brisingamen,4,20,,0,,1,,0,0xFFFFFFFF,63,2,136,,47,0,0,{ bonus bStr,3; bonus bInt,5; bonus bVit,3; bonus bDex,3; bonus bAgi,3; bonus bLuk,5; bonus bMdef,2; },{},{} 2858,Pendant_Of_Guardian,Pendant Of Guardian,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,70,0,0,{ skill "ALL_GUARDIAN_RECALL",1; },{},{} @@ -2183,7 +2196,7 @@ 2977,Hurt_Mind,Hurt Mind,4,10,,100,,0,,1,0xFFFFFFFF,63,2,136,,110,0,,{ bonus bMaxSP,200; skill "DC_SCREAM",3; },{},{} 2978,KindHeart,Kind Heart,4,10,,100,,0,,1,0xFFFFFFFF,63,2,136,,110,0,,{ bonus bMaxHP,500; bonus2 bHPRegenRate,300,10000; },{},{} 2979,Strawberry_Decoration,Strawberry Decoration,4,20,,500,,1,,1,0xFFFFFFFE,63,2,136,,1,,,{ bonus bAllStats,1; bonus3 bAutoSpellWhenHit,"WZ_FROSTNOVA",3,10; /* Confirm: Frost Nova cast chance */ },{},{} -2980,Evilspirit_Gloves,Evil Spirit Gloves,4,10,,100,,,,1,0xFFFFFFFF,63,2,136,,110,,,{ bonus bMaxHP,500; bonus bMaxSP,200; skill "PF_SPIDERWEB",1; bonus3 bAutoSpell,"SO_PSYCHIC_WAVE",1,20; bonus5 bAutoSpell,"HW_MAGICPOWER",1,10,BF_MAGIC,0; bonus5 bAutoSpell,"WZ_FROSTNOVA",10,10,BF_WEAPON|BF_MAGIC,0; bonus5 bAutoSpellWhenHit,"DC_SCREAM",1,50,BF_WEAPON|BF_MAGIC,0; },{},{} +2980,Evilspirit_Gloves,Evil Spirit Gloves,4,10,,100,,,,1,0xFFFFFFFF,63,2,136,,110,,,{ bonus bMaxHP,500; bonus bMaxSP,200; skill "PF_SPIDERWEB",1; bonus3 bAutoSpell,"SO_PSYCHIC_WAVE",1,20; bonus5 bAutoSpell,"HW_MAGICPOWER",1,10,BF_MAGIC,0; bonus5 bAutoSpell,"WZ_FROSTNOVA",10,10,BF_MAGIC,0; bonus5 bAutoSpell,"WZ_FROSTNOVA",10,20,BF_WEAPON,0; bonus5 bAutoSpellWhenHit,"DC_SCREAM",1,50,BF_WEAPON|BF_MAGIC,0; },{},{} 2981,RingOfHero,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,,,{ bonus2 bHPLossRate,10,5000; },{},{} 2984,Glove_Save_Rimnil,Glove Save Rimnil,4,10,,100,,,,1,0xFFFFFFFF,63,2,136,,30,,,{ bonus2 bExpAddRace,RC_All,5; bonus2 bSubRace,RC_All,-5; },{},{} @@ -3129,7 +3142,7 @@ 4939,Critical2,CRI Lv2,6,10,,,,,,,,,,,,,,,{ bonus bCritical,2; },{},{} 4940,Critical3,CRI Lv3,6,10,,,,,,,,,,,,,,,{ bonus bCritical,4; },{},{} 4941,Critical4,CRI Lv4,6,10,,,,,,,,,,,,,,,{ bonus bCritical,6; },{},{} -4942,Dodge1,Parrying Lv1,6,10,,,,,,,,,,,,,,,{ bonus bFlee2,2; },{},{} +4942,Dodge1,Parrying Lv1,6,10,,,,,,,,,,,,,,,{ bonus bFlee2,3; },{},{} 4943,Dodge2,Parrying Lv2,6,10,,,,,,,,,,,,,,,{ bonus bFlee2,4; },{},{} 4944,Dodge3,Parrying Lv3,6,10,,,,,,,,,,,,,,,{ bonus bFlee2,5; },{},{} 4945,Thrift1,Economy Lv1,6,10,,,,,,,,,,,,,,,{ bonus bUseSPrate,-2; },{},{} @@ -7348,32 +7361,32 @@ 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_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; 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_Human,75; bonus bUnbreakableWeapon; 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,,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_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(Class==Job_Ninja||Class==Job_Rogue||Class==Job_Stalker) bonus bMatk,90; },{},{} +13037,BF_Dagger2,Valorous Assassin's Damascus,5,20,,0,120,,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_Human,75; bonus bUnbreakableWeapon; autobonus "{ bonus bDefRatioAtkClass,Class_All; }",10,6000,BF_WEAPON,"{ specialeffect2 EF_HASTEUP; }"; if(Class==Job_Ninja||Class==Job_Rogue||Class==Job_Stalker) bonus bMatk,90; },{},{} 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_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus3 bAutoSpell,"PR_LEXDIVINA",1,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,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,{ bonus bAtkEle,Ele_Wind; },{},{} +13043,Fortune_Sword_I,Fortune Sword,5,0,,0,120,,1,0,0x028F5EEE,63,2,2,4,0,0,1,{ bonus bFlee2,20; bonus bLuk,5; },{},{} +13044,House_Auger_I,Ice Pick,5,0,,0,105,,1,0,0x028F5EEE,63,2,2,4,0,0,1,{ bonus bDefRatioAtkClass,Class_All; autobonus "{ bonus bFlee,20; }",10,10000,BF_WEAPON|BF_MISC; },{},{} +13045,Kamaitachi_I,Kamaitachi,5,0,,0,155,,2,0,0x02000000,63,2,2,4,0,0,1,{ bonus bUnbreakableWeapon; bonus bCritical,10; bonus bAspdRate,5; bonus bAtkEle,Ele_Wind; },{},{} 13046,Krieg,Krierg,5,20,,500,110,,1,3,0x00021040,18,2,2,2,50,1,1,{ bonus3 bAddEffOnSkill,"RG_BACKSTAP",Eff_Bleeding,1000; bonus2 bSkillAtk,"RG_BACKSTAP",15; },{},{} -13047,Weihna,Weihna,5,20,,500,135,,1,2,0x00021040,18,2,2,3,50,1,1,{ autobonus "{ bonus2 bAddClass,Class_All,10; }",5,5000,BF_WEAPON|BF_SHORT,"{ specialeffect2 EF_POTION_BERSERK; }"; },{},{} +13047,Weihna,Weihna,5,20,,500,135,,1,2,0x00021040,18,2,2,3,50,1,1,{ bonus3 bAddEffOnSkill,"RG_RAID",Eff_Poison,100; autobonus "{ bonus2 bAddClass,Class_All,10; }",5,5000,BF_WEAPON|BF_SHORT,"{ specialeffect2 EF_POTION_BERSERK; }"; },{},{} 13048,Damascus_C,Damascus,5,0,,0,153,,1,0,0x028F5EEE,63,2,2,3,1,0,1,{ bonus2 bAddSize,Size_All,40; },{},{} -13049,Lacma,Lacma,5,20,,650,45,,1,1,0x3E9F7EEF,63,2,2,3,1,1,1,{},{},{} +13049,Lacma,Lacma,5,20,,650,45,,1,1,0x3E9F7EEF,63,2,2,3,1,1,1,{ .@r = getrefine(); if (.@r>=3) { bonus bBaseAtk,40; bonus bMatk,40; } if(.@r>=6){ bonus2 bAddSize,Size_Medium,8; bonus2 bMagicAddSize,Size_Medium,8; autobonus "{ bonus bNoSizeFix; }",10,5000; } if(.@r>=9){ bonus2 bAddSize,Size_Medium,20; bonus2 bMagicAddSize,Size_Medium,20; } if(.@r>12){ bonus bNoSizeFix; } },{},{} 13050,P_Dagger1,Eden Dagger I,5,0,,0,124:60,,1,0,0x3E9F7EEF,63,2,2,2,26,0,1,{},{},{} 13051,P_Dagger2,Eden Dagger II,5,0,,0,158:70,,1,0,0x3E9F7EEF,63,2,2,2,40,0,1,{},{},{} 13052,Tourist_Dagger,Tourist Dagger,5,0,,500,51,,1,0,0x3E9F7EEF,63,2,2,1,1,0,1,{ bonus bAgi,2; },{},{} -13053,F_Moonlight_Sword_C,Moonlight Sword,5,2,,0,85,,1,0,0x028F5EEE,63,2,2,4,0,0,1,{},{},{} -13054,F_Combat_Knife_C,Combat Knife,5,1,,0,129,,1,0,0x028F5EEE,63,2,2,4,1,0,1,{},{},{} -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,{},{},{} +13053,F_Moonlight_Sword_C,Moonlight Sword,5,2,,0,85,,1,0,0x028F5EEE,63,2,2,4,0,0,1,{ bonus bSPDrainValue,3; bonus bMaxSPrate,10; },{},{} +13054,F_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_Human; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus bSPDrainValue,3; bonus bMaxSPrate,10; },{},{} +13055,F_Asura_C,Asura,5,1,,0,120,,1,0,0x02000000,63,2,2,1,1,0,1,{ bonus bMatkRate,15; },{},{} +13056,F_Counter_Dagger_C,Counter Dagger,5,1,,0,209,,1,0,0x00810204,63,2,2,4,1,0,1,{ bonus bCriticalRate,90; },{},{} 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,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); },{},{} +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; if(.@r>=6){ bonus2 bSkillAtk,"SC_FATALMENACE",.@r*2; bonus bMatkRate,(.@r*3); } },{},{} 13062,Ancient_Dagger,Ancient Dagger,5,20,,600,107:120,,0,0,0x028F5EEE,18,2,2,4,120,1,1,{ bonus bMaxSP,100; bonus bSPrecovRate,5; bonus2 bAddEff2,Eff_Curse,20; bonus3 bAddEff,Eff_Curse,20,ATF_SELF; },{},{} 13063,Adventure_Knife,Adventure Knife,5,0,,0,60,,1,0,0x02021040,63,2,2,1,1,0,1,{ bonus bUnbreakableWeapon; },{},{} 13064,Academy_Knife,Academy Knife,5,0,,700,110,,1,1,0x02021040,63,2,2,1,1,1,1,{ bonus bUnbreakableWeapon; },{},{} @@ -7385,27 +7398,27 @@ 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); },{},{} 13072,Velum_Damascus,Vellum Damascus,5,20,,1000,180,,1,0,0x3E9F7EEF,63,2,2,4,95,1,1,{ bonus4 bSetDefRace,RC_Player_Human,10000,5000,1; bonus4 bSetMDefRace,RC_Player_Human,10000,5000,1; bonus bAspdRate,getrefine(); },{},{} -13073,Counter_Dagger_,Counter Dagger,5,120000,,550,140,,1,1,0x00810204,63,2,2,4,55,1,1,{},{},{} +13073,Counter_Dagger_,Counter Dagger,5,120000,,550,140,,1,1,0x00810204,63,2,2,4,55,1,1,{ bonus bCritical,90; },{},{} 13074,Ninja_Cutter,Ninja Sword Prototype,5,0,,0,0,,1,0,0x02000000,63,2,2,4,99,1,1,{},{},{} 13075,Kurenai,Kurenai,5,5000,,700,130,,1,0,0x02000000,63,2,2,3,99,1,1,{ bonus bInt,3; },{},{} 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,{},{},{} +13077,Kagekiri,Kagekiri,5,40000,,600,50:120,,1,0,0x02000000,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); .@i = min(BaseLevel/10,12); 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,{},{},{} +13079,Metal_Dagger,Metal Dagger,5,20,,0,55,0,,1,0x02821269,63,2,2,3,1,1,1,{ .@r = getrefine(); bonus bBaseAtk,(.@r*5); bonus bMatk,(.@r*2); .@i = min(BaseLevel/10,12); 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,{ .@r = getrefine(); bonus bHit,.@r; },{},{} 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_Human,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; } },{},{} +13085,Volcano_Knife,Volcano Knife,5,10,,200,80,,,0,0x280002E,63,2,2,4,60,,1,{ bonus bAtkEle,Ele_Fire; bonus bAgi,2; bonus bMaxHPrate,-2; bonus2 bSubEle,Ele_Fire,2; bonus2 bSubEle,Ele_Water,-5; .@r = getrefine(); if(.@r>=7){ bonus bMaxHPrate,.@r-6; bonus2 bSubEle,Ele_Fire,3; } },{},{} 13086,Goldsmithing_Dagger,Goldsmithing Dagger,5,20,,500,35:25,,1,0,0x028756E6,63,2,2,1,1,1,1,{},{},{} 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,40; if (.@r >= 9) bonus bMatk,50; },{},{} 13089,FaceWorm_Leg,Faceworm Leg,5,20,,500,110:50,,1,1,0x028F5EEF,63,2,2,3,24,1,1,{ bonus bAtkEle,Ele_Poison; autobonus "{}",30,5000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; active_transform 2528,5000; }"; },{},{} 13090,FaceWormQueen_Leg,Faceworm Queen Leg,5,20,,500,180:120,,1,2,0x028F5EEF,63,2,2,4,100,1,1,{ bonus bInt,3; autobonus "{ bonus3 bAutoSpell,\"NPC_EARTHQUAKE\",1,200; }",8,5000,BF_NORMAL,"{ specialeffect2 EF_POTION_BERSERK; active_transform 2529,5000; }"; },{},{} -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; } },{},{} +13092,RWC_Memory_Knife,RWC Memory Knife,5,20,,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,Thanos_Dagger,Thanos Dagger,5,10,,800,100:130,,1,1,0x000E5CEA,56,2,2,4,120,1,1,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000; },{},{ heal -1000,0; } -13094,Devil_Pierced_Dagger,Evil Slayer Stabber Dagger,5,0,,900,120,,1,1,0x3E9F7EEF,63,2,2,3,100,1,1,{ bonus2 bAddRace,RC_Undead,10; .@r = getrefine(); if(.@r>=9) { .@dmg = 5; if(.@r>=12) { .@dmg += 7; } bonus2 bAddClass,Class_All,.@dmg; } },{},{} -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_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon; 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,Evil Slayer Stabber Dagger,5,0,,900,120,,1,1,0x3E9F7EEF,63,2,2,3,100,1,1,{ bonus2 bAddRace,RC_Undead,10; bonus2 bAddRace,RC_Demon,10; .@r = getrefine(); if(.@r>=9) { .@dmg = 5; if(.@r>=12) { .@dmg += 7; } bonus2 bAddClass,Class_All,.@dmg; } },{},{} +13096,Half_BF_Dagger2,Half BF Dagger2,5,20,,0,120,,1,0,0x3E9F7EEF,63,2,2,3,1,1,1,{ bonus bStr,1; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon; 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,Ru_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,Ru_Blue_Ashura,Blue Ashura,5,10,,1000,150:120,,1,1,0x02000000,7,2,2,3,100,1,1,{},{},{} -13099,Ru_Blue_Knife,Blue Knife,5,10,,500,160,,1,1,0x00010000,56,2,2,3,100,1,1,{ bonus bStr,5; bonus bInt,5; },{},{} +13098,Ru_Blue_Ashura,Blue Ashura,5,10,,1000,150:150,,1,1,0x02000000,7,2,2,3,100,1,1,{},{},{} +13099,Ru_Blue_Knife,Blue Knife,5,10,,500,160,,1,1,0x00010000,56,2,2,3,100,1,1,{ bonus bVit,5; bonus bInt,5; },{},{} //=================================================================== // Guns //=================================================================== @@ -8906,6 +8919,7 @@ 15205,Medical_Scrubs,Medical Scrubs,4,20,,1000,,50,,1,0xFFFFFFFF,63,2,16,,100,1,,{ .@r = getrefine(); bonus bMdef,10; bonus bDelayrate,-10; .@val = 1; if (.@r >= 7) { .@def = 50; bonus bUnbreakableArmor,1; .@val += 2; if (.@r >= 8) { .@def += 100; .@val += 3; bonus2 bSubRace,RC_DemiHuman,7; bonus2 bSubRace,RC_Player_Human,7; if (.@r >= 9) { .@def += 150; .@val += 4; bonus2 bResEff,Eff_Stone,5000; } } bonus bDef,.@def; } bonus bHealPower,2*.@val; bonus bHealPower2,.@val; bonus bAddItemHealRate,.@val; },{},{} 15209,Drake_Coat,Drake Coat,4,20,,1200,,60,,1,0xFFFFFFFF,63,2,16,,100,1,0,{ .@r = getrefine(); bonus bMaxHP,500; bonus bMaxSP,50; bonus bMdef,10; bonus2 bAddClass,Class_All,3; if (.@r>=7) { bonus bMaxHP,1000; bonus bMaxSP,100; bonus2 bAddClass,Class_All,3; } if (.@r>=9) { bonus bMaxHP,1500; bonus bMaxSP,150; bonus2 bAddClass,Class_All,4; bonus bNoSizeFix; } },{},{} 15212,YSF01_Plate,YSF01 Plate,4,0,,2100,,78,,1,0xFFFFFFFF,63,2,16,,170,1,0,{ .@r = getrefine(); if (.@r >= 13) { .@val = 11; } else if (.@r >= 11) { .@val = 7; } else if (.@r >= 8) { .@val = 5; } if (readparam(bStr) >= 125) { .@val += .@r; } if (.@val) { bonus2 bAddClass,Class_All,.@val; } },{},{} +15250,Beginner's_Suit,Beginner's Suit,4,0,,0,,40,,1,0xFFFFFFFF,63,2,16,,100,0,0,{ bonus bAllStats,1; bonus bMaxHP,400; bonus bMaxSP,100; bonus2 bAddClass,Class_All,2; bonus2 bMagicAddClass,Class_All,2; },{},{} 15280,S_Cri_Hit_Armor,Critical Hit Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); .@val = 7; bonus bBaseAtk,15; if (.@r > 1) { bonus bCritAtkRate,(.@r/2); if (.@r >= 7) { .@val += 7; } } bonus bCritical,.@val; },{},{} 15283,Mighty_Black_Threaded_Armor,Mighty Black Threaded Armor,4,20,,800,,60,,1,0xFFFFFFFF,63,2,16,,100,1,0,{ .@r = getrefine(); bonus bBaseAtk,10; bonus2 bIgnoreDefClassRate,Class_All,10; if (.@r>=7) { bonus bBaseAtk,20; bonus2 bIgnoreDefClassRate,Class_All,20; } if (.@r>=8) { bonus bBaseAtk,20; bonus2 bIgnoreDefClassRate,Class_All,20; bonus bUnbreakableArmor; } if (.@r>=9) { bonus bBaseAtk,30; bonus2 bIgnoreDefClassRate,Class_All,20; } },{},{} 15348,Illusion_Goibne_Armor,Illusion Goibne Armor,4,0,,3500,,158,,1,0xFFFFFFFE,63,2,16,,130,1,0,{ bonus bMaxHPrate,10; .@r = getrefine(); if (.@r >= 9) { bonus bDef,150; } else if (.@r >= 7) { bonus bDef,50; } },{},{} @@ -10242,6 +10256,7 @@ 19294,C_CatEars_Cyber_HeadP_R,Costume Cyber Cat Ear Headphones (Red),4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1668,{},{},{} 19299,Tree_Sprout,Tree Sprout,4,20,,300,,0,,0,0xFFFFFFFF,63,2,1,,80,0,848,{ bonus bVariableCastrate,-5; },{},{} 19306,Gambler_Card,Heart Card in Mouth,4,20,,300,,0,,0,0xFFFFFFFF,63,2,1,,80,0,1679,{ bonus bCritAtkRate,5; },{},{} +19310,Beginner's_Cap,Beginner's Cap,4,20,,0,,10,,0,0xFFFFFFFF,63,2,256,,100,0,102,{ bonus bAllStats,1; bonus MaxHp,200; },{},{} 19326,Book_of_Soyga,Book of Soyga,4,20,,1000,,0,,1,0xFFFFFFFF,63,2,256,,90,1,423,{},{},{} 19327,Seraphim_Feather,Seraphim Feather,4,20,,300,,0,,0,0xFFFFFFFF,63,2,1,,80,0,1704,{ bonus bHealPower,5; },{},{} 19329,Devil's_Hand,Devil's Hand,4,10,,1000,,18,,0,0xFFFFFFFF,63,2,256,,100,1,1018,{ .@r = getrefine(); .@a = getskilllv("SR_RIDEINLIGHTNING"); .@b = getskilllv("SR_EARTHSHAKER"); .@c = getskilllv("SR_RAMPAGEBLASTER"); bonus bNoCastCancel; bonus bAspdRate,10; bonus2 bFixedCastrate,"SR_HOWLINGOFLION",-100; bonus2 bSkillAtk,"SR_HOWLINGOFLION",20; if (.@r>=7) { bonus2 bSkillAtk,"SR_HOWLINGOFLION",30; bonus bAspdRate,5; } if (.@r>=9) { bonus2 bSkillAtk,"SR_HOWLINGOFLION",50; bonus bAspdRate,5; } if (.@r>=10) bonus bIgnoreDefClass,Class_All; if (.@r>=10 && .@a==5) { bonus2 bVariableCastrate,"SR_HOWLINGOFLION",-50; bonus2 bVariableCastrate,"MO_STEELBODY",-50; bonus2 bVariableCastrate,"MO_CALLSPIRITS",-50; } if (.@r>=10 && .@b==5) bonus2 bSkillCooldown,"SR_HOWLINGOFLION",-9500; if (.@r>=10 && .@c==5) bonus2 bAddClass,Class_Boss,50; },{},{} @@ -10261,6 +10276,7 @@ 19409,Black_Feather_Hat,Black Feather Hat,4,20,,1000,,18,,0,0xFFFFFFFF,63,2,256,,100,1,731,{ .@r = getrefine(); bonus bSPGainValue,50; bonus bLongSPGainValue,50; bonus bMagicSPGainValue,50; bonus bMdef,15; bonus bDex,10; bonus2 bSkillAtk,"SC_FEINTBOMB",10; if (getskilllv("SC_INVISIBILITY") >= 5) bonus2 bAddClass,Class_Boss,50; if (getskilllv("SC_MAELSTROM") >= 3) skill "TK_JUMPKICK",7; if (getskilllv("SC_REPRODUCE") >= 10) bonus bUseSPrate,-30; if (.@r>=7) { bonus2 bSkillAtk,"SC_FEINTBOMB",15; bonus bHit,30; } if (.@r>=9) { bonus2 bSkillAtk,"SC_FEINTBOMB",25; bonus bHit,20; } if (.@r>=10) bonus bIgnoreDefClass,Class_All; },{},{} 19426,Spirit_King's_Crown,Spirit King's Crown,4,20,,600,,12,,0,0xFFFFFFFF,63,2,256,,100,1,1118,{ .@r = getrefine(); bonus bMdef,15; bonus bFixedCastrate,-7*.@r; bonus bDelayrate,-10; bonus2 bSkillAtk,"SO_EARTHGRAVE",10; bonus2 bSkillAtk,"SO_DIAMONDDUST",10; bonus bVariableCastrate,-6*getskilllv("SO_EL_SYMPATHY"); if (getskilllv("SO_WARMER") >= 5) { bonus2 bSkillCooldown,"SO_EARTHGRAVE",-1000; bonus2 bSkillCooldown,"SO_DIAMONDDUST",-1000; bonus2 bSkillCooldown,"SO_VARETYR_SPEAR",-1000; } if (getskilllv("SO_ELEMENTAL_SHIELD") >= 5) bonus2 bMagicAddClass,Class_Boss,25; if (.@r>=7) { bonus2 bSkillAtk,"SO_EARTHGRAVE",15; bonus2 bSkillAtk,"SO_DIAMONDDUST",15; bonus bDelayrate,-5; } if (.@r>=9) { bonus bDelayrate,-5; bonus2 bSkillAtk,"SO_EARTHGRAVE",25; bonus2 bSkillAtk,"SO_DIAMONDDUST",25; } if (.@r>=10) bonus2 bIgnoreMdefClassRate,Class_All,100; },{},{} 19428,Illusion_Morpheus's_Hood,Illusion Morpheus's Hood,4,20,,200,,15,,1,0xFFFFFFFF,63,2,256,,130,1,256,{ .@r = getrefine(); bonus bInt,10; bonus bMdef,15; bonus bMaxSPrate,20; bonus bVariableCastrate,-(3*(.@r/2)); if (.@r >= 7) { bonus bMatk,30; if (.@r >= 9) { bonus bNoCastCancel; } } },{},{} +19451,Heavenly_Order,Heavenly Order,4,20,,0,,0,,0,0xFFFFFFFF,63,2,512,,100,0,1093,{ skill "MC_IDENTIFY",1,0; .@a = readparam(bStr); .@b = readparam(bAgi); .@c = readparam(bVit); .@d = readparam(bInt); .@e = readparam(bDex); .@f = readparam(bLuk); bonus bHit,2*(.@a/18); bonus bMaxHPrate,2*(.@a/18); bonus bFlee,2*(.@b/18); bonus bDelayrate,-2*(.@b/18); bonus bMdef,2*(.@c/18); bonus bVariableCastrate,-2*(.@c/18); bonus bMaxSPrate,2*(.@d/18); bonus bUseSPrate,-2*(.@d/18); bonus bCritical,2*(.@e/18); bonus bAspdRate,2*(.@e/18); bonus bBaseAtk,15*(.@f/18); bonus bMatk,15*(.@f/18); bonus bDef,20*(.@f/18); },{},{} 19453,Jeje_Cap,Jeje Cap,4,20,,1000,,18,,0,0xFFFFFFFF,63,2,256,,100,1,1011,{ .@r = getrefine(); .@dmg = 10; .@delay = -15-6*getskilllv("GN_CRAZYWEED"); bonus bMdef,15; bonus bNoCastCancel; bonus2 bVariableCastrate,"GN_CRAZYWEED",-50; bonus2 bVariableCastrate,"CR_ACIDDEMONSTRATION",-50; bonus2 bVariableCastrate,"CR_FULLPROTECTION",-50; if (.@r>=7) { .@dmg += 15; if (.@r>=9) { .@dmg += 25; if (.@r>=10) { bonus bIgnoreDefClass,Class_All; } } } if (getskilllv("GN_FIRE_EXPANSION") == 5) bonus2 bAddClass,Class_Boss,50; if (getskilllv("GN_CRAZYWEED") == 5) { .@delay -= 25; bonus2 bSkillCooldown,"GN_CRAZYWEED",-4500; } bonus2 bSkillAtk,"CR_ACIDDEMONSTRATION",.@dmg; bonus2 bSkillAtk,"GN_CRAZYWEED",.@dmg; bonus bDelayrate,.@delay; },{},{} 19469,Saint_Crown,Saint Crown,4,20,,600,,12,,0,0xFFFFFFFF,63,2,256,,100,1,1117,{ .@r = getrefine(); .@a = 5*(getskilllv("AB_LAUDAAGNUS")+getskilllv("AB_LAUDARAMUS")); .@dmg = 20; .@aspd = 10; bonus bMdef,15; bonus2 bSkillUseSP,"AB_JUDEX",15; bonus2 bSkillUseSP,"AB_ADORAMUS",15; bonus2 bVariableCastrate,"AB_JUDEX",-5*getskilllv("AB_ORATIO"); bonus2 bVariableCastrate,"AB_ADORAMUS",-5*getskilllv("AB_ORATIO"); if (getskilllv("AB_CLEARANCE") >= 5) { bonus2 bMagicAddClass,Class_Boss,25; } bonus2 bMagicAddEle,Ele_Undead,.@a; bonus2 bMagicAddEle,Ele_Ghost,.@a; bonus2 bMagicAddEle,Ele_Earth,.@a; bonus2 bMagicAddEle,Ele_Neutral,.@a; bonus2 bMagicAddRace,RC_DemiHuman,2*.@r; bonus2 bMagicAddRace,RC_Player_Human,2*.@r; if (.@r >= 7) { .@dmg += 30; .@aspd += 5; if (.@r >= 9) { .@dmg += 50; .@aspd += 5; if (.@r >= 10) { bonus bNoGemStone; } } } bonus bAspdRate,.@aspd; bonus2 bSkillAtk,"AB_JUDEX",.@dmg; bonus2 bSkillAtk,"AB_ADORAMUS",.@dmg; },{},{} //=================================================================== @@ -11195,6 +11211,7 @@ 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; },{},{} 20712,Valkyrie_Cape,Valkyrie Cape,4,10,,500,,10,,1,0x6007DFFE,58,2,4,,1,1,0,{ .@val = 2 * (min(10,getrefine())/2); if (BaseClass == Job_Mage || BaseClass == Job_Archer || BaseClass == Job_Acolyte) bonus bFlee2,(5+.@val); else if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief) bonus bShortWeaponDamageReturn,(5+.@val); },{},{} 20714,Assassin's_Muffler,Assassin's Muffler,4,20,,100,,16,,1,0xFFFFFFFF,63,2,4,,50,1,0,{ .@r = getrefine(); if (.@r>5) { bonus bAgi,(.@r-5)*2; } },{},{} +20716,Spirit_Manteau,Spirit Manteau,4,20,,700,,20,,1,0xFFFFFFFF,63,2,4,,65,1,0,{ bonus2 bSubEle,Ele_Ghost,5; bonus2 bSubRace,RC_Angel,-5; },{},{} 20717,FaceWorm_Skin,Gigant Snake Skin,4,10,,400,,38,,0,0xFFFFFFFF,63,2,4,,1,1,0,{ bonus bMdef,10; },{},{} 20718,FaceWorm_Skin_,Gigant Snake Skin,4,10,,400,,38,,1,0xFFFFFFFF,63,2,4,,1,1,0,{ bonus bMdef,10; },{},{} 20721,Cloak_Of_Gray,Cloak of Gray,4,20,,600,,45,,1,0xFFFFFFFF,56,2,4,,120,1,0,{ bonus2 bSubEle,Ele_Holy,5+getrefine()/2; },{},{} @@ -11259,6 +11276,7 @@ 20859,Phreeoni_Wings,Phreeoni Wings,4,20,,300,,10,,1,0xFFFFFFFF,63,2,4,,100,1,0,{ .@r = getrefine(); bonus bMaxHPrate,10; bonus bHit,10; if (.@r>=7) bonus bHit,20; if (.@r>=8) bonus bHit,30; if (.@r>=9) bonus bHit,40; if (.@r>=10) bonus bHit,100; },{},{} 20860,Battle_Surcoat,Battle Surcoat,4,20,,300,,10,,1,0xFFFFFFFF,63,2,4,,70,1,0,{ .@r = getrefine(); if (.@r>=9) { bonus bAspdRate,9; bonus bFlee,30; skill "TF_DOUBLE",10; skill "MO_TRIPLEATTACK",10; bonus bDoubleRate,50; } else if (.@r>=7) { bonus bAspdRate,6; bonus bFlee,20; skill "TF_DOUBLE",5; skill "MO_TRIPLEATTACK",5; bonus bDoubleRate,25; } else { bonus bAspdRate,3; bonus bFlee,10; skill "TF_DOUBLE",3; skill "MO_TRIPLEATTACK",3; bonus bDoubleRate,15; } },{},{} 20863,Menblatt's_Wings,Menblatt's Wings,4,20,,400,,40,,1,0xFFFFFFFF,63,2,4,,100,1,0,{ .@r = getrefine(); bonus bBaseAtk,30; if (.@r>=5) bonus bLongAtkRate,readparam(bDex)/60; if (.@r>=7) bonus bLongAtkRate,readparam(bDex)/10; },{},{} +20906,Beginner's_Cloak,Beginner's Cloak,4,20,,0,,10,,0,0xFFFFFFFF,63,2,4,,100,0,0,{ bonus2 bSubEle,Ele_Neutral,20; bonus bVariableCastrate,-5; },{},{} 20922,Leviathan_Muffler,Leviathan Muffler,4,20,,200,,18,,1,0xFFFFFFFF,63,2,4,,100,1,0,{ .@r = getrefine(); bonus bMdef,5; bonus2 bAddEle,Ele_Water,15+.@r; bonus2 bMagicAddEle,Ele_Water,15+.@r; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bAspdRate,.@r; if (.@r>=10) bonus2 bSubEle,Ele_Water,100; },{},{} 20923,Illusion_Goibne_Spaulders,Illusion Goibne Spaulders,4,0,,1000,,47,,1,0xFFFFFFFE,63,2,4,,130,1,0,{ .@r = getrefine(); bonus bMdef,2; bonus bVit,1; if (.@r >= 7) { .@val = 5; if (.@r >= 9) { .@val += 10; } } if (.@val) { bonus2 bAddEle,Ele_Water,.@val; bonus2 bAddEle,Ele_Wind,.@val; bonus2 bAddEle,Ele_Earth,.@val; bonus2 bAddEle,Ele_Fire,.@val; } },{},{} 20925,Commander_Manteau2,Commander Manteau,4,20,,300,,20,,1,0xFFFFFFFF,63,2,4,,100,1,0,{ .@r = getrefine(); bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bMdef,10; bonus bBaseAtk,10; bonus bMatk,10; bonus2 bSubRace,RC_Player_Human,3; if (.@r>=5) { bonus bBaseAtk,20; bonus bMatk,20; bonus bMaxHPrate,7; bonus bMaxSPrate,7; } if (.@r>=7) { bonus bBaseAtk,30; bonus bMatk,30; bonus bMaxHPrate,10; bonus bMaxSPrate,10; } },{},{} @@ -11341,6 +11359,7 @@ 22047,Felock_Boots,Felrock'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,,1,0xFFFFFFFF,63,2,64,,40,1,,{ bonus bUnbreakableShoes; bonus bMaxHP,500; bonus bMaxSP,50; },{},{} 22064,Thorny_Shoes,Thorny Shoes,4,0,,1000,,25,,1,0xFFFFFFFF,63,2,64,,70,1,,{ bonus bShortWeaponDamageReturn,getrefine()/2; },{},{} +22066,Spirit_Shoes,Spirit Shoes,4,10,,250,,12,,1,0xFFFFFFFE,63,2,64,,90,1,,{ bonus bMdef,3; bonus2 bSubEle,Ele_All,5; .@r = getrefine(); bonus bMaxHPrate,.@r*1; bonus bMaxSPrate,.@r*1; },{},{} 22067,Witch_Shoes,Shoe of Witch,4,10,,400,,10,,0,0xFFFFFFFE,63,2,64,,1,1,,{ skill "ALL_CATCRY",1; },{},{} 22069,Lian_Shoes,Lian Shoes,4,0,,250,,12,,1,0xFFFFFFFF,63,2,64,,90,1,,{ bonus bMdef,3; bonus2 bSubEle,Ele_Neutral,5; .@r = getrefine(); bonus bMaxHPrate,.@r; bonus bMaxSPrate,.@r; },{},{} 22072,Hikingboots,Hikingboots,4,0,,500,,10,,1,0xFFFFFFFF,63,2,64,,100,1,,{ .@r = getrefine(); bonus bMaxHPRate,4+(.@r/3); bonus bMaxSPRate,4+(.@r/3); if (.@r > 9) bonus bSpeedRate,25; },{},{} @@ -11387,6 +11406,7 @@ 22170,Survivor's_Shoes,Survivor's Shoes,4,10,,500,,15,,0,0xFFFFFFFF,63,2,64,,100,1,0,{ .@r = getrefine(); if (.@r >= 7) { .@hpsp = 20; .@dmg = 10; } else if (.@r >= 5) { .@hpsp = 10; .@dmg = 5; } else { .@hpsp = 3; .@dmg = 2; } bonus bMdef,15; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bMaxHPrate,.@hpsp; bonus bMaxSPrate,.@hpsp; bonus bMatkRate,.@dmg; bonus2 bMagicAtkEle,Ele_Wind,.@dmg; bonus2 bMagicAtkEle,Ele_Earth,.@dmg; },{},{} 22171,Ancient_Hero_Boots,Ancient Hero Boots,4,20,,600,,15,,1,0xFFFFFFFF,63,2,64,,100,1,0,{ .@r = getrefine(); bonus bMaxHP,500; bonus bMaxSP,50; bonus bMaxHPrate,2*(.@r/3); bonus bMaxSPrate,.@r/3; if (.@r >= 9) { .@val = -300; if (.@r >= 12) { .@val -= 200; if (.@r >= 14) { bonus bDelayRate,-5; } } bonus bFixedCast,.@val; } },{},{} 22172,Gray_Wing_Boots,Gray Wing Boots,4,20,,500,,15,,0,0xFFFFFFFF,63,2,64,,100,1,0,{ .@r = getrefine(); bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bMdef,15; bonus bLongAtkRate,2; bonus bCritAtkRate,2; skill "TF_HIDING",1; if (.@r>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bLongAtkRate,3; bonus bCritAtkRate,3; } if (.@r>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bLongAtkRate,5; bonus bCritAtkRate,5; } },{},{} +22173,Beginner's_Boots,Beginner's Boots,4,20,,0,,10,,1,0xFFFFFFFF,63,2,64,,100,0,0,{ bonus bMaxHP,300; bonus bMaxSP,50; bonus bFlee,15; bonus bHPrecovRate,10; bonus bSPrecovRate,10; },{},{} 22189,Pilgrim_Shoes,Pilgrim Shoes,4,20,,500,,15,,0,0xFFFFFFFF,63,2,64,,100,1,0,{ .@r = getrefine(); bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bDef,50*getskilllv("AB_SECRAMENT"); bonus bMdef,15; bonus bAspdRate,4*getskilllv("AB_CANTO"); bonus2 bSkillCooldown,"AB_PRAEFATIO",-1000; bonus bDelayrate,-6*getskilllv("AB_PRAEFATIO"); bonus2 bSubRace,RC_DemiHuman,2*getskilllv("AB_SECRAMENT"); bonus2 bSubRace,RC_Player_Human,2*getskilllv("AB_SECRAMENT"); bonus bHealPower,5*getskilllv("AB_HIGHNESSHEAL"); if (.@r>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bUseSPrate,-3; } if (.@r>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bUseSPrate,-5; } },{},{} 22190,Illusion_Boots,Illusion Boots,4,0,,600,,16,,1,0x416E5CEA,63,2,64,,100,1,0,{ .@r = getrefine(); bonus bCritical,(5*(.@r/3)); bonus bAspdRate,.@r; },{},{} 22192,Illusion_Goibne's_Greaves,Illusion Goibne's Greaves,4,0,,1200,,42,,1,0xFFFFFFFE,63,2,64,,130,1,0,{ .@r = getrefine(); bonus bMaxHPrate,5; bonus bMaxSPrate,5; if (.@r >= 7) { bonus bVariableCastrate,-5; if (.@r >= 9) { bonus bLongAtkRate,10; } } },{},{} @@ -12472,6 +12492,7 @@ 27296,Ancient_Wootan_Shooter_Card,Ancient Wootan Shooter Card,6,20,,10,,,,,,,,4,,,,,{ .@dex = readparam(bDex); .@val = .@dex/10; if (.@val) { bonus bAspdRate,.@val; bonus2 bWeaponDamageRate,W_BOW,.@val; if (.@dex >= 120) { bonus bBaseAtk,40; } } },{},{} 27297,Ancient_Wootan_Fighter_Card,Ancient Wootan Fighter Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritical,5; bonus bCritAtkRate,10; },{},{} 27298,Ancient_Wootan_Defender_Card,Ancient Wootan Defender Card,6,20,,10,,,,,,,,32,,,,,{ .@val = 30; if (getrefine() >= 10) { .@val += 20; } bonus2 bSubClass,Class_Boss,.@val; },{},{} +27301,Labyrinth_Doppelganger_Card,Labyrinth Doppelganger Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddClass,Class_All,10; },{},{} 27304,E_EA2S_Card,E EA2S Card,6,20,,10,,,,,,,,136,,,,,{ bonus bHPrecovRate,50; },{},{} 27305,EL_A17T_Card,EL A17T Card,6,20,,10,,,,,,,,136,,,,,{ bonus5 bAutoSpell,"WL_HELLINFERNO",3,1,ATF_SHORT|ATF_WEAPON,1; /* fix me: unknown rate */ },{},{} 27306,Bellare_Card,Bellare Card,6,20,,10,,,,,,,,2,,,,,{ if (getiteminfo(getequipid(EQI_COMPOUND_ON),11) == W_REVOLVER) { .@r = getrefine(); bonus bHit,20; bonus bLongAtkRate,(5+.@r); if (.@r >= 10) { bonus2 bSkillAtk,"RL_FIREDANCE",15; } } },{},{} @@ -12706,6 +12727,7 @@ //28560,Yin_Yang_Talisman,Yin Yang Talisman,4,20,,300,,0,,1,0xFFFFFFFF,63,2,136,,50,0,0,{ bonus bMatkRate,5; bonus bHit,20; bonus bAspdRate,5; },{},{} 28564,Valkyrie_Drop,Valkyrie Drop,4,20,,30,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ .@r = getskilllv("PR_IMPOSITIO"); bonus bSPrecovRate,50; bonus bVariableCastrate,-10; bonus bDelayrate,-5; bonus2 bVariableCastrate,"AB_ORATIO",-50; bonus2 bFixedCastrate,"AB_ORATIO",-100; bonus2 bMagicAddSize,Size_All,3*.@r; bonus2 bSkillAtk,"PR_MAGNUS",3*(Baselevel/2); if (.@r == 5) skill "ALL_ODINS_POWER",2; },{},{} 28565,Perverse_Demon_Mask,Perverse Demon Mask,4,20,,60,,0,,1,0xFFFFFFFF,63,2,128,,80,0,0,{ .@s = readparam(bStr); .@a = readparam(bAgi); .@d = readparam(bDex); .@v = readparam(bvit); .@l = readparam(bLuk); .@i = readparam(bInt); bonus bStr,3*(.@i/18); bonus bAgi,3*(.@l/18); bonus bVit,3*(.@d/18); bonus bInt,3*(.@s/18); bonus bDex,3*(.@v/18); bonus bLuk,3*(.@a/18); bonus bMaxHPrate,(.@d/18); bonus bFlee2,(.@a/18); bonus bMaxHPrate,(.@d/18); bonus bVariableCastrate,-(.@v/18); bonus bDelayrate,-(.@i/18); bonus2 bIgnoreDefClassRate,Class_All,15*(.@l/18); bonus2 bIgnoreMdefClassRate,Class_All,15*(.@s/18); },{},{} +28566,Beginner's_Ring,Beginner's Ring,4,20,,0,,0,,0,0xFFFFFFFF,63,2,128,,100,0,0,{ bonus bAspdRate,10; bonus bVariableCastrate,-10; },{},{} 28573,Emerald_Ring,Emerald Ring,4,20,,300,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ .@a = getskilllv("AC_DOUBLE")/2; bonus bAgi,5+(.@a); bonus bVit,5+(.@a); bonus bDex,5+(.@a); bonus bBaseAtk,(20*.@a); bonus2 bSkillAtk,"AC_DOUBLE",Baselevel; bonus2 bSkillAtk,"AC_SHOWER",Baselevel; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",2*(Baselevel/10); bonus2 bSkillUseSP,"WM_RANDOMIZESPELL",18; },{},{} 28575,Verus_Core,Verus Core,4,10,,500,,0,,1,0xFFFFFFFF,63,2,136,,80,0,0,{ bonus bAspdRate,10; bonus2 bAddEle,Ele_All,5; bonus bPerfectHitAddRate,20; },{},{} 28594,Temporal_Ring,Temporal Ring,4,20,,500,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bBaseAtk,50; bonus bMatk,50; },{},{} @@ -12920,6 +12942,7 @@ 29173,S-MaxHP,S-MaxHP,6,0,,0,,,,,,,,,,,,,{ bonus bMaxHP,2500; .@r = getrefine(); .@c = 100; .@t = 3000; if(.@r>=8){ .@t += 1000; } if(.@r>=9){ .@c += 100; .@t += 1000; } autobonus2 "{ bonus bMaxHP,7500; }",.@c,.@t; },{},{} 29174,S-Quick,S-Quick,6,0,,0,,,,,,,,,,,,,{ bonus bVariableCastrate,-10; .@r = getrefine(); .@c = 100; .@t = 3000; if(.@r>=8){ .@t += 1000; } if(.@r>=9){ .@c += 100; .@t += 1000; } autobonus2 "{ bonus bVariableCastrate,-100; bonus bDelayrate,-100; }",.@c,.@t,BF_MAGIC; },{},{} 29175,S-Cri,S-Cri,6,0,,0,,,,,,,,,,,,,{ bonus bCritical,10; .@r = getrefine(); .@c = 100; .@t = 3000; if(.@r>=8){ .@t += 1000; } if(.@r>=9){ .@c += 100; .@t += 1000; } autobonus2 "{ bonus bCritical,100; }",.@c,.@t; },{},{} +29176,Tenji,Tenji,6,10,,0,,,,,0xFFFFFFFF,63,2,64,,,,,{ bonus2 bAddRace,RC_Brute,15; bonus2 bAddRace,RC_Plant,15; bonus2 bMagicAddRace,RC_Brute,15; bonus2 bMagicAddRace,RC_Plant,15; bonus2 bAddEle,Ele_Wind,15; bonus2 bAddEle,Ele_Earth,15; bonus2 bMagicAddEle,Ele_Wind,15; bonus2 bMagicAddEle,Ele_Earth,15; autobonus2 "{ bonus bVariableCastrate,-70;bonus bDelayrate,-70; bonus bIgnoreDefRace,RC_All; bonus bIgnoreMDefRace,RC_All; }",1,10000; },{},{} 29224,WhiteBody_Effect,White Body Effect,6,0,,0,,,,,,,,,,,,,{ hateffect HAT_EF_WHITEBODY,true; },{},{ hateffect HAT_EF_WHITEBODY,false; } 29225,WaterField_Effect,Water Field Effect,6,0,,0,,,,,,,,,,,,,{ hateffect HAT_EF_WATER_BELOW2,true; },{},{ hateffect HAT_EF_WATER_BELOW2,false; } 29226,ExplodingWave_Effect,Crimson Wave Effect,6,0,,0,,,,,,,,,,,,,{ /* todo */ },{},{} @@ -13694,6 +13717,7 @@ 32231,Schmidt_Insignia_Rigid_Body,King Schmidt's Rigid Body Insignia,4,0,0,200,,10,,1,0xFFFFFFFF,63,2,128,,150,,,{ bonus bMaxHPrate,10; },{},{} 32232,Schmidt_Insignia_Flash,King Schmidt's Flash Insignia,4,0,0,200,,10,,1,0xFFFFFFFF,63,2,128,,150,,,{ bonus bAspdRate,5; },{},{} 32233,Schmidt_Insignia_Celestial,King Schmidt's Celestial Insignia,4,0,,200,,10,,1,0xFFFFFFFF,63,2,128,,150,,,{ bonus bLongAtkRate,7; },{},{} +32234,Warrior's_Ring,Warrior's Ring,4,0,,300,,0,,1,0xFFFFFFFF,63,2,136,,100,,,{ bonus2 bAddClass,Class_All,5; bonus2 bMagicAddClass,Class_All,5; bonus2 bAddEle,Ele_Wind,10; bonus2 bAddEle,Ele_Earth,10; bonus2 bMagicAddEle,Ele_Wind,10; bonus2 bMagicAddEle,Ele_Earth,10; bonus2 bSubEle,Ele_Wind,5; bonus2 bSubEle,Ele_Earth,5; },{},{} 32237,Celine's_Brooch,Celine's Brooch,4,10,,500,,0,,1,0xFFFFFFFE,63,2,136,,100,0,0,{ bonus bMatkRate,5; bonus bVariableCastrate,-10; },{},{} 32238,Illusion_Morpheus's_Ring,Illusion Morpheus's Ring,4,20,,100,,0,,1,0xFFFFFFFF,63,2,8,,130,0,0,{ bonus bInt,3; bonus bMaxSPrate,5; },{},{} 32239,Illusion_Morpheus's_Bracelet,Illusion Morpheus's Bracelet,4,20,,100,,0,,1,0xFFFFFFFF,63,2,128,,130,0,0,{ bonus bInt,3; bonus bMaxSPrate,5; },{},{} diff --git a/sql-files/item_db_re.sql b/sql-files/item_db_re.sql index a822f15b3f..8ad9489d09 100644 --- a/sql-files/item_db_re.sql +++ b/sql-files/item_db_re.sql @@ -717,7 +717,7 @@ REPLACE INTO `item_db_re` VALUES (1317,'Academy_Axe','Academy Axe',5,0,NULL,1600 REPLACE INTO `item_db_re` VALUES (1318,'Dofle_Axe','Deflation Axe',5,50000,NULL,1800,'180',NULL,1,2,0x000654E2,63,2,2,4,'105',1,6,'skill "ITM_TOMAHAWK",1;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1319,'TE_Woe_Axe','TE Woe Axe',5,0,NULL,0,'100',NULL,1,0,0x000654E3,63,2,2,3,'40',1,6,'bonus bUnbreakableWeapon; bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Freeze,1000;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1321,'Dofle_Axe_','Deflation Axe',5,50000,NULL,1800,'180',NULL,1,3,0x000654E2,63,2,2,4,'105',1,6,'skill "ITM_TOMAHAWK",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1322,'Ru_Blue_Axe','Blue Axe',5,10,NULL,1800,'180',NULL,1,1,0xFFFBFFFF,56,2,2,1,'1',1,6,'bonus bStr,5; bonus bVit,5;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (1322,'Ru_Blue_Axe','Blue Axe',5,10,NULL,1800,'180',NULL,1,1,0xFFFBFFFF,56,2,2,3,'100',1,6,'bonus bStr,5; bonus bInt,5;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1323,'Ru_Gold_Axe','Ru Gold Axe',5,0,NULL,1800,'180',NULL,1,2,0x00040000,56,2,2,3,'120',1,6,'bonus bStr,8; bonus bInt,8;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1324,'War_Axe_','War Axe',5,20,NULL,4200,'140',NULL,1,3,0x00040400,63,2,2,3,'76',1,6,'bonus bDex,2; bonus bLuk,2;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1326,'Illusion_War_Axe','Illusion War Axe',5,0,NULL,4200,'180',NULL,1,2,0x00040420,63,2,2,4,'120',1,6,'bonus bStr,2; bonus bDex,2; bonus bLuk,2; .@r = getrefine(); if (.@r >= 9) { .@val = 40; } else if (.@r >= 7) { .@val = 20; } bonus2 bSkillAtk,"NC_AXETORNADO",(100+.@val); bonus2 bSkillAtk,"NC_AXEBOOMERANG",(100+.@val); bonus2 bSkillAtk,"GN_CART_TORNADO",(75+.@val);',NULL,NULL); @@ -725,7 +725,7 @@ REPLACE INTO `item_db_re` VALUES (1326,'Illusion_War_Axe','Illusion War Axe',5,0 # 2-Handed Axes #=================================================================== REPLACE INTO `item_db_re` VALUES (1333,'Golden_Wrench','Golden Wrench',5,NULL,NULL,5500,'220',NULL,1,2,0x00000400,56,2,2,4,'170',1,6,'.@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bAddClass,Class_all,5; bonus bBaseAtk,4*.@r; if (.@r>=11) .@val = 35; else if (.@r>=9) .@val = 20; bonus2 bSkillAtk,"NC_AXEBOOMERANG",.@val; bonus2 bSkillAtk,"NC_POWERSWING",.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1336,'Guardian_Knight_Axe','Guardian Knight Axe',5,0,NULL,1500,'210',NULL,1,2,0xFFFFFBFF,56,2,2,4,'170',1,6,'bonus bUnbreakableWeapon; bonus2 bAddClass,Class_All,5; .@r = getrefine(); bonus bLongAtkRate,.@r; if(.@r >= 9){ bonus2 bSkillAtk,"NC_POWERSWING",20; } if(.@r >= 11){ bonus2 bAddRace,RC_Undead,20; bonus2 bAddRace,RC_Angel,20; }',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (1336,'Guardian_Knight_Axe','Guardian Knight Axe',5,0,NULL,1500,'210',NULL,1,2,0xFFFFFBFF,56,2,2,4,'170',1,6,'bonus bUnbreakableWeapon; bonus2 bAddClass,Class_All,5; .@r = getrefine(); bonus bLongAtkRate,.@r; if(.@r >= 9){ bonus2 bSkillAtk,"NC_POWERSWING",20; bonus2 bSkillAtk,"NC_AXEBOOMERANG",20; } if(.@r >= 11){ bonus2 bAddRace,RC_Undead,20; bonus2 bAddRace,RC_Angel,20; }',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1351,'Battle_Axe','Battle Axe',5,5400,NULL,1500,'80',NULL,1,3,0x000444A2,63,2,34,1,'3',1,7,NULL,NULL,NULL); REPLACE INTO `item_db_re` VALUES (1352,'Battle_Axe_','Battle Axe',5,5400,NULL,1500,'80',NULL,1,4,0x000444A2,63,2,34,1,'3',1,7,NULL,NULL,NULL); REPLACE INTO `item_db_re` VALUES (1353,'Battle_Axe__','Battle Axe',5,5400,NULL,1500,'80',NULL,1,0,0x000444A2,63,2,34,1,'3',1,7,NULL,NULL,NULL); @@ -759,7 +759,7 @@ REPLACE INTO `item_db_re` VALUES (1380,'BF_Two_Handed_Axe2','Brave Insane Battle REPLACE INTO `item_db_re` VALUES (1381,'N_Battle_Axe','Novice Battle Axe',5,0,NULL,0,'100',NULL,1,3,0x000444A2,63,2,34,1,'3',0,7,NULL,NULL,NULL); REPLACE INTO `item_db_re` VALUES (1382,'Krieger_Twohand_Axe1','Glorious Two-Handed Axe',5,20,NULL,0,'220',NULL,1,0,0x000444A2,63,2,34,4,'80',1,7,'bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-3,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-3,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,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; }',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1383,'Holy_Celestial_Axe','Celestial Axe',5,20,NULL,1500,'200',NULL,1,0,0x00040420,63,2,34,4,'60',1,7,'bonus2 bAddRace,RC_Undead,10; bonus3 bAutoSpell,"AL_BLESSING",5,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1384,'Veteran_Axe','Veteran Axe',5,10000,NULL,3000,'250',NULL,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; bonus4 bAutoSpellOnSkill,"BS_HAMMERFALL","SM_MAGNUM",50,3;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (1384,'Veteran_Axe','Veteran Axe',5,10000,NULL,3000,'250',NULL,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; bonus4 bAutoSpellOnSkill,"BS_HAMMERFALL","SM_MAGNUM",3,50;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1385,'Bradium_Stonehammer','Bradium Stone Hammer',5,20,NULL,2700,'210',NULL,1,0,0x00000400,2,2,34,4,'75',1,7,'bonus3 bAddEffOnSkill,"BS_HAMMERFALL",Eff_Stun,500+(200*getrefine());',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1386,'Doom_Slayer_I','Doom Slayer',5,0,NULL,0,'20',NULL,1,0,0x000444A2,63,2,34,4,'0',0,7,'bonus bAspdRate,-25; bonus bUseSPrate,100; if(readparam(bStr)>=95){ bonus bBaseAtk,400; bonus2 bAddEff,Eff_Stun,3000; bonus bBreakArmorRate,500; }',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1387,'Giant_Axe','Giant Axe',5,20,NULL,4000,'330',NULL,1,1,0x00044480,18,2,34,3,'50',1,7,'bonus2 bSkillAtk,"WS_CARTTERMINATION",15; if(readparam(bStr)>=95) { bonus bHit,10; bonus bAspdRate,3; }',NULL,NULL); @@ -802,9 +802,9 @@ REPLACE INTO `item_db_re` VALUES (1420,'Long_Horn','Long Horn',5,20,NULL,1000,'1 REPLACE INTO `item_db_re` VALUES (1421,'Battle_Hook','Battle Hook',5,20,NULL,900,'140',NULL,3,1,0x00004082,18,2,2,4,'65',1,4,'bonus2 bAddEff,Eff_Stun,500; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; skill "KN_PIERCE",3;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1422,'Hunting_Spear','Hunting Spear',5,20,NULL,4200,'180',NULL,3,1,0x00004082,18,2,2,4,'60',1,4,'bonus bIgnoreDefRace,RC_Brute; bonus bIgnoreDefRace,RC_Player_Doram; bonus3 bAddMonsterDropItem,517,RC_Brute,1000; bonus3 bAutoSpell,"LK_JOINTBEAT",3,100;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1423,'Pole_XO','Pole XO',5,20,NULL,0,'120',NULL,3,0,0x00004082,63,2,2,1,'0',0,4,'bonus2 bAddClass,Class_All,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1424,'Skewer_C','Refined Brocca',5,1,NULL,0,'149',NULL,3,0,0x00004082,63,2,2,4,'0',0,4,'bonus bIgnoreDefClass,Class_Normal; bonus2 bAddSize,Size_Medium,20;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (1424,'Skewer_C','Refined Brocca',5,1,NULL,0,'149',NULL,3,0,0x00004082,63,2,2,4,'1',0,4,'bonus bIgnoreDefClass,Class_Normal; bonus2 bAddSize,Size_Medium,20; bonus2 bAddSize,Size_Large,20;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1425,'BF_Spear1','Assaulter Spear',5,20,NULL,0,'60',NULL,3,0,0x00004082,63,2,2,3,'80',1,4,'bonus bStr,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(BaseJob==Job_Crusader) bonus bAspdRate,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1426,'Krieger_Onehand_Spear1','Glorious Spear',5,20,NULL,0,'130',NULL,3,0,0x00004082,63,2,2,4,'80',1,4,'bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,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; }',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (1426,'Krieger_Onehand_Spear1','Glorious Spear',5,20,NULL,0,'130',NULL,3,0,0x00004082,63,2,2,4,'80',1,4,'bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus bAspdRate,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,100; bonus bAspdRate,5; }',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1427,'Spear_Of_Excellent','Spear Of Excellent',5,20,NULL,0,'160',NULL,3,0,0x00004082,63,2,2,3,'0',0,4,'bonus2 bSkillAtk,"SM_MAGNUM",25; bonus bStr,2;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1428,'Long_Horn_M','Long Horn',5,20,NULL,1000,'150',NULL,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;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1429,'Hunting_Spear_M','Hunting Spear',5,20,NULL,4200,'180',NULL,3,1,0x00004082,18,2,2,4,'60',1,4,'bonus bIgnoreDefRace,RC_Brute; bonus bIgnoreDefRace,RC_Player_Doram; bonus3 bAddMonsterDropItem,517,RC_Brute,1000; bonus3 bAutoSpell,"LK_JOINTBEAT",3,100;',NULL,NULL); @@ -813,17 +813,19 @@ REPLACE INTO `item_db_re` VALUES (1431,'F_Pole_Axe_C','Pole Axe',5,1,NULL,4800,' REPLACE INTO `item_db_re` VALUES (1432,'E_Pole_Axe_C','Pole Axe',5,1,NULL,4800,'195',NULL,3,0,0x00004082,63,2,2,3,'1',0,4,'bonus bStr,1; bonus bInt,2; bonus bDex,1;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1433,'Imperial_Spear','Imperial Spear',5,20,NULL,1800,'180:40',NULL,3,1,0x00004082,63,2,2,3,'102',1,4,'.@r = getrefine(); bonus2 bSkillAtk,"LG_CANNONSPEAR",20+(.@r/2*3); bonus2 bSkillAtk,"LG_BANISHINGPOINT",20+(.@r/2*3);',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1434,'P_Sphere1','Eden Spear I',5,0,NULL,0,'165',NULL,3,0,0x00004082,63,2,2,3,'60',0,4,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1435,'Cannon_Spear','Cannon Spear',5,56000,NULL,1600,'180',NULL,3,1,0x00004000,63,2,2,4,'100',1,4,'bonus bMaxSP,-100; bonus2 bSkillAtk,"LG_CANNONSPEAR",10; bonus bBaseAtk,(getrefine()/3);',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (1435,'Cannon_Spear','Cannon Spear',5,56000,NULL,1600,'180',NULL,3,1,0x00004000,56,2,2,4,'100',1,4,'bonus bMaxSP,-100; bonus2 bSkillAtk,"LG_CANNONSPEAR",10; bonus2 bSkillAtk,"LG_CANNONSPEAR",(getrefine()/3);',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1436,'Velum_Spear','Vellum Spear',5,20,NULL,850,'150',NULL,3,0,0x00004082,63,2,2,4,'95',1,4,'bonus2 bAddRace,RC_Player_Human,60; .@r = getrefine(); if(.@r>=6) { bonus2 bSkillAtk,"RK_HUNDREDSPEAR",80; bonus2 bSkillAtk,"LG_PINPOINTATTACK",80; } if(.@r>=9) { bonus2 bAddRace,RC_Player_Human,30; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1437,'TE_Woe_Pike','TE Woe Pike',5,0,NULL,0,'100',NULL,3,0,0x00004082,63,2,2,3,'40',1,4,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Curse,3000;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (1437,'TE_Woe_Pike','TE Woe Pike',5,0,NULL,0,'100',NULL,3,0,0x00004082,63,2,2,3,'40',1,4,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Curse,1000;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1438,'Thanos_Spear','Thanos Spear',5,10,NULL,3000,'150:100',NULL,3,1,0x00004082,56,2,2,4,'120',1,4,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000;',NULL,'heal -1000,0;'); REPLACE INTO `item_db_re` VALUES (1439,'Half_BF_Spear1','Half BF Spear1',5,20,NULL,0,'60',NULL,3,0,0x00004082,63,2,2,3,'80',1,4,'bonus bStr,2; bonus2 bAddRace,RC_DemiHuman,45; bonus2 bAddRace,RC_Player_Human,45; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon; if(BaseJob==Job_Crusader) bonus bAspdRate,20;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1440,'Battle_Hook_','Battle Hook',5,20,NULL,900,'140',NULL,3,3,0x00004082,18,2,2,4,'65',1,4,'bonus2 bAddEff,Eff_Stun,500; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; skill "KN_PIERCE",3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1441,'Ru_Blue_Spear','Blue Spear',5,10,NULL,1200,'180:170',NULL,3,1,0x00004000,56,2,2,3,'100',1,4,'bonus bDex,5; bonus bInt,5;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (1441,'Ru_Blue_Spear','Blue Spear',5,10,NULL,1200,'180',NULL,3,1,0x00004000,56,2,2,3,'100',1,4,'bonus bStr,5; bonus bAgi,5;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1442,'Ru_Gold_Spear','Ru Gold Spear',5,0,NULL,1200,'180',NULL,3,2,0x00004000,56,2,2,3,'120',1,4,'bonus bStr,8; bonus bAgi,8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1443,'Crimson_Spear','Crimson Spear',5,20,NULL,900,'90',NULL,3,2,0x00004082,63,2,2,3,'70',1,4,'.@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225);',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (1443,'Crimson_Spear','Crimson Spear',5,20,NULL,900,'90',NULL,3,2,0x00004082,63,2,2,3,'70',1,4,'.@r = getrefine(); bonus bBaseAtk,(.@r<=15?pow(.@r,2):225); bonus bBaseAtk,((max(0,BaseLevel-70)/10)*5);',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (1445,'[Rental]_Hunting_Spear','[Rental] Hunting Spear',5,20,NULL,0,'140',NULL,3,2,0x00004082,63,2,2,3,'50',1,4,'.@r = getrefine(); if(.@r >= 7){ bonus2 bAddRace,RC_Insect,10; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddEle,Ele_Water,10; bonus2 bAddEle,Ele_Earth,10; } if(.@r >= 9){ bonus2 bAddRace,RC_Insect,15; bonus2 bAddRace,RC_DemiHuman,15; bonus2 bAddEle,Ele_Water,15; bonus2 bAddEle,Ele_Earth,15; } bonus bAtkEle,Ele_Fire;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1446,'Requiem_Spear','Requiem Spear',5,20,NULL,1000,'130',NULL,3,NULL,0x00004080,63,2,2,4,'100',1,4,'.@r = getrefine(); .@b = 40; bonus bUnbreakableWeapon; if(.@r>=5){ .@b += (.@r-5)*15+20; } bonus2 bAddRace2,RC2_BioLab,.@b;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1447,'Poison_Forged_Spear','Poison Forged Spear',5,0,NULL,500,'150',NULL,3,3,0x00004080,58,2,2,4,'100',1,4,'bonus bAtkEle,Ele_Poison; bonus bCritical,10; skill "TF_DOUBLE",5; bonus bDoubleRate,25; bonus2 bAddEff,Eff_Poison,1000; bonus2 bAddEff2,Eff_Poison,300;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (1448,'Warrior\'s_Spear','Warrior\'s Spear',5,0,NULL,2000,'140',NULL,3,3,0x00004082,63,2,2,3,'50',1,4,'.@r = getrefine(); if(.@r >= 7){ bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Plant,10; bonus2 bAddEle,Ele_Wind,10; bonus2 bAddEle,Ele_Earth,10; } if(.@r >= 9){ bonus2 bAddRace,RC_Brute,15; bonus2 bAddRace,RC_Plant,15; bonus2 bAddEle,Ele_Wind,15; bonus2 bAddEle,Ele_Earth,15; }',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1449,'Gelerdria_','Gelerdria',5,20,NULL,700,'145',NULL,3,3,0x00004082,63,2,2,4,'48',1,4,'bonus bAtkEle,Ele_Earth; bonus bMaxHP,800; bonus bMaxSP,-50;',NULL,NULL); #=================================================================== # 2-Handed Spears @@ -844,11 +846,11 @@ REPLACE INTO `item_db_re` VALUES (1462,'Trident__','Trident',5,51000,NULL,1200,' REPLACE INTO `item_db_re` VALUES (1463,'Halberd','Halberd',5,54000,NULL,2500,'165',NULL,3,1,0x00004082,63,2,34,3,'33',1,5,NULL,NULL,NULL); REPLACE INTO `item_db_re` VALUES (1464,'Halberd_','Halberd',5,54000,NULL,2500,'165',NULL,3,2,0x00004082,63,2,34,3,'33',1,5,NULL,NULL,NULL); REPLACE INTO `item_db_re` VALUES (1465,'Halberd__','Halberd',5,54000,NULL,2500,'165',NULL,3,0,0x00004082,63,2,34,3,'33',1,5,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1466,'Crescent_Scythe','Crescent Scythe',5,20,NULL,2500,'180',NULL,3,0,0x00004082,63,2,34,4,'48',1,5,'bonus bCritical,30; bonus bHit,10;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (1466,'Crescent_Scythe','Crescent Scythe',5,20,NULL,2500,'180',NULL,3,0,0x00004082,63,2,34,4,'48',1,5,'bonus bCriticalRate,30; bonus bHit,10;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1467,'Bill_Guisarme','Bill Guisarme',5,20,NULL,1000,'183',NULL,3,0,0x00004082,63,2,34,4,'48',1,5,'bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Player_Doram,10; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1468,'Zephyrus','Zephyrus',5,20,NULL,2000,'170',NULL,3,0,0x00004082,63,2,34,4,'48',1,5,'bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Silence,200; bonus3 bAutoSpell,"MG_THUNDERSTORM",3,100;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1469,'Longinus\'s_Spear','Longinus\'s Spear',5,20,NULL,2500,'180',NULL,3,0,0x00004082,63,2,34,4,'48',1,5,'bonus bAtkEle,Ele_Dark; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus2 bAddRace,RC_Angel,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1470,'Brionac','Brionac',5,20,NULL,3000,'190',NULL,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;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (1470,'Brionac','Brionac',5,20,NULL,3000,'190',NULL,3,0,0x00004082,63,2,34,4,'48',1,5,'bonus bAtkEle,Ele_Holy; skill "AL_HEAL",5; bonus3 bAutoSpell,"MG_SOULSTRIKE",3,100;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1471,'Hell_Fire','Hellfire',5,20,NULL,3500,'200',NULL,3,0,0x00004082,63,2,34,4,'48',1,5,'bonus bAtkEle,Ele_Fire; bonus3 bAutoSpell,"MG_FIREBALL",5,100; bonus bStr,3;',NULL,NULL); #=================================================================== # 2-Handed Staffs @@ -860,7 +862,7 @@ REPLACE INTO `item_db_re` VALUES (1473,'Wizardy_Staff','Wizardry Staff',5,20,NUL #=================================================================== REPLACE INTO `item_db_re` VALUES (1474,'Gae_Bolg','Gae Bolg',5,20,NULL,2000,'160',NULL,3,0,0x00004082,63,2,34,4,'60',1,5,'bonus bIgnoreDefRace,RC_Dragon; bonus2 bAddClass,Class_Boss,10;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1475,'Horseback_Lance','Equestrian\'s Spear',5,20,NULL,3700,'200',NULL,4,0,0x00004082,63,2,34,4,'75',1,5,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1476,'Crescent_Scythe_','Crescent Scythe',5,20,NULL,2500,'180',NULL,3,1,0x00004082,63,2,34,4,'48',1,5,'bonus bCritical,30; bonus bHit,10;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (1476,'Crescent_Scythe_','Crescent Scythe',5,20,NULL,2500,'180',NULL,3,1,0x00004082,63,2,34,4,'48',1,5,'bonus bCriticalRate,30; bonus bHit,10;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1477,'Spectral_Spear','Spectral Spear',5,20,NULL,2000,'170',NULL,3,0,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 bSubEle,Ele_Undead,10; bonus2 bSubRace,RC_Demon,10; bonus2 bAddEff2,Eff_Confusion,1000; bonus bHPGainValue,50;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1478,'Ahlspiess','Ahlspiess',5,20,NULL,1000,'120',NULL,3,0,0x00004080,63,2,34,4,'65',1,5,'bonus bIgnoreDefClass,Class_Normal; bonus bIgnoreDefClass,Class_Boss; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus3 bAutoSpell,"KN_PIERCE",5,30;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1479,'Spectral_Spear_','Spectral Spear',5,20,NULL,2000,'170',NULL,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 bSubEle,Ele_Undead,10; bonus2 bSubRace,RC_Demon,10; bonus2 bAddEff2,Eff_Confusion,1000; bonus bHPGainValue,50;',NULL,NULL); @@ -872,17 +874,17 @@ REPLACE INTO `item_db_re` VALUES (1484,'Cardo','Cardo',5,20,NULL,5600,'150',NULL REPLACE INTO `item_db_re` VALUES (1485,'Battle_Fork','Battle Fork',5,20,NULL,700,'112',NULL,3,4,0x00004082,18,2,34,2,'50',1,5,NULL,NULL,NULL); REPLACE INTO `item_db_re` VALUES (1486,'Krieger_Twohand_Spear1','Glorious Lance',5,20,NULL,0,'220',NULL,3,0,0x00004082,63,2,34,4,'80',1,5,'bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,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; }',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1487,'Lance_C','Lance',5,0,NULL,0,'220',NULL,3,0,0x00004082,63,2,34,3,'1',0,5,'bonus2 bAddSize,Size_All,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1488,'Ahlspiess_C','Ahlspiess',5,20,NULL,0,'135',NULL,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_Human,10; bonus3 bAutoSpell,"KN_PIERCE",5,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1489,'Spearfish_','Marlin',5,0,NULL,0,'220',NULL,3,0,0x00004082,18,2,34,1,'50',0,5,'bonus bUnbreakableWeapon; 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; }',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (1488,'Ahlspiess_C','Ahlspiess',5,20,NULL,0,'135',NULL,3,0,0x00004080,63,2,34,4,'1',1,5,'bonus bIgnoreDefClass,Class_Normal; bonus bIgnoreDefClass,Class_Boss; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; bonus3 bAutoSpell,"KN_PIERCE",5,30;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (1489,'Spearfish_','Marlin',5,0,NULL,0,'220',NULL,3,0,0x00004082,18,2,34,1,'50',0,5,'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; }',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1490,'Giant_Lance','Gigantic Lance',5,20,NULL,20000,'20',NULL,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; }',NULL,'heal 0,-600;'); REPLACE INTO `item_db_re` VALUES (1491,'Upg_Lance','Upg Lance',5,20,NULL,1500,'105',NULL,3,1,0x00004082,63,2,34,3,'1',1,5,'bonus bBaseAtk,(getrefine()*12); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*10);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1492,'Velum_Glaive','Vellum Glaive',5,20,NULL,4500,'250',NULL,3,0,0x00004082,63,2,34,4,'95',1,5,'bonus2 bAddRace,RC_Player_Human,80; .@r = getrefine(); if(.@r>=6) { bonus2 bSkillAtk,"LK_SPIRALPIERCE",100; bonus2 bSkillAtk,"LG_OVERBRAND",50; } if(.@r>=9) { autobonus2 "{ bonus bShortWeaponDamageReturn,20; bonus bMagicDamageReturn,20; }",100,2000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_REFLECTSHIELD; }"; }',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (1492,'Velum_Glaive','Vellum Glaive',5,20,NULL,4500,'250',NULL,3,0,0x00004082,63,2,34,4,'95',1,5,'bonus2 bAddRace,RC_Player_Human,80; bonus2 bAddRace,RC_Player_Doram,80; .@r = getrefine(); if(.@r>=6) { bonus2 bSkillAtk,"LK_SPIRALPIERCE",100; bonus2 bSkillAtk,"LG_OVERBRAND",50; } if(.@r>=9) { bonus bShortWeaponDamageReturn,20; bonus bMagicDamageReturn,20; bonus5 bAutoSpellWhenHit,"NPC_MAGICMIRROR",7,300,BF_MAGIC,0; }',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1493,'Metal_Lance','Metal Lance',5,20,NULL,0,'100',NULL,3,1,0x00004082,63,2,34,3,'1',1,5,'bonus bBaseAtk,(getrefine()*6); .@i = min(BaseLevel/10,12); if(.@i>2) bonus bBaseAtk,((.@i-2)*5);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1494,'Undine_Spear','Spear Of Odin',5,50000,NULL,3800,'190',NULL,3,3,0x00004082,63,2,34,4,'105',1,5,'bonus bAtkEle,Ele_Water;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1495,'TE_Woe_Lance','TE Woe Lance',5,0,NULL,0,'150',NULL,3,0,0x00004082,63,2,34,3,'40',1,5,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Blind,3000;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (1494,'Undine_Spear','Spear Of Odin',5,50000,NULL,3800,'190',NULL,3,3,0x00004082,63,2,34,4,'105',1,5,'bonus bAtkEle,Ele_Water; bonus bMaxHPrate,getrefine();',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (1495,'TE_Woe_Lance','TE Woe Lance',5,0,NULL,0,'150',NULL,3,0,0x00004082,63,2,34,3,'40',1,5,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Blind,1000;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1496,'Thanos_Long_Spear','Thanos Long Spear',5,10,NULL,3750,'250:50',NULL,3,1,0x00004082,56,2,34,4,'120',1,5,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000;',NULL,'heal -1000,0;'); REPLACE INTO `item_db_re` VALUES (1497,'Hell_Fire_','Hellfire',5,20,NULL,3500,'200',NULL,3,3,0x00004082,63,2,34,4,'48',1,5,'bonus bAtkEle,Ele_Fire; bonus3 bAutoSpell,"MG_FIREBALL",5,100; bonus bStr,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1498,'Crimson_Lance','Crimson Lance',5,20,NULL,1750,'175',NULL,1,2,0x00004082,63,2,34,3,'70',1,5,'.@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225);',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (1498,'Crimson_Lance','Crimson Lance',5,20,NULL,1750,'175',NULL,1,2,0x00004082,63,2,34,3,'70',1,5,'.@r = getrefine(); bonus bBaseAtk,pow(.@r,2); bonus bBaseAtk,(max(0,BaseLevel-70)/10)*5;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1499,'Requiem_Lance','Requiem Lance',5,20,NULL,1500,'220',NULL,3,NULL,0x00004080,63,2,34,4,'100',1,5,'.@r = getrefine(); .@b = 40; .@c = 5; bonus bUnbreakableWeapon; if(.@r>=5){ .@b += (.@r-5)*15+30; .@c += (.@r-5); } bonus2 bAddRace2,RC2_BioLab,.@b; bonus2 bSubRace2,RC2_BioLab,.@c;',NULL,NULL); #=================================================================== # Maces @@ -909,7 +911,7 @@ REPLACE INTO `item_db_re` VALUES (1519,'Chain','Chain',5,23000,NULL,800,'84',NUL REPLACE INTO `item_db_re` VALUES (1520,'Chain_','Chain',5,23000,NULL,800,'84',NULL,1,3,0x0004C5B2,63,2,2,2,'14',1,8,NULL,NULL,NULL); REPLACE INTO `item_db_re` VALUES (1521,'Chain__','Chain',5,23000,NULL,800,'84',NULL,1,3,0x0004C5B2,63,2,2,2,'14',1,8,NULL,NULL,NULL); REPLACE INTO `item_db_re` VALUES (1522,'Stunner','Stunner',5,60000,NULL,2000,'140',NULL,1,0,0x00008110,63,2,2,3,'27',1,8,'bonus2 bAddEff,Eff_Stun,1000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1523,'Spike','Spike',5,20,NULL,700,'85',NULL,1,0,0x00008110,63,2,2,4,'40',1,8,'bonus bCritical,40; bonus bDefRate,-67; bonus bDef2Rate,-67;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (1523,'Spike','Spike',5,20,NULL,700,'85',NULL,1,0,0x00008110,63,2,2,4,'40',1,8,'bonus bCriticalRate,40; bonus bDefRate,-66; bonus bDef2Rate,-66;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1524,'Golden_Mace','Golden Mace',5,20,NULL,800,'110',NULL,1,1,0x00008110,63,2,2,4,'40',1,8,'bonus2 bAddRace,RC_Undead,10; bonus bUnbreakableWeapon;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1525,'Long_Mace','Long Mace',5,20,NULL,800,'135',NULL,3,0,0x00008110,63,2,2,4,'40',1,8,'bonus bLongAtkDef,10;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1526,'Slash','Slash',5,20,NULL,1000,'145',NULL,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;',NULL,NULL); @@ -927,14 +929,14 @@ REPLACE INTO `item_db_re` VALUES (1537,'Quadrille_C','Refined Quadrille',5,1,NUL REPLACE INTO `item_db_re` VALUES (1538,'Spike_','Spike',5,20,NULL,700,'85',NULL,1,2,0x00008110,63,2,2,4,'40',1,8,'bonus bCritical,40; bonus bDefRate,-67; bonus bDef2Rate,-67;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1539,'Golden_Mace_','Golden Mace',5,20,NULL,800,'110',NULL,1,2,0x00008110,63,2,2,4,'40',1,8,'bonus2 bAddRace,RC_Undead,10; bonus bUnbreakableWeapon;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1540,'Grand_Cross_','Grand Cross',5,20,NULL,1500,'140',NULL,1,1,0x00008110,63,2,2,4,'40',1,8,'bonus bAtkEle,Ele_Holy; bonus3 bAutoSpell,"PR_TURNUNDEAD",3,100; bonus2 bSPDrainValueRace,RC_Undead,1; bonus2 bSPGainRace,RC_Undead,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1541,'Nemesis','Nemesis',5,20,NULL,900,'120',NULL,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; }";',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (1541,'Nemesis','Nemesis',5,20,NULL,900,'120',NULL,1,0,0x00008110,63,2,2,4,'60',1,8,'bonus bAtkEle,Ele_Holy; bonus2 bAddEle,Ele_Dark,10; bonus2 bAddRace,RC_Demon,10; bonus3 bAutoSpell,"AL_CRUCIS",1+getrefine(),100; autobonus "{ bonus bBaseAtk,50; }",10,20000,BF_WEAPON,"{ specialeffect2 EF_BLOODDRAIN; }";',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1542,'BF_Morning_Star1','Valorous Battlefield Morning Star',5,20,NULL,0,'105',NULL,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_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1543,'BF_Morning_Star2','Brave Battlefield Morning Star',5,20,NULL,0,'105',NULL,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_Human,75; bonus bUnbreakableWeapon; autobonus "{ bonus2 bAddEff,Eff_Stun,5000; }",10,6000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }";',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1544,'Lunakaligo','Lunakaligo',5,20,NULL,700,'110',NULL,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; }',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1545,'N_Mace','Novice Mace',5,0,NULL,0,'57',NULL,1,3,0x0004C5B3,63,2,2,1,'2',0,8,NULL,NULL,NULL); REPLACE INTO `item_db_re` VALUES (1546,'Krieger_Onehand_Mace1','Glorious Morning Star',5,20,NULL,0,'130',NULL,1,0,0x0004C5B3,63,2,2,4,'80',1,8,'bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus bAspdRate,5; } if(.@r>8) { bonus2 bAddEff,Eff_Stun,2000; bonus bAspdRate,5; }',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1547,'Mace_Of_Madness','Mace Of Madness',5,20,NULL,0,'150',NULL,1,0,0x0004C5B2,63,2,2,3,'0',0,8,'bonus2 bSkillAtk,"MC_CARTREVOLUTION",25; bonus bStr,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1548,'Veteran_Hammer','Veteran Hammer',5,10000,NULL,1800,'160',NULL,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;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (1548,'Veteran_Hammer','Veteran Hammer',5,10000,NULL,1800,'160',NULL,1,2,0x00008110,63,2,2,3,'80',1,8,'bonus bHealPower,getskilllv("AL_DP"); bonus bCriticalRate,getskilllv("PR_MACEMASTERY")*2; bonus bInt,1; bonus bLuk,1;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1549,'Pilebuncker','Pile Bunker',5,10000,NULL,3500,'450',NULL,1,0,0x00000400,56,2,2,3,'99',1,8,NULL,NULL,NULL); #=================================================================== # Books @@ -956,35 +958,40 @@ REPLACE INTO `item_db_re` VALUES (1563,'Diary_Of_Great_Sage_C','Sage\'s Diary',5 REPLACE INTO `item_db_re` VALUES (1564,'Encyclopedia','Encyclopedia',5,20,NULL,2000,'110:100',NULL,1,2,0x00410100,63,2,2,3,'70',1,15,'bonus bInt,3; bonus bDex,2; bonus bCritical,20+((readparam(bLuk)*2)/10);',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1565,'Death_Note','Ledger of Death',5,20,NULL,1000,'137:100',NULL,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_Human,10; bonus bAspdRate,getrefine(); if(BaseJob==Job_Sage) bonus3 bAutoSpell,"NPC_HELLJUDGEMENT",5,20;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1566,'Diary_Of_Great_Basil','Diary Of Great Basil',5,20,NULL,0,'120:125',NULL,1,0,0x00410100,63,2,2,1,'0',0,15,'bonus2 bAddClass,Class_All,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1567,'Hardback_C','Refined Hardcover Book',5,1,NULL,0,'168:100',NULL,1,0,0x00410100,63,2,2,4,'0',0,15,'bonus bStr,5; bonus bDex,2; bonus bMatkRate,20;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (1567,'Hardback_C','Refined Hardcover Book',5,1,NULL,0,'168:100',NULL,1,0,0x00410100,63,2,2,4,'1',0,15,'bonus bStr,5; bonus bDex,2;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1568,'Book_Of_Billows_','Book of Billows',5,35000,NULL,750,'90',NULL,1,3,0x00410100,63,2,2,3,'27',1,15,'bonus bAtkEle,Ele_Water;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1569,'Book_Of_Mother_Earth_','Book of Mother Earth',5,35000,NULL,750,'90',NULL,1,3,0x00410100,63,2,2,3,'27',1,15,'bonus bAtkEle,Ele_Earth;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1570,'Book_Of_Blazing_Sun_','Book of Blazing Sun',5,35000,NULL,750,'90',NULL,1,3,0x00410100,63,2,2,3,'27',1,15,'bonus bAtkEle,Ele_Fire;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1571,'Book_Of_Gust_Of_Wind_','Book of Gust of Wind',5,35000,NULL,750,'90',NULL,1,3,0x00410100,63,2,2,3,'27',1,15,'bonus bAtkEle,Ele_Wind;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1572,'Principles_Of_Magic','Principles of Magic',5,20,NULL,300,'60:160',NULL,1,2,0x00410100,63,2,2,3,'60',1,15,'bonus bInt,3; bonus bSPrecovRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1573,'Ancient_Magic','Ancient Magic',5,20,NULL,700,'30:140',NULL,1,2,0x00410100,63,2,2,3,'70',1,15,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1574,'BF_Book1','Brave Battle Strategy Book',5,20,NULL,0,'90:125',NULL,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_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1575,'BF_Book2','Valorous Battle Strategy Book',5,20,NULL,0,'90:125',NULL,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_Human,25; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1576,'Krieger_Book1','Glorious Tablet',5,20,NULL,0,'90:115',NULL,1,0,0x00410100,63,2,2,4,'80',1,15,'bonus bMatkRate,15; bonus2 bAddRace,RC_DemiHuman,80; bonus2 bAddRace,RC_Player_Human,80; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) autobonus "{ bonus bBaseAtk,200; }",30,3000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1577,'Krieger_Book2','Glorious Apocalypse',5,20,NULL,0,'90:115',NULL,1,0,0x00410100,63,2,2,4,'80',1,15,'bonus2 bAddRace,RC_DemiHuman,80; bonus2 bAddRace,RC_Player_Human,80; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; if(.@r>8) { bonus bMatkRate,5; bonus bVariableCastrate,-5; bonus bDelayRate,-5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1578,'Book_Of_Prayer','Book Of Prayer',5,20,NULL,0,'140',NULL,1,0,0x00410100,63,2,2,3,'0',0,15,'bonus bVit,2; bonus bMdef,2; bonus bMaxSPrate,10;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (1573,'Ancient_Magic','Ancient Magic',5,20,NULL,700,'30:140',NULL,1,2,0x00410100,63,2,2,3,'70',1,15,'bonus bMdef,8; bonus bMaxSPrate,10; bonus bInt,4;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (1574,'BF_Book1','Brave Battle Strategy Book',5,20,NULL,0,'90:125',NULL,1,0,0x00410100,63,2,2,3,'80',1,15,'bonus bStr,2; bonus bInt,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (1575,'BF_Book2','Valorous Battle Strategy Book',5,20,NULL,0,'90:125',NULL,1,0,0x00410100,63,2,2,3,'80',1,15,'bonus bStr,1; bonus bInt,2; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (1576,'Krieger_Book1','Glorious Tablet',5,20,NULL,0,'90:115',NULL,1,0,0x00410100,63,2,2,4,'80',1,15,'bonus2 bAddRace,RC_DemiHuman,80; bonus2 bAddRace,RC_Player_Human,80; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) autobonus "{ bonus bBaseAtk,200; }",30,3000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }";',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (1577,'Krieger_Book2','Glorious Apocalypse',5,20,NULL,0,'90:115',NULL,1,0,0x00410100,63,2,2,4,'80',1,15,'bonus2 bAddRace,RC_DemiHuman,80; bonus2 bAddRace,RC_Player_Human,80; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5){ bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,5; } if(.@r>8) { bonus bMatkRate,5; bonus bVariableCastrate,-5; bonus bDelayRate,-5; }',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (1578,'Book_Of_Prayer','Book Of Prayer',5,20,NULL,0,'140',NULL,1,0,0x00410100,63,2,2,3,'0',0,15,'bonus bVit,2; bonus bMdef,10; bonus bMaxSPrate,10;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1579,'Death_Note_M','Book of the Dead',5,20,NULL,1000,'137',NULL,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_Human,10; bonus bAspdRate,getrefine(); if(BaseJob==Job_Sage) bonus3 bAutoSpell,"NPC_HELLJUDGEMENT",5,20;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1580,'Encyclopedia_C','Giant Encyclopedia',5,0,NULL,0,'145:100',NULL,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;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1581,'F_Diary_Of_Great_Sage_C','Diary Of Great Sage',5,1,NULL,0,'135',NULL,1,2,0x00410100,63,2,2,3,'1',0,15,'bonus bMatkRate,20; bonus bAspdRate,5;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1582,'E_Diary_Of_Great_Sage_C','Diary Of Great Sage',5,1,NULL,0,'135',NULL,1,2,0x00410100,63,2,2,3,'1',0,15,NULL,NULL,NULL); REPLACE INTO `item_db_re` VALUES (1583,'P_Dic1','Eden Book I',5,0,NULL,0,'135:110',NULL,1,0,0x00410100,63,2,2,3,'60',0,15,NULL,NULL,NULL); REPLACE INTO `item_db_re` VALUES (1584,'Chilly_Spell_Book','Cold Magic Book',5,56000,NULL,1000,'100:160',NULL,1,2,0x00010000,63,2,2,4,'100',1,15,'bonus bAtkEle,Ele_Water; bonus bUnbreakableWeapon; 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);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1585,'Upg_Book','Upg Book',5,20,NULL,600,'45:20',NULL,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);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1586,'Velum_Bible','Vellum Bible',5,20,NULL,600,'110:125',NULL,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; } }',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (1585,'Upg_Book','Upg Book',5,20,NULL,600,'45:20',NULL,1,1,0x00410100,63,2,2,3,'1',1,15,'.@r = getrefine(); bonus bBaseAtk,(.@r*10); bonus bMatk,(.@r*5); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*5);',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (1586,'Velum_Bible','Vellum Bible',5,20,NULL,600,'110:125',NULL,1,0,0x00410100,63,2,2,4,'95',1,15,'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; }',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1587,'Velum_Encyclopedia','Vellum Great Encyclopedia',5,20,NULL,1000,'130',NULL,1,0,0x00410100,63,2,2,4,'95',1,15,'.@r = getrefine(); bonus2 bAddRace,RC_Player_Human,80+.@r; bonus2 bIgnoreDefRaceRate,RC_Player_Human,30; if(.@r>8) { autobonus "{ bonus bBaseAtk,200; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1588,'Metal_Book','Metal Book',5,20,NULL,0,'45:10',NULL,1,1,0x00410100,63,2,2,3,'1',1,15,'.@r = getrefine(); bonus bUnbreakableWeapon; bonus bBaseAtk,(.@r*5); bonus bMatk,(.@r*2); .@i = min(BaseLevel/10,12); if(.@i>2) bonus bBaseAtk,((.@i-2)*5);',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (1588,'Metal_Book','Metal Book',5,20,NULL,0,'45:10',NULL,1,1,0x00410100,63,2,2,3,'1',1,15,'.@r = getrefine(); bonus bBaseAtk,(.@r*5); bonus bMatk,(.@r*2); .@i = min(BaseLevel/10,12); if (BaseLevel>20) { bonus bBaseAtk,((min(BaseLevel,120)-20)/10)*5; }',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1589,'Legacy_Of_Dragon_','Legacy of Dragon',5,20,NULL,700,'130',NULL,1,2,0x00410100,63,2,2,4,'70',1,15,'bonus bInt,3; bonus bIgnoreDefRace,RC_Dragon; bonus2 bSPGainRace,RC_Dragon,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1590,'Snake_Encyclopedia','Daizenshu Dakatsu',5,60000,NULL,1500,'10:110',NULL,1,2,0x00410100,63,2,2,4,'105',1,15,'bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1591,'TE_Woe_Book','TE Woe Book',5,0,NULL,0,'120',NULL,1,0,0x00410100,63,2,2,3,'40',1,15,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bMagicAddRace,RC_Player_Human,5; bonus3 bAddEff,Eff_Blind,1000,ATF_MAGIC; bonus bHPRecovRate,5; bonus bSPRecovRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1596,'Earth_Pedigree_Book','Earth Pedigree Book',5,10,NULL,400,'90:130',NULL,NULL,2,0x050100,63,2,2,NULL,'27',1,15,'.@r = getrefine(); bonus2 bSkillAtk,"WZ_HEAVENDRIVE",5+.@r; bonus2 bSkillAtk,"WZ_EARTHSPIKE",5+.@r; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1597,'Half_BF_Book2','Half BF Book2',5,20,NULL,0,'90:125',NULL,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_Human,35; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (1590,'Snake_Encyclopedia','Daizenshu Dakatsu',5,60000,NULL,1500,'10:110',NULL,1,2,0x00010100,56,2,2,4,'105',1,15,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bBaseAtk,.@r*3; bonus bMatk,.@r*3;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (1591,'TE_Woe_Book','TE Woe Book',5,0,NULL,0,'120',NULL,1,0,0x00410100,63,2,2,3,'40',1,15,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bMagicAddRace,RC_Player_Human,5; bonus2 bAddRace,RC_Player_Doram,40; bonus2 bMagicAddRace,RC_Player_Doram,5; bonus3 bAddEff,Eff_Blind,1000,ATF_MAGIC; bonus bHealPower,5;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (1592,'Thor_Pedigree_Book','Raijin\'s Lineage',5,10,NULL,400,'90:130',NULL,1,2,0x00410100,63,2,2,4,'27',1,15,'.@r = getrefine(); bonus bInt,3; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",5+.@r; bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Wind;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (1593,'Book_of_Destiny','Book of Destiny',5,10,NULL,400,'90:90',NULL,1,1,0x00410100,63,2,2,4,'24',1,15,'.@r = getrefine(); bonus bLuk,5; bonus bFlee2,15; if(.@r >= 7) bonus bFlee2,5; bonus bUnbreakableWeapon;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (1594,'Fire_Pedigree_Book','Fire Pedigree Book',5,10,NULL,400,'90:130',NULL,1,2,0x00410100,63,2,2,4,'27',1,15,'.@r = getrefine(); bonus bInt,3; bonus2 bSkillAtk,"MG_FIREBOLT",5+.@r; bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Fire;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (1595,'Water_Pedigree_Book','Water Pedigree Book',5,10,NULL,400,'90:130',NULL,1,2,0x00410100,63,2,2,4,'27',1,15,'.@r = getrefine(); bonus bInt,3; bonus2 bSkillAtk,"MG_COLDBOLT",5+.@r; bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Water;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (1596,'Earth_Pedigree_Book','Earth Pedigree Book',5,10,NULL,400,'90:130',NULL,1,2,0x00410100,63,2,2,4,'27',1,15,'.@r = getrefine(); bonus bInt,3; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",5+.@r; bonus2 bSkillAtk,"WZ_EARTHSPIKE",5+.@r; bonus bUnbreakableWeapon;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (1597,'Half_BF_Book2','Half BF Book2',5,20,NULL,0,'90:125',NULL,1,0,0x00210100,63,2,2,3,'80',1,15,'bonus bStr,1; bonus bInt,1; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,10;',NULL,NULL); # GM Weapon -REPLACE INTO `item_db_re` VALUES (1599,'Angra_Manyu','Angra Manyu',5,1,NULL,10,'10000:10000',NULL,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;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (1598,'Snake_Encyclopedia_','Daizenshu Dakatsu',5,60000,NULL,1500,'10:110',NULL,1,3,0x00010100,56,2,2,4,'105',1,15,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bBaseAtk,.@r*3; bonus bMatk,.@r*3;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (1599,'Angra_Manyu','Angra Manyu',5,1,NULL,10,'10000:10000',NULL,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; bonus bAspdRate,100;',NULL,NULL); #=================================================================== # 1-Handed Staffs #=================================================================== @@ -1011,7 +1018,7 @@ REPLACE INTO `item_db_re` VALUES (1619,'Survival_Rod2','Survivor\'s Rod',5,85000 REPLACE INTO `item_db_re` VALUES (1620,'Survival_Rod2_','Survivor\'s Rod',5,85000,NULL,1000,'50:120',NULL,1,1,0x00818314,63,2,2,3,'24',1,10,'bonus bInt,3; bonus bMaxHP,400;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1621,'Hypnotist\'s_Staff','Hypnotist\'s Staff',5,43000,NULL,500,'70:120',NULL,1,1,0x00000001,63,2,2,3,'30',1,10,'bonus bInt,1;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1622,'Hypnotist\'s_Staff_','Hypnotist\'s Staff',5,20,NULL,500,'70:120',NULL,1,2,0x00000001,63,2,2,3,'30',1,10,'bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1623,'Mighty_Staff_C','Mighty Staff',5,1,NULL,0,'165:120',NULL,1,0,0x00818314,63,2,2,3,'1',0,10,'bonus bStr,10; bonus bInt,4; bonus bMatkRate,20; bonus bSPDrainValue,-1;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (1623,'Mighty_Staff_C','Mighty Staff',5,1,NULL,0,'165:120',NULL,1,0,0x00818314,63,2,2,3,'1',0,10,'bonus bStr,10; bonus bInt,4; bonus bSPDrainValue,-1;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1624,'Lich_Bone_Wand','Lich\'s Bone Wand',5,20,NULL,800,'60:170',NULL,1,2,0x00018314,18,2,2,3,'70',1,10,'bonus bInt,1; bonus bDex,1; bonus bAtkEle,Ele_Undead; .@r = getrefine(); bonus3 bAutoSpellWhenHit,"NPC_WIDECURSE",5,10+.@r; if(.@r>=9){ bonus bMatkRate,3; bonus bMaxSP,300; }',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1625,'Healing_Staff','Healing Staff',5,20,NULL,400,'10:105',NULL,1,0,0x00008110,63,2,2,3,'55',1,10,'bonus bAtkEle,Ele_Holy; bonus bHealPower,(getrefine()*3/2);',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1626,'Piercing_Staff','Piercing Staff',5,20,NULL,500,'80:145',NULL,1,0,0x00018314,18,2,2,3,'70',1,10,'.@r = getrefine(); bonus bInt,4; bonus2 bIgnoreMdefClassRate,Class_Normal,10+.@r; bonus2 bIgnoreMdefClassRate,Class_Boss,10+.@r;',NULL,NULL); @@ -1052,7 +1059,7 @@ REPLACE INTO `item_db_re` VALUES (1660,'Wand_Of_Affection2','Empowered Wand Of A REPLACE INTO `item_db_re` VALUES (1661,'Mental_Destroyer','Mental Destroyer',5,20,NULL,1400,'100:50',NULL,1,0,0x00000200,63,2,2,4,'95',1,10,'.@r = getrefine(); bonus bInt,10; bonus bUnbreakableWeapon; bonus bUseSPrate,100; bonus bMdef,20; bonus3 bSPVanishRate,1000,5+(.@r>5?3:0),BF_WEAPON|BF_MAGIC|BF_MISC;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1662,'Bone_Wand_','Evil Bone Wand',5,20,NULL,700,'40:110',NULL,1,2,0x00818314,63,2,2,3,'24',1,10,'bonus bInt,4; bonus bAtkEle,Ele_Undead;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1663,'Staff_Of_Bordeaux_','Staff Of Bordeaux',5,20,NULL,500,'30:180',NULL,1,2,0x00010200,18,2,2,4,'50',1,10,'bonus bInt,2; bonus bDex,1; if(getskilllv("SA_DRAGONOLOGY") == 5) { bonus bUseSPrate,-15; bonus bInt,3; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1664,'Thorn_Staff_','Thorn Staff of Darkness',5,10,NULL,700,'60:160',NULL,NULL,1,0x14,50,2,2,4,'75',1,8,'bonus bInt,3; bonus bDex,3; bonus bVariableCastrate,-getrefine(); bonus bAtkEle,Ele_Dark;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (1664,'Thorn_Staff_','Thorn Staff of Darkness',5,10,NULL,700,'60:160',NULL,NULL,1,0x14,50,2,2,4,'75',1,8,'bonus bInt,3; bonus bDex,3; .@r = getrefine(); bonus2 bIgnoreMdefClassRate,Class_Normal,.@r; bonus2 bIgnoreMdefClassRate,Class_Boss,.@r; bonus bDelayrate,-.@r*3/2; bonus bAtkEle,Ele_Dark;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1665,'Piercing_Staff_','Piercing Staff',5,20,NULL,500,'80:145',NULL,1,2,0x00018314,18,2,2,3,'70',1,10,'.@r = getrefine(); bonus bInt,4; bonus2 bIgnoreMdefClassRate,Class_Normal,10+.@r; bonus2 bIgnoreMdefClassRate,Class_Boss,10+.@r;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1666,'Healing_Staff_','Healing Staff',5,20,NULL,400,'10:105',NULL,1,2,0x00008110,63,2,2,3,'55',1,10,'bonus bAtkEle,Ele_Holy; bonus bHealPower,(getrefine()*3/2);',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1667,'TE_Woe_Staff','TE Woe Staff',5,0,NULL,0,'50:100',NULL,1,0,0x00818315,63,2,2,3,'40',1,10,'bonus2 bMagicAddRace,RC_Player_Human,10; bonus3 bAddEff,Eff_Blind,1000,ATF_MAGIC; bonus bHPRecovRate,5; bonus bSPRecovRate,5;',NULL,NULL); @@ -1083,7 +1090,7 @@ REPLACE INTO `item_db_re` VALUES (1694,'Foxtail_Model','Foxtail Model',5,20,NULL REPLACE INTO `item_db_re` VALUES (1695,'Delicate_Foxtail_Model','Delicate Foxtail Model',5,20,NULL,300,'195',NULL,1,2,0x80000000,7,2,2,3,'100',1,10,'bonus bLongAtkRate,8; bonus bMaxHP,200; .@r = getrefine(); bonus bDex,(.@r/3)*3; bonus bMaxSP,(.@r/3)*15; if(.@r>=7){ .@r = min(.@r,10)-7; bonus bWeaponAtkRate,(20*.@r)+40; bonus bWeaponMatkRate,(20*.@r)+40; }',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1696,'Exquisite_Foxtail_Model','Exquisite Foxtail Model',5,20,NULL,300,'240',NULL,1,2,0x80000000,7,2,2,3,'140',1,10,'bonus bLongAtkRate,8; bonus bMaxHPrate,5; .@r = getrefine(); bonus bDex,(.@r/2)*3; bonus bMaxSP,(.@r/2)*15; if(.@r>=7){ .@r = min(.@r,10)-7; bonus bWeaponAtkRate,(20*.@r)+40; bonus bWeaponMatkRate,(20*.@r)+40; }',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1697,'Exquisite_Yellow_Foxtail_Model','Exquisite Yellow Foxtail Model',5,20,NULL,300,'270',NULL,1,1,0x80000000,7,2,2,4,'175',1,10,'bonus bLongAtkRate,9; bonus bMaxHPrate,7; .@r = getrefine(); bonus bLongAtkRate,.@r/2; bonus bMaxSP,(.@r/2)*20; bonus4 bAutoSpellOnSkill,"SU_PICKYPECK","SU_FRESHSHRIMP",max(1,getskilllv("SU_FRESHSHRIMP")),200; if(.@r>=7){ .@r = min(.@r,10)-7; bonus bWeaponAtkRate,(20*.@r)+40; bonus bWeaponMatkRate,(20*.@r)+40; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1698,'Requiem_Arc_Wand','Requiem Arc Wand',5,20,NULL,500,'80:145',NULL,1,NULL,0xFFFFFFFF,63,2,2,4,'100',1,10,'.@r = getrefine(); .@b = 40; if(.@r>=5){ .@b += (.@r-5)*15+20; } bonus2 bMagicAddRace2,RC2_BioLab,.@b;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (1698,'Requiem_Arc_Wand','Requiem Arc Wand',5,20,NULL,500,'80:145',NULL,1,NULL,0x00000015,63,2,2,4,'100',1,10,'.@r = getrefine(); .@b = 40; if(.@r>=5){ .@b += (.@r-5)*15+20; } bonus2 bMagicAddRace2,RC2_BioLab,.@b;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1699,'Paradise_Foxtail_Staff_I','Eden Group Foxtail I',5,20,NULL,0,'120:135',NULL,1,0,0x80000000,7,2,2,2,'26',0,10,'bonus bDex,3; bonus bInt,3; bonus bLongAtkRate,5;',NULL,NULL); #=================================================================== # Bows @@ -1206,7 +1213,7 @@ REPLACE INTO `item_db_re` VALUES (1833,'Claw_Of_Flash','Claw of Flash',5,60000,N REPLACE INTO `item_db_re` VALUES (1834,'TE_Woe_Fist','TE Woe Fist',5,0,NULL,0,'150',NULL,1,0,0x00008100,63,2,2,3,'40',1,12,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Freeze,3000;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1835,'Spartacus','Spartacus',5,0,NULL,600,'100',NULL,1,2,0x00008100,63,2,2,4,'50',1,12,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus2 bAddClass,Class_All,.@r; if(.@r>9) { bonus bNoSizeFix; }',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1836,'Thanos_Knuckle','Thanos Knuckle',5,10,NULL,600,'160:100',NULL,1,1,0x00008000,56,2,2,4,'120',1,12,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000;',NULL,'heal -1000,0;'); -REPLACE INTO `item_db_re` VALUES (1837,'Iron_nail','Iron Nail',5,10,NULL,1500,'100',NULL,NULL,1,0x00008100,63,2,2,3,'50',1,12,'bonus bUnbreakableWeapon; bonus bIgnoreDefClass,Class_All; .@r = (getrefine()/2); bonus bAspdRate,-5+.@r; if(getskilllv("MO_CHAINCOMBO")==5){ bonus bBaseAtk,20; } if(getskilllv("MO_COMBOFINISH")==5){ bonus bBaseAtk,20; } if(getskilllv("CH_TIGERFIST")==5){ bonus bBaseAtk,20; } if(getskilllv("CH_CHAINCRUSH")==5){ bonus bBaseAtk,40; }',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (1837,'Iron_nail','Iron Nail',5,10,NULL,1500,'100',NULL,NULL,1,0x00008100,63,2,2,3,'50',1,12,'bonus bUnbreakableWeapon; bonus bIgnoreDefClass,Class_All; .@r = (getrefine()/2); bonus bAspdRate,-5+.@r; if(getskilllv("MO_CHAINCOMBO")==5){ bonus bBaseAtk,20; } if(getskilllv("MO_COMBOFINISH")==5){ bonus bBaseAtk,20; } if(getskilllv("CH_TIGERFIST")==5){ bonus bBaseAtk,20; } if(getskilllv("CH_CHAINCRUSH")==10){ bonus bBaseAtk,40; }',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1838,'Half_BF_Knuckle1','Half BF Knuckle1',5,20,NULL,0,'30',NULL,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_Human,30; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus4 bAutoSpell,"CH_SOULCOLLECT",1,5,0; bonus bUnbreakableWeapon;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1839,'Crimson_Knuckles','Crimson Knuckles',5,20,NULL,1000,'100',NULL,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;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (1840,'Requiem_Knuckle','Requiem Knuckle',5,20,NULL,500,'150:100',NULL,1,0,0x00008100,63,2,2,4,'100',1,12,'.@r = getrefine(); .@b = 40; if(.@r>=5){ .@b += (.@r-5)*15+20; } bonus2 bAddRace2,RC2_BioLab,.@b;',NULL,NULL); @@ -1346,11 +1353,17 @@ REPLACE INTO `item_db_re` VALUES (2027,'Sunflower_Kid','Sunflower Kid',5,10,NULL REPLACE INTO `item_db_re` VALUES (2030,'Unity_Two-Handed_Staff','Unity Two-Handed Staff',5,20,NULL,500,'95:135',NULL,1,1,0x800200,63,2,34,3,'1',1,23,'bonus bMatk,pow(getrefine(),2)*125/100;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (2032,'Requiem_Wizardry_Staff','Requiem Wizardry Staff',5,20,NULL,500,'100:230',NULL,1,NULL,0xFFFFFFFF,63,2,2,4,'100',1,10,'.@r = getrefine(); .@b = 40; .@c = 5; if(.@r>=5){ .@b += (.@r-5)*15+20; .@c += .@r-5; } bonus2 bMagicAddRace2,RC2_BioLab,.@b; bonus2 bSubRace2,RC2_BioLab,.@c; bonus2 bIgnoreMdefRace2Rate,RC2_BioLab,(.@r-5)*10;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (2039,'Illusion_Wizardry_Staff','Illusion Wizardry Staff',5,0,NULL,2400,'150:250',NULL,1,2,0x00810204,58,2,34,4,'100',1,23,'.@val = min(getrefine(),10)/2; bonus bInt,(6+.@val); bonus bDex,(2+.@val);',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (2046,'Novice_Warlock\'s_Staff','Novice Warlock\'s Staff',0,0,NULL,0,'70:170',NULL,1,1,0x00000200,56,2,34,3,'100',1,23,'bonus bMatkRate,5; .@r = getrefine(); if(.@r>=7){ bonus2 bSkillAtk,"WL_CRIMSONROCK",15; }',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (2048,'Aeon_Staff','Aeon Staff',5,0,NULL,800,'100:200',NULL,1,2,0x00000200,56,2,34,4,'100',1,23,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus2 bSkillAtk,"WL_EARTHSTRAIN",12*(.@r/3); if(.@r>=9){ bonus bVariableCastrate,-10; } if (.@r>=11) { bonus2 bSkillCooldown,"WL_EARTHSTRAIN",-1000; }',NULL,NULL); REPLACE INTO `item_db_re` VALUES (2049,'Blue_Flame_Cane','Blue Flame Cane',5,20,NULL,800,'110:300',NULL,1,2,0x00818314,63,2,34,4,'175',1,23,'.@r = getrefine; bonus bInt,7; bonus bMatkRate,.@r/2; bonus bUnbreakableWeapon; if (.@r>=9) .@val = 15; else if (.@r>=7) .@val = 5; if (.@r>=11) bonus2 bSubSize,Size_All,20; if (.@r>=13) bonus bDelayrate,-15; bonus2 bMagicAtkEle,Ele_Fire,.@val; bonus2 bMagicAtkEle,Ele_Earth,.@val; bonus2 bMagicAtkEle,Ele_Water,.@val; bonus2 bMagicAtkEle,Ele_Holy,.@val;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (2051,'Illusion_Survivor\'s_Staff','Illusion Survivor\'s Staff',5,0,NULL,1200,'100:240',NULL,1,2,0x00818314,63,2,34,4,'120',1,23,'.@r = getrefine(); bonus bDex,2; bonus bInt,2; bonus bMaxHP,600; bonus bUnbreakableWeapon; bonus bMatkRate,(.@r/2); if (.@r >= 7) { bonus2 bMagicAddSize,Size_Small,15; bonus2 bMagicAddSize,Size_Medium,15; if (.@r >= 9) { bonus2 bSubSize,Size_Small,15; bonus2 bSubSize,Size_Medium,15; if (.@r >= 11) { bonus2 bSubDefEle,Ele_Water,15; bonus2 bSubDefEle,Ele_Wind,15; bonus2 bSubDefEle,Ele_Earth,15; bonus2 bSubDefEle,Ele_Fire,15; } } }',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (2053,'Abyss_Staff','Abyss Staff',5,0,NULL,2400,'120:270',NULL,1,1,0x00000301,58,2,34,4,'165',1,23,'bonus2 bSubRace,RC_Player_Human,30; .@r = getrefine(); bonus bHealPower,.@r*2; if(.@r>=7){ bonus2 bMagicAddClass,Class_All,5; bonus2 bSubRace,RC_Player_Human,5; } if(.@r>=9){ bonus2 bMagicAddClass,Class_All,5; bonus2 bSubRace,RC_Player_Human,5; } bonus bUnbreakableWeapon;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (2054,'Sealed_Aeon_Staff','Sealed Aeon Staff',5,0,NULL,0,'100:200',NULL,1,2,0x00000200,56,2,34,4,'99',1,23,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus2 bSkillAtk,"WL_EARTHSTRAIN",12*(.@r/3); if(.@r>=7){ bonus bVariableCastrate,-10; } if(.@r>=9){ bonus2 bSkillCooldown,"WL_EARTHSTRAIN",-1000; }',NULL,NULL); REPLACE INTO `item_db_re` VALUES (2055,'Staff_of_Miracle','Staff of Miracle',5,20,NULL,1200,'100:270',NULL,1,2,0x00000200,56,2,34,4,'170',1,23,'.@r = getrefine(); bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Ghost,5; if (.@r >= 9) { bonus2 bSkillAtk,"MG_SOULSTRIKE",20; bonus2 bSkillAtk,"HW_NAPALMVULCAN",20; bonus2 bSkillAtk,"WL_SOULEXPANSION",20; } if (.@r >= 11) { bonus2 bSkillAtk,"MG_SOULSTRIKE",30; bonus2 bSkillAtk,"HW_NAPALMVULCAN",30; }',NULL,NULL); REPLACE INTO `item_db_re` VALUES (2056,'Gravitation_Staff','Gravitation Staff',5,20,NULL,1300,'110:280',NULL,1,2,0x00000200,56,2,34,4,'170',1,23,'.@r = getrefine(); bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Neutral,5; if (.@r >= 9) { bonus2 bSkillAtk,"HW_GRAVITATION",30; bonus2 bSkillAtk,"WL_DRAINLIFE",30; } if (.@r >= 11) { bonus2 bSkillCooldown,"HW_GRAVITATION",-2000; }',NULL,NULL); REPLACE INTO `item_db_re` VALUES (2057,'Adorare_Staff','Adorare Staff',5,20,NULL,1200,'100:240',NULL,1,2,0x00000100,56,2,34,4,'170',1,23,'.@r = getrefine(); bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Holy,5; if (.@r >= 9) { bonus2 bSkillAtk,"AB_ADORAMUS",30; } if (.@r >= 11) { bonus2 bSubSize,Size_All,25; }',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (2058,'Detecting_Staff','Detecting Staff',5,0,NULL,2000,'180:330',NULL,1,2,0x00000100,56,2,34,4,'170',1,23,'.@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,10; if (.@r >= 7) { bonus bMatk,60; bonus bVariableCastrate,-10; } if (.@r >= 9) { bonus2 bMagicAtkEle,Ele_Fire,15; autobonus "{ bonus2 bMagicAddSize,Size_All,20; }",10,10000,BF_MAGIC; } if (.@r >= 11) { bonus bDelayrate,-20; }',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (2060,'Royal_Magician_Staff','Royal Magician Staff',5,0,NULL,1500,'100:270',NULL,1,2,0x00000100,56,2,34,4,'170',1,23,'.@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,5; bonus bMatk,5*.@r; if (.@r >= 9) { bonus2 bSkillAtk,"WL_CHAINLIGHTNING",20; bonus2 bSkillAtk,"WL_EARTHSTRAIN",20; } if (.@r >= 11) { bonus2 bMagicAddRace,RC_Undead,20; bonus2 bMagicAddRace,RC_Angel,20; }',NULL,NULL); #=================================================================== # Shields #=================================================================== @@ -1410,7 +1423,7 @@ REPLACE INTO `item_db_re` VALUES (2153,'Imperial_Guard','Imperial Guard',4,20,NU REPLACE INTO `item_db_re` VALUES (2154,'Toy_Shield','Toy Shield',4,0,NULL,500,NULL,1,NULL,1,0xFFFFFFFF,63,2,32,NULL,'10',1,1,NULL,NULL,NULL); REPLACE INTO `item_db_re` VALUES (2155,'Academy_Shield','Academy Shield',4,0,NULL,1500,NULL,3,NULL,1,0xFFFFFFFE,63,2,32,NULL,'0',1,4,NULL,NULL,NULL); REPLACE INTO `item_db_re` VALUES (2156,'Bible_Of_Promise1','Bible of Promise(1st Vol.)',4,20,NULL,500,NULL,10,NULL,1,0x00000100,63,2,32,NULL,'110',1,5,'bonus bMdef,2; skill "ALL_ODINS_POWER",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2157,'Insecticide','Pesticide',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,32,NULL,'0',1,3,NULL,NULL,NULL); +REPLACE INTO `item_db_re` VALUES (2157,'Insecticide','Pesticide',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,32,NULL,'0',1,3,'bonus2 bAddRace,RC_Insect,10;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (2158,'Ramor_Shield_Undead','Ramor Shield',4,20,NULL,1300,NULL,50,NULL,1,0xFFFFFFFF,63,2,32,NULL,'65',1,3,'bonus2 bSubDefEle,Ele_Undead,5; bonus2 bMagicSubDefEle,Ele_Undead,5; bonus2 bSubRace,RC_DemiHuman,5;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (2159,'Sharel_Shield','Sharel Shield',4,20,NULL,1300,NULL,50,NULL,1,0xFFFFFFFF,63,2,32,NULL,'65',1,3,'bonus2 bSubDefEle,Ele_Fire,5; bonus2 bMagicSubDefEle,Ele_Fire,5; bonus2 bSubRace,RC_Demon,5;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (2160,'Giant_Shield','Giant Shield',4,56000,NULL,2800,NULL,130,NULL,1,0x00004082,63,2,32,NULL,'100',1,3,'bonus2 bSubSize,Size_Large,5; if(getrefine()>=9){ bonus2 bSubSize,Size_Large,5; }',NULL,NULL); @@ -1440,7 +1453,7 @@ REPLACE INTO `item_db_re` VALUES (2183,'Impr_Angel\'s_Safeguard','Advanced Angel REPLACE INTO `item_db_re` VALUES (2185,'Magic_Reflector','Magic Reflect',4,10,NULL,1000,NULL,50,NULL,1,0xFFFFFFFF,63,2,32,NULL,'99',1,3,'bonus bMdef,10; bonus bMagicDamageReturn,3+((getrefine()>=9) ? 3 : 0);',NULL,NULL); REPLACE INTO `item_db_re` VALUES (2186,'Encyclopedia_Revision','Great Encyclopedia Revision',4,10,NULL,200,'0:5',50,NULL,1,0x00810100,63,2,32,NULL,'99',1,4,'bonus bInt,3; bonus bDex,2; .@r = getrefine(); bonus bCritical,3+((.@r >= 7) ? 2 : 0); if(.@r >= 9) bonus bMatk,5;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (2187,'Shield_Of_Gray','Shield of Gray',4,10,NULL,2000,NULL,75,NULL,1,0xFFFFFFFF,56,2,32,NULL,'120',1,3,'.@r = getrefine(); bonus2 bSubEle,Ele_Holy,30+.@r; bonus bMdef,9+.@r/3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2188,'Svalinn_J','Svalinn',4,10,NULL,500,NULL,80,NULL,1,0xFFFFFFFF,63,2,32,NULL,'65',1,3,'.@r = getrefine(); bonus bMaxHP,9+.@r/3; bonus2 bAddEle,Ele_Water,4+.@r/3*5;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (2188,'Svalinn_J','Svalinn',4,10,NULL,500,NULL,80,NULL,1,0xFFFFFFFF,63,2,32,NULL,'65',1,3,'.@r = getrefine(); bonus2 bSubEle,Ele_Water,10; bonus bMaxHPrate,1*(.@r/3); bonus2 bSubEle,Ele_Water,5*(.@r/3); bonus bMdef,5;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (2189,'Mad_Bunny','Mad Bunny Shield',4,10,NULL,100,NULL,40,NULL,1,0xFFFFFFFF,63,2,32,NULL,'30',1,6,'bonus2 bSubEle,Ele_All,5; bonus bMdef,6; bonus bDex,1;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (2190,'Ancient_Shield_Of_Aeon','Ancient Shield Of Aeon',4,0,NULL,200,NULL,5,NULL,0,0x000FDF80,63,2,32,NULL,'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;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (2195,'Lian_Shield','Lian Shield',4,0,NULL,1300,NULL,50,NULL,1,0xFFFFFFFF,63,2,32,NULL,'65',1,3,'bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubRace,RC_Formless,-5;',NULL,NULL); @@ -1949,7 +1962,7 @@ REPLACE INTO `item_db_re` VALUES (2691,'Necklace_C','Necklace',4,1,NULL,0,NULL,0 REPLACE INTO `item_db_re` VALUES (2692,'Glove_C','Glove',4,1,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'1',0,0,'bonus bDex,4;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (2693,'Brooch_C','Brooch',4,1,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'1',0,0,'bonus bAgi,4; /*Gold PC Room bonus bAllStats,1;*/',NULL,NULL); REPLACE INTO `item_db_re` VALUES (2694,'Rosary_C','Rosary',4,1,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'1',0,0,'bonus bMdef,5; bonus bLuk,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2695,'Safety_Ring_C','Safety Ring',4,1,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'1',0,0,'bonus bMdef,5; bonus bDef,5; /*Gold PC Room bonus bAllStats,1;*/',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (2695,'Safety_Ring_C','Safety Ring',4,1,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'1',0,0,'bonus bMdef,8; bonus bDef,8; /*Gold PC Room bonus bAllStats,1;*/',NULL,NULL); REPLACE INTO `item_db_re` VALUES (2696,'Vesper_Core01_C','Vesper Core 01',4,1,NULL,0,NULL,1,NULL,0,0xFFFFFFFE,63,2,136,NULL,'1',0,0,'bonus bMdef,3; bonus bInt,2; bonus bMaxSPrate,5;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (2697,'Vesper_Core02_C','Vesper Core 02',4,1,NULL,0,NULL,1,NULL,0,0xFFFFFFFE,63,2,136,NULL,'1',0,0,'bonus bMdef,3; bonus bStr,3; bonus bBaseAtk,10;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (2698,'Vesper_Core03_C','Vesper Core 03',4,1,NULL,0,NULL,1,NULL,0,0xFFFFFFFE,63,2,136,NULL,'1',0,0,'bonus bMdef,3; bonus bAgi,3; bonus bFlee,5;',NULL,NULL); @@ -2109,7 +2122,7 @@ REPLACE INTO `item_db_re` VALUES (2851,'E_Necklace_C','Necklace',4,1,NULL,0,NULL REPLACE INTO `item_db_re` VALUES (2852,'E_Rosary_C','Rosary',4,1,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'1',0,0,'bonus bLuk,4; bonus bMdef,5;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (2853,'Telekinetic_Orb','Telekinetic Orb',4,20,NULL,200,NULL,2,NULL,0,0xFFFFFFFE,63,2,136,NULL,'110',0,0,'bonus bMdef,1; bonus bInt,3; bonus bMaxSP,30; bonus2 bSkillAtk,"WL_SOULEXPANSION",10; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",10; bonus2 bSkillUseSP,"WL_SOULEXPANSION",-50; bonus2 bSkillUseSP,"SO_PSYCHIC_WAVE",-50;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (2854,'Alchemy_Glove','Alchemy Glove',4,20,NULL,100,NULL,1,NULL,1,0xFFFFFFFE,63,2,136,NULL,'125',0,0,'bonus bMdef,2; bonus bInt,1; bonus2 bMagicAtkEle,Ele_Fire,10; bonus2 bMagicAtkEle,Ele_Water,-20; bonus2 bSubEle,Ele_Water,-30; bonus3 bAutoSpell,"MG_FIREBALL",5,30; bonus5 bAutoSpell,"MG_FIREBOLT",5,30,BF_MAGIC,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2855,'Whike_Black_Tail','Whike Black Tail',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'45',0,0,'bonus bCritical,7; bonus bAspdRate,3;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (2855,'Whike_Black_Tail','Whike Black Tail',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'45',0,0,'bonus bCriticalRate,7; bonus bAspdRate,3;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (2856,'Half_Megin','Half Megingjard',4,20,NULL,0,NULL,1,NULL,0,0xFFFFFFFF,63,2,136,NULL,'47',0,0,'bonus bMdef,3; bonus bStr,20;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (2857,'Half_Brysing','Half Brisingamen',4,20,NULL,0,NULL,1,NULL,0,0xFFFFFFFF,63,2,136,NULL,'47',0,0,'bonus bStr,3; bonus bInt,5; bonus bVit,3; bonus bDex,3; bonus bAgi,3; bonus bLuk,5; bonus bMdef,2;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (2858,'Pendant_Of_Guardian','Pendant Of Guardian',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'70',0,0,'skill "ALL_GUARDIAN_RECALL",1;',NULL,NULL); @@ -2215,7 +2228,7 @@ REPLACE INTO `item_db_re` VALUES (2976,'Red_Lantern','Red Lantern',4,10,NULL,200 REPLACE INTO `item_db_re` VALUES (2977,'Hurt_Mind','Hurt Mind',4,10,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'110',0,NULL,'bonus bMaxSP,200; skill "DC_SCREAM",3;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (2978,'KindHeart','Kind Heart',4,10,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'110',0,NULL,'bonus bMaxHP,500; bonus2 bHPRegenRate,300,10000;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (2979,'Strawberry_Decoration','Strawberry Decoration',4,20,NULL,500,NULL,1,NULL,1,0xFFFFFFFE,63,2,136,NULL,'1',NULL,NULL,'bonus bAllStats,1; bonus3 bAutoSpellWhenHit,"WZ_FROSTNOVA",3,10; /* Confirm: Frost Nova cast chance */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2980,'Evilspirit_Gloves','Evil Spirit Gloves',4,10,NULL,100,NULL,NULL,NULL,1,0xFFFFFFFF,63,2,136,NULL,'110',NULL,NULL,'bonus bMaxHP,500; bonus bMaxSP,200; skill "PF_SPIDERWEB",1; bonus3 bAutoSpell,"SO_PSYCHIC_WAVE",1,20; bonus5 bAutoSpell,"HW_MAGICPOWER",1,10,BF_MAGIC,0; bonus5 bAutoSpell,"WZ_FROSTNOVA",10,10,BF_WEAPON|BF_MAGIC,0; bonus5 bAutoSpellWhenHit,"DC_SCREAM",1,50,BF_WEAPON|BF_MAGIC,0;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (2980,'Evilspirit_Gloves','Evil Spirit Gloves',4,10,NULL,100,NULL,NULL,NULL,1,0xFFFFFFFF,63,2,136,NULL,'110',NULL,NULL,'bonus bMaxHP,500; bonus bMaxSP,200; skill "PF_SPIDERWEB",1; bonus3 bAutoSpell,"SO_PSYCHIC_WAVE",1,20; bonus5 bAutoSpell,"HW_MAGICPOWER",1,10,BF_MAGIC,0; bonus5 bAutoSpell,"WZ_FROSTNOVA",10,10,BF_MAGIC,0; bonus5 bAutoSpell,"WZ_FROSTNOVA",10,20,BF_WEAPON,0; bonus5 bAutoSpellWhenHit,"DC_SCREAM",1,50,BF_WEAPON|BF_MAGIC,0;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (2981,'RingOfHero','Warrior\'s Ring',4,10,NULL,200,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'160',NULL,NULL,NULL,NULL,NULL); REPLACE INTO `item_db_re` VALUES (2983,'Greed_Brooch','Greed Brooch',4,10,NULL,100,NULL,NULL,NULL,1,0xFFFFFFFF,63,2,136,NULL,'50',NULL,NULL,'bonus2 bHPLossRate,10,5000;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (2984,'Glove_Save_Rimnil','Glove Save Rimnil',4,10,NULL,100,NULL,NULL,NULL,1,0xFFFFFFFF,63,2,136,NULL,'30',NULL,NULL,'bonus2 bExpAddRace,RC_All,5; bonus2 bSubRace,RC_All,-5;',NULL,NULL); @@ -3161,7 +3174,7 @@ REPLACE INTO `item_db_re` VALUES (4938,'ATK_SMALL1','Attack small1',6,20,NULL,10 REPLACE INTO `item_db_re` VALUES (4939,'Critical2','CRI Lv2',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bCritical,2;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (4940,'Critical3','CRI Lv3',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bCritical,4;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (4941,'Critical4','CRI Lv4',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bCritical,6;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4942,'Dodge1','Parrying Lv1',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bFlee2,2;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (4942,'Dodge1','Parrying Lv1',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bFlee2,3;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (4943,'Dodge2','Parrying Lv2',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bFlee2,4;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (4944,'Dodge3','Parrying Lv3',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bFlee2,5;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (4945,'Thrift1','Economy Lv1',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bUseSPrate,-2;',NULL,NULL); @@ -7380,32 +7393,32 @@ REPLACE INTO `item_db_re` VALUES (13032,'Mail_Breaker_','Mailbreaker',5,20,NULL, REPLACE INTO `item_db_re` VALUES (13033,'Assasin_Dagger_','Assassin Dagger',5,20,NULL,600,'140',NULL,1,1,0x00001000,63,2,2,4,'36',1,1,'bonus bMaxHPrate,20; bonus bMaxSPrate,15; bonus bAspdRate,2; bonus bAtkEle,Ele_Dark;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (13034,'Twilight_Desert','Desert Twilight',5,20,NULL,600,'130',NULL,1,2,0x00001000,18,2,2,2,'70',1,1,NULL,NULL,NULL); REPLACE INTO `item_db_re` VALUES (13035,'Sandstorm','Sandstorm',5,20,NULL,600,'50',NULL,1,4,0x00001000,18,2,2,2,'70',1,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13036,'BF_Dagger1','Brave Assassin\'s Damascus',5,20,NULL,0,'120:90',NULL,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_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(Class==Job_Ninja||Class==Job_Rogue||Class==Job_Stalker) bonus bMatkRate,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13037,'BF_Dagger2','Valorous Assassin\'s Damascus',5,20,NULL,0,'120:90',NULL,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_Human,75; bonus bUnbreakableWeapon; 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;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (13036,'BF_Dagger1','Brave Assassin\'s Damascus',5,20,NULL,0,'120',NULL,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_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(Class==Job_Ninja||Class==Job_Rogue||Class==Job_Stalker) bonus bMatk,90;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (13037,'BF_Dagger2','Valorous Assassin\'s Damascus',5,20,NULL,0,'120',NULL,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_Human,75; bonus bUnbreakableWeapon; autobonus "{ bonus bDefRatioAtkClass,Class_All; }",10,6000,BF_WEAPON,"{ specialeffect2 EF_HASTEUP; }"; if(Class==Job_Ninja||Class==Job_Rogue||Class==Job_Stalker) bonus bMatk,90;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (13038,'Dagger_Of_Hunter','Dagger of Hunter',5,20,NULL,700,'120',NULL,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;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (13039,'Ivory_Knife','Ivory Knife',5,20,NULL,700,'130',NULL,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;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (13040,'N_Cutter','Novice Cutter',5,0,NULL,0,'50',NULL,1,3,0x3E9F7EEF,63,2,2,1,'1',0,1,NULL,NULL,NULL); REPLACE INTO `item_db_re` VALUES (13041,'N_Main_Gauche','Novice Main Gauche',5,0,NULL,0,'63',NULL,1,3,0x3E9F7EEF,63,2,2,1,'1',0,1,NULL,NULL,NULL); REPLACE INTO `item_db_re` VALUES (13042,'Krieger_Dagger1','Glorious Gladius',5,20,NULL,0,'120',NULL,1,0,0x3E9F7EEF,63,2,2,4,'80',1,1,'bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus3 bAutoSpell,"PR_LEXDIVINA",1,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) bonus4 bAutoSpellOnSkill,"RG_RAID","NPC_WIDEBLEEDING",1,250;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13043,'Fortune_Sword_I','Fortune Sword',5,0,NULL,0,'120',NULL,1,0,0x028F5EEE,63,2,2,4,'0',0,1,'bonus bLuk,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13044,'House_Auger_I','Ice Pick',5,0,NULL,0,'105',NULL,1,0,0x028F5EEE,63,2,2,4,'0',0,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13045,'Kamaitachi_I','Kamaitachi',5,0,NULL,0,'155',NULL,2,0,0x02000000,63,2,2,4,'0',0,1,'bonus bAtkEle,Ele_Wind;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (13043,'Fortune_Sword_I','Fortune Sword',5,0,NULL,0,'120',NULL,1,0,0x028F5EEE,63,2,2,4,'0',0,1,'bonus bFlee2,20; bonus bLuk,5;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (13044,'House_Auger_I','Ice Pick',5,0,NULL,0,'105',NULL,1,0,0x028F5EEE,63,2,2,4,'0',0,1,'bonus bDefRatioAtkClass,Class_All; autobonus "{ bonus bFlee,20; }",10,10000,BF_WEAPON|BF_MISC;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (13045,'Kamaitachi_I','Kamaitachi',5,0,NULL,0,'155',NULL,2,0,0x02000000,63,2,2,4,'0',0,1,'bonus bUnbreakableWeapon; bonus bCritical,10; bonus bAspdRate,5; bonus bAtkEle,Ele_Wind;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (13046,'Krieg','Krierg',5,20,NULL,500,'110',NULL,1,3,0x00021040,18,2,2,2,'50',1,1,'bonus3 bAddEffOnSkill,"RG_BACKSTAP",Eff_Bleeding,1000; bonus2 bSkillAtk,"RG_BACKSTAP",15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13047,'Weihna','Weihna',5,20,NULL,500,'135',NULL,1,2,0x00021040,18,2,2,3,'50',1,1,'autobonus "{ bonus2 bAddClass,Class_All,10; }",5,5000,BF_WEAPON|BF_SHORT,"{ specialeffect2 EF_POTION_BERSERK; }";',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (13047,'Weihna','Weihna',5,20,NULL,500,'135',NULL,1,2,0x00021040,18,2,2,3,'50',1,1,'bonus3 bAddEffOnSkill,"RG_RAID",Eff_Poison,100; autobonus "{ bonus2 bAddClass,Class_All,10; }",5,5000,BF_WEAPON|BF_SHORT,"{ specialeffect2 EF_POTION_BERSERK; }";',NULL,NULL); REPLACE INTO `item_db_re` VALUES (13048,'Damascus_C','Damascus',5,0,NULL,0,'153',NULL,1,0,0x028F5EEE,63,2,2,3,'1',0,1,'bonus2 bAddSize,Size_All,40;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13049,'Lacma','Lacma',5,20,NULL,650,'45',NULL,1,1,0x3E9F7EEF,63,2,2,3,'1',1,1,NULL,NULL,NULL); +REPLACE INTO `item_db_re` VALUES (13049,'Lacma','Lacma',5,20,NULL,650,'45',NULL,1,1,0x3E9F7EEF,63,2,2,3,'1',1,1,'.@r = getrefine(); if (.@r>=3) { bonus bBaseAtk,40; bonus bMatk,40; } if(.@r>=6){ bonus2 bAddSize,Size_Medium,8; bonus2 bMagicAddSize,Size_Medium,8; autobonus "{ bonus bNoSizeFix; }",10,5000; } if(.@r>=9){ bonus2 bAddSize,Size_Medium,20; bonus2 bMagicAddSize,Size_Medium,20; } if(.@r>12){ bonus bNoSizeFix; }',NULL,NULL); REPLACE INTO `item_db_re` VALUES (13050,'P_Dagger1','Eden Dagger I',5,0,NULL,0,'124:60',NULL,1,0,0x3E9F7EEF,63,2,2,2,'26',0,1,NULL,NULL,NULL); REPLACE INTO `item_db_re` VALUES (13051,'P_Dagger2','Eden Dagger II',5,0,NULL,0,'158:70',NULL,1,0,0x3E9F7EEF,63,2,2,2,'40',0,1,NULL,NULL,NULL); REPLACE INTO `item_db_re` VALUES (13052,'Tourist_Dagger','Tourist Dagger',5,0,NULL,500,'51',NULL,1,0,0x3E9F7EEF,63,2,2,1,'1',0,1,'bonus bAgi,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13053,'F_Moonlight_Sword_C','Moonlight Sword',5,2,NULL,0,'85',NULL,1,0,0x028F5EEE,63,2,2,4,'0',0,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13054,'F_Combat_Knife_C','Combat Knife',5,1,NULL,0,'129',NULL,1,0,0x028F5EEE,63,2,2,4,'1',0,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13055,'F_Asura_C','Asura',5,1,NULL,0,'120',NULL,1,0,0x02000000,63,2,2,1,'1',0,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13056,'F_Counter_Dagger_C','Counter Dagger',5,1,NULL,0,'209',NULL,1,0,0x00810204,63,2,2,4,'1',0,1,NULL,NULL,NULL); +REPLACE INTO `item_db_re` VALUES (13053,'F_Moonlight_Sword_C','Moonlight Sword',5,2,NULL,0,'85',NULL,1,0,0x028F5EEE,63,2,2,4,'0',0,1,'bonus bSPDrainValue,3; bonus bMaxSPrate,10;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (13054,'F_Combat_Knife_C','Combat Knife',5,1,NULL,0,'129',NULL,1,0,0x028F5EEE,63,2,2,4,'1',0,1,'bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus bSPDrainValue,3; bonus bMaxSPrate,10;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (13055,'F_Asura_C','Asura',5,1,NULL,0,'120',NULL,1,0,0x02000000,63,2,2,1,'1',0,1,'bonus bMatkRate,15;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (13056,'F_Counter_Dagger_C','Counter Dagger',5,1,NULL,0,'209',NULL,1,0,0x00810204,63,2,2,4,'1',0,1,'bonus bCriticalRate,90;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (13057,'E_Moonlight_Sword_C','Moonlight Sword',5,2,NULL,0,'85',NULL,1,0,0x028F5EEE,63,2,2,4,'0',0,1,NULL,NULL,NULL); REPLACE INTO `item_db_re` VALUES (13058,'E_Combat_Knife_C','Combat Knife',5,1,NULL,0,'129',NULL,1,0,0x028F5EEE,63,2,2,4,'1',0,1,NULL,NULL,NULL); REPLACE INTO `item_db_re` VALUES (13059,'E_Asura_C','Asura',5,1,NULL,0,'120',NULL,1,0,0x02000000,63,2,2,1,'1',0,1,NULL,NULL,NULL); REPLACE INTO `item_db_re` VALUES (13060,'E_Counter_Dagger_C','Counter Dagger',5,1,NULL,0,'209',NULL,1,0,0x00810204,63,2,2,4,'1',0,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13061,'Black_Wing','Black Wing',5,20,NULL,600,'142',NULL,1,1,0x00020000,63,2,2,3,'102',1,1,'.@r = getrefine(); bonus2 bSkillAtk,"SC_FATALMENACE",30+(.@r*2); bonus bMatkRate,(.@r*3);',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (13061,'Black_Wing','Black Wing',5,20,NULL,600,'142',NULL,1,1,0x00020000,63,2,2,3,'102',1,1,'.@r = getrefine(); bonus2 bSkillAtk,"SC_FATALMENACE",30; if(.@r>=6){ bonus2 bSkillAtk,"SC_FATALMENACE",.@r*2; bonus bMatkRate,(.@r*3); }',NULL,NULL); REPLACE INTO `item_db_re` VALUES (13062,'Ancient_Dagger','Ancient Dagger',5,20,NULL,600,'107:120',NULL,0,0,0x028F5EEE,18,2,2,4,'120',1,1,'bonus bMaxSP,100; bonus bSPrecovRate,5; bonus2 bAddEff2,Eff_Curse,20; bonus3 bAddEff,Eff_Curse,20,ATF_SELF;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (13063,'Adventure_Knife','Adventure Knife',5,0,NULL,0,'60',NULL,1,0,0x02021040,63,2,2,1,'1',0,1,'bonus bUnbreakableWeapon;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (13064,'Academy_Knife','Academy Knife',5,0,NULL,700,'110',NULL,1,1,0x02021040,63,2,2,1,'1',1,1,'bonus bUnbreakableWeapon;',NULL,NULL); @@ -7417,27 +7430,27 @@ REPLACE INTO `item_db_re` VALUES (13069,'Aztoe_Nail','As-nail',5,56000,NULL,500, REPLACE INTO `item_db_re` VALUES (13070,'Scarletto_Nail','Scarlet-nail',5,56000,NULL,500,'160:80',NULL,1,0,0x000654E2,63,2,2,4,'110',1,1,'bonus bAtkEle,Ele_Fire; bonus2 bAddEff,Eff_Stone,100+(getrefine()*50);',NULL,NULL); REPLACE INTO `item_db_re` VALUES (13071,'Upg_Dagger','Upg Dagger',5,20,NULL,600,'55',NULL,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);',NULL,NULL); REPLACE INTO `item_db_re` VALUES (13072,'Velum_Damascus','Vellum Damascus',5,20,NULL,1000,'180',NULL,1,0,0x3E9F7EEF,63,2,2,4,'95',1,1,'bonus4 bSetDefRace,RC_Player_Human,10000,5000,1; bonus4 bSetMDefRace,RC_Player_Human,10000,5000,1; bonus bAspdRate,getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13073,'Counter_Dagger_','Counter Dagger',5,120000,NULL,550,'140',NULL,1,1,0x00810204,63,2,2,4,'55',1,1,NULL,NULL,NULL); +REPLACE INTO `item_db_re` VALUES (13073,'Counter_Dagger_','Counter Dagger',5,120000,NULL,550,'140',NULL,1,1,0x00810204,63,2,2,4,'55',1,1,'bonus bCritical,90;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (13074,'Ninja_Cutter','Ninja Sword Prototype',5,0,NULL,0,'0',NULL,1,0,0x02000000,63,2,2,4,'99',1,1,NULL,NULL,NULL); REPLACE INTO `item_db_re` VALUES (13075,'Kurenai','Kurenai',5,5000,NULL,700,'130',NULL,1,0,0x02000000,63,2,2,3,'99',1,1,'bonus bInt,3;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (13076,'Raksasa_Dagger','Nachal Sword',5,40000,NULL,600,'120:100',NULL,1,1,0x02000000,63,2,2,3,'110',1,1,'bonus bInt,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13077,'Kagekiri','Kagekiri',5,40000,NULL,600,'50:120',NULL,1,0,74,7,2,2,4,'100',1,1,NULL,NULL,NULL); +REPLACE INTO `item_db_re` VALUES (13077,'Kagekiri','Kagekiri',5,40000,NULL,600,'50:120',NULL,1,0,0x02000000,7,2,2,4,'100',1,1,NULL,NULL,NULL); REPLACE INTO `item_db_re` VALUES (13078,'Mikatsuki','Mikacheuki',5,40000,NULL,600,'50:120',NULL,1,1,0x02000000,63,2,2,4,'100',1,1,'bonus bUseSPrate,-5; bonus bVariableCastrate,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13079,'Metal_Dagger','Metal Dagger',5,20,NULL,0,'55',0,NULL,1,0x02021040,63,2,2,3,'1',1,1,'.@r = getrefine(); bonus bBaseAtk,(.@r*5); bonus bMatk,(.@r*2); .@i = min(BaseLevel/10,12); if(.@i>2) bonus bBaseAtk,((.@i-2)*5);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13081,'Octo_kitchen_Knife','Discount knife Octopus',5,200000,NULL,700,'140',0,NULL,3,0x228F5EEE,63,2,2,4,'105',1,1,NULL,NULL,NULL); +REPLACE INTO `item_db_re` VALUES (13079,'Metal_Dagger','Metal Dagger',5,20,NULL,0,'55',0,NULL,1,0x02821269,63,2,2,3,'1',1,1,'.@r = getrefine(); bonus bBaseAtk,(.@r*5); bonus bMatk,(.@r*2); .@i = min(BaseLevel/10,12); if(.@i>2) bonus bBaseAtk,((.@i-2)*5);',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (13081,'Octo_kitchen_Knife','Discount knife Octopus',5,200000,NULL,700,'140',0,NULL,3,0x228F5EEE,63,2,2,4,'105',1,1,'.@r = getrefine(); bonus bHit,.@r;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (13083,'TE_Woe_Knife','TE Woe Knife',5,0,NULL,0,'100:100',NULL,1,0,0x3E9F7EEF,63,2,2,3,'40',1,1,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Silence,3000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13085,'Volcano_Knife','Volcano Knife',5,10,NULL,200,'80',NULL,NULL,0,0x280002E,63,2,2,4,'60',NULL,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; }',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (13085,'Volcano_Knife','Volcano Knife',5,10,NULL,200,'80',NULL,NULL,0,0x280002E,63,2,2,4,'60',NULL,1,'bonus bAtkEle,Ele_Fire; bonus bAgi,2; bonus bMaxHPrate,-2; bonus2 bSubEle,Ele_Fire,2; bonus2 bSubEle,Ele_Water,-5; .@r = getrefine(); if(.@r>=7){ bonus bMaxHPrate,.@r-6; bonus2 bSubEle,Ele_Fire,3; }',NULL,NULL); REPLACE INTO `item_db_re` VALUES (13086,'Goldsmithing_Dagger','Goldsmithing Dagger',5,20,NULL,500,'35:25',NULL,1,0,0x028756E6,63,2,2,1,'1',1,1,NULL,NULL,NULL); REPLACE INTO `item_db_re` VALUES (13088,'Greater_Lease','Greater Lease',5,10,NULL,500,'110:50',NULL,NULL,1,0x280006E,63,2,2,4,'30',1,1,'.@r = getrefine(); if (.@r >= 5) bonus bMatk,30; if (.@r >= 7) bonus bMatk,40; if (.@r >= 9) bonus bMatk,50;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (13089,'FaceWorm_Leg','Faceworm Leg',5,20,NULL,500,'110:50',NULL,1,1,0x028F5EEF,63,2,2,3,'24',1,1,'bonus bAtkEle,Ele_Poison; autobonus "{}",30,5000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; active_transform 2528,5000; }";',NULL,NULL); REPLACE INTO `item_db_re` VALUES (13090,'FaceWormQueen_Leg','Faceworm Queen Leg',5,20,NULL,500,'180:120',NULL,1,2,0x028F5EEF,63,2,2,4,'100',1,1,'bonus bInt,3; autobonus "{ bonus3 bAutoSpell,\\\"NPC_EARTHQUAKE\\\",1,200; }",8,5000,BF_NORMAL,"{ specialeffect2 EF_POTION_BERSERK; active_transform 2529,5000; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (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; }',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (13092,'RWC_Memory_Knife','RWC Memory Knife',5,20,NULL,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; }',NULL,NULL); REPLACE INTO `item_db_re` VALUES (13093,'Thanos_Dagger','Thanos Dagger',5,10,NULL,800,'100:130',NULL,1,1,0x000E5CEA,56,2,2,4,'120',1,1,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000;',NULL,'heal -1000,0;'); -REPLACE INTO `item_db_re` VALUES (13094,'Devil_Pierced_Dagger','Evil Slayer Stabber Dagger',5,0,NULL,900,'120',NULL,1,1,0x3E9F7EEF,63,2,2,3,'100',1,1,'bonus2 bAddRace,RC_Undead,10; .@r = getrefine(); if(.@r>=9) { .@dmg = 5; if(.@r>=12) { .@dmg += 7; } bonus2 bAddClass,Class_All,.@dmg; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13096,'Half_BF_Dagger2','Half BF Dagger2',5,20,NULL,0,'120:90',NULL,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_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon; 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;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (13094,'Devil_Pierced_Dagger','Evil Slayer Stabber Dagger',5,0,NULL,900,'120',NULL,1,1,0x3E9F7EEF,63,2,2,3,'100',1,1,'bonus2 bAddRace,RC_Undead,10; bonus2 bAddRace,RC_Demon,10; .@r = getrefine(); if(.@r>=9) { .@dmg = 5; if(.@r>=12) { .@dmg += 7; } bonus2 bAddClass,Class_All,.@dmg; }',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (13096,'Half_BF_Dagger2','Half BF Dagger2',5,20,NULL,0,'120',NULL,1,0,0x3E9F7EEF,63,2,2,3,'1',1,1,'bonus bStr,1; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon; 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;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (13097,'Ru_Blue_Dagger','Blue Dagger',5,10,NULL,1000,'160',NULL,1,1,0x00020000,56,2,2,3,'100',1,1,'bonus bStr,5; bonus bInt,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13098,'Ru_Blue_Ashura','Blue Ashura',5,10,NULL,1000,'150:120',NULL,1,1,0x02000000,7,2,2,3,'100',1,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13099,'Ru_Blue_Knife','Blue Knife',5,10,NULL,500,'160',NULL,1,1,0x00010000,56,2,2,3,'100',1,1,'bonus bStr,5; bonus bInt,5;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (13098,'Ru_Blue_Ashura','Blue Ashura',5,10,NULL,1000,'150:150',NULL,1,1,0x02000000,7,2,2,3,'100',1,1,NULL,NULL,NULL); +REPLACE INTO `item_db_re` VALUES (13099,'Ru_Blue_Knife','Blue Knife',5,10,NULL,500,'160',NULL,1,1,0x00010000,56,2,2,3,'100',1,1,'bonus bVit,5; bonus bInt,5;',NULL,NULL); #=================================================================== # Guns #=================================================================== @@ -8938,6 +8951,7 @@ REPLACE INTO `item_db_re` VALUES (15204,'Abyss_Dress','Abyss Dress',4,10,NULL,40 REPLACE INTO `item_db_re` VALUES (15205,'Medical_Scrubs','Medical Scrubs',4,20,NULL,1000,NULL,50,NULL,1,0xFFFFFFFF,63,2,16,NULL,'100',1,NULL,'.@r = getrefine(); bonus bMdef,10; bonus bDelayrate,-10; .@val = 1; if (.@r >= 7) { .@def = 50; bonus bUnbreakableArmor,1; .@val += 2; if (.@r >= 8) { .@def += 100; .@val += 3; bonus2 bSubRace,RC_DemiHuman,7; bonus2 bSubRace,RC_Player_Human,7; if (.@r >= 9) { .@def += 150; .@val += 4; bonus2 bResEff,Eff_Stone,5000; } } bonus bDef,.@def; } bonus bHealPower,2*.@val; bonus bHealPower2,.@val; bonus bAddItemHealRate,.@val;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (15209,'Drake_Coat','Drake Coat',4,20,NULL,1200,NULL,60,NULL,1,0xFFFFFFFF,63,2,16,NULL,'100',1,0,'.@r = getrefine(); bonus bMaxHP,500; bonus bMaxSP,50; bonus bMdef,10; bonus2 bAddClass,Class_All,3; if (.@r>=7) { bonus bMaxHP,1000; bonus bMaxSP,100; bonus2 bAddClass,Class_All,3; } if (.@r>=9) { bonus bMaxHP,1500; bonus bMaxSP,150; bonus2 bAddClass,Class_All,4; bonus bNoSizeFix; }',NULL,NULL); REPLACE INTO `item_db_re` VALUES (15212,'YSF01_Plate','YSF01 Plate',4,0,NULL,2100,NULL,78,NULL,1,0xFFFFFFFF,63,2,16,NULL,'170',1,0,'.@r = getrefine(); if (.@r >= 13) { .@val = 11; } else if (.@r >= 11) { .@val = 7; } else if (.@r >= 8) { .@val = 5; } if (readparam(bStr) >= 125) { .@val += .@r; } if (.@val) { bonus2 bAddClass,Class_All,.@val; }',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (15250,'Beginner\'s_Suit','Beginner\'s Suit',4,0,NULL,0,NULL,40,NULL,1,0xFFFFFFFF,63,2,16,NULL,'100',0,0,'bonus bAllStats,1; bonus bMaxHP,400; bonus bMaxSP,100; bonus2 bAddClass,Class_All,2; bonus2 bMagicAddClass,Class_All,2;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (15280,'S_Cri_Hit_Armor','Critical Hit Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'.@r = getrefine(); .@val = 7; bonus bBaseAtk,15; if (.@r > 1) { bonus bCritAtkRate,(.@r/2); if (.@r >= 7) { .@val += 7; } } bonus bCritical,.@val;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (15283,'Mighty_Black_Threaded_Armor','Mighty Black Threaded Armor',4,20,NULL,800,NULL,60,NULL,1,0xFFFFFFFF,63,2,16,NULL,'100',1,0,'.@r = getrefine(); bonus bBaseAtk,10; bonus2 bIgnoreDefClassRate,Class_All,10; if (.@r>=7) { bonus bBaseAtk,20; bonus2 bIgnoreDefClassRate,Class_All,20; } if (.@r>=8) { bonus bBaseAtk,20; bonus2 bIgnoreDefClassRate,Class_All,20; bonus bUnbreakableArmor; } if (.@r>=9) { bonus bBaseAtk,30; bonus2 bIgnoreDefClassRate,Class_All,20; }',NULL,NULL); REPLACE INTO `item_db_re` VALUES (15348,'Illusion_Goibne_Armor','Illusion Goibne Armor',4,0,NULL,3500,NULL,158,NULL,1,0xFFFFFFFE,63,2,16,NULL,'130',1,0,'bonus bMaxHPrate,10; .@r = getrefine(); if (.@r >= 9) { bonus bDef,150; } else if (.@r >= 7) { bonus bDef,50; }',NULL,NULL); @@ -10122,7 +10136,7 @@ REPLACE INTO `item_db_re` VALUES (18930,'Gorilla_Model_Hat','Gorilla Model Hat', REPLACE INTO `item_db_re` VALUES (18931,'Lion_Model_Hat','Lion Model Hat',4,10,NULL,300,NULL,10,NULL,1,0xFFFFFFFF,63,2,256,NULL,'30',1,1067,'.@r = getrefine(); bonus bInt,2+((.@r >= 2 && .@r <= 8) ? 1 : ((.@r > 8) ? (.@r/8): 0)); bonus3 bAutoSpellWhenHit,"WZ_METEOR",5,50;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (18932,'Rhino_Model_Hat','Rhino Model Hat',4,10,NULL,300,NULL,10,NULL,1,0xFFFFFFFF,63,2,256,NULL,'30',1,1068,'.@r = getrefine(); bonus bVit,2+((.@r >= 11) ? (.@r/11) : 0); bonus3 bAutoSpellWhenHit,"WZ_VERMILION",1,50;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (18933,'Mechanical_Plant_Hat','Mechanical Plant Hat',4,20,NULL,500,NULL,10,NULL,1,0xFFFFFFFF,63,2,256,NULL,'45',1,1069,'.@r = getrefine()/2; bonus bDex,2; bonus bMdef,7; bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",5+(5*.@r);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18934,'Fox_Ears_Bell_Ribbon','Fox Ears Bell Ribbon',4,0,NULL,400,NULL,4,NULL,1,0xFFFFFFFF,63,2,256,NULL,'50',1,1070,'bonus bAgi,2; bonus bAspdRate,10; .@r = getrefine(); autobonus "{ .@i = .@r-6; bonus bCritical,100; bonus bLongAtkRate,5+(.@r > 6 ? .@i : 0); }",50+(.@r*2),5000,BF_NORMAL,"{ active_transform 1150,5000; }";',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (18934,'Fox_Ears_Bell_Ribbon','Fox Ears Bell Ribbon',4,0,NULL,400,NULL,4,NULL,1,0xFFFFFFFF,63,2,256,NULL,'50',1,1070,'bonus bAgi,2; bonus bAspdRate,10; .@r = getrefine(); autobonus "{ bonus bCritical,100; bonus bLongAtkRate,5+max(0,getrefine()-6); }",50+(.@r*2),5000,BF_NORMAL,"{ active_transform 1150,5000; }";',NULL,NULL); REPLACE INTO `item_db_re` VALUES (18936,'Golden_Fish','Golden Fish In Mouth',4,1,NULL,10,NULL,1,NULL,0,0xFFFFFFFF,63,2,1,NULL,'1',0,1081,'bonus bAllStats,2; bonus bBaseAtk,10; bonus bMatk,10; bonus2 bExpAddRace,RC_Fish,2; bonus2 bSubRace,RC_Fish,2;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (18937,'Memories_Of_Lovers','Memories Of Lovers',4,0,NULL,100,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,512,NULL,NULL,1,1072,'bonus bMdef,7; bonus bMaxHPrate,2;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (18938,'Astro_Circle','Astro Circle',4,0,NULL,300,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'70',1,1073,'bonus bInt,1; .@r = getrefine(); if(.@r>6){ .@t = ((.@r-6)*2); } bonus2 bSubSkill,"WZ_METEOR",20+.@t; bonus2 bSubSkill,"WL_CRIMSONROCK",20+.@t; bonus2 bSubSkill,"WL_COMET",5; bonus2 bSkillAtk,"WZ_METEOR",(.@r/3)*5; bonus2 bSkillAtk,"WL_CRIMSONROCK",(.@r/3)*5;',NULL,NULL); @@ -10274,6 +10288,7 @@ REPLACE INTO `item_db_re` VALUES (19291,'C_Shiba_Inu','Costume Shiba Inu',4,0,NU REPLACE INTO `item_db_re` VALUES (19294,'C_CatEars_Cyber_HeadP_R','Costume Cyber Cat Ear Headphones (Red)',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1668,NULL,NULL,NULL); REPLACE INTO `item_db_re` VALUES (19299,'Tree_Sprout','Tree Sprout',4,20,NULL,300,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'80',0,848,'bonus bVariableCastrate,-5;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (19306,'Gambler_Card','Heart Card in Mouth',4,20,NULL,300,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'80',0,1679,'bonus bCritAtkRate,5;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (19310,'Beginner\'s_Cap','Beginner\'s Cap',4,20,NULL,0,NULL,10,NULL,0,0xFFFFFFFF,63,2,256,NULL,'100',0,102,'bonus bAllStats,1; bonus MaxHp,200;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (19326,'Book_of_Soyga','Book of Soyga',4,20,NULL,1000,NULL,0,NULL,1,0xFFFFFFFF,63,2,256,NULL,'90',1,423,NULL,NULL,NULL); REPLACE INTO `item_db_re` VALUES (19327,'Seraphim_Feather','Seraphim Feather',4,20,NULL,300,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'80',0,1704,'bonus bHealPower,5;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (19329,'Devil\'s_Hand','Devil\'s Hand',4,10,NULL,1000,NULL,18,NULL,0,0xFFFFFFFF,63,2,256,NULL,'100',1,1018,'.@r = getrefine(); .@a = getskilllv("SR_RIDEINLIGHTNING"); .@b = getskilllv("SR_EARTHSHAKER"); .@c = getskilllv("SR_RAMPAGEBLASTER"); bonus bNoCastCancel; bonus bAspdRate,10; bonus2 bFixedCastrate,"SR_HOWLINGOFLION",-100; bonus2 bSkillAtk,"SR_HOWLINGOFLION",20; if (.@r>=7) { bonus2 bSkillAtk,"SR_HOWLINGOFLION",30; bonus bAspdRate,5; } if (.@r>=9) { bonus2 bSkillAtk,"SR_HOWLINGOFLION",50; bonus bAspdRate,5; } if (.@r>=10) bonus bIgnoreDefClass,Class_All; if (.@r>=10 && .@a==5) { bonus2 bVariableCastrate,"SR_HOWLINGOFLION",-50; bonus2 bVariableCastrate,"MO_STEELBODY",-50; bonus2 bVariableCastrate,"MO_CALLSPIRITS",-50; } if (.@r>=10 && .@b==5) bonus2 bSkillCooldown,"SR_HOWLINGOFLION",-9500; if (.@r>=10 && .@c==5) bonus2 bAddClass,Class_Boss,50;',NULL,NULL); @@ -10293,6 +10308,7 @@ REPLACE INTO `item_db_re` VALUES (19407,'Work_Cap','Work Cap',4,200,NULL,1000,NU REPLACE INTO `item_db_re` VALUES (19409,'Black_Feather_Hat','Black Feather Hat',4,20,NULL,1000,NULL,18,NULL,0,0xFFFFFFFF,63,2,256,NULL,'100',1,731,'.@r = getrefine(); bonus bSPGainValue,50; bonus bLongSPGainValue,50; bonus bMagicSPGainValue,50; bonus bMdef,15; bonus bDex,10; bonus2 bSkillAtk,"SC_FEINTBOMB",10; if (getskilllv("SC_INVISIBILITY") >= 5) bonus2 bAddClass,Class_Boss,50; if (getskilllv("SC_MAELSTROM") >= 3) skill "TK_JUMPKICK",7; if (getskilllv("SC_REPRODUCE") >= 10) bonus bUseSPrate,-30; if (.@r>=7) { bonus2 bSkillAtk,"SC_FEINTBOMB",15; bonus bHit,30; } if (.@r>=9) { bonus2 bSkillAtk,"SC_FEINTBOMB",25; bonus bHit,20; } if (.@r>=10) bonus bIgnoreDefClass,Class_All;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (19426,'Spirit_King\'s_Crown','Spirit King\'s Crown',4,20,NULL,600,NULL,12,NULL,0,0xFFFFFFFF,63,2,256,NULL,'100',1,1118,'.@r = getrefine(); bonus bMdef,15; bonus bFixedCastrate,-7*.@r; bonus bDelayrate,-10; bonus2 bSkillAtk,"SO_EARTHGRAVE",10; bonus2 bSkillAtk,"SO_DIAMONDDUST",10; bonus bVariableCastrate,-6*getskilllv("SO_EL_SYMPATHY"); if (getskilllv("SO_WARMER") >= 5) { bonus2 bSkillCooldown,"SO_EARTHGRAVE",-1000; bonus2 bSkillCooldown,"SO_DIAMONDDUST",-1000; bonus2 bSkillCooldown,"SO_VARETYR_SPEAR",-1000; } if (getskilllv("SO_ELEMENTAL_SHIELD") >= 5) bonus2 bMagicAddClass,Class_Boss,25; if (.@r>=7) { bonus2 bSkillAtk,"SO_EARTHGRAVE",15; bonus2 bSkillAtk,"SO_DIAMONDDUST",15; bonus bDelayrate,-5; } if (.@r>=9) { bonus bDelayrate,-5; bonus2 bSkillAtk,"SO_EARTHGRAVE",25; bonus2 bSkillAtk,"SO_DIAMONDDUST",25; } if (.@r>=10) bonus2 bIgnoreMdefClassRate,Class_All,100;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (19428,'Illusion_Morpheus\'s_Hood','Illusion Morpheus\'s Hood',4,20,NULL,200,NULL,15,NULL,1,0xFFFFFFFF,63,2,256,NULL,'130',1,256,'.@r = getrefine(); bonus bInt,10; bonus bMdef,15; bonus bMaxSPrate,20; bonus bVariableCastrate,-(3*(.@r/2)); if (.@r >= 7) { bonus bMatk,30; if (.@r >= 9) { bonus bNoCastCancel; } }',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (19451,'Heavenly_Order','Heavenly Order',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,512,NULL,'100',0,1093,'skill "MC_IDENTIFY",1,0; .@a = readparam(bStr); .@b = readparam(bAgi); .@c = readparam(bVit); .@d = readparam(bInt); .@e = readparam(bDex); .@f = readparam(bLuk); bonus bHit,2*(.@a/18); bonus bMaxHPrate,2*(.@a/18); bonus bFlee,2*(.@b/18); bonus bDelayrate,-2*(.@b/18); bonus bMdef,2*(.@c/18); bonus bVariableCastrate,-2*(.@c/18); bonus bMaxSPrate,2*(.@d/18); bonus bUseSPrate,-2*(.@d/18); bonus bCritical,2*(.@e/18); bonus bAspdRate,2*(.@e/18); bonus bBaseAtk,15*(.@f/18); bonus bMatk,15*(.@f/18); bonus bDef,20*(.@f/18);',NULL,NULL); REPLACE INTO `item_db_re` VALUES (19453,'Jeje_Cap','Jeje Cap',4,20,NULL,1000,NULL,18,NULL,0,0xFFFFFFFF,63,2,256,NULL,'100',1,1011,'.@r = getrefine(); .@dmg = 10; .@delay = -15-6*getskilllv("GN_CRAZYWEED"); bonus bMdef,15; bonus bNoCastCancel; bonus2 bVariableCastrate,"GN_CRAZYWEED",-50; bonus2 bVariableCastrate,"CR_ACIDDEMONSTRATION",-50; bonus2 bVariableCastrate,"CR_FULLPROTECTION",-50; if (.@r>=7) { .@dmg += 15; if (.@r>=9) { .@dmg += 25; if (.@r>=10) { bonus bIgnoreDefClass,Class_All; } } } if (getskilllv("GN_FIRE_EXPANSION") == 5) bonus2 bAddClass,Class_Boss,50; if (getskilllv("GN_CRAZYWEED") == 5) { .@delay -= 25; bonus2 bSkillCooldown,"GN_CRAZYWEED",-4500; } bonus2 bSkillAtk,"CR_ACIDDEMONSTRATION",.@dmg; bonus2 bSkillAtk,"GN_CRAZYWEED",.@dmg; bonus bDelayrate,.@delay;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (19469,'Saint_Crown','Saint Crown',4,20,NULL,600,NULL,12,NULL,0,0xFFFFFFFF,63,2,256,NULL,'100',1,1117,'.@r = getrefine(); .@a = 5*(getskilllv("AB_LAUDAAGNUS")+getskilllv("AB_LAUDARAMUS")); .@dmg = 20; .@aspd = 10; bonus bMdef,15; bonus2 bSkillUseSP,"AB_JUDEX",15; bonus2 bSkillUseSP,"AB_ADORAMUS",15; bonus2 bVariableCastrate,"AB_JUDEX",-5*getskilllv("AB_ORATIO"); bonus2 bVariableCastrate,"AB_ADORAMUS",-5*getskilllv("AB_ORATIO"); if (getskilllv("AB_CLEARANCE") >= 5) { bonus2 bMagicAddClass,Class_Boss,25; } bonus2 bMagicAddEle,Ele_Undead,.@a; bonus2 bMagicAddEle,Ele_Ghost,.@a; bonus2 bMagicAddEle,Ele_Earth,.@a; bonus2 bMagicAddEle,Ele_Neutral,.@a; bonus2 bMagicAddRace,RC_DemiHuman,2*.@r; bonus2 bMagicAddRace,RC_Player_Human,2*.@r; if (.@r >= 7) { .@dmg += 30; .@aspd += 5; if (.@r >= 9) { .@dmg += 50; .@aspd += 5; if (.@r >= 10) { bonus bNoGemStone; } } } bonus bAspdRate,.@aspd; bonus2 bSkillAtk,"AB_JUDEX",.@dmg; bonus2 bSkillAtk,"AB_ADORAMUS",.@dmg;',NULL,NULL); #=================================================================== @@ -11227,6 +11243,7 @@ REPLACE INTO `item_db_re` VALUES (20710,'Impr_Angel\'s_Warmth','Advanced Angelic REPLACE INTO `item_db_re` VALUES (20711,'Manteau_Of_Diego','Manteau Of Diego',4,20,NULL,600,NULL,15,NULL,1,0xFFFFFFFF,63,2,4,NULL,'0',1,0,'bonus bInt,1; bonus bDex,1; bonus bMdef,3;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (20712,'Valkyrie_Cape','Valkyrie Cape',4,10,NULL,500,NULL,10,NULL,1,0x6007DFFE,58,2,4,NULL,'1',1,0,'.@val = 2 * (min(10,getrefine())/2); if (BaseClass == Job_Mage || BaseClass == Job_Archer || BaseClass == Job_Acolyte) bonus bFlee2,(5+.@val); else if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief) bonus bShortWeaponDamageReturn,(5+.@val);',NULL,NULL); REPLACE INTO `item_db_re` VALUES (20714,'Assassin\'s_Muffler','Assassin\'s Muffler',4,20,NULL,100,NULL,16,NULL,1,0xFFFFFFFF,63,2,4,NULL,'50',1,0,'.@r = getrefine(); if (.@r>5) { bonus bAgi,(.@r-5)*2; }',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (20716,'Spirit_Manteau','Spirit Manteau',4,20,NULL,700,NULL,20,NULL,1,0xFFFFFFFF,63,2,4,NULL,'65',1,0,'bonus2 bSubEle,Ele_Ghost,5; bonus2 bSubRace,RC_Angel,-5;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (20717,'FaceWorm_Skin','Gigant Snake Skin',4,10,NULL,400,NULL,38,NULL,0,0xFFFFFFFF,63,2,4,NULL,'1',1,0,'bonus bMdef,10;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (20718,'FaceWorm_Skin_','Gigant Snake Skin',4,10,NULL,400,NULL,38,NULL,1,0xFFFFFFFF,63,2,4,NULL,'1',1,0,'bonus bMdef,10;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (20721,'Cloak_Of_Gray','Cloak of Gray',4,20,NULL,600,NULL,45,NULL,1,0xFFFFFFFF,56,2,4,NULL,'120',1,0,'bonus2 bSubEle,Ele_Holy,5+getrefine()/2;',NULL,NULL); @@ -11291,6 +11308,7 @@ REPLACE INTO `item_db_re` VALUES (20856,'YSF01_Manteau','YSF01 Manteau',4,0,NULL REPLACE INTO `item_db_re` VALUES (20859,'Phreeoni_Wings','Phreeoni Wings',4,20,NULL,300,NULL,10,NULL,1,0xFFFFFFFF,63,2,4,NULL,'100',1,0,'.@r = getrefine(); bonus bMaxHPrate,10; bonus bHit,10; if (.@r>=7) bonus bHit,20; if (.@r>=8) bonus bHit,30; if (.@r>=9) bonus bHit,40; if (.@r>=10) bonus bHit,100;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (20860,'Battle_Surcoat','Battle Surcoat',4,20,NULL,300,NULL,10,NULL,1,0xFFFFFFFF,63,2,4,NULL,'70',1,0,'.@r = getrefine(); if (.@r>=9) { bonus bAspdRate,9; bonus bFlee,30; skill "TF_DOUBLE",10; skill "MO_TRIPLEATTACK",10; bonus bDoubleRate,50; } else if (.@r>=7) { bonus bAspdRate,6; bonus bFlee,20; skill "TF_DOUBLE",5; skill "MO_TRIPLEATTACK",5; bonus bDoubleRate,25; } else { bonus bAspdRate,3; bonus bFlee,10; skill "TF_DOUBLE",3; skill "MO_TRIPLEATTACK",3; bonus bDoubleRate,15; }',NULL,NULL); REPLACE INTO `item_db_re` VALUES (20863,'Menblatt\'s_Wings','Menblatt\'s Wings',4,20,NULL,400,NULL,40,NULL,1,0xFFFFFFFF,63,2,4,NULL,'100',1,0,'.@r = getrefine(); bonus bBaseAtk,30; if (.@r>=5) bonus bLongAtkRate,readparam(bDex)/60; if (.@r>=7) bonus bLongAtkRate,readparam(bDex)/10;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (20906,'Beginner\'s_Cloak','Beginner\'s Cloak',4,20,NULL,0,NULL,10,NULL,0,0xFFFFFFFF,63,2,4,NULL,'100',0,0,'bonus2 bSubEle,Ele_Neutral,20; bonus bVariableCastrate,-5;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (20922,'Leviathan_Muffler','Leviathan Muffler',4,20,NULL,200,NULL,18,NULL,1,0xFFFFFFFF,63,2,4,NULL,'100',1,0,'.@r = getrefine(); bonus bMdef,5; bonus2 bAddEle,Ele_Water,15+.@r; bonus2 bMagicAddEle,Ele_Water,15+.@r; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bAspdRate,.@r; if (.@r>=10) bonus2 bSubEle,Ele_Water,100;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (20923,'Illusion_Goibne_Spaulders','Illusion Goibne Spaulders',4,0,NULL,1000,NULL,47,NULL,1,0xFFFFFFFE,63,2,4,NULL,'130',1,0,'.@r = getrefine(); bonus bMdef,2; bonus bVit,1; if (.@r >= 7) { .@val = 5; if (.@r >= 9) { .@val += 10; } } if (.@val) { bonus2 bAddEle,Ele_Water,.@val; bonus2 bAddEle,Ele_Wind,.@val; bonus2 bAddEle,Ele_Earth,.@val; bonus2 bAddEle,Ele_Fire,.@val; }',NULL,NULL); REPLACE INTO `item_db_re` VALUES (20925,'Commander_Manteau2','Commander Manteau',4,20,NULL,300,NULL,20,NULL,1,0xFFFFFFFF,63,2,4,NULL,'100',1,0,'.@r = getrefine(); bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bMdef,10; bonus bBaseAtk,10; bonus bMatk,10; bonus2 bSubRace,RC_Player_Human,3; if (.@r>=5) { bonus bBaseAtk,20; bonus bMatk,20; bonus bMaxHPrate,7; bonus bMaxSPrate,7; } if (.@r>=7) { bonus bBaseAtk,30; bonus bMatk,30; bonus bMaxHPrate,10; bonus bMaxSPrate,10; }',NULL,NULL); @@ -11373,6 +11391,7 @@ REPLACE INTO `item_db_re` VALUES (22046,'Airship_Boots','Airship\'s Boots',4,10, REPLACE INTO `item_db_re` VALUES (22047,'Felock_Boots','Felrock\'s Boots',4,10,NULL,250,NULL,13,NULL,0,0xFFFFFFFF,63,2,64,NULL,'125',1,NULL,'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; }',NULL,NULL); REPLACE INTO `item_db_re` VALUES (22059,'Aegir_Shoes','Aegir Shoes',4,10,NULL,300,NULL,13,NULL,1,0xFFFFFFFF,63,2,64,NULL,'40',1,NULL,'bonus bUnbreakableShoes; bonus bMaxHP,500; bonus bMaxSP,50;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (22064,'Thorny_Shoes','Thorny Shoes',4,0,NULL,1000,NULL,25,NULL,1,0xFFFFFFFF,63,2,64,NULL,'70',1,NULL,'bonus bShortWeaponDamageReturn,getrefine()/2;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (22066,'Spirit_Shoes','Spirit Shoes',4,10,NULL,250,NULL,12,NULL,1,0xFFFFFFFE,63,2,64,NULL,'90',1,NULL,'bonus bMdef,3; bonus2 bSubEle,Ele_All,5; .@r = getrefine(); bonus bMaxHPrate,.@r*1; bonus bMaxSPrate,.@r*1;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (22067,'Witch_Shoes','Shoe of Witch',4,10,NULL,400,NULL,10,NULL,0,0xFFFFFFFE,63,2,64,NULL,'1',1,NULL,'skill "ALL_CATCRY",1;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (22069,'Lian_Shoes','Lian Shoes',4,0,NULL,250,NULL,12,NULL,1,0xFFFFFFFF,63,2,64,NULL,'90',1,NULL,'bonus bMdef,3; bonus2 bSubEle,Ele_Neutral,5; .@r = getrefine(); bonus bMaxHPrate,.@r; bonus bMaxSPrate,.@r;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (22072,'Hikingboots','Hikingboots',4,0,NULL,500,NULL,10,NULL,1,0xFFFFFFFF,63,2,64,NULL,'100',1,NULL,'.@r = getrefine(); bonus bMaxHPRate,4+(.@r/3); bonus bMaxSPRate,4+(.@r/3); if (.@r > 9) bonus bSpeedRate,25;',NULL,NULL); @@ -11419,6 +11438,7 @@ REPLACE INTO `item_db_re` VALUES (22145,'Tengu\'s_Shoes','Tengu\'s Shoes',4,20,N REPLACE INTO `item_db_re` VALUES (22170,'Survivor\'s_Shoes','Survivor\'s Shoes',4,10,NULL,500,NULL,15,NULL,0,0xFFFFFFFF,63,2,64,NULL,'100',1,0,'.@r = getrefine(); if (.@r >= 7) { .@hpsp = 20; .@dmg = 10; } else if (.@r >= 5) { .@hpsp = 10; .@dmg = 5; } else { .@hpsp = 3; .@dmg = 2; } bonus bMdef,15; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bMaxHPrate,.@hpsp; bonus bMaxSPrate,.@hpsp; bonus bMatkRate,.@dmg; bonus2 bMagicAtkEle,Ele_Wind,.@dmg; bonus2 bMagicAtkEle,Ele_Earth,.@dmg;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (22171,'Ancient_Hero_Boots','Ancient Hero Boots',4,20,NULL,600,NULL,15,NULL,1,0xFFFFFFFF,63,2,64,NULL,'100',1,0,'.@r = getrefine(); bonus bMaxHP,500; bonus bMaxSP,50; bonus bMaxHPrate,2*(.@r/3); bonus bMaxSPrate,.@r/3; if (.@r >= 9) { .@val = -300; if (.@r >= 12) { .@val -= 200; if (.@r >= 14) { bonus bDelayRate,-5; } } bonus bFixedCast,.@val; }',NULL,NULL); REPLACE INTO `item_db_re` VALUES (22172,'Gray_Wing_Boots','Gray Wing Boots',4,20,NULL,500,NULL,15,NULL,0,0xFFFFFFFF,63,2,64,NULL,'100',1,0,'.@r = getrefine(); bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bMdef,15; bonus bLongAtkRate,2; bonus bCritAtkRate,2; skill "TF_HIDING",1; if (.@r>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bLongAtkRate,3; bonus bCritAtkRate,3; } if (.@r>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bLongAtkRate,5; bonus bCritAtkRate,5; }',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (22173,'Beginner\'s_Boots','Beginner\'s Boots',4,20,NULL,0,NULL,10,NULL,1,0xFFFFFFFF,63,2,64,NULL,'100',0,0,'bonus bMaxHP,300; bonus bMaxSP,50; bonus bFlee,15; bonus bHPrecovRate,10; bonus bSPrecovRate,10;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (22189,'Pilgrim_Shoes','Pilgrim Shoes',4,20,NULL,500,NULL,15,NULL,0,0xFFFFFFFF,63,2,64,NULL,'100',1,0,'.@r = getrefine(); bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bDef,50*getskilllv("AB_SECRAMENT"); bonus bMdef,15; bonus bAspdRate,4*getskilllv("AB_CANTO"); bonus2 bSkillCooldown,"AB_PRAEFATIO",-1000; bonus bDelayrate,-6*getskilllv("AB_PRAEFATIO"); bonus2 bSubRace,RC_DemiHuman,2*getskilllv("AB_SECRAMENT"); bonus2 bSubRace,RC_Player_Human,2*getskilllv("AB_SECRAMENT"); bonus bHealPower,5*getskilllv("AB_HIGHNESSHEAL"); if (.@r>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bUseSPrate,-3; } if (.@r>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bUseSPrate,-5; }',NULL,NULL); REPLACE INTO `item_db_re` VALUES (22190,'Illusion_Boots','Illusion Boots',4,0,NULL,600,NULL,16,NULL,1,0x416E5CEA,63,2,64,NULL,'100',1,0,'.@r = getrefine(); bonus bCritical,(5*(.@r/3)); bonus bAspdRate,.@r;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (22192,'Illusion_Goibne\'s_Greaves','Illusion Goibne\'s Greaves',4,0,NULL,1200,NULL,42,NULL,1,0xFFFFFFFE,63,2,64,NULL,'130',1,0,'.@r = getrefine(); bonus bMaxHPrate,5; bonus bMaxSPrate,5; if (.@r >= 7) { bonus bVariableCastrate,-5; if (.@r >= 9) { bonus bLongAtkRate,10; } }',NULL,NULL); @@ -12504,6 +12524,7 @@ REPLACE INTO `item_db_re` VALUES (27295,'Ancient_Stone_Shooter_Card','Ancient St REPLACE INTO `item_db_re` VALUES (27296,'Ancient_Wootan_Shooter_Card','Ancient Wootan Shooter Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'.@dex = readparam(bDex); .@val = .@dex/10; if (.@val) { bonus bAspdRate,.@val; bonus2 bWeaponDamageRate,W_BOW,.@val; if (.@dex >= 120) { bonus bBaseAtk,40; } }',NULL,NULL); REPLACE INTO `item_db_re` VALUES (27297,'Ancient_Wootan_Fighter_Card','Ancient Wootan Fighter Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bCritical,5; bonus bCritAtkRate,10;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (27298,'Ancient_Wootan_Defender_Card','Ancient Wootan Defender Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'.@val = 30; if (getrefine() >= 10) { .@val += 20; } bonus2 bSubClass,Class_Boss,.@val;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (27301,'Labyrinth_Doppelganger_Card','Labyrinth Doppelganger Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddClass,Class_All,10;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (27304,'E_EA2S_Card','E EA2S Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bHPrecovRate,50;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (27305,'EL_A17T_Card','EL A17T Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus5 bAutoSpell,"WL_HELLINFERNO",3,1,ATF_SHORT|ATF_WEAPON,1; /* fix me: unknown rate */',NULL,NULL); REPLACE INTO `item_db_re` VALUES (27306,'Bellare_Card','Bellare Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'if (getiteminfo(getequipid(EQI_COMPOUND_ON),11) == W_REVOLVER) { .@r = getrefine(); bonus bHit,20; bonus bLongAtkRate,(5+.@r); if (.@r >= 10) { bonus2 bSkillAtk,"RL_FIREDANCE",15; } }',NULL,NULL); @@ -12738,6 +12759,7 @@ REPLACE INTO `item_db_re` VALUES (28551,'Imperial_Glove','Imperial Glove',4,20,N #REPLACE INTO `item_db_re` VALUES (28560,'Yin_Yang_Talisman','Yin Yang Talisman',4,20,NULL,300,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'50',0,0,'bonus bMatkRate,5; bonus bHit,20; bonus bAspdRate,5;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (28564,'Valkyrie_Drop','Valkyrie Drop',4,20,NULL,30,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'100',0,0,'.@r = getskilllv("PR_IMPOSITIO"); bonus bSPrecovRate,50; bonus bVariableCastrate,-10; bonus bDelayrate,-5; bonus2 bVariableCastrate,"AB_ORATIO",-50; bonus2 bFixedCastrate,"AB_ORATIO",-100; bonus2 bMagicAddSize,Size_All,3*.@r; bonus2 bSkillAtk,"PR_MAGNUS",3*(Baselevel/2); if (.@r == 5) skill "ALL_ODINS_POWER",2;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (28565,'Perverse_Demon_Mask','Perverse Demon Mask',4,20,NULL,60,NULL,0,NULL,1,0xFFFFFFFF,63,2,128,NULL,'80',0,0,'.@s = readparam(bStr); .@a = readparam(bAgi); .@d = readparam(bDex); .@v = readparam(bvit); .@l = readparam(bLuk); .@i = readparam(bInt); bonus bStr,3*(.@i/18); bonus bAgi,3*(.@l/18); bonus bVit,3*(.@d/18); bonus bInt,3*(.@s/18); bonus bDex,3*(.@v/18); bonus bLuk,3*(.@a/18); bonus bMaxHPrate,(.@d/18); bonus bFlee2,(.@a/18); bonus bMaxHPrate,(.@d/18); bonus bVariableCastrate,-(.@v/18); bonus bDelayrate,-(.@i/18); bonus2 bIgnoreDefClassRate,Class_All,15*(.@l/18); bonus2 bIgnoreMdefClassRate,Class_All,15*(.@s/18);',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (28566,'Beginner\'s_Ring','Beginner\'s Ring',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,128,NULL,'100',0,0,'bonus bAspdRate,10; bonus bVariableCastrate,-10;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (28573,'Emerald_Ring','Emerald Ring',4,20,NULL,300,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'100',0,0,'.@a = getskilllv("AC_DOUBLE")/2; bonus bAgi,5+(.@a); bonus bVit,5+(.@a); bonus bDex,5+(.@a); bonus bBaseAtk,(20*.@a); bonus2 bSkillAtk,"AC_DOUBLE",Baselevel; bonus2 bSkillAtk,"AC_SHOWER",Baselevel; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",2*(Baselevel/10); bonus2 bSkillUseSP,"WM_RANDOMIZESPELL",18;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (28575,'Verus_Core','Verus Core',4,10,NULL,500,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'80',0,0,'bonus bAspdRate,10; bonus2 bAddEle,Ele_All,5; bonus bPerfectHitAddRate,20;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (28594,'Temporal_Ring','Temporal Ring',4,20,NULL,500,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'100',0,0,'bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bBaseAtk,50; bonus bMatk,50;',NULL,NULL); @@ -12952,6 +12974,7 @@ REPLACE INTO `item_db_re` VALUES (29172,'S-Avoid','S-Avoid',6,0,NULL,0,NULL,NULL REPLACE INTO `item_db_re` VALUES (29173,'S-MaxHP','S-MaxHP',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMaxHP,2500; .@r = getrefine(); .@c = 100; .@t = 3000; if(.@r>=8){ .@t += 1000; } if(.@r>=9){ .@c += 100; .@t += 1000; } autobonus2 "{ bonus bMaxHP,7500; }",.@c,.@t;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (29174,'S-Quick','S-Quick',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bVariableCastrate,-10; .@r = getrefine(); .@c = 100; .@t = 3000; if(.@r>=8){ .@t += 1000; } if(.@r>=9){ .@c += 100; .@t += 1000; } autobonus2 "{ bonus bVariableCastrate,-100; bonus bDelayrate,-100; }",.@c,.@t,BF_MAGIC;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (29175,'S-Cri','S-Cri',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bCritical,10; .@r = getrefine(); .@c = 100; .@t = 3000; if(.@r>=8){ .@t += 1000; } if(.@r>=9){ .@c += 100; .@t += 1000; } autobonus2 "{ bonus bCritical,100; }",.@c,.@t;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (29176,'Tenji','Tenji',6,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,64,NULL,NULL,NULL,NULL,'bonus2 bAddRace,RC_Brute,15; bonus2 bAddRace,RC_Plant,15; bonus2 bMagicAddRace,RC_Brute,15; bonus2 bMagicAddRace,RC_Plant,15; bonus2 bAddEle,Ele_Wind,15; bonus2 bAddEle,Ele_Earth,15; bonus2 bMagicAddEle,Ele_Wind,15; bonus2 bMagicAddEle,Ele_Earth,15; autobonus2 "{ bonus bVariableCastrate,-70;bonus bDelayrate,-70; bonus bIgnoreDefRace,RC_All; bonus bIgnoreMDefRace,RC_All; }",1,10000;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (29224,'WhiteBody_Effect','White Body Effect',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'hateffect HAT_EF_WHITEBODY,true;',NULL,'hateffect HAT_EF_WHITEBODY,false;'); REPLACE INTO `item_db_re` VALUES (29225,'WaterField_Effect','Water Field Effect',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'hateffect HAT_EF_WATER_BELOW2,true;',NULL,'hateffect HAT_EF_WATER_BELOW2,false;'); REPLACE INTO `item_db_re` VALUES (29226,'ExplodingWave_Effect','Crimson Wave Effect',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'/* todo */',NULL,NULL); @@ -13726,6 +13749,7 @@ REPLACE INTO `item_db_re` VALUES (32230,'Schmidt_Insignia_Hundred_Lucks','King S REPLACE INTO `item_db_re` VALUES (32231,'Schmidt_Insignia_Rigid_Body','King Schmidt\'s Rigid Body Insignia',4,0,0,200,NULL,10,NULL,1,0xFFFFFFFF,63,2,128,NULL,'150',NULL,NULL,'bonus bMaxHPrate,10;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (32232,'Schmidt_Insignia_Flash','King Schmidt\'s Flash Insignia',4,0,0,200,NULL,10,NULL,1,0xFFFFFFFF,63,2,128,NULL,'150',NULL,NULL,'bonus bAspdRate,5;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (32233,'Schmidt_Insignia_Celestial','King Schmidt\'s Celestial Insignia',4,0,NULL,200,NULL,10,NULL,1,0xFFFFFFFF,63,2,128,NULL,'150',NULL,NULL,'bonus bLongAtkRate,7;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (32234,'Warrior\'s_Ring','Warrior\'s Ring',4,0,NULL,300,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'100',NULL,NULL,'bonus2 bAddClass,Class_All,5; bonus2 bMagicAddClass,Class_All,5; bonus2 bAddEle,Ele_Wind,10; bonus2 bAddEle,Ele_Earth,10; bonus2 bMagicAddEle,Ele_Wind,10; bonus2 bMagicAddEle,Ele_Earth,10; bonus2 bSubEle,Ele_Wind,5; bonus2 bSubEle,Ele_Earth,5;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (32237,'Celine\'s_Brooch','Celine\'s Brooch',4,10,NULL,500,NULL,0,NULL,1,0xFFFFFFFE,63,2,136,NULL,'100',0,0,'bonus bMatkRate,5; bonus bVariableCastrate,-10;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (32238,'Illusion_Morpheus\'s_Ring','Illusion Morpheus\'s Ring',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,8,NULL,'130',0,0,'bonus bInt,3; bonus bMaxSPrate,5;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (32239,'Illusion_Morpheus\'s_Bracelet','Illusion Morpheus\'s Bracelet',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,128,NULL,'130',0,0,'bonus bInt,3; bonus bMaxSPrate,5;',NULL,NULL); From f4f2f886d1b2a3907bc88b67e20ef20f87f54618 Mon Sep 17 00:00:00 2001 From: Lemongrass3110 Date: Sun, 11 Oct 2020 17:21:40 +0200 Subject: [PATCH 08/45] Hat Effect Update (#5442) --- src/map/script.hpp | 12 ++++++++++++ src/map/script_constants.hpp | 12 ++++++++++++ 2 files changed, 24 insertions(+) diff --git a/src/map/script.hpp b/src/map/script.hpp index 7c1663f109..83e3672b02 100644 --- a/src/map/script.hpp +++ b/src/map/script.hpp @@ -1979,6 +1979,18 @@ enum e_hat_effects { HAT_EF_C_SUDDEN_WEALTH_TW, HAT_EF_C_ROMANCE_ROSE_TW, HAT_EF_C_DISAPEAR_TIME_TW, + HAT_EF_2020RTC_01, + HAT_EF_2020RTC_02, + HAT_EF_2020RTC_03, + HAT_EF_C_2020RTC_IMP_TW, + HAT_EF_SUBJECT_AURA_BLACK, + HAT_EF_2020RTC_EFFECT_01, + HAT_EF_2020RTC_EFFECT_02, + HAT_EF_2020RTC_EFFECT_03, + HAT_EF_99LV_STAR_E_MBLUE, + HAT_EF_160LV_STAR_E_MBLUE, + HAT_EF_99LV_SOUL_R_GRAY, + HAT_EF_160LV_SOUL_R_GRAY, HAT_EF_MAX }; diff --git a/src/map/script_constants.hpp b/src/map/script_constants.hpp index f2e60af88c..750648e0a7 100644 --- a/src/map/script_constants.hpp +++ b/src/map/script_constants.hpp @@ -7503,6 +7503,18 @@ export_constant(HAT_EF_C_SUDDEN_WEALTH_TW); export_constant(HAT_EF_C_ROMANCE_ROSE_TW); export_constant(HAT_EF_C_DISAPEAR_TIME_TW); + export_constant(HAT_EF_2020RTC_01); + export_constant(HAT_EF_2020RTC_02); + export_constant(HAT_EF_2020RTC_03); + export_constant(HAT_EF_C_2020RTC_IMP_TW); + export_constant(HAT_EF_SUBJECT_AURA_BLACK); + export_constant(HAT_EF_2020RTC_EFFECT_01); + export_constant(HAT_EF_2020RTC_EFFECT_02); + export_constant(HAT_EF_2020RTC_EFFECT_03); + export_constant(HAT_EF_99LV_STAR_E_MBLUE); + export_constant(HAT_EF_160LV_STAR_E_MBLUE); + export_constant(HAT_EF_99LV_SOUL_R_GRAY); + export_constant(HAT_EF_160LV_SOUL_R_GRAY); /* pet catch */ export_constant(PET_CATCH_UNIVERSAL); From 550b65abccfb81d4768b47e2181f1a2a9a0ae90b Mon Sep 17 00:00:00 2001 From: Lemongrass3110 Date: Mon, 12 Oct 2020 00:13:13 +0200 Subject: [PATCH 09/45] Fixed the required skills for guild storage (#5446) --- db/re/guild_skill_tree.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/db/re/guild_skill_tree.yml b/db/re/guild_skill_tree.yml index 425d2942b0..74c0d08a27 100644 --- a/db/re/guild_skill_tree.yml +++ b/db/re/guild_skill_tree.yml @@ -121,3 +121,12 @@ Body: - Id: GD_GUILD_STORAGE MaxLevel: 5 + Required: + - Id: GD_EMERGENCYCALL + Level: 1 + - Id: GD_EXTENSION + Level: 10 + - Id: GD_SOULCOLD + Level: 1 + - Id: GD_HAWKEYES + Level: 1 From be3aee7f74c13b0a12a994658a0eea81afcc528f Mon Sep 17 00:00:00 2001 From: Lemongrass3110 Date: Tue, 13 Oct 2020 20:02:29 +0200 Subject: [PATCH 10/45] Update and cleanup of packet definitions (#5443) Moved changes from the Hercules file to rAthena's intermediate layer where possible. Updated to the latest Hercules definitions. Added missing packed attributes. --- src/map/clif.cpp | 2 +- src/map/packets.hpp | 43 +++++++++++--- src/map/packets_struct.hpp | 112 +++++++++++++++++++++++-------------- 3 files changed, 105 insertions(+), 52 deletions(-) diff --git a/src/map/clif.cpp b/src/map/clif.cpp index 63f8618104..b171df0be7 100644 --- a/src/map/clif.cpp +++ b/src/map/clif.cpp @@ -8806,7 +8806,7 @@ void clif_guild_emblem_area(struct block_list* bl) // (emblem in the flag npcs and emblem over the head in agit maps) [FlavioJS] PACKET_ZC_CHANGE_GUILD p{}; - p.packetType = changeGuildEmblem; + p.packetType = HEADER_ZC_CHANGE_GUILD; p.guild_id = status_get_guild_id(bl); p.emblem_id = status_get_emblem_id(bl); diff --git a/src/map/packets.hpp b/src/map/packets.hpp index 7ec9e9351e..4a36bc9c0a 100644 --- a/src/map/packets.hpp +++ b/src/map/packets.hpp @@ -63,7 +63,7 @@ struct PACKET_CZ_REQ_CASH_BARGAIN_SALE_ITEM_INFO{ #else uint16 itemId; #endif -}; +} __attribute__((packed)); struct PACKET_ZC_ACK_CASH_BARGAIN_SALE_ITEM_INFO{ int16 packetType; @@ -74,7 +74,7 @@ struct PACKET_ZC_ACK_CASH_BARGAIN_SALE_ITEM_INFO{ uint16 itemId; #endif uint32 price; -}; +} __attribute__((packed)); struct PACKET_CZ_REQ_APPLY_BARGAIN_SALE_ITEM{ int16 packetType; @@ -91,7 +91,7 @@ struct PACKET_CZ_REQ_APPLY_BARGAIN_SALE_ITEM{ #else uint8 hours; #endif -}; +} __attribute__((packed)); struct PACKET_CZ_REQ_REMOVE_BARGAIN_SALE_ITEM{ int16 packetType; @@ -101,7 +101,7 @@ struct PACKET_CZ_REQ_REMOVE_BARGAIN_SALE_ITEM{ #else uint16 itemId; #endif -}; +} __attribute__((packed)); struct PACKET_ZC_NOTIFY_BARGAIN_SALE_SELLING{ int16 packetType; @@ -111,7 +111,7 @@ struct PACKET_ZC_NOTIFY_BARGAIN_SALE_SELLING{ uint16 itemId; #endif uint32 remainingTime; -}; +} __attribute__((packed)); struct PACKET_ZC_NOTIFY_BARGAIN_SALE_CLOSE{ int16 packetType; @@ -120,7 +120,7 @@ struct PACKET_ZC_NOTIFY_BARGAIN_SALE_CLOSE{ #else uint16 itemId; #endif -}; +} __attribute__((packed)); struct PACKET_ZC_ACK_COUNT_BARGAIN_SALE_ITEM{ int16 packetType; @@ -130,7 +130,7 @@ struct PACKET_ZC_ACK_COUNT_BARGAIN_SALE_ITEM{ uint16 itemId; #endif uint32 amount; -}; +} __attribute__((packed)); struct PACKET_ZC_ACK_GUILDSTORAGE_LOG_sub{ uint32 id; @@ -149,7 +149,7 @@ struct PACKET_ZC_ACK_GUILDSTORAGE_LOG_sub{ char name[NAME_LENGTH]; char time[NAME_LENGTH]; uint8 attribute; -}; +} __attribute__((packed)); struct PACKET_ZC_ACK_GUILDSTORAGE_LOG{ int16 packetType; @@ -157,7 +157,26 @@ struct PACKET_ZC_ACK_GUILDSTORAGE_LOG{ uint16 result; uint16 amount; struct PACKET_ZC_ACK_GUILDSTORAGE_LOG_sub items[]; -}; +} __attribute__((packed)); + +struct PACKET_CZ_GUILD_EMBLEM_CHANGE2 { + int16 packetType; + uint32 guild_id; + uint32 version; +} __attribute__((packed)); + +struct PACKET_ZC_CHANGE_GUILD { + int16 packetType; +#if PACKETVER < 20190724 + uint32 aid; + uint32 guild_id; + uint16 emblem_id; +#else + uint32 guild_id; + uint32 emblem_id; + uint32 unknown; +#endif +} __attribute__((packed)); // NetBSD 5 and Solaris don't like pragma pack but accept the packed attribute #if !defined( sun ) && ( !defined( __NETBSD__ ) || __NetBSD_Version__ >= 600000000 ) @@ -171,6 +190,11 @@ DEFINE_PACKET_HEADER(CZ_REQMAKINGITEM, 0x18e) DEFINE_PACKET_HEADER(ZC_ACK_REQMAKINGITEM, 0x18f) DEFINE_PACKET_HEADER(CZ_REQ_MAKINGARROW, 0x1ae) DEFINE_PACKET_HEADER(CZ_REQ_ITEMREPAIR, 0x1fd) +#if PACKETVER >= 20190724 + DEFINE_PACKET_HEADER(ZC_CHANGE_GUILD, 0x0b47) +#else + DEFINE_PACKET_HEADER(ZC_CHANGE_GUILD, 0x1b4) +#endif DEFINE_PACKET_HEADER(ZC_ACK_WEAPONREFINE, 0x223) DEFINE_PACKET_HEADER(CZ_REQ_MAKINGITEM, 0x25b) DEFINE_PACKET_HEADER(ZC_CASH_TIME_COUNTER, 0x298) @@ -188,6 +212,7 @@ DEFINE_PACKET_HEADER(ZC_ACK_COUNT_BARGAIN_SALE_ITEM, 0x9c4) DEFINE_PACKET_HEADER(ZC_ACK_GUILDSTORAGE_LOG, 0x9da) DEFINE_PACKET_HEADER(CZ_NPC_MARKET_PURCHASE, 0x9d6) DEFINE_PACKET_HEADER(CZ_REQ_APPLY_BARGAIN_SALE_ITEM2, 0xa3d) +DEFINE_PACKET_HEADER(CZ_GUILD_EMBLEM_CHANGE2, 0x0b46) const int16 MAX_INVENTORY_ITEM_PACKET_NORMAL = ( ( INT16_MAX - ( sizeof( struct packet_itemlist_normal ) - ( sizeof( struct NORMALITEM_INFO ) * MAX_ITEMLIST) ) ) / sizeof( struct NORMALITEM_INFO ) ); const int16 MAX_INVENTORY_ITEM_PACKET_EQUIP = ( ( INT16_MAX - ( sizeof( struct packet_itemlist_equip ) - ( sizeof( struct EQUIPITEM_INFO ) * MAX_ITEMLIST ) ) ) / sizeof( struct EQUIPITEM_INFO ) ); diff --git a/src/map/packets_struct.hpp b/src/map/packets_struct.hpp index e75000fa08..ec7e58c262 100644 --- a/src/map/packets_struct.hpp +++ b/src/map/packets_struct.hpp @@ -113,7 +113,7 @@ enum packet_headers { authokType = 0x73, #elif PACKETVER < 20141022 authokType = 0x2eb, -// Some clients smaller than 20160330 cant be tested [4144] + // Some clients smaller than 20160330 cant be tested [4144] #elif PACKETVER < 20160330 authokType = 0xa18, #else @@ -267,9 +267,9 @@ enum packet_headers { viewequipackType = 0xa2d, #elif PACKETVER >= 20120925 viewequipackType = 0x997, -// [4144] not supported due other packets/structs not updated -//#elif (PACKETVER_MAIN_NUM >= 20111207) || (PACKETVER_RE_NUM >= 20111122) -// viewequipackType = 0x906, + // [4144] not supported due other packets/structs not updated + //#elif (PACKETVER_MAIN_NUM >= 20111207) || (PACKETVER_RE_NUM >= 20111122) + // viewequipackType = 0x906, #elif PACKETVER >= 20101124 viewequipackType = 0x859, #else @@ -405,11 +405,6 @@ enum packet_headers { #else guildLeave = 0x15a, #endif -#if PACKETVER >= 20190724 - changeGuildEmblem = 0xb47, -#else - changeGuildEmblem = 0x1b4, -#endif }; #if !defined(sun) && (!defined(__NETBSD__) || __NetBSD_Version__ >= 600000000) // NetBSD 5 and Solaris don't like pragma pack but accept the packed attribute @@ -520,7 +515,7 @@ struct packet_authok { #if PACKETVER >= 20080102 int16 font; #endif -// Some clients smaller than 20160330 cant be tested [4144] + // Some clients smaller than 20160330 cant be tested [4144] #if PACKETVER >= 20141022 && PACKETVER < 20160330 uint8 sex; #endif @@ -730,7 +725,7 @@ struct packet_spawn_unit { #if PACKETVER >= 20150513 int16 body; #endif -/* Might be earlier, this is when the named item bug began */ + /* Might be earlier, this is when the named item bug began */ #if PACKETVER >= 20131223 char name[NAME_LENGTH]; #endif @@ -804,7 +799,7 @@ struct packet_unit_walking { #if PACKETVER >= 20150513 uint16 body; #endif -/* Might be earlier, this is when the named item bug began */ + /* Might be earlier, this is when the named item bug began */ #if PACKETVER >= 20131223 char name[NAME_LENGTH]; #endif @@ -876,7 +871,7 @@ struct packet_idle_unit { #if PACKETVER >= 20150513 uint16 body; #endif -/* Might be earlier, this is when the named item bug began */ + /* Might be earlier, this is when the named item bug began */ #if PACKETVER >= 20131223 char name[NAME_LENGTH]; #endif @@ -920,18 +915,18 @@ struct packet_maptypeproperty2 { int16 PacketType; int16 type; struct { - uint32 party : 1; // Show attack cursor on non-party members (PvP) - uint32 guild : 1; // Show attack cursor on non-guild members (GvG) - uint32 siege : 1; // Show emblem over characters' heads when in GvG (WoE castle) - uint32 mineffect : 1; // Automatically enable /mineffect - uint32 nolockon : 1; // TODO: What does this do? (shows attack cursor on non-party members) - uint32 countpk : 1; /// Show the PvP counter - uint32 nopartyformation : 1; /// Prevent party creation/modification - uint32 bg : 1; // TODO: What does this do? Probably related to Battlegrounds, but I'm not sure on the effect - uint32 nocostume : 1; /// Does not show costume sprite. - uint32 usecart : 1; /// Allow opening cart inventory + uint32 party : 1; // Show attack cursor on non-party members (PvP) + uint32 guild : 1; // Show attack cursor on non-guild members (GvG) + uint32 siege : 1; // Show emblem over characters' heads when in GvG (WoE castle) + uint32 mineffect : 1; // Automatically enable /mineffect + uint32 nolockon : 1; // TODO: What does this do? (shows attack cursor on non-party members) + uint32 countpk : 1; /// Show the PvP counter + uint32 nopartyformation : 1; /// Prevent party creation/modification + uint32 bg : 1; // TODO: What does this do? Probably related to Battlegrounds, but I'm not sure on the effect + uint32 nocostume : 1; /// Does not show costume sprite. + uint32 usecart : 1; /// Allow opening cart inventory uint32 summonstarmiracle : 1; // TODO: What does this do? Related to Taekwon Masters, but I have no idea. - uint32 SpareBits : 21; /// Currently ignored, reserved for future updates + uint32 SpareBits : 21; /// Currently ignored, reserved for future updates } flag; } __attribute__((packed)); @@ -2569,7 +2564,7 @@ struct PACKET_ZC_PC_PURCHASE_ITEMLIST_FROMMC_sub { #if PACKETVER >= 20150226 struct ItemOptions option_data[MAX_ITEM_OPTIONS]; #endif -// [4144] date 20160921 not confirmed. Can be bigger or smaller + // [4144] date 20160921 not confirmed. Can be bigger or smaller #if PACKETVER >= 20160921 uint32 location; uint16 viewSprite; @@ -3764,7 +3759,7 @@ struct PACKET_ZC_SE_CASHSHOP_OPEN { } __attribute__((packed)); DEFINE_PACKET_HEADER(ZC_SE_CASHSHOP_OPEN, 0x0b6e); // for ragexeRE in some version this packet unused [4144] -#elif PACKETVER_MAIN_NUM >= 20101123 || PACKETVER_RE_NUM >= 20120328 || PACKETVER_ZERO_NUM >= defined(PACKETVER_ZERO) +#elif PACKETVER_MAIN_NUM >= 20101123 || PACKETVER_RE_NUM >= 20120328 || defined(PACKETVER_ZERO) struct PACKET_ZC_SE_CASHSHOP_OPEN { int16 packetType; uint32 cashPoints; @@ -3875,26 +3870,59 @@ struct PACKET_ZC_AUTORUN_SKILL { } __attribute__((packed)); DEFINE_PACKET_HEADER(ZC_AUTORUN_SKILL, 0x0147); -struct PACKET_CZ_GUILD_EMBLEM_CHANGE2 { +#if PACKETVER_MAIN_NUM >= 20170726 || PACKETVER_RE_NUM >= 20170621 || defined(PACKETVER_ZERO) +struct PACKET_ZC_LAPINEUPGRADE_OPEN { int16 packetType; - uint32 guild_id; - uint32 version; -} __attribute__((packed)); -DEFINE_PACKET_HEADER(CZ_GUILD_EMBLEM_CHANGE2, 0x0b46); - -struct PACKET_ZC_CHANGE_GUILD { - int16 packetType; -#if PACKETVER < 20190724 - uint32 aid; - uint32 guild_id; - uint16 emblem_id; +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 + uint32 itemId; #else - uint32 guild_id; - uint32 emblem_id; - uint32 unknown; + uint16 itemId; #endif } __attribute__((packed)); -DEFINE_PACKET_HEADER(ZC_CHANGE_GUILD, 0x0b47); +DEFINE_PACKET_HEADER(ZC_LAPINEUPGRADE_OPEN, 0x0ab4); + +struct PACKET_ZC_LAPINEUPGRADE_RESULT { + int16 packetType; + uint16 result; +} __attribute__((packed)); +DEFINE_PACKET_HEADER(ZC_LAPINEUPGRADE_RESULT, 0x0ab7); +#endif // PACKETVER_MAIN_NUM >= 20170726 || PACKETVER_RE_NUM >= 20170621 || defined(PACKETVER_ZERO) + +#if PACKETVER_MAIN_NUM >= 20170111 || PACKETVER_RE_NUM >= 20170111 || defined(PACKETVER_ZERO) +struct PACKET_CZ_LAPINEUPGRADE_CLOSE { + int16 packetType; +} __attribute__((packed)); +DEFINE_PACKET_HEADER(CZ_LAPINEUPGRADE_CLOSE, 0x0ab5); + +struct PACKET_CZ_LAPINEUPGRADE_MAKE_ITEM { + int16 packetType; +#if PACKETVER_MAIN_NUM >= 20181121 || PACKETVER_RE_NUM >= 20180704 || PACKETVER_ZERO_NUM >= 20181114 + uint32 itemId; +#else + uint16 itemId; +#endif + uint16 index; +} __attribute__((packed)); +DEFINE_PACKET_HEADER(CZ_LAPINEUPGRADE_MAKE_ITEM, 0x0ab6); +#endif // PACKETVER_MAIN_NUM >= 20170111 || PACKETVER_RE_NUM >= 20170111 || defined(PACKETVER_ZERO) + +#if PACKETVER_MAIN_NUM >= 20120503 || PACKETVER_RE_NUM >= 20120502 || defined(PACKETVER_ZERO) +struct PACKET_ZC_PERSONAL_INFOMATION_SUB { + int8 type; + int32 exp; + int32 death; + int32 drop; +} __attribute__((packed)); +struct PACKET_ZC_PERSONAL_INFOMATION { + int16 packetType; + int16 length; + int32 total_exp; + int32 total_death; + int32 total_drop; + struct PACKET_ZC_PERSONAL_INFOMATION_SUB details[]; +} __attribute__((packed)); +DEFINE_PACKET_HEADER(ZC_PERSONAL_INFOMATION, 0x097b); +#endif // PACKETVER_MAIN_NUM >= 20120503 || PACKETVER_RE_NUM >= 20120502 || defined(PACKETVER_ZERO) #if !defined(sun) && (!defined(__NETBSD__) || __NetBSD_Version__ >= 600000000) // NetBSD 5 and Solaris don't like pragma pack but accept the packed attribute #pragma pack(pop) From 8e84f0e9efa8c0a04ed806f1ea273dac285ae6dd Mon Sep 17 00:00:00 2001 From: Jittapan Pluemsumran Date: Mon, 19 Oct 2020 11:08:11 +0700 Subject: [PATCH 11/45] Grouped bonus arrays into a single struct (#5454) --- src/map/battle.cpp | 88 +++++++++++----------- src/map/mob.cpp | 4 +- src/map/pc.cpp | 112 ++++++++++++++-------------- src/map/pc.hpp | 80 ++++++++++---------- src/map/skill.cpp | 12 +-- src/map/status.cpp | 182 +++++++++++++++++---------------------------- 6 files changed, 219 insertions(+), 259 deletions(-) diff --git a/src/map/battle.cpp b/src/map/battle.cpp index b3ee92f3d8..07b62c436d 100644 --- a/src/map/battle.cpp +++ b/src/map/battle.cpp @@ -675,14 +675,14 @@ int battle_calc_cardfix(int attack_type, struct block_list *src, struct block_li case BF_MAGIC: // Affected by attacker ATK bonuses if( sd && !nk[NK_IGNOREATKCARD] ) { - cardfix = cardfix * (100 + sd->magic_addrace[tstatus->race] + sd->magic_addrace[RC_ALL] + sd->magic_addrace2[t_race2]) / 100; + cardfix = cardfix * (100 + sd->indexed_bonus.magic_addrace[tstatus->race] + sd->indexed_bonus.magic_addrace[RC_ALL] + sd->indexed_bonus.magic_addrace2[t_race2]) / 100; if( !nk[NK_IGNOREELEMENT] ) { // Affected by Element modifier bonuses - cardfix = cardfix * (100 + sd->magic_addele[tstatus->def_ele] + sd->magic_addele[ELE_ALL] + - sd->magic_addele_script[tstatus->def_ele] + sd->magic_addele_script[ELE_ALL]) / 100; - cardfix = cardfix * (100 + sd->magic_atk_ele[rh_ele] + sd->magic_atk_ele[ELE_ALL]) / 100; + cardfix = cardfix * (100 + sd->indexed_bonus.magic_addele[tstatus->def_ele] + sd->indexed_bonus.magic_addele[ELE_ALL] + + sd->indexed_bonus.magic_addele_script[tstatus->def_ele] + sd->indexed_bonus.magic_addele_script[ELE_ALL]) / 100; + cardfix = cardfix * (100 + sd->indexed_bonus.magic_atk_ele[rh_ele] + sd->indexed_bonus.magic_atk_ele[ELE_ALL]) / 100; } - cardfix = cardfix * (100 + sd->magic_addsize[tstatus->size] + sd->magic_addsize[SZ_ALL]) / 100; - cardfix = cardfix * (100 + sd->magic_addclass[tstatus->class_] + sd->magic_addclass[CLASS_ALL]) / 100; + cardfix = cardfix * (100 + sd->indexed_bonus.magic_addsize[tstatus->size] + sd->indexed_bonus.magic_addsize[SZ_ALL]) / 100; + cardfix = cardfix * (100 + sd->indexed_bonus.magic_addclass[tstatus->class_] + sd->indexed_bonus.magic_addclass[CLASS_ALL]) / 100; for (const auto &it : sd->add_mdmg) { if (it.id == t_class) { cardfix = cardfix * (100 + it.val) / 100; @@ -697,7 +697,7 @@ int battle_calc_cardfix(int attack_type, struct block_list *src, struct block_li cardfix = 1000; // reset var for target if( !nk[NK_IGNOREELEMENT] ) { // Affected by Element modifier bonuses - int ele_fix = tsd->subele[rh_ele] + tsd->subele[ELE_ALL] + tsd->subele_script[rh_ele] + tsd->subele_script[ELE_ALL]; + int ele_fix = tsd->indexed_bonus.subele[rh_ele] + tsd->indexed_bonus.subele[ELE_ALL] + tsd->indexed_bonus.subele_script[rh_ele] + tsd->indexed_bonus.subele_script[ELE_ALL]; for (const auto &it : tsd->subele2) { if (it.ele != rh_ele) @@ -709,13 +709,13 @@ int battle_calc_cardfix(int attack_type, struct block_list *src, struct block_li ele_fix += it.rate; } if (s_defele != ELE_NONE) - ele_fix += tsd->magic_subdefele[s_defele] + tsd->magic_subdefele[ELE_ALL]; + ele_fix += tsd->indexed_bonus.magic_subdefele[s_defele] + tsd->indexed_bonus.magic_subdefele[ELE_ALL]; cardfix = cardfix * (100 - ele_fix) / 100; } - cardfix = cardfix * (100 - tsd->subsize[sstatus->size] - tsd->subsize[SZ_ALL]) / 100; - cardfix = cardfix * (100 - tsd->magic_subsize[sstatus->size] - tsd->magic_subsize[SZ_ALL]) / 100; - cardfix = cardfix * (100 - tsd->subrace2[s_race2]) / 100; - int race_fix = tsd->subrace[sstatus->race] + tsd->subrace[RC_ALL]; + cardfix = cardfix * (100 - tsd->indexed_bonus.subsize[sstatus->size] - tsd->indexed_bonus.subsize[SZ_ALL]) / 100; + cardfix = cardfix * (100 - tsd->indexed_bonus.magic_subsize[sstatus->size] - tsd->indexed_bonus.magic_subsize[SZ_ALL]) / 100; + cardfix = cardfix * (100 - tsd->indexed_bonus.subrace2[s_race2]) / 100; + int race_fix = tsd->indexed_bonus.subrace[sstatus->race] + tsd->indexed_bonus.subrace[RC_ALL]; for (const auto &it : tsd->subrace3) { if (it.race != sstatus->race) continue; @@ -726,7 +726,7 @@ int battle_calc_cardfix(int attack_type, struct block_list *src, struct block_li race_fix += it.rate; } cardfix = cardfix * (100 - race_fix) / 100; - cardfix = cardfix * (100 - tsd->subclass[sstatus->class_] - tsd->subclass[CLASS_ALL]) / 100; + cardfix = cardfix * (100 - tsd->indexed_bonus.subclass[sstatus->class_] - tsd->indexed_bonus.subclass[CLASS_ALL]) / 100; for (const auto &it : tsd->add_mdef) { if (it.id == s_class) { @@ -755,11 +755,11 @@ int battle_calc_cardfix(int attack_type, struct block_list *src, struct block_li short cardfix_ = 1000; if( sd->state.arrow_atk ) { // Ranged attack - cardfix = cardfix * (100 + sd->right_weapon.addrace[tstatus->race] + sd->arrow_addrace[tstatus->race] + - sd->right_weapon.addrace[RC_ALL] + sd->arrow_addrace[RC_ALL]) / 100; + cardfix = cardfix * (100 + sd->right_weapon.addrace[tstatus->race] + sd->indexed_bonus.arrow_addrace[tstatus->race] + + sd->right_weapon.addrace[RC_ALL] + sd->indexed_bonus.arrow_addrace[RC_ALL]) / 100; if( !nk[NK_IGNOREELEMENT] ) { // Affected by Element modifier bonuses - int ele_fix = sd->right_weapon.addele[tstatus->def_ele] + sd->arrow_addele[tstatus->def_ele] + - sd->right_weapon.addele[ELE_ALL] + sd->arrow_addele[ELE_ALL]; + int ele_fix = sd->right_weapon.addele[tstatus->def_ele] + sd->indexed_bonus.arrow_addele[tstatus->def_ele] + + sd->right_weapon.addele[ELE_ALL] + sd->indexed_bonus.arrow_addele[ELE_ALL]; for (const auto &it : sd->right_weapon.addele2) { if (it.ele != tstatus->def_ele) @@ -772,11 +772,11 @@ int battle_calc_cardfix(int attack_type, struct block_list *src, struct block_li } cardfix = cardfix * (100 + ele_fix) / 100; } - cardfix = cardfix * (100 + sd->right_weapon.addsize[tstatus->size] + sd->arrow_addsize[tstatus->size] + - sd->right_weapon.addsize[SZ_ALL] + sd->arrow_addsize[SZ_ALL]) / 100; + cardfix = cardfix * (100 + sd->right_weapon.addsize[tstatus->size] + sd->indexed_bonus.arrow_addsize[tstatus->size] + + sd->right_weapon.addsize[SZ_ALL] + sd->indexed_bonus.arrow_addsize[SZ_ALL]) / 100; cardfix = cardfix * (100 + sd->right_weapon.addrace2[t_race2]) / 100; - cardfix = cardfix * (100 + sd->right_weapon.addclass[tstatus->class_] + sd->arrow_addclass[tstatus->class_] + - sd->right_weapon.addclass[CLASS_ALL] + sd->arrow_addclass[CLASS_ALL]) / 100; + cardfix = cardfix * (100 + sd->right_weapon.addclass[tstatus->class_] + sd->indexed_bonus.arrow_addclass[tstatus->class_] + + sd->right_weapon.addclass[CLASS_ALL] + sd->indexed_bonus.arrow_addclass[CLASS_ALL]) / 100; } else { // Melee attack int skill = 0; @@ -892,7 +892,7 @@ int battle_calc_cardfix(int attack_type, struct block_list *src, struct block_li // Affected by target DEF bonuses else if( tsd && !nk[NK_IGNOREDEFCARD] && !(left&2) ) { if( !nk[NK_IGNOREELEMENT] ) { // Affected by Element modifier bonuses - int ele_fix = tsd->subele[rh_ele] + tsd->subele[ELE_ALL] + tsd->subele_script[rh_ele] + tsd->subele_script[ELE_ALL]; + int ele_fix = tsd->indexed_bonus.subele[rh_ele] + tsd->indexed_bonus.subele[ELE_ALL] + tsd->indexed_bonus.subele_script[rh_ele] + tsd->indexed_bonus.subele_script[ELE_ALL]; for (const auto &it : tsd->subele2) { if (it.ele != rh_ele) @@ -906,7 +906,7 @@ int battle_calc_cardfix(int attack_type, struct block_list *src, struct block_li cardfix = cardfix * (100 - ele_fix) / 100; if( left&1 && lh_ele != rh_ele ) { - int ele_fix_lh = tsd->subele[lh_ele] + tsd->subele[ELE_ALL] + tsd->subele_script[lh_ele] + tsd->subele_script[ELE_ALL]; + int ele_fix_lh = tsd->indexed_bonus.subele[lh_ele] + tsd->indexed_bonus.subele[ELE_ALL] + tsd->indexed_bonus.subele_script[lh_ele] + tsd->indexed_bonus.subele_script[ELE_ALL]; for (const auto &it : tsd->subele2) { if (it.ele != lh_ele) @@ -920,11 +920,11 @@ int battle_calc_cardfix(int attack_type, struct block_list *src, struct block_li cardfix = cardfix * (100 - ele_fix_lh) / 100; } - cardfix = cardfix * (100 - tsd->subdefele[s_defele] - tsd->subdefele[ELE_ALL]) / 100; + cardfix = cardfix * (100 - tsd->indexed_bonus.subdefele[s_defele] - tsd->indexed_bonus.subdefele[ELE_ALL]) / 100; } - cardfix = cardfix * (100 - tsd->subsize[sstatus->size] - tsd->subsize[SZ_ALL]) / 100; - cardfix = cardfix * (100 - tsd->subrace2[s_race2]) / 100; - int race_fix = tsd->subrace[sstatus->race] + tsd->subrace[RC_ALL]; + cardfix = cardfix * (100 - tsd->indexed_bonus.subsize[sstatus->size] - tsd->indexed_bonus.subsize[SZ_ALL]) / 100; + cardfix = cardfix * (100 - tsd->indexed_bonus.subrace2[s_race2]) / 100; + int race_fix = tsd->indexed_bonus.subrace[sstatus->race] + tsd->indexed_bonus.subrace[RC_ALL]; for (const auto &it : tsd->subrace3) { if (it.race != sstatus->race) continue; @@ -935,7 +935,7 @@ int battle_calc_cardfix(int attack_type, struct block_list *src, struct block_li race_fix += it.rate; } cardfix = cardfix * (100 - race_fix) / 100; - cardfix = cardfix * (100 - tsd->subclass[sstatus->class_] - tsd->subclass[CLASS_ALL]) / 100; + cardfix = cardfix * (100 - tsd->indexed_bonus.subclass[sstatus->class_] - tsd->indexed_bonus.subclass[CLASS_ALL]) / 100; for (const auto &it : tsd->add_def) { if (it.id == s_class) { cardfix = cardfix * (100 - it.val) / 100; @@ -956,7 +956,7 @@ int battle_calc_cardfix(int attack_type, struct block_list *src, struct block_li // Affected by target DEF bonuses if( tsd && !nk[NK_IGNOREDEFCARD] ) { if( !nk[NK_IGNOREELEMENT] ) { // Affected by Element modifier bonuses - int ele_fix = tsd->subele[rh_ele] + tsd->subele[ELE_ALL] + tsd->subele_script[rh_ele] + tsd->subele_script[ELE_ALL]; + int ele_fix = tsd->indexed_bonus.subele[rh_ele] + tsd->indexed_bonus.subele[ELE_ALL] + tsd->indexed_bonus.subele_script[rh_ele] + tsd->indexed_bonus.subele_script[ELE_ALL]; for (const auto &it : tsd->subele2) { if (it.ele != rh_ele) @@ -968,10 +968,10 @@ int battle_calc_cardfix(int attack_type, struct block_list *src, struct block_li ele_fix += it.rate; } if (s_defele != ELE_NONE) - ele_fix += tsd->subdefele[s_defele] + tsd->subdefele[ELE_ALL]; + ele_fix += tsd->indexed_bonus.subdefele[s_defele] + tsd->indexed_bonus.subdefele[ELE_ALL]; cardfix = cardfix * (100 - ele_fix) / 100; } - int race_fix = tsd->subrace[sstatus->race] + tsd->subrace[RC_ALL]; + int race_fix = tsd->indexed_bonus.subrace[sstatus->race] + tsd->indexed_bonus.subrace[RC_ALL]; for (const auto &it : tsd->subrace3) { if (it.race != sstatus->race) continue; @@ -983,9 +983,9 @@ int battle_calc_cardfix(int attack_type, struct block_list *src, struct block_li } cardfix = cardfix * (100 - race_fix) / 100; - cardfix = cardfix * (100 - tsd->subsize[sstatus->size] - tsd->subsize[SZ_ALL]) / 100; - cardfix = cardfix * (100 - tsd->subrace2[s_race2]) / 100; - cardfix = cardfix * (100 - tsd->subclass[sstatus->class_] - tsd->subclass[CLASS_ALL]) / 100; + cardfix = cardfix * (100 - tsd->indexed_bonus.subsize[sstatus->size] - tsd->indexed_bonus.subsize[SZ_ALL]) / 100; + cardfix = cardfix * (100 - tsd->indexed_bonus.subrace2[s_race2]) / 100; + cardfix = cardfix * (100 - tsd->indexed_bonus.subclass[sstatus->class_] - tsd->indexed_bonus.subclass[CLASS_ALL]) / 100; cardfix = cardfix * (100 - tsd->bonus.misc_def_rate) / 100; if( flag&BF_SHORT ) cardfix = cardfix * (100 - tsd->bonus.near_attack_def_rate) / 100; @@ -2050,14 +2050,14 @@ static void battle_add_weapon_damage(struct map_session_data *sd, int64 *damage, if (lr_type == EQI_HAND_L) { if (sd->left_weapon.overrefine) (*damage) = (*damage) + rnd() % sd->left_weapon.overrefine + 1; - if (sd->weapon_damage_rate[sd->weapontype2]) - (*damage) += (*damage) * sd->weapon_damage_rate[sd->weapontype2] / 100; + if (sd->indexed_bonus.weapon_damage_rate[sd->weapontype2]) + (*damage) += (*damage) * sd->indexed_bonus.weapon_damage_rate[sd->weapontype2] / 100; } else if (lr_type == EQI_HAND_R) { if (sd->right_weapon.overrefine) (*damage) = (*damage) + rnd() % sd->right_weapon.overrefine + 1; - if (sd->weapon_damage_rate[sd->weapontype1]) - (*damage) += (*damage) * sd->weapon_damage_rate[sd->weapontype1] / 100; + if (sd->indexed_bonus.weapon_damage_rate[sd->weapontype1]) + (*damage) += (*damage) * sd->indexed_bonus.weapon_damage_rate[sd->weapontype1] / 100; } } @@ -2587,7 +2587,7 @@ static bool is_attack_critical(struct Damage* wd, struct block_list *src, struct short cri = sstatus->cri; if (sd) { - cri += sd->critaddrace[tstatus->race] + sd->critaddrace[RC_ALL]; + cri += sd->indexed_bonus.critaddrace[tstatus->race] + sd->indexed_bonus.critaddrace[RC_ALL]; if(!skill_id && is_skill_using_arrow(src, skill_id)) { cri += sd->bonus.arrow_cri; cri += sd->bonus.critical_rangeatk; @@ -5055,8 +5055,8 @@ static void battle_calc_defense_reduction(struct Damage* wd, struct block_list * short def2 = tstatus->def2; if (sd) { - int i = sd->ignore_def_by_race[tstatus->race] + sd->ignore_def_by_race[RC_ALL]; - i += sd->ignore_def_by_class[tstatus->class_] + sd->ignore_def_by_class[CLASS_ALL]; + int i = sd->indexed_bonus.ignore_def_by_race[tstatus->race] + sd->indexed_bonus.ignore_def_by_race[RC_ALL]; + i += sd->indexed_bonus.ignore_def_by_class[tstatus->class_] + sd->indexed_bonus.ignore_def_by_class[CLASS_ALL]; if (i) { i = min(i,100); //cap it to 100 for 0 def min def1 -= def1 * i / 100; @@ -6734,9 +6734,9 @@ struct Damage battle_calc_magic_attack(struct block_list *src,struct block_list } if(sd) { - i = sd->ignore_mdef_by_race[tstatus->race] + sd->ignore_mdef_by_race[RC_ALL]; - i += sd->ignore_mdef_by_class[tstatus->class_] + sd->ignore_mdef_by_class[CLASS_ALL]; - i += sd->ignore_mdef_by_race2[status_get_race2(target)]; + i = sd->indexed_bonus.ignore_mdef_by_race[tstatus->race] + sd->indexed_bonus.ignore_mdef_by_race[RC_ALL]; + i += sd->indexed_bonus.ignore_mdef_by_class[tstatus->class_] + sd->indexed_bonus.ignore_mdef_by_class[CLASS_ALL]; + i += sd->indexed_bonus.ignore_mdef_by_race2[status_get_race2(target)]; if (i) { if (i > 100) i = 100; diff --git a/src/map/mob.cpp b/src/map/mob.cpp index 3e0b54f372..0a8b03d5bd 100644 --- a/src/map/mob.cpp +++ b/src/map/mob.cpp @@ -2756,8 +2756,8 @@ int mob_dead(struct mob_data *md, struct block_list *src, int type) drop_rate = (int)(drop_rate*1.25); // Add class and race specific bonuses - drop_rate_bonus += sd->dropaddclass[md->status.class_] + sd->dropaddclass[CLASS_ALL]; - drop_rate_bonus += sd->dropaddrace[md->status.race] + sd->dropaddrace[RC_ALL]; + drop_rate_bonus += sd->indexed_bonus.dropaddclass[md->status.class_] + sd->indexed_bonus.dropaddclass[CLASS_ALL]; + drop_rate_bonus += sd->indexed_bonus.dropaddrace[md->status.race] + sd->indexed_bonus.dropaddrace[RC_ALL]; // Increase drop rate if user has SC_ITEMBOOST if (sd->sc.data[SC_ITEMBOOST]) diff --git a/src/map/pc.cpp b/src/map/pc.cpp index 4051273422..670b2bf02e 100755 --- a/src/map/pc.cpp +++ b/src/map/pc.cpp @@ -3030,7 +3030,7 @@ void pc_bonus(struct map_session_data *sd,int type,int val) case SP_DEX: case SP_LUK: if(sd->state.lr_flag != 2) - sd->param_bonus[type-SP_STR]+=val; + sd->indexed_bonus.param_bonus[type-SP_STR]+=val; break; case SP_ATK1: if(!sd->state.lr_flag) { @@ -3425,25 +3425,25 @@ void pc_bonus(struct map_session_data *sd,int type,int val) break; case SP_ALL_STATS: // [Valaris] if(sd->state.lr_flag!=2) { - sd->param_bonus[SP_STR-SP_STR]+=val; - sd->param_bonus[SP_AGI-SP_STR]+=val; - sd->param_bonus[SP_VIT-SP_STR]+=val; - sd->param_bonus[SP_INT-SP_STR]+=val; - sd->param_bonus[SP_DEX-SP_STR]+=val; - sd->param_bonus[SP_LUK-SP_STR]+=val; + sd->indexed_bonus.param_bonus[SP_STR-SP_STR]+=val; + sd->indexed_bonus.param_bonus[SP_AGI-SP_STR]+=val; + sd->indexed_bonus.param_bonus[SP_VIT-SP_STR]+=val; + sd->indexed_bonus.param_bonus[SP_INT-SP_STR]+=val; + sd->indexed_bonus.param_bonus[SP_DEX-SP_STR]+=val; + sd->indexed_bonus.param_bonus[SP_LUK-SP_STR]+=val; } break; case SP_AGI_VIT: // [Valaris] if(sd->state.lr_flag!=2) { - sd->param_bonus[SP_AGI-SP_STR]+=val; - sd->param_bonus[SP_VIT-SP_STR]+=val; + sd->indexed_bonus.param_bonus[SP_AGI-SP_STR]+=val; + sd->indexed_bonus.param_bonus[SP_VIT-SP_STR]+=val; } break; case SP_AGI_DEX_STR: // [Valaris] if(sd->state.lr_flag!=2) { - sd->param_bonus[SP_AGI-SP_STR]+=val; - sd->param_bonus[SP_DEX-SP_STR]+=val; - sd->param_bonus[SP_STR-SP_STR]+=val; + sd->indexed_bonus.param_bonus[SP_AGI-SP_STR]+=val; + sd->indexed_bonus.param_bonus[SP_DEX-SP_STR]+=val; + sd->indexed_bonus.param_bonus[SP_STR-SP_STR]+=val; } break; case SP_PERFECT_HIDE: // [Valaris] @@ -3684,7 +3684,7 @@ void pc_bonus2(struct map_session_data *sd,int type,int type2,int val) else if(sd->state.lr_flag == 1) sd->left_weapon.addele[type2]+=val; else if(sd->state.lr_flag == 2) - sd->arrow_addele[type2]+=val; + sd->indexed_bonus.arrow_addele[type2]+=val; break; case SP_ADDRACE: // bonus2 bAddRace,r,x; PC_BONUS_CHK_RACE(type2,SP_ADDRACE); @@ -3693,7 +3693,7 @@ void pc_bonus2(struct map_session_data *sd,int type,int type2,int val) else if(sd->state.lr_flag == 1) sd->left_weapon.addrace[type2]+=val; else if(sd->state.lr_flag == 2) - sd->arrow_addrace[type2]+=val; + sd->indexed_bonus.arrow_addrace[type2]+=val; break; case SP_ADDCLASS: // bonus2 bAddClass,c,x; PC_BONUS_CHK_CLASS(type2,SP_ADDCLASS); @@ -3702,7 +3702,7 @@ void pc_bonus2(struct map_session_data *sd,int type,int type2,int val) else if(sd->state.lr_flag == 1) sd->left_weapon.addclass[type2]+=val; else if(sd->state.lr_flag == 2) - sd->arrow_addclass[type2]+=val; + sd->indexed_bonus.arrow_addclass[type2]+=val; break; case SP_ADDSIZE: // bonus2 bAddSize,s,x; PC_BONUS_CHK_SIZE(type2,SP_ADDSIZE); @@ -3711,22 +3711,22 @@ void pc_bonus2(struct map_session_data *sd,int type,int type2,int val) else if(sd->state.lr_flag == 1) sd->left_weapon.addsize[type2]+=val; else if(sd->state.lr_flag == 2) - sd->arrow_addsize[type2]+=val; + sd->indexed_bonus.arrow_addsize[type2]+=val; break; case SP_SUBELE: // bonus2 bSubEle,e,x; PC_BONUS_CHK_ELEMENT(type2,SP_SUBELE); if(sd->state.lr_flag != 2) - sd->subele_script[type2] += val; + sd->indexed_bonus.subele_script[type2] += val; break; case SP_SUBRACE: // bonus2 bSubRace,r,x; PC_BONUS_CHK_RACE(type2,SP_SUBRACE); if(sd->state.lr_flag != 2) - sd->subrace[type2]+=val; + sd->indexed_bonus.subrace[type2]+=val; break; case SP_SUBCLASS: // bonus2 bSubClass,c,x; PC_BONUS_CHK_CLASS(type2,SP_SUBCLASS); if(sd->state.lr_flag != 2) - sd->subclass[type2]+=val; + sd->indexed_bonus.subclass[type2]+=val; break; case SP_ADDEFF: // bonus2 bAddEff,eff,n; PC_BONUS_CHK_SC(type2,SP_ADDEFF); @@ -3749,27 +3749,27 @@ void pc_bonus2(struct map_session_data *sd,int type,int type2,int val) case SP_MAGIC_ADDELE: // bonus2 bMagicAddEle,e,x; PC_BONUS_CHK_ELEMENT(type2,SP_MAGIC_ADDELE); if(sd->state.lr_flag != 2) - sd->magic_addele_script[type2] += val; + sd->indexed_bonus.magic_addele_script[type2] += val; break; case SP_MAGIC_ADDRACE: // bonus2 bMagicAddRace,r,x; PC_BONUS_CHK_RACE(type2,SP_MAGIC_ADDRACE); if(sd->state.lr_flag != 2) - sd->magic_addrace[type2]+=val; + sd->indexed_bonus.magic_addrace[type2]+=val; break; case SP_MAGIC_ADDCLASS: // bonus2 bMagicAddClass,c,x; PC_BONUS_CHK_CLASS(type2,SP_MAGIC_ADDCLASS); if(sd->state.lr_flag != 2) - sd->magic_addclass[type2]+=val; + sd->indexed_bonus.magic_addclass[type2]+=val; break; case SP_MAGIC_ADDSIZE: // bonus2 bMagicAddSize,s,x; PC_BONUS_CHK_SIZE(type2,SP_MAGIC_ADDSIZE); if(sd->state.lr_flag != 2) - sd->magic_addsize[type2]+=val; + sd->indexed_bonus.magic_addsize[type2]+=val; break; case SP_MAGIC_ATK_ELE: // bonus2 bMagicAtkEle,e,x; PC_BONUS_CHK_ELEMENT(type2,SP_MAGIC_ATK_ELE); if(sd->state.lr_flag != 2) - sd->magic_atk_ele[type2]+=val; + sd->indexed_bonus.magic_atk_ele[type2]+=val; break; case SP_ADD_DAMAGE_CLASS: { // bonus2 bAddDamageClass,mid,x; struct weapon_data *wd = (sd->state.lr_flag ? &sd->left_weapon : &sd->right_weapon); @@ -3858,35 +3858,35 @@ void pc_bonus2(struct map_session_data *sd,int type,int type2,int val) PC_BONUS_CHK_ELEMENT(type2,SP_WEAPON_COMA_ELE); if(sd->state.lr_flag == 2) break; - sd->weapon_coma_ele[type2] += val; + sd->indexed_bonus.weapon_coma_ele[type2] += val; sd->special_state.bonus_coma = 1; break; case SP_WEAPON_COMA_RACE: // bonus2 bWeaponComaRace,r,n; PC_BONUS_CHK_RACE(type2,SP_WEAPON_COMA_RACE); if(sd->state.lr_flag == 2) break; - sd->weapon_coma_race[type2] += val; + sd->indexed_bonus.weapon_coma_race[type2] += val; sd->special_state.bonus_coma = 1; break; case SP_WEAPON_COMA_CLASS: // bonus2 bWeaponComaClass,c,n; PC_BONUS_CHK_CLASS(type2,SP_WEAPON_COMA_CLASS); if(sd->state.lr_flag == 2) break; - sd->weapon_coma_class[type2] += val; + sd->indexed_bonus.weapon_coma_class[type2] += val; sd->special_state.bonus_coma = 1; break; case SP_WEAPON_ATK: // bonus2 bWeaponAtk,w,n; if(sd->state.lr_flag != 2) - sd->weapon_atk[type2]+=val; + sd->indexed_bonus.weapon_atk[type2]+=val; break; case SP_WEAPON_DAMAGE_RATE: // bonus2 bWeaponDamageRate,w,n; if(sd->state.lr_flag != 2) - sd->weapon_damage_rate[type2]+=val; + sd->indexed_bonus.weapon_damage_rate[type2]+=val; break; case SP_CRITICAL_ADDRACE: // bonus2 bCriticalAddRace,r,n; PC_BONUS_CHK_RACE(type2,SP_CRITICAL_ADDRACE); if(sd->state.lr_flag != 2) - sd->critaddrace[type2] += val*10; + sd->indexed_bonus.critaddrace[type2] += val*10; break; case SP_ADDEFF_WHENHIT: // bonus2 bAddEffWhenHit,eff,n; PC_BONUS_CHK_SC(type2,SP_ADDEFF_WHENHIT); @@ -3967,17 +3967,17 @@ void pc_bonus2(struct map_session_data *sd,int type,int type2,int val) case SP_SUBSIZE: // bonus2 bSubSize,s,x; PC_BONUS_CHK_SIZE(type2,SP_SUBSIZE); if(sd->state.lr_flag != 2) - sd->subsize[type2]+=val; + sd->indexed_bonus.subsize[type2]+=val; break; case SP_MAGIC_SUBSIZE: // bonus2 bMagicSubSize,s,x; PC_BONUS_CHK_SIZE(type2,SP_MAGIC_SUBSIZE); if(sd->state.lr_flag != 2) - sd->magic_subsize[type2]+=val; + sd->indexed_bonus.magic_subsize[type2]+=val; break; case SP_SUBRACE2: // bonus2 bSubRace2,mr,x; PC_BONUS_CHK_RACE2(type2,SP_SUBRACE2); if(sd->state.lr_flag != 2) - sd->subrace2[type2]+=val; + sd->indexed_bonus.subrace2[type2]+=val; break; case SP_ADD_ITEM_HEAL_RATE: // bonus2 bAddItemHealRate,iid,n; if(sd->state.lr_flag == 2) @@ -4010,17 +4010,17 @@ void pc_bonus2(struct map_session_data *sd,int type,int type2,int val) case SP_EXP_ADDRACE: // bonus2 bExpAddRace,r,x; PC_BONUS_CHK_RACE(type2,SP_EXP_ADDRACE); if(sd->state.lr_flag != 2) - sd->expaddrace[type2]+=val; + sd->indexed_bonus.expaddrace[type2]+=val; break; case SP_EXP_ADDCLASS: // bonus2 bExpAddClass,c,x; PC_BONUS_CHK_CLASS(type2,SP_EXP_ADDCLASS); if(sd->state.lr_flag != 2) - sd->expaddclass[type2]+=val; + sd->indexed_bonus.expaddclass[type2]+=val; break; case SP_SP_GAIN_RACE: // bonus2 bSPGainRace,r,n; PC_BONUS_CHK_RACE(type2,SP_SP_GAIN_RACE); if(sd->state.lr_flag != 2) - sd->sp_gain_race[type2]+=val; + sd->indexed_bonus.sp_gain_race[type2]+=val; break; case SP_ADD_MONSTER_DROP_ITEM: // bonus2 bAddMonsterDropItem,iid,n; if (sd->state.lr_flag != 2) @@ -4081,22 +4081,22 @@ void pc_bonus2(struct map_session_data *sd,int type,int type2,int val) case SP_IGNORE_MDEF_RACE_RATE: // bonus2 bIgnoreMdefRaceRate,r,n; PC_BONUS_CHK_RACE(type2,SP_IGNORE_MDEF_RACE_RATE); if(sd->state.lr_flag != 2) - sd->ignore_mdef_by_race[type2] += val; + sd->indexed_bonus.ignore_mdef_by_race[type2] += val; break; case SP_IGNORE_MDEF_CLASS_RATE: // bonus2 bIgnoreMdefClassRate,c,n; PC_BONUS_CHK_CLASS(type2,SP_IGNORE_MDEF_CLASS_RATE); if(sd->state.lr_flag != 2) - sd->ignore_mdef_by_class[type2] += val; + sd->indexed_bonus.ignore_mdef_by_class[type2] += val; break; case SP_IGNORE_DEF_RACE_RATE: // bonus2 bIgnoreDefRaceRate,r,n; PC_BONUS_CHK_RACE(type2,SP_IGNORE_DEF_RACE_RATE); if(sd->state.lr_flag != 2) - sd->ignore_def_by_race[type2] += val; + sd->indexed_bonus.ignore_def_by_race[type2] += val; break; case SP_IGNORE_DEF_CLASS_RATE: // bonus2 bIgnoreDefClassRate,r,n; PC_BONUS_CHK_CLASS(type2, SP_IGNORE_DEF_CLASS_RATE); if (sd->state.lr_flag != 2) - sd->ignore_def_by_class[type2] += val; + sd->indexed_bonus.ignore_def_by_class[type2] += val; break; case SP_SKILL_USE_SP_RATE: // bonus2 bSkillUseSPrate,sk,n; if(sd->state.lr_flag == 2) @@ -4207,41 +4207,41 @@ void pc_bonus2(struct map_session_data *sd,int type,int type2,int val) break; case SP_SUBDEF_ELE: // bonus2 bSubDefEle,e,x; PC_BONUS_CHK_ELEMENT(type2,SP_SUBDEF_ELE); - sd->subdefele[type2] += val; + sd->indexed_bonus.subdefele[type2] += val; break; case SP_COMA_CLASS: // bonus2 bComaClass,c,n; PC_BONUS_CHK_CLASS(type2,SP_COMA_CLASS); - sd->coma_class[type2] += val; + sd->indexed_bonus.coma_class[type2] += val; sd->special_state.bonus_coma = 1; break; case SP_COMA_RACE: // bonus2 bComaRace,r,n; PC_BONUS_CHK_RACE(type2,SP_COMA_RACE); - sd->coma_race[type2] += val; + sd->indexed_bonus.coma_race[type2] += val; sd->special_state.bonus_coma = 1; break; case SP_MAGIC_ADDRACE2: // bonus2 bMagicAddRace2,mr,n; PC_BONUS_CHK_RACE2(type2, SP_MAGIC_ADDRACE2); if(sd->state.lr_flag != 2) - sd->magic_addrace2[type2] += val; + sd->indexed_bonus.magic_addrace2[type2] += val; break; case SP_IGNORE_MDEF_RACE2_RATE: //bonus2 bIgnoreMdefRace2Rate,mr,n; PC_BONUS_CHK_RACE2(type2, SP_IGNORE_MDEF_RACE2); if (sd->state.lr_flag != 2) - sd->ignore_mdef_by_race2[type2] += val; + sd->indexed_bonus.ignore_mdef_by_race2[type2] += val; break; case SP_DROP_ADDRACE: // bonus2 bDropAddRace,r,x; PC_BONUS_CHK_RACE(type2, SP_DROP_ADDRACE); if (sd->state.lr_flag != 2) - sd->dropaddrace[type2] += val; + sd->indexed_bonus.dropaddrace[type2] += val; break; case SP_DROP_ADDCLASS: // bonus2 bDropAddClass,c,x; PC_BONUS_CHK_CLASS(type2, SP_DROP_ADDCLASS); if (sd->state.lr_flag != 2) - sd->dropaddclass[type2] += val; + sd->indexed_bonus.dropaddclass[type2] += val; break; case SP_MAGIC_SUBDEF_ELE: // bonus2 bMagicSubDefEle,e,x; PC_BONUS_CHK_ELEMENT(type2, SP_MAGIC_SUBDEF_ELE); - sd->magic_subdefele[type2] += val; + sd->indexed_bonus.magic_subdefele[type2] += val; break; default: if (current_equip_combo_pos > 0) { @@ -7168,14 +7168,14 @@ static void pc_calcexp(struct map_session_data *sd, t_exp *base_exp, t_exp *job_ if (src) { struct status_data *status = status_get_status_data(src); - if( sd->expaddrace[status->race] ) - bonus += sd->expaddrace[status->race]; - if( sd->expaddrace[RC_ALL] ) - bonus += sd->expaddrace[RC_ALL]; - if( sd->expaddclass[status->class_] ) - bonus += sd->expaddclass[status->class_]; - if( sd->expaddclass[CLASS_ALL] ) - bonus += sd->expaddclass[CLASS_ALL]; + if( sd->indexed_bonus.expaddrace[status->race] ) + bonus += sd->indexed_bonus.expaddrace[status->race]; + if( sd->indexed_bonus.expaddrace[RC_ALL] ) + bonus += sd->indexed_bonus.expaddrace[RC_ALL]; + if( sd->indexed_bonus.expaddclass[status->class_] ) + bonus += sd->indexed_bonus.expaddclass[status->class_]; + if( sd->indexed_bonus.expaddclass[CLASS_ALL] ) + bonus += sd->indexed_bonus.expaddclass[CLASS_ALL]; if (battle_config.pk_mode && (int)(status_get_lv(src) - sd->status.base_level) >= 20) diff --git a/src/map/pc.hpp b/src/map/pc.hpp index d51ebdfedf..37289df34e 100644 --- a/src/map/pc.hpp +++ b/src/map/pc.hpp @@ -422,45 +422,47 @@ struct map_session_data { struct weapon_data right_weapon, left_weapon; // here start arrays to be globally zeroed at the beginning of status_calc_pc() - int param_bonus[6],param_equip[6]; //Stores card/equipment bonuses. - int subele[ELE_MAX]; - int subele_script[ELE_MAX]; - int subdefele[ELE_MAX]; - int subrace[RC_MAX]; - int subclass[CLASS_MAX]; - int subrace2[RC2_MAX]; - int subsize[SZ_MAX]; - short coma_class[CLASS_MAX]; - short coma_race[RC_MAX]; - short weapon_coma_ele[ELE_MAX]; - short weapon_coma_race[RC_MAX]; - short weapon_coma_class[CLASS_MAX]; - int weapon_atk[16]; - int weapon_damage_rate[16]; - int arrow_addele[ELE_MAX]; - int arrow_addrace[RC_MAX]; - int arrow_addclass[CLASS_MAX]; - int arrow_addsize[SZ_MAX]; - int magic_addele[ELE_MAX]; - int magic_addele_script[ELE_MAX]; - int magic_addrace[RC_MAX]; - int magic_addclass[CLASS_MAX]; - int magic_addsize[SZ_MAX]; - int magic_atk_ele[ELE_MAX]; - int magic_subsize[SZ_MAX]; - int critaddrace[RC_MAX]; - int expaddrace[RC_MAX]; - int expaddclass[CLASS_MAX]; - int ignore_mdef_by_race[RC_MAX]; - int ignore_mdef_by_class[CLASS_MAX]; - int ignore_def_by_race[RC_MAX]; - int ignore_def_by_class[CLASS_MAX]; - short sp_gain_race[RC_MAX]; - int magic_addrace2[RC2_MAX]; - int ignore_mdef_by_race2[RC2_MAX]; - int dropaddrace[RC_MAX]; - int dropaddclass[CLASS_MAX]; - int magic_subdefele[ELE_MAX]; + struct s_indexed_bonus { + int param_bonus[6], param_equip[6]; //Stores card/equipment bonuses. + int subele[ELE_MAX]; + int subele_script[ELE_MAX]; + int subdefele[ELE_MAX]; + int subrace[RC_MAX]; + int subclass[CLASS_MAX]; + int subrace2[RC2_MAX]; + int subsize[SZ_MAX]; + short coma_class[CLASS_MAX]; + short coma_race[RC_MAX]; + short weapon_coma_ele[ELE_MAX]; + short weapon_coma_race[RC_MAX]; + short weapon_coma_class[CLASS_MAX]; + int weapon_atk[16]; + int weapon_damage_rate[16]; + int arrow_addele[ELE_MAX]; + int arrow_addrace[RC_MAX]; + int arrow_addclass[CLASS_MAX]; + int arrow_addsize[SZ_MAX]; + int magic_addele[ELE_MAX]; + int magic_addele_script[ELE_MAX]; + int magic_addrace[RC_MAX]; + int magic_addclass[CLASS_MAX]; + int magic_addsize[SZ_MAX]; + int magic_atk_ele[ELE_MAX]; + int magic_subsize[SZ_MAX]; + int critaddrace[RC_MAX]; + int expaddrace[RC_MAX]; + int expaddclass[CLASS_MAX]; + int ignore_mdef_by_race[RC_MAX]; + int ignore_mdef_by_class[CLASS_MAX]; + int ignore_def_by_race[RC_MAX]; + int ignore_def_by_class[CLASS_MAX]; + short sp_gain_race[RC_MAX]; + int magic_addrace2[RC2_MAX]; + int ignore_mdef_by_race2[RC2_MAX]; + int dropaddrace[RC_MAX]; + int dropaddclass[CLASS_MAX]; + int magic_subdefele[ELE_MAX]; + } indexed_bonus; // zeroed arrays end here. std::vector autospell, autospell2, autospell3; diff --git a/src/map/skill.cpp b/src/map/skill.cpp index 7ab9ade4b7..bf3a51283e 100755 --- a/src/map/skill.cpp +++ b/src/map/skill.cpp @@ -2097,13 +2097,13 @@ int skill_additional_effect(struct block_list* src, struct block_list *bl, uint1 rate = 0; //! TODO: Filter the skills that shouldn't inflict coma bonus, to avoid some non-damage skills inflict coma. [Cydh] if (!skill_id || !skill_get_nk(skill_id, NK_NODAMAGE)) { - rate += sd->coma_class[tstatus->class_] + sd->coma_class[CLASS_ALL]; - rate += sd->coma_race[tstatus->race] + sd->coma_race[RC_ALL]; + rate += sd->indexed_bonus.coma_class[tstatus->class_] + sd->indexed_bonus.coma_class[CLASS_ALL]; + rate += sd->indexed_bonus.coma_race[tstatus->race] + sd->indexed_bonus.coma_race[RC_ALL]; } if (attack_type&BF_WEAPON) { - rate += sd->weapon_coma_ele[tstatus->def_ele] + sd->weapon_coma_ele[ELE_ALL]; - rate += sd->weapon_coma_race[tstatus->race] + sd->weapon_coma_race[RC_ALL]; - rate += sd->weapon_coma_class[tstatus->class_] + sd->weapon_coma_class[CLASS_ALL]; + rate += sd->indexed_bonus.weapon_coma_ele[tstatus->def_ele] + sd->indexed_bonus.weapon_coma_ele[ELE_ALL]; + rate += sd->indexed_bonus.weapon_coma_race[tstatus->race] + sd->indexed_bonus.weapon_coma_race[RC_ALL]; + rate += sd->indexed_bonus.weapon_coma_class[tstatus->class_] + sd->indexed_bonus.weapon_coma_class[CLASS_ALL]; } if (rate > 0) status_change_start(src,bl, SC_COMA, rate, 0, 0, src->id, 0, 0, SCSTART_NONE); @@ -2467,7 +2467,7 @@ int skill_counter_additional_effect (struct block_list* src, struct block_list * int sp = 0, hp = 0; if( (attack_type&(BF_WEAPON|BF_SHORT)) == (BF_WEAPON|BF_SHORT) ) { sp += sd->bonus.sp_gain_value; - sp += sd->sp_gain_race[status_get_race(bl)] + sd->sp_gain_race[RC_ALL]; + sp += sd->indexed_bonus.sp_gain_race[status_get_race(bl)] + sd->indexed_bonus.sp_gain_race[RC_ALL]; hp += sd->bonus.hp_gain_value; } if( (attack_type&(BF_WEAPON|BF_LONG)) == (BF_WEAPON|BF_LONG) ) { diff --git a/src/map/status.cpp b/src/map/status.cpp index 2fab6c7592..c936dae839 100644 --- a/src/map/status.cpp +++ b/src/map/status.cpp @@ -3815,49 +3815,7 @@ int status_calc_pc_sub(struct map_session_data* sd, enum e_status_calc_opt opt) sd->regen.state.block = 0; sd->add_max_weight = 0; - // Zeroed arrays, order follows the order in pc.hpp. - // Add new arrays to the end of zeroed area in pc.hpp (see comments) and size here. [zzo] - memset (sd->param_bonus, 0, sizeof(sd->param_bonus) - + sizeof(sd->param_equip) - + sizeof(sd->subele) - + sizeof(sd->subele_script) - + sizeof(sd->subdefele) - + sizeof(sd->subrace) - + sizeof(sd->subclass) - + sizeof(sd->subrace2) - + sizeof(sd->subsize) - + sizeof(sd->coma_class) - + sizeof(sd->coma_race) - + sizeof(sd->weapon_coma_ele) - + sizeof(sd->weapon_coma_race) - + sizeof(sd->weapon_coma_class) - + sizeof(sd->weapon_atk) - + sizeof(sd->weapon_damage_rate) - + sizeof(sd->arrow_addele) - + sizeof(sd->arrow_addrace) - + sizeof(sd->arrow_addclass) - + sizeof(sd->arrow_addsize) - + sizeof(sd->magic_addele) - + sizeof(sd->magic_addele_script) - + sizeof(sd->magic_addrace) - + sizeof(sd->magic_addclass) - + sizeof(sd->magic_addsize) - + sizeof(sd->magic_atk_ele) - + sizeof(sd->magic_subsize) - + sizeof(sd->critaddrace) - + sizeof(sd->expaddrace) - + sizeof(sd->expaddclass) - + sizeof(sd->ignore_mdef_by_race) - + sizeof(sd->ignore_mdef_by_class) - + sizeof(sd->ignore_def_by_race) - + sizeof(sd->ignore_def_by_class) - + sizeof(sd->sp_gain_race) - + sizeof(sd->magic_addrace2) - + sizeof(sd->ignore_mdef_by_race2) - + sizeof(sd->dropaddrace) - + sizeof(sd->dropaddclass) - + sizeof(sd->magic_subdefele) - ); + sd->indexed_bonus = {}; memset (&sd->right_weapon.overrefine, 0, sizeof(sd->right_weapon) - sizeof(sd->right_weapon.atkmods)); memset (&sd->left_weapon.overrefine, 0, sizeof(sd->left_weapon) - sizeof(sd->left_weapon.atkmods)); @@ -4095,8 +4053,8 @@ int status_calc_pc_sub(struct map_session_data* sd, enum e_status_calc_opt opt) } // Store equipment script bonuses - memcpy(sd->param_equip,sd->param_bonus,sizeof(sd->param_equip)); - memset(sd->param_bonus, 0, sizeof(sd->param_bonus)); + memcpy(sd->indexed_bonus.param_equip,sd->indexed_bonus.param_bonus,sizeof(sd->indexed_bonus.param_equip)); + memset(sd->indexed_bonus.param_bonus, 0, sizeof(sd->indexed_bonus.param_bonus)); base_status->def += (refinedef+50)/100; @@ -4276,17 +4234,17 @@ int status_calc_pc_sub(struct map_session_data* sd, enum e_status_calc_opt opt) base_status->int_ += 20; // Bonuses from cards and equipment as well as base stat, remember to avoid overflows. - i = base_status->str + sd->status.str + sd->param_bonus[0] + sd->param_equip[0]; + i = base_status->str + sd->status.str + sd->indexed_bonus.param_bonus[0] + sd->indexed_bonus.param_equip[0]; base_status->str = cap_value(i,0,USHRT_MAX); - i = base_status->agi + sd->status.agi + sd->param_bonus[1] + sd->param_equip[1]; + i = base_status->agi + sd->status.agi + sd->indexed_bonus.param_bonus[1] + sd->indexed_bonus.param_equip[1]; base_status->agi = cap_value(i,0,USHRT_MAX); - i = base_status->vit + sd->status.vit + sd->param_bonus[2] + sd->param_equip[2]; + i = base_status->vit + sd->status.vit + sd->indexed_bonus.param_bonus[2] + sd->indexed_bonus.param_equip[2]; base_status->vit = cap_value(i,0,USHRT_MAX); - i = base_status->int_+ sd->status.int_+ sd->param_bonus[3] + sd->param_equip[3]; + i = base_status->int_+ sd->status.int_+ sd->indexed_bonus.param_bonus[3] + sd->indexed_bonus.param_equip[3]; base_status->int_ = cap_value(i,0,USHRT_MAX); - i = base_status->dex + sd->status.dex + sd->param_bonus[4] + sd->param_equip[4]; + i = base_status->dex + sd->status.dex + sd->indexed_bonus.param_bonus[4] + sd->indexed_bonus.param_equip[4]; base_status->dex = cap_value(i,0,USHRT_MAX); - i = base_status->luk + sd->status.luk + sd->param_bonus[5] + sd->param_equip[5]; + i = base_status->luk + sd->status.luk + sd->indexed_bonus.param_bonus[5] + sd->indexed_bonus.param_equip[5]; base_status->luk = cap_value(i,0,USHRT_MAX); if (sd->special_state.no_walk_delay) { @@ -4557,10 +4515,10 @@ int status_calc_pc_sub(struct map_session_data* sd, enum e_status_calc_opt opt) // Anti-element and anti-race if((skill=pc_checkskill(sd,CR_TRUST))>0) - sd->subele[ELE_HOLY] += skill*5; + sd->indexed_bonus.subele[ELE_HOLY] += skill*5; if((skill=pc_checkskill(sd,BS_SKINTEMPER))>0) { - sd->subele[ELE_NEUTRAL] += skill; - sd->subele[ELE_FIRE] += skill*5; + sd->indexed_bonus.subele[ELE_NEUTRAL] += skill; + sd->indexed_bonus.subele[ELE_FIRE] += skill*5; } if((skill=pc_checkskill(sd,SA_DRAGONOLOGY))>0) { #ifdef RENEWAL @@ -4570,31 +4528,31 @@ int status_calc_pc_sub(struct map_session_data* sd, enum e_status_calc_opt opt) #endif sd->right_weapon.addrace[RC_DRAGON]+=skill; sd->left_weapon.addrace[RC_DRAGON]+=skill; - sd->magic_addrace[RC_DRAGON]+=skill; - sd->subrace[RC_DRAGON]+=skill; + sd->indexed_bonus.magic_addrace[RC_DRAGON]+=skill; + sd->indexed_bonus.subrace[RC_DRAGON]+=skill; } if ((skill = pc_checkskill(sd, AB_EUCHARISTICA)) > 0) { sd->right_weapon.addrace[RC_DEMON] += skill; sd->right_weapon.addele[ELE_DARK] += skill; sd->left_weapon.addrace[RC_DEMON] += skill; sd->left_weapon.addele[ELE_DARK] += skill; - sd->magic_addrace[RC_DEMON] += skill; - sd->magic_addele[ELE_DARK] += skill; - sd->subrace[RC_DEMON] += skill; - sd->subele[ELE_DARK] += skill; + sd->indexed_bonus.magic_addrace[RC_DEMON] += skill; + sd->indexed_bonus.magic_addele[ELE_DARK] += skill; + sd->indexed_bonus.subrace[RC_DEMON] += skill; + sd->indexed_bonus.subele[ELE_DARK] += skill; } if(sc->count) { if(sc->data[SC_CONCENTRATE]) { // Update the card-bonus data - sc->data[SC_CONCENTRATE]->val3 = sd->param_bonus[1]; // Agi - sc->data[SC_CONCENTRATE]->val4 = sd->param_bonus[4]; // Dex + sc->data[SC_CONCENTRATE]->val3 = sd->indexed_bonus.param_bonus[1]; // Agi + sc->data[SC_CONCENTRATE]->val4 = sd->indexed_bonus.param_bonus[4]; // Dex } if(sc->data[SC_SIEGFRIED]) { i = sc->data[SC_SIEGFRIED]->val2; - sd->subele[ELE_WATER] += i; - sd->subele[ELE_EARTH] += i; - sd->subele[ELE_FIRE] += i; - sd->subele[ELE_WIND] += i; + sd->indexed_bonus.subele[ELE_WATER] += i; + sd->indexed_bonus.subele[ELE_EARTH] += i; + sd->indexed_bonus.subele[ELE_FIRE] += i; + sd->indexed_bonus.subele[ELE_WIND] += i; #ifndef RENEWAL sd->subele[ELE_POISON] += i; sd->subele[ELE_HOLY] += i; @@ -4610,20 +4568,20 @@ int status_calc_pc_sub(struct map_session_data* sd, enum e_status_calc_opt opt) sd->right_weapon.addele[ELE_UNDEAD] += i; sd->left_weapon.addele[ELE_DARK] += i; sd->left_weapon.addele[ELE_UNDEAD] += i; - sd->magic_atk_ele[ELE_HOLY] += sc->data[SC_BASILICA]->val1 * 3; + sd->indexed_bonus.magic_atk_ele[ELE_HOLY] += sc->data[SC_BASILICA]->val1 * 3; } if (sc->data[SC_FIREWEAPON]) - sd->magic_atk_ele[ELE_FIRE] += sc->data[SC_FIREWEAPON]->val1; + sd->indexed_bonus.magic_atk_ele[ELE_FIRE] += sc->data[SC_FIREWEAPON]->val1; if (sc->data[SC_WINDWEAPON]) - sd->magic_atk_ele[ELE_WIND] += sc->data[SC_WINDWEAPON]->val1; + sd->indexed_bonus.magic_atk_ele[ELE_WIND] += sc->data[SC_WINDWEAPON]->val1; if (sc->data[SC_WATERWEAPON]) - sd->magic_atk_ele[ELE_WATER] += sc->data[SC_WATERWEAPON]->val1; + sd->indexed_bonus.magic_atk_ele[ELE_WATER] += sc->data[SC_WATERWEAPON]->val1; if (sc->data[SC_EARTHWEAPON]) - sd->magic_atk_ele[ELE_EARTH] += sc->data[SC_EARTHWEAPON]->val1; + sd->indexed_bonus.magic_atk_ele[ELE_EARTH] += sc->data[SC_EARTHWEAPON]->val1; #endif if(sc->data[SC_PROVIDENCE]) { - sd->subele[ELE_HOLY] += sc->data[SC_PROVIDENCE]->val2; - sd->subrace[RC_DEMON] += sc->data[SC_PROVIDENCE]->val2; + sd->indexed_bonus.subele[ELE_HOLY] += sc->data[SC_PROVIDENCE]->val2; + sd->indexed_bonus.subrace[RC_DEMON] += sc->data[SC_PROVIDENCE]->val2; } if (sc->data[SC_GEFFEN_MAGIC1]) { sd->right_weapon.addrace[RC_PLAYER_HUMAN] += sc->data[SC_GEFFEN_MAGIC1]->val1; @@ -4632,70 +4590,70 @@ int status_calc_pc_sub(struct map_session_data* sd, enum e_status_calc_opt opt) sd->left_weapon.addrace[RC_DEMIHUMAN] += sc->data[SC_GEFFEN_MAGIC1]->val1; } if (sc->data[SC_GEFFEN_MAGIC2]) { - sd->magic_addrace[RC_PLAYER_HUMAN] += sc->data[SC_GEFFEN_MAGIC2]->val1; - sd->magic_addrace[RC_DEMIHUMAN] += sc->data[SC_GEFFEN_MAGIC2]->val1; + sd->indexed_bonus.magic_addrace[RC_PLAYER_HUMAN] += sc->data[SC_GEFFEN_MAGIC2]->val1; + sd->indexed_bonus.magic_addrace[RC_DEMIHUMAN] += sc->data[SC_GEFFEN_MAGIC2]->val1; } if(sc->data[SC_GEFFEN_MAGIC3]) { - sd->subrace[RC_PLAYER_HUMAN] += sc->data[SC_GEFFEN_MAGIC3]->val1; - sd->subrace[RC_DEMIHUMAN] += sc->data[SC_GEFFEN_MAGIC3]->val1; + sd->indexed_bonus.subrace[RC_PLAYER_HUMAN] += sc->data[SC_GEFFEN_MAGIC3]->val1; + sd->indexed_bonus.subrace[RC_DEMIHUMAN] += sc->data[SC_GEFFEN_MAGIC3]->val1; } if(sc->data[SC_ARMOR_ELEMENT_WATER]) { // This status change should grant card-type elemental resist. - sd->subele[ELE_WATER] += sc->data[SC_ARMOR_ELEMENT_WATER]->val1; - sd->subele[ELE_EARTH] += sc->data[SC_ARMOR_ELEMENT_WATER]->val2; - sd->subele[ELE_FIRE] += sc->data[SC_ARMOR_ELEMENT_WATER]->val3; - sd->subele[ELE_WIND] += sc->data[SC_ARMOR_ELEMENT_WATER]->val4; + sd->indexed_bonus.subele[ELE_WATER] += sc->data[SC_ARMOR_ELEMENT_WATER]->val1; + sd->indexed_bonus.subele[ELE_EARTH] += sc->data[SC_ARMOR_ELEMENT_WATER]->val2; + sd->indexed_bonus.subele[ELE_FIRE] += sc->data[SC_ARMOR_ELEMENT_WATER]->val3; + sd->indexed_bonus.subele[ELE_WIND] += sc->data[SC_ARMOR_ELEMENT_WATER]->val4; } if(sc->data[SC_ARMOR_ELEMENT_EARTH]) { // This status change should grant card-type elemental resist. - sd->subele[ELE_WATER] += sc->data[SC_ARMOR_ELEMENT_EARTH]->val1; - sd->subele[ELE_EARTH] += sc->data[SC_ARMOR_ELEMENT_EARTH]->val2; - sd->subele[ELE_FIRE] += sc->data[SC_ARMOR_ELEMENT_EARTH]->val3; - sd->subele[ELE_WIND] += sc->data[SC_ARMOR_ELEMENT_EARTH]->val4; + sd->indexed_bonus.subele[ELE_WATER] += sc->data[SC_ARMOR_ELEMENT_EARTH]->val1; + sd->indexed_bonus.subele[ELE_EARTH] += sc->data[SC_ARMOR_ELEMENT_EARTH]->val2; + sd->indexed_bonus.subele[ELE_FIRE] += sc->data[SC_ARMOR_ELEMENT_EARTH]->val3; + sd->indexed_bonus.subele[ELE_WIND] += sc->data[SC_ARMOR_ELEMENT_EARTH]->val4; } if(sc->data[SC_ARMOR_ELEMENT_FIRE]) { // This status change should grant card-type elemental resist. - sd->subele[ELE_WATER] += sc->data[SC_ARMOR_ELEMENT_FIRE]->val1; - sd->subele[ELE_EARTH] += sc->data[SC_ARMOR_ELEMENT_FIRE]->val2; - sd->subele[ELE_FIRE] += sc->data[SC_ARMOR_ELEMENT_FIRE]->val3; - sd->subele[ELE_WIND] += sc->data[SC_ARMOR_ELEMENT_FIRE]->val4; + sd->indexed_bonus.subele[ELE_WATER] += sc->data[SC_ARMOR_ELEMENT_FIRE]->val1; + sd->indexed_bonus.subele[ELE_EARTH] += sc->data[SC_ARMOR_ELEMENT_FIRE]->val2; + sd->indexed_bonus.subele[ELE_FIRE] += sc->data[SC_ARMOR_ELEMENT_FIRE]->val3; + sd->indexed_bonus.subele[ELE_WIND] += sc->data[SC_ARMOR_ELEMENT_FIRE]->val4; } if(sc->data[SC_ARMOR_ELEMENT_WIND]) { // This status change should grant card-type elemental resist. - sd->subele[ELE_WATER] += sc->data[SC_ARMOR_ELEMENT_WIND]->val1; - sd->subele[ELE_EARTH] += sc->data[SC_ARMOR_ELEMENT_WIND]->val2; - sd->subele[ELE_FIRE] += sc->data[SC_ARMOR_ELEMENT_WIND]->val3; - sd->subele[ELE_WIND] += sc->data[SC_ARMOR_ELEMENT_WIND]->val4; + sd->indexed_bonus.subele[ELE_WATER] += sc->data[SC_ARMOR_ELEMENT_WIND]->val1; + sd->indexed_bonus.subele[ELE_EARTH] += sc->data[SC_ARMOR_ELEMENT_WIND]->val2; + sd->indexed_bonus.subele[ELE_FIRE] += sc->data[SC_ARMOR_ELEMENT_WIND]->val3; + sd->indexed_bonus.subele[ELE_WIND] += sc->data[SC_ARMOR_ELEMENT_WIND]->val4; } if(sc->data[SC_ARMOR_RESIST]) { // Undead Scroll - sd->subele[ELE_WATER] += sc->data[SC_ARMOR_RESIST]->val1; - sd->subele[ELE_EARTH] += sc->data[SC_ARMOR_RESIST]->val2; - sd->subele[ELE_FIRE] += sc->data[SC_ARMOR_RESIST]->val3; - sd->subele[ELE_WIND] += sc->data[SC_ARMOR_RESIST]->val4; + sd->indexed_bonus.subele[ELE_WATER] += sc->data[SC_ARMOR_RESIST]->val1; + sd->indexed_bonus.subele[ELE_EARTH] += sc->data[SC_ARMOR_RESIST]->val2; + sd->indexed_bonus.subele[ELE_FIRE] += sc->data[SC_ARMOR_RESIST]->val3; + sd->indexed_bonus.subele[ELE_WIND] += sc->data[SC_ARMOR_RESIST]->val4; } if( sc->data[SC_FIRE_CLOAK_OPTION] ) { i = sc->data[SC_FIRE_CLOAK_OPTION]->val2; - sd->subele[ELE_FIRE] += i; - sd->subele[ELE_WATER] -= i; + sd->indexed_bonus.subele[ELE_FIRE] += i; + sd->indexed_bonus.subele[ELE_WATER] -= i; } if( sc->data[SC_WATER_DROP_OPTION] ) { i = sc->data[SC_WATER_DROP_OPTION]->val2; - sd->subele[ELE_WATER] += i; - sd->subele[ELE_WIND] -= i; + sd->indexed_bonus.subele[ELE_WATER] += i; + sd->indexed_bonus.subele[ELE_WIND] -= i; } if( sc->data[SC_WIND_CURTAIN_OPTION] ) { i = sc->data[SC_WIND_CURTAIN_OPTION]->val2; - sd->subele[ELE_WIND] += i; - sd->subele[ELE_EARTH] -= i; + sd->indexed_bonus.subele[ELE_WIND] += i; + sd->indexed_bonus.subele[ELE_EARTH] -= i; } if( sc->data[SC_STONE_SHIELD_OPTION] ) { i = sc->data[SC_STONE_SHIELD_OPTION]->val2; - sd->subele[ELE_EARTH] += i; - sd->subele[ELE_FIRE] -= i; + sd->indexed_bonus.subele[ELE_EARTH] += i; + sd->indexed_bonus.subele[ELE_FIRE] -= i; } if (sc->data[SC_MTF_MLEATKED] ) - sd->subele[ELE_NEUTRAL] += sc->data[SC_MTF_MLEATKED]->val3; + sd->indexed_bonus.subele[ELE_NEUTRAL] += sc->data[SC_MTF_MLEATKED]->val3; if (sc->data[SC_MTF_CRIDAMAGE]) sd->bonus.crit_atk_rate += sc->data[SC_MTF_CRIDAMAGE]->val1; if (sc->data[SC_GLASTHEIM_ATK]) { - sd->ignore_mdef_by_race[RC_UNDEAD] += sc->data[SC_GLASTHEIM_ATK]->val1; - sd->ignore_mdef_by_race[RC_DEMON] += sc->data[SC_GLASTHEIM_ATK]->val1; + sd->indexed_bonus.ignore_mdef_by_race[RC_UNDEAD] += sc->data[SC_GLASTHEIM_ATK]->val1; + sd->indexed_bonus.ignore_mdef_by_race[RC_DEMON] += sc->data[SC_GLASTHEIM_ATK]->val1; } if (sc->data[SC_LAUDARAMUS]) sd->bonus.crit_atk_rate += 5 * sc->data[SC_LAUDARAMUS]->val1; @@ -4704,8 +4662,8 @@ int status_calc_pc_sub(struct map_session_data* sd, enum e_status_calc_opt opt) sd->bonus.crit_atk_rate += 2 * sc->data[SC_FORTUNE]->val1; #endif if (sc->data[SC_SYMPHONYOFLOVER]) { - sd->subele[ELE_GHOST] += sc->data[SC_SYMPHONYOFLOVER]->val1 * 3; - sd->subele[ELE_HOLY] += sc->data[SC_SYMPHONYOFLOVER]->val1 * 3; + sd->indexed_bonus.subele[ELE_GHOST] += sc->data[SC_SYMPHONYOFLOVER]->val1 * 3; + sd->indexed_bonus.subele[ELE_HOLY] += sc->data[SC_SYMPHONYOFLOVER]->val1 * 3; } if (sc->data[SC_PYREXIA] && sc->data[SC_PYREXIA]->val3 == 0) sd->bonus.crit_atk_rate += sc->data[SC_PYREXIA]->val2; @@ -10981,8 +10939,8 @@ int status_change_start(struct block_list* src, struct block_list* bl,enum sc_ty case SC_CONCENTRATE: val2 = 2 + val1; if (sd) { // Store the card-bonus data that should not count in the % - val3 = sd->param_bonus[1]; // Agi - val4 = sd->param_bonus[4]; // Dex + val3 = sd->indexed_bonus.param_bonus[1]; // Agi + val4 = sd->indexed_bonus.param_bonus[4]; // Dex } else val3 = val4 = 0; break; From 6328383578249534ea233b7a72a48f6b1a466da9 Mon Sep 17 00:00:00 2001 From: Lemongrass3110 Date: Mon, 19 Oct 2020 14:10:55 +0200 Subject: [PATCH 12/45] Follow up to 8e84f0e Fixed pre-renewal compilation --- src/map/status.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/map/status.cpp b/src/map/status.cpp index c936dae839..434223ddec 100644 --- a/src/map/status.cpp +++ b/src/map/status.cpp @@ -4262,8 +4262,8 @@ int status_calc_pc_sub(struct map_session_data* sd, enum e_status_calc_opt opt) // Base batk value is set in status_calc_misc #ifndef RENEWAL // !FIXME: Weapon-type bonus (Why is the weapon_atk bonus applied to base attack?) - if (sd->status.weapon < MAX_WEAPON_TYPE && sd->weapon_atk[sd->status.weapon]) - base_status->batk += sd->weapon_atk[sd->status.weapon]; + if (sd->status.weapon < MAX_WEAPON_TYPE && sd->indexed_bonus.weapon_atk[sd->status.weapon]) + base_status->batk += sd->indexed_bonus.weapon_atk[sd->status.weapon]; // Absolute modifiers from passive skills if((skill=pc_checkskill(sd,BS_HILTBINDING))>0) base_status->batk += 4; @@ -4554,11 +4554,11 @@ int status_calc_pc_sub(struct map_session_data* sd, enum e_status_calc_opt opt) sd->indexed_bonus.subele[ELE_FIRE] += i; sd->indexed_bonus.subele[ELE_WIND] += i; #ifndef RENEWAL - sd->subele[ELE_POISON] += i; - sd->subele[ELE_HOLY] += i; - sd->subele[ELE_DARK] += i; - sd->subele[ELE_GHOST] += i; - sd->subele[ELE_UNDEAD] += i; + sd->indexed_bonus.subele[ELE_POISON] += i; + sd->indexed_bonus.subele[ELE_HOLY] += i; + sd->indexed_bonus.subele[ELE_DARK] += i; + sd->indexed_bonus.subele[ELE_GHOST] += i; + sd->indexed_bonus.subele[ELE_UNDEAD] += i; #endif } #ifdef RENEWAL From 7367714d40cf1ac2e768c57b6384f8f16418aa6a Mon Sep 17 00:00:00 2001 From: Aleos Date: Mon, 19 Oct 2020 08:49:57 -0400 Subject: [PATCH 13/45] Moves AUTOLOOT_DISTANCE macro define location (#5421) * Fixes #5375. * Moves the macro define for AUTOLOOT_DISTANCE to mob.hpp as mob.cpp requires this, not atcommand.cpp. Thanks to @vstumpf! --- src/map/atcommand.hpp | 6 ------ src/map/mob.hpp | 6 ++++++ 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/map/atcommand.hpp b/src/map/atcommand.hpp index 615bc38c70..5e6daae509 100644 --- a/src/map/atcommand.hpp +++ b/src/map/atcommand.hpp @@ -9,12 +9,6 @@ struct map_session_data; -//This is the distance at which @autoloot works, -//if the item drops farther from the player than this, -//it will not be autolooted. [Skotlex] -//Note: The range is unlimited unless this define is set. -//#define AUTOLOOT_DISTANCE AREA_SIZE - //global var extern char atcommand_symbol; extern char charcommand_symbol; diff --git a/src/map/mob.hpp b/src/map/mob.hpp index 5b47b8c6fa..7a7ef2a791 100644 --- a/src/map/mob.hpp +++ b/src/map/mob.hpp @@ -15,6 +15,12 @@ struct guardian_data; +//This is the distance at which @autoloot works, +//if the item drops farther from the player than this, +//it will not be autolooted. [Skotlex] +//Note: The range is unlimited unless this define is set. +//#define AUTOLOOT_DISTANCE AREA_SIZE + //The number of drops all mobs have and the max drop-slot that the steal skill will attempt to steal from. #define MAX_MOB_DROP 10 #define MAX_MVP_DROP 3 From aa4c1da4505b930de6420ab5a9fca811a5c4b170 Mon Sep 17 00:00:00 2001 From: Aleos Date: Mon, 19 Oct 2020 10:49:01 -0400 Subject: [PATCH 14/45] Adds Rebellion stat bonus for new job levels (#5461) * Fixes #5459. * Adds some missing job stat bonuses for Rebellion. Thanks to @Balferian! --- db/job_db2.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/db/job_db2.txt b/db/job_db2.txt index dd8219049d..582ebbc224 100644 --- a/db/job_db2.txt +++ b/db/job_db2.txt @@ -288,7 +288,7 @@ // Oboro 4212,5,0,4,0,2,3,0,1,6,0,5,1,2,0,4,6,3,0,1,5,2,0,6,3,4,0,5,0,2,0,1,4,0,5,4,0,3,5,1,0,2,4,1,0,5,6,2,1,0,5 // Rebellion -4215,0,5,0,4,0,3,5,4,2,6,0,0,3,4,0,2,5,4,3,6,0,0,3,5,1,4,2,0,0,6,3,0,5,4,1,0,0,5,0,2,6,0,5,3,4,0,0,0,0,1 +4215,0,5,0,4,0,3,5,4,2,6,0,0,3,4,0,2,5,4,3,6,0,0,3,5,1,4,2,0,0,6,3,0,5,4,1,0,0,5,0,2,6,0,5,3,4,0,0,0,0,1,2,6,0,4,5,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0 // Summoner 4218,5,0,3,0,5,3,0,2,4,0,2,4,5,0,2,4,5,0,2,4,5,0,6,3,5,0,2,0,6,0,4,5,0,6,0,4,6,0,2,0,5,4,3,0,5,6,3,2,0,5 // Baby Summoner @@ -308,7 +308,7 @@ // Baby Gunslinger 4228,5,6,0,6,0,5,0,0,0,0,5,6,0,0,0,0,5,0,0,0,6,0,0,0,5,0,0,0,0,0,6,1,0,0,5,0,0,0,0,0,1,0,0,0,5,0,0,0,0,1,6,4,0,0,5,0,0,0,2,3,4,5,6,1,0,0,0,0,0,0 // Baby Rebellion -4229,0,5,0,4,0,3,5,4,2,6,0,0,3,4,0,2,5,4,3,6,0,0,3,5,1,4,2,0,0,6,3,0,5,4,1,0,0,5,0,2,6,0,5,3,4,0,0,0,0,1 +4229,0,5,0,4,0,3,5,4,2,6,0,0,3,4,0,2,5,4,3,6,0,0,3,5,1,4,2,0,0,6,3,0,5,4,1,0,0,5,0,2,6,0,5,3,4,0,0,0,0,1,2,6,0,4,5,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0 // Baby Star Gladiator (Union) 4238,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,5,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2 //================================ From 3f36c0d60a7dc3691b46700d7a36ea82c85f9871 Mon Sep 17 00:00:00 2001 From: Aleos Date: Mon, 19 Oct 2020 14:04:36 -0400 Subject: [PATCH 15/45] Fixes damage reduction statuses/skills (#5453) * Resolves an issue with damage not being passed back to the parent function after it has been reduced by various statuses or skills. Thanks to @teededung! --- src/map/battle.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/map/battle.cpp b/src/map/battle.cpp index 07b62c436d..6f8da4f042 100644 --- a/src/map/battle.cpp +++ b/src/map/battle.cpp @@ -1053,12 +1053,12 @@ static void battle_absorb_damage(struct block_list *bl, struct Damage *d) { * @param target: Target of attack * @param sc: Status Change data * @param d: Damage data - * @param damage: Damage received + * @param damage: Damage received as a reference * @param skill_id: Skill ID * @param skill_lv: Skill level * @return True: Damage inflicted, False: Missed **/ -bool battle_status_block_damage(struct block_list *src, struct block_list *target, struct status_change *sc, struct Damage *d, int64 damage, uint16 skill_id, uint16 skill_lv) { +bool battle_status_block_damage(struct block_list *src, struct block_list *target, struct status_change *sc, struct Damage *d, int64 &damage, uint16 skill_id, uint16 skill_lv) { if (!src || !target || !sc || !d) return true; @@ -5281,8 +5281,9 @@ static void battle_calc_attack_plant(struct Damage* wd, struct block_list *src,s if (attack_hits && target->type == BL_MOB) { struct status_change *sc = status_get_sc(target); + int64 damage_dummy = 1; - if (sc && !battle_status_block_damage(src, target, sc, wd, 1, skill_id, skill_lv)) { // Statuses that reduce damage to 0. + if (sc && !battle_status_block_damage(src, target, sc, wd, damage_dummy, skill_id, skill_lv)) { // Statuses that reduce damage to 0. wd->damage = wd->damage2 = 0; return; } From f8dc145cd2c0bcb0422cb67e68b752a78d2933dc Mon Sep 17 00:00:00 2001 From: Aleos Date: Mon, 19 Oct 2020 14:54:57 -0400 Subject: [PATCH 16/45] Corrects a couple items (#5437) * Fixes #5420. * Fixes Robot's Arm, Gigantic Blade, and Tornado Axe buy/sell price, range, and job equip. Thanks to @mazvi and @Atemo! --- db/re/item_db.txt | 6 +++--- sql-files/item_db_re.sql | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/db/re/item_db.txt b/db/re/item_db.txt index 1e844da37b..f5031fdc3a 100644 --- a/db/re/item_db.txt +++ b/db/re/item_db.txt @@ -8973,7 +8973,7 @@ 16030,Pilebuncker_S,Pile Bunker S,5,20,,3000,400,,1,1,0x00000400,56,2,2,4,130,1,8,{ bonus bAspdRate,getrefine()/2; },{},{} 16031,Pilebuncker_P,Pile Bunker P,5,20,,4000,450,,1,,0x00000400,56,2,2,4,130,1,8,{ bonus bBaseAtk,getrefine()*5; },{},{} 16032,Pilebuncker_T,Pile Bunker T,5,20,,3500,400,,1,1,0x00000400,56,2,2,4,130,1,8,{ bonus bUseSPrate,getrefine()*-1; },{},{} -16033,Robot's_Arm,Robot's Mechanical Arm,5,20,,3000,195,,1,2,0x00000400,56,2,2,4,130,1,8,{ bonus bUnbreakableWeapon; bonus bCritical,20; },{},{} +16033,Robot's_Arm,Robot's Arm,5,30000,,3000,195,,1,2,0x0004C5B2,56,2,2,4,130,1,8,{ bonus bUnbreakableWeapon; 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_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon; },{},{} 16036,Ru_Blue_Mace,Blue Mace,5,10,,1500,170,,1,1,0x00008000,56,2,2,3,100,1,8,{ bonus bVit,5; bonus bInt,5; },{},{} @@ -11310,7 +11310,7 @@ 21008,Small_Karasuma,Small Karasuma,5,20,,1000,170,,1,2,0x00004082,63,2,34,4,50,1,3,{ bonus bCritAtkRate,getrefine()*2; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,50; },{},{} 21009,Thanos_Great_Sword,Thanos Great Sword,5,10,,1300,280:120,,1,1,0x00004082,56,2,34,4,120,1,3,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000; },{},{ heal -1000,0; } 21010,Tw_Sword_Of_Evil_Slayer,Evil Slayer Slaher Sword,5,0,,2000,225,,1,1,0x00004082,63,2,34,3,100,1,3,{ bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; .@r = getrefine(); if(.@r>=9) { .@dmg = 5; if(.@r>=12) { .@dmg += 7; } bonus2 bAddClass,Class_All,.@dmg; } },{},{} -21011,Giant_Blade,Gigantic Blade,5,10,,5000,300,,1,1,0x00004082,56,2,34,4,130,1,3,{ bonus bUnbreakableWeapon; bonus bAspdRate,-5; bonus bCritAtkRate,getrefine(); if(readparam(bStr)<=110){ bonus bAtk,-250; } },{},{} +21011,Giant_Blade,Gigantic Blade,5,30000,,5000,300,,1,1,0x00004082,56,2,34,4,130,1,3,{ bonus bUnbreakableWeapon; bonus bAspdRate,-5; bonus bCritAtkRate,getrefine(); if(readparam(bStr)<=110){ bonus bAtk,-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,0x00004082,56,2,34,4,100,1,3,{},{},{} @@ -12571,7 +12571,7 @@ // New Axes //=================================================================== 28100,Thanos_Axe,Thanos Axe,5,10,,4000,300:80,,1,1,0x000444A2,56,2,34,4,120,1,7,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000; },{},{ heal -1000,0; } -28101,Tornado_Axe,Axe Tornado,5,10,,4000,320,,,1,0x00000400,56,2,34,4,100,1,7,{ bonus bAtkEle,Ele_Wind; bonus2 bSkillCooldown,"NC_AXETORNADO",-1000; },{},{} +28101,Tornado_Axe,Tornado Axe,5,30000,,4000,320,,1,1,0x000444A2,56,2,34,4,100,1,7,{ bonus bAtkEle,Ele_Wind; 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_Human,30; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon; },{},{} 28103,Ru_Blue_Axe_M,Blue Twohand Axe,5,10,,3000,330,,1,1,0x00000400,56,2,34,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; },{},{} diff --git a/sql-files/item_db_re.sql b/sql-files/item_db_re.sql index 8ad9489d09..165b6bb0e2 100644 --- a/sql-files/item_db_re.sql +++ b/sql-files/item_db_re.sql @@ -9005,7 +9005,7 @@ REPLACE INTO `item_db_re` VALUES (16029,'Noble_Cross','Noble Cross',5,10,NULL,15 REPLACE INTO `item_db_re` VALUES (16030,'Pilebuncker_S','Pile Bunker S',5,20,NULL,3000,'400',NULL,1,1,0x00000400,56,2,2,4,'130',1,8,'bonus bAspdRate,getrefine()/2;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (16031,'Pilebuncker_P','Pile Bunker P',5,20,NULL,4000,'450',NULL,1,NULL,0x00000400,56,2,2,4,'130',1,8,'bonus bBaseAtk,getrefine()*5;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (16032,'Pilebuncker_T','Pile Bunker T',5,20,NULL,3500,'400',NULL,1,1,0x00000400,56,2,2,4,'130',1,8,'bonus bUseSPrate,getrefine()*-1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16033,'Robot\'s_Arm','Robot\'s Mechanical Arm',5,20,NULL,3000,'195',NULL,1,2,0x00000400,56,2,2,4,'130',1,8,'bonus bUnbreakableWeapon; bonus bCritical,20;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (16033,'Robot\'s_Arm','Robot\'s Arm',5,30000,NULL,3000,'195',NULL,1,2,0x0004C5B2,56,2,2,4,'130',1,8,'bonus bUnbreakableWeapon; bonus bCritical,20;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (16034,'Half_Mjolnir','Half Mjolnir',5,20,NULL,6000,'350',NULL,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;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (16035,'Half_BF_Morning_Star1','Half BF Morning Star1',5,20,NULL,0,'105',NULL,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_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (16036,'Ru_Blue_Mace','Blue Mace',5,10,NULL,1500,'170',NULL,1,1,0x00008000,56,2,2,3,'100',1,8,'bonus bVit,5; bonus bInt,5;',NULL,NULL); @@ -11342,7 +11342,7 @@ REPLACE INTO `item_db_re` VALUES (21007,'Heavy_Sword','Heavy Greatsword',5,20,NU REPLACE INTO `item_db_re` VALUES (21008,'Small_Karasuma','Small Karasuma',5,20,NULL,1000,'170',NULL,1,2,0x00004082,63,2,34,4,'50',1,3,'bonus bCritAtkRate,getrefine()*2; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,50;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (21009,'Thanos_Great_Sword','Thanos Great Sword',5,10,NULL,1300,'280:120',NULL,1,1,0x00004082,56,2,34,4,'120',1,3,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000;',NULL,'heal -1000,0;'); REPLACE INTO `item_db_re` VALUES (21010,'Tw_Sword_Of_Evil_Slayer','Evil Slayer Slaher Sword',5,0,NULL,2000,'225',NULL,1,1,0x00004082,63,2,34,3,'100',1,3,'bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; .@r = getrefine(); if(.@r>=9) { .@dmg = 5; if(.@r>=12) { .@dmg += 7; } bonus2 bAddClass,Class_All,.@dmg; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (21011,'Giant_Blade','Gigantic Blade',5,10,NULL,5000,'300',NULL,1,1,0x00004082,56,2,34,4,'130',1,3,'bonus bUnbreakableWeapon; bonus bAspdRate,-5; bonus bCritAtkRate,getrefine(); if(readparam(bStr)<=110){ bonus bAtk,-250; }',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (21011,'Giant_Blade','Gigantic Blade',5,30000,NULL,5000,'300',NULL,1,1,0x00004082,56,2,34,4,'130',1,3,'bonus bUnbreakableWeapon; bonus bAspdRate,-5; bonus bCritAtkRate,getrefine(); if(readparam(bStr)<=110){ bonus bAtk,-250; }',NULL,NULL); REPLACE INTO `item_db_re` VALUES (21012,'Some_Wizard_MagicSword','Some Wizard MagicSword',5,0,NULL,2200,'200:150',NULL,1,2,0x00000080,56,2,34,4,'110',1,3,NULL,NULL,NULL); REPLACE INTO `item_db_re` VALUES (21013,'Hetairoi_Sword','Hetairoi Sword',5,0,NULL,2200,'210',NULL,1,2,0x00000080,56,2,34,4,'110',1,3,'bonus2 bSkillUseSP,"KN_AUTOCOUNTER",2; bonus2 bSkillUseSP,"LK_PARRYING",25;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (21014,'Infinity_Two-Handed_Sword','Infinity Two-Handed Sword',5,20,NULL,500,'230',NULL,1,1,0x00004082,56,2,34,4,'100',1,3,NULL,NULL,NULL); @@ -12603,7 +12603,7 @@ REPLACE INTO `item_db_re` VALUES (28044,'Agudo_Filo','Agudo Filo',5,20,NULL,2000 # New Axes #=================================================================== REPLACE INTO `item_db_re` VALUES (28100,'Thanos_Axe','Thanos Axe',5,10,NULL,4000,'300:80',NULL,1,1,0x000444A2,56,2,34,4,'120',1,7,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000;',NULL,'heal -1000,0;'); -REPLACE INTO `item_db_re` VALUES (28101,'Tornado_Axe','Axe Tornado',5,10,NULL,4000,'320',NULL,NULL,1,0x00000400,56,2,34,4,'100',1,7,'bonus bAtkEle,Ele_Wind; bonus2 bSkillCooldown,"NC_AXETORNADO",-1000;',NULL,NULL); +REPLACE INTO `item_db_re` VALUES (28101,'Tornado_Axe','Tornado Axe',5,30000,NULL,4000,'320',NULL,1,1,0x000444A2,56,2,34,4,'100',1,7,'bonus bAtkEle,Ele_Wind; bonus2 bSkillCooldown,"NC_AXETORNADO",-1000;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (28102,'Half_BF_Two_Handed_Axe1','Half BF Two Handed Axe1',5,20,NULL,0,'200',NULL,1,0,0x000444A2,63,2,34,3,'80',1,7,'bonus bStr,3; bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player_Human,30; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (28103,'Ru_Blue_Axe_M','Blue Twohand Axe',5,10,NULL,3000,'330',NULL,1,1,0x00000400,56,2,34,3,'1',1,7,'bonus bStr,5; bonus bVit,5;',NULL,NULL); REPLACE INTO `item_db_re` VALUES (28104,'Ru_Gold_Axe_M','Ru Gold Axe M',5,0,NULL,3000,'330',NULL,1,2,0x00000400,56,2,34,3,'120',1,7,'bonus bStr,8; bonus bVit,8;',NULL,NULL); From ef33ba1fca17febfe0fb465d78b55c8157cef9cb Mon Sep 17 00:00:00 2001 From: Aleos Date: Mon, 19 Oct 2020 15:24:47 -0400 Subject: [PATCH 17/45] Fixes Stellar Mark causing a map crash (#5438) * Fixes #5429. * Follow up to 6ba869e. * Fixes a potential crash from Stellar Mark. Thanks to @ecdarreola! --- src/map/skill.cpp | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/map/skill.cpp b/src/map/skill.cpp index bf3a51283e..57c1b8663d 100755 --- a/src/map/skill.cpp +++ b/src/map/skill.cpp @@ -6266,9 +6266,6 @@ int skill_castend_damage_id (struct block_list* src, struct block_list *bl, uint return 1; } - // Attack the target and return the damage result for the upcoming check. - int64 fk_damage = skill_attack(BF_WEAPON, src, src, bl, skill_id, skill_lv, tick, flag); - if (sd) { // Tagging the target. int i; @@ -6285,7 +6282,7 @@ int skill_castend_damage_id (struct block_list* src, struct block_list *bl, uint // Tag the target only if damage was done. If it deals no damage, it counts as a miss and won't tag. // Note: Not sure if it works like this in official but you can't mark on something you can't // hit, right? For now well just use this logic until we can get a confirm on if it does this or not. [Rytech] - if (tmd->status.hp > 0) { // Add the ID of the tagged target to the player's tag list and start the status on the target. + if (skill_attack(BF_WEAPON, src, src, bl, skill_id, skill_lv, tick, flag) > 0) { // Add the ID of the tagged target to the player's tag list and start the status on the target. sd->stellar_mark[i] = bl->id; // Val4 flags if the status was applied by a player or a monster. @@ -6296,7 +6293,7 @@ int skill_castend_damage_id (struct block_list* src, struct block_list *bl, uint sc_start4(src, bl, SC_FLASHKICK, 100, src->id, i, skill_lv, 1, skill_get_time(skill_id, skill_lv)); } } else if (md) { // Monsters can't track with this skill. Just give the status. - if (fk_damage > 0) + if (skill_attack(BF_WEAPON, src, src, bl, skill_id, skill_lv, tick, flag) > 0) sc_start4(src, bl, SC_FLASHKICK, 100, 0, 0, skill_lv, 2, skill_get_time(skill_id, skill_lv)); } } From 323db7e6618b53d4c2c2f0ddfe9b4b5709becf7b Mon Sep 17 00:00:00 2001 From: Aleos Date: Mon, 19 Oct 2020 16:03:48 -0400 Subject: [PATCH 18/45] Fixes Overheat behavior (#5455) * Fixes #5395. * Fixes Overheat not properly accounting for the Mechanic during battle calculations. * Minor cleanups and improvements. Thanks to @LotusRO! Co-authored-by: Lemongrass3110 --- src/map/battle.cpp | 9 +++------ src/map/pc.cpp | 12 ++++++------ src/map/status.cpp | 6 +++--- 3 files changed, 12 insertions(+), 15 deletions(-) diff --git a/src/map/battle.cpp b/src/map/battle.cpp index 6f8da4f042..abf5d2fc62 100644 --- a/src/map/battle.cpp +++ b/src/map/battle.cpp @@ -1351,7 +1351,7 @@ bool battle_status_block_damage(struct block_list *src, struct block_list *targe */ int64 battle_calc_damage(struct block_list *src,struct block_list *bl,struct Damage *d,int64 damage,uint16 skill_id,uint16 skill_lv) { - struct map_session_data *sd = NULL; + struct map_session_data *sd = NULL, *tsd = BL_CAST(BL_PC, src); struct status_change *sc; struct status_change_entry *sce; int div_ = d->div_, flag = d->flag; @@ -1435,7 +1435,6 @@ int64 battle_calc_damage(struct block_list *src,struct block_list *bl,struct Dam #endif if( damage ) { - struct map_session_data *tsd = BL_CAST(BL_PC, src); if( sc->data[SC_DEEPSLEEP] ) { damage += damage / 2; // 1.5 times more damage while in Deep Sleep. status_change_end(bl,SC_DEEPSLEEP,INVALID_TIMER); @@ -1689,8 +1688,6 @@ int64 battle_calc_damage(struct block_list *src,struct block_list *bl,struct Dam if (sc->data[SC_UNLIMITEDHUMMINGVOICE] && flag&BF_MAGIC) damage += damage * sc->data[SC_UNLIMITEDHUMMINGVOICE]->val3 / 100; - map_session_data *tsd = (map_session_data *)src; - if (tsd && (sce = sc->data[SC_SOULREAPER])) { if (rnd()%100 < sce->val2 && tsd->soulball < MAX_SOUL_BALL) { clif_specialeffect(src, 1208, AREA); @@ -1725,7 +1722,7 @@ int64 battle_calc_damage(struct block_list *src,struct block_list *bl,struct Dam damage = div_; } - if (sd && pc_ismadogear(sd)) { + if (tsd && pc_ismadogear(tsd)) { short element = skill_get_ele(skill_id, skill_lv); if( !skill_id || element == ELE_WEAPON ) { //Take weapon's element @@ -1739,7 +1736,7 @@ int64 battle_calc_damage(struct block_list *src,struct block_list *bl,struct Dam element = status_get_attack_sc_element(src,status_get_sc(src)); else if( element == ELE_RANDOM ) //Use random element element = rnd()%ELE_ALL; - pc_overheat(sd, (element == ELE_FIRE ? 3 : 1)); + pc_overheat(tsd, (element == ELE_FIRE ? 3 : 1)); } return damage; diff --git a/src/map/pc.cpp b/src/map/pc.cpp index 670b2bf02e..e9247938ff 100755 --- a/src/map/pc.cpp +++ b/src/map/pc.cpp @@ -11503,14 +11503,14 @@ bool pc_setstand(struct map_session_data *sd, bool force){ * @param heat: Amount of Heat to adjust **/ void pc_overheat(struct map_session_data *sd, int16 heat) { - struct status_change_entry *sce = NULL; - int16 limit[] = { 150, 200, 280, 360, 450 }; - uint16 skill_lv; - nullpo_retv(sd); - skill_lv = cap_value(pc_checkskill(sd, NC_MAINFRAME), 0, 4); - if ((sce = sd->sc.data[SC_OVERHEAT_LIMITPOINT])) { + status_change_entry *sce = sd->sc.data[SC_OVERHEAT_LIMITPOINT]; + + if (sce) { + static std::vector limit = { 150, 200, 280, 360, 450 }; + uint16 skill_lv = cap_value(pc_checkskill(sd, NC_MAINFRAME), 0, limit.size()-1); + sce->val1 += heat; sce->val1 = cap_value(sce->val1, 0, 1000); if (sd->sc.data[SC_OVERHEAT]) diff --git a/src/map/status.cpp b/src/map/status.cpp index 434223ddec..2a7dce6d2f 100644 --- a/src/map/status.cpp +++ b/src/map/status.cpp @@ -14440,8 +14440,8 @@ TIMER_FUNC(status_change_timer){ case SC_OVERHEAT_LIMITPOINT: if (--(sce->val1) >= 0) { // Cooling - int16 limit[] = { 150, 200, 280, 360, 450 }; - uint16 skill_lv = (sd ? pc_checkskill(sd, NC_MAINFRAME) : 0); + static std::vector limit = { 150, 200, 280, 360, 450 }; + uint16 skill_lv = (sd ? cap_value(pc_checkskill(sd, NC_MAINFRAME), 0, limit.size()-1) : 0); if (sc && sc->data[SC_OVERHEAT]) status_change_end(bl,SC_OVERHEAT,INVALID_TIMER); @@ -14453,7 +14453,7 @@ TIMER_FUNC(status_change_timer){ break; case SC_OVERHEAT: { - int damage = status->max_hp / 100; // Suggestion 1% each second + uint32 damage = status->max_hp / 100; // Suggestion 1% each second if (damage >= status->hp) damage = status->hp - 1; // Do not kill, just keep you with 1 hp minimum From 04cfe17b2bd2295e3ca5e986e2848e985be3c3ec Mon Sep 17 00:00:00 2001 From: Aleos Date: Wed, 21 Oct 2020 19:02:11 -0400 Subject: [PATCH 19/45] Converted item database to YAML (#4335) * Combines item_avail, item_buyingstore, item_delay, item_flag, item_nouse, item_stack, and item_trade databases into one. * General cleanups and optimizations. * Includes CSV2YAML conversion tool. * Includes YAML2SQL conversion tool. * Adjusts dummy_item from being created by malloc and now creates it by make_shared. * Item combos are now stored as a STL. Thanks to @Lemongrass3110, @Atemo, and @cydh! Co-authored-by: Lemongrass3110 --- .gitattributes | 1 + .gitignore | 2 + conf/battle/items.conf | 5 +- conf/char_athena.conf | 2 +- db/import-tmpl/item_avail.txt | 12 - db/import-tmpl/item_buyingstore.txt | 10 - db/import-tmpl/item_db.txt | 68 - db/import-tmpl/item_db.yml | 492 + db/import-tmpl/item_delay.txt | 8 - db/import-tmpl/item_flag.txt | 17 - db/import-tmpl/item_nouse.txt | 13 - db/import-tmpl/item_stack.txt | 19 - db/import-tmpl/item_trade.txt | 22 - db/item_avail.txt | 27 - db/item_db.yml | 95 + db/item_nouse.txt | 138 - db/pre-re/item_buyingstore.txt | 1957 - db/pre-re/item_db.txt | 6593 - db/pre-re/item_db.yml | 93 + db/pre-re/item_db_equip.yml | 38181 ++++++ db/pre-re/item_db_etc.yml | 21020 +++ db/pre-re/item_db_usable.yml | 22303 ++++ db/pre-re/item_delay.txt | 58 - db/pre-re/item_flag.txt | 63 - db/pre-re/item_stack.txt | 29 - db/pre-re/item_trade.txt | 1792 - db/re/item_buyingstore.txt | 2031 - db/re/item_db.txt | 13965 -- db/re/item_db.yml | 93 + db/re/item_db_equip.yml | 101770 +++++++++++++++ db/re/item_db_etc.yml | 37402 ++++++ db/re/item_db_usable.yml | 46650 +++++++ db/re/item_delay.txt | 108 - db/re/item_flag.txt | 1797 - db/re/item_stack.txt | 21 - db/re/item_trade.txt | 4943 - doc/atcommands.txt | 2 +- doc/item_bonus.txt | 4 +- doc/item_db.txt | 343 +- doc/script_commands.txt | 10 +- doc/yaml/db/item_db.yml | 66 + doc/yaml/sql/item_db.sql | 109 + doc/yaml/sql/item_db2.sql | 109 + doc/yaml/sql/item_db2_re.sql | 116 + doc/yaml/sql/item_db_re.sql | 116 + npc/custom/card_seller.txt | 4 +- rAthena.sln | 15 + sql-files/README.md | 60 + sql-files/compatibility/item_db2_compat.sql | 200 + .../compatibility/item_db2_re_compat.sql | 221 + sql-files/compatibility/item_db_compat.sql | 200 + sql-files/compatibility/item_db_re_compat.sql | 221 + sql-files/item_db.sql | 6626 - sql-files/item_db2.sql | 193 +- sql-files/item_db2_re.sql | 202 +- sql-files/item_db_equip.sql | 2128 + sql-files/item_db_etc.sql | 2357 + sql-files/item_db_re.sql | 13998 -- sql-files/item_db_re_equip.sql | 6540 + sql-files/item_db_re_etc.sql | 4038 + sql-files/item_db_re_usable.sql | 3399 + sql-files/item_db_usable.sql | 2015 + src/common/database.cpp | 3 + src/common/mmo.hpp | 5 +- src/map/atcommand.cpp | 42 +- src/map/battle.cpp | 8 +- src/map/buyingstore.cpp | 2 +- src/map/clif.cpp | 10 +- src/map/itemdb.cpp | 2256 +- src/map/itemdb.hpp | 194 +- src/map/map-server.vcxproj | 9 +- src/map/map.cpp | 2 +- src/map/map.hpp | 1 + src/map/mob.cpp | 16 +- src/map/npc.cpp | 12 +- src/map/pc.cpp | 423 +- src/map/pc.hpp | 43 +- src/map/script.cpp | 44 +- src/map/script_constants.hpp | 61 +- src/map/skill.cpp | 8 +- src/map/status.cpp | 29 +- src/map/storage.cpp | 8 +- src/map/unit.cpp | 7 +- src/map/vending.cpp | 2 +- src/tool/Makefile.in | 34 +- src/tool/csv2yaml.cpp | 761 +- src/tool/csv2yaml.vcxproj | 4 + src/tool/csv2yaml.vcxproj.filters | 8 + src/tool/yaml2sql.cpp | 557 + src/tool/yaml2sql.vcxproj | 177 + src/tool/yaml2sql.vcxproj.filters | 18 + tools/ci/sql.bat | 8 +- tools/ci/sql.sh | 8 +- tools/convert_itemtype.pl | 107 - tools/convert_sql.pl | 109 +- tools/yaml2sql.bat | 2 + 96 files changed, 293974 insertions(+), 56096 deletions(-) delete mode 100644 db/import-tmpl/item_avail.txt delete mode 100644 db/import-tmpl/item_buyingstore.txt delete mode 100644 db/import-tmpl/item_db.txt create mode 100644 db/import-tmpl/item_db.yml delete mode 100644 db/import-tmpl/item_delay.txt delete mode 100644 db/import-tmpl/item_flag.txt delete mode 100644 db/import-tmpl/item_nouse.txt delete mode 100644 db/import-tmpl/item_stack.txt delete mode 100644 db/import-tmpl/item_trade.txt delete mode 100644 db/item_avail.txt create mode 100644 db/item_db.yml delete mode 100644 db/item_nouse.txt delete mode 100644 db/pre-re/item_buyingstore.txt delete mode 100644 db/pre-re/item_db.txt create mode 100644 db/pre-re/item_db.yml create mode 100644 db/pre-re/item_db_equip.yml create mode 100644 db/pre-re/item_db_etc.yml create mode 100644 db/pre-re/item_db_usable.yml delete mode 100644 db/pre-re/item_delay.txt delete mode 100644 db/pre-re/item_flag.txt delete mode 100644 db/pre-re/item_stack.txt delete mode 100644 db/pre-re/item_trade.txt delete mode 100644 db/re/item_buyingstore.txt delete mode 100644 db/re/item_db.txt create mode 100644 db/re/item_db.yml create mode 100644 db/re/item_db_equip.yml create mode 100644 db/re/item_db_etc.yml create mode 100644 db/re/item_db_usable.yml delete mode 100644 db/re/item_delay.txt delete mode 100644 db/re/item_flag.txt delete mode 100644 db/re/item_stack.txt delete mode 100644 db/re/item_trade.txt create mode 100644 doc/yaml/db/item_db.yml create mode 100644 doc/yaml/sql/item_db.sql create mode 100644 doc/yaml/sql/item_db2.sql create mode 100644 doc/yaml/sql/item_db2_re.sql create mode 100644 doc/yaml/sql/item_db_re.sql create mode 100644 sql-files/README.md create mode 100644 sql-files/compatibility/item_db2_compat.sql create mode 100644 sql-files/compatibility/item_db2_re_compat.sql create mode 100644 sql-files/compatibility/item_db_compat.sql create mode 100644 sql-files/compatibility/item_db_re_compat.sql delete mode 100644 sql-files/item_db.sql create mode 100644 sql-files/item_db_equip.sql create mode 100644 sql-files/item_db_etc.sql delete mode 100644 sql-files/item_db_re.sql create mode 100644 sql-files/item_db_re_equip.sql create mode 100644 sql-files/item_db_re_etc.sql create mode 100644 sql-files/item_db_re_usable.sql create mode 100644 sql-files/item_db_usable.sql create mode 100644 src/tool/yaml2sql.cpp create mode 100644 src/tool/yaml2sql.vcxproj create mode 100644 src/tool/yaml2sql.vcxproj.filters delete mode 100644 tools/convert_itemtype.pl create mode 100644 tools/yaml2sql.bat diff --git a/.gitattributes b/.gitattributes index cae443c670..c929f8dbab 100644 --- a/.gitattributes +++ b/.gitattributes @@ -12,3 +12,4 @@ configure.in text eol=lf Makefile text eol=lf Makefile.in text eol=lf *.sh text eol=lf +*.sql text eol=lf diff --git a/.gitignore b/.gitignore index 35d42bb676..6ddc2c6dc4 100644 --- a/.gitignore +++ b/.gitignore @@ -41,6 +41,7 @@ Thumbs.db /map-server /mapcache /nbproject +/yaml2sql # /3rdparty/libconfig/ /3rdparty/libconfig/Makefile @@ -119,6 +120,7 @@ Thumbs.db /mapserv.bat /runserver.bat /serv.bat +/yaml2sql.bat # dlls /libmysql.dll diff --git a/conf/battle/items.conf b/conf/battle/items.conf index bc2c21ce5a..eda2849e1e 100644 --- a/conf/battle/items.conf +++ b/conf/battle/items.conf @@ -58,8 +58,7 @@ ignore_items_gender: yes // 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 -// specified as unavailable in db/item_avail.txt +// NOTE: An item is not available if it was not loaded from the item_db. // 0x1: Inventory // 0x2: Cart // 0x4: Storage @@ -103,7 +102,7 @@ item_enabled_npc: yes // Default: yes item_flooritem_check: yes -// Set default bound type for item_flag &8 (see db/[pre-]re/item_flag.txt +// Set default bound type when item with BindOnEquip flag is equipped (see db/[pre-]re/item_db.yml) // 0 - None // 1 - Account // 2 - Guild diff --git a/conf/char_athena.conf b/conf/char_athena.conf index 6096842766..2091a05d49 100644 --- a/conf/char_athena.conf +++ b/conf/char_athena.conf @@ -197,7 +197,7 @@ char_del_restriction: 3 // Uncomment to customize the restriction //allowed_job_flag: 3 -// What folder the DB files are in (item_db.txt, etc.) +// Folder that contains the database files. db_path: db //=================================== diff --git a/db/import-tmpl/item_avail.txt b/db/import-tmpl/item_avail.txt deleted file mode 100644 index d9704cda06..0000000000 --- a/db/import-tmpl/item_avail.txt +++ /dev/null @@ -1,12 +0,0 @@ -// Item Availability and Alias Database -// -// Structure of Database: -// ItemID,SpriteID -// -// 01. ItemID Item ID to change. -// 02. SpriteID Item ID which will be sent to the client instead of ItemID. -// If 0, the item becomes unavailable for use. If item_check is enabled and a player owns such an item, it will be removed upon next login/teleport. -// -// NOTE: Replaces an item client-side while keeping them separate server-side. -// Think of it as a way to disguise items. -// Don't sell the item in same shop with the source. Example, don't put 2240 & 2241 in same place! diff --git a/db/import-tmpl/item_buyingstore.txt b/db/import-tmpl/item_buyingstore.txt deleted file mode 100644 index 939785c557..0000000000 --- a/db/import-tmpl/item_buyingstore.txt +++ /dev/null @@ -1,10 +0,0 @@ -// Buying Store Item List -// List of items that can be sold to buying stores. -// -// Structure of Database: -// ItemID -// -// Note: -// Items are in same order as data\buyingstoreitemlist.txt, which -// must be edited as well for the client to accept added items. - diff --git a/db/import-tmpl/item_db.txt b/db/import-tmpl/item_db.txt deleted file mode 100644 index a0409e432f..0000000000 --- a/db/import-tmpl/item_db.txt +++ /dev/null @@ -1,68 +0,0 @@ -// Items Additional Database -// -// Structure of Database: -// ID,Name,Name,Type,Price,Sell,Weight,ATK[:MATK],DEF,Range,Slot,Job,Class,Gender,Loc,wLV,eLV[:maxLevel],Refineable,View,{ Script },{ OnEquip_Script },{ OnUnequip_Script } -// -// THQ Quest Items -//============================================================= -//7950,THG_Membership,THG Membership,3,,10,10,,,,,,,,,,,,,{},{},{} -//7951,Token_Bag,Token Bag,3,,10,10,,,,,,,,,,,,,{},{},{} -//1998,Jeramiah's_Jur,Jeramiah's Jur,3,,10,10,,,,,,,,,,,,,{},{},{} -//1999,Zed's_Staff,Zed's Staff,3,,10,10,,,,,,,,,,,,,{},{},{} - -// Official Event Items that had their Effects removed after the event was completed -//585,Wurst,Brusti,11,2,,40,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(15,20),0; itemskill "PR_MAGNIFICAT",3; },{},{} -//679,Gold_Pill,Pilule,0,5000,,300,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 50,50; },{},{} - -//2681,Republic_Ring,Republic Anniversary Ring,4,20,,100,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bAllStats,3; },{},{} - -//5134,Pumpkin_Hat,Pumpkin-Head,4,20,,200,,2,,0,0xFFFFFFFF,63,2,256,,0,1,206,{ bonus2 bSubRace,RC_Demon,5; },{},{} -//5136,Santa's_Hat_,Louise's Santa Hat,4,20,,100,,3,,0,0xFFFFFFFF,63,2,256,,0,1,20,{ bonus bMdef,1; bonus bLuk,1; bonus3 bAutoSpellWhenHit,"AL_HEAL",3,50; bonus3 bAutoSpellWhenHit,"AL_BLESSING",10,50; },{},{} -//5145,Carnival_Joker_Jester,Carnival Jester,4,10,,100,,0,,0,0xFFFFFFFF,63,2,256,,0,1,89,{ bonus bAllStats,3; },{},{} -//5147,Baseball_Cap,Baseball Cap,4,0,,200,,3,,0,0xFFFFFFFF,63,2,256,,0,1,216,{ bonus2 bExpAddRace,RC_Boss,50; bonus2 bExpAddRace,RC_NonBoss,50; },{},{} -//5201,Party_Hat_B,2nd Anniversary Party Hat,4,20,,300,,3,,0,0xFFFFFFFF,63,2,256,,0,1,144,{ bonus bAllStats,3; },{},{} -//5202,Pumpkin_Hat_,Pumpkin Hat,4,20,,200,,2,,0,0xFFFFFFFF,63,2,256,,0,1,206,{ bonus bAllStats,2; bonus2 bSubRace,RC_Demon,5; bonus3 bAddMonsterDropItem,529,RC_DemiHuman,1500; },{},{} -//5204,Event_Pierrot_Nose,Rudolf's Red Nose,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,49,{ bonus2 bResEff,Eff_Blind,3000; bonus2 bAddMonsterDropItem,12130,30; },{},{} -//5264,Aussie_Flag_Hat,Australian Flag Hat,4,20,,500,,4,,0,0xFFFFFFFF,63,2,256,,0,1,304,{ bonus bAllStats,2; },{},{} -//5356,Pumpkin_Hat_H,Pumpkin Hat,4,20,,200,,2,,0,0xFFFFFFFF,63,2,256,,0,1,206,{ bonus bAllStats,2; bonus2 bSubRace,RC_Demon,5; bonus2 bMagicAddRace,RC_Demon,5; },{},{} -//5384,Santa_Hat_1,Twin Pompom By JB,4,20,,200,,2,,1,0xFFFFFFFF,63,2,256,,20,1,390,{ bonus bLuk,3; bonus2 bResEff,Eff_Curse,2000; bonus bVariableCastrate,-2; bonus bAspdRate,4; bonus2 bAddMonsterDropItem,539,100; bonus2 bAddMonsterDropItem,529,200; bonus2 bAddMonsterDropItem,530,200; autobonus "{ bonus bCritical,10; }",10,5000; },{},{} -//5811,Santa_Beard,Santa Beard,4,20,,100,,5,,0,0xFFFFFFFF,63,2,1,,0,0,25,{ bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5; },{},{} - -//11702,Moon_Cookie,Moon Cookie,11,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_HALLUCINATION; itemskill "AL_BLESSING",7; },{},{} -//12131,Lucky_Potion,Lucky Potion,0,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_LUKFOOD,180000,15; },{},{} -//12143,Red_Can,Red Can,2,50000,,300,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 25,25; },{},{} -//Event effect: Summon monster? Probably Rice_Cake. x_x -//12199,Rice_Scroll,Rice Scroll,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -//12200,Event_Cake,Event Cake,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "PR_MAGNIFICAT",3; },{},{} -//12238,New_Year_Rice_Cake_1,New Year Rice Cake,0,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 20,15; sc_start SC_STRFOOD,1200000,3; sc_start SC_INTFOOD,1200000,3; sc_start SC_LUKFOOD,1200000,3; sc_start SC_SPEEDUP1,5000,0; },{},{} -//12239,New_Year_Rice_Cake_2,New Year Rice Cake,0,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 20,15; sc_start SC_DEXFOOD,1200000,3; sc_start SC_AGIFOOD,1200000,3; sc_start SC_VITFOOD,1200000,3; sc_start SC_SPEEDUP1,5000,0; },{},{} - -// iRO St. Patrick's Day Event 2008 -//============================================================= -//12715,Black_Treasure_Chest,Black Treasure Chest,2,0,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_08stpattyseventbox"; },{},{} - -// iRO Valentine's Day Event 2009 -//============================================================= -//12742,Valentine_Gift_Box_M,Valentine Gift Box,2,10,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7946,1; },{},{} -//12743,Valentine_Gift_Box_F,Valentine Gift Box,2,10,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7947,1; },{},{} -//12744,Chocolate_Box,Chocolate Box,2,10,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 558,1; },{},{} -//14466,Valentine's_Emblem_Box,Valentine's Emblem Box,2,10,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5817,1; },{},{} -//7946,Gold_Ring_Of_Valentine,Gold Ring Of Valentine,3,10,,0,,,,,,,,,,,,,{},{},{} -//7947,Silver_Ring_Of_Valentine,Silver Ring Of Valentine,3,10,,0,,,,,,,,,,,,,{},{},{} -//7948,Box,Box,3,10,,10,,,,,,,,,,,,,{},{},{} -//5817,Valentine's_Emblem,Valentine's Emblem,4,10,,0,,3,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bAtkRate,3; bonus bMatkRate,3; bonus bAllStats,2; bonus bFlee,10; bonus bAspd,1; bonus bMdef,3; bonus2 bSkillAtk,"AL_HEAL",10; bonus2 bSkillHeal,"AL_HEAL",10; bonus2 bSkillHeal,"AM_POTIONPITCHER",10; bonus2 bAddItemGroupHealRate,IG_Potion,10; },{},{} - -// iRO Halloween Event 2009 -//============================================================= -//5668,Weird_Pumpkin_Hat,Weird Pumpkin Hat,4,20,,0,,5,,0,0xFFFFFFFF,63,2,256,,0,1,206,{ bonus bMdef,5; bonus2 bAddMonsterDropItem,12192,2500; },{},{} -//6298,Crushed_Pumpkin,Crushed Pumpkin,3,0,,0,,,,,,,,,,,,,{},{},{} -//6299,Worn_Fabric,Worn Fabric,3,0,,0,,,,,,,,,,,,,{},{},{} - -// Old Tuxedo and Wedding Dress, will display the outfit when worn. -//================================================================== -//2338,Wedding_Dress,Wedding Dress,4,43000,,500,,0,,0,0xFFFFFFFE,63,0,16,,0,1,0,{},{ sc_start SC_WEDDING,INFINITE_TICK,0; },{ sc_end SC_WEDDING; } -//7170,Tuxedo,Tuxedo,4,43000,,10,,0,,0,0xFFFFFFFE,63,1,16,,0,1,0,{},{ sc_start SC_WEDDING,INFINITE_TICK,0; },{ sc_end SC_WEDDING; } - -// Non-kRO Eden Group Mark effect -//============================================================= -//22508,Para_Team_Mark_,Eden Group Mark,11,0,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{ unitskilluseid getcharid(3),"AL_TELEPORT",3; },{},{} diff --git a/db/import-tmpl/item_db.yml b/db/import-tmpl/item_db.yml new file mode 100644 index 0000000000..1d080acb04 --- /dev/null +++ b/db/import-tmpl/item_db.yml @@ -0,0 +1,492 @@ +# This file is a part of rAthena. +# Copyright(C) 2019 rAthena Development Team +# https://rathena.org - https://github.com/rathena +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# +########################################################################### +# Item Database +########################################################################### +# +# Item Settings +# +########################################################################### +# - Id Item ID. +# AegisName Server name to reference the item in scripts and lookups, should use no spaces. +# Name Name in English for displaying as output. +# Type Item type. (Default: Etc) +# SubType Weapon or Ammo type. (Default: 0) +# Buy Buying price. When not specified, becomes double the sell price. (Default: 0) +# Sell Selling price. When not specified, becomes half the buy price. (Default: 0) +# Weight Item weight. Each 10 is 1 weight. (Default: 0) +# Attack Weapon's attack. (Default: 0) +# MagicAttack Weapon's magic attack. (Default: 0) +# Defense Armor's defense. (Default: 0) +# Range Weapon's attack range. (Default: 0) +# Slots Available slots in item. (Default: 0) +# Jobs Jobs that can equip the item. (Map default is 'All: true') +# Classes Upper class types that can equip the item. (Map default is 'All: true') +# Gender Gender that can equip the item. (Default: Both) +# Locations Equipment's placement. (Default: None) +# WeaponLevel Weapon level. (Default: 0) +# EquipLevelMin Minimum required level to equip. (Default: 0) +# EquipLevelMax Maximum level that can equip. (Default: 0) +# Refineable If the item can be refined. (Default: false) +# View View sprite of an item. (Default: 0) +# AliasName Another item's AegisName that will be sent to the client instead of this item's AegisName. (Default: null) +# Flags: Item flags. (Default: null) +# BuyingStore If the item is available for Buyingstores. (Default: false) +# DeadBranch If the item is a Dead Branch. (Default: false) +# Container If the item is part of a container. (Default: false) +# UniqueId If the item is a unique stack. (Default: false) +# BindOnEquip If the item is bound to the character upon equipping. (Default: false) +# DropAnnounce If the item has a special announcement to self on drop. (Default: false) +# NoConsume If the item is consumed on use. (Default: false) +# DropEffect If the item has a special effect when on the ground. (Default: None) +# Delay: Item use delay. (Default: null) +# Duration Duration of delay in seconds. +# Status Status Change used to track delay. (Default: None) +# Stack: Item stack amount. (Default: null) +# Amount Maximum amount that can be stacked. +# Inventory If the stack is applied to player's inventory. (Default: true) +# Cart If the stack is applied to the player's cart. (Default: false) +# Storage If the stack is applied to the player's storage. (Default: false) +# GuildStorage If the stack is applied to the player's guild storage. (Default: false) +# NoUse: Conditions when the item is unusable. (Default: null) +# Override Group level to override these conditions. +# Sitting If the item can not be used while sitting. (Default: false) +# Trade: Trade restrictions. (Default: null) +# Override Group level to override these conditions. +# NoDrop If the item can not be dropped. (Default: false) +# NoTrade If the item can not be traded. (Default: false) +# TradePartner If the item can not be traded to the player's partner. (Default: false) +# NoSell If the item can not be sold. (Default: false) +# NoCart If the item can not be put in a cart. (Default: false) +# NoStorage If the item can not be put in a storage. (Default: false) +# NoGuildStorage If the item can not be put in a guild storage. (Default: false) +# NoMail If the item can not be put in a mail. (Default: false) +# NoAuction If the item can not be put in an auction. (Default: false) +# Script Script to execute when the item is used/equipped. (Default: null) +# EquipScript Script to execute when the item is equipped. (Default: null) +# UnEquipScript Script to execute when the item is unequipped or when a rental item expires. (Default: null) +########################################################################### + +Header: + Type: ITEM_DB + Version: 1 + +#Body: +# THQ Quest Items +#============================================================= +# - Id: 1998 +# AegisName: Jeramiah's_Jur +# Name: Jeramiah's Jur +# Type: Etc +# Sell: 10 +# Weight: 10 +# AliasName: Jur +# - Id: 1999 +# AegisName: Zed's_Staff +# Name: Zed's Staff +# Type: Etc +# Sell: 10 +# Weight: 10 +# AliasName: Staff_Of_Soul +# - Id: 7950 +# AegisName: THG_Membership +# Name: THG Membership +# Type: Etc +# Sell: 10 +# Weight: 10 +# AliasName: Foolishness_Of_Blind +# - Id: 7951 +# AegisName: Token_Bag +# Name: Token Bag +# Type: Etc +# Sell: 10 +# Weight: 10 +# AliasName: Leather_Bag_Of_Infinity + +# Official Event Items that had their Effects removed after the event was completed +#============================================================= +# - Id: 585 +# AegisName: Wurst +# Name: Brusti +# Type: Delayconsume +# Buy: 2 +# Weight: 40 +# Script: | +# itemheal rand(15,20),0; itemskill "PR_MAGNIFICAT",3; +# - Id: 679 +# AegisName: Gold_Pill +# Name: Pilule +# Type: Healing +# Buy: 5000 +# Weight: 300 +# Script: | +# percentheal 50,50; +# - Id: 2681 +# AegisName: Republic_Ring +# Name: Republic Anniversary Ring +# Type: Armor +# Buy: 20 +# Weight: 100 +# Locations: +# Right_Accessory: true +# Left_Accessory: true +# Script: | +# bonus bAllStats,3; +# - Id: 5134 +# AegisName: Pumpkin_Hat +# Name: Pumpkin-Head +# Type: Armor +# Buy: 20 +# Weight: 200 +# Defense: 2 +# Locations: +# Head_Top: true +# Refineable: true +# View: 206 +# Script: | +# bonus2 bSubRace,RC_Demon,5; +# - Id: 5136 +# AegisName: Santa's_Hat_ +# Name: Louise's Santa Hat +# Type: Armor +# Buy: 20 +# Weight: 100 +# Defense: 3 +# Locations: +# Head_Top: true +# Refineable: true +# View: 20 +# Script: | +# bonus bMdef,1; bonus bLuk,1; bonus3 bAutoSpellWhenHit,"AL_HEAL",3,50; bonus3 bAutoSpellWhenHit,"AL_BLESSING",10,50; +# - Id: 5145 +# AegisName: Carnival_Joker_Jester +# Name: Carnival Jester +# Type: Armor +# Buy: 10 +# Weight: 100 +# Locations: +# Head_Top: true +# Refineable: true +# View: 89 +# Script: | +# bonus bAllStats,3; +# - Id: 5147 +# AegisName: Baseball_Cap +# Name: Baseball Cap +# Type: Armor +# Weight: 200 +# Defense: 3 +# Locations: +# Head_Top: true +# Refineable: true +# View: 216 +# Script: | +# bonus2 bExpAddRace,RC_Boss,50; bonus2 bExpAddRace,RC_NonBoss,50; +# - Id: 5201 +# AegisName: Party_Hat_B +# Name: 2nd Anniversary Party Hat +# Type: Armor +# Buy: 20 +# Weight: 300 +# Defense: 3 +# Locations: +# Head_Top: true +# Refineable: true +# View: 144 +# Script: | +# bonus bAllStats,3; +# - Id: 5202 +# AegisName: Pumpkin_Hat_ +# Name: Pumpkin Hat +# Type: Armor +# Buy: 20 +# Weight: 200 +# Defense: 2 +# Locations: +# Head_Top: true +# Refineable: true +# View: 206 +# Script: | +# bonus bAllStats,2; bonus2 bSubRace,RC_Demon,5; bonus3 bAddMonsterDropItem,529,RC_DemiHuman,1500; +# - Id: 5204 +# AegisName: Event_Pierrot_Nose +# Name: Rudolf's Red Nose +# Type: Armor +# Buy: 20 +# Weight: 100 +# Locations: +# Head_Low: true +# View: 49 +# Script: | +# bonus2 bResEff,Eff_Blind,3000; bonus2 bAddMonsterDropItem,12130,30; +# - Id: 5264 +# AegisName: Aussie_Flag_Hat +# Name: Australian Flag Hat +# Type: Armor +# Buy: 20 +# Weight: 500 +# Defense: 4 +# Locations: +# Head_Top: true +# Refineable: true +# View: 304 +# Script: | +# bonus bAllStats,2; +# - Id: 5356 +# AegisName: Pumpkin_Hat_H +# Name: Pumpkin Hat +# Type: Armor +# Buy: 20 +# Weight: 200 +# Defense: 2 +# Locations: +# Head_Top: true +# Refineable: true +# View: 206 +# Script: | +# bonus bAllStats,2; bonus2 bSubRace,RC_Demon,5; bonus2 bMagicAddRace,RC_Demon,5; +# - Id: 5384 +# AegisName: Santa_Hat_1 +# Name: Twin Pompom By JB +# Type: Armor +# Buy: 20 +# Weight: 200 +# Defense: 2 +# Slots: 1 +# Locations: +# Head_Top: true +# EquipLevelMin: 20 +# Refineable: true +# View: 390 +# Script: | +# bonus bLuk,3; bonus2 bResEff,Eff_Curse,2000; bonus bVariableCastrate,-2; bonus bAspdRate,4; bonus2 bAddMonsterDropItem,539,100; bonus2 bAddMonsterDropItem,529,200; bonus2 bAddMonsterDropItem,530,200; autobonus "{ bonus bCritical,10; }",10,5000; +# - Id: 5811 +# AegisName: Santa_Beard +# Name: Santa Beard +# Type: Armor +# Buy: 20 +# Weight: 100 +# Defense: 5 +# Locations: +# Head_Low: true +# View: 25 +# Script: | +# bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5; +# - Id: 11702 +# AegisName: Moon_Cookie +# Name: Moon Cookie +# Type: Delayconsume +# Weight: 10 +# Script: | +# sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_HALLUCINATION; itemskill "AL_BLESSING",7; +# - Id: 12131 +# AegisName: Lucky_Potion +# Name: Lucky Potion +# Type: Healing +# Buy: 2 +# Weight: 100 +# Script: | +# sc_start SC_LUKFOOD,180000,15; +# - Id: 12143 +# AegisName: Red_Can +# Name: Red Can +# Type: Usable +# Buy: 50000 +# Weight: 300 +# Script: | +# percentheal 25,25; + +# Event effect: Summon monster? Probably Rice_Cake. x_x +#============================================================= +# - Id: 12199 +# AegisName: Rice_Scroll +# Name: Rice Scroll +# Type: Usable +# - Id: 12200 +# AegisName: Event_Cake +# Name: Event Cake +# Type: Usable +# Buy: 20 +# Weight: 50 +# Script: | +# itemskill "PR_MAGNIFICAT",3; +# - Id: 12238 +# AegisName: New_Year_Rice_Cake_1 +# Name: New Year Rice Cake +# Type: Healing +# Buy: 20 +# Weight: 100 +# Script: | +# percentheal 20,15; sc_start SC_STRFOOD,1200000,3; sc_start SC_INTFOOD,1200000,3; sc_start SC_LUKFOOD,1200000,3; sc_start SC_SPEEDUP1,5000,0; +# - Id: 12239 +# AegisName: New_Year_Rice_Cake_2 +# Name: New Year Rice Cake +# Type: Healing +# Buy: 20 +# Weight: 100 +# Script: | +# percentheal 20,15; sc_start SC_DEXFOOD,1200000,3; sc_start SC_AGIFOOD,1200000,3; sc_start SC_VITFOOD,1200000,3; sc_start SC_SPEEDUP1,5000,0; + +# iRO St. Patrick's Day Event 2008 +#============================================================= +# - Id: 7915 +# AegisName: Copper_Coin_ +# Name: Bronze Coin +# Type: Etc +# Weight: 10 +# AliasName: Copper_Coin +# - Id: 7916 +# AegisName: Silver_Coin_ +# Name: Silver Coin +# Type: Etc +# Weight: 10 +# AliasName: Silver_Coin +# - Id: 12715 +# AegisName: Black_Treasure_Chest +# Name: Black Treasure Chest +# Type: Usable +# Weight: 200 +# AliasName: Treasure_Box_ +# Script: | +# callfunc "F_08stpattyseventbox"; + +# iRO Valentine's Day Event 2009 +#============================================================= +# - Id: 5817 +# AegisName: Valentine's_Emblem +# Name: Valentine's Emblem +# Type: Armor +# Buy: 10 +# Defense: 3 +# Locations: +# Right_Accessory: true +# Left_Accessory: true +# Script: | +# bonus bAtkRate,3; bonus bMatkRate,3; bonus bAllStats,2; bonus bFlee,10; bonus bAspd,1; bonus bMdef,3; bonus2 bSkillAtk,"AL_HEAL",10; bonus2 bSkillHeal,"AL_HEAL",10; bonus2 bSkillHeal,"AM_POTIONPITCHER",10; bonus2 bAddItemGroupHealRate,IG_Potion,10; +# - Id: 7946 +# AegisName: Gold_Ring_Of_Valentine +# Name: Gold Ring Of Valentine +# Type: Etc +# Buy: 10 +# - Id: 7947 +# AegisName: Silver_Ring_Of_Valentine +# Name: Silver Ring Of Valentine +# Type: Etc +# Buy: 10 +# - Id: 7948 +# AegisName: Box +# Name: Box +# Type: Etc +# Buy: 10 +# Weight: 10 +# - Id: 12742 +# AegisName: Valentine_Gift_Box_M +# Name: Valentine Gift Box +# Type: Usable +# Buy: 10 +# Script: | +# getitem 7946,1; +# - Id: 12743 +# AegisName: Valentine_Gift_Box_F +# Name: Valentine Gift Box +# Type: Usable +# Buy: 10 +# Script: | +# getitem 7947,1; +# - Id: 12744 +# AegisName: Chocolate_Box +# Name: Chocolate Box +# Type: Usable +# Buy: 10 +# Script: | +# getitem 558,1; +# - Id: 14466 +# AegisName: Valentine's_Emblem_Box +# Name: Valentine's Emblem Box +# Type: Usable +# Buy: 10 +# Script: | +# getitem 5817,1; + +# iRO Halloween Event 2009 +#============================================================= +# - Id: 5668 +# AegisName: Weird_Pumpkin_Hat +# Name: Weird Pumpkin Hat +# Type: Armor +# Buy: 20 +# Defense: 5 +# Locations: +# Head_Top: true +# Refineable: true +# View: 206 +# Script: | +# bonus bMdef,5; bonus2 bAddMonsterDropItem,12192,2500; +# - Id: 6298 +# AegisName: Crushed_Pumpkin +# Name: Crushed Pumpkin +# Type: Etc +# - Id: 6299 +# AegisName: Worn_Fabric +# Name: Worn Fabric +# Type: Etc + +# Old Tuxedo and Wedding Dress, will display the outfit when worn. +#================================================================== +# - Id: 2338 +# AegisName: Wedding_Dress +# Name: Wedding Dress +# Type: Armor +# Buy: 43000 +# Weight: 500 +# Jobs: +# All: true +# Novice: false +# Locations: +# Armor: true +# Refineable: true +# EquipScript: | +# sc_start SC_WEDDING,INFINITE_TICK,0; +# UnEquipScript: | +# sc_end SC_WEDDING; +# - Id: 7170 +# AegisName: Tuxedo +# Name: Tuxedo +# Type: Armor +# Buy: 43000 +# Weight: 10 +# Jobs: +# All: true +# Novice: false +# Gender: Male +# Locations: +# Armor: true +# Refineable: true +# EquipScript: | +# sc_start SC_WEDDING,INFINITE_TICK,0; +# UnEquipScript: | +# sc_end SC_WEDDING; + +# Non-kRO Eden Group Mark effect +#============================================================= +# - Id: 22508 +# AegisName: Para_Team_Mark_ +# Name: Eden Group Mark +# Type: Delayconsume +# Script: | +# unitskilluseid getcharid(3),"AL_TELEPORT",3; diff --git a/db/import-tmpl/item_delay.txt b/db/import-tmpl/item_delay.txt deleted file mode 100644 index 26aaec19c6..0000000000 --- a/db/import-tmpl/item_delay.txt +++ /dev/null @@ -1,8 +0,0 @@ -// 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. - diff --git a/db/import-tmpl/item_flag.txt b/db/import-tmpl/item_flag.txt deleted file mode 100644 index 1c1779b895..0000000000 --- a/db/import-tmpl/item_flag.txt +++ /dev/null @@ -1,17 +0,0 @@ -// Flagged Items -// , -// -// : -// 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 -// 16 - Special Broadcast: When item dropped by monster and player loot it, will be broadcasted! -// 32 - Item will not be removed on consumption. Also supports 'itemskill' -// 64 - Item will be displayed with a client side defined drop -// 128 - Item will be displayed with a white pillar drop effect -// 256 - Item will be displayed with a blue pillar drop effect -// 512 - Item will be displayed with a yellow pillar drop effect -// 1024 - Item will be displayed with a purple pillar drop effect -// 2048 - Item will be displayed with a orange pillar drop effect -// NOTE: For removing flag by import file, use "-" to remove the flag. Example, 604,-1 will removes flag 1 from Branch_Of_Dead_Tree diff --git a/db/import-tmpl/item_nouse.txt b/db/import-tmpl/item_nouse.txt deleted file mode 100644 index 7572f03072..0000000000 --- a/db/import-tmpl/item_nouse.txt +++ /dev/null @@ -1,13 +0,0 @@ -// Item Usage Restriction Configuration File -// Defines if an item cannot be used under special circumstances. -// -// Structure of Database: -// ItemID,Flag,Group ID Override -// -// Flag: -// 1 = Cannot use item while sitting -// ... [more to come] -// -// Group ID Override: -// Group ID necessary to override this setting. - diff --git a/db/import-tmpl/item_stack.txt b/db/import-tmpl/item_stack.txt deleted file mode 100644 index 6aea0ac12c..0000000000 --- a/db/import-tmpl/item_stack.txt +++ /dev/null @@ -1,19 +0,0 @@ -// Item Stacking Restriction File -// Prevents an item to be stacked more than x times in given -// inventory types. Generally used by 3rd class related skill items. -// -// Structure of Database: -// ItemID,MaxStackAmount,Type -// -// MaxStackAmount: -// Stack limit for the item. Use 0 to disable a restriction. -// -// Type mask values: -// &1: Character inventory restriction -// &2: Character cart restriction -// &4: Account storage restriction -// &8: Guild storage restriction -// -// Example: -// 512,4,12 // Will not allow more than 4 Apples in storages. - diff --git a/db/import-tmpl/item_trade.txt b/db/import-tmpl/item_trade.txt deleted file mode 100644 index 172d79b193..0000000000 --- a/db/import-tmpl/item_trade.txt +++ /dev/null @@ -1,22 +0,0 @@ -// Item Trade Restrictions Database -// Defines special trade rules for individual items. -// -// Structure of Database: -// Item ID, TradeMask,Group Level Override -// -// Legend for 'TradeMask' field (bitmask): -// 1 - item can't be dropped -// 2 - item can't be traded (nor vended) -// 4 - wedded partner can override restriction 2 -// 8 - item can't be sold to npcs -// 16 - item can't be placed in the cart -// 32 - item can't be placed in the storage -// 64 - item can't be placed in the guild storage -// 128 - item can't be attached to mail -// 256 - item can't be auctioned -// -// Example: -// 1161,67,50 -// 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. - diff --git a/db/item_avail.txt b/db/item_avail.txt deleted file mode 100644 index 02d7dd9f29..0000000000 --- a/db/item_avail.txt +++ /dev/null @@ -1,27 +0,0 @@ -// Item Availability and Alias Database -// -// Structure of Database: -// ItemID,SpriteID -// -// 01. ItemID Item ID to change. -// 02. SpriteID Item ID which will be sent to the client instead of ItemID. -// If 0, the item becomes unavailable for use. If item_check is enabled and a player owns such an item, it will be removed upon next login/teleport. -// -// NOTE: Replaces an item client-side while keeping them separate server-side. -// Think of it as a way to disguise items. -// Don't sell the item in same shop with the source. Example, don't put 2240 & 2241 in same place! - -//2240,2241 //Beard - Grampa Beard - -//Treasure Hunters Quest Items -//use these aliases if your game client doesn't support them normally -//7950,7021 -//7951,7042 -//1998,1250 -//1999,1472 - -//St. Patric's Day Quest (2008) Items -//Enable if you plan to use the quest. -//12715,7721 -//7915,673 -//7916,675 diff --git a/db/item_db.yml b/db/item_db.yml new file mode 100644 index 0000000000..bf3cd464b1 --- /dev/null +++ b/db/item_db.yml @@ -0,0 +1,95 @@ +# This file is a part of rAthena. +# Copyright(C) 2019 rAthena Development Team +# https://rathena.org - https://github.com/rathena +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# +########################################################################### +# Item Database +########################################################################### +# +# Item Settings +# +########################################################################### +# - Id Item ID. +# AegisName Server name to reference the item in scripts and lookups, should use no spaces. +# Name Name in English for displaying as output. +# Type Item type. (Default: Etc) +# SubType Weapon or Ammo type. (Default: 0) +# Buy Buying price. When not specified, becomes double the sell price. (Default: 0) +# Sell Selling price. When not specified, becomes half the buy price. (Default: 0) +# Weight Item weight. Each 10 is 1 weight. (Default: 0) +# Attack Weapon's attack. (Default: 0) +# MagicAttack Weapon's magic attack. (Default: 0) +# Defense Armor's defense. (Default: 0) +# Range Weapon's attack range. (Default: 0) +# Slots Available slots in item. (Default: 0) +# Jobs Jobs that can equip the item. (Map default is 'All: true') +# Classes Upper class types that can equip the item. (Map default is 'All: true') +# Gender Gender that can equip the item. (Default: Both) +# Locations Equipment's placement. (Default: None) +# WeaponLevel Weapon level. (Default: 0) +# EquipLevelMin Minimum required level to equip. (Default: 0) +# EquipLevelMax Maximum level that can equip. (Default: 0) +# Refineable If the item can be refined. (Default: false) +# View View sprite of an item. (Default: 0) +# AliasName Another item's AegisName that will be sent to the client instead of this item's AegisName. (Default: null) +# Flags: Item flags. (Default: null) +# BuyingStore If the item is available for Buyingstores. (Default: false) +# DeadBranch If the item is a Dead Branch. (Default: false) +# Container If the item is part of a container. (Default: false) +# UniqueId If the item is a unique stack. (Default: false) +# BindOnEquip If the item is bound to the character upon equipping. (Default: false) +# DropAnnounce If the item has a special announcement to self on drop. (Default: false) +# NoConsume If the item is consumed on use. (Default: false) +# DropEffect If the item has a special effect when on the ground. (Default: None) +# Delay: Item use delay. (Default: null) +# Duration Duration of delay in seconds. +# Status Status Change used to track delay. (Default: None) +# Stack: Item stack amount. (Default: null) +# Amount Maximum amount that can be stacked. +# Inventory If the stack is applied to player's inventory. (Default: true) +# Cart If the stack is applied to the player's cart. (Default: false) +# Storage If the stack is applied to the player's storage. (Default: false) +# GuildStorage If the stack is applied to the player's guild storage. (Default: false) +# NoUse: Conditions when the item is unusable. (Default: null) +# Override Group level to override these conditions. +# Sitting If the item can not be used while sitting. (Default: false) +# Trade: Trade restrictions. (Default: null) +# Override Group level to override these conditions. +# NoDrop If the item can not be dropped. (Default: false) +# NoTrade If the item can not be traded. (Default: false) +# TradePartner If the item can not be traded to the player's partner. (Default: false) +# NoSell If the item can not be sold. (Default: false) +# NoCart If the item can not be put in a cart. (Default: false) +# NoStorage If the item can not be put in a storage. (Default: false) +# NoGuildStorage If the item can not be put in a guild storage. (Default: false) +# NoMail If the item can not be put in a mail. (Default: false) +# NoAuction If the item can not be put in an auction. (Default: false) +# Script Script to execute when the item is used/equipped. (Default: null) +# EquipScript Script to execute when the item is equipped. (Default: null) +# UnEquipScript Script to execute when the item is unequipped or when a rental item expires. (Default: null) +########################################################################### + +Header: + Type: ITEM_DB + Version: 1 + +Footer: + Imports: + - Path: db/pre-re/item_db.yml + Mode: Prerenewal + - Path: db/re/item_db.yml + Mode: Renewal + - Path: db/import/item_db.yml diff --git a/db/item_nouse.txt b/db/item_nouse.txt deleted file mode 100644 index e57dcb719d..0000000000 --- a/db/item_nouse.txt +++ /dev/null @@ -1,138 +0,0 @@ -// Item Usage Restriction Configuration File -// Defines if an item cannot be used under special circumstances. -// -// Structure of Database: -// ItemID,Flag,Group ID Override -// -// Flag: -// 1 = Cannot use item while sitting -// ... [more to come] -// -// Group ID Override: -// Group ID necessary to override this setting. - -606,1,100 // Aloebera -619,1,100 // Unripe_Apple -620,1,100 // Orange_Juice -621,1,100 // Bitter_Herb -622,1,100 // Rainbow_Carrot -623,1,100 // Earthworm_The_Dude -624,1,100 // Rotten_Fish -625,1,100 // Lusty_Iron -626,1,100 // Monster_Juice -627,1,100 // Sweet_Milk -628,1,100 // Well_Dried_Bone -629,1,100 // Singing_Flower -630,1,100 // Dew_Laden_Moss -631,1,100 // Deadly_Noxious_Herb -632,1,100 // Fatty_Chubby_Earthworm -633,1,100 // Baked_Yam -634,1,100 // Tropical_Banana -635,1,100 // Horror_Of_Tribe -636,1,100 // No_Recipient -637,1,100 // Old_Broom -638,1,100 // Silver_Knife_Of_Chaste -639,1,100 // Armlet_Of_Obedience -640,1,100 // Shining_Stone -641,1,100 // Contracts_In_Shadow -642,1,100 // Book_Of_Devil -659,1,100 // Heart_Of_Her -660,1,100 // Prohibition_Red_Candle -661,1,100 // Sway_Apron -686,1,100 // Earth_Scroll_1_3 -687,1,100 // Earth_Scroll_1_5 -688,1,100 // Cold_Scroll_1_3 -689,1,100 // Cold_Scroll_1_5 -690,1,100 // Fire_Scroll_1_3 -691,1,100 // Fire_Scroll_1_5 -692,1,100 // Wind_Scroll_1_3 -693,1,100 // Wind_Scroll_1_5 -694,1,100 // Ghost_Scroll_1_3 -695,1,100 // Ghost_Scroll_1_5 -696,1,100 // Fire_Scroll_2_1 -697,1,100 // Fire_Scroll_2_5 -698,1,100 // Fire_Scroll_3_1 -699,1,100 // Fire_Scroll_3_5 -700,1,100 // Cold_Scroll_2_1 -11702,1,100 // Moon_Cookie -12000,1,100 // Cold_Scroll_2_5 -12001,1,100 // Holy_Scroll_1_3 -12002,1,100 // Holy_Scroll_1_5 -12027,1,100 // Giggling_Box -12028,1,100 // Box_Of_Thunder -12029,1,100 // Gloomy_Box -12030,1,100 // Box_Of_Grudge -12031,1,100 // Sleepy_Box -12032,1,100 // Box_Of_Storm -12033,1,100 // Box_Of_Sunlight -12034,1,100 // Painting_Box -12215,1,100 // Blessing_10_Scroll -12216,1,100 // Inc_Agi_10_Scroll -12217,1,100 // Aspersio_5_Scroll -12218,1,100 // Assumptio_5_Scroll -12219,1,100 // Wind_Walk_10_Scroll -12220,1,100 // Adrenaline_Scroll -12225,1,100 // Sweet_Candy_Striper -12235,1,100 // Strawberry_Choco -12236,1,100 // Choco_Tart -12237,1,100 // Choco_Lump -12290,1,100 // Mysterious_Can -12291,1,100 // Mysterious_PET_Bottle -12310,1,100 // Spray_Of_Flowers -12311,1,100 // Large_Spray_Of_Flowers -12313,1,100 // Protection_Of_Angel -12323,1,100 // N_Fly_Wing -12324,1,100 // N_Butterfly_Wing -12325,1,100 // N_Magnifier -12340,1,100 // Mysterious_Rice_Powder -12347,1,100 // Acorn_Jelly -12350,1,100 // Angeling_Potion -12358,1,100 // Fan_Of_Wind -12359,1,100 // Very_Soft_Plant -12360,1,100 // Very_Red_Juice -12361,1,100 // Delicious_Shaved_Ice -12362,1,100 // Kuloren -12363,1,100 // Fit_Pipe -12364,1,100 // Staff_Of_Leader -12365,1,100 // Charming_Lotus -12366,1,100 // Gril_Doll -12367,1,100 // Luxury_Whisky_Bottle -12368,1,100 // Splendid_Mirror -12369,1,100 // Oilpalm_Coconut -12370,1,100 // Gril's_Naivety -12371,1,100 // Magical_Lithography -12372,1,100 // Hell_Contract -12373,1,100 // Boy's_Naivety -12374,1,100 // Flaming_Ice -12376,1,100 // Mysterious_Can2 -12377,1,100 // Mysterious_PET_Bottle2 -12388,1,100 // Runstone_Crush -12389,1,100 // Runstone_Storm -12390,1,100 // Runstone_Millennium -12396,1,100 // Fools_Day_Box -12397,1,100 // Fools_Day_Box2 -12415,1,100 // Siege_Teleport_Scroll2 -12473,1,100 // RWC_Parti_Box -12474,1,100 // RWC_Final_Comp_Box -12706,1,100 // Lucky_Cookie01 -12707,1,100 // Lucky_Cookie02 -12708,1,100 // Lucky_Cookie03 -12725,1,100 // Runstone_Nosiege -12726,1,100 // Runstone_Rhydo -12727,1,100 // Runstone_Verkana -12728,1,100 // Runstone_Isia -12729,1,100 // Runstone_Asir -12730,1,100 // Runstone_Urj -12731,1,100 // Runstone_Turisus -12732,1,100 // Runstone_Pertz -12733,1,100 // Runstone_Hagalas -14521,1,100 // Repair_Scroll -14529,1,100 // Greed_Scroll -14532,1,100 // Battle_Manual25 -14587,1,100 // Repair_Scroll_ -14591,1,100 // Siege_Teleport_Scroll -14592,1,100 // Job_Manual50 -14593,1,100 // Magic_Power_Scroll -14594,1,100 // Quagmire_Scroll -14599,1,100 // Greed_Scroll_C -14606,1,100 // Job_Manual25 diff --git a/db/pre-re/item_buyingstore.txt b/db/pre-re/item_buyingstore.txt deleted file mode 100644 index 7aba096643..0000000000 --- a/db/pre-re/item_buyingstore.txt +++ /dev/null @@ -1,1957 +0,0 @@ -// Buying Store Item List -// List of items that can be sold to buying stores. -// -// Structure of Database: -// ItemID -// -// Note: -// Items are in same order as data\buyingstoreitemlist.txt, which -// must be edited as well for the client to accept added items. - -//--- 2015 / 12 / 16 - ΐό»ηΐΪΉ«΄ύ -//25127 -//25128 -//25129 -//25130 -//25131 -//23016 -//23080 -//4671 -//4672 -//4673 -//4674 -//4675 -//4676 -//4677 -//4678 -//4679 -//4680 -//4681 -//4682 -//4683 -//4684 -//4685 -//4686 -//4687 -//4688 -//4689 -//4690 -//4691 -//4692 -//4693 -//4694 -//4695 -//4696 -//--- 2015 / 11 19 - ΊΞΌ­Αψ ΈΆΉύΌ Γί°‘ -//6905 -//--- 2015 / 11 / 30 - Δ«΅ε Γί°‘ -4001 // Poring_Card -4002 // Fabre_Card -4003 // Pupa_Card -4004 // Drops_Card -4005 // Poring__Card -4006 // Lunatic_Card -4007 // Pecopeco_Egg_Card -4008 // Picky_Card -4009 // Chonchon_Card -4010 // Wilow_Card -4011 // Picky__Card -4012 // Thief_Bug_Egg_Card -4013 // Andre_Egg_Card -4014 // Roda_Frog_Card -4015 // Condor_Card -4016 // Thief_Bug_Card -4017 // Savage_Babe_Card -4018 // Andre_Larva_Card -4019 // Hornet_Card -4020 // Farmiliar_Card -4021 // Rocker_Card -4022 // Spore_Card -4023 // Desert_Wolf_Babe_Card -4024 // Plankton_Card -4025 // Skeleton_Card -4026 // Thief_Bug_Female_Card -4027 // Kukre_Card -4028 // Tarou_Card -4029 // Wolf_Card -4030 // Mandragora_Card -4031 // Pecopeco_Card -4032 // Ambernite_Card -4033 // Poporing_Card -4034 // Worm_Tail_Card -4035 // Hydra_Card -4036 // Muka_Card -4037 // Snake_Card -4038 // Zombie_Card -4039 // Stainer_Card -4040 // Creamy_Card -4041 // Coco_Card -4042 // Steel_Chonchon_Card -4043 // Andre_Card -4044 // Smokie_Card -4045 // Horn_Card -4046 // Martin_Card -4047 // Ghostring_Card -4048 // Poison_Spore_Card -4049 // Vadon_Card -4050 // Thief_Bug_Male_Card -4051 // Yoyo_Card -4052 // Elder_Wilow_Card -4053 // Vitata_Card -4054 // Angeling_Card -4055 // Marina_Card -4056 // Dustiness_Card -4057 // Metaller_Card -4058 // Thara_Frog_Card -4059 // Soldier_Andre_Card -4060 // Goblin_Card -4061 // Cornutus_Card -4062 // Anacondaq_Card -4063 // Caramel_Card -4064 // Zerom_Card -4065 // Kaho_Card -4066 // Orc_Warrior_Card -4067 // Megalodon_Card -4068 // Scorpion_Card -4069 // Drainliar_Card -4070 // Eggyra_Card -4071 // Orc_Zombie_Card -4072 // Golem_Card -4073 // Pirate_Skel_Card -4074 // BigFoot_Card -4075 // Argos_Card -4076 // Magnolia_Card -4077 // Phen_Card -4078 // Savage_Card -4079 // Mantis_Card -4080 // Flora_Card -4081 // Hode_Card -4082 // Desert_Wolf_Card -4083 // Rafflesia_Card -4084 // Marine_Sphere_Card -4085 // Orc_Skeleton_Card -4086 // Soldier_Skeleton_Card -4087 // Giearth_Card -4088 // Frilldora_Card -4089 // Sword_Fish_Card -4090 // Munak_Card -4091 // Kobold_Card -4092 // Skel_Worker_Card -4093 // Obeaune_Card -4094 // Archer_Skeleton_Card -4095 // Marse_Card -4096 // Zenorc_Card -4097 // Matyr_Card -4098 // Dokebi_Card -4099 // Pasana_Card -4100 // Sohee_Card -4101 // Sand_Man_Card -4102 // Whisper_Card -4103 // Horong_Card -4104 // Requiem_Card -4105 // Marc_Card -4106 // Mummy_Card -4107 // Verit_Card -4108 // Myst_Card -4109 // Jakk_Card -4110 // Ghoul_Card -4111 // Strouf_Card -4112 // Marduk_Card -4113 // Marionette_Card -4114 // Argiope_Card -4115 // Hunter_Fly_Card -4116 // Isis_Card -4117 // Side_Winder_Card -4118 // Petit_Card -4119 // Bathory_Card -4120 // Petit__Card -4121 // Phreeoni_Card -4122 // Deviruchi_Card -4123 // Eddga_Card -4124 // Medusa_Card -4125 // Deviace_Card -4126 // Minorous_Card -4127 // Nightmare_Card -4128 // Golden_Bug_Card -4129 // Baphomet__Card -4130 // Scorpion_King_Card -4131 // Moonlight_Flower_Card -4132 // Mistress_Card -4133 // Daydric_Card -4134 // Dracula_Card -4135 // Orc_Load_Card -4136 // Khalitzburg_Card -4137 // Drake_Card -4138 // Anubis_Card -4139 // Joker_Card -4140 // Knight_Of_Abyss_Card -4141 // Evil_Druid_Card -4142 // Doppelganger_Card -4143 // Orc_Hero_Card -4144 // Osiris_Card -4145 // Berzebub_Card -4146 // Maya_Card -4147 // Baphomet_Card -4148 // Pharaoh_Card -4149 // Gargoyle_Card -4150 // Goat_Card -4151 // Gajomart_Card -4152 // Galapago_Card -4153 // Crab_Card -4154 // Rice_Cake_Boy_Card -4155 // Goblin_Leader_Card -4156 // Steam_Goblin_Card -4157 // Goblin_Archer_Card -4158 // Flying_Deleter_Card -4159 // Nine_Tail_Card -4160 // Antique_Firelock_Card -4161 // Grand_Peco_Card -4162 // Grizzly_Card -4163 // Gryphon_Card -4164 // Gullinbursti_Card -4165 // Gig_Card -4166 // Nightmare_Terror_Card -4167 // Neraid_Card -4168 // Dark_Lord_Card -4169 // Dark_Illusion_Card -4170 // Dark_Frame_Card -4171 // Dark_Priest_Card -4172 // The_Paper_Card -4173 // Demon_Pungus_Card -4174 // Deviling_Card -4175 // Poison_Toad_Card -4176 // Dullahan_Card -4177 // Dryad_Card -4178 // Dragon_Tail_Card -4179 // Dragon_Fly_Card -4180 // Driller_Card -4181 // Disguise_Card -4182 // Diabolic_Card -4183 // Vagabond_Wolf_Card -4184 // Lava_Golem_Card -4185 // Rideword_Card -4186 // Raggler_Card -4187 // Raydric_Archer_Card -4188 // Leib_Olmai_Card -4189 // Wraith_Dead_Card -4190 // Wraith_Card -4191 // Loli_Ruri_Card -4192 // Rotar_Zairo_Card -4193 // Lude_Card -4194 // Rybio_Card -4195 // Leaf_Cat_Card -4196 // Marin_Card -4197 // Mastering_Card -4198 // Maya_Puple_Card -4199 // Merman_Card -4200 // Megalith_Card -4201 // Majoruros_Card -4202 // Civil_Servant_Card -4203 // Mutant_Dragon_Card -4204 // Mini_Demon_Card -4205 // Mimic_Card -4206 // Mystcase_Card -4207 // Mysteltainn_Card -4208 // Miyabi_Ningyo_Card -4209 // Violy_Card -4210 // Wander_Man_Card -4211 // Vocal_Card -4212 // Bon_Gun_Card -4213 // Brilight_Card -4214 // Bloody_Murderer_Card -4215 // Blazzer_Card -4216 // Sasquatch_Card -4217 // Live_Peach_Tree_Card -4218 // Succubus_Card -4219 // Sageworm_Card -4220 // Solider_Card -4221 // Skeleton_General_Card -4222 // Skel_Prisoner_Card -4223 // Stalactic_Golem_Card -4224 // Stem_Worm_Card -4225 // Stone_Shooter_Card -4226 // Sting_Card -4227 // Spring_Rabbit_Card -4228 // Sleeper_Card -4229 // C_Tower_Manager_Card -4230 // Shinobi_Card -4231 // Increase_Soil_Card -4232 // Wild_Ginseng_Card -4233 // Baby_Leopard_Card -4234 // Anolian_Card -4235 // Cookie_XMAS_Card -4236 // Amon_Ra_Card -4237 // Owl_Duke_Card -4238 // Owl_Baron_Card -4239 // Iron_Fist_Card -4240 // Arclouse_Card -4241 // Archangeling_Card -4242 // Apocalips_Card -4243 // Antonio_Card -4244 // Alarm_Card -4245 // Am_Mut_Card -4246 // Assulter_Card -4247 // Aster_Card -4248 // Ancient_Mummy_Card -4249 // Ancient_Worm_Card -4250 // Executioner_Card -4251 // Elder_Card -4252 // Alligator_Card -4253 // Alice_Card -4254 // Tirfing_Card -4255 // Orc_Lady_Card -4256 // Orc_Archer_Card -4257 // Wild_Rose_Card -4258 // Wicked_Nymph_Card -4259 // Wooden_Golem_Card -4260 // Wootan_Shooter_Card -4261 // Wootan_Fighter_Card -4262 // Evil_Cloud_Hermit_Card -4263 // Incant_Samurai_Card -4264 // Wind_Ghost_Card -4265 // Li_Me_Mang_Ryang_Card -4266 // Eclipse_Card -4267 // Explosion_Card -4268 // Injustice_Card -4269 // Incubus_Card -4270 // Giant_Spider_Card -4271 // Giant_Honet_Card -4272 // Dancing_Dragon_Card -4273 // Shellfish_Card -4274 // Zombie_Master_Card -4275 // Zombie_Prisoner_Card -4276 // Lord_Of_Death_Card -4277 // Zherlthsh_Card -4278 // Gibbet_Card -4279 // Deleter_Card -4280 // Geographer_Card -4281 // Zipper_Bear_Card -4282 // Tengu_Card -4283 // Greatest_General_Card -4284 // Chepet_Card -4285 // Choco_Card -4286 // Karakasa_Card -4287 // Kapha_Card -4288 // Carat_Card -4289 // Caterpillar_Card -4290 // Cat_O_Nine_Tail_Card -4291 // Kobold_Leader_Card -4292 // Kobold_Archer_Card -4293 // Cookie_Card -4294 // Quve_Card -4295 // Kraben_Card -4296 // Cramp_Card -4297 // Cruiser_Card -4298 // Cremy_Fear_Card -4299 // Clock_Card -4300 // Chimera_Card -4301 // Killer_Mantis_Card -4302 // Tao_Gunka_Card -4303 // Whisper_Boss_Card -4304 // Tamruan_Card -4305 // Turtle_General_Card -4306 // Toad_Card -4307 // Kind_Of_Beetle_Card -4308 // Tri_Joint_Card -4309 // Parasite_Card -4310 // Panzer_Goblin_Card -4311 // Permeter_Card -4312 // Fur_Seal_Card -4313 // Punk_Card -4314 // Penomena_Card -4315 // Pest_Card -4316 // Fake_Angel_Card -4317 // Mobster_Card -4318 // Knight_Windstorm_Card -4319 // Freezer_Card -4320 // Bloody_Knight_Card -4321 // Hylozoist_Card -4322 // High_Orc_Card -4323 // Garm_Baby_Card -4324 // Garm_Card -4325 // Harpy_Card -4326 // See_Otter_Card -4327 // Blood_Butterfly_Card -4328 // Hyegun_Card -4329 // Phendark_Card -4330 // Dark_Snake_Lord_Card -4331 // Heater_Card -4332 // Waste_Stove_Card -4333 // Venomous_Card -4334 // Noxious_Card -4335 // Pitman_Card -4336 // Ungoliant_Card -4337 // Porcellio_Card -4338 // Obsidian_Card -4339 // Mineral_Card -4340 // Teddy_Bear_Card -4341 // Metaling_Card -4342 // Rsx_0806_Card -4343 // Mole_Card -4344 // Anopheles_Card -4345 // Hill_Wind_Card -4346 // Ygnizem_Card -4347 // Armaia_Card -4348 // Whikebain_Card -4349 // Erend_Card -4350 // Rawrel_Card -4351 // Kavac_Card -4352 // B_Ygnizem_Card -4353 // Removal_Card -4354 // Gemini_Card -4355 // Gremlin_Card -4356 // Beholder_Card -4357 // B_Seyren_Card -4358 // Seyren_Card -4359 // B_Eremes_Card -4360 // Eremes_Card -4361 // B_Harword_Card -4362 // Harword_Card -4363 // B_Magaleta_Card -4364 // Magaleta_Card -4365 // B_Katrinn_Card -4366 // Katrinn_Card -4367 // B_Shecil_Card -4368 // Shecil_Card -4369 // Venatu_Card -4370 // Dimik_Card -4371 // Archdam_Card -4372 // Bacsojin_Card -4373 // Chung_E_Card -4374 // Apocalips_H_Card -4375 // Orc_Baby_Card -4376 // Lady_Tanee_Card -4377 // Green_Iguana_Card -4378 // Acidus_Card -4379 // Acidus__Card -4380 // Ferus_Card -4381 // Ferus__Card -4382 // Novus__Card -4383 // Novus_Card -4384 // Hydro_Card -4385 // Dragon_Egg_Card -4386 // Detale_Card -4387 // Ancient_Mimic_Card -4388 // Deathword_Card -4389 // Plasma_Card -4390 // Breeze_Card -4391 // Retribution_Card -4392 // Observation_Card -4393 // Shelter_Card -4394 // Solace_Card -4395 // Tha_Maero_Card -4396 // Tha_Odium_Card -4397 // Tha_Despero_Card -4398 // Tha_Dolor_Card -4399 // Thanatos_Card -4400 // Aliza_Card -4401 // Alicel_Card -4402 // Aliot_Card -4403 // Kiel_Card -4404 // Skogul_Card -4405 // Frus_Card -4406 // Skeggiold_Card -4407 // Randgris_Card -4408 // Gloom_Under_Night_Card -4409 // Agav_Card -4410 // Echio_Card -4411 // Vanberk_Card -4412 // Isilla_Card -4413 // Hodremlin_Card -4414 // Seeker_Card -4415 // Snowier_Card -4416 // Siroma_Card -4417 // Ice_Titan_Card -4418 // Gazeti_Card -4419 // Ktullanux_Card -4420 // Muscipular_Card -4421 // Drosera_Card -4422 // Roween_Card -4423 // Galion_Card -4424 // Stapo_Card -4425 // Atroce_Card -4426 // Byorgue_Card -4427 // Sword_Guardian_Card -4428 // Bow_Guardian_Card -4429 // Salamander_Card -4430 // Ifrit_Card -4431 // Kasa_Card -4432 // Magmaring_Card -4433 // Imp_Card -4434 // Knocker_Card -4435 // Zombie_Slaughter_Card -4436 // Ragged_Zombie_Card -4437 // Hell_Poodle_Card -4438 // Banshee_Card -4439 // Flame_Skull_Card -4440 // Necromancer_Card -4441 // Fallen_Bishop_Card -4442 // Tatacho_Card -4443 // Aqua_Elemental_Card -4444 // Draco_Card -4445 // Luciola_Vespa_Card -//4446 -4447 // Centipede_Card -4448 // Cornus_Card -4449 // Dark_Shadow_Card -4450 // Banshee_Master_Card -4451 // Entweihen_Card -4452 // Centipede_Larva_Card -4453 // Hilsrion_Card -//4454 -//4455 -//4456 -//4457 -//4458 -//4459 -//4460 -//4461 -//4462 -//4463 -//4464 -//4465 -//4466 -//4467 -//4468 -//4469 -//4470 -//4471 -//4472 -//4473 -//4474 -//4475 -//4476 -//4477 -//4478 -//4479 -//4480 -//4481 -//4482 -//4483 -//4484 -//4485 -//4486 -//4487 -//4488 -//4489 -//4490 -//4491 -//4492 -//4493 -//4494 -//4495 -//4496 -//4497 -//4498 -//4499 -//4500 -//4501 -//4502 -//4503 -//4504 -//4505 -//4506 -//4507 -//4508 -//4509 -//4510 -//4511 -//4512 -//4513 -//4514 -//4515 -//4516 -//4517 -//4518 -//4519 -//4520 -//4521 -//4522 -//4523 -//4524 -//4525 -//4526 -//4527 -//4528 -//4529 -//4530 -//4531 -//4532 -//4533 -//4534 -//4535 -//4536 -//4537 -//4538 -//4539 -//4540 -//4541 -//4542 -//4543 -//4544 -//4545 -//4546 -//4547 -//4548 -//4549 -//4550 -//4551 -//4552 -//4553 -//4554 -//4555 -//4556 -//4557 -//4558 -//4559 -//4560 -//4561 -//4562 -//4563 -//4564 -//4565 -//4566 -//4567 -//4568 -//4569 -//4570 -//4571 -//4572 -//4573 -//4574 -//4575 -//4576 -//4577 -//4578 -//4579 -//4580 -//4581 -//4582 -//4583 -//4584 -//4585 -//4586 -//4587 -//4588 -//4589 -//4590 -//4591 -//4592 -//4593 -//4594 -//4595 -//4596 -//4597 -//4598 -//4599 -//4600 -//4601 -//4602 -//4603 -//4604 -//4605 -//4606 -//4607 -//4608 -//4609 -//4610 -//4625 -//4626 -//4627 -//4628 -//4629 -//4630 -//4631 -//4632 -//4633 -//4634 -//4635 -//4636 -//4637 -//4638 -//4639 -//4640 -//4641 -//4642 -//4643 -//4644 -//4645 -//4646 -//4647 -//4648 -//4649 -//4650 -//4651 -//4652 -//4653 -//4654 -//4655 -//4656 -//4657 -//4658 -//--- 2015 / 7 / 9 - ΓΦΑΎΌφΑ€ΐΟ -//11600 -//22847 -//22848 -//22849 -//6921 -//6922 -//6924 -//6936 -//6937 -//6938 -//6939 -//6940 -//6941 -//6942 -//6961 -//6962 -//6905 -//--- 2014 / 12 / 17 -12739 // Snow_Flower -//--- 2014 / 07 / 09 -//6897 -//6898 -//6899 -//6900 -//6901 -//6902 -//6903 -//22770 -//22771 -//22772 -//22773 -//22774 -//22775 -//22776 -//--- 2014 / 04 / 21 -//6691 -//6692 -//6693 -//6694 -//6695 -//6696 -12490 // Vivid_Notation -//22516 -//22534 -//11563 -//11564 -//--- 2013 / 12 / 23 -//6832 -//11597 -//22699 -//22679 -//22687 -//6615 -//--- 2013 / 08 / 02 -//6750 -//6751 -//22648 -//22649 -//6797 -//11556 -//6770 -//6771 -//6772 -//6773 -//6774 -//6775 -//6776 -//6777 -//6778 -//6779 -//6780 -//6781 -//6782 -//11589 -//11590 -//22620 -//22621 - -//--- 2013 / 04 / 16 -//6557 -//6558 -//6559 -//6560 -//6561 -//12812 -//12813 -//12814 -//12815 -//6592 -//6594 -//6595 -//6596 -//6597 -//6598 -//6599 -//6600 -//6601 -//6602 -//6603 -//6604 -//6605 -//6668 -7056 // Payroll_Of_Kafra -//11557 -//11558 -//6607 -//6608 -//6609 -//6610 -//6611 -//6612 -//6613 -7228 // Gold_Bullion -7229 // Silver_Bullion -7230 // White_Gold_Bullion -//6699 -//6700 -//6701 -//6702 -//6703 -//6704 -//6705 -//6706 -//6683 -//7640 -//7642 -//7643 -//7644 -//6521 -//6522 -//6531 -//6557 -//6558 -//6559 -//6560 -//6561 -//12812 -//12813 -//12814 -//12815 -714 // Emperium -6381 // Field_Shovel -6382 // Urn -6393 // Round_Feather -6394 // Golden_Feather -6395 // Angel_Magic_Power -//6403 -//6404 -//6405 -//6423 -//6469 -//6470 -//6471 -6493 // Makibishi -//6496 -//6497 -//6498 -6499 // Ancient_Grudge -//6508 -//6509 -//6510 -//6511 -6512 // Charm_Fire -6513 // Charm_Ice -6514 // Charm_Wind -6515 // Charm_Earth -//6516 -//6517 -//6518 -//6523 -//6524 -//6525 -7347 // Lab_Staff_Record -7760 // Yaga_Magic_Book -7762 // Yaga_Pestle -7824 // Spirit_Liquor -11519 // Beef_Toast -11520 // Mora_Mandarin -11521 // Pingui_Berry_Juice -11522 // Red_Raffle_Sap -11523 // Yellow_Raffle_Sap -11524 // White_Raffle_Sap -11525 // Mora_Hip_Tea -11526 // Rafflecino -//11532 -//11533 -//11534 -//11536 -//11537 -//11547 -//11548 -//11549 -12329 // Recall_MaleGM -12330 // Recall_FemaleGM -12342 // Manuk's_Opportunity -12343 // Manuk's_Courage -12344 // Pinguicula's_fruit_Jam -12345 // Luciola's_Honey_Jam -12348 // Manuk's_Faith -12349 // Cornus'_Tears -12350 // Angeling_Potion -12351 // Shout_Megaphone -12354 // Buche_De_Noel -12355 // Xmas_Gift -12356 // Louise_Costume_Box -12418 // Full_SwingK -12419 // Mana_Plus -12422 // HP_Increase_Potion_(Small) -12423 // HP_Increase_Potion_(Medium) -12424 // HP_Increase_Potion_(Large) -12425 // SP_Increase_Potion_(Small) -12426 // SP_Increase_Potion_(Medium) -12427 // SP_Increase_Potion_(Large) -12428 // Concentrated_White_Potion_Z -12429 // Savage_Full_Roast -12430 // Cocktail_Warg_Blood -12431 // Minor_Stew -12432 // Siroma_Iced_Tea -12433 // Drosera_Herb_Salad -12434 // Petite_Tail_Noodles -12436 // Vitata_500 -12437 // Concentrated_Ceromain_Soup -12475 // Cure_Free -12536 // NY_Rice_Cake_Soup -12539 // Splendid_Box -12561 // Mysterious_Seed -12574 // Mora_Berry -12575 // Arrow_Of_Elf_Cntr -12576 // Hunting_Arrow_Cntr -//12582 -//12608 -//12609 -//12612 -//12613 -//12614 -//12615 -//12616 -//12617 -//12618 -//12619 -//12620 -//12621 -//12623 -//12675 -//12676 -//12677 -//12678 -//12679 -//12680 -//12683 -//12690 -//12691 -//12692 -//12693 -//12694 -//12695 -//12698 -//12699 -//12700 -//12775 - -//--- 2010 / 03 / 12 -601 // Wing_Of_Fly -602 // Wing_Of_Butterfly -603 // Old_Blue_Box -604 // Branch_Of_Dead_Tree -605 // Anodyne -606 // Aloebera -607 // Yggdrasilberry -608 // Seed_Of_Yggdrasil -609 // Amulet -610 // Leaf_Of_Yggdrasil -611 // Spectacles -612 // Portable_Furnace -613 // Iron_Hammer -614 // Golden_Hammer -615 // Oridecon_Hammer -616 // Old_Card_Album -617 // Old_Violet_Box -618 // Worn_Out_Scroll -619 // Unripe_Apple -620 // Orange_Juice -621 // Bitter_Herb -622 // Rainbow_Carrot -623 // Earthworm_The_Dude -624 // Rotten_Fish -625 // Lusty_Iron -626 // Monster_Juice -627 // Sweet_Milk -628 // Well_Dried_Bone -629 // Singing_Flower -630 // Dew_Laden_Moss -631 // Deadly_Noxious_Herb -632 // Fatty_Chubby_Earthworm -633 // Baked_Yam -634 // Tropical_Banana -635 // Horror_Of_Tribe -636 // No_Recipient -637 // Old_Broom -638 // Silver_Knife_Of_Chaste -639 // Armlet_Of_Obedience -640 // Shining_Stone -641 // Contracts_In_Shadow -642 // Book_Of_Devil -643 // Pet_Incubator -644 // Gift_Box -645 // Center_Potion -656 // Awakening_Potion -657 // Berserk_Potion -658 // Union_Of_Tribe -659 // Heart_Of_Her -660 // Prohibition_Red_Candle -661 // Sway_Apron -662 // Inspector_Certificate -663 // Korea_Rice_Cake -664 // Gift_Box_1 -665 // Gift_Box_2 -666 // Gift_Box_3 -667 // Gift_Box_4 -668 // Handsei -669 // Rice_Cake_Soup -678 // Poison_Bottle -679 // Gold_Pill -681 // Memory_Of_Wedding -682 // Realgar_Wine -683 // Exorcize_Herb -684 // Durian -686 // Earth_Scroll_1_3 -687 // Earth_Scroll_1_5 -688 // Cold_Scroll_1_3 -689 // Cold_Scroll_1_5 -690 // Fire_Scroll_1_3 -691 // Fire_Scroll_1_5 -692 // Wind_Scroll_1_3 -693 // Wind_Scroll_1_5 -694 // Ghost_Scroll_1_3 -695 // Ghost_Scroll_1_5 -696 // Fire_Scroll_2_1 -697 // Fire_Scroll_2_5 -698 // Fire_Scroll_3_1 -699 // Fire_Scroll_3_5 -700 // Cold_Scroll_2_1 -12000 // Cold_Scroll_2_5 -12001 // Holy_Scroll_1_3 -12002 // Holy_Scroll_1_5 -12003 // Holy_Scroll_2_1 -12004 // Arrow_Container -12005 // Iron_Arrow_Container -12006 // Steel_Arrow_Container -12007 // Ori_Arrow_Container -12008 // Fire_Arrow_Container -12009 // Silver_Arrow_Container -12010 // Wind_Arrow_Container -12011 // Stone_Arrow_Container -12012 // Crystal_Arrow_Container -12013 // Shadow_Arrow_Container -12014 // Imma_Arrow_Container -12015 // Rusty_Arrow_Container -12016 // Speed_Up_Potion -12017 // Slow_Down_Potion -12018 // Fire_Cracker -12020 // Water_Of_Darkness -12027 // Giggling_Box -12028 // Box_Of_Thunder -12029 // Gloomy_Box -12030 // Box_Of_Grudge -12031 // Sleepy_Box -12032 // Box_Of_Storm -12033 // Box_Of_Sunlight -12034 // Painting_Box -12040 // Stone_Of_Intelligence_ -12041 // Str_Dish01 -12042 // Str_Dish02 -12043 // Str_Dish03 -12044 // Str_Dish04 -12045 // Str_Dish05 -12046 // Int_Dish01 -12047 // Int_Dish02 -12048 // Int_Dish03 -12049 // Int_Dish04 -12050 // Int_Dish05 -12051 // Vit_Dish01 -12052 // Vit_Dish02 -12053 // Vit_Dish03 -12054 // Vit_Dish04 -12055 // Vit_Dish05 -12056 // Agi_Dish01 -12057 // Agi_Dish02 -12058 // Agi_Dish03 -12059 // Agi_Dish04 -12060 // Agi_Dish05 -12061 // Dex_Dish01 -12062 // Dex_Dish02 -12063 // Dex_Dish03 -12064 // Dex_Dish04 -12065 // Dex_Dish05 -12066 // Luk_Dish01 -12067 // Luk_Dish02 -12068 // Luk_Dish03 -12069 // Luk_Dish04 -12070 // Luk_Dish05 -12071 // Str_Dish06 -12072 // Str_Dish07 -12073 // Str_Dish08 -12074 // Str_Dish09 -12075 // Str_Dish10 -12076 // Int_Dish06 -12077 // Int_Dish07 -12078 // Int_Dish08 -12079 // Int_Dish09 -12080 // Int_Dish10 -12081 // Vit_Dish06 -12082 // Vit_Dish07 -12083 // Vit_Dish08 -12084 // Vit_Dish09 -12085 // Vit_Dish10 -12086 // Agi_Dish06 -12087 // Agi_Dish07 -12088 // Agi_Dish08 -12089 // Agi_Dish09 -12090 // Agi_Dish10 -12091 // Dex_Dish06 -12092 // Dex_Dish07 -12093 // Dex_Dish08 -12094 // Dex_Dish09 -12095 // Dex_Dish10 -12096 // Luk_Dish06 -12097 // Luk_Dish07 -12098 // Luk_Dish08 -12099 // Luk_Dish09 -12100 // Luk_Dish10 -12101 // Citron -12102 // Meat_Skewer -12103 // Bloody_Dead_Branch -12104 // Random_Quiver -12105 // Set_Of_Taiming_Item -12106 // Accessory_Box -12107 // Wrapped_Mask -12108 // Bundle_Of_Magic_Scroll -12109 // Poring_Box -12110 // First_Aid_Kit -12111 // Food_Package -12112 // Tropical_Sograt -12113 // Vermilion_The_Beach -12114 // Elemental_Fire -12115 // Elemental_Water -12116 // Elemental_Earth -12117 // Elemental_Wind -12118 // Resist_Fire -12119 // Resist_Water -12120 // Resist_Earth -12121 // Resist_Wind -12122 // Sesame_Pastry -12123 // Honey_Pastry -12124 // Rainbow_Cake -12125 // Outdoor_Cooking_Kits -12126 // Indoor_Cooking_Kits -12127 // High_end_Cooking_Kits -12128 // Imperial_Cooking_Kits -12129 // Fantastic_Cooking_Kits -12130 // Cookie_Bag -12132 // Red_Bag -12144 // Sphere_Case_Wind -12145 // Sphere_Case_Darkness -12146 // Sphere_Case_Poison -12147 // Sphere_Case_Water -12148 // Sphere_Case_Fire -12149 // Bullet_Case -12150 // Bullet_Case_Blood -12151 // Bullet_Case_Silver -12183 // Holy_Arrow_Quiver -12184 // Mercenary_Red_Potion -12185 // Mercenary_Blue_Potion -12194 // Hometown_Gift -12195 // Plain_Rice_Cake -12196 // Hearty_Rice_Cake -12197 // Salty_Rice_Cake -12198 // Lucky_Rice_Cake -12241 // M_Center_Potion -12242 // M_Awakening_Potion -12243 // M_Berserk_Potion -12246 // Magic_Card_Album -12260 // Cool_Summer_Outfit -12290 // Mysterious_Can -12291 // Mysterious_PET_Bottle -12292 // Unripe_Fruit -12293 // Dried_Yggdrasilberry -12341 // Special_Alloy_Trap_Box -12346 // Unripe_Acorn -12347 // Acorn_Jelly -12353 // Tiny_Waterbottle -12358 // Fan_Of_Wind -12359 // Very_Soft_Plant -12360 // Very_Red_Juice -12362 // Kuloren -12364 // Staff_Of_Leader -12365 // Charming_Lotus -12366 // Gril_Doll -12367 // Luxury_Whisky_Bottle -12368 // Splendid_Mirror -12369 // Oilpalm_Coconut -12371 // Magical_Lithography -12372 // Hell_Contract -12373 // Boy's_Naivety -12374 // Flaming_Ice -12376 // Mysterious_Can2 -12377 // Mysterious_PET_Bottle2 -12379 // Pope's_Cookie -12383 // Vulcan_Bullet_Magazine -12392 // Repair_A -12393 // Repair_B -12394 // Repair_C -12395 // Tantanmen -12414 // Guarana_Candy -12717 // Poison_Paralysis -12718 // Poison_Leech -12719 // Poison_Oblivion -12720 // Poison_Disheart -12721 // Poison_Numb -12722 // Poison_Fever -12723 // Poison_Laughing -12724 // Poison_Fatigue -12734 // Runstone_Quality -12735 // Runstone_Ancient -12736 // Runstone_Mystic -12737 // Runstone_Ordinary -12738 // Runstone_Rare -506 // Green_Potion -507 // Red_Herb -508 // Yellow_Herb -509 // White_Herb -510 // Blue_Herb -511 // Green_Herb -512 // Apple -513 // Banana -514 // Grape -515 // Carrot -516 // Sweet_Potato -517 // Meat -518 // Honey -519 // Milk -520 // Leaflet_Of_Hinal -521 // Leaflet_Of_Aloe -522 // Fruit_Of_Mastela -523 // Holy_Water -525 // Panacea -526 // Royal_Jelly -528 // Monster's_Feed -529 // Candy -530 // Candy_Striper -531 // Apple_Juice -532 // Banana_Juice -533 // Grape_Juice -534 // Carrot_Juice -535 // Pumpkin -536 // Ice_Cream -537 // Pet_Food -538 // Well_Baked_Cookie -539 // Piece_Of_Cake -544 // Fish_Slice -548 // Cheese -549 // Nice_Sweet_Potato -550 // Popped_Rice -551 // Shusi -553 // Bun -564 // Rice_Ball -566 // Tomyumkung -567 // Prawn -568 // Lemon -569 // Novice_Potion -570 // Lucky_Candy -571 // Lucky_Candy_Cane -572 // Lucky_Cookie -574 // Egg -576 // Prickly_Fruit -577 // Grain -578 // Strawberry -579 // Delicious_Fish -580 // Bread -581 // Mushroom -582 // Orange -584 // Fish_Ball_Soup -587 // Prickly_Fruit_ -591 // Caviar_Pancake -592 // Jam_Pancake -593 // Honey_Pancake -594 // Sour_Cream_Pancake -595 // Mushroom_Pancake -11513 // Protect_Neck_Candy -11515 // Coconut -11516 // Asai_Fruit -11517 // Puri_Potion -701 // Ora_Ora -702 // Animal_Blood -703 // Hinalle -704 // Aloe -705 // Clover -706 // Four_Leaf_Clover -707 // Singing_Plant -708 // Ment -709 // Izidor -710 // Illusion_Flower -711 // Shoot -712 // Flower -713 // Empty_Bottle -715 // Yellow_Gemstone -716 // Red_Gemstone -717 // Blue_Gemstone -718 // Dark_Red_Jewel -719 // Violet_Jewel -720 // Skyblue_Jewel -721 // Azure_Jewel -722 // Scarlet_Jewel -723 // Cardinal_Jewel -724 // Cardinal_Jewel_ -725 // Red_Jewel -726 // Blue_Jewel -727 // White_Jewel -728 // Golden_Jewel -729 // Bluish_Green_Jewel -730 // Crystal_Jewel -731 // Crystal_Jewel_ -732 // Crystal_Jewel__ -733 // Crystal_Jewel___ -734 // Red_Frame -735 // Blue_Porcelain -736 // White_Platter -737 // Black_Ladle -738 // Pencil_Case -739 // Rouge -740 // Stuffed_Doll -741 // Poring_Doll -742 // Chonchon_Doll -743 // Spore_Doll -744 // Bunch_Of_Flowers -745 // Wedding_Bouquet -746 // Glass_Bead -747 // Crystal_Mirror -748 // Witherless_Rose -749 // Frozen_Rose -750 // Baphomet_Doll -751 // Osiris_Doll -752 // Grasshopper_Doll -753 // Monkey_Doll -754 // Raccoondog_Doll -756 // Oridecon_Stone -757 // Elunium_Stone -901 // Danggie -902 // Tree_Root -903 // Reptile_Tongue -904 // Scorpion's_Tail -905 // Stem -906 // Pointed_Scale -907 // Resin -908 // Spawn -909 // Jellopy -910 // Garlet -911 // Scell -912 // Zargon -913 // Tooth_Of_Bat -914 // Fluff -915 // Chrysalis -916 // Feather_Of_Birds -917 // Talon -918 // Sticky_Webfoot -919 // Animal's_Skin -920 // Claw_Of_Wolves -921 // Mushroom_Spore -922 // Orcish_Cuspid -923 // Evil_Horn -924 // Powder_Of_Butterfly -925 // Bill_Of_Birds -926 // Scale_Of_Snakes -928 // Insect_Feeler -929 // Immortal_Heart -930 // Rotten_Bandage -931 // Orcish_Voucher -932 // Skel_Bone -934 // Mementos -935 // Shell -936 // Scales_Shell -937 // Posionous_Canine -938 // Sticky_Mucus -939 // Bee_Sting -940 // Grasshopper's_Leg -941 // Nose_Ring -942 // Yoyo_Tail -943 // Solid_Shell -944 // Horseshoe -945 // Raccoon_Leaf -946 // Snail's_Shell -947 // Horn -948 // Bear's_Foot -949 // Feather -950 // Heart_Of_Mermaid -951 // Fin -952 // Cactus_Needle -953 // Stone_Heart -954 // Shining_Scales -955 // Worm_Peelings -956 // Gill -957 // Decayed_Nail -958 // Horrendous_Mouth -959 // Rotten_Scale -960 // Nipper -961 // Conch -962 // Tentacle -963 // Sharp_Scale -964 // Crap_Shell -965 // Clam_Shell -966 // Flesh_Of_Clam -967 // Turtle_Shell -968 // Voucher_Of_Orcish_Hero -969 // Gold -970 // Alchol -971 // Detrimindexta -972 // Karvodailnirol -973 // Counteragent -974 // Mixture -975 // Scarlet_Dyestuffs -976 // Lemon_Dyestuffs -978 // Cobaltblue_Dyestuffs -979 // Darkgreen_Dyestuffs -980 // Orange_Dyestuffs -981 // Violet_Dyestuffs -982 // White_Dyestuffs -983 // Black_Dyestuffs -984 // Oridecon -985 // Elunium -986 // Anvil -987 // Oridecon_Anvil -988 // Golden_Anvil -989 // Emperium_Anvil -990 // Boody_Red -991 // Crystal_Blue -992 // Wind_Of_Verdure -993 // Yellow_Live -994 // Flame_Heart -995 // Mistic_Frozen -996 // Rough_Wind -997 // Great_Nature -998 // Iron -999 // Steel -1000 // Star_Crumb -1001 // Sparkling_Dust -1002 // Iron_Ore -1003 // Coal -1004 // Patriotism_Marks -1005 // Hammer_Of_Blacksmith -1006 // Old_Magic_Book -1007 // Penetration -1008 // Frozen_Heart -1009 // Sacred_Marks -1010 // Phracon -1011 // Emveretarcon -1012 // Lizard_Scruff -1013 // Colorful_Shell -1014 // Jaws_Of_Ant -1015 // Thin_N'_Long_Tongue -1016 // Rat_Tail -1017 // Moustache_Of_Mole -1018 // Nail_Of_Mole -1019 // Wooden_Block -1020 // Long_Hair -1021 // Dokkaebi_Horn -1022 // Fox_Tail -1023 // Fish_Tail -1024 // Chinese_Ink -1025 // Spiderweb -1026 // Acorn -1027 // Porcupine_Spike -1028 // Wild_Boar's_Mane -1029 // Tiger's_Skin -1030 // Tiger_Footskin -1031 // Limb_Of_Mantis -1032 // Blossom_Of_Maneater -1033 // Root_Of_Maneater -1034 // Cobold_Hair -1035 // Dragon_Canine -1036 // Dragon_Scale -1037 // Dragon_Train -1038 // Petite_DiablOfs_Horn -1039 // Petite_DiablOfs_Wing -1040 // Elder_Pixie's_Beard -1041 // Lantern -1042 // Short_Leg -1043 // Nail_Of_Orc -1044 // Tooth_Of_ -1045 // Sacred_Masque -1046 // Tweezer -1047 // Head_Of_Medusa -1048 // Slender_Snake -1049 // Skirt_Of_Virgin -1050 // Tendon -1051 // Detonator -1052 // Single_Cell -1053 // Tooth_Of_Ancient_Fish -1054 // Lip_Of_Ancient_Fish -1055 // Earthworm_Peeling -1056 // Grit -1057 // Moth_Dust -1058 // Wing_Of_Moth -1059 // Transparent_Cloth -1060 // Golden_Hair -1061 // Starsand_Of_Witch -1062 // Pumpkin_Head -1063 // Sharpened_Cuspid -1064 // Reins -1065 // Booby_Trap -1066 // Tree_Of_Archer_1 -1067 // Tree_Of_Archer_2 -1068 // Tree_Of_Archer_3 -1088 // Morocc_Potion -1089 // Payon_Potion -1092 // Empty_Cylinder -1093 // Empty_Potion -1094 // Short_Daenggie -1095 // Needle_Of_Alarm -1096 // Round_Shell -1097 // Worn_Out_Page -1098 // Manacles -1099 // Worn_Out_Prison_Uniform -6001 // Essence_Of_Fire -6002 // Token_Of_Apostle -6003 // Soul_Pendant -6004 // Bapho_Doll -6008 // Wood -6010 // Pickaxe -6020 // Fur -6021 // Peaked_Hat -6022 // Hard_Skin -6023 // Mystic_Horn -6032 // Horn_Of_Hilsrion -6033 // Horn_Of_Tendrilion -6073 // Dragon's_Mane -6075 // Crystalized_Teardrop -6086 // Withered_Flower -6087 // Crystal_Of_Soul_01 -6088 // Crystal_Of_Soul_02 -6089 // Piece_Of_Darkness -6090 // Purified_Bradium -6091 // Dark_Red_Scale -6095 // Flavored_Alcohol -6096 // Fish_With_Blue_Back -6097 // Pumpkin_Pie_ -6098 // Small_Snow_Flower -6099 // Grilled_Rice_Cake -6100 // Damp_Darkness -6104 // Big_Cell -6105 // Morning_Dew -6106 // Well_Ripened_Berry -6107 // Sunset_On_The_Rock -6108 // Apple_Pudding -6109 // Plant_Neutrient -6110 // Vital_Flower -6111 // Mystic_Stone -6112 // Fresh_Plant -6113 // Vital_Flower_ -6114 // Flame_Gemstone -6115 // Bun_ -6120 // Face_Paint -6123 // Surface_Paint -6128 // Guillotine_Antidote -6144 // Heartbroken_Tears -6145 // Vulcan_Bullet -6146 // Magic_Gear_Fuel -6147 // Liquid_Condensed_Bullet -6186 // Monkey_Wrench -6189 // Magic_Book_FB -6190 // Magic_Book_CB -6191 // Magic_Book_LB -6192 // Magic_Book_SG -6193 // Magic_Book_LOV -6194 // Magic_Book_MS -6195 // Magic_Book_CM -6196 // Magic_Book_TV -6197 // Magic_Book_TS -6198 // Magic_Book_JT -6199 // Magic_Book_WB -6200 // Magic_Book_HD -6201 // Magic_Book_ES -6202 // Magic_Book_ES_ -6203 // Magic_Book_CL -6204 // Magic_Book_CR -6205 // Magic_Book_DL -6210 // Seed_Of_Horny_Plant -6211 // Bloodsuck_Plant_Seed -6212 // Bomb_Mushroom_Spore -6213 // Explosive_Powder -6214 // Smoke_Powder -6215 // Tear_Gas -6216 // Oil_Bottle -6217 // Mandragora_Flowerpot -6223 // Carnium -6224 // Bradium -6244 // Gun_Powder -6245 // Black_Powder -6246 // Yellow_Powder -6247 // White_Powder -6248 // Melange_Pot -6249 // Savage_Meat -6250 // Cooking_Skewer -6251 // Black_Charcoal -6252 // Wolf_Blood -6253 // Cold_Ice -6254 // Beef_Head_Meat -6255 // Large_Cookpot -6256 // Ice_Fragment -6257 // Ice_Crystal -6258 // Comodo_Tropic_Fruit -6259 // Drocera_Tentacle -6260 // Petti_Tail -6261 // Fine_Noodle -6262 // Cool_Gravy -6263 // Coconut_Fruit -6264 // Melon -6265 // Pineapple -6279 // Apple_Bomb_CB -6280 // Pinepple_Bomb_CB -6281 // Coconut_Bomb_CB -6282 // Melon_Bomb_CB -6283 // Banana_Bomb_CB -6284 // Plant_Genetic_Grow -6285 // Quality_Potion_Book -6297 // Bottle_To_Throw -6321 // Rakehorn_Helm -6322 // Antler_Helm -6323 // Twinhorn_Helm -6324 // Singlehorn_Helm -6325 // White_Spider_Limb -6326 // Queen_Wing_Piece -6360 // Scarlet_Pts -6361 // Indigo_Pts -6362 // Yellow_Wish_Pts -6363 // Lime_Green_Pts -7001 // Mould_Powder -7002 // Ogre_Tooth -7003 // Anolian_Skin -7004 // Mud_Lump -7005 // Skull -7006 // Wing_Of_Red_Bat -7007 // Claw_Of_Rat -7008 // Stiff_Horn -7009 // Glitter_Shell -7010 // Tail_Of_Steel_Scorpion -7011 // Claw_Of_Monkey -7012 // Tough_Scalelike_Stem -7013 // Coral_Reef -7014 // Old_Portrait -7015 // Bookclip_In_Memory -7016 // Spoon_Stub -7017 // Executioner's_Mitten -7018 // Young_Twig -7019 // Loki's_Whispers -7020 // Mother's_Nightmare -7021 // Foolishness_Of_Blind -7022 // Old_Hilt -7023 // Blade_Lost_In_Darkness -7024 // Bloody_Edge -7026 // Key_Of_Clock_Tower -7027 // Underground_Key -7030 // Claw_Of_Desert_Wolf -7031 // Old_Frying_Pan -7032 // Piece_Of_Egg_Shell -7033 // Poison_Spore -7034 // Red_Socks_With_Holes -7035 // Matchstick -7036 // Fang_Of_Garm -7038 // Yarn -7041 // Fine_Grit -7043 // Fine_Sand -7047 // Alice's_Apron -7048 // Talon_Of_Griffin -7049 // Stone -7053 // Cyfar -7054 // Brigan -7055 // Animal_Pooopoo -7056 // Payroll_Of_Kafra -7057 // Gallar_Horn -7058 // Gullraifnir -7063 // Soft_Feather -7064 // Dragon_Fly_Wing -7065 // Sea_Otter_Leather -7066 // Ice_Piece -7067 // Stone_Piece -7068 // Burn_Tree -7069 // Broken_Armor_Piece -7070 // Broken_Shell -7071 // Tatters_Clothes -7072 // Rust_Suriken -7073 // Jewel_Of_Prayer -7074 // Iron_Glove -7075 // Iron_Maiden -7076 // Mystery_Wheel -7077 // Silver_Fancy -7078 // Anger_Of_Valkurye -7079 // Feather_Of_Angel -7080 // Foot_Step_Of_Cat -7081 // Beard_Of_Women -7082 // Root_Of_Stone -7083 // Soul_Of_Fish -7084 // Saliva_Of_Bird -7085 // Tendon_Of_Bear -7086 // Symbol_Of_Sun -7087 // Breath_Of_Soul -7088 // Crystal_Of_Snow -7089 // Indication_Of_Tempest -7090 // Slilince_Wave -7091 // Rough_Billows -7092 // Air_Stream -7093 // Wheel -7094 // Mystery_Piece -7095 // Broken_Steel_Piece -7096 // Cold_Magma -7097 // Burning_Heart -7098 // Live_Coal -7099 // Old_Magic_Circle -7100 // Sharp_Leaf -7101 // Peco_Wing_Feather -7102 // Hideous_Dream -7103 // Unknown_Liquid_Bottle -7104 // Fake_Angel_Wing -7105 // Fake_Angel_Loop -7106 // Goat's_Horn -7107 // Gaoat's_Skin -7108 // Boroken_Shiled_Piece -7109 // Shine_Spear_Blade -7110 // Vroken_Sword -7111 // Smooth_Paper -7112 // Fright_Paper_Blade -7113 // Broken_Pharaoh_Symbol -7114 // Tutankhamen's_Mask -7115 // Harpy's_Feather -7116 // Harpy's_Claw -7117 // Rent_Spell_Book -7118 // Rent_Scroll -7119 // Spawns -7120 // Burning_Horse_Shoe -7121 // Honey_Jar -7122 // Hot_Hair -7123 // Dragon's_Skin -7124 // Sand_Lump -7125 // Scropion's_Nipper -7126 // Large_Jellopy -7127 // Alcol_Create_Book -7128 // FireBottle_Create_Book -7129 // Acid_Create_Book -7130 // Plant_Create_Book -7131 // Mine_Create_Book -7132 // Coating_Create_Book -7133 // Slim_Potion_Create_Book -7134 // Medicine_Bowl -7140 // Seed_Of_Life -7141 // Yggdrasilberry_Dew -7143 // Life_Force_Pot -7144 // Normal_Potion_Book -7147 // Jasmin -7149 // Yellow_Plate -7150 // Bamboo_Cut -7151 // Oil_Paper -7152 // Glossy_Hair -7153 // Old_Japaness_Clothes -7154 // Poison_Powder -7155 // Poison_Toad's_Skin -7156 // Broken_Shuriken -7157 // Black_Mask -7158 // Broken_Wine_Vessel -7159 // Tengu's_Nose -7160 // Lord's_Passable_Ticket -7161 // Black_Bear's_Skin -7162 // Cloud_Piece -7163 // Sharp_Feeler -7164 // Hard_Peach -7165 // Limpid_Celestial_Robe -7166 // Soft_Silk_Cloth -7167 // Mystery_Iron_Bit -7168 // Great_Wing -7169 // Taegeuk_Plate -7170 // Tuxedo -7171 // Leopard_Skin -7172 // Leopard_Talon -7174 // Packing_Ribbon -7175 // Packing_Paper -7182 // Cacao -7186 // Thin_Stem -7187 // Festival_Mask -7188 // Browny_Root -7189 // Heart_Of_Tree -7190 // Solid_Peeling -7191 // Lamplight -7192 // Blade_Of_Pinwheel -7193 // Germinating_Sprout -7194 // Soft_Leaf -7195 // Air_Rifle -7196 // Shoulder_Protection -7197 // Tough_Vines -7198 // Great_Leaf -7200 // Flexible_String -7201 // Log -7202 // Beetle_Nipper -7203 // Solid_Twig -7204 // Gunpowder -7205 // Piece_Of_Black_Cloth -7206 // Black_Kitty_Doll -7207 // Old_Manteau -7208 // Rusty_Cleaver -7209 // Dullahan's_Helm -7210 // Dullahan_Armor -7211 // Rojerta_Piece -7212 // Hanging_Doll -7213 // Needle_Pouch -7214 // Bat_Cage -7215 // Broken_Needle -7216 // Red_Scarf -7217 // Spool -7218 // Rotten_Rope -7219 // Striped_Socks -7220 // Ectoplasm -7221 // Tangled_Chain -7222 // Tree_Knot -7223 // Distorted_Portrait -7225 // Pumpkin_Bucket -7226 // Pill -7262 // Fan -7263 // Cat_Eyed_Stone -7264 // Dried_Sand -7265 // Dragon_Horn -7266 // Dragon_Fang -7267 // Tiger_Skin_Panties -7268 // Little_Blacky_Ghost -7269 // Bib -7270 // Milk_Bottle -7277 // Munak_Doll -7286 // Chilli -7289 // Olivine -7290 // Phlogopite -7291 // Agate -7292 // Muscovite -7293 // Rose_Quartz -7294 // Turquoise -7295 // Citrine -7296 // Pyroxene -7297 // Biotite -7298 // Leaf_Clothes -7299 // Bamboo_Basket -7300 // Gemstone -7301 // Sword_Accessory -7303 // Bag_Of_Rice -7312 // Jubilee -7315 // Dark_Crystal_Fragment -7316 // Long_Limb -7317 // Screw -7318 // Old_Pick -7319 // Old_Steel_Plate -7320 // Air_Pollutant -7321 // Fragment_Of_Crystal -7322 // Poisonous_Gas -7323 // Battered_Kettle -7325 // Tube -7326 // Fluorescent_Liquid -7327 // Headlamp -7340 // Will_Of_Darkness -7345 // Armlet_Of_Prisoner -7352 // Transparent_Plate01 -7353 // Transparent_Plate02 -7354 // Transparent_Plate03 -7355 // Transparent_Plate04 -7356 // Piece_Of_Crest1 -7357 // Piece_Of_Crest2 -7358 // Piece_Of_Crest3 -7359 // Piece_Of_Crest4 -7419 // Embryo_HandBook -7433 // Scroll -7434 // Elemental_Potion_Book -7435 // Golden_Bracelet -7436 // Piece_Of_Memory_Green -7437 // Piece_Of_Memory_Purple -7438 // Piece_Of_Memory_Blue -7439 // Piece_Of_Memory_Red -7440 // Red_Feather -7441 // Blue_Feather -7442 // Cursed_Seal -7443 // Tri_Headed_Dragon_Head -7444 // Treasure_Box -7445 // Dragonball_Green -7446 // Dragonball_Blue -7447 // Dragonball_Red -7448 // Dragonball_Yellow -7449 // Bloody_Page -7450 // Piece_Of_Bone_Armor -7451 // Scale_Of_Red_Dragon -7452 // Yellow_Spice -7453 // Sweet_Sauce -7454 // Plain_Sauce -7455 // Hot_Sauce -7456 // Red_Spice -7457 // Cooking_Oil -7472 // Cookbook01 -7473 // Cookbook02 -7474 // Cookbook03 -7475 // Cookbook04 -7476 // Cookbook05 -7477 // Cookbook06 -7478 // Cookbook07 -7479 // Cookbook08 -7480 // Cookbook09 -7481 // Cookbook10 -7482 // Pot -7507 // Sturdy_Iron_Piece -7510 // Valhalla_Flower -7511 // Rune_Of_Darkness -7512 // Burnt_Parts -7513 // Pocket_Watch -7521 // Flame_Stone -7522 // Ice_Stone -7523 // Wind_Stone -7524 // Shadow_Orb -7561 // Ice_Heart -7562 // Ice_Scale -7563 // Bloody_Rune -7564 // Rotten_Meat -7565 // Sticky_Poison -7566 // Will_Of_Darkness_ -7567 // Suspicious_Hat -7568 // White_Mask -7574 // Ice_Particle -7751 // Old_White_Cloth -7752 // Clattering_Skull -7753 // Broken_Farming_Utensil -7754 // Broken_Crown -7830 // Goddess_Tear -7831 // Valkyrie_Token -7832 // Brynhild_Armor_Piece -7833 // Hero_Remains -7834 // Andvari_Ring -7835 // Dusk_Glow -7836 // Dawn_Essence -7837 // Cold_Moonlight -7838 // Hazy_Starlight -7931 // Poison_Kit -7932 // Poison_Herb_Nerium -7933 // Poison_Herb_Rantana -7934 // Poison_Herb_Makulata -7935 // Poison_Herb_Seratum -7936 // Poison_Herb_Scopolia -7937 // Poison_Herb_Amoena -7938 // Light_Granule -7939 // Elder_Branch -7940 // Special_Alloy_Trap -11000 // Prontera_Book_01 -11001 // Adventure_Story01 -11002 // Great_Chef_Orleans01 -11003 // Legend_Of_Kafra01 -11004 // Mercenary_Rebellion -11005 // Tyrant_Schmidt -11006 // Blood_Flower01 -11007 // Blood_Flower02 -11008 // Barmund -11009 // Adventure_Story02 -11020 // Japan_Book1 -11021 // Japan_Book2 -11022 // Mix_Cook_Book -11023 // Increase_Stamina_Study -11024 // Vital_Drink_CB -//--- 2010 / 03 / 12 diff --git a/db/pre-re/item_db.txt b/db/pre-re/item_db.txt deleted file mode 100644 index ebe4fb4065..0000000000 --- a/db/pre-re/item_db.txt +++ /dev/null @@ -1,6593 +0,0 @@ -// Items Database -// -// Structure of Database: -// ID,AegisName,Name,Type,Buy,Sell,Weight,ATK,DEF,Range,Slots,Job,Class,Gender,Loc,wLV,eLV[:maxLevel],Refineable,View,{ Script },{ OnEquip_Script },{ OnUnequip_Script } -// -// Healing Items -//============================================================= -501,Red_Potion,Red Potion,0,50,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(45,65),0; },{},{} -502,Orange_Potion,Orange Potion,0,200,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(105,145),0; },{},{} -503,Yellow_Potion,Yellow Potion,0,550,,130,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(175,235),0; },{},{} -504,White_Potion,White Potion,0,1200,,150,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(325,405),0; },{},{} -505,Blue_Potion,Blue Potion,0,5000,,150,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 0,rand(40,60); },{},{} -506,Green_Potion,Green Potion,0,40,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; },{},{} -507,Red_Herb,Red Herb,0,18,,30,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(18,28),0; },{},{} -508,Yellow_Herb,Yellow Herb,0,40,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(38,58),0; },{},{} -509,White_Herb,White Herb,0,120,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(75,115),0; },{},{} -510,Blue_Herb,Blue Herb,0,60,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 0,rand(15,30); },{},{} -511,Green_Herb,Green Herb,0,10,,30,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_end SC_Poison; },{},{} -512,Apple,Apple,0,15,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(16,22),0; },{},{} -513,Banana,Banana,0,15,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(17,21),0; },{},{} -514,Grape,Grape,0,200,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 0,rand(10,15); },{},{} -515,Carrot,Carrot,0,15,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(18,20),0; },{},{} -516,Sweet_Potato,Potato,0,15,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(15,23),0; },{},{} -517,Meat,Meat,0,50,,150,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(70,100),0; },{},{} -518,Honey,Honey,0,500,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(70,100),rand(20,40); },{},{} -519,Milk,Milk,0,25,,30,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(27,37),0; },{},{} -520,Leaflet_Of_Hinal,Hinalle Leaflet,0,150,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(175,235),0; },{},{} -521,Leaflet_Of_Aloe,Aloe Leaflet,0,360,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(325,405),0; },{},{} -522,Fruit_Of_Mastela,Mastela Fruit,0,8500,,30,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(400,600),0; },{},{} -523,Holy_Water,Holy Water,0,20,,30,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_end SC_Curse; },{},{} -525,Panacea,Panacea,0,500,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination; },{},{} -526,Royal_Jelly,Royal Jelly,0,7000,,150,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(325,405),rand(40,60); sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination; },{},{} -528,Monster's_Feed,Monster's Feed,0,60,,150,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(72,108),0; },{},{} -529,Candy,Candy,0,10,,30,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(45,65),0; },{},{} -530,Candy_Striper,Candy Cane,0,20,,40,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(105,145),0; },{},{} -531,Apple_Juice,Apple Juice,0,20,,40,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(25,35),0; },{},{} -532,Banana_Juice,Banana Juice,0,20,,40,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(26,34),0; },{},{} -533,Grape_Juice,Grape Juice,0,250,,40,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 0,rand(15,25); },{},{} -534,Carrot_Juice,Carrot Juice,0,20,,40,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(27,33),0; },{},{} -535,Pumpkin,Pumpkin,0,15,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 19,0; },{},{} -536,Ice_Cream,Ice Cream,0,150,,80,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(105,145),0; sc_start SC_Freeze,10000,0,2500,0; },{},{} -537,Pet_Food,Pet Food,0,1000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(50,90),0; },{},{} -538,Well_Baked_Cookie,Well-baked Cookie,0,1000,,30,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(160,200),0; },{},{} -539,Piece_Of_Cake,Piece of Cake,0,3000,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(270,330),0; },{},{} -540,Falcon's_Feed,Falcon Food,0,2000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(185,225),0; },{},{} -541,Pecopeco's_Feed,PecoPeco Food,0,3000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(325,405),0; },{},{} -//542,Festive_Cookie,Festival Cookie,0,10,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(325,405),0; },{},{} -//543,Festive_Rainbow_Cake,Festival Rainbow Cake,0,10,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(325,405),0; },{},{} -544,Fish_Slice,Raw Fish,0,20,,30,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(25,60),0; },{},{} -545,Red_Slim_Potion,Condensed Red Potion,0,150,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(45,65),0; },{},{} -546,Yellow_Slim_Potion,Condensed Yellow Potion,0,600,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(175,235),0; },{},{} -547,White_Slim_Potion,Condensed White Potion,0,1650,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(325,405),0; },{},{} -548,Cheese,Cheese,0,2800,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 0,rand(10,15); },{},{} -549,Nice_Sweet_Potato,Yam,0,180,,80,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(50,100),0; sc_start SC_Stun,3000,0,1500,0; },{},{} -550,Popped_Rice,Rice Cake,0,10,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(10,15),0; },{},{} -551,Shusi,Sushi,0,1,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(50,60),0; },{},{} -552,KETUPAT,Ketupat,0,1,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(70,90),rand(20,30); },{},{} -553,Bun,Bao,0,1,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(35,70),0; },{},{} -554,Mojji,Mochi,0,400,,80,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(105,145),0; sc_start SC_Stun,3000,0; sc_start SC_Blind,2000,0,1500,0; },{},{} -555,Rice_Cake,Traditional Rice Cake,0,100,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(105,145),0; },{},{} -556,Long_Rice_Cake,Rice Cake Stick,0,10,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(20,25),0; },{},{} -557,Hash_Rice_Cake,Neatly Sliced Rice Cake,0,10,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(25,30),0; },{},{} -558,Chocolate,Chocolate,0,1,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 1,1; },{},{} -559,HandMade_Chocolate,Hand-made Chocolate,0,1,,80,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 50,50; },{},{} -560,HandMade_Chocolate_,Handmade White Chocolate,0,5000,,80,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 50,50; },{},{} -561,White_Chocolate,White Chocolate,0,5000,,80,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 50,50; },{},{} -562,Pizza,Doublecrust Swiss Fondue,0,100,,150,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(70,100),0; },{},{} -563,Pizza_01,Doublecrust Swiss Fondue,0,1200,,150,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(375,445),0; },{},{} -564,Rice_Ball,Rice Ball,0,1,,30,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 200,0; },{},{} -565,Vita500_Bottle,Vita500,0,580,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(142,274),0; },{},{} -566,Tomyumkung,Tom Yum Goong,0,10000,,150,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(244,350),rand(10,30); sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination; },{},{} -567,Prawn,Shrimp,0,500,,40,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(117,192),0; },{},{} -568,Lemon,Lemon,0,60,,40,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 0,rand(10,20); },{},{} -569,Novice_Potion,Novice Potion,0,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(22,33),0; },{},{} -570,Lucky_Candy,Lucky Candy,0,10,,30,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(45,65),0; },{},{} -571,Lucky_Candy_Cane,Lucky Candy Cane,0,20,,40,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(105,145),0; },{},{} -572,Lucky_Cookie,Lucky Cookie,0,1000,,30,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(160,200),0; },{},{} -573,Chocolate_Drink,Chocolate Drink,0,7000,,150,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(330,410),rand(45,65); sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination; },{},{} -574,Egg,Egg,0,20,,30,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(33,42),0; },{},{} -575,Piece_Of_Cake_,2nd Anniversary Cake,0,10,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(270,330),0; },{},{} -576,Prickly_Fruit,Prickly Fruit,0,540,,60,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(150,300),rand(20,30); },{},{} -577,Grain,Bag of Grain,0,200,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(60,70),0; },{},{} -578,Strawberry,Strawberry,0,200,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 0,rand(16,28); },{},{} -579,Delicious_Fish,Fresh Fish,0,250,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(100,150),0; },{},{} -580,Bread,Bread,0,150,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(50,90),0; },{},{} -581,Mushroom,Edible Mushroom,0,40,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(20,30),0; },{},{} -582,Orange,Orange,0,300,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(10,20),rand(10,20); },{},{} -583,KETUPAT_,Ketupat Sayur,0,7000,,150,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(325,405),rand(40,60); sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination; },{},{} -584,Fish_Ball_Soup,Fish Cake Soup,0,100,,60,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(40,70),0; },{},{} -585,Wurst,Brusti,11,2,,40,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(15,20),0; itemskill "PR_MAGNIFICAT",3; },{},{} -586,Mother's_Cake,Mother's Cake,0,20,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(325,405),0; },{},{} -587,Prickly_Fruit_,Red Prickly Fruit,0,880,,60,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(270,330),rand(20,30); },{},{} -588,Spaghetti,Spaghetti,0,100,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(40,70),0; },{},{} -589,Pizza_02,Pizza,0,1200,,150,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(375,445),0; },{},{} -590,Brezel_,Pretzel,0,2,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(50,90),0; },{},{} -591,Caviar_Pancake,Caviar Pancake,0,0,,150,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(325,405),rand(40,60); sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination; },{},{} -592,Jam_Pancake,Jam Pancake,0,0,,150,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(325,405),rand(40,60); sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination; },{},{} -593,Honey_Pancake,Honey Pancake,0,0,,150,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(325,405),rand(40,60); sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination; },{},{} -594,Sour_Cream_Pancake,Sour-Cream Pancake,0,0,,150,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(325,405),rand(40,60); sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination; },{},{} -595,Mushroom_Pancake,Mushroom Pancake,0,0,,150,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(325,405),rand(40,60); sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination; },{},{} -596,Cute_Strawberry_Choco,Cute Strawberry-Choco,0,20,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 0,rand(1,100); },{},{} -597,Lovely_Choco_Tart,Lovely Choco-Tart,0,20,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(10,400),0; },{},{} -598,Light_Red_Pot,Light Red Potion,0,50,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(45,65),0; },{},{} -599,Light_Orange_Pot,Light Orange Potion,0,200,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(105,145),0; },{},{} -// Usable Items -//=================================================================== -601,Wing_Of_Fly,Fly Wing,11,60,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "AL_TELEPORT",1; },{},{} -602,Wing_Of_Butterfly,Butterfly Wing,11,300,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "AL_TELEPORT",3; },{},{} -603,Old_Blue_Box,Old Blue Box,2,10000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_BlueBox),1; },{},{} -604,Branch_Of_Dead_Tree,Dead Branch,2,50,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ monster "this",-1,-1,"--ja--",-1,1,""; },{},{} -605,Anodyne,Anodyne,11,2000,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "SM_ENDURE",1; },{},{} -606,Aloebera,Aloevera,11,1500,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "SM_SELFPROVOKE",1; },{},{} -607,Yggdrasilberry,Yggdrasil Berry,0,5000,,300,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 100,100; },{},{} -608,Seed_Of_Yggdrasil,Yggdrasil Seed,0,5000,,300,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 50,50; },{},{} -609,Amulet,Amulet,2,100,,100,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -610,Leaf_Of_Yggdrasil,Yggdrasil Leaf,11,4000,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "ALL_RESURRECTION",1; },{},{} -611,Spectacles,Magnifier,11,40,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "MC_IDENTIFY",1; },{},{} -612,Portable_Furnace,Mini Furnace,2,150,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ produce 21; },{},{} -613,Iron_Hammer,Iron Hammer,2,1000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ produce 1; },{},{} -614,Golden_Hammer,Golden Hammer,2,3000,,300,,,,,0xFFFFFFFF,7,2,,,,,,{ produce 2; },{},{} -615,Oridecon_Hammer,Oridecon Hammer,2,5000,,400,,,,,0xFFFFFFFF,7,2,,,,,,{ produce 3; },{},{} -616,Old_Card_Album,Old Card Album,2,10000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_CardAlbum),1; },{},{} -617,Old_Violet_Box,Old Purple Box,2,10000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_VioletBox),1; },{},{} -618,Worn_Out_Scroll,Worn Out Scroll,2,50,,20,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -619,Unripe_Apple,Unripe Apple,2,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1002; },{},{} -620,Orange_Juice,Orange Juice,2,1500,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1113; },{},{} -621,Bitter_Herb,Bitter Herb,2,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1031; },{},{} -622,Rainbow_Carrot,Rainbow Carrot,2,2500,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1063; },{},{} -623,Earthworm_The_Dude,Earthworm the Dude,2,4000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1049; },{},{} -624,Rotten_Fish,Rotten Fish,2,2500,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1011; },{},{} -625,Lusty_Iron,Rusty Iron,2,100,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1042; },{},{} -626,Monster_Juice,Monster Juice,2,1500,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1035; },{},{} -627,Sweet_Milk,Sweet Milk,2,7000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1167; },{},{} -628,Well_Dried_Bone,Well-Dried Bone,2,10000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1107; },{},{} -629,Singing_Flower,Singing Flower,2,300,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1052; },{},{} -630,Dew_Laden_Moss,Dew Laden Moss,2,10,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1014; },{},{} -631,Deadly_Noxious_Herb,Deadly Noxious Herb,2,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1077; },{},{} -632,Fatty_Chubby_Earthworm,Fatty Chubby Earthworm,2,5000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1019; },{},{} -633,Baked_Yam,Sweet Potato,2,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1056; },{},{} -634,Tropical_Banana,Tropical Banana,2,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1057; },{},{} -635,Horror_Of_Tribe,Orc Trophy,2,300,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1023; },{},{} -636,No_Recipient,No Recipient,2,100,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1026; },{},{} -637,Old_Broom,Old Broom,2,350,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1110; },{},{} -638,Silver_Knife_Of_Chaste,Silver Knife of Chastity,2,12000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1170; },{},{} -639,Armlet_Of_Obedience,Armlet of Obedience,2,18000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1029; },{},{} -640,Shining_Stone,Shining Stone,2,3000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1155; },{},{} -641,Contracts_In_Shadow,Contract in Shadow,2,100,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1109; },{},{} -642,Book_Of_Devil,Book of the Devil,2,1800,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1101; },{},{} -643,Pet_Incubator,Pet Incubator,2,3000,,30,,,,,0xFFFFFFFF,7,2,,,,,,{ bpet; },{},{} -644,Gift_Box,Gift Box,2,1000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_GiftBox),1; },{},{} -645,Center_Potion,Concentration Potion,2,800,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_ASPDPOTION0,1800000,0; },{},{} -656,Awakening_Potion,Awakening Potion,2,1500,,150,,,,,0xFFF7FEEF,7,2,,,40,,,{ sc_start SC_ASPDPOTION1,1800000,0; },{},{} -657,Berserk_Potion,Berserk Potion,2,3000,,200,,,,,0x41E646A6,7,2,,,85,,,{ sc_start SC_ASPDPOTION2,1800000,0; },{},{} -658,Union_Of_Tribe,Union of Tribe,2,2,,500,,,,,0xFFFFFFFF,7,2,,,,,,{ guildgetexp rand(600000,1200000); },{},{} -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,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; },{},{} -666,Gift_Box_3,Gift Box,2,1000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_GiftBox_3),1; },{},{} -667,Gift_Box_4,Gift Box,2,1000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_GiftBox_4),1; },{},{} -668,Handsei,Red Envelope,2,0,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ set Zeny,Zeny+rand(1000,10000); },{},{} -669,Rice_Cake_Soup,Tempting Rice-Cake Soup,0,500,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal -100,-100; },{},{} -670,Gold_Coin_Moneybag,Bag of Gold Coins,3,100000,,400,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -671,Gold_Coin,Gold Coin,3,10000,,40,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -672,Copper_Coin_Moneybag,Bag of Bronze Coins,3,1000,,400,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -673,Copper_Coin,Bronze Coin,3,100,,40,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -674,Mithril_Coin,Mithril Coin,3,5000,,40,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -675,Silver_Coin,Silver Coin,3,5000,,40,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -676,Silver_Coin_Moneybag,Bag of Silver Coins,3,50000,,400,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -677,White_Gold_Coin,Platinum Coin,3,2000,,40,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -678,Poison_Bottle,Poison Bottle,2,5000,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ if(Class==Job_Assassin_Cross) { sc_start SC_DPoison,60000,0; sc_start SC_ASPDPOTION3,60000,0; } else percentheal -100,-100; },{},{} -679,Gold_Pill,Pilule,2,5000,,300,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_DPoison,10000,0,1000,0; sc_start SC_Poison,50000,0; },{},{} -680,Magical_Carnation,Magic Carnation,0,0,,1000,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 0,20; },{},{} -681,Memory_Of_Wedding,Sweet Memory of Marriage,2,50000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ if(getpartnerid()) sc_start SC_WEDDING,600000,0; },{},{} -682,Realgar_Wine,Distilled Fighting Spirit,2,0,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_ATKPOTION,60000,30; },{},{} -683,Exorcize_Herb,Herb of Incantation,2,0,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_MATKPOTION,60000,30; },{},{} -684,Durian,Durian,2,15000,,300,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_ATKPOTION,60000,10; sc_start SC_MATKPOTION,60000,10; },{},{} -685,RAMADAN,Ramadan,0,5000,,300,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 100,50; },{},{} -686,Earth_Scroll_1_3,Level 3 Earth Spike,11,1000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "WZ_EARTHSPIKE",3; },{},{} -687,Earth_Scroll_1_5,Level 5 Earth Spike,11,2000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "WZ_EARTHSPIKE",5; },{},{} -688,Cold_Scroll_1_3,Level 3 Cold Bolt,11,1000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "MG_COLDBOLT",3; },{},{} -689,Cold_Scroll_1_5,Level 5 Cold Bolt,11,2000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "MG_COLDBOLT",5; },{},{} -690,Fire_Scroll_1_3,Level 3 Fire Bolt,11,1000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "MG_FIREBOLT",3; },{},{} -691,Fire_Scroll_1_5,Level 5 Fire Bolt,11,2000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "MG_FIREBOLT",5; },{},{} -692,Wind_Scroll_1_3,Level 3 Lightening Bolt,11,1000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "MG_LIGHTNINGBOLT",3; },{},{} -693,Wind_Scroll_1_5,Level 5 Lightening Bolt,11,2000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "MG_LIGHTNINGBOLT",5; },{},{} -694,Ghost_Scroll_1_3,Level 3 Soul Strike,11,1000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "MG_SOULSTRIKE",3; },{},{} -695,Ghost_Scroll_1_5,Level 5 Soul Strike,11,2000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "MG_SOULSTRIKE",5; },{},{} -696,Fire_Scroll_2_1,Level 1 Fire Ball,11,1000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "MG_FIREBALL",1; },{},{} -697,Fire_Scroll_2_5,Level 5 Fire Ball,11,2000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "MG_FIREBALL",5; },{},{} -698,Fire_Scroll_3_1,Level 1 Fire Wall,11,1000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "MG_FIREWALL",1; },{},{} -699,Fire_Scroll_3_5,Level 5 Fire Wall,11,2000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "MG_FIREWALL",5; },{},{} -700,Cold_Scroll_2_1,Level 1 Frost Diver,11,1000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "MG_FROSTDIVER",1; },{},{} -// Etc Items -//=================================================================== -701,Ora_Ora,Ora Ora,3,55000,,200,,,,,,,,,,,,,{},{},{} -702,Animal_Blood,Animal Gore,3,450,,100,,,,,,,,,,,,,{},{},{} -703,Hinalle,Hinalle,3,500,,10,,,,,,,,,,,,,{},{},{} -704,Aloe,Aloe,3,500,,10,,,,,,,,,,,,,{},{},{} -705,Clover,Clover,3,10,,10,,,,,,,,,,,,,{},{},{} -706,Four_Leaf_Clover,Four Leaf Clover,3,80000,,10,,,,,,,,,,,,,{},{},{} -707,Singing_Plant,Singing Plant,3,500,,10,,,,,,,,,,,,,{},{},{} -708,Ment,Ment,3,500,,10,,,,,,,,,,,,,{},{},{} -709,Izidor,Izidor,3,500,,10,,,,,,,,,,,,,{},{},{} -710,Illusion_Flower,Illusion Flower,3,1000,,10,,,,,,,,,,,,,{},{},{} -711,Shoot,Shoot,3,16,,10,,,,,,,,,,,,,{},{},{} -712,Flower,Flower,3,2,,10,,,,,,,,,,,,,{},{},{} -713,Empty_Bottle,Empty Bottle,3,6,,20,,,,,,,,,,,,,{},{},{} -714,Emperium,Emperium,3,2,,1000,,,,,,,,,,,,,{},{},{} -715,Yellow_Gemstone,Yellow Gemstone,3,600,,30,,,,,,,,,,,,,{},{},{} -716,Red_Gemstone,Red Gemstone,3,600,,30,,,,,,,,,,,,,{},{},{} -717,Blue_Gemstone,Blue Gemstone,3,600,,30,,,,,,,,,,,,,{},{},{} -718,Dark_Red_Jewel,Garnet,3,6000,,100,,,,,,,,,,,,,{},{},{} -719,Violet_Jewel,Amethyst,3,6000,,100,,,,,,,,,,,,,{},{},{} -720,Skyblue_Jewel,Aquamarine,3,6000,,100,,,,,,,,,,,,,{},{},{} -721,Azure_Jewel,Emerald,3,6000,,100,,,,,,,,,,,,,{},{},{} -722,Scarlet_Jewel,Pearl,3,6000,,100,,,,,,,,,,,,,{},{},{} -723,Cardinal_Jewel,Ruby,3,6000,,100,,,,,,,,,,,,,{},{},{} -724,Cardinal_Jewel_,Cursed Ruby,3,600,,100,,,,,,,,,,,,,{},{},{} -725,Red_Jewel,Sardonyx,3,6000,,100,,,,,,,,,,,,,{},{},{} -726,Blue_Jewel,Sapphire,3,6000,,100,,,,,,,,,,,,,{},{},{} -727,White_Jewel,Opal,3,6000,,100,,,,,,,,,,,,,{},{},{} -728,Golden_Jewel,Topaz,3,6000,,100,,,,,,,,,,,,,{},{},{} -729,Bluish_Green_Jewel,Zircon,3,6000,,100,,,,,,,,,,,,,{},{},{} -730,Crystal_Jewel,1carat Diamond,3,10000,,100,,,,,,,,,,,,,{},{},{} -731,Crystal_Jewel_,2carat Diamond,3,25000,,100,,,,,,,,,,,,,{},{},{} -732,Crystal_Jewel__,3carat Diamond,3,55000,,100,,,,,,,,,,,,,{},{},{} -733,Crystal_Jewel___,Cracked Diamond,3,10,,100,,,,,,,,,,,,,{},{},{} -734,Red_Frame,Red Frame,3,3000,,200,,,,,,,,,,,,,{},{},{} -735,Blue_Porcelain,Chung Jah,3,5000,,500,,,,,,,,,,,,,{},{},{} -736,White_Platter,China,3,1000,,300,,,,,,,,,,,,,{},{},{} -737,Black_Ladle,Black Ladle,3,400,,50,,,,,,,,,,,,,{},{},{} -738,Pencil_Case,Pencil Case,3,400,,100,,,,,,,,,,,,,{},{},{} -739,Rouge,Rouge,3,10000,,10,,,,,,,,,,,,,{},{},{} -740,Stuffed_Doll,Puppet,3,1000,,100,,,,,,,,,,,,,{},{},{} -741,Poring_Doll,Poring Doll,3,1800,,100,,,,,,,,,,,,,{},{},{} -742,Chonchon_Doll,Chonchon Doll,3,3000,,100,,,,,,,,,,,,,{},{},{} -743,Spore_Doll,Spore Doll,3,5500,,100,,,,,,,,,,,,,{},{},{} -744,Bunch_Of_Flowers,Bouquet,3,2000,,50,,,,,,,,,,,,,{},{},{} -745,Wedding_Bouquet,Wedding Bouquet,3,12000,,50,,,,,,,,,,,,,{},{},{} -746,Glass_Bead,Glass Bead,3,1400,,50,,,,,,,,,,,,,{},{},{} -747,Crystal_Mirror,Crystal Mirror,3,15000,,50,,,,,,,,,,,,,{},{},{} -748,Witherless_Rose,Witherless Rose,3,55000,,10,,,,,,,,,,,,,{},{},{} -749,Frozen_Rose,Frozen Rose,3,35000,,10,,,,,,,,,,,,,{},{},{} -750,Baphomet_Doll,Baphomet Doll,3,18000,,100,,,,,,,,,,,,,{},{},{} -751,Osiris_Doll,Osiris Doll,3,14000,,100,,,,,,,,,,,,,{},{},{} -752,Grasshopper_Doll,Rocker Doll,3,4000,,100,,,,,,,,,,,,,{},{},{} -753,Monkey_Doll,Yoyo Doll,3,6000,,100,,,,,,,,,,,,,{},{},{} -754,Raccoondog_Doll,Raccoon Doll,3,5000,,100,,,,,,,,,,,,,{},{},{} -756,Oridecon_Stone,Rough Oridecon,3,550,,200,,,,,,,,,,,,,{},{},{} -757,Elunium_Stone,Rough Elunium,3,650,,200,,,,,,,,,,,,,{},{},{} -901,Danggie,Daenggie,3,260,,10,,,,,,,,,,,,,{},{},{} -902,Tree_Root,Tree Root,3,12,,10,,,,,,,,,,,,,{},{},{} -903,Reptile_Tongue,Reptile Tongue,3,140,,10,,,,,,,,,,,,,{},{},{} -904,Scorpion's_Tail,Scorpion Tail,3,124,,10,,,,,,,,,,,,,{},{},{} -905,Stem,Stem,3,46,,10,,,,,,,,,,,,,{},{},{} -906,Pointed_Scale,Pointed Scale,3,68,,10,,,,,,,,,,,,,{},{},{} -907,Resin,Resin,3,120,,10,,,,,,,,,,,,,{},{},{} -908,Spawn,Spawn,3,140,,10,,,,,,,,,,,,,{},{},{} -909,Jellopy,Jellopy,3,6,,10,,,,,,,,,,,,,{},{},{} -910,Garlet,Garlet,3,40,,10,,,,,,,,,,,,,{},{},{} -911,Scell,Scell,3,160,,10,,,,,,,,,,,,,{},{},{} -912,Zargon,Zargon,3,480,,10,,,,,,,,,,,,,{},{},{} -913,Tooth_Of_Bat,Tooth of Bat,3,34,,10,,,,,,,,,,,,,{},{},{} -914,Fluff,Fluff,3,8,,10,,,,,,,,,,,,,{},{},{} -915,Chrysalis,Chrysalis,3,8,,10,,,,,,,,,,,,,{},{},{} -916,Feather_Of_Birds,Feather of Birds,3,10,,10,,,,,,,,,,,,,{},{},{} -917,Talon,Talon,3,20,,10,,,,,,,,,,,,,{},{},{} -918,Sticky_Webfoot,Sticky Webfoot,3,20,,10,,,,,,,,,,,,,{},{},{} -919,Animal's_Skin,Animal Skin,3,36,,10,,,,,,,,,,,,,{},{},{} -920,Claw_Of_Wolves,Wolf Claw,3,58,,10,,,,,,,,,,,,,{},{},{} -921,Mushroom_Spore,Mushroom Spore,3,36,,10,,,,,,,,,,,,,{},{},{} -922,Orcish_Cuspid,Orc's Fang,3,220,,10,,,,,,,,,,,,,{},{},{} -923,Evil_Horn,Evil Horn,3,1200,,10,,,,,,,,,,,,,{},{},{} -924,Powder_Of_Butterfly,Powder of Butterfly,3,90,,10,,,,,,,,,,,,,{},{},{} -925,Bill_Of_Birds,Bill of Birds,3,64,,10,,,,,,,,,,,,,{},{},{} -926,Scale_Of_Snakes,Snake Scale,3,82,,10,,,,,,,,,,,,,{},{},{} -928,Insect_Feeler,Insect Feeler,3,114,,10,,,,,,,,,,,,,{},{},{} -929,Immortal_Heart,Immortal Heart,3,374,,10,,,,,,,,,,,,,{},{},{} -930,Rotten_Bandage,Rotten Bandage,3,350,,10,,,,,,,,,,,,,{},{},{} -931,Orcish_Voucher,Orcish Voucher,3,142,,10,,,,,,,,,,,,,{},{},{} -932,Skel_Bone,Skel-Bone,3,232,,10,,,,,,,,,,,,,{},{},{} -934,Mementos,Memento,3,600,,10,,,,,,,,,,,,,{},{},{} -935,Shell,Shell,3,14,,10,,,,,,,,,,,,,{},{},{} -936,Scales_Shell,Scale Shell,3,466,,10,,,,,,,,,,,,,{},{},{} -937,Posionous_Canine,Venom Canine,3,148,,10,,,,,,,,,,,,,{},{},{} -938,Sticky_Mucus,Sticky Mucus,3,70,,10,,,,,,,,,,,,,{},{},{} -939,Bee_Sting,Bee Sting,3,32,,10,,,,,,,,,,,,,{},{},{} -940,Grasshopper's_Leg,Grasshopper's Leg,3,36,,10,,,,,,,,,,,,,{},{},{} -941,Nose_Ring,Nose Ring,3,568,,10,,,,,,,,,,,,,{},{},{} -942,Yoyo_Tail,Yoyo Tail,3,114,,10,,,,,,,,,,,,,{},{},{} -943,Solid_Shell,Solid Shell,3,448,,10,,,,,,,,,,,,,{},{},{} -944,Horseshoe,Horseshoe,3,588,,10,,,,,,,,,,,,,{},{},{} -945,Raccoon_Leaf,Raccoon Leaf,3,106,,10,,,,,,,,,,,,,{},{},{} -946,Snail's_Shell,Snail's Shell,3,64,,10,,,,,,,,,,,,,{},{},{} -947,Horn,Horn,3,116,,10,,,,,,,,,,,,,{},{},{} -948,Bear's_Foot,Bear's Footskin,3,174,,10,,,,,,,,,,,,,{},{},{} -949,Feather,Feather,3,20,,10,,,,,,,,,,,,,{},{},{} -950,Heart_Of_Mermaid,Heart of Mermaid,3,264,,10,,,,,,,,,,,,,{},{},{} -951,Fin,Fin,3,412,,10,,,,,,,,,,,,,{},{},{} -952,Cactus_Needle,Cactus Needle,3,82,,10,,,,,,,,,,,,,{},{},{} -953,Stone_Heart,Stone Heart,3,184,,10,,,,,,,,,,,,,{},{},{} -954,Shining_Scales,Shining Scale,3,466,,10,,,,,,,,,,,,,{},{},{} -955,Worm_Peelings,Worm Peeling,3,52,,10,,,,,,,,,,,,,{},{},{} -956,Gill,Gill,3,342,,10,,,,,,,,,,,,,{},{},{} -957,Decayed_Nail,Decayed Nail,3,82,,10,,,,,,,,,,,,,{},{},{} -958,Horrendous_Mouth,Horrendous Mouth,3,390,,10,,,,,,,,,,,,,{},{},{} -959,Rotten_Scale,Stinky Scale,3,168,,10,,,,,,,,,,,,,{},{},{} -960,Nipper,Nipper,3,114,,10,,,,,,,,,,,,,{},{},{} -961,Conch,Conch,3,158,,10,,,,,,,,,,,,,{},{},{} -962,Tentacle,Tentacle,3,70,,10,,,,,,,,,,,,,{},{},{} -963,Sharp_Scale,Sharp Scale,3,250,,10,,,,,,,,,,,,,{},{},{} -964,Crap_Shell,Crab Shell,3,90,,10,,,,,,,,,,,,,{},{},{} -965,Clam_Shell,Clam Shell,3,56,,10,,,,,,,,,,,,,{},{},{} -966,Flesh_Of_Clam,Clam Flesh,3,158,,10,,,,,,,,,,,,,{},{},{} -967,Turtle_Shell,Turtle Shell,3,680,,10,,,,,,,,,,,,,{},{},{} -968,Voucher_Of_Orcish_Hero,Heroic Emblem,3,3000,,10,,,,,,,,,,,,,{},{},{} -969,Gold,Gold,3,200000,,200,,,,,,,,,,,,,{},{},{} -970,Alchol,Alcohol,3,400,,30,,,,,,,,,,,,,{},{},{} -971,Detrimindexta,Detrimindexta,3,400,,30,,,,,,,,,,,,,{},{},{} -972,Karvodailnirol,Karvodailnirol,3,400,,30,,,,,,,,,,,,,{},{},{} -973,Counteragent,Counteragent,3,800,,70,,,,,,,,,,,,,{},{},{} -974,Mixture,Mixture,3,800,,70,,,,,,,,,,,,,{},{},{} -975,Scarlet_Dyestuffs,Scarlet Dyestuffs,3,8000,,150,,,,,,,,,,,,,{},{},{} -976,Lemon_Dyestuffs,Lemon Dyestuffs,3,8000,,150,,,,,,,,,,,,,{},{},{} -978,Cobaltblue_Dyestuffs,Cobaltblue Dyestuffs,3,8000,,150,,,,,,,,,,,,,{},{},{} -979,Darkgreen_Dyestuffs,Darkgreen Dyestuffs,3,8000,,150,,,,,,,,,,,,,{},{},{} -980,Orange_Dyestuffs,Orange Dyestuffs,3,8000,,150,,,,,,,,,,,,,{},{},{} -981,Violet_Dyestuffs,Violet Dyestuffs,3,8000,,150,,,,,,,,,,,,,{},{},{} -982,White_Dyestuffs,White Dyestuffs,3,8000,,150,,,,,,,,,,,,,{},{},{} -983,Black_Dyestuffs,Black Dyestuffs,3,8000,,150,,,,,,,,,,,,,{},{},{} -984,Oridecon,Oridecon,3,1100,,200,,,,,,,,,,,,,{},{},{} -985,Elunium,Elunium,3,1100,,200,,,,,,,,,,,,,{},{},{} -986,Anvil,Anvil,3,30000,,500,,,,,,,,,,,,,{},{},{} -987,Oridecon_Anvil,Oridecon Anvil,3,120000,,700,,,,,,,,,,,,,{},{},{} -988,Golden_Anvil,Golden Anvil,3,300000,,900,,,,,,,,,,,,,{},{},{} -989,Emperium_Anvil,Emperium Anvil,3,600000,,1000,,,,,,,,,,,,,{},{},{} -990,Boody_Red,Red Blood,3,1000,,50,,,,,,,,,,,,,{},{},{} -991,Crystal_Blue,Crystal Blue,3,1000,,50,,,,,,,,,,,,,{},{},{} -992,Wind_Of_Verdure,Wind of Verdure,3,1000,,50,,,,,,,,,,,,,{},{},{} -993,Yellow_Live,Green Live,3,1000,,50,,,,,,,,,,,,,{},{},{} -994,Flame_Heart,Flame Heart,3,3000,,300,,,,,,,,,,,,,{},{},{} -995,Mistic_Frozen,Mystic Frozen,3,3000,,300,,,,,,,,,,,,,{},{},{} -996,Rough_Wind,Rough Wind,3,3000,,300,,,,,,,,,,,,,{},{},{} -997,Great_Nature,Great Nature,3,3000,,300,,,,,,,,,,,,,{},{},{} -998,Iron,Iron,3,100,,50,,,,,,,,,,,,,{},{},{} -999,Steel,Steel,3,1000,,100,,,,,,,,,,,,,{},{},{} -1000,Star_Crumb,Star Crumb,3,4500,,100,,,,,,,,,,,,,{},{},{} -1001,Sparkling_Dust,Star Dust,3,1500,,10,,,,,,,,,,,,,{},{},{} -1002,Iron_Ore,Iron Ore,3,50,,150,,,,,,,,,,,,,{},{},{} -1003,Coal,Coal,3,500,,50,,,,,,,,,,,,,{},{},{} -1004,Patriotism_Marks,Chivalry Emblem,3,2,,100,,,,,,,,,,,,,{},{},{} -1005,Hammer_Of_Blacksmith,Hammer of Blacksmith,3,2,,800,,,,,,,,,,,,,{},{},{} -1006,Old_Magic_Book,Old Magicbook,3,2,,30,,,,,,,,,,,,,{},{},{} -1007,Penetration,Necklace of Wisdom,3,2,,40,,,,,,,,,,,,,{},{},{} -1008,Frozen_Heart,Necklace of Oblivion,3,2,,100,,,,,,,,,,,,,{},{},{} -1009,Sacred_Marks,Hand of God,3,2,,20,,,,,,,,,,,,,{},{},{} -1010,Phracon,Phracon,3,200,,200,,,,,,,,,,,,,{},{},{} -1011,Emveretarcon,Emveretarcon,3,1000,,200,,,,,,,,,,,,,{},{},{} -1012,Lizard_Scruff,Frill,3,250,,10,,,,,,,,,,,,,{},{},{} -1013,Colorful_Shell,Rainbow Shell,3,90,,10,,,,,,,,,,,,,{},{},{} -1014,Jaws_Of_Ant,Ant Jaw,3,232,,10,,,,,,,,,,,,,{},{},{} -1015,Thin_N'_Long_Tongue,Tongue,3,528,,10,,,,,,,,,,,,,{},{},{} -1016,Rat_Tail,Rat Tail,3,52,,10,,,,,,,,,,,,,{},{},{} -1017,Moustache_Of_Mole,Mole Whiskers,3,106,,10,,,,,,,,,,,,,{},{},{} -1018,Nail_Of_Mole,Mole Claw,3,210,,10,,,,,,,,,,,,,{},{},{} -1019,Wooden_Block,Trunk,3,60,,10,,,,,,,,,,,,,{},{},{} -1020,Long_Hair,Black Hair,3,292,,10,,,,,,,,,,,,,{},{},{} -1021,Dokkaebi_Horn,Dokebi Horn,3,292,,10,,,,,,,,,,,,,{},{},{} -1022,Fox_Tail,Nine Tails,3,650,,10,,,,,,,,,,,,,{},{},{} -1023,Fish_Tail,Fish Tail,3,196,,10,,,,,,,,,,,,,{},{},{} -1024,Chinese_Ink,Squid Ink,3,264,,10,,,,,,,,,,,,,{},{},{} -1025,Spiderweb,Cobweb,3,184,,10,,,,,,,,,,,,,{},{},{} -1026,Acorn,Acorn,3,98,,10,,,,,,,,,,,,,{},{},{} -1027,Porcupine_Spike,Porcupine Quill,3,158,,10,,,,,,,,,,,,,{},{},{} -1028,Wild_Boar's_Mane,Mane,3,196,,10,,,,,,,,,,,,,{},{},{} -1029,Tiger's_Skin,Tiger Skin,3,548,,10,,,,,,,,,,,,,{},{},{} -1030,Tiger_Footskin,Tiger's Footskin,3,1500,,10,,,,,,,,,,,,,{},{},{} -1031,Limb_Of_Mantis,Mantis Scythe,3,196,,10,,,,,,,,,,,,,{},{},{} -1032,Blossom_Of_Maneater,Maneater Blossom,3,196,,10,,,,,,,,,,,,,{},{},{} -1033,Root_Of_Maneater,Maneater Root,3,208,,10,,,,,,,,,,,,,{},{},{} -1034,Cobold_Hair,Blue Hair,3,342,,10,,,,,,,,,,,,,{},{},{} -1035,Dragon_Canine,Dragon Canine,3,484,,10,,,,,,,,,,,,,{},{},{} -1036,Dragon_Scale,Dragon Scale,3,500,,10,,,,,,,,,,,,,{},{},{} -1037,Dragon_Train,Dragon Tail,3,1200,,10,,,,,,,,,,,,,{},{},{} -1038,Petite_DiablOfs_Horn,Little Evil Horn,3,528,,10,,,,,,,,,,,,,{},{},{} -1039,Petite_DiablOfs_Wing,Little Evil Wing,3,2000,,10,,,,,,,,,,,,,{},{},{} -1040,Elder_Pixie's_Beard,Elder Pixie's Moustache,3,232,,10,,,,,,,,,,,,,{},{},{} -1041,Lantern,Lantern,3,250,,10,,,,,,,,,,,,,{},{},{} -1042,Short_Leg,Bug Leg,3,430,,10,,,,,,,,,,,,,{},{},{} -1043,Nail_Of_Orc,Orc Claw,3,168,,10,,,,,,,,,,,,,{},{},{} -1044,Tooth_Of_,Zenorc's Fang,3,264,,10,,,,,,,,,,,,,{},{},{} -1045,Sacred_Masque,Cultish Masque,3,412,,10,,,,,,,,,,,,,{},{},{} -1046,Tweezer,Scorpion Nipper,3,614,,10,,,,,,,,,,,,,{},{},{} -1047,Head_Of_Medusa,Dead Medusa,3,548,,10,,,,,,,,,,,,,{},{},{} -1048,Slender_Snake,Horrendous Hair,3,800,,10,,,,,,,,,,,,,{},{},{} -1049,Skirt_Of_Virgin,Skirt of Virgin,3,1700,,10,,,,,,,,,,,,,{},{},{} -1050,Tendon,Tendon,3,220,,10,,,,,,,,,,,,,{},{},{} -1051,Detonator,Detonator,3,450,,10,,,,,,,,,,,,,{},{},{} -1052,Single_Cell,Single Cell,3,46,,10,,,,,,,,,,,,,{},{},{} -1053,Tooth_Of_Ancient_Fish,Ancient Tooth,3,548,,10,,,,,,,,,,,,,{},{},{} -1054,Lip_Of_Ancient_Fish,Ancient Lips,3,1000,,10,,,,,,,,,,,,,{},{},{} -1055,Earthworm_Peeling,Earthworm Peeling,3,196,,10,,,,,,,,,,,,,{},{},{} -1056,Grit,Grit,3,306,,10,,,,,,,,,,,,,{},{},{} -1057,Moth_Dust,Moth Dust,3,138,,10,,,,,,,,,,,,,{},{},{} -1058,Wing_Of_Moth,Moth Wings,3,200,,10,,,,,,,,,,,,,{},{},{} -1059,Transparent_Cloth,Fabric,3,306,,10,,,,,,,,,,,,,{},{},{} -1060,Golden_Hair,Golden Hair,3,430,,10,,,,,,,,,,,,,{},{},{} -1061,Starsand_Of_Witch,Witched Starsand,3,484,,10,,,,,,,,,,,,,{},{},{} -1062,Pumpkin_Head,Jack o' Pumpkin,3,374,,10,,,,,,,,,,,,,{},{},{} -1063,Sharpened_Cuspid,Fang,3,680,,10,,,,,,,,,,,,,{},{},{} -1064,Reins,Reins,3,802,,10,,,,,,,,,,,,,{},{},{} -1065,Booby_Trap,Trap,3,100,,10,,,,,,,,,,,,,{},{},{} -1066,Tree_Of_Archer_1,Fine-grained Trunk,3,2,,10,,,,,,,,,,,,,{},{},{} -1067,Tree_Of_Archer_2,Solid Trunk,3,2,,10,,,,,,,,,,,,,{},{},{} -1068,Tree_Of_Archer_3,Barren Trunk,3,2,,10,,,,,,,,,,,,,{},{},{} -1069,Mushroom_Of_Thief_1,Orange Net Mushroom,3,2,,10,,,,,,,,,,,,,{},{},{} -1070,Mushroom_Of_Thief_2,Orange Gooey Mushroom,3,2,,10,,,,,,,,,,,,,{},{},{} -1071,Mage_Test_1,Unknown Test Tube,3,0,,10,,,,,,,,,,,,,{},{},{} -1072,Delivery_Message,Delivery Message,3,0,,10,,,,,,,,,,,,,{},{},{} -1073,Merchant_Voucher_1,Voucher,3,0,,10,,,,,,,,,,,,,{},{},{} -1074,Merchant_Voucher_2,Voucher,3,0,,10,,,,,,,,,,,,,{},{},{} -1075,Merchant_Voucher_3,Voucher,3,0,,10,,,,,,,,,,,,,{},{},{} -1076,Merchant_Voucher_4,Voucher,3,0,,10,,,,,,,,,,,,,{},{},{} -1077,Merchant_Voucher_5,Voucher,3,0,,10,,,,,,,,,,,,,{},{},{} -1078,Merchant_Voucher_6,Voucher,3,0,,10,,,,,,,,,,,,,{},{},{} -1079,Merchant_Voucher_7,Voucher,3,0,,10,,,,,,,,,,,,,{},{},{} -1080,Merchant_Voucher_8,Voucher,3,0,,10,,,,,,,,,,,,,{},{},{} -1081,Merchant_Box_1,Delivery Box,3,0,,10,,,,,,,,,,,,,{},{},{} -1082,Merchant_Box_2,Delivery Box,3,0,,10,,,,,,,,,,,,,{},{},{} -1083,Merchant_Box_3,Delivery Box,3,0,,10,,,,,,,,,,,,,{},{},{} -1084,Kapra's_Pass,Kafra Pass,3,0,,10,,,,,,,,,,,,,{},{},{} -1085,Mage_Test_2,Unknown Test Tube,3,0,,10,,,,,,,,,,,,,{},{},{} -1086,Mage_Test_3,Unknown Test Tube,3,0,,10,,,,,,,,,,,,,{},{},{} -1087,Mage_Test_4,Unknown Test Tube,3,0,,10,,,,,,,,,,,,,{},{},{} -1088,Morocc_Potion,Morocc Solution,3,0,,10,,,,,,,,,,,,,{},{},{} -1089,Payon_Potion,Payon Solution,3,0,,10,,,,,,,,,,,,,{},{},{} -1090,Mage_Test_Etc,Unknown Test Tube,3,0,,10,,,,,,,,,,,,,{},{},{} -1091,Merchant_Box_Etc,Delivery Box,3,0,,10,,,,,,,,,,,,,{},{},{} -1092,Empty_Cylinder,Empty Test Tube,3,3,,10,,,,,,,,,,,,,{},{},{} -1093,Empty_Potion,Empty Potion Bottle,3,10,,10,,,,,,,,,,,,,{},{},{} -1094,Short_Daenggie,Short Daenggie,3,278,,10,,,,,,,,,,,,,{},{},{} -1095,Needle_Of_Alarm,Needle of Alarm,3,546,,10,,,,,,,,,,,,,{},{},{} -1096,Round_Shell,Round Shell,3,780,,10,,,,,,,,,,,,,{},{},{} -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,7,2,2,1,2,1,2,{},{},{} -1102,Sword_,Sword,5,100,,500,25,,1,4,0x000654E3,7,2,2,1,2,1,2,{},{},{} -1103,Sword__,Sword,5,100,,500,25,,1,0,0x000654E3,7,2,2,1,2,1,2,{},{},{} -1104,Falchion,Falchion,5,1500,,600,39,,1,3,0x000654E3,7,2,2,1,2,1,2,{},{},{} -1105,Falchion_,Falchion,5,1500,,600,39,,1,4,0x000654E3,7,2,2,1,2,1,2,{},{},{} -1106,Falchion__,Falchion,5,1500,,600,39,,1,0,0x000654E3,7,2,2,1,2,1,2,{},{},{} -1107,Blade,Blade,5,2900,,700,53,,1,3,0x000654E3,7,2,2,1,2,1,2,{},{},{} -1108,Blade_,Blade,5,2900,,700,53,,1,4,0x000654E3,7,2,2,1,2,1,2,{},{},{} -1109,Blade__,Blade,5,2900,,700,53,,1,0,0x000654E3,7,2,2,1,2,1,2,{},{},{} -1110,Lapier,Rapier,5,10000,,500,70,,1,2,0x000654E3,7,2,2,2,14,1,2,{},{},{} -1111,Lapier_,Rapier,5,10000,,500,70,,1,3,0x000654E3,7,2,2,2,14,1,2,{},{},{} -1112,Lapier__,Rapier,5,10000,,500,70,,1,0,0x000654E3,7,2,2,2,14,1,2,{},{},{} -1113,Scimiter,Scimitar,5,17000,,700,85,,1,2,0x000654E3,7,2,2,2,14,1,2,{},{},{} -1114,Scimiter_,Scimitar,5,17000,,700,85,,1,3,0x000654E3,7,2,2,2,14,1,2,{},{},{} -1115,Scimiter__,Scimitar,5,17000,,700,85,,1,3,0x000654E3,7,2,2,2,14,1,2,{},{},{} -1116,Katana,Katana,5,2000,,1000,60,,1,3,0x00004082,7,2,34,1,4,1,3,{},{},{} -1117,Katana_,Katana,5,2000,,1000,60,,1,4,0x00004082,7,2,34,1,4,1,3,{},{},{} -1118,Katana__,Katana,5,2000,,1000,60,,1,0,0x00004082,7,2,34,1,4,1,3,{},{},{} -1119,Tsurugi,Tsurugi,5,51000,,1200,130,,1,1,0x000654E2,7,2,2,3,27,1,2,{},{},{} -1120,Tsurugi_,Tsurugi,5,51000,,1200,130,,1,2,0x000654E2,7,2,2,3,27,1,2,{},{},{} -1121,Tsurugi__,Tsurugi,5,51000,,1200,130,,1,0,0x000654E2,7,2,2,3,27,1,2,{},{},{} -1122,Ring_Pommel_Saber,Ring Pommel Saber,5,24000,,900,100,,1,2,0x000654E2,7,2,2,2,14,1,2,{},{},{} -1123,Haedonggum,Haedonggum,5,50000,,900,120,,1,1,0x000654E2,7,2,2,3,27,1,2,{ bonus bInt,3; },{},{} -1124,Orcish_Sword,Orcish Sword,5,20,,800,90,,1,0,0x000654E3,7,2,2,3,5,1,2,{ bonus bUnbreakableWeapon; },{},{} -1125,Ring_Pommel_Saber_,Ring Pommel Saber,5,24000,,900,100,,1,3,0x000654E2,7,2,2,2,14,1,2,{},{},{} -1126,Saber,Saber,5,49000,,1000,115,,1,2,0x000654E2,7,2,2,3,27,1,2,{},{},{} -1127,Saber_,Saber,5,49000,,1000,115,,1,3,0x000654E2,7,2,2,3,27,1,2,{},{},{} -1128,Hae_Dong_Gum_,Haedonggum,5,50000,,900,120,,1,2,0x000654E2,7,2,2,3,27,1,2,{ bonus bInt,3; },{},{} -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_Human,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 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; },{},{} -1136,Solar_Sword,Solar Sword,5,20,,1200,85,,1,0,0x000654E2,7,2,2,4,40,1,2,{ bonus bAtkEle,Ele_Fire; bonus2 bHPDrainRate,1000,1; bonus2 bSPLossRate,15,10000; },{},{} -1137,Excalibur,Excalibur,5,20,,1200,150,,1,0,0x000654E2,7,2,2,4,40,1,2,{ bonus bInt,5; bonus bLuk,10; bonus bDex,-1; bonus bAtkEle,Ele_Holy; },{},{} -1138,Mysteltainn_,Mysteltainn,5,20,,1000,170,,1,0,0x000654E2,7,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,7,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,7,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,7,2,2,4,40,1,2,{ bonus bAtkEle,Ele_Ghost; bonus2 bSPVanishRate,30,30; bonus bSPDrainValue,-1; bonus bUnbreakableWeapon; },{},{} -1142,Jewel_Sword,Jeweled Sword,5,20,,2200,104,,1,0,0x000654E2,7,2,2,3,68,1,2,{ bonus2 bAddMonsterDropItemGroup,IG_Jewel,100; },{},{} -1143,Gaia_Sword,Gaia Sword,5,20,,2500,140,,1,0,0x000654E2,7,2,2,3,74,1,2,{ bonus2 bAddMonsterDropItemGroup,IG_Ore,30; },{},{} -1144,Sasimi,Sashimi,5,20,,1400,75,,1,0,0x000654E2,7,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,7,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,7,2,2,3,30,1,2,{},{},{} -1147,Town_Sword_,Town Sword,5,42000,,800,100,,1,2,0x00000001,7,2,2,3,30,1,2,{},{},{} -1148,Star_Dust_Blade,Star Dust Blade,5,20,,1000,140,,1,1,0x00000001,7,2,2,4,45,1,2,{ bonus2 bAddEff,Eff_Stun,500; bonus bUnbreakableWeapon; },{},{} -1149,Flamberge_,Flamberge,5,60000,,1500,150,,1,2,0x00004080,7,2,2,3,27,1,2,{},{},{} -// 2-Handed Swords -1151,Slayer,Slayer,5,15000,,1300,90,,1,2,0x00004082,7,2,34,2,18,1,3,{},{},{} -1152,Slayer_,Slayer,5,15000,,1300,90,,1,3,0x00004082,7,2,34,2,18,1,3,{},{},{} -1153,Slayer__,Slayer,5,15000,,1300,90,,1,0,0x00004082,7,2,34,2,18,1,3,{},{},{} -1154,Bastard_Sword,Bastard Sword,5,22500,,1600,115,,1,2,0x00004082,7,2,34,2,18,1,3,{},{},{} -1155,Bastard_Sword_,Bastard Sword,5,22500,,1600,115,,1,3,0x00004082,7,2,34,2,18,1,3,{},{},{} -1156,Bastard_Sword__,Bastard Sword,5,22500,,1600,115,,1,0,0x00004082,7,2,34,2,18,1,3,{},{},{} -1157,Two_Hand_Sword,Two-Handed Sword,5,60000,,2200,160,,1,1,0x00004082,7,2,34,3,33,1,3,{},{},{} -1158,Two_Hand_Sword_,Two-Handed Sword,5,60000,,2200,160,,1,2,0x00004082,7,2,34,3,33,1,3,{},{},{} -1159,Two_Hand_Sword__,Two-Handed Sword,5,60000,,2200,160,,1,0,0x00004082,7,2,34,3,33,1,3,{},{},{} -1160,Broad_Sword,Broad Sword,5,65000,,2000,140,,1,1,0x00004082,7,2,34,3,33,1,3,{ bonus bDef,5; bonus bUnbreakableWeapon; },{},{} -1161,Balmung,Balmung,5,20,,1000,250,,1,0,0xFFFFFFFF,7,2,34,4,48,1,3,{ bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Holy; },{},{} -1162,Broad_Sword_,Broad Sword,5,65000,,2000,140,,1,2,0x00004082,7,2,34,3,33,1,3,{ bonus bDef,5; bonus bUnbreakableWeapon; },{},{} -1163,Claymore,Claymore,5,74000,,2500,180,,1,0,0x00004080,7,2,34,3,33,1,3,{},{},{} -1164,Muramasa,Muramasa,5,20,,1000,155,,1,0,0x00004082,7,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,7,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,7,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,7,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,7,2,34,4,48,1,3,{ bonus bUnbreakableWeapon; },{},{} -1169,Executioner_,Executioner,5,20,,2200,155,,1,0,0x00004082,7,2,34,4,48,1,3,{ bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player_Human,-10; bonus bAtkEle,Ele_Dark; },{},{} -1170,Katzbalger,Katzbalger,5,20,,2000,175,,1,0,0x00004082,7,2,34,4,48,1,3,{ bonus bVit,5; bonus bDef,10; },{},{} -1171,Zweihander_,Zweihander,5,20,,2200,200,,1,2,0x00004082,7,2,34,4,48,1,3,{ bonus bUnbreakableWeapon; },{},{} -1172,Claymore_,Claymore,5,74000,,2500,180,,1,2,0x00004080,7,2,34,3,33,1,3,{},{},{} -1173,Muramasa_C,Muramasa,5,1,,0,204,,1,0,0x00004082,7,2,34,4,1,0,3,{ bonus bCritical,30; bonus bAspdRate,8; },{},{} -1174,Executioner_C,Executioner,5,2,,0,190,,1,0,0x00004082,7,2,34,4,0,0,3,{ bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player_Human,-10; bonus bAtkEle,Ele_Dark; },{},{} -1175,Altas_Weapon,Atlas Weapon,5,20,,3500,200,,1,1,0x00004082,2,2,34,4,55,1,3,{ bonus bCritical,10; if(readparam(bStr)>=80) bonus bBreakArmorRate,500; },{},{} -1176,Muscle_Cutter,Muscle Cutter,5,20,,2200,160,,1,2,0x00004082,2,2,34,4,55,1,3,{ bonus2 bAddEff,Eff_Bleeding,800; bonus3 bAutoSpell,"AL_DECAGI",1,30; },{},{} -1177,Muramash,Muramash,5,20,,0,120,,1,0,0x00004082,7,2,34,1,0,0,3,{ bonus2 bAddClass,Class_All,50; },{},{} -1178,Schweizersabel_,Schweizersabel,5,20,,1600,160,,1,2,0x00004082,7,2,34,4,48,1,3,{ bonus bAtkEle,Ele_Wind; bonus bDef,1; bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",3,100; },{},{} -1179,Executioner__,Executioner,5,20,,2200,155,,1,1,0x00004082,7,2,34,4,48,1,3,{ bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player_Human,-10; bonus bAtkEle,Ele_Dark; },{},{} -1180,Dragon_Slayer_,Dragon Slayer,5,20,,1300,150,,1,2,0x00004082,7,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,2,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 bCastrate,-20; bonus bDelayRate,-20; } },{},{} -1182,Bloody_Eater,Bloody Eater,5,20,,1200,200,,1,2,0x00004082,2,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,7,2,34,3,80,1,3,{ bonus bStr,2; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; },{},{} -1184,BF_Two_Handed_Sword2,Valorous Assaulter's Katzbalger,5,20,,0,200,,1,0,0x00004082,7,2,34,3,80,1,3,{ bonus bCritical,20; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus bCritAtkRate,20; bonus bUnbreakableWeapon; },{},{} -1185,Violet_Fear,Violet Fear,5,20,,2200,275,,1,2,0x00004082,2,2,34,4,80,1,3,{ bonus3 bAutoSpell,"WZ_METEOR",3,30; bonus3 bAutoSpell,"WZ_FROSTNOVA",5,50; autobonus "{ bonus bIgnoreDefClass,Class_Normal; }",50,5000; },{},{} -1186,Death_Guidance,Death Guidance,5,20,,2000,200,,1,2,0x00004082,2,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,7,2,34,4,80,1,3,{ bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-3)*(getrefine()-3); bonus2 bAddRace,RC_Player_Human,(getrefine()-3)*(getrefine()-3); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) { bonus3 bAutoSpell,"LK_CONCENTRATION",max(getskilllv("LK_CONCENTRATION"),1),30; bonus3 bAutoSpell,"LK_AURABLADE",max(getskilllv("LK_AURABLADE"),1),30; } },{},{} -1188,Veteran_Sword,Veteran Sword,5,10000,,2000,180,,1,1,0x00004082,7,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,2,2,34,2,50,1,3,{ if(readparam(bStr)>=95) { bonus bBaseAtk,20; } },{},{} -1190,Claymore_C,Claymore,5,0,,0,220,,1,0,0x00004080,7,2,34,3,1,0,3,{ bonus2 bAddSize,Size_All,40; },{},{} -// Daggers -1201,Knife,Knife,5,50,,400,17,,1,3,0x3E9F7EEF,7,2,2,1,1,1,1,{},{},{} -1202,Knife_,Knife,5,50,,400,17,,1,4,0x3E9F7EEF,7,2,2,1,1,1,1,{},{},{} -1203,Knife__,Knife,5,50,,400,17,,1,0,0x3E9F7EEF,7,2,2,1,1,1,1,{},{},{} -1204,Cutter,Cutter,5,1250,,500,30,,1,3,0x3E9F7EEF,7,2,2,1,1,1,1,{},{},{} -1205,Cutter_,Cutter,5,1250,,500,30,,1,4,0x3E9F7EEF,7,2,2,1,1,1,1,{},{},{} -1206,Cutter__,Cutter,5,1250,,500,30,,1,0,0x3E9F7EEF,7,2,2,1,1,1,1,{},{},{} -1207,Main_Gauche,Main Gauche,5,2400,,600,43,,1,3,0x3E9F7EEF,7,2,2,1,1,1,1,{},{},{} -1208,Main_Gauche_,Main Gauche,5,2400,,600,43,,1,4,0x3E9F7EEF,7,2,2,1,1,1,1,{},{},{} -1209,Main_Gauche__,Main Gauche,5,2400,,600,43,,1,0,0x3E9F7EEF,7,2,2,1,1,1,1,{},{},{} -1210,Dirk,Dirk,5,8500,,500,59,,1,2,0x3E9F7EEF,7,2,2,2,12,1,1,{},{},{} -1211,Dirk_,Dirk,5,8500,,500,59,,1,3,0x3E9F7EEF,7,2,2,2,12,1,1,{},{},{} -1212,Dirk__,Dirk,5,8500,,500,59,,1,0,0x3E9F7EEF,7,2,2,2,12,1,1,{},{},{} -1213,Dagger,Dagger,5,14000,,600,73,,1,2,0x3E9F7EEF,7,2,2,2,12,1,1,{},{},{} -1214,Dagger_,Dagger,5,14000,,600,73,,1,3,0x3E9F7EEF,7,2,2,2,12,1,1,{},{},{} -1215,Dagger__,Dagger,5,14000,,600,73,,1,0,0x3E9F7EEF,7,2,2,2,12,1,1,{},{},{} -1216,Stiletto,Stiletto,5,19500,,700,87,,1,2,0x3E9F7EEF,7,2,2,2,12,1,1,{},{},{} -1217,Stiletto_,Stiletto,5,19500,,700,87,,1,3,0x3E9F7EEF,7,2,2,2,12,1,1,{},{},{} -1218,Stiletto__,Stiletto,5,19500,,700,87,,1,0,0x3E9F7EEF,7,2,2,2,12,1,1,{},{},{} -1219,Gladius,Gladius,5,43000,,700,105,,1,2,0x028F5EEE,7,2,2,3,24,1,1,{},{},{} -1220,Gladius_,Gladius,5,43000,,700,105,,1,3,0x028F5EEE,7,2,2,3,24,1,1,{},{},{} -1221,Gladius__,Gladius,5,43000,,700,105,,1,0,0x028F5EEE,7,2,2,3,24,1,1,{},{},{} -1222,Damascus,Damascus,5,49000,,800,118,,1,1,0x028F5EEE,7,2,2,3,24,1,1,{ bonus bUnbreakableWeapon; },{},{} -1223,Forturn_Sword,Fortune Sword,5,20,,500,90,,1,0,0x028F5EEE,7,2,2,4,24,1,1,{ bonus bLuk,5; bonus bFlee2,20; },{},{} -1224,Sword_Breaker,Swordbreaker,5,20,,1000,70,,1,0,0x028F5EEE,7,2,2,4,36,1,1,{ bonus bBreakWeaponRate,500; },{},{} -1225,Mail_Breaker,Mailbreaker,5,20,,1000,70,,1,0,0x028F5EEE,7,2,2,4,36,1,1,{ bonus bBreakArmorRate,500; },{},{} -1226,Damascus_,Damascus,5,49000,,800,118,,1,2,0x028F5EEE,7,2,2,3,24,1,1,{ bonus bUnbreakableWeapon; },{},{} -1227,Weeder_Knife,Weeder Knife,5,20,,400,80,,1,0,0x028F5EEE,7,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,7,2,2,4,36,1,1,{ bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Demon,-10; },{},{} -1229,Mama's_Knife,Kitchen Knife,5,20,,500,75,,1,0,0x028F5EEE,7,2,2,4,36,1,1,{ bonus bCritical,30; bonus3 bAddMonsterDropItem,517,RC_Brute,5000; },{},{} -1230,House_Auger,Ice Pick,5,20,,600,80,,1,0,0x028F5EEE,7,2,2,4,36,1,1,{ bonus bDefRatioAtkClass,Class_All; },{},{} -1231,Bazerald,Bazerald,5,20,,500,70,,1,0,0x028F5EEE,7,2,2,4,36,1,1,{ bonus bAtkEle,Ele_Fire; bonus bInt,5; bonus bMatkRate,10; },{},{} -1232,Assasin_Dagger,Assassin Dagger,5,20,,600,140,,1,0,0x00001000,7,2,2,4,36,1,1,{ bonus bMaxHPrate,20; bonus bMaxSPrate,15; bonus bAspdRate,2; bonus bAtkEle,Ele_Dark; },{},{} -1233,Exercise,Exorciser,5,20,,700,90,,1,0,0x028F5EEE,7,2,2,4,36,1,1,{ bonus bIgnoreDefRace,RC_Demon; bonus2 bSubRace,RC_Demon,5; bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player_Human,-10; },{},{} -1234,Moonlight_Sword,Moonlight Dagger,5,20,,700,50,,1,0,0x028F5EEE,7,2,2,4,36,1,1,{ bonus bMaxSPrate,10; bonus bSPDrainValue,3; },{},{} -1235,Azoth,Azoth,5,20,,700,110,,1,0,0x00040000,7,2,2,4,36,1,1,{ bonus bClassChange,300; },{},{} -1236,Sucsamad,Sucsamad,5,20,,800,140,,1,0,0x028F5EEE,7,2,2,4,36,1,1,{ bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Wind,10; bonus bUnbreakableWeapon; },{},{} -1237,Grimtooth_,Grimtooth,5,20,,800,180,,1,0,0x028F5EEE,7,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,7,2,2,3,70,1,1,{ bonus2 bGetZenyNum,100,40; },{},{} -1239,Poison_Knife,Poison Knife,5,20,,800,64,,1,0,0x028F5EEE,7,2,2,3,65,1,1,{ bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,3000; },{},{} -1240,Princess_Knife,Princess Knife,5,20,,400,84,,1,0,0x028F5EEE,7,2,2,4,1,1,1,{ bonus bAllStats,1; },{},{} -1241,Cursed_Dagger,Cursed Dagger,5,80000,,400,55,,1,0,0x00810204,7,2,2,4,85,1,1,{ bonus2 bAddEff,Eff_Curse,5000; },{},{} -1242,Counter_Dagger,Dagger of Counter,5,120000,,550,140,,1,0,0x00810204,7,2,2,4,55,1,1,{ bonus bCritical,90; },{},{} -1243,Novice_Knife,Novice Main-Gauche,5,1,,1,45,,1,0,0x00000001,7,2,2,1,1,0,1,{},{},{} -1244,Holy_Dagger,Holy Dagger,5,20,,800,100,,1,0,0x02021040,7,2,2,4,55,1,1,{ bonus bAtkEle,Ele_Holy; bonus bDex,1; },{},{} -1245,Cinquedea,Cinquedea,5,40000,,700,110,,1,1,0x00000001,7,2,2,3,30,1,1,{},{},{} -1246,Cinquedea_,Cinquedea,5,40000,,700,110,,1,2,0x00000001,7,2,2,3,30,1,1,{},{},{} -1247,Kindling_Dagger,Kindle Dagger,5,10000,,600,39,,1,0,0x3E9F7EEF,7,2,2,1,1,1,1,{ bonus bAtkEle,Ele_Fire; },{},{} -1248,Obsidian_Dagger,Obsidian Dagger,5,10000,,600,39,,1,0,0x3E9F7EEF,7,2,2,1,1,1,1,{ bonus bAtkEle,Ele_Earth; },{},{} -1249,Fisherman's_Dagger,Fisherman's Dagger,5,10000,,600,39,,1,0,0x3E9F7EEF,7,2,2,1,1,1,1,{ bonus bAtkEle,Ele_Water; },{},{} -// Katars -1250,Jur,Jur,5,19500,,800,125,,1,2,0x00001000,7,2,34,2,18,1,16,{},{},{} -1251,Jur_,Jur,5,19500,,800,125,,1,3,0x00001000,7,2,34,2,18,1,16,{},{},{} -1252,Katar,Katar,5,41000,,1200,148,,1,1,0x00001000,7,2,34,3,33,1,16,{ bonus bDex,1; },{},{} -1253,Katar_,Katar,5,41000,,1200,148,,1,2,0x00001000,7,2,34,3,33,1,16,{ bonus bDex,1; },{},{} -1254,Jamadhar,Jamadhar,5,37200,,1500,165,,1,0,0x00001000,7,2,34,3,33,1,16,{},{},{} -1255,Jamadhar_,Jamadhar,5,37200,,1500,165,,1,1,0x00001000,7,2,34,3,33,1,16,{},{},{} -1256,Katar_Of_Cold_Icicle,Katar of Frozen Icicle,5,45000,,1200,105,,1,0,0x00001000,7,2,34,3,55,1,16,{ bonus bAtkEle,Ele_Water; bonus2 bAddEff,Eff_Freeze,500; },{},{} -1257,Katar_Of_Thornbush,Katar of Quaking,5,45000,,1200,105,,1,0,0x00001000,7,2,34,3,55,1,16,{ bonus bAtkEle,Ele_Earth; bonus2 bAddEff,Eff_Blind,500; },{},{} -1258,Katar_Of_Raging_Blaze,Katar of Raging Blaze,5,45000,,1200,105,,1,0,0x00001000,7,2,34,3,55,1,16,{ bonus bAtkEle,Ele_Fire; bonus2 bAddEff,Eff_Silence,500; },{},{} -1259,Katar_Of_Piercing_Wind,Katar of Piercing Wind,5,45000,,1200,105,,1,0,0x00001000,7,2,34,3,55,1,16,{ bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Sleep,500; },{},{} -1260,Ghoul_Leg,Sharpened Legbone of Ghoul,5,52500,,1700,150,,1,0,0x00001000,7,2,34,3,65,1,16,{ bonus bAtkEle,Ele_Undead; },{},{} -1261,Infiltrator,Infiltrator,5,57000,,1500,140,,1,0,0x00001000,7,2,34,4,75,1,16,{ bonus2 bAddRace,RC_DemiHuman,50; bonus2 bAddRace,RC_Player_Human,50; bonus bDef,3; bonus bFlee,5; bonus bFlee2,2; },{},{} -1262,Nail_Of_Loki,Loki's Nail,5,20,,1200,115,,1,0,0x00001000,7,2,34,3,55,1,16,{ bonus2 bAddEff,Eff_Bleeding,300; },{},{} -1263,Unholy_Touch,Unholy Touch,5,20,,1250,151,,1,0,0x00001000,7,2,34,4,70,1,16,{ bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Curse,200; bonus bCritical,-1; bonus bUnbreakableWeapon; },{},{} -1264,Various_Jur,Specialty Jur,5,20,,800,90,,1,4,0x00001000,7,2,34,1,1,1,16,{ bonus2 bAddEff2,Eff_Bleeding,10; },{},{} -1265,Bloody_Roar,Bloody Roar,5,20,,1000,120,,1,0,0x00001000,7,2,34,4,75,1,16,{ bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus bFlee,-(readparam(bAgi)+BaseLevel); bonus bHPrecovRate,-100; bonus bSPrecovRate,-100; },{},{} -1266,Infiltrator_,Infiltrator,5,57000,,1500,140,,1,1,0x00001000,7,2,34,4,75,1,16,{ bonus2 bAddRace,RC_DemiHuman,50; bonus2 bAddRace,RC_Player_Human,50; bonus bDef,3; bonus bFlee,5; bonus bFlee2,2; },{},{} -1267,Infiltrator_C,Infiltrator,5,1,,0,189,,1,0,0x00001000,7,2,34,4,1,0,16,{ bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,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,2,2,34,4,55,1,16,{ if(getrefine()>=9){ bonus3 bAutoSpell,"NPC_CRITICALWOUND",2,100; } else bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,100; },{},{} -1269,Inverse_Scale,Inverse Scale,5,20,,1500,140,,1,0,0x00001000,2,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,2,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,2,2,34,4,55,1,16,{ if(getrefine()>=9){ bonus3 bAutoSpell,"NPC_WIDEBLEEDING",2,30; } else bonus3 bAutoSpell,"NPC_WIDEBLEEDING",1,30; },{},{} -1272,Scratcher,Scratcher,5,20,,0,120,,1,0,0x00001000,7,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,7,2,34,4,0,0,16,{ bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bHPRegenRate,3,5000; },{},{} -1274,Unholy_Touch_C,Refined Unholy Touch,5,1,,0,179,,1,0,0x00001000,7,2,34,4,0,0,16,{ bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Curse,5000; bonus bCritical,-1; bonus bUnbreakableWeapon; },{},{} -1275,Katar_Of_Cold_Icicle_,Katar of Frozen Icicle,5,45000,,1200,105,,1,3,0x00001000,7,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,7,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,7,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,7,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,7,2,34,3,80,1,16,{ bonus bStr,1; bonus bDex,1; bonus bLuk,1; bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; },{},{} -1280,BF_Katar2,Valorous Carnage Katar,5,20,,0,130,,1,0,0x00001000,7,2,34,3,80,1,16,{ bonus bStr,1; bonus bDex,1; bonus bLuk,1; bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus bCritAtkRate,20; bonus bAspdRate,5; bonus bUnbreakableWeapon; },{},{} -1281,Krieger_Katar1,Glorious Bloody Roar,5,20,,0,140,,1,0,0x00001000,7,2,34,4,80,1,16,{ bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>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,7,2,34,4,80,1,16,{ bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bCriticalAddRace,RC_DemiHuman,5; bonus2 bCriticalAddRace,RC_Player_Human,5; } if(getrefine()>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,7,2,34,4,0,0,16,{ bonus2 bSkillAtk,"AS_SONICBLOW",25; bonus bAspdRate,3; },{},{} -1284,Krishna,Krishna,5,20,,1200,120,,1,2,0x00001000,2,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; } },{},{} -1285,Cakram,Chakram,5,20,,1000,130,,1,2,0x00001000,2,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,7,2,34,3,1,0,16,{ bonus bUnbreakableWeapon; bonus2 bAddSize,Size_All,40; },{},{} -// 1-Handed Axes -1301,Axe,Axe,5,500,,800,38,,1,3,0x000654E3,7,2,2,1,3,1,6,{},{},{} -1302,Axe_,Axe,5,500,,800,38,,1,4,0x000654E3,7,2,2,1,3,1,6,{},{},{} -1303,Axe__,Axe,5,500,,800,38,,1,0,0x000654E3,7,2,2,1,3,1,6,{},{},{} -1304,Orcish_Axe,Orcish Axe,5,20,,1500,75,,1,0,0x000654E3,7,2,2,3,3,1,6,{},{},{} -1305,Cleaver,Cleaver,5,20,,1200,140,,1,0,0x000444A2,7,2,2,4,44,1,6,{ bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus3 bAddMonsterDropItem,517,RC_Brute,3000; },{},{} -1306,War_Axe,War Axe,5,20,,4200,140,,1,1,0x00040400,7,2,2,3,76,1,6,{ bonus bDex,2; bonus bLuk,2; },{},{} -1307,Windhawk,Windhawk,5,18000,,1500,115,,1,0,0x000654E2,7,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,7,2,2,4,45,1,6,{},{},{} -1309,Orcish_Axe_,Orcish Axe,5,20,,1500,75,,1,4,0x000654E3,7,2,2,3,3,1,6,{},{},{} -1310,Krieger_Onehand_Axe1,Glorious Cleaver,5,20,,0,130,,1,0,0x000444A2,7,2,2,4,80,1,6,{ bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus bAspdRate,5; } if(getrefine()>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,2,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,7,2,2,3,1,0,6,{ bonus2 bAddSize,Size_All,70; },{},{} -1313,Tourist_Axe,Tourist Axe,5,0,,500,77,,1,0,0x000654E3,7,2,2,1,1,0,6,{ bonus bStr,2; },{},{} -1314,F_Tomahawk_C,Tomahawk,5,2,,0,200,,1,0,0x000444A2,7,2,34,4,0,0,7,{ bonus bAtkEle,Ele_Wind; },{},{} -1315,F_Right_Epsilon_C,Light Epsilon,5,1,,0,229,,1,0,0x000444A2,7,2,34,4,1,0,7,{ bonus bAtkEle,Ele_Holy; bonus bStr,10; },{},{} -// 2-Handed Axes -1351,Battle_Axe,Battle Axe,5,5400,,1500,80,,1,3,0x000444A2,7,2,34,1,3,1,7,{},{},{} -1352,Battle_Axe_,Battle Axe,5,5400,,1500,80,,1,4,0x000444A2,7,2,34,1,3,1,7,{},{},{} -1353,Battle_Axe__,Battle Axe,5,5400,,1500,80,,1,0,0x000444A2,7,2,34,1,3,1,7,{},{},{} -1354,Hammer,Hammer,5,15500,,2000,120,,1,2,0x000444A2,7,2,34,2,16,1,7,{},{},{} -1355,Hammer_,Hammer,5,15500,,2000,120,,1,3,0x000444A2,7,2,34,2,16,1,7,{},{},{} -1356,Hammer__,Hammer,5,15500,,2000,120,,1,0,0x000444A2,7,2,34,2,16,1,7,{},{},{} -1357,Buster,Buster,5,34000,,2200,155,,1,1,0x000444A2,7,2,34,3,30,1,7,{},{},{} -1358,Buster_,Buster,5,34000,,2200,155,,1,2,0x000444A2,7,2,34,3,30,1,7,{},{},{} -1359,Buster__,Buster,5,34000,,2200,155,,1,0,0x000444A2,7,2,34,3,30,1,7,{},{},{} -1360,Two_Handed_Axe,Two-Handed Axe,5,55000,,2500,185,,1,1,0x000444A2,7,2,34,3,30,1,7,{},{},{} -1361,Two_Handed_Axe_,Two-Handed Axe,5,55000,,2500,185,,1,2,0x000444A2,7,2,34,3,30,1,7,{},{},{} -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 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 bComaRace,RC_Brute,40; bonus bIgnoreDefRace,RC_Player_Doram; bonus2 bComaRace,RC_Player_Doram,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 bComaRace,RC_DemiHuman,30; bonus2 bComaRace,RC_Player_Human,30; bonus2 bSPDrainValueRace,RC_DemiHuman,2; bonus2 bSPDrainValueRace,RC_Player_Human,2; bonus2 bSPGainRace,RC_DemiHuman,20; bonus2 bSPGainRace,RC_Player_Human,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; },{},{} -1373,Brood_Axe_C,Refined Bloody Axe,5,2,,0,205,,1,0,0x000444A2,7,2,34,4,0,0,7,{ bonus bStr,20; bonus bSpeedRate,25; bonus bAspdRate,5; },{},{} -1374,Tomahawk_C,Tomahawk,5,2,,0,200,,1,0,0x000444A2,7,2,34,4,0,0,7,{ bonus bAtkEle,Ele_Wind; skill "ITM_TOMAHAWK",1; },{},{} -1375,Berdysz,Berdysz,5,20,,2500,200,,1,2,0x000444A2,2,2,34,3,70,1,7,{ bonus2 bSubSize,Size_Medium,13; bonus2 bSubSize,Size_Large,15; },{},{} -1376,Heart_Breaker,Heart Breaker,5,20,,2000,175,,1,1,0x000444A2,2,2,34,4,70,1,7,{ bonus bCritical,20+getrefine(); bonus bAspdRate,5; if((Class==Job_Whitesmith)||(Class==Job_Creator)) bonus3 bAutoSpell,"BS_HAMMERFALL",3,30; },{},{} -1377,Hurricane_Fury,Hurricane's Fury,5,20,,3500,332,,1,1,0x000444A2,2,2,34,4,80,1,7,{ bonus2 bSubSize,Size_Medium,10+getrefine(); bonus bAspdRate,getrefine(); bonus3 bAutoSpell,"NPC_PULSESTRIKE",5,20; },{},{} -1378,Great_Axe_C,Refined Great Axe,5,1,,0,215,,1,0,0x000444A2,7,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,7,2,34,3,80,1,7,{ bonus bStr,3; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; },{},{} -1380,BF_Two_Handed_Axe2,Brave Insane Battle Axe,5,20,,0,200,,1,0,0x000444A2,7,2,34,3,80,1,7,{ bonus bStr,3; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; autobonus "{ bonus bBreakArmorRate,10000; }",20,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; bonus bUnbreakableWeapon; },{},{} -1381,N_Battle_Axe,Novice Battle Axe,5,0,,0,100,,1,3,0x000444A2,7,2,34,1,3,0,7,{},{},{} -1382,Krieger_Twohand_Axe1,Glorious Two-Handed Axe,5,20,,0,220,,1,0,0x000444A2,7,2,34,4,80,1,7,{ bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-3)*(getrefine()-3); bonus2 bAddRace,RC_Player_Human,(getrefine()-3)*(getrefine()-3); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,50; } if(getrefine()>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,7,2,34,4,60,1,7,{ bonus bAtkEle,Ele_Holy; bonus bVit,10; bonus2 bAddRace,RC_Undead,10; bonus3 bAutoSpell,"AL_BLESSING",5,50; },{},{} -1384,Veteran_Axe,Veteran Axe,5,10000,,3000,250,,1,2,0x000444A2,7,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,2,2,34,4,75,1,7,{ bonus3 bAddEffOnSkill,"BS_HAMMERFALL",Eff_Stun,500+(200*getrefine()); },{},{} -1386,Doom_Slayer_I,Doom Slayer,5,0,,0,20,,1,0,0x000444A2,7,2,34,4,0,0,7,{ if(readparam(bStr)>=95){ bonus bBaseAtk,400; bonus2 bAddEff,Eff_Stun,3000; bonus bAspdRate,-25; bonus bUseSPrate,100; bonus bBreakArmorRate,500; } },{},{} -1387,Giant_Axe,Giant Axe,5,20,,4000,330,,1,1,0x000444A2,2,2,34,3,50,1,7,{ bonus2 bSkillAtk,"WS_CARTTERMINATION",15; if(readparam(bStr)>=95) { bonus bHit,10; bonus bAspdRate,3; } },{},{} -1388,Two_Handed_Axe_C,Two-Handed Axe,5,0,,0,220,,1,0,0x000444A2,7,2,34,3,1,0,7,{ bonus2 bAddSize,Size_All,40; },{},{} -1389,E_Tomahawk_C,Tomahawk,5,2,,0,200,,1,0,0x000444A2,7,2,34,4,0,0,7,{ bonus bAtkEle,Ele_Wind; },{},{} -1390,E_Right_Epsilon_C,Light Epsilon,5,1,,0,229,,1,0,0x000444A2,7,2,34,4,1,0,7,{ bonus bAtkEle,Ele_Holy; bonus bStr,10; },{},{} -// 1-Handed Spears -1401,Javelin,Javelin,5,150,,700,28,,3,3,0x00004082,7,2,2,1,4,1,4,{},{},{} -1402,Javelin_,Javelin,5,150,,700,28,,3,4,0x00004082,7,2,2,1,4,1,4,{},{},{} -1403,Javelin__,Javelin,5,150,,700,28,,3,0,0x00004082,7,2,2,1,4,1,4,{},{},{} -1404,Spear,Spear,5,1700,,850,44,,3,3,0x00004082,7,2,2,1,4,1,4,{},{},{} -1405,Spear_,Spear,5,1700,,850,44,,3,4,0x00004082,7,2,2,1,4,1,4,{},{},{} -1406,Spear__,Spear,5,1700,,850,44,,3,0,0x00004082,7,2,2,1,4,1,4,{},{},{} -1407,Pike,Pike,5,3450,,1000,60,,3,3,0x00004082,7,2,2,1,4,1,4,{},{},{} -1408,Pike_,Pike,5,3450,,1000,60,,3,4,0x00004082,7,2,2,1,4,1,4,{},{},{} -1409,Pike__,Pike,5,3450,,1000,60,,3,0,0x00004082,7,2,2,1,4,1,4,{},{},{} -1410,Lance,Lance,5,60000,,2500,185,,3,0,0x00004082,7,2,34,3,33,1,5,{},{},{} -1411,Lance_,Lance,5,60000,,2500,185,,3,0,0x00004082,7,2,34,3,33,1,5,{},{},{} -1412,Lance__,Lance,5,60000,,2500,185,,3,0,0x00004082,7,2,34,3,33,1,5,{},{},{} -1413,Gungnir,Gungnir,5,20,,500,120,,3,0,0x00004082,7,2,2,4,4,1,4,{ bonus bAtkEle,Ele_Wind; bonus bPerfectHitRate,25; bonus bHit,30; },{},{} -1414,Gelerdria,Gelerdria,5,20,,700,145,,3,0,0x00004082,7,2,2,4,48,1,4,{ bonus bAtkEle,Ele_Earth; bonus bMaxHP,800; bonus bMaxSP,-50; },{},{} -1415,Skewer,Brocca,5,20,,850,100,,3,0,0x00004082,7,2,2,4,48,1,4,{ bonus bIgnoreDefClass,Class_Normal; bonus2 bAddEle,Ele_Neutral,25; },{},{} -1416,Tjungkuletti,Tjungkuletti,5,20,,1000,95,,3,0,0x00004082,7,2,2,4,48,1,4,{ bonus bSPDrainValue,1; bonus bSPGainValue,5; },{},{} -1417,Pole_Axe,Pole Axe,5,20,,3800,160,,3,1,0x00004082,7,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,7,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,159,,3,0,0x00004082,7,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,2,2,2,4,65,1,4,{ bonus bAtkEle,Ele_Holy; bonus2 bAddEff,Eff_Bleeding,500; skill "TF_DETOXIFY",1; bonus bUnbreakableWeapon; },{},{} -1421,Battle_Hook,Battle Hook,5,20,,900,140,,3,1,0x00004082,2,2,2,4,65,1,4,{ bonus2 bAddEff,Eff_Stun,500; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; skill "KN_PIERCE",3; },{},{} -1422,Hunting_Spear,Hunting Spear,5,20,,4200,180,,3,1,0x00004082,2,2,2,4,60,1,4,{ bonus bIgnoreDefRace,RC_Brute; bonus bIgnoreDefRace,RC_Player_Doram; bonus3 bAddMonsterDropItem,517,RC_Brute,1000; bonus3 bAutoSpell,"LK_JOINTBEAT",3,100; },{},{} -1423,Pole_XO,Pole XO,5,20,,0,120,,3,0,0x00004082,7,2,2,1,0,0,4,{ bonus2 bAddClass,Class_All,50; },{},{} -1424,Skewer_C,Refined Brocca,5,1,,0,149,,3,0,0x00004082,7,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,7,2,2,3,80,1,4,{ bonus bStr,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(BaseJob==Job_Crusader) bonus bAspdRate,20; },{},{} -1426,Krieger_Onehand_Spear1,Glorious Spear,5,20,,0,130,,3,0,0x00004082,7,2,2,4,80,1,4,{ bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus bAspdRate,10; } if(getrefine()>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,7,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,2,2,2,4,65,1,4,{ bonus bAtkEle,Ele_Holy; bonus2 bAddEff,Eff_Bleeding,500; skill "TF_DETOXIFY",1; bonus bUnbreakableWeapon; },{},{} -1429,Hunting_Spear_M,Hunting Spear,5,20,,4200,180,,3,1,0x00004082,2,2,2,4,60,1,4,{ bonus bIgnoreDefRace,RC_Brute; bonus bIgnoreDefRace,RC_Player_Doram; bonus3 bAddMonsterDropItem,517,RC_Brute,1000; bonus3 bAutoSpell,"LK_JOINTBEAT",3,500; },{},{} -1430,Pike_C,Pike,5,0,,0,74,,3,0,0x00004082,7,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,7,2,2,3,1,0,4,{ bonus bStr,1; bonus bInt,2; bonus bDex,1; },{},{} -1432,E_Pole_Axe_C,Pole Axe,5,1,,4800,195,,3,0,0x00004082,7,2,2,3,1,0,4,{ bonus bStr,1; bonus bInt,2; bonus bDex,1; },{},{} -// 2-Handed Spears -1451,Guisarme,Guisarme,5,13000,,1000,84,,3,2,0x00004082,7,2,34,2,18,1,5,{},{},{} -1452,Guisarme_,Guisarme,5,13000,,1000,84,,3,3,0x00004082,7,2,34,2,18,1,5,{},{},{} -1453,Guisarme__,Guisarme,5,13000,,1000,84,,3,0,0x00004082,7,2,34,2,18,1,5,{},{},{} -1454,Glaive,Glaive,5,20000,,1200,104,,3,2,0x00004082,7,2,34,2,18,1,5,{},{},{} -1455,Glaive_,Glaive,5,20000,,1200,104,,3,3,0x00004082,7,2,34,2,18,1,5,{},{},{} -1456,Glaive__,Glaive,5,20000,,1200,104,,3,0,0x00004082,7,2,34,2,18,1,5,{},{},{} -1457,Partizan,Partizan,5,27000,,2000,124,,3,1,0x00004082,7,2,34,2,18,1,5,{},{},{} -1458,Partizan_,Partizan,5,27000,,2000,124,,3,2,0x00004082,7,2,34,2,18,1,5,{},{},{} -1459,Partizan__,Partizan,5,27000,,2000,124,,3,0,0x00004082,7,2,34,2,18,1,5,{},{},{} -1460,Trident,Trident,5,51000,,1200,150,,3,2,0x00004082,7,2,34,3,33,1,5,{},{},{} -1461,Trident_,Trident,5,51000,,1200,150,,3,3,0x00004082,7,2,34,3,33,1,5,{},{},{} -1462,Trident__,Trident,5,51000,,1200,150,,3,0,0x00004082,7,2,34,3,33,1,5,{},{},{} -1463,Halberd,Halberd,5,54000,,2500,165,,3,1,0x00004082,7,2,34,3,33,1,5,{},{},{} -1464,Halberd_,Halberd,5,54000,,2500,165,,3,2,0x00004082,7,2,34,3,33,1,5,{},{},{} -1465,Halberd__,Halberd,5,54000,,2500,165,,3,0,0x00004082,7,2,34,3,33,1,5,{},{},{} -1466,Crescent_Scythe,Crescent Scythe,5,20,,2500,180,,3,0,0x00004082,7,2,34,4,48,1,5,{ bonus bCritical,30; bonus bHit,10; },{},{} -1467,Bill_Guisarme,Bill Guisarme,5,20,,1000,183,,3,0,0x00004082,7,2,34,4,48,1,5,{ bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Player_Doram,10; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; },{},{} -1468,Zephyrus,Zephyrus,5,20,,2000,170,,3,0,0x00004082,7,2,34,4,48,1,5,{ bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Silence,200; bonus3 bAutoSpell,"MG_THUNDERSTORM",3,100; },{},{} -1469,Longinus's_Spear,Longinus's Spear,5,20,,2500,180,,3,0,0x00004082,7,2,34,4,48,1,5,{ bonus bAtkEle,Ele_Dark; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus2 bAddRace,RC_Angel,10; },{},{} -1470,Brionac,Brionac,5,20,,3000,190,,3,0,0x00004082,7,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,7,2,34,4,48,1,5,{ bonus bAtkEle,Ele_Fire; bonus3 bAutoSpell,"MG_FIREBALL",3,100; bonus bStr,3; },{},{} -// 2-Handed Staffs -1472,Staff_Of_Soul,Soul Staff,5,20,,1400,25,,1,0,0x00810204,7,2,34,3,73,1,23,{ bonus bInt,5; bonus bAgi,2; bonus bMatkRate,15; },{},{} -1473,Wizardy_Staff,Wizardry Staff,5,20,,2400,120,,1,0,0x00810204,7,2,34,4,90,1,23,{ bonus bInt,6; bonus bDex,2; bonus bMatkRate,15; },{},{} -// 2-Handed Spears -1474,Gae_Bolg,Gae Bolg,5,20,,2000,160,,3,0,0x00004082,7,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,7,2,34,4,75,1,5,{},{},{} -1476,Crescent_Scythe_,Crescent Scythe,5,20,,2500,180,,3,1,0x00004082,7,2,34,4,48,1,5,{ bonus bCritical,30; bonus bHit,10; },{},{} -1477,Spectral_Spear,Spectral Spear,5,20,,2000,170,,3,0,0x00004082,7,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; },{},{} -1478,Ahlspiess,Ahlspiess,5,20,,1000,120,,3,0,0x00004080,7,2,34,4,65,1,5,{ bonus bIgnoreDefClass,Class_Normal; bonus bIgnoreDefClass,Class_Boss; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus3 bAutoSpell,"KN_PIERCE",5,30; },{},{} -1479,Spectral_Spear_,Spectral Spear,5,20,,2000,170,,3,1,0x00004082,7,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,7,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,7,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,,,0,160,,3,0,0x00004082,7,2,34,3,80,1,5,{ bonus bStr,2; bonus2 bAddRace,RC_DemiHuman,25; bonus2 bAddRace,RC_Player_Human,25; bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus bUnbreakableWeapon; },{},{} -1483,Ivory_Lance,Ivory Lance,5,20,,1000,160,,3,1,0x00004082,2,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,2,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,2,2,34,2,50,1,5,{},{},{} -1486,Krieger_Twohand_Spear1,Glorious Lance,5,20,,0,220,,3,0,0x00004082,7,2,34,4,80,1,5,{ bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>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,7,2,34,3,1,0,5,{ bonus2 bAddSize,Size_All,50; },{},{} -1488,Ahlspiess_C,Ahlspiess,5,20,,0,135,,3,0,0x00004080,7,2,34,4,1,1,5,{ bonus bIgnoreDefClass,Class_Normal; bonus bIgnoreDefClass,Class_Boss; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus3 bAutoSpell,"KN_PIERCE",5,30; },{},{} -// Maces -1501,Club,Club,5,120,,700,23,,1,3,0x0004C5B3,7,2,2,1,2,1,8,{},{},{} -1502,Club_,Club,5,120,,700,23,,1,4,0x0004C5B3,7,2,2,1,2,1,8,{},{},{} -1503,Club__,Club,5,120,,700,23,,1,0,0x0004C5B3,7,2,2,1,2,1,8,{},{},{} -1504,Mace,Mace,5,1600,,800,37,,1,3,0x0004C5B3,7,2,2,1,2,1,8,{},{},{} -1505,Mace_,Mace,5,1600,,800,37,,1,4,0x0004C5B3,7,2,2,1,2,1,8,{},{},{} -1506,Mace__,Mace,5,1600,,800,37,,1,0,0x0004C5B3,7,2,2,1,2,1,8,{},{},{} -1507,Smasher,Smasher,5,9000,,1000,54,,1,2,0x0004C5B3,7,2,2,2,14,1,8,{},{},{} -1508,Smasher_,Smasher,5,9000,,1000,54,,1,3,0x0004C5B3,7,2,2,2,14,1,8,{},{},{} -1509,Smasher__,Smasher,5,9000,,1000,54,,1,3,0x0004C5B3,7,2,2,2,14,1,8,{},{},{} -1510,Flail,Flail,5,16000,,900,69,,1,2,0x0004C5B2,7,2,2,2,14,1,8,{},{},{} -1511,Flail_,Flail,5,16000,,900,69,,1,3,0x0004C5B2,7,2,2,2,14,1,8,{},{},{} -1512,Flail__,Flail,5,16000,,900,69,,1,3,0x0004C5B2,7,2,2,2,14,1,8,{},{},{} -1513,Morning_Star,Morning Star,5,41000,,1500,110,,1,1,0x0004C5B2,7,2,2,3,27,1,8,{},{},{} -1514,Morning_Star_,Morning Star,5,41000,,1500,110,,1,2,0x0004C5B2,7,2,2,3,27,1,8,{},{},{} -1515,Morning_Star__,Morning Star,5,41000,,1500,110,,1,2,0x0004C5B2,7,2,2,3,27,1,8,{},{},{} -1516,Sword_Mace,Sword Mace,5,50000,,1200,130,,1,0,0x0004C5B2,7,2,2,3,27,1,8,{},{},{} -1517,Sword_Mace_,Sword Mace,5,50000,,1200,130,,1,1,0x0004C5B2,7,2,2,3,27,1,8,{},{},{} -1518,Sword_Mace__,Sword Mace,5,50000,,1200,130,,1,1,0x0004C5B2,7,2,2,3,27,1,8,{},{},{} -1519,Chain,Chain,5,23000,,800,84,,1,2,0x0004C5B2,7,2,2,2,14,1,8,{},{},{} -1520,Chain_,Chain,5,23000,,800,84,,1,3,0x0004C5B2,7,2,2,2,14,1,8,{},{},{} -1521,Chain__,Chain,5,23000,,800,84,,1,3,0x0004C5B2,7,2,2,2,14,1,8,{},{},{} -1522,Stunner,Stunner,5,60000,,2000,140,,1,0,0x00008110,7,2,2,3,27,1,8,{ bonus2 bAddEff,Eff_Stun,1000; },{},{} -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; },{},{} -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 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_Human,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,{},{},{} -1530,Mjolnir,Mjolnir,5,20,,6000,250,,1,0,0x000444A2,7,2,2,4,95,0,8,{ bonus bAtkEle,Ele_Wind; bonus bDex,40; bonus bStr,15; bonus bAspdRate,10; bonus bUnbreakableWeapon; },{},{} -1531,Spanner,Wrench,5,20,,2500,115,,1,0,0x00008110,7,2,2,3,55,1,8,{ bonus2 bAddEff,Eff_Blind,100; bonus2 bAddEff,Eff_Stun,100; bonus2 bAddEff,Eff_Poison,100; bonus2 bAddEff,Eff_Freeze,100; },{},{} -1532,Stunner_,Stunner,5,60000,,2000,140,,1,2,0x00008110,7,2,2,3,27,1,8,{ bonus2 bAddEff,Eff_Stun,1000; },{},{} -1533,Warrior_Balmung,Warrior's Balmung,5,20,,1000,170,,1,0,0xFFFFFFFF,7,2,2,4,48,1,8,{ bonus bAllStats,5; },{},{} -1534,Spanner_C,Wrench,5,2,,0,150,,1,0,0x00008110,7,2,2,3,0,0,8,{ bonus2 bAddEff,Eff_Blind,100; bonus2 bAddEff,Eff_Stun,100; bonus2 bAddEff,Eff_Poison,100; bonus2 bAddEff,Eff_Freeze,100; },{},{} -1535,Hollgrehenn_Hammer,Hollgrehenn's Hammer,5,4444,,44,4,,1,1,0x0004C5B2,7,2,2,4,44,1,8,{ bonus bBreakArmorRate,100; bonus bBreakWeaponRate,100; if(readparam(bStr)>=44) { bonus bBaseAtk,44; } },{},{} -1536,Good_Morning_Star,Good Morning Star,5,20,,0,120,,1,0,0x0004C5B2,7,2,2,1,0,0,8,{ bonus2 bAddClass,Class_All,50; },{},{} -1537,Quadrille_C,Refined Quadrille,5,1,,0,193,,1,0,0x00008110,7,2,2,4,0,0,8,{ bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player_Human,30; bonus2 bAddRace,RC_Demon,40; bonus2 bAddRace,RC_Undead,40; },{},{} -1538,Spike_,Spike,5,20,,700,85,,1,2,0x00008110,7,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,7,2,2,4,40,1,8,{ bonus2 bAddRace,RC_Undead,10; bonus bUnbreakableWeapon; },{},{} -1540,Grand_Cross_,Grand Cross,5,20,,1500,140,,1,1,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; },{},{} -1541,Nemesis,Nemesis,5,20,,900,120,,1,0,0x00008110,7,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,7,2,2,3,80,1,8,{ bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; },{},{} -1543,BF_Morning_Star2,Brave Battlefield Morning Star,5,20,,0,105,,1,0,0x0004C5B3,7,2,2,3,80,1,8,{ bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus bUnbreakableWeapon; autobonus "{ bonus2 bAddEff,Eff_Stun,5000; }",10,6000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; },{},{} -1544,Lunakaligo,Lunakaligo,5,20,,700,110,,1,3,0x00008110,2,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,7,2,2,1,2,0,8,{},{},{} -1546,Krieger_Onehand_Mace1,Glorious Morning Star,5,20,,0,130,,1,0,0x0004C5B3,7,2,2,4,80,1,8,{ bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus bAspdRate,5; } if(getrefine()>8) { bonus2 bAddEff,Eff_Stun,2000; bonus bAspdRate,5; } },{},{} -1547,Mace_Of_Madness,Mace Of Madness,5,20,,0,150,,1,0,0x0004C5B2,7,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,7,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,7,2,2,3,99,1,8,{},{},{} -// Books -1550,Book,Book,5,30000,,600,85,,1,3,0x00410100,7,2,2,2,14,1,15,{},{},{} -1551,Bible,Bible,5,60000,,1000,115,,1,2,0x00410100,7,2,2,3,27,1,15,{ bonus bInt,2; },{},{} -1552,Tablet,Tablet,5,51000,,800,125,,1,1,0x00410100,7,2,2,3,27,1,15,{},{},{} -1553,Book_Of_Billows,Book of Billows,5,35000,,750,90,,1,0,0x00410100,7,2,2,3,27,1,15,{ bonus bAtkEle,Ele_Water; },{},{} -1554,Book_Of_Mother_Earth,Book of Mother Earth,5,35000,,750,90,,1,0,0x00410100,7,2,2,3,27,1,15,{ bonus bAtkEle,Ele_Earth; },{},{} -1555,Book_Of_Blazing_Sun,Book of the Blazing Sun,5,35000,,750,90,,1,0,0x00410100,7,2,2,3,27,1,15,{ bonus bAtkEle,Ele_Fire; },{},{} -1556,Book_Of_Gust_Of_Wind,Book of Gust of Wind,5,35000,,750,90,,1,0,0x00410100,7,2,2,3,27,1,15,{ bonus bAtkEle,Ele_Wind; },{},{} -1557,Book_Of_The_Apocalypse,Book of the Apocalypse,5,60000,,800,120,,1,0,0x00410100,7,2,2,4,40,1,15,{ bonus bAtkEle,Ele_Dark; bonus2 bAddEle,Ele_Holy,5; bonus2 bAddEle,Ele_Water,7; bonus2 bAddEle,Ele_Earth,7; bonus2 bAddEle,Ele_Fire,7; bonus2 bAddEle,Ele_Wind,7; },{},{} -1558,Girl's_Diary,Girl's Diary,5,1500,,300,60,,1,1,0x00410100,7,2,2,4,40,1,15,{ bonus2 bAddDamageClass,1188,150; },{},{} -1559,Legacy_Of_Dragon,Legacy of Dragon,5,20,,700,130,,1,0,0x00410100,7,2,2,4,70,1,15,{ bonus bInt,3; bonus bIgnoreDefRace,RC_Dragon; bonus2 bSPGainRace,RC_Dragon,10; },{},{} -1560,Diary_Of_Great_Sage,Sage's Diary,5,20,,1100,100,,1,2,0x00410100,7,2,2,3,60,1,15,{ bonus bMatkRate,15; if(readparam(bStr)>=50) bonus bAspdRate,5; if(readparam(bInt)>=70) bonus bMatkRate,5; },{},{} -1561,Hardback,Hardcover Book,5,20,,1500,140,,1,1,0x00410100,7,2,2,4,55,1,15,{ bonus bStr,3; bonus bDex,2; },{},{} -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 bComaRace,RC_DemiHuman,10; bonus2 bComaRace,RC_Player_Human,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; },{},{} -1569,Book_Of_Mother_Earth_,Book of Mother Earth,5,35000,,750,90,,1,3,0x00410100,7,2,2,3,27,1,15,{ bonus bAtkEle,Ele_Earth; },{},{} -1570,Book_Of_Blazing_Sun_,Book of Blazing Sun,5,35000,,750,90,,1,3,0x00410100,7,2,2,3,27,1,15,{ bonus bAtkEle,Ele_Fire; },{},{} -1571,Book_Of_Gust_Of_Wind_,Book of Gust of Wind,5,35000,,750,90,,1,3,0x00410100,7,2,2,3,27,1,15,{ bonus bAtkEle,Ele_Wind; },{},{} -1572,Principles_Of_Magic,Principles of Magic,5,20,,300,60,,1,2,0x00410100,7,2,2,3,60,1,15,{ bonus bMatkRate,20; bonus bInt,3; bonus bSPrecovRate,5; },{},{} -1573,Ancient_Magic,Ancient Magic,5,20,,700,30,,1,2,0x00410100,7,2,2,3,70,1,15,{ bonus bMatkRate,15; },{},{} -1574,BF_Book1,Brave Battle Strategy Book,5,20,,0,90,,1,0,0x00410100,7,2,2,3,80,1,15,{ bonus bStr,2; bonus bInt,1; bonus bMatkRate,15; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; },{},{} -1575,BF_Book2,Valorous Battle Strategy Book,5,20,,0,90,,1,0,0x00410100,7,2,2,3,80,1,15,{ bonus bStr,2; bonus bInt,1; bonus bMatkRate,15; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; },{},{} -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_Human,80; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,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_Human,80; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; if(getrefine()>5) bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,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 bComaRace,RC_DemiHuman,10; bonus2 bComaRace,RC_Player_Human,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,{},{},{} -// GM Weapon -1599,Angra_Manyu,Angra Manyu,5,1,,10,200,,2,0,0xFFFFFFFF,7,2,2,1,1,1,8,{ bonus bAllStats,50; bonus bBaseAtk,3800; 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; },{},{} -// Staffs -1601,Rod,Rod,5,50,,400,15,,1,3,0x00818315,7,2,2,1,1,1,10,{ bonus bMatkRate,15; },{},{} -1602,Rod_,Rod,5,50,,400,15,,1,4,0x00818315,7,2,2,1,1,1,10,{ bonus bMatkRate,15; },{},{} -1603,Rod__,Rod,5,50,,400,15,,1,0,0x00818315,7,2,2,1,1,1,10,{ bonus bMatkRate,15; },{},{} -1604,Wand,Wand,5,2500,,400,25,,1,2,0x00818315,7,2,2,2,12,1,10,{ bonus bInt,1; bonus bMatkRate,15; },{},{} -1605,Wand_,Wand,5,2500,,400,25,,1,3,0x00818315,7,2,2,2,12,1,10,{ bonus bInt,1; bonus bMatkRate,15; },{},{} -1606,Wand__,Wand,5,2500,,400,25,,1,0,0x00818315,7,2,2,2,12,1,10,{ bonus bInt,1; bonus bMatkRate,15; },{},{} -1607,Staff,Staff,5,9500,,400,40,,1,2,0x00818314,7,2,2,2,12,1,10,{ bonus bInt,2; bonus bMatkRate,15; },{},{} -1608,Staff_,Staff,5,9500,,400,40,,1,3,0x00818314,7,2,2,2,12,1,10,{ bonus bInt,2; bonus bMatkRate,15; },{},{} -1609,Staff__,Staff,5,9500,,400,40,,1,0,0x00818314,7,2,2,2,12,1,10,{ bonus bInt,2; bonus bMatkRate,15; },{},{} -1610,Arc_Wand,Arc Wand,5,45000,,400,60,,1,1,0x00818314,7,2,2,3,24,1,10,{ bonus bInt,3; bonus bMatkRate,15; },{},{} -1611,Arc_Wand_,Arc Wand,5,45000,,400,60,,1,2,0x00818314,7,2,2,3,24,1,10,{ bonus bInt,3; bonus bMatkRate,15; },{},{} -1612,Arc_Wand__,Arc Wand,5,45000,,400,60,,1,0,0x00818314,7,2,2,3,24,1,10,{ bonus bInt,3; bonus bMatkRate,15; },{},{} -1613,Mighty_Staff,Mighty Staff,5,20,,700,130,,1,0,0x00818314,7,2,2,3,24,1,10,{ bonus bStr,10; bonus bMatkRate,15; bonus bSPDrainValue,-2; },{},{} -1614,Blessed_Wand,Wand of Occult,5,20,,700,75,,1,0,0x00818314,7,2,2,3,24,1,10,{ bonus bInt,3; bonus bMatkRate,15; },{},{} -1615,Bone_Wand,Evil Bone Wand,5,20,,700,40,,1,0,0x00818314,7,2,2,3,24,1,10,{ bonus bInt,4; bonus bAtkEle,Ele_Undead; bonus bMatkRate,15; },{},{} -1616,Staff_Of_Wing,Wing Staff,5,20,,500,60,,1,0,0x00810204,7,2,2,4,40,1,10,{ bonus bMatkRate,15; bonus bCastrate,-5; },{},{} -1617,Survival_Rod,Survivor's Rod,5,85000,,1000,50,,1,0,0x00818314,7,2,2,3,24,1,10,{ bonus bDex,2; bonus bMatkRate,15; bonus bMaxHP,300; },{},{} -1618,Survival_Rod_,Survivor's Rod,5,85000,,1000,50,,1,1,0x00818314,7,2,2,3,24,1,10,{ bonus bDex,3; bonus bMatkRate,15; bonus bMaxHP,400; },{},{} -1619,Survival_Rod2,Survivor's Rod,5,85000,,1000,50,,1,0,0x00818314,7,2,2,3,24,1,10,{ bonus bInt,2; bonus bMatkRate,15; bonus bMaxHP,300; },{},{} -1620,Survival_Rod2_,Survivor's Rod,5,85000,,1000,50,,1,1,0x00818314,7,2,2,3,24,1,10,{ bonus bInt,3; bonus bMatkRate,15; bonus bMaxHP,400; },{},{} -1621,Hypnotist's_Staff,Hypnotist's Staff,5,43000,,500,70,,1,1,0x00000001,7,2,2,3,30,1,10,{ bonus bInt,1; bonus bMatkRate,25; },{},{} -1622,Hypnotist's_Staff_,Hypnotist's Staff,5,20,,500,70,,1,2,0x00000001,7,2,2,3,30,1,10,{ bonus bInt,1; bonus bMatkRate,25; },{},{} -1623,Mighty_Staff_C,Mighty Staff,5,1,,0,165,,1,0,0x00818314,7,2,2,3,1,0,10,{ bonus bStr,10; bonus bInt,4; bonus bMatkRate,20; bonus bSPDrainValue,-1; },{},{} -1624,Lich_Bone_Wand,Lich's Bone Wand,5,20,,800,60,,1,2,0x00018314,2,2,2,3,70,1,10,{ bonus bInt,1; bonus bDex,1; bonus bAtkEle,Ele_Undead; bonus bMatkRate,20; bonus3 bAutoSpellWhenHit,"NPC_WIDECURSE",5,10+getrefine(); if(getrefine()>=9){ bonus bMatkRate,3; bonus bMaxSP,300; } },{},{} -1625,Healing_Staff,Healing Staff,5,20,,400,10,,1,0,0x00008110,7,2,2,3,55,1,10,{ bonus bAtkEle,Ele_Holy; bonus bMatkRate,15; bonus bHealPower,(getrefine()*3/2); },{},{} -1626,Piercing_Staff,Piercing Staff,5,20,,500,80,,1,0,0x00018314,2,2,2,3,70,1,10,{ bonus bInt,4; bonus bMatkRate,15; bonus2 bIgnoreMdefClassRate,Class_Normal,10+getrefine(); bonus2 bIgnoreMdefClassRate,Class_Boss,10+getrefine(); },{},{} -1627,Staffy,Staffy,5,20,,0,40,,1,0,0x00818314,7,2,2,1,0,0,10,{ bonus bMatkRate,15; bonus2 bAddClass,Class_All,50; },{},{} -1628,Survival_Rod_C,Refined Survivor's Rod,5,1,,0,71,,1,0,0x00818314,7,2,2,3,0,0,10,{ bonus bDex,4; bonus bMatkRate,20; bonus bMaxHP,500; },{},{} -1629,Walking_Stick,Gentleman's Staff,5,20,,500,40,,1,1,0x00818314,7,2,2,4,50,1,10,{ bonus bMatkRate,15; bonus bDex,1; },{},{} -1630,Release_Of_Wish,Release of Wish,5,20,,500,30,,1,0,0x00810204,7,2,2,3,50,1,10,{ bonus bMatkRate,15; 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,,1,1,0x00008100,7,2,2,4,70,1,10,{ bonus bAtkEle,Ele_Holy; bonus bMatkRate,15; bonus2 bCastrate,"AL_HOLYLIGHT",-25; bonus2 bCastrate,"PR_TURNUNDEAD",-25; bonus2 bCastrate,"PR_MAGNUS",-25; },{},{} -1632,BF_Staff1,Warlock's Magic Wand,5,20,,0,70,,1,0,0x00818314,7,2,2,3,80,1,10,{ bonus bInt,4; bonus bDex,3; bonus bMatkRate,15; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; bonus3 bAddEff,Eff_Stun,500,ATF_SKILL; bonus bUnbreakableWeapon; },{},{} -1633,BF_Staff2,Warlock's Battle Wand,5,20,,0,70,,1,0,0x00818314,7,2,2,3,80,1,10,{ bonus bInt,3; bonus bDex,3; bonus bMatkRate,15; bonus2 bMagicAddRace,RC_DemiHuman,15; bonus2 bMagicAddRace,RC_Player_Human,15; bonus3 bAddEff,Eff_Stun,500,ATF_SKILL; bonus bUnbreakableWeapon; },{},{} -1634,BF_Staff3,Strong Recovery Wand,5,20,,0,70,,1,0,0x00818314,7,2,2,3,80,1,10,{ bonus bMatkRate,15; bonus bHealPower,14; bonus2 bSPRegenRate,5,10000; bonus bUnbreakableWeapon; },{},{} -1635,BF_Staff4,Speedy Recovery Wand,5,20,,0,70,,1,0,0x00818314,7,2,2,3,80,1,10,{ bonus bInt,3; bonus bDex,2; bonus bMatkRate,15; bonus bDelayRate,-15; bonus2 bSPRegenRate,5,10000; bonus bUnbreakableWeapon; },{},{} -1636,Thorn_Staff,Thorn Staff of Darkness,5,20,,700,60,,1,0,0x00018314,2,2,2,4,75,1,10,{ bonus bInt,3; bonus bDex,3; bonus bMatkRate,20; bonus2 bIgnoreMdefClassRate,Class_Normal,getrefine(); bonus2 bIgnoreMdefClassRate,Class_Boss,getrefine(); bonus bDelayRate,-(getrefine()*3/2); },{},{} -1637,Eraser,Eraser,5,20,,500,80,,1,0,0x00018314,2,2,2,4,70,1,10,{ bonus bMatkRate,20; 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; },{},{} -1638,Healing_Staff_C,Staff Of Healing,5,20,,0,10,,1,0,0x00008110,7,2,2,3,1,1,10,{ bonus bAtkEle,Ele_Holy; bonus bMatkRate,15; bonus bHealPower,(getrefine()*3/2); },{},{} -1639,N_Rod,Novice Rod,5,0,,0,15,,1,3,0x00818315,7,2,2,1,1,0,10,{ bonus bMatkRate,16; },{},{} -1640,Krieger_Onehand_Staff1,Glorious Arc Wand,5,20,,0,70,,1,0,0x00818314,7,2,2,4,80,1,10,{ bonus2 bMagicAddRace,RC_DemiHuman,15; bonus2 bMagicAddRace,RC_Player_Human,15; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25 + ((getrefine()>5) ? 5 : 0); bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25 + ((getrefine()>5) ? 5 : 0); bonus bUnbreakableWeapon; if(getrefine()>8) { bonus bCastrate,-5; bonus bDelayRate,-5; bonus bMatkRate,5; } },{},{} -1641,Krieger_Onehand_Staff2,Glorious Cure Wand,5,20,,0,70,,1,0,0x00818314,7,2,2,4,80,1,10,{ bonus bHealPower,14; bonus bDelayRate,-10; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,5; bonus bHealPower,5+(getrefine()-5)*2; } if(getrefine()>8) bonus5 bAutoSpellOnSkill,"AL_HEAL","AL_HEAL",10,100,1; if(getrefine()>9) { bonus bHealPower,10; } },{},{} -1642,Staff_Of_Darkness,Staff Of Darkness,5,20,,0,100,,1,0,0x00818314,7,2,2,2,0,0,10,{ bonus bCastrate,-5; bonus bMatkRate,15; bonus bInt,2; },{},{} -1643,Dead_Tree_Cane,Dead Tree Cane,5,20,,100,100,,1,0,0x00818314,7,2,2,4,70,1,10,{ bonus bMatk,15; bonus bInt,4; if(getrefine()>5) { bonus bInt,getrefine()-5; bonus bMaxHP,-200; bonus bMaxSP,-100; } },{},{} -1644,Piercing_Staff_M,Staff of Piercing,5,20,,500,80,,1,0,0x00018314,2,2,2,3,70,1,10,{ bonus bInt,4; bonus bMatkRate,15; bonus2 bIgnoreMdefClassRate,Class_Normal,10+getrefine(); bonus2 bIgnoreMdefClassRate,Class_Boss,10+getrefine(); },{},{} -1645,Lich_Bone_Wand_M,Lich's Bone Wand,5,20,,800,60,,1,2,0x00018314,2,2,2,3,70,1,10,{ bonus bInt,1; bonus bDex,1; bonus bAtkEle,Ele_Undead; bonus bMatkRate,20; bonus3 bAutoSpellWhenHit,"NPC_WIDECURSE",5,10+getrefine(); if(getrefine()>=9){ bonus bMatkRate,3; bonus bMaxSP,300; } },{},{} -1646,La'cryma_Stick,La'cryma Stick,5,20,,500,30,,1,2,0x00010204,2,2,2,3,50,1,10,{ bonus bInt,4; bonus bMatkRate,15; bonus bMdef,getrefine(); bonus2 bSkillAtk,"WZ_STORMGUST",getrefine(); if(getrefine()>9) bonus2 bCastrate,"WZ_STORMGUST",-8; },{},{} -1647,Croce_Staff,Croce Staff,5,20,,500,30,,1,1,0x00008110,2,2,2,3,50,1,10,{ bonus bAtkEle,Ele_Holy; bonus bMatkRate,15; bonus bInt,4; bonus4 bAutoSpellOnSkill,"AL_HEAL","AL_BLESSING",max(getskilllv("AL_BLESSING"),1),20; },{},{} -1648,Staff_Of_Bordeaux,Staff Of Bordeaux,5,20,,500,30,,1,0,0x00010204,2,2,2,4,50,1,10,{ bonus bMatkRate,15; bonus bInt,2; bonus bDex,1; if(getskilllv("SA_DRAGONOLOGY")==5) { bonus bUseSPrate,-15; bonus bInt,3; } },{},{} -// Bows -1701,Bow,Bow,5,1000,,500,15,,5,3,0x000A0848,7,2,34,1,4,1,11,{},{},{} -1702,Bow_,Bow,5,1000,,500,15,,5,4,0x000A0848,7,2,34,1,4,1,11,{},{},{} -1703,Bow__,Bow,5,1000,,0,15,,5,0,0x000A0848,7,2,34,1,4,1,11,{ bonus2 bAddDamageClass,1002,500; bonus2 bAddDamageClass,1113,500; bonus2 bAddDamageClass,1031,500; bonus2 bAddDamageClass,1242,500; },{},{} -1704,Composite_Bow,Composite Bow,5,2500,,600,29,,5,3,0x000A0848,7,2,34,1,4,1,11,{},{},{} -1705,Composite_Bow_,Composite Bow,5,2500,,600,29,,5,4,0x000A0848,7,2,34,1,4,1,11,{},{},{} -1706,Composite_Bow__,Composite Bow,5,2500,,600,29,,5,0,0x000A0848,7,2,34,1,4,1,11,{},{},{} -1707,Great_Bow,Great Bow,5,10000,,1000,50,,5,2,0x000A0848,7,2,34,2,18,1,11,{},{},{} -1708,Great_Bow_,Great Bow,5,10000,,1000,50,,5,3,0x000A0848,7,2,34,2,18,1,11,{},{},{} -1709,Great_Bow__,Great Bow,5,10000,,1000,50,,5,0,0x000A0848,7,2,34,2,18,1,11,{},{},{} -1710,CrossBow,Crossbow,5,17000,,900,65,,5,2,0x000A0848,7,2,34,2,18,1,11,{},{},{} -1711,CrossBow_,Crossbow,5,17000,,900,65,,5,3,0x000A0848,7,2,34,2,18,1,11,{},{},{} -1712,CrossBow__,Crossbow,5,17000,,900,65,,5,0,0x000A0848,7,2,34,2,18,1,11,{},{},{} -1713,Arbalest,Arbalest,5,48000,,1000,90,,5,1,0x000A0848,7,2,34,3,33,1,11,{ bonus bDex,2; },{},{} -1714,Kakkung,Gakkung Bow,5,42000,,1100,100,,5,1,0x000A0848,7,2,34,3,33,1,11,{},{},{} -1715,Arbalest_,Arbalest,5,48000,,1000,90,,5,2,0x000A0848,7,2,34,3,33,1,11,{ bonus bDex,2; },{},{} -1716,Kakkung_,Gakkung Bow,5,42000,,1100,100,,5,2,0x000A0848,7,2,34,3,33,1,11,{},{},{} -1718,Hunter_Bow,Hunter Bow,5,64000,,1500,125,,5,0,0x00000800,7,2,34,3,33,1,11,{},{},{} -1719,Bow_Of_Roguemaster,Roguemaster's Bow,5,20,,500,75,,11,0,0x00000040,7,2,34,4,48,1,11,{},{},{} -1720,Bow_Of_Rudra,Rudra Bow,5,20,,1200,150,,5,0,0x000A0808,7,2,34,4,48,1,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; },{},{} -1721,Repeting_CrossBow,Repeating Crossbow,5,89000,,2000,95,,9,1,0x00020840,7,2,34,3,65,1,11,{},{},{} -1722,Balistar,Ballista,5,124000,,3500,145,,5,0,0x00080800,7,2,34,4,77,1,11,{},{},{} -1723,Luna_Bow,Luna Bow,5,20,,2000,100,,5,2,0x00000800,7,2,34,3,30,1,11,{ bonus bDef,2+3*(getrefine()>5)+2*(getrefine()>8); },{},{} -1724,Dragon_Wing,Dragon Wing,5,20,,1200,100,,5,0,0x000A0848,7,2,34,4,60,1,11,{ bonus3 bAddMonsterDropItem,1765,RC_Dragon,300; bonus bIgnoreDefRace,RC_Dragon; },{},{} -1725,Bow_Of_Minstrel,Minstrel Bow,5,20,,1700,120,,5,1,0x00080800,7,2,34,4,70,1,11,{ bonus bInt,2; bonus bSPrecovRate,10; },{},{} -1726,Hunter_Bow_,Hunter Bow,5,64000,,1500,125,,5,1,0x00000800,7,2,34,3,33,1,11,{},{},{} -1727,Balistar_,Ballista,5,124000,,3500,145,,5,1,0x00080800,7,2,34,4,77,1,11,{},{},{} -1728,Balistar_C,Ballista,5,1,,0,194,,5,0,0x00080800,7,2,34,4,1,0,11,{ bonus bLongAtkRate,20; },{},{} -1729,Bow_Of_Rudra_C,Rudra Bow,5,2,,0,185,,5,0,0x000A0808,7,2,34,4,1,0,11,{ bonus bAtkEle,Ele_Holy; bonus bInt,5; skill "AL_CURE",1; skill "AL_HEAL",1; },{},{} -1730,Burning_Bow,Burning Bow,5,20,,1400,95,,5,1,0x000A0808,7,2,34,3,55,1,11,{ bonus2 bSubEle,Ele_Fire,10; },{},{} -1731,Frozen_Bow,Frozen Bow,5,20,,1400,100,,5,1,0x000A0808,7,2,34,3,55,1,11,{ bonus2 bAddEff,Eff_Freeze,1000; },{},{} -1732,Earth_Bow,Earth Bow,5,20,,1400,105,,5,1,0x000A0808,7,2,34,3,55,1,11,{},{},{} -1733,Gust_Bow,Gust Bow,5,20,,1400,95,,5,1,0x000A0808,7,2,34,3,55,1,11,{},{},{} -1734,Orc_Archer_Bow,Orc Archer Bow,5,20,,1600,120,,5,0,0x000A0808,7,2,34,3,65,1,11,{ bonus2 bAddMonsterDropItem,1753,200; },{},{} -1735,Kkakkung,Kkakkung,5,20,,0,120,,5,0,0x000A0848,7,2,34,1,1,0,11,{ bonus2 bAddClass,Class_All,50; },{},{} -1736,Double_Bound,Double Bound,5,20,,900,70,,5,3,0x00000800,2,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,2,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,0,,0,100,,5,0,0x000A0848,7,2,34,3,80,1,11,{ bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; },{},{} -1739,BF_Bow2,Brave Battle CrossBow,5,0,,0,100,,5,0,0x000A0848,7,2,34,3,80,1,11,{ bonus bDex,2; bonus bInt,10; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus bUnbreakableWeapon; },{},{} -1740,Nepenthes_Bow,Nepenthes Bow,5,20,,1000,105,,5,2,0x00000800,2,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,2,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,7,2,34,1,4,0,11,{},{},{} -1743,Krieger_Bow1,Glorious Hunter Bow,5,0,,0,100,,5,0,0x001A0848,7,2,34,4,80,1,11,{ bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bCritAtkRate,getrefine() * 2; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) bonus2 bSkillAtk,"AC_DOUBLE",20; },{},{} -1744,Bow_Of_Evil,Bow Of Evil,5,0,,0,170,,5,0,0x000A0848,7,2,34,4,1,0,11,{ bonus2 bSkillAtk,"AC_DOUBLE",25; bonus bDex,2; },{},{} -1745,Falken_Blitz,Falken Blitz,5,0,,1000,100,,5,2,0x00080808,2,2,34,3,50,1,11,{ bonus2 bSkillAtk,"SN_SHARPSHOOTING",10; bonus2 bSkillAtk,"AC_DOUBLE",10; bonus2 bSkillAtk,"AC_CHARGEARROW",10; },{},{} -// Arrows -1750,Arrow,Arrow,10,1,,1,25,,,,0x000A1848,7,2,32768,,1,,1,{},{},{} -1751,Silver_Arrow,Silver Arrow,10,3,,2,30,,,,0x000A1848,7,2,32768,,1,,1,{ bonus bAtkEle,Ele_Holy; },{},{} -1752,Fire_Arrow,Fire Arrow,10,3,,2,30,,,,0x000A1848,7,2,32768,,1,,1,{ bonus bAtkEle,Ele_Fire; },{},{} -1753,Steel_Arrow,Steel Arrow,10,4,,2,40,,,,0x000A1848,7,2,32768,,1,,1,{},{},{} -1754,Crystal_Arrow,Crystal Arrow,10,3,,2,30,,,,0x000A1848,7,2,32768,,1,,1,{ bonus bAtkEle,Ele_Water; },{},{} -1755,Arrow_Of_Wind,Arrow of Wind,10,3,,2,30,,,,0x000A1848,7,2,32768,,1,,1,{ bonus bAtkEle,Ele_Wind; },{},{} -1756,Stone_Arrow,Stone Arrow,10,3,,2,30,,,,0x000A1848,7,2,32768,,1,,1,{ bonus bAtkEle,Ele_Earth; },{},{} -1757,Immatrial_Arrow,Immaterial Arrow,10,3,,1,30,,,,0x000A1848,7,2,32768,,1,,1,{ bonus bAtkEle,Ele_Ghost; },{},{} -1758,Stun_Arrow,Stun Arrow,10,10,,3,1,,,,0x000A1848,7,2,32768,,1,,1,{ bonus2 bAddEff,Eff_Stun,1000; },{},{} -1759,Freezing_Arrow,Frozen Arrow,10,10,,3,1,,,,0x000A1848,7,2,32768,,1,,1,{ bonus bAtkEle,Ele_Water; bonus2 bAddEff,Eff_Freeze,1000; },{},{} -1760,Flash_Arrow,Flash Arrow,10,10,,3,1,,,,0x000A1848,7,2,32768,,1,,1,{ bonus2 bAddEff,Eff_Blind,1000; },{},{} -1761,Curse_Arrow,Cursed Arrow,10,10,,3,1,,,,0x000A1848,7,2,32768,,1,,1,{ bonus2 bAddEff,Eff_Curse,1000; },{},{} -1762,Rusty_Arrow,Rusty Arrow,10,3,,2,30,,,,0x000A1848,7,2,32768,,1,,1,{ bonus bAtkEle,Ele_Poison; },{},{} -1763,Poison_Arrow,Poison Arrow,10,10,,3,1,,,,0x000A1848,7,2,32768,,1,,1,{ bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,2000; },{},{} -1764,Incisive_Arrow,Sharp Arrow,10,20,,3,10,,,,0x000A1848,7,2,32768,,1,,1,{ bonus bCriticalLong,20; },{},{} -1765,Oridecon_Arrow,Oridecon Arrow,10,30,,3,50,,,,0x000A1848,7,2,32768,,1,,1,{},{},{} -1766,Arrow_Of_Counter_Evil,Arrow of Counter Evil,10,40,,3,50,,,,0x000A1848,7,2,32768,,1,,1,{ bonus bAtkEle,Ele_Holy; },{},{} -1767,Arrow_Of_Shadow,Arrow of Shadow,10,3,,2,30,,,,0x000A1848,7,2,32768,,1,,1,{ bonus bAtkEle,Ele_Dark; },{},{} -1768,Sleep_Arrow,Sleep Arrow,10,10,,3,1,,,,0x000A1848,7,2,32768,,1,,1,{ bonus2 bAddEff,Eff_Sleep,2000; },{},{} -1769,Silence_Arrow,Mute Arrow,10,10,,3,1,,,,0x000A1848,7,2,32768,,1,,1,{ bonus2 bAddEff,Eff_Silence,1000; },{},{} -1770,Iron_Arrow,Iron Arrow,10,2,,1,30,,,,0x000A1848,7,2,32768,,1,,1,{},{},{} -1771,Venom_Knife,Venom Knife,10,50,,5,30,,,,0x00001000,7,2,32768,,1,,2,{},{},{} -1772,Holy_Arrow,Holy Arrow,10,3,,2,50,,,,0x000A1848,7,2,32768,,1,,1,{ bonus bAtkEle,Ele_Holy; bonus2 bAddRace,RC_Demon,5; },{},{} -// Knuckles -1801,Waghnakh,Waghnak,5,8000,,400,30,,1,3,0x00008100,7,2,2,1,1,1,12,{},{},{} -1802,Waghnakh_,Waghnak,5,8000,,400,30,,1,4,0x00008100,7,2,2,1,1,1,12,{},{},{} -1803,Knuckle_Duster,Knuckle Dusters,5,25000,,450,50,,1,2,0x00008100,7,2,2,2,12,1,12,{},{},{} -1804,Knuckle_Duster_,Knuckle Dusters,5,25000,,450,50,,1,3,0x00008100,7,2,2,2,12,1,12,{},{},{} -1805,Hora,Studded Knuckles,5,32000,,450,65,,1,2,0x00008100,7,2,2,2,12,1,12,{},{},{} -1806,Hora_,Studded Knuckles,5,32000,,450,65,,1,3,0x00008100,7,2,2,2,12,1,12,{},{},{} -1807,Fist,Fist,5,53000,,650,115,,1,0,0x00008100,7,2,2,3,24,1,12,{},{},{} -1808,Fist_,Fist,5,53000,,650,115,,1,1,0x00008100,7,2,2,3,24,1,12,{},{},{} -1809,Claw,Claw,5,67000,,500,86,,1,1,0x00008100,7,2,2,3,24,1,12,{ bonus bStr,2; },{},{} -1810,Claw_,Claw,5,67000,,500,86,,1,2,0x00008100,7,2,2,3,24,1,12,{ bonus bStr,2; },{},{} -1811,Finger,Finger,5,58000,,500,97,,1,1,0x00008100,7,2,2,3,24,1,12,{},{},{} -1812,Finger_,Finger,5,58000,,500,97,,1,2,0x00008100,7,2,2,3,24,1,12,{},{},{} -1813,Kaiser_Knuckle,Kaiser Knuckle,5,20,,450,110,,1,0,0x00008100,7,2,2,4,36,1,12,{ bonus bAtkEle,Ele_Wind; bonus2 bAddRace,RC_Undead,5; bonus2 bAddEle,Ele_Water,10; bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Fire,10; bonus2 bAddEle,Ele_Wind,10; },{},{} -1814,Berserk,Berserk,5,20,,500,120,,1,0,0x00008100,7,2,2,4,36,1,12,{ bonus bAspdRate,12; },{},{} -1815,Claw_Of_Garm,Hatii Claw,5,20,,550,152,,1,1,0x00008100,7,2,2,4,70,1,12,{ bonus bAtkEle,Ele_Dark; bonus bMaxHPrate,-2; bonus2 bAddEff,Eff_Bleeding,200; },{},{} -1816,Berserk_,Berserk,5,20,,500,120,,1,1,0x00008100,7,2,2,4,36,1,12,{ bonus bAspdRate,12; },{},{} -1817,Kaiser_Knuckle_C,Kaiser Knuckle,5,1,,0,159,,1,0,0x00008100,7,2,2,4,1,0,12,{ bonus bAtkEle,Ele_Wind; bonus2 bAddRace,RC_Undead,5; bonus2 bAddEle,Ele_Water,10; bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Fire,10; bonus2 bAddEle,Ele_Wind,10; bonus bAspdRate,5; },{},{} -1818,Magma_Fist,Magma Fist,5,20,,650,80,,1,3,0x00008100,7,2,2,3,75,1,12,{ bonus3 bAutoSpell,"SA_FLAMELAUNCHER",5,10; },{},{} -1819,Icicle_Fist,Icicle Fist,5,20,,650,80,,1,3,0x00008100,7,2,2,3,75,1,12,{ bonus3 bAutoSpell,"SA_FROSTWEAPON",5,10; },{},{} -1820,Electric_Fist,Electric Fist,5,20,,650,80,,1,3,0x00008100,7,2,2,3,75,1,12,{ bonus3 bAutoSpell,"SA_LIGHTNINGLOADER",5,10; },{},{} -1821,Seismic_Fist,Seismic Fist,5,20,,650,80,,1,3,0x00008100,7,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,7,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,7,2,2,3,80,1,12,{ bonus bStr,2; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus4 bAutoSpell,"CH_SOULCOLLECT",1,5,0; bonus bUnbreakableWeapon; },{},{} -1824,BF_Knuckle2,Brave Battle Fist,5,20,,0,30,,1,0,0x00008100,7,2,2,3,80,1,12,{ bonus bStr,2; bonus bInt,1; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bCastrate,"MO_EXTREMITYFIST",-25; autobonus "{ bonus2 bCastrate,\"MO_EXTREMITYFIST\",-100; }",50,6000,BF_WEAPON,"{ specialeffect2 EF_SUFFRAGIUM; }"; bonus bUnbreakableWeapon; },{},{} -1825,Horn_Of_Hilthrion,Horn of Hillslion,5,20,,600,95,,1,3,0x00008000,2,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,7,2,2,4,80,1,12,{ bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) { bonus3 bAutoSpell,"MO_INVESTIGATE",5,(getrefine()*10-50); bonus3 bAutoSpell,"AL_DECAGI",1,(getrefine()*10-50); } },{},{} -1827,Krieger_Knuckle2,Glorious Fist,5,20,,0,30,,1,0,0x00008100,7,2,2,4,80,1,12,{ bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) { bonus2 bCastrate,"MO_EXTREMITYFIST",-100; bonus4 bautospellonskill,"MO_EXPLOSIONSPIRITS","CH_SOULCOLLECT",1,1000; } },{},{} -1828,Monk_Knuckle,Monk Knuckle,5,20,,0,150,,1,0,0x00008100,7,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,7,2,2,3,1,0,12,{ bonus2 bAddSize,Size_All,40; },{},{} -// Instruments -1901,Violin,Violin,5,4000,,700,50,,1,3,0x00080000,7,1,2,1,2,1,13,{},{},{} -1902,Violin_,Violin,5,4000,,700,50,,1,4,0x00080000,7,1,2,1,2,1,13,{},{},{} -1903,Mandolin,Mandolin,5,18000,,400,90,,1,2,0x00080000,7,1,2,2,14,1,13,{},{},{} -1904,Mandolin_,Mandolin,5,18000,,400,90,,1,3,0x00080000,7,1,2,2,14,1,13,{},{},{} -1905,Lute,Lute,5,24500,,500,105,,1,2,0x00080000,7,1,2,2,14,1,13,{},{},{} -1906,Lute_,Lute,5,24500,,500,105,,1,3,0x00080000,7,1,2,2,14,1,13,{},{},{} -1907,Guitar,Guitar,5,47000,,900,142,,1,0,0x00080000,7,1,2,3,27,1,13,{},{},{} -1908,Guitar_,Guitar,5,47000,,900,142,,1,1,0x00080000,7,1,2,3,27,1,13,{},{},{} -1909,Harp,Harp,5,62000,,900,114,,1,1,0x00080000,7,1,2,3,27,1,13,{ bonus bInt,2; },{},{} -1910,Harp_,Harp,5,62000,,900,114,,1,2,0x00080000,7,1,2,3,27,1,13,{ bonus bInt,2; },{},{} -1911,Guh_Moon_Goh,Gumoongoh,5,54000,,1300,126,,1,1,0x00080000,7,1,2,3,27,1,13,{},{},{} -1912,Guh_Moon_Goh_,Gumoongoh,5,54000,,1300,126,,1,2,0x00080000,7,1,2,3,27,1,13,{},{},{} -1913,Electronic_Guitar,Electric Guitar,5,20,,1800,110,,1,0,0x00080000,7,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; },{},{} -1914,Guitar_Of_Passion,Burning Passion Guitar,5,20,,900,110,,1,0,0x00080000,7,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,7,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,7,1,2,3,27,1,13,{ bonus bAtkEle,Ele_Earth; },{},{} -1917,Guitar_Of_Gentle_Breeze,Gentle Breeze Guitar,5,20,,900,110,,1,0,0x00080000,7,1,2,3,27,1,13,{ bonus bAtkEle,Ele_Wind; },{},{} -1918,Oriental_Lute,Oriental Lute,5,20,,1200,150,,1,0,0x00080000,7,1,2,4,65,1,13,{ bonus2 bSkillAtk,"CG_ARROWVULCAN",10; bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10; },{},{} -1919,Base_Guitar,Bass Guitar,5,20,,1500,130,,1,1,0x00080000,2,1,2,3,70,1,13,{ bonus bSPGainValue,3; bonus4 bAutoSpellWhenHit,"WZ_HEAVENDRIVE",3,30,1; bonus3 bAutoSpell,"NPC_WIDECONFUSE",2,100; },{},{} -1920,Berserk_Guitar,Berserk Guitar,5,20,,1800,10,,1,0,0x00080000,2,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,7,1,2,1,0,0,13,{ bonus2 bAddClass,Class_All,50; },{},{} -1922,Oriental_Lute_,Oriental Lute,5,20,,1200,150,,1,2,0x00080000,7,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,7,1,2,3,80,1,13,{ bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; },{},{} -1924,BF_Instrument2,Brave Battlefield Guitar,5,20,,0,50,,1,0,0x00080000,7,1,2,3,80,1,13,{ bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bSkillAtk,"CG_ARROWVULCAN",20; bonus bUnbreakableWeapon; },{},{} -1925,Cello,Cello,5,20,,700,110,,1,3,0x00080000,2,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,2,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,7,1,2,4,80,1,13,{ bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) bonus4 bAutoSpellOnSkill,"CG_ARROWVULCAN","CG_TAROTCARD",5,100; },{},{} -1928,Berserk_Guitar_I,Spirited Guitar,5,0,,0,40,,1,0,0x00080000,2,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,7,1,2,3,1,0,13,{ bonus2 bAddSize,Size_All,40; },{},{} -// Whips -1950,Rope,Rope,5,2500,,400,45,,2,3,0x00080000,7,0,2,1,3,1,14,{},{},{} -1951,Rope_,Rope,5,2500,,400,45,,2,4,0x00080000,7,0,2,1,3,1,14,{},{},{} -1952,Line,Whip,5,12000,,300,80,,2,2,0x00080000,7,0,2,2,16,1,14,{},{},{} -1953,Line_,Whip,5,12000,,300,80,,2,3,0x00080000,7,0,2,2,16,1,14,{},{},{} -1954,Wire,Wire Whip,5,17500,,1000,95,,2,2,0x00080000,7,0,2,2,16,1,14,{},{},{} -1955,Wire_,Wire Whip,5,17500,,1000,95,,2,3,0x00080000,7,0,2,2,16,1,14,{},{},{} -1956,Rante,Rante Whip,5,32000,,900,135,,2,0,0x00080000,7,0,2,3,30,1,14,{},{},{} -1957,Rante_,Rante Whip,5,32000,,900,135,,2,1,0x00080000,7,0,2,3,30,1,14,{},{},{} -1958,Tail,Tail Whip,5,41000,,700,105,,2,1,0x00080000,7,0,2,3,30,1,14,{ bonus bLuk,3; },{},{} -1959,Tail_,Tail Whip,5,41000,,700,105,,2,2,0x00080000,7,0,2,3,30,1,14,{ bonus bLuk,3; },{},{} -1960,Whip,Whip,5,38000,,700,120,,2,1,0x00080000,7,0,2,3,30,1,14,{},{},{} -1961,Whip_,Whip,5,38000,,700,120,,2,2,0x00080000,7,0,2,3,30,1,14,{},{},{} -1962,Lariat,Lariat Whip,5,20,,400,100,,2,0,0x00080000,7,0,2,4,44,1,14,{ bonus bDex,5; bonus bAgi,1; },{},{} -1963,Rapture_Rose,Rapture Rose,5,20,,300,115,,2,0,0x00080000,7,0,2,4,44,1,14,{ bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,5000; },{},{} -1964,Chemeti,Chemeti Whip,5,20,,700,135,,2,0,0x00080000,7,0,2,4,44,1,14,{ bonus bCritical,5; bonus bFlee,10; bonus bFlee2,2; },{},{} -1965,Whip_Of_Red_Flame,Red Flame Whip,5,20,,700,110,,2,0,0x00080000,7,0,2,3,30,1,14,{ bonus bAtkEle,Ele_Fire; },{},{} -1966,Whip_Of_Ice_Piece,Icicle Whip,5,20,,700,110,,2,0,0x00080000,7,0,2,3,30,1,14,{ bonus bAtkEle,Ele_Water; },{},{} -1967,Whip_Of_Earth,Gaia Whip,5,20,,700,110,,2,0,0x00080000,7,0,2,3,30,1,14,{ bonus bAtkEle,Ele_Earth; },{},{} -1968,Jump_Rope,Skipping Rope,5,20,,400,120,,2,0,0x00080000,7,0,2,3,30,1,14,{ bonus bCritical,20; },{},{} -1969,Bladed_Whip,Blade Whip,5,20,,1200,140,,2,0,0x00080000,7,0,2,4,30,1,14,{ bonus2 bAddEff,Eff_Bleeding,300; },{},{} -1970,Queen's_Whip,Queen's Whip,5,20,,1100,150,,2,0,0x00080000,7,0,2,4,65,1,14,{ bonus2 bSkillAtk,"CG_ARROWVULCAN",10; bonus2 bSkillAtk,"DC_THROWARROW",10; },{},{} -1971,Electric_Wire,Electric Wire,5,20,,700,110,,2,0,0x00080000,7,0,2,3,30,1,14,{ bonus bAtkEle,Ele_Wind; },{},{} -1972,Electric_Eel,Electric Eel,5,20,,2000,100,,2,2,0x00080000,2,0,2,4,70,1,14,{ bonus bAtkEle,Ele_Wind; bonus bInt,2; bonus bAgi,2; bonus3 bAutoSpell,"WZ_JUPITEL",3,20; if(getrefine()>0) bonus3 bAutoSpell,"CG_ARROWVULCAN",getrefine(),50; },{},{} -1973,Sea_Witch_Foot,Sea Witch's Foot,5,20,,1500,110,,2,1,0x00080000,2,0,2,4,70,1,14,{ bonus bSPGainValue,5; bonus4 bAutoSpellWhenHit,"WZ_FROSTNOVA",3,50,1; bonus3 bAutoSpell,"NPC_WIDESILENCE",2,100; },{},{} -1974,Carrot_Whip,Carrot Whip,5,20,,1300,185,,2,0,0x00080000,2,0,2,4,70,1,14,{ if(getrefine()>0) bonus3 bAutoSpell,"AL_INCAGI",getrefine(),10; },{},{} -1975,Queen_Is_Whip,Queen Is Whip,5,20,,0,120,,2,0,0x00080000,7,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,7,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,7,0,2,3,80,1,14,{ bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; },{},{} -1978,BF_Whip2,Brave Battle Lariat,5,20,,0,50,,2,0,0x00080000,7,0,2,3,80,1,14,{ bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bSkillAtk,"CG_ARROWVULCAN",20; bonus bUnbreakableWeapon; },{},{} -1979,Stem_Of_Nepenthes,Stem of Nepenthes,5,20,,1000,120,,2,2,0x00080000,2,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; } },{},{} -1980,Whip_Of_Balance,Whip of Balance,5,20,,700,110,,2,3,0x00080000,2,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,7,0,2,4,80,1,14,{ bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) bonus4 bAutoSpellOnSkill,"CG_ARROWVULCAN","CG_TAROTCARD",5,100; },{},{} -1982,Phenomena_Whip,Phenomena Whip,5,20,,0,160,,2,0,0x00080000,7,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,7,0,2,3,1,0,14,{ bonus2 bAddSize,Size_All,40; },{},{} -// Additional 2-Handed Staffs -2000,Destruction_Rod,Staff of Destruction,5,20,,2500,130,,1,1,0x00000200,2,2,34,4,80,1,23,{ bonus bMatkRate,25+getrefine()/2; bonus bInt,3; bonus bAgi,10; bonus bUseSPrate,(getrefine()*2); bonus3 bAutoSpellWhenHit,"WZ_JUPITEL",5,(getrefine()*20); bonus2 bCastrate,"HW_MAGICPOWER",-50; },{},{} -2001,Divine_Cross,Divine Cross,5,20,,1500,120,,1,0,0x00008100,7,2,34,4,70,1,23,{ bonus bAtkEle,Ele_Holy; bonus bMatkRate,15; bonus bDex,4; bonus2 bSubRace,RC_Demon,15; bonus2 bSubRace,RC_Undead,15; },{},{} -2002,Krieger_Twohand_Staff1,Glorious Destruction Staff,5,20,,0,70,,1,0,0x00018314,7,2,34,4,80,1,23,{ bonus bMatkRate,getrefine(); bonus2 bMagicAddRace,RC_DemiHuman,15; bonus2 bMagicAddRace,RC_Player_Human,15; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bMagicAddRace,RC_DemiHuman,(getrefine()-5)*2; bonus2 bMagicAddRace,RC_Player_Human,(getrefine()-5)*2; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5+(getrefine()-5)*2; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,5+(getrefine()-5)*2; } if(getrefine()>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,,1,1,0x00000200,2,2,34,4,80,1,23,{ bonus bMatkRate,25+getrefine()/2; bonus bInt,3; bonus bAgi,10; bonus bUseSPrate,(getrefine()*2); bonus3 bAutoSpellWhenHit,"WZ_JUPITEL",5,(getrefine()*20); bonus2 bCastrate,"HW_MAGICPOWER",-50; },{},{} -2004,Kronos,Kronos,5,20,,1000,30,,1,0,0x00010204,2,2,34,4,50,1,23,{ bonus bMatkRate,20; bonus bInt,3+(getrefine()/2); bonus bMaxHP,300+(50*getrefine()/2); autobonus "{ bonus bMatkRate,12; bonus buseSPRate,20; }",1,5000,BF_MAGIC,"{ specialeffect2 EF_ENHANCE; }"; },{},{} -2005,Dea_Staff,Dea Staff,5,20,,1000,30,,1,1,0x00008110,2,2,34,3,50,1,23,{ bonus bAtkEle,Ele_Holy; bonus bMatkRate,15+getrefine()/2; bonus bInt,6; bonus bVit,2; autobonus3 "{ }",20,1000,"AL_HEAL","{ specialeffect2 EF_MAGICALATTHIT; heal 0,200; }"; },{},{} -2006,G_Staff_Of_Light,Staff Of Light,5,20,,1900,80,,1,0,0x00810204,7,2,34,4,60,1,23,{ /* bonus bMatk,150; */ bonus bAtkEle,Ele_Holy; bonus bInt,6; },{},{} -// Shields -//=================================================================== -2101,Guard,Guard,4,500,,300,,3,,0,0xFFFFFFFF,7,2,32,,0,1,1,{},{},{} -2102,Guard_,Guard,4,500,,300,,3,,1,0xFFFFFFFF,7,2,32,,0,1,1,{},{},{} -2103,Buckler,Buckler,4,14000,,600,,4,,0,0x000ED5F2,7,2,32,,0,1,2,{},{},{} -2104,Buckler_,Buckler,4,14000,,600,,4,,1,0x000ED5F2,7,2,32,,0,1,2,{},{},{} -2105,Shield,Shield,4,56000,,1300,,6,,0,0x00004082,7,2,32,,0,1,3,{},{},{} -2106,Shield_,Shield,4,56000,,1300,,6,,1,0x00004082,7,2,32,,0,1,3,{},{},{} -2107,Mirror_Shield,Mirror Shield,4,60000,,1000,,4,,0,0x00404082,7,2,32,,0,1,4,{ bonus bMdef,5; },{},{} -2108,Mirror_Shield_,Mirror Shield,4,60000,,1000,,4,,1,0x00404082,7,2,32,,0,1,4,{ bonus bMdef,5; },{},{} -2109,Memorize_Book,Memory Book,4,20,,1000,,3,,0,0x00810204,7,2,32,,0,1,5,{ bonus bInt,1; bonus bMdef,2; },{},{} -2110,Holy_Guard,Holy Guard,4,85000,,1400,,5,,0,0x00004000,7,2,32,,68,0,4,{ bonus bVit,2; bonus bMdef,2; },{},{} -2111,Herald_Of_GOD,Sacred Mission,4,128000,,1600,,5,,0,0x00004000,7,2,32,,83,1,4,{ bonus bVit,3; bonus bInt,2; bonus bMdef,3; bonus bUnbreakableShield; },{},{} -2112,Novice_Guard,Novice Guard,4,1,,1,,3,,0,0x00000001,7,2,32,,0,0,1,{},{},{} -2113,Novice_Shield,Novice Shield,4,5000,,1000,,3,,1,0x00000001,7,2,32,,40,1,3,{ bonus2 bSubEle,Ele_Water,20; bonus2 bSubEle,Ele_Earth,20; bonus2 bSubEle,Ele_Fire,20; bonus2 bSubEle,Ele_Wind,20; bonus2 bSubEle,Ele_Poison,20; bonus2 bSubEle,Ele_Ghost,20; bonus2 bSubEle,Ele_Undead,20; },{},{} -2114,Stone_Buckler,Stone Buckler,4,30000,,1500,,3,,1,0xFFFFFFFE,7,2,32,,65,1,2,{ bonus2 bSubSize,Size_Large,5; },{},{} -2115,Valkyrja's_Shield,Valkyrja's Shield,4,30000,,500,,3,,1,0xFFFFFFFE,7,2,32,,65,1,4,{ bonus2 bSubEle,Ele_Water,20; bonus2 bSubEle,Ele_Fire,20; bonus2 bSubEle,Ele_Dark,20; bonus2 bSubEle,Ele_Undead,20; bonus bMdef,5; },{},{} -2116,Angel's_Safeguard,Angelic Guard,4,10000,,400,,3,,1,0x00000001,7,2,32,,20,1,1,{ bonus2 bSubRace,RC_Demon,5; },{},{} -2117,Arm_Guard,Arm Guard,4,10000,,150,,5,,0,0x02000000,7,2,32,,20,1,1,{},{},{} -2118,Arm_Guard_,Arm Guard,4,10000,,150,,5,,1,0x02000000,7,2,32,,20,1,1,{},{},{} -2119,Improved_Arm_Guard,Advanced Arm Guard,4,40000,,150,,4,,0,0x02000000,7,2,32,,50,1,1,{ bonus bMdef,5; },{},{} -2120,Improved_Arm_Guard_,Advanced Arm Guard,4,40000,,150,,4,,1,0x02000000,7,2,32,,50,1,1,{ bonus bMdef,5; },{},{} -2121,Memorize_Book_,Memory Book,4,20,,1000,,3,,1,0x00810204,7,2,32,,0,1,5,{ bonus bInt,1; bonus bMdef,2; },{},{} -2122,Platinum_Shield,Platinum Shield,4,20,,1200,,5,,0,0xFFFFFFFE,2,2,32,,68,1,4,{ bonus bMdef,5; bonus2 bSubSize,Size_Medium,15; bonus2 bSubSize,Size_Large,15; bonus2 bSubRace,RC_Undead,10; bonus5 bAutoSpellWhenHit,"NPC_MAGICMIRROR",7,150,BF_MAGIC,0; },{},{} -2123,Orleans_Server,Orleans's Server,4,20,,1000,,5,,1,0xFFFFFFFE,2,2,32,,55,1,4,{ bonus bMdef,2; bonus bMagicDamageReturn,5; },{},{} -2124,Thorny_Buckler,Thorny Buckler,4,20,,1000,,5,,1,0xFFFFFFFE,2,2,32,,55,1,2,{ bonus bMdef,2; },{},{} -2125,Strong_Shield,Strong Shield,4,20,,2500,,4,,1,0x000654E2,2,2,32,,75,1,4,{ bonus bNoKnockback; 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,7,2,32,,75,1,2,{ bonus bMdef,3; },{},{} -2127,Secular_Mission,Secular Mission,4,20,,0,,10,,0,0xFFFFFFFF,7,2,32,,0,0,4,{ bonus2 bSubClass,Class_All,25; },{},{} -2128,Herald_Of_GOD_,Sacred Mission,4,128000,,1600,,5,,1,0x00004000,7,2,32,,83,1,4,{ bonus bVit,3; bonus bInt,2; bonus bMdef,3; bonus bUnbreakableShield; },{},{} -2129,Exorcism_Bible,Exorcism Bible,4,20,,600,,5,,0,0x00008100,7,2,32,,50,1,5,{ bonus bHPrecovRate,3; bonus bSPrecovRate,3; bonus bInt,1; },{},{} -2130,Cross_Shield,Cross Shield,4,20,,2000,,6,,1,0x00004000,7,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,,2,,1,0x00810204,7,2,32,,70,1,5,{ bonus bMdef,3; bonus bInt,2; bonus2 bAddEffWhenHit,Eff_Stun,1000; },{},{} -2132,Shelter_Resistance,Shell Of Resistance,4,20,,0,,9,,0,0xFFFFFFFF,7,2,32,,0,0,2,{ bonus2 bSubEle,Ele_All,20; bonus bShortWeaponDamageReturn,1; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bAllStats,1; } },{},{} -2133,Tournament_Shield,Tournament Shield,4,20,,1000,,5,,1,0x00004082,2,2,32,,50,1,4,{ bonus2 bAddClass,Class_All,1; if( Class==Job_Lord_Knight ) bonus bAspdRate,-5; },{},{} -2134,Shield_Of_Naga,Shield of Naga,4,20,,500,,3,,1,0x00CFFF80,2,2,32,,70,1,2,{ bonus bMdef,3; autobonus2 "{ bonus bShortWeaponDamageReturn,(getrefine()*3); }",10,5000,BF_WEAPON,"{ specialeffect2 EF_GUARD; }"; },{},{} -2135,Shadow_Guard,Shadow Guard,4,20,,800,,4,,1,0x00020000,2,2,32,,70,1,2,{},{},{} -2136,Cracked_Buckler,Cracked Buckler,4,0,,0,,5,,0,0xFFFFFFFF,7,2,32,,0,0,2,{ bonus bAgi,2; bonus2 bAddEle,Ele_Neutral,-10; bonus3 bAutoSpellWhenHit,"PR_KYRIE",1,50; bonus bMdef,1; },{},{} -2137,Valkyrja's_Shield_C,Neo Valkyrja's Shield,4,0,,0,,5,,0,0xFFFFFFFE,2,2,32,,95,0,4,{ bonus2 bSubEle,Ele_Water,20; bonus2 bSubEle,Ele_Fire,20; bonus2 bSubEle,Ele_Dark,20; bonus2 bSubEle,Ele_Undead,20; bonus bMdef,5; },{},{} -2138,Bradium_Shield,Bradium Shield,4,20,,1800,,5,,1,0x00CFFF80,2,2,32,,65,1,3,{ bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",60; bonus bAgi,-1; bonus bMaxHP,500; },{},{} -2139,Flame_Thrower,Flame Thrower,4,20000,,2000,,60,,0,0x00000400,63,2,32,,99,0,1,{},{},{} -// GM Shield -2199,Ahura_Mazda,Ahura Mazdah,4,1,,10,,100,,0,0xFFFFFFFF,7,2,32,,1,1,0,{ bonus bAllStats,50; bonus bMdef,99; bonus bShortWeaponDamageReturn,100; bonus2 bSubRace,RC_DemiHuman,95; bonus2 bSubRace,RC_Player_Human,95; skill "CR_FULLPROTECTION",5; Skill "WZ_ESTIMATION",1; Skill "ST_FULLSTRIP",5; Skill "HW_MAGICPOWER",10; bonus bMaxHPRate,200; bonus bNoGemStone; bonus bSpeedRate,25; bonus bNoWalkDelay; },{},{} -// Headgears -//=================================================================== -2201,Sunglasses,Sunglasses,4,5000,,100,,0,,0,0xFFFFFFFF,7,2,512,,0,0,12,{ bonus2 bResEff,Eff_Blind,500; },{},{} -2202,Sunglasses_,Sunglasses,4,5000,,100,,0,,1,0xFFFFFFFF,7,2,512,,0,0,12,{ bonus2 bResEff,Eff_Blind,500; },{},{} -2203,Glasses,Glasses,4,4000,,100,,0,,0,0xFFFFFFFF,7,2,512,,0,0,3,{},{},{} -2204,Glasses_,Glasses,4,4000,,100,,0,,1,0xFFFFFFFF,7,2,512,,0,0,3,{},{},{} -2205,Diver's_Goggles,Diver Goggles,4,3500,,100,,0,,0,0xFFFFFFFF,7,2,512,,0,0,10,{},{},{} -2206,Wedding_Veil,Wedding Veil,4,23000,,100,,0,,0,0xFFFFFFFF,7,0,256,,0,1,44,{ bonus bMdef,5; },{},{} -2207,Fancy_Flower,Fancy Flower,4,20,,100,,0,,0,0xFFFFFFFF,7,2,256,,0,0,4,{ bonus2 bSubRace,RC_Plant,10; },{},{} -2208,Ribbon,Ribbon,4,800,,100,,1,,0,0xFFFFFFFF,7,0,256,,0,1,17,{ bonus bMdef,3; },{},{} -2209,Ribbon_,Ribbon,4,800,,100,,1,,1,0xFFFFFFFF,7,0,256,,0,1,17,{ bonus bMdef,3; },{},{} -2210,Hair_Band,Hair Band,4,500,,100,,1,,0,0xFFFFFFFF,7,2,256,,0,0,9,{},{},{} -2211,Bandana,Bandana,4,400,,100,,1,,0,0xFFFFFFFF,7,2,256,,0,1,6,{},{},{} -2212,Eye_Bandage,Eye Patch,4,1000,,100,,0,,0,0xFFFFFFFF,7,2,512,,0,0,13,{},{},{} -2213,Cat_Hairband,Kitty Band,4,20,,100,,2,,0,0xFFFFFFFF,7,2,256,,0,1,2,{},{},{} -2214,Bunny_Band,Bunny Band,4,20,,100,,2,,0,0xFFFFFFFF,7,2,256,,0,1,15,{ bonus bLuk,2; },{},{} -2215,Flower_Hairband,Flower Band,4,20,,100,,2,,0,0xFFFFFFFF,7,2,256,,0,1,5,{},{},{} -2216,Biretta,Biretta,4,9000,,100,,4,,0,0x00008110,7,2,256,,0,1,11,{},{},{} -2217,Biretta_,Biretta,4,9000,,100,,4,,1,0x00008110,7,2,256,,0,1,11,{},{},{} -2218,Flu_Mask,Flu Mask,4,300,,100,,0,,0,0xFFFFFFFF,7,2,1,,0,0,8,{ bonus2 bResEff,Eff_Silence,1000; },{},{} -2219,Flu_Mask_,Flu Mask,4,300,,100,,0,,0,0xFFFFFFFF,7,2,1,,0,0,8,{ bonus2 bResEff,Eff_Silence,1000; },{},{} -2220,Hat,Hat,4,1000,,200,,2,,0,0xFFFFFFFF,7,2,256,,0,1,16,{},{},{} -2221,Hat_,Hat,4,1000,,200,,2,,1,0xFFFFFFFF,7,2,256,,0,1,16,{},{},{} -2222,Turban,Turban,4,4500,,300,,3,,0,0xFFFFFFFE,7,2,256,,0,1,7,{},{},{} -2223,Turban_,Turban,4,4500,,300,,3,,1,0xFFFFFFFE,7,2,256,,0,1,7,{},{},{} -2224,Goggle,Goggles,4,20,,300,,5,,0,0x000E5CEA,7,2,768,,0,1,1,{},{},{} -2225,Goggle_,Goggles,4,20,,300,,5,,1,0x000E5CEA,7,2,768,,0,1,1,{},{},{} -2226,Cap,Cap,4,12000,,400,,4,,0,0x000E5CEA,7,2,256,,0,1,14,{},{},{} -2227,Cap_,Cap,4,12000,,400,,4,,1,0x000E5CEA,7,2,256,,0,1,14,{},{},{} -2228,Helm,Helm,4,44000,,600,,6,,0,0x00004082,7,2,256,,0,1,40,{},{},{} -2229,Helm_,Helm,4,44000,,600,,6,,1,0x00004082,7,2,256,,0,1,40,{},{},{} -2230,Gemmed_Sallet,Gemmed Sallet,4,50000,,500,,4,,0,0x000654E2,7,2,256,,0,1,0,{ bonus bMdef,3; },{},{} -2231,Gemmed_Sallet_,Gemmed Sallet,4,50000,,500,,4,,1,0x000654E2,7,2,256,,0,1,0,{ bonus bMdef,3; },{},{} -2232,Circlet,Circlet,4,7500,,300,,3,,0,0x00818314,7,2,256,,0,1,18,{ bonus bMdef,3; },{},{} -2233,Circlet_,Circlet,4,7500,,300,,3,,1,0x00818314,7,2,256,,0,1,18,{ bonus bMdef,3; },{},{} -2234,Tiara,Tiara,4,20,,400,,4,,0,0xFFFFFFFE,7,0,256,,45,1,19,{ bonus bInt,2; },{},{} -2235,Crown,Crown,4,20,,400,,4,,0,0xFFFFFFFE,7,1,256,,45,1,45,{ bonus bInt,2; },{},{} -2236,Santa's_Hat,Santa Hat,4,20,,100,,1,,0,0xFFFFFFFF,7,2,256,,0,1,20,{ bonus bMdef,1; bonus bLuk,1; },{},{} -2237,Weird_Goatee,Bandit Beard,4,2,,100,,0,,0,0xFFFFFFFF,7,2,1,,0,0,21,{},{},{} -//2238,Weird_Moustache,Moustache,4,2,,100,,0,,0,0xFFFFFFFF,7,2,1,,0,0,22,{},{},{} -2239,One_Eyed_Glass,Monocle,4,10000,,100,,0,,0,0xFFFFFFFF,7,2,512,,0,0,23,{},{},{} -2240,Beard,Beard,4,2,,100,,0,,0,0xFFFFFFFF,7,2,1,,0,0,24,{},{},{} -2241,Granpa_Beard,Grampa Beard,4,5000,,100,,0,,0,0xFFFFFFFF,7,2,1,,0,0,25,{},{},{} -2242,Luxury_Sunglasses,Purple Glasses,4,24000,,100,,1,,0,0xFFFFFFFF,7,2,512,,0,0,26,{ bonus2 bResEff,Eff_Blind,1000; },{},{} -2243,Spinning_Eyes,Geek Glasses,4,20000,,100,,1,,0,0xFFFFFFFF,7,2,512,,0,0,27,{ bonus2 bResEff,Eff_Blind,1500; },{},{} -2244,Big_Sis'_Ribbon,Big Ribbon,4,15000,,200,,2,,0,0xFFFFFFFE,7,2,256,,0,1,28,{ bonus bMdef,3; },{},{} -2245,Sweet_Gents,Sweet Gent,4,15000,,400,,3,,0,0xFFFFFFFE,7,2,256,,0,1,29,{},{},{} -2246,Golden_Gear,Golden Gear,4,20,,900,,5,,0,0xFFFFFFFE,7,2,256,,40,1,30,{ bonus bUnbreakableHelm; },{},{} -2247,Oldman's_Romance,Romantic Gent,4,15000,,400,,3,,0,0xFFFFFFFE,7,2,256,,0,1,31,{},{},{} -2248,Western_Grace,Western Grace,4,15000,,400,,3,,0,0xFFFFFFFE,7,2,256,,0,1,32,{},{},{} -2249,Coronet,Coronet,4,20,,300,,3,,0,0xFFFFFFFE,7,2,256,,0,1,33,{ bonus bInt,1; },{},{} -2250,Fillet,Cute Ribbon,4,500,,100,,1,,0,0xFFFFFFFE,7,2,256,,0,0,34,{ bonus bMaxSP,20; },{},{} -2251,Holy_Bonnet,Monk Hat,4,30000,,100,,5,,0,0x00008110,7,2,256,,0,1,35,{ bonus bMdef,3; },{},{} -2252,Star_Sparkling,Wizard Hat,4,20,,300,,4,,0,0x00810204,7,2,256,,0,1,36,{ bonus bMaxSP,100; },{},{} -2253,Sunflower,Sunflower,4,20,,100,,1,,0,0xFFFFFFFF,7,2,256,,0,0,37,{ bonus2 bSubRace,RC_Insect,10; },{},{} -2254,Angelic_Chain,Angel Wing,4,20,,100,,2,,0,0xFFFFFFFE,7,2,256,,0,1,38,{ bonus bMdef,3; bonus bAgi,1; bonus bLuk,1; bonus2 bSubRace,RC_Demon,3; },{},{} -2255,Satanic_Chain,Evil Wing,4,20,,100,,3,,0,0xFFFFFFFE,7,2,256,,0,1,39,{ bonus bMdef,2; bonus bStr,1; bonus2 bSubRace,RC_Angel,3; },{},{} -2256,Magestic_Goat,Majestic Goat,4,20,,800,,5,,0,0x006444A2,7,2,256,,0,1,41,{ bonus bStr,1; },{},{} -2257,Snowy_Horn,Unicorn Horn,4,20,,100,,2,,0,0xFFFFFFFF,7,2,256,,0,1,42,{},{},{} -2258,Sharp_Gear,Spiky Band,4,20,,1000,,6,,0,0x0066D5F2,7,2,256,,50,1,43,{},{},{} -2259,Mini_Propeller,Mini Propeller,4,20,,100,,1,,0,0xFFFFFFFF,7,2,256,,0,1,46,{},{},{} -2260,Mini_Glasses,Mini Glasses,4,28000,,100,,1,,0,0xFFFFFFFE,7,2,512,,0,0,47,{},{},{} -2261,Prontera_Army_Cap,Army Cap,4,20,,400,,4,,0,0x000654E2,7,2,256,,0,1,48,{},{},{} -2262,Pierrot_Nose,Clown Nose,4,20,,100,,0,,0,0xFFFFFFFF,7,2,1,,0,0,49,{},{},{} -2263,Gangster_Patch,Zorro Masque,4,20,,100,,0,,0,0xFFFFFFFE,7,2,512,,0,0,50,{},{},{} -2264,Munak_Turban,Munak Hat,4,20,,300,,5,,0,0xFFFFFFFF,7,2,769,,0,0,51,{ bonus2 bSubRace,RC_Undead,10; },{},{} -2265,Ganster_Mask,Gangster Mask,4,20,,100,,0,,0,0xFFFFFFFF,7,2,1,,0,0,52,{ bonus2 bResEff,Eff_Silence,1500; },{},{} -2266,Iron_Cane,Iron Cain,4,20,,300,,1,,0,0x00004082,7,2,1,,50,0,53,{},{},{} -2267,Cigar,Cigarette,4,20,,100,,0,,0,0xFFFFFFFE,7,2,1,,0,0,54,{ bonus2 bSubRace,RC_Insect,3; },{},{} -2268,Smoking_Pipe,Pipe,4,20,,100,,0,,0,0xFFFFFFFE,7,2,1,,0,0,55,{ bonus2 bSubRace,RC_Insect,3; },{},{} -2269,Centimental_Flower,Romantic Flower,4,20,,100,,0,,0,0xFFFFFFFE,7,2,1,,0,0,56,{ bonus2 bSubRace,RC_Plant,3; },{},{} -2270,Centimental_Leaf,Romantic Leaf,4,20,,100,,0,,0,0xFFFFFFFE,7,2,1,,0,0,57,{ bonus2 bSubRace,RC_Plant,3; },{},{} -2271,Jack_A_Dandy,Jack be Dandy,4,45000,,100,,1,,0,0xFFFFFFFE,7,2,256,,0,0,58,{},{},{} -2272,Stop_Post,Stop Post,4,20,,400,,1,,0,0xFFFFFFFF,7,2,256,,0,1,59,{},{},{} -2273,Doctor_Cap,Doctor Band,4,20,,100,,3,,0,0xFFFFFFFE,7,2,256,,0,1,60,{ bonus bInt,1; },{},{} -2274,Ghost_Bandana,Ghost Bandana,4,20,,100,,0,,0,0xFFFFFFFE,7,2,256,,0,1,61,{ bonus bAgi,2; bonus2 bSubEle,Ele_Ghost,10; },{},{} -2275,Red_Bandana,Red Bandana,4,20,,100,,2,,0,0xFFFFFFFF,7,2,256,,0,1,62,{},{},{} -2276,Eagle_Eyes,Angled Glasses,4,20,,100,,1,,0,0xFFFFFFFF,7,2,512,,0,0,63,{},{},{} -2277,Nurse_Cap,Nurse Cap,4,20,,100,,2,,0,0x00008110,7,2,256,,0,1,64,{ bonus bInt,1; },{},{} -2278,Mr_Smile,Mr. Smile,4,60,,100,,1,,0,0xFFFFFFFF,7,2,513,,0,0,65,{},{},{} -2279,Bomb_Wick,Bomb Wick,4,20,,100,,1,,0,0xFFFFFFFF,7,2,256,,0,0,66,{},{},{} -2280,Sahkkat,Sakkat,4,20,,300,,3,,0,0xFFFFFFFF,7,2,256,,0,1,67,{ bonus bAgi,1; },{},{} -2281,Phantom_Of_Opera,Opera Masque,4,20,,200,,2,,0,0xFFFFFFFE,7,2,513,,0,0,68,{},{},{} -2282,Spirit_Chain,Halo,4,20,,100,,0,,0,0xFFFFFFFF,7,2,256,,0,0,69,{ bonus2 bSubEle,Ele_Holy,15; },{},{} -2283,Ear_Mufs,Ear Muffs,4,20,,200,,3,,0,0xFFFFFFFF,7,2,256,,0,1,70,{ bonus2 bResEff,Eff_Curse,1000; },{},{} -2284,Antler,Antlers,4,20,,500,,4,,0,0xFFFFFFFE,7,2,256,,0,1,71,{},{},{} -2285,Apple_Of_Archer,Apple of Archer,4,20,,200,,0,,0,0xFFFFFFFE,7,2,256,,30,1,72,{ bonus bDex,3; },{},{} -2286,Elven_Ears,Elven Ears,4,20,,100,,0,,0,0xFFFFFFFE,7,2,512,,70,0,73,{},{},{} -2287,Pirate_Bandana,Pirate Bandana,4,20,,100,,3,,0,0xFFFFFFFE,7,2,256,,0,1,74,{ bonus bStr,1; },{},{} -2288,Mr_Scream,Mr. Scream,4,20,,100,,1,,0,0xFFFFFFFE,7,2,513,,0,0,75,{},{},{} -2289,Poo_Poo_Hat,Poo Poo Hat,4,20,,700,,0,,0,0xFFFFFFFF,7,2,256,,0,0,76,{ bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; },{},{} -2290,Funeral_Costume,Funeral Hat,4,3000,,100,,1,,0,0xFFFFFFFF,7,2,256,,0,0,77,{},{},{} -2291,Masquerade,Masquerade,4,20,,100,,0,,0,0xFFFFFFFE,7,2,512,,0,0,78,{ bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player_Human,3; },{},{} -2292,Welding_Mask,Welding Mask,4,20,,300,,2,,0,0x00040420,7,2,513,,50,0,79,{ bonus2 bSubEle,Ele_Fire,10; },{},{} -2293,Pretend_Murdered,Pretend Murdered,4,20,,100,,1,,0,0xFFFFFFFF,7,2,256,,0,0,80,{},{},{} -2294,Star_Dust,Stellar,4,20,,100,,1,,0,0xFFFFFFFF,7,2,256,,0,1,81,{},{},{} -2295,Blinker,Blinker,4,1500,,100,,0,,0,0xFFFFFFFE,7,2,512,,0,0,82,{ bonus2 bResEff,Eff_Blind,10000; },{},{} -2296,Binoculars,Binoculars,4,20,,100,,1,,0,0x00080808,7,2,512,,50,0,83,{ bonus bDex,1; },{},{} -2297,Goblini_Mask,Goblin Mask,4,20,,100,,1,,0,0xFFFFFFFE,7,2,513,,0,0,84,{},{},{} -2298,Green_Feeler,Green Feeler,4,20,,100,,2,,0,0xFFFFFFFF,7,2,256,,0,0,85,{},{},{} -2299,Viking_Helm,Orc Helm,4,20,,500,,5,,0,0x000654E2,7,2,256,,0,1,86,{},{},{} -// Armors -//=================================================================== -2301,Cotton_Shirt,Cotton Shirt,4,10,,100,,1,,0,0xFFFFFFFF,7,2,16,,0,1,0,{},{},{} -2302,Cotton_Shirt_,Cotton Shirt,4,10,,100,,1,,1,0xFFFFFFFF,7,2,16,,0,1,0,{},{},{} -2303,Leather_Jacket,Jacket,4,200,,200,,2,,0,0xFFFFFFFF,7,2,16,,0,1,0,{},{},{} -2304,Leather_Jacket_,Jacket,4,200,,200,,2,,1,0xFFFFFFFF,7,2,16,,0,1,0,{},{},{} -2305,Adventure_Suit,Adventurer's Suit,4,1000,,300,,3,,0,0xFFFFFFFF,7,2,16,,0,1,0,{},{},{} -2306,Adventurere's_Suit_,Adventurer's Suit,4,1000,,300,,3,,1,0xFFFFFFFF,7,2,16,,0,1,0,{},{},{} -2307,Mantle,Mantle,4,10000,,600,,4,,0,0xFFFFFFFE,7,2,16,,0,1,0,{},{},{} -2308,Mantle_,Mantle,4,10000,,600,,4,,1,0xFFFFFFFE,7,2,16,,0,1,0,{},{},{} -2309,Coat,Coat,4,22000,,1200,,5,,0,0xFFFFFFFE,7,2,16,,0,1,0,{},{},{} -2310,Coat_,Coat,4,22000,,1200,,5,,1,0xFFFFFFFE,7,2,16,,0,1,0,{},{},{} -2311,Mink_Coat,Mink Coat,4,20,,2300,,6,,1,0xFFFFFFFE,7,2,16,,30,1,0,{},{},{} -2312,Padded_Armor,Padded Armor,4,48000,,2800,,7,,0,0x000654E2,7,2,16,,0,1,0,{},{},{} -2313,Padded_Armor_,Padded Armor,4,48000,,2800,,7,,1,0x000654E2,7,2,16,,0,1,0,{},{},{} -2314,Chain_Mail,Chain Mail,4,65000,,3300,,8,,0,0x000654E2,7,2,16,,0,1,0,{},{},{} -2315,Chain_Mail_,Chain Mail,4,65000,,3300,,8,,1,0x000654E2,7,2,16,,0,1,0,{},{},{} -2316,Plate_Armor,Full Plate,4,80000,,4500,,10,,0,0x00004082,7,2,16,,40,1,0,{},{},{} -2317,Plate_Armor_,Full Plate,4,80000,,4500,,10,,1,0x00004082,7,2,16,,40,1,0,{},{},{} -2318,Clothes_Of_The_Lord,Lord's Clothes,4,20,,2500,,8,,1,0x00040420,7,2,16,,70,1,0,{ bonus bMdef,5; bonus bInt,1; },{},{} -2319,Glittering_Clothes,Glittering Jacket,4,20,,2500,,7,,1,0xFFFFFFFE,7,2,16,,60,1,0,{ bonus bMdef,5; bonus2 bAddEff,Eff_Blind,300; },{},{} -2320,Formal_Suit,Formal Suit,4,20,,300,,5,,1,0xFFFFFFFE,7,2,16,,0,1,0,{},{},{} -2321,Silk_Robe,Silk Robe,4,8000,,400,,3,,0,0x0085C7B6,7,2,16,,0,1,0,{ bonus bMdef,10; },{},{} -2322,Silk_Robe_,Silk Robe,4,8000,,400,,3,,1,0x0085C7B6,7,2,16,,0,1,0,{ bonus bMdef,10; },{},{} -2323,Scapulare,Scapulare,4,6500,,400,,4,,0,0x00008110,7,2,16,,0,1,0,{},{},{} -2324,Scapulare_,Scapulare,4,6500,,400,,4,,1,0x00008110,7,2,16,,0,1,0,{},{},{} -2325,Saint_Robe,Saint's Robe,4,54000,,600,,6,,0,0x00048530,7,2,16,,0,1,0,{ bonus bMdef,5; },{},{} -2326,Saint_Robe_,Saint's Robe,4,54000,,600,,6,,1,0x00048530,7,2,16,,0,1,0,{ bonus bMdef,5; },{},{} -2327,Holy_Robe,Holy Robe,4,20,,1700,,7,,0,0x00008110,7,2,16,,60,1,0,{ bonus bMdef,5; bonus2 bSubRace,RC_Demon,15; bonus2 bSubEle,Ele_Dark,10; },{},{} -2328,Wooden_Mail,Wooden Mail,4,5500,,1000,,4,,0,0x000444A2,7,2,16,,0,1,0,{},{},{} -2329,Wooden_Mail_,Wooden Mail,4,5500,,1000,,4,,1,0x000444A2,7,2,16,,0,1,0,{},{},{} -2330,Tights,Tights,4,71000,,500,,6,,0,0x00080808,7,2,16,,45,1,0,{ bonus bDex,1; },{},{} -2331,Tights_,Tights,4,71000,,500,,6,,1,0x00080808,7,2,16,,45,1,0,{ bonus bDex,1; },{},{} -2332,Silver_Robe,Silver Robe,4,7000,,700,,4,,0,0x00810204,7,2,16,,0,1,0,{},{},{} -2333,Silver_Robe_,Silver Robe,4,7000,,700,,4,,1,0x00810204,7,2,16,,0,1,0,{},{},{} -2334,Mage_Coat,Mage Coat,4,20,,600,,5,,0,0x00810204,7,2,16,,50,1,0,{ bonus bMdef,5; bonus bInt,1; },{},{} -2335,Thief_Clothes,Thief Clothes,4,74000,,100,,6,,0,0x02021040,7,2,16,,0,1,0,{ bonus bAgi,1; },{},{} -2336,Thief_Clothes_,Thief Clothes,4,74000,,100,,6,,1,0x02021040,7,2,16,,0,1,0,{ bonus bAgi,1; },{},{} -2337,Ninja_Suit,Ninja Suit,4,20,,1500,,7,,0,0x02021040,7,2,16,,50,1,0,{ bonus bAgi,1; bonus bMdef,3; },{},{} -2338,Wedding_Dress,Wedding Dress,4,43000,,500,,0,,0,0xFFFFFFFE,7,2,16,,0,1,0,{ bonus bMdef,15; },{},{} -2339,G_Strings,Pantie,4,1000,,100,,4,,0,0xFFFFFFFF,7,2,16,,0,1,0,{},{},{} -2340,Novice_Breast,Novice Breastplate,4,89000,,500,,4,,1,0x00000001,7,2,16,,10,1,0,{},{},{} -2341,Full_Plate_Armor,Legion Plate Armor,4,94000,,5500,,11,,0,0x00004000,7,2,16,,70,1,0,{},{},{} -2342,Full_Plate_Armor_,Legion Plate Armor,4,102500,,5500,,11,,1,0x00004000,7,2,16,,70,1,0,{},{},{} -2343,Robe_Of_Casting,Robe of Cast,4,124800,,1100,,5,,0,0x00810200,7,2,16,,75,1,0,{ bonus bCastrate,-3; bonus bMdef,4; },{},{} -2344,Flame_Sprits_Armor,Lucius's Fierce Armor of Volcano,4,136000,,2200,,4,,0,0x000444A2,7,2,16,,45,1,0,{ bonus bDefEle,Ele_Fire; },{},{} -2345,Flame_Sprits_Armor_,Lucius's Fierce Armor of Volcano,4,136000,,2200,,4,,1,0xFFFFFFFE,7,2,16,,45,1,0,{ bonus bDefEle,Ele_Fire; },{},{} -2346,Water_Sprits_Armor,Saphien's Armor of Ocean,4,136000,,2200,,4,,0,0x000444A2,7,2,16,,45,1,0,{ bonus bDefEle,Ele_Water; },{},{} -2347,Water_Sprits_Armor_,Saphien's Armor of Ocean,4,136000,,2200,,4,,1,0xFFFFFFFE,7,2,16,,45,1,0,{ bonus bDefEle,Ele_Water; },{},{} -2348,Wind_Sprits_Armor,Aebecee's Raging Typhoon Armor,4,136000,,2200,,4,,0,0x000444A2,7,2,16,,45,1,0,{ bonus bDefEle,Ele_Wind; },{},{} -2349,Wind_Sprits_Armor_,Aebecee's Raging Typhoon Armor,4,136000,,2200,,4,,1,0xFFFFFFFE,7,2,16,,45,1,0,{ bonus bDefEle,Ele_Wind; },{},{} -2350,Earth_Sprits_Armor,Claytos Cracking Earth Armor,4,136000,,2200,,4,,0,0x000444A2,7,2,16,,45,1,0,{ bonus bDefEle,Ele_Earth; },{},{} -2351,Earth_Sprits_Armor_,Claytos Cracking Earth Armor,4,136000,,2200,,4,,1,0xFFFFFFFE,7,2,16,,45,1,0,{ bonus bDefEle,Ele_Earth; },{},{} -2352,Novice_Plate,Tattered Novice Ninja Suit,4,1,,1,,4,,0,0x00000001,7,2,16,,0,0,0,{},{},{} -2353,Odin's_Blessing,Odin's Blessing,4,30000,,2500,,6,,1,0xFFFFFFFE,7,2,16,,65,1,0,{},{},{} -2354,Goibne's_Armor,Goibne's Armor,4,50000,,3500,,7,,0,0xFFFFFFFE,7,2,16,,54,1,0,{ bonus bVit,2; bonus bMaxHPrate,10; },{},{} -2355,Angel's_Protection,Angelic Protection,4,10000,,600,,4,,1,0x00000001,7,2,16,,40,1,0,{ bonus bMdef,20; },{},{} -2356,Vestment_Of_Grace,Blessed Holy Robe,4,20,,2500,,5,,1,0x00008100,7,2,16,,70,1,0,{ bonus bMdef,5; bonus2 bResEff,Eff_Blind,8000; },{},{} -2357,Valkyrie_Armor,Valkyrian Armor,4,0,,2800,,6,,1,0xFFFFFFFE,2,2,16,,1,1,0,{ bonus bAllStats,1; bonus bUnbreakableArmor; 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,7,2,16,,1,0,0,{ bonus bLuk,4; },{},{} -2359,Ninja_Suit_,Ninja Suit,4,20,,1500,,7,,1,0x02021040,7,2,16,,50,1,0,{ bonus bAgi,1; bonus bMdef,3; },{},{} -2360,Robe_Of_Casting_,Robe of Cast,4,124800,,1100,,5,,1,0x00810200,7,2,16,,75,1,0,{ bonus bCastrate,-3; bonus bMdef,4; },{},{} -//2361,Blue_Aodai,Blue Robe,4,20,,500,,0,,0,0xFFFFFFFE,7,2,16,,1,1,0,{ bonus bAllStats,3; bonus bMdef,5; },{},{} -//2362,Red_Aodai,Red Robe,4,20,,500,,0,,0,0xFFFFFFFE,7,2,16,,1,1,0,{ bonus bAllStats,3; bonus bMdef,5; },{},{} -//2363,White_Aodai,White Robe,4,20,,500,,0,,0,0x00000001,7,2,16,,1,1,0,{ bonus bAllStats,3; bonus bMdef,5; },{},{} -2364,Meteo_Plate_Armor,Meteo Plate Armor,4,20,,3000,,10,,1,0x000444A2,2,2,16,,55,1,0,{ bonus2 bResEff,Eff_Stun,3000; bonus2 bResEff,Eff_Freeze,3000; },{},{} -2365,Orleans_Gown,Orleans's Gown,4,20,,300,,2,,1,0xFFFFFFFE,2,2,16,,55,1,0,{ bonus bCastrate,15; bonus bNoCastCancel; },{},{} -2366,Divine_Cloth,Divine Cloth,4,20,,1500,,6,,1,0xFFFFFFFE,2,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,,5,,1,0x00000800,2,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,7,2,16,,0,0,0,{ bonus bMdef,4; },{},{} -2369,Freyja_Overcoat,Freyja Overcoat,4,0,,500,,12,,0,0xFFFFFFFE,7,2,16,,0,0,0,{ bonus bUnbreakableArmor; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; },{},{} -2370,Used_Mage_Coat,Used Mage Coat,4,0,,0,,15,,0,0xFFFFFFFF,7,2,16,,0,0,0,{ bonus bMaxHP,300; bonus bMaxSP,30; bonus bBaseAtk,10; bonus bAGI,1; },{},{} -2371,G_Strings_,Pantie,4,1000,,100,,4,,1,0xFFFFFFFF,7,2,16,,0,1,0,{},{},{} -2372,Mage_Coat_,Mage Coat,4,20,,600,,5,,1,0x00810204,7,2,16,,50,1,0,{ bonus bMdef,5; bonus bInt,1; },{},{} -2373,Holy_Robe_,Holy Robe,4,20,,1700,,7,,1,0x00008110,7,2,16,,60,1,0,{ bonus bMdef,5; bonus2 bSubRace,RC_Demon,15; bonus2 bSubEle,Ele_Dark,10; },{},{} -2374,Diabolus_Robe,Diabolus Robe,4,20,,300,,6,,1,0x00098B1C,2,2,16,,55,1,0,{ bonus bMaxSP,150; bonus bMdef,5; bonus bHealPower,6; bonus bDelayRate,-10; },{},{} -2375,Diabolus_Armor,Diabolus Armor,4,20,,600,,7,,1,0x000654E2,2,2,16,,55,1,0,{ bonus bStr,2; bonus bDex,1; bonus bMaxHP,150; bonus2 bResEff,Eff_Stun,500; bonus2 bResEff,Eff_Stone,500; },{},{} -2376,Assaulter_Plate,Assaulter Plate,4,10,,0,,7,,1,0x006444A2,7,2,16,,80,1,0,{ bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; },{},{} -2377,Elite_Engineer_Armor,Elite Engineer Armor,4,10,,0,,7,,1,0x00040420,7,2,16,,80,1,0,{ bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; },{},{} -2378,Assassin_Robe,Assassin Robe,4,10,,0,,7,,1,0x02021040,7,2,16,,80,1,0,{ bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; },{},{} -2379,Warlock_Battle_Robe,Warlock's Battle Robe,4,10,,0,,3,,1,0x00810204,7,2,16,,80,1,0,{ bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; },{},{} -2380,Medic_Robe,Medic's Robe,4,10,,0,,3,,1,0x00008110,7,2,16,,80,1,0,{ bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; },{},{} -2381,Elite_Archer_Suit,Elite Archer Suit,4,10,,0,,3,,1,0x00080808,7,2,16,,80,1,0,{ bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; },{},{} -2382,Elite_Shooter_Suit,Elite Shooter Suit,4,10,,0,,3,,1,0x41000000,7,2,16,,80,1,0,{ bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; },{},{} -2383,Brynhild,Brynhild,4,20,,400,,10,,0,0xFFFFFFFF,7,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; bonus bNoKnockback; },{},{} -2384,Spritual_Tunic,Spiritual Tunic,4,20,,0,,10,,0,0xFFFFFFFF,7,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,7,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,,5,,0,0x00CFFF80,2,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; },{},{} -2387,Sprint_Mail,Sprint Mail,4,20,,1000,,3,,1,0x00CFFF80,2,2,16,,70,1,0,{ bonus bVit,1; bonus bHPrecovRate,5; bonus bAddItemHealRate,3; bonus2 bSkillHeal,"AL_HEAL",3; },{},{} -2388,Kandura,Kandura,4,20,,300,,4,,1,0x00001000,2,2,16,,70,1,0,{ bonus bAgi,1; bonus bFlee,5; bonus bAspdRate,2; },{},{} -2389,Armor_Of_Naga,Armor of Naga,4,20,,1000,,5,,1,0x00CFFF80,2,2,16,,70,1,0,{ bonus bMdef,2; autobonus "{ bonus bBaseAtk,20; }",10,10000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; },{},{} -2390,Improved_Tights,Improved Tights,4,20,,400,,6,,1,0x00080808,2,2,16,,75,1,0,{ bonus bMdef,2; bonus bFlee2,3; },{},{} -2391,Life_Link,Life Link,4,20,,3500,,9,,1,0x00004082,2,2,16,,82,1,0,{ bonus bVit,2; bonus bMdef,5; bonus bHPrecovRate,50; },{},{} -2392,Old_Pant,Old Green Pantie,4,0,,0,,10,,0,0xFFFFFFFF,7,2,16,,0,0,0,{ bonus bStr,2; bonus bVit,2; bonus bMaxHP,200; bonus3 bAutoSpellWhenHit,"MO_CALLSPIRITS",5,20; bonus bMdef,1; },{},{} -2393,N_Adventurer's_Suit,Novice Adventurer's Suit,4,0,,0,,8,,1,0xFFFFFFFF,7,2,16,,0,0,0,{},{},{} -2394,Krieger_Suit1,Glorious Suit,4,20,,0,,0,,0,0xFFFFFFFE,7,2,16,,81,1,0,{ bonus bMaxHPRate,20; bonus2 bSubRace,RC_DemiHuman,7; bonus2 bSubRace,RC_Player_Human,7; },{},{} -2395,Krieger_Suit2,Glorious Popularized Suit,4,20,,0,,0,,0,0xFFFFFFFE,7,2,16,,61,1,0,{ bonus bMaxHP,600; bonus bSPrecovRate,10; },{},{} -2396,Krieger_Suit3,Glorious Mass-Production Suit,4,20,,0,,0,,0,0xFFFFFFFE,7,2,16,,0,1,0,{ bonus bMaxHP,500; },{},{} -2397,Incredible_Coat,Incredible Event Resignation Coat,4,10,,900,,2,,0,0xFFFFFFFE,7,2,16,,0,1,0,{},{},{} -2398,Sniping_Suit_M,Sniping Suit,4,20,,750,,5,,1,0x00000800,2,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,,3,,1,0xFFFFFFFE,2,2,16,,0,1,0,{ bonus bMdef,3; },{},{} -// Footgears -//=================================================================== -2401,Sandals,Sandals,4,400,,200,,1,,0,0xFFFFFFFF,7,2,64,,0,1,0,{},{},{} -2402,Sandals_,Sandals,4,400,,200,,1,,1,0xFFFFFFFF,7,2,64,,0,1,0,{},{},{} -2403,Shoes,Shoes,4,3500,,400,,2,,0,0xFFFFFFFE,7,2,64,,0,1,0,{},{},{} -2404,Shoes_,Shoes,4,3500,,400,,2,,1,0xFFFFFFFE,7,2,64,,0,1,0,{},{},{} -2405,Boots,Boots,4,18000,,600,,4,,0,0x016E5CEA,7,2,64,,0,1,0,{},{},{} -2406,Boots_,Boots,4,18000,,600,,4,,1,0x016E5CEA,7,2,64,,0,1,0,{},{},{} -2407,Chrystal_Pumps,Crystal Pumps,4,20,,100,,0,,0,0xFFFFFFFE,7,0,64,,0,1,0,{ bonus bMdef,10; bonus bLuk,5; },{},{} -2408,Cuffs,Shackles,4,5000,,3000,,3,,0,0xFFFFFFFF,7,2,64,,0,1,0,{},{},{} -2409,Spiky_Heel,High Heels,4,8500,,600,,2,,0,0xFFFFFFFE,7,2,64,,0,1,0,{ bonus bMdef,5; },{},{} -2410,Sleipnir,Sleipnir,4,20,,3500,,5,,0,0xFFFFFFFF,7,2,64,,94,0,0,{ bonus bMdef,10; bonus bMaxHPrate,20; bonus bMaxSPrate,20; bonus bSPrecovRate,15; bonus bSpeedRate,25; },{},{} -2411,Grave,Greaves,4,48000,,750,,5,,0,0x00004080,7,2,64,,65,1,0,{},{},{} -2412,Grave_,Greaves,4,54000,,750,,5,,1,0x00004080,7,2,64,,65,1,0,{},{},{} -2413,Safty_Boots,Safety Boots,4,34000,,350,,6,,0,0x00004082,7,2,64,,30,0,0,{},{},{} -2414,Novice_Boots,Novice Slippers,4,1,,1,,2,,0,0x00000001,7,2,64,,0,0,0,{},{},{} -2415,Slipper,Bunny Slipper,4,34000,,300,,3,,1,0xFFFFFFFE,7,0,64,,30,1,0,{ bonus bLuk,3; bonus bMdef,3; },{},{} -2416,Novice_Shoes,Novice Shoes,4,35000,,500,,2,,1,0x00000001,7,2,64,,40,1,0,{ bonus bMaxHPrate,5; },{},{} -2417,Fricco_Shoes,Fricco's Shoes,4,30000,,500,,3,,0,0xFFFFFFFE,7,2,64,,65,1,0,{ bonus bAgi,2; bonus2 bAddItemGroupHealRate,IG_Potion,20; },{},{} -2418,Vidar's_Boots,Vidar's Boots,4,30000,,650,,4,,0,0xFFFFFFFE,7,2,64,,65,1,0,{ bonus bMaxHPrate,9; bonus bMaxSPrate,9; },{},{} -2419,Goibne's_Combat_Boots,Goibne's Greaves,4,30000,,700,,4,,0,0xFFFFFFFE,7,2,64,,54,1,0,{ bonus bMdef,3; bonus bMaxHPrate,5; bonus bMaxSPrate,5; },{},{} -2420,Angel's_Arrival,Angel's Reincarnation,4,10000,,300,,2,,1,0x00000001,7,2,64,,25,1,0,{ bonus bMaxHP,100; },{},{} -2421,Valkyrie_Shoes,Valkyrian Shoes,4,0,,500,,4,,1,0xFFFFFFFE,2,2,64,,1,1,0,{ bonus bUnbreakableShoes; 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,,2,,1,0x00818314,7,2,64,,40,1,0,{ bonus bMdef,10; },{},{} -2423,Variant_Shoes,Variant Shoes,4,20,,500,,3,,0,0xFFFFFFFE,2,2,64,,85,1,0,{ bonus bMaxHPRate,20-getrefine(); bonus bMaxSPRate,20-getrefine(); bonus bDef,getrefine()/2; },{},{} -2424,Tidal_Shoes,Tidal Shoes,4,20,,300,,3,,1,0xFFFFFFFE,2,2,64,,55,1,0,{ bonus2 bSubEle,Ele_Water,5; },{},{} -2425,Black_Leather_Boots,Black Leather Boots,4,20,,500,,4,,0,0xFFFFFFFE,2,2,64,,55,1,0,{ bonus bAgi,1; if(getrefine()>=9) bonus bAgi,2; },{},{} -2426,Shadow_Walk,Shadow Walk,4,20,,2000,,0,,0,0xFFFFFFFE,2,2,64,,75,1,0,{ bonus bMdef,10; if(getskilllv("AS_CLOAKING")<2){ bonus5 bAutoSpellWhenHit,"AS_CLOAKING",2,100,BF_MAGIC,0; } else bonus5 bAutoSpellWhenHit,"AS_CLOAKING",getskilllv("AS_CLOAKING"),100,BF_MAGIC,0; },{},{} -2427,Golden_Shoes,Golden Shoes,4,20,,300,,4,,0,0xFFFFFFFF,7,2,64,,0,0,0,{ bonus bMdef,4; },{},{} -2428,Freyja_Boots,Freyja Boots,4,0,,300,,10,,0,0xFFFFFFFE,7,2,64,,0,0,0,{ bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; },{},{} -2429,Iron_Boots01,Iron Boots,4,0,,1500,,5,,0,0x000E5CEA,7,2,64,,0,1,0,{},{},{} -2430,Iron_Boots02,Iron Boots,4,0,,800,,5,,0,0xFFFFFFFF,7,2,64,,0,1,0,{},{},{} -2431,Valley_Shoes,Valley Shoes,4,20,,0,,10,,0,0xFFFFFFFF,7,2,64,,0,0,0,{ bonus bMaxHPRate,7; bonus bMaxSPRate,7; },{},{} -2432,Spiky_Heel_,High Heels,4,8500,,600,,2,,1,0xFFFFFFFE,7,2,64,,0,1,0,{ bonus bMdef,5; },{},{} -2433,Diabolus_Boots,Diabolus Boots,4,20,,250,,4,,1,0x00CFFF80,2,2,64,,0,1,0,{ bonus bMaxHP,(BaseLevel*10); },{},{} -2434,Black_Leather_Boots_,Black Leather Boots,4,20,,500,,4,,1,0xFFFFFFFE,2,2,64,,55,1,0,{ bonus bAgi,1; if(getrefine()>=9) bonus bAgi,2; },{},{} -2435,Battle_Greave,Battle Greaves,4,10,,0,,4,,1,0x026654E2,7,2,64,,80,1,0,{ bonus bMaxHP,100; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; },{},{} -2436,Combat_Boots,Combat Boots,4,10,,0,,3,,1,0x00898B1C,7,2,64,,80,1,0,{ bonus bMaxHP,100; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; },{},{} -2437,Battle_Boots,Battle Boots,4,10,,0,,3,,1,0x41000000,7,2,64,,80,1,0,{ bonus bMaxHP,100; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; },{},{} -2438,Paw_Of_Cat,Paw Of Cat,4,10,,300,,0,,0,0xFFFFFFFF,7,2,64,,80,1,0,{ bonus bFlee,5; bonus bAgi,1; },{},{} -2439,Refresh_Shoes,Refresh Shoes,4,20,,0,,9,,0,0xFFFFFFFF,7,2,64,,0,0,0,{ bonus bMaxHPRate,17; bonus bMaxSPRate,8; bonus2 bHPRegenRate,20,10000; bonus2 bSPRegenRate,3,10000; },{},{} -2440,Sprint_Shoes,Sprint Shoes,4,20,,300,,2,,1,0x00CFFF80,2,2,64,,70,1,0,{ bonus bAgi,1; bonus bSPrecovRate,5; },{},{} -2441,Beach_Sandal,Beach Sandals,4,20,,200,,0,,0,0xFFFFFFFF,7,2,64,,0,1,0,{ bonus bStr,1; bonus bInt,1; bonus bAgi,1; bonus2 bSubEle,Ele_Fire,10; },{},{} -2442,Boots_Perforated,Red Stocking Boots,4,0,,0,,7,,0,0xFFFFFFFF,7,2,64,,0,0,0,{ bonus bLuk,2; bonus bHPrecovRate,10; bonus bSPrecovRate,10; bonus3 bAutoSpellWhenHit,"WZ_QUAGMIRE",3,20; bonus bMdef,1; },{},{} -2443,Fish_Shoes,Fisher's Boots,4,10,,250,,0,,0,0xFFFFFFFF,7,2,64,,0,0,0,{},{},{} -2444,Krieger_Shoes1,Glorious Shoes,4,20,,0,,0,,0,0xFFFFFFFE,7,2,64,,81,1,0,{ bonus bMaxHPRate,10; bonus2 bSubRace,RC_DemiHuman,4; bonus2 bSubRace,RC_Player_Human,4; bonus3 bAutoSpellWhenHit,"AL_INCAGI",1,10; },{},{} -2445,Krieger_Shoes2,Glorious Popularized Shoes,4,20,,0,,0,,0,0xFFFFFFFE,7,2,64,,61,1,0,{ bonus bMaxHPRate,5; bonus bMaxSPRate,5; },{},{} -2446,Krieger_Shoes3,Glorious Mass-Production Shoes,4,20,,0,,0,,0,0xFFFFFFFE,7,2,64,,0,1,0,{ bonus bMaxHPRate,5; },{},{} -2447,Military_Boots,Army Boots,4,0,,1000,,5,,0,0xFFFFFFFE,7,2,64,,0,1,0,{},{},{} -2448,Air_Boss,Air Boss,4,0,,500,,2,,0,0xFFFFFFFF,7,2,64,,0,1,0,{ bonus bAgi,1; },{},{} -2449,Variant_Shoes_M,Variant Shoes,4,20,,500,,3,,0,0xFFFFFFFE,2,2,64,,85,1,0,{ bonus bMaxHPRate,20-getrefine(); bonus bMaxSPRate,20-getrefine(); bonus bDef,getrefine()/2; },{},{} -2450,Vital_Tree_Shoes,Vital Tree Shoes,4,20,,500,,4,,0,0xFFFFFFFE,2,2,64,,60,1,0,{ bonus bMaxHPrate,10; bonus2 bHPRegenRate,30,10000; bonus bHealpower2,5; bonus bAddItemHealRate,5; bonus bMdef,3; bonus bVit,2; },{},{} -// Garments -//=================================================================== -2501,Hood,Hood,4,1000,,200,,1,,0,0xFFFFFFFF,7,2,4,,0,1,0,{},{},{} -2502,Hood_,Hood,4,1000,,200,,1,,1,0xFFFFFFFF,7,2,4,,0,1,0,{},{},{} -2503,Muffler,Muffler,4,5000,,400,,2,,0,0xFFFFFFFE,7,2,4,,0,1,0,{},{},{} -2504,Muffler_,Muffler,4,5000,,400,,2,,1,0xFFFFFFFE,7,2,4,,0,1,0,{},{},{} -2505,Manteau,Manteau,4,32000,,600,,4,,0,0x006654E2,7,2,4,,0,1,0,{},{},{} -2506,Manteau_,Manteau,4,32000,,600,,4,,1,0x006654E2,7,2,4,,0,1,0,{},{},{} -2507,Cape_Of_Ancient_Lord,Ancient Cape,4,82000,,600,,2,,0,0xFFFFFFFE,7,2,4,,40,1,0,{ bonus bAgi,1; },{},{} -2508,Ragamuffin_Cape,Ragamuffin Manteau,4,56000,,500,,1,,0,0xFFFFFFFE,7,2,4,,0,1,0,{ bonus bUnbreakableGarment; bonus bMdef,10; },{},{} -2509,Clack_Of_Servival,Survivor's Manteau,4,20000,,550,,0,,0,0x00810204,7,2,4,,75,1,0,{ bonus bMdef,5; bonus bVit,10; },{},{} -2510,Novice_Hood,Somber Novice Hood,4,1,,1,,2,,0,0x00000001,7,2,4,,0,0,0,{ bonus2 bSubEle,Ele_Neutral,20; },{},{} -2511,Skeleton's_Cape,Skeleton Manteau,4,5000,,700,,1,,0,0xFFFFFFFE,7,2,4,,75,1,0,{ bonus bStr,2; bonus bInt,-3; bonus bDex,2; bonus bVit,-3; bonus bLuk,2; bonus bAgi,-4; },{},{} -2512,Novice_Manteau,Novice Manteau,4,50000,,500,,2,,1,0x00000001,7,2,4,,40,1,0,{ bonus2 bSubEle,Ele_Neutral,10; },{},{} -2513,Celestial_Robe,Heavenly Maiden Robe,4,20,,500,,3,,1,0xFFFFFFFE,7,2,4,,80,1,0,{},{},{} -2514,Pauldron,Pauldron,4,20,,800,,5,,1,0x000654E2,7,2,4,,80,1,0,{},{},{} -2515,Wing_Of_Eagle,Eagle Wing,4,20000,,300,,1,,1,0x00810204,7,2,4,,85,1,0,{},{},{} -2516,Falcon_Robe,Falcon Muffler,4,30000,,400,,3,,0,0xFFFFFFFE,7,2,4,,65,1,0,{ bonus bFlee,15; bonus bFlee2,5; },{},{} -2517,Vali's_Manteau,Vali's Manteau,4,30000,,600,,4,,0,0xFFFFFFFE,7,2,4,,65,1,0,{ bonus2 bSubEle,Ele_Neutral,15; },{},{} -2518,Morpheus's_Shawl,Morpheus's Shawl,4,30000,,600,,3,,0,0xFFFFFFFE,7,2,4,,33,1,0,{ bonus bMaxSPrate,10; bonus bMdef,3; },{},{} -2519,Morrigane's_Manteau,Morrigane's Manteau,4,30000,,600,,3,,0,0xFFFFFFFE,7,2,4,,61,1,0,{ bonus bLuk,2; bonus bFlee2,8; },{},{} -2520,Goibne's_Shoulder_Arms,Goibne's Spaulders,4,30000,,700,,3,,0,0xFFFFFFFE,7,2,4,,54,1,0,{ bonus bLongAtkDef,10; bonus bMdef,2; bonus bVit,1; },{},{} -2521,Angel's_Warmth,Angelic Cardigan,4,10000,,400,,2,,1,0x00000001,7,2,4,,20,1,0,{ bonus bHPrecovRate,5; },{},{} -2522,Undershirt,Undershirt,4,20000,,150,,2,,0,0xFFFFFFFF,7,2,4,,1,1,0,{ bonus bMdef,1; },{},{} -2523,Undershirt_,Undershirt,4,20000,,150,,2,,1,0xFFFFFFFF,7,2,4,,1,1,0,{ bonus bMdef,1; },{},{} -2524,Valkyrie_Manteau,Valkyrian Manteau,4,0,,500,,3,,1,0xFFFFFFFE,2,2,4,,1,1,0,{ bonus bUnbreakableGarment; 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,,2,,1,0xFFFFFFFE,7,2,4,,40,1,0,{ bonus bAgi,1; },{},{} -2526,Dragon_Scale_Coat,Coat of Dragon Scale,4,20,,10,,4,,0,0xFFFFFFFF,7,2,4,,50,1,0,{},{},{} -2527,Dragon_Breath,Dragon Breath,4,20,,600,,4,,1,0xFFFFFFFE,2,2,4,,48,1,0,{ bonus2 bSubRace,RC_Dragon,15; },{},{} -2528,Wool_Scarf,Wool Scarf,4,20,,500,,3,,1,0xFFFFFFFE,2,2,4,,55,1,0,{ bonus bMdef,4; },{},{} -2529,Rider_Insignia,Rider Insignia,4,20,,500,,4,,0,0xFFFFFFFE,2,2,4,,55,1,0,{ bonus bAgi,2; },{},{} -2530,Rider_Insignia_,Rider Insignia,4,20,,500,,4,,1,0xFFFFFFFE,2,2,4,,55,1,0,{ bonus bAgi,2; },{},{} -2531,Ulfhedinn,Ulfhedinn,4,20,,700,,3,,1,0x000654E2,2,2,4,,70,1,0,{ bonus3 bAutoSpellWhenHit,"NPC_STONESKIN",6,20; },{},{} -2532,Mithril_Magic_Cape,Mithril Magic Cape,4,20,,400,,3,,1,0x00098B1C,2,2,4,,70,1,0,{ bonus bMdef,3; bonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,200,BF_MAGIC,0; },{},{} -2533,Freyja_Cape,Freyja Cape,4,0,,200,,10,,0,0xFFFFFFFE,7,2,4,,0,0,0,{ bonus2 bSubRace,RC_DemiHuman,15; bonus2 bSubRace,RC_Player_Human,15; },{},{} -2534,Ruffler,Ruffler,4,20,,0,,10,,0,0xFFFFFFFF,7,2,4,,0,0,0,{ bonus2 bSubEle,Ele_Neutral,17; bonus bFlee,17; },{},{} -2535,Cloak_Of_Survival_C,Cloak Of Survival,4,1,,0,,5,,0,0x00810204,7,2,4,,0,0,0,{ bonus bVit,10; bonus bMdef,10; },{},{} -2536,Skin_Of_Ventus,Skin of Ventus,4,20,,250,,2,,1,0xFFFFFFFE,7,2,4,,60,1,0,{ bonus bMdef,2; bonus bMaxHP,200; bonus bFlee,10; },{},{} -2537,Diabolus_Manteau,Diabolus Manteau,4,20,,250,,5,,1,0x00CFFF80,2,2,4,,0,1,0,{ bonus2 bSubEle,Ele_Neutral,5; bonus bMaxHP,100; bonus2 bAddDamageClass,1916,10; bonus2 bAddDamageClass,1917,10; },{},{} -2538,Commander_Manteau,Captain's Manteau,4,10,,0,,4,,1,0x026654E2,7,2,4,,80,1,0,{ bonus bMaxHP,50; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; },{},{} -2539,Commander_Manteau_,Commander's Manteau,4,10,,0,,3,,1,0x00898B1C,7,2,4,,80,1,0,{ bonus bMaxHP,50; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; },{},{} -2540,Sheriff_Manteau,Sheriff's Manteau,4,10,,0,,3,,1,0x41000000,7,2,4,,80,1,0,{ bonus bMaxHP,50; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; },{},{} -2541,Asprika,Asprika,4,20,,400,,5,,0,0xFFFFFFFF,7,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; },{},{} -2542,Flame_Manteau,Flame Manteau of Naght Sieger,4,20,,70,,4,,1,0xFFFFFFFE,2,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,7,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,,3,,1,0x00CFDF80,2,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; bonus2 bSubRace,RC_Player_Doram,5; },{},{} -2545,Musika,Musika,4,20,,500,,2,,1,0x00008100,2,2,4,,70,1,0,{ bonus bMdef,3; bonus3 bAutoSpellwhenhit,"AL_HEAL",max(1,getskilllv("AL_HEAL")),20; },{},{} -2546,Beach_Manteau,Beach Manteau,4,20,,600,,0,,1,0xFFFFFFFF,7,2,4,,0,1,0,{ bonus bStr,1; bonus bInt,1; bonus2 bSubEle,Ele_Fire,10; },{},{} -2547,Cheap_Running_Shirts,Cheap Undershirt,4,0,,0,,8,,0,0xFFFFFFFF,7,2,4,,0,1,0,{ bonus bDex,2; bonus bFlee,10; bonus2 bSubEle,Ele_Neutral,10; bonus bMdef,1; },{},{} -2548,Muffler_C,Neo Muffler,4,0,,0,,5,,0,0xFFFFFFFE,2,2,4,,95,0,0,{ bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus bMaxHPrate,10; bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Fire,5; bonus2 bSubEle,Ele_Holy,5; bonus2 bSubEle,Ele_Dark,5; },{},{} -2549,Krieger_Muffler1,Glorious Muffler,4,20,,0,,0,,0,0xFFFFFFFE,7,2,4,,81,1,0,{ bonus bMaxHPRate,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; },{},{} -2550,Fisher's_Muffler,Fisher's Muffler,4,20,,200,,0,,0,0xFFFFFFFF,7,2,4,,0,1,0,{},{},{} -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); 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; },{},{} -2602,Earring,Earring,4,30000,,100,,0,,0,0xFFFFFFFE,7,2,136,,20,0,0,{ bonus bInt,2; },{},{} -2603,Necklace,Necklace,4,30000,,100,,0,,0,0xFFFFFFFE,7,2,136,,20,0,0,{ bonus bVit,2; },{},{} -2604,Glove,Glove,4,30000,,100,,0,,0,0xFFFFFFFE,7,2,136,,20,0,0,{ bonus bDex,2; },{},{} -2605,Brooch,Brooch,4,30000,,100,,0,,0,0xFFFFFFFE,7,2,136,,20,0,0,{ bonus bAgi,2; },{},{} -2607,Clip,Clip,4,30000,,100,,0,,1,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bMaxSP,10; },{},{} -2608,Rosary,Rosary,4,15000,,100,,0,,0,0xFFFFFFFE,7,2,136,,20,0,0,{ bonus bMdef,5; bonus bLuk,2; },{},{} -2609,Skul_Ring,Skull Ring,4,10000,,100,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{},{},{} -2610,Gold_Ring,Gold Ring,4,30000,,100,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{},{},{} -2611,Silver_Ring,Silver Ring,4,20000,,100,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{},{},{} -2612,Flower_Ring,Flower Ring,4,1500,,100,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{},{},{} -2613,Diamond_Ring,Diamond Ring,4,45000,,100,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{},{},{} -2614,An_Eye_Of_Dullahan,Eye of Dullahan,4,90000,,100,,0,,0,0xFFFFFFFE,7,2,136,,50,0,0,{ bonus2 bResEff,Eff_Poison,10000; bonus2 bSubRace,RC_Undead,4; bonus2 bSubRace,RC_Demon,4; },{},{} -2615,Safety_Ring,Safety Ring,4,75000,,100,,3,,0,0xFFFFFFFE,7,2,136,,40,0,0,{ bonus bMdef,3; },{},{} -2616,Critical_Ring,Critical Ring,4,75000,,100,,0,,0,0xFFFFFFFE,7,2,136,,40,0,0,{ bonus bCritical,5; },{},{} -2617,Mitten_Of_Presbyter,Celebrant's Mitten,4,2,,100,,1,,0,0xFFFFFFFE,7,2,136,,35,0,0,{ bonus bInt,1; },{},{} -2618,Matyr's_Flea_Guard,Matyr's Leash,4,2,,100,,1,,0,0xFFFFFFFE,7,2,136,,35,0,0,{ bonus bAgi,1; },{},{} -2619,Thimble_Of_Archer,Bow Thimble,4,10000,,100,,0,,0,0x00080808,7,2,136,,65,0,0,{ bonus bLongAtkRate,3; },{},{} -2620,Ring_Of_Rogue,Rogue's Treasure,4,10000,,100,,0,,0,0x02021040,7,2,136,,70,0,0,{ if(readparam(bStr)>=90){ bonus bHit,10; bonus bFlee,10; } if(readparam(bAgi)>=90){ bonus bBaseAtk,10; bonus bCritical,10; } },{},{} -2621,Ring_,Ring,4,30000,,200,,0,,1,0xFFFFFFFE,7,2,136,,90,0,0,{ bonus bStr,1; },{},{} -2622,Earring_,Earring,4,30000,,200,,0,,1,0xFFFFFFFE,7,2,136,,90,0,0,{ bonus bInt,1; },{},{} -2623,Necklace_,Necklace,4,30000,,200,,0,,1,0xFFFFFFFE,7,2,136,,90,0,0,{ bonus bVit,1; },{},{} -2624,Glove_,Glove,4,30000,,200,,0,,1,0xFFFFFFFE,7,2,136,,90,0,0,{ bonus bDex,1; },{},{} -2625,Brooch_,Brooch,4,30000,,200,,0,,1,0xFFFFFFFE,7,2,136,,90,0,0,{ bonus bAgi,1; },{},{} -2626,Rosary_,Rosary,4,15000,,200,,0,,1,0xFFFFFFFE,7,2,136,,90,0,0,{ bonus bMdef,3; bonus bLuk,1; },{},{} -2627,Belt,Belt,4,20000,,1200,,0,,1,0xFFFFFFFF,7,2,136,,25,0,0,{},{},{} -2628,Novice_Armlet,Novice Armlet,4,400,,200,,0,,1,0x00000001,7,2,136,,1,0,0,{},{},{} -2629,Magingiorde,Megingjard,4,20,,8000,,2,,0,0xFFFFFFFF,7,2,136,,94,0,0,{ bonus bStr,40; bonus bMdef,7; },{},{} -2630,Brysinggamen,Brisingamen,4,20,,1500,,1,,0,0xFFFFFFFF,7,2,136,,94,0,0,{ bonus bStr,6; bonus bAgi,6; bonus bVit,6; bonus bInt,6; bonus bLuk,10; bonus bMdef,5; },{},{} -2631,First_Age_Ring,Celebration Ring,4,1,,10,,0,,0,0xFFFFFFFF,7,2,136,,1,0,0,{},{},{} -//2632,Korean_Trinket,Korean Trinket,4,125000,,100,,1,,0,0xFFFFFFFE,7,2,136,,65,0,0,{ bonus bVit,1; bonus bDex,1; bonus bLuk,1; },{},{} -//2633,Jade_Ring,Jade Ring,4,204000,,100,,0,,0,0xFFFFFFFE,7,2,136,,80,0,0,{ bonus bStr,2; bonus bInt,1; },{},{} -2634,Bridegroom_Ring,Wedding Ring,4,0,,0,,0,,0,0xFFFFFFFF,7,1,136,,0,0,0,{ skill "WE_MALE",1; skill "WE_FEMALE",1; skill "WE_CALLPARTNER",1; },{},{} -2635,Bride_Ring,Wedding Ring,4,0,,0,,0,,0,0xFFFFFFFF,7,0,136,,0,0,0,{ skill "WE_MALE",1; skill "WE_FEMALE",1; skill "WE_CALLPARTNER",1; },{},{} -2636,Gold_Ring_,Gold Christmas Ring,4,30000,,100,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bLuk,1; },{},{} -2637,Silver_Ring_,Silver Christmas Ring,4,20000,,100,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bLuk,1; },{},{} -2638,Exorcize_Sachet,Sacred Incense,4,20000,,100,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bStr,1; bonus bLuk,1; },{},{} -2639,Purification_Sachet,Occult Incense,4,20000,,100,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bInt,1; bonus bAgi,1; },{},{} -2640,Kafra_Ring,Kafra Ring,4,40000,,200,,1,,0,0xFFFFFFFE,7,2,136,,0,0,0,{ bonus bStr,1; bonus bInt,1; bonus bAgi,1; bonus bLuk,1; bonus bMdef,1; },{},{} -2641,Fashionable_Sack,Fashion Hip Sack,4,20,,700,,0,,0,0x00040420,7,2,136,,50,0,0,{ bonus bStr,2; },{},{} -2642,Serin's_Gold_Ring,Serin's Gold Ring,4,20,,0,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{},{},{} -2643,Serin's_Gold_Ring_,Serin's Gold Ring,4,45000,,100,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{},{},{} -2644,The_Sign_,The Sign,4,2,,0,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; },{},{} -2645,Moonlight_Ring,Moonlight Ring,4,40000,,200,,0,,0,0x02021040,7,2,136,,60,0,0,{ bonus bMdef,2; },{},{} -2646,Bunch_Of_Carnation,Bunch of Carnations,4,2,,100,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bAllStats,3; },{},{} -2647,Nile_Rose,Nile Rose,4,2,,100,,0,,1,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bMaxHP,10; },{},{} -2648,Morpheus's_Ring,Morpheus's Ring,4,30000,,100,,0,,0,0xFFFFFFFE,7,2,136,,33,0,0,{ bonus bInt,1; bonus bMaxSPrate,5; },{},{} -2649,Morpheus's_Armlet,Morpheus's Bracelet,4,30000,,100,,0,,0,0xFFFFFFFE,7,2,136,,33,0,0,{ bonus bInt,1; bonus bMaxSPrate,5; },{},{} -2650,Morrigane's_Belt,Morrigane's Belt,4,30000,,200,,0,,0,0xFFFFFFFE,7,2,136,,61,0,0,{ bonus bBaseAtk,5; bonus bCritical,3; },{},{} -2651,Morrigane's_Pendant,Morrigane's Pendant,4,30000,,200,,0,,0,0xFFFFFFFE,7,2,136,,61,0,0,{ bonus bStr,2; bonus bCritical,3; },{},{} -2652,Cursed_Lucky_Brooch,Goddess of Fortune's Cursed Brooch,4,20,,100,,0,,0,0xFFFFFFFF,7,2,136,,40,0,0,{ bonus bCritical,6; bonus2 bAddEff2,Eff_Curse,50; },{},{} -2653,Sacrifice_Ring,Sacrifice Ring,4,20,,100,,0,,0,0xFFFFFFFF,7,2,136,,90,0,0,{},{},{} -2654,Shinobi's_Sash,Shinobi Sash,4,20000,,300,,1,,0,0x02021040,7,2,136,,30,0,0,{ bonus bStr,1; bonus bAgi,1; bonus bMdef,1; },{},{} -2655,Bloody_Iron_Ball,Bloodied Shackle Ball,4,50000,,4000,,0,,0,0xFFFFFFFE,7,2,136,,1,0,0,{},{},{} -2656,Hyper_Changer,Armor Charm,4,20000,,1000,,1,,0,0x000654E2,7,2,136,,1,0,0,{ bonus bMaxHP,50; },{},{} -2657,Lab_Passport,Laboratory Permit,4,20,,100,,0,,0,0xFFFFFFFF,7,2,136,,1,0,0,{},{},{} -2658,Nile_Rose_,Nile Rose,4,2,,100,,0,,1,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bMaxHP,10; },{},{} -2659,Vesper_Core01,Vesper Core 01,4,20,,100,,1,,0,0x00CFFF80,2,2,136,,1,0,0,{ bonus bMdef,3; bonus bInt,2; bonus bMaxSPrate,5; },{},{} -2660,Vesper_Core02,Vesper Core 02,4,20,,100,,1,,0,0x00CFFF80,2,2,136,,1,0,0,{ bonus bMdef,3; bonus bStr,3; bonus bBaseAtk,10; },{},{} -2661,Vesper_Core03,Vesper Core 03,4,20,,100,,1,,0,0x00CFFF80,2,2,136,,1,0,0,{ bonus bMdef,3; bonus bAgi,3; bonus bFlee,5; },{},{} -2662,Vesper_Core04,Vesper Core 04,4,20,,100,,1,,0,0x00CFFF80,2,2,136,,1,0,0,{ bonus bMdef,3; bonus bDex,3; bonus bHit,10; },{},{} -2663,Gauntlet_Of_Accuracy,Gauntlet of Hit,4,20,,900,,0,,0,0xFFFFFFFF,7,2,136,,75,0,0,{ bonus bHit,15; bonus bStr,1; },{},{} -2664,Scarf_Belt,Belcarf,4,20,,200,,0,,0,0xFFFFFFFE,7,2,136,,75,0,0,{ bonus bDex,2; bonus bInt,1; },{},{} -2665,Ring_Of_Exorcism,Exorcising Ring,4,20,,500,,0,,0,0x00008110,7,2,136,,60,0,0,{ bonus bMdef,1; bonus2 bExpAddRace,RC_Undead,5; bonus2 bExpAddRace,RC_Demon,5; },{},{} -2666,Lamp_Of_Hope,Lantern of Hope,4,20,,100,,0,,0,0xFFFFFFFF,7,2,136,,1,0,0,{ bonus bStr,2; bonus2 bResEff,Eff_Blind,1000; },{},{} -2667,Glove_Of_Archer,Renown Archer's Gloves,4,20,,300,,0,,0,0xFFFFFFFE,7,2,136,,60,0,0,{ bonus bHit,5; bonus bCritical,5; bonus bDex,1; },{},{} -2668,Women's_Glory,Woman Glory,4,0,,500,,0,,0,0xFFFFFFFF,7,2,136,,1,0,0,{},{},{} -2669,Golden_Necklace_,RJC Necklace,4,30000,,100,,0,,1,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bMaxSP,10; },{},{} -2670,Ring_Of_Longing,Ring of Longing,4,20,,100,,1,,0,0xFFFFFFFF,7,2,136,,30,0,0,{ bonus bFlee,5; },{},{} -2671,Thimble_Of_Archer_,Bow Thimble,4,10000,,100,,0,,1,0x00080808,7,2,136,,65,0,0,{ bonus bLongAtkRate,3; },{},{} -2672,Anniversary_Ring,3rd Anniversary Celebration Ring,4,20,,100,,0,,0,0xFFFFFFFE,7,2,136,,0,0,0,{},{},{} -2673,Shining_Ring,Warrior's Shining Ring,4,0,,100,,0,,0,0xFFFFFFFE,7,2,136,,48,0,0,{ bonus bBaseAtk,10; bonus bSPrecovRate,3; },{},{} -2674,Honor_Ring,Ring of Honor,4,20,,0,,0,,0,0xFFFFFFFF,7,2,136,,1,0,0,{},{},{} -2675,Lord_Ring,Lord Ring,4,0,,10,,0,,0,0xFFFFFFFF,7,2,136,,1,0,0,{ bonus bAllStats,3; },{},{} -2676,Hunter_Earring,Hunter's Earring,4,20,,300,,0,,0,0xFFFFFFFF,7,2,136,,1,0,0,{ bonus2 bAddMonsterDropItem,7618,100; },{},{} -2677,Spiritual_Ring,Spiritual Ring,4,20,,100,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bInt,2; bonus bDex,1; },{},{} -2678,Ring_Of_Flame_Lord,Ring Of Flame Lord,4,20,,100,,0,,0,0x00CFFF80,2,2,136,,0,0,0,{ bonus bStr,2; bonus bVit,1; bonus bBaseAtk,15; 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; },{},{} -2679,Ring_Of_Resonance,Ring Of Resonance,4,20,,100,,2,,0,0x00CFFF80,2,2,136,,0,0,0,{ bonus bAgi,2; bonus bVit,1; bonus bMdef,2; 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; },{},{} -2680,Lesser_Elemental_Ring,Lesser Elemental Ring,4,20,,100,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bAllStats,1; bonus3 bAutoSpell,"WZ_ESTIMATION",1,80; bonus3 bAutoSpell,"MC_IDENTIFY",1,50; bonus3 bAutoSpell,"TF_PICKSTONE",1,100; bonus3 bAutoSpell,"BS_GREED",1,10; bonus3 bAutoSpellWhenHit,"TK_RUN",5,20; bonus3 bAutoSpellWhenHit,"TK_HIGHJUMP",3,30; bonus3 bAutoSpellWhenHit,"NV_FIRSTAID",1,100; bonus3 bAutoSpellWhenHit,"TF_BACKSLIDING",1,50; },{},{} -2681,Republic_Ring,Republic Anniversary Ring,4,20,,1000,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bAllStats,3; },{},{} -2682,Ring_Of_Water,Ring of Water,4,20,,100,,1,,0,0xFFFFFFFE,7,2,136,,20,0,0,{ bonus2 bSubEle,Ele_Water,5; },{},{} -2683,Ring_Of_Fire,Ring of Fire,4,20,,100,,1,,0,0xFFFFFFFE,7,2,136,,20,0,0,{ bonus2 bSubEle,Ele_Fire,5; },{},{} -2684,Ring_Of_Wind,Ring of Wind,4,20,,100,,1,,0,0xFFFFFFFE,7,2,136,,20,0,0,{ bonus2 bSubEle,Ele_Wind,5; },{},{} -2685,Ring_Of_Earth,Ring of Earth,4,20,,100,,1,,0,0xFFFFFFFE,7,2,136,,20,0,0,{ bonus2 bSubEle,Ele_Earth,5; },{},{} -2686,Elven_Ears_C,Elven Ears,4,1,,0,,2,,0,0xFFFFFFFE,7,2,512,,1,0,73,{ bonus bInt,1; },{},{} -2687,Steel_Flower_C,Steel Flower,4,1,,0,,1,,0,0xFFFFFFFE,7,2,1,,1,0,56,{ bonus2 bSubRace,RC_Plant,3; },{},{} -2688,Critical_Ring_C,Critical Ring,4,1,,0,,0,,0,0xFFFFFFFE,7,2,136,,1,0,0,{ bonus bCritical,10; },{},{} -2689,Earring_C,Earring,4,1,,0,,0,,0,0xFFFFFFFE,7,2,136,,1,0,0,{ bonus bInt,3; },{},{} -2690,Ring_C,Ring,4,1,,0,,0,,0,0xFFFFFFFE,7,2,136,,1,0,0,{ bonus bStr,4; },{},{} -2691,Necklace_C,Necklace,4,1,,0,,0,,0,0xFFFFFFFE,7,2,136,,1,0,0,{ bonus bVit,4; },{},{} -2692,Glove_C,Glove,4,1,,0,,0,,0,0xFFFFFFFE,7,2,136,,1,0,0,{ bonus bDex,4; },{},{} -2693,Brooch_C,Brooch,4,1,,0,,0,,0,0xFFFFFFFE,7,2,136,,1,0,0,{ bonus bAgi,4; },{},{} -2694,Rosary_C,Rosary,4,1,,0,,0,,0,0xFFFFFFFE,7,2,136,,1,0,0,{ bonus bMdef,5; bonus bLuk,4; },{},{} -2695,Safety_Ring_C,Safety Ring,4,1,,0,,5,,0,0xFFFFFFFE,7,2,136,,1,0,0,{ bonus bMdef,5; },{},{} -2696,Vesper_Core01_C,Vesper Core 01,4,1,,0,,1,,0,0xFFFFFFFE,7,2,136,,1,0,0,{ bonus bMdef,3; bonus bInt,2; bonus bMaxSPrate,5; },{},{} -2697,Vesper_Core02_C,Vesper Core 02,4,1,,0,,1,,0,0xFFFFFFFE,7,2,136,,1,0,0,{ bonus bMdef,3; bonus bStr,3; bonus bBaseAtk,10; },{},{} -2698,Vesper_Core03_C,Vesper Core 03,4,1,,0,,1,,0,0xFFFFFFFE,7,2,136,,1,0,0,{ bonus bMdef,3; bonus bAgi,3; bonus bFlee,5; },{},{} -2699,Vesper_Core04_C,Vesper Core 04,4,1,,0,,1,,0,0xFFFFFFFE,7,2,136,,1,0,0,{ bonus bMdef,3; bonus bDex,3; bonus bHit,10; },{},{} -2700,Red_Silk_Seal,Red Silk Seal,4,20,,100,,0,,0,0x00004082,2,2,136,,60,0,0,{},{},{} -2701,Orleans_Glove,Orleans's Glove,4,20,,100,,0,,1,0xFFFFFFFE,2,2,136,,90,0,0,{ bonus bDex,2; bonus bMatkRate,3; },{},{} -2702,Bison_Horn,Bison Horn,4,20,,100,,0,,1,0xFFFFFFFE,2,2,136,,90,0,0,{ bonus bAgi,2; },{},{} -2703,Expert_Ring,Expert Ring,4,20,,150,,0,,1,0xFFFFFFFE,2,2,136,,50,0,0,{ bonus bDelayRate,-5; bonus bUseSPrate,5; },{},{} -2704,Golden_Accessory,Golden Accessories,4,20,,100,,4,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bMdef,4; },{},{} -2705,Golden_Accessory2,Golden Accessories,4,20,,100,,4,,0,0xFFFFFFFF,7,2,136,,,,,{ bonus2 bAddMonsterDropItem,12018,500; },{},{} -2706,Handcuff,Arrest Handcuffs,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{},{},{} -2707,Gusli,GUSLI,4,20,,100,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{},{},{} -2708,Chinese_Handicraft,Chinese Handicraft,4,0,,50,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus3 bAutoSpell,"MG_FIREBOLT",5,300; },{},{} -2709,5_Anniversary_Coin,5th Anniversary Coin,4,2,,0,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bAtkRate,5; bonus bMatkRate,5; },{},{} -2710,Bloody_Iron_Ball_C,Bloody Iron Ball,4,1,,0,,0,,0,0xFFFFFFFE,7,2,136,,0,0,0,{ bonus bBaseAtk,30; },{},{} -2711,Spiritual_Ring_C,Spiritual Ring,4,1,,0,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bInt,2; bonus bDex,2; },{},{} -2712,Ragnarok_Limited_Ed,Ragnarok Limited Edition,4,0,,300,,0,,0,0xFFFFFFFF,7,2,136,,30,0,0,{ bonus bVit,3; bonus bAgi,3; bonus bLuk,3; },{},{} -2713,Certificate_TW,Certificate,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{},{},{} -2714,Marvelous_Pandent,Marvelous Pendant,4,0,,100,,0,,1,0xFFFFFFFF,7,2,136,,0,0,0,{},{},{} -2715,Skul_Ring_,Skull Ring,4,10000,,100,,0,,1,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus2 bSubRace,RC_Undead,1; },{},{} -2716,Librarian_Glove,Librarian Glove,4,20,,100,,0,,1,0x00810200,7,2,136,,80,0,0,{ bonus bMaxSP,20; },{},{} -2717,Pocket_Watch_,Pocket Watch,4,20,,200,,0,,0,0x00810204,7,2,136,,80,0,0,{},{},{} -2718,Lunatic_Brooch,Lunatic Brooch,4,20,,200,,0,,1,0x00080808,7,2,136,,65,0,0,{},{},{} -2719,Iron_Wrist,Iron Wrist,4,20,,700,,1,,0,0x000444A2,7,2,136,,50,0,0,{ bonus2 bSkillAtk,"SM_BASH",6; bonus2 bSkillAtk,"MC_MAMMONITE",6; },{},{} -2720,Medal_Swordman,Medal of Honor,4,20,,0,,1,,0,0x00404082,7,2,136,,70,0,0,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bHit,10; bonus bMaxHP,500; bonus bMaxSP,50; bonus3 bAddEff,Eff_Stun,100,ATF_SHORT; },{},{} -2721,Medal_Thief,Medal of Honor,4,20,,0,,1,,0,0x02021040,7,2,136,,70,0,0,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bFlee,10; bonus bMaxHP,300; bonus bMaxSP,80; bonus3 bAddEff,Eff_Poison,100,ATF_SHORT; },{},{} -2722,Medal_Acolyte,Medal of Honor,4,20,,0,,1,,0,0x00008110,7,2,136,,70,0,0,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bMdef,6; bonus bMaxHP,600; bonus3 bAddEff,Eff_Silence,100,ATF_SHORT; },{},{} -2723,Medal_Mage,Medal of Honor,4,20,,0,,1,,0,0x00810204,7,2,136,,70,0,0,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bMdef,6; bonus bMaxHP,600; bonus2 bAddEffWhenHit,Eff_Stone,100; },{},{} -2724,Medal_Archer,Medal of Honor,4,20,,0,,1,,0,0x00080808,7,2,136,,70,0,0,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bCritical,10; bonus bMaxHP,300; bonus bMaxSP,80; bonus3 bAddEff,Eff_Blind,100,ATF_LONG; },{},{} -2725,Medal_Merchant,Medal of Honor,4,20,,0,,1,,0,0x00040420,7,2,136,,70,0,0,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bAspdRate,10; bonus bMaxHP,500; bonus bMaxSP,50; bonus3 bAddEff,Eff_Curse,100,ATF_SHORT; },{},{} -2726,Icarus_Wing,Icarus Wings,4,20,,100,,0,,0,0x00000800,2,2,136,,70,0,0,{ bonus bMaxSP,50; bonus bDex,3; },{},{} -2727,Bowman_Scarf,Bowman Scarf,4,20,,200,,0,,0,0x00000800,2,2,136,,70,0,0,{ bonus bMaxSP,50; bonus bDex,3; },{},{} -2728,Cursed_Hand,Cursed Hand,4,20,,50,,0,,1,0xFFFFFFFE,7,2,136,,80,0,0,{ bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,30; bonus bHit,10; bonus bHPrecovRate,20; },{},{} -2729,Diabolus_Ring,Diabolus Ring,4,20,,50,,0,,1,0x00CFFF80,2,2,136,,0,0,0,{ bonus bMaxHP,100; bonus bMaxSP,100; bonus bHealPower,5; bonus2 bAddDamageClass,1916,10; bonus2 bAddDamageClass,1917,10; },{},{} -2730,Morroc_Seal,Seal of Continental Guard,4,20,,50,,0,,1,0xFFFFFFFE,7,2,136,,80,0,0,{ bonus bMaxHP,50; bonus bAspdRate,3; },{},{} -2731,Morroc_Charm_Stone,Rune Spellstone,4,20,,50,,0,,1,0xFFFFFFFE,7,2,136,,80,0,0,{ bonus bMaxSP,50; bonus bCastRate,-1; },{},{} -2732,Morroc_Ring,Death Loop,4,20,,50,,0,,1,0xFFFFFFFE,7,2,136,,80,0,0,{ bonus bCritical,5; },{},{} -2733,Medal_Gunner,Sheriff Badge,4,20,,0,,1,,0,0x41000000,7,2,136,,70,0,0,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bCritical,10; bonus bMaxHP,300; bonus bMaxSP,80; bonus3 bAddEff,Eff_Blind,100,ATF_LONG; },{},{} -2734,Directive_A,Directive,4,0,,0,,1,,0,0x00000001,7,2,136,,0,0,0,{},{},{} -2735,Directive_B,Directive,4,0,,0,,1,,0,0x00000001,7,2,136,,0,0,0,{},{},{} -2736,Navel_Ring,Navel Ring,4,20,,100,,0,,0,0xFFFFFFFE,7,2,136,,75,0,0,{ bonus bDex,3; bonus bLuk,3; bonus bMdef,2; },{},{} -2737,Foot_Ring,Foot Ring,4,20,,150,,0,,0,0xFFFFFFFE,7,2,136,,75,0,0,{ bonus bVit,3; bonus bMaxHPRate,10; },{},{} -2738,Shiny_Coin,Shiny Coin,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus2 bAddClass,Class_All,6; bonus bMatkRate,6; },{},{} -2739,Ordinary_Coin,Ordinary Coin,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; },{},{} -2740,Rusty_Coin,Rusty Coin,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus2 bAddClass,Class_All,3; bonus bMatkRate,3; },{},{} -2741,All_In_One_Ring,All In One Ring,4,20,,0,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bAllStats,1; bonus bNoCastCancel; bonus bCastRate,10; skill "AL_HEAL",1; skill "AL_TELEPORT",1; },{},{} -//2742,Lucky_Clip,Lucky Clip,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{},{},{} -2743,Angelic_Ring,Angelic Ring,4,20,,100,,0,,0,0x00CFFF80,2,2,136,,70,0,0,{ bonus bInt,2; bonus bDex,1; bonus bMdef,2; autobonus3 "{ bonus bHealPower,20; }",100,3000,"AL_HEAL","{ specialeffect2 EF_HEAL3; }"; autobonus3 "{ bonus bHealPower,20; }",100,3000,"AM_POTIONPITCHER","{ specialeffect2 EF_HEAL3; }"; autobonus3 "{ bonus bHealPower,20; }",100,3000,"PR_SANCTUARY","{ specialeffect2 EF_HEAL3; }"; },{},{} -2744,Sprint_Ring,Sprint Ring,4,20,,100,,0,,0,0x00CFFF80,2,2,136,,70,0,0,{ bonus bCastrate,-10; bonus bDelayRate,-5; },{},{} -2745,Pinguicula_Corsage,Pinguicula Corsage,4,20,,200,,0,,1,0x00CFFF80,2,2,136,,70,0,0,{ bonus bMdef,2; bonus bMaxSP,25; },{},{} -2746,Cold_Heart,Cold Heart,4,20,,100,,1,,0,0x00001000,2,2,136,,80,0,0,{ bonus bAgi,3; },{},{} -2747,Black_Cat,Black Cat,4,20,,100,,1,,0,0x00020000,2,2,136,,80,0,0,{ bonus bDex,3; },{},{} -2748,Cursed_Star,Cursed Star,4,20,,200,,0,,0,0x00080808,2,2,136,,84,0,0,{ bonus bMdef,3; bonus bDex,2; bonus bLuk,-1; bonus2 bHPLossRate,50,10000; bonus3 bAddEff,Eff_Curse,200,ATF_WEAPON|ATF_LONG|ATF_TARGET; },{},{ heal -300,0; } -2749,Linen_Glove,Linen Glove,4,20,,120,,1,,1,0x00CFFF80,2,2,136,,90,0,0,{ bonus bMdef,2; bonus bAgi,2; bonus bDex,1; },{},{} -//2750,Summer_Night_Dream,Summer Night Dream,4,20,,0,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{},{},{} -2751,Academy_Badge,Academy Of Badge,4,0,,100,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ if(BaseLevel<80) { bonus bMaxHP,400; bonus bMaxSP,200; } },{},{} -2752,Praxinus_C,Praccsinos,4,2,,0,,0,,0,0xFFFFFFFF,7,2,136,,1,0,0,{ bonus2 bAddClass,Class_All,5; bonus bMatkrate,5; },{},{} -2753,Beholder_Ring,Beholder Ring,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,1,0,0,{ bonus2 bExpAddRace,RC_Formless,15; },{},{} -2754,Hallow_Ring,Hallow Ring,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,1,0,0,{ bonus2 bExpAddRace,RC_undead,15; },{},{} -2755,Clamorous_Ring,Clamorous Ring,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,1,0,0,{ bonus2 bExpAddRace,RC_Brute,15; },{},{} -2756,Chemical_Ring,Chemical Ring,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,1,0,0,{ bonus2 bExpAddRace,RC_Plant,15; },{},{} -2757,Insecticide_Ring,Insecticide Ring,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,1,0,0,{ bonus2 bExpAddRace,RC_Insect,15; },{},{} -2758,Fisher_Ring,Fischer Ring,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,1,0,0,{ bonus2 bExpAddRace,RC_Fish,15; },{},{} -2759,Decussate_Ring,Decussate Ring,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,1,0,0,{ bonus2 bExpAddRace,RC_Demon,15; },{},{} -2760,Bloody_Ring,Bloody Ring,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,1,0,0,{ bonus2 bExpAddRace,RC_DemiHuman,15; },{},{} -2761,Satanic_Ring,Satanic Ring,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,1,0,0,{ bonus2 bExpAddRace,RC_Angel,15; },{},{} -2762,Dragoon_Ring,Dragon Ring,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,1,0,0,{ bonus2 bExpAddRace,RC_Dragon,15; },{},{} -2763,Skul_Ring_C,Neo Skull Ring,4,0,,0,,0,,0,0xFFFFFFFE,2,2,136,,95,0,0,{ bonus bAtkRate,5; bonus bMatkrate,5; bonus bMaxHPrate,5; bonus2 bSkillHeal,"AL_HEAL",5; skill "MG_SIGHT",1; },{},{} -2764,Small_Fishing_Rod,Small Fishing Rod,4,10,,250,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{},{},{} -2765,Novice_Figure,Novice Figure,4,0,,100,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bMaxHP,70; if(BaseJob==Job_Novice||BaseJob==Job_SuperNovice) bonus bMaxHP,30; },{},{} -2766,Swordman_Figure,Swordman Figure,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bVit,1; if(Class==Job_Swordman) bonus bDef,2; },{},{} -2767,Acolyte_Figure,Acolyte Figure,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bInt,1; if(Class==Job_Acolyte) bonus bMaxSP,50; },{},{} -2768,Mage_Figure,Mage Figure,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bInt,1; if(Class==Job_Mage) bonus bSPrecovRate,5; },{},{} -2769,Archer_Figure,Archer Figure,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bDex,1; if(Class==Job_Archer) bonus bBaseAtk,10; },{},{} -2770,Thief_Figure,Thief Figure,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bAgi,1; if(Class==Job_Thief) bonus bAspdRate,3; },{},{} -2771,Merchant_Figure,Merchant Figure,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bStr,1; if(Class==Job_Merchant) bonus bCritical,5; },{},{} -2772,Krieger_Ring1,Glorious Ring,4,20,,0,,0,,0,0xFFFFFFFE,7,2,136,,81,0,0,{ bonus bMaxHP,300; bonus2 bSubEle,Ele_Water,10; bonus2 bSubEle,Ele_Wind,10; bonus2 bSubEle,Ele_Earth,10; bonus2 bSubEle,Ele_Fire,10; bonus bAspdRate,5; bonus bCastrate,-3; bonus bHealPower,5; },{},{} -2773,Krieger_Ring2,Glorious Mass-Production Ring,4,20,,0,,0,,0,0xFFFFFFFE,7,2,136,,61,0,0,{ bonus bAllStats,2; },{},{} -2774,Krieger_Ring3,Glorious Popularized Ring,4,20,,0,,0,,0,0xFFFFFFFE,7,2,136,,0,0,0,{ bonus bAllStats,1; },{},{} -2775,Lure,Lure,4,20,,100,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{},{},{} -2776,Cool_Towel,Adventurer's Trusty Towel,4,20,,100,,,,0,0xFFFFFFFF,7,2,136,,0,0,0,{},{ sc_start SC_SUMMER,INFINITE_TICK,0; },{ sc_end SC_SUMMER; } -2777,Shaman_Ring,Shaman Ring,4,20,,100,,0,,1,0xFFFFFFFF,7,2,136,,30,0,0,{ bonus bUseSPrate,-5; },{},{} -2778,Shaman_Earing,Shaman Earrings,4,20,,100,,0,,0,0xFFFFFFFF,7,2,136,,30,0,0,{ bonus bInt,2; },{},{} -2779,Dark_Knight_Belt,Dark Knight Belt,4,20,,500,,1,,0,0xFFFFFFFF,7,2,136,,30,0,0,{ bonus bStr,2; bonus bAgi,1; },{},{} -2780,Dark_Knight_Glove,Dark Knight Glove,4,20,,500,,1,,0,0xFFFFFFFF,7,2,136,,80,0,0,{ autobonus "{ bonus bAspdRate,2; }",10,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }"; },{},{} -2781,Aumdura's_Grace,Aumdura's Benefit,4,0,,100,,1,,1,0xFFFFFFFF,7,2,136,,1,0,0,{ bonus bAllStats,1; bonus bMdef,1; },{},{} -2782,Ring_Of_Wise_King,Ring of the Ancient Wise King,4,20,,100,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bMaxHP,50; bonus bMaxSP,20; },{},{} -2783,Eyes_Stone_Ring,Eye Stone Ring,4,20,,100,,0,,1,0xFFFFFFFF,7,2,136,,70,0,0,{ bonus bCritical,2; bonus bMaxSP,25; },{},{} -2784,Oh_Holy_Night,Christmas Musicbox,4,20,,100,,0,,0,0xFFFFFFFF,7,2,136,,1,0,0,{ skill "ALL_WEWISH",1; },{},{} -2785,Orleans_Glove_M,Orlean's Gloves,4,20,,100,,0,,1,0xFFFFFFFE,2,2,136,,90,0,0,{ bonus bDex,2; bonus bMatkRate,3; },{},{} -2786,Spiritual_Ring_M,Spiritual Ring,4,20,,100,,0,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bInt,2; bonus bDex,1; },{},{} -2787,Waterdrop_Brooch,Waterdrop Brooch,4,20,,200,,0,,1,0xFFFFFFFE,2,2,136,,75,0,0,{ bonus2 bSubEle,Ele_Water,5; bonus bMaxHP,80; bonus bMdef,2; },{},{} -2788,Bradium_Earing,Bradium Earring,4,20,,200,,0,,1,0xFFFFFFFE,2,2,136,,60,0,0,{ bonus bMatkRate,2; bonus bInt,1; bonus bDex,1; },{},{} -2789,Bradium_Ring,Bradium Ring,4,20,,200,,0,,1,0xFFFFFFFE,2,2,136,,60,0,0,{ bonus2 bAddClass,Class_All,2; bonus bStr,1; bonus bVit,1; },{},{} -2790,Bradium_Brooch,Bradium Brooch,4,20,,200,,0,,1,0xFFFFFFFE,2,2,136,,60,0,0,{ bonus bFlee,4; bonus bAspdRate,2; bonus bAgi,1; },{},{} -2791,Just_Got_Fish,Fresh Fish,4,20,,500,,0,,1,0xFFFFFFFF,7,2,136,,1,0,0,{ bonus bHit,3; },{},{} -//2792,Ring_Of_Flame_Lord_I,Ring of Flame Lord,4,0,,0,,0,,0,0x00CFFF80,2,2,136,,0,0,0,{ bonus bStr,2; bonus bVit,1; bonus bBaseAtk,15; 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; },{},{} -//2793,Ring_Of_Resonance_I,Ring of Resonance,4,0,,0,,2,,0,0x00CFFF80,2,2,136,,0,0,0,{ bonus bAgi,2; bonus bVit,1; bonus bMdef,2; 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; },{},{} -2794,Magic_Stone_Ring,Magic Stone Ring,4,0,,0,,0,,1,0x00004082,7,2,136,,99,0,0,{ bonus bStr,2; },{},{} -2795,Green_Apple_Ring,Green Apple Ring,4,0,,0,,0,,0,0xFFFFFFFE,7,2,136,,99,0,0,{ bonus bAllStats,6; if(JobLevel <30) { bonus bAllStats,(JobLevel/5); } },{},{} -2796,Magical_Stone,Rocks,4,0,,200,,0,,0,0x00810204,7,2,136,,99,0,0,{ bonus2 bAddDamageClass,2047,10; bonus2 bAddDefMonster,2048,-10; bonus3 bAddMonsterIdDropItem,6152,2047,70; },{},{} -2797,Magical_Stone_,Rocks,4,0,,200,,0,,0,0x00810204,7,2,136,,99,0,0,{ bonus2 bAddDamageClass,2049,10; bonus2 bAddDefMonster,2050,-10; bonus3 bAddMonsterIdDropItem,6151,2049,70; },{},{} -2798,Will_Of_Exhausted_Angel,Will Of Exhausted Angel,4,0,,200,,0,,0,0x00008100,7,2,136,,99,0,0,{ if(strcharinfo(3)=="job3_arch02") { bonus2 bAddDefMonster,1761,50; bonus2 bAddDefMonster,1762,50; } },{},{} -2799,Kuirpenring,Kuirpenring,4,0,,100,,0,,1,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bMdef,1; },{},{} -2800,Accelerator,Accelerator,4,100000,,100,,0,,1,0x00000400,7,2,136,,99,0,0,{ bonus bAgi,2; },{},{} -2801,Hovering_Booster,Hovering Booster,4,100000,,2000,,0,,1,0x00000400,7,2,136,,99,0,0,{ bonus bAgi,1; },{},{} -2802,Suicidal_Device,Suicidal Device,4,500000,,1000,,0,,1,0x00000400,7,2,136,,99,0,0,{},{},{} -2803,Shape_Shifter,Shape Shifter,4,100000,,500,,0,,1,0x00000400,7,2,136,,99,0,0,{ bonus bInt,3; },{},{} -2804,Cooling_Device,Cooling Device,4,100000,,2500,,0,,1,0x00000400,7,2,136,,99,0,0,{ bonus bDex,1; },{},{} -2805,Mag_Field_Generator,Magnetic Field Generator,4,100000,,6000,,0,,1,0x00000400,7,2,136,,99,0,0,{ bonus bDex,1; },{},{} -2806,Barrier_Builder,Barrier Builder,4,150000,,8000,,3,,1,0x00000400,7,2,136,,99,0,0,{ bonus bDex,1; },{},{} -2807,Repair_Kit,Repair Kit,4,200000,,400,,0,,1,0x00000400,7,2,136,,99,0,0,{},{},{} -2808,Camouflage_Generator,Camouflague Generator,4,250000,,1000,,0,,1,0x00000400,7,2,136,,99,0,0,{ bonus bAgi,3; },{},{} -2809,High_Quality_Cooler,High Quality Cooler,4,100000,,2500,,0,,1,0x00000400,7,2,136,,99,0,0,{ bonus bDex,1; },{},{} -2810,Special_Cooler,Special Cooler,4,100000,,2500,,0,,1,0x00000400,7,2,136,,99,0,0,{ bonus bDex,1; },{},{} -2819,Swordman_Manual,Swordsman Manual,4,0,,100,,0,,0,0x00000001,7,2,136,,1,0,0,{ bonus bMaxSP,100; skill "SM_BASH",1; skill "SM_PROVOKE",1; skill "SM_MAGNUM",1; },{},{} -2820,Thief_Manual,Thief Manual,4,0,,100,,0,,0,0x00000001,7,2,136,,1,0,0,{ bonus bMaxSP,100; skill "TF_DOUBLE",3; bonus bDoubleRate,15; skill "TF_STEAL",1; skill "TF_HIDING",1; skill "TF_POISON",1; },{},{} -2821,Acolyte_Manual,Acolyte Manual,4,0,,100,,0,,0,0x00000001,7,2,136,,1,0,0,{ bonus bMaxSP,100; skill "AL_HEAL",1; skill "AL_INCAGI",1; skill "AL_BLESSING",1; },{},{} -2822,Archer_Manual,Archer Manual,4,0,,100,,0,,0,0x00000001,7,2,136,,1,0,0,{ bonus bMaxSP,100; skill "AC_OWL",1; skill "AC_CONCENTRATION",1; },{},{} -2823,Merchant_Manual,Merchant Manual,4,0,,100,,0,,0,0x00000001,7,2,136,,1,0,0,{ bonus bMaxSP,100; skill "MC_DISCOUNT",1; skill "MC_OVERCHARGE",10; skill "MC_IDENTIFY",1; skill "MC_MAMMONITE",1; },{},{} -2824,Mage_Manual,Mage Manual,4,0,,100,,0,,0,0x00000001,7,2,136,,1,0,0,{ bonus bMaxSP,100; skill "MG_SRECOVERY",1; skill "MG_COLDBOLT",1; skill "MG_FIREWALL",1; skill "MG_FIREBOLT",1; },{},{} -// Cards -//=================================================================== -4001,Poring_Card,Poring Card,6,20,,10,,,,,,,,16,,,,,{ bonus bLuk,2; bonus bFlee2,1; },{},{} -4002,Fabre_Card,Fabre Card,6,20,,10,,,,,,,,2,,,,,{ bonus bVit,1; bonus bMaxHP,100; },{},{} -4003,Pupa_Card,Pupa Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxHP,700; },{},{} -4004,Drops_Card,Drops Card,6,20,,10,,,,,,,,2,,,,,{ bonus bDex,1; bonus bHit,3; },{},{} -4005,Poring__Card,Santa Poring Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEle,Ele_Dark,20; },{},{} -4006,Lunatic_Card,Lunatic Card,6,20,,10,,,,,,,,2,,,,,{ bonus bLuk,1; bonus bCritical,1; bonus bFlee2,1; },{},{} -4007,Pecopeco_Egg_Card,Peco Peco Egg Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace,RC_Formless,20; },{},{} -4008,Picky_Card,Picky Card,6,20,,10,,,,,,,,16,,,,,{ bonus bStr,1; bonus bBaseAtk,10; },{},{} -4009,Chonchon_Card,Chonchon Card,6,20,,10,,,,,,,,64,,,,,{ bonus bAgi,1; bonus bFlee,2; },{},{} -4010,Wilow_Card,Willow Card,6,20,,10,,,,,,,,769,,,,,{ bonus bMaxSP,80; },{},{} -4011,Picky__Card,Picky Egg Card,6,20,,10,,,,,,,,16,,,,,{ bonus bVit,1; bonus bMaxHP,100; },{},{} -4012,Thief_Bug_Egg_Card,Thief Bug Egg Card,6,20,,10,,,,,,,,32,,,,,{ bonus bMaxHP,400; },{},{} -4013,Andre_Egg_Card,Andre Egg Card,6,20,,10,,,,,,,,32,,,,,{ bonus bMaxHPrate,5; },{},{} -4014,Roda_Frog_Card,Roda Frog Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxHP,400; bonus bMaxSP,50; },{},{} -4015,Condor_Card,Condor Card,6,20,,10,,,,,,,,4,,,,,{ bonus bFlee,10; },{},{} -4016,Thief_Bug_Card,Thief Bug Card,6,20,,10,,,,,,,,16,,,,,{ bonus bAgi,1; },{},{} -4017,Savage_Babe_Card,Savage Babe Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEff,Eff_Stun,500; },{},{} -4018,Andre_Larva_Card,Andre Larva Card,6,20,,10,,,,,,,,2,,,,,{ bonus bInt,1; bonus bMaxSP,10; },{},{} -4019,Hornet_Card,Hornet Card,6,20,,10,,,,,,,,2,,,,,{ bonus bStr,1; bonus bBaseAtk,3; },{},{} -4020,Farmiliar_Card,Familiar Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEff,Eff_Blind,500; bonus bBaseAtk,5; },{},{} -4021,Rocker_Card,Rocker Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDex,1; bonus bBaseAtk,5; },{},{} -4022,Spore_Card,Spore Card,6,20,,10,,,,,,,,136,,,,,{ bonus bVit,2; },{},{} -4023,Desert_Wolf_Babe_Card,Baby Desert Wolf Card,6,20,,10,,,,,,,,16,,,,,{ bonus bInt,1; },{},{} -4024,Plankton_Card,Plankton Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEff,Eff_Sleep,500; bonus bBaseAtk,5; },{},{} -4025,Skeleton_Card,Skeleton Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,10; bonus2 bAddEff,Eff_Stun,200; },{},{} -4026,Thief_Bug_Female_Card,Female Thief Bug Card,6,20,,10,,,,,,,,2,,,,,{ bonus bAgi,1; bonus bFlee,1; },{},{} -4027,Kukre_Card,Kukre Card,6,20,,10,,,,,,,,136,,,,,{ bonus bAgi,2; },{},{} -4028,Tarou_Card,Tarou Card,6,20,,10,,,,,,,,136,,,,,{ bonus bStr,2; },{},{} -4029,Wolf_Card,Wolf Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,15; bonus bCritical,1; },{},{} -4030,Mandragora_Card,Mandragora Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEle,Ele_Wind,20; },{},{} -4031,Pecopeco_Card,Peco Peco Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxHPrate,10; },{},{} -4032,Ambernite_Card,Ambernite Card,6,20,,10,,,,,,,,32,,,,,{ bonus bDef,2; },{},{} -4033,Poporing_Card,Poporing Card,6,20,,10,,,,,,,,136,,,,,{ skill "TF_DETOXIFY",1; },{},{} -4034,Worm_Tail_Card,Wormtail Card,6,20,,10,,,,,,,,136,,,,,{ bonus bDex,2; },{},{} -4035,Hydra_Card,Hydra Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; },{},{} -4036,Muka_Card,Muka Card,6,20,,10,,,,,,,,136,,,,,{ bonus bHPrecovRate,10; },{},{} -4037,Snake_Card,Snake Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEff,Eff_Poison,500; bonus bBaseAtk,5; },{},{} -4038,Zombie_Card,Zombie Card,6,20,,10,,,,,,,,64,,,,,{ bonus bHPrecovRate,20; },{},{} -4039,Stainer_Card,Stainer Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bResEff,Eff_Silence,2000; bonus bDef,1; },{},{} -4040,Creamy_Card,Creamy Card,6,20,,10,,,,,,,,136,,,,,{ skill "AL_TELEPORT",1; },{},{} -4041,Coco_Card,Coco Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bResEff,Eff_Sleep,2000; bonus bDef,1; },{},{} -4042,Steel_Chonchon_Card,Steel Chonchon Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bSubEle,Ele_Wind,10; bonus bDef,2; },{},{} -4043,Andre_Card,Andre Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,20; },{},{} -4044,Smokie_Card,Smokie Card,6,20,,10,,,,,,,,136,,,,,{ skill "TF_HIDING",1; },{},{ sc_end SC_HIDING; } -4045,Horn_Card,Horn Card,6,20,,10,,,,,,,,32,,,,,{ bonus bLongAtkDef,35; },{},{} -4046,Martin_Card,Martin Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bResEff,Eff_Blind,2000; bonus bDef,1; },{},{} -4047,Ghostring_Card,Ghostring Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDefEle,Ele_Ghost; bonus bHPrecovRate,-25; },{},{} -4048,Poison_Spore_Card,Poison Spore Card,6,20,,10,,,,,,,,136,,,,,{ skill "TF_POISON",3; },{},{} -4049,Vadon_Card,Vadon Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEle,Ele_Fire,20; },{},{} -4050,Thief_Bug_Male_Card,Male Thief Bug Card,6,20,,10,,,,,,,,64,,,,,{ bonus bAgi,2; },{},{} -4051,Yoyo_Card,Yoyo Card,6,20,,10,,,,,,,,136,,,,,{ bonus bFlee2,5; bonus bAgi,1; },{},{} -4052,Elder_Wilow_Card,Elder Willow Card,6,20,,10,,,,,,,,769,,,,,{ bonus bInt,2; },{},{} -4053,Vitata_Card,Vitata Card,6,20,,10,,,,,,,,136,,,,,{ skill "AL_HEAL",1; bonus bUseSPrate,25; },{},{} -4054,Angeling_Card,Angeling Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDefEle,Ele_Holy; },{},{} -4055,Marina_Card,Marina Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEff,Eff_Freeze,500; bonus bBaseAtk,5; },{},{} -4056,Dustiness_Card,Dustiness Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Wind,30; bonus bFlee,5; },{},{} -4057,Metaller_Card,Metaller Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEff,Eff_Silence,500; bonus bBaseAtk,5; },{},{} -4058,Thara_Frog_Card,Thara Frog Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_DemiHuman,30; bonus2 bSubRace,RC_Player_Human,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; bonus2 bAddRace,RC_Player_Doram,20; },{},{} -4061,Cornutus_Card,Cornutus Card,6,20,,10,,,,,,,,16,,,,,{ bonus bUnbreakableArmor; 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; },{},{} -4065,Kaho_Card,Kaho Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEle,Ele_Earth,20; },{},{} -4066,Orc_Warrior_Card,Orc Warrior Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_Brute,30; bonus2 bSubRace,RC_Player_Doram,30; },{},{} -4067,Megalodon_Card,Megalodon Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bResEff,Eff_Freeze,2000; bonus bDef,1; },{},{} -4068,Scorpion_Card,Scorpion Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace,RC_Plant,20; },{},{} -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; 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; },{},{} -4076,Magnolia_Card,Magnolia Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEff,Eff_Curse,500; bonus bBaseAtk,5; },{},{} -4077,Phen_Card,Phen Card,6,20,,10,,,,,,,,136,,,,,{ bonus bNoCastCancel; bonus bCastrate,25; },{},{} -4078,Savage_Card,Savage Card,6,20,,10,,,,,,,,16,,,,,{ bonus bVit,3; },{},{} -4079,Mantis_Card,Mantis Card,6,20,,10,,,,,,,,136,,,,,{ bonus bStr,3; },{},{} -4080,Flora_Card,Flora Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace,RC_Fish,20; },{},{} -4081,Hode_Card,Hode Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Earth,30; bonus bFlee,5; },{},{} -4082,Desert_Wolf_Card,Desert Wolf Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddSize,Size_Small,15; bonus bBaseAtk,5; },{},{} -4083,Rafflesia_Card,Rafflesia Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_Fish,30; },{},{} -4084,Marine_Sphere_Card,Marine Sphere Card,6,20,,10,,,,,,,,136,,,,,{ skill "SM_MAGNUM",3; },{},{} -4085,Orc_Skeleton_Card,Orc Skeleton Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEle,Ele_Holy,20; },{},{} -4086,Soldier_Skeleton_Card,Soldier Skeleton Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritical,9; },{},{} -4087,Giearth_Card,Giearth Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bResEff,Eff_Confusion,10000; bonus2 bSubEle,Ele_Earth,15; },{},{} -4088,Frilldora_Card,Frilldora Card,6,20,,10,,,,,,,,4,,,,,{ skill "AS_CLOAKING",1; },{},{ sc_end SC_CLOAKING; } -4089,Sword_Fish_Card,Swordfish Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDefEle,Ele_Water; bonus bDef,1; },{},{} -4090,Munak_Card,Munak Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bResEff,Eff_Stone,1500; bonus2 bSubEle,Ele_Earth,5; bonus bDef,1; },{},{} -4091,Kobold_Card,Kobold Card,6,20,,10,,,,,,,,136,,,,,{ bonus bStr,1; bonus bCritical,4; },{},{} -4092,Skel_Worker_Card,Skeleton Worker Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddSize,Size_Medium,15; bonus bBaseAtk,5; },{},{} -4093,Obeaune_Card,Obeaune Card,6,20,,10,,,,,,,,136,,,,,{ skill "AL_CURE",1; },{},{} -4094,Archer_Skeleton_Card,Archer Skeleton Card,6,20,,10,,,,,,,,2,,,,,{ bonus bLongAtkRate,10; },{},{} -4095,Marse_Card,Marse Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Water,30; bonus bFlee,5; },{},{} -4096,Zenorc_Card,Zenorc Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEff,Eff_Poison,400; bonus bBaseAtk,10; },{},{} -4097,Matyr_Card,Matyr Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMaxHPrate,10; bonus bAgi,1; },{},{} -4098,Dokebi_Card,Dokebi Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDefEle,Ele_Wind; bonus bDef,1; },{},{} -4099,Pasana_Card,Pasana Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDefEle,Ele_Fire; bonus bDef,1; },{},{} -4100,Sohee_Card,Sohee Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMaxSPrate,15; bonus bSPrecovRate,3; },{},{} -4101,Sand_Man_Card,Sandman Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDefEle,Ele_Earth; bonus bDef,1; },{},{} -4102,Whisper_Card,Whisper Card,6,20,,10,,,,,,,,4,,,,,{ bonus bFlee,20; bonus2 bSubEle,Ele_Ghost,-50; },{},{} -4103,Horong_Card,Horong Card,6,20,,10,,,,,,,,136,,,,,{ skill "MG_SIGHT",1; },{},{ sc_end SC_SIGHT; } -4104,Requiem_Card,Requiem Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEff,Eff_Confusion,500; },{},{} -4105,Marc_Card,Marc Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bSubEle,Ele_Water,5; bonus2 bResEff,Eff_Freeze,10000; },{},{} -4106,Mummy_Card,Mummy Card,6,20,,10,,,,,,,,2,,,,,{ bonus bHit,20; },{},{} -4107,Verit_Card,Verit Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMaxHPrate,8; bonus bMaxSPrate,8; },{},{} -4108,Myst_Card,Myst Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Poison,30; bonus bFlee,5; },{},{} -4109,Jakk_Card,Jakk Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Fire,30; bonus bFlee,5; },{},{} -4110,Ghoul_Card,Ghoul Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bResEff,Eff_Poison,2000; bonus bDef,1; },{},{} -4111,Strouf_Card,Strouf Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace,RC_Demon,20; },{},{} -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; },{},{} -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; },{},{} -4119,Bathory_Card,Bathory Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDefEle,Ele_Dark; },{},{} -4120,Petit__Card,Sky Petite Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_Dragon,30; },{},{} -4121,Phreeoni_Card,Phreeoni Card,6,20,,10,,,,,,,,2,,,,,{ bonus bHit,100; },{},{} -4122,Deviruchi_Card,Deviruchi Card,6,20,,10,,,,,,,,769,,,,,{ bonus bStr,1; bonus2 bResEff,Eff_Blind,10000; },{},{} -4123,Eddga_Card,Eddga Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMaxHPrate,-25; bonus bNoWalkDelay; },{},{} -4124,Medusa_Card,Medusa Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_Demon,15; bonus2 bResEff,Eff_Stone,10000; },{},{} -4125,Deviace_Card,Deviace Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace,RC_DemiHuman,7; bonus2 bAddRace,RC_Player_Human,7; bonus2 bAddRace,RC_Brute,7; bonus2 bAddRace,RC_Player_Doram,7; bonus2 bAddRace,RC_Plant,7; bonus2 bAddRace,RC_Insect,7; },{},{} -4126,Minorous_Card,Minorous Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddSize,Size_Large,15; bonus bBaseAtk,5; },{},{} -4127,Nightmare_Card,Nightmare Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bResEff,Eff_Sleep,10000; bonus bAgi,1; },{},{} -4128,Golden_Bug_Card,Golden Thief Bug Card,6,20,,10,,,,,,,,32,,,,,{ bonus bNoMagicDamage,100; bonus bUseSPrate,100; },{},{} -4129,Baphomet__Card,Bapho Jr. Card,6,20,,10,,,,,,,,4,,,,,{ bonus bAgi,3; bonus bCritical,1; },{},{} -4130,Scorpion_King_Card,Scorpion King Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEle,Ele_Undead,20; },{},{} -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; 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; },{},{} -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; },{},{} -4138,Anubis_Card,Anubis Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_Angel,30; },{},{} -4139,Joker_Card,Joker Card,6,20,,10,,,,,,,,136,,,,,{ skill "TF_STEAL",1; },{},{} -4140,Knight_Of_Abyss_Card,Abysmal Knight Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddClass,Class_Boss,25; },{},{} -4141,Evil_Druid_Card,Evil Druid Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDefEle,Ele_Undead; bonus bInt,1; bonus bDef,1; },{},{} -4142,Doppelganger_Card,Doppelganger Card,6,20,,10,,,,,,,,2,,,,,{ bonus bAspdRate,10; },{},{} -4143,Orc_Hero_Card,Orc Hero Card,6,20,,10,,,,,,,,769,,,,,{ bonus bVit,3; bonus2 bResEff,Eff_Stun,10000; },{},{} -4144,Osiris_Card,Osiris Card,6,20,,10,,,,,,,,136,,,,,{ bonus bRestartFullRecover; },{},{} -4145,Berzebub_Card,Berzebub Card,6,20,,10,,,,,,,,136,,,,,{ bonus bCastrate,-30; },{},{} -4146,Maya_Card,Maya Card,6,20,,10,,,,,,,,32,,,,,{ bonus bMagicDamageReturn,50; },{},{} -4147,Baphomet_Card,Baphomet Card,6,20,,10,,,,,,,,2,,,,,{ bonus bHit,-10; bonus bSplashRange,1; },{},{} -4148,Pharaoh_Card,Pharaoh Card,6,20,,10,,,,,,,,769,,,,,{ bonus bUseSPrate,-30; },{},{} -4149,Gargoyle_Card,Gargoyle Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12028,RC_Insect,100; },{},{} -4150,Goat_Card,Goat Card,6,20,,10,,,,,,,,16,,,,,{ if(getrefine()<6) { bonus bDef,2; bonus bMdef,5; } },{},{} -4151,Gajomart_Card,Gajomart Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bSubRace,RC_Plant,-20; bonus2 bExpAddRace,RC_Plant,10; },{},{} -4152,Galapago_Card,Galapago Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddItemGroupHealRate,IG_Juice,50; bonus3 bAddMonsterDropItem,531,RC_Insect,300; bonus3 bAddMonsterDropItem,532,RC_Insect,300; bonus3 bAddMonsterDropItem,534,RC_Insect,300; },{},{} -4153,Crab_Card,Crab Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,5; bonus2 bAddDamageClass,1266,30; },{},{} -4154,Rice_Cake_Boy_Card,Dumpling Child Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddItemGroupHealRate,IG_Candy,50; bonus3 bAddMonsterDropItem,529,RC_DemiHuman,300; bonus3 bAddMonsterDropItem,530,RC_DemiHuman,100; },{},{} -4155,Goblin_Leader_Card,Goblin Leader Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace2,RC2_Goblin,30; },{},{} -4156,Steam_Goblin_Card,Goblin Steamrider Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Formless,7; },{},{} -4157,Goblin_Archer_Card,Goblin Archer Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Undead,7; },{},{} -4158,Flying_Deleter_Card,Sky Deleter Card,6,20,,10,,,,,,,,16,,,,,{ bonus bHPrecovRate,-100; bonus bHPGainValue,100; },{},{} -4159,Nine_Tail_Card,Nine Tail Card,6,20,,10,,,,,,,,4,,,,,{ bonus bAgi,2; if(getrefine()>8) bonus bFlee,20; },{},{} -4160,Antique_Firelock_Card,Firelock Soldier Card,6,20,,10,,,,,,,,64,,,,,{ bonus bStr,2; if(getrefine()>8) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; } },{},{} -4161,Grand_Peco_Card,Grand Peco Card,6,20,,10,,,,,,,,769,,,,,{ bonus3 bAutoSpellWhenHit,"PR_GLORIA",1,50; },{},{} -4162,Grizzly_Card,Grizzly Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Blind,300; },{},{} -4163,Gryphon_Card,Gryphon Card,6,20,,10,,,,,,,,2,,,,,{ bonus bFlee,2; bonus bCritical,7; if(BaseClass==Job_Swordman) bonus3 bAutoSpell,"KN_BOWLINGBASH",5,10; },{},{} -4164,Gullinbursti_Card,Gullinbursti Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bSubRace,RC_Fish,-20; bonus2 bExpAddRace,RC_Fish,10; },{},{} -4165,Gig_Card,Gig Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSPGainRace,RC_Insect,5; },{},{ heal 0,-5; } -4166,Nightmare_Terror_Card,Nightmare Terror Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Curse,300; },{},{} -4167,Neraid_Card,Nereid Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSPGainRace,RC_Brute,5; bonus2 bSPGainRace,RC_Player_Doram,5; },{},{ heal 0,-5; } -4168,Dark_Lord_Card,Dark Lord Card,6,20,,10,,,,,,,,64,,,,,{ bonus3 bAutoSpellWhenHit,"WZ_METEOR",5,100; },{},{} -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; 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; },{},{} -4176,Dullahan_Card,Dullahan Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Dragon,7; },{},{} -4177,Dryad_Card,Dryad Card,6,20,,10,,,,,,,,769,,,,,{ bonus3 bAddMonsterDropItem,993,RC_Plant,100; bonus2 bSubEle,Ele_Earth,10; },{},{} -4178,Dragon_Tail_Card,Dragon Tail Card,6,20,,10,,,,,,,,4,,,,,{ bonus bAgi,1; bonus bFlee,10; bonus2 bSkillAtk,"AC_DOUBLE",5; bonus2 bSkillAtk,"AC_SHOWER",5; },{},{} -4179,Dragon_Fly_Card,Dragon Fly Card,6,20,,10,,,,,,,,4,,,,,{ bonus bAgi,1; },{},{} -4180,Driller_Card,Driller Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSPGainRace,RC_Dragon,5; },{},{ heal 0,-5; } -4181,Disguise_Card,Disguise Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Silence,300+600*(readparam(bVit)>=77); },{},{} -4182,Diabolic_Card,Diabolic Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSPGainRace,RC_Demon,5; },{},{ heal 0,-5; } -4183,Vagabond_Wolf_Card,Vagabond Wolf Card,6,20,,10,,,,,,,,4,,,,,{ bonus bStr,1; },{},{} -4184,Lava_Golem_Card,Lava Golem Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace2,RC2_Golem,30; },{},{} -4185,Rideword_Card,Rideword Card,6,20,,10,,,,,,,,769,,,,,{ bonus bInt,1; if(BaseClass==Job_Acolyte) { bonus bInt,1; bonus bMdef,1; } },{},{} -4186,Raggler_Card,Raggler Card,6,20,,10,,,,,,,,64,,,,,{ bonus bStr,1; bonus bVit,1; },{},{} -4187,Raydric_Archer_Card,Raydric Archer Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12030,RC_Demon,100; },{},{} -4188,Leib_Olmai_Card,Leib Olmai Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bSubEle,Ele_Fire,10; bonus3 bAddMonsterDropItem,990,RC_Brute,100; },{},{} -4189,Wraith_Dead_Card,Wraith Dead Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Curse,600; },{},{} -4190,Wraith_Card,Wraith Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12027,RC_Undead,100; },{},{} -4191,Loli_Ruri_Card,Loli Ruri Card,6,20,,10,,,,,,,,16,,,,,{ bonus3 bAutoSpellWhenHit,"AL_HEAL",3,50; },{},{} -4192,Rotar_Zairo_Card,Rotar Zairo Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Fish,7; },{},{} -4193,Lude_Card,Lude Card,6,20,,10,,,,,,,,136,,,,,{ if(BaseJob==Job_Novice||BaseJob==Job_SuperNovice) bonus3 bAutoSpellWhenHit,"SM_ENDURE",1,200; },{},{} -4194,Rybio_Card,Rybio Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Stun,300+600*(readparam(bDex)>=77); },{},{} -4195,Leaf_Cat_Card,Leaf Cat Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bSubEle,Ele_Water,10; bonus3 bAddMonsterDropItem,991,RC_Fish,100; },{},{} -4196,Marin_Card,Marin Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddMonsterDropItem,909,2000; bonus2 bAddMonsterDropItem,7126,10; },{},{} -4197,Mastering_Card,Mastering Card,6,20,,10,,,,,,,,4,,,,,{ bonus bLuk,1; },{},{} -4198,Maya_Puple_Card,Maya Purple Card,6,20,,10,,,,,,,,769,,,,,{ bonus bIntravision; },{},{} -4199,Merman_Card,Merman Card,6,20,,10,,,,,,,,64,,,,,{ bonus bHPrecovRate,10; bonus bSPrecovRate,10; },{},{} -4200,Megalith_Card,Megalith Card,6,20,,10,,,,,,,,64,,,,,{ if(getrefine()<6) bonus bMdef,7; },{},{} -4201,Majoruros_Card,Majoruros Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Stun,600; },{},{} -4202,Civil_Servant_Card,Mao Guai Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEle,Ele_Ghost,20; },{},{} -4203,Mutant_Dragon_Card,Mutant Dragonoid Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,15; bonus3 bAutoSpell,"MG_FIREBALL",3+2*(getskilllv("MG_FIREBALL")==10),50; },{},{} -4204,Mini_Demon_Card,Mini Demon Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bSubRace,RC_Brute,-20; bonus2 bSubRace,RC_Player_Doram,-20; bonus2 bExpAddRace,RC_Brute,10; },{},{} -4205,Mimic_Card,Mimic Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddMonsterDropItem,603,10; },{},{} -4206,Mystcase_Card,Myst Case Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bAddMonsterDropItem,644,30; },{},{} -4207,Mysteltainn_Card,Mysteltainn Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubSize,Size_Small,25; bonus bDef,1; },{},{} -4208,Miyabi_Ningyo_Card,Miyabi Doll Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMaxSPrate,10; bonus2 bSkillAtk,"MG_FROSTDIVER",5; },{},{} -4209,Violy_Card,Violy Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAutoSpell,"BA_FROSTJOKER",1+4*(getskilllv("BA_FROSTJOKER")==5),20; },{},{} -4210,Wander_Man_Card,Wanderer Card,6,20,,10,,,,,,,,4,,,,,{ if(!isequipped(4172,4257,4230,4272)) bonus3 bAutoSpell,"RG_INTIMIDATE",1,20; if(BaseClass==Job_Thief) bonus bFlee,20; },{},{} -4211,Vocal_Card,Vocal Card,6,20,,10,,,,,,,,4,,,,,{ bonus bMdef,3; },{},{} -4212,Bon_Gun_Card,Bongun Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAutoSpell,"SM_BASH",1,20; bonus2 bAddSkillBlow,"SM_BASH",5; bonus2 bAddDefMonster,1026,-100; },{},{} -4213,Brilight_Card,Brilight Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Silence,600; },{},{} -4214,Bloody_Murderer_Card,Bloody Murderer Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Insect,7; },{},{} -4215,Blazzer_Card,Blazer Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddMonsterDropItemGroup,IG_Food,600; },{},{} -4216,Sasquatch_Card,Sasquatch Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Freeze,600; },{},{} -4217,Live_Peach_Tree_Card,Enchanted Peach Tree Card,6,20,,10,,,,,,,,32,,,,,{ bonus3 bAutoSpell,"AL_HEAL",1+9*(getskilllv("AL_HEAL")==10),20; },{},{} -4218,Succubus_Card,Succubus Card,6,20,,10,,,,,,,,16,,,,,{ bonus bVit,-3; bonus bHPrecovRate,-20; bonus bMaxHP,1000; },{},{} -4219,Sageworm_Card,Sage Worm Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddMonsterDropItem,715,30; bonus2 bAddMonsterDropItem,716,30; bonus2 bAddMonsterDropItem,717,30; },{},{} -4220,Solider_Card,Solider Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDef,2; bonus bMdef,2; },{},{} -4221,Skeleton_General_Card,Skeleton General Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bSubRace,RC_Insect,-20; bonus2 bExpAddRace,RC_Insect,10; },{},{} -4222,Skel_Prisoner_Card,Skeleton Prisoner Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Sleep,300; },{},{} -4223,Stalactic_Golem_Card,Stalactic Golem Card,6,20,,10,,,,,,,,769,,,,,{ bonus bDef,1; bonus2 bResEff,Eff_Stun,2000; },{},{} -4224,Stem_Worm_Card,Stem Worm Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12032,RC_Brute,100; },{},{} -4225,Stone_Shooter_Card,Stone Shooter Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,10; bonus bHit,10; },{},{} -4226,Sting_Card,Sting Card,6,20,,10,,,,,,,,32,,,,,{ bonus bDef,2; if(getrefine()>8) bonus bMdef,5; },{},{} -4227,Spring_Rabbit_Card,Spring Rabbit Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddItemGroupHealRate,IG_Meat,50; bonus3 bAddMonsterDropItem,517,RC_Brute,200; bonus3 bAddMonsterDropItem,528,RC_Brute,200; },{},{} -4228,Sleeper_Card,Sleeper Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12031,RC_Fish,100; },{},{} -4229,C_Tower_Manager_Card,Tower Keeper Card,6,20,,10,,,,,,,,769,,,,,{ bonus bInt,1; bonus bCastrate,-5; },{},{} -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; },{},{} -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)); },{},{} -4237,Owl_Duke_Card,Owl Duke Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAutoSpell,"PR_IMPOSITIO",3,3; },{},{} -4238,Owl_Baron_Card,Owl Baron Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAutoSpell,"PR_LEXAETERNA",1,30; },{},{} -4239,Iron_Fist_Card,Iron Fist Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bSubRace,RC_Formless,-20; bonus2 bExpAddRace,RC_Formless,10; },{},{} -4240,Arclouse_Card,Arclouze Card,6,20,,10,,,,,,,,32,,,,,{ if(getrefine()<6) { bonus bDef,2; bonus bMdef,3; } },{},{} -4241,Archangeling_Card,Arc Angeling Card,6,20,,10,,,,,,,,769,,,,,{ bonus bMaxHP,300; if(readparam(bLuk)>=77) { bonus bHPrecovRate,100; bonus bSPrecovRate,100; } },{},{} -4242,Apocalips_Card,Apocalipse Card,6,20,,10,,,,,,,,16,,,,,{ bonus bVit,2; if(getrefine()>8) bonus bMaxHP,800; },{},{} -4243,Antonio_Card,Antonio Card,6,20,,10,,,,,,,,16,,,,,{ bonus3 bAutoSpellWhenHit,"AL_TELEPORT",1,500; },{},{} -4244,Alarm_Card,Alarm Card,6,20,,10,,,,,,,,64,,,,,{ bonus3 bAutoSpellWhenHit,"MG_SIGHT",1,200; bonus bMaxHP,300; bonus bVit,1; },{},{} -4245,Am_Mut_Card,Am Mut Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bSubRace,RC_DemiHuman,-20; bonus2 bSubRace,RC_Player_Human,-20; bonus2 bExpAddRace,RC_DemiHuman,10; },{},{} -4246,Assulter_Card,Assaulter Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_DemiHuman,7; bonus2 bCriticalAddRace,RC_Player_Human,7; },{},{} -4247,Aster_Card,Aster Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,5; bonus2 bAddDamageClass,1074,30; },{},{} -4248,Ancient_Mummy_Card,Ancient Mummy Card,6,20,,10,,,,,,,,32,,,,,{ bonus3 bAutoSpellWhenHit,"AL_CRUCIS",5,30; },{},{} -4249,Ancient_Worm_Card,Ancient Worm Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bSubRace,RC_Demon,-20; bonus2 bExpAddRace,RC_Demon,10; },{},{} -4250,Executioner_Card,Executioner Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubSize,Size_Large,25; bonus bDef,1; },{},{} -4251,Elder_Card,Elder Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace2,RC2_Guardian,40; },{},{} -4252,Alligator_Card,Alligator Card,6,20,,10,,,,,,,,136,,,,,{ bonus bLongAtkDef,5; },{},{} -4253,Alice_Card,Alice Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubClass,Class_Boss,40; bonus2 bSubClass,Class_Normal,-40; },{},{} -4254,Tirfing_Card,Ogretooth Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubSize,Size_Medium,25; bonus bDef,1; },{},{} -4255,Orc_Lady_Card,Orc Lady Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace2,3,30; },{},{} -4256,Orc_Archer_Card,Orc Archer Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12034,RC_DemiHuman,100; },{},{} -4257,Wild_Rose_Card,Wild Rose Card,6,20,,10,,,,,,,,64,,,,,{ bonus bAgi,1; if(BaseClass==Job_Thief) bonus bFlee2,5; },{},{} -4258,Wicked_Nymph_Card,Evil Nymph Card,6,20,,10,,,,,,,,769,,,,,{ bonus bInt,1; bonus bMaxSP,50; },{},{} -4259,Wooden_Golem_Card,Wooden Golem Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDef,1; bonus bHPrecovRate,30; },{},{} -4260,Wootan_Shooter_Card,Wootan Shooter Card,6,20,,10,,,,,,,,769,,,,,{ bonus bDef,1; bonus2 bResEff,Eff_Confusion,2000; },{},{} -4261,Wootan_Fighter_Card,Wootan Fighter Card,6,20,,10,,,,,,,,769,,,,,{ bonus bDef,1; bonus2 bResEff,Eff_Bleeding,2000; },{},{} -4262,Evil_Cloud_Hermit_Card,Cloud Hermit Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12029,RC_Plant,100; },{},{} -4263,Incant_Samurai_Card,Samurai Spector Card,6,20,,10,,,,,,,,2,,,,,{ bonus bIgnoreDefClass,Class_Normal; bonus bHPrecovRate,-100; bonus2 bHPLossRate,666,10000; },{},{ 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; } } -4264,Wind_Ghost_Card,Wind Ghost Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAutoSpell,"WZ_JUPITEL",3+7*(getskilllv("WZ_JUPITEL")==10),20; },{},{} -4265,Li_Me_Mang_Ryang_Card,Jing Guai Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12033,RC_Angel,100; },{},{} -4266,Eclipse_Card,Eclipse Card,6,20,,10,,,,,,,,4,,,,,{ bonus bVit,1; },{},{} -4267,Explosion_Card,Explosion Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bSubRace,RC_Dragon,-20; bonus2 bExpAddRace,RC_Dragon,10; },{},{} -4268,Injustice_Card,Injustice Card,6,20,,10,,,,,,,,2,,,,,{ bonus3 bAutoSpell,"AS_SONICBLOW",1,50; },{},{} -4269,Incubus_Card,Incubus Card,6,20,,10,,,,,,,,769,,,,,{ bonus bInt,-3; bonus bSPrecovRate,-20; bonus bMaxSP,150; },{},{} -4270,Giant_Spider_Card,Giant Spider Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Poison,600; },{},{} -4271,Giant_Honet_Card,Giant Hornet Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bSubEle,Ele_Wind,10; bonus3 bAddMonsterDropItem,992,RC_Insect,100; },{},{} -4272,Dancing_Dragon_Card,Zhu Po Long Card,6,20,,10,,,,,,,,136,,,,,{ bonus bAgi,1; bonus bCritical,3; },{},{} -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 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; bonus bSPDrainValue,-1; if(BaseClass==Job_Merchant) bonus bUnbreakableWeapon; },{},{} -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; },{},{} -4285,Choco_Card,Choco Card,6,20,,10,,,,,,,,4,,,,,{ bonus bFlee2,5; bonus bFlee,10; },{},{} -4286,Karakasa_Card,Karakasa Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Confusion,300+600*(readparam(bStr)>=77); },{},{} -4287,Kapha_Card,Kapha Card,6,20,,10,,,,,,,,4,,,,,{ if(getrefine()<6) bonus bMdef,8; },{},{} -4288,Carat_Card,Carat Card,6,20,,10,,,,,,,,769,,,,,{ bonus bInt,2; if(getrefine()>8) bonus bMaxSP,150; },{},{} -4289,Caterpillar_Card,Caterpillar Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSPGainRace,RC_Plant,5; },{},{ heal 0,-5; } -4290,Cat_O_Nine_Tail_Card,Cat O' Nine Tails Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMdef,3; bonus bMagicDamageReturn,5; },{},{} -4291,Kobold_Leader_Card,Kobold Leader Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace2,RC2_Kobold,30; },{},{} -4292,Kobold_Archer_Card,Kobold Archer Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Plant,7; },{},{} -4293,Cookie_Card,Cookie Card,6,20,,10,,,,,,,,136,,,,,{ bonus bLuk,2; bonus2 bSkillAtk,"AL_HOLYLIGHT",10; },{},{} -4294,Quve_Card,Quve Card,6,20,,10,,,,,,,,136,,,,,{ if(BaseJob==Job_Novice||BaseJob==Job_SuperNovice) bonus3 bAutoSpellWhenHit,"AL_INCAGI",1,100; },{},{} -4295,Kraben_Card,Kraben Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Blind,600; },{},{} -4296,Cramp_Card,Cramp Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bGetZenyNum,500,1; },{},{} -4297,Cruiser_Card,Cruiser Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Brute,7; bonus2 bCriticalAddRace,RC_Player_Doram,7; },{},{} -4298,Cremy_Fear_Card,Creamy Fear Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Confusion,600; },{},{} -4299,Clock_Card,Clock Card,6,20,,10,,,,,,,,16,,,,,{ bonus3 bAutoSpellWhenHit,"CR_AUTOGUARD",3+7*(getskilllv("CR_AUTOGUARD")==10),30; },{},{ sc_end SC_AUTOGUARD; } -4300,Chimera_Card,Chimera Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Poison,300+600*(BaseJob==Job_Assassin); },{},{} -4301,Killer_Mantis_Card,Killer Mantis Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Bleeding,600; },{},{} -4302,Tao_Gunka_Card,Tao Gunka Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxHPrate,100; bonus bDef,-50; bonus bMdef,-50; },{},{} -4303,Whisper_Boss_Card,Giant Whisper Card,6,20,,10,,,,,,,,4,,,,,{ bonus bFlee,10; if(readparam(bStr)>=80) bonus bBaseAtk,20; if(readparam(bVit)>=80) bonus bMaxHPrate,3; if(readparam(bLuk)>=80) bonus bCritical,3; },{},{} -4304,Tamruan_Card,Tamruan Card,6,20,,10,,,,,,,,32,,,,,{ bonus bDef,2; bonus2 bSkillAtk,"CR_SHIELDCHARGE",10; bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",10; },{},{} -4305,Turtle_General_Card,Turtle General Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddClass,Class_All,20; bonus3 bAutoSpell,"SM_MAGNUM",10,30; },{},{} -4306,Toad_Card,Toad Card,6,20,,10,,,,,,,,4,,,,,{ bonus bFlee2,1; },{},{} -4307,Kind_Of_Beetle_Card,Beetle King Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSPGainRace,RC_Fish,5; },{},{ heal 0,-5; } -4308,Tri_Joint_Card,Tri Joint Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSPGainRace,RC_Formless,5; },{},{ heal 0,-5; } -4309,Parasite_Card,Parasite Card,6,20,,10,,,,,,,,32,,,,,{ bonus bDef,1; bonus2 bSubRace,RC_Formless,5; },{},{} -4310,Panzer_Goblin_Card,Panzer Goblin Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Demon,7; },{},{} -4311,Permeter_Card,Permeter Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bSubEle,Ele_Dark,15; bonus2 bSubEle,Ele_Undead,15; },{},{} -4312,Fur_Seal_Card,Seal Card,6,20,,10,,,,,,,,2,,,,,{ bonus bFlee,3; bonus bHit,10; if(BaseClass==Job_Acolyte) { bonus2 bCriticalAddRace,RC_Undead,9; bonus2 bCriticalAddRace,RC_Demon,9; } },{},{} -4313,Punk_Card,Punk Card,6,20,,10,,,,,,,,4,,,,,{ bonus4 bAutoSpellWhenHit,"WZ_QUAGMIRE",1+4*(getskilllv("WZ_QUAGMIRE")==5),50,0; },{},{} -4314,Penomena_Card,Penomena Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_Formless,30; },{},{} -4315,Pest_Card,Pest Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Stone,300+600*(readparam(bInt)>=77); },{},{} -4316,Fake_Angel_Card,False Angel Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSPGainRace,RC_Angel,5; },{},{ heal 0,-5; } -4317,Mobster_Card,Mobster Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,15; if(BaseClass==Job_Thief) bonus bCritical,4; },{},{} -4318,Knight_Windstorm_Card,Stormy Knight Card,6,20,,10,,,,,,,,2,,,,,{ bonus3 bAutoSpell,"WZ_STORMGUST",2,20; bonus2 bAddEff,Eff_Freeze,2000; },{},{} -4319,Freezer_Card,Freezer Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMaxHP,300; if(getrefine()>=9) bonus2 bSkillAtk,"SM_BASH",10; },{},{} -4320,Bloody_Knight_Card,Bloody Knight Card,6,20,,10,,,,,,,,2,,,,,{ bonus3 bAutoSpell,"WZ_METEOR",1,20; },{},{} -4321,Hylozoist_Card,Hylozoist Card,6,20,,10,,,,,,,,136,,,,,{ bonus bClassChange,100; },{},{} -4322,High_Orc_Card,High Orc Card,6,20,,10,,,,,,,,32,,,,,{ bonus bDef,1; bonus bShortWeaponDamageReturn,5; },{},{} -4323,Garm_Baby_Card,Hatii Babe Card,6,20,,10,,,,,,,,2,,,,,{ bonus3 bAutoSpell,"MG_FROSTDIVER",3,50; },{},{} -4324,Garm_Card,Hatii Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Freeze,5000; },{},{} -4325,Harpy_Card,Harpy Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Neutral,15; bonus2 bSkillAtk,"MG_NAPALMBEAT",5; },{},{} -4326,See_Otter_Card,Sea-Otter Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddItemGroupHealRate,IG_Fish,50; bonus3 bAddMonsterDropItem,551,RC_Fish,300; bonus3 bAddMonsterDropItem,544,RC_Fish,300; },{},{} -4327,Blood_Butterfly_Card,Bloody Butterfly Card,6,20,,10,,,,,,,,136,,,,,{ bonus bCastrate,30; bonus bNoCastCancel; bonus2 bSkillAtk,"MG_FIREWALL",5; },{},{} -4328,Hyegun_Card,Yao Jun Card,6,20,,10,,,,,,,,4,,,,,{ bonus bFlee,15; bonus bCritical,1; },{},{} -4329,Phendark_Card,Phendark Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSPGainRace,RC_DemiHuman,5; bonus2 bSPGainRace,RC_Player_Human,5; },{},{ heal 0,-5; } -4330,Dark_Snake_Lord_Card,Evil Snake Lord Card,6,20,,10,,,,,,,,769,,,,,{ bonus bInt,3; bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Curse,10000; },{},{} -4331,Heater_Card,Heater Card,6,20,,10,,,,,,,,136,,,,,{ bonus bCritical,3; if(BaseClass==Job_Swordman) bonus bFlee2,3; },{},{} -4332,Waste_Stove_Card,Waste Stove Card,6,20,,10,,,,,,,,16,,,,,{ bonus bBaseAtk,5; bonus bInt,1; },{},{} -4333,Venomous_Card,Venomous Card,6,20,,10,,,,,,,,16,,,,,{ bonus3 bAddEffWhenHit,Eff_Poison,3000,ATF_TARGET|ATF_SELF; },{},{} -4334,Noxious_Card,Noxious Card,6,20,,10,,,,,,,,4,,,,,{ bonus bLongAtkDef,10; bonus2 bSubEle,Ele_Neutral,10; },{},{} -4335,Pitman_Card,Pitman Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSkillAtk,"WZ_EARTHSPIKE",5; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",5; },{},{ heal 0,-50; } -4336,Ungoliant_Card,Ungoliant Card,6,20,,10,,,,,,,,769,,,,,{ bonus bHPrecovRate,10; bonus2 bResEff,Eff_Bleeding,10000; },{},{} -4337,Porcellio_Card,Porcellio Card,6,20,,10,,,,,,,,16,,,,,{ bonus bBaseAtk,25; bonus bDef,-5; },{},{} -4338,Obsidian_Card,Obsidian Card,6,20,,10,,,,,,,,16,,,,,{ bonus bVit,readparam(bDex)/18; },{},{} -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; bonus bNoKnockback; },{},{} -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; } -4346,Ygnizem_Card,Egnigem Cenia Card,6,20,,10,,,,,,,,16,,,,,{ bonus bStr,readparam(bInt)/18; },{},{} -4347,Armaia_Card,Armeyer Dinze Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12053,RC_Fish,50; },{},{} -4348,Whikebain_Card,Wickebine Tres Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAutoSpell,"RG_STRIPARMOR",1,50; },{},{} -4349,Erend_Card,Errende Ebecee Card,6,20,,10,,,,,,,,136,,,,,{ bonus4 bAutoSpellWhenHit,"AL_PNEUMA",1,50,0; },{},{} -4350,Rawrel_Card,Laurell Weinder Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSkillAtk,"WZ_FROSTNOVA",3; bonus2 bSkillAtk,"WZ_STORMGUST",3; },{},{ heal 0,-50; } -4351,Kavac_Card,Kavach Icarus Card,6,20,,10,,,,,,,,4,,,,,{ if(getrefine()<=4) { bonus bFlee,20; bonus bFlee2,1; } else { bonus bFlee,10; } },{},{} -4352,B_Ygnizem_Card,General Egnigem Cenia Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bHPRegenRate,50,10000; bonus2 bSPRegenRate,10,10000; },{},{} -4353,Removal_Card,Remover Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxHP,800-40*getrefine(); bonus bHPrecovRate,10; },{},{} -4354,Gemini_Card,Gemini-S58 Card,6,20,,10,,,,,,,,769,,,,,{ if(readparam(bAgi)>=90) { bonus2 bResEff,Eff_Silence,3000; bonus2 bResEff,Eff_Stun,3000; } if(readparam(bVit)>=80) { bonus2 bResEff,Eff_Stone,5000; bonus2 bResEff,Eff_Sleep,5000; } },{},{} -4355,Gremlin_Card,Gremlin Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12043,RC_Brute,50; },{},{} -4356,Beholder_Card,Beholder Card,6,20,,10,,,,,,,,136,,,,,{ skill "SA_CASTCANCEL",1; },{},{} -4357,B_Seyren_Card,Lord Knight Card,6,20,,10,,,,,,,,769,,,,,{ skill "LK_BERSERK",1; bonus bMaxHPrate,-50; },{},{} -4358,Seyren_Card,Seyren Windsor Card,6,20,,10,,,,,,,,769,,,,,{ bonus bStr,getrefine()-6; },{},{} -4359,B_Eremes_Card,Assassin Cross Card,6,20,,10,,,,,,,,4,,,,,{ skill "AS_CLOAKING",3; },{},{ sc_end SC_CLOAKING; } -4360,Eremes_Card,Eremes Guile Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bCriticalAddRace,RC_DemiHuman,10; bonus2 bCriticalAddRace,RC_Player_Human,10; },{},{} -4361,B_Harword_Card,MasterSmith Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBreakWeaponRate,1000; bonus bBreakArmorRate,700; },{},{} -4362,Harword_Card,Howard Alt-Eisen Card,6,20,,10,,,,,,,,2,,,,,{ bonus bAspdRate,-5; bonus bHit,30; },{},{} -4363,B_Magaleta_Card,High Priest Card,6,20,,10,,,,,,,,16,,,,,{ bonus5 bAutoSpellWhenHit,"HP_ASSUMPTIO",1,50,BF_WEAPON|BF_MAGIC,0; },{},{} -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; },{},{} -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; },{},{} -4371,Archdam_Card,Archdam Card,6,20,,10,,,,,,,,16,,,,,{ bonus bBaseAtk,10; bonus bCastrate,20; },{},{} -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,,,,,{ bonus bLuk,getrefine()-5; bonus bCritical,getrefine(); },{},{} -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; } },{},{} -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; } },{},{} -4379,Acidus__Card,Blue Acidus Card,6,20,,10,,,,,,,,769,,,,,{ if(getrefine()<=4) { bonus bSPrecovRate,5; bonus bMaxSP,80; } else { bonus bMaxSP,40; } },{},{} -4380,Ferus_Card,Red Ferus Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSkillAtk,"WZ_FIREPILLAR",5; bonus2 bSkillAtk,"WZ_METEOR",5; },{},{ heal 0,-50; } -4381,Ferus__Card,Green Ferus Card,6,20,,10,,,,,,,,64,,,,,{ bonus bVit,1; bonus bMaxHPrate,10; },{},{} -4382,Novus__Card,Yellow Novus Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxHP,500; bonus bHPrecovRate,10; },{},{} -4383,Novus_Card,Red Novus Card,6,20,,10,,,,,,,,16,,,,,{ bonus3 bAddEffWhenHit,Eff_Confusion,3000,ATF_TARGET|ATF_SELF; },{},{} -4384,Hydro_Card,Hydrolancer Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAutoSpell,"SA_SPELLBREAKER",1,100; },{},{} -4385,Dragon_Egg_Card,Dragon Egg Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12048,RC_Dragon,50; },{},{} -4386,Detale_Card,Detardeurus Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMdef,-20; bonus2 bResEff,Eff_Freeze,10000; bonus5 bAutoSpellWhenHit,"SA_LANDPROTECTOR",1,70,BF_MAGIC,0; },{},{} -4387,Ancient_Mimic_Card,Ancient Mimic Card,6,20,,10,,,,,,,,16,,,,,{ bonus bAgi,readparam(bLuk)/18; },{},{} -4388,Deathword_Card,Death Word Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSkillAtk,"MG_NAPALMBEAT",5; bonus2 bSkillAtk,"MG_SOULSTRIKE",5; bonus2 bSkillAtk,"HW_NAPALMVULCAN",5; },{},{ heal 0,-50; } -4389,Plasma_Card,Plasma Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddMonsterDropItem,12118,50; bonus2 bAddMonsterDropItem,12119,50; bonus2 bAddMonsterDropItem,12120,50; bonus2 bAddMonsterDropItem,12121,50; },{},{} -4390,Breeze_Card,Breeze Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,5; bonus2 bAddEff,Eff_Bleeding,500; },{},{} -4391,Retribution_Card,Baroness of Retribution Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12068,RC_Angel,50; },{},{} -4392,Observation_Card,Dame of Sentinel Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDex,readparam(bVit)/18; },{},{} -4393,Shelter_Card,Mistress of Shelter Card,6,20,,10,,,,,,,,16,,,,,{ bonus bInt,readparam(bStr)/18; },{},{} -4394,Solace_Card,Lady Solace Card,6,20,,10,,,,,,,,2,,,,,{ if(BaseJob==Job_Priest) bonus3 bAutoSpell,"CR_GRANDCROSS",5,20; },{},{} -4395,Tha_Maero_Card,Maero of Thanatos Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,5; bonus3 bAutoSpell,"AL_DECAGI",3,50; },{},{} -4396,Tha_Odium_Card,Odium of Thanatos Card,6,20,,10,,,,,,,,64,,,,,{ bonus bAgi,getrefine()-5; },{},{} -4397,Tha_Despero_Card,Despero of Thanatos Card,6,20,,10,,,,,,,,32,,,,,{ bonus bInt,getrefine()-6; },{},{} -4398,Tha_Dolor_Card,Dolor of Thanatos Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bMagicAddRace,RC_Angel,10; },{},{} -4399,Thanatos_Card,Memory of Thanatos Card,6,20,,10,,,,,,,,2,,,,,{ bonus bDefRatioAtkClass,Class_All; bonus bSPDrainValue,-1; bonus bDef,-30; bonus bFlee,-30; },{},{} -4400,Aliza_Card,Aliza Card,6,20,,10,,,,,,,,16,,,,,{ bonus3 bAutoSpellWhenHit,"DC_WINKCHARM",1,50+50*(BaseJob==Job_Dancer); },{},{} -4401,Alicel_Card,Alicel Card,6,20,,10,,,,,,,,16,,,,,{ bonus bFlee,10; bonus bDef,-5; },{},{} -4402,Aliot_Card,Aliot Card,6,20,,10,,,,,,,,4,,,,,{ if(BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Thief) { bonus bStr,2; bonus bMaxHPrate,5; } if(BaseClass==Job_Mage||BaseClass==Job_Archer||BaseClass==Job_Acolyte) { bonus bInt,2; bonus bMaxSPrate,5; } },{},{} -4403,Kiel_Card,Kiel-D-01 Card,6,20,,10,,,,,,,,769,,,,,{ bonus bDelayRate,-30; },{},{} -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; 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; },{},{} -4411,Vanberk_Card,Vanberk Card,6,20,,10,,,,,,,,769,,,,,{ bonus bStr,2; autobonus "{ bonus bCritical,100; }",5,5000,0,"{ specialeffect2 EF_ENHANCE; }"; },{},{} -4412,Isilla_Card,Isilla Card,6,20,,10,,,,,,,,769,,,,,{ bonus bInt,2; autobonus "{ bonus bCastrate,-50; bonus bFlee,30; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }"; },{},{} -4413,Hodremlin_Card,Hodremlin Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubSize,Size_All,15; autobonus2 "{ bonus bFlee2,30; }",3,10000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_WIND; }"; },{},{} -4414,Seeker_Card,Seeker Card,6,20,,10,,,,,,,,32,,,,,{ skill "MG_STONECURSE",1; bonus2 bResEff,Eff_Stone,3000; bonus bMdef,10; },{},{} -4415,Snowier_Card,Snowier Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddMonsterDropItem,536,2000; bonus2 bAddItemHealRate,536,100; },{},{} -4416,Siroma_Card,Siroma Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bSkillAtk,"MG_COLDBOLT",25; bonus2 bCastrate,"MG_COLDBOLT",-25; },{},{} -4417,Ice_Titan_Card,Ice Titan Card,6,20,,10,,,,,,,,64,,,,,{ bonus bVit,2; autobonus2 "{ bonus bDef,10; }",3,10000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_FREEZED; }"; },{},{} -4418,Gazeti_Card,Gazeti Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAutoSpell,"MG_COLDBOLT",2,100; },{},{} -4419,Ktullanux_Card,Ktullanux Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEle,Ele_Fire,50; bonus5 bAutoSpellWhenHit,"WZ_FROSTNOVA",10,20,BF_WEAPON|BF_MAGIC,0; },{},{} -4420,Muscipular_Card,Muscipular Card,6,20,,10,,,,,,,,32,,,,,{ bonus3 bAutoSpellWhenHit,"AL_HEAL",1,100; bonus3 bAutoSpellWhenHit,"AL_INCAGI",1,100; },{},{} -4421,Drosera_Card,Drosera Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCriticalLong,15; },{},{} -4422,Roween_Card,Roween Card,6,20,,10,,,,,,,,4,,,,,{ bonus bFlee,5; bonus bFlee2,3; bonus2 bAddEle,Ele_Water,10; bonus2 bCriticalAddRace,RC_Fish,15; },{},{} -4423,Galion_Card,Galion Card,6,20,,10,,,,,,,,136,,,,,{ bonus bHit,5; bonus2 bAddEle,Ele_Water,5; },{},{} -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)==W_1HSWORD||getiteminfo(getequipid(EQI_HAND_R),11)==W_2HSWORD) { 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)==W_BOW) { bonus bHit,5; bonus bCritical,5; bonus2 bSkillAtk,47,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",2,10; },{},{} -4431,Kasa_Card,Kasa Card,6,20,,10,,,,,,,,4,,,,,{ bonus3 bAutoSpell,"MG_FIREBALL",5,20; bonus3 bAutoSpell,"MG_FIREBOLT",5,20; },{},{} -4432,Magmaring_Card,Magmaring Card,6,20,,10,,,,,,,,4,,,,,{ bonus bBaseAtk,5; bonus2 bAddEle,Ele_Earth,10; bonus2 bCriticalAddRace,RC_Brute,15; bonus2 bCriticalAddRace,RC_Player_Doram,15; bonus2 bCriticalAddRace,RC_Plant,15; },{},{} -4433,Imp_Card,Imp Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bSkillAtk,"MG_FIREBOLT",25; bonus2 bCastrate,"MG_FIREBOLT",-25; },{},{} -4434,Knocker_Card,Knocker Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bAddRace,RC_Formless,5; bonus3 bAddMonsterDropItem,756,RC_Formless,10; bonus3 bAddMonsterDropItem,757,RC_Formless,10; },{},{} -4435,Zombie_Slaughter_Card,Zombie Slaughter Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bAddRace,RC_DemiHuman,1; bonus2 bAddRace,RC_Player_Human,1; bonus2 bMagicAddRace,RC_DemiHuman,1; bonus2 bMagicAddRace,RC_Player_Human,1; bonus bHPGainValue,50; },{},{} -4436,Ragged_Zombie_Card,Ragged Zombie Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bCriticalAddRace,RC_DemiHuman,5; bonus2 bCriticalAddRace,RC_Player_Human,5; bonus2 bAddRace,RC_DemiHuman,1; bonus2 bAddRace,RC_Player_Human,1; bonus2 bMagicAddRace,RC_DemiHuman,1; bonus2 bMagicAddRace,RC_Player_Human,1; bonus2 bAddEff2,Eff_Bleeding,10; },{},{} -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)==W_STAFF) { 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_Human,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; },{},{} -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; },{},{} -4453,Hilsrion_Card,Hillsrion Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,25; },{},{} -// Armor Enchant System -//=================================================================== -4700,Strength1,STR+1,6,20,,10,,,,,,,,,,,,,{ bonus bStr,1; },{},{} -4701,Strength2,STR+2,6,20,,10,,,,,,,,,,,,,{ bonus bStr,2; },{},{} -4702,Strength3,STR+3,6,20,,10,,,,,,,,,,,,,{ bonus bStr,3; },{},{} -4703,Strength4,STR+4,6,20,,10,,,,,,,,,,,,,{ bonus bStr,4; },{},{} -4704,Strength5,STR+5,6,20,,10,,,,,,,,,,,,,{ bonus bStr,5; },{},{} -4705,Strength6,STR+6,6,20,,10,,,,,,,,,,,,,{ bonus bStr,6; },{},{} -4706,Strength7,STR+7,6,20,,10,,,,,,,,,,,,,{ bonus bStr,7; },{},{} -4707,Strength8,STR+8,6,20,,10,,,,,,,,,,,,,{ bonus bStr,8; },{},{} -4708,Strength9,STR+9,6,20,,10,,,,,,,,,,,,,{ bonus bStr,9; },{},{} -4709,Strength10,STR+10,6,20,,10,,,,,,,,,,,,,{ bonus bStr,10; },{},{} -4710,Inteligence1,INT+1,6,20,,10,,,,,,,,,,,,,{ bonus bInt,1; },{},{} -4711,Inteligence2,INT+2,6,20,,10,,,,,,,,,,,,,{ bonus bInt,2; },{},{} -4712,Inteligence3,INT+3,6,20,,10,,,,,,,,,,,,,{ bonus bInt,3; },{},{} -4713,Inteligence4,INT+4,6,20,,10,,,,,,,,,,,,,{ bonus bInt,4; },{},{} -4714,Inteligence5,INT+5,6,20,,10,,,,,,,,,,,,,{ bonus bInt,5; },{},{} -4715,Inteligence6,INT+6,6,20,,10,,,,,,,,,,,,,{ bonus bInt,6; },{},{} -4716,Inteligence7,INT+7,6,20,,10,,,,,,,,,,,,,{ bonus bInt,7; },{},{} -4717,Inteligence8,INT+8,6,20,,10,,,,,,,,,,,,,{ bonus bInt,8; },{},{} -4718,Inteligence9,INT+9,6,20,,10,,,,,,,,,,,,,{ bonus bInt,9; },{},{} -4719,Inteligence10,INT+10,6,20,,10,,,,,,,,,,,,,{ bonus bInt,10; },{},{} -4720,Dexterity1,DEX+1,6,20,,10,,,,,,,,,,,,,{ bonus bDex,1; },{},{} -4721,Dexterity2,DEX+2,6,20,,10,,,,,,,,,,,,,{ bonus bDex,2; },{},{} -4722,Dexterity3,DEX+3,6,20,,10,,,,,,,,,,,,,{ bonus bDex,3; },{},{} -4723,Dexterity4,DEX+4,6,20,,10,,,,,,,,,,,,,{ bonus bDex,4; },{},{} -4724,Dexterity5,DEX+5,6,20,,10,,,,,,,,,,,,,{ bonus bDex,5; },{},{} -4725,Dexterity6,DEX+6,6,20,,10,,,,,,,,,,,,,{ bonus bDex,6; },{},{} -4726,Dexterity7,DEX+7,6,20,,10,,,,,,,,,,,,,{ bonus bDex,7; },{},{} -4727,Dexterity8,DEX+8,6,20,,10,,,,,,,,,,,,,{ bonus bDex,8; },{},{} -4728,Dexterity9,DEX+9,6,20,,10,,,,,,,,,,,,,{ bonus bDex,9; },{},{} -4729,Dexterity10,DEX+10,6,20,,10,,,,,,,,,,,,,{ bonus bDex,10; },{},{} -4730,Agility1,AGI+1,6,20,,10,,,,,,,,,,,,,{ bonus bAgi,1; },{},{} -4731,Agility2,AGI+2,6,20,,10,,,,,,,,,,,,,{ bonus bAgi,2; },{},{} -4732,Agility3,AGI+3,6,20,,10,,,,,,,,,,,,,{ bonus bAgi,3; },{},{} -4733,Agility4,AGI+4,6,20,,10,,,,,,,,,,,,,{ bonus bAgi,4; },{},{} -4734,Agility5,AGI+5,6,20,,10,,,,,,,,,,,,,{ bonus bAgi,5; },{},{} -4735,Agility6,AGI+6,6,20,,10,,,,,,,,,,,,,{ bonus bAgi,6; },{},{} -4736,Agility7,AGI+7,6,20,,10,,,,,,,,,,,,,{ bonus bAgi,7; },{},{} -4737,Agility8,AGI+8,6,20,,10,,,,,,,,,,,,,{ bonus bAgi,8; },{},{} -4738,Agility9,AGI+9,6,20,,10,,,,,,,,,,,,,{ bonus bAgi,9; },{},{} -4739,Agility10,AGI+10,6,20,,10,,,,,,,,,,,,,{ bonus bAgi,10; },{},{} -4740,Vitality1,VIT+1,6,20,,10,,,,,,,,,,,,,{ bonus bVit,1; },{},{} -4741,Vitality2,VIT+2,6,20,,10,,,,,,,,,,,,,{ bonus bVit,2; },{},{} -4742,Vitality3,VIT+3,6,20,,10,,,,,,,,,,,,,{ bonus bVit,3; },{},{} -4743,Vitality4,VIT+4,6,20,,10,,,,,,,,,,,,,{ bonus bVit,4; },{},{} -4744,Vitality5,VIT+5,6,20,,10,,,,,,,,,,,,,{ bonus bVit,5; },{},{} -4745,Vitality6,VIT+6,6,20,,10,,,,,,,,,,,,,{ bonus bVit,6; },{},{} -4746,Vitality7,VIT+7,6,20,,10,,,,,,,,,,,,,{ bonus bVit,7; },{},{} -4747,Vitality8,VIT+8,6,20,,10,,,,,,,,,,,,,{ bonus bVit,8; },{},{} -4748,Vitality9,VIT+9,6,20,,10,,,,,,,,,,,,,{ bonus bVit,9; },{},{} -4749,Vitality10,VIT+10,6,20,,10,,,,,,,,,,,,,{ bonus bVit,10; },{},{} -4750,Luck1,LUK+1,6,20,,10,,,,,,,,,,,,,{ bonus bLuk,1; },{},{} -4751,Luck2,LUK+2,6,20,,10,,,,,,,,,,,,,{ bonus bLuk,2; },{},{} -4752,Luck3,LUK+3,6,20,,10,,,,,,,,,,,,,{ bonus bLuk,3; },{},{} -4753,Luck4,LUK+4,6,20,,10,,,,,,,,,,,,,{ bonus bLuk,4; },{},{} -4754,Luck5,LUK+5,6,20,,10,,,,,,,,,,,,,{ bonus bLuk,5; },{},{} -4755,Luck6,LUK+6,6,20,,10,,,,,,,,,,,,,{ bonus bLuk,6; },{},{} -4756,Luck7,LUK+7,6,20,,10,,,,,,,,,,,,,{ bonus bLuk,7; },{},{} -4757,Luck8,LUK+8,6,20,,10,,,,,,,,,,,,,{ bonus bLuk,8; },{},{} -4758,Luck9,LUK+9,6,20,,10,,,,,,,,,,,,,{ bonus bLuk,9; },{},{} -4759,Luck10,LUK+10,6,20,,10,,,,,,,,,,,,,{ bonus bLuk,10; },{},{} -4760,Matk1,MATK+1%,6,20,,10,,,,,,,,,,,,,{ bonus bMatkRate,1; },{},{} -4761,Matk2,MATK+2%,6,20,,10,,,,,,,,,,,,,{ bonus bMatkRate,2; },{},{} -4762,Evasion6,FLEE+6,6,20,,10,,,,,,,,,,,,,{ bonus bFlee,6; },{},{} -4763,Evasion12,FLEE+12,6,20,,10,,,,,,,,,,,,,{ bonus bFlee,12; },{},{} -4764,Critical5,CRI+5,6,20,,10,,,,,,,,,,,,,{ bonus bCritical,5; },{},{} -4765,Critical7,CRI+7,6,20,,10,,,,,,,,,,,,,{ bonus bCritical,7; },{},{} -4766,Atk2,ATK+2%,6,20,,10,,,,,,,,,,,,,{ bonus2 bAddClass,Class_All,2; },{},{} -4767,Atk3,ATK+3%,6,20,,10,,,,,,,,,,,,,{ bonus2 bAddClass,Class_All,3; },{},{} -4768,Str1_J,STR+1,6,20,,10,,,,,,,,,,,,,{},{},{} -4769,Str2_J,STR+2,6,20,,10,,,,,,,,,,,,,{},{},{} -4770,Str3_J,STR+3,6,20,,10,,,,,,,,,,,,,{},{},{} -4771,Int1_J,INT+1,6,20,,10,,,,,,,,,,,,,{},{},{} -4772,Int2_J,INT+2,6,20,,10,,,,,,,,,,,,,{},{},{} -4773,Int3_J,INT+3,6,20,,10,,,,,,,,,,,,,{},{},{} -4774,Vit1_J,VIT+1,6,20,,10,,,,,,,,,,,,,{},{},{} -4775,Vit2_J,VIT+2,6,20,,10,,,,,,,,,,,,,{},{},{} -4776,Vit3_J,VIT+3,6,20,,10,,,,,,,,,,,,,{},{},{} -4777,Agi1_J,AGI+1,6,20,,10,,,,,,,,,,,,,{},{},{} -4778,Agi2_J,AGI+2,6,20,,10,,,,,,,,,,,,,{},{},{} -4779,Agi3_J,AGI+3,6,20,,10,,,,,,,,,,,,,{},{},{} -4780,Dex1_J,DEX+1,6,20,,10,,,,,,,,,,,,,{},{},{} -4781,Dex2_J,DEX+2,6,20,,10,,,,,,,,,,,,,{},{},{} -4782,Dex3_J,DEX+3,6,20,,10,,,,,,,,,,,,,{},{},{} -4783,Luk1_J,LUK+1,6,20,,10,,,,,,,,,,,,,{},{},{} -4784,Luk2_J,LUK+2,6,20,,10,,,,,,,,,,,,,{},{},{} -4785,Luk3_J,LUK+3,6,20,,10,,,,,,,,,,,,,{},{},{} -// More Headgears -//=================================================================== -5001,Headset,Headset,4,20,,200,,3,,0,0xFFFFFFFE,7,2,256,,1,1,87,{ bonus2 bResEff,Eff_Curse,1000; },{},{} -5002,Gemmed_Crown,Jewel Crown,4,20,,600,,4,,0,0x000654E2,7,2,256,,60,1,88,{ bonus bInt,2; bonus bLuk,1; bonus bMdef,3; },{},{} -5003,Joker_Jester,Joker Jester,4,20,,100,,1,,0,0xFFFFFFFE,7,2,256,,0,1,89,{ bonus bLuk,2; bonus bMdef,5; },{},{} -5004,Oxygen_Mask,Oxygen Mask,4,20,,200,,0,,0,0xFFFFFFFE,7,2,1,,0,0,90,{ bonus2 bResEff,Eff_Poison,2000; },{},{} -5005,Gas_Mask,Gas Mask,4,20,,100,,1,,0,0xFFFFFFFE,7,2,513,,0,0,91,{ bonus2 bResEff,Eff_Poison,3000; },{},{} -5006,Machoman_Glasses,Machoman's Glasses,4,36000,,100,,1,,0,0xFFFFFFFE,7,2,512,,0,0,92,{},{},{} -5007,Loard_Circlet,Grand Circlet,4,20,,200,,3,,0,0xFFFFFFFE,7,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,7,2,256,,0,0,94,{},{},{} -5009,Safety_Helmet,Safety Helmet,4,20,,500,,3,,0,0xFFFFFFFE,7,2,256,,0,1,95,{ bonus bMdef,3; bonus bUnbreakableHelm; },{},{} -5010,Indian_Hair_Piece,Indian Fillet,4,20,,100,,3,,0,0xFFFFFFFF,7,2,256,,0,1,96,{},{},{} -5011,Antenna,Aerial,4,20,,100,,3,,0,0xFFFFFFFF,7,2,256,,0,1,97,{},{},{} -5012,Ph.D_Hat,Ph.D Hat,4,20,,200,,3,,0,0xFFFFFFFE,7,2,256,,0,1,98,{},{},{} -5013,Horn_Of_Lord_Kaho,Lord Kaho's Horn,4,20,,100,,5,,0,0xFFFFFFFF,7,2,256,,0,1,99,{ bonus bMdef,10; bonus bStr,5; bonus bAgi,10; bonus bVit,10; bonus bInt,5; bonus bLuk,20; },{},{} -5014,Fin_Helm,Fin Helm,4,20,,300,,2,,0,0x00004082,7,2,512,,65,0,100,{},{},{} -5015,Egg_Shell,Egg Shell,4,20,,200,,3,,0,0xFFFFFFFF,7,2,256,,0,0,101,{},{},{} -5016,Boy's_Cap,Boy's Cap,4,20,,100,,2,,0,0xFFFFFFFE,7,2,256,,0,1,102,{},{},{} -5017,Bone_Helm,Bone Helm,4,20,,800,,7,,0,0x000444A2,7,2,256,,70,1,103,{ bonus2 bSubEle,Ele_Dark,-15; },{},{} -5018,Feather_Bonnet,Feather Bonnet,4,20,,300,,4,,0,0x00080808,7,2,256,,0,1,104,{ bonus bAgi,1; },{},{} -5019,Corsair,Corsair,4,20,,500,,5,,0,0xFFFFFFFE,7,2,256,,0,1,105,{ bonus bVit,1; },{},{} -5020,Kafra_Band,Kafra Band,4,20,,500,,3,,0,0xFFFFFFFF,7,2,256,,0,1,106,{ bonus bMdef,3; },{},{} -5021,Bankruptcy_Of_Heart,Grief for Greed,4,20,,1200,,4,,0,0x00040420,7,2,256,,38,1,107,{ bonus bInt,1; bonus bDex,1; },{},{} -5022,Helm_Of_Sun,Hat of the Sun God,4,20,,2400,,4,,0,0x00CFDF80,7,2,768,,0,1,138,{ bonus bStr,3; bonus bInt,2; },{},{} -5023,Hat_Of_Bundle,Parcel Hat,4,20,,1000,,0,,0,0x00040420,7,2,256,,0,1,108,{},{},{} -5024,Hat_Of_Cake,Cake Hat,4,20,,1000,,1,,0,0xFFFFFFFF,7,2,256,,0,1,109,{},{},{} -5025,Helm_Of_Angel,Helm of Angel,4,20,,1600,,5,,0,0x00CFDF80,7,2,256,,74,1,110,{ bonus bAgi,1; bonus bLuk,1; bonus bMdef,3; },{},{} -5026,Hat_Of_Cook,Chef Hat,4,20,,300,,1,,0,0xFFFFFFFE,7,2,256,,50,1,111,{ bonus bDex,1; },{},{} -5027,Wizardry_Hat,Mage Hat,4,20,,300,,1,,0,0x00810204,7,2,256,,0,1,112,{ bonus bInt,2; bonus bMaxSP,150; },{},{} -5028,Candle,Candle,4,20,,150,,0,,0,0xFFFFFFFF,7,2,256,,0,1,113,{},{},{} -5029,Spore_Hat,Spore Hat,4,20,,900,,3,,0,0xFFFFFFFE,7,2,256,,20,1,114,{},{},{} -5030,Panda_Cap,Panda Hat,4,20,,800,,3,,0,0xFFFFFFFE,7,2,256,,40,1,115,{},{},{} -5031,Mine_Helm,Mine Hat,4,20,,1500,,4,,0,0x0006D5F2,7,2,256,,55,1,116,{ bonus bDex,2; },{},{} -5032,Picnic_Hat,Sunday Hat,4,20,,800,,1,,0,0xFFFFFFFE,7,2,256,,0,1,117,{},{},{} -5033,Smokie_Hat,Raccoon Hat,4,20,,900,,3,,0,0xFFFFFFFE,7,2,256,,50,1,118,{},{},{} -5034,Light_Bulb_Band,Bulb Band,4,20,,500,,0,,0,0xFFFFFFFE,7,2,256,,0,1,119,{},{},{} -5035,Poring_Hat,Poring Hat,4,20,,700,,2,,0,0xFFFFFFFE,7,2,256,,38,1,120,{},{},{} -5036,Cross_Band,Cross Hat,4,20,,250,,1,,0,0xFFFFFFFE,7,2,256,,10,1,121,{},{},{} -5037,Fruit_Shell,Nut Shell,4,20,,150,,4,,0,0xFFFFFFFF,7,2,256,,5,0,122,{},{},{} -5038,Deviruchi_Cap,Deviruchi Hat,4,20,,800,,2,,0,0xFFFFFFFE,7,2,256,,64,1,123,{ bonus bStr,1; bonus bInt,1; },{},{} -5039,Mottled_Egg_Shell,Rainbow Eggshell,4,20,,400,,4,,0,0xFFFFFFFF,7,2,256,,19,0,124,{},{},{} -5040,Blush,Blush,4,20,,100,,0,,0,0xFFFFFFFF,7,2,512,,0,0,125,{},{},{} -5041,Heart_Hair_Pin,Heart Hairpin,4,20,,100,,0,,0,0xFFFFFFFF,7,2,256,,0,1,126,{},{},{} -5042,Hair_Protector,Bao Bao,4,20,,150,,0,,0,0xFFFFFFFE,7,2,256,,14,1,127,{},{},{} -5043,Opera_Ghost_Mask,Opera Phantom Mask,4,20,,200,,1,,0,0xFFFFFFFE,7,2,512,,20,0,128,{},{},{} -5044,Devil's_Wing,Evil Wing Ears,4,20,,350,,2,,0,0x0,7,2,256,,45,1,129,{ bonus bVit,1; },{},{} -5045,Magician_Hat,Magician Hat,4,20,,500,,3,,0,0x00818314,7,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,7,2,769,,0,0,139,{},{},{} -5047,Fashion_Sunglass,Fashionable Glasses,4,20,,100,,0,,0,0xFFFFFFFE,7,2,256,,0,1,131,{},{},{} -5048,First_Moon_Hair_Pin,Cresent Hairpin,4,20,,100,,0,,0,0xFFFFFFFF,7,2,256,,0,1,132,{},{},{} -5049,Stripe_Band,Striped Hairband,4,20,,150,,1,,0,0xFFFFFFFF,7,2,256,,0,0,133,{},{},{} -5050,Mystery_Fruit_Shell,Wonder Nutshell,4,20,,300,,5,,0,0xFFFFFFFF,7,2,256,,30,0,134,{},{},{} -5051,Kitty_Bell,Pussy Cat Bell,4,20,,100,,0,,0,0x0,7,2,1,,0,0,135,{},{},{} -5052,Blue_Hair_Band,Blue Hairband,4,20,,150,,1,,0,0xFFFFFFFF,7,2,256,,0,1,136,{},{},{} -5053,Spinx_Helm,Sphinx Hat,4,20,,3000,,5,,0,0x00004082,7,2,257,,65,0,137,{ bonus bStr,2; },{},{} -5054,Assassin_Mask,Assassin Mask,4,20,,100,,0,,0,0x00001100,7,2,1,,70,0,180,{},{},{} -5055,Novice_Egg_Cap,Novice False Eggshell,4,1,,1,,3,,0,0x00000001,7,2,256,,0,0,101,{},{},{} -5056,Love_Berry,Fruit of Love,4,1,,100,,0,,0,0xFFFFFFFF,7,2,256,,0,0,140,{},{},{} -5057,Ear_Of_Black_Cat,Black Cat Ears,4,16000,,200,,2,,0,0xFFFFFFFF,7,2,256,,45,1,141,{},{},{} -5058,Drooping_Kitty,Drooping Cat,4,250000,,500,,1,,0,0xFFFFFFFE,7,2,256,,0,1,142,{ bonus bMdef,15; bonus2 bResEff,Eff_Curse,3000; },{},{} -5059,Brown_Bear_Cap,Teddybear Hat,4,20,,800,,3,,0,0xFFFFFFFF,7,2,256,,50,1,143,{},{},{} -5060,Party_Hat,Party Hat,4,20,,300,,3,,0,0xFFFFFFFF,7,2,256,,0,1,144,{ bonus bLuk,1; },{},{} -5061,Flower_Hairpin,Flower Hairpin,4,20,,100,,1,,0,0xFFFFFFFF,7,2,256,,0,1,145,{},{},{} -5062,Straw_Hat,Straw Hat,4,20,,200,,3,,0,0xFFFFFFFF,7,2,256,,50,1,146,{ bonus bAgi,1; },{},{} -5063,Plaster,Giant Band Aid,4,20,,100,,1,,0,0xFFFFFFFE,7,2,256,,0,1,147,{},{},{} -5064,Leaf_Headgear,Smokie Leaf,4,20,,100,,1,,0,0xFFFFFFFF,7,2,256,,0,1,148,{},{},{} -5065,Fish_On_Head,Blue Fish,4,20,,500,,2,,0,0xFFFFFFFF,7,2,256,,50,1,149,{ bonus2 bAddRace,RC_Fish,10; },{},{} -5066,Horn_Of_Succubus,Succubus Horn,4,20,,800,,4,,0,0xFFFFFFFE,7,2,256,,70,1,150,{ bonus bInt,1; bonus bMdef,10; },{},{} -5067,Sombrero,Sombrero,4,20,,350,,4,,0,0xFFFFFFFE,7,2,256,,0,1,151,{ bonus bAgi,1; },{},{} -5068,Ear_Of_Devil's_Wing,Evil Wing Ears,4,20,,100,,1,,0,0xFFFFFFFF,7,2,512,,70,0,152,{ bonus bStr,1; },{},{} -5069,Mask_Of_Fox,Kitsune Mask,4,20,,300,,1,,0,0xFFFFFFFE,7,2,256,,0,1,153,{ bonus bAgi,1; bonus bLuk,1; },{},{} -5070,Headband_Of_Power,Hot-blooded Headband,4,20,,100,,1,,0,0xFFFFFFFE,7,2,256,,0,1,154,{ bonus bStr,2; },{},{} -5071,Indian_Headband,Indian Headband,4,20,,200,,1,,0,0xFFFFFFFE,7,2,256,,0,1,155,{ bonus bDex,1; },{},{} -5072,Inccubus_Horn,Incubus Horn,4,20,,800,,4,,0,0xFFFFFFFE,7,2,256,,70,1,156,{ bonus bAgi,1; bonus bMdef,10; },{},{} -5073,Cap_Of_Concentration,Model Training Hat,4,20,,700,,2,,0,0xFFFFFFFE,7,2,256,,0,1,157,{ bonus bDex,2; },{},{} -5074,Ear_Of_Angel's_Wing,Angel Wing Ears,4,20,,100,,1,,0,0xFFFFFFFF,7,2,512,,70,0,158,{ bonus bStr,1; },{},{} -5075,Cowboy_Hat,Cowboy Hat,4,20,,500,,4,,0,0xFFFFFFFF,7,2,256,,0,1,159,{},{},{} -5076,Fur_Hat,Beanie,4,20,,350,,2,,0,0xFFFFFFFF,7,2,256,,0,1,160,{ bonus bLuk,1; },{},{} -5077,Tulip_Hairpin,Tulip Hairpin,4,20,,100,,1,,0,0xFFFFFFFF,7,2,256,,0,1,161,{},{},{} -5078,Sea_Otter_Cap,Sea-Otter Hat,4,20,,800,,3,,0,0xFFFFFFFF,7,2,256,,50,1,162,{ bonus bVit,1; },{},{} -5079,Crossed_Hair_Band,X Hairpin,4,20,,100,,1,,0,0xFFFFFFFF,7,2,256,,0,1,163,{},{},{} -5080,Headgear_Of_Queen,Crown of Ancient Queen,4,20,,400,,4,,0,0xFFFFFFFF,7,2,256,,45,1,164,{},{},{} -5081,Mistress_Crown,Crown of Mistress,4,20,,100,,0,,0,0xFFFFFFFE,7,2,256,,75,1,165,{ bonus bMaxSP,100; bonus bInt,2; bonus bUnbreakableHelm; },{},{} -5082,Mushroom_Band,Decorative Mushroom,4,20,,100,,2,,0,0xFFFFFFFF,7,2,256,,0,1,166,{},{},{} -5083,Red_Tailed_Ribbon,Red Ribbon,4,20,,200,,1,,0,0xFFFFFFFF,7,2,256,,45,1,167,{ bonus bMdef,10; },{},{} -5084,Lazy_Raccoon,Lazy Smokie,4,20,,500,,1,,0,0xFFFFFFFE,7,2,256,,0,1,168,{ bonus2 bResEff,Eff_Sleep,2000; },{},{} -5085,Pair_Of_Red_Ribbon,Small Ribbons,4,20,,100,,1,,0,0xFFFFFFFF,7,2,512,,45,0,169,{},{},{} -5086,Alarm_Mask,Alarm Mask,4,20,,100,,2,,0,0xFFFFFFFE,7,2,513,,0,0,170,{ bonus2 bResEff,Eff_Blind,5000; },{},{} -5087,Goblin_Mask_01,Poker Face,4,20,,100,,1,,0,0xFFFFFFFF,7,2,513,,0,0,171,{},{},{} -5088,Goblin_Mask_02,Surprised Mask,4,20,,100,,1,,0,0xFFFFFFFF,7,2,513,,0,0,172,{},{},{} -5089,Goblin_Mask_03,Annoyed Mask,4,20,,100,,1,,0,0xFFFFFFFF,7,2,513,,0,0,173,{},{},{} -5090,Goblin_Mask_04,Goblin Leader Mask,4,20,,100,,2,,0,0xFFFFFFFF,7,2,513,,0,0,174,{},{},{} -5091,Big_Golden_Bell,Decorative Golden Bell,4,20,,200,,2,,0,0xFFFFFFFE,7,2,768,,35,1,175,{},{},{} -5092,Blue_Coif,Coif,4,150000,,300,,5,,0,0x00001100,7,2,768,,65,1,176,{},{},{} -5093,Blue_Coif_,Coif,4,150000,,300,,5,,1,0x00001100,7,2,768,,65,1,177,{ bonus bMaxSP,100; },{},{} -5094,Orc_Hero_Helm,Helmet of Orc Hero,4,500000,,900,,5,,0,0xFFFFFFFE,7,2,768,,55,1,178,{ bonus bStr,2; bonus bVit,1; },{},{} -//5095,Orc_Hero_Helm_,Helmet of Orc Hero,4,800000,,1000,,5,,1,0xFFFFFFFE,7,2,768,,55,1,179,{ bonus bStr,2; bonus bVit,1; },{},{} -5096,Assassin_Mask_,Assassin Mask,4,20,,100,,0,,0,0x00001100,7,2,1,,70,0,180,{},{},{} -5097,Cone_Hat_,Holiday Hat,4,0,,400,,0,,0,0xFFFFFFFF,7,2,256,,0,1,144,{},{},{} -5098,Tiger_Mask,Tiger Mask,4,20,,400,,2,,0,0xFFFFFFFF,7,2,768,,50,0,181,{ bonus bStr,3; bonus bMaxHP,100; },{},{} -5099,Cat_Hat,Neko Mimi,4,20,,300,,1,,0,0xFFFFFFFF,7,2,256,,0,1,182,{ bonus bLuk,2; bonus bMdef,10; bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5; },{},{} -5100,Sales_Signboard,Sales Banner,4,20,,800,,0,,0,0xFFFFFFFF,7,2,256,,75,1,183,{ bonus bStr,1; bonus bAgi,1; bonus bLuk,1; },{},{} -5101,Takius_Blindfold,Takius's Blindfold,4,20,,100,,0,,0,0xFFFFFFFF,7,2,512,,0,0,184,{},{},{} -5102,Round_Eyes,Blank Eyes,4,20,,100,,0,,0,0xFFFFFFFF,7,2,512,,0,0,185,{},{},{} -5103,Sunflower_Hairpin,Sunflower Hairpin,4,20,,600,,1,,0,0xFFFFFFFE,7,2,256,,30,0,186,{ bonus bAgi,2; bonus bCritical,5; },{},{} -5104,Dark_Blindfold,Dark Blinder,4,20,,100,,0,,0,0xFFFFFFFE,7,2,512,,0,0,187,{ bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Stun,200; },{},{} -5105,Hat_Of_Cake_,2nd Anniversary Hat,4,20,,1000,,1,,0,0xFFFFFFFF,7,2,256,,24,1,109,{ bonus bDex,1; bonus bMaxSP,80; bonus3 bAddMonsterDropItem,7864,7,50; },{},{} -5106,Cone_Hat_INA,2nd Anniversary Hat,4,20,,300,,3,,0,0xFFFFFFFF,7,2,256,,1,0,144,{ bonus bLuk,1; },{},{} -5107,Well_Baked_Toast,Crunch Toast,4,20,,50,,0,,0,0xFFFFFFFF,7,2,1,,0,0,188,{},{},{} -5108,Detective_Hat,Renown Detective's Cap,4,20,,350,,3,,1,0xFFFFFFFF,7,2,256,,0,1,189,{},{},{} -5109,Red_Bonnet,Red Bonnet,4,20,,400,,2,,0,0xFFFFFFFF,7,2,256,,0,1,190,{},{},{} -5110,Baby_Pacifier,Baby Pacifier,4,20,,50,,0,,0,0xFFFFFFFF,7,2,1,,0,0,191,{},{},{} -5111,Galapago_Cap,Galapago Cap,4,20,,500,,2,,0,0xFFFFFFFF,7,2,256,,55,1,192,{ bonus2 bAddMonsterDropItem,605,100; },{},{} -5112,Super_Novice_Hat,Super Novice Hat,4,8500,,400,,4,,0,0x00000001,7,2,256,,40,1,193,{ bonus bAllStats,1; },{},{} -5113,Angry_Mouth,Angry Snarl,4,20,,50,,0,,0,0xFFFFFFFF,7,2,1,,0,0,194,{},{},{} -5114,Fedora,Bucket Hat,4,6000,,300,,3,,0,0xFFFFFFFF,7,2,256,,0,1,195,{},{},{} -5115,Winter_Hat,Winter Hat,4,20,,500,,3,,0,0xFFFFFFFF,7,2,256,,0,1,196,{ bonus2 bResEff,Eff_Freeze,1000; },{},{} -5116,Banana_Hat,Banana Hat,4,20,,200,,1,,0,0xFFFFFFFF,7,2,256,,0,1,197,{ bonus3 bAutoSpell,"SM_PROVOKE",3,30; },{},{} -5117,Mistic_Rose,Mystic Rose,4,20,,100,,0,,0,0xFFFFFFFF,7,2,256,,0,1,198,{ bonus2 bSubRace,RC_Plant,2; },{},{} -5118,Ear_Of_Puppy,Puppy Headband,4,20,,100,,2,,0,0xFFFFFFFF,7,2,256,,0,1,199,{},{},{} -5119,Super_Novice_Hat_,Super Novice Hat,4,8500,,400,,4,,1,0x00000001,7,2,256,,40,1,193,{ bonus bAllStats,1; },{},{} -5120,Fedora_,Bucket Hat,4,6000,,300,,3,,1,0xFFFFFFFF,7,2,256,,0,1,195,{},{},{} -5121,Zherlthsh_Mask,Zealotus Mask,4,20,,400,,3,,0,0xFFFFFFFE,7,2,768,,70,1,200,{ bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; },{},{} -5122,Magni_Cap,Magni's Cap,4,30000,,1000,,5,,0,0xFFFFFFFE,7,2,256,,65,1,250,{ bonus bStr,2; },{},{} -5123,Ulle_Cap,Ulle's Cap,4,30000,,500,,3,,1,0xFFFFFFFE,7,2,256,,65,1,254,{ bonus bDex,2; bonus bAgi,1; },{},{} -5124,Fricca_Circlet,Fricca's Circlet,4,30000,,300,,3,,0,0xFFFFFFFE,7,2,256,,65,1,251,{ bonus bMdef,10; bonus bInt,2; bonus bMaxSP,50; },{},{} -5125,Kiss_Of_Angel,Angel's Kiss,4,10000,,300,,3,,1,0x00000001,7,2,256,,50,1,255,{ bonus bSPrecovRate,5; },{},{} -5126,Morpheus's_Hood,Morpheus's Hood,4,30000,,200,,1,,0,0xFFFFFFFE,7,2,256,,33,1,256,{ bonus bInt,2; },{},{} -5127,Morrigane's_Helm,Morrigane's Helm,4,30000,,500,,4,,0,0xFFFFFFFE,7,2,256,,61,1,257,{ bonus bLuk,2; bonus bBaseAtk,3; },{},{} -5128,Goibne's_Helmet,Goibne's Helm,4,30000,,500,,5,,0,0xFFFFFFFE,7,2,256,,54,1,258,{ bonus bVit,3; bonus bMdef,3; },{},{} -5129,Bird_Nest,Bird Nest,4,20,,400,,1,,0,0xFFFFFFFF,7,2,256,,50,0,201,{ bonus bAgi,2; bonus2 bSubRace,RC_Brute,10; bonus2 bSubRace,RC_Player_Doram,10; },{},{} -5130,Lion_Mask,Lion Mask,4,20,,700,,0,,0,0x00CFDF80,7,2,768,,75,1,202,{ bonus2 bAddEffWhenHit,Eff_Silence,500; bonus bMdef,1; },{},{} -5131,Close_Helmet,Close Helmet,4,20,,1200,,8,,0,0x00004082,7,2,769,,75,1,203,{ bonus bVit,3; bonus bMaxHPrate,3; },{},{} -5132,Angeling_Hat,Angeling Hat,4,20,,700,,2,,0,0xFFFFFFFF,7,2,256,,0,0,204,{ bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; },{},{} -5133,Sheep_Hat,Sheep Hat,4,20,,150,,1,,0,0x00008110,7,2,256,,0,0,205,{ bonus bShortWeaponDamageReturn,5; },{},{} -5134,Pumpkin_Hat,Pumpkin-Head,4,20,,200,,2,,0,0xFFFFFFFF,7,2,256,,0,1,206,{ bonus2 bSubRace,RC_Demon,5; },{},{} -5135,Cyclops_Visor,Cyclop's Eye,4,0,,200,,0,,0,0xFFFFFFFE,7,2,512,,75,0,207,{ bonus bMaxSP,50; },{},{} -5136,Santa's_Hat_,Antonio's Santa Hat,4,20,,100,,2,,0,0xFFFFFFFF,7,2,256,,0,1,20,{},{},{} -5137,Alice_Doll,Alice Doll,4,20,,500,,0,,1,0xFFFFFFFE,7,2,256,,30,0,208,{ bonus bStr,1; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus2 bAddEff2,Eff_Sleep,10; },{},{} -5138,Magic_Eyes,Magic Eyes,4,20,,300,,1,,0,0x00810204,7,2,256,,30,1,209,{ bonus bMdef,5; bonus bCastrate,-10; bonus bUseSPrate,20; },{},{} -5139,Hibiscus,Hibiscus,4,20,,200,,0,,0,0xFFFFFFFF,7,2,256,,10,0,210,{ bonus bDex,1; bonus bInt,1; bonus bMdef,5; },{},{} -5140,Charming_Ribbon,Charming Ribbon,4,20,,400,,1,,1,0xFFFFFFFF,7,2,256,,10,1,211,{ bonus2 bSubRace,RC_Undead,5; bonus2 bSubRace,RC_Demon,5; },{},{} -5141,Marionette_Doll,Marionette Doll,4,20,,400,,0,,1,0xFFFFFFFE,7,2,256,,30,1,212,{ bonus bStr,1; },{},{} -5142,Crescent_Helm,Crescent Helm,4,20,,3000,,8,,0,0x000444A2,7,2,768,,50,1,213,{ bonus bVit,1; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; },{},{} -5143,Kabuki_Mask,Kabuki Mask,4,20,,1000,,5,,1,0xFFFFFFFE,7,1,769,,30,1,214,{ bonus2 bResEff,Eff_Silence,3000; },{},{} -5144,Gambler_Hat,Gambler Hat,4,20,,200,,2,,0,0xFFFFFFFF,7,2,256,,0,1,16,{ bonus bLuk,5; },{},{} -5145,Carnival_Joker_Jester,Carnival Joker Jester,4,10,,100,,0,,0,0xFFFFFFFF,7,2,256,,0,1,89,{},{},{} -5146,Elephant_Hat,Elephant Hat,4,0,,500,,0,,0,0xFFFFFFFF,7,2,256,,0,1,215,{ bonus bVit,1; bonus2 bSubRace,RC_Brute,7; skill "WZ_WATERBALL",1; },{},{} -5147,Baseball_Cap,Baseball Cap,4,0,,200,,3,,1,0xFFFFFFFF,7,2,256,,0,1,216,{},{},{} -5148,Phrygian_Cap,Phrygian Cap,4,0,,500,,0,,0,0xFFFFFFFF,7,2,256,,0,1,217,{ bonus bInt,2; },{},{} -5149,Silver_Tiara,Silver Tiara,4,0,,100,,0,,0,0xFFFFFFFF,7,2,256,,0,1,218,{ bonus bInt,2; },{},{} -5150,Joker_Jester_,Joker Jester,4,20,,100,,1,,0,0xFFFFFFFF,7,2,256,,0,0,219,{ bonus bSpeedRate,25; },{},{} -5151,Headset_OST,Note Headphones,4,20,,200,,4,,1,0xFFFFFFFF,7,2,768,,0,1,220,{ bonus bMdef,3; bonus2 bResEff,Eff_Stun,1000; bonus2 bResEff,Eff_Freeze,1000; },{},{} -5152,Chinese_Crown,Chinese Crown,4,20,,2000,,2,,0,0xFFFFFFFF,7,2,768,,1,1,221,{ bonus2 bResEff,Eff_Stun,1000; bonus bInt,1; },{},{} -5153,Angeling_Hairpin,Angeling Hairpin,4,20,,700,,3,,0,0xFFFFFFFF,7,2,256,,0,1,222,{ bonus bFlee,5; },{},{} -5154,Sunglasses_F,Father's Sunglasses,4,20,,100,,3,,0,0xFFFFFFFF,7,2,512,,0,0,12,{},{},{} -5155,Granpa_Beard_F,Father's White Moustache,4,20,,100,,0,,0,0xFFFFFFFF,7,2,1,,0,0,25,{ bonus bBaseAtk,20; },{},{} -5156,Flu_Mask_F,Father's Mask,4,20,,100,,0,,0,0xFFFFFFFF,7,2,1,,0,0,8,{ bonus bMatkRate,1; },{},{} -5157,Viking_Helm_,Orc Helm,4,20,,500,,5,,1,0x000654E2,7,2,256,,0,1,86,{},{},{} -5158,Holy_Bonnet_,Monk Hat,4,30000,,100,,5,,1,0x00008110,7,2,256,,0,1,35,{ bonus bMdef,3; },{},{} -5159,Golden_Gear_,Golden Gear,4,20,,900,,5,,1,0xFFFFFFFE,7,2,256,,40,1,30,{ bonus bUnbreakableHelm; },{},{} -5160,Magestic_Goat_,Majestic Goat,4,20,,800,,5,,1,0x006444A2,7,2,256,,0,1,41,{ bonus bStr,1; },{},{} -5161,Sharp_Gear_,Spiky Band,4,20,,1000,,6,,1,0x0066D5F2,7,2,256,,50,1,43,{},{},{} -5162,Bone_Helm_,Bone Helm,4,20,,800,,7,,1,0x000444A2,7,2,256,,70,1,103,{ bonus2 bSubEle,Ele_Dark,-15; },{},{} -5163,Corsair_,Corsair,4,20,,500,,5,,1,0xFFFFFFFE,7,2,256,,0,1,105,{ bonus bVit,1; },{},{} -5164,Tiara_,Tiara,4,20,,400,,4,,1,0xFFFFFFFE,7,0,256,,45,1,19,{ bonus bInt,1; },{},{} -5165,Crown_,Crown,4,20,,400,,4,,1,0xFFFFFFFE,7,1,256,,45,1,45,{ bonus bInt,1; },{},{} -5166,Spinx_Helm_,Sphinx Hat,4,20,,3000,,5,,1,0x00004082,7,2,257,,65,0,137,{ bonus bStr,2; },{},{} -5167,Munak_Turban_,Munak Hat,4,20,,300,,5,,1,0xFFFFFFFF,7,2,769,,0,0,51,{ bonus2 bSubRace,RC_Undead,10; },{},{} -5168,Bongun_Hat_,Bongun Hat,4,20,,300,,5,,1,0xFFFFFFFF,7,2,769,,0,0,139,{},{},{} -5169,Bride_Mask,Bride Mask,4,30000,,500,,4,,1,0xFFFFFFFF,7,2,768,,40,1,223,{ if(BaseClass==Job_Taekwon){ bonus bLuk,2; bonus bCritical,5; } },{},{} -5170,Feather_Beret,Feather Beret,4,30000,,600,,1,,0,0xFFFFFFFE,7,2,256,,0,1,224,{ bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; },{},{} -5171,Valkyrie_Helm,Valkyrie Helm,4,100000,,1000,,5,,1,0xFFFFFFFE,2,2,256,,0,1,225,{ bonus bMdef,5; },{},{} -5172,Beret,Beret,4,30000,,700,,0,,0,0xFFFFFFFF,7,2,256,,0,0,226,{ bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; },{},{} -5173,Satto_Hat,Magistrate Hat,4,30000,,400,,3,,1,0xFFFFFFFF,7,2,256,,60,1,227,{ if(BaseClass==Job_Taekwon){ bonus bAgi,1; bonus bHPrecovRate,3; } },{},{} -5174,Ayam,Ayam,4,30000,,400,,3,,1,0xFFFFFFFF,7,2,256,,60,1,228,{ if(BaseClass==Job_Taekwon){ bonus bInt,1; bonus bSPrecovRate,3; } },{},{} -5175,Censor_Bar,Censor Bar,4,30000,,100,,0,,0,0xFFFFFFFF,7,2,512,,0,0,229,{ bonus2 bResEff,Eff_Curse,500; bonus bMdef,1; bonus bHit,-5; },{},{} -5176,Hahoe_Mask,Hahoe Mask,4,30000,,100,,2,,0,0xFFFFFFFF,7,2,513,,30,0,230,{ if(BaseClass==Job_Taekwon){ bonus bLuk,1; bonus bFlee2,2; } },{},{} -5177,Guardian_Lion_Mask,Mythical Lion Mask,4,30000,,500,,5,,1,0xFFFFFFFF,7,2,768,,40,1,231,{ if(BaseClass==Job_Taekwon){ bonus bDex,2; bonus bBaseAtk,2*getrefine(); bonus3 bAddEff,Eff_Stun,1000,ATF_SHORT; } },{},{} -5178,Candle_,Candle,4,20,,150,,0,,0,0xFFFFFFFF,7,2,256,,0,1,113,{ bonus bAllStats,1; },{},{} -5179,Gold_Tiara,Golden Tiara,4,0,,100,,0,,0,0xFFFFFFFF,7,2,256,,0,1,232,{ bonus bInt,2; },{},{} -5180,Phrygian_Cap_,France Holiday Hat,4,20,,100,,1,,0,0xFFFFFFFF,7,2,256,,0,1,217,{ bonus bVit,1; },{},{} -5181,Helm_Of_Darkness,Helm of Darkness,4,20,,2000,,3,,1,0x000654E2,7,2,768,,50,1,233,{ bonus bStr,2; },{},{} -5182,Puppy_Hat,Puppy Hat,4,20,,500,,2,,0,0xFFFFFFFF,7,2,256,,30,0,234,{ bonus bAgi,1; bonus3 bAutoSpell,"PR_GLORIA",1,10+20*(readparam(bAgi)>=77); },{},{} -5183,Bird_Nest_Hat,Bird Nest Hat,4,20,,500,,2,,0,0xFFFFFFFF,7,2,256,,10,1,235,{ bonus bDex,1; bonus bAgi,1; bonus2 bResEff,Eff_Stun,1000; },{},{} -5184,Captain_Hat,Captain's Hat,4,20,,500,,4,,0,0xFFFFFFFE,7,2,256,,30,1,236,{ bonus2 bSubEle,Ele_Water,5; },{},{} -5185,Laurel_Wreath,Laurel Wreath,4,20,,100,,1,,1,0xFFFFFFFF,7,2,256,,10,1,237,{ bonus bLuk,3; bonus2 bResEff,Eff_Blind,500; bonus2 bResEff,Eff_Curse,500; },{},{} -5186,Geographer_Band,Geographer Band,4,20,,500,,1,,0,0xFFFFFFFF,7,2,256,,30,0,238,{ bonus bInt,1; bonus3 bAutoSpellWhenHit,"AL_HEAL",1,50; },{},{} -5187,Twin_Ribbon,Twin Ribbon,4,20,,200,,0,,1,0xFFFFFFFF,7,2,256,,30,1,239,{ bonus bMaxSP,30; bonus bMdef,3; bonus3 bAutoSpellWhenHit,"NPC_STONESKIN",6,10; bonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,120,BF_MAGIC,0; },{},{} -5188,Minstrel_Hat,Wandering Minstrel Hat,4,20,,500,,2,,0,0xFFFFFFFF,7,2,256,,50,1,240,{ bonus bInt,1; bonus bDex,1; },{},{} -5189,Fallen_Leaves,Autumn Leaves,4,20,,100,,0,,0,0xFFFFFFFF,7,2,256,,0,1,241,{ bonus bMaxHP,40; bonus bMaxSP,40; },{},{} -5190,Baseball_Cap_,Independence Memorial Hat,4,20,,20,,3,,1,0xFFFFFFFF,7,2,256,,0,1,216,{},{},{} -5191,Ribbon_Black,Black Ribbon,4,800,,100,,1,,1,0xFFFFFFFF,7,0,256,,0,1,242,{ bonus bInt,1; bonus bMdef,3; },{},{} -5192,Ribbon_Yellow,Yellow Ribbon,4,800,,100,,1,,1,0xFFFFFFFF,7,0,256,,0,1,243,{ bonus bMdef,3; },{},{} -5193,Ribbon_Green,Green Ribbon,4,800,,100,,1,,1,0xFFFFFFFF,7,0,256,,0,1,244,{ bonus bMdef,3; },{},{} -5194,Ribbon_Pink,Pink Ribbon,4,800,,100,,1,,1,0xFFFFFFFF,7,0,256,,0,1,245,{ bonus bMdef,3; },{},{} -5195,Ribbon_Red,Red Ribbon,4,800,,100,,1,,1,0xFFFFFFFF,7,0,256,,0,1,246,{ bonus bMdef,3; },{},{} -5196,Ribbon_Orange,Orange Ribbon,4,800,,100,,1,,1,0xFFFFFFFF,7,0,256,,0,1,247,{ bonus bMdef,3; },{},{} -5197,Ribbon_White,White Ribbon,4,800,,100,,1,,1,0xFFFFFFFF,7,0,256,,0,1,248,{ bonus bMdef,3; },{},{} -5198,Drooping_Bunny,Drooping Bunny,4,10,,100,,1,,0,0xFFFFFFFF,7,2,256,,0,1,249,{ bonus bDex,1; bonus bFlee,2; },{},{} -5199,Baseball_Cap_I,Baseball Cap,4,0,,200,,3,,0,0xFFFFFFFF,7,2,256,,0,1,216,{},{},{} -5200,Coppola,Coppola,4,10,,300,,0,,0,0xFFFFFFFF,7,2,256,,0,1,252,{},{},{} -5201,Party_Hat_B,Party Hat,4,20,,300,,3,,0,0xFFFFFFFF,7,2,256,,0,1,144,{},{},{} -5202,Pumpkin_Hat_,Fantastic Pumpkin-Head,4,20,,200,,2,,0,0xFFFFFFFF,7,2,256,,0,1,206,{ bonus2 bSubRace,RC_Demon,5; },{},{} -5203,Tongue_Mask,Smiling Mask,4,20,,200,,2,,0,0xFFFFFFFF,7,2,513,,0,0,253,{ bonus bSpeedRate,25; },{},{} -5204,Event_Pierrot_Nose,Rudolph's Nose,4,20,,100,,0,,0,0xFFFFFFFF,7,2,1,,0,0,49,{ bonus2 bResEff,Eff_Blind,3000; bonus2 bAddMonsterDropItem,12130,30; },{},{} -5205,Wreath,Emperor's Laurel Crown,4,20,,1000,,3,,0,0xFFFFFFFF,7,2,768,,0,1,261,{ bonus bAllStats,1; bonus bMdef,3; },{},{} -5206,Romantic_White_Flower,Romantic White Flower,4,20,,100,,0,,0,0xFFFFFFFE,7,2,1,,0,0,259,{ bonus2 bSubRace,RC_Plant,3; },{},{} -5207,Gold_Spirit_Chain,Angel Blessing,4,20,,100,,0,,0,0xFFFFFFFF,7,2,256,,0,0,260,{ bonus bLuk,1; bonus2 bSubEle,Ele_Holy,5; },{},{} -5208,Rideword_Hat,Rideword Hat,4,20,,300,,2,,1,0xFFFFFFFE,7,2,256,,40,1,262,{ bonus2 bHPDrainRate,50,8; bonus2 bSPDrainRate,10,4; bonus2 bHPLossRate,10,5000; },{},{} -5209,Yellow_Baseball_Cap,Love Dad Cap,4,20,,300,,2,,0,0xFFFFFFFF,7,2,256,,0,1,263,{},{},{} -5210,Flying_Angel,Flapping Angel Wing,4,20,,300,,1,,0,0xFFFFFFFF,7,2,256,,10,1,264,{ bonus bCastrate,-3; bonus bAspdRate,3; bonus bInt,1; bonus bAgi,1; },{},{} -5211,Dress_Hat,Dress Hat,4,0,,200,,2,,1,0xFFFFFFFF,7,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; } },{},{} -5212,Satellite_Hairband,Satellite Hairband,4,0,,1000,,3,,1,0xFFFFFFFF,7,2,256,,30,1,266,{ bonus bMaxHP,50; bonus bMaxSP,10; skill "AL_RUWACH",1; },{},{ sc_end SC_RUWACH; } -5213,Black_Bunny_Band,Sheila Hairnet,4,0,,200,,2,,0,0xFFFFFFFF,7,2,256,,1,1,267,{ bonus bAgi,2; bonus bMdef,3; },{},{} -5214,Moonlight_Flower_Hat,Moonlight Flower Hat,4,0,,200,,3,,0,0xFFFFFFFF,7,2,768,,1,1,268,{ bonus bDex,2; bonus3 bAutoSpell,"AL_INCAGI",1,50; },{},{} -5215,Angelic_Chain_,Evolved Angel Wing,4,20,,100,,2,,0,0xFFFFFFFE,7,2,256,,0,1,38,{ bonus bMdef,3; bonus bDex,1; bonus bInt,1; bonus2 bSubRace,RC_Demon,3; },{},{} -5216,Satanic_Chain_,Evolved Evil Wing,4,20,,100,,3,,0,0xFFFFFFFE,7,2,256,,0,1,39,{ bonus bStr,1; bonus bAgi,1; bonus bFlee,3; bonus2 bSubRace,RC_Angel,3; },{},{} -5217,Magestic_Goat_TW,Evolved Majestic Goat,4,20,,800,,5,,0,0x006444A2,7,2,256,,0,1,41,{ bonus bStr,2; },{},{} -5218,Bunny_Band_,Evolved Bunny Band,4,20,,100,,2,,0,0xFFFFFFFF,7,2,256,,0,1,15,{ bonus bInt,2; },{},{} -5219,Drooping_Kitty_,Evolved Drooping Cat,4,250000,,500,,1,,0,0xFFFFFFFE,7,2,256,,0,1,142,{ bonus bMdef,18; bonus bFlee,3; },{},{} -5220,Smoking_Pipe_,Evolved Pipe,4,20,,100,,0,,0,0xFFFFFFFE,7,2,1,,0,0,55,{ bonus bVit,1; bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5; },{},{} -5221,Pair_Of_Red_Ribbon_,Evolved Pair of Red Ribbon,4,20,,100,,1,,0,0xFFFFFFFF,7,0,512,,45,0,169,{ bonus bFlee,5; },{},{} -5222,Fish_On_Head_,Evolved Blue Fish,4,20,,500,,2,,0,0xFFFFFFFF,7,2,256,,50,1,149,{ bonus bAgi,1; bonus bDex,1; },{},{} -5223,Big_Golden_Bell_,Evolved Big Golden Bell,4,20,,200,,2,,0,0xFFFFFFFE,7,2,768,,35,1,175,{ bonus bAgi,2; },{},{} -5224,Orc_Hero_Helm_TW,Evolved Orc Hero Helm,4,500000,,900,,5,,0,0xFFFFFFFE,7,2,768,,55,1,178,{ bonus bStr,2; bonus bVit,1; bonus bMaxHPrate,10; },{},{} -5225,Marcher_Hat,Parade Hat,4,20,,200,,2,,1,0xFFFFFFFF,7,2,256,,10,1,269,{ bonus bMdef,2; bonus bStr,2; bonus4 bAutoSpellWhenHit,"AL_ANGELUS",5,30,0; bonus4 bAutoSpellWhenHit,"HP_ASSUMPTIO",1,1,0; bonus2 bResEff,Eff_Stun,1000; if(BaseClass==Job_Acolyte) bonus4 bAutoSpellOnSkill,"AL_HEAL","PR_LEXAETERNA",1,1000; },{},{} -5226,Mini_Propeller_,Mini Propeller,4,20,,200,,2,,0,0xFFFFFFFF,7,2,256,,0,1,270,{ bonus bAgi,2; bonus bDex,1; bonus bFlee,10; bonus bCastrate,-getrefine(); },{},{} -5227,Red_Deviruchi_Cap,Red Deviruchi Hat,4,20,,800,,2,,0,0xFFFFFFFE,7,2,256,,64,1,271,{ bonus bStr,1; bonus bInt,1; },{},{} -5228,White_Deviruchi_Cap,Gray Deviruchi Hat,4,20,,800,,2,,0,0xFFFFFFFE,7,2,256,,64,1,272,{ bonus bStr,1; bonus bInt,1; },{},{} -5229,Gray_Deviruchi_Cap,Brown Deviruchi Hat,4,20,,800,,2,,0,0xFFFFFFFE,7,2,256,,64,1,273,{ bonus bStr,1; bonus bInt,1; },{},{} -5230,White_Drooping_Kitty,Gray Drooping Cat,4,250000,,500,,1,,0,0xFFFFFFFE,7,2,256,,0,1,274,{ bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15; },{},{} -5231,Gray_Drooping_Kitty,Brown Drooping Cat,4,250000,,500,,1,,0,0xFFFFFFFE,7,2,256,,0,1,275,{ bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15; },{},{} -5232,Pink_Drooping_Kitty,Pink Drooping Cat,4,250000,,500,,1,,0,0xFFFFFFFE,7,2,256,,0,1,276,{ bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15; },{},{} -5233,Blue_Drooping_Kitty,Blue Drooping Cat,4,250000,,500,,1,,0,0xFFFFFFFE,7,2,256,,0,1,277,{ bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15; },{},{} -5234,Yellow_Drooping_Kitty,Yellow Drooping Cat,4,250000,,500,,1,,0,0xFFFFFFFE,7,2,256,,0,1,278,{ bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15; },{},{} -5235,Gray_Fur_Hat,Brown Beanie,4,20,,350,,2,,0,0xFFFFFFFF,7,2,256,,0,1,279,{ bonus bLuk,1; },{},{} -5236,Blue_Fur_Hat,Blue Beanie,4,20,,350,,2,,0,0xFFFFFFFF,7,2,256,,0,1,280,{ bonus bLuk,1; },{},{} -5237,Pink_Fur_Hat,Pink Beanie,4,20,,350,,2,,0,0xFFFFFFFF,7,2,256,,0,1,281,{ bonus bLuk,1; },{},{} -5238,Red_Wizardry_Hat,Red Mage Hat,4,20,,300,,1,,0,0x00810204,7,2,256,,0,1,282,{ bonus bInt,2; bonus bMaxSP,150; },{},{} -5239,White_Wizardry_Hat,Gray Mage Hat,4,20,,300,,1,,0,0x00810204,7,2,256,,0,1,283,{ bonus bInt,2; bonus bMaxSP,150; },{},{} -5240,Gray_Wizardry_Hat,Brown Mage Hat,4,20,,300,,1,,0,0x00810204,7,2,256,,0,1,284,{ bonus bInt,2; bonus bMaxSP,150; },{},{} -5241,Blue_Wizardry_Hat,Blue Mage Hat,4,20,,300,,1,,0,0x00810204,7,2,256,,0,1,285,{ bonus bInt,2; bonus bMaxSP,150; },{},{} -5242,Yellow_Wizardry_Hat,Yellow Mage Hat,4,20,,300,,1,,0,0x00810204,7,2,256,,0,1,286,{ bonus bInt,2; bonus bMaxSP,150; },{},{} -5243,Chullos,Shafka,4,20,,800,,2,,1,0xFFFFFFFF,7,2,768,,0,1,287,{ bonus2 bResEff,Eff_Freeze,1000; },{},{} -5244,Elven_Blindfold,Elven Blindfold,4,20,,200,,1,,0,0xFFFFFFFF,7,2,512,,0,0,288,{ bonus2 bResEff,Eff_Blind,10000; },{},{} -5245,Elven_Sunglasses,Elven Sunglasses,4,20,,200,,1,,0,0xFFFFFFFF,7,2,512,,0,0,289,{ bonus2 bResEff,Eff_Blind,500; },{},{} -5246,Angelic_Helm,Angelic Helm,4,20,,700,,3,,0,0xFFFFFFFF,7,2,256,,0,1,290,{ bonus bAgi,1; bonus bLuk,1; bonus bMdef,3; bonus2 bSubRace,RC_Demon,5; },{},{} -5247,Satanic_Helm,Satanic Helm,4,20,,700,,4,,0,0xFFFFFFFF,7,2,256,,0,1,291,{ bonus bAgi,1; bonus bLuk,1; bonus bMdef,3; bonus2 bSubRace,RC_Demon,5; },{},{} -5248,Robotic_Blindfold,Robotic Blindfold,4,20,,200,,1,,0,0xFFFFFFFF,7,2,512,,0,0,292,{ bonus2 bResEff,Eff_Blind,10000; },{},{} -5249,Human_Blindfold,Human Blindfold,4,20,,200,,1,,0,0xFFFFFFFF,7,2,512,,0,0,293,{ bonus2 bResEff,Eff_Blind,10000; },{},{} -5250,Robotic_Ears,Robotic Ears,4,20,,10,,0,,0,0xFFFFFFFF,7,2,512,,0,0,294,{},{},{} -5251,Round_Ears,Round Ears,4,20,,10,,0,,0,0xFFFFFFFF,7,2,512,,0,0,295,{},{},{} -5252,Drooping_Nine_Tail,Drooping Ninetail,4,20,,300,,1,,0,0xFFFFFFFF,7,2,256,,20,1,296,{ bonus bAgi,1; bonus bDex,1; bonus3 bAutoSpellWhenHit,"PR_GLORIA",1,30; },{},{} -5253,Lif_Doll_Hat,Lif Doll Hat,4,20,,200,,1,,1,0xFFFFFFFF,7,2,256,,20,1,297,{ bonus bInt,1; bonus bMdef,getrefine(); bonus bDef,getrefine()*-1; },{},{} -5254,Deviling_Hat,Deviling Hat,4,20,,500,,1,,1,0xFFFFFFFF,7,2,256,,20,1,298,{ bonus bStr,1; bonus bCritical,3; bonus2 bSubRace,RC_Angel,-20; if(getrefine()>=6){ bonus bCritical,getrefine()-5; } },{},{} -5255,Triple_Poring_Hat,Triple Poring Hat,4,20,,600,,3,,0,0xFFFFFFFF,7,2,256,,20,0,299,{ bonus bLuk,3; bonus3 bAutoSpell,"BS_GREED",1,50; },{},{} -5256,Valkyrie_Feather_Band,Valkyrie Feather Band,4,20,,100,,1,,1,0xFFFFFFFF,7,2,256,,20,1,300,{ bonus bInt,1; bonus3 bAutoSpellWhenHit,"AL_HEAL",1,10; },{},{} -5257,Soulless_Wing,Soul Ring,4,20,,300,,2,,0,0xFFFFFFFE,7,2,256,,20,1,301,{ bonus bMdef,2; bonus3 bAutoSpellWhenHit,"HP_ASSUMPTIO",1,10; },{},{} -5258,Afro_Wig,Afro Wig,4,20,,100,,0,,1,0xFFFFFFFF,7,2,768,,10,1,302,{ bonus3 bAutoSpellWhenHit,"NV_FIRSTAID",1,300; bonus2 bSubEle,Ele_Neutral,1; },{},{} -5259,Elephant_Hat_,Elephant Hat,4,20,,500,,3,,0,0xFFFFFFFF,7,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,7,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,7,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,7,2,256,,0,1,232,{ bonus bStr,2; bonus bUnbreakableHelm; 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,7,2,769,,20,1,303,{ bonus2 bSubEle,Ele_Water,1; bonus2 bSubEle,Ele_Earth,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,7,2,256,,0,1,304,{ bonus bAllStats,2; },{},{} -5265,Apple_Of_Archer_C,Apple of Archer,4,1,,0,,7,,0,0xFFFFFFFE,7,2,256,,1,0,72,{ bonus bDex,4; },{},{} -5266,Bunny_Band_C,Bunny Band,4,1,,0,,9,,0,0xFFFFFFFF,7,2,256,,1,0,15,{ bonus bMdef,5; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; },{},{} -5267,Sahkkat_C,Sakkat,4,1,,0,,10,,0,0xFFFFFFFF,7,2,256,,0,0,67,{ bonus bAgi,3; },{},{} -5268,Lord_Circlet_C,Grand Circlet,4,1,,0,,10,,0,0xFFFFFFFE,7,2,256,,1,0,93,{ bonus bStr,3; bonus bInt,3; bonus bLuk,3; bonus bMdef,4; },{},{} -5269,Flying_Angel_,Flapping Angel Wing,4,20,,300,,1,,0,0xFFFFFFFF,7,2,256,,10,1,264,{ bonus bInt,1; bonus bAgi,1; bonus bAspdRate,3; bonus bSpeedRate,25; },{},{} -5270,Fallen_Leaves_,Autumn Leaves,4,20,,100,,1,,1,0xFFFFFFFF,7,2,256,,0,1,241,{ bonus bFlee2,5; },{},{} -5271,Chinese_Crown_,Phoenix Crown,4,20,,500,,4,,1,0xFFFFFFFF,7,2,768,,0,1,221,{ bonus bMdef,3; bonus2 bSubClass,Class_Boss,getrefine(); },{},{} -5272,Tongue_Mask_,Tongue Mask,4,20,,100,,2,,0,0xFFFFFFFF,7,2,513,,0,0,253,{ bonus3 bAutoSpell,"SM_PROVOKE",5,50; },{},{} -5273,Happy_Wig,Happy Wig,4,20,,100,,1,,0,0xFFFFFFFF,7,2,768,,0,1,305,{ bonus bSpeedRate,25; bonus bDef,4; skill "TF_HIDING",1; },{},{ sc_end SC_HIDING; } -5274,Shiny_Wig,Shiny Wig,4,20,,100,,1,,0,0xFFFFFFFF,7,2,768,,0,1,306,{ bonus bSpeedRate,25; bonus bDef,4; skill "TF_HIDING",1; },{},{ sc_end SC_HIDING; } -5275,Marvelous_Wig,Marvelous Wig,4,20,,100,,1,,0,0xFFFFFFFF,7,2,768,,0,1,307,{ bonus bSpeedRate,25; bonus bDef,4; skill "TF_HIDING",1; },{},{ sc_end SC_HIDING; } -5276,Fantastic_Wig,Fantastic Wig,4,20,,100,,1,,0,0xFFFFFFFF,7,2,768,,0,1,308,{ bonus bSpeedRate,25; bonus bDef,4; skill "TF_HIDING",1; },{},{ sc_end SC_HIDING; } -5277,Yellow_Bandana,Yellow Bandana,4,20,,100,,1,,0,0xFFFFFFFE,7,2,256,,20,1,309,{ bonus bLuk,2; bonus bVit,2; bonus bLongAtkDef,10; },{},{} -5278,Yellow_Ribbon,Yellow Ribbon,4,20,,100,,1,,0,0xFFFFFFFE,7,2,256,,20,1,310,{ bonus bLuk,2; bonus bVit,2; bonus bLongAtkDef,10; },{},{} -5279,Drooping_Kitty_C,Refined Drooping Cat,4,2,,0,,1,,0,0xFFFFFFFE,7,2,256,,0,0,142,{ bonus bMdef,15; bonus2 bResEff,Eff_Curse,3000; },{},{} -5280,Magestic_Goat_C,Baphomet Horns,4,2,,0,,5,,0,0xFFFFFFFF,7,2,256,,0,0,41,{ bonus bStr,1; },{},{} -5281,Deviruchi_Cap_C,Refined Deviruchi Hat,4,2,,0,,2,,0,0xFFFFFFFE,7,2,256,,0,0,123,{ bonus bStr,1; bonus bInt,1; },{},{} -5282,euRO_Baseball_Cap,Europe Baseball Cap,4,0,,200,,3,,1,0xFFFFFFFF,7,2,256,,0,1,216,{},{},{} -5283,Chick_Hat,Chick Hat,4,20,,100,,1,,0,0xFFFFFFFF,7,2,256,,10,0,311,{ bonus bLuk,2; bonus bMaxHP,50; bonus bMaxSP,50; skill "TF_DOUBLE",2; bonus bDoubleRate,10; bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3; },{},{} -5284,Water_Lily_Crown,Water Lily Crown,4,20,,200,,0,,1,0xFFFFFFFF,7,2,256,,30,0,312,{ bonus bDex,1; bonus bAgi,1; bonus bHPrecovRate,5; bonus bSPrecovRate,3; },{},{} -5285,Vane_Hairpin,Vane Hairpin,4,20,,300,,3,,1,0xFFFFFFFF,7,2,256,,30,0,313,{ bonus bAgi,2; },{},{} -5286,Pecopeco_Hairband,Pecopeco Hairband,4,20,,0,,3,,0,0xFFFFFFFF,7,2,256,,70,0,314,{ bonus bSpeedRate,25; bonus bAspdRate,-10; bonus bCastrate,25; },{},{} -5287,Vacation_Hat,Vacation Hat,4,20,,200,,1,,1,0xFFFFFFFF,7,2,256,,30,0,315,{ bonus bVit,1; },{},{} -5288,Red_Glasses,Red Glasses,4,20,,0,,1,,0,0xFFFFFFFF,7,2,512,,0,0,316,{ bonus bInt,1; },{},{} -5289,Vanilmirth_Hat,Vanilmirth Hat,4,20,,100,,0,,0,0xFFFFFFFF,7,2,256,,30,0,317,{ bonus bUnbreakableHelm; bonus3 bAutoSpell,"MG_FIREBOLT",1,10; bonus3 bAutoSpell,"MG_COLDBOLT",1,10; bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",1,10; bonus bMdef,5; },{},{} -5290,Drooping_Bunny_,Drooping Bunny,4,20,,100,,1,,0,0xFFFFFFFF,7,2,256,,0,1,249,{ bonus bDex,1; bonus bFlee,2; },{},{} -5291,Kettle_Hat,Kettle Hat,4,20,,600,,4,,0,0xFFFFFFFF,7,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,7,2,256,,50,1,319,{ bonus2 bSubRace,RC_Dragon,5; },{},{} -5293,Ramen_Hat,Ramen Hat,4,20,,0,,1,,0,0xFFFFFFFF,7,2,256,,0,0,320,{ bonus bDex,4; bonus4 bAutoSpellWhenHit,"AL_DECAGI",1,30,1; },{},{} -5294,Whisper_Mask,Whisper Mask,4,20,,0,,0,,0,0xFFFFFFFF,7,2,769,,0,0,321,{ bonus bAgi,3; bonus2 bSubEle,Ele_Ghost,-10; },{},{} -5295,Golden_Bandana,Golden Bandana,4,20,,2400,,4,,0,0xFFFFFFFF,7,2,768,,0,0,138,{ bonus bMdef,4; },{},{} -5296,Drooping_Nine_Tail_,Drooping Nine Tail,4,20,,300,,1,,1,0xFFFFFFFF,7,2,256,,0,1,296,{ bonus bAgi,1; bonus bCritical,1; },{},{} -5297,Soulless_Wing_,Soul Wing,4,20,,300,,2,,1,0xFFFFFFFF,7,2,256,,0,1,301,{ bonus bAllStats,1; bonus2 bSPRegenRate,2,10000; },{},{} -5298,Marvelous_Wig_,Dokebi's Wig,4,20,,100,,1,,1,0xFFFFFFFF,7,2,768,,0,1,307,{ bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubEle,Ele_Fire,-5; bonus2 bSubEle,Ele_Water,-5; },{},{} -5299,Ati_Atihan_Hat_,Pagdayaw,4,20,,100,,1,,1,0xFFFFFFFF,7,2,769,,0,0,303,{ bonus3 bAutoSpell,"DC_SCREAM",1,50; },{},{} -5300,Bullock_Helm,Bullock Helm,4,20,,800,,2,,0,0xFFFFFFFE,7,2,256,,45,1,322,{ bonus bMaxHP,100; },{},{} -5301,Russian_Ribbon,Victory Hairband,4,0,,100,,0,,0,0xFFFFFFFF,7,2,256,,0,1,323,{},{},{} -5302,Lotus_Flower_Hat,Flower Lily,4,0,,100,,1,,0,0xFFFFFFFF,7,2,256,,30,1,324,{},{},{} -5303,Flower_Coronet,Flower Crown,4,20,,300,,1,,0,0xFFFFFFFF,7,2,256,,0,1,325,{ bonus bMdef,3; bonus bMaxHP,50; },{},{} -5304,Cap_Of_Blindness,Cap Of Blindness,4,20,,800,,4,,1,0xFFFFFFFF,7,2,769,,50,1,326,{ bonus2 bResEff,Eff_Curse,700; bonus2 bResEff,Eff_Blind,10000; },{},{} -5305,Pirate_Dagger,Pirate Dagger,4,20,,100,,0,,0,0xFFFFFFFF,7,2,1,,0,0,327,{ bonus bBaseAtk,5; },{},{} -5306,Freyja_Crown,Freya's Crown,4,0,,500,,12,,0,0xFFFFFFFE,7,2,256,,0,0,328,{ bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; },{},{} -5307,Carmen_Miranda's_Hat,Carmen Miranda's Hat,4,20,,400,,3,,0,0xFFFFFFFF,7,2,256,,0,1,329,{ bonus bMdef,3; bonus3 bAutoSpellWhenHit,"DC_WINKCHARM",1,50; },{},{} -5308,Brazilian_Flag_Hat,Brazil National Flag Hat,4,20,,300,,3,,1,0xFFFFFFFF,7,2,256,,0,1,330,{ bonus bSpeedAddRate,25; },{},{} -5309,Mahican,Wool Mask,4,20,,200,,1,,0,0xFFFFFFFF,7,2,769,,0,1,331,{ skill "RG_GRAFFITI",1; },{},{} -5310,Bulb_Hairband,Shining Electric Bulb Hairband,4,20,,100,,3,,1,0xFFFFFFFF,7,2,256,,0,1,332,{ bonus2 bSubEle,Ele_Dark,10; skill "MG_SIGHT",1; },{},{ sc_end SC_SIGHT; } -5311,Large_Hibiscus,Large Hisbiscus,4,20,,100,,1,,1,0xFFFFFFFF,7,2,256,,0,1,333,{ bonus bMdef,15; },{},{} -5312,Ayothaya_Hat,Ayothaya King's Hat,4,20,,100,,5,,1,0x000654E2,7,2,256,,0,1,334,{ bonus bStr,1; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; },{},{} -5313,Diadem,Diadem,4,20,,100,,3,,1,0xFFFFFFFF,7,2,768,,0,1,335,{ bonus bInt,1; bonus bMatkRate,3; bonus bCastrate,-3; },{},{} -5314,Hockey_Mask,Hockey Mask,4,20,,100,,1,,0,0xFFFFFFFF,7,2,513,,50,0,336,{ bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; },{},{} -5315,Observer,Observer,4,20,,100,,1,,0,0xFFFFFFFF,7,2,512,,35,0,337,{ skill "WZ_ESTIMATION",1; },{},{} -5316,Umbrella_Hat,Umbrella Hat,4,20,,100,,2,,0,0xFFFFFFFF,7,2,256,,50,1,338,{ bonus2 bSubEle,Ele_Water,3; },{},{} -5317,Fisherman_Hat,Fisherman's Hat,4,20,,100,,2,,0,0xFFFFFFFF,7,2,256,,50,1,339,{ bonus3 bAutoSpell,"WZ_WATERBALL",3,50; },{},{} -5318,Poring_Party_Hat,Poring Party Hat,4,20,,0,,2,,0,0xFFFFFFFF,7,2,256,,0,1,340,{ bonus bAllStats,3; },{},{} -5319,Hellomother_Hat,Hello Mother Hat,4,20,,200,,2,,0,0xFFFFFFFE,7,2,256,,10,1,341,{ bonus bLuk,3; },{},{} -5320,Champion_Wreath,Champion Wreath,4,20,,500,,4,,0,0xFFFFFFFE,7,2,256,,0,1,261,{ bonus bAllStats,2; bonus4 bAutoSpellWhenHit,"AL_HEAL",1,50,0; },{},{} -5321,Indonesian_Bandana,Bandana Merah Putih,4,20,,500,,2,,0,0xFFFFFFFF,7,2,256,,0,1,342,{},{},{} -5322,Scarf,Kerchief,4,20,,100,,2,,0,0xFFFFFFFF,7,2,256,,24,1,343,{ bonus bMdef,2; bonus bFlee,5; },{},{} -5323,Misstrance_Crown,Misstrance Crown,4,20,,0,,10,,0,0xFFFFFFFF,7,2,256,,0,0,165,{ bonus bAllStats,2; },{},{} -5324,Little_Angel_Doll,Little Angel Doll,4,20,,300,,2,,0,0xFFFFFFFF,7,2,256,,10,1,344,{ bonus bDex,3; bonus4 bAutoSpellWhenHit,"CR_GRANDCROSS",3,30,0; },{},{} -5325,Robo_Eye,Robo Eye,4,20,,200,,2,,0,0xFFFFFFFF,7,2,512,,10,0,345,{ bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; bonus bDex,1; },{},{} -5326,Masquerade_C,Masquerade C,4,1,,0,,1,,0,0xFFFFFFFF,7,2,512,,0,0,78,{ bonus2 bAddRace,RC_DemiHuman,7; bonus2 bAddRace,RC_Player_Human,7; },{},{} -5327,Orc_Hero_Helm_C,Refined Helmet of Orc Hero,4,1,,0,,10,,0,0xFFFFFFFE,7,2,768,,0,0,178,{ bonus bStr,5; bonus bVit,3; },{},{} -5328,Evil_Wing_Ears_C,Evil Wing Ears C,4,1,,0,,2,,0,0xFFFFFFFF,7,2,512,,0,0,152,{ bonus bStr,1; },{},{} -5329,Dark_Blindfold_C,Dark Blindfold C,4,1,,0,,1,,0,0xFFFFFFFF,7,2,512,,0,0,187,{ bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Stun,500; },{},{} -5330,kRO_Drooping_Kitty_C,kRO Drooping Kitty C,4,1,,0,,6,,0,0xFFFFFFFE,7,2,256,,0,0,142,{ bonus bMdef,15; bonus2 bResEff,Eff_Curse,4000; bonus2 bResEff,Eff_Curse,1000; },{},{} -5331,Corsair_C,Corsair C,4,1,,0,,10,,0,0xFFFFFFFE,7,2,256,,0,0,105,{ bonus bVit,3; bonus bInt,3; },{},{} -5332,Loki_Mask,Loki Mask,4,0,,200,,0,,0,0xFFFFFFFF,7,2,513,,20,0,346,{ bonus bFlee2,3; },{},{} -5333,Radio_Antenna,Radio Antenna,4,0,,1500,,2,,0,0xFFFFFFFF,7,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,,0,,0,0xFFFFFFFF,7,2,256,,38,0,348,{ bonus bLuk,2; bonus bMdef,2; },{},{} -5335,Jumping_Poring,Jumping Poring,4,0,,300,,2,,0,0xFFFFFFFF,7,2,256,,0,0,349,{ bonus bLuk,1; bonus bUnbreakableHelm; },{},{} -5336,Guildsman_Recruiter,Guildsman Recruiter Hat,4,,,0,,2,,0,0xFFFFFFFF,7,2,256,,10,1,350,{},{},{} -5337,Party_Recruiter_Hat,Party Recruiter Hat,4,0,,0,,2,,0,0xFFFFFFFF,7,2,256,,10,1,351,{},{},{} -5338,Bf_Recruiter_Hat,Bf Recruiter Hat,4,0,,0,,2,,0,0xFFFFFFFF,7,2,256,,10,1,352,{},{},{} -5339,Friend_Recruiter_Hat,Friend Recruiter Hat,4,0,,0,,2,,0,0xFFFFFFFF,7,2,256,,10,1,353,{},{},{} -5340,Deprotai_Doll_Hat,Defolty Doll Hat,4,0,,500,,0,,1,0xFFFFFFFF,7,2,256,,60,0,354,{ bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bStr,2; bonus3 bAutoSpellWhenHit,"AL_ANGELUS",10,20; },{},{} -5341,Claris_Doll_Hat,Glaris Doll Hat,4,0,,500,,0,,1,0xFFFFFFFF,7,2,256,,60,0,355,{ bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bInt,2; bonus bMagicHPGainValue,50; },{},{} -5342,Sorin_Doll_Hat,Sorin Doll Hat,4,0,,500,,0,,1,0xFFFFFFFF,7,2,256,,60,0,356,{ bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bDex,2; autobonus "{ bonus bBaseAtk,50; }",20,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }"; },{},{} -5343,Tayelin_Doll_Hat,Telling Doll Hat,4,0,,500,,0,,1,0xFFFFFFFF,7,2,256,,60,0,357,{ bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bAgi,2; bonus2 bAddItemHealRate,504,10; bonus2 bAddItemHealRate,547,10; },{},{} -5344,Binit_Doll_Hat,Bennit Doll Hat,4,0,,500,,0,,1,0xFFFFFFFF,7,2,256,,60,0,358,{ bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bVit,2; autobonus "{ bonus bAspdRate,5; }",20,30000,0,"{ specialeffect2 EF_HASTEUP; }"; },{},{} -5345,Debril_Doll_Hat,W Doll Hat,4,0,,500,,0,,1,0xFFFFFFFF,7,2,256,,60,0,359,{ bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bLuk,2; bonus2 bAddRace,RC_Undead,5; bonus2 bMagicAddRace,RC_Undead,5; bonus2 bSubRace,RC_Undead,5; },{},{} -5346,Gf_Recruiter_Hat,Gf Recruiter Hat,4,0,,0,,2,,0,0xFFFFFFFF,7,2,256,,10,1,360,{},{},{} -5347,Ph.D_Hat_,Ph.D Hat,4,20,,200,,3,,1,0xFFFFFFFE,7,2,256,,0,1,98,{},{},{} -5348,Big_Sis'_Ribbon_,Big Ribbon,4,15000,,200,,2,,1,0xFFFFFFFE,7,2,256,,0,1,28,{ bonus bMdef,3; },{},{} -5349,Boy's_Cap_,Boy's Cap,4,20,,100,,2,,1,0xFFFFFFFE,7,2,256,,0,1,102,{},{},{} -5350,Pirate_Bandana_,Pirate Bandana,4,20,,100,,3,,1,0xFFFFFFFE,7,2,256,,0,1,74,{ bonus bStr,1; },{},{} -5351,Sunflower_,Sunflower,4,20,,100,,1,,1,0xFFFFFFFF,7,2,256,,0,0,37,{ bonus2 bSubRace,RC_Insect,10; },{},{} -5352,Poporing_Cap,Poporing Cap,4,20,,700,,2,,0,0xFFFFFFFE,7,2,256,,38,1,361,{},{},{} -5353,Helm_Of_Sun_,Hat of the Sun God,4,20,,2400,,4,,1,0x00CFDF80,7,2,768,,0,1,138,{ bonus bStr,3; bonus bInt,2; },{},{} -5354,Muslim_Hat_M,Muslim Hat M,4,0,,100,,2,,0,0xFFFFFFFF,7,1,256,,0,0,362,{ bonus bCastrate,-5; },{},{} -5355,Muslim_Hat_F,Selendang,4,0,,100,,2,,0,0xFFFFFFFF,7,0,256,,0,0,363,{ bonus bCastrate,-5; },{},{} -5356,Pumpkin_Hat_H,Festival Pumpkin Hat,4,20,,200,,2,,0,0xFFFFFFFF,7,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,7,2,768,,0,0,365,{ bonus bMdef,10; bonus bUnbreakableHelm; },{},{} -5358,Pecopeco_Wing_Ears,Peco Ears,4,20,,100,,1,,0,0xFFFFFFFF,7,2,512,,70,0,366,{ bonus bAgi,1; bonus bMdef,2; bonus bUnbreakableHelm; },{},{} -5359,J_Captain_Hat,Ship Captain Hat,4,20,,300,,3,,1,0xFFFFFFFF,7,2,256,,60,1,367,{ bonus bDex,1; bonus bLongAtkRate,7; bonus bMaxHP,100; },{},{} -5360,Whikebain_Ears,Hyuke's Black Cat Ears,4,20,,200,,2,,0,0xFFFFFFFF,7,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,7,2,1,,60,0,369,{ bonus bBaseAtk,5; if(BaseJob==Job_Rogue) skill "RG_GANGSTER",1; },{},{} -5362,Ninja_Scroll,Ninja Scroll,4,20,,200,,0,,0,0xFFFFFFFF,7,2,1,,60,0,370,{ bonus bMatkRate,1; },{},{} -5363,Helm_Of_Abyss,Helm Of Abyss,4,20,,1000,,2,,1,0x000654E2,7,2,256,,70,1,371,{ bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player_Human,-10; bonus2 bSubClass,Class_Boss,10; },{},{} -5364,Dark_Snake_Lord_Hat,Evil Snake Lord Hat,4,20,,500,,2,,1,0xFFFFFFFF,7,2,256,,60,1,372,{ bonus bStr,1; bonus bInt,1; bonus bAgi,2; },{},{} -5365,Fried_Egg,Magnolia Hat,4,20,,100,,3,,1,0xFFFFFFFF,7,2,256,,1,0,373,{ bonus2 bResEff,Eff_Stun,500; skill "HT_FLASHER",1; },{},{} -5366,Hat_0f_King,Love Dad Bandana,4,20,,200,,3,,0,0xFFFFFFFF,7,2,256,,0,1,374,{ bonus bAllStats,5; },{},{} -5367,Hyegun_Hat,Hyegun Hat,4,20,,100,,5,,1,0xFFFFFFFF,7,2,769,,10,0,375,{ bonus bMdef,3; bonus2 bSubRace,RC_Demon,10; },{},{} -5368,White_Wing,White Wing,4,20,,100,,2,,0,0xFFFFFFFF,7,2,256,,0,1,38,{ bonus2 bAddMonsterDropItem,12280,300; },{},{} -5369,Dark_Wing,Dark Wing,4,20,,100,,1,,0,0xFFFFFFFF,7,2,256,,0,1,39,{ bonus2 bAddMonsterDropItem,12279,300; },{},{} -5370,Orchid_Hairband,Orchid Hairband,4,20,,200,,1,,0,0xFFFFFFFF,7,2,256,,0,1,376,{ bonus bInt,1; },{},{} -5371,Hat_Of_Judge,Judge Hat,4,20,,300,,2,,0,0xFFFFFFFF,7,2,768,,0,1,377,{ bonus bLuk,1; bonus bMaxSP,30; },{},{} -5372,Drooping_White_Kitty,Koneko Hat,4,20,,500,,1,,0,0xFFFFFFFF,7,2,256,,0,1,378,{ bonus bInt,1; bonus bDelayRate,-3; bonus bMatkRate,3; bonus bMaxSPrate,3; bonus bMdef,3; },{},{} -5373,Darkness_Helm,Dark Randgris Helm,4,20,,300,,2,,1,0xFFFFFFFF,7,2,768,,0,1,379,{ bonus bDex,3; bonus bMdef,1; },{},{} -5374,L_Magestic_Goat,Gigantic Majestic Goat,4,20,,800,,5,,0,0xFFFFFFFF,7,2,256,,0,1,380,{ bonus2 bAddRace,RC_DemiHuman,12; bonus2 bAddRace,RC_Player_Human,12; bonus bBaseAtk,(JobLevel*2)/7; },{},{} -5375,L_Orc_Hero_Helm,Orc Hero Headdress,4,20,,900,,5,,1,0xFFFFFFFF,7,2,768,,0,1,381,{ bonus bStr,2; bonus3 bAutoSpellWhenHit,"BS_WEAPONPERFECT",3,10; },{},{} -5376,Satanic_Chain_P,Flying Evil Wing,4,20,,100,,3,,1,0xFFFFFFFF,7,2,256,,0,1,382,{ bonus bMaxSP,120; bonus2 bAddEff2,Eff_Curse,300; },{},{} -5377,Antique_Pipe,Gentleman's Pipe,4,20,,100,,0,,0,0xFFFFFFFF,7,2,1,,0,0,383,{ bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; },{},{} -5378,Rabbit_Ear_Hat,Bunny Top Hat,4,20,,300,,0,,0,0xFFFFFFFF,7,2,256,,0,1,384,{ bonus bAgi,3; bonus3 bAutoSpellWhenHit,"AL_INCAGI",5,10; },{},{} -5379,Balloon_Hat,Tam,4,0,,800,,3,,1,0xFFFFFFFF,7,2,256,,50,1,385,{ bonus bMdef,2; bonus bMatkRate,2+(getrefine()/2); },{},{} -5380,Fish_Head_Hat,Fish Head Hat,4,20,,400,,1,,0,0xFFFFFFFF,7,2,256,,0,1,386,{ bonus3 bAutoSpell,"SA_FROSTWEAPON",1,5; },{},{} -5381,Santa_Poring_Hat,Santa Poring Hat,4,20,,100,,2,,1,0xFFFFFFFF,7,2,256,,0,0,387,{ bonus bMdef,2; bonus2 bAddEle,Ele_Dark,3; bonus2 bSubEle,Ele_Dark,3; },{},{} -5382,Bell_Ribbon,Bell Ribbon,4,20,,200,,3,,1,0xFFFFFFFF,7,2,256,,0,1,388,{ bonus bVit,1; skill "AL_ANGELUS",1; },{},{ sc_end SC_ANGELUS; } -5383,Hunting_Cap,Hunter's Cap,4,20,,250,,3,,1,0xFFFFFFFE,7,2,256,,50,1,389,{ bonus bLuk,1; bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Player_Doram,10; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; },{},{} -5384,Santa_Hat_1,Twin Pompom By JB,4,20,,200,,1,,1,0xFFFFFFFF,7,2,256,,20,1,390,{ bonus bLuk,3; skill "WZ_ESTIMATION",1; bonus3 bAutoSpell,"AL_INCAGI",1,500; },{},{} -5385,Yoyo_Hat,Yoyo Hat,4,20,,300,,1,,0,0xFFFFFFFF,7,2,256,,20,1,391,{ skill "TF_HIDING", 1; },{},{ sc_end SC_HIDING; } -5386,Ayam_,Ayam,4,0,,70,,7,,0,0xFFFFFFFF,7,2,256,,1,0,228,{ bonus bMdef,7; bonus bFlee,7; bonus2 bAddMonsterDropItem,12198,200; },{},{} -5387,Neko_Mimi_Kafra,Neko Mimi Kafra,4,20,,200,,1,,1,0xFFFFFFFF,7,2,256,,30,1,392,{ bonus bMdef,5; },{},{} -5388,Snake_Head,Snake Head Hat,4,20,,200,,1,,1,0xFFFFFFFF,7,2,256,,30,1,393,{ skill "TF_DOUBLE",5; bonus bDoubleRate,25; },{},{} -5389,Angel_Spirit,Angel Spirit,4,20,,200,,0,,0,0xFFFFFFFF,7,2,512,,30,0,394,{ bonus bStr,2; bonus bHit,15; },{},{} -5390,Santa_Hat_2,Frozen Twin Pompom,4,20,,100,,2,,0,0xFFFFFFFF,7,2,256,,0,1,395,{ bonus2 bResEff, Eff_Freeze, 3000; },{},{} -5391,Toast_C,Toast,4,20,,0,,0,,0,0xFFFFFFFF,7,2,1,,0,0,188,{ bonus bMaxHP,100; bonus2 bAddMonsterDropItem,617,10; },{},{} -5392,Louyang_Cap,Luoyang NewYear Hat,4,20,,300,,3,,1,0xFFFFFFFF,7,2,256,,0,1,396,{ bonus bLuk,2; },{},{} -5393,Valentine_Hat,Love Valentine's Hat,4,20,,200,,2,,0,0xFFFFFFFF,7,2,256,,0,0,397,{ bonus bMaxSPrate, 7; bonus bMaxHPrate, 7; },{},{} -5394,Bubblegum_Lower,Bubblegum,4,0,,0,,0,,0,0xFFFFFFFF,7,2,1,,0,0,0,{},{},{} -5395,Tiraya_Bonnet,Striped Hat,4,20,,500,,2,,1,0xFFFFFFFF,7,2,256,,50,1,398,{ bonus bMaxHP,100+(getrefine()*20); bonus bLuk,3; },{},{} -5396,Jasper_Crest,Jasper Crest,4,20,,700,,2,,1,0xFFFFFFFF,7,2,256,,0,1,399,{ bonus bDex,3; bonus bVit,1; },{},{} -5397,Scuba_Mask,Scuba Gear,4,20,,100,,0,,0,0xFFFFFFFF,7,2,512,,0,0,400,{ bonus2 bSubEle,Ele_Water, 10; bonus bUnbreakableHelm, 0; },{},{} -5398,Bone_Head,Bone Head,4,20,,1200,,5,,1,0x000444A2,2,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,2,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,7,0,769,,0,0,403,{ bonus bLuk,1; },{},{} -5401,Black_Glasses,Black Frame Glasses,4,20,,200,,1,,0,0xFFFFFFFF,7,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,7,2,512,,70,0,405,{ bonus bUnbreakableHelm, 0; bonus bFlee2, 3; },{},{} -5403,Fish_In_Mouth,Fish In Mouth,4,10,,200,,0,,0,0xFFFFFFFF,7,2,1,,30,0,406,{ bonus2 bAddMonsterDropItem,579,500; bonus2 bAddItemHealRate,579,25; },{},{} -5404,Blue_Ribbon,Blue Ribbon,4,10,,100,,1,,1,0xFFFFFFFF,7,2,256,,45,1,407,{ bonus4 bAutoSpellWhenHit,"AC_CONCENTRATION",2,7,0; },{},{} -5405,Filir_Hat,Filir Hat,4,10,,200,,0,,0,0xFFFFFFFF,7,2,256,,80,0,408,{ bonus bShortWeaponDamageReturn, 1; },{},{} -5406,Academy_Freshman_Hat,Academy Freshman Hat,4,0,,500,,2,,0,0xFFFFFFFF,7,2,256,,0,1,409,{ bonus bMaxHP,80; bonus bMaxSP,10; },{},{} -5407,Academy_Graduating_Cap,Academy Completion Hat,4,0,,200,,2,,1,0xFFFFFFFF,7,2,256,,0,1,410,{ bonus bMaxSP,30; },{},{} -5408,Old_Bandanna,Old Bandana,4,0,,0,,5,,0,0xFFFFFFFF,7,2,256,,0,0,6,{ bonus bInt,2; bonus bMaxSP,50; bonus bCastrate,10; },{},{} -5409,New_Cowboy_Hat,Purple Cowboy Hat,4,20,,500,,4,,1,0xFFFFFFFF,7,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,7,2,769,,0,0,412,{ bonus bMaxHP,100; bonus2 bResEff, Eff_Stun, 400; bonus2 bSubRace,RC_DemiHuman,4; bonus2 bSubRace,RC_Player_Human,4; },{},{} -5411,White_Snake_Hat,White Snake Hat,4,20,,500,,2,,0,0xFFFFFFFF,7,2,256,,0,1,413,{ bonus bDex,2; },{},{} -5412,Sweet_Candy,Sweet Candy,4,20,,100,,1,,0,0xFFFFFFFF,7,2,1,,0,0,414,{ bonus bUnbreakableHelm, 0; },{},{} -5413,Popcorn_Hat,Pop Corn Hat,4,20,,300,,2,,0,0xFFFFFFFF,7,2,256,,0,0,415,{ bonus2 bSubEle,Ele_Wind, 10; },{},{} -5414,Campfire_Hat,Camp Fire Hat,4,20,,300,,2,,0,0xFFFFFFFF,7,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,7,2,256,,40,1,417,{ bonus bMdef,5; bonus bCritical,5; bonus bFlee,5; bonus bFlee2,5; bonus bAspdRate,5; bonus bCastrate,-5; bonus bDelayRate,-5; },{},{} -5416,Beer_Cap,Beer Hat,4,20,,600,,2,,0,0xFFFFFFFE,7,2,256,,18,1,418,{ bonus bFlee2,5; skill "SM_RECOVERY",3; skill "MG_SRECOVERY",3; },{},{} -5417,Crown_Parrot,Crown Parrots,4,20,,200,,1,,1,0xFFFFFFFF,7,2,256,,0,0,419,{ bonus bInt,1; bonus2 bResEff,Eff_Silence,10000; bonus3 bAutoSpell,"DC_SCREAM",1,50; },{},{} -5418,Soldier_Hat,Legionnaire Hat,4,20,,400,,4,,1,0xFFFFFFFF,7,2,256,,0,1,420,{ bonus bStr,1; bonus2 bAddClass,Class_All,3; bonus bUseSPrate,10; },{},{} -5419,Evolved_Leaf,Leaves Of Grass,4,20,,100,,0,,0,0xFFFFFFFF,7,2,1,,0,0,57,{ bonus bVit,1; bonus2 bSubRace,RC_Plant,5; },{},{} -5420,Mask_Of_Ifrit,Mask Of Ifrit,4,,,0,,8,,0,0xFFFFFFFE,7,2,769,,70,0,421,{ bonus bStr,1; bonus bInt,1; bonus bMdef,5; bonus2 bSubEle,Ele_Fire,10; bonus2 bSubEle,Ele_Water,-10; skill "MG_SIGHT",1; bonus3 bAutoSpellWhenHit,"WZ_METEOR",3,50; bonus3 bAutoSpell,"MG_FIREBOLT",3,50; },{},{ sc_end SC_SIGHT; } -5421,Ifrit's_Ear,Ears Of Ifrit,4,20,,0,,0,,0,0xFFFFFFFE,7,2,512,,70,0,422,{ bonus bStr,1; bonus bMdef,3; bonus2 bSkillAtk,"MG_FIREBOLT",2; bonus2 bSkillAtk,"WZ_FIREPILLAR",2; bonus2 bSkillAtk,"WZ_METEOR",2; bonus2 bSkillAtk,"SM_BASH",2; bonus2 bSkillAtk,"SM_MAGNUM",2; bonus2 bSkillAtk,"KN_PIERCE",2; bonus2 bSubEle,Ele_Fire,5; bonus2 bSubEle,Ele_Water,-5; },{},{} -5422,Linguistic_Book_Cap,Linguistic Book Hat,4,20,,70,,0,,0,0xFFFFFFFF,7,2,256,,0,1,423,{ bonus bInt,1; bonus bMdef,2; },{},{} -5423,Lovecap_China,I Love China,4,20,,250,,5,,0,0xFFFFFFFF,7,2,256,,0,0,424,{ bonus bDex,3; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; },{},{} -5424,Fanta_Orange_Can,Fanta Orange Can Hat,4,20,,100,,2,,1,0xFFFFFFFF,7,2,256,,0,1,425,{},{},{} -5425,Fanta_Grape_Can,Fanta Grape Can Hat,4,20,,100,,2,,1,0xFFFFFFFF,7,2,256,,0,1,426,{},{},{} -5426,Karada_Meguri_Tea_Hat,Karada Meguricha Hat,4,20,,100,,2,,1,0xFFFFFFFF,7,2,256,,0,1,427,{ bonus bLuk,1; },{},{} -5427,Royal_Milk_Tea_Hat,Black Tea Kochakaden Hat,4,20,,100,,2,,1,0xFFFFFFFF,7,2,256,,0,1,428,{ bonus bAgi,1; },{},{} -5428,Bread_Bag1,RWC Anniversary Bread Envelope,4,,,100,,0,,0,0xFFFFFFFF,7,2,769,,0,1,429,{ bonus2 bSubRace,RC_DemiHuman,12; bonus2 bSubRace,RC_Player_Human,12; },{},{} -5429,Bogy_Cap,Bogy Cap,4,20,,100,,2,,1,0xFFFFFFFF,7,2,256,,0,1,430,{ bonus bHPrecovRate, 5; bonus bSPrecovRate, 5; },{},{} -5430,Sacred_Torch_Coronet,Torch Cap,4,20,,0,,3,,0,0xFFFFFFFF,7,2,256,,0,0,431,{ bonus2 bSubEle,Ele_Fire,20; skill "MG_FIREBOLT",5; },{},{} -5431,Chicken_Hat,Chicken Hat,4,20,,1000,,0,,1,0xFFFFFFFF,7,2,256,,30,1,432,{ bonus3 bAutoSpell,"MC_LOUD",1,30; bonus bAspdRate,5; },{},{} -5432,Brazil_Baseball_Cap,bRO 4th Anniversary Hat,4,20,,100,,0,,0,0xFFFFFFFF,7,2,256,,0,1,433,{ if(gettime(DT_MONTH)==SEPTEMBER&&gettime(DT_DAYOFMONTH)>=10&&gettime(DT_DAYOFMONTH)<=24) bonus bAllStats, 4; },{},{} -5433,Golden_Wreath,Golden Laurel,4,20,,100,,0,,0,0xFFFFFFFF,7,2,256,,0,1,434,{},{},{} -//5434,Cola_Can,Cola Can,4,20,,100,,2,,1,0xFFFFFFFF,7,2,256,,0,1,435,{},{},{} -5435,Coke_Hat,Red Minstrel Hat,4,20,,100,,1,,1,0xFFFFFFFF,7,2,256,,40,1,436,{ bonus bInt,1; bonus bMaxSP,80; bonus bMdef,3; if(getrefine()>5) { bonus bMdef,getrefine()-5; bonus bMaxSP,(getrefine()-5)*10; } },{},{} -5436,Bride's_Corolla,Bride's Corolla,4,20,,200,,1,,0,0xFFFFFFFF,7,2,256,,0,1,437,{ bonus bLuk,3; bonus bMdef,2; },{},{} -5437,Flower_Of_Fairy,Fairy Flower,4,20,,200,,1,,1,0xFFFFFFFF,7,2,256,,0,1,438,{ bonus bInt,1; bonus bMdef,1; bonus2 bSubRace,RC_Insect,5; },{},{} -5438,Fillet_Green,Cute Green Ribbon,4,500,,100,,1,,0,0xFFFFFFFE,7,2,256,,0,0,439,{ bonus bMaxSP,20; },{},{} -5439,Fillet_Red,Cute Red Ribbon,4,500,,100,,1,,0,0xFFFFFFFE,7,2,256,,0,0,440,{ bonus bMaxSP,20; },{},{} -5440,Fillet_Blue,Cute Blue Ribbon,4,500,,100,,1,,0,0xFFFFFFFE,7,2,256,,0,0,441,{ bonus bMaxSP,20; },{},{} -5441,Fillet_White,Cute White Ribbon,4,500,,100,,1,,0,0xFFFFFFFE,7,2,256,,0,0,442,{ bonus bMaxSP,20; },{},{} -5442,Necktie,Necktie,4,20,,100,,3,,1,0xFFFFFFFF,7,2,256,,70,1,443,{ bonus bVit,1; bonus bHit,-5; bonus bUseSPrate,5; },{},{} -5443,Status_Of_Baby_Angel,Statue Of Baby Angel,4,20,,600,,3,,1,0xFFFFFFFF,7,2,256,,70,1,444,{ bonus bMdef,2; bonus4 bAutoSpellWhenHit,"PR_STRECOVERY",1,20,0; },{},{} -5444,Hair_Brush,Hair Brush,4,20,,100,,0,,0,0xFFFFFFFF,7,2,256,,0,1,445,{ bonus bCritical,6; },{},{} -5445,Candy_Cane_In_The_Mouth,Candy Cane In Mouth,4,20,,100,,0,,0,0xFFFFFFFF,7,2,1,,0,0,446,{ bonus bMaxSP,5; },{},{} -5446,Cat_Foot_Hairpin,Catfoot Hairpin,4,20,,200,,0,,1,0xFFFFFFFF,7,2,256,,0,1,447,{ bonus bFlee,5; bonus bFlee2,3; },{},{} -5447,Frog_Cap,Frog Hat,4,20,,500,,3,,0,0xFFFFFFFF,7,2,256,,70,1,448,{ bonus bMdef,1; bonus2 bAddRace,RC_Insect,12; bonus2 bMagicAddRace,RC_Insect,12; },{},{} -5448,Solo_Play_Box1,Soloplay Box1,4,,,300,,0,,1,0xFFFFFFFF,7,2,769,,0,1,449,{},{},{} -5449,Solo_Play_Box2,Soloplay Box2,4,,,300,,0,,1,0xFFFFFFFF,7,2,769,,0,1,450,{},{},{} -5450,Sun_Cap,Solar Hat,4,20,,1000,,0,,0,0xFFFFFFFE,7,2,256,,20,1,451,{},{},{} -5451,Dragonhelm_Gold,RWC 2008 Dragon Helm Gold,4,20,,2500,,7,,1,0xFFFFFFFF,7,2,256,,1,0,452,{ bonus bAspdRate,10; bonus bAllStats,3; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; },{},{} -5452,Dragonhelm_Silver,RWC 2008 Dragon Helm Silver,4,20,,2500,,5,,1,0xFFFFFFFF,7,2,256,,1,0,453,{ bonus bAspdRate,7; bonus bAllStats,2; bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player_Human,3; },{},{} -5453,Dragonhelm_Copper,RWC 2008 Dragon Helm Copper,4,20,,2500,,0,,1,0xFFFFFFFF,7,2,256,,1,0,454,{ bonus bAspdRate,5; bonus bAllStats,2; bonus2 bAddRace,RC_DemiHuman,1; bonus2 bAddRace,RC_Player_Human,1; },{},{} -5454,Dog_Cap_,Puppy Hat,4,20,,500,,3,,1,0xFFFFFFFF,7,2,256,,0,1,234,{ bonus bStr,1; bonus bInt,1; autobonus "{ bonus bCritical,100; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; autobonus "{ bonus2 bIgnoreMdefClassRate,Class_Normal,100; bonus2 bIgnoreMdefClassRate,Class_Boss,100; }",10,3000,BF_MAGIC,"{ specialeffect2 EF_MAGICALATTHIT; }"; },{},{} -5455,Geographer_Band_,Decorative Geographer,4,20,,500,,1,,1,0xFFFFFFFF,7,2,256,,0,1,238,{ bonus bInt,1; bonus3 bAutoSpell,"AL_HEAL",5,50; bonus3 bAutoSpellWhenHit,"AL_HEAL",5,30; },{},{} -5456,Vacation_Hat_,Summer Hat,4,20,,200,,0,,1,0xFFFFFFFF,7,2,256,,0,1,315,{ bonus bVit,5; bonus bHPrecovRate,20; bonus bSPrecovRate,15; },{},{} -5457,Spring_Rabbit_Hat,Moon Rabbit Hat,4,20,,300,,2,,1,0xFFFFFFFF,7,2,256,,1,1,455,{ bonus bAgi,3; bonus bBaseAtk,5; bonus bMatkRate,5; if(getrefine()>4) { bonus bBaseAtk,getrefine()-4; bonus bMatkRate,getrefine()-4; } },{},{} -5458,Pinwheel_Cap,Pinwheel Hat,4,20,,200,,2,,0,0xFFFFFFFF,7,2,256,,0,1,456,{ bonus bMaxHPrate,5; bonus bMaxSPrate,5; },{},{} -5459,Drooping_Bunny_Chusuk,Drooping Bunny,4,0,,100,,1,,0,0xFFFFFFFF,7,2,256,,0,1,249,{ bonus bDex,1; bonus bFlee,2; },{},{} -5460,Adv_Dragon_Skull,Evolved Dragon Skull Hat,4,20,,1000,,7,,0,0xFFFFFFFF,7,2,256,,60,1,457,{ bonus bAllStats, 2; bonus bMaxHPrate, 3; },{},{} -5461,Adv_Whisper_Mask,Evolved Whisper Mask,4,20,,300,,1,,0,0xFFFFFFFF,7,2,769,,50,1,458,{ bonus bDex,3; bonus2 bSubEle,Ele_Ghost, 20; },{},{} -5462,Spiked_Scarf,Spiked Scarf,4,20,,100,,1,,0,0xFFFFFFFF,7,2,1,,90,0,459,{ bonus bVit,1; bonus2 bAddRace,RC_DemiHuman,1; bonus2 bAddRace,RC_Player_Human,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; },{},{} -5463,Rainbow_Scarf,Rainbow Scarf,4,20,,100,,1,,0,0xFFFFFFFF,7,2,1,,90,0,460,{ bonus bInt,1; bonus bMdef,2; bonus bMatkRate,1; },{},{} -5464,Zaha_Doll_Hat,Zaha Doll Hat,4,20,,0,,1,,0,0xFFFFFFFF,7,2,256,,0,0,461,{ bonus bInt,2; skill "PR_MAGNIFICAT", 3; },{},{} -//5465,Celestial_Hat,Hat Of Fortune,4,20,,500,,3,,1,0xFFFFFFFF,7,2,256,,40,1,462,{ bonus bLuk,2; bonus bMdef,5; if(getrefine()>4) bonus bLuk,getrefine()-4; },{},{} -//5466,Wind_Milestone,Wind Milestone,4,20,,100,,2,,1,0xFFFFFFFF,7,2,256,,30,1,463,{ bonus bAgi,2; skill "AL_TELEPORT",1; },{},{} -//5467,Helm_Of_Dragoon,Helm Of Dragon,4,20,,2000,,5,,0,0xFFFFFFFF,7,2,256,,50,1,464,{ bonus2 bAddRace,RC_Dragon,20; bonus3 bAutoSpell,"NPC_DRAGONFEAR",1,30; },{},{} -//5468,Parade_Cap,Parade Hat,4,20,,800,,3,,1,0xFFFFFFFF,7,2,256,,0,1,465,{ bonus bDelayRate,-5; bonus bMdef,2; if(getrefine()>5) bonus bCastrate,-(getrefine()-5); },{},{} -//5469,Noble_Hat,Musketeer Hat,4,20,,300,,2,,0,0xFFFFFFFF,7,2,256,,30,1,466,{ bonus bStr,2; bonus3 bAutoSpellWhenHit,"BS_ADRENALINE",1,7; },{},{} -//5470,Eyes_Of_Darkness,Eye Of Darkness,4,20,,100,,1,,0,0xFFFFFFFF,7,2,512,,50,0,467,{ bonus bDex,1; bonus2 bResEff,Eff_Blind,10000; },{},{} -//5471,Hairband_Of_Reginleif,Hairband Of Reginleif,4,20,,800,,1,,0,0xFFFFFFFF,7,2,512,,50,0,468,{ bonus2 bSubEle,Ele_Water,3; bonus2 bSubEle,Ele_Fire,3; bonus2 bSubEle,Ele_Undead,3; bonus2 bSubEle,Ele_Ghost,3; },{},{} -//5472,Red_White_Hat,Red Hat,4,20,,100,,0,,0,0xFFFFFFFF,7,2,256,,0,1,469,{ bonus3 bAddMonsterDropItem,550,RC_DemiHuman,3; },{},{} -//5473,Forceps_Hairpin,Nipper Crab Hairpin,4,20,,500,,4,,0,0xFFFFFFFF,7,2,256,,30,1,470,{ bonus3 bAutoSpellWhenHit,"MG_COLDBOLT",1,100; bonus3 bAddMonsterDropItem,991,RC_Fish,3; },{},{} -//5474,Notice_Board,AFK Hat,4,20,,700,,2,,0,0xFFFFFFFF,7,2,256,,10,0,471,{},{},{} -//5475,Cube_Mask,Mask Cube,4,20,,100,,1,,0,0xFFFFFFFF,7,2,513,,0,0,472,{},{},{} -5476,Hairband_Of_Grandpeco,Grand Peco Hairband,4,20,,800,,2,,0,0xFFFFFFFF,7,2,768,,30,1,473,{ bonus bStr,2; bonus bMaxHPrate,-10; bonus2 bAddRace2,RC2_Orc,15; },{},{} -5477,Bro_Flag,Brazilian Flag Hat,4,20,,100,,1,,1,0xFFFFFFFF,7,2,256,,30,1,474,{ skill "SM_BASH", 1; },{},{} -5478,Classic_Hat,Classic Hat,4,20,,500,,3,,0,0xFFFFFFFF,7,2,256,,0,1,475,{ bonus bStr,2; bonus bMaxHP,300; },{},{} -5479,Shaman's_Hair_Ornament,Shaman's Hair Decoration,4,20,,300,,1,,0,0xFFFFFFFF,7,2,256,,30,1,476,{ bonus bMdef,3; bonus bMaxHP,50; bonus2 bSubEle,Ele_Neutral,5; },{},{} -5480,Bizofnil_Wing_Deco,Bijofnil Wings,4,20,,1000,,3,,0,0xFFFFFFFF,7,2,256,,30,1,477,{ bonus bAllStats,2; bonus3 bAutoSpell,"PR_IMPOSITIO",3,3; },{},{} -5481,Hermose_Cap,Hermode Cap,4,20,,1000,,1,,1,0xFFFFFFFF,7,2,256,,1,1,478,{ bonus bAspdRate,10; bonus bBaseAtk,-20; bonus bMatkRate,-10; },{},{} -5482,Dark_Knight_Mask,Dark Knight Mask,4,,,3000,,5,,0,0xFFFFFFFF,7,2,769,,80,1,479,{ bonus bStr,3; },{},{} -5483,Odin_Mask,Odin Mask,4,20,,100,,1,,0,0xFFFFFFFF,7,2,513,,50,0,480,{ bonus bHit,-10; bonus2 bAddRace,RC_DemiHuman,6; bonus2 bAddRace,RC_Player_Human,6; },{},{} -//5484,Taiwan_Flag_Hat,Holidays Hat,4,20,,500,,4,,0,0xFFFFFFFF,7,2,256,,0,0,482,{ bonus bAllStats,5; bonus2 bResEff,Eff_Stun,500; },{},{} -5485,Tiger_Face,Tiger Face,4,20,,1000,,3,,0,0xFFFFFFFF,7,2,769,,60,1,483,{ bonus2 bSubRace,RC_Brute,5; bonus2 bAddRace,RC_Brute,5; bonus2 bMagicAddRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5; bonus2 bAddRace,RC_Player_Doram,5; bonus2 bMagicAddRace,RC_Player_Doram,5; },{},{} -5486,J_Anniversary_Hat,Anniversary Hat,4,20,,300,,3,,0,0xFFFFFFFF,7,2,256,,0,1,395,{ bonus bAllStats, 2; },{},{} -5487,J_Poringcake_Hat,Poring Cake Hat,4,20,,500,,1,,0,0xFFFFFFFF,7,2,256,,0,1,417,{ bonus bLuk,2; },{},{} -5488,J_Twin_Santahat,Twin Santa Hat,4,20,,100,,1,,0,0xFFFFFFFF,7,2,256,,0,1,390,{ bonus bLuk,1; bonus bMdef,1; },{},{} -5489,Love_Daddy,Love Daddy Hat,4,20,,100,,0,,0,0xFFFFFFFF,7,2,256,,0,1,484,{ bonus bDex,2; },{},{} -5490,Anubis_Helm,Anubis Helm,4,20,,0,,3,,0,0xFFFFFFFF,7,2,256,,70,0,485,{ bonus bMdef,5; bonus2 bSubClass,Class_Boss,10; bonus bHealpower2,10; bonus bAddItemHealRate,10; },{},{} -5491,Hat_Of_Outlaw,Bandit Hat,4,20,,800,,3,,1,0xFFFFFFFF,7,2,256,,0,1,486,{ bonus bStr,2; bonus2 bSubEle,Ele_Fire, 10; },{},{} -5492,Boy's_Cap_I,Student Cap,4,0,,0,,5,,0,0xFFFFFFFE,7,2,256,,0,0,102,{ bonus bMdef,3; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; },{},{} -5493,Ulle_Cap_I,Ulle's Cap,4,0,,0,,3,,0,0xFFFFFFFE,7,2,256,,0,0,254,{ bonus bDex,2; bonus bAgi,1; },{},{} -5494,Spinx_Helm_I,Sphinx Hat,4,0,,0,,5,,0,0x00004082,7,2,257,,0,0,137,{ bonus bStr,5; },{},{} -5495,Power_Of_Thor,Power Of Thor,4,20,,100,,6,,1,0xFFFFFFFF,7,2,256,,75,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,7,2,256,,50,0,494,{ bonus bLuk,4; },{},{} -5497,King_Tiger_Doll_Hat,King Tiger Doll Hat,4,20,,400,,3,,1,0xFFFFFFFE,7,2,256,,30,1,495,{ bonus bStr,2; },{},{} -5498,Wondering_Wolf_Helm,Wandering Wolf Helm,4,20,,600,,5,,0,0xFFFFFFFE,7,2,768,,50,1,490,{ bonus bVit,5; bonus bFlee,10; },{},{} -5499,Pizza_Hat,Pizza Hat,4,20,,600,,0,,0,0xFFFFFFFF,7,2,256,,0,0,487,{ skill "SM_PROVOKE", 1; },{},{} -5500,Icecream_Hat,Icecream Hat,4,0,,300,,6,,0,0xFFFFFFFF,7,2,256,,30,1,488,{ bonus bMdef,3; skill "MG_FROSTDIVER",3; },{},{} -5501,Pirate's_Pride,Pirate's Pride,4,0,,100,,6,,0,0xFFFFFFFF,7,2,256,,10,0,496,{ bonus2 bAddRace2,RC2_Ninja,5; bonus2 bSubRace2,RC2_Ninja,5; },{},{} -5502,Necromencer's_Hood,Necromancer's Hood,4,0,,500,,2,,0,0xFFFFFFFF,7,2,768,,1,1,491,{ bonus5 bAutoSpellWhenHit,"NPC_DARKSTRIKE",5,5,BF_WEAPON|BF_MAGIC,1; },{},{} -5503,Rabbit_Magic_Hat,Magic Rabit Hat,4,0,,800,,2,,0,0xFFFFFFFF,7,2,256,,0,1,497,{ bonus bDex,2; bonus bAgi,2; bonus bMdef,1; bonus bMaxSP,50; bonus3 bAutoSpellWhenHit,"MG_FIREBOLT",1,20; bonus3 bAutoSpellWhenHit,"MG_COLDBOLT",1,20; bonus3 bAutoSpellWhenHit,"MG_LIGHTNINGBOLT",1,20; },{},{} -5504,China_Wedding_Veil,Wedding Weil,4,20,,500,,5,,0,0xFFFFFFFF,7,2,768,,70,1,489,{ bonus bMdef,10; },{},{} -5505,Asara_Fairy_Hat,Asara Fairy Hat,4,0,,500,,2,,0,0xFFFFFFFF,7,2,768,,50,1,492,{ skill "DC_DONTFORGETME",1; bonus bDex,2; bonus bLuk,2; },{},{} -5506,Blue_Pajamas_Hat,Blue Night Cap,4,0,,100,,4,,0,0xFFFFFFFF,7,2,256,,0,1,501,{ bonus bBaseAtk,5; bonus bMatkRate,5; },{},{} -5507,Pink_Pajamas_Hat,Pink Night Cap,4,0,,100,,4,,0,0xFFFFFFFF,7,2,256,,0,1,502,{ bonus bBaseAtk,5; bonus bMatkRate,5; },{},{} -5508,Shark_Hat,Shark Hat,4,20,,500,,3,,0,0xFFFFFFFF,7,2,256,,0,1,503,{ bonus bStr,1; bonus bAgi,2; bonus bMdef,1; bonus2 bAddEle,Ele_Water,5; bonus2 bSubEle,Ele_Water,10; },{},{} -5509,Sting_Hat,Sting hat,4,20,,1000,,5,,0,0xFFFFFFFF,7,2,256,,0,1,504,{ bonus bStr,2; bonus bVit,1; bonus bMdef,3; bonus2 bAddEle,Ele_Fire,5; bonus2 bSubEle,Ele_Earth,5; bonus3 bAutoSpell,"WZ_EARTHSPIKE",1,10; },{},{} -5510,Shower_Cap,Shower Cap,4,20,,0,,4,,0,0xFFFFFFFF,7,2,256,,0,1,507,{ bonus bMdef,3; bonus bFlee,3; bonus2 bAddEle,Ele_Water,10; bonus2 bSubRace,RC_Fish,10; },{},{} -5511,Samambaia,Samambaia,4,20,,200,,5,,1,0xFFFFFFFF,7,2,768,,30,1,508,{ bonus bSPrecovRate,8; },{},{} -5512,Aquarius_Diadem,Aquarius Diadem,4,20,,300,,6,,0,0xFFFFFFFF,7,2,256,,70,1,509,{ bonus bStr,2; bonus bFlee,10; bonus2 bSubEle,Ele_Wind, 5; if(getrefine()>6) { bonus bDef, 1; bonus bBaseAtk,15; } },{},{} -5513,Aquarius_Crown,Aquarius Crown,4,20,,300,,6,,0,0xFFFFFFFF,7,2,256,,70,1,510,{ bonus bStr,2; bonus bFlee,10; bonus2 bSubEle,Ele_Wind, 5; if(getrefine()>6) { bonus bDef, 1; bonus bBaseAtk,15; } },{},{} -5514,Pisces_Diadem,Pisces Diadem,4,20,,300,,6,,0,0xFFFFFFFF,7,2,256,,70,1,511,{ bonus bInt,2; bonus bMdef,5; bonus2 bSubEle,Ele_Water, 5; if(getrefine()>6) { bonus bDef, 1; bonus bMatkRate,2; } },{},{} -5515,Pisces_Crown,Pisces Crown,4,20,,300,,6,,0,0xFFFFFFFF,7,2,256,,70,1,512,{ bonus bInt,2; bonus bMdef,5; bonus2 bSubEle,Ele_Water, 5; if(getrefine()>6) { bonus bDef, 1; bonus bMatkRate,2; } },{},{} -5516,Hawk_Eyes01,hawk Eyes,4,10,,100,,0,,0,0x00000800,2,2,512,,60,0,23,{ bonus bDex,1; },{},{} -5517,Hawk_Eyes02,Hawk Eyes,4,10,,100,,0,,0,0x00080808,7,2,512,,60,0,23,{ bonus bDex,1; },{},{} -5518,L_Magestic_Goat2,Gigantic Majestic Goat,4,20,,800,,5,,0,0xFFFFFFFF,7,2,256,,50,1,513,{ bonus2 bSubRace,RC_DemiHuman,12; bonus2 bSubRace,RC_Player_Human,12; bonus bBaseAtk,(JobLevel*2)/7; },{},{} -5519,Peacock_Feather,Peacock Feather,4,20,,800,,4,,1,0xFFFFFFFF,7,2,256,,1,1,514,{ bonus bInt,2; },{},{} -5520,Rabbit_Earplug,Rabbit Earplugs,4,,,400,,0,,1,0xFFFFFFFF,7,2,768,,1,1,515,{ bonus2 bAddClass,Class_All,4; bonus bMatkRate,4; },{},{} -5521,Angry_Mouth_C,Angry Mouth,4,0,,0,,0,,0,0xFFFFFFFF,7,2,1,,0,0,194,{ bonus bDelayRate,-3; },{},{} -5522,Fanta_Zero_Lemon_Hat,Fanta Zero Lemon Hat,4,20,,100,,4,,1,0xFFFFFFFF,7,2,256,,0,1,516,{},{},{} -5523,Sakura_Mist_Hat,Sakura Mist Hat,4,20,,100,,4,,1,0xFFFFFFFF,7,2,256,,0,1,517,{ bonus bDex,1; },{},{} -5524,Sakura_Milk_Tea_Hat,Sakura Milk Tea Hat,4,20,,100,,4,,1,0xFFFFFFFF,7,2,256,,0,1,518,{ bonus bVit,1; },{},{} -5525,First_Leaf_Tea_Hat,Flower Hat,4,20,,100,,4,,1,0xFFFFFFFF,7,2,256,,0,1,519,{ bonus bMaxHP,80; bonus bMaxSP,20; },{},{} -5526,Lady_Tanee_Doll,Tanigumi Girl Doll,4,20,,300,,4,,0,0xFFFFFFFF,7,2,256,,60,0,520,{ bonus bAgi,2; bonus bFlee,3; bonus2 bSubEle,Ele_Wind, 5; bonus2 bAddMonsterDropItem, 513, 200; },{},{} -5527,Lunatic_Hat,Lunatic Hat,4,20,,300,,2,,0,0xFFFFFFFF,7,2,256,,1,1,521,{ bonus bLuk,5; bonus bMdef,2; bonus bFlee2,5; bonus2 bAddMonsterDropItem,622,50; },{},{} -5528,King_Frog_Hat,Frog King Hat,4,20,,500,,4,,1,0xFFFFFFFE,7,2,256,,30,0,522,{ bonus bAgi,1; },{},{} -5529,Evil's_Bone_Hat,Satanic Bone Helm,4,20,,600,,6,,1,0xFFFFFFFF,7,2,768,,70,1,523,{ bonus bDex,3; bonus2 bSubEle,Ele_Neutral,5; skill "WZ_FROSTNOVA",1; },{},{} -5530,Raven_Cap,Raven Cap,4,20,,100,,6,,1,0xFFFFFFFF,7,2,256,,30,1,524,{},{},{} -5531,B_Dragon_Hat,Baby Dragon Hat,4,45000,,100,,1,,1,0xFFFFFFFF,7,2,256,,0,1,525,{ bonus bDex,2; .@bonus = max(getskilllv("TF_DOUBLE"), 5); skill "TF_DOUBLE",.@bonus; bonus bDoubleRate,.@bonus * 5; },{},{} -5532,Pirate_Dagger_J,Pirate Dagger,4,20,,100,,0,,0,0xFFFFFFFF,7,2,1,,0,1,327,{ bonus bShortWeaponDamageReturn,1; },{},{} -5533,Emperor_Wreath_J,Emperor Wreath,4,20,,800,,3,,1,0xFFFFFFFF,7,2,256,,80,1,261,{ bonus bAllStats,1; },{},{} -//5534,Fox_Hat_J,Fox Hat,4,20,,100,,1,,0,0xFFFFFFFF,7,2,513,,70,0,403,{ bonus bAgi,1; bonus bFlee2,2; },{},{} -5535,Side_Cap,Side Cap,4,0,,500,,3,,0,0xFFFFFFFF,7,2,256,,0,1,529,{ bonus bVit,1; bonus bDex,1; bonus bMdef,3; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player_Human,3; },{},{} -5536,Spare_Card,Spare Card,4,20,,10,,1,,0,0xFFFFFFFF,7,2,1,,1,0,526,{ bonus2 bAddMonsterDropItem,6187,1000; },{},{} -5537,Quati_Hat,Kwati Hat,4,20,,700,,2,,1,0xFFFFFFFF,7,2,256,,45,0,527,{ bonus bAgi,3; },{},{} -5538,Tucan_Hat,Tucan Hat,4,20,,600,,2,,1,0xFFFFFFFF,7,2,768,,45,0,528,{ bonus bDex,3; },{},{} -5539,Jaguar_Hat,Jaguar Hat,4,20,,400,,4,,1,0xFFFFFFFF,7,2,769,,25,1,530,{ bonus bMdef,2; skill "MC_LOUD", 1; },{},{} -5540,Freyja_SCirclet7,Freyja SCirclet7,4,20,,700,,8,,0,0xFFFFFFFF,7,2,256,,20,0,18,{ bonus bStr,1; bonus bInt,1; bonus bDex,1; },{},{} -5541,Freyja_SCirclet30,Freyja SCirclet30,4,20,,700,,8,,0,0xFFFFFFFF,7,2,256,,20,0,18,{ bonus bStr,1; bonus bInt,1; bonus bDex,1; },{},{} -5542,Freyja_SCirclet60,Freyja SCirclet60,4,20,,700,,8,,0,0xFFFFFFFF,7,2,256,,20,0,18,{ bonus bStr,1; bonus bInt,1; bonus bDex,1; },{},{} -5543,Freyja_SCirclet90,Freyja SCirclet90,4,20,,700,,8,,0,0xFFFFFFFF,7,2,256,,20,0,18,{ bonus bStr,1; bonus bInt,1; bonus bDex,1; },{},{} -5544,Time_Keeper_Hat,Time Keeper Hat,4,30000,,0,,6,,0,0xFFFFFFFF,7,2,256,,1,1,240,{ bonus bInt,2; bonus bMaxSP,50; },{},{} -5545,Aries_Diadem,Aries Diadem,4,20,,400,,3,,0,0xFFFFFFFF,7,2,256,,70,1,531,{ bonus bVit,2; bonus2 bSubEle,Ele_fire,5; if(getrefine()>6) { bonus bDef,1; bonus bVit,1; } },{},{} -5546,Aries_Crown,Aries Crown,4,20,,400,,3,,0,0xFFFFFFFF,7,2,256,,70,1,532,{ bonus bVit,2; bonus2 bSubEle,Ele_fire,5; if(getrefine()>6) { bonus bDef,1; bonus bVit,1; } },{},{} -5547,RJC_Katusa,RJC Katusa Flower,4,20,,200,,1,,1,0xFFFFFFFF,7,2,256,,0,1,533,{ bonus2 bSkillAtk, "WZ_HEAVENDRIVE", 15 + getequiprefinerycnt(EQI_HAND_R); bonus2 bSkillAtk, "WZ_EARTHSPIKE", 15 + getequiprefinerycnt(EQI_HAND_R); bonus2 bCastrate, "WZ_HEAVENDRIVE", -25; bonus2 bCastrate, "WZ_EARTHSPIKE", -25; ; },{},{} -5548,Scarlet_Rose,Scarlet Rose,4,20,,100,,0,,0,0xFFFFFFFF,7,2,1,,50,1,534,{ bonus bLuk,1; },{},{} -5549,Taurus_Diadem,Taurus Diadem,4,20,,300,,3,,0,0xFFFFFFFF,7,2,256,,70,1,535,{ bonus bDex,2; bonus bDelayRate,-2; bonus2 bSubEle,Ele_earth,5; if(getrefine()>6) { bonus bDex,1; bonus bMatkRate,1; } },{},{} -5550,Taurus_Crown,Taurus Crown,4,20,,300,,3,,0,0xFFFFFFFF,7,2,256,,70,1,536,{ bonus bDex,2; bonus bDelayRate,-2; bonus2 bSubEle,Ele_earth,5; if(getrefine()>6) { bonus bDex,1; bonus bMatkRate,1; } },{},{} -//5551,Holy_Egg_Hat,Holy Egg Hat,4,20,,0,,1,,0,0xFFFFFFFF,7,2,256,,0,1,537,{},{},{} -5552,Fest_Lord_Circlet,Festival Grand Circlet,4,0,,0,,8,,0,0xFFFFFFFF,7,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,7,2,256,,0,0,15,{ bonus bMdef,4; bonus2 bSubRace,RC_DemiHuman,9; bonus2 bSubRace,RC_Player_Human,9; },{},{} -5554,Octopus_Hat,Octopus Hat,4,20,,200,,3,,0,0xFFFFFFFF,7,2,256,,20,1,538,{ bonus3 bAutoSpell,"SM_PROVOKE",5,10; bonus bUnbreakableHelm; },{},{} -5555,Leaf_Cat_Hat,Leaf Cat Hat,4,20,,100,,3,,0,0xFFFFFFFF,7,2,256,,0,1,539,{ bonus bAgi,1; bonus3 bAutoSpellWhenHit,"AL_HEAL",3,10; },{},{} -5556,Fur_Seal_Hat,Seal Hat,4,20,,500,,3,,0,0xFFFFFFFF,7,2,769,,55,1,540,{ bonus bInt,1; bonus3 bAutoSpell,"WZ_FROSTNOVA",1,30; },{},{} -5557,Wild_Rose_Hat,Wild Rose Hat,4,20,,500,,6,,1,0xFFFFFFFE,7,2,256,,20,1,541,{ bonus bAgi,3; },{},{} -5558,Saci_Hat,Luxury Hat,4,20,,100,,6,,1,0xFFFFFFFF,7,2,256,,30,1,542,{ bonus3 bAddMonsterDropItem,510,RC_Plant,500; },{},{} -5559,Piece_Of_White_Cloth_E,Piece Of White Cloth,4,0,,0,,1,,0,0xFFFFFFFF,7,2,256,,0,1,543,{},{},{} -5560,Bullock_Helm_J,Bullock Helm,4,20,,3000,,3,,0,0xFFFFFFFF,7,2,256,,75,1,322,{ bonus bMaxHP,100; bonus bNoKnockback; 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; },{},{} -5561,Rabbit_Magic_Hat_J,Magic Rabbit Hat,4,0,,800,,1,,0,0xFFFFFFFF,7,2,256,,0,1,497,{ bonus bInt,1; bonus bMaxSP,50; bonus4 bAutoSpellWhenHit,"MG_FIREBOLT",3,10,3; bonus4 bAutoSpellWhenHit,"MG_COLDBOLT",3,10,3; bonus4 bAutoSpellWhenHit,"MG_LIGHTNINGBOLT",3,10,3; bonus3 bAutoSpellWhenHit,"AL_HEAL",1,10; },{},{} -5562,Good_Wedding_Veil_J,Luxurious Wedding Veil,4,0,,500,,0,,1,0xFFFFFFFF,7,2,768,,45,0,489,{ bonus bMdef,10; bonus bCastRate,-3; bonus bUseSPrate,-5; },{},{} -//5563,Dolor_Hat,Dolor Hat,4,20,,100,,1,,1,0xFFFFFFFF,7,2,256,,0,0,547,{},{},{} -5564,Crown_Of_Deceit,Crown of Deceit,4,20,,300,,3,,1,0xFFFFFFFF,7,2,768,,85,1,544,{ bonus bInt,4; bonus bCastRate,-10; },{},{} -5565,Dragon_Arhat_Mask,Dragon Arhat Mask,4,0,,0,,5,,0,0xFFFFFFFF,7,2,513,,1,0,545,{ bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; },{},{} -5566,Tiger_Arhat_Mask,Tiger Arhat Mask,4,0,,0,,1,,0,0xFFFFFFFF,7,2,513,,1,0,546,{ bonus2 bAddRace,RC_DemiHuman,2; bonus2 bAddRace,RC_Player_Human,2; },{},{} -5567,Bright_Fury,Bright Fury,4,20,,300,,1,,1,0xFFFFFFFF,7,2,256,,1,1,548,{ bonus bStr,1; bonus2 bAddClass,Class_All,2; bonus bAspdRate,2; },{},{} -5568,Rabbit_Bonnet,Rabbit Bonnet,4,20,,1000,,1,,1,0xFFFFFFFF,7,2,768,,0,1,549,{ bonus bInt,2; },{},{} -5569,Gemini_Diadem,Gemini Diadem,4,20,,300,,4,,0,0xFFFFFFFF,7,2,256,,70,1,550,{ bonus bAgi,2; bonus bMatkRate,2; if(getrefine()>6) { bonus bMdef,7; bonus bMAtkRate,8; bonus2 bSubEle,Ele_Wind,5; } },{},{} -5570,Gemini_Crown,Gemini Crown,4,20,,300,,4,,0,0xFFFFFFFF,7,2,256,,70,1,551,{ bonus bAgi,2; bonus bBaseAtk,2; bonus bMdef,5; if(getrefine()>6) { bonus bDef,1; bonus bMatk,15; bonus bFlee,10; bonus2 bSubEle,Ele_Wind,5; } },{},{} -//5571,Rasta_Wig,Rasta_Wig,4,20,,100,,1,,0,0xFFFFFFFF,7,2,256,,0,1,552,{ bonus bStr,1; },{},{} -5572,Savage_Baby_Hat,Savage Babe Hat,4,20,,100,,1,,1,0xFFFFFFFF,7,2,256,,1,1,553,{ bonus bVit,2; },{},{} -5573,Bogy_Horn,Dokebi Horn,4,20,,100,,1,,1,0xFFFFFFFF,7,2,256,,0,1,554,{},{},{} -5574,Pencil_In_Mouth,Well-Chewed Pencil,4,20,,100,,0,,0,0xFFFFFFFF,7,2,1,,10,0,555,{ bonus bdex,2; bonus bHitRate,3; },{},{} -5575,Onigiri_Hat,Rice Ball Hat,4,20,,100,,6,,1,0xFFFFFFFF,7,2,256,,30,0,556,{},{},{} -//5576,Japan_Winecup,Wine Cup,4,20,,100,,1,,0,0xFFFFFFFF,7,2,1,,0,0,557,{},{},{} -5577,Dark_Knight_MaskB,Dark Knight Mask,4,,,3000,,5,,0,0xFFFFFFFF,7,2,769,,80,1,479,{ bonus bStr,3; },{},{} -5578,Voyage_Hat,Voyage_Hat,4,200,,10,,1,,0,0xFFFFFFFF,7,2,256,,0,1,236,{ bonus bAgi,2; },{},{} -5579,Wanderer's_Sakkat,Wanderer's Sakkat,4,20,,300,,2,,1,0xFFFFFFFF,7,2,768,,70,1,558,{ bonus bAgi,2; },{},{} -//5580,Red_Beret,Red Beret,4,20,,100,,1,,0,0xFFFFFFFF,7,2,256,,0,0,559,{ bonus bAllStats,3; bonus bMdef,3; },{},{} -5581,Cancer_Diadem,Cancer Diadem,4,20,,300,,3,,0,0xFFFFFFFF,7,2,256,,70,1,560,{ bonus bInt,2; bonus2 bSubEle,Ele_water, 5; if(getrefine()>6) { bonus bMdef,1; bonus bHealPower, 3; bonus bMatkRate,2; } },{},{} -5582,Cancer_Crown,Cancer Crown,4,20,,300,,3,,0,0xFFFFFFFF,7,2,256,,70,1,561,{ bonus bStr,2; bonus2 bSubEle,Ele_water, 5; if(getrefine()>6) { bonus bDef, 1; bonus bBaseAtk,15; bonus bFlee,10; } },{},{} -5583,Para_Team_Hat,Eden Team Hat,4,0,,0,,1,,0,0xFFFFFFFF,7,2,256,,12,1,465,{},{},{} -5584,Majestic_Evil_Horn,Majestic Evil Horns,4,0,,400,,1,,0,0xFFFFFFFF,7,2,256,,1,1,562,{ bonus2 bSubRace,RC_Demon,3; bonus2 bHPDrainRate,3,15; bonus2 bSPDrainRate,1,7; },{},{} -5585,Rune_Hairband,Rune Cloth Circlet,4,20,,400,,1,,1,0xFFFFFFFF,7,2,768,,1,1,564,{},{},{} -5586,Mosquito_Coil,Mosquito Coil,4,20,,100,,1,,1,0xFFFFFFFF,7,2,256,,1,1,563,{},{},{} -5587,Mosquito_Coil_1Use,Mosquito Coil,4,0,,100,,1,,0,0xFFFFFFFF,7,2,256,,1,1,563,{},{},{} -//5588,Leo_Crown,Leo Crown,4,20,,300,,3,,0,0xFFFFFFFF,7,2,256,,70,1,565,{ bonus bStr,2; bonus2 bSubEle,Ele_Fire,5; if(getrefine()>6) { bonus bDef,1; bonus bFlee,10; bonus3 bAutoSpell,"TK_SEVENWIND",4,50; } },{},{} -//5589,Leo_Diadem,Leo Diadem,4,20,,300,,3,,0,0xFFFFFFFF,7,2,256,,70,1,566,{ bonus bDex,2; bonus2 bSubEle,Ele_Fire,5; if(getrefine()>6) { bonus bFlee,10; bonus bAspdRate,3; autobonus "{ bonus bSplashRange,1; }",10,10000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; } },{},{} -5590,K_Poring_Cake_Cap,Poring Cake Hat,4,20,,200,,1,,0,0xFFFFFFFF,7,2,256,,0,1,417,{},{},{} -//5591,Desert_Prince,Desert Prince,4,20,,100,,1,,1,0xFFFFFFFF,7,2,256,,30,0,567,{},{},{} -5592,Sigrun's_Wing,Sigrun's Wings,4,20,,100,,2,,0,0xFFFFFFFF,7,2,512,,80,0,568,{ if(BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Thief||(BaseJob==Job_Taekwon&&Class!=Job_Soul_Linker)) bonus bStr,1; else if(BaseClass==Job_Mage||BaseClass==Job_Acolyte||class==Job_Ninja||class==Job_Soul_Linker) bonus bInt,1; else if(BaseClass==Job_Archer||BaseClass==Job_Gunslinger) bonus bDex,1; else if(BaseJob==Job_Novice||BaseJob==Job_SuperNovice) { bonus bMaxHP,80; bonus bMaxSP,30; } },{},{} -5593,K_Rabbit_Bonnet,Rabbit Bonnet,4,20,,200,,1,,1,0xFFFFFFFF,7,2,768,,1,1,549,{},{},{} -5594,Donut_In_Mouth,Donut In Mouth,4,20,,50,,1,,0,0xFFFFFFFF,7,2,1,,1,0,569,{},{},{} -//5595,Eye_Of_Juno,Eye Of Juno,4,20,,400,,2,,1,0xFFFFFFFF,7,2,256,,1,1,570,{ bonus bMdef,2; },{},{} -5596,4Leaf_Clover_In_Mouth,4Leaf Clover In Mouth,4,20,,0,,2,,0,0xFFFFFFFF,7,2,1,,1,0,571,{ bonus bMdef,2; },{},{} -5597,Bubble_Gum_In_Mouth,Bubble Gum In Mouth,4,20,,0,,2,,0,0xFFFFFFFF,7,2,1,,1,0,572,{ bonus bMdef,2; },{},{} -//5598,Virgo_Crown,Virgo Crown,4,20,,300,,3,,1,0xFFFFFFFF,7,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; }"; } },{},{} -//5599,Virgo_Diadem,Virgo Diadem,4,20,,300,,3,,1,0xFFFFFFFF,7,2,256,,70,1,574,{ bonus bAspdRate,3; bonus2 bSubEle,Ele_Earth,5; if(getrefine()>6) bonus3 bAutoSpell,"MO_BALKYOUNG",1,50; },{},{} -5600,Br_Twin_Ribbon,Brazil Twin Ribbon,4,20,,100,,1,,0,0xFFFFFFFF,7,2,256,,1,1,575,{ bonus bAllStats,3; bonus bMdef,1; },{},{} -//5601,Br_Beret,Brazil Beret,4,20,,100,,1,,0,0xFFFFFFFF,7,2,256,,1,1,576,{ bonus bAllStats,3; bonus bMdef,1; },{},{} -//5602,Jaguar_Hat_J,Jaguar Hat J,4,20,,300,,0,,1,0xFFFFFFFF,7,2,513,,50,0,530,{},{},{} -5603,RTC_Winner_Only,RTC First Place,4,0,,250,,8,,1,0xFFFFFFFF,7,2,256,,1,1,577,{ bonus bAllStats, 3; },{},{} -5604,RTC_Second_Best,RTC Second Place,4,0,,250,,6,,1,0xFFFFFFFF,7,2,256,,1,1,578,{ bonus bAllStats, 2; },{},{} -5605,RTC_Third_Best,RTC Third Place,4,0,,250,,4,,1,0xFFFFFFFF,7,2,256,,1,1,579,{ bonus bAllStats, 1; },{},{} -//5606,Campume_Hat,Champune Hat,4,500,,1200,,4,,1,0xFFFFFFFF,7,2,256,,3,1,580,{ bonus bAllStats,1; },{},{} -//5607,Lyria_Doll_Hat,Lyria Doll Hat,4,0,,500,,0,,1,0xFFFFFFFF,7,2,256,,60,0,581,{},{},{} -//5608,Dorothy_Doll_Hat,Dorothy Doll Hat,4,0,,500,,0,,1,0xFFFFFFFF,7,2,256,,60,0,582,{},{},{} -//5609,Chung_Hairband,Chung Hairband,4,0,,500,,5,,1,0xFFFFFFFF,7,2,256,,60,0,583,{ bonus bLuk,3; bonus bMdef,4; },{},{} -//5610,Ice_Wing_Ear,Ice Wing Ear,4,0,,100,,0,,0,0xFFFFFFFF,7,2,512,,10,0,584,{ bonus bLuk,1; },{},{} -//5611,Turtle_Hat,Turtle_Hat,4,0,,300,,0,,0,0xFFFFFFFF,7,2,256,,10,1,585,{ bonus bAgi,1; },{},{} -//5612,F_Blue_Drooping_Kitty,F Blue Drooping Kitty,4,250000,,500,,1,,0,0xFFFFFFFE,7,2,256,,0,1,277,{ bonus bMdef,15; },{},{} -//5613,F_Flying_Angel,F Flying Angel,4,20,,300,,1,,0,0xFFFFFFFF,7,2,256,,10,1,264,{ bonus bInt,1; bonus bAgi,1; },{},{} -//5614,F_Smoking_Pipe_,F Smoking Pipe,4,20,,100,,0,,0,0xFFFFFFFE,7,2,1,,0,0,55,{ bonus bVit,1; },{},{} -//5615,F_Pair_Of_Red_Ribbon_,F Pair Of Red Ribbon,4,20,,100,,1,,0,0xFFFFFFFF,7,2,512,,45,0,169,{},{},{} -//5616,F_Fish_On_Head_,F Fish On Head,4,20,,500,,2,,0,0xFFFFFFFF,7,2,256,,50,1,149,{ bonus bDex,1; bonus bAgi,1; },{},{} -//5617,F_Hibiscus,F Hibiscus,4,20,,200,,0,,0,0xFFFFFFFF,7,2,256,,10,0,210,{ bonus bInt,1; bonus bDex,1; bonus bMdef,5; },{},{} -//5618,F_Cat_Hat,F Cat Hat,4,20,,300,,1,,0,0xFFFFFFFF,7,2,256,,0,1,182,{ bonus bLuk,2; bonus bMdef,10; },{},{} -//5619,F_Bunny_Band_,F Bunny Band,4,20,,100,,2,,0,0xFFFFFFFF,7,2,256,,0,1,15,{ bonus bInt,2; },{},{} -//5620,F_Magestic_Goat_TW,F Magestic Goat TW,4,20,,800,,5,,0,0x006444A2,7,2,256,,0,1,41,{ bonus bStr,2; },{},{} -//5621,F_Sheep_Hat,F Sheep Hat,4,20,,150,,1,,0,0x00008110,7,2,256,,0,0,205,{},{},{} -//5622,F_Mini_Propeller_,F Mini Propeller,4,20,,200,,2,,0,0xFFFFFFFF,7,2,256,,0,1,270,{ bonus bDex,1; bonus bAgi,2; },{},{} -//5623,F_Alice_Doll,F Alice Doll,4,20,,500,,0,,1,0xFFFFFFFE,7,2,256,,30,0,208,{ bonus bStr,1; },{},{} -//5624,F_Red_Glasses,F Red Glasses,4,20,,0,,1,,0,0xFFFFFFFF,7,2,512,,0,0,316,{ bonus bInt,1; },{},{} -//5625,F_Chick_Hat,F Chick Hat,4,20,,100,,1,,0,0xFFFFFFFF,7,2,256,,10,0,311,{ bonus bLuk,2; },{},{} -//5626,F_White_Deviruchi_Cap,F White Deviruchi Cap,4,20,,800,,2,,0,0xFFFFFFFE,7,2,256,,64,1,272,{ bonus bStr,1; bonus bInt,1; },{},{} -//5627,F_Vane_Hairpin,F Vane Hairpin,4,20,,300,,2,,1,0xFFFFFFFF,7,2,256,,30,0,313,{ bonus bAgi,2; },{},{} -//5628,F_Pecopeco_Hairband,F Pecopeco Hairband,4,20,,0,,3,,0,0xFFFFFFFF,7,2,256,,0,0,314,{},{},{} -//5629,F_Vacation_Hat,F Vacation Hat,4,20,,200,,1,,1,0xFFFFFFFF,7,2,256,,30,0,315,{ bonus bVit,1; },{},{} -//5630,F_Charming_Ribbon,F Charming Ribbon,4,20,,400,,1,,1,0xFFFFFFFF,7,2,256,,10,1,211,{},{},{} -//5631,F_Water_Lily_Crown,F Water Lily Crown,4,20,,200,,0,,1,0xFFFFFFFF,7,2,256,,30,0,312,{ bonus bDex,1; bonus bAgi,1; bonus bMdef,3; },{},{} -//5632,F_Vanilmirth_Hat,F Vanilmirth Hat,4,20,,1000,,0,,0,0xFFFFFFFF,7,2,256,,30,0,317,{ bonus bMdef,5; },{},{} -//5633,F_Drooping_Bunny_,F Drooping Bunny,4,20,,100,,1,,0,0xFFFFFFFF,7,2,256,,0,1,249,{ bonus bDex,1; },{},{} -//5634,F_Kettle_Hat,F Kettle Hat,4,20,,600,,4,,0,0xFFFFFFFF,7,2,256,,30,1,318,{},{},{} -//5635,F_Dragon_Skull,F Dragon Skull,4,20,,800,,5,,0,0xFFFFFFFF,7,2,256,,50,1,319,{},{},{} -//5636,F_Ramen_Hat,F Ramen Hat,4,20,,0,,1,,0,0xFFFFFFFF,7,2,256,,0,0,320,{ bonus bDex,4; },{},{} -//5637,F_Pink_Fur_Hat,F Pink Fur Hat,4,20,,350,,2,,0,0xFFFFFFFF,7,2,256,,0,1,281,{ bonus bLuk,1; },{},{} -//5638,F_Puppy_Hat,F Puppy Hat,4,20,,500,,2,,0,0xFFFFFFFF,7,2,256,,30,0,234,{ bonus bAgi,1; },{},{} -//5639,F_Magic_Eyes,F Magic Eyes,4,20,,300,,1,,0,0x00810204,7,2,256,,30,1,209,{ bonus bMdef,5; },{},{} -//5640,F_Jumping_Poring,F Jumping Poring,4,0,,300,,2,,0,0xFFFFFFFF,7,2,256,,0,0,349,{ bonus bLuk,1; },{},{} -//5641,F_Robo_Eye,F Robo Eye,4,20,,200,,1,,0,0xFFFFFFFF,7,2,512,,10,0,345,{ bonus bDex,1; },{},{} -//5642,F_Yellow_Wizardry_Hat,F Yellow Wizardry Hat,4,20,,300,,1,,0,0x00810204,7,2,256,,0,1,286,{ bonus bInt,2; },{},{} -//5643,F_Crescent_Helm,F Crescent Helm,4,20,,3000,,8,,0,0x000444A2,7,2,768,,50,1,213,{ bonus bVit,1; },{},{} -//5644,F_Tiger_Mask,F Tiger Mask,4,20,,400,,2,,0,0xFFFFFFFF,7,2,768,,50,0,181,{ bonus bStr,3; },{},{} -//5645,F_Fantastic_Wig,F Fantastic Wig,4,20,,100,,1,,0,0xFFFFFFFF,7,2,768,,0,1,308,{},{},{} -//5646,F_Whisper_Mask,F Whisper Mask,4,20,,0,,0,,0,0xFFFFFFFF,7,2,769,,0,0,321,{ bonus bAgi,3; },{},{} -//5647,F_Bunny_Band_C,F Bunny Band C,4,1,,0,,9,,0,0xFFFFFFFF,7,2,256,,1,0,15,{ bonus bMdef,5; },{},{} -//5648,F_Centimental_Flower_C,F Centimental Flower C,4,1,,0,,1,,0,0xFFFFFFFE,7,2,1,,1,0,56,{},{},{} -//5649,F_Apple_Of_Archer_C,F Apple Of Archer C,4,1,,0,,7,,0,0xFFFFFFFE,7,2,256,,1,0,72,{ bonus bDex,4; },{},{} -//5650,F_Elven_Ears_C,F Elven Ears C,4,1,,0,,2,,0,0xFFFFFFFE,7,2,512,,1,0,73,{ bonus bInt,1; },{},{} -//5651,F_Brooch_C,F Brooch C,4,1,,0,,0,,0,0xFFFFFFFE,7,2,136,,1,0,0,{ bonus bAgi,4; },{},{} -//5652,F_Magestic_Goat_C,F Magestic Goat C,4,2,,0,,5,,0,0xFFFFFFFE,7,2,256,,0,0,41,{ bonus bStr,1; },{},{} -5653,Darkness_Helm_J,Darkness Helm,4,20,,500,,3,,1,0xFFFFFFFF,7,2,256,,70,1,586,{},{},{} -5654,Holy_Marching_Hat_J,Holy Marching Hat,4,20,,200,,2,,1,0xFFFFFFFF,7,2,256,,10,1,587,{ bonus bStr,2; bonus3 bAutoSpell,"PR_ASPERSIO",2,30; },{},{} -//5655,Dark_Snake_Lord_Hat_J,Evil Snake Lord Hat,4,20,,500,,2,,0,0xFFFFFFFF,7,2,256,,60,1,372,{ bonus bInt,2; bonus bAgi,2; bonus bDex,-2; autobonus "{ bonus bCastrate,-50; bonus bFlee,30; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }"; },{},{} -//5656,Scooter_Hat_J,Scooter Helmet,4,20,,1000,,7,,1,0xFFFFFFFF,7,2,256,,50,1,588,{ bonus bUnbreakableHelm; },{},{} -//5657,Antique_Pipe_J,Captain's Pipe,4,20,,100,,0,,0,0xFFFFFFFF,7,2,1,,30,0,383,{},{},{} -5658,Imp_Hat,Imp Hat,4,20,,400,,1,,0,0xFFFFFFFF,7,2,256,,1,1,589,{ bonus3 bAutoSpell,"SA_FLAMELAUNCHER",1,5; },{},{} -5659,Sleepr_Hat,Sleeper Hat,4,20,,400,,1,,0,0xFFFFFFFF,7,2,256,,1,1,590,{ bonus3 bAutoSpell,"SA_SEISMICWEAPON",1,5; },{},{} -5660,Gryphon_Hat,Gryphon Hat,4,20,,400,,1,,0,0xFFFFFFFF,7,2,256,,1,1,591,{ bonus3 bAutoSpell,"SA_LIGHTNINGLOADER",1,5; },{},{} -//5661,Red_Pirate_Bandana,Red Pirate Banada,4,0,,0,,3,,0,0xFFFFFFFF,7,2,256,,10,1,592,{ bonus bStr,1; bonus bDex,1; bonus bAspdRate,2; bonus bCastRate,-2; bonus3 bAutoSpell,"MO_EXTREMITYFIST",1,30; },{},{} -//5662,Libra_Crown,Libra Crown,4,10,,300,,3,,0,0xFFFFFFFF,7,2,256,,1,1,593,{ bonus bDex,3; },{},{} -//5663,Libra_Diadem,Libra Diadem,4,10,,300,,3,,0,0xFFFFFFFF,7,2,256,,1,1,594,{ bonus bDex,3; },{},{} -5664,Filir_Wing,Filir's Pinions,4,20,,100,,1,,0,0xFFFFFFFF,7,2,512,,70,0,595,{ bonus bAspdRate,2; bonus bCastRate,-2; },{},{} -5665,Shaman_Hat,Shaman Hat,4,20,,400,,1,,1,0xFFFFFFFF,7,2,256,,1,1,596,{ bonus2 bSubEle,Ele_Neutral,3; bonus2 bSubEle,Ele_Water,3; bonus2 bSubEle,Ele_Earth,3; bonus2 bSubEle,Ele_Fire,3; bonus2 bSubEle,Ele_Wind,3; bonus2 bSubEle,Ele_Poison,3; bonus2 bSubEle,Ele_Holy,3; bonus2 bSubEle,Ele_Dark,3; bonus2 bSubEle,Ele_Ghost,3; bonus2 bSubEle,Ele_Undead,3; },{},{} -5666,Golden_Crown,Golden Crown,4,20,,500,,8,,1,0xFFFFFFFF,7,2,256,,1,1,597,{ bonus bInt,1; bonus bDex,1; bonus bLuk,1; },{},{} -5667,Skull_Hood,Skull Hood,4,20,,100,,1,,1,0xFFFFFFFF,7,2,768,,30,1,598,{},{},{} -5668,Weird_Pumpkin_Hat,Weird Pumpkin Hat,4,20,,0,,5,,0,0xFFFFFFFF,7,2,256,,1,1,206,{ bonus bMdef,5; },{},{} -//5669,Poring_Party_Hat_J,Poring Party Hat J,4,20,,300,,1,,0,0xFFFFFFFF,7,2,256,,1,1,340,{},{},{} -//5670,Aniv_Star_Hat,Aniv Star Hat,4,20,,300,,0,,0,0xFFFFFFFF,7,2,256,,1,1,599,{},{},{} -5671,Drooping_Morocc_Minion,Drooping Morocc Minion,4,20,,300,,0,,1,0xFFFFFFFF,7,2,256,,70,0,600,{},{},{} -//5672,Southern_Cross,Southern Cross,4,20,,600,,3,,1,0xFFFFFFFF,7,2,256,,50,1,601,{ bonus bInt,1; },{},{} -//5673,Home_Cherry_Blossom,Home Cherry Blossom,4,20,,100,,2,,1,0xFFFFFFFF,7,2,256,,30,1,602,{},{},{} -//5674,Pig_Moneybox,Pig Moneybox,4,20,,1000,,3,,0,0xFFFFFFFF,7,2,256,,10,0,603,{},{},{} -//5675,Poring_Letter,Poring Letter,4,20,,100,,0,,0,0xFFFFFFFF,7,2,1,,10,0,604,{},{},{} -//5676,Scorpio_Crown,Scorpio Crown,4,20,,300,,3,,0,0xFFFFFFFF,7,2,256,,1,1,605,{},{},{} -//5677,Scorpio_Diadem,Scorpio Diadem,4,20,,300,,3,,1,0xFFFFFFFF,7,2,256,,1,1,606,{ bonus bDex,2; },{},{} -//5678,Notation_Hairband,Notation Hairband,4,200,,100,,5,,0,0xFFFFFFFF,7,2,256,,1,1,607,{},{},{} -//5679,Engineer_Cap,Engineer Cap,4,20,,200,,2,,1,0xFFFFFFFF,7,2,256,,10,1,608,{},{},{} -//5680,Hawkeyes,Hawkeyes,4,20,,100,,0,,0,0xFFFFFFFF,7,2,512,,10,0,609,{},{},{} -5681,F_Ribbon_Green,Green Ribbon,4,800,,100,,1,,0,0xFFFFFFFF,7,0,256,,0,1,244,{ bonus bMdef,3; },{},{} -5682,Triangle_Rune_Cap,Triangle Rune Cap,4,20,,300,,5,,1,0xFFFFFFFF,7,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,7,2,256,,1,1,41,{},{},{} -5684,Jewel_Crown_Repl,Ornate Crown,4,20,,100,,5,,0,0xFFFFFFFF,7,2,256,,1,1,88,{},{},{} -5685,Prontera_Army_Cap_Repl,Army Cap,4,20,,100,,5,,0,0xFFFFFFFF,7,2,256,,1,1,48,{},{},{} -5686,Feather_Bonnet_Repl,Nice Hat Feather,4,20,,100,,5,,0,0xFFFFFFFF,7,2,256,,1,1,104,{},{},{} -5687,Viking_Helm_Repl,Orc Helm,4,20,,100,,5,,0,0xFFFFFFFF,7,2,256,,1,1,86,{},{},{} -//5688,2009_Love_Dad,2009 Love Dad,4,20,,100,,3,,0,0xFFFFFFFF,7,2,256,,1,1,611,{ bonus bVit,2; },{},{} -//5689,Queen_Ant_Diadem,Queen Ant Diadem,4,20,,300,,1,,1,0xFFFFFFFF,7,2,256,,75,1,612,{},{},{} -5690,Red_Wing_Hat,Red Wing Hat,4,20,,600,,2,,1,0xFFFFFFFF,7,2,256,,50,1,613,{ if(getrefine()>6) { bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; } if(getrefine()>8) { bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; } },{},{} -5691,Catain_Bandanna,Sailor's Bandana,4,20,,10,,1,,0,0xFFFFFFFF,7,2,256,,1,1,542,{ bonus bDex,1; bonus2 bSubEle,Ele_Poison,20; },{},{} -5692,Sea_Cat_Hat,Sea Cat Hat,4,20,,10,,1,,0,0xFFFFFFFF,7,2,256,,1,1,539,{ bonus bDex,1; },{},{} -//5693,No_Fear_Underware,No Fear Underwear,4,0,,0,,10,,0,0xFFFFFFFF,7,2,256,,20,0,30,{ bonus bStr,1; bonus bInt,1; bonus bDex,1; },{},{} -//5694,No_Fear_P_Headgear,No Fear P Headgear,4,0,,0,,1,,1,0xFFFFFFFE,7,2,256,,20,0,614,{ bonus bVit,1; },{},{} -//5695,E_Blue_Drooping_Kitty,E Blue Drooping Kitty,4,250000,,500,,1,,0,0,7,2,256,,0,1,277,{ bonus bMdef,15; },{},{} -//5696,E_Flying_Angel,E Flying Angel,4,20,,300,,1,,0,0xFFFFFFFF,7,2,256,,10,1,264,{ bonus bInt,1; bonus bAgi,1; },{},{} -//5697,E_Smoking_Pipe_,E Smoking Pipe,4,20,,100,,0,,0,0,7,2,1,,0,0,55,{ bonus bVit,1; },{},{} -//5698,E_Pair_OE_Red_Ribbon_,E Pair OE Red Ribbon,4,20,,100,,1,,0,0,7,2,512,,45,0,169,{},{},{} -//5699,E_Fish_On_Head_,E Fish On Head,4,20,,500,,2,,0,0xFFFFFFFF,7,2,256,,50,1,149,{ bonus bDex,1; bonus bAgi,1; },{},{} -//5700,E_Hibiscus,E Hibiscus,4,20,,200,,0,,0,0xFFFFFFFF,7,2,256,,10,0,210,{ bonus bInt,1; bonus bDex,1; bonus bMdef,5; },{},{} -//5701,E_Cat_Hat,E Cat Hat,4,20,,300,,1,,0,0xFFFFFFFF,7,2,256,,0,1,182,{ bonus bLuk,2; bonus bMdef,10; },{},{} -//5702,E_Bunny_Band_,E Bunny Band,4,20,,100,,2,,0,0xFFFFFFFF,7,2,256,,0,1,15,{ bonus bInt,2; },{},{} -//5703,E_Magestic_Goat_TW,E Magestic Goat TW,4,20,,800,,5,,0,0x006444A2,7,2,256,,0,1,41,{ bonus bStr,2; },{},{} -//5704,E_Sheep_Hat,E Sheep Hat,4,20,,150,,1,,0,0x00008110,7,2,256,,0,0,205,{},{},{} -//5705,E_Mini_Propeller_,E Mini Propeller,4,20,,200,,2,,0,0,7,2,256,,0,1,270,{ bonus bDex,1; bonus bAgi,2; },{},{} -//5706,E_Alice_Doll,E Alice Doll,4,20,,500,,0,,1,0xFFFFFFFE,7,2,256,,30,0,208,{ bonus bStr,1; },{},{} -//5707,E_Red_Glasses,E Red Glasses,4,20,,0,,1,,0,0xFFFFFFFF,7,2,512,,0,0,316,{ bonus bInt,1; },{},{} -//5708,E_Chick_Hat,E Chick Hat,4,20,,100,,1,,0,0xFFFFFFFF,7,2,256,,10,0,311,{ bonus bLuk,2; },{},{} -//5709,E_White_Deviruchi_Cap,E White Deviruchi Cap,4,20,,800,,2,,0,0xFFFFFFFE,7,2,256,,64,1,272,{ bonus bStr,1; bonus bInt,1; },{},{} -//5710,E_Vane_Hairpin,E Vane Hairpin,4,20,,300,,2,,1,0xFFFFFFFF,7,2,256,,30,0,313,{ bonus bAgi,2; },{},{} -//5711,E_Pecopeco_Hairband,E Pecopeco Hairband,4,20,,0,,3,,0,0xFFFFFFFF,7,2,256,,0,0,314,{},{},{} -//5712,E_Vacation_Hat,E Vacation Hat,4,20,,200,,1,,1,0xFFFFFFFF,7,2,256,,30,0,315,{ bonus bVit,1; },{},{} -//5713,E_Charming_Ribbon,E Charming Ribbon,4,20,,400,,1,,1,0xFFFFFFFF,7,2,256,,10,1,211,{},{},{} -//5714,E_Water_Lily_Crown,E Water Lily Crown,4,20,,200,,0,,1,0,7,2,256,,30,0,312,{ bonus bDex,1; bonus bAgi,1; bonus bMdef,3; },{},{} -//5715,E_Vanilmirth_Hat,E Vanilmirth Hat,4,20,,1000,,0,,0,0xFFFFFFFF,7,2,256,,30,0,317,{ bonus bMdef,5; },{},{} -//5716,E_Drooping_Bunny_,E Drooping Bunny,4,20,,100,,1,,0,0,7,2,256,,0,1,249,{ bonus bDex,1; },{},{} -//5717,E_Kettle_Hat,E Kettle Hat,4,20,,600,,4,,0,0xFFFFFFFF,7,2,256,,30,1,318,{},{},{} -//5718,E_Dragon_Skull,E Dragon Skull,4,20,,800,,5,,0,0xFFFFFFFF,7,2,256,,50,1,319,{},{},{} -//5719,E_Ramen_Hat,E Ramen Hat,4,20,,0,,1,,0,0xFFFFFFFF,7,2,256,,0,0,320,{ bonus bDex,4; },{},{} -//5720,E_Pink_Fur_Hat,E Pink Fur Hat,4,20,,350,,2,,0,0xFFFFFFFF,7,2,256,,0,1,281,{ bonus bLuk,1; },{},{} -//5721,E_Puppy_Hat,E Puppy Hat,4,20,,500,,2,,0,0xFFFFFFFF,7,2,256,,30,0,234,{ bonus bAgi,1; },{},{} -//5722,E_Magic_Eyes,E Magic Eyes,4,20,,300,,1,,0,0x00810204,7,2,256,,30,1,209,{ bonus bMdef,5; },{},{} -//5723,E_Jumping_Poring,E Jumping Poring,4,0,,300,,2,,0,0xFFFFFFFF,7,2,256,,0,0,349,{ bonus bLuk,1; },{},{} -//5724,E_Robo_Eye,E Robo Eye,4,20,,200,,1,,0,0xFFFFFFFF,7,2,512,,10,0,345,{ bonus bDex,1; },{},{} -//5725,E_Yellow_Wizardry_Hat,E Yellow Wizardry Hat,4,20,,300,,1,,0,0x00810204,7,2,256,,0,1,286,{ bonus bInt,2; },{},{} -//5726,E_Crescent_Helm,E Crescent Helm,4,20,,3000,,8,,0,0x000444A2,7,2,768,,50,1,213,{ bonus bVit,1; },{},{} -//5727,E_Tiger_Mask,E Tiger Mask,4,20,,400,,2,,0,0xFFFFFFFF,7,2,768,,50,0,181,{ bonus bStr,3; },{},{} -//5728,E_Fantastic_Wig,E Fantastic Wig,4,20,,100,,1,,0,0xFFFFFFFF,7,2,768,,0,1,308,{},{},{} -//5729,E_Bunny_Band_C,E Bunny Band C,4,1,,0,,9,,0,0xFFFFFFFF,7,2,256,,1,0,15,{ bonus bMdef,5; },{},{} -//5730,E_Centimental_Flower_C,E Centimental Flower C,4,1,,0,,1,,0,0xFFFFFFFE,7,2,1,,1,0,56,{},{},{} -//5731,E_Apple_OE_Archer_C,E Apple OE Archer C,4,1,,0,,7,,0,0xFFFFFFFE,7,2,256,,1,0,72,{ bonus bDex,4; },{},{} -//5732,E_Elven_Ears_C,E Elven Ears C,4,1,,0,,2,,0,0xFFFFFFFE,7,2,512,,1,0,73,{ bonus bInt,1; },{},{} -//5733,E_Brooch_C,E Brooch C,4,1,,0,,0,,0,0xFFFFFFFE,7,2,136,,1,0,0,{ bonus bAgi,4; },{},{} -//5734,E_Magestic_Goat_C,E Magestic Goat C,4,2,,0,,5,,0,0xFFFFFFFE,7,2,256,,0,0,41,{ bonus bStr,1; },{},{} -//5735,E_Ribbon_Green,Green Ribbon,4,800,,100,,1,,0,0xFFFFFFFF,7,0,256,,0,1,244,{ bonus bMdef,3; },{},{} -//5736,EF_Whisper_Mask,Whisper Mask,4,20,,0,,0,,0,0xFFFFFFFF,7,2,769,,0,0,321,{ bonus bAgi,3; bonus2 bSubEle,Ele_Ghost,-10; },{},{} -//5737,Cactus_Hat,Cactus Hat,4,20,,300,,1,,0,0xFFFFFFFF,7,2,256,,1,0,615,{},{},{} -5738,Snowman_Hat,Snowman Hat,4,20,,300,,4,,1,0xFFFFFFFF,7,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,7,2,256,,1,1,617,{ bonus bDex,2; },{},{} -//5740,Sagittarius_Diadem,Sagittarius Diadem,4,20,,300,,3,,0,0xFFFFFFFF,7,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,7,2,256,,10,1,101,{},{},{} -5742,Rudolf_Santa_Hat,Rudolph Santa Hat,4,20,,400,,5,,0,0xFFFFFFFF,7,2,256,,10,1,619,{ bonus bLuk,1; },{},{} -//5743,Orange_Stem_Hat,Orange Stem Hat,4,20,,100,,0,,0,0x00000000,7,2,256,,1,0,620,{ bonus bLuk,3; },{},{} -//5744,Capricon_Crown,Capricon Crown,4,20,,300,,3,,1,0xFFFFFFFF,7,2,256,,1,1,621,{ bonus bVit,2; bonus bDex,2; },{},{} -//5745,Capricon_Diadem,Capricon Diadem,4,20,,300,,3,,0,0xFFFFFFFF,7,2,256,,1,1,622,{ bonus bDex,2; bonus bMdef,5; },{},{} -//5746,Rune_Circlet,Rune Circlet,4,20,,100,,12,,1,0x00000080,8,2,256,,100,1,623,{ bonus bStr,1; bonus bInt,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,10; bonus bMatk,5; } },{},{} -//5747,Mitra,Mitra,4,20,,100,,12,,1,0x00000100,8,2,256,,100,1,624,{ bonus bVit,1; bonus bInt,1; bonus bMdef,5; bonus bHealPower,5; if(readparam(bInt)>=120){ bonus bMatk,10; } },{},{} -//5748,Sniper_Goggles,Sniper Goggles,4,20,,100,,12,,1,0x00000800,8,2,768,,100,1,625,{ bonus bAgi,1; bonus bDex,1; bonus bMdef,5; if(readparam(bAgi)>=120){ bonus bLongAtkRate,4; bonus bAspd,1; } },{},{} -//5749,Driver_Band_M,Driver Band,4,20,,100,,12,,1,0x00000400,8,1,256,,100,1,626,{ bonus bStr,1; bonus bDex,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,10; bonus bCritical,3; } },{},{} -//5750,Shadow_Crown,Shadow Crown,4,20,,100,,12,,1,0x00020000,8,2,256,,100,1,627,{ bonus bAgi,1; bonus bInt,1; bonus bMdef,1; if(readparam(bAgi)>=120){ bonus bBaseAtk,10; bonus bFlee,3; } },{},{} -//5751,Minstrel_Song_Hat,Minstrel Song Hat,4,20,,100,,12,,1,0x00080000,8,1,256,,100,1,628,{ bonus bInt,1; bonus bLuk,1; bonus bMdef,5; bonus bLongAtkRate,4; bonus bUseSPrate,-10; },{},{} -//5752,Midas_Whispers,Midas Whispers,4,20,,100,,12,,1,0x00040000,8,2,256,,100,1,629,{ bonus bStr,1; bonus bDex,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,5; bonus bAspd,1; } },{},{} -//5753,Magic_Stone_Hat,Magic Stone Hat,4,20,,100,,12,,1,0x00000200,8,2,256,,100,1,630,{ bonus bInt,1; bonus bDex,1; bonus bMdef,5; if(readparam(bDex)>=120){ bonus bMatkRate,10; bonus bCastrate,-2; } },{},{} -//5754,Burning_Spirit,Burning Spirit,4,20,,100,,12,,1,0x00008000,8,2,256,,100,1,631,{ bonus bStr,1; bonus bVit,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,10; bonus bHit,3; } },{},{} -//5755,Silent_Enforcer,Silent Enforcer,4,20,,100,,12,,0,0x00001000,8,2,513,,100,1,632,{ bonus bAgi,1; bonus bMdef,5; if(readparam(bAgi)>=120){ bonus bBaseAtk,10; bonus bFlee2,5; } },{},{} -//5756,Wispers_of_Wind,Wispers of Wind,4,20,,100,,12,,1,0x00010000,8,2,256,,100,1,633,{ bonus bInt,1; bonus bDex,1; bonus bMdef,5; if(readparam(bInt)>=120){ bonus bMatkRate,10; bonus bFlee,3; } },{},{} -//5757,Reissue_Schmitz_Helm,Reissue Schmitz Helm,4,20,,100,,12,,1,0x00004000,8,2,768,,100,1,634,{ bonus bVit,2; bonus bInt,1; bonus bMdef,5; if(readparam(bInt)>=120){ bonus bMatkRate,10; bonus bDef,5; } },{},{} -//5758,Resting_Swan,Resting Swan,4,20,,100,,17,,1,0x00080000,8,0,256,,100,1,635,{ bonus bInt,1; bonus bLuk,1; bonus bMdef,5; bonus bAtkRate,5; bonus bUseSPrate,-10; },{},{} -//5759,Noah_Hat,Noah Hat,4,20,,500,,1,,1,0xFFFFFFFF,7,2,256,,1,1,636,{ bonus bMdef,3; },{},{} -//5760,Driver_Band_F,Driver Band,4,20,,100,,12,,1,0x00000400,8,0,256,,100,1,637,{ bonus bStr,1; bonus bDex,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,10; bonus bCritical,3; } },{},{} -//5761,Sloth_Hat,Sloth Hat,4,20,,800,,3,,1,0xFFFFFFFF,7,2,256,,1,1,638,{ bonus bAgi,2; bonus3 bAutoSpell,"AS_SONICBLOW",5,50; },{},{} -//5762,Duneyrr_Helm,Duneyrr Helm,4,20,,100,,5,,0,0xFFFFFFFF,7,2,256,,1,1,639,{ bonus bAllStats,1; bonus bMdef,5; },{},{} -//5763,Red_Bunny_Band,Red Bunny Band,4,0,,200,,4,,0,0xFFFFFFFF,7,2,256,,1,1,640,{ bonus bAgi,2; bonus bMdef,3; },{},{} -//5765,Black_Tail_Ribbon,Black Tail Ribbon,4,20,,100,,0,,1,0xFFFFFFFF,7,2,256,,10,1,642,{ bonus bMdef,5; },{},{} -//5766,Amistr_Cap,Amistr Cap,4,20,,500,,4,,0,0xFFFFFFFF,7,2,256,,50,1,643,{ bonus bVit,5; },{},{} -//5767,Samurai_Mask,Samurai Mask,4,20,,300,,1,,0,0xFFFFFFFF,7,2,1,,50,0,644,{},{},{} -//5768,Sakura_Coronet,Sakura Coronet,4,20,,800,,1,,1,0xFFFFFFFF,7,2,256,,1,1,645,{ bonus bMdef,3; },{},{} -//5769,Gold_Angel_Sculpture,Gold Angel Sculpture,4,100,,0,,2,,0,0xFFFFFFFF,7,2,256,,70,0,646,{},{},{} -5770,Splash_Hat,Splash Hat,4,20,,100,,3,,1,0xFFFFFFFF,7,2,256,,1,1,349,{ autobonus "{ sc_start SC_WINDWEAPON, 180000, 1; }", 3, 180000, BF_WEAPON, "{ specialeffect2 EF_ENHANCE; }"; },{},{} -5771,Family_Hat,Family Hat,4,20,,100,,3,,1,0xFFFFFFFF,7,2,256,,1,1,109,{ bonus bDex,1; bonus bMdef,1; },{},{} -//5772,Red_Navy_Hat,Red Navy Hat,4,3000,,500,,1,,0,0xFFFFFFFF,7,2,256,,95,1,651,{},{},{} -//5773,Navy_Beret,Navy Beret,4,3000,,500,,1,,0,0xFFFFFFFF,7,2,256,,95,1,652,{},{},{} -//5774,Red_Pirate_Hat,Red Pirate Hat,4,3000,,500,,1,,0,0xFFFFFFFF,7,2,256,,95,1,496,{},{},{} -5775,Choco_Donut_In_Mouth,Choco Donut In Mouth,4,20,,50,,1,,0,0xFFFFFFFF,7,2,1,,1,0,653,{},{},{} -//5776,Blazing_Sun,Blazing Sun,4,0,,500,,0,,0,0xFFFFFFFF,7,2,256,,1,1,654,{},{},{} -//5777,Remover_Hat,Remover Hat,4,20,,800,,2,,0,0xFFFFFFFF,7,2,256,,30,0,655,{ bonus bMdef,1; },{},{} -//5778,Blue_Arara_Hat,Blue Arara Hat,4,20,,100,,3,,1,0xFFFFFFFF,7,2,256,,1,1,656,{ bonus bStr,2; },{},{} -//5779,Drooping_Boto,Drooping Boto,4,20,,100,,3,,1,0xFFFFFFFF,7,2,256,,1,1,657,{ bonus bInt,2; },{},{} -//5780,Tendrilion_Hat,Tendrilion Hat,4,20,,100,,0,,0,0xFFFFFFFF,7,2,256,,1,1,658,{},{},{} -5781,Persika,Persika,4,20,,100,,0,,1,0xFFFFFFFF,7,2,256,,0,0,659,{},{},{} -// -//5783,YellowBunny_Hairband,YellowBunny Hairband,4,20,,200,,0,,1,0xFFFFFFFF,7,2,256,,1,1,662,{ bonus bStr,1; bonus bInt,1; bonus bDex,2; },{},{} -//5784,PinkBunny_Hairband,PinkBunny Hairband,4,20,,200,,0,,1,0xFFFFFFFF,7,2,256,,1,1,663,{ bonus bStr,1; bonus bInt,2; bonus bDex,1; },{},{} -//5785,Green_Bunny_Hairband,Green Bunny Hairband,4,20,,200,,0,,1,0xFFFFFFFF,7,2,256,,1,1,664,{ bonus bStr,2; bonus bInt,1; bonus bDex,1; },{},{} -5786,Ancient_Elven_Ear,Ancient Elven Ear,4,10,,200,,1,,0,0xFFFFFFFF,7,2,512,,1,0,665,{ bonus bLuk,1; },{},{} -//5787,Tha_Maero_Mask,Tha Maero Mask,4,20,,100,,0,,0,0xFFFFFFFF,7,2,513,,30,0,666,{ bonus bMdef,2; },{},{} -5788,3D_Glasses,3D Glasses,4,20,,100,,1,,0,0xFFFFFFFF,7,2,512,,1,0,661,{},{},{} -//5789,Thanatos_Mal_Mask,Thanatos Mal Mask,4,20,,100,,3,,0,0xFFFFFFFF,7,2,513,,30,0,667,{ bonus bVit,1; },{},{} -//5790,Holy_Mom_Love,TM,4,20,,500,,0,,1,0xFFFFFFFF,7,2,768,,45,1,610,{},{},{} -//5791,Tenkaippin_Ramen,Tenkaippin Ramen,4,20,,500,,1,,0,0xFFFFFFFF,7,2,256,,30,0,668,{ bonus bInt,-1; bonus bDex,4; },{},{} -5792,Fish_Pin,Fish Pin,4,20,,100,,3,,0,0xFFFFFFFF,7,2,256,,1,1,669,{},{},{} -5793,Ribbon_Of_Life,Ribbon Of Life,4,20,,0,,2,,0,0xFFFFFFFF,7,2,512,,1,0,575,{ bonus bInt,1; bonus bMdef,2; },{},{} -5794,3D_Glasses_,3D Glasses,4,20,,0,,1,,0,0xFFFFFFFF,7,2,512,,1,0,661,{},{},{} -//5795,Red_Dress_Hat,Red Dress Hat,4,20,,0,,0,,0,0xFFFFFFFF,7,2,256,,1,1,670,{ bonus bMdef,7; },{},{} -5796,Cheer_Scarf,Cheer Scarf,4,0,,0,,0,,0,0xFFFFFFFF,7,2,1,,1,0,369,{},{},{} -5797,Cheer_Scarf2,Cheer Scarf2,4,0,,0,,0,,0,0xFFFFFFFF,7,2,1,,1,0,369,{},{},{} -5798,Cheer_Scarf3,Cheer Scarf3,4,0,,0,,0,,0,0xFFFFFFFF,7,2,1,,1,0,369,{},{},{} -5799,Cheer_Scarf4,Cheer Scarf4,4,0,,0,,0,,0,0xFFFFFFFF,7,2,1,,1,0,369,{},{},{} -5800,Blush_Of_Groom,Blush of Groom,4,20,,50,,0,,0,0xFFFFFFFF,7,2,512,,0,0,125,{ bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3; },{},{} -5801,Ribbon_Of_Bride,Red Tailed Ribbon,4,20,,100,,5,,0,0xFFFFFFFF,7,2,256,,0,1,167,{ bonus bAllStats,2; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; if(getskilllv("AL_HEAL")==10) { bonus3 bAutoSpellWhenHit,"AL_HEAL",10,20; } else { bonus3 bAutoSpellWhenHit,"AL_HEAL",5,20; } },{},{} -5802,Upgrade_Elephant_Hat,Upgraded Elephant Hat,4,0,,500,,3,,1,0xFFFFFFFF,7,2,256,,0,1,215,{},{},{} -5803,Flower_Love_Hat,Love Flower Hat,4,20,,100,,2,,0,0xFFFFFFFF,7,2,256,,0,1,5,{ bonus2 bAddMonsterDropItem,608,100; },{},{} -5804,Pirate_Eyepatch,Pirate Eye Bandage,4,1000,,100,,0,,0,0xFFFFFFFF,7,2,512,,0,0,13,{},{},{} -5805,Victorious_Coronet,Victorious Coronet,4,0,,150,,1,,0,0xFFFFFFFF,7,2,256,,70,0,43,{ bonus bMaxHPrate,15; bonus bSPrecovRate,5; },{},{} -5806,Poem_Natalia_Hat,Poet Natalie's Hat,4,20,,300,,5,,0,0xFFFFFFFF,7,2,256,,0,0,67,{},{},{} -5807,October_Fest_Cap,October Fest Cap,4,20,,100,,1,,0,0xFFFFFFFE,7,2,256,,50,1,104,{},{},{} -5808,Diabolus_Helmet,Dark Bacilium,4,20,,250,,5,,1,0x000FDF80,2,2,769,,0,1,364,{ bonus2 bResEff,Eff_Stone,2000+(getrefine()*200); bonus2 bResEff,Eff_Freeze,2000+(getrefine()*200); bonus2 bResEff,Eff_Stun,2000+(getrefine()*200); },{},{} -5809,Boom_Boom_Hat,Boom Boom Hat,4,0,,100,,6,,0,0xFFFFFFFF,7,2,256,,0,0,216,{ bonus bAllStats,5; },{},{} -5810,Ph.D_Hat_V,Ph.D Hat V,4,20,,100,,3,,0,0xFFFFFFFE,7,2,256,,0,1,98,{ bonus bInt,5; bonus bVit,3; bonus bDex,3; },{},{} -5811,Santa_Beard,Santa's Beard,4,20,,100,,5,,0,0xFFFFFFFF,7,2,1,,0,0,25,{},{},{} -5812,Hat_Of_Expert,Hat Of Expert,4,0,,0,,2,,0,0xFFFFFFFF,7,2,256,,0,1,16,{},{},{} -//5813,Red_Ph.D_Hat,Red Ph.D Hat,4,1000,,500,,0,,0,0xFFFFFFFF,7,2,256,,0,1,481,{ bonus bInt,1; },{},{} -//5814,Ati_Atihan_Hat3 -5815,Classic_Hat_J,Classic Hat,4,20,,500,,2,,0,0xFFFFFFFF,7,2,256,,0,1,475,{ bonus bStr,1; bonus2 bSubSize, 0, 5; bonus2 bSubSize, 1, 5; bonus2 bSubSize, 2, 5; },{},{} -5816,Cowboy_Hat_J,Purple Cowboy Hat,4,20,,500,,0,,0,0xFFFFFFFF,7,2,256,,0,1,411,{ bonus bBaseAtk,15; bonus bFlee,-5; },{},{} -5817,Valentine_Pledge,Valentine Pledge,4,20,,0,,3,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bAllStats,2; bonus bMdef,3; },{},{} -5818,Carnival_Hat,Carnival Hat,4,0,,0,,6,,0,0xFFFFFFFF,7,2,256,,0,1,505,{ bonus bAllStats, 3; },{},{} -5819,Carnival_Circlet,Carnival Circlet,4,0,,0,,6,,0,0xFFFFFFFF,7,2,256,,0,1,506,{ bonus bAllStats, 3; },{},{} -//5820,Black_Elven_Ears,Black Elven Ears,4,10,,100,,2,,0,0xFFFFFFFF,7,2,512,,0,0,498,{},{},{} -5821,Gold_Tulip_Hairpin,Gold Tulip Hairpin,4,10,,100,,2,,0,0xFFFFFFFF,7,2,256,,0,1,499,{ bonus2 bExpAddClass,Class_All,5; },{},{} -5822,Love_Chick_Hat,Love Chick Hat,4,10000,,100,,4,,0,0xFFFFFFFF,7,2,256,,0,1,500,{ bonus bLuk,4; bonus bMaxHP,100; bonus bMaxSP,100; bonus2 bSubRace,RC_DemiHuman,7; bonus2 bSubRace,RC_Player_Human,7; bonus2 bSubRace,RC_Undead,7; },{},{} -//5823,Love_Arrow,Love Arrow,4,5000,,100,,1,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bDex,5; bonus bAgi,5; },{},{} -5824,Fools_Day_Hat,Fools Day Hat,4,20,,300,,6,,1,0xFFFFFFFF,7,2,256,,30,1,265,{},{},{} -//5825,Badge_Of_Order_Grace,Badge Of Order Grace,4,0,,0,,1,,0,0xFFFFFFFF,7,2,136,,0,0,0,{ bonus bMdef,1; },{},{} -5826,Valkyrie_Helmet,Valkyrie Helmet,4,0,,0,,10,,0,0xFFFFFFFF,7,2,256,,0,0,225,{ bonus bStr,2; bonus bInt,2; bonus bDex,2; bonus bAgi,2; bonus bMdef,5; },{},{} -5827,Book_File_Hat,Book File Hat,4,20,,100,,1,,0,0xFFFFFFFF,7,2,256,,1,1,423,{},{},{} -5828,Honor_Gold_Ring,Honor Gold Ring,4,0,,50,,0,,0,0xFFFFFFFF,7,2,136,,1,0,0,{ bonus bAllStats,1; bonus bMdef,5; },{},{} -//5829,Ordinary_Armor,Ordinary Armor,4,0,,0,,0,,0,0xFFFFFFFF,7,2,16,,30,1,0,{},{},{} -//5830,Woe_Sahkkat,Woe Sahkkat,4,20,,10,,0,,0,0xFFFFFFFF,7,2,256,,60,1,67,{},{},{} -//5831,Woe_Big_Sis_Ribbon,Woe Big Sis Ribbon,4,20,,10,,0,,0,0xFFFFFFFF,7,2,256,,60,1,28,{},{},{} -//5832,Woe_Vane_Hairpin,Woe Vane Hairpin,4,20,,10,,0,,0,0xFFFFFFFF,7,2,256,,60,1,313,{},{},{} -//5833,Woe_Picnic_Hat,Woe Picnic Hat,4,20,,10,,0,,0,0xFFFFFFFF,7,2,256,,60,1,117,{},{},{} -//5834,Woe_Crown,Woe Crown,4,20,,10,,0,,0,0xFFFFFFFF,7,2,256,,60,1,45,{},{},{} -//5835,Woe_Tiara,Woe Tiara,4,20,,10,,0,,0,0xFFFFFFFF,7,2,256,,60,1,19,{},{},{} -//5836,Woe_Boys_Cap,Woe Boys Cap,4,20,,10,,0,,0,0xFFFFFFFF,7,2,256,,60,1,102,{},{},{} -//5837,Woe_Sunglass,Woe Sunglass,4,20,,10,,0,,0,0xFFFFFFFF,7,2,512,,70,0,12,{},{},{} -//5838,Woe_Fin_Helm,Woe Fin Helm,4,20,,10,,0,,0,0xFFFFFFFF,7,2,512,,70,0,100,{},{},{} -//5839,Woe_Blush,Woe Blush,4,20,,10,,0,,0,0xFFFFFFFF,7,2,512,,70,0,125,{},{},{} -//5840,Woe_Elven_Ears,Woe Elven Ears,4,20,,10,,0,,0,0xFFFFFFFF,7,2,512,,70,0,73,{},{},{} -//5841,Shaman_Hat_,Shaman_Hat,4,20,,100,,1,,1,0xFFFFFFFF,7,2,256,,30,1,596,{ bonus bLuk,2; },{},{} -//5842,Loyal_Ring1,Loyal Ring1,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,1,1,0,{},{},{} -//5843,Loyal_Ring2,Loyal Ring2,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,1,1,0,{ bonus bAllStats,2; },{},{} -5844,Loyal_Ring3,Loyal Ring3,4,0,,0,,0,,0,0xFFFFFFFF,7,2,136,,1,0,0,{ bonus bAllStats,3; },{},{} -//5845,Buzzy_Ball_Board,Buzzy Ball Board,4,50,,400,,0,,0,0xFFFFFFFF,7,2,256,,1,1,641,{},{},{} -5846,Buzzy_Ball_Gum,Buzzy Ball Gum,4,50,,100,,1,,0,0xFFFFFFFF,7,2,1,,1,0,572,{ bonus bMdef,5; },{},{} -//5847,Fools_Day_Helmet,Fools Day Helmet,4,0,,0,,0,,0,0xFFFFFFFF,7,2,256,,1,0,647,{ bonus bInt,5; bonus bVit,-3; },{},{} -//5848,Robin_Eyepatch,Robin Eyepatch,4,20,,0,,0,,0,0xFFFFFFFF,7,2,512,,1,0,50,{},{},{} -//5849,Doctor_Hairband,Doctor Hairband,4,20,,0,,0,,0,0xFFFFFFFF,7,2,256,,1,0,60,{},{},{} -//5850,Golden_Savage_Hat,Golden Savage Hat,4,20,,500,,5,,0,0xFFFFFFFF,7,2,256,,50,1,648,{},{},{} -5851,Summer_Knight,Summer Knight,4,20,,0,,1,,0,0xFFFFFFFF,7,2,768,,60,0,138,{},{},{} -//5852,Resurrect_Egg_Shell,Resurrect Egg Shell,4,20,,500,,-7,,0,0xFFFFFFFF,7,2,256,,40,1,537,{ bonus bMdef,-7; },{},{} -// -5856,Passion_FB_Hat,Passion FB Hat,4,20,,600,,2,,1,0xFFFFFFFF,7,2,256,,1,1,671,{ bonus bStr,2; bonus bDex,2; },{},{} -5857,Cool_FB_Hat,Cool FB Hat,4,20,,600,,2,,1,0xFFFFFFFF,7,2,256,,1,1,672,{ bonus bInt,2; bonus bVit,2; },{},{} -5858,Victory_FB_Hat,Victory FB Hat,4,20,,600,,2,,1,0xFFFFFFFF,7,2,256,,1,1,673,{ bonus bInt,2; bonus bDex,2; },{},{} -5859,Glory_FB_Hat,Glory FB Hat,4,20,,600,,2,,1,0xFFFFFFFF,7,2,256,,1,1,674,{ bonus bAllStats,1; },{},{} -// More Etc Items -//=================================================================== -6000,Dark_Ashes,Ashes of Darkness,3,0,,0,,,,,,,,,,,,,{},{},{} -6001,Essence_Of_Fire,Essence of Fire,3,0,,10,,,,,,,,,,,,,{},{},{} -6002,Token_Of_Apostle,Token of Apostle,3,0,,10,,,,,,,,,,,,,{},{},{} -6003,Soul_Pendant,Pendant of Spirit,3,0,,10,,,,,,,,,,,,,{},{},{} -6004,Bapho_Doll,Cursed Baphomet Doll,3,0,,10,,,,,,,,,,,,,{},{},{} -6005,New_Year_Rice_Cake,New Year Rice Cake,3,0,,10,,,,,,,,,,,,,{},{},{} -6006,Rice_Cake_Delivery_Box,Rice Cake Delivery Box,3,0,,10,,,,,,,,,,,,,{},{},{} -6007,New_Year_Rice_Cake_Soup,New Year Rice Cake Soup,3,0,,10,,,,,,,,,,,,,{},{},{} -6008,Wood,Wood,3,0,,10,,,,,,,,,,,,,{},{},{} -6009,Large_Magical_Fan,Big Fan Of Magic,3,0,,0,,,,,,,,,,,,,{},{},{} -6010,Pickaxe,Hoe,3,0,,10,,,,,,,,,,,,,{},{},{} -6011,Blue_Card_B,Blue B Card,3,0,,10,,,,,,,,,,,,,{},{},{} -6012,Blue_Card_C,Blue C Card,3,0,,10,,,,,,,,,,,,,{},{},{} -6013,Blue_Card_J,Blue J Card,3,0,,10,,,,,,,,,,,,,{},{},{} -6015,Blue_Card_M,Blue M Card,3,0,,10,,,,,,,,,,,,,{},{},{} -6016,Blue_Card_Q,Blue Q Card,3,0,,10,,,,,,,,,,,,,{},{},{} -6017,Blue_Card_T,Blue T Card,3,0,,10,,,,,,,,,,,,,{},{},{} -6018,Blue_Card_V,Blue V Card,3,0,,10,,,,,,,,,,,,,{},{},{} -6019,Blue_Card_Z,Blue Z Card,3,0,,10,,,,,,,,,,,,,{},{},{} -6020,Fur,Fur,3,704,,10,,,,,,,,,,,,,{},{},{} -6021,Peaked_Hat,Peaked Hat,3,433,,10,,,,,,,,,,,,,{},{},{} -6022,Hard_Skin,Hard Skin,3,884,,10,,,,,,,,,,,,,{},{},{} -6023,Mystic_Horn,Mystic Horn,3,1000,,10,,,,,,,,,,,,,{},{},{} -6024,17Carat_Dia,17Carat Diamond,3,0,,10,,,,,,,,,,,,,{},{},{} -6025,Towel_Of_Memory,Towel of Memory,3,0,,0,,,,,,,,,,,,,{},{},{} -6026,Marriage_Covenant,Written Oath Of Marriage,3,0,,10,,,,,,,,,,,,,{},{},{} -6027,Crystal_Of_Feardoom,Crystal Of Feardom,3,0,,0,,,,,,,,,,,,,{},{},{} -6028,Seal_Scroll,Sealed Scroll,3,0,,0,,,,,,,,,,,,,{},{},{} -6029,Morocc_Tracing_Log,Morocc Tracing Log,3,0,,0,,,,,,,,,,,,,{},{},{} -6030,Glitering_PaperA,Glittering Paper,3,0,,10,,,,,,,,,,,,,{},{},{} -6031,Glitering_PaperB,Glittering Paper,3,0,,10,,,,,,,,,,,,,{},{},{} -6032,Horn_Of_Hilsrion,Horn of Hillslion,3,500,,10,,,,,,,,,,,,,{},{},{} -6033,Horn_Of_Tendrilion,Horn of Tendrilion,3,500,,10,,,,,,,,,,,,,{},{},{} -6034,Weird_Part,Weird Part,3,0,,0,,,,,,,,,,,,,{},{},{} -6035,Decaying_Stem,Decaying Stem,3,0,,0,,,,,,,,,,,,,{},{},{} -6036,Invite_To_Meeting,Meeting Invitation,3,0,,10,,,,,,,,,,,,,{},{},{} -6037,Rough_File,Messy File,3,0,,0,,,,,,,,,,,,,{},{},{} -6038,Neat_Report,Neat Report,3,0,,10,,,,,,,,,,,,,{},{},{} -6039,Piece_Of_Fish,Piece of Fish,3,0,,10,,,,,,,,,,,,,{},{},{} -6040,Some_Of_Report,Part of a Report,3,0,,0,,,,,,,,,,,,,{},{},{} -6041,Strong_Bine,Strong Vine,3,30,,50,,,,,,,,,,,,,{},{},{} -6042,Ordinary_Branch,Ordinary Branch,3,0,,10,,,,,,,,,,,,,{},{},{} -6043,Letter_From_Lugen,Letter from Lugen,3,0,,10,,,,,,,,,,,,,{},{},{} -6044,Letter_From_Otto,Letter from Otto,3,0,,10,,,,,,,,,,,,,{},{},{} -6045,Supply_Box,Supply Box,3,0,,0,,,,,,,,,,,,,{},{},{} -6046,Clothing_Dye_Coupon,Clothing Dye Coupon,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -6047,Clothing_Dye_Coupon_II,Clothing Dye Coupon II,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -6048,Unidentified_Mineral,Unidentified Mineral,3,0,,10,,,,,,,,,,,,,{},{},{} -6049,Marlin,Marlin,3,0,,10,,,,,,,,,,,,,{},{},{} -6050,Mercenary_Contract,Mercenary Contract,3,0,,10,,,,,,,,,,,,,{},{},{} -6051,Gray_Hollow,Gray Hollow,3,0,,10,,,,,,,,,,,,,{},{},{} -6052,Ornamental_Hairpin,Ornament Hairpin,3,1,,0,,,,,,,,,,,,,{},{},{} -6053,Yuanbao,Circle Step,3,100,,100,,,,,,,,,,,,,{},{},{} -6054,Blue_Card_6,Number 6 Card,3,0,,10,,,,,,,,,,,,,{},{},{} -6055,Blue_Card_Annyver,Character Week Card,3,0,,10,,,,,,,,,,,,,{},{},{} -6056,Blue_Card_Sary,Character Year Card,3,0,,10,,,,,,,,,,,,,{},{},{} -6057,Blue_Card_E,Character Lee Card,3,0,,10,,,,,,,,,,,,,{},{},{} -6058,Blue_Card_Ven,Character Ben Card,3,0,,10,,,,,,,,,,,,,{},{},{} -6059,Blue_Card_Nt,Character Project Card,3,0,,10,,,,,,,,,,,,,{},{},{} -6060,Moon_Admin_Ticket,Month Viewing Ticket,3,10,,10,,,,,,,,,,,,,{},{},{} -6061,Plantain,Blood Beginner,3,100,,50,,,,,,,,,,,,,{},{},{} -6062,Moon_Cake15,Letter Moon Cake,3,10,,10,,,,,,,,,,,,,{},{},{} -6063,Moon_Cake16,Letter Moon Cake,3,10,,10,,,,,,,,,,,,,{},{},{} -6064,Moon_Cake17,Letter Moon Cake,3,10,,10,,,,,,,,,,,,,{},{},{} -6065,Moon_Cake18,Letter Moon Cake,3,10,,10,,,,,,,,,,,,,{},{},{} -6066,Moon_Cake19,Letter Moon Cake,3,10,,10,,,,,,,,,,,,,{},{},{} -6067,Moon_Cake20,Letter Moon Cake,3,10,,10,,,,,,,,,,,,,{},{},{} -6068,Rabbit_Skin,Leather Rabbit,3,10,,10,,,,,,,,,,,,,{},{},{} -6069,ABUNDANCE,Abundance,3,10,,10,,,,,,,,,,,,,{},{},{} -6070,Shaman's_Old_Paper,Shaman's Document,3,0,,10,,,,,,,,,,,,,{},{},{} -6071,Broken_Sword,Broken Sword,3,0,,10,,,,,,,,,,,,,{},{},{} -6072,Wing_Of_Bizofnil,Bijofnil Feather,3,0,,10,,,,,,,,,,,,,{},{},{} -6073,Dragon's_Mane,Dragon's Mane,3,0,,0,,,,,,,,,,,,,{},{},{} -6074,Bazett's_Order,Bazett's Order,3,0,,0,,,,,,,,,,,,,{},{},{} -6075,Crystalized_Teardrop,Crystalized Teardrop,3,0,,0,,,,,,,,,,,,,{},{},{} -6076,Portable_Toolbox,Portable Toolbox,3,0,,0,,,,,,,,,,,,,{},{},{} -6077,Rough_Mineral,Rough Mineral,3,0,,0,,,,,,,,,,,,,{},{},{} -6078,Stone_Fragments,Stone Fragment,3,0,,0,,,,,,,,,,,,,{},{},{} -6079,Flower_Of_Alfheim,Flower Of Alfheim,3,0,,0,,,,,,,,,,,,,{},{},{} -6080,Manuk_Coin,Manuk Coin,3,0,,0,,,,,,,,,,,,,{},{},{} -6081,Splendide_Coin,Splendide Coin,3,0,,0,,,,,,,,,,,,,{},{},{} -6082,Spirit_Of_Alfheim,Spirit Of Alfheim,3,0,,0,,,,,,,,,,,,,{},{},{} -6083,Dolly_Capsule,Capsule Dolls,3,0,,10,,,,,,,,,,,,,{},{},{} -6084,Bradium_Fragments,Bradium Fragments,3,0,,0,,,,,,,,,,,,,{},{},{} -6085,Shaggy_Muffler,Shaggy Muffler,3,0,,0,,,,,,,,,,,,,{},{},{} -6086,Withered_Flower,Withered Flower,3,890,,10,,,,,,,,,,,,,{},{},{} -6087,Crystal_Of_Soul_01,Spiritual Crystal,3,1050,,10,,,,,,,,,,,,,{},{},{} -6088,Crystal_Of_Soul_02,Spiritual Crystal,3,1050,,10,,,,,,,,,,,,,{},{},{} -6089,Piece_Of_Darkness,Dark Piece,3,1000,,10,,,,,,,,,,,,,{},{},{} -6090,Purified_Bradium,Refined Bradium,3,1100,,50,,,,,,,,,,,,,{},{},{} -6091,Dark_Red_Scale,Dark Red Scale,3,200000,,10,,,,,,,,,,,,,{},{},{} -6092,Singing_Crystal_Piece,Piece Of Singing Crystal,3,0,,10,,,,,,,,,,,,,{},{},{} -6093,Egg_Of_Draco,Draco's Egg,3,0,,0,,,,,,,,,,,,,{},{},{} -6094,Traditional_Cookie,Traditional Sweets,3,20,,10,,,,,,,,,,,,,{},{},{} -6095,Flavored_Alcohol,Flavored Alcohol,3,1000,,10,,,,,,,,,,,,,{},{},{} -6096,Fish_With_Blue_Back,Fish With Blue Back,3,20,,10,,,,,,,,,,,,,{},{},{} -6097,Pumpkin_Pie_,Pumpkin Pie,3,20,,10,,,,,,,,,,,,,{},{},{} -6098,Small_Snow_Flower,Small Snow Flower,3,1000,,10,,,,,,,,,,,,,{},{},{} -6099,Grilled_Rice_Cake,Grilled Rice Cake,3,20,,10,,,,,,,,,,,,,{},{},{} -6100,Damp_Darkness,Damp Darkness,3,1000,,10,,,,,,,,,,,,,{},{},{} -6101,Attendance_Card,Attendance Card,3,0,,0,,,,,,,,,,,,,{},{},{} -6102,Report_On_Splendide,Report On Splendide,3,0,,0,,,,,,,,,,,,,{},{},{} -6103,Report_On_Manuk,Report On Manuk,3,0,,0,,,,,,,,,,,,,{},{},{} -6104,Big_Cell,Big Cell,3,1000,,10,,,,,,,,,,,,,{},{},{} -6105,Morning_Dew,Morning Dew,3,20,,10,,,,,,,,,,,,,{},{},{} -6106,Well_Ripened_Berry,Well Ripened Berry,3,20,,10,,,,,,,,,,,,,{},{},{} -6107,Sunset_On_The_Rock,Sunset On The Rock,3,20,,10,,,,,,,,,,,,,{},{},{} -6108,Apple_Pudding,Apple Pudding,3,1000,,10,,,,,,,,,,,,,{},{},{} -6109,Plant_Neutrient,Plant Neutrient,3,20,,10,,,,,,,,,,,,,{},{},{} -6110,Vital_Flower,Vital Flower,3,1000,,10,,,,,,,,,,,,,{},{},{} -6111,Mystic_Stone,Mystic Stone,3,1000,,10,,,,,,,,,,,,,{},{},{} -6112,Fresh_Plant,Fresh Plant,3,1000,,10,,,,,,,,,,,,,{},{},{} -6113,Vital_Flower_,Vital Flower,3,1000,,10,,,,,,,,,,,,,{},{},{} -6114,Flame_Gemstone,Flame Gemstone,3,1000,,10,,,,,,,,,,,,,{},{},{} -6115,Bun_,Bun,3,1000,,10,,,,,,,,,,,,,{},{},{} -6116,Succu_Pet_Coupon,Succubus Pet Exchange Coupon,3,0,,0,,,,,,,,,,,,,{},{},{} -6117,Imp_Pet_Coupon,Imp Pet Exchange Coupon,3,0,,0,,,,,,,,,,,,,{},{},{} -6118,Chung_E_Pet_Coupon,Chung E Exchange Coupon,3,0,,0,,,,,,,,,,,,,{},{},{} -6119,Natural_Leather,Cow Leather,3,0,,0,,,,,,,,,,,,,{},{},{} -6120,Face_Paint,Face Paint,3,120,,20,,,,,,,,,,,,,{},{},{} -6121,Makeover_Brush,Makeover Brush,3,10,,0,,,,,,,,,,,,,{},{},{} -6122,Paint_Brush,Paint Brush,3,10,,0,,,,,,,,,,,,,{},{},{} -6123,Surface_Paint,Surface Paint,3,200,,30,,,,,,,,,,,,,{},{},{} -6124,Wolf's_Flute,Wolf Flute,3,10,,0,,,,,,,,,,,,,{},{},{} -6125,Lucky_Box,Spring Time Box,3,10,,0,,,,,,,,,,,,,{},{},{} -6126,Happy_Box,Summer Happy Box,3,10,,0,,,,,,,,,,,,,{},{},{} -6127,Purification_Stone,Purification Stone,3,0,,0,,,,,,,,,,,,,{},{},{} -6128,Guillotine_Antidote,Antidote,3,0,,0,,,,,,,,,,,,,{},{},{} -6129,Ticket_Nightmare,Nightmare Terror Exchange Coupon,3,0,,0,,,,,,,,,,,,,{},{},{} -6130,Ticket_Loli_Ruri,Loli Ruri Exchange Coupon,3,0,,0,,,,,,,,,,,,,{},{},{} -6131,Ticket_Goblin_Leader,Goblin Leader Exchange Coupon,3,0,,0,,,,,,,,,,,,,{},{},{} -6132,Ticket_Incubus,Incubus Exchange Coupon,3,0,,0,,,,,,,,,,,,,{},{},{} -6133,Ticket_Miyabi_Ningyo,Miyabi Ningyo Exchange Coupon,3,0,,0,,,,,,,,,,,,,{},{},{} -6134,Ticket_Whisper,Giant Whisper Exchange Coupon,3,0,,0,,,,,,,,,,,,,{},{},{} -6135,Ticket_Wicked_Nymph,Evil Nymph Exchange Coupon,3,0,,0,,,,,,,,,,,,,{},{},{} -6136,Ticket_Medusa,Medusa Exchange Coupon,3,0,,0,,,,,,,,,,,,,{},{},{} -6137,Ticket_Stoneshooter,Stone Shooter Exchange Coupon,3,0,,0,,,,,,,,,,,,,{},{},{} -6138,Ticket_Marionette,Marionette Exchange Coupon,3,0,,0,,,,,,,,,,,,,{},{},{} -6139,Ticket_Leafcat,Leaf Cat Exchange Coupon,3,0,,0,,,,,,,,,,,,,{},{},{} -6140,Ticket_Dullahan,Dullahan Exchange Coupon,3,0,,0,,,,,,,,,,,,,{},{},{} -6141,Ticket_Shinobi,Shinobi Exchange Coupon,3,0,,0,,,,,,,,,,,,,{},{},{} -6142,Ticket_Golem,Golem Exchange Coupon,3,0,,0,,,,,,,,,,,,,{},{},{} -6143,Ticket_Civil_Servant,Civil Servant Exchange Coupon,3,0,,0,,,,,,,,,,,,,{},{},{} -6144,Heartbroken_Tears,Regrettable Tears,3,1000,,2,,,,,,,,,,,,,{},{},{} -6145,Vulcan_Bullet,Vulcan Bullet,3,10,,2,,,,,,,,,,,,,{},{},{} -6146,Magic_Gear_Fuel,Magic Gear Fuel,3,300,,30,,,,,,,,,,,,,{},{},{} -6147,Liquid_Condensed_Bullet,Liquid Condensed Bullet,3,100,,3,,,,,,,,,,,,,{},{},{} -6148,Chocolate_Of_Eternity,Eternity Of Chocolate,3,0,,0,,,,,,,,,,,,,{},{},{} -6149,Plain_Chocolate,Simple Chocolate,3,0,,0,,,,,,,,,,,,,{},{},{} -6150,Key_Of_The_Mansion,Key of The Mansion,3,0,,0,,,,,,,,,,,,,{},{},{} -6151,Peice_Of_Great_Bradium,Giant Bradium Fragment,3,0,,0,,,,,,,,,,,,,{},{},{} -6152,Glittering_Crystal,Glittering Crystal,3,0,,0,,,,,,,,,,,,,{},{},{} -6153,Special_Exchange_Coupon,Special Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6154,Broken_Horn_Pipe,Broken Horn Pipe,3,0,,10,,,,,,,,,,,,,{},{},{} -6155,Coke_Membership_Card,Member Card,3,0,,0,,,,,,,,,,,,,{},{},{} -6156,Approval_Report,Approval Report,3,0,,10,,,,,,,,,,,,,{},{},{} -6157,Poring_Ticket,Poring Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6158,Drops_Ticket,Drops Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6159,Poporing_Ticket,Poporing Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6160,Lunatic_Ticket,Lunatic Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6161,Picky_Ticket,Picky Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6162,Pecopeco_Ticket,Peco Peco Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6163,Savage_Baby_Ticket,Savage Babe Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6164,Spore_Ticket,Spore Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6165,Poison_Spore_Ticket,Poison Spore Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6166,Chonchon_Ticket,Chonchon Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6167,Steel_Chonchon_Ticket,Steel Chonchon Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6168,Petit_Ticket,Sky Petite Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6169,Deviruchi_Ticket,Deviruchi Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6170,Isis_Ticket,Isis Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6171,Smokie_Ticket,Smokie Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6172,Dokebi_Ticket,Dokebi Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6173,Desert_Wolf_B_Ticket,Baby Desert Wolf Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6174,Yoyo_Ticket,Yoyo Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6175,Sohee_Ticket,Sohee Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6176,Rocker_Ticket,Rocker Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6177,Hunter_Fly_Ticket,Hunter Fly Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6178,Orc_Warrior_Ticket,Orc Warrior Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6179,Bapho_Jr_Ticket,Bapho Jr. Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6180,Munak_Ticket,Munak Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6181,Bongun_Ticket,Bongun Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6182,Goblin_Ticket,Christmas Goblin Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6183,Hardtack_Ticket,Rice Cake Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6184,Zherlthsh_Ticket,Zherlthsh Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6185,Alice_Ticket,Alice Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6186,Monkey_Wrench,Monkey Wrench,3,500,,10,,,,,,,,,,,,,{},{},{} -6187,Blank_Card,Blank Card,3,20,,10,,,,,,,,,,,,,{},{},{} -6188,Slot_Coupon,Slotting Advertisement,3,20,,10,,,,,,,,,,,,,{},{},{} -6189,Magic_Book_FB,Spell Book (Fire Bolt),3,0,,0,,,,,,,,,,,,,{},{},{} -6190,Magic_Book_CB,Spell Book (Cold Bolt),3,0,,0,,,,,,,,,,,,,{},{},{} -6191,Magic_Book_LB,Spell Book (Lightening Bolt),3,0,,0,,,,,,,,,,,,,{},{},{} -6192,Magic_Book_SG,Spell Book (Storm Gust),3,0,,0,,,,,,,,,,,,,{},{},{} -6193,Magic_Book_LOV,Spell Book (Lord Of Vermilion),3,0,,0,,,,,,,,,,,,,{},{},{} -6194,Magic_Book_MS,Spell Book (Meteor Storm),3,0,,0,,,,,,,,,,,,,{},{},{} -6195,Magic_Book_CM,Spell Book (Comet),3,0,,0,,,,,,,,,,,,,{},{},{} -6196,Magic_Book_TV,Spell Book (Tetra Vortex),3,0,,0,,,,,,,,,,,,,{},{},{} -6197,Magic_Book_TS,Spell Book (Thunder Storm),3,0,,0,,,,,,,,,,,,,{},{},{} -6198,Magic_Book_JT,Spell Book (Jupitel Thunder),3,0,,0,,,,,,,,,,,,,{},{},{} -6199,Magic_Book_WB,Spell Book (Water Ball),3,0,,0,,,,,,,,,,,,,{},{},{} -6200,Magic_Book_HD,Spell Book (Heaven's Drive),3,0,,0,,,,,,,,,,,,,{},{},{} -6201,Magic_Book_ES,Spell Book (Earth Spike),3,0,,0,,,,,,,,,,,,,{},{},{} -6202,Magic_Book_ES_,Spell Book (Earth Strain),3,0,,0,,,,,,,,,,,,,{},{},{} -6203,Magic_Book_CL,Spell Book (Chain Lightning),3,0,,0,,,,,,,,,,,,,{},{},{} -6204,Magic_Book_CR,Spell Book (Crimson Rock),3,0,,0,,,,,,,,,,,,,{},{},{} -6205,Magic_Book_DL,Spell Book (Drain Life),3,0,,0,,,,,,,,,,,,,{},{},{} -6206,I_Love_You,I Love You,3,0,,0,,,,,,,,,,,,,{},{},{} -6207,Thank_You,Thank You,3,0,,0,,,,,,,,,,,,,{},{},{} -6208,I_Respect_You,I Respect You,3,0,,0,,,,,,,,,,,,,{},{},{} -6209,Glory_Of_Knights,Knight's Honor,3,0,,0,,,,,,,,,,,,,{},{},{} -6210,Seed_Of_Horny_Plant,Seed Of Thorny Plant,3,600,,1,,,,,,,,,,,,,{},{},{} -6211,Bloodsuck_Plant_Seed,Bloodsuck Plant Seed,3,800,,1,,,,,,,,,,,,,{},{},{} -6212,Bomb_Mushroom_Spore,Bomb Mushroom Spore,3,1000,,1,,,,,,,,,,,,,{},{},{} -6213,Explosive_Powder,Explosive Powder,3,500,,1,,,,,,,,,,,,,{},{},{} -6214,Smoke_Powder,Smoke Powder,3,500,,1,,,,,,,,,,,,,{},{},{} -6215,Tear_Gas,Tear Gas,3,500,,1,,,,,,,,,,,,,{},{},{} -6216,Oil_Bottle,Oil Bottle,3,1000,,1,,,,,,,,,,,,,{},{},{} -6217,Mandragora_Flowerpot,Mandragora Flowerpot,3,2000,,1,,,,,,,,,,,,,{},{},{} -6218,Disin_Delivery_Box,Delivery_Daishin_Box,3,0,,0,,,,,,,,,,,,,{},{},{} -6219,Para_Team_Mark,Eden Group Mark,3,0,,0,,,,,,,,,,,,,{},{},{} -6220,Mysterious_Dyestuff,Mysterious Dyestuff,3,0,,10,,,,,,,,,,,,,{},{},{} -6221,Mystic_Leaf_Cat_Ball,Mystic Leaf Cat Ball,3,0,,0,,,,,,,,,,,,,{},{},{} -6222,Shining_Beads,Shining Beads,3,20,,0,,,,,,,,,,,,,{},{},{} -6223,Carnium,Carnium,3,2000,,150,,,,,,,,,,,,,{},{},{} -6224,Bradium,Bradium,3,2000,,150,,,,,,,,,,,,,{},{},{} -6225,HD_Carnium,HD Carnium,3,0,,10,,,,,,,,,,,,,{},{},{} -6226,HD_Bradium,HD Bradium,3,0,,10,,,,,,,,,,,,,{},{},{} -6228,Guarantee_Weapon_9Up,+9 Weapon Refine Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6229,Guarantee_Weapon_8Up,+8 Weapon Refine Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6230,Guarantee_Weapon_7Up,+7 Weapon Refine Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6231,Guarantee_Weapon_6Up,+6 Weapon Refine Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6232,Guarantee_Armor_9Up,+9 Armor Refine Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6233,Guarantee_Armor_8Up,+8 Armor Refine Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6234,Guarantee_Armor_7Up,+7 Armor Refine Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6235,Guarantee_Armor_6Up,+6 Armor Refine Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6236,Blue_Card_7,Blue Card 7,3,0,,0,,,,,,,,,,,,,{},{},{} -6237,Guarana_Fruit,Guarana Fruit,3,0,,0,,,,,,,,,,,,,{},{},{} -6238,Guarantee_Weapon_11Up,+11 Weapon Refine Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6239,Guarantee_Armor_11Up,+11 Armor Refine Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6240,HD_Oridecon,HD Oridecon,3,20,,10,,,,,,,,,,,,,{},{},{} -6241,HD_Elunium,HD Elunium,3,20,,10,,,,,,,,,,,,,{},{},{} -6242,Midgard_Coin,Midgard Coin,3,20,,10,,,,,,,,,,,,,{},{},{} -6243,Exchange_Coupon,Exchange Coupon,3,0,,0,,,,,,,,,,,,,{},{},{} -6244,Gun_Powder,Gun Powder,3,10,,1,,,,,,,,,,,,,{},{},{} -6245,Black_Powder,Black Powder,3,100,,1,,,,,,,,,,,,,{},{},{} -6246,Yellow_Powder,Yellow Powder,3,100,,1,,,,,,,,,,,,,{},{},{} -6247,White_Powder,White Powder,3,100,,1,,,,,,,,,,,,,{},{},{} -6248,Melange_Pot,Melange Pot,3,600,,10,,,,,,,,,,,,,{},{},{} -6249,Savage_Meat,Savage Meat,3,100,,10,,,,,,,,,,,,,{},{},{} -6250,Cooking_Skewer,Cooking Skewer,3,300,,10,,,,,,,,,,,,,{},{},{} -6251,Black_Charcoal,Black Charcoal,3,300,,10,,,,,,,,,,,,,{},{},{} -6252,Wolf_Blood,Blood Of Wolf,3,100,,10,,,,,,,,,,,,,{},{},{} -6253,Cold_Ice,Cold Ice,3,100,,10,,,,,,,,,,,,,{},{},{} -6254,Beef_Head_Meat,Beef Head,3,100,,10,,,,,,,,,,,,,{},{},{} -6255,Large_Cookpot,Large Cookpot,3,500,,10,,,,,,,,,,,,,{},{},{} -6256,Ice_Fragment,Ice Piece,3,100,,10,,,,,,,,,,,,,{},{},{} -6257,Ice_Crystal,Ice Crystal,3,100,,10,,,,,,,,,,,,,{},{},{} -6258,Comodo_Tropic_Fruit,Comodo Tropical Fruit,3,800,,10,,,,,,,,,,,,,{},{},{} -6259,Drocera_Tentacle,Drosera Tentacle,3,100,,10,,,,,,,,,,,,,{},{},{} -6260,Petti_Tail,Petite's Tail,3,100,,10,,,,,,,,,,,,,{},{},{} -6261,Fine_Noodle,Fine Noodles,3,500,,10,,,,,,,,,,,,,{},{},{} -6262,Cool_Gravy,Cool Gravy,3,400,,10,,,,,,,,,,,,,{},{},{} -6263,Coconut_Fruit,Coconut Fruit,3,100,,10,,,,,,,,,,,,,{},{},{} -6264,Melon,Melon,3,100,,10,,,,,,,,,,,,,{},{},{} -6265,Pineapple,Pineapple,3,100,,10,,,,,,,,,,,,,{},{},{} -6266,Cheat_Key,Key Of Deception,3,0,,0,,,,,,,,,,,,,{},{},{} -6267,Virtual_Key,Key Of Illusion,3,0,,0,,,,,,,,,,,,,{},{},{} -6268,Mirth_Key,Key Of Gaiety,3,0,,0,,,,,,,,,,,,,{},{},{} -6269,Master_Brush,A Master's Blush,3,0,,0,,,,,,,,,,,,,{},{},{} -6270,Mins_Picture,A Picture Of Minstrel Song,3,0,,0,,,,,,,,,,,,,{},{},{} -6271,Mins_Receipt,Receipt,3,0,,0,,,,,,,,,,,,,{},{},{} -6272,Experiment_Seed,Experiment Seed,3,0,,0,,,,,,,,,,,,,{},{},{} -6273,Altered_Seed,Seed For Experiment,3,0,,0,,,,,,,,,,,,,{},{},{} -6274,Saint_Cloth_Piece,A Piece Of Cloth Of A Saint,3,0,,0,,,,,,,,,,,,,{},{},{} -6275,King_Shield,Shield Of King,3,0,,0,,,,,,,,,,,,,{},{},{} -6276,Clear_Reagent,Clear Reagent,3,0,,0,,,,,,,,,,,,,{},{},{} -6277,Red_Reagent,Red Reagent,3,0,,0,,,,,,,,,,,,,{},{},{} -6278,Black_Reagent,Black Reagent,3,0,,0,,,,,,,,,,,,,{},{},{} -6279,Apple_Bomb_CB,Apple Bomb Guidebook,3,1000,,10,,,,,,,,,,,,,{},{},{} -6280,Pinepple_Bomb_CB,Pineapple Bomb Guidebook,3,1000,,10,,,,,,,,,,,,,{},{},{} -6281,Coconut_Bomb_CB,Coconut Fruit Bomb Guidebook,3,1000,,10,,,,,,,,,,,,,{},{},{} -6282,Melon_Bomb_CB,Melon Bomb Guidebook,3,1000,,10,,,,,,,,,,,,,{},{},{} -6283,Banana_Bomb_CB,Banana Bomb Guidebook,3,1000,,10,,,,,,,,,,,,,{},{},{} -6284,Plant_Genetic_Grow,How To Grow Plant Genes,3,1000,,10,,,,,,,,,,,,,{},{},{} -6285,Quality_Potion_Book,Manual: How To Make High Quality Potion,3,1000,,10,,,,,,,,,,,,,{},{},{} -6286,F_Max_Weight_Up_Scroll,F Max Weight Up Scroll,3,0,,10,,,,,,,,,,,,,{},{},{} -6287,F_Clothing_Dye_Coupon,F Clothing Dye Coupon,3,0,,0,,,,,,,,,,,,,{},{},{} -6288,F_Happy_Box,F Happy Box,3,10,,0,,,,,,,,,,,,,{},{},{} -6289,F_Mysterious_Dyestuff,F Mysterious Dyestuff,3,0,,10,,,,,,,,,,,,,{},{},{} -6290,F_New_Style_Coupon,F New Style Coupon,3,0,,10,,,,,,,,,,,,,{},{},{} -6291,F_Enriched_Elunium,F Enriched Elunium,3,2,,10,,,,,,,,,,,,,{},{},{} -6292,F_Enriched_Oridecon,F Enriched Oridecon,3,2,,10,,,,,,,,,,,,,{},{},{} -6293,F_Token_Of_Siegfried,F Token Of Siegfried,3,2,,10,,,,,,,,,,,,,{},{},{} -6294,F_Marriage_Covenant,F Marriage Covenant,3,0,,10,,,,,,,,,,,,,{},{},{} -6295,F_Clothing_Dye_Coupon2,F Clothing Dye Coupon2,3,0,,0,,,,,,,,,,,,,{},{},{} -6296,RF_Taining_Notice,Training Notice,3,20,,10,,,,,,,,,,,,,{},{},{} -6297,Bottle_To_Throw,Throwing Bottle,3,300,,10,,,,,,,,,,,,,{},{},{} -6298,Pumpkin_Head_Crushed,Pumpkin Head Crushed,3,20,,0,,,,,,,,,,,,,{},{},{} -6299,Worn_Cloth_Piece,Worn Cloth Piece,3,20,,0,,,,,,,,,,,,,{},{},{} -6300,J_7Draw,event,3,20,,10,,,,,,,,,,,,,{},{},{} -6301,J_Semi_Draw,event,3,20,,10,,,,,,,,,,,,,{},{},{} -6302,GM_Handwriting,GM Handwriting,3,20004,,0,,,,,,,,,,,,,{},{},{} -6303,Changed_Hydra_Ball,Changed Hydra Ball,3,0,,0,,,,,,,,,,,,,{},{},{} -6304,Sapa_Feat_Cert,Proof Of Sapha's Honor,3,0,,0,,,,,,,,,,,,,{},{},{} -6305,Frozen_Skin_Piece,Frozen Piece Of Skin,3,0,,0,,,,,,,,,,,,,{},{},{} -6306,Solid_Bloodstain,Hard Bloodstain,3,0,,0,,,,,,,,,,,,,{},{},{} -6307,Suspicious_Magic_Stone,Cursed Magical Stone,3,0,,0,,,,,,,,,,,,,{},{},{} -6308,Unidentified_Relic,Unidentified Relic,3,0,,0,,,,,,,,,,,,,{},{},{} -6309,E_Max_Weight_Up_Scroll,E Max Weight Up Scroll,3,0,,10,,,,,,,,,,,,,{},{},{} -6310,E_Cloth_Dye_Coupon,E Cloth Dye Coupon,3,0,,0,,,,,,,,,,,,,{},{},{} -6311,E_Happy_Box,E Happy Box,3,10,,0,,,,,,,,,,,,,{},{},{} -6312,E_Mysterious_Dyestuff,E Mysterious Dyestuff,3,0,,10,,,,,,,,,,,,,{},{},{} -6313,E_New_Style_Coupon,E New Style Coupon,3,0,,10,,,,,,,,,,,,,{},{},{} -6314,E_Enriched_Elunium,E Enriched Elunium,3,2,,10,,,,,,,,,,,,,{},{},{} -6315,E_Enriched_Oridecon,E Enriched Oridecon,3,2,,10,,,,,,,,,,,,,{},{},{} -6316,E_Token_Of_Siegfried,E Token Of Siegfried,3,2,,10,,,,,,,,,,,,,{},{},{} -6317,E_Marriage_Covenant,E Marriage Covenant,3,0,,10,,,,,,,,,,,,,{},{},{} -6318,E_Cloth_Dye_Coupon2,E Cloth Dye Coupon2,3,0,,0,,,,,,,,,,,,,{},{},{} -6319,Small_Bradium,Small Bradium,3,324,,10,,,,,,,,,,,,,{},{},{} -6320,Premium_Reset_Stone,Premium Reset Stone,3,20,,0,,,,,,,,,,,,,{},{},{} -6321,Rakehorn_Helm,Rakehorn Helm,3,822,,10,,,,,,,,,,,,,{},{},{} -6322,Antler_Helm,Antler Helmet,3,800,,10,,,,,,,,,,,,,{},{},{} -6323,Twinhorn_Helm,Two-Horned Helmet,3,728,,10,,,,,,,,,,,,,{},{},{} -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,,,,,,,,,,,,,{},{},{} -6328,Calender_January,Calender January,3,20,,0,,,,,,,,,,,,,{},{},{} -6329,Calender_February,Calender February,3,20,,0,,,,,,,,,,,,,{},{},{} -6330,Calender_March,Calender March,3,20,,0,,,,,,,,,,,,,{},{},{} -6331,Calender_April,Calender April,3,20,,0,,,,,,,,,,,,,{},{},{} -6332,Calender_May,Calender May,3,20,,0,,,,,,,,,,,,,{},{},{} -6333,Calender_June,Calender June,3,20,,0,,,,,,,,,,,,,{},{},{} -6334,Calender_July,Calender July,3,20,,0,,,,,,,,,,,,,{},{},{} -6335,Calender_August,Calender August,3,20,,0,,,,,,,,,,,,,{},{},{} -6336,Calender_September,Calender September,3,20,,0,,,,,,,,,,,,,{},{},{} -6337,Calender_October,Calender October,3,20,,0,,,,,,,,,,,,,{},{},{} -6338,Calender_November,Calender November,3,20,,0,,,,,,,,,,,,,{},{},{} -6339,Calender_December,Calender December,3,20,,0,,,,,,,,,,,,,{},{},{} -6340,Fade_Notation_Green,Fade Notation Green,3,0,,10,,,,,,,,,,,,,{},{},{} -6341,Fade_Notation_Red,Fade Notation Red,3,0,,10,,,,,,,,,,,,,{},{},{} -6342,Fade_Notation_Purple,Fade Notation Purple,3,0,,10,,,,,,,,,,,,,{},{},{} -6343,Fade_Notation_Blue,Fade Notation Blue,3,0,,10,,,,,,,,,,,,,{},{},{} -6344,Muscle_Story,Muscle Story,3,0,,0,,,,,,,,,,,,,{},{},{} -6345,Love_Ball,Love Ball,3,0,,0,,,,,,,,,,,,,{},{},{} -6346,Seagate_Mark,Seagate Mark,3,0,,0,,,,,,,,,,,,,{},{},{} -6347,Bless_Word_Paper1,Bless Word Paper,3,4020,,0,,,,,,,,,,,,,{},{},{} -6348,Bless_Word_Paper2,Bless Word Paper,3,4020,,0,,,,,,,,,,,,,{},{},{} -6349,Bless_Word_Paper3,Bless Word Paper,3,4020,,0,,,,,,,,,,,,,{},{},{} -6350,Bless_Word_Paper4,Bless Word Paper,3,4020,,0,,,,,,,,,,,,,{},{},{} -6351,Bless_Word_Paper5,Bless Word Paper,3,4020,,0,,,,,,,,,,,,,{},{},{} -6352,Bless_Word_Paper6,Bless Word Paper,3,4020,,0,,,,,,,,,,,,,{},{},{} -6353,Bless_Word_Paper7,Bless Word Paper,3,4020,,0,,,,,,,,,,,,,{},{},{} -6354,Bless_Word_Paper8,Bless Word Paper,3,4020,,0,,,,,,,,,,,,,{},{},{} -6355,Bless_Word_Paper9,Bless Word Paper,3,4020,,0,,,,,,,,,,,,,{},{},{} -6356,Bless_Word_Paper10,Bless Word Paper,3,4020,,0,,,,,,,,,,,,,{},{},{} -6357,Fortune_Cookie_Fail,Fortune Cookie Fail,3,4020,,10,,,,,,,,,,,,,{},{},{} -6358,Free_Cash_Coupon,Free Cash Coupon,3,0,,0,,,,,,,,,,,,,{},{},{} -6359,Guidebook_Exchange,Guidebook Exchange,3,0,,0,,,,,,,,,,,,,{},{},{} -6360,Scarlet_Pts,Scarlet Point,3,100,,5,,,,,,,,,,,,,{},{},{} -6361,Indigo_Pts,Indigo Point,3,100,,5,,,,,,,,,,,,,{},{},{} -6362,Yellow_Wish_Pts,Yellow Wish Point,3,100,,5,,,,,,,,,,,,,{},{},{} -6363,Lime_Green_Pts,Lime Green Point,3,100,,5,,,,,,,,,,,,,{},{},{} -6369,Amatsu_Bead_A,Amatsu Bead A,3,0,,0,,,,,,,,,,,,,{},{},{} -6370,Amatsu_Bead_Ma,Amatsu Bead Ma,3,0,,0,,,,,,,,,,,,,{},{},{} -6371,Amatsu_Bead_Tsu,Amatsu Bead Tsu,3,0,,0,,,,,,,,,,,,,{},{},{} -6372,Amatsu_Bead_Jam,Amatsu Bead Jam,3,0,,0,,,,,,,,,,,,,{},{},{} -6373,Amatsu_Bead_Bo,Amatsu Bead Bo,3,0,,0,,,,,,,,,,,,,{},{},{} -6374,Amatsu_Bead_Ree,Amatsu Bead Ree,3,0,,0,,,,,,,,,,,,,{},{},{} -6375,Amatsu_Bead_!,Amatsu Bead !,3,0,,0,,,,,,,,,,,,,{},{},{} -6376,KVM_Badge,KVM Badge,3,0,,0,,,,,,,,,,,,,{},{},{} -6377,Buy_Market_Permit,Buy Market Permit,3,20,,10,,,,,,,,,,,,,{},{},{} -6378,Winning_Mark,Winning Mark,3,0,,0,,,,,,,,,,,,,{},{},{} -6379,7Star_Board,7Star Board,3,20,,10,,,,,,,,,,,,,{},{},{} -6380,Mora_Coin,Mora Coin,3,20,,0,,,,,,,,,,,,,{},{},{} -6381,Field_Shovel,Field Shovel,3,20,,10,,,,,,,,,,,,,{},{},{} -6382,Urn,Urn,3,20,,10,,,,,,,,,,,,,{},{},{} -6383,Clue_Of_Lope,Lope's Clue,3,20,,10,,,,,,,,,,,,,{},{},{} -6384,Ring_Of_Lope,Lope's Ring,3,0,,0,,,,,,,,,,,,,{},{},{} -6385,Research_Tool_Bag,Research Tool Bag,3,0,,0,,,,,,,,,,,,,{},{},{} -6386,Bathtub_R_Sample,Bath Water Sample,3,20,,0,,,,,,,,,,,,,{},{},{} -6387,Teeth_Sample,Teeth Sample,3,20,,0,,,,,,,,,,,,,{},{},{} -6388,Scale_Sample,Scale Sample,3,20,,0,,,,,,,,,,,,,{},{},{} -6389,Puddle_R_Sample,Sample Of Puddle Research,3,20,,0,,,,,,,,,,,,,{},{},{} -6390,Small_Pocket,Small Pocket,3,20,,0,,,,,,,,,,,,,{},{},{} -6391,Splendid_Supply_Kit,Splendid Supply Kit,3,20,,2000,,,,,,,,,,,,,{},{},{} -6392,Bradium_Box,Bradium Box,3,20,,10,,,,,,,,,,,,,{},{},{} -6393,Round_Feather,Round Feather,3,700,,10,,,,,,,,,,,,,{},{},{} -6394,Golden_Feather,Golden Feather,3,650,,10,,,,,,,,,,,,,{},{},{} -6395,Angel_Magic_Power,Angel Magic Power,3,820,,10,,,,,,,,,,,,,{},{},{} -6396,Auger_Of_Spirit,Auger Of Spirit,3,0,,10,,,,,,,,,,,,,{},{},{} -// -6456,Guarantee_Weapon_5Up,+5 Weapon Refine Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6457,Guarantee_Armor_5Up,+5 Armor Refine Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6493,Makibishi,Makibishi,3,30,,1,,,,,,,,,,,,,{},{},{} -6499,Ancient_Grudge,Ancient Grudge,3,500,,10,,,,,,,,,,,,,{},{},{} -6512,Charm_Fire,Fire Amulet,3,100,,1,,,,,,,,,,,,,{},{},{} -6513,Charm_Ice,Ice Amulet,3,100,,1,,,,,,,,,,,,,{},{},{} -6514,Charm_Wind,Wind Amulet,3,100,,1,,,,,,,,,,,,,{},{},{} -6515,Charm_Earth,Earth Amulet,3,100,,1,,,,,,,,,,,,,{},{},{} -// -7001,Mould_Powder,Mould Powder,3,466,,10,,,,,,,,,,,,,{},{},{} -7002,Ogre_Tooth,Ogre Tooth,3,658,,10,,,,,,,,,,,,,{},{},{} -7003,Anolian_Skin,Anolian Skin,3,968,,10,,,,,,,,,,,,,{},{},{} -7004,Mud_Lump,Mud Lump,3,876,,10,,,,,,,,,,,,,{},{},{} -7005,Skull,Skull,3,1044,,10,,,,,,,,,,,,,{},{},{} -7006,Wing_Of_Red_Bat,Wing of Red Bat,3,168,,10,,,,,,,,,,,,,{},{},{} -7007,Claw_Of_Rat,Claw of Rat,3,748,,10,,,,,,,,,,,,,{},{},{} -7008,Stiff_Horn,Stiff Horn,3,636,,10,,,,,,,,,,,,,{},{},{} -7009,Glitter_Shell,Glitter Shell,3,528,,10,,,,,,,,,,,,,{},{},{} -7010,Tail_Of_Steel_Scorpion,Tail of Steel Scorpion,3,548,,10,,,,,,,,,,,,,{},{},{} -7011,Claw_Of_Monkey,Claw of Monkey,3,466,,10,,,,,,,,,,,,,{},{},{} -7012,Tough_Scalelike_Stem,Tough Scalelike Stem,3,412,,10,,,,,,,,,,,,,{},{},{} -7013,Coral_Reef,Coral Reef,3,772,,10,,,,,,,,,,,,,{},{},{} -7014,Old_Portrait,Old Portrait,3,1500,,100,,,,,,,,,,,,,{},{},{} -7015,Bookclip_In_Memory,Bookclip in Memory,3,3000,,20,,,,,,,,,,,,,{},{},{} -7016,Spoon_Stub,Spoon Stub,3,2500,,20,,,,,,,,,,,,,{},{},{} -7017,Executioner's_Mitten,Executioner's Mitten,3,4500,,30,,,,,,,,,,,,,{},{},{} -7018,Young_Twig,Young Twig,3,50,,10,,,,,,,,,,,,,{},{},{} -7019,Loki's_Whispers,Loki's Whispers,3,20,,10,,,,,,,,,,,,,{},{},{} -7020,Mother's_Nightmare,Mother's Nightmare,3,20,,10,,,,,,,,,,,,,{},{},{} -7021,Foolishness_Of_Blind,Foolishness of the Blind,3,20,,10,,,,,,,,,,,,,{},{},{} -7022,Old_Hilt,Old Hilt,3,150,,30,,,,,,,,,,,,,{},{},{} -7023,Blade_Lost_In_Darkness,Blade Lost in Darkness,3,12000,,40,,,,,,,,,,,,,{},{},{} -7024,Bloody_Edge,Bloody Edge,3,10000,,40,,,,,,,,,,,,,{},{},{} -7025,Lucifer's_Lament,Lucifer's Lament,3,30000,,50,,,,,,,,,,,,,{},{},{} -7026,Key_Of_Clock_Tower,Key of Clock Tower,3,100,,30,,,,,,,,,,,,,{},{},{} -7027,Underground_Key,Key of Underground,3,100,,30,,,,,,,,,,,,,{},{},{} -7028,Invite_For_Duel,Invite for Duel,3,0,,0,,,,,,,,,,,,,{},{},{} -7029,Admission_For_Duel,Admission for Duel,3,0,,0,,,,,,,,,,,,,{},{},{} -7030,Claw_Of_Desert_Wolf,Claw of Desert Wolf,3,208,,10,,,,,,,,,,,,,{},{},{} -7031,Old_Frying_Pan,Old Frying Pan,3,196,,10,,,,,,,,,,,,,{},{},{} -7032,Piece_Of_Egg_Shell,Piece of Egg Shell,3,168,,10,,,,,,,,,,,,,{},{},{} -7033,Poison_Spore,Poison Spore,3,114,,10,,,,,,,,,,,,,{},{},{} -7034,Red_Socks_With_Holes,Red Stocking,3,100,,10,,,,,,,,,,,,,{},{},{} -7035,Matchstick,Matchstick,3,100,,10,,,,,,,,,,,,,{},{},{} -7036,Fang_Of_Garm,Fang of Hatii,3,100,,10,,,,,,,,,,,,,{},{},{} -7037,Trade_Coupon,Coupon,3,100,,10,,,,,,,,,,,,,{},{},{} -7038,Yarn,Yarn,3,100,,10,,,,,,,,,,,,,{},{},{} -7039,Novice_Nametag,Newbie Tag,3,0,,10,,,,,,,,,,,,,{},{},{} -7040,Megaphone,Megaphone,3,1,,10,,,,,,,,,,,,,{},{},{} -7041,Fine_Grit,Fine Grit,3,120,,10,,,,,,,,,,,,,{},{},{} -7042,Leather_Bag_Of_Infinity,Leather Bag of Infinity,3,1,,10,,,,,,,,,,,,,{},{},{} -7043,Fine_Sand,Fine Sand,3,100,,10,,,,,,,,,,,,,{},{},{} -7044,Vigorgra,Vigorgra,3,1,,10,,,,,,,,,,,,,{},{},{} -7045,Magic_Paint,Magic Paint,3,1,,10,,,,,,,,,,,,,{},{},{} -7046,Cart_Parts,Cart Parts,3,1,,10,,,,,,,,,,,,,{},{},{} -7047,Alice's_Apron,Alice's Apron,3,2424,,10,,,,,,,,,,,,,{},{},{} -7048,Talon_Of_Griffin,Talon of Griffon,3,5418,,10,,,,,,,,,,,,,{},{},{} -7049,Stone,Stone,3,0,,30,,,,,,,,,,,,,{},{},{} -7050,Cotton_Mat,Cotton Mat,3,100,,10,,,,,,,,,,,,,{},{},{} -7051,Silk_Mat,Silk Mat,3,100,,10,,,,,,,,,,,,,{},{},{} -7052,Old_Magazine,Old Papers,3,100,,10,,,,,,,,,,,,,{},{},{} -7053,Cyfar,Cyfar,3,772,,10,,,,,,,,,,,,,{},{},{} -7054,Brigan,Brigan,3,746,,10,,,,,,,,,,,,,{},{},{} -7055,Animal_Pooopoo,Animal Poop,3,100,,50,,,,,,,,,,,,,{},{},{} -7056,Payroll_Of_Kafra,Payment Statement for Kafra Employee,3,1,,50,,,,,,,,,,,,,{},{},{} -7057,Gallar_Horn,Gjallar,3,1,,500,,,,,,,,,,,,,{},{},{} -7058,Gullraifnir,Gleipnir,3,1,,500,,,,,,,,,,,,,{},{},{} -7059,Cargo_Free_Ticket,Free Ticket for Kafra Storage,3,1,,0,,,,,,,,,,,,,{},{},{} -7060,Warp_Free_Ticket,Free Ticket for Kafra Transportation,3,1,,0,,,,,,,,,,,,,{},{},{} -7061,Cart_Free_Ticket,Free Ticket for the Cart Service,3,1,,0,,,,,,,,,,,,,{},{},{} -7062,Broken_Turtle_Shell,Broken Turtle Shell,3,280,,10,,,,,,,,,,,,,{},{},{} -7063,Soft_Feather,Soft Feather,3,280,,10,,,,,,,,,,,,,{},{},{} -7064,Dragon_Fly_Wing,Wing of Dragonfly,3,520,,10,,,,,,,,,,,,,{},{},{} -7065,Sea_Otter_Leather,Sea-Otter Fur,3,820,,10,,,,,,,,,,,,,{},{},{} -7066,Ice_Piece,Ice Cubic,3,660,,10,,,,,,,,,,,,,{},{},{} -7067,Stone_Piece,Stone Fragment,3,640,,10,,,,,,,,,,,,,{},{},{} -7068,Burn_Tree,Burnt Tree,3,722,,10,,,,,,,,,,,,,{},{},{} -7069,Broken_Armor_Piece,Destroyed Armor,3,1042,,10,,,,,,,,,,,,,{},{},{} -7070,Broken_Shell,Broken Shell,3,900,,10,,,,,,,,,,,,,{},{},{} -7071,Tatters_Clothes,Tattered Clothes,3,1280,,10,,,,,,,,,,,,,{},{},{} -7072,Rust_Suriken,Old Shuriken,3,1780,,10,,,,,,,,,,,,,{},{},{} -7073,Jewel_Of_Prayer,Freya's Jewel,3,1,,500,,,,,,,,,,,,,{},{},{} -7074,Iron_Glove,Thor's Gauntlets,3,1,,500,,,,,,,,,,,,,{},{},{} -7075,Iron_Maiden,Iron Maiden,3,1,,500,,,,,,,,,,,,,{},{},{} -7076,Mystery_Wheel,Wheel of the Unknown,3,1,,500,,,,,,,,,,,,,{},{},{} -7077,Silver_Fancy,Silver Ornament,3,1,,500,,,,,,,,,,,,,{},{},{} -7078,Anger_Of_Valkurye,Wrath of Valkyrie,3,1,,500,,,,,,,,,,,,,{},{},{} -7079,Feather_Of_Angel,Feather of Angel Wing,3,1,,500,,,,,,,,,,,,,{},{},{} -7080,Foot_Step_Of_Cat,Cat Tread,3,1,,500,,,,,,,,,,,,,{},{},{} -7081,Beard_Of_Women,Woman's Moustache,3,1,,500,,,,,,,,,,,,,{},{},{} -7082,Root_Of_Stone,Root of Stone,3,1,,500,,,,,,,,,,,,,{},{},{} -7083,Soul_Of_Fish,Spirit of Fish,3,1,,500,,,,,,,,,,,,,{},{},{} -7084,Saliva_Of_Bird,Sputum of Bird,3,1,,500,,,,,,,,,,,,,{},{},{} -7085,Tendon_Of_Bear,Sinew of Bear,3,1,,500,,,,,,,,,,,,,{},{},{} -7086,Symbol_Of_Sun,Emblem of the Sun God,3,1,,500,,,,,,,,,,,,,{},{},{} -7087,Breath_Of_Soul,Breath of Spirit,3,1,,500,,,,,,,,,,,,,{},{},{} -7088,Crystal_Of_Snow,Snow Crystal,3,1,,500,,,,,,,,,,,,,{},{},{} -7089,Indication_Of_Tempest,Omen of Tempest,3,1,,500,,,,,,,,,,,,,{},{},{} -7090,Slilince_Wave,Ripple,3,1,,500,,,,,,,,,,,,,{},{},{} -7091,Rough_Billows,Billow,3,1,,500,,,,,,,,,,,,,{},{},{} -7092,Air_Stream,Drifting Air,3,1,,500,,,,,,,,,,,,,{},{},{} -7093,Wheel,Cogwheel,3,1512,,10,,,,,,,,,,,,,{},{},{} -7094,Mystery_Piece,Fragment,3,1344,,10,,,,,,,,,,,,,{},{},{} -7095,Broken_Steel_Piece,Metal Fragment,3,1075,,10,,,,,,,,,,,,,{},{},{} -7096,Cold_Magma,Lava,3,1109,,10,,,,,,,,,,,,,{},{},{} -7097,Burning_Heart,Burning Heart,3,924,,10,,,,,,,,,,,,,{},{},{} -7098,Live_Coal,Live Coal,3,638,,10,,,,,,,,,,,,,{},{},{} -7099,Old_Magic_Circle,Worn-out Magic Scroll,3,773,,10,,,,,,,,,,,,,{},{},{} -7100,Sharp_Leaf,Sharp Leaf,3,806,,10,,,,,,,,,,,,,{},{},{} -7101,Peco_Wing_Feather,Peco Peco Feather,3,454,,10,,,,,,,,,,,,,{},{},{} -7102,Hideous_Dream,Nightmare,3,1075,,10,,,,,,,,,,,,,{},{},{} -7103,Unknown_Liquid_Bottle,Unknown Liquid Bottle,3,10,,10,,,,,,,,,,,,,{},{},{} -7104,Fake_Angel_Wing,False Angel Wing,3,756,,10,,,,,,,,,,,,,{},{},{} -7105,Fake_Angel_Loop,False Heaven Ring,3,924,,10,,,,,,,,,,,,,{},{},{} -7106,Goat's_Horn,Antelope Horn,3,672,,10,,,,,,,,,,,,,{},{},{} -7107,Gaoat's_Skin,Antelope Skin,3,756,,10,,,,,,,,,,,,,{},{},{} -7108,Boroken_Shiled_Piece,Piece of Shield,3,1680,,10,,,,,,,,,,,,,{},{},{} -7109,Shine_Spear_Blade,Shining Spear Blade,3,840,,10,,,,,,,,,,,,,{},{},{} -7110,Vroken_Sword,Broken Sword,3,588,,10,,,,,,,,,,,,,{},{},{} -7111,Smooth_Paper,Slick Paper,3,706,,10,,,,,,,,,,,,,{},{},{} -7112,Fright_Paper_Blade,Sharp Paper,3,907,,10,,,,,,,,,,,,,{},{},{} -7113,Broken_Pharaoh_Symbol,Broken Pharaoh Emblem,3,2016,,10,,,,,,,,,,,,,{},{},{} -7114,Tutankhamen's_Mask,Masque of Tutankhamen,3,10,,10,,,,,,,,,,,,,{},{},{} -7115,Harpy's_Feather,Harpy Feather,3,1142,,10,,,,,,,,,,,,,{},{},{} -7116,Harpy's_Claw,Harpy Talon,3,1210,,10,,,,,,,,,,,,,{},{},{} -7117,Rent_Spell_Book,Torn Magic Book,3,1142,,10,,,,,,,,,,,,,{},{},{} -7118,Rent_Scroll,Torn Scroll,3,1361,,10,,,,,,,,,,,,,{},{},{} -7119,Spawns,Bacillus,3,1025,,10,,,,,,,,,,,,,{},{},{} -7120,Burning_Horse_Shoe,Burning Horseshoe,3,823,,10,,,,,,,,,,,,,{},{},{} -7121,Honey_Jar,Honey Pot,3,622,,10,,,,,,,,,,,,,{},{},{} -7122,Hot_Hair,Burning Hair,3,974,,10,,,,,,,,,,,,,{},{},{} -7123,Dragon's_Skin,Dragon Skin,3,1025,,10,,,,,,,,,,,,,{},{},{} -7124,Sand_Lump,Sand Clump,3,706,,10,,,,,,,,,,,,,{},{},{} -7125,Scropion's_Nipper,Scorpion Claw,3,706,,10,,,,,,,,,,,,,{},{},{} -7126,Large_Jellopy,Large Jellopy,3,840,,10,,,,,,,,,,,,,{},{},{} -7127,Alcol_Create_Book,Alcohol Creation Guide,3,100000,,10,,,,,,,,,,,,,{},{},{} -7128,FireBottle_Create_Book,Bottle Grenade Creation Guide,3,100000,,10,,,,,,,,,,,,,{},{},{} -7129,Acid_Create_Book,Acid Bottle Creation Guide,3,100000,,10,,,,,,,,,,,,,{},{},{} -7130,Plant_Create_Book,Plant Bottle Creation Guide,3,100000,,10,,,,,,,,,,,,,{},{},{} -7131,Mine_Create_Book,Marine Sphere Creation Guide,3,100000,,10,,,,,,,,,,,,,{},{},{} -7132,Coating_Create_Book,Glistening Coat Creation Guide,3,100000,,10,,,,,,,,,,,,,{},{},{} -7133,Slim_Potion_Create_Book,Condensed Potion Creation Guide,3,240000,,10,,,,,,,,,,,,,{},{},{} -7134,Medicine_Bowl,Medicine Bowl,3,8,,10,,,,,,,,,,,,,{},{},{} -7135,Fire_Bottle,Bottle Grenade,3,200,,10,,,,,,,,,,,,,{},{},{} -7136,Acid_Bottle,Acid Bottle,3,200,,10,,,,,,,,,,,,,{},{},{} -7137,MenEater_Plant_Bottle,Plant Bottle,3,200,,10,,,,,,,,,,,,,{},{},{} -7138,Mini_Bottle,Marine Sphere Bottle,3,200,,10,,,,,,,,,,,,,{},{},{} -7139,Coating_Bottle,Glistening Coat,3,200,,10,,,,,,,,,,,,,{},{},{} -7140,Seed_Of_Life,Seed of Life,3,60000,,10,,,,,,,,,,,,,{},{},{} -7141,Yggdrasilberry_Dew,Morning Dew of Yggdrasil,3,20000,,10,,,,,,,,,,,,,{},{},{} -7142,Germination_Breed,Embryo,3,10,,10,,,,,,,,,,,,,{},{},{} -7143,Life_Force_Pot,Glass Tube,3,5000,,10,,,,,,,,,,,,,{},{},{} -7144,Normal_Potion_Book,Potion Creation Guide,3,100000,,10,,,,,,,,,,,,,{},{},{} -7145,Rag_T_Shirts,Ragnarok T-shirt,3,1,,10,,,,,,,,,,,,,{},{},{} -7146,Vacance_Ticket,Vacation Ticket,3,1,,10,,,,,,,,,,,,,{},{},{} -7147,Jasmin,Jasmine,3,1,,10,,,,,,,,,,,,,{},{},{} -7148,Mother_Letter,Mother's Letter,3,1,,10,,,,,,,,,,,,,{},{},{} -7149,Yellow_Plate,Yellow Plate,3,220,,10,,,,,,,,,,,,,{},{},{} -7150,Bamboo_Cut,Piece of Bamboo,3,310,,10,,,,,,,,,,,,,{},{},{} -7151,Oil_Paper,Oil Paper,3,210,,10,,,,,,,,,,,,,{},{},{} -7152,Glossy_Hair,Glossy Hair,3,340,,10,,,,,,,,,,,,,{},{},{} -7153,Old_Japaness_Clothes,Worn-out Kimono,3,590,,10,,,,,,,,,,,,,{},{},{} -7154,Poison_Powder,Poisonous Powder,3,160,,10,,,,,,,,,,,,,{},{},{} -7155,Poison_Toad's_Skin,Poisonous Toad Skin,3,280,,10,,,,,,,,,,,,,{},{},{} -7156,Broken_Shuriken,Broken Shuriken,3,470,,10,,,,,,,,,,,,,{},{},{} -7157,Black_Mask,Dark Mask,3,315,,10,,,,,,,,,,,,,{},{},{} -7158,Broken_Wine_Vessel,Broken Liquor Jar,3,160,,10,,,,,,,,,,,,,{},{},{} -7159,Tengu's_Nose,Tengu Nose,3,400,,10,,,,,,,,,,,,,{},{},{} -7160,Lord's_Passable_Ticket,Feudal Lord Permit,3,1,,10,,,,,,,,,,,,,{},{},{} -7161,Black_Bear's_Skin,Black Bear Skin,3,384,,10,,,,,,,,,,,,,{},{},{} -7162,Cloud_Piece,Cloud Crumb,3,390,,10,,,,,,,,,,,,,{},{},{} -7163,Sharp_Feeler,Hard Feeler,3,570,,10,,,,,,,,,,,,,{},{},{} -7164,Hard_Peach,Solid Peach,3,400,,10,,,,,,,,,,,,,{},{},{} -7165,Limpid_Celestial_Robe,Transparent Celestial Robe,3,650,,10,,,,,,,,,,,,,{},{},{} -7166,Soft_Silk_Cloth,Soft Silk,3,1200,,10,,,,,,,,,,,,,{},{},{} -7167,Mystery_Iron_Bit,Strange Steel Piece,3,430,,10,,,,,,,,,,,,,{},{},{} -7168,Great_Wing,Giant Butterfly Wing,3,614,,10,,,,,,,,,,,,,{},{},{} -7169,Taegeuk_Plate,Ba Gua,3,2800,,10,,,,,,,,,,,,,{},{},{} -7170,Tuxedo,Tuxedo,3,43000,,10,,,,,,,,,,,,,{},{},{} -7171,Leopard_Skin,Leopard Skin,3,282,,10,,,,,,,,,,,,,{},{},{} -7172,Leopard_Talon,Leopard Claw,3,290,,10,,,,,,,,,,,,,{},{},{} -7173,BurnBuster_Bag,iROGM02's Backpack,3,0,,10,,,,,,,,,,,,,{},{},{} -7174,Packing_Ribbon,Wrapping Lace,3,0,,10,,,,,,,,,,,,,{},{},{} -7175,Packing_Paper,Wrapping Paper,3,0,,10,,,,,,,,,,,,,{},{},{} -7176,XMAS_Coupon,Royal Certificate,3,0,,10,,,,,,,,,,,,,{},{},{} -7177,Part_Of_Star's_Sob,Crumb of Sobbing Starlight,3,0,,0,,,,,,,,,,,,,{},{},{} -7178,Star's_Sob,Sobbing Starlight,3,0,,0,,,,,,,,,,,,,{},{},{} -7179,Donation_Card,Proof of Donation,3,0,,10,,,,,,,,,,,,,{},{},{} -7180,Introduction_Of_Mr.Han,Hahn Sukbong's Recommendation,3,0,,10,,,,,,,,,,,,,{},{},{} -7181,Receipt_01,Receipt,3,0,,10,,,,,,,,,,,,,{},{},{} -7182,Cacao,Cacao,3,200,,20,,,,,,,,,,,,,{},{},{} -7183,Sister_Letter,Letter from Sister,3,0,,10,,,,,,,,,,,,,{},{},{} -7184,Piano_Keyboard,Piano Key,3,0,,10,,,,,,,,,,,,,{},{},{} -7185,Quiz_Ticket,Quiz Entry,3,0,,10,,,,,,,,,,,,,{},{},{} -7186,Thin_Stem,Thin Trunk,3,380,,10,,,,,,,,,,,,,{},{},{} -7187,Festival_Mask,Festival Mask,3,100,,10,,,,,,,,,,,,,{},{},{} -7188,Browny_Root,Brown Root,3,560,,10,,,,,,,,,,,,,{},{},{} -7189,Heart_Of_Tree,Wooden Heart,3,680,,10,,,,,,,,,,,,,{},{},{} -7190,Solid_Peeling,Solid Husk,3,140,,10,,,,,,,,,,,,,{},{},{} -7191,Lamplight,Lamp,3,0,,10,,,,,,,,,,,,,{},{},{} -7192,Blade_Of_Pinwheel,Vane,3,160,,10,,,,,,,,,,,,,{},{},{} -7193,Germinating_Sprout,Sprout,3,230,,10,,,,,,,,,,,,,{},{},{} -7194,Soft_Leaf,Soft Blade of Grass,3,400,,10,,,,,,,,,,,,,{},{},{} -7195,Air_Rifle,Slingshot,3,210,,10,,,,,,,,,,,,,{},{},{} -7196,Shoulder_Protection,Shoulder Protector,3,230,,10,,,,,,,,,,,,,{},{},{} -7197,Tough_Vines,Tough Vines,3,500,,10,,,,,,,,,,,,,{},{},{} -7198,Great_Leaf,Huge Leaf,3,610,,10,,,,,,,,,,,,,{},{},{} -7199,Coupon,Coupon,3,0,,10,,,,,,,,,,,,,{},{},{} -7200,Flexible_String,Elastic Band,3,380,,10,,,,,,,,,,,,,{},{},{} -7201,Log,Log,3,250,,10,,,,,,,,,,,,,{},{},{} -7202,Beetle_Nipper,Pincher of Beetle,3,290,,10,,,,,,,,,,,,,{},{},{} -7203,Solid_Twig,Strong Branch,3,190,,10,,,,,,,,,,,,,{},{},{} -7204,Gunpowder,Gunpowder,3,320,,10,,,,,,,,,,,,,{},{},{} -7205,Piece_Of_Black_Cloth,Piece of Black Cloth,3,526,,10,,,,,,,,,,,,,{},{},{} -7206,Black_Kitty_Doll,Black Cat Doll,3,1440,,10,,,,,,,,,,,,,{},{},{} -7207,Old_Manteau,Old Manteau,3,1050,,10,,,,,,,,,,,,,{},{},{} -7208,Rusty_Cleaver,Rusty Kitchen Knife,3,1780,,10,,,,,,,,,,,,,{},{},{} -7209,Dullahan's_Helm,Helm of Dullahan,3,1350,,10,,,,,,,,,,,,,{},{},{} -7210,Dullahan_Armor,Armor Piece of Dullahan,3,790,,10,,,,,,,,,,,,,{},{},{} -7211,Rojerta_Piece,Fragment of Rossata Stone,3,2600,,10,,,,,,,,,,,,,{},{},{} -7212,Hanging_Doll,Hung Doll,3,1020,,10,,,,,,,,,,,,,{},{},{} -7213,Needle_Pouch,Needle Packet,3,832,,10,,,,,,,,,,,,,{},{},{} -7214,Bat_Cage,Bat Cage,3,880,,10,,,,,,,,,,,,,{},{},{} -7215,Broken_Needle,Broken Needle,3,690,,10,,,,,,,,,,,,,{},{},{} -7216,Red_Scarf,Red Muffler,3,660,,10,,,,,,,,,,,,,{},{},{} -7217,Spool,Spool,3,424,,10,,,,,,,,,,,,,{},{},{} -7218,Rotten_Rope,Decomposed Rope,3,390,,10,,,,,,,,,,,,,{},{},{} -7219,Striped_Socks,Striped Sock,3,920,,10,,,,,,,,,,,,,{},{},{} -7220,Ectoplasm,Ectoplasm,3,322,,10,,,,,,,,,,,,,{},{},{} -7221,Tangled_Chain,Tangled Chains,3,740,,10,,,,,,,,,,,,,{},{},{} -7222,Tree_Knot,Wooden Gnarl,3,468,,10,,,,,,,,,,,,,{},{},{} -7223,Distorted_Portrait,Contorted Self-Portrait,3,2032,,10,,,,,,,,,,,,,{},{},{} -7224,Stone_Of_Intelligence,Stone of Sage,3,0,,10,,,,,,,,,,,,,{},{},{} -7225,Pumpkin_Bucket,Pumpkin Lantern,3,486,,10,,,,,,,,,,,,,{},{},{} -7226,Pill,Pellet,3,2,,10,,,,,,,,,,,,,{},{},{} -7227,TCG_Card,TCG Card,3,0,,10,,,,,,,,,,,,,{},{},{} -7228,Gold_Bullion,Gold Bullion,3,100000,,300,,,,,,,,,,,,,{},{},{} -7229,Silver_Bullion,Silver Bullion,3,50000,,300,,,,,,,,,,,,,{},{},{} -7230,White_Gold_Bullion,Platinum Bullion,3,200000,,300,,,,,,,,,,,,,{},{},{} -7231,Gold_Ore,Gold Ore,3,20,,150,,,,,,,,,,,,,{},{},{} -7232,Silver_Ore,Silver Ore,3,20,,150,,,,,,,,,,,,,{},{},{} -7233,Mithril_Ore,Mithril Ore,3,20,,150,,,,,,,,,,,,,{},{},{} -7234,Soul_Of_Guild,Spirit of Guild,3,0,,10,,,,,,,,,,,,,{},{},{} -7235,Soul_Of_Courage,Spirit of Charge,3,0,,10,,,,,,,,,,,,,{},{},{} -7236,Soul_Of_Guard,Spirit of Protection,3,0,,10,,,,,,,,,,,,,{},{},{} -7237,Soul_Of_Partnership,Spirit of Association,3,0,,10,,,,,,,,,,,,,{},{},{} -7238,Soul_Of_Correspondence,Spirit of Coordination,3,0,,10,,,,,,,,,,,,,{},{},{} -7239,Soul_Of_Proceeding,Spirit of Advance,3,0,,10,,,,,,,,,,,,,{},{},{} -7240,Soul_Of_Confidence,Spirit of Trust,3,0,,10,,,,,,,,,,,,,{},{},{} -7241,Soul_Of_Agreement,Spirit of Union,3,0,,10,,,,,,,,,,,,,{},{},{} -7242,Soul_Of_Harmony,Spirit of Combination,3,0,,10,,,,,,,,,,,,,{},{},{} -7243,Soul_Of_Cooperate,Spirit of Cooperation,3,0,,10,,,,,,,,,,,,,{},{},{} -7244,Soul_Of_Unity,Spirit of Solidarity,3,0,,10,,,,,,,,,,,,,{},{},{} -7245,Soul_Of_Friendship,Spirit of Friendship,3,0,,10,,,,,,,,,,,,,{},{},{} -7246,Soul_Of_Peace,Spirit of Peace,3,0,,10,,,,,,,,,,,,,{},{},{} -7247,Soul_Of_Spirit,Spirit of Determination,3,0,,10,,,,,,,,,,,,,{},{},{} -7248,Soul_Of_Honor,Spirit of Honor,3,0,,10,,,,,,,,,,,,,{},{},{} -7249,Soul_Of_Service,Spirit of Service,3,0,,10,,,,,,,,,,,,,{},{},{} -7250,Soul_Of_Glory,Spirit of Glory,3,0,,10,,,,,,,,,,,,,{},{},{} -7251,Soul_Of_Victory,Spirit of Victory,3,0,,10,,,,,,,,,,,,,{},{},{} -7252,Herb_Medicine,Herbal Medicine,3,0,,10,,,,,,,,,,,,,{},{},{} -7253,Taeguk_Flag,Golden Korean Flag,3,0,,10,,,,,,,,,,,,,{},{},{} -7254,Digital_Print_Ticket,Digital Picture Printing Coupon,3,0,,10,,,,,,,,,,,,,{},{},{} -7255,China_Marble01,Mystic Orb,3,0,,100,,,,,,,,,,,,,{},{},{} -7256,China_Marble02,Mystic Orb,3,0,,100,,,,,,,,,,,,,{},{},{} -7257,China_Marble03,Mystic Orb,3,0,,100,,,,,,,,,,,,,{},{},{} -7258,China_Marble04,Mystic Orb,3,0,,100,,,,,,,,,,,,,{},{},{} -7259,China_Marble05,Mystic Orb,3,0,,100,,,,,,,,,,,,,{},{},{} -7260,China_Marble06,Mystic Orb,3,0,,100,,,,,,,,,,,,,{},{},{} -7261,China_Marble07,Mystic Orb,3,0,,100,,,,,,,,,,,,,{},{},{} -7262,Fan,Folding Fan of Cat Ghost,3,466,,10,,,,,,,,,,,,,{},{},{} -7263,Cat_Eyed_Stone,Cat's Eye,3,954,,10,,,,,,,,,,,,,{},{},{} -7264,Dried_Sand,Dry Sand,3,322,,10,,,,,,,,,,,,,{},{},{} -7265,Dragon_Horn,Dragon Horn,3,544,,10,,,,,,,,,,,,,{},{},{} -7266,Dragon_Fang,Denture from Dragon Mask,3,436,,10,,,,,,,,,,,,,{},{},{} -7267,Tiger_Skin_Panties,Tiger Panty,3,298,,10,,,,,,,,,,,,,{},{},{} -7268,Little_Blacky_Ghost,Little Ghost Doll,3,1210,,10,,,,,,,,,,,,,{},{},{} -7269,Bib,Pinafore,3,960,,10,,,,,,,,,,,,,{},{},{} -7270,Milk_Bottle,Nursing Bottle,3,1100,,10,,,,,,,,,,,,,{},{},{} -7271,Figure,Novice Figure,3,10000,,10,,,,,,,,,,,,,{},{},{} -7272,Meat_Dumpling_Doll,Rice Ball Doll,3,500,,10,,,,,,,,,,,,,{},{},{} -7273,Golden_Necklace,RWC Necklace,3,2,,10,,,,,,,,,,,,,{},{},{} -7274,Ancient_Translator,Translated Ancient Language,3,0,,10,,,,,,,,,,,,,{},{},{} -7275,Ancient_Document,Record of Ancient Language,3,0,,10,,,,,,,,,,,,,{},{},{} -7276,Picture_Letter,Doodled Message,3,0,,0,,,,,,,,,,,,,{},{},{} -7277,Munak_Doll,Munak Doll,3,8900,,10,,,,,,,,,,,,,{},{},{} -7278,Wellbeing_Letter,Letter to Wife,3,0,,10,,,,,,,,,,,,,{},{},{} -7279,Vita500_Lid,Vita500 Lid,3,10,,10,,,,,,,,,,,,,{},{},{} -7280,Quiz_Ticket01,1st Quiz Entry,3,0,,10,,,,,,,,,,,,,{},{},{} -7281,Quiz_Ticket02,2nd Quiz Entry,3,0,,10,,,,,,,,,,,,,{},{},{} -7282,Quiz_Ticket03,3rd Quiz Entry,3,0,,10,,,,,,,,,,,,,{},{},{} -7283,Quiz_Ticket04,4th Quiz Entry,3,0,,10,,,,,,,,,,,,,{},{},{} -7284,Quiz_Ticket05,5th Quiz Entry,3,0,,10,,,,,,,,,,,,,{},{},{} -7285,Thread_Skein,Holy Threads,3,2,,10,,,,,,,,,,,,,{},{},{} -7286,Chilli,Red Chile,3,20,,10,,,,,,,,,,,,,{},{},{} -7287,Thread_Skein_,Holier Threads,3,2,,10,,,,,,,,,,,,,{},{},{} -7288,Thai_Ring,Engagement Ring,3,2,,10,,,,,,,,,,,,,{},{},{} -7289,Olivine,Peridot,3,3000,,100,,,,,,,,,,,,,{},{},{} -7290,Phlogopite,Phlogopite,3,3000,,100,,,,,,,,,,,,,{},{},{} -7291,Agate,Agate,3,3000,,100,,,,,,,,,,,,,{},{},{} -7292,Muscovite,Muscovite,3,3000,,100,,,,,,,,,,,,,{},{},{} -7293,Rose_Quartz,Rose Quartz,3,3000,,100,,,,,,,,,,,,,{},{},{} -7294,Turquoise,Turquoise,3,3000,,100,,,,,,,,,,,,,{},{},{} -7295,Citrine,Citrin,3,3000,,100,,,,,,,,,,,,,{},{},{} -7296,Pyroxene,Pyroxene,3,3000,,100,,,,,,,,,,,,,{},{},{} -7297,Biotite,Biotite,3,3000,,100,,,,,,,,,,,,,{},{},{} -7298,Leaf_Clothes,Fig Leaf,3,538,,10,,,,,,,,,,,,,{},{},{} -7299,Bamboo_Basket,Straw Basket,3,632,,10,,,,,,,,,,,,,{},{},{} -7300,Gemstone,Gemstone,3,1420,,10,,,,,,,,,,,,,{},{},{} -7301,Sword_Accessory,Tassel,3,798,,10,,,,,,,,,,,,,{},{},{} -7302,KRATHONG,Krathong,3,2,,10,,,,,,,,,,,,,{},{},{} -7303,Bag_Of_Rice,Straw Rice Bag,3,0,,800,,,,,,,,,,,,,{},{},{} -7304,Witch's_Spell_Book,Witch's Spell Scroll,3,0,,0,,,,,,,,,,,,,{},{},{} -7305,Authority_Of_Nine_World,Symbol of the Nine Realms,3,0,,0,,,,,,,,,,,,,{},{},{} -7306,Fragment_Of_Soul,Piece of Spirit,3,0,,0,,,,,,,,,,,,,{},{},{} -7307,Whisper_Of_Soul,Spiritual Whispers,3,0,,0,,,,,,,,,,,,,{},{},{} -7308,Witch's_Potion,Witch's Tonic,3,0,,0,,,,,,,,,,,,,{},{},{} -7309,Wing_Of_Crow,Crow Wing,3,0,,0,,,,,,,,,,,,,{},{},{} -7310,Free_Peco_Ticket,Free Ticket for Peco Ride,3,20,,10,,,,,,,,,,,,,{},{},{} -7311,Free_Flying_Ship_Ticket,Free Ticket for Flyship,3,20,,10,,,,,,,,,,,,,{},{},{} -7312,Jubilee,Jubilee,3,32,,10,,,,,,,,,,,,,{},{},{} -7313,Seal_Of_Witch,Witch's Medal,3,2,,0,,,,,,,,,,,,,{},{},{} -7314,The_Sign,The Sign,3,2,,0,,,,,,,,,,,,,{},{},{} -7315,Dark_Crystal_Fragment,Dark Crystal Fragment,3,422,,10,,,,,,,,,,,,,{},{},{} -7316,Long_Limb,Insect Leg,3,658,,10,,,,,,,,,,,,,{},{},{} -7317,Screw,Rusty Screw,3,534,,10,,,,,,,,,,,,,{},{},{} -7318,Old_Pick,Old Pick,3,512,,10,,,,,,,,,,,,,{},{},{} -7319,Old_Steel_Plate,Used Iron Plate,3,1024,,10,,,,,,,,,,,,,{},{},{} -7320,Air_Pollutant,Dust Pollutant,3,256,,10,,,,,,,,,,,,,{},{},{} -7321,Fragment_Of_Crystal,Crystal Fragment,3,552,,10,,,,,,,,,,,,,{},{},{} -7322,Poisonous_Gas,Toxic Gas,3,666,,10,,,,,,,,,,,,,{},{},{} -7323,Battered_Kettle,Battered Kettle,3,256,,10,,,,,,,,,,,,,{},{},{} -7325,Tube,Flexible Tube,3,102,,10,,,,,,,,,,,,,{},{},{} -7326,Fluorescent_Liquid,Fluorescent Liquid,3,712,,10,,,,,,,,,,,,,{},{},{} -7327,Headlamp,Flashlight,3,1024,,10,,,,,,,,,,,,,{},{},{} -7328,Legendary_Scroll,Legend of Songkran,3,0,,10,,,,,,,,,,,,,{},{},{} -7329,Old_Copper_Key,Old Bronze Key,3,0,,10,,,,,,,,,,,,,{},{},{} -7330,2anny,Mystic Orb,3,0,,100,,,,,,,,,,,,,{},{},{} -7331,Flower_Of_Heaven,Heaven Flower,3,500,,10,,,,,,,,,,,,,{},{},{} -7332,Slate,Complete Tablet,3,0,,0,,,,,,,,,,,,,{},{},{} -7333,Piece_Of_Slate_1,Prontera Tablet,3,0,,0,,,,,,,,,,,,,{},{},{} -7334,Piece_Of_Slate_2,Payon Tablet,3,0,,0,,,,,,,,,,,,,{},{},{} -7335,Piece_Of_Slate_3,Morocc Tablet,3,0,,0,,,,,,,,,,,,,{},{},{} -7336,Piece_Of_Slate_4,Geffen Tablet,3,0,,0,,,,,,,,,,,,,{},{},{} -7337,Eye_Of_Hellion,Eye of Hellion,3,0,,0,,,,,,,,,,,,,{},{},{} -7338,RO_Transportation_Card,One-way Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -7339,RO_Transportation_Card_,Commemorative Travel Card,3,0,,0,,,,,,,,,,,,,{},{},{} -7340,Will_Of_Darkness,Will of the Darkness,3,734,,50,,,,,,,,,,,,,{},{},{} -7341,Worn_Out_Pendant,Old Pendant,3,20,,0,,,,,,,,,,,,,{},{},{} -7342,File01,File Folder,3,20,,0,,,,,,,,,,,,,{},{},{} -7343,File02,Sealed File Folder,3,20,,0,,,,,,,,,,,,,{},{},{} -7344,File03,Shinokas Case File,3,20,,0,,,,,,,,,,,,,{},{},{} -7345,Armlet_Of_Prisoner,Handcuffs,3,724,,10,,,,,,,,,,,,,{},{},{} -7346,Pile_Of_Ymir_Heart,Ymir's Heart Piece,3,20,,0,,,,,,,,,,,,,{},{},{} -7347,Lab_Staff_Record,Research Chart,3,840,,10,,,,,,,,,,,,,{},{},{} -7348,Indication_Of_Member01,Membership Card,3,20,,10,,,,,,,,,,,,,{},{},{} -7349,Indication_Of_Member02,Archive Permit,3,20,,0,,,,,,,,,,,,,{},{},{} -7350,Pass,Pass,3,20,,10,,,,,,,,,,,,,{},{},{} -7351,Friend's_Diary,Friend's Diary,3,20,,0,,,,,,,,,,,,,{},{},{} -7352,Transparent_Plate01,Transparent Plate,3,20,,10,,,,,,,,,,,,,{},{},{} -7353,Transparent_Plate02,Transparent Plate,3,20,,10,,,,,,,,,,,,,{},{},{} -7354,Transparent_Plate03,Transparent Plate,3,20,,10,,,,,,,,,,,,,{},{},{} -7355,Transparent_Plate04,Transparent Plate,3,20,,10,,,,,,,,,,,,,{},{},{} -7356,Piece_Of_Crest1,Crest Piece,3,5000,,10,,,,,,,,,,,,,{},{},{} -7357,Piece_Of_Crest2,Crest Piece,3,5000,,10,,,,,,,,,,,,,{},{},{} -7358,Piece_Of_Crest3,Crest Piece,3,5000,,10,,,,,,,,,,,,,{},{},{} -7359,Piece_Of_Crest4,Crest Piece,3,5000,,10,,,,,,,,,,,,,{},{},{} -7360,RO_Festival_Ticket,RO Festival Invitation,3,0,,10,,,,,,,,,,,,,{},{},{} -7361,Lotto01,Lotto Ball 01,3,0,,10,,,,,,,,,,,,,{},{},{} -7362,Lotto02,Lotto Ball 02,3,0,,10,,,,,,,,,,,,,{},{},{} -7363,Lotto03,Lotto Ball 03,3,0,,10,,,,,,,,,,,,,{},{},{} -7364,Lotto04,Lotto Ball 04,3,0,,10,,,,,,,,,,,,,{},{},{} -7365,Lotto05,Lotto Ball 05,3,0,,10,,,,,,,,,,,,,{},{},{} -7366,Lotto06,Lotto Ball 06,3,0,,10,,,,,,,,,,,,,{},{},{} -7367,Lotto07,Lotto Ball 07,3,0,,10,,,,,,,,,,,,,{},{},{} -7368,Lotto08,Lotto Ball 08,3,0,,10,,,,,,,,,,,,,{},{},{} -7369,Lotto09,Lotto Ball 09,3,0,,10,,,,,,,,,,,,,{},{},{} -7370,Lotto10,Lotto Ball 10,3,0,,10,,,,,,,,,,,,,{},{},{} -7371,Lotto11,Lotto Ball 11,3,0,,10,,,,,,,,,,,,,{},{},{} -7372,Lotto12,Lotto Ball 12,3,0,,10,,,,,,,,,,,,,{},{},{} -7373,Lotto13,Lotto Ball 13,3,0,,10,,,,,,,,,,,,,{},{},{} -7374,Lotto14,Lotto Ball 14,3,0,,10,,,,,,,,,,,,,{},{},{} -7375,Lotto15,Lotto Ball 15,3,0,,10,,,,,,,,,,,,,{},{},{} -7376,Lotto16,Lotto Ball 16,3,0,,10,,,,,,,,,,,,,{},{},{} -7377,Lotto17,Lotto Ball 17,3,0,,10,,,,,,,,,,,,,{},{},{} -7378,Lotto18,Lotto Ball 18,3,0,,10,,,,,,,,,,,,,{},{},{} -7379,Lotto19,Lotto Ball 19,3,0,,10,,,,,,,,,,,,,{},{},{} -7380,Lotto20,Lotto Ball 20,3,0,,10,,,,,,,,,,,,,{},{},{} -7381,Lotto21,Lotto Ball 21,3,0,,10,,,,,,,,,,,,,{},{},{} -7382,Lotto22,Lotto Ball 22,3,0,,10,,,,,,,,,,,,,{},{},{} -7383,Lotto23,Lotto Ball 23,3,0,,10,,,,,,,,,,,,,{},{},{} -7384,Lotto24,Lotto Ball 24,3,0,,10,,,,,,,,,,,,,{},{},{} -7385,Lotto25,Lotto Ball 25,3,0,,10,,,,,,,,,,,,,{},{},{} -7386,Lotto26,Lotto Ball 26,3,0,,10,,,,,,,,,,,,,{},{},{} -7387,Lotto27,Lotto Ball 27,3,0,,10,,,,,,,,,,,,,{},{},{} -7388,Lotto28,Lotto Ball 28,3,0,,10,,,,,,,,,,,,,{},{},{} -7389,Lotto29,Lotto Ball 29,3,0,,10,,,,,,,,,,,,,{},{},{} -7390,Lotto30,Lotto Ball 30,3,0,,10,,,,,,,,,,,,,{},{},{} -7391,Lotto31,Lotto Ball 31,3,0,,10,,,,,,,,,,,,,{},{},{} -7392,Lotto32,Lotto Ball 32,3,0,,10,,,,,,,,,,,,,{},{},{} -7393,Lotto33,Lotto Ball 33,3,0,,10,,,,,,,,,,,,,{},{},{} -7394,Lotto34,Lotto Ball 34,3,0,,10,,,,,,,,,,,,,{},{},{} -7395,Lotto35,Lotto Ball 35,3,0,,10,,,,,,,,,,,,,{},{},{} -7396,Lotto36,Lotto Ball 36,3,0,,10,,,,,,,,,,,,,{},{},{} -7397,Lotto37,Lotto Ball 37,3,0,,10,,,,,,,,,,,,,{},{},{} -7398,Lotto38,Lotto Ball 38,3,0,,10,,,,,,,,,,,,,{},{},{} -7399,Word_Card01,Selamat,3,2,,10,,,,,,,,,,,,,{},{},{} -7400,Word_Card02,Hari,3,2,,10,,,,,,,,,,,,,{},{},{} -7401,Word_Card03,Kemerdekaan,3,2,,10,,,,,,,,,,,,,{},{},{} -7402,Word_Card04,Republik,3,2,,10,,,,,,,,,,,,,{},{},{} -7403,Word_Card05,Indonesia,3,2,,10,,,,,,,,,,,,,{},{},{} -7404,Word_Card06,Ke-60,3,2,,10,,,,,,,,,,,,,{},{},{} -7405,Crushed_Can,Crushed Can,3,2,,10,,,,,,,,,,,,,{},{},{} -7406,Moon_Cake1,Yuebing,3,2,,10,,,,,,,,,,,,,{},{},{} -7407,Moon_Cake2,Yuebing,3,2,,10,,,,,,,,,,,,,{},{},{} -7408,Moon_Cake3,Yuebing,3,2,,10,,,,,,,,,,,,,{},{},{} -7409,Moon_Cake4,Yuebing,3,2,,10,,,,,,,,,,,,,{},{},{} -7410,Moon_Cake5,Yuebing,3,2,,10,,,,,,,,,,,,,{},{},{} -7411,Moon_Cake6,Yuebing,3,2,,10,,,,,,,,,,,,,{},{},{} -7412,Moon_Cake7,Yuebing,3,2,,10,,,,,,,,,,,,,{},{},{} -7413,Moon_Cake8,Yuebing,3,2,,10,,,,,,,,,,,,,{},{},{} -7414,Moon_Cake9,Yuebing,3,2,,10,,,,,,,,,,,,,{},{},{} -7415,Stone_Of_Summons,Summoning Stone,3,2,,10,,,,,,,,,,,,,{},{},{} -7416,Letter_Of_Recommend,Letter of Recommendation,3,0,,0,,,,,,,,,,,,,{},{},{} -7417,Mission_ScrollA,Written Request(A),3,0,,0,,,,,,,,,,,,,{},{},{} -7418,Mission_ScrollB,Written Request(B),3,0,,0,,,,,,,,,,,,,{},{},{} -7419,Embryo_HandBook,Embryo Creation Guide,3,48000,,10,,,,,,,,,,,,,{},{},{} -7420,Skull_,Skull,3,0,,0,,,,,,,,,,,,,{},{},{} -7421,Key_Red,Red Key,3,0,,0,,,,,,,,,,,,,{},{},{} -7422,Key_Yellow,Yellow Key,3,0,,0,,,,,,,,,,,,,{},{},{} -7423,Key_Blue,Blue Key,3,0,,0,,,,,,,,,,,,,{},{},{} -7424,Key_Green,Green Key,3,0,,0,,,,,,,,,,,,,{},{},{} -7425,Key_Black,Black Key,3,0,,0,,,,,,,,,,,,,{},{},{} -7426,Magic_Gem_Red,Red Charm Stone,3,0,,0,,,,,,,,,,,,,{},{},{} -7427,Magic_Gem_Yellow,Yellow Charm Stone,3,0,,0,,,,,,,,,,,,,{},{},{} -7428,Magic_Gem_Blue,Blue Charm Stone,3,0,,0,,,,,,,,,,,,,{},{},{} -7429,Magic_Gem_Green,Green Charm Stone,3,0,,0,,,,,,,,,,,,,{},{},{} -7430,Magic_Gem_Black,Black Charm Stone,3,0,,0,,,,,,,,,,,,,{},{},{} -7431,Several_Books,Pile of Books,3,0,,0,,,,,,,,,,,,,{},{},{} -7432,Leather_Pouch,Leather Pouch,3,0,,0,,,,,,,,,,,,,{},{},{} -7433,Scroll,Blank Scroll,3,4000,,10,,,,,,,,,,,,,{},{},{} -7434,Elemental_Potion_Book,Elemental Potion Creation Guide,3,100000,,10,,,,,,,,,,,,,{},{},{} -7435,Golden_Bracelet,Golden Ornament,3,1907,,10,,,,,,,,,,,,,{},{},{} -7436,Piece_Of_Memory_Green,Fragment of Agony,3,1506,,10,,,,,,,,,,,,,{},{},{} -7437,Piece_Of_Memory_Purple,Fragment of Misery,3,1506,,10,,,,,,,,,,,,,{},{},{} -7438,Piece_Of_Memory_Blue,Fragment of Hatred,3,1506,,10,,,,,,,,,,,,,{},{},{} -7439,Piece_Of_Memory_Red,Fragment of Despair,3,1506,,10,,,,,,,,,,,,,{},{},{} -7440,Red_Feather,Red Feather,3,1335,,10,,,,,,,,,,,,,{},{},{} -7441,Blue_Feather,Blue Feather,3,1408,,10,,,,,,,,,,,,,{},{},{} -7442,Cursed_Seal,Cursed Seal,3,1332,,10,,,,,,,,,,,,,{},{},{} -7443,Tri_Headed_Dragon_Head,Three-Headed Dragon's Head,3,956,,10,,,,,,,,,,,,,{},{},{} -7444,Treasure_Box,Treasure Box,3,300000,,10,,,,,,,,,,,,,{},{},{} -7445,Dragonball_Green,Green Bijou,3,887,,10,,,,,,,,,,,,,{},{},{} -7446,Dragonball_Blue,Blue Bijou,3,887,,10,,,,,,,,,,,,,{},{},{} -7447,Dragonball_Red,Red Bijou,3,887,,10,,,,,,,,,,,,,{},{},{} -7448,Dragonball_Yellow,Yellow Bijou,3,887,,10,,,,,,,,,,,,,{},{},{} -7449,Bloody_Page,Bloody Page,3,681,,10,,,,,,,,,,,,,{},{},{} -7450,Piece_Of_Bone_Armor,Skeletal Armor Piece,3,2050,,10,,,,,,,,,,,,,{},{},{} -7451,Scale_Of_Red_Dragon,Fire Dragon Scale,3,1852,,10,,,,,,,,,,,,,{},{},{} -7452,Yellow_Spice,Yellow Spice,3,1000,,10,,,,,,,,,,,,,{},{},{} -7453,Sweet_Sauce,Sweet Sauce,3,700,,10,,,,,,,,,,,,,{},{},{} -7454,Plain_Sauce,Savory Sauce,3,700,,10,,,,,,,,,,,,,{},{},{} -7455,Hot_Sauce,Spicy Sauce,3,700,,10,,,,,,,,,,,,,{},{},{} -7456,Red_Spice,Red Spice,3,1000,,10,,,,,,,,,,,,,{},{},{} -7457,Cooking_Oil,Cooking Oil,3,500,,10,,,,,,,,,,,,,{},{},{} -7458,Baphomet's_Horn,Fortune Horn,3,2,,10,,,,,,,,,,,,,{},{},{} -7459,RAMADAN_,Idul Fitri Card,3,2,,10,,,,,,,,,,,,,{},{},{} -7460,Niflheim_Ticket,Niflheim Express Ticket,3,2,,10,,,,,,,,,,,,,{},{},{} -7461,BlueCard_A,Blue A Card,3,0,,10,,,,,,,,,,,,,{},{},{} -7462,BlueCard_E,Blue E Card,3,0,,10,,,,,,,,,,,,,{},{},{} -7463,BlueCard_F,Blue F Card,3,0,,10,,,,,,,,,,,,,{},{},{} -7464,BlueCard_H,Blue H Card,3,0,,10,,,,,,,,,,,,,{},{},{} -7465,BlueCard_L,Blue L Card,3,0,,10,,,,,,,,,,,,,{},{},{} -7466,BlueCard_N,Blue N Card,3,0,,10,,,,,,,,,,,,,{},{},{} -7467,BlueCard_O,Blue O Card,3,0,,10,,,,,,,,,,,,,{},{},{} -7468,BlueCard_P,Blue P Card,3,0,,10,,,,,,,,,,,,,{},{},{} -7469,BlueCard_U,Blue U Card,3,0,,10,,,,,,,,,,,,,{},{},{} -7470,BlueCard_W,Blue W Card,3,0,,10,,,,,,,,,,,,,{},{},{} -7471,BlueCard_Y,Blue Y Card,3,0,,10,,,,,,,,,,,,,{},{},{} -7472,Cookbook01,Level 1 Cookbook,3,1000,,10,,,,,,,,,,,,,{},{},{} -7473,Cookbook02,Level 2 Cookbook,3,1000,,10,,,,,,,,,,,,,{},{},{} -7474,Cookbook03,Level 3 Cookbook,3,1000,,10,,,,,,,,,,,,,{},{},{} -7475,Cookbook04,Level 4 Cookbook,3,1000,,10,,,,,,,,,,,,,{},{},{} -7476,Cookbook05,Level 5 Cookbook,3,1000,,10,,,,,,,,,,,,,{},{},{} -7477,Cookbook06,Level 6 Cookbook,3,1000,,10,,,,,,,,,,,,,{},{},{} -7478,Cookbook07,Level 7 Cookbook,3,1000,,10,,,,,,,,,,,,,{},{},{} -7479,Cookbook08,Level 8 Cookbook,3,1000,,10,,,,,,,,,,,,,{},{},{} -7480,Cookbook09,Level 9 Cookbook,3,1000,,10,,,,,,,,,,,,,{},{},{} -7481,Cookbook10,Level 10 Cookbook,3,1000,,10,,,,,,,,,,,,,{},{},{} -7482,Pot,Pot,3,200,,10,,,,,,,,,,,,,{},{},{} -7483,Key_Of_Seal,Key of the Seal,3,0,,0,,,,,,,,,,,,,{},{},{} -7484,Warrior_Symbol,Symbol of a Brave Warrior,3,0,,10,,,,,,,,,,,,,{},{},{} -7485,2nd_Floor_Pass,Cloud General,3,0,,10,,,,,,,,,,,,,{},{},{} -7486,3rd_Floor_Pass,Wind General,3,0,,10,,,,,,,,,,,,,{},{},{} -7487,Tavern_Wine,Culinary Wine,3,0,,0,,,,,,,,,,,,,{},{},{} -7488,Delivery_Box,Delivery Package,3,0,,0,,,,,,,,,,,,,{},{},{} -7489,Villa_Spare_Key,Cottage Key,3,0,,0,,,,,,,,,,,,,{},{},{} -7490,Kyll_Hire_Letter,Letter to Elly,3,0,,0,,,,,,,,,,,,,{},{},{} -7491,Iron_Box,Steel Box,3,0,,0,,,,,,,,,,,,,{},{},{} -7492,Yellow_Key_Card,Yellow Keycard,3,0,,0,,,,,,,,,,,,,{},{},{} -7493,Golden_Key,Golden Key,3,0,,0,,,,,,,,,,,,,{},{},{} -7494,Kiel_Button,Luxurious Button,3,0,,0,,,,,,,,,,,,,{},{},{} -7495,Blue_Key_Card,Blue Keycard,3,0,,0,,,,,,,,,,,,,{},{},{} -7496,Red_Key_Card,Red Keycard,3,0,,0,,,,,,,,,,,,,{},{},{} -7497,Steel_Piece,Metal Fragment,3,0,,0,,,,,,,,,,,,,{},{},{} -7498,Rosimier_Key,Rosimier Mansion Keys,3,0,,0,,,,,,,,,,,,,{},{},{} -7499,Family_Portrait,Family Portrait,3,0,,0,,,,,,,,,,,,,{},{},{} -7500,Elysia_Portrait,Woman's Portrait,3,0,,0,,,,,,,,,,,,,{},{},{} -7501,Kyll_Hire_Letter2,K.H's Letter,3,0,,0,,,,,,,,,,,,,{},{},{} -7502,Piece_Memo_Of_James,James's Note,3,0,,0,,,,,,,,,,,,,{},{},{} -7503,Man_Portrait,Man's Portrait,3,0,,0,,,,,,,,,,,,,{},{},{} -7504,Toy_Motor,Power Device,3,0,,0,,,,,,,,,,,,,{},{},{} -7505,Toy_Key,Toy Key,3,0,,0,,,,,,,,,,,,,{},{},{} -7506,Black_Key_Card,Black Keycard,3,0,,0,,,,,,,,,,,,,{},{},{} -7507,Sturdy_Iron_Piece,Solid Iron Piece,3,842,,10,,,,,,,,,,,,,{},{},{} -7508,Elysia_Ring,Allysia's Ring,3,0,,0,,,,,,,,,,,,,{},{},{} -7509,Fancy_Key_Card,Luxurious Keycard,3,0,,0,,,,,,,,,,,,,{},{},{} -7510,Valhalla_Flower,Valhalla's Flower,3,200000,,10,,,,,,,,,,,,,{},{},{} -7511,Rune_Of_Darkness,Rune of Darkness,3,2526,,10,,,,,,,,,,,,,{},{},{} -7512,Burnt_Parts,Burnt Part,3,1600,,10,,,,,,,,,,,,,{},{},{} -7513,Pocket_Watch,Pocket Watch,3,3420,,10,,,,,,,,,,,,,{},{},{} -7514,Monster_Ticket,Monster Ticket,3,2,,0,,,,,,,,,,,,,{},{},{} -7515,Marvelous_Medal,Prize Medal,3,2,,0,,,,,,,,,,,,,{},{},{} -7516,Green_Key_Card,Green Keycard,3,0,,0,,,,,,,,,,,,,{},{},{} -7517,Gold_Coin_,Gold Coin,3,1000,,100,,,,,,,,,,,,,{},{},{} -7518,Women's_Medal,Women's Medal,3,0,,10,,,,,,,,,,,,,{},{},{} -7519,Money_Envelope,Handsel,3,0,,10,,,,,,,,,,,,,{},{},{} -7520,Chinese_Scroll,Please Be Rich,3,0,,10,,,,,,,,,,,,,{},{},{} -7521,Flame_Stone,Flame Stone,3,150,,10,,,,,,,,,,,,,{},{},{} -7522,Ice_Stone,Ice Stone,3,150,,10,,,,,,,,,,,,,{},{},{} -7523,Wind_Stone,Wind Stone,3,150,,10,,,,,,,,,,,,,{},{},{} -7524,Shadow_Orb,Shadow Orb,3,300,,20,,,,,,,,,,,,,{},{},{} -7525,Summer_Feast_Ticket,Summer Festival Ticket,3,10,,10,,,,,,,,,,,,,{},{},{} -7526,Manuscript_Paper,Manuscript Paper,3,2,,0,,,,,,,,,,,,,{},{},{} -7527,Life_Book,Book About True Life,3,0,,100,,,,,,,,,,,,,{},{},{} -7528,Id_Lottery_Ticket,Lottery Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -7529,Stolen_Sandals,Stolen Sandal,3,0,,0,,,,,,,,,,,,,{},{},{} -7530,Travel_Brochure_01,Travel Brochure [Amatsu],3,0,,0,,,,,,,,,,,,,{},{},{} -7531,Travel_Brochure_02,Travel Brochure [Kunlun],3,0,,0,,,,,,,,,,,,,{},{},{} -7532,Travel_Brochure_03,Travel Brochure [Luoyang],3,0,,0,,,,,,,,,,,,,{},{},{} -7533,Travel_Brochure_04,Travel Brochure [Ayothaya],3,0,,0,,,,,,,,,,,,,{},{},{} -7534,Photo_Album_01,Amatsu Completed Photo Album,3,0,,0,,,,,,,,,,,,,{},{},{} -7535,Photo_Album_02,Kunlun Completed Photo Album,3,0,,0,,,,,,,,,,,,,{},{},{} -7536,Photo_Album_03,Luoyang Completed Photo Album,3,0,,0,,,,,,,,,,,,,{},{},{} -7537,Photo_Album_04,Ayothaya Completed Photo Album,3,0,,0,,,,,,,,,,,,,{},{},{} -7538,Sifted_Sand,Sand for Work,3,0,,0,,,,,,,,,,,,,{},{},{} -7539,Poring_Coin,Poring Coin,3,0,,0,,,,,,,,,,,,,{},{},{} -7540,Lotto39,Lotto Ball 39,3,0,,10,,,,,,,,,,,,,{},{},{} -7541,Lotto40,Lotto Ball 40,3,0,,10,,,,,,,,,,,,,{},{},{} -7542,Lotto41,Lotto Ball 41,3,0,,10,,,,,,,,,,,,,{},{},{} -7543,Lotto42,Lotto Ball 42,3,0,,10,,,,,,,,,,,,,{},{},{} -7544,Lotto43,Lotto Ball 43,3,0,,10,,,,,,,,,,,,,{},{},{} -7545,Lotto44,Lotto Ball 44,3,0,,10,,,,,,,,,,,,,{},{},{} -7546,Lotto45,Lotto Ball 45,3,0,,10,,,,,,,,,,,,,{},{},{} -7547,Soccer_Ball,Soccer Ball,3,20,,10,,,,,,,,,,,,,{},{},{} -7548,Soccer_Shoes,Soccer Shoes,3,20,,10,,,,,,,,,,,,,{},{},{} -7549,Brazilian_Flag,Brazilian Flag,3,20,,10,,,,,,,,,,,,,{},{},{} -7550,Ticket01,6.13 Ticket,3,20,,10,,,,,,,,,,,,,{},{},{} -7551,Ticket02,6.18 Ticket,3,20,,10,,,,,,,,,,,,,{},{},{} -7552,Ticket03,6.22 Ticket,3,20,,10,,,,,,,,,,,,,{},{},{} -7553,Lotus_Flower,Lotus Flower,3,0,,0,,,,,,,,,,,,,{},{},{} -7554,Striped_Candle,Striped Candle,3,0,,0,,,,,,,,,,,,,{},{},{} -7555,Green_Incense,Green Incense,3,0,,0,,,,,,,,,,,,,{},{},{} -7556,Longing_Heart,Longing Heart,3,0,,0,,,,,,,,,,,,,{},{},{} -7557,Invitation_Letter,Invitation Letter,3,0,,0,,,,,,,,,,,,,{},{},{} -7558,Invitation_Ticket,Invitation Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -7559,Key_Of_Flower_Garden,Key to the Secret Garden,3,0,,0,,,,,,,,,,,,,{},{},{} -7560,Longing_Heart2,Longing Heart,3,0,,0,,,,,,,,,,,,,{},{},{} -7561,Ice_Heart,Glacial Heart,3,606,,10,,,,,,,,,,,,,{},{},{} -7562,Ice_Scale,Ice Scale,3,3020,,10,,,,,,,,,,,,,{},{},{} -7563,Bloody_Rune,Bloody Rune,3,2016,,10,,,,,,,,,,,,,{},{},{} -7564,Rotten_Meat,Rotten Meat,3,102,,10,,,,,,,,,,,,,{},{},{} -7565,Sticky_Poison,Sticky Poison,3,350,,10,,,,,,,,,,,,,{},{},{} -7566,Will_Of_Darkness_,Will of Red Darkness,3,1530,,10,,,,,,,,,,,,,{},{},{} -7567,Suspicious_Hat,Suspicious Hat,3,1290,,10,,,,,,,,,,,,,{},{},{} -7568,White_Mask,White Mask,3,1060,,10,,,,,,,,,,,,,{},{},{} -7569,Hammer_Of_Wind,Wind Hammer,3,0,,0,,,,,,,,,,,,,{},{},{} -7570,Temple_Lottery_Ticket,Temple Lottery Ticket,3,0,,10,,,,,,,,,,,,,{},{},{} -7571,Diary_Of_Blue,Bruspetti's Diary,3,0,,0,,,,,,,,,,,,,{},{},{} -7572,Magic_Necklace,Ashy Necklace,3,0,,0,,,,,,,,,,,,,{},{},{} -7573,Magic_Necklace_,Sparkling Necklace,3,0,,0,,,,,,,,,,,,,{},{},{} -7574,Ice_Particle,Freezing Snow Powder,3,0,,0,,,,,,,,,,,,,{},{},{} -7575,Red_Jewel_,Red Jewel,3,20,,0,,,,,,,,,,,,,{},{},{} -7576,Blue_Jewel_,Blue Jewel,3,20,,0,,,,,,,,,,,,,{},{},{} -7577,Golden_Jewel_,Yellow Jewel,3,20,,50,,,,,,,,,,,,,{},{},{} -7578,Anti_Spell_Bead,Countermagic Crystal,3,20,,10,,,,,,,,,,,,,{},{},{} -7579,Silk_Handkerchief,Silk Handkerchief of Zhi Nu,3,20,,10,,,,,,,,,,,,,{},{},{} -7580,Black_Bead,Black Marble,3,20,,10,,,,,,,,,,,,,{},{},{} -7581,Anniversary_Ticket,Celebration Document,3,20,,10,,,,,,,,,,,,,{},{},{} -7582,Gem_Of_Ruin,Jewel of Destruction,3,10,,10,,,,,,,,,,,,,{},{},{} -7583,Evil_Mind,Evil Mind,3,10,,10,,,,,,,,,,,,,{},{},{} -7584,Proof_Of_Guard1,Guard's First Proof,3,10,,10,,,,,,,,,,,,,{},{},{} -7585,Proof_Of_Guard2,Guard's Second Proof,3,10,,10,,,,,,,,,,,,,{},{},{} -7586,Proof_Of_Guard3,Guard's Third Proof,3,10,,10,,,,,,,,,,,,,{},{},{} -7587,Proof_Of_Guard4,Guard's Fourth Proof,3,10,,10,,,,,,,,,,,,,{},{},{} -7588,IPOD_Ticker,IPOD Coupon,3,10,,10,,,,,,,,,,,,,{},{},{} -7589,Moon_Cake10,Lettered Moon Snack 01,3,20,,10,,,,,,,,,,,,,{},{},{} -7590,Moon_Cake11,Lettered Moon Snack 02,3,20,,10,,,,,,,,,,,,,{},{},{} -7591,Moon_Cake12,Lettered Moon Snack 03,3,20,,10,,,,,,,,,,,,,{},{},{} -7592,Moon_Cake13,Lettered Moon Snack 04,3,20,,10,,,,,,,,,,,,,{},{},{} -7593,Moon_Cake14,Lettered Moon Snack 05,3,20,,10,,,,,,,,,,,,,{},{},{} -7594,Sonia's_Letter,Sonia's Letter,3,20,,10,,,,,,,,,,,,,{},{},{} -7595,Unique_Sword,Special Sword,3,20,,10,,,,,,,,,,,,,{},{},{} -7596,Unique_Shield,Special Shield,3,20,,10,,,,,,,,,,,,,{},{},{} -7597,Magic_Stone,Magic Stone,3,20,,10,,,,,,,,,,,,,{},{},{} -//7598,BlueCard_I,Blue I Card,3,0,,10,,,,,,,,,,,,,{},{},{} -//7599,BlueCard_D,Blue D Card,3,0,,10,,,,,,,,,,,,,{},{},{} -//7600,BlueCard_K,Blue K Card,3,0,,10,,,,,,,,,,,,,{},{},{} -//7601,BlueCard_S,Blue S Card,3,0,,10,,,,,,,,,,,,,{},{},{} -//7602,BlueCard_R,Blue R Card,3,0,,10,,,,,,,,,,,,,{},{},{} -7603,RO_Party_Ticket,RO Party Invitation Ticket,3,0,,10,,,,,,,,,,,,,{},{},{} -7604,Flour,Flour,3,0,,10,,,,,,,,,,,,,{},{},{} -7605,Chicken_Egg,Chicken Egg,3,0,,10,,,,,,,,,,,,,{},{},{} -7606,Coin,Token of the Ox,3,0,,10,,,,,,,,,,,,,{},{},{} -7607,Evil_Dragon_Head,Neck of Demon Dragon,3,10,,10,,,,,,,,,,,,,{},{},{} -7608,Premium_Ticket,Premium Ticket,3,20,,10,,,,,,,,,,,,,{},{},{} -7609,Pumpkin_Mojo,Pumpkin Mojo,3,0,,10,,,,,,,,,,,,,{},{},{} -7610,Food_Ticket,Food Exchange Ticket,3,1000,,10,,,,,,,,,,,,,{},{},{} -7611,Fox_Symbol,Symbol of Fox,3,20,,10,,,,,,,,,,,,,{},{},{} -7612,Heart_Of_Fox_Queen,Heart of Queen Fox,3,2,,10,,,,,,,,,,,,,{},{},{} -7613,Small_Rice_Dough,Small Rice Cake Dough,3,0,,0,,,,,,,,,,,,,{},{},{} -7614,Special_Packing_Paper,Wrapping Paper,3,10,,10,,,,,,,,,,,,,{},{},{} -7615,MVP_Ticket,MVP Voucher,3,10,,10,,,,,,,,,,,,,{},{},{} -7616,Mini_Boss_Ticket,Miniboss Voucher,3,10,,10,,,,,,,,,,,,,{},{},{} -7617,Monster_Ticket_,Monster Voucher,3,10,,10,,,,,,,,,,,,,{},{},{} -7618,Monster_Crystal,Monster Crystal,3,2,,100,,,,,,,,,,,,,{},{},{} -7619,Enriched_Elunium,Enriched Elunium,3,2,,10,,,,,,,,,,,,,{},{},{} -7620,Enriched_Oridecon,Enriched Oridecon,3,2,,10,,,,,,,,,,,,,{},{},{} -7621,Token_Of_Siegfried,Token Of Siegfried,3,2,,10,,,,,,,,,,,,,{},{},{} -7622,New_Style_Coupon,Hairstyle Coupon,3,0,,10,,,,,,,,,,,,,{},{},{} -7623,Name_Change_Coupon,Ticket Of Identification,3,2,,0,,,,,,,,,,,,,{},{},{} -7624,Spring_Stanza23,Spring Stanza23,3,2,,10,,,,,,,,,,,,,{},{},{} -7625,Registration_Ticket,Registration Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -7626,Bubble_Gum_Token,Bubble Gum Token,3,10,,10,,,,,,,,,,,,,{},{},{} -7627,Sage_Key,Sage Key,3,0,,0,,,,,,,,,,,,,{},{},{} -7628,Idiot_Key,Idiot Key,3,0,,0,,,,,,,,,,,,,{},{},{} -7629,Pink_Gift_Box,Pink Gift Box,3,0,,0,,,,,,,,,,,,,{},{},{} -7630,Clean_Beach_Brush,Clean Beach Brush,3,0,,0,,,,,,,,,,,,,{},{},{} -7631,Trash_Debris,Trash Debris,3,0,,0,,,,,,,,,,,,,{},{},{} -7635,Sachet,Sachet,3,100,,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,,,,,,,,,,,,,{},{},{} -7704,Broken_Thermometer,Broken Thermometer,3,2,,0,,,,,,,,,,,,,{},{},{} -7705,Note_Of_Geologist,Note of Geologist,3,2,,0,,,,,,,,,,,,,{},{},{} -7706,Spoiled_Carrot_Juice,Broken Carrot Juice,3,20,,40,,,,,,,,,,,,,{},{},{} -7707,Spoiled_Banana_Juice,Broken Banana Juice,3,20,,40,,,,,,,,,,,,,{},{},{} -7708,Spoiled_Apple_Juice,Broken Apple Juice,3,20,,40,,,,,,,,,,,,,{},{},{} -7709,Spoiled_Grape_Juice,Broken Grape Juice,3,20,,40,,,,,,,,,,,,,{},{},{} -7710,Black_Gemstone,Black Gemstone,3,600,,30,,,,,,,,,,,,,{},{},{} -7711,Update_Ticket,Event Ticket,3,0,,10,,,,,,,,,,,,,{},{},{} -7712,Nokia5500,Nokia 5500,3,0,,10,,,,,,,,,,,,,{},{},{} -7713,BlueCard_A_,Blue A(2) Card,3,0,,10,,,,,,,,,,,,,{},{},{} -7714,BlueCard_R_,Blue R(2) Card,3,0,,10,,,,,,,,,,,,,{},{},{} -7715,Handmade_Choco_Recipe,Handmade Chocolate Recipe,3,0,,0,,,,,,,,,,,,,{},{},{} -7716,Strawberry_Choco_Recipe,Chocolate Strawberry Recipe,3,0,,0,,,,,,,,,,,,,{},{},{} -7717,Choco_Tart_Recipe,Chocolate Tart Recipe,3,0,,0,,,,,,,,,,,,,{},{},{} -7718,Cacao_Bean,Cacao Bean,3,0,,10,,,,,,,,,,,,,{},{},{} -7719,BlueCard_G,Blue G Card,3,0,,10,,,,,,,,,,,,,{},{},{} -7720,Gold_Coin_US,Gold Coin,3,100,,10,,,,,,,,,,,,,{},{},{} -7721,Treasure_Box_,Treasure Box,3,100,,500,,,,,,,,,,,,,{},{},{} -7722,Debt_Note,Debt Note,3,20,,0,,,,,,,,,,,,,{},{},{} -7723,Diamond_Of_Ruin,Diamond of Ruin,3,20,,0,,,,,,,,,,,,,{},{},{} -7724,Forbidden_Secret_Art,Forbidden Secret Art,3,20,,0,,,,,,,,,,,,,{},{},{} -7725,Unlucky_Emerald,Unlucky Emerald,3,20,,0,,,,,,,,,,,,,{},{},{} -7726,Token_Of_King,Token of King,3,20,,0,,,,,,,,,,,,,{},{},{} -7727,HP_Doctor_Ticket,HP Doctor Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -7728,SP_Doctor_Ticket,SP Doctor Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -7729,Rok_Star_Badge,Rok Star Badge,3,20,,100,,,,,,,,,,,,,{},{},{} -7730,Mission_Certificate1,Mission Ticket 1,3,0,,10,,,,,,,,,,,,,{},{},{} -7731,Mission_Certificate2,Mission Ticket 2,3,0,,10,,,,,,,,,,,,,{},{},{} -7732,Mission_Certificate3,Mission Ticket 3,3,0,,10,,,,,,,,,,,,,{},{},{} -7733,Mission_Certificate4,Mission Ticket 4,3,0,,10,,,,,,,,,,,,,{},{},{} -7734,Mission_Certificate5,Mission Ticket 5,3,0,,10,,,,,,,,,,,,,{},{},{} -7735,Mission_Certificate6,Mission Ticket 6,3,0,,10,,,,,,,,,,,,,{},{},{} -7736,Mission_Certificate7,Mission Ticket 7,3,0,,10,,,,,,,,,,,,,{},{},{} -7737,Mission_Certificate8,Mission Ticket 8,3,0,,10,,,,,,,,,,,,,{},{},{} -7738,Mission_Certificate9,Mission Ticket 9,3,0,,10,,,,,,,,,,,,,{},{},{} -7739,Mission_Certificate10,Mission Ticket 10,3,0,,10,,,,,,,,,,,,,{},{},{} -7740,Mission_Certificate11,Mission Ticket 11,3,0,,10,,,,,,,,,,,,,{},{},{} -7741,Mission_Certificate12,Mission Ticket 12,3,0,,10,,,,,,,,,,,,,{},{},{} -7742,Kaong,Kaong,3,2,,10,,,,,,,,,,,,,{},{},{} -7743,Gulaman,Gulaman,3,2,,10,,,,,,,,,,,,,{},{},{} -7744,Leche_Flan,Leche Flan,3,2,,10,,,,,,,,,,,,,{},{},{} -7745,Ube_Jam,Ube Jam,3,2,,10,,,,,,,,,,,,,{},{},{} -7746,Sago,Sago,3,2,,10,,,,,,,,,,,,,{},{},{} -7747,Langka,Langka,3,2,,10,,,,,,,,,,,,,{},{},{} -7748,Sweet_Bean,Sweet Beans,3,2,,10,,,,,,,,,,,,,{},{},{} -7749,Sweet_Banana,Sweet Bananas,3,2,,10,,,,,,,,,,,,,{},{},{} -7750,Macapuno,Macapuno,3,2,,10,,,,,,,,,,,,,{},{},{} -7751,Old_White_Cloth,Old White Cloth,3,550,,10,,,,,,,,,,,,,{},{},{} -7752,Clattering_Skull,Clattering Skull,3,840,,10,,,,,,,,,,,,,{},{},{} -7753,Broken_Farming_Utensil,Broken Farming Utensil,3,330,,10,,,,,,,,,,,,,{},{},{} -7754,Broken_Crown,Broken Crown,3,3000,,10,,,,,,,,,,,,,{},{},{} -7755,Research_Note,Research Note,3,20,,0,,,,,,,,,,,,,{},{},{} -7756,Sealed_Book,Sealed Book,3,2000,,10,,,,,,,,,,,,,{},{},{} -7757,Mithril,Mithril,3,20,,100,,,,,,,,,,,,,{},{},{} -7758,Star_Crystal,Star Crystal,3,20,,100,,,,,,,,,,,,,{},{},{} -7759,Geology_Report,Geologist's Report,3,20,,0,,,,,,,,,,,,,{},{},{} -7760,Yaga_Magic_Book,Yaga's Magic Book,3,20,,10,,,,,,,,,,,,,{},{},{} -7761,Magic_Gourd_Bottle,Magic Gourd Bottle,3,20,,10,,,,,,,,,,,,,{},{},{} -7762,Yaga_Pestle,Yaga's Pestle,3,20,,10,,,,,,,,,,,,,{},{},{} -7763,Sticky_Herb,Sticky Herb,3,20,,10,,,,,,,,,,,,,{},{},{} -7764,High_Strength_Adhesive,High Strength Adhesive,3,20,,10,,,,,,,,,,,,,{},{},{} -7765,Yaga_Secret_Medicine,Baba Yaga's Secret Medicine,3,20,,10,,,,,,,,,,,,,{},{},{} -7766,Bok_Choy,Bok Choy,3,20,,10,,,,,,,,,,,,,{},{},{} -7767,Chung_E_Cake,Green Maiden's Cake,3,20,,10,,,,,,,,,,,,,{},{},{} -7768,Squid,Squid,3,0,,10,,,,,,,,,,,,,{},{},{} -7769,Egg_Yolk,Egg Yolk,3,0,,10,,,,,,,,,,,,,{},{},{} -7770,Sweet_Rice,Sweet Rice,3,0,,10,,,,,,,,,,,,,{},{},{} -7771,Lotus_Leaf,Lotus Leaf,3,0,,10,,,,,,,,,,,,,{},{},{} -7772,String,String,3,0,,10,,,,,,,,,,,,,{},{},{} -7773,War_Badge,Wat Badge,3,0,,0,,,,,,,,,,,,,{},{},{} -7774,Chung_E_Ticket,Green Maiden Ticket,3,0,,10,,,,,,,,,,,,,{},{},{} -7775,Spring_Rabbit_Ticket,Spring Rabbit Ticket,3,0,,10,,,,,,,,,,,,,{},{},{} -7776,Max_Weight_Up_Scroll,Gym Pass,3,0,,10,,,,,,,,,,,,,{},{},{} -7777,Gold_Box,Sealed Golden Box,3,0,,10,,,,,,,,,,,,,{},{},{} -7778,Silver_Box,Sealed Silver Box,3,0,,10,,,,,,,,,,,,,{},{},{} -7779,Gold_Key_TW,Golden Key,3,0,,10,,,,,,,,,,,,,{},{},{} -7780,Silver_Key,Silver Key,3,0,,10,,,,,,,,,,,,,{},{},{} -7781,Heart_Box,Engrave Treasure Box,3,0,,10,,,,,,,,,,,,,{},{},{} -7782,Gold_Key77,Episode 13.1 Poporing Key,3,0,,10,,,,,,,,,,,,,{},{},{} -7783,Silver_Key77,Episode 13.2 Poring Key,3,0,,10,,,,,,,,,,,,,{},{},{} -7784,Fawner_Coupon1,Free Coupon 1,3,0,,10,,,,,,,,,,,,,{},{},{} -7785,Fawner_Coupon2,Free Coupon 2,3,0,,10,,,,,,,,,,,,,{},{},{} -7786,Fawner_Coupon3,Free Coupon 3,3,0,,10,,,,,,,,,,,,,{},{},{} -7787,Fawner_Coupon4,Free Coupon 4,3,0,,10,,,,,,,,,,,,,{},{},{} -7788,Fawner_Coupon5,Free Coupon 5,3,0,,10,,,,,,,,,,,,,{},{},{} -7789,Fawner_Coupon6,Free Coupon 6,3,0,,10,,,,,,,,,,,,,{},{},{} -7790,Fawner_Coupon7,Free Coupon 7,3,0,,10,,,,,,,,,,,,,{},{},{} -7791,Fawner_Coupon8,Free Coupon 8,3,0,,10,,,,,,,,,,,,,{},{},{} -7792,Guyak,Guyak,3,0,,10,,,,,,,,,,,,,{},{},{} -7793,Golden_Apple,Golden Apple,3,0,,0,,,,,,,,,,,,,{},{},{} -7794,Fate_Of_Crow,The Crow of Destiny,3,0,,0,,,,,,,,,,,,,{},{},{} -7795,Mami_Photo_Album,Mammi's Photo Album,3,2,,10,,,,,,,,,,,,,{},{},{} -7796,Author_Autograph,Author's Autograph,3,2,,10,,,,,,,,,,,,,{},{},{} -7797,Author_Memo,Author's Memo,3,2,,10,,,,,,,,,,,,,{},{},{} -7798,Dark_Debris,Fragment of Darkness,3,500,,10,,,,,,,,,,,,,{},{},{} -7799,Dark_Crystal,Crystal of Darkness,3,10,,10,,,,,,,,,,,,,{},{},{} -7800,Golden_Apple_,Golden Charm Apple,3,0,,0,,,,,,,,,,,,,{},{},{} -7801,Girl_Fan_Letter,Girl's Letter,3,0,,0,,,,,,,,,,,,,{},{},{} -7802,Autograph_Book,Signature Notebook,3,0,,0,,,,,,,,,,,,,{},{},{} -7803,Battle_Manual_TW,Beginner's Field Manual,3,0,,10,,,,,,,,,,,,,{},{},{} -//7804,????_???,????_???,3,,,10,,,,,,,,,,,,,{},{},{} -7805,Brown_Ring,Brown Jenoss's Family Ring,3,0,,10,,,,,,,,,,,,,{},{},{} -7806,Black_Anvil,God Anvil,3,0,,10,,,,,,,,,,,,,{},{},{} -7807,Ore,God Mineral,3,0,,10,,,,,,,,,,,,,{},{},{} -7808,Gold_Hammer,God Hammer,3,0,,10,,,,,,,,,,,,,{},{},{} -7809,Gold_Furnace,God Furnace,3,0,,10,,,,,,,,,,,,,{},{},{} -7810,Yellow_Cat_Eyed_Stone,Symbol of Richness,3,0,,10,,,,,,,,,,,,,{},{},{} -7811,Gold_Anvil,Anvil,3,0,,10,,,,,,,,,,,,,{},{},{} -7812,Red_Cat_Eyed_Stone,Symbol of Bravery,3,0,,10,,,,,,,,,,,,,{},{},{} -7813,Th_Red_Ring,Red Jenoss's Family Ring,3,0,,10,,,,,,,,,,,,,{},{},{} -7814,Green_Ring,Green Jenoss's Family Ring,3,0,,10,,,,,,,,,,,,,{},{},{} -7815,Blue_Ring,Blue Jenoss's Family Ring,3,0,,10,,,,,,,,,,,,,{},{},{} -7816,Blue_Cat_Eyed_Stone,Symbol of Faith,3,0,,10,,,,,,,,,,,,,{},{},{} -7817,White_Cat_Eyed_Stone,Symbol of Peace,3,0,,10,,,,,,,,,,,,,{},{},{} -7818,RJC_Golden_Necklace,Jessur's Necklace,3,0,,10,,,,,,,,,,,,,{},{},{} -7819,Nokia5300,Nokia 5300,3,0,,10,,,,,,,,,,,,,{},{},{} -7820,Morroc_Skin,Piece of Morocc Skin,3,0,,0,,,,,,,,,,,,,{},{},{} -7821,Green_Apple,Green Apple,3,20,,10,,,,,,,,,,,,,{},{},{} -7822,Whole_Barbecue,Whole Barbecue,3,20,,10,,,,,,,,,,,,,{},{},{} -7823,Meat_Veg_Skewer,Meat Veg Skewer,3,20,,10,,,,,,,,,,,,,{},{},{} -7824,Spirit_Liquor,Spirit Liquor,3,20,,10,,,,,,,,,,,,,{},{},{} -7825,Heroic_Stone,Heroic Stone,3,20,,10,,,,,,,,,,,,,{},{},{} -7826,Continental_Guard_Paper,Continental Guard Paper,3,0,,0,,,,,,,,,,,,,{},{},{} -7827,Mineral_Report,Mineral Evals,3,0,,0,,,,,,,,,,,,,{},{},{} -7828,BF_Badge1,Bravery Badge,3,0,,0,,,,,,,,,,,,,{},{},{} -7829,BF_Badge2,Valor Badge,3,0,,0,,,,,,,,,,,,,{},{},{} -7830,Goddess_Tear,Goddess Tear,3,1,,500,,,,,,,,,,,,,{},{},{} -7831,Valkyrie_Token,Valkyrie's Token,3,1,,500,,,,,,,,,,,,,{},{},{} -7832,Brynhild_Armor_Piece,Brynhild Armor Piece,3,1,,500,,,,,,,,,,,,,{},{},{} -7833,Hero_Remains,Hero's Remains,3,1,,500,,,,,,,,,,,,,{},{},{} -7834,Andvari_Ring,Andvari's Ring,3,1,,500,,,,,,,,,,,,,{},{},{} -7835,Dusk_Glow,Dusk Glow,3,1,,500,,,,,,,,,,,,,{},{},{} -7836,Dawn_Essence,Dawn Essence,3,1,,500,,,,,,,,,,,,,{},{},{} -7837,Cold_Moonlight,Cold Moonlight,3,1,,500,,,,,,,,,,,,,{},{},{} -7838,Hazy_Starlight,Hazy Starlight,3,1,,500,,,,,,,,,,,,,{},{},{} -7839,Crystal_Key,Crystal Key,3,0,,0,,,,,,,,,,,,,{},{},{} -7840,Valkyrie_Gift,Valkyrie's Gift,3,0,,0,,,,,,,,,,,,,{},{},{} -7841,Spotted_Paper,Stained Piece Of Paper,3,0,,0,,,,,,,,,,,,,{},{},{} -7842,Torn_Paper,Torn Piece Of Paper,3,0,,0,,,,,,,,,,,,,{},{},{} -7843,Old_Paper,Old Piece Of Paper,3,0,,0,,,,,,,,,,,,,{},{},{} -7844,Burnt_Paper,Burnt Pieces Of Paper,3,0,,0,,,,,,,,,,,,,{},{},{} -7845,Copy_Of_Spotted_Paper,Copy Of Spotted Paper,3,0,,10,,,,,,,,,,,,,{},{},{} -7846,Copy_Of_Torn_Paper,Copy Of Torn Paper,3,0,,10,,,,,,,,,,,,,{},{},{} -7847,Copy_Of_Old_Paper,Copy Of Old Paper,3,0,,10,,,,,,,,,,,,,{},{},{} -7848,Copy_Of_Burnt_Paper,Copy Of Burnt Paper,3,0,,10,,,,,,,,,,,,,{},{},{} -7849,Soul_Crystal,Soul Crystal,3,0,,10,,,,,,,,,,,,,{},{},{} -7850,Wooden_Block_,Wooden Block,3,20,,100,,,,,,,,,,,,,{},{},{} -7851,Pass_F1,Wii Raffle Ticket,3,20,,10,,,,,,,,,,,,,{},{},{} -7852,Pass_F2,Divx Player Raffle Ticket,3,20,,10,,,,,,,,,,,,,{},{},{} -7853,Pass_F3,iPod nano Raffle Ticket,3,20,,10,,,,,,,,,,,,,{},{},{} -7854,Pass_CF,Comodo Festival Ticket,3,20,,10,,,,,,,,,,,,,{},{},{} -7855,Heart,Heart,3,20,,10,,,,,,,,,,,,,{},{},{} -7856,Girl_Bunch_Of_Flower_,Girl's Bouquet,3,20,,50,,,,,,,,,,,,,{},{},{} -7857,Handmade_Kitty_Doll,Hand-made Kitty Doll,3,20,,30,,,,,,,,,,,,,{},{},{} -7858,Dragonball_Yellow_,Dragonball Yellow,3,20,,10,,,,,,,,,,,,,{},{},{} -7859,Game_Ticket,Game Ticket,3,20,,100,,,,,,,,,,,,,{},{},{} -7860,Peeps,Peeps,3,0,,50,,,,,,,,,,,,,{},{},{} -7861,Jelly_Bean,Jelly Bean,3,0,,50,,,,,,,,,,,,,{},{},{} -7862,Marshmallow,Marshmallow,3,0,,50,,,,,,,,,,,,,{},{},{} -7863,GOLD_ID4,Special Gold,3,20,,200,,,,,,,,,,,,,{},{},{} -7864,Love_Flower,Love Flower,3,20,,10,,,,,,,,,,,,,{},{},{} -7865,Gold_Pouch,Gold Pouch,3,10,,0,,,,,,,,,,,,,{},{},{} -7866,Certificate,Certificate,3,10,,0,,,,,,,,,,,,,{},{},{} -7867,SesamePouch,Sesame Bag,3,10,,100,,,,,,,,,,,,,{},{},{} -7868,Water,Fresh Water,3,10,,100,,,,,,,,,,,,,{},{},{} -7869,RicePouch,Rice Pouch,3,10,,100,,,,,,,,,,,,,{},{},{} -7870,Corn,Corn,3,5,,20,,,,,,,,,,,,,{},{},{} -7871,BeanPouch,Bean Bag,3,10,,20,,,,,,,,,,,,,{},{},{} -7872,Grass,Herb,3,10,,30,,,,,,,,,,,,,{},{},{} -7873,MVP_Monster_Scroll,MVP Monster Scroll,3,10,,10,,,,,,,,,,,,,{},{},{} -7874,Monster_Scroll,Create Monster Scroll,3,10,,10,,,,,,,,,,,,,{},{},{} -7875,Pirate_Box,Pirate Treasure,3,300000,,0,,,,,,,,,,,,,{},{},{} -7876,Gold_Key,Golden Key,3,0,,50,,,,,,,,,,,,,{},{},{} -7877,Red_Ring,Red Ring,3,0,,100,,,,,,,,,,,,,{},{},{} -7878,Lusalka_Hair,Lusalka's Hair,3,0,,10,,,,,,,,,,,,,{},{},{} -7879,Golden_Thread,Golden Thread,3,0,,10,,,,,,,,,,,,,{},{},{} -7880,Babayaga_Silver_Spoon,Baba Yaga's Silver Spoon,3,0,,10,,,,,,,,,,,,,{},{},{} -7881,Book_Of_Magic,Mystery Magic Book,3,0,,50,,,,,,,,,,,,,{},{},{} -7882,Pointed_Branch,Sharp Branch,3,0,,0,,,,,,,,,,,,,{},{},{} -7883,Pointed_Wooden_Flute,Wooden Flute,3,0,,0,,,,,,,,,,,,,{},{},{} -7884,Jade_Plate,Jade Plate,3,0,,0,,,,,,,,,,,,,{},{},{} -7885,Sacred_Arrow,Sacred Arrow,3,0,,0,,,,,,,,,,,,,{},{},{} -7886,Bean_Paste,Bean Paste,3,0,,10,,,,,,,,,,,,,{},{},{} -7887,Dried_Fruit_Box,Dried Fruit Box,3,0,,30,,,,,,,,,,,,,{},{},{} -7888,Bag_Of_Nuts,Bag of Nuts,3,0,,30,,,,,,,,,,,,,{},{},{} -7889,Chicken_Feed,Chicken Feed,3,0,,20,,,,,,,,,,,,,{},{},{} -7891,Mug,Mug,3,2,,100,,,,,,,,,,,,,{},{},{} -7892,Charcoal,Charcoal,3,10,,10,,,,,,,,,,,,,{},{},{} -7893,Sulfur,Sulphur,3,10,,10,,,,,,,,,,,,,{},{},{} -7894,Nitrate,Nitrogen Acid,3,10,,10,,,,,,,,,,,,,{},{},{} -7895,TRO_Memory_Book01,Rama5 Book,3,0,,0,,,,,,,,,,,,,{},{},{} -7896,TRO_Memory_Book02,Loykrathong Book,3,0,,0,,,,,,,,,,,,,{},{},{} -7897,TRO_Memory_Book03,Constitution Book,3,0,,0,,,,,,,,,,,,,{},{},{} -7898,VVS_Balmung,VV Strong Balmung,3,0,,0,,,,,,,,,,,,,{},{},{} -7899,Spiritualist_Dagger,Dagger Of Psychic,3,0,,0,,,,,,,,,,,,,{},{},{} -7900,Jenoss_Ring1,Jonathan Family Ring,3,0,,0,,,,,,,,,,,,,{},{},{} -7901,Jenoss_Ring2,Jillberriel Family Ring,3,0,,0,,,,,,,,,,,,,{},{},{} -7902,Jenoss_Ring3,Jessur Family Ring,3,0,,0,,,,,,,,,,,,,{},{},{} -7903,Jenoss_Ring4,Jenoss Family Ring,3,0,,0,,,,,,,,,,,,,{},{},{} -7904,Piano_Key,Piano Key,3,0,,0,,,,,,,,,,,,,{},{},{} -7905,Rok_Star_Badge_,Rok Star Badge,3,20,,100,,,,,,,,,,,,,{},{},{} -7906,Poppy_Wreath,Poppy Wreath,3,0,,0,,,,,,,,,,,,,{},{},{} -7907,Bobbin_Of_Goddess,Bobbin Of Goddess,3,20,,10,,,,,,,,,,,,,{},{},{} -7908,Louis_Hair_Coupon,Louise's Beauty Coupon,3,0,,10,,,,,,,,,,,,,{},{},{} -7909,Stolen_Cookie,Stolen Cookie,3,0,,10,,,,,,,,,,,,,{},{},{} -7910,Stolen_Candy,Stolen Candy,3,0,,10,,,,,,,,,,,,,{},{},{} -7911,Yulia_Hat,Yulia's Hat,3,0,,10,,,,,,,,,,,,,{},{},{} -7912,Portable_Snowman,Portable Snowman Machine,3,0,,0,,,,,,,,,,,,,{},{},{} -7913,Test_Certificate,Battle Test Certificate,3,0,,0,,,,,,,,,,,,,{},{},{} -7914,Ancient_Document_TW,Ancient Language Document,3,10,,0,,,,,,,,,,,,,{},{},{} -7915,Copper_Coin_,Bronze Coin,3,0,,0,,,,,,,,,,,,,{},{},{} -7916,Silver_Coin_,Silver Coin,3,0,,0,,,,,,,,,,,,,{},{},{} -7917,Magic_Potion,Magic Potion,3,0,,0,,,,,,,,,,,,,{},{},{} -7918,Particle_Of_Memory,Fragment Of Memory,3,2000,,100,,,,,,,,,,,,,{},{},{} -7919,Festival_Ticket,Festival Ticket,3,10,,10,,,,,,,,,,,,,{},{},{} -7920,Hero's_Arsenal,He's Arsenal,3,0,,0,,,,,,,,,,,,,{},{},{} -7921,Essence_Of_Dragon,Essence Of Dragon,3,1000,,10,,,,,,,,,,,,,{},{},{} -7922,RWC_Ticket,RWC Voucher Items,3,2,,10,,,,,,,,,,,,,{},{},{} -7923,KRATHONG_,Krathong,3,0,,0,,,,,,,,,,,,,{},{},{} -7928,Brazilian_Flag_,Brazil National Flag,3,10,,10,,,,,,,,,,,,,{},{},{} -7929,Golden_Coin_,Gold Coin,3,10,,10,,,,,,,,,,,,,{},{},{} -7930,Cowking's_Nose_Ring,Devil's Cattle Ring,3,0,,1000,,,,,,,,,,,,,{},{},{} -7931,Poison_Kit,Poison Kit,3,1,,10,,,,,,,,,,,,,{},{},{} -7932,Poison_Herb_Nerium,Poison Herb Nerium,3,1,,10,,,,,,,,,,,,,{},{},{} -7933,Poison_Herb_Rantana,Poison Herb Rantana,3,1,,10,,,,,,,,,,,,,{},{},{} -7934,Poison_Herb_Makulata,Poison Herb Makulata,3,1,,10,,,,,,,,,,,,,{},{},{} -7935,Poison_Herb_Seratum,Poison Herb Seratum,3,1,,10,,,,,,,,,,,,,{},{},{} -7936,Poison_Herb_Scopolia,Poison Herb Scoporia,3,1,,10,,,,,,,,,,,,,{},{},{} -7937,Poison_Herb_Amoena,Poison Herb Amoena,3,1,,10,,,,,,,,,,,,,{},{},{} -7938,Light_Granule,Light Granule,3,1000,,10,,,,,,,,,,,,,{},{},{} -7939,Elder_Branch,Elder Branch,3,1000,,10,,,,,,,,,,,,,{},{},{} -7940,Special_Alloy_Trap,Special Alloy Trap,3,200,,2,,,,,,,,,,,,,{},{},{} -7941,Halloween_Ticket,Halloween Ticket,3,10,,0,,,,,,,,,,,,,{},{},{} -7942,Letter_From_Chico,Chico Cesar Letter,3,0,,0,,,,,,,,,,,,,{},{},{} -7943,Caskinya,Caskinya,3,0,,0,,,,,,,,,,,,,{},{},{} -7944,Sealed_Box,Sealed Box,3,10,,10,,,,,,,,,,,,,{},{},{} -7945,Almighty_Charm,Universal Amulet,3,0,,10,,,,,,,,,,,,,{},{},{} -7946,Valentine_Gold_Ring,Gold Ring Of Valentine,3,10,,0,,,,,,,,,,,,,{},{},{} -7947,Valentine_Silver_Ring,Silver Ring Of Valentine,3,10,,0,,,,,,,,,,,,,{},{},{} -7948,Box,Box,3,10,,10,,,,,,,,,,,,,{},{},{} -7949,Woven_Wool,Woven Wool,3,10,,0,,,,,,,,,,,,,{},{},{} -7950,Ayothaya_Ticket,Ayothaya Fest Ticket,3,10,,0,,,,,,,,,,,,,{},{},{} -7951,Gold_Tulip,Golden Tulip Flower,3,10,,0,,,,,,,,,,,,,{},{},{} -7952,Gift_From_Romiros,Gift Of Lomi Ross,3,0,,0,,,,,,,,,,,,,{},{},{} -7953,Gift_From_Juliedge,Gift Of Juliet,3,0,,0,,,,,,,,,,,,,{},{},{} -7954,Festival_Ticket_,Summer Festival Ticket,3,10,,10,,,,,,,,,,,,,{},{},{} -7955,Lost_Card1,Lost Card1,3,10,,0,,,,,,,,,,,,,{},{},{} -7956,Lost_Card2,Lost Card2,3,10,,0,,,,,,,,,,,,,{},{},{} -7957,Lost_Card3,Lost Card3,3,10,,0,,,,,,,,,,,,,{},{},{} -7958,Lost_Card4,Lost Card4,3,10,,0,,,,,,,,,,,,,{},{},{} -7959,Ancient_Gold_Coin,Ancient Gold Coin,3,0,,0,,,,,,,,,,,,,{},{},{} -7960,Ancient_Silver_Coin,Ancient Silver Coin,3,0,,0,,,,,,,,,,,,,{},{},{} -7961,Weapon_Exchange,Weapon Exchange,3,0,,0,,,,,,,,,,,,,{},{},{} -7962,Treasure_Map1,Treasure Map1,3,10,,0,,,,,,,,,,,,,{},{},{} -7963,Treasure_Map2,Treasure Map2,3,10,,0,,,,,,,,,,,,,{},{},{} -7964,Treasure_Map3,Treasure Map3,3,10,,0,,,,,,,,,,,,,{},{},{} -7965,Treasure_Map4,Treasure Map4,3,10,,0,,,,,,,,,,,,,{},{},{} -7966,Weird_Parchment1,Weird Parchment1,3,10,,0,,,,,,,,,,,,,{},{},{} -7967,Weird_Parchment2,Weird Parchment2,3,10,,0,,,,,,,,,,,,,{},{},{} -7968,Weird_Parchment3,Weird Parchment3,3,10,,0,,,,,,,,,,,,,{},{},{} -7969,Weird_Parchment4,Weird Parchment4,3,10,,0,,,,,,,,,,,,,{},{},{} -7970,Unwritten_Letter1,Unwritten Letter1,3,0,,0,,,,,,,,,,,,,{},{},{} -7971,Unwritten_Letter2,Unwritten Letter2,3,0,,0,,,,,,,,,,,,,{},{},{} -7972,Oath_Day_Letter,Oath Day Letter,3,0,,0,,,,,,,,,,,,,{},{},{} -7973,Immortality_Egg,Immortality Egg,3,20,,0,,,,,,,,,,,,,{},{},{} -7974,Illusion_Piece,Illusion Piece,3,20,,0,,,,,,,,,,,,,{},{},{} -7975,Cupid_Choco,Cupid Choco,3,0,,0,,,,,,,,,,,,,{},{},{} -7976,Gf_Magic_Coin,Gf Magic Coin,3,20,,0,,,,,,,,,,,,,{},{},{} -7977,Hunting_Medal_Badge,Hunting Medal Badge,3,0,,0,,,,,,,,,,,,,{},{},{} -7978,Spring_Stanza1,Spring Stanza1,3,2,,10,,,,,,,,,,,,,{},{},{} -7979,Spring_Stanza2,Spring Stanza2,3,2,,10,,,,,,,,,,,,,{},{},{} -7980,Spring_Stanza3,Spring Stanza3,3,2,,10,,,,,,,,,,,,,{},{},{} -7981,Spring_Stanza4,Spring Stanza4,3,2,,10,,,,,,,,,,,,,{},{},{} -7982,Spring_Stanza5,Spring Stanza5,3,2,,10,,,,,,,,,,,,,{},{},{} -7983,Spring_Stanza6,Spring Stanza6,3,2,,10,,,,,,,,,,,,,{},{},{} -7984,Spring_Stanza7,Spring Stanza7,3,2,,10,,,,,,,,,,,,,{},{},{} -7985,Spring_Stanza8,Spring Stanza8,3,2,,10,,,,,,,,,,,,,{},{},{} -7986,Spring_Stanza9,Spring Stanza9,3,2,,10,,,,,,,,,,,,,{},{},{} -7987,Spring_Stanza10,Spring Stanza10,3,2,,10,,,,,,,,,,,,,{},{},{} -7988,Spring_Stanza11,Spring Stanza11,3,2,,10,,,,,,,,,,,,,{},{},{} -7989,Spring_Stanza12,Spring Stanza12,3,2,,10,,,,,,,,,,,,,{},{},{} -7990,Spring_Stanza13,Spring Stanza13,3,2,,10,,,,,,,,,,,,,{},{},{} -7991,Spring_Stanza14,Spring Stanza14,3,2,,10,,,,,,,,,,,,,{},{},{} -7992,Spring_Stanza15,Spring Stanza15,3,2,,10,,,,,,,,,,,,,{},{},{} -7993,Spring_Stanza16,Spring Stanza16,3,2,,10,,,,,,,,,,,,,{},{},{} -7994,Spring_Stanza17,Spring Stanza17,3,2,,10,,,,,,,,,,,,,{},{},{} -7995,Spring_Stanza18,Spring Stanza18,3,2,,10,,,,,,,,,,,,,{},{},{} -7996,Spring_Stanza19,Spring Stanza19,3,2,,10,,,,,,,,,,,,,{},{},{} -7997,Spring_Stanza20,Spring Stanza20,3,2,,10,,,,,,,,,,,,,{},{},{} -7998,Spring_Stanza21,Spring Stanza21,3,2,,10,,,,,,,,,,,,,{},{},{} -7999,Spring_Stanza22,Spring Stanza22,3,2,,10,,,,,,,,,,,,,{},{},{} -// Pet Eggs -//=================================================================== -9001,Poring_Egg,Poring Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9002,Drops_Egg,Drops Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9003,Poporing_Egg,Poporing Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9004,Lunatic_Egg,Lunatic Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9005,Picky_Egg,Picky Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9006,Chonchon_Egg,Chonchon Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9007,Steel_Chonchon_Egg,Steel Chonchon Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9008,Hunter_Fly_Egg,Hunter Fly Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9009,Savage_Bebe_Egg,Savage Babe Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9010,Baby_Desert_Wolf_Egg,Baby Desert Wolf Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9011,Rocker_Egg,Rocker Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9012,Spore_Egg,Spore Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9013,Poison_Spore_Egg,Poison Spore Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9014,PecoPeco_Egg,Peco Peco Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9015,Smokie_Egg,Smokie Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9016,Yoyo_Egg,Yoyo Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9017,Orc_Warrior_Egg,Orc Warrior Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9018,Munak_Egg,Munak Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9019,Dokkaebi_Egg,Dokebi Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9020,Sohee_Egg,Sohee Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9021,Isis_Egg,Isis Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9022,Green_Petite_Egg,Green Petite Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9023,Deviruchi_Egg,Deviruchi Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9024,Bapho_Jr._Egg,Bapho Jr. Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9025,Bongun_Egg,Bongun Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9026,Zherlthsh_Egg,Zealotus Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9027,Alice_Egg,Alice Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9028,Rice_Cake_Egg,Hard Rice Cake,7,20,,0,,,,,,,,,,,,,{},{},{} -9029,Santa_Goblin_Egg,Christmas Goblin's Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9030,Chung_E_Egg,Green Maiden Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9031,Spring_Rabbit_Egg,Spring Rabbit Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9032,Knife_Goblin_Egg,Knife Goblin Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9033,Flail_Goblin_Egg,Flail Goblin Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9034,Hammer_Goblin_Egg,Hammer Goblin Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9035,Red_Deleter_Egg,Red Deleter Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9036,Diabolic_Egg,Diabolic Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9037,Wanderer_Egg,Wanderer Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9038,New_Year_Doll_Egg,New Year Doll Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9039,Bacsojin_Egg,Bacsojin Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9040,Civil_Servant_Egg,Civil Servant Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9041,Leaf_Cat_Egg,Leaf Cat Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9042,Loli_Ruri_Egg,Loli Ruri Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9043,Marionette_Egg,Marionette Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9044,Shinobi_Egg,Shinobi Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9045,Whisper_Egg,Whisper Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9046,Goblin_Leader_Egg,Goblin Leader Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9047,Wicked_Nymph_Egg,Wicked Nymph Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9048,Miyabi_Ningyo_Egg,Miyabi Ningyo Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9049,Dullahan_Egg,Dullahan Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9050,Medusa_Egg,Medusa Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9051,Stone_Shooter_Egg,Stone Shooter Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9052,Incubus_Egg,Incubus Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9053,Golem_Egg,Golem Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9054,Nightmare_Terror_Egg,Nightmare Terror Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9055,Succubus_Egg,Succubus Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9056,Imp_Egg,Imp Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -// Pet Accessories -//=================================================================== -10001,Skull_Helm,Skull Helm,8,20,,0,,,,,,,,,,,,,{},{},{} -10002,Monster_Oxygen_Mask,Monster Oxygen Mask,8,20,,0,,,,,,,,,,,,,{},{},{} -10003,Transparent_Headgear,Transparent Head Protector,8,20,,0,,,,,,,,,,,,,{},{},{} -10004,Pacifier,Pacifier,8,20,,0,,,,,,,,,,,,,{},{},{} -10005,Wig,Wig,8,20,,0,,,,,,,,,,,,,{},{},{} -10006,Queen's_Hair_Ornament,Queen's Hair Ornament,8,20,,0,,,,,,,,,,,,,{},{},{} -10007,Silk_Ribbon,Silk Ribbon,8,20,,0,,,,,,,,,,,,,{},{},{} -10008,Punisher,Punisher,8,20,,0,,,,,,,,,,,,,{},{},{} -10009,Wild_Flower,Wild Flower,8,20,,0,,,,,,,,,,,,,{},{},{} -10010,Battered_Pot,Battered Pot,8,20,,0,,,,,,,,,,,,,{},{},{} -10011,Stellar_Hairpin,Stellar Hairpin,8,20,,0,,,,,,,,,,,,,{},{},{} -10012,Tiny_Egg_Shell,Tiny Egg Shell,8,20,,0,,,,,,,,,,,,,{},{},{} -10013,Backpack,Backpack,8,1500,,0,,,,,,,,,,,,,{},{},{} -10014,Rocker_Glasses,Rocker Glasses,8,2000,,0,,,,,,,,,,,,,{},{},{} -10015,Green_Lace,Green Lace,8,20,,0,,,,,,,,,,,,,{},{},{} -10016,Golden_Bell,Golden Bell,8,20,,0,,,,,,,,,,,,,{},{},{} -10017,Bark_Shorts,Bark Shorts,8,20,,0,,,,,,,,,,,,,{},{},{} -10018,Monkey_Circlet,Monkey Circlet,8,20,,0,,,,,,,,,,,,,{},{},{} -10019,Red_Muffler,Red Scarf,8,20,,0,,,,,,,,,,,,,{},{},{} -10020,Sword_Of_Grave_Keeper,Grave Keeper's Sword,8,20,,0,,,,,,,,,,,,,{},{},{} -10021,Round_Hair_Ornament,Circular Headgear,8,20,,0,,,,,,,,,,,,,{},{},{} -10022,Golden_Earing,Gold Earring,8,20,,0,,,,,,,,,,,,,{},{},{} -10023,Green_Lucky_Bag,Green Jewel Bag,8,20,,0,,,,,,,,,,,,,{},{},{} -10024,Fashionable_Glasses,Fashion Glasses,8,20,,0,,,,,,,,,,,,,{},{},{} -10025,Star_Hairband,Hairband Of Stars,8,20,,0,,,,,,,,,,,,,{},{},{} -10026,Wine_On_Sleeve,Tassel for Durumagi,8,20,,0,,,,,,,,,,,,,{},{},{} -10027,Spirit_Chain_,Pet Soul Ring,8,20,,0,,,,,,,,,,,,,{},{},{} -10028,Nice_Badge,Beautiful Badges,8,20,,0,,,,,,,,,,,,,{},{},{} -10029,Jade_Trinket,Jade Trinket,8,20,,0,,,,,,,,,,,,,{},{},{} -10030,Summer_Fan,Summer Fan,8,20,,0,,,,,,,,,,,,,{},{},{} -10031,Death_Coil,Ring Of Death,8,20,,0,,,,,,,,,,,,,{},{},{} -10032,Queen's_Coronet,Queen's Coronet,8,20,,0,,,,,,,,,,,,,{},{},{} -10033,Apro_Hair,Afro,8,20,,0,,,,,,,,,,,,,{},{},{} -10034,Ball_Mask,Masked Ball,8,20,,0,,,,,,,,,,,,,{},{},{} -10035,Windup_Spring,Spring,8,20,,0,,,,,,,,,,,,,{},{},{} -10036,Hell_Horn,Horn Of Hell,8,20,,0,,,,,,,,,,,,,{},{},{} -10037,Black_Butterfly_Mask,Black Butterfly Mask,8,20,,0,,,,,,,,,,,,,{},{},{} -10038,Horn_Protector,Horn Barrier,8,20,,0,,,,,,,,,,,,,{},{},{} -// Misc "Etc" Books -//=================================================================== -11000,Prontera_Book_01,History book of Prontera,3,8000,,10,,,,,,,,,,,,,{},{},{} -11001,Adventure_Story01,Adventure Story Vol.1,3,8000,,10,,,,,,,,,,,,,{},{},{} -11002,Great_Chef_Orleans01,Chef King Orleans Vol.1,3,8000,,10,,,,,,,,,,,,,{},{},{} -11003,Legend_Of_Kafra01,Kafra Legend Vol.1,3,8000,,10,,,,,,,,,,,,,{},{},{} -11004,Mercenary_Rebellion,Old Book,3,10000,,10,,,,,,,,,,,,,{},{},{} -11005,Tyrant_Schmidt,Rune Royal Family Book,3,10000,,10,,,,,,,,,,,,,{},{},{} -11006,Blood_Flower01,Blood Flower Vol.1,3,8000,,10,,,,,,,,,,,,,{},{},{} -11007,Blood_Flower02,Blood Flower Vol.2,3,8000,,10,,,,,,,,,,,,,{},{},{} -11008,Barmund,Biographical Dictionary Copy Edition,3,10000,,10,,,,,,,,,,,,,{},{},{} -11009,Adventure_Story02,Adventure Story Vol.2,3,8000,,10,,,,,,,,,,,,,{},{},{} -11010,Reward_List_Book,Battlegrounds Catalog,3,0,,10,,,,,,,,,,,,,{},{},{} -11011,Barmund_Note,Varmunt's Note,3,0,,0,,,,,,,,,,,,,{},{},{} -11012,Expedition_Report,Expedition Report,3,0,,0,,,,,,,,,,,,,{},{},{} -11013,Expedition_Report_Vol1,Expedition Report Vol1,3,0,,0,,,,,,,,,,,,,{},{},{} -11014,Expedition_Report_Vol2,Expedition Report Vol2,3,0,,0,,,,,,,,,,,,,{},{},{} -11015,Expedition_Report_Vol3,Expedition Report Vol3,3,0,,0,,,,,,,,,,,,,{},{},{} -11016,Expedition_Report_Vol4,Expedition Report Vol4,3,0,,0,,,,,,,,,,,,,{},{},{} -11017,Reward_List_Book2,KVM Reward Items Catalog,3,0,,10,,,,,,,,,,,,,{},{},{} -11018,Splendide_Selling_Item,Splendide Selling Item,3,0,,10,,,,,,,,,,,,,{},{},{} -11019,Manuk_Selling_Item,Manuk Selling Item,3,0,,10,,,,,,,,,,,,,{},{},{} -11020,Japan_Book1,Japan Book1,3,20,,10,,,,,,,,,,,,,{},{},{} -11021,Japan_Book2,Japan Book2,3,20,,10,,,,,,,,,,,,,{},{},{} -11022,Mix_Cook_Book,Mix Cook Book,3,10,,10,,,,,,,,,,,,,{},{},{} -11023,Increase_Stamina_Study,Increase Stamina Study,3,10,,50,,,,,,,,,,,,,{},{},{} -11024,Vital_Drink_CB,Vital Drink CB,3,10,,50,,,,,,,,,,,,,{},{},{} -11025,Swordman_Book_Basic,Swordman Book Basic,3,20,,10,,,,,,,,,,,,,{},{},{} -11026,Swordman_Book_Practice,Swordman Book Practice,3,20,,10,,,,,,,,,,,,,{},{},{} -11027,Swrodman_Book_Misc,Swrodman Book Misc,3,20,,10,,,,,,,,,,,,,{},{},{} -11028,Thief_Book_Basic,Thief Book Basic,3,20,,10,,,,,,,,,,,,,{},{},{} -11029,Thief_Book_Practice,Thief Book Practice,3,20,,10,,,,,,,,,,,,,{},{},{} -11030,Thief_Book_Misc,Thief Book Misc,3,20,,10,,,,,,,,,,,,,{},{},{} -11031,Archer_Book_Basic,Archer Book Basic,3,20,,10,,,,,,,,,,,,,{},{},{} -11032,Archer_Book_Practice,Archer Book Practice,3,20,,10,,,,,,,,,,,,,{},{},{} -11033,Archer_Book_Misc,Archer Book Misc,3,20,,10,,,,,,,,,,,,,{},{},{} -11034,Acol_Book_Basic,Acol Book Basic,3,20,,10,,,,,,,,,,,,,{},{},{} -11035,Acol_Book_Practice,Acol Book Practice,3,20,,10,,,,,,,,,,,,,{},{},{} -11036,Acol_Book_Misc,Acol Book Misc,3,20,,10,,,,,,,,,,,,,{},{},{} -11037,Mage_Book_Basic,Mage Book Basic,3,20,,10,,,,,,,,,,,,,{},{},{} -11038,Mage_Book_Practice,Mage Book Practice,3,20,,10,,,,,,,,,,,,,{},{},{} -11039,Mage_Book_Misc,Mage Book Misc,3,20,,10,,,,,,,,,,,,,{},{},{} -11040,Mer_Book_Basic,Mer Book Basic,3,20,,10,,,,,,,,,,,,,{},{},{} -11041,Mer_Book_Practice,Mer Book Practice,3,20,,10,,,,,,,,,,,,,{},{},{} -11042,Mer_Book_Misc,Mer Book Misc,3,20,,10,,,,,,,,,,,,,{},{},{} -11043,TK_Book_Basic,TK Book Basic,3,20,,10,,,,,,,,,,,,,{},{},{} -11044,TK_Book_Practice,TK Book Practice,3,20,,10,,,,,,,,,,,,,{},{},{} -11045,TK_Book_Misc,TK Book Misc,3,20,,10,,,,,,,,,,,,,{},{},{} -11046,Ninja_Book_Basic,Ninja Book Basic,3,20,,10,,,,,,,,,,,,,{},{},{} -11047,Ninja_Book_Practice,Ninja Book Practice,3,20,,10,,,,,,,,,,,,,{},{},{} -11048,Ninja_Book_Misc,Ninja Book Misc,3,20,,10,,,,,,,,,,,,,{},{},{} -11049,Gun_Book_Basic,Gun Book Basic,3,20,,10,,,,,,,,,,,,,{},{},{} -11050,Gun_Book_Practice,Gun Book Practice,3,20,,10,,,,,,,,,,,,,{},{},{} -11051,Gun_Book_Misc,Gun Book Misc,3,20,,10,,,,,,,,,,,,,{},{},{} -11052,SN_Book_Basic,SN Book Basic,3,20,,10,,,,,,,,,,,,,{},{},{} -11053,SN_Book_Practice,SN Book Practice,3,20,,10,,,,,,,,,,,,,{},{},{} -11054,SN_Book_Misc,SN Book Misc,3,20,,10,,,,,,,,,,,,,{},{},{} -11055,Basic_Adventure,Basic Adventure,3,20,,10,,,,,,,,,,,,,{},{},{} -11056,Elemental_Spirit_Guide,Elemental Spirit Guide,3,1000,,10,,,,,,,,,,,,,{},{},{} -// More Usable Items -//=================================================================== -11500,Light_Yellow_Pot,Light Yellow Potion,0,550,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(175,235),0; },{},{} -11501,Light_White_Pot,Light White Potion,0,1200,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(325,405),0; },{},{} -11502,Light_Blue_Pot,Light Blue Potion,0,5000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 0,rand(40,60); },{},{} -11503,Siege_White_Potion,WoE White Potion,0,0,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(400,500),0; },{},{} -11504,Siege_Blue_Potion,WoE Blue Potion,0,0,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 0,rand(50,70); },{},{} -11505,Iris,Iris,0,0,,30,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 0,150; },{},{} -11506,Fanta_Orange,Fanta Orange,0,800,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(50,70),rand(10,12); },{},{} -11507,Fanta_Grape,Fanta Grape,0,800,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(50,70),rand(10,12); },{},{} -11508,Karada_Meguri_Tea,Karada Meguricha,0,800,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(50,70),rand(10,12); },{},{} -11509,Royal_Milk_Tea,Black Tea Kochakaden,0,800,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(50,70),rand(10,12); },{},{} -11510,Coke_Zero,Coca Cola Zero,0,800,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(50,70),rand(10,12); },{},{} -11511,Coke_No_Cal,Diet Coca Cola,0,800,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(50,70),rand(10,12); },{},{} -11512,Coca_Cola,Coca Cola,0,800,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(50,70),rand(10,12); },{},{} -11513,Protect_Neck_Candy,Protect Neck Candy,0,200,,1,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(5,25),0; },{},{} -11514,Enriched_Slim_Pot,Enriched Slim Pot,0,0,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(335,415),0; },{},{} -11515,Coconut,Coconut,0,1500,,120,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(300,400),0; },{},{} -11516,Asai_Fruit,Asai Fruit,0,15,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(16,22),0; },{},{} -11517,Puri_Potion,Puri Potion,0,20,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(400,600),0; },{},{} -11518,N_Blue_Potion,Blue Potion,0,0,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 0,5; },{},{} -11519,Beef_Toast,Beef Toast,0,650,,40,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(170,250),0; },{},{} -11520,Mora_Mandarin,Mora Mandar,0,500,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 0,rand(50,80); },{},{} -11521,Pingui_Berry_Juice,Pingui Berry Juice,0,500,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(400,800),rand(50,80); },{},{} -11522,Red_Raffle_Sap,Red Raffle Sap,0,2000,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(400,800),0; },{},{} -11523,Yellow_Raffle_Sap,Yellow Raffle Sap,0,2400,,120,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(600,1000),0; },{},{} -11524,White_Raffle_Sap,White Raffle Sap,0,2800,,140,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(800,1200),0; },{},{} -11525,Mora_Hip_Tea,Mora HIp Tea,0,20,,150,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(1500,2000),0; },{},{} -11526,Rafflecino,Rafflecino,0,20,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 0,rand(120,160); },{},{} -11527,Baklava,Baklava,0,3500,,600,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 1200,440; },{},{} -11528,Kanafeh,Kanafeh,0,1500,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 300,240; },{},{} -11529,MAAMOUL_,Maamoul,0,500,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 120,60; },{},{} -11530,Jujube,Jujube,0,10,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 30,0; },{},{} -11531,Coffee,Coffee,0,10,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 0,10; },{},{} -11701,Girl_Bunch_Of_Flower,Girl's Bouquet,0,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(105,145),0; },{},{} -11702,Moon_Cookie,Moon Cookie,0,0,,300,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -11703,Mysterious_Blood,Mystery Blood,0,0,,30,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 0,rand(25,35); },{},{} -11704,KETUPAT_F,Ketupat,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(70,90),0; },{},{} -11705,Special_White_Potion,Children's Potion,0,1,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(425,425),0; },{},{} -11706,Steak,Steak,0,1,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(700,1000),0; },{},{} -11707,Roasted_Beef,Roast Beef,0,1,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal 0,rand(100,200); },{},{} -11708,Fore_Flank_Sirloin,Fore Flank Sirloin,0,20,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(30,50),rand(1,5); },{},{} -11709,Fanta_Zero_Lemon,Fanta Zero Lemon,0,800,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(50,70),rand(10,12); },{},{} -11710,Sakura_Mist,Sakura Mist,0,800,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(50,70),rand(10,12); },{},{} -11711,Sakura_Milk_Tea,Sakura Milk Tea,0,800,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(50,70),rand(10,12); },{},{} -11712,First_Leaf_Tea,Flower,0,800,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(50,70),rand(10,12); },{},{} -12000,Cold_Scroll_2_5,Level 5 Frost Diver,11,2000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "MG_FROSTDIVER",5; },{},{} -12001,Holy_Scroll_1_3,Level 3 Heal,11,2000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "AL_HEAL",3; },{},{} -12002,Holy_Scroll_1_5,Level 5 Heal,11,2000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "AL_HEAL",5; },{},{} -12003,Holy_Scroll_2_1,Level 1 Teleport,11,1000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "AL_TELEPORT",1; },{},{} -12004,Arrow_Container,Quiver,2,2,,250,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 1750,500; },{},{} -12005,Iron_Arrow_Container,Iron Arrow Quiver,2,2,,250,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 1770,500; },{},{} -12006,Steel_Arrow_Container,Steel Arrow Quiver,2,2,,250,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 1753,500; },{},{} -12007,Ori_Arrow_Container,Oridecon Arrow Quiver,2,2,,250,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 1765,500; },{},{} -12008,Fire_Arrow_Container,Fire Arrow Quiver,2,2,,250,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 1752,500; },{},{} -12009,Silver_Arrow_Container,Silver Arrow Quiver,2,2,,250,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 1751,500; },{},{} -12010,Wind_Arrow_Container,Wind Arrow Quiver,2,2,,250,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 1755,500; },{},{} -12011,Stone_Arrow_Container,Stone Arrow Quiver,2,2,,250,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 1756,500; },{},{} -12012,Crystal_Arrow_Container,Crystal Arrow Quiver,2,2,,250,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 1754,500; },{},{} -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,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; },{},{} -12020,Water_Of_Darkness,Cursed Water,11,2,,30,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "ITEM_ENCHANTARMS",8; },{},{} -12021,Pork_Belly,Pork,0,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(70,99),0; },{},{} -12022,Spareribs,Galbi,0,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(70,99),0; },{},{} -12023,Giftbox_China,Wrapped Box,2,1000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_GiftBoxChina),1; },{},{} -12024,Red_Pouch_Of_Surprise,Red Pouch,2,50,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ monster "this",-1,-1,"--ja--",-4,1,""; },{},{} -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,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; },{},{} -12032,Box_Of_Storm,Box of Storms,11,1000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "ITEM_ENCHANTARMS",2; },{},{} -12033,Box_Of_Sunlight,Box of Sunlight,2,1000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_Intravision,30000,0; },{},{} -12034,Painting_Box,Box of Panting,2,1000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 0,9; sc_start SC_Silence,30000,0,3000,0; },{},{} -12035,Lotto_Box01,Lotto Box 01,2,0,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem rand(7361,7370),1; },{},{} -12036,Lotto_Box02,Lotto Box 02,2,0,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem rand(7371,7380),1; },{},{} -12037,Lotto_Box03,Lotto Box 03,2,0,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem rand(7381,7390),1; },{},{} -12038,Lotto_Box04,Lotto Box 04,2,0,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_LottoBox),1; },{},{} -12039,Lotto_Box05,Lotto Box 05,2,0,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem rand(7542,7546),1; },{},{} -12040,Stone_Of_Intelligence_,Stone of Sage,2,100000,,300,,,,,0xFFFFFFFF,7,2,,,,,,{ homevolution; },{},{} -12041,Str_Dish01,Fried Grasshopper Legs,0,2000,,60,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_STRFOOD,1200000,1; percentheal 5,0; },{},{} -12042,Str_Dish02,Seasoned Sticky Webfoot,0,4000,,500,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_STRFOOD,1200000,2; percentheal 5,0; },{},{} -12043,Str_Dish03,Bomber Steak,0,6000,,500,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_STRFOOD,1200000,3; percentheal 5,0; },{},{} -12044,Str_Dish04,Herb Marinade Beef,0,8000,,500,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_STRFOOD,1200000,4; percentheal 5,0; },{},{} -12045,Str_Dish05,Lutie Lady's Pancake,0,10000,,500,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_STRFOOD,1200000,5; percentheal 10,0; },{},{} -12046,Int_Dish01,Grape Juice Herbal Tea,0,2000,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INTFOOD,1200000,1; percentheal 0,5; },{},{} -12047,Int_Dish02,Autumn Red Tea,0,4000,,500,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INTFOOD,1200000,2; percentheal 0,5; },{},{} -12048,Int_Dish03,Honey Herbal Tea,0,6000,,500,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INTFOOD,1200000,3; percentheal 0,5; },{},{} -12049,Int_Dish04,Morocc Fruit Wine,0,8000,,300,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INTFOOD,1200000,4; percentheal 0,5; },{},{} -12050,Int_Dish05,Mastela Fruit Wine,0,10000,,400,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INTFOOD,1200000,5; percentheal 0,10; },{},{} -12051,Vit_Dish01,Steamed Crab Nippers,0,2000,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_VITFOOD,1200000,1; percentheal 5,0; },{},{} -12052,Vit_Dish02,Assorted Seafood,0,4000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_VITFOOD,1200000,2; percentheal 5,0; },{},{} -12053,Vit_Dish03,Clam Soup,0,6000,,300,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_VITFOOD,1200000,3; percentheal 5,0; },{},{} -12054,Vit_Dish04,Seasoned Jellyfish,0,8000,,500,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_VITFOOD,1200000,4; percentheal 5,0; },{},{} -12055,Vit_Dish05,Spicy Fried Bao,0,10000,,800,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_VITFOOD,1200000,5; percentheal 10,0; },{},{} -12056,Agi_Dish01,Frog Egg Squid Ink Soup,0,2000,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_AGIFOOD,1200000,1; percentheal 3,1; },{},{} -12057,Agi_Dish02,Smooth Noodle,0,4000,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_AGIFOOD,1200000,2; percentheal 3,1; },{},{} -12058,Agi_Dish03,Tentacle Cheese Gratin,0,6000,,500,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_AGIFOOD,1200000,3; percentheal 3,1; },{},{} -12059,Agi_Dish04,Lutie Cold Noodle,0,8000,,400,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_AGIFOOD,1200000,4; percentheal 3,1; },{},{} -12060,Agi_Dish05,Steamed Bat Wing in Pumpkin,0,10000,,500,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_AGIFOOD,1200000,5; percentheal 6,2; },{},{} -12061,Dex_Dish01,Honey Grape Juice,0,2000,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_DEXFOOD,1200000,1; percentheal 2,2; },{},{} -12062,Dex_Dish02,Chocolate Mousse Cake,0,4000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_DEXFOOD,1200000,2; percentheal 2,2; },{},{} -12063,Dex_Dish03,Fruit Mix,0,6000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_DEXFOOD,1200000,3; percentheal 2,2; },{},{} -12064,Dex_Dish04,Cream Sandwich,0,8000,,500,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_DEXFOOD,1200000,4; percentheal 2,2; },{},{} -12065,Dex_Dish05,Green Salad,0,10000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_DEXFOOD,1200000,5; percentheal 5,5; },{},{} -12066,Luk_Dish01,Fried Monkey Tails,0,2000,,60,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_LUKFOOD,1200000,1; percentheal 3,2; },{},{} -12067,Luk_Dish02,Mixed Juice,0,4000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_LUKFOOD,1200000,2; percentheal 3,2; },{},{} -12068,Luk_Dish03,Fried Sweet Potato,0,6000,,500,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_LUKFOOD,1200000,3; percentheal 4,2; },{},{} -12069,Luk_Dish04,Steamed Ancient Lips,0,8000,,500,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_LUKFOOD,1200000,4; percentheal 4,2; },{},{} -12070,Luk_Dish05,Fried Scorpion Tails,0,10000,,400,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_LUKFOOD,1200000,5; percentheal 5,2; },{},{} -12071,Str_Dish06,Shiny Marinade Beef,0,20000,,800,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_STRFOOD,1200000,6; percentheal 10,2; },{},{} -12072,Str_Dish07,Whole Roast,0,40000,,1000,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_STRFOOD,1200000,7; percentheal 10,4; },{},{} -12073,Str_Dish08,Bearfoot Special,0,60000,,500,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_STRFOOD,1200000,8; percentheal 15,6; },{},{} -12074,Str_Dish09,Tendon Satay,0,80000,,1000,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_STRFOOD,1200000,9; percentheal 15,8; },{},{} -12075,Str_Dish10,Steamed Tongue,0,100000,,1000,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_STRFOOD,1200000,10; percentheal 20,20; },{},{} -12076,Int_Dish06,Red Mushroom Wine,0,20000,,300,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INTFOOD,1200000,6; percentheal 2,10; },{},{} -12077,Int_Dish07,Special Royal Jelly Herbal Tea,0,40000,,800,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INTFOOD,1200000,7; percentheal 4,10; },{},{} -12078,Int_Dish08,Royal Family Tea,0,60000,,1000,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INTFOOD,1200000,8; percentheal 6,10; },{},{} -12079,Int_Dish09,Tristan XII,0,80000,,1000,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INTFOOD,1200000,9; percentheal 8,15; },{},{} -12080,Int_Dish10,Dragon Breath Cocktail,0,100000,,1000,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INTFOOD,1200000,10; percentheal 10,20; },{},{} -12081,Vit_Dish06,Awfully Bitter Bracer,0,20000,,500,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_VITFOOD,1200000,6; percentheal 13,0; },{},{} -12082,Vit_Dish07,Sumptuous Feast,0,40000,,400,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_VITFOOD,1200000,7; percentheal 16,0; },{},{} -12083,Vit_Dish08,Giant Burito,0,60000,,1000,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_VITFOOD,1200000,8; percentheal 19,0; },{},{} -12084,Vit_Dish09,Ascending Dragon Soup,0,80000,,1000,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_VITFOOD,1200000,9; percentheal 22,0; },{},{} -12085,Vit_Dish10,Immortal Stew,0,100000,,1000,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_VITFOOD,1200000,10; percentheal 25,0; },{},{} -12086,Agi_Dish06,Chile Shrimp Gratin,0,20000,,800,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_AGIFOOD,1200000,6; percentheal 7,2; },{},{} -12087,Agi_Dish07,Steamed Alligator with Vegetable,0,40000,,800,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_AGIFOOD,1200000,7; percentheal 8,2; },{},{} -12088,Agi_Dish08,Incredibly Spicy Curry,0,60000,,1000,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_AGIFOOD,1200000,8; percentheal 9,2; },{},{} -12089,Agi_Dish09,Special Meat Stew,0,80000,,1000,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_AGIFOOD,1200000,9; percentheal 10,2; },{},{} -12090,Agi_Dish10,Steamed Desert Scorpions,0,100000,,1000,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_AGIFOOD,1200000,10; percentheal 15,5; },{},{} -12091,Dex_Dish06,Peach Cake,0,20000,,800,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_DEXFOOD,1200000,6; percentheal 5,6; },{},{} -12092,Dex_Dish07,Soul Haunted Bread,0,40000,,800,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_DEXFOOD,1200000,7; percentheal 5,7; },{},{} -12093,Dex_Dish08,Special Toast,0,60000,,1000,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_DEXFOOD,1200000,8; percentheal 5,8; },{},{} -12094,Dex_Dish09,Heavenly Fruit Juice,0,80000,,500,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_DEXFOOD,1200000,9; percentheal 5,9; },{},{} -12095,Dex_Dish10,Hwergelmir's Tonic,0,100000,,1000,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_DEXFOOD,1200000,10; percentheal 10,10; },{},{} -12096,Luk_Dish06,Lucky Soup,0,20000,,300,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_LUKFOOD,1200000,6; percentheal 6,3; },{},{} -12097,Luk_Dish07,Assorted Shish Kebob,0,40000,,800,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_LUKFOOD,1200000,7; percentheal 7,3; },{},{} -12098,Luk_Dish08,Strawberry Flavored Rice Ball,0,60000,,400,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_LUKFOOD,1200000,8; percentheal 9,3; },{},{} -12099,Luk_Dish09,Blood Flavored Soda,0,80000,,1000,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_LUKFOOD,1200000,9; percentheal 10,4; },{},{} -12100,Luk_Dish10,Cooked Nine Tail's Tails,0,100000,,500,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_LUKFOOD,1200000,10; percentheal 14,8; },{},{} -12101,Citron,Citron,0,20,,300,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12102,Meat_Skewer,Grilled Skewer,0,20,,300,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12103,Bloody_Dead_Branch,Bloody Branch,2,10000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ monster "this",-1,-1,"--ja--",-3,1,""; },{},{} -12104,Random_Quiver,Random Quiver,2,10000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_Quiver),1; },{},{} -12105,Set_Of_Taiming_Item,Taming Gift Set,2,10000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_Taming),1; getrandgroupitem(IG_Taming),1; getrandgroupitem(IG_Taming),1; },{},{} -12106,Accessory_Box,Jewelry Box,2,10000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_Accesory),1; },{},{} -12107,Wrapped_Mask,Wrapped Mask,2,10000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_Mask),1; },{},{} -12108,Bundle_Of_Magic_Scroll,Scroll Package,2,10000,,200,,,,,0xFFFFFFFF,7,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,7,2,,,,,,{ monster "this",-1,-1,"--ja--",-2,1,""; },{},{} -12110,First_Aid_Kit,First Aid Kit,2,10000,,200,,,,,0xFFFFFFFF,7,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,7,2,,,,,,{ getrandgroupitem(IG_FoodBag),1; getrandgroupitem(IG_FoodBag),1; getrandgroupitem(IG_FoodBag),1; },{},{} -12112,Tropical_Sograt,Tropical Sograt,2,1000,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_Curse,10000,1; },{},{} -12113,Vermilion_The_Beach,Vermilion on the Beach,2,1000,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_Stun,10000,1; },{},{} -12114,Elemental_Fire,Elemental Converter,11,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "ITEM_ENCHANTARMS",4; },{},{} -12115,Elemental_Water,Elemental Converter,11,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "ITEM_ENCHANTARMS",2; },{},{} -12116,Elemental_Earth,Elemental Converter,11,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "ITEM_ENCHANTARMS",3; },{},{} -12117,Elemental_Wind,Elemental Converter,11,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "ITEM_ENCHANTARMS",5; },{},{} -12118,Resist_Fire,Fireproof Potion,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start4 SC_ARMOR_ELEMENT_FIRE,1200000,-15,0,20,0; },{},{} -12119,Resist_Water,Coldproof Potion,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start4 SC_ARMOR_ELEMENT_WATER,1200000,20,0,0,-15; },{},{} -12120,Resist_Earth,Earthproof Potion,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start4 SC_ARMOR_ELEMENT_EARTH,1200000,0,20,-15,0; },{},{} -12121,Resist_Wind,Thunderproof Potion,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start4 SC_ARMOR_ELEMENT_WIND,1200000,0,-15,0,20; },{},{} -12122,Sesame_Pastry,Sesame Pastry,2,2,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_HITFOOD,1800000,30; },{},{} -12123,Honey_Pastry,Honey Pastry,2,2,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_FLEEFOOD,1800000,30; },{},{} -12124,Rainbow_Cake,Rainbow Cake,2,2,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_BATKFOOD,60000,10; sc_start SC_MATKFOOD,60000,10; },{},{} -12125,Outdoor_Cooking_Kits,Outdoor Cooking Kit,2,500,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ cooking 11; },{},{} -12126,Indoor_Cooking_Kits,Home Cooking Kit,2,1000,,30,,,,,0xFFFFFFFF,7,2,,,,,,{ cooking 12; },{},{} -12127,High_end_Cooking_Kits,Professional Cooking Kit,2,2000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ cooking 13; },{},{} -12128,Imperial_Cooking_Kits,Royal Cooking Kit,2,5000,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ cooking 14; },{},{} -12129,Fantastic_Cooking_Kits,Fantastic Cooking Kit,2,10000,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ cooking 15; },{},{} -12130,Cookie_Bag,Cookie Bag,2,2,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_CookieBag),1; getrandgroupitem(IG_CookieBag),1; getrandgroupitem(IG_CookieBag),1; },{},{} -12131,Lucky_Potion,Lucky Potion,0,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12132,Red_Bag,Santa's Bag,2,0,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_Xmas,600000,0; },{},{} -12133,Ice_Cream_,McDonald's Ice Cone,0,0,,80,,,,,0xFFFFFFFF,7,2,,,,,,{ if(gettime(DT_DAYOFMONTH)!=MDiceCone) { set MDiceCone,gettime(DT_DAYOFMONTH); percentheal 50,50; } },{},{} -12134,Red_Envelope,Red Envelope,2,1,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ set Zeny,Zeny+rand(1000,10000); },{},{} -12135,Green_Ale,Green Ale,2,20,,30,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 50,50; sc_start SC_Confusion,10000,0,1000,0; },{},{} -12136,Women's_Bundle,Women's Bundle,2,0,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem callfunc("F_Rand",558,529,2668,7518),1; },{},{} -12137,1st_Stage_Prize,First Stage Prize,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12138,2nd_Stage_Prize,Second Stage Prize,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12139,3rd_Stage_Prize,Third Stage Prize,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12140,4th_Stage_Prize,Fourth Stage Prize,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12141,5th_Stage_Prize,Fifth Stage Prize,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12142,Magic_Book,Book of Magic,2,0,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_AGIFOOD,1800000,10; },{},{} -12143,Red_Can,Red Can,2,50000,,300,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12144,Sphere_Case_Wind,Lightning Sphere Pack,2,2,,350,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13204,500; },{},{} -12145,Sphere_Case_Darkness,Blind Sphere Pack,2,2,,350,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13206,500; },{},{} -12146,Sphere_Case_Poison,Poison Sphere Pack,2,2,,350,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13205,500; },{},{} -12147,Sphere_Case_Water,Freezing Sphere Pack,2,2,,350,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13207,500; },{},{} -12148,Sphere_Case_Fire,Flare Sphere Pack,2,2,,350,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13203,500; },{},{} -12149,Bullet_Case,Cartridge,2,2,,250,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13200,500; },{},{} -12150,Bullet_Case_Blood,Blood Cartridge,2,2,,250,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13202,500; },{},{} -12151,Bullet_Case_Silver,Silver Cartridge,2,2,,250,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13201,500; },{},{} -12152,Special_Box,Special Present,2,0,,100,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12153,Bow_Mercenary_Scroll1,Bowman Scroll 1,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6017,1800000; },{},{} -12154,Bow_Mercenary_Scroll2,Bowman Scroll 2,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6018,1800000; },{},{} -12155,Bow_Mercenary_Scroll3,Bowman Scroll 3,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6019,1800000; },{},{} -12156,Bow_Mercenary_Scroll4,Bowman Scroll 4,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6020,1800000; },{},{} -12157,Bow_Mercenary_Scroll5,Bowman Scroll 5,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6021,1800000; },{},{} -12158,Bow_Mercenary_Scroll6,Bowman Scroll 6,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6022,1800000; },{},{} -12159,Bow_Mercenary_Scroll7,Bowman Scroll 7,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6023,1800000; },{},{} -12160,Bow_Mercenary_Scroll8,Bowman Scroll 8,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6024,1800000; },{},{} -12161,Bow_Mercenary_Scroll9,Bowman Scroll 9,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6025,1800000; },{},{} -12162,Bow_Mercenary_Scroll10,Bowman Scroll 10,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6026,1800000; },{},{} -12163,SwordMercenary_Scroll1,Fencer Scroll 1,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6037,1800000; },{},{} -12164,SwordMercenary_Scroll2,Fencer Scroll 2,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6038,1800000; },{},{} -12165,SwordMercenary_Scroll3,Fencer Scroll 3,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6039,1800000; },{},{} -12166,SwordMercenary_Scroll4,Fencer Scroll 4,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6040,1800000; },{},{} -12167,SwordMercenary_Scroll5,Fencer Scroll 5,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6041,1800000; },{},{} -12168,SwordMercenary_Scroll6,Fencer Scroll 6,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6042,1800000; },{},{} -12169,SwordMercenary_Scroll7,Fencer Scroll 7,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6043,1800000; },{},{} -12170,SwordMercenary_Scroll8,Fencer Scroll 8,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6044,1800000; },{},{} -12171,SwordMercenary_Scroll9,Fencer Scroll 9,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6045,1800000; },{},{} -12172,SwordMercenary_Scroll10,Fencer Scroll 10,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6046,1800000; },{},{} -12173,SpearMercenary_Scroll1,Spearman Scroll 1,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6027,1800000; },{},{} -12174,SpearMercenary_Scroll2,Spearman Scroll 2,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6028,1800000; },{},{} -12175,SpearMercenary_Scroll3,Spearman Scroll 3,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6029,1800000; },{},{} -12176,SpearMercenary_Scroll4,Spearman Scroll 4,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6030,1800000; },{},{} -12177,SpearMercenary_Scroll5,Spearman Scroll 5,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6031,1800000; },{},{} -12178,SpearMercenary_Scroll6,Spearman Scroll 6,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6032,1800000; },{},{} -12179,SpearMercenary_Scroll7,Spearman Scroll 7,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6033,1800000; },{},{} -12180,SpearMercenary_Scroll8,Spearman Scroll 8,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6034,1800000; },{},{} -12181,SpearMercenary_Scroll9,Spearman Scroll 9,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6035,1800000; },{},{} -12182,SpearMercenary_Scroll10,Spearman Scroll 10,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 6036,1800000; },{},{} -12183,Holy_Arrow_Quiver,Holy Arrow Quiver,2,2,,250,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 1772,500; },{},{} -12184,Mercenary_Red_Potion,Mercenary Red Potion,2,500,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_heal 1000,0; },{},{} -12185,Mercenary_Blue_Potion,Mercenary Blue Potion,2,1000,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_heal 0,100; },{},{} -12186,Red_Box,Old Red Box,2,50000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_RedBox),1; },{},{} -12187,Green_Box,Old Green Box,2,50000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_GreenBox),1; },{},{} -12188,Magical_Moon_Cake,Grace Moon Cake,0,20,,300,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 50,50; },{},{} -12189,Red_Box_,Old Red Box,2,50000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_RedBox_2),1; },{},{} -12190,Moon_Cake,Moon Cake,2,2,,300,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12191,Special_Moon_Cake,Special Moon Cake,2,2,,500,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12192,Pumpkin_Pie,Pumpkin Pie,0,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 5,5; },{},{} -12193,Brezel,Pretzel,2,20,,20,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12194,Hometown_Gift,Hometown Gift,2,20,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_HometownGift),1; getrandgroupitem(IG_HometownGift),1; getrandgroupitem(IG_HometownGift),1; },{},{} -12195,Plain_Rice_Cake,Plain Rice Cake,0,20,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 0,20; },{},{} -12196,Hearty_Rice_Cake,Hearty Rice Cake,0,20,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 50,0; },{},{} -12197,Salty_Rice_Cake,Salty Rice Cake,0,20,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 10,10; },{},{} -12198,Lucky_Rice_Cake,Lucky Rice Cake,2,20,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INCLUK,1200000,21; },{},{} -12199,Rice_Scroll,Scroll of Magic,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12200,Event_Cake,X-mas Cake,11,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "PR_MAGNIFICAT",3; },{},{} -12201,Red_Box_C,Commonplace Red Box,2,20,,200,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -// Cash Shop Usable Items -12202,Str_Dish10_,Steamed Tongue,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_FOOD_STR_CASH,1800000,10; percentheal 15,5; },{},{} -12203,Agi_Dish10_,Steamed Scorpion,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_FOOD_AGI_CASH,1800000,10; percentheal 15,5; },{},{} -12204,Int_Dish10_,Dragon Breath Cocktail,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_FOOD_INT_CASH,1800000,10; percentheal 15,5; },{},{} -12205,Dex_Dish10_,Hwergelmir's Tonic,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_FOOD_DEX_CASH,1800000,10; percentheal 15,5; },{},{} -12206,Luk_Dish10_,Cooked Nine Tail's Tails,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_FOOD_LUK_CASH,1800000,10; percentheal 15,5; },{},{} -12207,Vit_Dish10_,Stew Of Immortality,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_FOOD_VIT_CASH,1800000,10; percentheal 15,5; },{},{} -12208,Battle_Manual,Battle Manual,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_EXPBOOST,1800000,50; },{},{} -12209,Insurance,Life Insurance,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_LIFEINSURANCE,1800000,0; },{},{} -12210,Bubble_Gum,Bubble Gum,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_ITEMBOOST,1800000,200; },{},{} -12211,Kafra_Card,Kafra Card,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "F_CashStore"; },{},{} -12212,Giant_Fly_Wing,Giant Fly Wing,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "F_CashPartyCall"; },{},{} -12213,Neuralizer,Neuralizer,11,2,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "F_CashReset"; },{},{} -12214,Convex_Mirror,Convex Mirror,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_BOSSMAPINFO,600000,0; },{},{} -12215,Blessing_10_Scroll,LV10 Blessing Scroll,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,240000,10; },{},{} -12216,Inc_Agi_10_Scroll,LV10 Agil Scroll,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ if(Hp>15) { skilleffect "AL_INCAGI",0; sc_start SC_INCREASEAGI,240000,10; heal -15,0; } },{},{} -12217,Aspersio_5_Scroll,LV5 Aspersio Scroll,2,2,,10,,,,,0xFFFFFFFF,7,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,7,2,,,,,,{ sc_start SC_ASSUMPTIO,100000,5; skilleffect "HP_ASSUMPTIO",0; },{},{} -12219,Wind_Walk_10_Scroll,LV10 Wind Walker Scroll,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ skilleffect "SN_WINDWALK",0; sc_start SC_WINDWALK,250000,5; },{},{} -12220,Adrenaline_Scroll,LV5 Adrenaline Scroll,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ set .@type,getiteminfo(getequipid(EQI_HAND_R),11); if (.@type==W_1HAXE||.@type==W_2HAXE||.@type==W_MACE) { 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; },{},{} -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,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; },{},{} -12236,Choco_Tart,Chocolate Tart,11,20,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 5,0; itemskill "AL_ANGELUS",5; },{},{} -12237,Choco_Lump,Junky Chocolate,2,0,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 0,5; sc_start SC_Poison,18000,0; sc_start SC_Bleeding,18000,0; },{},{} -12238,New_Year_Rice_Cake_1,New Year Rice Cake,2,20,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_DPoison,10000,0,1000,0; sc_start SC_Poison,50000,0; },{},{} -12239,New_Year_Rice_Cake_2,New Year Rice Cake,2,20,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_DPoison,10000,0,1000,0; sc_start SC_Poison,50000,0; },{},{} -12240,Old_Yellow_Box,Old Yellow Box,2,20,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_YellowBox),1; },{},{} -12241,M_Center_Potion,Mercenary Concentration Potion,2,800,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_sc_start SC_ASPDPOTION0,1800000,0; },{},{} -12242,M_Awakening_Potion,Mercenary Awakening Potion,2,1500,,150,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_sc_start SC_ASPDPOTION1,1800000,0; },{},{} -12243,M_Berserk_Potion,Mercenary Berserk Potion,2,3000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_sc_start SC_ASPDPOTION2,1800000,0; },{},{} -12244,Old_Gift_Box,Old Gift Box,2,20,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_OldGiftBox),1; },{},{} -12245,Green_Ale_US,Green Ale,0,5000,,500,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 100,0; },{},{} -12246,Magic_Card_Album,Mystical Card Album,2,10000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_MagicCardAlbum),1; },{},{} -12247,Halohalo,Halo-Halo,2,2,,100,,,,,0xFFFFFFFF,7,2,,,20,,,{ sc_start SC_INCALLSTATUS,600000,3; },{},{} -12248,Masquerade_Ball_Box,Fancy Ball Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_Masquerade),1; },{},{} -12249,Payroll_Of_Kafra_,Payment Statement for Kafra Employee,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12250,Str_Dish10_M,Steamed Tongue,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_STRFOOD,3600000,10; percentheal 20,20; },{},{} -12251,Agi_Dish10_M,Steamed Desert Scorpions,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_AGIFOOD,3600000,10; percentheal 15,5; },{},{} -12252,Int_Dish10_M,Dragon Breath Cocktail,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INTFOOD,3600000,10; percentheal 10,20; },{},{} -12253,Dex_Dish10_M,Hwergelmir's Tonic,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_DEXFOOD,3600000,10; percentheal 10,10; },{},{} -12254,Luk_Dish10_M,Cooked Nine Tail,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_LUKFOOD,3600000,10; percentheal 14,8; },{},{} -12255,Vit_Dish10_M,Immortal Stew,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_VITFOOD,3600000,10; percentheal 25,0; },{},{} -12256,PRO_Gift_Box,PRO Gift Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12257,Cold_Medicine,Cold Medicine,0,20,,100,,,,,0xFFFFFFFF,7,2,,,50,,,{ percentheal 25,25; },{},{} -12258,Bombring_Box,Bomb Poring Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ if(strcharinfo(3)=="job3_rang02") { monster "this",-1,-1,"--ja--",1904,1,""; } },{},{} -12259,Miracle_Medicine,Miracle Tonic,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ getexp2(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,,,,,,{ getexp2(2000000,1000000); },{},{} -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; },{},{} -12266,Sesame_Pastry_,Sesame Pastry,2,2,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_HITFOOD,180000,30; },{},{} -12267,Honey_Pastry_,Honey Pastry,2,2,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_FLEEFOOD,180000,30; },{},{} -12268,Rainbow_Cake_,Rainbow Cake,2,2,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_ATKPOTION,60000,10; sc_start SC_MATKFOOD,60000,10; },{},{} -12269,Tasty_Colonel,Tasty Pink Ration,2,2,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_ATKPOTION,600000,15; },{},{} -12270,Tasty_Major,Tasty White Ration,2,2,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_MATKPOTION,600000,15; },{},{} -12271,Mre_A,Military Ration A,0,2,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 5,0; },{},{} -12272,Mre_B,Military Ration B,2,2,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_HITFOOD,600000,33; },{},{} -12273,Mre_C,Military Ration C,2,2,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_FLEEFOOD,600000,33; },{},{} -12274,Gold_Pill_1,Daehwandan,0,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start2 SC_INCREASE_MAXHP,3600000,5,10; percentheal 10,0; },{},{} -12275,Gold_Pill_2,Taecheongdan,0,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start2 SC_INCREASE_MAXSP,3600000,5,10; percentheal 0,10; },{},{} -12276,Mimic_Scroll,Mimic Scroll,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 2058,1800000; },{},{} -12277,Disguise_Scroll,Disguise Scroll,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 2059,1800000; },{},{} -12278,Alice_Scroll,Alice Scroll,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 2060,1800000; },{},{} -12279,Undead_Element_Scroll,Undead Elemental Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start4 SC_ARMOR_RESIST,300000,20,20,20,20; },{},{} -12280,Holy_Element_Scroll,Holy Elemental Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ specialeffect2 EF_BENEDICTIO; sc_start SC_BENEDICTIO,300000,1; },{},{} -12281,Tresure_Box_WoE,Event Treasure Box,2,20,,150,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_Tresure_Box_WoE),1; },{},{} -12282,Internet_Cafe1,Internet Cafe1,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INCALLSTATUS,5400000,3; sc_start SC_ATKPOTION,5400000,15; sc_start SC_MATKPOTION,5400000,15; },{},{} -12283,Internet_Cafe2,Internet Cafe2,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INCSTR,5400000,8; sc_start SC_INCDEX,5400000,4; sc_start SC_INCAGI,5400000,6; sc_start SC_ATKPOTION,5400000,32; sc_start SC_INCFLEE,5400000,5; },{},{} -12284,Internet_Cafe3,Internet Cafe3,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INCINT,5400000,8; sc_start SC_INCVIT,5400000,4; sc_start SC_INCDEX,5400000,6; sc_start SC_MATKPOTION,5400000,40; },{},{} -12285,Internet_Cafe4,Internet Cafe4,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INCDEX,5400000,8; sc_start SC_INCLUK,5400000,4; sc_start SC_INCAGI,5400000,6; sc_start SC_ATKPOTION,5400000,24; sc_start SC_MATKPOTION,5400000,24; },{},{} -12286,Masquerade_Ball_Box2,Masquerade Ball Box2,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_Masquerade_2),1; },{},{} -12287,Love_Angel,Love Angel Magic Powder,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ setfont 1; },{},{ setfont 0; } -12288,Squirrel,Squirrel Magic Powder,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ setfont 2; },{},{ setfont 0; } -12289,Gogo,Gogo Magic Powder,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ setfont 3; },{},{ setfont 0; } -12290,Mysterious_Can,Mysterious Can Magic Powder,2,10,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 5,0; skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,120000,5; },{},{} -12291,Mysterious_PET_Bottle,Mysterious PET Bottle,2,10,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 5,0; skilleffect "AL_INCAGI",0; sc_start SC_INCREASEAGI,120000,5; },{},{} -12292,Unripe_Fruit,Unripe Fruit,0,500,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 20,0; },{},{} -12293,Dried_Yggdrasilberry,Dried Yggdrasilberry,0,500,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 0,20; },{},{} -12294,PC_Bang_Coin_Box1,PC-Room Coin Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2740,1; },{},{} -12295,PC_Bang_Coin_Box2,PC-Room Coin Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2739,1; },{},{} -12296,PC_Bang_Coin_Box3,PC-Room Coin Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2738,1; },{},{} -12297,PC_Bang_Coin_Box4,PC-Room Coin Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2738,2; },{},{} -12298,SP_Potion,SP Consumption Reduction Potion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_SPCOST_RATE,3600000,15; },{},{} -12299,Mega_Resist_Potion,Mega Resist Potion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_COMMONSC_RESIST,3600000,10; },{},{} -12300,Wild_Rose_Scroll,Wild Rose Contract,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 1965,1800000; },{},{} -12301,Doppelganger_Scroll,Doppelganger Contract,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 1966,1800000; },{},{} -12302,Ygnizem_Scroll,Egnigem Cenia Contract,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 1967,1800000; },{},{} -12303,Water_Of_Blessing,Blessing Of Water,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12304,Picture_Diary,Diary Magic Powder,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ setfont 4; },{},{ setfont 0; } -12305,Mini_Heart,Mini Heart Magic Powder,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ setfont 5; },{},{ setfont 0; } -12306,Newcomer,Freshman Magic Powder,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ setfont 6; },{},{ setfont 0; } -12307,Kid,Kid Magic Powder,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ setfont 7; },{},{ setfont 0; } -12308,Magic_Castle,Magic Magic Powder,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ setfont 8; },{},{ setfont 0; } -12309,Bulging_Head,JJangu Magic Powder,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ setfont 9; },{},{ setfont 0; } -12310,Spray_Of_Flowers,Spray Of Flowers,2,0,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_FLEEFOOD,300000,10; },{},{} -12311,Large_Spray_Of_Flowers,Huge Spray Of Flowers,11,0,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "ALL_PARTYFLEE",1; },{},{} -12312,Thick_Manual50,Thick Battle Manual,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_EXPBOOST,3600000,50; },{},{} -12313,Protection_Of_Angel,Guardian Angel,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ /* itemskill "ALL_ANGEL_PROTECT",1; */ },{},{} -12314,Noive_Box,Noive Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12315,Goddess_Bless,Goddess Of Blessing,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12316,Angel_Bless,Angel Of Blessing,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12317,Powder_Snow,Snow Powder,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12318,Little_Heart,Small Hearts,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12319,Strawberry_Cake,Rune Strawberry Cake,2,0,,300,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_ATKPOTION,600000,5; sc_start SC_MATKPOTION,600000,5; },{},{} -12320,Pineapple_Juice,Schwarzwald Pine Jubilee,2,0,,300,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_HITFOOD,600000,10; sc_start SC_FLEEFOOD,600000,20; },{},{} -12321,Spicy_Sandwich,Arunafeltz Desert Sandwich,2,0,,300,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INCCRI,600000,7; },{},{} -12322,Chocolate_Pie,Chocolate Pie,0,0,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 5,5; },{},{} -12323,N_Fly_Wing,Novice Fly Wing,11,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "AL_TELEPORT",1; },{},{} -12324,N_Butterfly_Wing,Novice Butterfly Wing,11,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "AL_TELEPORT",3; },{},{} -12325,N_Magnifier,Novice Magnifier,11,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "MC_IDENTIFY",1; },{},{} -12326,J_Firecracker,Large Firecracker,2,2,,20,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12327,Charm_Of_Luck,Charm Of Luck,2,1000,,50,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12328,Charm_Of_Happiness,Charm Of Happiness,2,1800,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INCLUK,3600000,20; },{},{} -12329,Recall_MaleGM,Summon Male GameMaster Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 2000,1800000; },{},{} -12330,Recall_FemaleGM,Summon Female GameMaster Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 2001,1800000; },{},{} -12331,Ginseng,Ginseng,0,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 6,0; },{},{} -12332,Fruit_Juice,Fruit Juice,0,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 0,6; },{},{} -12333,Ansila,Ancilla,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 0,15; },{},{} -12334,Cherish_Box,Treasure Edition Helm Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_Cherish_Box),1; },{},{} -12335,Yummy_Skewered_Dish,Grilled Delicious Skewer,0,1000,,350,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 60,60; },{},{} -12336,Baked_Mushroom,Grilled Mushroom,0,500,,300,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 30,30; },{},{} -12337,Grilled_Sausage,Grilled Sausages,0,300,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 20,20; },{},{} -12338,Grilled_Corn,Grilled Corn,2,100,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INCSTR,180000,2; sc_start SC_INCINT,180000,2; sc_start SC_INCAGI,180000,2; },{},{} -12339,Cherish_Box_Ori,Treasure Edition Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_Cherish_Box_Ori),1; },{},{} -12340,Mysterious_Rice_Powder,Chewy Rice Powder,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1815; },{},{} -12341,Special_Alloy_Trap_Box,Special Alloy Trap Box,2,30000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7940,100; },{},{} -12342,Manuk's_Opportunity,Manuk's Opportunity,2,0,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ specialeffect2 EF_POTION_BERSERK; sc_start SC_MANU_ATK,600000,10; },{},{} -12343,Manuk's_Courage,Manuk's Courage,2,0,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ specialeffect2 EF_GUARD; sc_start SC_MANU_DEF,600000,10; },{},{} -12344,Pinguicula's_fruit_Jam,Pinguicula's Fruit Jam,2,0,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ specialeffect2 EF_POTION_BERSERK; sc_start SC_SPL_ATK,600000,10; },{},{} -12345,Luciola's_Honey_Jam,Luciola's Honey Jam,2,0,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ specialeffect2 EF_GUARD; sc_start SC_SPL_DEF,600000,10; },{},{} -12346,Unripe_Acorn,Unripe Acorn,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ heal -100,0; },{},{} -12347,Acorn_Jelly,Acorn Jelly,11,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "ALL_REVERSEORCISH",1; },{},{} -12348,Manuk's_Faith,Manuk's Faith,2,0,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ specialeffect2 EF_POTION_BERSERK; sc_start SC_MANU_MATK,600000,10; },{},{} -12349,Cornus'_Tears,Cornus' Tears,2,0,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ specialeffect2 EF_POTION_BERSERK; sc_start SC_SPL_MATK,600000,10; },{},{} -12350,Angeling_Potion,Angeling Potion,11,20,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,120000,5; itemskill "AL_ANGELUS",5; },{},{} -12351,Shout_Megaphone,Scream Megaphone,11,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "MC_LOUD",1; },{},{} -12352,Dun_Tele_Scroll3,Dungeon Teleport Scroll 3,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "F_CashDungeon",3; },{},{} -12353,Tiny_Waterbottle,Small Bottle,2,800,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_WATERWEAPON,90000,1; },{},{} -12354,Buche_De_Noel,Buche De Noel,2,2,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ specialeffect2 EF_ANGELUS; sc_start SC_INCMHPRATE,600000,3; sc_start SC_INCMSPRATE,600000,3; sc_start SC_INCHITRATE,600000,3; sc_start SC_INCCRI,600000,7; },{},{} -12355,Xmas_Gift,Xmas Gift,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_Xmas_Gift),1; },{},{} -12356,Louise_Costume_Box,Louise Costume Box,2,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_Louise_Costume_Box),1; },{},{} -12357,Shiny_Wing_Gown,Shiny Wing Gown,2,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1630; },{},{} -12358,Fan_Of_Wind,Fan Of Wind,2,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1513; },{},{} -12359,Very_Soft_Plant,Very Soft Plant,2,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1586; },{},{} -12360,Very_Red_Juice,Very Red Juice,2,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1505; },{},{} -12361,Delicious_Shaved_Ice,Delicious Shaved Ice,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1143; },{},{} -12362,Kuloren,Kuloren,2,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1401; },{},{} -12363,Fit_Pipe,Fit Pipe,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1179; },{},{} -12364,Staff_Of_Leader,Staff Of Leader,2,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1299; },{},{} -12365,Charming_Lotus,Charming Lotus,2,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1416; },{},{} -12366,Gril_Doll,Girl's Doll,2,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1404; },{},{} -12367,Luxury_Whisky_Bottle,Luxury Whisky Bottle,2,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1504; },{},{} -12368,Splendid_Mirror,Splendid Mirror,2,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1148; },{},{} -12369,Oilpalm_Coconut,Oilpalm Coconut,2,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1495; },{},{} -12370,Gril's_Naivety,Girl's Naivety,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1374; },{},{} -12371,Magical_Lithography,Magical Lithography,2,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1040; },{},{} -12372,Hell_Contract,Hell Contract,2,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1379; },{},{} -12373,Boy's_Naivety,Boy's Pure Heart,2,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1370; },{},{} -12374,Flaming_Ice,Ice Fireworks,2,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1837; },{},{} -12375,Acaraje,Akaraje,2,0,,80,,,,,0xFFFFFFFF,7,2,,,,,,{ specialeffect2 EF_STEAL; bonus_script "{ bonus bHit,5; bonus bAspdRate,10; }",1200,0,0,EFST_ACARAJE; },{},{} -12376,Mysterious_Can2,Mysterious Can2,2,10,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 3,0; itemskill "PR_GLORIA",2; },{},{} -12377,Mysterious_PET_Bottle2,Mysterious PET Bottle2,2,10,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 0,3; itemskill "PR_MAGNIFICAT",1; },{},{} -12378,2009_Rice_Cake_Soup,Rice Cake Soup,2,10,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ /* percentheal 50,50; */ },{},{} -12379,Pope's_Cookie,Pope Cookie,2,10,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12380,Desert_Wolf_Babe_Scroll,Job Change Flute,2,10,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ mercenary_create 2034,1800000; },{},{} -12381,ValkyrieA_Scroll,Ancient Languages Scroll,2,10,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ if(strcharinfo(3)=="job3_arch02") { mercenary_create 2037,1800000; } },{},{} -12382,ValkyrieB_Scroll,Ancient Languages Scroll,2,10,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ if(strcharinfo(3)=="job3_arch02") { mercenary_create 2038,1800000; } },{},{} -12383,Vulcan_Bullet_Magazine,Vulcan Bullet Magazine,2,11000,,500,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 6145,1000; },{},{} -12384,Rainbow_Ruby_Water,Rainbow Ruby,11,0,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ /* if(strcharinfo(3)=="job3_war02") { itemskill "WL_FROSTMISTY",5; } */ },{},{} -12385,Rainbow_Ruby_Fire,Rainbow Ruby,11,0,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ /* if(strcharinfo(3)=="job3_war02") { itemskill "WL_CRIMSONROCK",5; } */ },{},{} -12386,Rainbow_Ruby_Wind,Rainbow Ruby,11,0,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ /* if(strcharinfo(3)=="job3_war02") { itemskill "WL_CHAINLIGHTNING",5; } */ },{},{} -12387,Rainbow_Ruby_Earth,Rainbow Ruby,11,0,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ /* if(strcharinfo(3)=="job3_war02") { itemskill "WL_EARTHSTRAIN",5; } */ },{},{} -12388,Runstone_Crush,Rhydo Runestone For Apprentice,11,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ /* if(strcharinfo(3)=="job3_rune02") { itemskill "RK_CRUSHSTRIKE",1; } */ },{},{} -12389,Runstone_Storm,Pertz Runestone For Apprentice,11,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ /* if(strcharinfo(3)=="job3_rune02") { itemskill "RK_STORMBLAST",1; } */ },{},{} -12390,Runstone_Millennium,Verkana Runestone For Apprentice,11,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ /* if(strcharinfo(3)=="job3_rune02") { itemskill "RK_MILLENNIUMSHIELD",1; } */ },{},{} -12391,Lucky_Egg_C,Lucky Egg,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12392,RepairA,Repair A,2,220,,100,,,,,0x00000400,8,2,,,,,,{ if ( checkmadogear() ) { itemheal rand(200,300),0; } },{},{} -12393,RepairB,Repair B,2,500,,140,,,,,0x00000400,8,2,,,,,,{ if ( checkmadogear() ) { itemheal rand(300,400),0; } },{},{} -12394,RepairC,Repair C,2,1100,,180,,,,,0x00000400,8,2,,,,,,{ if ( checkmadogear() ) { itemheal rand(400,500),0; } },{},{} -12395,Tantanmen,Tantan Noodle,2,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1519; },{},{} -12396,Fools_Day_Box,Gift Box?,11,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ .@rnd = rand(1,10); if(.@rnd==1) itemskill "AL_TELEPORT",1; else if(.@rnd==2) itemskill "AL_TELEPORT",3; else if(.@rnd==3) percentheal 50,0; else if(.@rnd==4) percentheal 0,50; else if(.@rnd==5) end; else if(.@rnd==6) getitem 512,1; else if(.@rnd==7) itemskill "ALL_REVERSEORCISH",1; else if(.@rnd==8) specialeffect2 EF_MAPPILLAR2; else if(.@rnd==9) specialeffect2 EF_ANGEL2; else specialeffect2 EF_COIN; },{},{} -12397,Fools_Day_Box2,Gift Box?,11,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ .@rnd = rand(1,10); if(.@rnd==1) itemskill "TF_DETOXIFY",1; else if(.@rnd==2) itemskill "TF_PICKSTONE",1; else if(.@rnd==3) itemskill "BA_FROSTJOKER",1; else if(.@rnd==4) itemskill "DC_SCREAM",1; else if(.@rnd==5) end; else if(.@rnd==6) getitem 909,1; else if(.@rnd==7) itemskill "AL_RUWACH",1; else if(.@rnd==8) specialeffect2 EF_BEGINASURA; else if(.@rnd==9) specialeffect2 EF_MVP; else specialeffect2 EF_CURSEATTACK; },{},{} -12398,PCBang_Gift_Box,PCBang Gift Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12399,Castle_Treasure_Box,Castle Treasure Box,2,20,,1000,,,,,0xFFFFFFFF,7,2,,,,,,{ Zeny += 1000000; },{},{} -12400,Water_Of_Blessing_,Water Of Blessing,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12401,Rune_Kn_Test_Int,Rune Kn Test Int,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INCINT,300000,40; },{},{} -12402,29Fruit,29Fruit,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 5,5; },{},{} -12403,Lucky_Egg_C2,Lucky Egg2,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12404,Acti_Potion,Acti Potion,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12405,Underripe_Yggseed,Underripe Yggseed,2,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 30,30; skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,140000,5; },{},{} -12406,Psychic_ArmorS,Psychic ArmorS,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12407,PCBang_Coupon_Box,PCBang Coupon Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12408,Leaf_Cat_Ball,Leaf Cat Ball,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 2081; },{},{} -12409,Pork_Belly_H,1st Class Pork Belly,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12410,Spareribs_H,Thick Pork Belly H,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12411,HE_Battle_Manual,HE Battle Manual,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_EXPBOOST,900000,200; },{},{} -12412,HE_Bubble_Gum,HE Bubble Gum,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_ITEMBOOST,900000,300; },{},{} -12413,PCBang_Coupon_Box2,PCBang Coupon Box2,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12414,Guarana_Candy,Guarana Candy,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_ASPDPOTION0,1800000,0; sc_start SC_INCREASEAGI,140000,5; skilleffect "AL_INCAGI",0; },{},{} -12415,Siege_Teleport_Scroll2,Siege Teleport Scroll Silver,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12416,Lucky_Egg_C3,Lucky Egg C3,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12417,Boost500,Boost500,2,100,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_BOOST500,500000,10; },{},{} -12418,Full_SwingK,Full SwingK,2,100,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_FULL_SWING_K,500000,50; },{},{} -12419,Mana_Plus,Mana Plus,2,100,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_MANA_PLUS,500000,50; },{},{} -12420,Stamina_Up_M,Stamina Up M,2,100,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_MUSTLE_M,500000,5; },{},{} -12421,Digestive_F,Falmons F,2,10,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_LIFE_FORCE_F,500000,5; },{},{} -12422,HP_Increase_PotionS,HP Increase Potion (Small),2,100,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,1; percentheal 1,0; },{},{} -12423,HP_Increase_PotionM,HP Increase Potion (Medium),2,100,,40,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,2; percentheal 2,0; },{},{} -12424,HP_Increase_PotionL,HP Increase Potion (Large),2,100,,80,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,3; percentheal 5,0; },{},{} -12425,SP_Increase_PotionS,SP Increase Potion (Small),2,100,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start2 SC_ENERGY_DRINK_RESERCH,500000,1,1; percentheal 0,2; },{},{} -12426,SP_Increase_PotionM,SP Increase Potion (Medium),2,100,,40,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start2 SC_ENERGY_DRINK_RESERCH,500000,1,2; percentheal 0,4; },{},{} -12427,SP_Increase_PotionL,SP Increase Potion (Large),2,100,,80,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start2 SC_ENERGY_DRINK_RESERCH,500000,1,3; percentheal 0,8; },{},{} -12428,Enrich_White_PotionZ,Concentrated White Potion Z,0,10,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_EXTRACT_WHITE_POTION_Z,500000,20; heal 1000,0; },{},{} -12429,Savage_BBQ,Savage Full Roast,2,,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_SAVAGE_STEAK,300000,20; },{},{} -12430,Wug_Blood_Cocktail,Cocktail Warg Blood,2,,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_COCKTAIL_WARG_BLOOD,300000,20; },{},{} -12431,Minor_Brisket,Minor Stew,2,,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_MINOR_BBQ,300000,20; },{},{} -12432,Siroma_Icetea,Siroma Iced Tea,2,,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_SIROMA_ICE_TEA,300000,20; },{},{} -12433,Drocera_Herb_Stew,Drosera Herb Salad,2,,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_DROCERA_HERB_STEAMED,300000,20; },{},{} -12434,Petti_Tail_Noodle,Petite Tail Noodles,2,,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_PUTTI_TAILS_NOODLES,300000,20; },{},{} -12435,Black_Thing,Black Mass,2,,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_STOMACHACHE,60000,rand(5,10); },{},{} -12436,Vitata500,Vitata 500,0,10,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_VITATA_500,500000,0; itemheal 0,200; },{},{} -12437,Enrich_Celermine_Juice,Concentrated Ceromain Soup,2,10,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_EXTRACT_SALAMINE_JUICE,500000,10; },{},{} -12438,F_Giant_Fly_Wing,F Giant Fly Wing,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12439,F_Battle_Manual,F Battle Manual,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12440,F_Insurance,F Insurance,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12441,F_Bubble_Gum,F Bubble Gum,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12442,F_Kafra_Card,F Kafra Card,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12443,F_Neuralizer,F Neuralizer,2,2,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12444,F_Dun_Tele_Scroll1,F Dun Tele Scroll1,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12445,F_Str_Dish10_,F Str Dish10,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12446,F_Agi_Dish10_,F Agi Dish10,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12447,F_Int_Dish10_,F Int Dish10,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12448,F_Dex_Dish10_,F Dex Dish10,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12449,F_Luk_Dish10_,F Luk Dish10,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12450,F_Vit_Dish10_,F Vit Dish10,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12451,F_WOB_Rune,F WOB Rune,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12452,F_WOB_Schwaltz,F WOB Schwarz,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12453,F_WOB_Rachel,F WOB Rachel,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12454,F_WOB_Local,F WOB Local,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12456,F_Greed_Scroll,F Greed Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12457,F_Glass_Of_Illusion,F Glass Of Illusion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12458,F_Abrasive,F Abrasive,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12459,F_Med_Life_Potion,F Med Life Potion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12460,F_Small_Life_Potion,F Small Life Potion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12461,F_Regeneration_Potion,F Regeneration Potion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12462,F_B_Mdef_Potion,F B Mdef Potion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12463,F_S_Mdef_Potion,F S Mdef Potion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12464,F_B_Def_Potion,F B Def Potion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12465,F_S_Def_Potion,F S Def Potion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12466,F_Blessing_10_Scroll,F Blessing 10 Scroll,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12467,F_Inc_Agi_10_Scroll,F Inc Agi 10 Scroll,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12468,F_Aspersio_5_Scroll,F Aspersio 5 Scroll,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12470,F_Wind_Walk_10_Scroll,F Wind Walk 10 Scroll,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12471,F_Adrenaline_Scroll,F Adrenaline Scroll,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12472,F_Convex_Mirror,F Convex Mirror,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12473,RWC_Parti_Box,RWC Parti Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12474,RWC_Final_Comp_Box,RWC Final Comp Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12475,Cure_Free,Cure Free,2,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_end SC_SILENCE; sc_end SC_BLEEDING; sc_end SC_POISON; sc_end SC_CURSE; sc_end SC_ORCISH; sc_end SC_CHANGEUNDEAD; itemheal 500,0; },{},{} -12476,PCBang_Coupon_Box3,PCBang Coupon Box3,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12477,Gift_Bundle,Gift Bundle,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12478,Chance_Box,Chance Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12479,Caracas_Ring_Box,Caracas Ring Box,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12480,Attend_3Day_Box,Attend 3Day Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12481,Attend_7Day_Box,Attend 7Day Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12482,Attend_10Day_Box,Attend 10Day Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12483,Attend_15Day_Box,Attend 15Day Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12484,Attend_20Day_Box,Attend 20Day Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12485,Attend_25Day_Box,Attend 25Day Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12486,GoldPC_First_Box,GoldPC First Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12487,PC_4Leaf_Clover_Box,PC 4Leaf Clover Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12488,Ticket_Gift_Box,Ticket Gift Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12489,Ticket_Gift_Box2,Ticket Gift Box2,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12490,Vivid_Notation,Vivid Notation,2,20,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12491,Curious_Snowball,Curious Snowball,2,20,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "F_Snowball"; },{},{} -12492,Crumpled_Paper,Crumpled Paper,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12493,Lucky_Egg_C4,Lucky Egg C4,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12494,E_Giant_Fly_Wing,E Giant Fly Wing,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12495,E_Battle_Manual,E Battle Manual,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12496,E_Insurance,E Insurance,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12497,E_Bubble_Gum,E Bubble Gum,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12498,E_Kafra_Card,E Kafra Card,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12499,E_Neuralizer,E Neuralizer,2,2,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12500,E_Dun_Tele_Scroll1,E Dun Tele Scroll1,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12501,E_Str_Dish10_,E Str Dish10,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12502,E_Agi_Dish10_,E Agi Dish10,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12503,E_Int_Dish10_,E Int Dish10,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12504,E_Dex_Dish10_,E Dex Dish10,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12505,E_Luk_Dish10_,E Luk Dish10,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12506,E_Vit_Dish10_,E Vit Dish10,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12507,E_WOB_Rune,Yellow Butterfly Wing,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "F_CashCity",1; },{},{} -12508,E_WOB_Schwaltz,Green Butterfly Wing,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "F_CashCity",2; },{},{} -12509,E_WOB_Rachel,Red Butterfly Wing,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "F_CashCity",3; },{},{} -12510,E_WOB_Local,Blue Butterfly Wing,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "F_CashCity",5; },{},{} -12511,E_Siege_Teleport_Scroll,E Siege Teleport Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12512,E_Greed_Scroll,E Greed Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12513,E_Glass_Of_Illusion,E Glass Of Illusion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12514,E_Abrasive,E Abrasive,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12515,E_Med_Life_Potion,E Med Life Potion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12516,E_Small_Life_Potion,E Small Life Potion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12517,E_Regeneration_Potion,E Regeneration Potion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12518,E_B_Mdef_Potion,E B Mdef Potion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12519,E_S_Mdef_Potion,E S Mdef Potion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12520,E_B_Def_Potion,E B Def Potion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12521,E_S_Def_Potion,E S Def Potion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12522,E_Blessing_10_Scroll,E Blessing 10 Scroll,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12523,E_Inc_Agi_10_Scroll,E Inc Agi 10 Scroll,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12524,E_Aspersio_5_Scroll,E Aspersio 5 Scroll,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12525,E_Assumptio_5_Scroll,E Assumptio 5 Scroll,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12526,E_Wind_Walk_10_Scroll,E Wind Walk 10 Scroll,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12527,E_Adrenaline_Scroll,E Adrenaline Scroll,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12528,E_Convex_Mirror,E Convex Mirror,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12529,White_Slim_Potion_Box,White Slim Potion Box,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12530,Mastela_Fruit_Box,Mastela Fruit Box,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12531,White_Potion_Box,White Potion Box,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12532,Royal_Jelly_Box2,Royal Jelly Box2,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12533,Blue_Herb_Box2,Blue Herb Box2,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12534,Yggdrasil_Seed_Box,Yggdrasil Seed Box,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12535,Iggdrasilberry_Box,Iggdrasilberry Box,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12536,NY_Rice_Cake_Soup,NY Rice Cake Soup,2,20,,100,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12537,Solo_Gift_Basket,Solo Gift Basket,2,1000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12538,Couple_Event_Basket,Couple Event Basket,2,2000,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12539,Splendid_Box,Splendid Box,2,20,,100,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12540,GM_Warp_Box,GM Warp Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12541,Fortune_Cookie1,Fortune Cookie1,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12542,Fortune_Cookie2,Fortune Cookie2,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12543,Fortune_Cookie3,Fortune Cookie3,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12544,Mystic_Tree_Branch,Mystic Tree Branch,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12545,Lucky_Egg_C5,Lucky Egg C5,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12546,Suspicious_Dish,Suspicious Dish,2,100,,50,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12547,Chalcenodny_Box,Chalcenodny Box,2,0,,200,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12548,Buy_Market_Permit2,Shabby Purchase Street Stall License,2,500,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ buyingstore 2; },{},{} -12549,White_Slim_Pot_Box2,White Slim Pot Box2,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12550,Poison_Bottle_Box2,Poison Bottle Box2,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12551,MVP_Tele_Scroll,MVP Tele Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12552,Quest_Tele_Scroll,Quest Tele Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12553,Brysinggamen_Piece_Box,Brysinggamen Piece Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12554,Asprika_Piece_Box,Asprika Piece Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12555,Brynhild_Piece_Box,Brynhild Piece Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12556,Sleipnir_Piece_Box,Sleipnir Piece Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12557,Mjolnir_Piece_Box,Mjolnir Piece Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12558,Magingiorde_Piece_Box,Magingiorde Piece Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12559,Tenkaippin_Strong,Tenkaippin Strong,2,650,,200,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12560,Tenkaippin_Clean,Tenkaippin Clean,2,650,,200,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12561,Mysterious_Seed,Mysterious Seed,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12562,Bubble_Gum_Plus,Bubble Gum Plus,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12563,BM75,BM75,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12564,3D_Glasses_Box,3D Glasses Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12565,Cheer_Scarf_Box,Cheer Scarf Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12566,Cheer_Scarf2_Box,Cheer Scarf2 Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12567,Cheer_Scarf3_Box,Cheer Scarf3 Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12568,Cheer_Scarf4_Box,Cheer Scarf4 Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12569,Cheer_Scarf6_Box,Cheer Scarf6 Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12570,Cheer_Scarf8_Box,Cheer Scarf8 Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12571,Cheer_Scarf10_Box,Cheer Scarf10 Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12572,Cheer_Scarf10_Box2,Cheer Scarf10 Box2,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12573,Fruit_Basket,Fruit Basket,2,20,,50,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12574,Mora_Berry,Mora Berry,2,0,,20,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12575,Arrow_Of_Elf_Cntr,Arrow Of Elf Cntr,2,500,,250,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12576,Hunting_Arrow_Cntr,Hunting Arrow Cntr,2,500,,250,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12577,Lucky_Egg_C6,Lucky Egg C6,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12578,Rapid_Life_Water,Rapid Life Water,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12579,Ring_Of_Valkyrie_Box,Ring Of Valkyrie Box,2,20,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12580,Vending_Search_Scroll,Universal Catalog Silver,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ searchstores 10,0; },{},{} -12581,Vending_Search_Scroll2,Universal Catalog Gold,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ searchstores 10,1; },{},{} -12591,Uni_Catalog_Bz,Universal Catalog Bronze,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ searchstores 10,1; },{},{} -12609,Old_Ore_Box,Old Ore Box,2,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12701,Old_Blue_Box_F,Old Blue Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12702,Old_Bleu_Box,Old Navy Box,2,0,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_BleuBox),1; getrandgroupitem(IG_BleuBox),1; },{},{} -12703,Holy_Egg_2,Holy Egg,11,0,,50,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12704,Elixir_Of_Life,Elixir of Life,0,0,,10,,,,,0xFFFFFFFF,7,2,,,85,,,{ percentheal 100,0; },{},{} -12705,Noble_Nameplate,Noble Nameplate,2,0,,100,,,,,0xFFFFFFFF,7,2,,,90,,,{ sc_start SC_EXPBOOST,1800000,100; },{},{} -12706,Lucky_Cookie01,Lucky Cookie,11,0,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "PR_GLORIA",5; },{},{} -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,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,,,,,,{},{},{} -12714,Easter_Scroll,Easter Scroll,2,1,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_Easter_Scroll),1; },{},{} -12715,Black_Treasure_Box,Black Treasure Box,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12716,Indian_Rice_Cake,Indian Rice Cake,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -// Guillotine Cross Poisons -12717,Poison_Paralysis,Paralyze,0,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_PARALYSE,300000,0,10,0; },{},{} -12718,Poison_Leech,Leech End,0,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_LEECHESEND,300000,0,10,0; },{},{} -12719,Poison_Oblivion,Oblivion Curse,0,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_OBLIVIONCURSE,300000,0,10,0; },{},{} -12720,Poison_Contamination,Disheart,0,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_DEATHHURT,300000,0,10,0; },{},{} -12721,Poison_Numb,Toxin,0,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_TOXIN,300000,0,10,0; },{},{} -12722,Poison_Fever,Pyrexia,0,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_PYREXIA,300000,0,10,0; },{},{} -12723,Poison_Laughing,Magic Mushroom,0,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_MAGICMUSHROOM,300000,0,10,0; },{},{} -12724,Poison_Fatigue,Venom Bleed,0,2,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_VENOMBLEED,15000,0,10,0; },{},{} - -// Rune Knight's Rune Stones -12725,Runstone_Nosiege,Nauthiz Rune,2,100,,100,,,,,0xFFFFFFFF,8,2,,,,,,{ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_REFRESH",1; },{},{} -12726,Runstone_Rhydo,Raido Rune,2,100,,100,,,,,0xFFFFFFFF,8,2,,,,,,{ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_CRUSHSTRIKE",1; },{},{} -12727,Runstone_Verkana,Berkana Rune,2,100,,100,,,,,0xFFFFFFFF,8,2,,,,,,{ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_MILLENNIUMSHIELD",1; },{},{} -12728,Runstone_Isia,Isa Rune,2,100,,100,,,,,0xFFFFFFFF,8,2,,,,,,{ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_VITALITYACTIVATION",1; },{},{} -12729,Runstone_Asir,Othila Rune,2,100,,100,,,,,0xFFFFFFFF,8,2,,,,,,{ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_FIGHTINGSPIRIT",1; },{},{} -12730,Runstone_Urj,Uruz Rune,2,100,,100,,,,,0xFFFFFFFF,8,2,,,,,,{ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_ABUNDANCE",1; },{},{} -12731,Runstone_Turisus,Thurisaz Rune,2,100,,100,,,,,0xFFFFFFFF,8,2,,,,,,{ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_GIANTGROWTH",1; },{},{} -12732,Runstone_Pertz,Wyrd Rune,2,100,,100,,,,,0xFFFFFFFF,8,2,,,,,,{ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_STORMBLAST",1; },{},{} -12733,Runstone_Hagalas,Hagalaz Rune,2,100,,100,,,,,0xFFFFFFFF,8,2,,,,,,{ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_STONEHARDSKIN",1; },{},{} - -// Rune Knight Rune Ores -12734,Runstone_Quality,Luxurious Rune,0,2,,100,,,,,0x00000080,8,2,,,,,,{ makerune 5; },{},{} -12735,Runstone_Ancient,Ancient Rune,0,2,,100,,,,,0x00000080,8,2,,,,,,{ makerune 11; },{},{} -12736,Runstone_Mystic,Mystic Rune,0,2,,100,,,,,0x00000080,8,2,,,,,,{ makerune 14; },{},{} -12737,Runstone_Ordinary,General Rune,0,2,,100,,,,,0x00000080,8,2,,,,,,{ makerune 2; },{},{} -12738,Runstone_Rare,Rare Rune,0,2,,100,,,,,0x00000080,8,2,,,,,,{ makerune 8; },{},{} - -12739,Snow_Flower,Snow Flowers,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12740,Inc_Str_Scroll,Amplification Scroll,2,1,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12741,Inc_Int_Scroll,Intellect Amplification Scroll,2,1,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12742,Valentine_Gift_Box1,Valentine Gift Box,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12743,Valentine_Gift_Box2,Valentine Gift Box,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12744,Chocotate_Box,Chocolate Box,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12745,Skull_Scroll,Skull Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12746,Destruction_Scroll,Destruction Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12747,Royal_Scroll,Royal Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12748,Immune_Scroll,Immune Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12749,Mystic_Scroll,Mystic Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12750,Battle_Scroll,Battle Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12751,Armor_Scroll,Armor Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12752,Prayer_Scroll,Prayer Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12753,Soul_Scroll,Soul Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12754,New_Year_Bun,Chinese Pastel,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12755,Traditional_Firecrack,Chinese Fireworks,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ specialeffect2 EF_POK_JAP; /* itemskill "MO_CALLSPIRITS",3; itemskill "MO_FINGEROFFENSIVE",5; */ },{},{} -12756,New_Gift_Envelope,Chinese New Year Envelope,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12757,Loyal_Ring1_Box,Loyal Ring1 Box,2,10,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12758,Loyal_Ring2_Box,Loyal Ring2 Box,2,10,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12759,Loyal_Ring3_Box,Loyal Ring3 Box,2,10,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12760,Bubble_Gum_Green,Bubble Gum Green,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12761,Bubble_Gum_Yellow,Bubble Gum Yellow,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12762,Bubble_Gum_Orange,Bubble Gum Orange,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12763,Bubble_Gum_Red,Bubble Gum Red,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12764,Fools_Day_Box_Tw,Fools Day Box Tw,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12765,Summer_Knight_Box,Summer Knight Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12766,Reward_Job_BM25,Reward Job BM25,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12767,Passion_FB_Hat_Box,Passion FB Hat Box,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12768,Cool_FB_Hat_Box,Cool FB Hat Box,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12769,Victory_FB_Hat_Box,Victory FB Hat Box,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12770,Glory_FB_Hat_Box,Glory FB Hat Box,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12771,Passion_Hat_Box2,Passion Hat Box2,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12772,Cool_Hat_Box2,Cool Hat Box2,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12773,Victory_Hat_Box2,Victory Hat Box2,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12831,Potion_Box,Potion Box,2,0,,50,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12848,Falcon_Flute,Falcon Flute,11,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ if(getskilllv("HT_FALCON")) { if(!checkoption(Option_Wug) && !checkoption(Option_Wugrider)) setfalcon (!checkfalcon()); } },{},{} -12900,Battle_Manual_Box,Battle Manual Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12208,10; },{},{} -12901,Insurance_Package,Insurance Package,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12209,10; },{},{} -12902,Bubble_Gum_Box,Bubble Gum Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12210,10; },{},{} -12903,Str_Dish_Box,Steamed Tongue Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12202,10; },{},{} -12904,Agi_Dish_Box,Steamed Scorpion Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12203,10; },{},{} -12905,Int_Dish_Box,Dragon Breath Cocktail Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12204,10; },{},{} -12906,Dex_Dish_Box,Hwergelmir's Tonic Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12205,10; },{},{} -12907,Luk_Dish_Box,Nine Tail Dish Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12206,10; },{},{} -12908,Vit_Dish_Box,Stew Of Immortality Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12207,10; },{},{} -12909,Kafra_Card_Box,Kafra Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12211,10; },{},{} -12910,Giant_Fly_Wing_Box,Giant Fly Wing Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12212,10; },{},{} -12911,Neuralizer_Box,Neuralizer Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12213,1; },{},{} -12912,Convex_Mirror_Box,Convex Mirror Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12214,10; },{},{} -12913,Blessing_10_Scroll_Box,Blessing 10 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12215,10; },{},{} -12914,Inc_Agi_10_Scroll_Box,Increase AGI 10 scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12216,10; },{},{} -12915,Aspersio_5_Scroll_Box,Aspersio 5 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12217,10; },{},{} -12916,Assumptio_5_Scroll_Box,Assumptio 5 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12218,10; },{},{} -12917,Wind_Walk_10_Scroll_Box,Wind Walk 10 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12219,10; },{},{} -12918,Adrenaline_Scroll_Box,Adrenaline 5 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12220,10; },{},{} -12919,Megaphone_Box,Megaphone Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12221,10; },{},{} -12920,Enriched_Elunium_Box,Enriched Elunium Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7619,10; },{},{} -12921,Enriched_Oridecon_Box,Enriched Oridecon Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7620,10; },{},{} -12922,Token_Of_Siegfried_Box,Token of Siegfried Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7621,10; },{},{} -12923,Pet_Egg_Scroll_Box1,December Lucky Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12925,1; },{},{} -12924,Pet_Egg_Scroll_Box2,Pet Egg Box 2,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12926,1; },{},{} -12925,Pet_Egg_Scroll1,Kafra Item Mall Prize Package,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12926,Pet_Egg_Scroll2,December Lucky Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12927,J_Aspersio_5_Scroll_Box,Aspersio Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12928,10; },{},{} -12928,J_Aspersio_5_Scroll,Sacred Scroll,11,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "PR_ASPERSIO",5; },{},{} -12929,Pet_Egg_Scroll_Box3,Pet Egg Box 3,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12932,1; },{},{} -12930,Pet_Egg_Scroll_Box4,Pet Egg Box 4,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12933,1; },{},{} -12931,Pet_Egg_Scroll_Box5,Pet Egg Box 5,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12934,1; },{},{} -12932,Pet_Egg_Scroll3,Episode 13.2 Key Package,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12933,Pet_Egg_Scroll4,Summer Hat Pack,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12934,Pet_Egg_Scroll5,Pet Egg Scroll5,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12935,Infiltrator_Box,Infiltrator Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1267,604800; },{},{} -12936,Muramasa_Box,Muramasa Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1173,604800; },{},{} -12937,Excalibur_Box,Excalibur Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13401,604800; },{},{} -12938,Combat_Knife_Box,Combat Knife Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13021,604800; },{},{} -12939,Counter_Dagger_Box,Dagger of Counter Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13022,604800; },{},{} -12940,Kaiser_Knuckle_Box,Kaiser Knuckle Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1817,604800; },{},{} -12941,Pole_Axe_Box,Poll Axe Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1419,604800; },{},{} -12942,Mighty_Staff_Box,Mighty Staff Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1623,604800; },{},{} -12943,Right_Epsilon_Box,Light Epsilon Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1372,604800; },{},{} -12944,Balistar_Box,Ballista Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1728,604800; },{},{} -12945,Diary_Of_Great_Sage_Box,Sage's Diary Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1563,604800; },{},{} -12946,Asura_Box,Asura Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13023,604800; },{},{} -12947,Apple_Of_Archer_Box,Apple of Archer Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5265,1209600; },{},{} -12948,Bunny_Band_Box,Bunny Band Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5266,1209600; },{},{} -12949,Sahkkat_Box,Sakkat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5267,1209600; },{},{} -12950,Lord_Circlet_Box,Grand Circlet Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5268,1209600; },{},{} -12951,Elven_Ears_Box,Elven Ears Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2686,604800; },{},{} -12952,Steel_Flower_Box,Steel Flower Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2687,1209600; },{},{} -12953,Critical_Ring_Box,Critical Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2688,604800; },{},{} -12954,Earring_Box,Earring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2689,604800; },{},{} -12955,Ring_Box,Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2690,604800; },{},{} -12956,Necklace_Box,Necklace Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2691,604800; },{},{} -12957,Glove_Box,Glove Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2692,604800; },{},{} -12958,Brooch_Box,Brooch Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2693,604800; },{},{} -12959,Rosary_Box,Rosary Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2694,604800; },{},{} -12960,Safety_Ring_Box,Safety Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2695,604800; },{},{} -12961,Vesper_Core01_Box,Vesper Core 01 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2696,604800; },{},{} -12962,Vesper_Core02_Box,Vesper Core 02 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2697,604800; },{},{} -12963,Vesper_Core03_Box,Vesper Core 03 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2698,604800; },{},{} -12964,Vesper_Core04_Box,Vesper Core 04 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2699,604800; },{},{} -12965,Emergency_Box1,Emergency Level 1 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12968,1; },{},{} -12966,Emergency_Box2,Emergency Level 2 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12969,1; },{},{} -12967,Emergency_Box3,Emergency Level 3 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12970,1; },{},{} -12968,Emergency_Scroll1,Emergency Level 1 Scroll,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ unitskilluseid getcharid(3),"GD_ITEMEMERGENCYCALL",1; },{},{} -12969,Emergency_Scroll2,Emergency Level 2 Scroll,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ unitskilluseid getcharid(3),"GD_ITEMEMERGENCYCALL",2; },{},{} -12970,Emergency_Scroll3,Emergency Level 3 Scroll,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ unitskilluseid getcharid(3),"GD_ITEMEMERGENCYCALL",3; },{},{} -12971,Teleport_Box1,Teleport Scroll Box 1,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12977,10; },{},{} -12972,Teleport_Box2,Teleport Scroll Box 2,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12978,10; },{},{} -12973,Teleport_Box3,Teleport Scroll Box 3,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12979,10; },{},{} -12974,Teleport_Box4,Teleport Scroll Box 4,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12980,10; },{},{} -12975,Teleport_Box5,Teleport Scroll Box 5,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12981,10; },{},{} -12976,Teleport_Box6,Teleport Scroll Box 6,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12982,10; },{},{} -12977,Teleport_Scroll1,Teleport Scroll 1,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "F_CashTele",1; },{},{} -12978,Teleport_Scroll2,Teleport Scroll 2,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "F_CashTele",2; },{},{} -12979,Teleport_Scroll3,Teleport Scroll 3,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "F_CashTele",3; },{},{} -12980,Teleport_Scroll4,Teleport Scroll 4,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "F_CashTele",4; },{},{} -12981,Teleport_Scroll5,Teleport Scroll 5,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "F_CashTele",5; },{},{} -12982,Teleport_Scroll6,Teleport Scroll 6,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "F_CashTele",6; },{},{} -12983,Pet_Egg_Scroll_Box6,Pet Egg Scroll Box 6,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12989,1; },{},{} -12984,Pet_Egg_Scroll_Box7,Pet Egg Scroll Box 7,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12990,1; },{},{} -12985,Pet_Egg_Scroll_Box8,Pet Egg Scroll Box 8,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12991,1; },{},{} -12986,Pet_Egg_Scroll_Box9,Adventurer Pack Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12992,1; },{},{} -12987,Pet_Egg_Scroll_Box10,Pet Egg Scroll Box 10,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12993,1; },{},{} -12988,Pet_Egg_Scroll_Box11,Pet Egg Scroll Box 11,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12994,1; },{},{} -12989,Pet_Egg_Scroll6,Pet Egg Scroll 6,11,,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12990,Pet_Egg_Scroll7,Pet Egg Scroll 7,11,,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12991,Pet_Egg_Scroll8,Party Hard Pack,11,,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12992,Pet_Egg_Scroll9,Adventurer Pack,11,,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12993,Pet_Egg_Scroll10,Pet Egg Scroll 10,11,,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12994,Pet_Egg_Scroll11,Pet Egg Scroll 11,11,,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -12995,White_Herb_Box,White Herb Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 509,15; },{},{} -12996,Blue_Herb_Box,Blue Herb Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 510,15; },{},{} -12997,Elunium_Box,Elunium Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 985,5; },{},{} -12998,Oridecon_Box,Oridecon Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 984,5; },{},{} -12999,Branch_Of_Dead_Tree_Box,Dead Branch Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 604,3; },{},{} -// More Weapons -//=================================================================== -// Daggers and Ninja Weapons -13000,Jujube_Dagger,Jujube Dagger,5,10000,,600,39,,1,0,0x3E9F7EEF,7,2,2,1,1,1,1,{ bonus bAtkEle,Ele_Wind; },{},{} -13001,Dragon_Killer,Dragon Killer,5,20,,900,110,,1,0,0x3E9F7EEF,7,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,7,2,2,4,70,1,1,{ bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Blind,500; bonus2 bAddEff2,Eff_Blind,50; },{},{} -13003,Coward,Cowardice Blade,5,52000,,700,80,,1,1,0x02021040,7,2,2,3,55,1,1,{ bonus bDef,5; },{},{} -13004,Coward_,Cowardice Blade,5,52000,,700,80,,1,2,0x02021040,7,2,2,3,55,1,1,{ bonus bDef,5; },{},{} -13005,Angelwing_Short_Sword,Angelic Wing Dagger,5,20,,600,120,,1,2,0x00000001,7,2,2,4,50,1,1,{},{},{} -13006,Khukri,Khukri,5,240000,,600,150,,1,0,0x02000000,7,2,2,3,65,1,1,{ bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Curse,1000; },{},{} -13007,Jitte,Jitte,5,20000,,400,70,,1,0,0x02000000,7,2,2,2,35,1,1,{ bonus bBreakWeaponRate,200; },{},{} -13008,Jitte_,Jitte,5,20000,,400,70,,1,1,0x02000000,7,2,2,2,35,1,1,{ bonus bBreakWeaponRate,200; },{},{} -13009,Kamaitachi,Kamaitachi,5,48000,,900,125,,2,0,0x02000000,7,2,2,4,70,1,1,{ bonus bAtkEle,Ele_Wind; bonus bCritical,3; bonus bAspdRate,3; },{},{} -13010,Asura,Asura,5,3000,,600,50,,1,2,0x02000000,7,2,2,1,12,1,1,{ bonus bMatkRate,10; },{},{} -13011,Asura_,Asura,5,3000,,600,50,,1,3,0x02000000,7,2,2,1,12,1,1,{ bonus bMatkRate,10; },{},{} -13012,Murasame,Murasame,5,20,,700,95,,1,1,0x02000000,7,2,2,2,24,1,1,{ bonus bAtkEle,Ele_Water; bonus2 bCriticalAddRace,RC_DemiHuman,10; bonus2 bCriticalAddRace,RC_Player_Human,10; },{},{} -13013,Murasame_,Murasame,5,20,,700,95,,1,2,0x02000000,7,2,2,2,24,1,1,{ bonus bAtkEle,Ele_Water; bonus2 bCriticalAddRace,RC_DemiHuman,10; bonus2 bCriticalAddRace,RC_Player_Human,10; },{},{} -13014,Hakujin,Hakujin,5,20,,800,120,,1,0,0x02000000,7,2,2,3,42,1,1,{ bonus bInt,2; bonus3 bAutoSpell,"AL_HEAL",1,10; },{},{} -13015,Hakujin_,Hakujin,5,20,,800,120,,1,1,0x02000000,7,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,7,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,7,2,2,4,36,1,1,{ bonus bDefRatioAtkClass,Class_All; },{},{} -13018,Sucsamad_,Sucsamad,5,20,,800,140,,1,1,0x028F5EEE,7,2,2,4,36,1,1,{ bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Wind,10; bonus bUnbreakableWeapon; },{},{} -13019,Ginnungagap_,Ginnungagap,5,20,,700,148,,1,1,0x3E9F7EEF,7,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,0xFFFFFFFF,7,2,2,4,48,1,1,{ bonus bAllStats,5; },{},{} -13021,Combat_Knife_C,Combat Knife,5,1,,0,129,,1,0,0x028F5EEE,7,2,2,4,1,0,1,{ bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Demon,-10; bonus bMaxSPrate,10; bonus bSPDrainValue,3; },{},{} -13022,Counter_Dagger_C,Dagger of Counter,5,1,,0,209,,1,0,0x00810204,7,2,2,4,1,0,1,{ bonus bCritical,90; },{},{} -13023,Asura_C,Ashura,5,1,,0,120,,1,0,0x02000000,7,2,2,1,1,0,1,{ bonus bMatkRate,15; },{},{} -13024,Sword_Breaker_C,Refined Swordbreaker,5,2,,0,105,,1,0,0x028F5EEE,7,2,2,4,0,0,1,{ bonus bBreakWeaponRate,500; },{},{} -13025,Mail_Breaker_C,Refined Mailbreaker,5,2,,0,105,,1,0,0x028F5EEE,7,2,2,4,0,0,1,{ bonus bBreakArmorRate,500; },{},{} -13026,Moonlight_Sword_C,Moonlight Dagger,5,2,,0,85,,1,0,0x028F5EEE,7,2,2,4,0,0,1,{ bonus bMaxSPrate,10; bonus bSPDrainValue,3; },{},{} -13027,Scalpel,Scalpel,5,20,,500,120,,1,3,0x028F5EEE,2,2,2,4,55,1,1,{ bonus2 bAddEff,Eff_Bleeding,500; },{},{} -13028,Tooth_Blade,Tooth Blade,5,20,,700,130,,1,1,0x028F5EEE,2,2,2,4,55,1,1,{ if(getrefine()>=9){ bonus3 bAutoSpell,"NPC_SLOWCAST",2,70; } else bonus3 bAutoSpell,"NPC_SLOWCAST",1,50; },{},{} -13029,Prinsence_Knife,Prinsense Knife,5,20,,0,120,,1,0,0x028F5EEE,7,2,2,1,0,0,1,{ bonus2 bAddClass,Class_All,50; },{},{} -13030,Dragon_Killer_,Dragon Killer,5,20,,900,110,,1,2,0x3E9F7EEF,7,2,2,4,60,1,1,{ bonus bIgnoreDefRace,RC_Dragon; bonus2 bExpAddRace,RC_Dragon,10; },{},{} -13031,Sword_Breaker_,Swordbreaker,5,20,,1000,70,,1,3,0x028F5EEE,7,2,2,4,36,1,1,{ bonus bBreakWeaponRate,500; },{},{} -13032,Mail_Breaker_,Mailbreaker,5,20,,1000,70,,1,3,0x028F5EEE,7,2,2,4,36,1,1,{ bonus bBreakArmorRate,500; },{},{} -13033,Assasin_Dagger_,Assassin Dagger,5,20,,600,140,,1,1,0x00001000,7,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,2,2,2,2,70,1,1,{},{},{} -13035,Sandstorm,Sandstorm,5,20,,600,50,,1,4,0x00001000,2,2,2,2,70,1,1,{},{},{} -13036,BF_Dagger1,Brave Assassin's Damascus,5,20,,0,120,,1,0,0x3E9F7EEF,7,2,2,3,80,1,1,{ bonus bStr,1; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(Class==Job_Ninja||Class==Job_Rogue||Class==Job_Stalker) bonus bMatkRate,15; },{},{} -13037,BF_Dagger2,Valorous Assassin's Damascus,5,20,,0,120,,1,0,0x3E9F7EEF,7,2,2,3,80,1,1,{ bonus bStr,1; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus bUnbreakableWeapon; 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,2,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,2,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,7,2,2,1,1,0,1,{},{},{} -13041,N_Main_Gauche,Novice Main Gauche,5,0,,0,63,,1,3,0x3E9F7EEF,7,2,2,1,1,0,1,{},{},{} -13042,Krieger_Dagger1,Glorious Gladius,5,20,,0,120,,1,0,0x3E9F7EEF,7,2,2,4,80,1,1,{ bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus3 bAutoSpell,"PR_LEXDIVINA",1,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) bonus4 bAutoSpellOnSkill,"RG_RAID","NPC_WIDEBLEEDING",1,250; },{},{} -13043,Fortune_Sword_I,Fortune Sword,5,0,,0,120,,1,0,0x028F5EEE,7,2,2,4,0,0,1,{ bonus bLuk,5; },{},{} -13044,House_Auger_I,Ice Pick,5,0,,0,105,,1,0,0x028F5EEE,7,2,2,4,0,0,1,{},{},{} -13045,Kamaitachi_I,Kamaitachi,5,0,,0,155,,2,0,0x02000000,7,2,2,4,0,0,1,{},{},{} -13046,Krieg,Krierg,5,20,,500,110,,1,3,0x00021040,2,2,2,2,50,1,1,{ bonus3 bAddEffOnSkill,"RG_BACKSTAP",Eff_Bleeding,1000; bonus2 bSkillAtk,"RG_BACKSTAP",15; },{},{} -13047,Weihna,Weihna,5,20,,500,135,,1,2,0x00021040,2,2,2,3,50,1,1,{ bonus3 bAddEffOnSkill,"RG_RAID",Eff_Poison,1000; autobonus "{ bonus2 bAddClass,Class_All,10; }",5,5000,BF_WEAPON|BF_SHORT,"{ specialeffect2 EF_POTION_BERSERK; }"; },{},{} -13048,Damascus_C,Damascus,5,0,,0,153,,1,0,0x028F5EEE,7,2,2,3,1,0,1,{ bonus2 bAddSize,Size_All,40; },{},{} -// Revolvers -13100,Six_Shooter,Six Shooter,5,4500,,400,30,,7,1,0x41000000,7,2,34,1,10,1,17,{ bonus bHit,-10; },{},{} -13101,Six_Shooter_,Six Shooter,5,4500,,400,30,,7,2,0x41000000,7,2,34,1,10,1,17,{ bonus bHit,-10; },{},{} -13102,Crimson_Bolt,Crimson Bolt,5,20000,,450,45,,7,1,0x41000000,7,2,34,2,35,1,17,{ bonus bHit,-10; },{},{} -13103,Crimson_Bolt_,Crimson Bolt,5,20000,,450,45,,7,2,0x41000000,7,2,34,2,35,1,17,{ bonus bHit,-10; },{},{} -13104,The_Garrison,Garrison,5,48000,,500,70,,7,1,0x41000000,7,2,34,2,55,1,17,{ bonus bHit,-10; },{},{} -13105,The_Garrison_,Garrison,5,48000,,500,70,,7,2,0x41000000,7,2,34,2,55,1,17,{ bonus bHit,-10; },{},{} -13106,Gold_Lux,Gold Lux,5,100000,,500,20,,7,0,0x41000000,7,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,7,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,7,2,34,3,80,1,17,{ bonus bDex,2; bonus bHit,-10; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; autobonus "{ bonus bAspdRate,100; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; bonus bUnbreakableWeapon; },{},{} -13109,Wasteland_Outlaw_C,Wasteland Outlaw,5,20,,0,100,,7,0,0x41000000,7,2,34,3,0,0,17,{ bonus bHit,readparam(bAgi)/10; bonus bAspdRate,readparam(bAgi)/14; bonus2 bAddClass,Class_All,10; bonus bMatkRate,10; },{},{} -13110,Krieger_Pistol1,Glorious Pistol,5,0,,0,80,,7,0,0x41000000,7,2,34,4,80,1,17,{ bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5){ bonus2 bAddRace,RC_DemiHuman,pow(getrefine()-4,2); bonus2 bAddRace,RC_Player_Human,pow(getrefine()-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) { bonus4 bAutoSpellOnSkill,"GS_RAPIDSHOWER","GS_GLITTERING",1,1000; bonus2 bSkillAtk,"GS_RAPIDSHOWER",getrefine()*2; } },{},{} -//13111,Sharpshooter_Revolver -13112,P_Revolver1,Eden Revlover I,5,0,,0,4,,7,0,0x41000000,7,2,34,1,26,0,17,{ bonus bHit,-5; },{},{} -13113,P_Revolver2,Eden Revlover II,5,0,,0,60,,7,0,0x41000000,7,2,34,1,40,0,17,{ bonus bHit,-5; },{},{} -// Guns -13150,Branch,Branch,5,3000,,500,50,,9,3,0x41000000,7,2,34,1,1,1,18,{},{},{} -13151,The_Cyclone,Cyclone,5,17500,,700,120,,9,1,0x41000000,7,2,34,2,24,1,18,{ bonus bHit,10; bonus bCritical,10; },{},{} -13152,The_Cyclone_,Cyclone,5,17500,,700,120,,9,2,0x41000000,7,2,34,2,24,1,18,{ bonus bHit,10; bonus bCritical,10; },{},{} -13153,Dusk,Dusk,5,23500,,750,150,,9,1,0x41000000,7,2,34,2,56,1,18,{ bonus bHit,10; bonus bCritical,10; },{},{} -13154,Rolling_Stone,Rolling Stone,5,12000,,900,135,,9,1,0x41000000,7,2,34,1,14,1,20,{ bonus bSplashRange,1; },{},{} -13155,Black_Rose,Black Rose,5,32000,,900,180,,9,1,0x41000000,7,2,34,2,35,1,20,{ bonus bSplashRange,1; },{},{} -13156,Gate_Keeper,Gate Keeper,5,56000,,1000,210,,9,0,0x41000000,7,2,34,2,24,1,20,{ bonus bSplashRange,1; bonus3 bAutoSpell,"GS_SPREADATTACK",6,50; },{},{} -13157,Drifter,Drifter,5,80000,,2300,50,,9,1,0x41000000,7,2,34,2,55,1,19,{},{},{} -13158,Butcher,Butcher,5,130000,,2500,75,,9,0,0x41000000,7,2,34,3,68,1,19,{ bonus2 bCriticalAddRace,RC_Brute,10; bonus2 bCriticalAddRace,RC_Player_Doram,10; },{},{} -13159,Butcher_,Butcher,5,130000,,2500,75,,9,1,0x41000000,7,2,34,3,68,1,19,{ bonus2 bCriticalAddRace,RC_Brute,10; bonus2 bCriticalAddRace,RC_Player_Doram,10; },{},{} -13160,Destroyer,Destroyer,5,110000,,1200,220,,9,0,0x41000000,7,2,34,2,52,1,21,{ bonus bBreakArmorRate,200; },{},{} -13161,Destroyer_,Destroyer,5,110000,,1200,220,,9,1,0x41000000,7,2,34,2,52,1,21,{ bonus bBreakArmorRate,200; },{},{} -13162,Inferno,Inferno,5,230000,,1250,280,,9,1,0x41000000,7,2,34,2,65,1,21,{},{},{} -13163,Long_Barrel,Long Barrel,5,40000,,1000,150,,9,0,0x41000000,7,2,34,3,70,1,18,{ bonus bHit,10; bonus bCritical,20; bonus bAspdRate,-3; bonus3 bAutoSpell,"GS_TRACKING",5,20; },{},{} -13164,Long_Barrel_,Long Barrel,5,40000,,1000,150,,9,1,0x41000000,7,2,34,3,70,1,18,{ bonus bHit,10; bonus bCritical,20; bonus bAspdRate,-3; bonus3 bAutoSpell,"GS_TRACKING",5,20; },{},{} -13165,Jungle_Carbine,Jungle Carbine,5,56000,,700,170,,9,0,0x41000000,7,2,34,3,70,1,18,{ bonus bHit,10; bonus bCritical,4; bonus bAspdRate,10; bonus bHit,-readparam(bDex)/3; },{},{} -13166,Jungle_Carbine_,Jungle Carbine,5,56000,,700,170,,9,1,0x41000000,7,2,34,3,70,1,18,{ bonus bHit,10; bonus bCritical,4; bonus bAspdRate,10; bonus bHit,-readparam(bDex)/3; },{},{} -13167,Gate_KeeperDD,Gate Keeper-DD,5,72000,,1300,200,,9,0,0x41000000,7,2,34,4,70,1,20,{ bonus bSplashRange,1; bonus3 bAutoSpell,"GS_SPREADATTACK",6,50; bonus bDef,getrefine(); bonus bDex,1; },{},{} -13168,Thunder_P,Thunder P,5,76000,,700,80,,9,1,0x41000000,7,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,7,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,7,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,7,2,34,3,80,1,18,{ bonus bDex,2; bonus bHit,10; bonus bCritical,10; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bCastrate,"GS_TRACKING",-25; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; },{},{} -13172,BF_Gatling_Gun1,Soldier Gatling Gun,5,0,,0,80,,9,0,0x41000000,7,2,34,3,80,1,19,{ bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; autobonus "{ bonus bBaseAtk,80; bonus2 bHPLossRate,120,1000; }",10,6000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; bonus bUnbreakableWeapon; },{},{} -13173,BF_Shotgun1,Soldier Shotgun,5,0,,0,100,,9,0,0x41000000,7,2,34,3,80,1,20,{ bonus bDex,2; bonus bSplashRange,1; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; autobonus "{ bonus bBaseAtk,80; bonus2 bHPLossRate,100,1000; }",30,6000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; bonus bUnbreakableWeapon; },{},{} -13174,BF_Launcher1,Soldier Grenade Launcher,5,0,,0,300,,9,0,0x41000000,7,2,34,3,80,1,21,{ bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; autobonus "{ bonus bBaseAtk,300; bonus2 bHPLossRate,120,1000; }",30,9000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; bonus bUnbreakableWeapon; },{},{} -13175,Lever_Action_Rifle_C,Lever Action Rifle,5,20,,0,170,,9,0,0x41000000,7,2,34,3,0,0,18,{ bonus bHit,20; bonus bCritical,50; bonus bAspdRate,-5; },{},{} -13176,Krieger_Rifle1,Glorious Rifle,5,0,,0,90,,9,0,0x41000000,7,2,34,4,80,1,18,{ bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) { bonus2 bCastrate,"GS_TRACKING",25; bonus2 bSkillAtk,"GS_TRACKING",getrefine() * 3; } },{},{} -13177,Krieger_Gatling1,Glorious Gatling Gun,5,0,,0,90,,9,0,0x41000000,7,2,34,4,80,1,19,{ bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) {bonus2 bAddClass,Class_All,getrefine(); } },{},{} -13178,Krieger_Shotgun1,Glorious Shotgun,5,0,,0,110,,9,0,0x41000000,7,2,34,4,80,1,20,{ bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bSplashRange,1; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) { bonus2 bSkillAtk,"GS_SPREADATTACK",getrefine() * 2; bonus3 bAddEffOnSkill,"GS_SPREADATTACK",Eff_Stun,2000; } },{},{} -13179,Krieger_Launcher1,Glorious Grenade Launcher,5,0,,0,330,,9,0,0x41000000,7,2,34,4,80,1,21,{ bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) { bonus2 bSkillAtk,"GS_GROUNDDRIFT",getrefine() * 2; bonus3 bAddEffOnSkill,"GS_SPREADATTACK",Eff_Stun,2000; autobonus "{ bonus bAspdRate,20; }",200,20000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; } },{},{} -// Bullets -13200,Bullet,Bullet,10,1,,2,10,,,,0x41000000,7,2,32768,,1,,3,{},{},{} -13201,Silver_Bullet,Silver Bullet,10,15,,2,15,,,,0x41000000,7,2,32768,,1,,3,{ bonus bAtkEle,Ele_Holy; },{},{} -13202,Shell_Of_Blood,Bloody Shell,10,30,,2,30,,,,0x41000000,7,2,32768,,1,,3,{ bonus2 bAddEff,Eff_Bleeding,100; },{},{} -13203,Flare_Sphere,Flare Sphere,10,80,,5,50,,,,0x41000000,7,2,32768,,1,,5,{ bonus bAtkEle,Ele_Fire; },{},{} -13204,Lighting_Sphere,Lightning Sphere,10,80,,5,50,,,,0x41000000,7,2,32768,,1,,5,{ bonus bAtkEle,Ele_Wind; },{},{} -13205,Poison_Sphere,Poison Sphere,10,80,,5,50,,,,0x41000000,7,2,32768,,1,,5,{ bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,500; },{},{} -13206,Blind_Sphere,Blind Sphere,10,80,,5,50,,,,0x41000000,7,2,32768,,1,,5,{ bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Blind,500; },{},{} -13207,Freezing_Sphere,Freezing Sphere,10,80,,5,50,,,,0x41000000,7,2,32768,,1,,5,{ bonus bAtkEle,Ele_Water; },{},{} -// Shurikens & Kunais -13250,Shuriken,Shuriken,10,4,,5,10,,,,0x02000000,7,2,32768,,1,,6,{},{},{} -13251,Nimbus_Shuriken,Nimbus Shuriken,10,10,,5,30,,,,0x02000000,7,2,32768,,20,,6,{},{},{} -13252,Flash_Shuriken,Flash Shuriken,10,20,,5,45,,,,0x02000000,7,2,32768,,40,,6,{},{},{} -13253,Sharp_Leaf_Shuriken,Sharp Leaf Shuriken,10,40,,5,70,,,,0x02000000,7,2,32768,,60,,6,{},{},{} -13254,Thorn_Needle_Shuriken,Thorn Needle Shuriken,10,100,,5,100,,,,0x02000000,7,2,32768,,80,,6,{},{},{} -13255,Kunai_Of_Icicle,Icicle Kunai,10,10,,20,30,,,,0x02000000,7,2,32768,,1,,7,{ bonus bAtkEle,Ele_Water; },{},{} -13256,Kunai_Of_Black_Soil,Black Earth Kunai,10,10,,20,30,,,,0x02000000,7,2,32768,,1,,7,{ bonus bAtkEle,Ele_Earth; },{},{} -13257,Kunai_Of_Furious_Wind,High Wind Kunai,10,10,,20,30,,,,0x02000000,7,2,32768,,1,,7,{ bonus bAtkEle,Ele_Wind; },{},{} -13258,Kunai_Of_Fierce_Flame,Heat Wave Kunai,10,10,,20,30,,,,0x02000000,7,2,32768,,1,,7,{ bonus bAtkEle,Ele_Fire; },{},{} -13259,Kunai_Of_Deadly_Poison,Fell Poison Kunai,10,10,,20,30,,,,0x02000000,7,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,8,2,32768,,99,,9,{},{},{} -13261,Coconut_Bomb,Coconut Bomb,10,100,,1,0,,,,0x00040000,8,2,32768,,99,,9,{},{},{} -13262,Melon_Bomb,Melon Bomb,10,100,,1,0,,,,0x00040000,8,2,32768,,99,,9,{},{},{} -13263,Pineapple_Bomb,Pineapple Bomb,10,100,,1,0,,,,0x00040000,8,2,32768,,99,,9,{},{},{} -13264,Banana_Bomb,Banana Bomb,10,100,,1,0,,,,0x00040000,8,2,32768,,99,,9,{},{},{} -13265,Black_Lump,Black Lump,10,100,,50,0,,,,0x00040000,8,2,32768,,99,,9,{},{},{} -13266,Black_Hard_Lump,Hard Black Lump,10,100,,50,0,,,,0x00040000,8,2,32768,,99,,9,{},{},{} -13267,Very_Hard_Lump,Extremely Hard Black Lump,10,100,,50,0,,,,0x00040000,8,2,32768,,99,,9,{},{},{} -13268,Mysterious_Powder,Mysterious Powder,10,100,,10,0,,,,0x00040000,8,2,32768,,99,,9,{ sc_start SC_MYSTERIOUS_POWDER,10000,2; },{},{} -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; 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,{ /* Item bonus in source because of BaseLevel check */ },{},{} -13276,HP_Inc_PotM_To_Throw,Throwing Increase HP Potion (Medium),10,100,,40,0,,,,0x00040000,8,2,32768,,99,,9,{ /* Item bonus in source because of BaseLevel check */ },{},{} -13277,HP_Inc_PotL_To_Throw,Throwing Increase HP Potion (Large),10,100,,80,0,,,,0x00040000,8,2,32768,,99,,9,{ /* Item bonus in source because of BaseLevel check */ },{},{} -13278,SP_Inc_PotS_To_Throw,Throwing Increase SP Potion (Small),10,100,,20,0,,,,0x00040000,8,2,32768,,99,,9,{ /* Item bonus in source because of BaseLevel check */ },{},{} -13279,SP_Inc_PotM_To_Throw,Throwing Increase SP Potion (Medium),10,100,,40,0,,,,0x00040000,8,2,32768,,99,,9,{ /* Item bonus in source because of BaseLevel check */ },{},{} -13280,SP_Inc_PotL_To_Throw,Throwing Increase SP Potion (Large),10,100,,80,0,,,,0x00040000,8,2,32768,,99,,9,{ /* Item bonus in source because of BaseLevel check */ },{},{} -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; },{},{} -13287,Siroma_Icetea_To_Throw,Throwing Siroma Iced Tea,10,100,,50,0,,,,0x00040000,8,2,32768,,99,,9,{ sc_start SC_SIROMA_ICE_TEA,300000,20; },{},{} -13288,Drocera_Stew_To_Throw,Throwing Drosera Herb Salad,10,100,,50,0,,,,0x00040000,8,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,8,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,8,2,32768,,99,,9,{ sc_start SC_STOMACHACHE,60000,rand(5,10); },{},{} -13294,Explosive_Kunai,Explosive Kunai,10,100,,30,50,,,,0x02000000,63,2,32768,,100,,7,{ bonus bAtkEle,Ele_Neutral; },{},{} -// Ninja Fuuma Shurikens -13300,Huuma_Bird_Wing,Huuma Wing Shuriken,5,90000,,3000,150,,1,0,0x02000000,7,2,34,4,65,1,22,{ bonus bUnbreakableWeapon; 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,7,2,34,4,42,1,22,{ bonus bUnbreakableWeapon; bonus2 bAddEff,Eff_Bleeding,100; },{},{} -13302,Huuma_Giant_Wheel_,Huuma Giant Wheel Shuriken,5,40000,,2500,50,,1,4,0x02000000,7,2,34,4,42,1,22,{ bonus bUnbreakableWeapon; bonus2 bAddEff,Eff_Bleeding,100; },{},{} -13303,Huuma_Blaze,Huuma Blaze Shuriken,5,78000,,1500,185,,1,0,0x02000000,7,2,34,4,55,1,22,{ bonus bUnbreakableWeapon; 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,7,2,34,3,70,1,22,{ bonus bUnbreakableWeapon; bonus2 bSkillAtk,"NJ_HUUMA",30; bonus bNoCastCancel; },{},{} -13305,BF_Huuma_Shuriken1,Brave Huuma Front Shuriken,5,20,,0,55,,1,0,0x02000000,7,2,34,3,80,1,22,{ bonus bStr,2; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; },{},{} -13306,BF_Huuma_Shuriken2,Valorous Huuma Front Shuriken,5,20,,0,55,,1,0,0x02000000,7,2,34,3,80,1,22,{ bonus bStr,2; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; autobonus "{ bonus2 bSkillAtk,\"NJ_HUUMA\",100; bonus2 bSkillAtk,\"NJ_ISSEN\",100; }",50,10000,BF_WEAPON,"{specialeffect2 EF_POTION_BERSERK; }"; bonus bUnbreakableWeapon; },{},{} -13307,Krieger_Huuma_Shuriken1,Glorious Shuriken,5,20,,0,55,,1,0,0x02000000,7,2,34,4,80,1,22,{ bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bMatkRate,15; autobonus "{ bonus2 bSkillAtk,\"NJ_HUUMA\",100; bonus2 bSkillAtk,\"NJ_ISSEN\",100; }",50,10000; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-3)*(getrefine()-3); bonus2 bAddRace,RC_Player_Human,(getrefine()-3)*(getrefine()-3); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>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,7,2,34,4,0,0,22,{ bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Fire; bonus bDex,2; },{},{} -13309,Huuma_Giant_Wheel_C,Huuma Giant Wheel Shuriken,5,0,,0,99,,1,0,0x02000000,7,2,34,4,1,0,22,{ bonus2 bAddSize,Size_All,80; },{},{} -// More 1-Handed Swords -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; 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; },{},{} -13407,Nagan_C,Refined Nagan,5,1,,0,148,,1,0,0x000654E2,7,2,2,4,0,0,2,{ skill "TF_DOUBLE",5; bonus bDoubleRate,25; bonus2 bAddRace,RC_DemiHuman,40; bonus2 bAddRace,RC_Player_Human,40; },{},{} -13408,Fire_Brand_C,Refined Fireblend,5,1,,0,120,,1,0,0x000654E2,7,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,7,2,2,4,0,0,2,{ bonus bAtkEle,Ele_Ghost; bonus2 bSPVanishRate,45,30; bonus bSPDrainValue,-1; bonus bUnbreakableWeapon; },{},{} -13410,BF_Sword1,Valorous Gladiator Blade,5,20,,0,115,,1,0,0x000654E3,7,2,2,3,80,1,2,{ bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; },{},{} -13411,BF_Sword2,Brave Gladiator Blade,5,20,,0,115,,1,0,0x000654E3,7,2,2,3,80,1,2,{ bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus bMatkRate,10; bonus bUnbreakableWeapon; },{},{} -13412,Twin_Edge_B,Twin Edge of Naght Sieger,5,20,,1500,150,,1,3,0x000654E2,2,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,2,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,,1,3,0x000654E2,2,2,2,3,70,1,2,{ bonus bStr,2; bonus bInt,4; bonus bDex,1; bonus bMatkRate,5; 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,1000; bonus4 bAutoSpellOnSkill,"MG_LIGHTNINGBOLT","WZ_EARTHSPIKE",3,1000; },{},{} -13415,N_Falchion,Novice Falchion,5,0,,0,59,,1,3,0x000654E3,7,2,2,1,2,0,2,{},{},{} -13416,Krieger_Onehand_Sword1,Glorious Flamberge,5,20,,0,130,,1,0,0x000654E3,7,2,2,4,80,1,2,{ bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>6) bonus bAspdRate,5; if(getrefine()>8) { bonus bAspdRate,5; bonus4 bAutoSpellOnSkill,"SM_BASH","NPC_CRITICALWOUND",2,200; } },{},{} -13417,Krieger_Onehand_Sword2,Glorious Rapier,5,20,,0,130,,1,0,0x000654E3,7,2,2,4,80,1,2,{ bonus bInt,getrefine()-5; bonus bMatkRate,10; bonus bUnbreakableWeapon; if(getrefine()>5) bonus bUseSPrate,-10; if(getrefine()>8) bonus bInt,5; },{},{} -13418,Krieger_Onehand_Sword3,Glorious Holy Avenger,5,20,,0,130,,1,0,0x000444A2,7,2,2,4,80,1,2,{ bonus bInt,getrefine()-5; bonus bMatkRate,10; bonus bUnbreakableWeapon; if(getrefine()>5) bonus bUseSPrate,-10; if(getrefine()>8) bonus4 bAutoSpellOnSkill,"PA_PRESSURE","PR_LEXAETERNA",1,1000; if(getrefine()>9) bonus bInt,5; },{},{} -13419,Holy_Saber,Holy saber,5,20,,0,160,,1,0,0x000654E2,7,2,2,3,0,0,2,{},{},{} -13420,Honglyun's_Sword,Honglyun's Sword,5,20,,1200,160,,1,1,0x000654E2,7,2,2,4,70,1,2,{ bonus bAtkEle,Ele_Fire; bonus bStr,2; bonus bInt,2; },{},{} -13421,Ruber,Ruber,5,20,,1500,170,,1,1,0x000444A2,2,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,7,2,2,3,1,0,2,{ bonus bUnbreakableWeapon; bonus2 bAddSize,Size_All,40; },{},{} -// More Cash Shop Items -13500,Insurance60_Package,Life Insurrance Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14500,10; },{},{} -13501,Assorted_Scroll_Box,Experience Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -13502,Drooping_Kitty_Box,Refined Drooping Cat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5279,604800; },{},{} -13503,Magestic_Goat_Box,Baphomet Horns Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5280,604800; },{},{} -13504,Deviruchi_Cap_Box,Refined Deviruchi Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5281,604800; },{},{} -13505,Executioner_Box,Executioner Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1174,604800; },{},{} -13506,Brood_Axe_Box,Refined Bloody Axe Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1373,604800; },{},{} -13507,Tomahawk_Box,Tomahawk Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1374,604800; },{},{} -13508,Bow_Of_Rudra_Box,Rudra Bow Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1729,604800; },{},{} -13509,Cutlas_Box,Cutlus Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13402,604800; },{},{} -13510,Solar_Sword_Box,Solar Sword Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13403,604800; },{},{} -13511,Sword_Breaker_Box,Refined Swordbreaker Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13024,604800; },{},{} -13512,Mail_Breaker_Box,Refined Mailbreaker Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13025,604800; },{},{} -13513,Moonlight_Sword_Box,Moonlight Dagger Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13026,604800; },{},{} -13514,Spanner_Box,Wrench Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1534,604800; },{},{} -13515,Grape_Box,Grape Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 514,10; },{},{} -13516,Royal_Jelly_Box,Royal Jelly Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 526,5; },{},{} -13517,Yggdrasilberry_Box,Yggdrasil Berry Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 607,3; },{},{} -13518,Weapon_Card_Scroll_Box,Weapon Card Pet Egg Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13558,1; },{},{} -13519,Armor_Card_Scroll_Box,Armor Card Pet Egg Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13559,1; },{},{} -13520,Helmet_Card_Scroll_Box,Helmet Card Pet Egg Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13560,1; },{},{} -13521,Hood_Card_Scroll_Box,Garment Card Pet Egg Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13561,1; },{},{} -13522,Hood_Card_Scroll_Box2,Shield Card Pet Egg Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13562,1; },{},{} -13523,Shoes_Card_Scroll_Box,Shoes Card Pet Egg Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13563,1; },{},{} -13524,Accy_Card_Scroll_Box,Accessory Card Pet Egg Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13564,1; },{},{} -13525,Zeny_Scroll_Box,Zeny Pet Egg Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14508,1; },{},{} -13526,Pet_Egg_Scroll_Box1_,Pet Egg Scroll Box 12,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12925,30; },{},{} -13527,Pet_Egg_Scroll_Box2_,Pet Egg Scroll Box 13,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12926,30; },{},{} -13528,Pet_Egg_Scroll_Box3_,Pet Egg Scroll Box 14,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12932,30; },{},{} -13529,Pet_Egg_Scroll_Box4_,Pet Egg Scroll Box 15,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12933,30; },{},{} -13530,Pet_Egg_Scroll_Box5_,Pet Egg Scroll Box 16,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12934,30; },{},{} -13531,Light_Red_Pot_Box,Light Red Potion Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 598,50; },{},{} -13532,Light_Orange_Pot_Box,Light Orange Potion Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 599,50; },{},{} -13533,Light_Yellow_Pot_Box,Light Yellow Potion Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 11500,50; },{},{} -13534,Light_White_Pot_Box,Light White Potion Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 11501,50; },{},{} -13535,Light_Center_Pot_Box,Light Concentration Potion Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14509,20; },{},{} -13536,Light_Awakening_Pot_Box,Light Awakening Potion Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14510,20; },{},{} -13537,Light_Berserk_Pot_Box,Light Berserk Potion Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14511,20; },{},{} -13538,Meteor_10_Scroll_Box,Meteor Storm Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14512,10; },{},{} -13539,Storm_10_Scroll_Box,Storm Gust Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14513,10; },{},{} -13540,Vermilion_10_Scroll_Box,Lord of Vermilion Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14514,10; },{},{} -13541,Lex_Aeterna_Scroll_Box,Lex Aeterna Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14515,10; },{},{} -13542,Magnificat_5_Scroll_Box,Magnificat Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14516,10; },{},{} -13543,CP_Helm_Scroll_Box,Chemical Protection Helm Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14517,10; getitem 7139,10; },{},{} -13544,CP_Shield_Scroll_Box,Chemical Protection Shield Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14518,10; getitem 7139,10; },{},{} -13545,CP_Armor_Scroll_Box,Chemical Protection Armor Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14519,10; getitem 7139,10; },{},{} -13546,CP_Weapon_Scroll_Box,Chemical Protection Weapon Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14520,10; getitem 7139,10; },{},{} -13547,Repair_Scroll_Box,Repair Weapon Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14587,5; getitem 1002,5; getitem 998,5; getitem 756,5; getitem 999,5; },{},{} -13548,Big_Bun_Box,Big Bun Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14522,10; },{},{} -13549,Pill__Box,Pill Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14523,10; },{},{} -13550,Superb_Fish_Slice_Box,Fish Slice Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14524,10; },{},{} -13551,Chewy_Ricecake_Box,Chewy Ricecake Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14525,10; },{},{} -13552,Oriental_Pastry_Box,Pastry Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14526,10; },{},{} -13553,Dun_Tele_Scroll1_Box,Dungeon Teleport Scroll 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14527,5; },{},{} -13554,Weapon_Card_Scroll_Box2,Weapon Card Pet Egg Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13565,1; },{},{} -13555,Weapon_Card_Scroll_Box3,Weapon Card Pet Egg Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13566,1; },{},{} -13556,Armor_Card_Scroll_Box2,Armor Card Pet Egg Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13567,1; },{},{} -13557,Accy_Card_Scroll_Box2,Accessory Card Pet Egg Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13568,1; },{},{} -13558,Weapon_Card_Scroll,Weapon Card Pet Egg Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -13559,Armor_Card_Scroll,Armor Card Pet Egg Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -13560,Helmet_Card_Scroll,Helmet Card Pet Egg Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -13561,Hood_Card_Scroll,Garment Card Pet Egg Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -13562,Hood_Card_Scroll2,Shield Card Pet Egg Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -13563,Shoes_Card_Scroll,Shoes Card Pet Egg Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -13564,Accy_Card_Scroll,Accessory Card Pet Egg Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -13565,Weapon_Card_Scroll2,Weapon Card Pet Egg Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -13566,Weapon_Card_Scroll3,Weapon Card Pet Egg Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -13567,Armor_Card_Scroll2,Armor Card Pet Egg Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -13568,Accy_Card_Scroll2,Accessory Card Pet Egg Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -13569,PVP_Tele_Scroll_Box,PVP Teleport Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14528,10; },{},{} -13570,Giant_Fly_Wing_Box50,Giant Fly Wing 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12212,50; },{},{} -13571,Giant_Fly_Wing_Box100,Giant Fly Wing 100 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12212,100; },{},{} -13572,Dex_Dish_Box30,Hwergelmir's Tonic 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12205,30; },{},{} -13573,Dex_Dish_Box50,Hwergelmir's Tonic 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12205,50; },{},{} -13574,Luk_Dish_Box30,Nine Tail Dish 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12206,30; },{},{} -13575,Luk_Dish_Box50,Nine Tail Dish 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12206,50; },{},{} -13576,Inc_Agi_10_Box30,Increase Agility Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12216,30; },{},{} -13577,Inc_Agi_10_Box50,Increase Agility Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12216,50; },{},{} -13578,Vit_Dish_Box30,Stew of Immortality 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12207,30; },{},{} -13579,Vit_Dish_Box50,Stew of Immortality 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12207,50; },{},{} -13580,Insurance_Package30,Life Insurrance 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12209,30; },{},{} -13581,Insurance_Package50,Life Insurrance 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12209,50; },{},{} -13582,Convex_Mirror_Box5,Convex Mirror 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12214,5; },{},{} -13583,Convex_Mirror_Box30,Convex Mirror 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12214,30; },{},{} -13584,Blessing10_Box30,Blessing Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12215,30; },{},{} -13585,Blessing10_Box50,Blessing Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12215,50; },{},{} -13586,Adrenaline10_Box30,Adrenaline Rush Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12220,30; },{},{} -13587,Adrenaline10_Box50,Adrenaline Rush Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12220,50; },{},{} -13588,Assumptio_5_Box30,Assumptio Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12218,30; },{},{} -13589,Assumptio_5_Box50,Assumptio Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12218,50; },{},{} -13590,Aspersio_5_Box30,Aspersio Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12217,30; },{},{} -13591,Aspersio_5_Box50,Aspersio Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12217,50; },{},{} -13592,Agi_Dish_Box30,Steamed Scorpion 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12203,30; },{},{} -13593,Agi_Dish_Box50,Steamed Scorpion 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12203,50; },{},{} -13594,Wind_Walk10_Box30,Wind Walk Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12219,30; },{},{} -13595,Wind_Walk10_Box50,Wind Walk Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12219,50; },{},{} -13596,Int_Dish_Box30,Dragon Breath Cocktail 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12204,30; },{},{} -13597,Int_Dish_Box50,Dragon Breath Cocktail 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12204,50; },{},{} -13598,Battle_Manual_Box1,Field Manual Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12208,1; },{},{} -13599,Battle_Manual_Box5,Field Manual 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12208,5; },{},{} -13600,Siegfried_Box5,Token of Siegfried 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7621,5; },{},{} -13601,Siegfried_Box20,Token of Siegfried 20 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7621,20; },{},{} -13602,Kafra_Card_Box30,Kafra Card 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12211,30; },{},{} -13603,Kafra_Card_Box50,Kafra Card 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12211,50; },{},{} -13604,Str_Dish_Box30,Steamed Tongue 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12202,30; },{},{} -13605,Str_Dish_Box50,Steamed Tongue 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12202,50; },{},{} -13606,Bubble_Gum_Box1,Bubble Gum Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12210,1; },{},{} -13607,Bubble_Gum_Box5,Bubble Gum 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12210,5; },{},{} -13608,Megaphone_Box1,Megaphone Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12221,1; },{},{} -13609,Megaphone_Box5,Megaphone 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12221,5; },{},{} -13610,Enriched_Elunium_Box5,Enriched Elunium 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7619,5; },{},{} -13611,Enriched_Oridecon_Box5,Enriched Oridecon 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7620,5; },{},{} -13612,Handcuff_Box,Arrest Handcuffs Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2706,1; },{},{} -13613,Super_Pet_Egg_Box1,Super Pet Egg Box 1,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13617,1; },{},{} -13614,Super_Pet_Egg_Box2,Super Pet Egg Box 2,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13618,1; },{},{} -13615,Super_Pet_Egg_Box3,Super Pet Egg Box 3,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13619,1; },{},{} -13616,Super_Pet_Egg_Box4,Super Pet Egg Box 4,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13620,1; },{},{} -13617,Super_Pet_Egg1,Super Pet Egg 1,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -13618,Super_Pet_Egg2,Super Pet Egg 2,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -13619,Super_Pet_Egg3,Super Pet Egg 3,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -13620,Super_Pet_Egg4,Super Pet Egg 4,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -13621,Greed_Box30,Greed Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14529,30; },{},{} -13622,Greed_Box50,Greed Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14529,50; },{},{} -13623,Greed_Box100,Greed Scroll 100 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14529,100; },{},{} -13624,Flee_30_Scroll_Box,Evasion Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14530,1; },{},{} -13625,Accuracy_30_Scroll_Box,Concentration Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14531,1; },{},{} -13626,Super_Card_Pet_Egg_Box1,Super Card Pet Egg Box 1,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13630,1; },{},{} -13627,Super_Card_Pet_Egg_Box2,Super Card Pet Egg Box 2,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13631,1; },{},{} -13628,Super_Card_Pet_Egg_Box3,Super Card Pet Egg Box 3,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13632,1; },{},{} -13629,Super_Card_Pet_Egg_Box4,Super Card Pet Egg Box 4,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 13633,1; },{},{} -13630,Super_Card_Pet_Egg1,Super Card Pet Egg 1,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -13631,Super_Card_Pet_Egg2,Super Card Pet Egg 2,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -13632,Super_Card_Pet_Egg3,Super Card Pet Egg 3,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -13633,Super_Card_Pet_Egg4,Super Card Pet Egg 4,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -13634,Vigorgra_Package1,1 Hour Package Vol. 1,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12250,2; getitem 12251,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; },{},{} -13635,Vigorgra_Package2,1 Hour Package Vol. 2,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12250,2; getitem 12255,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; },{},{} -13636,Vigorgra_Package3,1 Hour Package Vol. 3,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12252,2; getitem 12253,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; },{},{} -13637,Vigorgra_Package4,1 Hour Package Vol. 4,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12252,2; getitem 12255,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; },{},{} -13638,Vigorgra_Package5,1 Hour Package Vol. 5,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12252,2; getitem 12250,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; },{},{} -13639,Vigorgra_Package6,1 Hour Package Vol. 6,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12250,2; getitem 12251,2; getitem 12208,2; getitem 12215,15; getitem 12217,20; getitem 12211,1; getitem 7621,1; },{},{} -13640,Vigorgra_Package7,2 Hour Package Vol. 1,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12250,4; getitem 12251,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; },{},{} -13641,Vigorgra_Package8,2 Hour Package Vol. 2,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12250,4; getitem 12255,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; },{},{} -13642,Vigorgra_Package9,2 Hour Package Vol. 3,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12252,4; getitem 12253,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; },{},{} -13643,Vigorgra_Package10,2 Hour Package Vol. 4,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12252,4; getitem 12255,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; },{},{} -13644,Vigorgra_Package11,2 Hour Package Vol. 5,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12252,4; getitem 12250,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; },{},{} -13645,Vigorgra_Package12,2 Hour Package Vol. 6,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12250,4; getitem 12251,4; getitem 12208,4; getitem 12215,30; getitem 12217,40; getitem 12211,2; getitem 7621,2; },{},{} -13646,Infiltrator_Box1,Refined Infiltrator Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1267,604800; },{},{} -13647,Muramasa_Box1,Refined Muramasa Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1173,604800; },{},{} -13648,Excalibur_Box1,Refined Excalibur Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13401,604800; },{},{} -13649,Combat_Knife_Box1,Refined Combat Knife Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13021,604800; },{},{} -13650,Counter_Dagger_Box1,Refined Dagger of Counter Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13022,604800; },{},{} -13651,Kaiser_Knuckle_Box1,Refined Kaiser Knuckle Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1817,604800; },{},{} -13652,Pole_Axe_Box1,Refined Pole Axe Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1419,604800; },{},{} -13653,Mighty_Staff_Box1,Refined Mighty Staff Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1623,604800; },{},{} -13654,Right_Epsilon_Box1,Refined Light Epsilon Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1372,604800; },{},{} -13655,Balistar_Box1,Refined Ballista Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1728,604800; },{},{} -13656,Diary_Of_Sage_Box1,Refined Sage's Diary Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1563,604800; },{},{} -13657,Asura_Box1,Refined Ashura Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13023,604800; },{},{} -13658,Apple_Of_Archer_Box1,Refined Apple of Archer Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5265,1209600; },{},{} -13659,Bunny_Band_Box1,Refined Bunny Band Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5266,1209600; },{},{} -13660,Sahkkat_Box1,Refined Sakkat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5267,1209600; },{},{} -13661,Lord_Circlet_Box1,Refined Grand Circlet Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5268,1209600; },{},{} -13662,Elven_Ears_Box1,Refined Elven Ears Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2686,1209600; },{},{} -13663,Steel_Flower_Box1,Refined Romantic Flower Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2687,1209600; },{},{} -13664,Critical_Ring_Box1,Refined Critical Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2688,604800; },{},{} -13665,Earring_Box1,Refined Earring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2689,604800; },{},{} -13666,Ring_Box1,Refined Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2690,604800; },{},{} -13667,Necklace_Box1,Refined Necklace Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2691,604800; },{},{} -13668,Glove_Box1,Refined Glove Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2692,604800; },{},{} -13669,Brooch_Box1,Refined Brooch Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2693,604800; },{},{} -13670,Rosary_Box1,Refined Rosary Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2694,604800; },{},{} -13671,Safety_Ring_Box1,Refined Safety Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2695,604800; },{},{} -13672,Vesper_Core01_Box1,Refined Vesper Core 01 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2696,604800; },{},{} -13673,Vesper_Core02_Box1,Refined Vesper Core 02 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2697,604800; },{},{} -13674,Vesper_Core03_Box1,Refined Vesper Core 03 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2698,604800; },{},{} -13675,Vesper_Core04_Box1,Refined Vesper Core 04 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2699,604800; },{},{} -13676,Drooping_Kitty_Box1,Refined Drooping Cat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5279,1209600; },{},{} -13677,Magestic_Goat_Box1,Refined Majestic Goat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5280,1209600; },{},{} -13678,Deviruchi_Cap_Box1,Refined Deviruchi Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5281,1209600; },{},{} -13679,Executioner_Box1,Refined Executioner Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1174,604800; },{},{} -13680,Brood_Axe_Box1,Refined Bloody Axe Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1373,604800; },{},{} -13681,Tomahawk_Box1,Refined Tomahawk Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1374,604800; },{},{} -13682,Bow_Of_Rudra_Box1,Refined Rudra Bow Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1729,604800; },{},{} -13683,Cutlas_Box1,Refined Cutlus Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13402,604800; },{},{} -13684,Solar_Sword_Box1,Refined Solar Sword Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13403,604800; },{},{} -13685,Sword_Breaker_Box1,Refined Swordbreaker Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13024,604800; },{},{} -13686,Mail_Breaker_Box1,Refined Mailbreaker Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13025,604800; },{},{} -13687,Moonlight_Sword_Box1,Refined Moonlight Dagger Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13026,604800; },{},{} -13688,Spanner_Box1,Refined Wrench Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1534,604800; },{},{} -13689,Bok_Choy_Box,Bok Choy Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7766,100; },{},{} -13690,Chung_E_Cake_Box,Green Maiden Cake Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7767,100; },{},{} -13691,Freyja_Overcoat_Box,Freya's Clothes Box,18,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2369,604800; },{},{} -13692,Freyja_Boots_Box,Freya's Boots Box,18,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2428,604800; },{},{} -13693,Freyja_Cape_Box,Freya's Manteau Box,18,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2533,604800; },{},{} -13694,Freyja_Crown_Box,Freya's Crown Box,18,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5306,604800; },{},{} -13695,Battle_Manual25_Box,Field Manual 25% Box,18,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14532,10; },{},{} -13696,Battle_Manual100_Box,Field Manual 100% Box,18,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14533,10; },{},{} -13697,J_Blessing10_Box,Blessing Scroll 10 Box,18,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12215,10; },{},{} -13698,J_Inc_Agi10_Box,Increase Agility Scroll 10 Box,18,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12216,10; },{},{} -13699,J_Wind_Walk10_Box,Wind Walk Scroll 10 Box,18,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12219,10; },{},{} -13700,J_Adrenaline10_Box,Adrenaline Rush Scroll 10 Box,18,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12220,10; },{},{} -13701,Pet_Egg_Scroll12,Pet Egg Scroll 12,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -13702,Pet_Egg_Scroll13,Pet Egg Scroll 13,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -13703,Pet_Egg_Scroll14,Pet Egg Scroll 14,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -13704,Super_Pet_Egg5,Super Pet Egg 5,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -13705,Super_Pet_Egg6,Super Pet Egg 6,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -13706,Super_Pet_Egg7,Super Pet Egg 7,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -13707,Super_Pet_Egg8,Super Pet Egg 8,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -13708,Pet_Egg_Scroll_E,Pet Egg Scroll E,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -13709,BRO_Package_1,BRO Package Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -13710,Max_Weight_Up_Box,Gym Pass Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7776,10; },{},{} -13711,Small_Life_Potion_Box,Small Life Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14534,10; },{},{} -13712,Small_Life_Potion_Box30,Small Life Potion 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14534,30; },{},{} -13713,Small_Life_Potion_Box50,Small Life Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14534,50; },{},{} -13714,Med_Life_Potion_Box,Medium Life Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14535,10; },{},{} -13715,Med_Life_Potion_Box30,Medium Life Potion 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14535,30; },{},{} -13716,Med_Life_Potion_Box50,Medium Life Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14535,50; },{},{} -13717,Abrasive_Box5,Abrasive 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14536,5; },{},{} -13718,Abrasive_Box10,Abrasive 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14536,10; },{},{} -13719,Regeneration_Box5,Regeneration Potion 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14537,5; },{},{} -13720,Regeneration_Box10,Regeneration 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14537,10; },{},{} -13721,Dun_Tele_Scroll_Box10,Dungeon Teleport Scroll 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14527,10; },{},{} -13722,Pecopeco_Hairband_Box,Peco Peco Hairband Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5286,1; },{},{} -13723,Red_Glasses_Box,Red Glasses Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5288,1; },{},{} -13724,Whisper_Mask_Box,Whisper Mask Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5294,1; },{},{} -13725,Ramen_Hat_Box,Ramen Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5293,1; },{},{} -13726,Gold_Box_,Golden Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7777,1; },{},{} -13727,Silver_Box_,Silver Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7778,1; },{},{} -13728,Gold_Key1_Box,Golden Key 1 Box,18,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7779,1; },{},{} -13729,Gold_Key5_Box,Golden Key 5 Box,18,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7779,5; },{},{} -13730,Silver_Key1_Box,Silver Key 1 Box,18,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7780,1; },{},{} -13731,Silver_Key5_Box,Silver Key 5 Box,18,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7780,5; },{},{} -// -// -13734,Pecopeco_Hairband_Box1,Peco Peco Hairband Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5286,1; },{},{} -13735,Red_Glasses_Box1,Red Glasses Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5288,1; },{},{} -13736,Whisper_Mask_Box1,Whisper Mask Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5294,1; },{},{} -13737,Ramen_Hat_Box1,Ramen Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5293,1; },{},{} -13738,Glass_Of_Illusion_Box5,Glass of Illusion 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14538,5; },{},{} -13739,Glass_Of_Illusion_Box10,Glass of Illusion 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14538,10; },{},{} -13740,Shadow_Armor_S_Box5,Shadow Armor Scroll 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14539,5; },{},{} -13741,Shadow_Armor_S_Box10,Shadow Armor Scroll 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14539,10; },{},{} -13742,Shadow_Armor_S_Box30,Shadow Armor Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14539,30; },{},{} -13743,Holy_Armor_S_Box5,Holy Armor Scroll 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14540,5; },{},{} -13744,Holy_Armor_S_Box10,Holy Armor Scroll 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14540,10; },{},{} -13745,Holy_Armor_S_Box30,Holy Armor Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14540,30; },{},{} -13746,S_Def_Potion_Box10,Small Defense Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14541,10; },{},{} -13747,S_Def_Potion_Box30,Small Defense Potion 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14541,30; },{},{} -13748,S_Def_Potion_Box50,Small Defense Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14541,50; },{},{} -13749,B_Def_Potion_Box10,Big Defense Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14542,10; },{},{} -13750,B_Def_Potion_Box30,Big Defense Potion 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14542,30; },{},{} -13751,B_Def_Potion_Box50,Big Defense Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14542,50; },{},{} -13752,S_Mdef_Potion_Box10,Small Magic Defense Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14543,10; },{},{} -13753,S_Mdef_Potion_Box30,Small Magic Defense Potion 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14543,30; },{},{} -13754,S_Mdef_Potion_Box50,Small Magic Defense Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14543,50; },{},{} -13755,B_Mdef_Potion_Box10,Big Magic Defense Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14544,10; },{},{} -13756,B_Mdef_Potion_Box30,Big Magic Defense Potion 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14544,30; },{},{} -13757,B_Mdef_Potion_Box50,Big Magic Defense Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14544,50; },{},{} -13758,Battle_Manual_X3_Box,Field Manual 300% Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14545,20; },{},{} -13759,In_Blue_Herb_Box,Blue Herb Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 510,50; },{},{} -13760,Honey_Box,Honey Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 518,100; },{},{} -13761,Empty_Bottle_Box,Empty Bottle Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 713,500; },{},{} -13762,In_Royal_Jelly_Box,Royal Jelly Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 526,70; },{},{} -13763,5_Anniversary_Coin_Box,Coin Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2709,1; },{},{} -13764,Battle_Manual_Box_TW,Beginner's Field Manual 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7803,5; },{},{} -13765,Certificate_TW_Box,Certificate Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7804,1; },{},{} -13766,Nagan_Box,Refined Nagan Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13407,604800; },{},{} -13767,Skewer_Box,Refined Brocca Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1424,604800; },{},{} -13768,Survival_Rod_Box,Refined Survivor's Rod Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1628,604800; },{},{} -13769,Quadrille_Box,Refined Quadrille Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1537,604800; },{},{} -13770,Great_Axe_Box,Refined Great Axe Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1378,604800; },{},{} -13771,Bloody_Roar_Box,Refined Bloody Roar Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1273,604800; },{},{} -13772,Hardback_Box,Refined Hardcover Book Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1567,604800; },{},{} -13773,Fire_Brand_Box,Refined Fireblend Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13408,604800; },{},{} -13774,Immaterial_Sword_Box,Refined Immaterial Sword Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13409,604800; },{},{} -13775,Unholy_Touch_Box,Refined Unholy Touch Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1274,604800; },{},{} -13776,Cloak_Of_Survival_Box,Refined Survivor's Manteau Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2535,1209600; },{},{} -13777,Masquerade_Box,Refined Masquerade Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5326,1209600; },{},{} -13778,Orc_Hero_Helm_Box,Refined Helmet of Orc Hero Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5327,1209600; },{},{} -13779,Evil_Wing_Ears_Box,Refined Wing of Diablo Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5328,1209600; },{},{} -13780,Dark_Blindfold_Box,Refined Dark Blinder Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5329,1209600; },{},{} -13781,kRO_Drooping_Kitty_Box,Refined Drooping Cat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5330,1209600; },{},{} -13782,Corsair_Box,Refined Corsair Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5331,1209600; },{},{} -13783,Bloody_Iron_Ball_Box,Refined Bloodied Shackle Ball Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2710,604800; },{},{} -13784,Spiritual_Ring_Box,Refined Spiritual Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2711,604800; },{},{} -13785,Nagan_Box1,Refined Nagan Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13407,86400; },{},{} -13786,Skewer_Box1,Refined Brocca Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1424,86400; },{},{} -13787,Survival_Rod_Box1,Refined Survivor's Rod Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1628,86400; },{},{} -13788,Quadrille_Box1,Refined Quadrille Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1537,86400; },{},{} -13789,Great_Axe_Box1,Refined Great Axe Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1378,86400; },{},{} -13790,Bloody_Roar_Box1,Refined Bloody Roar Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1273,86400; },{},{} -13791,Hardback_Box1,Refined Hardcover Book Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1567,86400; },{},{} -13792,Fire_Brand_Box1,Refined Fireblend Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13408,86400; },{},{} -13793,Immaterial_Sword_Box1,Refined Immaterial Sword Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13409,86400; },{},{} -13794,Unholy_Touch_Box1,Refined Unholy Touch Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1274,86400; },{},{} -13795,Cloak_Of_Survival_Box1,Refined Survivor's Manteau Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2535,86400; },{},{} -13796,Masquerade_Box1,Refined Masquerade Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5326,86400; },{},{} -13797,Orc_Hero_Helm_Box1,Refined Helmet of Orc Hero Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5327,86400; },{},{} -13798,Evil_Wing_Ears_Box1,Refined Wing of Diablo Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5328,86400; },{},{} -13799,Dark_Blindfold_Box1,Refined Dark Blinder Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5329,86400; },{},{} -13800,kRO_Drooping_Kitty_Box1,Refined Drooping Cat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5330,86400; },{},{} -13801,Corsair_Box1,Refined Corsair Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5331,86400; },{},{} -13802,Bloody_Iron_Ball_Box1,Refined Bloodied Shackle Ball Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2710,86400; },{},{} -13803,Spiritual_Ring_Box1,Refined Spiritual Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2711,86400; },{},{} -13804,Fire_Cracker_Love_Box,I Love You Firecracker Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14546,10; },{},{} -13805,Fire_Cracker_Wday_Box,Whiteday Firecracker Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14547,10; },{},{} -13806,Fire_Cracker_Vday_Box,Valentine's Day Firecracker Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14548,10; },{},{} -13807,Fire_Cracker_Bday_Box,Birthday Firecracker Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14549,10; },{},{} -13808,Fire_Cracker_Xmas_Box,Xmas Firecracker Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14550,10; },{},{} -13809,Blue_Gemstone_Box,Blue Gemstone Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 717,100; },{},{} -13810,Blue_Potion_Box,Blue Potion Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 11502,25; },{},{} -13811,Food_Box_Lv1,Food Box Vol 1,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14551,1; getitem 14554,1; getitem 14557,1; getitem 14560,1; getitem 14563,1; getitem 14566,1; },{},{} -13812,Food_Box_Lv2,Food Box Vol 2,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14552,1; getitem 14555,1; getitem 14558,1; getitem 14561,1; getitem 14564,1; getitem 14567,1; },{},{} -13813,Food_Box_Lv3,Food Box Vol 3,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14553,1; getitem 14556,1; getitem 14559,1; getitem 14562,1; getitem 14565,1; getitem 14568,1; },{},{} -13814,Indonesia_Box,Healing Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -13815,Knife_Goblin_Box,Knife Goblin Taming Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14569,10; },{},{} -13816,Flail_Goblin_Box,Flail Goblin Taming Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14570,10; },{},{} -13817,Hammer_Goblin_Box,Hammer Goblin Taming Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14571,10; },{},{} -13818,Red_Deleter_Box,Red Deleter Taming Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14572,10; },{},{} -13819,Diabolic_Box,Diabolic Taming Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14573,10; },{},{} -13820,Wanderer_Box,Wanderer Taming Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14574,10; },{},{} -13821,Green_Apple_Box,Green Apple Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7821,10; },{},{} -13822,Whole_Barbecue_Box,Barbeque Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7822,10; },{},{} -13823,Meat_Veg_Skewer_Box,Meat Skewer Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7823,10; },{},{} -13824,Spirit_Liquor_Box,Spirit Liquor Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7824,10; },{},{} -13825,Green_Box_,Old Green Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -13826,Power_Box1,Power Box 1,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 682,1; getitem 12123,1; getitem 12122,1; },{},{} -13827,Power_Box2,Power Box 2,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 683,1; getitem 12123,1; getitem 12122,1; },{},{} -13828,Resist_Box1,Resist Box 1,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12118,1; getitem 12119,1; },{},{} -13829,Resist_Box2,Resist Box 2,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12120,1; getitem 12121,1; },{},{} -13830,Stat_Boost1,Stat Boost 1,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INCSTR,60000,5; sc_start SC_INCAGI,60000,5; sc_start SC_INCVIT,60000,5; },{},{} -13831,Stat_Boost2,Stat Boost 2,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INCINT,60000,5; sc_start SC_INCLUK,60000,5; sc_start SC_INCDEX,60000,5; },{},{} -13832,Stat_Boost3,Stat Boost 3,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INCAGI,60000,5; sc_start SC_INCVIT,60000,5; sc_start SC_INCDEX,60000,5; },{},{} -13833,Stat_Boost4,Stat Boost 4,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INCINT,60000,5; sc_start SC_INCVIT,60000,5; sc_start SC_INCDEX,60000,5; },{},{} -13834,Dun_Tele_Scroll2_Box5,Dungeon Teleport Scroll II 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14581,5; },{},{} -13835,Dun_Tele_Scroll2_Box10,Dungeon Teleport Scroll II 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14581,10; },{},{} -13836,Mbl_Str_Dish_Box,Steamed Tongue Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12250,1; },{},{} -13837,Mbl_Agi_Dish_Box,Steamed Desert Scorpions Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12251,1; },{},{} -13838,Mbl_Int_Dish_Box,Dragon Breath Cocktail Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12252,1; },{},{} -13839,Mbl_Dex_Dish_Box,Hwergelmir's Tonic Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12253,1; },{},{} -13840,Mbl_Luk_Dish_Box,Cooked Nine Tail Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12254,1; },{},{} -13841,Mbl_Vit_Dish_Box,Immortal Stew Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12255,1; },{},{} -13842,Mbl_Kafra_Card_Box,Payment Statement for Kafra Employee Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12249,1; },{},{} -13843,Mbl_Battle_Manual_Box,Field Manual Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14532,1; },{},{} -13844,Heroic_Stone_Box,Heroic Stone Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7825,1; },{},{} -13845,Mysterious_Travel_Sack1,Mystery Travel Sack A,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -13846,Mysterious_Travel_Sack2,Mystery Travel Sack B,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -13847,Mysterious_Travel_Sack3,Mystery Travel Sack C,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -13848,Mysterious_Travel_Sack4,Mystery Travel Sack D,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -13849,WOB_Box_Rune5,Yellow Butterfly Wing 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14582,5; },{},{} -13850,WOB_Box_Rune10,Yellow Butterfly Wing Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14582,10; },{},{} -13851,WOB_Box_Schawaltz5,Green Butterfly Wing 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14583,5; },{},{} -13852,WOB_Box_Schawaltz10,Green Butterfly Wing Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14583,10; },{},{} -13853,WOB_Box_Rachel5,Red Butterfly Wing 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14584,5; },{},{} -13854,WOB_Box_Rachel10,Red Butterfly Wing Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14584,10; },{},{} -13855,WOB_Box_Local5,Blue Butterfly Wing 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14585,5; },{},{} -13856,WOB_Box_Local10,Blue Butterfly Wing Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14585,10; },{},{} -13857,Spark_Candy_Box5,Candy 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14586,5; },{},{} -13858,Spark_Candy_Box10,Candy 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14586,10; },{},{} -13859,Directive_A_Envelope,Directive Envelope A,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2734,1; },{},{} -13860,Directive_B_Envelope,Directive Envelope B,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2735,1; },{},{} -13861,Mini_Battle_Manual_Box,Small Field Manual Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12208,4; },{},{} -13862,Trial_Box,Trial Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12208,2; getitem 12215,15; getitem 12216,15; },{},{} -13863,Repair_Scroll_Box10,Repair Weapon Scroll 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14521,10; getitem 1002,10; getitem 998,10; getitem 756,10; getitem 999,10; },{},{} -//13864,Hockey_Mask_Box,Hockey Mask Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5314,604800; },{},{} -//13865,Observer_Box,Observer Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5315,604800; },{},{} -13866,Flying_Angel_Box,Flying Angel Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5210,1; },{},{} -13867,Neko_Mimi_Box,Neko Mimi Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5099,1; },{},{} -13868,MFH_Box,Moonlight Flower Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5214,1; },{},{} -13869,Chick_Hat_Box,Baby Chick Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5283,1; },{},{} -13870,New_Style_Box,Beauty Gift Certificate Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7622,1; },{},{} -13871,Magician_Card_Box,Mage Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4327,1; getitem 4309,1; getitem 4325,1; getitem 4208,1; getitem 4258,1; getitem 4191,1; },{},{} -13872,Acolyte_Card_Box,Acolyte Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4185,1; getitem 4312,1; getitem 4217,1; getitem 4280,1; getitem 4293,1; },{},{} -13873,Archer_Card_Box,Archer Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4297,1; getitem 4234,1; getitem 4199,1; getitem 4178,1; getitem 4252,1; },{},{} -13874,Swordman_Card_Box,Swordman Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4319,1; getitem 4331,1; getitem 4220,1; getitem 4311,1; getitem 4246,1; },{},{} -13875,Thief_Card_Box,Thief Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4230,1; getitem 4210,1; getitem 4257,1; getitem 4172,1; getitem 4272,1; },{},{} -13876,Merchant_Card_Box,Merchant Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4206,1; getitem 4281,1; getitem 4186,1; getitem 4233,1; getitem 4321,1; },{},{} -13877,Clock_Tower_Card_Box,Clock Tower Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4244,1; getitem 4299,1; getitem 4313,1; getitem 4229,1; },{},{} -13878,Geffenia_Card_Box,Geffenia Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4218,1; getitem 4269,1; },{},{} -13879,Owl_Card_Box,Owl Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4237,1; getitem 4238,1; },{},{} -13880,Ghost_Card_Box,Ghost Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4193,1; getitem 4294,1; },{},{} -13881,Nightmare_Card_Box,Nightmare Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4127,1; getitem 4166,1; },{},{} -13882,Curse_Card_Box,Curse Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4076,4; },{},{} -13883,Sleep_Card_Box,Sleep Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4024,4; },{},{} -13884,Freeze_Card_Box,Freeze Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4055,4; },{},{} -13885,Stun_Card_Box,Stun Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4017,4; },{},{} -13886,Silence_Card_Box,Silence Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4057,4; },{},{} -13887,Blind_Card_Box,Blind Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4020,4; },{},{} -13888,Chaos_Card_Box,Chaos Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4104,4; },{},{} -13889,Elunium_Box_,Elunium Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 985,10; },{},{} -13890,Oridecon_Box_,Oridecon Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 984,10; },{},{} -13891,Fire_Converter_Box,Fire Converter Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12114,10; },{},{} -13892,Water_Converter_Box,Water Converter Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12115,10; },{},{} -13893,Wind_Converter_Box,Wind Converter Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12117,10; },{},{} -13894,Earth_Converter_Box,Earth Converter Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12116,10; },{},{} -13895,Starter_Pack,Starter Pack,18,20,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7229,2; getitem 569,300; getitem 504,20; getitem 505,20; getitem 7060,30; getitem 2403,1; getitem 5039,1; getitem 2503,1; getitem 2307,1; getitem 616,1; getitem 603,1; getitem 617,1; getitem 610,5; getitem 604,5; },{},{} -13896,Mimic_Summon_Box5,Mimic Summoning 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12276,5; },{},{} -13897,Disguise_Summon_Box5,Disguise Summoning 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12277,5; },{},{} -13898,Alice_Summon_Box5,Alice Summoning 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12278,5; },{},{} -13899,Mimic_Summon_Box10,Mimic Summoning 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12276,10; },{},{} -13900,Disguise_Summon_Box10,Disguise Summoning 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12277,10; },{},{} -13901,Alice_Summon_Box10,Alice Summoning 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12278,10; },{},{} -13902,Fish_Head_Hat_Box,Fish Head Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5380,1; },{},{} -13903,Santa_Poring_Hat_Box,Santa Poring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5381,1; },{},{} -13904,Bell_Ribbon_Box,Bell Ribbon Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5382,1; },{},{} -13905,Hard_Core_Set_Box,XM Hardcore Set Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12208,10; getitem 12209,10; getitem 12210,10; },{},{} -13906,Kitty_Set_Box,XM Kitty Set Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5230,1; getitem 5231,1; getitem 5232,1; getitem 5233,1; getitem 5234,1; },{},{} -13907,Soft_Core_Set_Box,XM Softcore Set Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12208,5; getitem 12209,5; getitem 12210,5; },{},{} -13908,Deviruchi_Set_Box,XM Deviruchi Set Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5227,1; getitem 5228,1; getitem 5229,1; },{},{} -13909,MVP_Hunt_Box,MVP Hunting Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7621,1; getitem 12210,1; getitem 12221,1; getitem 12214,3; },{},{} -13910,Brewing_Box,XM Brewing Set Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12204,10; getitem 12205,10; getitem 12206,10; },{},{} -13911,Xmas_Pet_Scroll,Christmas Pet Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -13912,Party_Blessing_Box,Party Blessing 10 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14588,10; },{},{} -13913,Party_Inc_Agi_Box,Party Increase Agi 10 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14589,10; },{},{} -13914,Party_Assumptio_Box,Party Assumptio 5 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14590,10; },{},{} -13915,Love_Angel_Box,Love Angel Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 12287,604800; },{},{} -13916,Squirrel_Box,Squirrel Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 12288,604800; },{},{} -13917,Gogo_Box,Gogo Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 12289,604800; },{},{} -//13918,Drooping_W_Kitty_Box,Koneko Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5372,1; },{},{} -//13919,L_Magestic_Goat_Box,Baphomet Horns Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5374,1; },{},{} -//13920,Satanic_Chain_P_Box,Flying Evil Wing Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5376,1; },{},{} -//13921,Antique_Pipe_Box,Gentleman's Pipe Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5377,1; },{},{} -//13922,Rabbit_Ear_Hat_Box,Bunny Top Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5378,1; },{},{} -//13923,Darkness_Helm_Box,Dark Randgris Helm Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5373,1; },{},{} -//13924,L_Orc_Hero_Helm_Box,Orc Hero Headdress Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5375,1; },{},{} -//13925,Year_Of_Mouse_Scroll,... GoodLuck Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -13926,Crusader_Card_Box,Crusader Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4371,1; getitem 4311,1; getitem 4319,1; getitem 4331,1; },{},{} -13927,Alchemist_Card_Box,Alchemist Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4281,1; getitem 4233,1; getitem 4343,1; getitem 4186,1; getitem 4036,1; },{},{} -13928,Rogue_Card_Box,Rogue Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4039,1; getitem 4210,1; getitem 4257,1; getitem 4230,1; getitem 4348,1; },{},{} -13929,Bard_Dancer_Card_Box,Bard Dancer Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4297,1; getitem 4234,1; getitem 4178,1; getitem 4381,1; getitem 4252,1; },{},{} -13930,Sage_Card_Box,Sage card box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4382,1; getitem 4258,1; getitem 4325,1; getitem 4208,1; getitem 4327,1; },{},{} -13931,Monk_Card_Box,Monk Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4312,1; getitem 4332,1; getitem 4185,1; getitem 4293,1; },{},{} -13932,Sylph_Box,Sylph Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4345,4; },{},{} -13933,Undine_Box,Undine Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4350,4; },{},{} -13934,Salamander_Box,Salamander Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4380,4; },{},{} -13935,Soul_Box,Soul Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4388,4; },{},{} -13936,Noum_Bpx,Gnome Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 4335,4; },{},{} -13937,Robo_Eye_Box,Robo Eye Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5325,1; },{},{} -13938,Twin_Ribbon_Box,Maiden's Twin Ribbon Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5187,1; },{},{} -//13939,Diadem_Box,Diadem Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5313,1; },{},{} -13940,Siege_Tele_Scroll_Box,WoE Teleport Scroll 100 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14591,100; },{},{} -13941,Valentine_Scroll_TW,Taiwan Valentine Scroll,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -13942,Love_Angel_Box_1m,Love Angel Magic Powder Box 30 Days,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14009,1; },{},{} -13943,Squirrel_Box_1m,Squirrel Magic Powder Box 30 Days,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14010,1; },{},{} -13944,Gogo_Box_1m,Gogo Magic Powder Box 30 Days,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14011,1; },{},{} -13945,Br_SwordPackage,Brazil Swordsman Package,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2317,1; getitem 2106,1; getitem 2406,1; getitem 2506,1; getitem 4003,1; getitem 4133,1; getitem 2607,2; getitem 2229,1; getitem 2266,1; },{},{} -13946,Br_MagePackage,Brazil Magician Package,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2322,1; getitem 2102,1; getitem 2104,1; getitem 2504,1; getitem 4003,1; getitem 4077,1; getitem 2607,2; getitem 5027,1; },{},{} -13947,Br_AcolPackage,Brazil Acolyte Package,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2326,1; getitem 2104,1; getitem 2404,1; getitem 2504,1; getitem 4003,1; getitem 4100,1; getitem 2607,2; getitem 2217,1; },{},{} -13948,Br_ArcherPackage,Brazil Archer package,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2331,1; getitem 1716,1; getitem 2406,1; getitem 2504,1; getitem 4064,1; getitem 4102,1; getitem 2607,2; getitem 2285,1; },{},{} -13949,Br_MerPackage,Brazil Merchant Package,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2315,1; getitem 2104,1; getitem 2406,1; getitem 2506,1; getitem 4003,1; getitem 4133,1; getitem 2607,2; getitem 5021,1; },{},{} -13950,Br_ThiefPackage,Brazil Thief Package,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2336,1; getitem 2104,1; getitem 2406,1; getitem 2506,1; getitem 4097,1; getitem 4102,1; getitem 2607,2; getitem 2274,1; },{},{} -13951,Wasteland_Outlaw_Box,Western Outlaw Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13109,604800; },{},{} -13952,Lever_Action_Rifle_Box,Lever Action Rifle Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13170,604800; },{},{} -13953,All_In_One_Ring_Box,All In One Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2741,604800; },{},{} -13954,Spiritual_Tunic_Box,Spiritual Tunic Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2384,604800; },{},{} -13955,Recuperative_Armor_Box,Recuvative Armor Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2385,604800; },{},{} -13956,Shelter_Resistance_Box,Shell Of Resistance Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2132,604800; },{},{} -13957,Sylphid_Manteau_Box,Silf Manteau Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2543,604800; },{},{} -13958,Refresh_Shoes_Box,Refresh Shoes Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2439,604800; },{},{} -13959,Toast_Box,Crunch Toast Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5391,604800; },{},{} -13960,Name_Change_Coupon_Box,Identification Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7623,1; },{},{} -13961,Mojji_Box,Mochi Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 554,5; },{},{} -13962,Deprotai_Doll_Hat_Box,Defolty Doll Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5340,1; },{},{} -13963,Claris_Doll_Hat_Box,Glaris Doll Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5341,1; },{},{} -13964,Sorin_Doll_Hat_Box,Sorin Doll Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5342,1; },{},{} -13965,Tayelin_Doll_Hat_Box,Tailring Doll Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5343,1; },{},{} -13966,Binit_Doll_Hat_Box,Vinit Doll Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5344,1; },{},{} -13967,Debril_Doll_Hat_Box,W Doll Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5345,1; },{},{} -//13968,Bubblegum_Lower_Box,Bubble Gum Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5394,86400;},{},{} -//13969,Lucky_Clip_Box,Lucky Clip Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2742,86400; },{},{} -13970,Iron_10_Box,Iron Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 998,10; },{},{} -13971,Steel_10_Box,Steel Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 999,10; },{},{} -13972,Coal_10_Box,Coal Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 1003,10; },{},{} -13973,Poison_Bottle_30_Box,Poison Bottle Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 678,30; },{},{} -13974,TW_Scroll01,Fisherman Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -13975,Picture_Diary_Box,Diary Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 12304,604800; },{},{} -13976,Mini_Heart_Box,Mini Heart Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 12305,604800; },{},{} -13977,Newcomer_Box,Freshman Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 12306,604800; },{},{} -13978,Kid_Box,Kid Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 12307,604800; },{},{} -13979,Magic_Castle_Box,Magic Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 12308,604800; },{},{} -13980,Bulging_Head_Box,JJangu Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 12309,604800; },{},{} -13981,Picture_Diary_Box_1m,Diary Magic Powder Box 30 Days,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 12304,2592000; },{},{} -13982,Mini_Heart_Box_1m,Mini Heart Magic Powder Box 30 Days,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 12305,2592000; },{},{} -13983,Newcomer_Box_1m,Freshman Magic Powder Box 30 Days,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 12306,2592000; },{},{} -13984,Kid_Box_1m,Kid Magic Powder Box 30 Days,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 12307,2592000; },{},{} -13985,Magic_Castle_Box_1m,Magic Magic Powder Box 30 Days,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 12308,2592000; },{},{} -13986,Bulging_Head_Box_1m,JJangu Magic Powder Box 30 Days,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 12309,2592000; },{},{} -13987,Ori_Stone_5_Box,Rough Oridecon 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 756,5; },{},{} -13988,Ori_Stone_50_Box,Rough Oridecon 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 756,50; },{},{} -13989,Acidbomb_10_Box,Acid Bomb 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7135,10; getitem 7136,10; },{},{} -13990,Job_Manual50_Box,JOB Battle Manual Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14592,10; },{},{} -13991,Tiger_Mask_Box,Tiger Mask Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5098,1; },{},{} -13992,Cat_Hat_Box,Pussy Cat Bell Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5099,1; },{},{} -13993,Alice_Doll_Box,Alice Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5137,1; },{},{} -13994,Speed_Up_Potion_Box5,Speed Potion 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12016,5; },{},{} -13995,Speed_Up_Potion_Box10,Speed Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12016,10; },{},{} -13996,Big_Bun_Box100,Big Bun 100 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14522,100; },{},{} -13997,Big_Bun_Box500,Big Bun 500 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14522,500; },{},{} -13998,Giant_Fly_Wing_Box500,Giant Fly Wing 500 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12212,500; },{},{} -13999,Pill__Box100,Pill 100 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14523,100; },{},{} -14000,Pill__Box500,Pill 500 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14523,500; },{},{} -14001,Basic_Siege_Supply_Box,Recruit Siege Supply Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 11503,25; getitem 11504,10; },{},{} -14002,Adv_Siege_Supply_Box,Veteran Siege Supply Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 11503,50; getitem 11504,20; },{},{} -14003,Elite_Siege_Supply_Box,Elite Siege Supply Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 11503,100; getitem 11504,50; },{},{} -14004,Poison_Bottle_10_Box,Poison Bottle 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 678,10; },{},{} -14005,Poison_Bottle_5_Box,Poison Bottle 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 678,5; },{},{} -14006,F_Drooping_W_Kitty_Box,Evolved Drooping Cat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5372,1; },{},{} -14007,F_Rabbit_Ear_Hat_Box,Evolved Rabbits Headband Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5378,1; },{},{} -14008,F_L_Orc_Hero_Helm_Box,Evolved Helmet Of Orc Hero Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5375,1; },{},{} -14009,F_Love_Angel_Box,Love Angel Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 12287,604800; },{},{} -14010,F_Squirrel_Box,Squillroll Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 12288,604800; },{},{} -14011,F_Gogo_Box,Gogo Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 12289,604800; },{},{} -14012,F_Love_Angel_Box_1m,Love Angel Magic Powder Box 30 Days,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13915,2592000; },{},{} -14013,F_Squirrel_Box_1m,Squillroll Magic Powder Box 30 Days,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13916,2592000; },{},{} -14014,F_Gogo_Box_1m,Gogo Magic Powder Box 30 Days,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13917,2592000; },{},{} -14015,F_Wasteland_Outlaw_Box,Western Outlaw Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13107,604800; },{},{} -14016,F_Lever_Action_Rifle_Box,Lever Action Rifle Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13170,604800; },{},{} -14017,F_All_In_One_Ring_Box,All In One Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2741,604800; },{},{} -14018,F_Spritual_Tunic_Box,Spiritual Tunic Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2384,604800; },{},{} -14019,F_Recuperative_Box,Recuvative Armor Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2385,604800; },{},{} -14020,F_Shelter_Resist_Box,Shell Of Resistance Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2132,604800; },{},{} -14021,F_Sylphid_Manteau_Box,Silf Manteau Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2543,604800; },{},{} -14022,F_Refresh_Shoes_Box,Refresh Shoes Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2439,604800; },{},{} -14023,F_Toast_Box,Crunch Toast Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5391,604800; },{},{} -14024,F_Robo_Eye_Box,Robo Eye Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5325,1; },{},{} -14025,F_Twin_Ribbon_Box,Maiden's Twin Ribbon Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5187,1; },{},{} -//14026,F_Diadem_Box,Diadem Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5313,1; },{},{} -14027,F_Fish_Head_Hat_Box,Fish Head Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5380,1; },{},{} -14028,F_Santa_Poring_Hat_Box,SantaPoring Cap Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5381,1; },{},{} -14029,F_Bell_Ribbon_Box,Bell Ribbon Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5382,1; },{},{} -14030,F_Mimic_Scroll_Box5,Mimic Summoning 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12276,5; },{},{} -14031,F_Disguise_Scroll_Box5,Disguise Summoning 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12277,5; },{},{} -14032,F_Alice_Scroll_Box5,Alice Summoning 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12278,5; },{},{} -14033,F_Mimic_Scroll_Box10,Mimic Summoning 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12276,10; },{},{} -14034,F_Disguise_Scroll_Box10,Disguise Summoning 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12277,10; },{},{} -14035,F_Alice_Scroll_Box10,Alice Summoning 10 Box),18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12278,10; },{},{} -14036,F_New_Style_Coupon_Box,New Style Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7622,1; },{},{} -14037,F_Repair_Scroll_Box,Repair Weapon Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14521,5; getitem 1002,5; getitem 998,5; getitem 756,5; getitem 999,5; },{},{} -14038,F_Repair_Scroll_Box10,Repair Weapon Scroll 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14521,10; getitem 1002,10; getitem 998,10; getitem 756,10; getitem 999,10; },{},{} -//14039,F_Hockey_Mask_Box,Hockey Mask Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5314,604800; },{},{} -//14040,F_Observer_Box,Observer Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5315,604800; },{},{} -14041,F_WOB_Rune_Box5,Yellow Butterfly Wing 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14582,5; },{},{} -14042,F_WOB_Rune_Box10,Yellow Butterfly Wing Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14582,10; },{},{} -14043,F_WOB_Schwaltz_Box5,Green Butterfly Wing 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14583,5; },{},{} -14044,F_WOB_Schwaltz_Box10,Green Butterfly Wing Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14583,10; },{},{} -14045,F_WOB_Rachel_Box5,Red Butterfly Wing 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14584,5; },{},{} -14046,F_WOB_Rachel_Box10,Red Butterfly Wing Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14584,10; },{},{} -14047,F_WOB_Local_Box5,Blue Butterfly Wing 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14585,5; },{},{} -14048,F_WOB_Local_Box10,Blue Butterfly Wing Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14585,10; },{},{} -14049,F_Spark_Candy_Box5,Candy 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14586,5; },{},{} -14050,F_Spark_Candy_Box10,Candy 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14586,10; },{},{} -14051,F_Dun_Tel_Scroll2_Box5,Dungeon Teleport Scroll II 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14581,5; },{},{} -14052,F_Dun_Tel_Scroll2_Box10,Dungeon Teleport Scroll II 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14581,10; },{},{} -14053,F_Little_Angel_Doll_Box,Little Angel Doll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5324,1; },{},{} -14054,F_Triple_Poring_Hat_Box,Poring 3 Hats Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5255,1; },{},{} -14055,F_Nagan_Box,Refined Nagan Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13407,604800; },{},{} -14056,F_Skewer_Box,Refined Brocca Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1424,604800; },{},{} -14057,F_Survival_Rod_Box,Refined Survivor's Rod Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1628,604800; },{},{} -14058,F_Quadrille_Box,Refined Quadrille Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1537,604800; },{},{} -14059,F_Great_Axe_Box,Refined Great Axe Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1378,604800; },{},{} -14060,F_Bloody_Roar_Box,Refined Bloody Roar Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1273,604800; },{},{} -14061,F_Hardback_Box,Refined Hardcover Book Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1567,604800; },{},{} -14062,F_Fire_Brand_Box,Refined Fireblend Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13408,604800; },{},{} -14063,F_Immaterial_Sword_Box,Refined Immaterial Sword Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13409,604800; },{},{} -14064,F_Unholy_Touch_Box,Refined Unholy Touch Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1274,604800; },{},{} -14065,F_Clack_Of_Servival_Box,Refined Survivor's Manteau Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2535,1209600; },{},{} -14066,F_Masquerade_Box,Refined Masquerade Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5326,1209600; },{},{} -14067,F_Orc_Hero_Helm_Box,Refined Helmet of Orc Hero Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5327,1209600; },{},{} -14068,F_Ear_Of_Devil_Wing_Box,Refined Wing of Diablo Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5328,1209600; },{},{} -14069,F_Dark_Blindfold_Box,Refined Dark Blinder Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5329,1209600; },{},{} -14070,F_K_Drooping_Kitty_Box,Refined Drooping Cat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5330,1209600; },{},{} -14071,F_Corsair_Box,Refined Corsair Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5331,1209600; },{},{} -14072,F_Bloody_Iron_Ball_Box,Refined Bloodied Shackle Ball Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2710,604800; },{},{} -14073,F_Spiritual_Ring_Box,Refined Spiritual Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2711,604800; },{},{} -14074,F_G_O_I_Box5,Wine Glass of Illusion 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14538,5; },{},{} -14075,F_G_O_I_Box10,Glass Of Illusion 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14538,10; },{},{} -14076,F_Shadow_Armor_S_Box5,Scroll of Shadow Armor 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14539,5; },{},{} -14077,F_Shadow_Armor_S_Box10,Scroll of Shadow Armor 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14539,10; },{},{} -14078,F_Shadow_Armor_S_Box30,Scroll of Shadow Armor 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14539,30; },{},{} -14079,F_Holy_Armor_S_Box5,Scroll of Holy Armor 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14540,5; },{},{} -14080,F_Holy_Armor_S_Box10,Scroll of Holy Armor 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14540,10; },{},{} -14081,F_Holy_Armor_S_Box30,Scroll of Holy Armor 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14540,30; },{},{} -14082,FS_Def_Potion_Box10,Small Defense Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14541,10; },{},{} -14083,FS_Def_Potion_Box30,Small Physical Defense Potion 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14541,30; },{},{} -14084,FS_Def_Potion_Box50,Small Physical Defense Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14541,50; },{},{} -14085,FB_Def_Potion_Box10,Big Defense Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14542,10; },{},{} -14086,FB_Def_Potion_Box30,Large Physical Defense Potion 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14542,30; },{},{} -14087,FB_Def_Potion_Box50,Large Physical Defense Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14542,50; },{},{} -14088,FS_Mdef_Potion_Box10,Small Magic Defense Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14543,10; },{},{} -14089,FS_Mdef_Potion_Box30,Small Magical Defense Potion 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14543,30; },{},{} -14090,FS_Mdef_Potion_Box50,Small Magical Defense Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14543,50; },{},{} -14091,FB_Mdef_Potion_Box10,Big Magic Defense Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14544,10; },{},{} -14092,FB_Mdef_Potion_Box30,Large Magical Defense Potion 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14544,30; },{},{} -14093,FB_Mdef_Potion_Box50,Large Magical Defense Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14544,50; },{},{} -14094,F_Flying_Angel_Box,Flying Angel Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5210,1; },{},{} -14095,F_Cat_Hat_Box,Neko Mimi Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5099,1; },{},{} -14096,F_M_F_H_Box,Moonlight Flower Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5214,1; },{},{} -14097,F_Chick_Hat_Box,Baby Chick Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5283,1; },{},{} -14098,F_Pecopeco_Hairband_Box,Peco Peco Hairband Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5286,1209600; },{},{} -14099,F_Red_Glasses_Box,Red Glasses Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5288,1209600; },{},{} -14100,F_Whisper_Mask_Box,Whisper Mask Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5294,1209600; },{},{} -14101,F_Ramen_Hat_Box,Ramen Hat Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5293,1209600; },{},{} -14102,F_Dun_Tele_Scroll1_Box,Dungeon Teleport Scroll 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14527,5; },{},{} -14103,F_Max_Weight_Up_Box,Gym Membership Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7776,1; },{},{} -14104,F_S_Life_Potion_Box,Small Life Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14534,10; },{},{} -14105,F_S_Life_Potion_Box30,Small Life Potion 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14534,30; },{},{} -14106,F_S_Life_Potion_Box50,Small Life Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14534,50; },{},{} -14107,F_M_Life_Potion_Box,Medium Life Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14535,10; },{},{} -14108,F_M_Life_Potion_Box30,Large Life Potion 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14535,30; },{},{} -14109,F_M_Life_Potion_Box50,Large Life Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14535,50; },{},{} -14110,F_Abrasive_Box5,Abrasive 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14536,5; },{},{} -14111,F_Abrasive_Box10,Abrasive 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14536,10; },{},{} -14112,F_Regeneration_Box5,Regeneration Potion 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14537,5; },{},{} -14113,F_Regeneration_Box10,Regeneration Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14537,10; },{},{} -14114,F_Dun_Tele_Scroll_Box10,Dungeon Teleport Scroll 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14527,10; },{},{} -14115,F_Infiltrator_Box,Refined Infiltrator Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1267,604800; },{},{} -14116,F_Muramasa_Box,Refined Muramasa Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1173,604800; },{},{} -14117,F_Excalibur_Box,Refined Excalibur Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13401,604800; },{},{} -14118,F_Combat_Knife_Box,Combat Knife Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13021,604800; },{},{} -14119,F_Counter_Dagger_Box,Counter Dagger Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13022,604800; },{},{} -14120,F_Kaiser_Knuckle_Box,Refined Kaiser Knuckle Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1817,604800; },{},{} -14121,F_Mighty_Staff_Box,Refined Mighty Staff Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1623,604800; },{},{} -14122,F_Right_Epsilon_Box,Light Epsilon Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1372,604800; },{},{} -14123,F_Balistar_Box,Refined Ballista Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1728,604800; },{},{} -14124,F_Diary_Of_Great_Sage,Sage's Diary Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1563,604800; },{},{} -14125,F_Asura_Box,Asura Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 13023,604800; },{},{} -14126,F_Apple_Of_Archer_Box,Apple of Archer Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5265,1209600; },{},{} -14127,F_Bunny_Band_Box,Bunny Band Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5266,1209600; },{},{} -14128,F_Sahkkat_Box,Refined Sakkat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5267,1209600; },{},{} -14129,F_Lord_Circlet_Box,Refined Grand Circlet Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 5268,1209600; },{},{} -14130,F_Elven_Ears_Box,Elven Ears Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2686,1209600; },{},{} -14131,F_Steel_Flower_Box,Steel Flower Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2687,1209600; },{},{} -14132,F_Critical_Ring_Box,Critical Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2688,604800; },{},{} -14133,F_Earring_Box,Earring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2689,604800; },{},{} -14134,F_Ring_Box,Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2690,604800; },{},{} -14135,F_Necklace_Box,Necklace Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2691,604800; },{},{} -14136,F_Glove_Box,Glove Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2692,604800; },{},{} -14137,F_Brooch_Box,Brooch Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2693,604800; },{},{} -14138,F_Rosary_Box,Rosary Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2694,604800; },{},{} -14139,F_Safety_Ring_Box,Safety Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2695,604800; },{},{} -14140,F_Vesper_Core_Box01,Refined Vesper Core 01 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2696,604800; },{},{} -14141,F_Vesper_Core_Box02,Refined Vesper Core 02 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2697,604800; },{},{} -14142,F_Vesper_Core_Box03,Refined Vesper Core 03 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2698,604800; },{},{} -14143,F_Vesper_Core_Box04,Refined Vesper Core 04 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2699,604800; },{},{} -14144,F_Vigorgra_Package1,Vigorgra Box1,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12250,2; getitem 12251,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; },{},{} -14145,F_Vigorgra_Package2,Vigorgra Box2,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12250,2; getitem 12255,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; },{},{} -14146,F_Vigorgra_Package3,Vigorgra Box3,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12252,2; getitem 12253,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; },{},{} -14147,F_Vigorgra_Package4,Vigorgra Box4,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12252,2; getitem 12255,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; },{},{} -14148,F_Vigorgra_Package5,Vigorgra Box5,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12252,2; getitem 12250,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; },{},{} -14149,F_Vigorgra_Package6,Vigorgra Box6,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12250,2; getitem 12251,2; getitem 12208,2; getitem 12215,15; getitem 12217,20; getitem 12211,1; getitem 7621,1; },{},{} -14150,F_Vigorgra_Package7,Vigorgra Box7,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12250,4; getitem 12251,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; },{},{} -14151,F_Vigorgra_Package8,Vigorgra Box8,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12250,4; getitem 12255,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; },{},{} -14152,F_Vigorgra_Package9,Start your Journey Pack,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12252,4; getitem 12253,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; },{},{} -14153,F_Vigorgra_Package10,Siege Mode Pack,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12252,4; getitem 12255,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; },{},{} -14154,F_Vigorgra_Package11,1 Hour Survival Pack,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12252,4; getitem 12250,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; },{},{} -14155,F_Vigorgra_Package12,Weekend Hunting Pack,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12250,4; getitem 12251,4; getitem 12208,4; getitem 12215,30; getitem 12217,40; getitem 12211,2; getitem 7621,2; },{},{} -14156,F_Battle_Manual_Box,Battle Manual Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12208,10; },{},{} -14157,F_Insurance_Package,Insurance Package,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12209,10; },{},{} -14158,F_Bubble_Gum_Box,Bubble Gum Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12210,10; },{},{} -14159,F_Str_Dish_Box,Steamed Tongue Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12202,10; },{},{} -14160,F_Agi_Dish_Box,Steamed Scorpion Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12203,10; },{},{} -14161,F_Int_Dish_Box,Dragon Breath Cocktail Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12204,10; },{},{} -14162,F_Dex_Dish_Box,Hwergelmir's Tonic Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12205,10; },{},{} -14163,F_Luk_Dish_Box,Nine Tail Dish Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12206,10; },{},{} -14164,F_Vit_Dish_Box,Stew Of Immortality Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12207,10; },{},{} -14165,F_Kafra_Card_Box,Kafra Card Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12211,10; },{},{} -14166,F_Giant_Fly_Wing_Box,Giant Fly Wing Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12212,10; },{},{} -14167,F_Neuralizer_Box,Neuralizer Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12213,1; },{},{} -14168,F_Convex_Mirror_Box,Convex Mirror Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12214,10; },{},{} -14169,F_Blessing_10_Scroll_Box,Blessing 10 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12215,10; },{},{} -14170,F_Inc_Agi_10_Scroll_Box,Increase AGI 10 scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12216,10; },{},{} -14171,F_Aspersio_5_Scroll_Box,Aspersio 5 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12217,10; getitem 523,10; },{},{} -14172,F_Assumptio_5_Scroll_Box,Assumptio 5 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12218,10; },{},{} -14173,F_Wind_Walk_10_Scroll_Box,Wind Walk 10 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12219,10; },{},{} -14174,F_Adrenaline_Scroll_Box,Adrenaline 5 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12220,10; },{},{} -14175,F_Megaphone_Box,Megaphone 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12221,10; },{},{} -14176,F_Enriched_Elunium_Box,Enriched Elunium Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7619,10; },{},{} -14177,F_Enriched_Oridecon_Box,Enriched Oridecon Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7620,10; },{},{} -14178,F_Token_Of_Siegfried_Box,Token of Siegfried Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7621,10; },{},{} -14179,F_Giant_Fly_Wing_Box50,Giant Fly Wing 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12212,50; },{},{} -14180,F_Giant_Fly_Wing_Box100,Giant Fly Wing 100 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12212,100; },{},{} -14181,F_Dex_Dish_Box30,Hwergelmir's Tonic 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12205,30; },{},{} -14182,F_Dex_Dish_Box50,Hwergelmir's Tonic 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12205,50; },{},{} -14183,F_Luk_Dish_Box30,Nine Tail Dish 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12206,30; },{},{} -14184,F_Luk_Dish_Box50,Nine Tail Dish 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12206,50; },{},{} -14185,F_Inc_Agi_10_Box30,Increase Agility Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12216,30; },{},{} -14186,F_Inc_Agi_10_Box50,Increase Agility Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12216,50; },{},{} -14187,F_Vit_Dish_Box30,Stew of Immortality 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12207,30; },{},{} -14188,F_Vit_Dish_Box50,Stew of Immortality 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12207,50; },{},{} -14189,F_Insurance_Package30,Life Insurrance 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12209,30; },{},{} -14190,F_Insurance_Package50,Life Insurrance 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12209,50; },{},{} -14191,F_Convex_Mirror_Box5,Convex Mirror 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12214,5; },{},{} -14192,F_Convex_Mirror_Box30,Convex Mirror 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12214,30; },{},{} -14193,F_Blessing10_Box30,Blessing Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12215,30; },{},{} -14194,F_Blessing10_Box50,Lv10 Blessing Scroll Box 50,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12215,50; },{},{} -14195,F_Adrenaline10_Box30,Adrenaline Rush Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12220,30; },{},{} -14196,F_Adrenaline10_Box50,Adrenaline Rush Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12220,50; },{},{} -14197,F_Assumptio_5_Box30,Assumptio Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12218,30; },{},{} -14198,F_Assumptio_5_Box50,Lv5 Assumptio Scroll Box 50,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12218,50; },{},{} -14199,F_Aspersio_5_Box30,Aspersio Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12217,30; getitem 523,30; },{},{} -14200,F_Aspersio_5_Box50,Aspersio Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12217,50; getitem 523,50; },{},{} -14201,F_Agi_Dish_Box30,Steamed Scorpion 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12203,30; },{},{} -14202,F_Agi_Dish_Box50,Steamed Scorpion 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12203,50; },{},{} -14203,F_Wind_Walk10_Box30,Wind Walk Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12219,30; },{},{} -14204,F_Wind_Walk10_Box50,Wind Walk Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12219,50; },{},{} -14205,F_Int_Dish_Box30,Dragon Breath Cocktail 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12204,30; },{},{} -14206,F_Int_Dish_Box50,Dragon Breath Cocktail 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12204,50; },{},{} -14207,F_Battle_Manual_Box1,Field Manual Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12208,1; },{},{} -14208,F_Battle_Manual_Box5,Battle Manual 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12208,5; },{},{} -14209,F_Siegfried_Box5,Token of Siegfried 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7621,5; },{},{} -14210,F_Siegfried_Box20,Token of Siegfried 20 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7621,20; },{},{} -14211,F_Kafra_Card_Box30,Kafra Card 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12211,30; },{},{} -14212,F_Kafra_Card_Box50,Kafra Card 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12211,50; },{},{} -14213,F_Str_Dish_Box30,Steamed Tongue 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12202,30; },{},{} -14214,F_Str_Dish_Box50,Steamed Tongue 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12202,50; },{},{} -14215,F_Bubble_Gum_Box1,Bubble Gum Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12210,1; },{},{} -14216,F_Bubble_Gum_Box5,Bubble Gum 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12210,5; },{},{} -14217,F_Megaphone_Box1,Megaphone Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12221,1; },{},{} -14218,F_Megaphone_Box5,Megaphone 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12221,5; },{},{} -14219,F_Enriched_Elunium_Box5,Enriched Elunium 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7619,5; },{},{} -14220,F_Enriched_Oridecon_Box5,Enriched Oridecon 5 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7620,5; },{},{} -14221,MP_Scroll_Box,Mystical Amplification Scroll 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14593,10; },{},{} -14222,MP_Scroll_Box30,Mystical Amplification Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14593,30; },{},{} -14223,MP_Scroll_Box50,Mystical Amplification Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14593,50; },{},{} -14224,Quagmire_Scroll_Box,Quagmire Scroll 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14594,10; },{},{} -14225,Quagmire_Scroll_Box30,Quagmire Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14594,30; },{},{} -14226,Quagmire_Scroll_Box50,Quagmire Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14594,50; },{},{} -14227,Healing_Staff_Box,Healing Staff Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 1638,604800; },{},{} -//14228,Praxinus_Box,Praccsinos Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 2752,604800; },{},{} -//14229,Cherry_Blossom_Scroll,Cherry Blossom Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -//14230,Note_Headphones_Box,Note Headphones Box,18,,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5151,1; },{},{} -//14231,Novice_Breastplate_Boxes,Novice Breastplate Boxes,18,,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -14232,Yggdrasilberry_Box_,Yggdrasil Berry 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 607,10; },{},{} -14233,Dead_Tree_Branch_Box1,Dead Branch 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 604,10; },{},{} -14234,Dead_Tree_Branch_Box2,Dead Branch 25 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 604,25; },{},{} -14235,Field_Manual_Box_2,Field Manual 2 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12208,2; },{},{} -14236,Steamed_Tongue_Box_20,Steamed Tongue 20 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12202,20; },{},{} -14237,Steamed_Desert_Scorpions_Box_20,Steamed Desert Scorpions Box(20),18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12203,20; },{},{} -14238,Stew_Of_Immortality_Box_20,Immortal Stew 20 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12207,20; },{},{} -14239,Dragon_Breath_Cocktail_Box_20,Dragon Breath Cocktail 20 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12204,20; },{},{} -14240,Hwergelmir's_Tonic_Box_20,Hwergelmir's Tonic 20 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12205,20; },{},{} -14241,Nine_Tail_Dish_Box_20,Nine Tail Dish 20 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12206,20; },{},{} -14242,Beholder_Ring_Box,Beholder Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2753,1; },{},{} -14243,Hallow_Ring_Box,Hallow Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2754,1; },{},{} -14244,Clamorous_Ring_Box,Clamorous Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2755,1; },{},{} -14245,Chemical_Ring_Box,Chemical Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2756,1; },{},{} -14246,Insecticide_Ring_Box,Insecticide Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2757,1; },{},{} -14247,Fisher_Ring_Box,Fisher Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2758,1; },{},{} -14248,Decussate_Ring_Box,Decussate Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2759,1; },{},{} -14249,Bloody_Ring_Box,Bloody Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2760,1; },{},{} -14250,Satanic_Ring_Box,Satanic Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2761,1; },{},{} -14251,Dragoon_Ring_Box,Dragon Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2762,1; },{},{} -14252,Beholder_Ring_Box2,Beholder Ring Box II,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2753,1; },{},{} -14253,Hallow_Ring_Box2,Hallow Ring Box II,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2754,1; },{},{} -14254,Clamorous_Ring_Box2,Clamorous Ring Box II,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2755,1; },{},{} -14255,Chemical_Ring_Box2,Chemical Ring Box II,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2756,1; },{},{} -14256,Insecticide_Ring_Box2,Insecticide Ring Box II,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2757,1; },{},{} -14257,Fisher_Ring_Box2,Fisher Ring Box II,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2758,1; },{},{} -14258,Decussate_Ring_Box2,Decussate Ring Box II,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2759,1; },{},{} -14259,Bloody_Ring_Box2,Bloody Ring Box II,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2760,1; },{},{} -14260,Satanic_Ring_Box2,Satanic Ring Box II,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2761,1; },{},{} -14261,Dragoon_Ring_Box2,Dragon Ring Box II,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2762,1; },{},{} -14262,Diary_Magic_Powder_Box,Diary Magic Powder Box,18,20,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 12304,604800; },{},{} -14263,Mini_Heart_Magic_Powder_Box,Mini Heart Magic Powder Box,18,20,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 12305,604800; },{},{} -14264,Freshman_Magic_Powder_Box,Freshman Magic Powder Box,18,20,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 12306,604800; },{},{} -14265,Kid_Magic_Powder_Box,Kid Magic Powder Box,18,20,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 12307,604800; },{},{} -14266,Magic_Magic_Powder_Box,Magic Magic Powder Box,18,20,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 12308,604800; },{},{} -14267,JJangu_Magic_Powder_Box,JJangu Magic Powder Box,18,20,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ rentitem 12309,604800; },{},{} -14268,Diary_Magic_Powder_Box4,Diary Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -14269,Mini_Heart_Magic_Powder_Box4,Mini_Heart_Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -14270,Freshman_Magic_Powder_Box4,Freshman Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -14271,Kid_Magic_Powder_Box4,Kid Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -14272,Magic_Magic_Powder_Box4,Magic Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -14273,JJangu_Magic_Powder_Box4,JJangu Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -14274,Amplification_10_Scroll_Box2,Mystical Amplification Scroll 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14593,10; },{},{} -14275,Amplification_30_Scroll_Box2,Mystical Amplification Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14593,30; },{},{} -14276,Amplification_50_Scroll_Box2,Mystical Amplification Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14593,50; },{},{} -14277,Quagmire_10_Scroll_Box2,Quagmire Scroll 10 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14594,10; },{},{} -14278,Quagmire_30_Scroll_Box2,Quagmire Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14594,30; },{},{} -14279,Quagmire_50_Scroll_Box2,Quagmire Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14594,50; },{},{} -14280,Healing_Staff_Box2,Healing Staff Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 1638,1; },{},{} -//14281,Praccsinos_Box,Praccsinos_Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2752,1; },{},{} -14282,Emperium_Box,Emperium Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 714,1; },{},{} -14283,Marriage_Certificate_Box,Written Oath Of Marriage Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 6026,1; },{},{} -//14284,Muffler_Box,Muffler Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2548,1; },{},{} -//14285,Balkiriah_Shield_Box,Balkiriah Shield Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2137,1; },{},{} -//14286,Skull_Ring_Box,Skull Ring Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 2763,1; },{},{} -14287,Baricade_Repair_Kit,Barricade Repair Kit,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 1019,30; getitem 999,10; getitem 1011,10; getitem 984,5; },{},{} -14288,Guardian_Stone_Repair_Kit,Guardian Stone Repair Kit,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 984,1; getitem 985,1; getitem 7049,30; getitem 717,5; getitem 716,5; getitem 715,5; },{},{} -14289,Cloth_Dye_Coupon_Box,New Clothing Dye Coupon Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 6046,1; },{},{} -14290,Cloth_Dye_Coupon2_Box,Original Clothing Dye Coupon Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 6047,1; },{},{} -14291,Cloth_Dye_Coupon3_Box,Clothing Dye Coupon Box,2,,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 6046,1; },{},{} -14292,Cloth_Dye_Coupon4_Box,Clothing Dye Coupon Box II,2,,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 6047,1; },{},{} -//14293,Mercenary_Contract_Box,Mercenary Contract Box,2,,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 6050,1; },{},{} -//14294,Mercenary_Contract_Box5,Mercenary Contract Box 5ea,2,,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 6050,5; },{},{} -//14295,Mercenary_Contract_Box10,Mercenary Contract Box 10ea,2,,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 6050,10; },{},{} -14296,Angel_Scroll,Angel Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -14297,Devil_Scroll,Devil Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -14300,Mask_Of_Ifrit_Box,Mask Of Ifrit Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5420,1; },{},{} -14301,Ifrit's_Ear_Box,Ears Of Ifrit Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5421,1; },{},{} -14304,Scuba_Mask_Box,Scuba Mask Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5397,1; },{},{} -14314,Phreeoni_Scroll_Box,Phreeoni Scroll Box,2,,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14597,10; },{},{} -14315,GhostringS_Box,Ghostring Scroll Box,2,,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14598,10; },{},{} -14316,July7_Scroll,July7 Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -14317,Bacsojin_Scroll,Bacsojin Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -14343,Spiked_Scarf_Box,Spiked Scarf Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5462,1; },{},{} -14344,Rainbow_Scarf_Box,Rainbow Scarf Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5463,1; },{},{} -14345,Animal_Scroll,Animal Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -14349,Mental_Potion20_Box,Mental Potion 20 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14600,20; },{},{} -14350,Mental_Potion50_Box,Mental Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14600,50; },{},{} -14351,Tyr's_Blessing20_Box,Tyr's Blessing 20 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14601,20; },{},{} -14352,Tyr's_Blessing50_Box,Tyr's Blessing 50 Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 14601,50; },{},{} -14363,Heart_Scroll,Heart Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -14375,Holy_Celestial_Axe_Box,Celestial Axe Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 1383,1; },{},{} -14376,Angeling_Pot_Box,Angeling Potion Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12350,1; },{},{} -14377,Shout_Megaphone_Box,Scream Megaphone Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12351,1; },{},{} -14380,Anubis_Helm_Box,Anubis Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5490,1; },{},{} -14393,Almighty_Charm_Box,Universal Amulet Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 7945,1; },{},{} -14408,New_Year_Scroll,New Year Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -14440,Dice_Hat_Box,Dice Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5496,1; },{},{} -14441,King_Tiger_Doll_Hat_Box,King Tiger Doll Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5497,1; },{},{} -14447,Pirate's_Pride_Box,Pirate's Pride Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5501,1; },{},{} -14448,Necromencer's_Hood_Box,Necromancer's Hood Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5502,1; },{},{} -14459,Rabbit_Magic_Hat_Box,Magic Rabbit Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5503,1; },{},{} -14460,China_Wedding_Veil_Box,RO 5th Wedding Anniversary Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5504,1; },{},{} -14461,Asara_Fairy_Hat_Box,Ashura Fairy Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5505,1; },{},{} -14466,Valentine_Pledge_Box,Valentine's Emblem Box,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -14469,Ox_Tail_Scroll,Ox Tail Egg,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -14500,Insurance60,Life Insurrance Certificate,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_LIFEINSURANCE,3600000,0; },{},{} -14508,Zeny_Scroll,Zeny Pet Egg Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -14509,Light_Center_Pot,Light Concentration Potion,2,800,,20,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_ASPDPOTION0,1800000,0; },{},{} -14510,Light_Awakening_Pot,Light Awakening Potion,2,1500,,20,,,,,0xFFF7FEEF,7,2,,,40,,,{ sc_start SC_ASPDPOTION1,1800000,0; },{},{} -14511,Light_Berserk_Pot,Light Berserk Potion,2,3000,,20,,,,,0x01E646A6,7,2,,,85,,,{ sc_start SC_ASPDPOTION2,1800000,0; },{},{} -14512,Meteor_10_Scroll,Meteor Storm Scroll,11,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "WZ_METEOR",10; },{},{} -14513,Storm_10_Scroll,Storm Gust Scroll,11,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "WZ_STORMGUST",10; },{},{} -14514,Vermilion_10_Scroll,Lord of Vermilion Scroll,11,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "WZ_VERMILION",10; },{},{} -14515,Lex_Aeterna_Scroll,Lex Aeterna Scroll,11,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "PR_LEXAETERNA",1; },{},{} -14516,Magnificat_5_Scroll,Magnificat Scroll,11,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "PR_MAGNIFICAT",5; },{},{} -14517,CP_Helm_Scroll,Chemical Protection Helm Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ unitskilluseid getcharid(3),"AM_CP_HELM",5; },{},{} -14518,CP_Shield_Scroll,Chemical Protection Shield Scrol,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ unitskilluseid getcharid(3),"AM_CP_SHIELD",5; },{},{} -14519,CP_Armor_Scroll,Chemical Protection Armor Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ unitskilluseid getcharid(3),"AM_CP_ARMOR",5; },{},{} -14520,CP_Weapon_Scroll,Chemical Protection Weapon Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ unitskilluseid getcharid(3),"AM_CP_WEAPON",5; },{},{} -14521,Repair_Scroll,Repair Weapon Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ unitskilluseid getcharid(3),"BS_REPAIRWEAPON",1; },{},{} -14522,Big_Bun,Big Bun,0,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 100,0; },{},{} -14523,Pill_,Pill,0,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 0,100; },{},{} -14524,Superb_Fish_Slice,Superb Fish Slice,0,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 100,100; },{},{} -14525,Chewy_Ricecake,Chewy Ricecake,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_ATKPOTION,1800000,10; },{},{} -14526,Oriental_Pastry,Oriental Pastry,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_MATKPOTION,1800000,10; },{},{} -14527,Dun_Tele_Scroll1,Dungeon Teleport Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "F_CashDungeon",1; },{},{} -14528,PVP_Tele_Scroll,PVP Teleport Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -14529,Greed_Scroll,Greed Scroll,11,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "BS_GREED",1; },{},{} -14530,Flee_30_Scroll,Evasion Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_FLEEFOOD,1800000,30; },{},{} -14531,Accuracy_30_Scroll,Concentration Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_HITFOOD,1800000,30; },{},{} -14532,Battle_Manual25,Field Manual 25%,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_EXPBOOST,1800000,25; },{},{} -14533,Battle_Manual100,Field Manual 100%,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_EXPBOOST,1800000,100; },{},{} -14534,Small_Life_Potion,Small Life Potion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ specialeffect2 EF_HEAL3; sc_start4 SC_S_LIFEPOTION,600000,-5,5,0,0; },{},{} -14535,Med_Life_Potion,Medium Life Potion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ specialeffect2 EF_HEAL3; sc_start4 SC_L_LIFEPOTION,600000,-7,4,0,0; },{},{} -14536,Abrasive,Abrasive,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ specialeffect2 EF_MAGICALATTHIT; sc_start SC_INCCRI,300000,30; },{},{} -14537,Regeneration_Potion,Regeneration Potion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ specialeffect2 EF_LIGHTSPHERE; sc_start SC_INCHEALRATE,1800000,20; },{},{} -14538,Glass_Of_Illusion,Glass of Illusion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ specialeffect2 EF_STEAL; sc_start SC_INCFLEE2,60000,20; },{},{} -14539,Shadow_Armor_S,Shadow Armor Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ specialeffect2 EF_CLOAKING; sc_start4 SC_ELEMENTALCHANGE,1800000,1,Ele_Dark,1,0; },{},{} -14540,Holy_Armor_S,Holy Armor Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ specialeffect2 EF_BENEDICTIO; sc_start4 SC_ELEMENTALCHANGE,1800000,1,Ele_Holy,1,0; },{},{} -14541,S_Def_Potion,Small Defense Potion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ specialeffect2 EF_GUARD; sc_start SC_DEF_RATE,60000,3; },{},{} -14542,B_Def_Potion,Big Defense Potion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ specialeffect2 EF_GUARD; sc_start SC_DEF_RATE,180000,3; },{},{} -14543,S_Mdef_Potion,Small Magic Defense Potion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ specialeffect2 EF_SPELLBREAKER; sc_start SC_MDEF_RATE,60000,3; },{},{} -14544,B_Mdef_Potion,Big Magic Defense Potion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ specialeffect2 EF_SPELLBREAKER; sc_start SC_MDEF_RATE,180000,3; },{},{} -14545,Battle_Manual_X3,Field Manual 300%,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_EXPBOOST,1800000,300; },{},{} -14546,Fire_Cracker_Love,I Love You Firecracker,2,2,,20,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -14547,Fire_Cracker_Wday,Whiteday Firecracker,2,2,,20,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -14548,Fire_Cracker_Vday,Valentine's Day Firecracker,2,2,,20,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -14549,Fire_Cracker_Bday,Birthday Firecracker,2,2,,20,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -14550,Fire_Cracker_Xmas,Xmas Firecracker,2,2,,20,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -14551,Str_Dish01_,Fried Grasshopper Legs,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_STRFOOD,1200000,1; percentheal 5,0; },{},{} -14552,Str_Dish02_,Seasoned Sticky Webfoot,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_STRFOOD,1200000,2; percentheal 5,0; },{},{} -14553,Str_Dish03_,Bomber Steak,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_STRFOOD,1200000,3; percentheal 5,0; },{},{} -14554,Int_Dish01_,Grape Juice Herbal Tea,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INTFOOD,1200000,1; percentheal 0,5; },{},{} -14555,Int_Dish02_,Autumn Red Tea,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INTFOOD,1200000,2; percentheal 0,5; },{},{} -14556,Int_Dish03_,Honey Herbal Tea,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INTFOOD,1200000,3; percentheal 0,5; },{},{} -14557,Vit_Dish01_,Steamed Crab Nippers,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_VITFOOD,1200000,1; percentheal 5,0; },{},{} -14558,Vit_Dish02_,Assorted Seafood,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_VITFOOD,1200000,2; percentheal 5,0; },{},{} -14559,Vit_Dish03_,Clam Soup,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_VITFOOD,1200000,3; percentheal 5,0; },{},{} -14560,Agi_Dish01_,Frog Egg Squid Ink Soup,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_AGIFOOD,1200000,1; percentheal 3,1; },{},{} -14561,Agi_Dish02_,Smooth Noodle,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_AGIFOOD,1200000,2; percentheal 3,1; },{},{} -14562,Agi_Dish03_,Tentacle Cheese Gratin,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_AGIFOOD,1200000,3; percentheal 3,1; },{},{} -14563,Dex_Dish01_,Honey Grape Juice,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_DEXFOOD,1200000,1; percentheal 2,2; },{},{} -14564,Dex_Dish02_,Chocolate Mousse Cake,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_DEXFOOD,1200000,2; percentheal 2,2; },{},{} -14565,Dex_Dish03_,Fruit Mix,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_DEXFOOD,1200000,3; percentheal 2,2; },{},{} -14566,Luk_Dish01_,Fried Monkey Tails,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_LUKFOOD,1200000,1; percentheal 3,2; },{},{} -14567,Luk_Dish02_,Mixed Juice,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_LUKFOOD,1200000,2; percentheal 3,2; },{},{} -14568,Luk_Dish03_,Fried Sweet Potato,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_LUKFOOD,1200000,3; percentheal 4,2; },{},{} -14569,Knife_Goblin_Ring,Knife Goblin Ring,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1122; },{},{} -14570,Flail_Goblin_Ring,Flail Goblin Ring,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1123; },{},{} -14571,Hammer_Goblin_Ring,Hammer Goblin Ring,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1125; },{},{} -14572,Holy_Marble,Holy Marble,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1385; },{},{} -14573,Red_Burning_Stone,Red Burning Stone,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1382; },{},{} -14574,Skull_Of_Vagabond,Vagabond's Skull,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ pet 1208; },{},{} -14575,Str_Dish05_,Lutie Lady's Pancake,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_STRFOOD,1200000,5; percentheal 10,0; },{},{} -14576,Int_Dish05_,Mastela Fruit Wine,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INTFOOD,1200000,5; percentheal 0,10; },{},{} -14577,Vit_Dish05_,Spicy Fried Bao,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_VITFOOD,1200000,5; percentheal 10,0; },{},{} -14578,Agi_Dish05_,Steamed Bat Wing in Pumpkin,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_AGIFOOD,1200000,5; percentheal 6,2; },{},{} -14579,Dex_Dish05_,Green Salad,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_DEXFOOD,1200000,5; percentheal 5,5; },{},{} -14580,Luk_Dish05_,Fried Scorpion Tails,0,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_LUKFOOD,1200000,5; percentheal 5,2; },{},{} -14581,Dun_Tele_Scroll2,Dungeon Teleport Scroll II,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "F_CashDungeon",2; },{},{} -14582,WOB_Rune,Yellow Butterfly Wing,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "F_CashCity",1; },{},{} -14583,WOB_Schwaltz,Green Butterfly Wing,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "F_CashCity",2; },{},{} -14584,WOB_Rachel,Red Butterfly Wing,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "F_CashCity",3; },{},{} -14585,WOB_Local,Blue Butterfly Wing,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "F_CashCity",4; },{},{} -14586,Spark_Candy,Jumping Candy,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -14587,Repair_Scroll_,Equipment Repair Spell Book,11,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "BS_REPAIRWEAPON",1; },{},{} -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_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; },{},{} -14595,Unsealed_Magic_Spell,Unsealed Magic Spell,2,0,,0,,,,,0xFFFFFFFF,7,2,,,,,,{ warp "yuno_fild09",255,127; },{},{} -14596,Pierre_Treasurebox,Pierre's Treasure Box,2,0,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ getrandgroupitem(IG_Pierre_Treasurebox),1; getrandgroupitem(IG_Pierre_Treasurebox),1; getrandgroupitem(IG_Pierre_Treasurebox),1; getrandgroupitem(IG_Pierre_Treasurebox),1; getrandgroupitem(IG_Pierre_Treasurebox),1; getrandgroupitem(IG_Pierre_Treasurebox),1; },{},{} -14597,PhreeoniS,Phreeoni Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start2 SC_ITEMSCRIPT,180000,4121,EFST_FOOD_BASICHIT; },{},{} -14598,GhostringS,Ghostring Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start2 SC_ITEMSCRIPT,60000,4047,EFST_ARMOR_PROPERTY; },{},{} -14599,Greed_Scroll_C,Greed Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -14600,Mental_Potion,Mental Potion,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -14601,Tyr's_Blessing,Tyr's Blessing,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_FLEEFOOD,300000,30; sc_start SC_HITFOOD,300000,30; sc_start SC_ATKPOTION,300000,20; sc_start SC_MATKPOTION,300000,20; },{},{} -14602,TaogunkaS,Tao Gunka Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start2 SC_ITEMSCRIPT,180000,4302,EFST_MVPCARD_TAOGUNKA; },{},{} -14603,MistressS,Mistress Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start2 SC_ITEMSCRIPT,180000,4132,EFST_MVPCARD_MISTRESS; },{},{} -14604,Orc_HeroS,Orc Hero Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start2 SC_ITEMSCRIPT,60000,4143,EFST_MVPCARD_ORCHERO; },{},{} -14605,Orc_LoadS,Orc Lord Scroll,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start2 SC_ITEMSCRIPT,180000,4135,EFST_MVPCARD_ORCLORD; },{},{} -14606,Job_Manual25,JOB Battle Manual,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -14607,Luxurious_Dinner_W,Luxurious Western Food,2,10000,,600,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INCALLSTATUS,3600000,3; },{},{} -14608,Luxurious_Dinner_E,Manchu-Han Imperial Feast,2,20000,,1200,,,,,0xFFFFFFFF,7,2,,,,,,{ sc_start SC_INCALLSTATUS,3600000,6; },{},{} -14609,Spoiled_Cuisine,Spoiled Cuisine,2,5000,,300,,,,,0xFFFFFFFF,7,2,,,,,,{ percentheal 10,10; },{},{} -// More Armors -15000,Bone_Plate,Bone Plate,4,20,,1000,,7,,1,0x000654E2,2,2,16,,85,1,0,{ bonus bStr,1; bonus bMdef,3; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus2 bIgnoreDefRaceRate,RC_Brute,10; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,10; bonus3 bAutoSpellWhenHit,"NPC_WIDEBLEEDING",1,10; },{},{} -15001,Odin's_Blessing_I,Odin's Blessing,4,0,,0,,10,,0,0xFFFFFFFE,7,2,16,,0,0,0,{},{},{} -// More Maces -16000,Erde,Erde,5,20,,500,130,,1,2,0x0004C5B2,2,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,2,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,7,2,2,3,1,0,8,{ bonus2 bAddEff,Eff_Stun,1000; bonus2 bAddSize,Size_All,40; },{},{} -// -16030,Pilebuncker_S,Pile Bunker S,5,20,,3000,400,,1,1,0x00000400,7,2,2,4,130,1,8,{ bonus bAspdRate,getrefine()/2; },{},{} -16031,Pilebuncker_P,Pile Bunker P,5,20,,4000,450,,1,,0x00000400,7,2,2,4,130,1,8,{ bonus bBaseAtk,getrefine()*5; },{},{} -16032,Pilebuncker_T,Pile Bunker T,5,20,,3500,400,,1,1,0x00000400,7,2,2,4,130,1,8,{ bonus bUseSPrate,getrefine()*-1; },{},{} -// More Rental Boxes -16134,King_Frog_Hat_Box,Frog King Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5528,1; },{},{} -16135,Evil's_Bone_Hat_Box,Satanic Bone Helm Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5529,1; },{},{} -//16186,Baby_Dragon_Hat_Box, -//16226,Aries_Diadem_Box, -//16227,Aries_Crown_Box, -//16230,Taurus_Diadem_Box, -//16231,Taurus_Crown_Box, -//16246,Crown_of_Deceit_Box, -16247,Dragon_Arhat_Mask_Box,Dragon Arhat Mask Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5565,1; },{},{} -16248,Tiger_Arhat_Mask_Box,Tiger Arhat Mask Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5566,1; },{},{} -//16249,Knight's_Gift_Box -//16250,Valkyrie's_Gift_Box -//16251,Gemini_Diadem_Box -//16252,Gemini_Crown_Box -16257,Buddah_Scroll,Buddah Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -16258,HD_Bradium_Box5,HD Bradium 5 Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 6226,5; },{},{} -16259,HD_Carnium_Box5,HD Carnium 5 Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 6225,5; },{},{} -16260,HD_Bradium_Box10,HD Bradium 10 Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 6226,10; },{},{} -16261,HD_Carnium_Box10,HD Carnium 10 Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 6225,10; },{},{} -//16262,HD_Bradium_5_Box, -//16263,HD_Carnium_5_Box, -//16264,HD_Bradium_10_Box, -//16265,HD_Carnium_10_Box, -//16267,HE_Battle_Manual_Box -//16268,HE_Bubble_Gum_Box -//16269,Cancer_Diadem_Box -//16270,Cancer_Crown_Box, -16304,Evil_Incarnation_Disable,Evil Incarnation,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -//16343,Leo_Crown_Box -//16344,Leo_Diadem_Box -//16345,Leo_Crown_Box -//16346,Leo_Diadem_Box -//16368,Virgo_Crown_Box -16371,Tw_Aug_Scroll,Tw Aug Scroll,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -//16381,WoE_Teleport_Scroll_100_Box -16393,HD_Ori_Box5,HD Oridecon 5 Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 6240,5; },{},{} -16394,HD_Ori_Box10,HD Oridecon 10 Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 6240,10; },{},{} -16395,HD_Elu_Box5,HD Elunium 5 Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 6241,5; },{},{} -16396,HD_Elu_Box10,HD Elunium 10 Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 6241,10; },{},{} -//16397,Virgo_Diadem_Box -//16398,Virgo_Crown_Box -//16399,Virgo_Diadem_Box -//16418,Giant_Fly_Wing_Box_500 -//16419,Greed_Scroll_30_Box -//16420,Adventurer_Pack -//16421,Written_Oath_Of_Marriage_Box -//16422,Baphomet_Horns_Box -//16423,Episode_13.1_Key_Package -//16424,Executioner_Box -//16425,Cutlas_Box -//16426,Moonlight_Dagger_Box -//16427,Wrench_Box -//16428,Solar_Sword_Box -//16429,Tomahawk_Box -//16430,Rudra_Bow_Box -//16431,Pole_Axe_Box -//16436,Libra_Crown_Box -//16437,Libra_Crown_Box -//16438,Libra_Diadem_Box -//16439,Libra_Diadem_Box -//16447,Scorpio_Crown_Box -//16448,Scorpio_Diadem_Box -//16449,Scorpio_Crown_Box -//16450,Scorpio_Diadem_Box -16461,Red_Wing_Hat_Box,Red Wing Hat Box,18,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 5690,1; },{},{} -//16462,Red_Wing_Hat_Box -//16543,Snowman_Hat_Box -//16544,Snowman_Hat_Box -//16548,Sagittarius_Crown_Box -//16549,Sagittarius_Diadem_Box -//16550,Sagittarius_Crown_Box -//16551,Sagittarius_Diadem_Box -//16554,Elven_Sunglasses_Box -16555,Pr_Reset_Stone_Box,Pr Reset Stone Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{},{},{} -//16565,Capricorn_Crown_Box -//16566,Capricorn_Crown_Box -//16567,Capricorn_Diadem_Box -//16568,Capricorn_Diadem_Box -//16588,Thoughtful_Hat_Box -//16589,Thoughtful_Hat_Box -//16590,Thoughtful_Hat_Box -16677,Universal_Catalog_Gold_Box10,Universal Catalog Gold 10 Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12581,10; },{},{} -16678,Universal_Catalog_Gold_Box50,Universal Catalog Gold 50 Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12581,50; },{},{} -16679,Universal_Catalog_Gold_Box10_,Universal Catalog Gold 10 Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12581,10; },{},{} -16680,Universal_Catalog_Gold_Box50_,Universal Catalog Gold 50 Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12581,50; },{},{} -16776,Universal_Catalog_Gold_Box10__,Universal Catalog Gold 10 Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12581,10; },{},{} -16777,Universal_Catalog_Gold_Box50__,Universal Catalog Gold 50 Box,2,0,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 12581,50; },{},{} -// -17104,HD_Oridecon_50Box,HD Oridecon 50 Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 6240,50; },{},{} -17105,HD_Elunium_50Box,HD Elunium 50 Box,2,20,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ getitem 6241,50; },{},{} -// Mechanic/Genetic Cannonballs -18000,Cannon_Ball,Cannon Ball,10,100,,10,100,,,,0x00040400,8,2,32768,,99,,8,{},{},{} -18001,Holy_Cannon_Ball,Holy Cannon Ball,10,200,,10,120,,,,0x00040400,8,2,32768,,99,,8,{ bonus bAtkEle,Ele_Holy; },{},{} -18002,Dark_Cannon_Ball,Dark Cannon Ball,10,200,,10,120,,,,0x00040400,8,2,32768,,99,,8,{ bonus bAtkEle,Ele_Dark; },{},{} -18003,Soul_Cannon_Ball,Soul Cannon Ball,10,200,,10,120,,,,0x00040400,8,2,32768,,99,,8,{ bonus bAtkEle,Ele_Ghost; },{},{} -18004,Iron_Cannon_Ball,Iron Cannon Ball,10,500,,10,250,,,,0x00040400,8,2,32768,,99,,8,{},{},{} -// More Bows -18100,Shooting_Star_C,Shooting Star,5,20,,0,190,,5,0,0x00080800,7,2,34,4,1,1,11,{ bonus bLongAtkRate,20; },{},{} -18101,F_Bow_Of_Rudra_C,Rudra Bow,5,2,,0,185,,5,0,0x000A0848,7,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,7,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; },{},{} -// More Headgears -18500,Cheer_Scarf6,Cheer Scarf6,4,0,,0,,0,,0,0xFFFFFFFF,7,2,1,,1,0,369,{},{},{} -18501,Cheer_Scarf8,Cheer Scarf8,4,0,,0,,0,,0,0xFFFFFFFF,7,2,1,,1,0,369,{},{},{} -18502,Cheer_Scarf10,Cheer Scarf10,4,0,,0,,0,,0,0xFFFFFFFF,7,2,1,,1,0,369,{},{},{} -18503,Small_Horn_Of_Devil,Small Devil Horns,4,20,,100,,2,,0,0xFFFFFFFF,7,2,512,,1,0,562,{ bonus bAtkRate,5; bonus bMatkRate,5; bonus bMaxHPRate,10; bonus bMaxSPRate,10; },{},{} -18505,Umbala_Spirit,Umbala Spirit,4,0,,200,,1,,1,0xFFFFFFFF,7,2,1,,30,0,675,{ bonus bVit,1; },{},{} -18506,Hattah_Black,Hattah Black,4,12000,,4000,,2,,1,0xFFFFFFFF,7,2,769,,1,1,676,{},{},{} -18507,Elven_Ears_,Elven Ears,4,20,,100,,0,,1,0xFFFFFFFE,7,2,512,,70,0,73,{},{},{} -// -18539,Skull_Cap,Skull Cap,4,40,,200,,5,,1,0xFFFFFFFF,7,2,256,,10,1,713,{ bonus bMatkRate,2; if(getrefine() >= 5) { bonus bMatkRate,3; } if(getrefine() >= 7) { bonus bMatkRate,3; } },{},{} -// -18595,Horn_Of_Ancient,Horn of Ancient,4,40,,200,,8,,1,0xFFFFFFFF,7,2,256,,50,1,757,{ autobonus "{ bonus bBaseAtk,100; }",5,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }"; },{},{} -18596,Sprout_Hat,Sprout Hat,4,20,,200,,4,,0,0xFFFFFFFF,7,2,256,,70,1,758,{ skill "WZ_HEAVENDRIVE",3; },{},{} -18597,Mercury_Helm,Mercury Riser,4,40,,200,,10,,1,0xFFFFFFFF,7,2,256,,0,1,759,{ bonus bAspdRate,3; bonus bCritical,3; if(getrefine() >= 7) { bonus bAspdRate,2; bonus bCritical,2; } if(getrefine() >= 9) { bonus bAspdRate,2; bonus bCritical,2; }},{},{} -// -18600,Cat_Ears_Beret,Cat Ear Beret,4,20,,100,,5,,0,0xFFFFFFFF,7,2,256,,0,1,761,{ bonus bAtkRate,5; if(getrefine() > 5 && getrefine() <= 12) { bonus2 bAddRace,RC_DemiHuman,(getrefine() - 5); bonus2 bSubRace,RC_DemiHuman,(getrefine() - 5); bonus2 bAddRace,RC_Player_Human,(getrefine() - 5); bonus2 bSubRace,RC_Player_Human,(getrefine() - 5); } if(getrefine() > 12) { bonus2 bAddRace,RC_DemiHuman,7; bonus2 bAddRace,RC_Player_Human,7; bonus2 bSubRace,RC_DemiHuman,7; bonus2 bSubRace,RC_Player_Human,7; } },{},{} -// -18612,White_Musang_Hat,White Musang Hat,4,40,,200,,3,,1,0xFFFFFFFF,7,2,256,,0,1,770,{ bonus bStr,2; bonus bVit,2; bonus bLuk,1; bonus bUnbreakableHelm; },{},{} -18613,Black_Musang_Hat,Black Musang Hat,4,40,,200,,3,,1,0xFFFFFFFF,7,2,256,,0,1,771,{ bonus bInt,2; bonus bDex,2; bonus bAgi,1; bonus bUnbreakableHelm; },{},{} -// -18620,Heart_Eyepatch,Heart Eyepatch,4,5,,200,,2,,0,0xFFFFFFFF,7,2,512,,20,1,779,{},{},{} -// -18656,Wit_Pumpkin_Hat,Witch's Pumpkin Hat,4,20,,300,,10,,0,0xFFFFFFFF,7,2,256,,20,1,717,{ bonus bMdef,10; bonus bStr,2; bonus bInt,2; bonus2 bMagicAddRace,RC_Undead,15; bonus2 bMagicAddRace,RC_Demon,15; },{},{} - -// Costume System -19500,T_Mr_Smile,T Mr Smile,4,0,,0,,0,,0,0xFFFFFFFF,7,2,6144,,0,0,65,{ bonus bStr,2; },{},{} -19501,T_Spinx_Helm,T Spinx Helm,4,0,,0,,0,,1,0xFFFFFFFF,7,2,5120,,0,0,137,{},{},{} -19504,T_Sunglasses,T Sunglasses,4,0,,0,,0,,0,0xFFFFFFFF,7,2,2048,,0,0,12,{},{},{} -19505,T_Cigarette,T Cigarette,4,0,,0,,0,,0,0xFFFFFFFF,7,2,4096,,0,0,54,{},{},{} -19506,T_Valkyrie_Feather_Band,T Valkyrie Feather Band,4,0,,0,,0,,0,0xFFFFFFFF,7,2,1024,,0,1,300,{},{},{} -19507,Fine_Sun,Clear Sun,4,0,,0,,0,,0,0xFFFFFFFF,7,2,1024,,1,0,654,{},{},{} - -22777,Gift_Buff_Set,Gift Buff Set,2,10,,100,,,,0,0xFFFFFFFF,63,2,,,1,,,{},{},{} diff --git a/db/pre-re/item_db.yml b/db/pre-re/item_db.yml new file mode 100644 index 0000000000..498ee11ae6 --- /dev/null +++ b/db/pre-re/item_db.yml @@ -0,0 +1,93 @@ +# This file is a part of rAthena. +# Copyright(C) 2019 rAthena Development Team +# https://rathena.org - https://github.com/rathena +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# +########################################################################### +# Item Database +########################################################################### +# +# Item Settings +# +########################################################################### +# - Id Item ID. +# AegisName Server name to reference the item in scripts and lookups, should use no spaces. +# Name Name in English for displaying as output. +# Type Item type. (Default: Etc) +# SubType Weapon or Ammo type. (Default: 0) +# Buy Buying price. When not specified, becomes double the sell price. (Default: 0) +# Sell Selling price. When not specified, becomes half the buy price. (Default: 0) +# Weight Item weight. Each 10 is 1 weight. (Default: 0) +# Attack Weapon's attack. (Default: 0) +# MagicAttack Weapon's magic attack. (Default: 0) +# Defense Armor's defense. (Default: 0) +# Range Weapon's attack range. (Default: 0) +# Slots Available slots in item. (Default: 0) +# Jobs Jobs that can equip the item. (Map default is 'All: true') +# Classes Upper class types that can equip the item. (Map default is 'All: true') +# Gender Gender that can equip the item. (Default: Both) +# Locations Equipment's placement. (Default: None) +# WeaponLevel Weapon level. (Default: 0) +# EquipLevelMin Minimum required level to equip. (Default: 0) +# EquipLevelMax Maximum level that can equip. (Default: 0) +# Refineable If the item can be refined. (Default: false) +# View View sprite of an item. (Default: 0) +# AliasName Another item's AegisName that will be sent to the client instead of this item's AegisName. (Default: null) +# Flags: Item flags. (Default: null) +# BuyingStore If the item is available for Buyingstores. (Default: false) +# DeadBranch If the item is a Dead Branch. (Default: false) +# Container If the item is part of a container. (Default: false) +# UniqueId If the item is a unique stack. (Default: false) +# BindOnEquip If the item is bound to the character upon equipping. (Default: false) +# DropAnnounce If the item has a special announcement to self on drop. (Default: false) +# NoConsume If the item is consumed on use. (Default: false) +# DropEffect If the item has a special effect when on the ground. (Default: None) +# Delay: Item use delay. (Default: null) +# Duration Duration of delay in seconds. +# Status Status Change used to track delay. (Default: None) +# Stack: Item stack amount. (Default: null) +# Amount Maximum amount that can be stacked. +# Inventory If the stack is applied to player's inventory. (Default: true) +# Cart If the stack is applied to the player's cart. (Default: false) +# Storage If the stack is applied to the player's storage. (Default: false) +# GuildStorage If the stack is applied to the player's guild storage. (Default: false) +# NoUse: Conditions when the item is unusable. (Default: null) +# Override Group level to override these conditions. +# Sitting If the item can not be used while sitting. (Default: false) +# Trade: Trade restrictions. (Default: null) +# Override Group level to override these conditions. +# NoDrop If the item can not be dropped. (Default: false) +# NoTrade If the item can not be traded. (Default: false) +# TradePartner If the item can not be traded to the player's partner. (Default: false) +# NoSell If the item can not be sold. (Default: false) +# NoCart If the item can not be put in a cart. (Default: false) +# NoStorage If the item can not be put in a storage. (Default: false) +# NoGuildStorage If the item can not be put in a guild storage. (Default: false) +# NoMail If the item can not be put in a mail. (Default: false) +# NoAuction If the item can not be put in an auction. (Default: false) +# Script Script to execute when the item is used/equipped. (Default: null) +# EquipScript Script to execute when the item is equipped. (Default: null) +# UnEquipScript Script to execute when the item is unequipped or when a rental item expires. (Default: null) +########################################################################### + +Header: + Type: ITEM_DB + Version: 1 + +Footer: + Imports: + - Path: db/pre-re/item_db_usable.yml + - Path: db/pre-re/item_db_equip.yml + - Path: db/pre-re/item_db_etc.yml diff --git a/db/pre-re/item_db_equip.yml b/db/pre-re/item_db_equip.yml new file mode 100644 index 0000000000..9f2b6c0976 --- /dev/null +++ b/db/pre-re/item_db_equip.yml @@ -0,0 +1,38181 @@ +# This file is a part of rAthena. +# Copyright(C) 2019 rAthena Development Team +# https://rathena.org - https://github.com/rathena +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# +########################################################################### +# Item Database +########################################################################### +# +# Item Settings +# +########################################################################### +# - Id Item ID. +# AegisName Server name to reference the item in scripts and lookups, should use no spaces. +# Name Name in English for displaying as output. +# Type Item type. (Default: Etc) +# SubType Weapon or Ammo type. (Default: 0) +# Buy Buying price. When not specified, becomes double the sell price. (Default: 0) +# Sell Selling price. When not specified, becomes half the buy price. (Default: 0) +# Weight Item weight. Each 10 is 1 weight. (Default: 0) +# Attack Weapon's attack. (Default: 0) +# MagicAttack Weapon's magic attack. (Default: 0) +# Defense Armor's defense. (Default: 0) +# Range Weapon's attack range. (Default: 0) +# Slots Available slots in item. (Default: 0) +# Jobs Jobs that can equip the item. (Map default is 'All: true') +# Classes Upper class types that can equip the item. (Map default is 'All: true') +# Gender Gender that can equip the item. (Default: Both) +# Locations Equipment's placement. (Default: None) +# WeaponLevel Weapon level. (Default: 0) +# EquipLevelMin Minimum required level to equip. (Default: 0) +# EquipLevelMax Maximum level that can equip. (Default: 0) +# Refineable If the item can be refined. (Default: false) +# View View sprite of an item. (Default: 0) +# AliasName Another item's AegisName that will be sent to the client instead of this item's AegisName. (Default: null) +# Flags: Item flags. (Default: null) +# BuyingStore If the item is available for Buyingstores. (Default: false) +# DeadBranch If the item is a Dead Branch. (Default: false) +# Container If the item is part of a container. (Default: false) +# UniqueId If the item is a unique stack. (Default: false) +# BindOnEquip If the item is bound to the character upon equipping. (Default: false) +# DropAnnounce If the item has a special announcement to self on drop. (Default: false) +# NoConsume If the item is consumed on use. (Default: false) +# DropEffect If the item has a special effect when on the ground. (Default: None) +# Delay: Item use delay. (Default: null) +# Duration Duration of delay in seconds. +# Status Status Change used to track delay. (Default: None) +# Stack: Item stack amount. (Default: null) +# Amount Maximum amount that can be stacked. +# Inventory If the stack is applied to player's inventory. (Default: true) +# Cart If the stack is applied to the player's cart. (Default: false) +# Storage If the stack is applied to the player's storage. (Default: false) +# GuildStorage If the stack is applied to the player's guild storage. (Default: false) +# NoUse: Conditions when the item is unusable. (Default: null) +# Override Group level to override these conditions. +# Sitting If the item can not be used while sitting. (Default: false) +# Trade: Trade restrictions. (Default: null) +# Override Group level to override these conditions. +# NoDrop If the item can not be dropped. (Default: false) +# NoTrade If the item can not be traded. (Default: false) +# TradePartner If the item can not be traded to the player's partner. (Default: false) +# NoSell If the item can not be sold. (Default: false) +# NoCart If the item can not be put in a cart. (Default: false) +# NoStorage If the item can not be put in a storage. (Default: false) +# NoGuildStorage If the item can not be put in a guild storage. (Default: false) +# NoMail If the item can not be put in a mail. (Default: false) +# NoAuction If the item can not be put in an auction. (Default: false) +# Script Script to execute when the item is used/equipped. (Default: null) +# EquipScript Script to execute when the item is equipped. (Default: null) +# UnEquipScript Script to execute when the item is unequipped or when a rental item expires. (Default: null) +########################################################################### + +Header: + Type: ITEM_DB + Version: 1 + +Body: + - Id: 1101 + AegisName: Sword + Name: Sword + Type: Weapon + SubType: 1hSword + Buy: 100 + Weight: 500 + Attack: 25 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 2 + Refineable: true + - Id: 1102 + AegisName: Sword_ + Name: Sword + Type: Weapon + SubType: 1hSword + Buy: 100 + Weight: 500 + Attack: 25 + Range: 1 + Slots: 4 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 2 + Refineable: true + - Id: 1103 + AegisName: Sword__ + Name: Sword + Type: Weapon + SubType: 1hSword + Buy: 100 + Weight: 500 + Attack: 25 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 2 + Refineable: true + - Id: 1104 + AegisName: Falchion + Name: Falchion + Type: Weapon + SubType: 1hSword + Buy: 1500 + Weight: 600 + Attack: 39 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 2 + Refineable: true + - Id: 1105 + AegisName: Falchion_ + Name: Falchion + Type: Weapon + SubType: 1hSword + Buy: 1500 + Weight: 600 + Attack: 39 + Range: 1 + Slots: 4 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 2 + Refineable: true + - Id: 1106 + AegisName: Falchion__ + Name: Falchion + Type: Weapon + SubType: 1hSword + Buy: 1500 + Weight: 600 + Attack: 39 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 2 + Refineable: true + - Id: 1107 + AegisName: Blade + Name: Blade + Type: Weapon + SubType: 1hSword + Buy: 2900 + Weight: 700 + Attack: 53 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 2 + Refineable: true + - Id: 1108 + AegisName: Blade_ + Name: Blade + Type: Weapon + SubType: 1hSword + Buy: 2900 + Weight: 700 + Attack: 53 + Range: 1 + Slots: 4 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 2 + Refineable: true + - Id: 1109 + AegisName: Blade__ + Name: Blade + Type: Weapon + SubType: 1hSword + Buy: 2900 + Weight: 700 + Attack: 53 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 2 + Refineable: true + - Id: 1110 + AegisName: Lapier + Name: Rapier + Type: Weapon + SubType: 1hSword + Buy: 10000 + Weight: 500 + Attack: 70 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 14 + Refineable: true + - Id: 1111 + AegisName: Lapier_ + Name: Rapier + Type: Weapon + SubType: 1hSword + Buy: 10000 + Weight: 500 + Attack: 70 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 14 + Refineable: true + - Id: 1112 + AegisName: Lapier__ + Name: Rapier + Type: Weapon + SubType: 1hSword + Buy: 10000 + Weight: 500 + Attack: 70 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 14 + Refineable: true + - Id: 1113 + AegisName: Scimiter + Name: Scimitar + Type: Weapon + SubType: 1hSword + Buy: 17000 + Weight: 700 + Attack: 85 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 14 + Refineable: true + - Id: 1114 + AegisName: Scimiter_ + Name: Scimitar + Type: Weapon + SubType: 1hSword + Buy: 17000 + Weight: 700 + Attack: 85 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 14 + Refineable: true + - Id: 1115 + AegisName: Scimiter__ + Name: Scimitar + Type: Weapon + SubType: 1hSword + Buy: 17000 + Weight: 700 + Attack: 85 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 14 + Refineable: true + - Id: 1116 + AegisName: Katana + Name: Katana + Type: Weapon + SubType: 2hSword + Buy: 2000 + Weight: 1000 + Attack: 60 + Range: 1 + Slots: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 4 + Refineable: true + - Id: 1117 + AegisName: Katana_ + Name: Katana + Type: Weapon + SubType: 2hSword + Buy: 2000 + Weight: 1000 + Attack: 60 + Range: 1 + Slots: 4 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 4 + Refineable: true + - Id: 1118 + AegisName: Katana__ + Name: Katana + Type: Weapon + SubType: 2hSword + Buy: 2000 + Weight: 1000 + Attack: 60 + Range: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 4 + Refineable: true + - Id: 1119 + AegisName: Tsurugi + Name: Tsurugi + Type: Weapon + SubType: 1hSword + Buy: 51000 + Weight: 1200 + Attack: 130 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + - Id: 1120 + AegisName: Tsurugi_ + Name: Tsurugi + Type: Weapon + SubType: 1hSword + Buy: 51000 + Weight: 1200 + Attack: 130 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + - Id: 1121 + AegisName: Tsurugi__ + Name: Tsurugi + Type: Weapon + SubType: 1hSword + Buy: 51000 + Weight: 1200 + Attack: 130 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + - Id: 1122 + AegisName: Ring_Pommel_Saber + Name: Ring Pommel Saber + Type: Weapon + SubType: 1hSword + Buy: 24000 + Weight: 900 + Attack: 100 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 14 + Refineable: true + - Id: 1123 + AegisName: Haedonggum + Name: Haedonggum + Type: Weapon + SubType: 1hSword + Buy: 50000 + Weight: 900 + Attack: 120 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + Script: | + bonus bInt,3; + - Id: 1124 + AegisName: Orcish_Sword + Name: Orcish Sword + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 800 + Attack: 90 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 5 + Refineable: true + Script: | + bonus bUnbreakableWeapon; + - Id: 1125 + AegisName: Ring_Pommel_Saber_ + Name: Ring Pommel Saber + Type: Weapon + SubType: 1hSword + Buy: 24000 + Weight: 900 + Attack: 100 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 14 + Refineable: true + - Id: 1126 + AegisName: Saber + Name: Saber + Type: Weapon + SubType: 1hSword + Buy: 49000 + Weight: 1000 + Attack: 115 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + - Id: 1127 + AegisName: Saber_ + Name: Saber + Type: Weapon + SubType: 1hSword + Buy: 49000 + Weight: 1000 + Attack: 115 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + - Id: 1128 + AegisName: Hae_Dong_Gum_ + Name: Haedonggum + Type: Weapon + SubType: 1hSword + Buy: 50000 + Weight: 900 + Attack: 120 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + Script: | + bonus bInt,3; + - Id: 1129 + AegisName: Flamberge + Name: Flamberge + Type: Weapon + SubType: 1hSword + Buy: 60000 + Weight: 1500 + Attack: 150 + Range: 1 + Jobs: + Crusader: true + Knight: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + - Id: 1130 + AegisName: Nagan + Name: Nagan + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 500 + Attack: 120 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + skill "TF_DOUBLE",5; bonus bDoubleRate,25; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; + - Id: 1131 + AegisName: Ice_Falchon + Name: Ice Falchion + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 600 + Attack: 100 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus bAtkEle,Ele_Water; bonus2 bAddEff,Eff_Freeze,500; bonus2 bAddEff2,Eff_Freeze,10; skill "MG_COLDBOLT",3; bonus3 bAutoSpell,"MG_COLDBOLT",3,100; + - Id: 1132 + AegisName: Edge + Name: Edge + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 700 + Attack: 115 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus2 bAddEff,Eff_Curse,30; bonus2 bComaClass,Class_Normal,10; + - Id: 1133 + AegisName: Fire_Brand + Name: Fireblend + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 500 + Attack: 100 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus bAtkEle,Ele_Fire; skill "MG_FIREBOLT",3; bonus3 bAutoSpell,"MG_FIREBOLT",3,100; + - Id: 1134 + AegisName: Scissores_Sword + Name: Caesar's Sword + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 700 + Attack: 140 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus2 bAddRace,RC_Plant,25; bonus bIgnoreDefRace,RC_Plant; + - Id: 1135 + AegisName: Cutlas + Name: Cutlus + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 900 + Attack: 150 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + skill "SM_BASH",5; bonus bStr,2; bonus bDef,1; + - Id: 1136 + AegisName: Solar_Sword + Name: Solar Sword + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 1200 + Attack: 85 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus bAtkEle,Ele_Fire; bonus2 bHPDrainRate,1000,1; bonus2 bSPLossRate,15,10000; + - Id: 1137 + AegisName: Excalibur + Name: Excalibur + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 1200 + Attack: 150 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus bInt,5; bonus bLuk,10; bonus bDex,-1; bonus bAtkEle,Ele_Holy; + - Id: 1138 + AegisName: Mysteltainn_ + Name: Mysteltainn + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 1000 + Attack: 170 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus bAtkEle,Ele_Dark; bonus2 bAddEle,Ele_Ghost,15; bonus3 bAutoSpell,"MG_STONECURSE",3,100; bonus2 bAddEff,Eff_Stone,10; bonus bDex,3; + - Id: 1139 + AegisName: Tale_Fing_ + Name: Tirfing + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 1000 + Attack: 200 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus bAtkEle,Ele_Dark; bonus2 bHPLossRate,35,10000; + - Id: 1140 + AegisName: Byeorrun_Gum + Name: Byeollungum + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 900 + Attack: 150 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus2 bSubClass,Class_Normal,-10; bonus2 bAddClass,Class_Boss,50; bonus bAllStats,2; + - Id: 1141 + AegisName: Immaterial_Sword + Name: Immaterial Sword + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 900 + Attack: 140 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus bAtkEle,Ele_Ghost; bonus2 bSPVanishRate,30,30; bonus bSPDrainValue,-1; bonus bUnbreakableWeapon; + - Id: 1142 + AegisName: Jewel_Sword + Name: Jeweled Sword + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 2200 + Attack: 104 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 68 + Refineable: true + Script: | + bonus2 bAddMonsterDropItemGroup,IG_Jewel,100; + - Id: 1143 + AegisName: Gaia_Sword + Name: Gaia Sword + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 2500 + Attack: 140 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 74 + Refineable: true + Script: | + bonus2 bAddMonsterDropItemGroup,IG_Ore,30; + - Id: 1144 + AegisName: Sasimi + Name: Sashimi + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 1400 + Attack: 75 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus bAtkEle,Ele_Wind; bonus3 bAddMonsterDropItem,544,RC_Fish,4000; + - Id: 1145 + AegisName: Holy_Avenger + Name: Holy Avenger + Type: Weapon + SubType: 1hSword + Buy: 450000 + Weight: 1350 + Attack: 125 + Range: 1 + Jobs: + Crusader: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 75 + Refineable: true + Script: | + bonus bAtkEle,Ele_Holy; bonus bVit,2; + - Id: 1146 + AegisName: Town_Sword + Name: Town Sword + Type: Weapon + SubType: 1hSword + Buy: 42000 + Weight: 800 + Attack: 100 + Range: 1 + Slots: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 30 + Refineable: true + - Id: 1147 + AegisName: Town_Sword_ + Name: Town Sword + Type: Weapon + SubType: 1hSword + Buy: 42000 + Weight: 800 + Attack: 100 + Range: 1 + Slots: 2 + Jobs: + Novice: true + SuperNovice: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 30 + Refineable: true + - Id: 1148 + AegisName: Star_Dust_Blade + Name: Star Dust Blade + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 1000 + Attack: 140 + Range: 1 + Slots: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 45 + Refineable: true + Script: | + bonus2 bAddEff,Eff_Stun,500; bonus bUnbreakableWeapon; + - Id: 1149 + AegisName: Flamberge_ + Name: Flamberge + Type: Weapon + SubType: 1hSword + Buy: 60000 + Weight: 1500 + Attack: 150 + Range: 1 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + - Id: 1151 + AegisName: Slayer + Name: Slayer + Type: Weapon + SubType: 2hSword + Buy: 15000 + Weight: 1300 + Attack: 90 + Range: 1 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 18 + Refineable: true + - Id: 1152 + AegisName: Slayer_ + Name: Slayer + Type: Weapon + SubType: 2hSword + Buy: 15000 + Weight: 1300 + Attack: 90 + Range: 1 + Slots: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 18 + Refineable: true + - Id: 1153 + AegisName: Slayer__ + Name: Slayer + Type: Weapon + SubType: 2hSword + Buy: 15000 + Weight: 1300 + Attack: 90 + Range: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 18 + Refineable: true + - Id: 1154 + AegisName: Bastard_Sword + Name: Bastard Sword + Type: Weapon + SubType: 2hSword + Buy: 22500 + Weight: 1600 + Attack: 115 + Range: 1 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 18 + Refineable: true + - Id: 1155 + AegisName: Bastard_Sword_ + Name: Bastard Sword + Type: Weapon + SubType: 2hSword + Buy: 22500 + Weight: 1600 + Attack: 115 + Range: 1 + Slots: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 18 + Refineable: true + - Id: 1156 + AegisName: Bastard_Sword__ + Name: Bastard Sword + Type: Weapon + SubType: 2hSword + Buy: 22500 + Weight: 1600 + Attack: 115 + Range: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 18 + Refineable: true + - Id: 1157 + AegisName: Two_Hand_Sword + Name: Two-Handed Sword + Type: Weapon + SubType: 2hSword + Buy: 60000 + Weight: 2200 + Attack: 160 + Range: 1 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + - Id: 1158 + AegisName: Two_Hand_Sword_ + Name: Two-Handed Sword + Type: Weapon + SubType: 2hSword + Buy: 60000 + Weight: 2200 + Attack: 160 + Range: 1 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + - Id: 1159 + AegisName: Two_Hand_Sword__ + Name: Two-Handed Sword + Type: Weapon + SubType: 2hSword + Buy: 60000 + Weight: 2200 + Attack: 160 + Range: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + - Id: 1160 + AegisName: Broad_Sword + Name: Broad Sword + Type: Weapon + SubType: 2hSword + Buy: 65000 + Weight: 2000 + Attack: 140 + Range: 1 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + Script: | + bonus bDef,5; bonus bUnbreakableWeapon; + - Id: 1161 + AegisName: Balmung + Name: Balmung + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 1000 + Attack: 250 + Range: 1 + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Holy; + - Id: 1162 + AegisName: Broad_Sword_ + Name: Broad Sword + Type: Weapon + SubType: 2hSword + Buy: 65000 + Weight: 2000 + Attack: 140 + Range: 1 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + Script: | + bonus bDef,5; bonus bUnbreakableWeapon; + - Id: 1163 + AegisName: Claymore + Name: Claymore + Type: Weapon + SubType: 2hSword + Buy: 74000 + Weight: 2500 + Attack: 180 + Range: 1 + Jobs: + Crusader: true + Knight: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + - Id: 1164 + AegisName: Muramasa + Name: Muramasa + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 1000 + Attack: 155 + Range: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus bCritical,30; bonus bAspdRate,8; bonus2 bAddEff2,Eff_Curse,10; + - Id: 1165 + AegisName: Masamune + Name: Masamune + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 1000 + Attack: 200 + Range: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus bFlee,30; bonus bStr,-5; bonus bAspd,2; bonus bDefRate,-67; bonus bDef2Rate,-67; + - Id: 1166 + AegisName: Dragon_Slayer + Name: Dragon Slayer + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 1300 + Attack: 150 + Range: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus bIgnoreDefRace,RC_Dragon; bonus2 bAddRace,RC_Dragon,15; + - Id: 1167 + AegisName: Schweizersabel + Name: Schweizersabel + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 1600 + Attack: 160 + Range: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus bAtkEle,Ele_Wind; bonus bDef,1; bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",3,100; + - Id: 1168 + AegisName: Zweihander + Name: Zweihander + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 2200 + Attack: 200 + Range: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus bUnbreakableWeapon; + - Id: 1169 + AegisName: Executioner_ + Name: Executioner + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 2200 + Attack: 155 + Range: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player_Human,-10; bonus bAtkEle,Ele_Dark; + - Id: 1170 + AegisName: Katzbalger + Name: Katzbalger + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 2000 + Attack: 175 + Range: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus bVit,5; bonus bDef,10; + - Id: 1171 + AegisName: Zweihander_ + Name: Zweihander + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 2200 + Attack: 200 + Range: 1 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus bUnbreakableWeapon; + - Id: 1172 + AegisName: Claymore_ + Name: Claymore + Type: Weapon + SubType: 2hSword + Buy: 74000 + Weight: 2500 + Attack: 180 + Range: 1 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + - Id: 1173 + AegisName: Muramasa_C + Name: Muramasa + Type: Weapon + SubType: 2hSword + Buy: 1 + Attack: 204 + Range: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bCritical,30; bonus bAspdRate,8; + - Id: 1174 + AegisName: Executioner_C + Name: Executioner + Type: Weapon + SubType: 2hSword + Buy: 2 + Attack: 190 + Range: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + Script: | + bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player_Human,-10; bonus bAtkEle,Ele_Dark; + - Id: 1175 + AegisName: Altas_Weapon + Name: Atlas Weapon + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 3500 + Attack: 200 + Range: 1 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Classes: + Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bCritical,10; if(readparam(bStr)>=80) bonus bBreakArmorRate,500; + - Id: 1176 + AegisName: Muscle_Cutter + Name: Muscle Cutter + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 2200 + Attack: 160 + Range: 1 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Classes: + Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus2 bAddEff,Eff_Bleeding,800; bonus3 bAutoSpell,"AL_DECAGI",1,30; + - Id: 1177 + AegisName: Muramash + Name: Muramash + Type: Weapon + SubType: 2hSword + Buy: 20 + Attack: 120 + Range: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,50; + - Id: 1178 + AegisName: Schweizersabel_ + Name: Schweizersabel + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 1600 + Attack: 160 + Range: 1 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus bAtkEle,Ele_Wind; bonus bDef,1; bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",3,100; + - Id: 1179 + AegisName: Executioner__ + Name: Executioner + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 2200 + Attack: 155 + Range: 1 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player_Human,-10; bonus bAtkEle,Ele_Dark; + - Id: 1180 + AegisName: Dragon_Slayer_ + Name: Dragon Slayer + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 1300 + Attack: 150 + Range: 1 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus bIgnoreDefRace,RC_Dragon; bonus2 bAddRace,RC_Dragon,15; + - Id: 1181 + AegisName: Tae_Goo_Lyeon + Name: Tae Goo Lyeon + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 2000 + Attack: 250 + Range: 1 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Classes: + Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 90 + Refineable: true + Script: | + bonus bFlee2,10; if(JobLevel>=70) autobonus "{ bonus bBaseAtk,50; }",10,10000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; if(getrefine()>8) { bonus bCastrate,-20; bonus bDelayRate,-20; } + - Id: 1182 + AegisName: Bloody_Eater + Name: Bloody Eater + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 1200 + Attack: 200 + Range: 1 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Classes: + Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 50 + Refineable: true + Script: | + bonus bAtkEle,Ele_Ghost; autobonus "{ bonus bCritical,100; bonus bBaseAtk,50; }",1,5000,0,"{ specialeffect2 EF_FIRESPLASHHIT; }"; bonus bHPGainValue,100; + - Id: 1183 + AegisName: BF_Two_Handed_Sword1 + Name: Brave Assaulter's Katzbalger + Type: Weapon + SubType: 2hSword + Buy: 20 + Attack: 200 + Range: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,2; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; + - Id: 1184 + AegisName: BF_Two_Handed_Sword2 + Name: Valorous Assaulter's Katzbalger + Type: Weapon + SubType: 2hSword + Buy: 20 + Attack: 200 + Range: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bCritical,20; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus bCritAtkRate,20; bonus bUnbreakableWeapon; + - Id: 1185 + AegisName: Violet_Fear + Name: Violet Fear + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 2200 + Attack: 275 + Range: 1 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Classes: + Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Script: | + bonus3 bAutoSpell,"WZ_METEOR",3,30; bonus3 bAutoSpell,"WZ_FROSTNOVA",5,50; autobonus "{ bonus bIgnoreDefClass,Class_Normal; }",50,5000; + - Id: 1186 + AegisName: Death_Guidance + Name: Death Guidance + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 2000 + Attack: 200 + Range: 1 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Classes: + Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 70 + Refineable: true + Script: | + 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; + - Id: 1187 + AegisName: Krieger_Twohand_Sword1 + Name: Glorious Claymore + Type: Weapon + SubType: 2hSword + Buy: 20 + Attack: 220 + Range: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-3)*(getrefine()-3); bonus2 bAddRace,RC_Player_Human,(getrefine()-3)*(getrefine()-3); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) { bonus3 bAutoSpell,"LK_CONCENTRATION",max(getskilllv("LK_CONCENTRATION"),1),30; bonus3 bAutoSpell,"LK_AURABLADE",max(getskilllv("LK_AURABLADE"),1),30; } + - Id: 1188 + AegisName: Veteran_Sword + Name: Veteran Sword + Type: Weapon + SubType: 2hSword + Buy: 10000 + Weight: 2000 + Attack: 180 + Range: 1 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Script: | + 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; + - Id: 1189 + AegisName: Krasnaya + Name: Krasnaya + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 3800 + Attack: 200 + Range: 2 + Slots: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Classes: + Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 50 + Refineable: true + Script: | + if(readparam(bStr)>=95) { bonus bBaseAtk,20; } + - Id: 1190 + AegisName: Claymore_C + Name: Claymore + Type: Weapon + SubType: 2hSword + Attack: 220 + Range: 1 + Jobs: + Crusader: true + Knight: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddSize,Size_All,40; + - Id: 1201 + AegisName: Knife + Name: Knife + Type: Weapon + SubType: Dagger + Buy: 50 + Weight: 400 + Attack: 17 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + - Id: 1202 + AegisName: Knife_ + Name: Knife + Type: Weapon + SubType: Dagger + Buy: 50 + Weight: 400 + Attack: 17 + Range: 1 + Slots: 4 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + - Id: 1203 + AegisName: Knife__ + Name: Knife + Type: Weapon + SubType: Dagger + Buy: 50 + Weight: 400 + Attack: 17 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + - Id: 1204 + AegisName: Cutter + Name: Cutter + Type: Weapon + SubType: Dagger + Buy: 1250 + Weight: 500 + Attack: 30 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + - Id: 1205 + AegisName: Cutter_ + Name: Cutter + Type: Weapon + SubType: Dagger + Buy: 1250 + Weight: 500 + Attack: 30 + Range: 1 + Slots: 4 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + - Id: 1206 + AegisName: Cutter__ + Name: Cutter + Type: Weapon + SubType: Dagger + Buy: 1250 + Weight: 500 + Attack: 30 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + - Id: 1207 + AegisName: Main_Gauche + Name: Main Gauche + Type: Weapon + SubType: Dagger + Buy: 2400 + Weight: 600 + Attack: 43 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + - Id: 1208 + AegisName: Main_Gauche_ + Name: Main Gauche + Type: Weapon + SubType: Dagger + Buy: 2400 + Weight: 600 + Attack: 43 + Range: 1 + Slots: 4 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + - Id: 1209 + AegisName: Main_Gauche__ + Name: Main Gauche + Type: Weapon + SubType: Dagger + Buy: 2400 + Weight: 600 + Attack: 43 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + - Id: 1210 + AegisName: Dirk + Name: Dirk + Type: Weapon + SubType: Dagger + Buy: 8500 + Weight: 500 + Attack: 59 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 12 + Refineable: true + - Id: 1211 + AegisName: Dirk_ + Name: Dirk + Type: Weapon + SubType: Dagger + Buy: 8500 + Weight: 500 + Attack: 59 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 12 + Refineable: true + - Id: 1212 + AegisName: Dirk__ + Name: Dirk + Type: Weapon + SubType: Dagger + Buy: 8500 + Weight: 500 + Attack: 59 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 12 + Refineable: true + - Id: 1213 + AegisName: Dagger + Name: Dagger + Type: Weapon + SubType: Dagger + Buy: 14000 + Weight: 600 + Attack: 73 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 12 + Refineable: true + - Id: 1214 + AegisName: Dagger_ + Name: Dagger + Type: Weapon + SubType: Dagger + Buy: 14000 + Weight: 600 + Attack: 73 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 12 + Refineable: true + - Id: 1215 + AegisName: Dagger__ + Name: Dagger + Type: Weapon + SubType: Dagger + Buy: 14000 + Weight: 600 + Attack: 73 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 12 + Refineable: true + - Id: 1216 + AegisName: Stiletto + Name: Stiletto + Type: Weapon + SubType: Dagger + Buy: 19500 + Weight: 700 + Attack: 87 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 12 + Refineable: true + - Id: 1217 + AegisName: Stiletto_ + Name: Stiletto + Type: Weapon + SubType: Dagger + Buy: 19500 + Weight: 700 + Attack: 87 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 12 + Refineable: true + - Id: 1218 + AegisName: Stiletto__ + Name: Stiletto + Type: Weapon + SubType: Dagger + Buy: 19500 + Weight: 700 + Attack: 87 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 12 + Refineable: true + - Id: 1219 + AegisName: Gladius + Name: Gladius + Type: Weapon + SubType: Dagger + Buy: 43000 + Weight: 700 + Attack: 105 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 24 + Refineable: true + - Id: 1220 + AegisName: Gladius_ + Name: Gladius + Type: Weapon + SubType: Dagger + Buy: 43000 + Weight: 700 + Attack: 105 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 24 + Refineable: true + - Id: 1221 + AegisName: Gladius__ + Name: Gladius + Type: Weapon + SubType: Dagger + Buy: 43000 + Weight: 700 + Attack: 105 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 24 + Refineable: true + - Id: 1222 + AegisName: Damascus + Name: Damascus + Type: Weapon + SubType: Dagger + Buy: 49000 + Weight: 800 + Attack: 118 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 24 + Refineable: true + Script: | + bonus bUnbreakableWeapon; + - Id: 1223 + AegisName: Forturn_Sword + Name: Fortune Sword + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 500 + Attack: 90 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 24 + Refineable: true + Script: | + bonus bLuk,5; bonus bFlee2,20; + - Id: 1224 + AegisName: Sword_Breaker + Name: Swordbreaker + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 1000 + Attack: 70 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 36 + Refineable: true + Script: | + bonus bBreakWeaponRate,500; + - Id: 1225 + AegisName: Mail_Breaker + Name: Mailbreaker + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 1000 + Attack: 70 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 36 + Refineable: true + Script: | + bonus bBreakArmorRate,500; + - Id: 1226 + AegisName: Damascus_ + Name: Damascus + Type: Weapon + SubType: Dagger + Buy: 49000 + Weight: 800 + Attack: 118 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 24 + Refineable: true + Script: | + bonus bUnbreakableWeapon; + - Id: 1227 + AegisName: Weeder_Knife + Name: Weeder Knife + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 400 + Attack: 80 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 36 + Refineable: true + Script: | + bonus bIgnoreDefRace,RC_Plant; bonus2 bAddRace,RC_Plant,15; bonus2 bSubRace,RC_Plant,15; + - Id: 1228 + AegisName: Combat_Knife + Name: Combat Knife + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 400 + Attack: 80 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 36 + Refineable: true + Script: | + bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Demon,-10; + - Id: 1229 + AegisName: Mama's_Knife + Name: Kitchen Knife + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 500 + Attack: 75 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 36 + Refineable: true + Script: | + bonus bCritical,30; bonus3 bAddMonsterDropItem,517,RC_Brute,5000; + - Id: 1230 + AegisName: House_Auger + Name: Ice Pick + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 600 + Attack: 80 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 36 + Refineable: true + Script: | + bonus bDefRatioAtkClass,Class_All; + - Id: 1231 + AegisName: Bazerald + Name: Bazerald + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 500 + Attack: 70 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 36 + Refineable: true + Script: | + bonus bAtkEle,Ele_Fire; bonus bInt,5; bonus bMatkRate,10; + - Id: 1232 + AegisName: Assasin_Dagger + Name: Assassin Dagger + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 600 + Attack: 140 + Range: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 36 + Refineable: true + Script: | + bonus bMaxHPrate,20; bonus bMaxSPrate,15; bonus bAspdRate,2; bonus bAtkEle,Ele_Dark; + - Id: 1233 + AegisName: Exercise + Name: Exorciser + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 700 + Attack: 90 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 36 + Refineable: true + Script: | + bonus bIgnoreDefRace,RC_Demon; bonus2 bSubRace,RC_Demon,5; bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player_Human,-10; + - Id: 1234 + AegisName: Moonlight_Sword + Name: Moonlight Dagger + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 700 + Attack: 50 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 36 + Refineable: true + Script: | + bonus bMaxSPrate,10; bonus bSPDrainValue,3; + - Id: 1235 + AegisName: Azoth + Name: Azoth + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 700 + Attack: 110 + Range: 1 + Jobs: + Alchemist: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 36 + Refineable: true + Script: | + bonus bClassChange,300; + - Id: 1236 + AegisName: Sucsamad + Name: Sucsamad + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 800 + Attack: 140 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 36 + Refineable: true + Script: | + bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Wind,10; bonus bUnbreakableWeapon; + - Id: 1237 + AegisName: Grimtooth_ + Name: Grimtooth + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 800 + Attack: 180 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 36 + Refineable: true + Script: | + bonus bFlee,10; bonus bFlee2,5; bonus bDefRate,-50; bonus bDef2Rate,-50; + - Id: 1238 + AegisName: Zeny_Knife + Name: Zeny Knife + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 1200 + Attack: 64 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus2 bGetZenyNum,100,40; + - Id: 1239 + AegisName: Poison_Knife + Name: Poison Knife + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 800 + Attack: 64 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 65 + Refineable: true + Script: | + bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,3000; + - Id: 1240 + AegisName: Princess_Knife + Name: Princess Knife + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 400 + Attack: 84 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bAllStats,1; + - Id: 1241 + AegisName: Cursed_Dagger + Name: Cursed Dagger + Type: Weapon + SubType: Dagger + Buy: 80000 + Weight: 400 + Attack: 55 + Range: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 85 + Refineable: true + Script: | + bonus2 bAddEff,Eff_Curse,5000; + - Id: 1242 + AegisName: Counter_Dagger + Name: Dagger of Counter + Type: Weapon + SubType: Dagger + Buy: 120000 + Weight: 550 + Attack: 140 + Range: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bCritical,90; + - Id: 1243 + AegisName: Novice_Knife + Name: Novice Main-Gauche + Type: Weapon + SubType: Dagger + Buy: 1 + Weight: 1 + Attack: 45 + Range: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + - Id: 1244 + AegisName: Holy_Dagger + Name: Holy Dagger + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 800 + Attack: 100 + Range: 1 + Jobs: + Assassin: true + Ninja: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bAtkEle,Ele_Holy; bonus bDex,1; + - Id: 1245 + AegisName: Cinquedea + Name: Cinquedea + Type: Weapon + SubType: Dagger + Buy: 40000 + Weight: 700 + Attack: 110 + Range: 1 + Slots: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 30 + Refineable: true + - Id: 1246 + AegisName: Cinquedea_ + Name: Cinquedea + Type: Weapon + SubType: Dagger + Buy: 40000 + Weight: 700 + Attack: 110 + Range: 1 + Slots: 2 + Jobs: + Novice: true + SuperNovice: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 30 + Refineable: true + - Id: 1247 + AegisName: Kindling_Dagger + Name: Kindle Dagger + Type: Weapon + SubType: Dagger + Buy: 10000 + Weight: 600 + Attack: 39 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bAtkEle,Ele_Fire; + - Id: 1248 + AegisName: Obsidian_Dagger + Name: Obsidian Dagger + Type: Weapon + SubType: Dagger + Buy: 10000 + Weight: 600 + Attack: 39 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bAtkEle,Ele_Earth; + - Id: 1249 + AegisName: Fisherman's_Dagger + Name: Fisherman's Dagger + Type: Weapon + SubType: Dagger + Buy: 10000 + Weight: 600 + Attack: 39 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bAtkEle,Ele_Water; + - Id: 1250 + AegisName: Jur + Name: Jur + Type: Weapon + SubType: Katar + Buy: 19500 + Weight: 800 + Attack: 125 + Range: 1 + Slots: 2 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 18 + Refineable: true + - Id: 1251 + AegisName: Jur_ + Name: Jur + Type: Weapon + SubType: Katar + Buy: 19500 + Weight: 800 + Attack: 125 + Range: 1 + Slots: 3 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 18 + Refineable: true + - Id: 1252 + AegisName: Katar + Name: Katar + Type: Weapon + SubType: Katar + Buy: 41000 + Weight: 1200 + Attack: 148 + Range: 1 + Slots: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + Script: | + bonus bDex,1; + - Id: 1253 + AegisName: Katar_ + Name: Katar + Type: Weapon + SubType: Katar + Buy: 41000 + Weight: 1200 + Attack: 148 + Range: 1 + Slots: 2 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + Script: | + bonus bDex,1; + - Id: 1254 + AegisName: Jamadhar + Name: Jamadhar + Type: Weapon + SubType: Katar + Buy: 37200 + Weight: 1500 + Attack: 165 + Range: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + - Id: 1255 + AegisName: Jamadhar_ + Name: Jamadhar + Type: Weapon + SubType: Katar + Buy: 37200 + Weight: 1500 + Attack: 165 + Range: 1 + Slots: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + - Id: 1256 + AegisName: Katar_Of_Cold_Icicle + Name: Katar of Frozen Icicle + Type: Weapon + SubType: Katar + Buy: 45000 + Weight: 1200 + Attack: 105 + Range: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bAtkEle,Ele_Water; bonus2 bAddEff,Eff_Freeze,500; + - Id: 1257 + AegisName: Katar_Of_Thornbush + Name: Katar of Quaking + Type: Weapon + SubType: Katar + Buy: 45000 + Weight: 1200 + Attack: 105 + Range: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bAtkEle,Ele_Earth; bonus2 bAddEff,Eff_Blind,500; + - Id: 1258 + AegisName: Katar_Of_Raging_Blaze + Name: Katar of Raging Blaze + Type: Weapon + SubType: Katar + Buy: 45000 + Weight: 1200 + Attack: 105 + Range: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bAtkEle,Ele_Fire; bonus2 bAddEff,Eff_Silence,500; + - Id: 1259 + AegisName: Katar_Of_Piercing_Wind + Name: Katar of Piercing Wind + Type: Weapon + SubType: Katar + Buy: 45000 + Weight: 1200 + Attack: 105 + Range: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Sleep,500; + - Id: 1260 + AegisName: Ghoul_Leg + Name: Sharpened Legbone of Ghoul + Type: Weapon + SubType: Katar + Buy: 52500 + Weight: 1700 + Attack: 150 + Range: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 65 + Refineable: true + Script: | + bonus bAtkEle,Ele_Undead; + - Id: 1261 + AegisName: Infiltrator + Name: Infiltrator + Type: Weapon + SubType: Katar + Buy: 57000 + Weight: 1500 + Attack: 140 + Range: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 75 + Refineable: true + Script: | + bonus2 bAddRace,RC_DemiHuman,50; bonus2 bAddRace,RC_Player_Human,50; bonus bDef,3; bonus bFlee,5; bonus bFlee2,2; + - Id: 1262 + AegisName: Nail_Of_Loki + Name: Loki's Nail + Type: Weapon + SubType: Katar + Buy: 20 + Weight: 1200 + Attack: 115 + Range: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus2 bAddEff,Eff_Bleeding,300; + - Id: 1263 + AegisName: Unholy_Touch + Name: Unholy Touch + Type: Weapon + SubType: Katar + Buy: 20 + Weight: 1250 + Attack: 151 + Range: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Curse,200; bonus bCritical,-1; bonus bUnbreakableWeapon; + - Id: 1264 + AegisName: Various_Jur + Name: Specialty Jur + Type: Weapon + SubType: Katar + Buy: 20 + Weight: 800 + Attack: 90 + Range: 1 + Slots: 4 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bAddEff2,Eff_Bleeding,10; + - Id: 1265 + AegisName: Bloody_Roar + Name: Bloody Roar + Type: Weapon + SubType: Katar + Buy: 20 + Weight: 1000 + Attack: 120 + Range: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 75 + Refineable: true + Script: | + bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus bFlee,-(readparam(bAgi)+BaseLevel); bonus bHPrecovRate,-100; bonus bSPrecovRate,-100; + - Id: 1266 + AegisName: Infiltrator_ + Name: Infiltrator + Type: Weapon + SubType: Katar + Buy: 57000 + Weight: 1500 + Attack: 140 + Range: 1 + Slots: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 75 + Refineable: true + Script: | + bonus2 bAddRace,RC_DemiHuman,50; bonus2 bAddRace,RC_Player_Human,50; bonus bDef,3; bonus bFlee,5; bonus bFlee2,2; + - Id: 1267 + AegisName: Infiltrator_C + Name: Infiltrator + Type: Weapon + SubType: Katar + Buy: 1 + Attack: 189 + Range: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus bDef,3; bonus bFlee,5; bonus bFlee2,2; bonus bAspdRate,5; + - Id: 1268 + AegisName: Wild_Beast_Claw + Name: Wild Beast Claw + Type: Weapon + SubType: Katar + Buy: 20 + Weight: 1450 + Attack: 160 + Range: 1 + Slots: 1 + Jobs: + Assassin: true + Classes: + Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 55 + Refineable: true + Script: | + if(getrefine()>=9){ bonus3 bAutoSpell,"NPC_CRITICALWOUND",2,100; } else bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,100; + - Id: 1269 + AegisName: Inverse_Scale + Name: Inverse Scale + Type: Weapon + SubType: Katar + Buy: 20 + Weight: 1500 + Attack: 140 + Range: 1 + Jobs: + Assassin: true + Classes: + Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bAtkEle,Ele_Holy; bonus3 bAutoSpell,"NPC_DRAGONFEAR",1,30; + - Id: 1270 + AegisName: Drill_Katar + Name: Drill Katar + Type: Weapon + SubType: Katar + Buy: 20 + Weight: 1400 + Attack: 110 + Range: 1 + Slots: 1 + Jobs: + Assassin: true + Classes: + Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bHit,30; bonus3 bAutoSpell,"ST_FULLSTRIP",1,150; + - Id: 1271 + AegisName: Blood_Tears + Name: Blood Tears + Type: Weapon + SubType: Katar + Buy: 20 + Weight: 1700 + Attack: 120 + Range: 1 + Slots: 2 + Jobs: + Assassin: true + Classes: + Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 55 + Refineable: true + Script: | + if(getrefine()>=9){ bonus3 bAutoSpell,"NPC_WIDEBLEEDING",2,30; } else bonus3 bAutoSpell,"NPC_WIDEBLEEDING",1,30; + - Id: 1272 + AegisName: Scratcher + Name: Scratcher + Type: Weapon + SubType: Katar + Buy: 20 + Attack: 120 + Range: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,50; + - Id: 1273 + AegisName: Bloody_Roar_C + Name: Refined Bloody Roar + Type: Weapon + SubType: Katar + Buy: 1 + Attack: 148 + Range: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + Script: | + bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bHPRegenRate,3,5000; + - Id: 1274 + AegisName: Unholy_Touch_C + Name: Refined Unholy Touch + Type: Weapon + SubType: Katar + Buy: 1 + Attack: 179 + Range: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + Script: | + bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Curse,5000; bonus bCritical,-1; bonus bUnbreakableWeapon; + - Id: 1275 + AegisName: Katar_Of_Cold_Icicle_ + Name: Katar of Frozen Icicle + Type: Weapon + SubType: Katar + Buy: 45000 + Weight: 1200 + Attack: 105 + Range: 1 + Slots: 3 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bAtkEle,Ele_Water; bonus2 bAddEff,Eff_Freeze,500; + - Id: 1276 + AegisName: Katar_Of_Thornbush_ + Name: Katar of Quaking + Type: Weapon + SubType: Katar + Buy: 45000 + Weight: 1200 + Attack: 105 + Range: 1 + Slots: 3 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bAtkEle,Ele_Earth; bonus2 bAddEff,Eff_Blind,500; + - Id: 1277 + AegisName: Katar_Of_Raging_Blaze_ + Name: Katar of Raging Blaze + Type: Weapon + SubType: Katar + Buy: 45000 + Weight: 1200 + Attack: 105 + Range: 1 + Slots: 3 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bAtkEle,Ele_Fire; bonus2 bAddEff,Eff_Silence,500; + - Id: 1278 + AegisName: Katar_Of_Piercing_Wind_ + Name: Katar of Piercing Wind + Type: Weapon + SubType: Katar + Buy: 45000 + Weight: 1200 + Attack: 105 + Range: 1 + Slots: 3 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Sleep,500; + - Id: 1279 + AegisName: BF_Katar1 + Name: Brave Carnage Katar + Type: Weapon + SubType: Katar + Buy: 20 + Attack: 130 + Range: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,1; bonus bDex,1; bonus bLuk,1; bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; + - Id: 1280 + AegisName: BF_Katar2 + Name: Valorous Carnage Katar + Type: Weapon + SubType: Katar + Buy: 20 + Attack: 130 + Range: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,1; bonus bDex,1; bonus bLuk,1; bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus bCritAtkRate,20; bonus bAspdRate,5; bonus bUnbreakableWeapon; + - Id: 1281 + AegisName: Krieger_Katar1 + Name: Glorious Bloody Roar + Type: Weapon + SubType: Katar + Buy: 20 + Attack: 140 + Range: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) autobonus "{ bonus bAspdRate,100; }",70,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; + - Id: 1282 + AegisName: Krieger_Katar2 + Name: Glorious Jamadhar + Type: Weapon + SubType: Katar + Buy: 20 + Attack: 140 + Range: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bCriticalAddRace,RC_DemiHuman,5; bonus2 bCriticalAddRace,RC_Player_Human,5; } if(getrefine()>8) autobonus "{ bonus bAspdRate,100; }",70,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; + - Id: 1283 + AegisName: Katar_Of_Speed + Name: Katar Of Speed + Type: Weapon + SubType: Katar + Buy: 20 + Attack: 175 + Range: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bSkillAtk,"AS_SONICBLOW",25; bonus bAspdRate,3; + - Id: 1284 + AegisName: Krishna + Name: Krishna + Type: Weapon + SubType: Katar + Buy: 20 + Weight: 1200 + Attack: 120 + Range: 1 + Slots: 2 + Jobs: + Assassin: true + Classes: + Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 50 + Refineable: true + Script: | + bonus2 bSkillAtk,"AS_GRIMTOOTH",10; if(getskilllv("AS_SONICBLOW")) { bonus3 bAutoSpell,"AS_SONICBLOW",getskilllv("AS_SONICBLOW"),5; }else{ bonus3 bAutoSpell,"AS_SONICBLOW",1,5; } + - Id: 1285 + AegisName: Cakram + Name: Chakram + Type: Weapon + SubType: Katar + Buy: 20 + Weight: 1000 + Attack: 130 + Range: 1 + Slots: 2 + Jobs: + Assassin: true + Classes: + Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 50 + Refineable: true + Script: | + if(getskilllv("AS_KATAR")==10) { bonus bHit,10; } bonus2 bSkillAtk,"ASC_METEORASSAULT",20; + - Id: 1286 + AegisName: Jamadhar_C + Name: Jamadhar + Type: Weapon + SubType: Katar + Attack: 200 + Range: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bUnbreakableWeapon; bonus2 bAddSize,Size_All,40; + - Id: 1301 + AegisName: Axe + Name: Axe + Type: Weapon + SubType: 1hAxe + Buy: 500 + Weight: 800 + Attack: 38 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 3 + Refineable: true + - Id: 1302 + AegisName: Axe_ + Name: Axe + Type: Weapon + SubType: 1hAxe + Buy: 500 + Weight: 800 + Attack: 38 + Range: 1 + Slots: 4 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 3 + Refineable: true + - Id: 1303 + AegisName: Axe__ + Name: Axe + Type: Weapon + SubType: 1hAxe + Buy: 500 + Weight: 800 + Attack: 38 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 3 + Refineable: true + - Id: 1304 + AegisName: Orcish_Axe + Name: Orcish Axe + Type: Weapon + SubType: 1hAxe + Buy: 20 + Weight: 1500 + Attack: 75 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 3 + Refineable: true + - Id: 1305 + AegisName: Cleaver + Name: Cleaver + Type: Weapon + SubType: 1hAxe + Buy: 20 + Weight: 1200 + Attack: 140 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 44 + Refineable: true + Script: | + bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus3 bAddMonsterDropItem,517,RC_Brute,3000; + - Id: 1306 + AegisName: War_Axe + Name: War Axe + Type: Weapon + SubType: 1hAxe + Buy: 20 + Weight: 4200 + Attack: 140 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 76 + Refineable: true + Script: | + bonus bDex,2; bonus bLuk,2; + - Id: 1307 + AegisName: Windhawk + Name: Windhawk + Type: Weapon + SubType: 1hAxe + Buy: 18000 + Weight: 1500 + Attack: 115 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 14 + Refineable: true + Script: | + bonus bAtkEle,Ele_Wind; bonus bAspdRate,5; + - Id: 1308 + AegisName: Golden_Axe + Name: Golden Axe + Type: Weapon + SubType: 1hAxe + Buy: 20 + Weight: 3000 + Attack: 170 + Range: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 45 + Refineable: true + - Id: 1309 + AegisName: Orcish_Axe_ + Name: Orcish Axe + Type: Weapon + SubType: 1hAxe + Buy: 20 + Weight: 1500 + Attack: 75 + Range: 1 + Slots: 4 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 3 + Refineable: true + - Id: 1310 + AegisName: Krieger_Onehand_Axe1 + Name: Glorious Cleaver + Type: Weapon + SubType: 1hAxe + Buy: 20 + Attack: 130 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus bAspdRate,5; } if(getrefine()>8) { bonus bAspdRate,5; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,50; bonus4 bAutoSpellOnSkill,"MC_MAMMONITE","NPC_CRITICALWOUND",2,200; } + - Id: 1311 + AegisName: Vecer_Axe + Name: Vecer Axe + Type: Weapon + SubType: 1hAxe + Buy: 20 + Weight: 1500 + Attack: 140 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Classes: + Upper: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 50 + Refineable: true + Script: | + 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; } + - Id: 1312 + AegisName: Orcish_Axe_C + Name: Orcish Axe + Type: Weapon + SubType: 1hAxe + Attack: 110 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddSize,Size_All,70; + - Id: 1313 + AegisName: Tourist_Axe + Name: Tourist Axe + Type: Weapon + SubType: 1hAxe + Weight: 500 + Attack: 77 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,2; + - Id: 1314 + AegisName: F_Tomahawk_C + Name: Tomahawk + Type: Weapon + SubType: 2hAxe + Buy: 2 + Attack: 200 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + Script: | + bonus bAtkEle,Ele_Wind; + - Id: 1315 + AegisName: F_Right_Epsilon_C + Name: Light Epsilon + Type: Weapon + SubType: 2hAxe + Buy: 1 + Attack: 229 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Holy; bonus bStr,10; + - Id: 1351 + AegisName: Battle_Axe + Name: Battle Axe + Type: Weapon + SubType: 2hAxe + Buy: 5400 + Weight: 1500 + Attack: 80 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 3 + Refineable: true + - Id: 1352 + AegisName: Battle_Axe_ + Name: Battle Axe + Type: Weapon + SubType: 2hAxe + Buy: 5400 + Weight: 1500 + Attack: 80 + Range: 1 + Slots: 4 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 3 + Refineable: true + - Id: 1353 + AegisName: Battle_Axe__ + Name: Battle Axe + Type: Weapon + SubType: 2hAxe + Buy: 5400 + Weight: 1500 + Attack: 80 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 3 + Refineable: true + - Id: 1354 + AegisName: Hammer + Name: Hammer + Type: Weapon + SubType: 2hAxe + Buy: 15500 + Weight: 2000 + Attack: 120 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 16 + Refineable: true + - Id: 1355 + AegisName: Hammer_ + Name: Hammer + Type: Weapon + SubType: 2hAxe + Buy: 15500 + Weight: 2000 + Attack: 120 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 16 + Refineable: true + - Id: 1356 + AegisName: Hammer__ + Name: Hammer + Type: Weapon + SubType: 2hAxe + Buy: 15500 + Weight: 2000 + Attack: 120 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 16 + Refineable: true + - Id: 1357 + AegisName: Buster + Name: Buster + Type: Weapon + SubType: 2hAxe + Buy: 34000 + Weight: 2200 + Attack: 155 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 30 + Refineable: true + - Id: 1358 + AegisName: Buster_ + Name: Buster + Type: Weapon + SubType: 2hAxe + Buy: 34000 + Weight: 2200 + Attack: 155 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 30 + Refineable: true + - Id: 1359 + AegisName: Buster__ + Name: Buster + Type: Weapon + SubType: 2hAxe + Buy: 34000 + Weight: 2200 + Attack: 155 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 30 + Refineable: true + - Id: 1360 + AegisName: Two_Handed_Axe + Name: Two-Handed Axe + Type: Weapon + SubType: 2hAxe + Buy: 55000 + Weight: 2500 + Attack: 185 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 30 + Refineable: true + - Id: 1361 + AegisName: Two_Handed_Axe_ + Name: Two-Handed Axe + Type: Weapon + SubType: 2hAxe + Buy: 55000 + Weight: 2500 + Attack: 185 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 30 + Refineable: true + - Id: 1362 + AegisName: Two_Handed_Axe__ + Name: Two-Handed Axe + Type: Weapon + SubType: 2hAxe + Buy: 55000 + Weight: 2500 + Attack: 185 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 30 + Refineable: true + - Id: 1363 + AegisName: Brood_Axe + Name: Bloody Axe + Type: Weapon + SubType: 2hAxe + Buy: 20 + Weight: 4000 + Attack: 170 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 44 + Refineable: true + Script: | + bonus bStr,10; bonus bSpeedRate,25; + - Id: 1364 + AegisName: Great_Axe + Name: Great Axe + Type: Weapon + SubType: 2hAxe + Buy: 20 + Weight: 1800 + Attack: 187 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 44 + Refineable: true + Script: | + bonus2 bAddSkillBlow,"MC_MAMMONITE",5; bonus2 bAddEff,Eff_Stun,1500; + - Id: 1365 + AegisName: Sabbath + Name: Sabbath + Type: Weapon + SubType: 2hAxe + Buy: 20 + Weight: 2300 + Attack: 120 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 44 + Refineable: true + Script: | + bonus bAtkEle,Ele_Dark; bonus2 bComaRace,RC_Demon,50; bonus2 bCriticalAddRace,RC_Undead,50; + - Id: 1366 + AegisName: Right_Epsilon + Name: Light Epsilon + Type: Weapon + SubType: 2hAxe + Buy: 20 + Weight: 2300 + Attack: 180 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 44 + Refineable: true + Script: | + bonus bAtkEle,Ele_Holy; skill "AL_HEAL",3; bonus2 bAddRace,RC_Demon,3; + - Id: 1367 + AegisName: Slaughter + Name: Slaughter + Type: Weapon + SubType: 2hAxe + Buy: 20 + Weight: 2500 + Attack: 120 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 44 + Refineable: true + Script: | + bonus bAtkEle,Ele_Earth; bonus bIgnoreDefRace,RC_Brute; bonus2 bComaRace,RC_Brute,40; bonus bIgnoreDefRace,RC_Player_Doram; bonus2 bComaRace,RC_Player_Doram,40; + - Id: 1368 + AegisName: Tomahawk + Name: Tomahawk + Type: Weapon + SubType: 2hAxe + Buy: 20 + Weight: 2500 + Attack: 165 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 44 + Refineable: true + Script: | + bonus bAtkEle,Ele_Wind; skill "ITM_TOMAHAWK",1; + - Id: 1369 + AegisName: Guillotine + Name: Guillotine + Type: Weapon + SubType: 2hAxe + Buy: 20 + Weight: 3000 + Attack: 215 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 44 + Refineable: true + Script: | + bonus2 bComaRace,RC_DemiHuman,30; bonus2 bComaRace,RC_Player_Human,30; bonus2 bSPDrainValueRace,RC_DemiHuman,2; bonus2 bSPDrainValueRace,RC_Player_Human,2; bonus2 bSPGainRace,RC_DemiHuman,20; bonus2 bSPGainRace,RC_Player_Human,20; + - Id: 1370 + AegisName: Doom_Slayer + Name: Doom Slayer + Type: Weapon + SubType: 2hAxe + Buy: 20 + Weight: 6000 + Attack: 10 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Script: | + bonus bAspdRate,-40; bonus bUseSPrate,100; if(readparam(bStr)>=95){ bonus bBaseAtk,340; bonus2 bAddEff,Eff_Stun,3000; bonus bBreakArmorRate,500; } + - Id: 1371 + AegisName: Doom_Slayer_ + Name: Doom Slayer + Type: Weapon + SubType: 2hAxe + Buy: 20 + Weight: 6000 + Attack: 10 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Script: | + bonus bAspdRate,-40; bonus bUseSPrate,100; if(readparam(bStr)>=95){ bonus bBaseAtk,340; bonus2 bAddEff,Eff_Stun,3000; bonus bBreakArmorRate,500; } + - Id: 1372 + AegisName: Right_Epsilon_C + Name: Light Epsilon + Type: Weapon + SubType: 2hAxe + Buy: 1 + Attack: 229 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAtkEle,Ele_Holy; skill "AL_HEAL",3; bonus2 bAddRace,RC_Demon,3; bonus bStr,10; bonus bSpeedRate,25; + - Id: 1373 + AegisName: Brood_Axe_C + Name: Refined Bloody Axe + Type: Weapon + SubType: 2hAxe + Buy: 2 + Attack: 205 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + Script: | + bonus bStr,20; bonus bSpeedRate,25; bonus bAspdRate,5; + - Id: 1374 + AegisName: Tomahawk_C + Name: Tomahawk + Type: Weapon + SubType: 2hAxe + Buy: 2 + Attack: 200 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + Script: | + bonus bAtkEle,Ele_Wind; skill "ITM_TOMAHAWK",1; + - Id: 1375 + AegisName: Berdysz + Name: Berdysz + Type: Weapon + SubType: 2hAxe + Buy: 20 + Weight: 2500 + Attack: 200 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Classes: + Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus2 bSubSize,Size_Medium,13; bonus2 bSubSize,Size_Large,15; + - Id: 1376 + AegisName: Heart_Breaker + Name: Heart Breaker + Type: Weapon + SubType: 2hAxe + Buy: 20 + Weight: 2000 + Attack: 175 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Classes: + Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bCritical,20+getrefine(); bonus bAspdRate,5; if((Class==Job_Whitesmith)||(Class==Job_Creator)) bonus3 bAutoSpell,"BS_HAMMERFALL",3,30; + - Id: 1377 + AegisName: Hurricane_Fury + Name: Hurricane's Fury + Type: Weapon + SubType: 2hAxe + Buy: 20 + Weight: 3500 + Attack: 332 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Classes: + Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Script: | + bonus2 bSubSize,Size_Medium,10+getrefine(); bonus bAspdRate,getrefine(); bonus3 bAutoSpell,"NPC_PULSESTRIKE",5,20; + - Id: 1378 + AegisName: Great_Axe_C + Name: Refined Great Axe + Type: Weapon + SubType: 2hAxe + Buy: 1 + Attack: 215 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + Script: | + bonus bStr,5; bonus bHit,20; bonus2 bAddSkillBlow,"MC_MAMMONITE",5; bonus2 bAddEff,Eff_Stun,2000; + - Id: 1379 + AegisName: BF_Two_Handed_Axe1 + Name: Valorous Insane Battle Axe + Type: Weapon + SubType: 2hAxe + Buy: 20 + Attack: 200 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,3; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; + - Id: 1380 + AegisName: BF_Two_Handed_Axe2 + Name: Brave Insane Battle Axe + Type: Weapon + SubType: 2hAxe + Buy: 20 + Attack: 200 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,3; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; autobonus "{ bonus bBreakArmorRate,10000; }",20,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; bonus bUnbreakableWeapon; + - Id: 1381 + AegisName: N_Battle_Axe + Name: Novice Battle Axe + Type: Weapon + SubType: 2hAxe + Attack: 100 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 3 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1382 + AegisName: Krieger_Twohand_Axe1 + Name: Glorious Two-Handed Axe + Type: Weapon + SubType: 2hAxe + Buy: 20 + Attack: 220 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-3)*(getrefine()-3); bonus2 bAddRace,RC_Player_Human,(getrefine()-3)*(getrefine()-3); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,50; } if(getrefine()>8) { bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,100; bonus4 bAutoSpellOnSkill,"MC_MAMMONITE","NPC_CRITICALWOUND",2,200; bonus4 bAutoSpellOnSkill,"WS_CARTTERMINATION","NPC_CRITICALWOUND",2,200; } + - Id: 1383 + AegisName: Holy_Celestial_Axe + Name: Celestial Axe + Type: Weapon + SubType: 2hAxe + Buy: 20 + Weight: 1500 + Attack: 200 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 60 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAtkEle,Ele_Holy; bonus bVit,10; bonus2 bAddRace,RC_Undead,10; bonus3 bAutoSpell,"AL_BLESSING",5,50; + - Id: 1384 + AegisName: Veteran_Axe + Name: Veteran Axe + Type: Weapon + SubType: 2hAxe + Buy: 10000 + Weight: 3000 + Attack: 250 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Script: | + 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; + - Id: 1385 + AegisName: Bradium_Stonehammer + Name: Bradium Stone Hammer + Type: Weapon + SubType: 2hAxe + Buy: 20 + Weight: 2700 + Attack: 210 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Classes: + Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 75 + Refineable: true + Script: | + bonus3 bAddEffOnSkill,"BS_HAMMERFALL",Eff_Stun,500+(200*getrefine()); + - Id: 1386 + AegisName: Doom_Slayer_I + Name: Doom Slayer + Type: Weapon + SubType: 2hAxe + Attack: 20 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + if(readparam(bStr)>=95){ bonus bBaseAtk,400; bonus2 bAddEff,Eff_Stun,3000; bonus bAspdRate,-25; bonus bUseSPrate,100; bonus bBreakArmorRate,500; } + - Id: 1387 + AegisName: Giant_Axe + Name: Giant Axe + Type: Weapon + SubType: 2hAxe + Buy: 20 + Weight: 4000 + Attack: 330 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Classes: + Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 50 + Refineable: true + Script: | + bonus2 bSkillAtk,"WS_CARTTERMINATION",15; if(readparam(bStr)>=95) { bonus bHit,10; bonus bAspdRate,3; } + - Id: 1388 + AegisName: Two_Handed_Axe_C + Name: Two-Handed Axe + Type: Weapon + SubType: 2hAxe + Attack: 220 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddSize,Size_All,40; + - Id: 1389 + AegisName: E_Tomahawk_C + Name: Tomahawk + Type: Weapon + SubType: 2hAxe + Buy: 2 + Attack: 200 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + Script: | + bonus bAtkEle,Ele_Wind; + - Id: 1390 + AegisName: E_Right_Epsilon_C + Name: Light Epsilon + Type: Weapon + SubType: 2hAxe + Buy: 1 + Attack: 229 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Holy; bonus bStr,10; + - Id: 1401 + AegisName: Javelin + Name: Javelin + Type: Weapon + SubType: 1hSpear + Buy: 150 + Weight: 700 + Attack: 28 + Range: 3 + Slots: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 4 + Refineable: true + - Id: 1402 + AegisName: Javelin_ + Name: Javelin + Type: Weapon + SubType: 1hSpear + Buy: 150 + Weight: 700 + Attack: 28 + Range: 3 + Slots: 4 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 4 + Refineable: true + - Id: 1403 + AegisName: Javelin__ + Name: Javelin + Type: Weapon + SubType: 1hSpear + Buy: 150 + Weight: 700 + Attack: 28 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 4 + Refineable: true + - Id: 1404 + AegisName: Spear + Name: Spear + Type: Weapon + SubType: 1hSpear + Buy: 1700 + Weight: 850 + Attack: 44 + Range: 3 + Slots: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 4 + Refineable: true + - Id: 1405 + AegisName: Spear_ + Name: Spear + Type: Weapon + SubType: 1hSpear + Buy: 1700 + Weight: 850 + Attack: 44 + Range: 3 + Slots: 4 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 4 + Refineable: true + - Id: 1406 + AegisName: Spear__ + Name: Spear + Type: Weapon + SubType: 1hSpear + Buy: 1700 + Weight: 850 + Attack: 44 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 4 + Refineable: true + - Id: 1407 + AegisName: Pike + Name: Pike + Type: Weapon + SubType: 1hSpear + Buy: 3450 + Weight: 1000 + Attack: 60 + Range: 3 + Slots: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 4 + Refineable: true + - Id: 1408 + AegisName: Pike_ + Name: Pike + Type: Weapon + SubType: 1hSpear + Buy: 3450 + Weight: 1000 + Attack: 60 + Range: 3 + Slots: 4 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 4 + Refineable: true + - Id: 1409 + AegisName: Pike__ + Name: Pike + Type: Weapon + SubType: 1hSpear + Buy: 3450 + Weight: 1000 + Attack: 60 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 4 + Refineable: true + - Id: 1410 + AegisName: Lance + Name: Lance + Type: Weapon + SubType: 2hSpear + Buy: 60000 + Weight: 2500 + Attack: 185 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + - Id: 1411 + AegisName: Lance_ + Name: Lance + Type: Weapon + SubType: 2hSpear + Buy: 60000 + Weight: 2500 + Attack: 185 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + - Id: 1412 + AegisName: Lance__ + Name: Lance + Type: Weapon + SubType: 2hSpear + Buy: 60000 + Weight: 2500 + Attack: 185 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + - Id: 1413 + AegisName: Gungnir + Name: Gungnir + Type: Weapon + SubType: 1hSpear + Buy: 20 + Weight: 500 + Attack: 120 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 4 + Refineable: true + Script: | + bonus bAtkEle,Ele_Wind; bonus bPerfectHitRate,25; bonus bHit,30; + - Id: 1414 + AegisName: Gelerdria + Name: Gelerdria + Type: Weapon + SubType: 1hSpear + Buy: 20 + Weight: 700 + Attack: 145 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus bAtkEle,Ele_Earth; bonus bMaxHP,800; bonus bMaxSP,-50; + - Id: 1415 + AegisName: Skewer + Name: Brocca + Type: Weapon + SubType: 1hSpear + Buy: 20 + Weight: 850 + Attack: 100 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus bIgnoreDefClass,Class_Normal; bonus2 bAddEle,Ele_Neutral,25; + - Id: 1416 + AegisName: Tjungkuletti + Name: Tjungkuletti + Type: Weapon + SubType: 1hSpear + Buy: 20 + Weight: 1000 + Attack: 95 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus bSPDrainValue,1; bonus bSPGainValue,5; + - Id: 1417 + AegisName: Pole_Axe + Name: Pole Axe + Type: Weapon + SubType: 1hSpear + Buy: 20 + Weight: 3800 + Attack: 160 + Range: 3 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 71 + Refineable: true + Script: | + bonus bStr,1; bonus bInt,2; bonus bDex,1; + - Id: 1418 + AegisName: Gungnir_ + Name: Gungnir + Type: Weapon + SubType: 1hSpear + Buy: 20 + Weight: 500 + Attack: 120 + Range: 3 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 4 + Refineable: true + Script: | + bonus bAtkEle,Ele_Wind; bonus bPerfectHitRate,25; bonus bHit,30; + - Id: 1419 + AegisName: Pole_Axe_C + Name: Pole Axe + Type: Weapon + SubType: 1hSpear + Buy: 1 + Weight: 4800 + Attack: 159 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,1; bonus bInt,2; bonus bDex,1; + - Id: 1420 + AegisName: Long_Horn + Name: Long Horn + Type: Weapon + SubType: 1hSpear + Buy: 20 + Weight: 1000 + Attack: 150 + Range: 3 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Classes: + Upper: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 65 + Refineable: true + Script: | + bonus bAtkEle,Ele_Holy; bonus2 bAddEff,Eff_Bleeding,500; skill "TF_DETOXIFY",1; bonus bUnbreakableWeapon; + - Id: 1421 + AegisName: Battle_Hook + Name: Battle Hook + Type: Weapon + SubType: 1hSpear + Buy: 20 + Weight: 900 + Attack: 140 + Range: 3 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Classes: + Upper: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 65 + Refineable: true + Script: | + bonus2 bAddEff,Eff_Stun,500; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; skill "KN_PIERCE",3; + - Id: 1422 + AegisName: Hunting_Spear + Name: Hunting Spear + Type: Weapon + SubType: 1hSpear + Buy: 20 + Weight: 4200 + Attack: 180 + Range: 3 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Classes: + Upper: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 60 + Refineable: true + Script: | + bonus bIgnoreDefRace,RC_Brute; bonus bIgnoreDefRace,RC_Player_Doram; bonus3 bAddMonsterDropItem,517,RC_Brute,1000; bonus3 bAutoSpell,"LK_JOINTBEAT",3,100; + - Id: 1423 + AegisName: Pole_XO + Name: Pole XO + Type: Weapon + SubType: 1hSpear + Buy: 20 + Attack: 120 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,50; + - Id: 1424 + AegisName: Skewer_C + Name: Refined Brocca + Type: Weapon + SubType: 1hSpear + Buy: 1 + Attack: 149 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 4 + Script: | + bonus bIgnoreDefClass,Class_Normal; bonus2 bAddSize,Size_Medium,20; + - Id: 1425 + AegisName: BF_Spear1 + Name: Assaulter Spear + Type: Weapon + SubType: 1hSpear + Buy: 20 + Attack: 60 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(BaseJob==Job_Crusader) bonus bAspdRate,20; + - Id: 1426 + AegisName: Krieger_Onehand_Spear1 + Name: Glorious Spear + Type: Weapon + SubType: 1hSpear + Buy: 20 + Attack: 130 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus bAspdRate,10; } if(getrefine()>8) { if(BaseJob==Job_Knight) bonus4 bAutoSpellOnSkill,"KN_PIERCE","NPC_CRITICALWOUND",2,200; else if(BaseJob==Job_Crusader) bonus3 bAutoSpell,"PA_PRESSURE",5,100; } + - Id: 1427 + AegisName: Spear_Of_Excellent + Name: Spear Of Excellent + Type: Weapon + SubType: 1hSpear + Buy: 20 + Attack: 160 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bSkillAtk,"SM_MAGNUM",25; bonus bStr,2; + - Id: 1428 + AegisName: Long_Horn_M + Name: Long Horn + Type: Weapon + SubType: 1hSpear + Buy: 20 + Weight: 1000 + Attack: 150 + Range: 3 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Classes: + Upper: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 65 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAtkEle,Ele_Holy; bonus2 bAddEff,Eff_Bleeding,500; skill "TF_DETOXIFY",1; bonus bUnbreakableWeapon; + - Id: 1429 + AegisName: Hunting_Spear_M + Name: Hunting Spear + Type: Weapon + SubType: 1hSpear + Buy: 20 + Weight: 4200 + Attack: 180 + Range: 3 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Classes: + Upper: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 60 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bIgnoreDefRace,RC_Brute; bonus bIgnoreDefRace,RC_Player_Doram; bonus3 bAddMonsterDropItem,517,RC_Brute,1000; bonus3 bAutoSpell,"LK_JOINTBEAT",3,500; + - Id: 1430 + AegisName: Pike_C + Name: Pike + Type: Weapon + SubType: 1hSpear + Attack: 74 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddSize,Size_All,70; + - Id: 1431 + AegisName: F_Pole_Axe_C + Name: Pole Axe + Type: Weapon + SubType: 1hSpear + Buy: 1 + Weight: 4800 + Attack: 195 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Script: | + bonus bStr,1; bonus bInt,2; bonus bDex,1; + - Id: 1432 + AegisName: E_Pole_Axe_C + Name: Pole Axe + Type: Weapon + SubType: 1hSpear + Buy: 1 + Weight: 4800 + Attack: 195 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Script: | + bonus bStr,1; bonus bInt,2; bonus bDex,1; + - Id: 1451 + AegisName: Guisarme + Name: Guisarme + Type: Weapon + SubType: 2hSpear + Buy: 13000 + Weight: 1000 + Attack: 84 + Range: 3 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 18 + Refineable: true + - Id: 1452 + AegisName: Guisarme_ + Name: Guisarme + Type: Weapon + SubType: 2hSpear + Buy: 13000 + Weight: 1000 + Attack: 84 + Range: 3 + Slots: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 18 + Refineable: true + - Id: 1453 + AegisName: Guisarme__ + Name: Guisarme + Type: Weapon + SubType: 2hSpear + Buy: 13000 + Weight: 1000 + Attack: 84 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 18 + Refineable: true + - Id: 1454 + AegisName: Glaive + Name: Glaive + Type: Weapon + SubType: 2hSpear + Buy: 20000 + Weight: 1200 + Attack: 104 + Range: 3 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 18 + Refineable: true + - Id: 1455 + AegisName: Glaive_ + Name: Glaive + Type: Weapon + SubType: 2hSpear + Buy: 20000 + Weight: 1200 + Attack: 104 + Range: 3 + Slots: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 18 + Refineable: true + - Id: 1456 + AegisName: Glaive__ + Name: Glaive + Type: Weapon + SubType: 2hSpear + Buy: 20000 + Weight: 1200 + Attack: 104 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 18 + Refineable: true + - Id: 1457 + AegisName: Partizan + Name: Partizan + Type: Weapon + SubType: 2hSpear + Buy: 27000 + Weight: 2000 + Attack: 124 + Range: 3 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 18 + Refineable: true + - Id: 1458 + AegisName: Partizan_ + Name: Partizan + Type: Weapon + SubType: 2hSpear + Buy: 27000 + Weight: 2000 + Attack: 124 + Range: 3 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 18 + Refineable: true + - Id: 1459 + AegisName: Partizan__ + Name: Partizan + Type: Weapon + SubType: 2hSpear + Buy: 27000 + Weight: 2000 + Attack: 124 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 18 + Refineable: true + - Id: 1460 + AegisName: Trident + Name: Trident + Type: Weapon + SubType: 2hSpear + Buy: 51000 + Weight: 1200 + Attack: 150 + Range: 3 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + - Id: 1461 + AegisName: Trident_ + Name: Trident + Type: Weapon + SubType: 2hSpear + Buy: 51000 + Weight: 1200 + Attack: 150 + Range: 3 + Slots: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + - Id: 1462 + AegisName: Trident__ + Name: Trident + Type: Weapon + SubType: 2hSpear + Buy: 51000 + Weight: 1200 + Attack: 150 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + - Id: 1463 + AegisName: Halberd + Name: Halberd + Type: Weapon + SubType: 2hSpear + Buy: 54000 + Weight: 2500 + Attack: 165 + Range: 3 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + - Id: 1464 + AegisName: Halberd_ + Name: Halberd + Type: Weapon + SubType: 2hSpear + Buy: 54000 + Weight: 2500 + Attack: 165 + Range: 3 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + - Id: 1465 + AegisName: Halberd__ + Name: Halberd + Type: Weapon + SubType: 2hSpear + Buy: 54000 + Weight: 2500 + Attack: 165 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + - Id: 1466 + AegisName: Crescent_Scythe + Name: Crescent Scythe + Type: Weapon + SubType: 2hSpear + Buy: 20 + Weight: 2500 + Attack: 180 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus bCritical,30; bonus bHit,10; + - Id: 1467 + AegisName: Bill_Guisarme + Name: Bill Guisarme + Type: Weapon + SubType: 2hSpear + Buy: 20 + Weight: 1000 + Attack: 183 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Player_Doram,10; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; + - Id: 1468 + AegisName: Zephyrus + Name: Zephyrus + Type: Weapon + SubType: 2hSpear + Buy: 20 + Weight: 2000 + Attack: 170 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Silence,200; bonus3 bAutoSpell,"MG_THUNDERSTORM",3,100; + - Id: 1469 + AegisName: Longinus's_Spear + Name: Longinus's Spear + Type: Weapon + SubType: 2hSpear + Buy: 20 + Weight: 2500 + Attack: 180 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus bAtkEle,Ele_Dark; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus2 bAddRace,RC_Angel,10; + - Id: 1470 + AegisName: Brionac + Name: Brionac + Type: Weapon + SubType: 2hSpear + Buy: 20 + Weight: 3000 + Attack: 190 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus bAtkEle,Ele_Holy; skill "AL_HEAL",5; bonus3 bAutoSpell,"MG_SOULSTRIKE",3,100; bonus2 bAddClass,Class_Boss,5; + - Id: 1471 + AegisName: Hell_Fire + Name: Hellfire + Type: Weapon + SubType: 2hSpear + Buy: 20 + Weight: 3500 + Attack: 200 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus bAtkEle,Ele_Fire; bonus3 bAutoSpell,"MG_FIREBALL",3,100; bonus bStr,3; + - Id: 1472 + AegisName: Staff_Of_Soul + Name: Soul Staff + Type: Weapon + SubType: 2hStaff + Buy: 20 + Weight: 1400 + Attack: 25 + Range: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 73 + Refineable: true + Script: | + bonus bInt,5; bonus bAgi,2; bonus bMatkRate,15; + - Id: 1473 + AegisName: Wizardy_Staff + Name: Wizardry Staff + Type: Weapon + SubType: 2hStaff + Buy: 20 + Weight: 2400 + Attack: 120 + Range: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 90 + Refineable: true + Script: | + bonus bInt,6; bonus bDex,2; bonus bMatkRate,15; + - Id: 1474 + AegisName: Gae_Bolg + Name: Gae Bolg + Type: Weapon + SubType: 2hSpear + Buy: 20 + Weight: 2000 + Attack: 160 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 60 + Refineable: true + Script: | + bonus bIgnoreDefRace,RC_Dragon; bonus2 bAddClass,Class_Boss,10; + - Id: 1475 + AegisName: Horseback_Lance + Name: Equestrian's Spear + Type: Weapon + SubType: 2hSpear + Buy: 20 + Weight: 3700 + Attack: 200 + Range: 4 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 75 + Refineable: true + - Id: 1476 + AegisName: Crescent_Scythe_ + Name: Crescent Scythe + Type: Weapon + SubType: 2hSpear + Buy: 20 + Weight: 2500 + Attack: 180 + Range: 3 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus bCritical,30; bonus bHit,10; + - Id: 1477 + AegisName: Spectral_Spear + Name: Spectral Spear + Type: Weapon + SubType: 2hSpear + Buy: 20 + Weight: 2000 + Attack: 170 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 75 + Refineable: true + Script: | + 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; + - Id: 1478 + AegisName: Ahlspiess + Name: Ahlspiess + Type: Weapon + SubType: 2hSpear + Buy: 20 + Weight: 1000 + Attack: 120 + Range: 3 + Jobs: + Crusader: true + Knight: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 65 + Refineable: true + Script: | + bonus bIgnoreDefClass,Class_Normal; bonus bIgnoreDefClass,Class_Boss; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus3 bAutoSpell,"KN_PIERCE",5,30; + - Id: 1479 + AegisName: Spectral_Spear_ + Name: Spectral Spear + Type: Weapon + SubType: 2hSpear + Buy: 20 + Weight: 2000 + Attack: 170 + Range: 3 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 75 + Refineable: true + Script: | + 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; + - Id: 1480 + AegisName: Gae_Bolg_ + Name: Gae Bolg + Type: Weapon + SubType: 2hSpear + Buy: 20 + Weight: 2000 + Attack: 160 + Range: 3 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 60 + Refineable: true + Script: | + bonus bIgnoreDefRace,RC_Dragon; bonus2 bAddClass,Class_Boss,10; + - Id: 1481 + AegisName: Zephyrus_ + Name: Zephyrus + Type: Weapon + SubType: 2hSpear + Buy: 20 + Weight: 2000 + Attack: 170 + Range: 3 + Slots: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Silence,200; bonus3 bAutoSpell,"MG_THUNDERSTORM",3,100; + - Id: 1482 + AegisName: BF_Lance1 + Name: Assaulter Lance + Type: Weapon + SubType: 2hSpear + Attack: 160 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,2; bonus2 bAddRace,RC_DemiHuman,25; bonus2 bAddRace,RC_Player_Human,25; bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus bUnbreakableWeapon; + - Id: 1483 + AegisName: Ivory_Lance + Name: Ivory Lance + Type: Weapon + SubType: 2hSpear + Buy: 20 + Weight: 1000 + Attack: 160 + Range: 3 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Classes: + Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 50 + Refineable: true + Script: | + bonus bAgi,2; bonus bAspdRate,3; bonus2 bAddEff,Eff_Bleeding,300; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,30; skill "KN_SPEARSTAB",5; + - Id: 1484 + AegisName: Cardo + Name: Cardo + Type: Weapon + SubType: 2hSpear + Buy: 20 + Weight: 5600 + Attack: 150 + Range: 3 + Slots: 1 + Jobs: + Knight: true + Classes: + Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bAspdRate,-10; bonus bDef,getrefine()/2; + - Id: 1485 + AegisName: Battle_Fork + Name: Battle Fork + Type: Weapon + SubType: 2hSpear + Buy: 20 + Weight: 700 + Attack: 112 + Range: 3 + Slots: 4 + Jobs: + Crusader: true + Knight: true + Swordman: true + Classes: + Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 50 + Refineable: true + - Id: 1486 + AegisName: Krieger_Twohand_Spear1 + Name: Glorious Lance + Type: Weapon + SubType: 2hSpear + Buy: 20 + Attack: 220 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) { if(BaseJob==Job_Knight) bonus4 bAutoSpellOnSkill,"KN_PIERCE","NPC_CRITICALWOUND",2,200; else if(BaseJob==Job_Crusader) bonus3 bAutoSpell,"PA_PRESSURE",5,200; } + - Id: 1487 + AegisName: Lance_C + Name: Lance + Type: Weapon + SubType: 2hSpear + Attack: 220 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddSize,Size_All,50; + - Id: 1488 + AegisName: Ahlspiess_C + Name: Ahlspiess + Type: Weapon + SubType: 2hSpear + Buy: 20 + Attack: 135 + Range: 3 + Jobs: + Crusader: true + Knight: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bIgnoreDefClass,Class_Normal; bonus bIgnoreDefClass,Class_Boss; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus3 bAutoSpell,"KN_PIERCE",5,30; + - Id: 1501 + AegisName: Club + Name: Club + Type: Weapon + SubType: Mace + Buy: 120 + Weight: 700 + Attack: 23 + Range: 1 + Slots: 3 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Novice: true + Priest: true + SuperNovice: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 2 + Refineable: true + - Id: 1502 + AegisName: Club_ + Name: Club + Type: Weapon + SubType: Mace + Buy: 120 + Weight: 700 + Attack: 23 + Range: 1 + Slots: 4 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Novice: true + Priest: true + SuperNovice: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 2 + Refineable: true + - Id: 1503 + AegisName: Club__ + Name: Club + Type: Weapon + SubType: Mace + Buy: 120 + Weight: 700 + Attack: 23 + Range: 1 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Novice: true + Priest: true + SuperNovice: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 2 + Refineable: true + - Id: 1504 + AegisName: Mace + Name: Mace + Type: Weapon + SubType: Mace + Buy: 1600 + Weight: 800 + Attack: 37 + Range: 1 + Slots: 3 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Novice: true + Priest: true + SuperNovice: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 2 + Refineable: true + - Id: 1505 + AegisName: Mace_ + Name: Mace + Type: Weapon + SubType: Mace + Buy: 1600 + Weight: 800 + Attack: 37 + Range: 1 + Slots: 4 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Novice: true + Priest: true + SuperNovice: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 2 + Refineable: true + - Id: 1506 + AegisName: Mace__ + Name: Mace + Type: Weapon + SubType: Mace + Buy: 1600 + Weight: 800 + Attack: 37 + Range: 1 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Novice: true + Priest: true + SuperNovice: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 2 + Refineable: true + - Id: 1507 + AegisName: Smasher + Name: Smasher + Type: Weapon + SubType: Mace + Buy: 9000 + Weight: 1000 + Attack: 54 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Novice: true + Priest: true + SuperNovice: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 14 + Refineable: true + - Id: 1508 + AegisName: Smasher_ + Name: Smasher + Type: Weapon + SubType: Mace + Buy: 9000 + Weight: 1000 + Attack: 54 + Range: 1 + Slots: 3 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Novice: true + Priest: true + SuperNovice: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 14 + Refineable: true + - Id: 1509 + AegisName: Smasher__ + Name: Smasher + Type: Weapon + SubType: Mace + Buy: 9000 + Weight: 1000 + Attack: 54 + Range: 1 + Slots: 3 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Novice: true + Priest: true + SuperNovice: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 14 + Refineable: true + - Id: 1510 + AegisName: Flail + Name: Flail + Type: Weapon + SubType: Mace + Buy: 16000 + Weight: 900 + Attack: 69 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 14 + Refineable: true + - Id: 1511 + AegisName: Flail_ + Name: Flail + Type: Weapon + SubType: Mace + Buy: 16000 + Weight: 900 + Attack: 69 + Range: 1 + Slots: 3 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 14 + Refineable: true + - Id: 1512 + AegisName: Flail__ + Name: Flail + Type: Weapon + SubType: Mace + Buy: 16000 + Weight: 900 + Attack: 69 + Range: 1 + Slots: 3 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 14 + Refineable: true + - Id: 1513 + AegisName: Morning_Star + Name: Morning Star + Type: Weapon + SubType: Mace + Buy: 41000 + Weight: 1500 + Attack: 110 + Range: 1 + Slots: 1 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + - Id: 1514 + AegisName: Morning_Star_ + Name: Morning Star + Type: Weapon + SubType: Mace + Buy: 41000 + Weight: 1500 + Attack: 110 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + - Id: 1515 + AegisName: Morning_Star__ + Name: Morning Star + Type: Weapon + SubType: Mace + Buy: 41000 + Weight: 1500 + Attack: 110 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + - Id: 1516 + AegisName: Sword_Mace + Name: Sword Mace + Type: Weapon + SubType: Mace + Buy: 50000 + Weight: 1200 + Attack: 130 + Range: 1 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + - Id: 1517 + AegisName: Sword_Mace_ + Name: Sword Mace + Type: Weapon + SubType: Mace + Buy: 50000 + Weight: 1200 + Attack: 130 + Range: 1 + Slots: 1 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + - Id: 1518 + AegisName: Sword_Mace__ + Name: Sword Mace + Type: Weapon + SubType: Mace + Buy: 50000 + Weight: 1200 + Attack: 130 + Range: 1 + Slots: 1 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + - Id: 1519 + AegisName: Chain + Name: Chain + Type: Weapon + SubType: Mace + Buy: 23000 + Weight: 800 + Attack: 84 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 14 + Refineable: true + - Id: 1520 + AegisName: Chain_ + Name: Chain + Type: Weapon + SubType: Mace + Buy: 23000 + Weight: 800 + Attack: 84 + Range: 1 + Slots: 3 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 14 + Refineable: true + - Id: 1521 + AegisName: Chain__ + Name: Chain + Type: Weapon + SubType: Mace + Buy: 23000 + Weight: 800 + Attack: 84 + Range: 1 + Slots: 3 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 14 + Refineable: true + - Id: 1522 + AegisName: Stunner + Name: Stunner + Type: Weapon + SubType: Mace + Buy: 60000 + Weight: 2000 + Attack: 140 + Range: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + Script: | + bonus2 bAddEff,Eff_Stun,1000; + - Id: 1523 + AegisName: Spike + Name: Spike + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 700 + Attack: 85 + Range: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus bCritical,40; bonus bDefRate,-67; bonus bDef2Rate,-67; + - Id: 1524 + AegisName: Golden_Mace + Name: Golden Mace + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 800 + Attack: 110 + Range: 1 + Slots: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus2 bAddRace,RC_Undead,10; bonus bUnbreakableWeapon; + - Id: 1525 + AegisName: Long_Mace + Name: Long Mace + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 800 + Attack: 135 + Range: 3 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus bLongAtkDef,10; + - Id: 1526 + AegisName: Slash + Name: Slash + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 1000 + Attack: 145 + Range: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus2 bAddRace,RC_Undead,15; bonus2 bComaRace,RC_Undead,10; bonus2 bExpAddRace,RC_Undead,5; + - Id: 1527 + AegisName: Quadrille + Name: Quadrille + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 900 + Attack: 165 + Range: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus2 bAddRace,RC_Undead,10; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus2 bAddEle,Ele_Earth,10; + - Id: 1528 + AegisName: Grand_Cross + Name: Grand Cross + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 1500 + Attack: 140 + Range: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus bAtkEle,Ele_Holy; skill "PR_TURNUNDEAD",3; bonus3 bAutoSpell,"PR_TURNUNDEAD",3,100; bonus2 bSPDrainValueRace,RC_Undead,1; bonus2 bSPGainRace,RC_Undead,3; + - Id: 1529 + AegisName: Iron_Driver + Name: Iron Driver + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 3000 + Attack: 155 + Range: 2 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 78 + Refineable: true + - Id: 1530 + AegisName: Mjolnir + Name: Mjolnir + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 6000 + Attack: 250 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 95 + Script: | + bonus bAtkEle,Ele_Wind; bonus bDex,40; bonus bStr,15; bonus bAspdRate,10; bonus bUnbreakableWeapon; + - Id: 1531 + AegisName: Spanner + Name: Wrench + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 2500 + Attack: 115 + Range: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus2 bAddEff,Eff_Blind,100; bonus2 bAddEff,Eff_Stun,100; bonus2 bAddEff,Eff_Poison,100; bonus2 bAddEff,Eff_Freeze,100; + - Id: 1532 + AegisName: Stunner_ + Name: Stunner + Type: Weapon + SubType: Mace + Buy: 60000 + Weight: 2000 + Attack: 140 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + Script: | + bonus2 bAddEff,Eff_Stun,1000; + - Id: 1533 + AegisName: Warrior_Balmung + Name: Warrior's Balmung + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 1000 + Attack: 170 + Range: 1 + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,5; + - Id: 1534 + AegisName: Spanner_C + Name: Wrench + Type: Weapon + SubType: Mace + Buy: 2 + Attack: 150 + Range: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + Script: | + bonus2 bAddEff,Eff_Blind,100; bonus2 bAddEff,Eff_Stun,100; bonus2 bAddEff,Eff_Poison,100; bonus2 bAddEff,Eff_Freeze,100; + - Id: 1535 + AegisName: Hollgrehenn_Hammer + Name: Hollgrehenn's Hammer + Type: Weapon + SubType: Mace + Buy: 4444 + Weight: 44 + Attack: 4 + Range: 1 + Slots: 1 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 44 + Refineable: true + Script: | + bonus bBreakArmorRate,100; bonus bBreakWeaponRate,100; if(readparam(bStr)>=44) { bonus bBaseAtk,44; } + - Id: 1536 + AegisName: Good_Morning_Star + Name: Good Morning Star + Type: Weapon + SubType: Mace + Buy: 20 + Attack: 120 + Range: 1 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,50; + - Id: 1537 + AegisName: Quadrille_C + Name: Refined Quadrille + Type: Weapon + SubType: Mace + Buy: 1 + Attack: 193 + Range: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + Script: | + bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player_Human,30; bonus2 bAddRace,RC_Demon,40; bonus2 bAddRace,RC_Undead,40; + - Id: 1538 + AegisName: Spike_ + Name: Spike + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 700 + Attack: 85 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus bCritical,40; bonus bDefRate,-67; bonus bDef2Rate,-67; + - Id: 1539 + AegisName: Golden_Mace_ + Name: Golden Mace + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 800 + Attack: 110 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus2 bAddRace,RC_Undead,10; bonus bUnbreakableWeapon; + - Id: 1540 + AegisName: Grand_Cross_ + Name: Grand Cross + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 1500 + Attack: 140 + Range: 1 + Slots: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus bAtkEle,Ele_Holy; skill "PR_TURNUNDEAD",3; bonus3 bAutoSpell,"PR_TURNUNDEAD",3,100; bonus2 bSPDrainValueRace,RC_Undead,1; bonus2 bSPGainRace,RC_Undead,3; + - Id: 1541 + AegisName: Nemesis + Name: Nemesis + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 900 + Attack: 120 + Range: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 60 + Refineable: true + Script: | + 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; }"; + - Id: 1542 + AegisName: BF_Morning_Star1 + Name: Valorous Battlefield Morning Star + Type: Weapon + SubType: Mace + Buy: 20 + Attack: 105 + Range: 1 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Novice: true + Priest: true + SuperNovice: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; + - Id: 1543 + AegisName: BF_Morning_Star2 + Name: Brave Battlefield Morning Star + Type: Weapon + SubType: Mace + Buy: 20 + Attack: 105 + Range: 1 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Novice: true + Priest: true + SuperNovice: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus bUnbreakableWeapon; autobonus "{ bonus2 bAddEff,Eff_Stun,5000; }",10,6000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; + - Id: 1544 + AegisName: Lunakaligo + Name: Lunakaligo + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 700 + Attack: 110 + Range: 1 + Slots: 3 + Jobs: + Acolyte: true + Monk: true + Priest: true + Classes: + Upper: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 50 + Refineable: true + Script: | + 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; } + - Id: 1545 + AegisName: N_Mace + Name: Novice Mace + Type: Weapon + SubType: Mace + Attack: 57 + Range: 1 + Slots: 3 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Novice: true + Priest: true + SuperNovice: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 2 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1546 + AegisName: Krieger_Onehand_Mace1 + Name: Glorious Morning Star + Type: Weapon + SubType: Mace + Buy: 20 + Attack: 130 + Range: 1 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Novice: true + Priest: true + SuperNovice: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus bAspdRate,5; } if(getrefine()>8) { bonus2 bAddEff,Eff_Stun,2000; bonus bAspdRate,5; } + - Id: 1547 + AegisName: Mace_Of_Madness + Name: Mace Of Madness + Type: Weapon + SubType: Mace + Buy: 20 + Attack: 150 + Range: 1 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bSkillAtk,"MC_CARTREVOLUTION",25; bonus bStr,2; + - Id: 1548 + AegisName: Veteran_Hammer + Name: Veteran Hammer + Type: Weapon + SubType: Mace + Buy: 10000 + Weight: 1800 + Attack: 160 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Script: | + bonus bHealPower,getskilllv("AL_DP"); bonus bCritical,getskilllv("PR_MACEMASTERY")*2; bonus bInt,1; bonus bLuk,1; + - Id: 1549 + AegisName: Pilebuncker + Name: Pile Bunker + Type: Weapon + SubType: Mace + Buy: 10000 + Weight: 3500 + Attack: 450 + Range: 1 + Jobs: + Blacksmith: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 99 + Refineable: true + - Id: 1550 + AegisName: Book + Name: Book + Type: Weapon + SubType: Book + Buy: 30000 + Weight: 600 + Attack: 85 + Range: 1 + Slots: 3 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 14 + Refineable: true + - Id: 1551 + AegisName: Bible + Name: Bible + Type: Weapon + SubType: Book + Buy: 60000 + Weight: 1000 + Attack: 115 + Range: 1 + Slots: 2 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + Script: | + bonus bInt,2; + - Id: 1552 + AegisName: Tablet + Name: Tablet + Type: Weapon + SubType: Book + Buy: 51000 + Weight: 800 + Attack: 125 + Range: 1 + Slots: 1 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + - Id: 1553 + AegisName: Book_Of_Billows + Name: Book of Billows + Type: Weapon + SubType: Book + Buy: 35000 + Weight: 750 + Attack: 90 + Range: 1 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + Script: | + bonus bAtkEle,Ele_Water; + - Id: 1554 + AegisName: Book_Of_Mother_Earth + Name: Book of Mother Earth + Type: Weapon + SubType: Book + Buy: 35000 + Weight: 750 + Attack: 90 + Range: 1 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + Script: | + bonus bAtkEle,Ele_Earth; + - Id: 1555 + AegisName: Book_Of_Blazing_Sun + Name: Book of the Blazing Sun + Type: Weapon + SubType: Book + Buy: 35000 + Weight: 750 + Attack: 90 + Range: 1 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + Script: | + bonus bAtkEle,Ele_Fire; + - Id: 1556 + AegisName: Book_Of_Gust_Of_Wind + Name: Book of Gust of Wind + Type: Weapon + SubType: Book + Buy: 35000 + Weight: 750 + Attack: 90 + Range: 1 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + Script: | + bonus bAtkEle,Ele_Wind; + - Id: 1557 + AegisName: Book_Of_The_Apocalypse + Name: Book of the Apocalypse + Type: Weapon + SubType: Book + Buy: 60000 + Weight: 800 + Attack: 120 + Range: 1 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus bAtkEle,Ele_Dark; bonus2 bAddEle,Ele_Holy,5; bonus2 bAddEle,Ele_Water,7; bonus2 bAddEle,Ele_Earth,7; bonus2 bAddEle,Ele_Fire,7; bonus2 bAddEle,Ele_Wind,7; + - Id: 1558 + AegisName: Girl's_Diary + Name: Girl's Diary + Type: Weapon + SubType: Book + Buy: 1500 + Weight: 300 + Attack: 60 + Range: 1 + Slots: 1 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus2 bAddDamageClass,1188,150; + - Id: 1559 + AegisName: Legacy_Of_Dragon + Name: Legacy of Dragon + Type: Weapon + SubType: Book + Buy: 20 + Weight: 700 + Attack: 130 + Range: 1 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bInt,3; bonus bIgnoreDefRace,RC_Dragon; bonus2 bSPGainRace,RC_Dragon,10; + - Id: 1560 + AegisName: Diary_Of_Great_Sage + Name: Sage's Diary + Type: Weapon + SubType: Book + Buy: 20 + Weight: 1100 + Attack: 100 + Range: 1 + Slots: 2 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 60 + Refineable: true + Script: | + bonus bMatkRate,15; if(readparam(bStr)>=50) bonus bAspdRate,5; if(readparam(bInt)>=70) bonus bMatkRate,5; + - Id: 1561 + AegisName: Hardback + Name: Hardcover Book + Type: Weapon + SubType: Book + Buy: 20 + Weight: 1500 + Attack: 140 + Range: 1 + Slots: 1 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bStr,3; bonus bDex,2; + - Id: 1562 + AegisName: Bible_Of_Battlefield + Name: Battlefield Textbook + Type: Weapon + SubType: Book + Buy: 20 + Weight: 700 + Attack: 110 + Range: 1 + Slots: 1 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Script: | + bonus bInt,3; bonus3 bAutoSpell,"AL_BLESSING",3+(getskilllv("AL_BLESSING")>3)*(getskilllv("AL_BLESSING")-3),20; + - Id: 1563 + AegisName: Diary_Of_Great_Sage_C + Name: Sage's Diary + Type: Weapon + SubType: Book + Buy: 1 + Attack: 135 + Range: 1 + Slots: 2 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMatkRate,20; bonus bAspdRate,5; + - Id: 1564 + AegisName: Encyclopedia + Name: Encyclopedia + Type: Weapon + SubType: Book + Buy: 20 + Weight: 2000 + Attack: 110 + Range: 1 + Slots: 2 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bMatkRate,15; bonus bInt,3; bonus bDex,2; bonus bCritical,20+((readparam(bLuk)*2)/10); + - Id: 1565 + AegisName: Death_Note + Name: Ledger of Death + Type: Weapon + SubType: Book + Buy: 20 + Weight: 1000 + Attack: 137 + Range: 1 + Slots: 2 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 85 + Refineable: true + Script: | + bonus bMatkRate,15; bonus bStr,3; bonus bInt,3; bonus bLuk,-20; bonus2 bComaRace,RC_DemiHuman,10; bonus2 bComaRace,RC_Player_Human,10; bonus bAspdRate,getrefine(); if(BaseJob==Job_Sage) bonus3 bAutoSpell,"NPC_HELLJUDGEMENT",5,20; + - Id: 1566 + AegisName: Diary_Of_Great_Basil + Name: Diary Of Great Basil + Type: Weapon + SubType: Book + Buy: 20 + Attack: 120 + Range: 1 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,50; + - Id: 1567 + AegisName: Hardback_C + Name: Refined Hardcover Book + Type: Weapon + SubType: Book + Buy: 1 + Attack: 168 + Range: 1 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 4 + Script: | + bonus bStr,5; bonus bDex,2; bonus bMatkRate,20; + - Id: 1568 + AegisName: Book_Of_Billows_ + Name: Book of Billows + Type: Weapon + SubType: Book + Buy: 35000 + Weight: 750 + Attack: 90 + Range: 1 + Slots: 3 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + Script: | + bonus bAtkEle,Ele_Water; + - Id: 1569 + AegisName: Book_Of_Mother_Earth_ + Name: Book of Mother Earth + Type: Weapon + SubType: Book + Buy: 35000 + Weight: 750 + Attack: 90 + Range: 1 + Slots: 3 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + Script: | + bonus bAtkEle,Ele_Earth; + - Id: 1570 + AegisName: Book_Of_Blazing_Sun_ + Name: Book of Blazing Sun + Type: Weapon + SubType: Book + Buy: 35000 + Weight: 750 + Attack: 90 + Range: 1 + Slots: 3 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + Script: | + bonus bAtkEle,Ele_Fire; + - Id: 1571 + AegisName: Book_Of_Gust_Of_Wind_ + Name: Book of Gust of Wind + Type: Weapon + SubType: Book + Buy: 35000 + Weight: 750 + Attack: 90 + Range: 1 + Slots: 3 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + Script: | + bonus bAtkEle,Ele_Wind; + - Id: 1572 + AegisName: Principles_Of_Magic + Name: Principles of Magic + Type: Weapon + SubType: Book + Buy: 20 + Weight: 300 + Attack: 60 + Range: 1 + Slots: 2 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 60 + Refineable: true + Script: | + bonus bMatkRate,20; bonus bInt,3; bonus bSPrecovRate,5; + - Id: 1573 + AegisName: Ancient_Magic + Name: Ancient Magic + Type: Weapon + SubType: Book + Buy: 20 + Weight: 700 + Attack: 30 + Range: 1 + Slots: 2 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bMatkRate,15; + - Id: 1574 + AegisName: BF_Book1 + Name: Brave Battle Strategy Book + Type: Weapon + SubType: Book + Buy: 20 + Attack: 90 + Range: 1 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,2; bonus bInt,1; bonus bMatkRate,15; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; + - Id: 1575 + AegisName: BF_Book2 + Name: Valorous Battle Strategy Book + Type: Weapon + SubType: Book + Buy: 20 + Attack: 90 + Range: 1 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,2; bonus bInt,1; bonus bMatkRate,15; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; + - Id: 1576 + AegisName: Krieger_Book1 + Name: Glorious Tablet + Type: Weapon + SubType: Book + Buy: 20 + Attack: 90 + Range: 1 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMatkRate,15; bonus2 bAddRace,RC_DemiHuman,80; bonus2 bAddRace,RC_Player_Human,80; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) autobonus "{ bonus bBaseAtk,200; }",30,3000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; + - Id: 1577 + AegisName: Krieger_Book2 + Name: Glorious Apocalypse + Type: Weapon + SubType: Book + Buy: 20 + Attack: 90 + Range: 1 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMatkRate,15; bonus2 bAddRace,RC_DemiHuman,80; bonus2 bAddRace,RC_Player_Human,80; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; if(getrefine()>5) bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; if(getrefine()>8) { bonus bMatkRate,5; bonus bCastrate,-5; bonus bDelayRate,-5; } + - Id: 1578 + AegisName: Book_Of_Prayer + Name: Book Of Prayer + Type: Weapon + SubType: Book + Buy: 20 + Attack: 140 + Range: 1 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 3 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bVit,2; bonus bMdef,2; bonus bMaxSPrate,10; + - Id: 1579 + AegisName: Death_Note_M + Name: Book of the Dead + Type: Weapon + SubType: Book + Buy: 20 + Weight: 1000 + Attack: 137 + Range: 1 + Slots: 2 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 85 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMatkRate,15; bonus bStr,3; bonus bInt,3; bonus bLuk,-20; bonus2 bComaRace,RC_DemiHuman,10; bonus2 bComaRace,RC_Player_Human,10; bonus bAspdRate,getrefine(); if(BaseJob==Job_Sage) bonus3 bAutoSpell,"NPC_HELLJUDGEMENT",5,20; + - Id: 1580 + AegisName: Encyclopedia_C + Name: Giant Encyclopedia + Type: Weapon + SubType: Book + Attack: 145 + Range: 1 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 3 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMatkRate,15; bonus bInt,3; bonus bDex,2; bonus bCritical,20+((readparam(bLuk)*2)/10); bonus2 bAddSize,Size_All,40; + - Id: 1581 + AegisName: F_Diary_Of_Great_Sage_C + Name: Diary Of Great Sage + Type: Weapon + SubType: Book + Buy: 1 + Attack: 135 + Range: 1 + Slots: 2 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + - Id: 1582 + AegisName: E_Diary_Of_Great_Sage_C + Name: Diary Of Great Sage + Type: Weapon + SubType: Book + Buy: 1 + Attack: 135 + Range: 1 + Slots: 2 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + - Id: 1599 + AegisName: Angra_Manyu + Name: Angra Manyu + Type: Weapon + SubType: Mace + Buy: 1 + Weight: 10 + Attack: 200 + Range: 2 + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bAllStats,50; bonus bBaseAtk,3800; 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; + - Id: 1601 + AegisName: Rod + Name: Rod + Type: Weapon + SubType: Staff + Buy: 50 + Weight: 400 + Attack: 15 + Range: 1 + Slots: 3 + Jobs: + Acolyte: true + Mage: true + Monk: true + Novice: true + Priest: true + Sage: true + SoulLinker: true + SuperNovice: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bMatkRate,15; + - Id: 1602 + AegisName: Rod_ + Name: Rod + Type: Weapon + SubType: Staff + Buy: 50 + Weight: 400 + Attack: 15 + Range: 1 + Slots: 4 + Jobs: + Acolyte: true + Mage: true + Monk: true + Novice: true + Priest: true + Sage: true + SoulLinker: true + SuperNovice: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bMatkRate,15; + - Id: 1603 + AegisName: Rod__ + Name: Rod + Type: Weapon + SubType: Staff + Buy: 50 + Weight: 400 + Attack: 15 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Novice: true + Priest: true + Sage: true + SoulLinker: true + SuperNovice: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bMatkRate,15; + - Id: 1604 + AegisName: Wand + Name: Wand + Type: Weapon + SubType: Staff + Buy: 2500 + Weight: 400 + Attack: 25 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Mage: true + Monk: true + Novice: true + Priest: true + Sage: true + SoulLinker: true + SuperNovice: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 12 + Refineable: true + Script: | + bonus bInt,1; bonus bMatkRate,15; + - Id: 1605 + AegisName: Wand_ + Name: Wand + Type: Weapon + SubType: Staff + Buy: 2500 + Weight: 400 + Attack: 25 + Range: 1 + Slots: 3 + Jobs: + Acolyte: true + Mage: true + Monk: true + Novice: true + Priest: true + Sage: true + SoulLinker: true + SuperNovice: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 12 + Refineable: true + Script: | + bonus bInt,1; bonus bMatkRate,15; + - Id: 1606 + AegisName: Wand__ + Name: Wand + Type: Weapon + SubType: Staff + Buy: 2500 + Weight: 400 + Attack: 25 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Novice: true + Priest: true + Sage: true + SoulLinker: true + SuperNovice: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 12 + Refineable: true + Script: | + bonus bInt,1; bonus bMatkRate,15; + - Id: 1607 + AegisName: Staff + Name: Staff + Type: Weapon + SubType: Staff + Buy: 9500 + Weight: 400 + Attack: 40 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 12 + Refineable: true + Script: | + bonus bInt,2; bonus bMatkRate,15; + - Id: 1608 + AegisName: Staff_ + Name: Staff + Type: Weapon + SubType: Staff + Buy: 9500 + Weight: 400 + Attack: 40 + Range: 1 + Slots: 3 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 12 + Refineable: true + Script: | + bonus bInt,2; bonus bMatkRate,15; + - Id: 1609 + AegisName: Staff__ + Name: Staff + Type: Weapon + SubType: Staff + Buy: 9500 + Weight: 400 + Attack: 40 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 12 + Refineable: true + Script: | + bonus bInt,2; bonus bMatkRate,15; + - Id: 1610 + AegisName: Arc_Wand + Name: Arc Wand + Type: Weapon + SubType: Staff + Buy: 45000 + Weight: 400 + Attack: 60 + Range: 1 + Slots: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 24 + Refineable: true + Script: | + bonus bInt,3; bonus bMatkRate,15; + - Id: 1611 + AegisName: Arc_Wand_ + Name: Arc Wand + Type: Weapon + SubType: Staff + Buy: 45000 + Weight: 400 + Attack: 60 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 24 + Refineable: true + Script: | + bonus bInt,3; bonus bMatkRate,15; + - Id: 1612 + AegisName: Arc_Wand__ + Name: Arc Wand + Type: Weapon + SubType: Staff + Buy: 45000 + Weight: 400 + Attack: 60 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 24 + Refineable: true + Script: | + bonus bInt,3; bonus bMatkRate,15; + - Id: 1613 + AegisName: Mighty_Staff + Name: Mighty Staff + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 700 + Attack: 130 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 24 + Refineable: true + Script: | + bonus bStr,10; bonus bMatkRate,15; bonus bSPDrainValue,-2; + - Id: 1614 + AegisName: Blessed_Wand + Name: Wand of Occult + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 700 + Attack: 75 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 24 + Refineable: true + Script: | + bonus bInt,3; bonus bMatkRate,15; + - Id: 1615 + AegisName: Bone_Wand + Name: Evil Bone Wand + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 700 + Attack: 40 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 24 + Refineable: true + Script: | + bonus bInt,4; bonus bAtkEle,Ele_Undead; bonus bMatkRate,15; + - Id: 1616 + AegisName: Staff_Of_Wing + Name: Wing Staff + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 500 + Attack: 60 + Range: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus bMatkRate,15; bonus bCastrate,-5; + - Id: 1617 + AegisName: Survival_Rod + Name: Survivor's Rod + Type: Weapon + SubType: Staff + Buy: 85000 + Weight: 1000 + Attack: 50 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 24 + Refineable: true + Script: | + bonus bDex,2; bonus bMatkRate,15; bonus bMaxHP,300; + - Id: 1618 + AegisName: Survival_Rod_ + Name: Survivor's Rod + Type: Weapon + SubType: Staff + Buy: 85000 + Weight: 1000 + Attack: 50 + Range: 1 + Slots: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 24 + Refineable: true + Script: | + bonus bDex,3; bonus bMatkRate,15; bonus bMaxHP,400; + - Id: 1619 + AegisName: Survival_Rod2 + Name: Survivor's Rod + Type: Weapon + SubType: Staff + Buy: 85000 + Weight: 1000 + Attack: 50 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 24 + Refineable: true + Script: | + bonus bInt,2; bonus bMatkRate,15; bonus bMaxHP,300; + - Id: 1620 + AegisName: Survival_Rod2_ + Name: Survivor's Rod + Type: Weapon + SubType: Staff + Buy: 85000 + Weight: 1000 + Attack: 50 + Range: 1 + Slots: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 24 + Refineable: true + Script: | + bonus bInt,3; bonus bMatkRate,15; bonus bMaxHP,400; + - Id: 1621 + AegisName: Hypnotist's_Staff + Name: Hypnotist's Staff + Type: Weapon + SubType: Staff + Buy: 43000 + Weight: 500 + Attack: 70 + Range: 1 + Slots: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 30 + Refineable: true + Script: | + bonus bInt,1; bonus bMatkRate,25; + - Id: 1622 + AegisName: Hypnotist's_Staff_ + Name: Hypnotist's Staff + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 500 + Attack: 70 + Range: 1 + Slots: 2 + Jobs: + Novice: true + SuperNovice: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 30 + Refineable: true + Script: | + bonus bInt,1; bonus bMatkRate,25; + - Id: 1623 + AegisName: Mighty_Staff_C + Name: Mighty Staff + Type: Weapon + SubType: Staff + Buy: 1 + Attack: 165 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,10; bonus bInt,4; bonus bMatkRate,20; bonus bSPDrainValue,-1; + - Id: 1624 + AegisName: Lich_Bone_Wand + Name: Lich's Bone Wand + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 800 + Attack: 60 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + Wizard: true + Classes: + Upper: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bInt,1; bonus bDex,1; bonus bAtkEle,Ele_Undead; bonus bMatkRate,20; bonus3 bAutoSpellWhenHit,"NPC_WIDECURSE",5,10+getrefine(); if(getrefine()>=9){ bonus bMatkRate,3; bonus bMaxSP,300; } + - Id: 1625 + AegisName: Healing_Staff + Name: Healing Staff + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 400 + Attack: 10 + Range: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bAtkEle,Ele_Holy; bonus bMatkRate,15; bonus bHealPower,(getrefine()*3/2); + - Id: 1626 + AegisName: Piercing_Staff + Name: Piercing Staff + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 500 + Attack: 80 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + Wizard: true + Classes: + Upper: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bInt,4; bonus bMatkRate,15; bonus2 bIgnoreMdefClassRate,Class_Normal,10+getrefine(); bonus2 bIgnoreMdefClassRate,Class_Boss,10+getrefine(); + - Id: 1627 + AegisName: Staffy + Name: Staffy + Type: Weapon + SubType: Staff + Buy: 20 + Attack: 40 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMatkRate,15; bonus2 bAddClass,Class_All,50; + - Id: 1628 + AegisName: Survival_Rod_C + Name: Refined Survivor's Rod + Type: Weapon + SubType: Staff + Buy: 1 + Attack: 71 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + Script: | + bonus bDex,4; bonus bMatkRate,20; bonus bMaxHP,500; + - Id: 1629 + AegisName: Walking_Stick + Name: Gentleman's Staff + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 500 + Attack: 40 + Range: 1 + Slots: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 50 + Refineable: true + Script: | + bonus bMatkRate,15; bonus bDex,1; + - Id: 1630 + AegisName: Release_Of_Wish + Name: Release of Wish + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 500 + Attack: 30 + Range: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 50 + Refineable: true + Script: | + bonus bMatkRate,15; bonus bInt,3; bonus bHealPower,5; autobonus "{ bonus2 bSPRegenRate,100,2000; bonus2 bHPRegenRate,50,2000; }",10,10000,BF_MAGIC,"{ specialeffect2 EF_HEAL; }"; + - Id: 1631 + AegisName: Holy_Stick + Name: Holy Stick + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 500 + Attack: 50 + Range: 1 + Slots: 1 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bAtkEle,Ele_Holy; bonus bMatkRate,15; bonus2 bCastrate,"AL_HOLYLIGHT",-25; bonus2 bCastrate,"PR_TURNUNDEAD",-25; bonus2 bCastrate,"PR_MAGNUS",-25; + - Id: 1632 + AegisName: BF_Staff1 + Name: Warlock's Magic Wand + Type: Weapon + SubType: Staff + Buy: 20 + Attack: 70 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,4; bonus bDex,3; bonus bMatkRate,15; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; bonus3 bAddEff,Eff_Stun,500,ATF_SKILL; bonus bUnbreakableWeapon; + - Id: 1633 + AegisName: BF_Staff2 + Name: Warlock's Battle Wand + Type: Weapon + SubType: Staff + Buy: 20 + Attack: 70 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,3; bonus bDex,3; bonus bMatkRate,15; bonus2 bMagicAddRace,RC_DemiHuman,15; bonus2 bMagicAddRace,RC_Player_Human,15; bonus3 bAddEff,Eff_Stun,500,ATF_SKILL; bonus bUnbreakableWeapon; + - Id: 1634 + AegisName: BF_Staff3 + Name: Strong Recovery Wand + Type: Weapon + SubType: Staff + Buy: 20 + Attack: 70 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMatkRate,15; bonus bHealPower,14; bonus2 bSPRegenRate,5,10000; bonus bUnbreakableWeapon; + - Id: 1635 + AegisName: BF_Staff4 + Name: Speedy Recovery Wand + Type: Weapon + SubType: Staff + Buy: 20 + Attack: 70 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,3; bonus bDex,2; bonus bMatkRate,15; bonus bDelayRate,-15; bonus2 bSPRegenRate,5,10000; bonus bUnbreakableWeapon; + - Id: 1636 + AegisName: Thorn_Staff + Name: Thorn Staff of Darkness + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 700 + Attack: 60 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + Wizard: true + Classes: + Upper: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 75 + Refineable: true + Script: | + bonus bInt,3; bonus bDex,3; bonus bMatkRate,20; bonus2 bIgnoreMdefClassRate,Class_Normal,getrefine(); bonus2 bIgnoreMdefClassRate,Class_Boss,getrefine(); bonus bDelayRate,-(getrefine()*3/2); + - Id: 1637 + AegisName: Eraser + Name: Eraser + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 500 + Attack: 80 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + Wizard: true + Classes: + Upper: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bMatkRate,20; 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; + - Id: 1638 + AegisName: Healing_Staff_C + Name: Staff Of Healing + Type: Weapon + SubType: Staff + Buy: 20 + Attack: 10 + Range: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAtkEle,Ele_Holy; bonus bMatkRate,15; bonus bHealPower,(getrefine()*3/2); + - Id: 1639 + AegisName: N_Rod + Name: Novice Rod + Type: Weapon + SubType: Staff + Attack: 15 + Range: 1 + Slots: 3 + Jobs: + Acolyte: true + Mage: true + Monk: true + Novice: true + Priest: true + Sage: true + SoulLinker: true + SuperNovice: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMatkRate,16; + - Id: 1640 + AegisName: Krieger_Onehand_Staff1 + Name: Glorious Arc Wand + Type: Weapon + SubType: Staff + Buy: 20 + Attack: 70 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bMagicAddRace,RC_DemiHuman,15; bonus2 bMagicAddRace,RC_Player_Human,15; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25 + ((getrefine()>5) ? 5 : 0); bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25 + ((getrefine()>5) ? 5 : 0); bonus bUnbreakableWeapon; if(getrefine()>8) { bonus bCastrate,-5; bonus bDelayRate,-5; bonus bMatkRate,5; } + - Id: 1641 + AegisName: Krieger_Onehand_Staff2 + Name: Glorious Cure Wand + Type: Weapon + SubType: Staff + Buy: 20 + Attack: 70 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bHealPower,14; bonus bDelayRate,-10; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,5; bonus bHealPower,5+(getrefine()-5)*2; } if(getrefine()>8) bonus5 bAutoSpellOnSkill,"AL_HEAL","AL_HEAL",10,100,1; if(getrefine()>9) { bonus bHealPower,10; } + - Id: 1642 + AegisName: Staff_Of_Darkness + Name: Staff Of Darkness + Type: Weapon + SubType: Staff + Buy: 20 + Attack: 100 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 2 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bCastrate,-5; bonus bMatkRate,15; bonus bInt,2; + - Id: 1643 + AegisName: Dead_Tree_Cane + Name: Dead Tree Cane + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 100 + Attack: 100 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bMatk,15; bonus bInt,4; if(getrefine()>5) { bonus bInt,getrefine()-5; bonus bMaxHP,-200; bonus bMaxSP,-100; } + - Id: 1644 + AegisName: Piercing_Staff_M + Name: Staff of Piercing + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 500 + Attack: 80 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + Wizard: true + Classes: + Upper: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,4; bonus bMatkRate,15; bonus2 bIgnoreMdefClassRate,Class_Normal,10+getrefine(); bonus2 bIgnoreMdefClassRate,Class_Boss,10+getrefine(); + - Id: 1645 + AegisName: Lich_Bone_Wand_M + Name: Lich's Bone Wand + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 800 + Attack: 60 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + Wizard: true + Classes: + Upper: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,1; bonus bDex,1; bonus bAtkEle,Ele_Undead; bonus bMatkRate,20; bonus3 bAutoSpellWhenHit,"NPC_WIDECURSE",5,10+getrefine(); if(getrefine()>=9){ bonus bMatkRate,3; bonus bMaxSP,300; } + - Id: 1646 + AegisName: La'cryma_Stick + Name: La'cryma Stick + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 500 + Attack: 30 + Range: 1 + Slots: 2 + Jobs: + Mage: true + Sage: true + Wizard: true + Classes: + Upper: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 50 + Refineable: true + Script: | + bonus bInt,4; bonus bMatkRate,15; bonus bMdef,getrefine(); bonus2 bSkillAtk,"WZ_STORMGUST",getrefine(); if(getrefine()>9) bonus2 bCastrate,"WZ_STORMGUST",-8; + - Id: 1647 + AegisName: Croce_Staff + Name: Croce Staff + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 500 + Attack: 30 + Range: 1 + Slots: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Classes: + Upper: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 50 + Refineable: true + Script: | + bonus bAtkEle,Ele_Holy; bonus bMatkRate,15; bonus bInt,4; bonus4 bAutoSpellOnSkill,"AL_HEAL","AL_BLESSING",max(getskilllv("AL_BLESSING"),1),20; + - Id: 1648 + AegisName: Staff_Of_Bordeaux + Name: Staff Of Bordeaux + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 500 + Attack: 30 + Range: 1 + Jobs: + Mage: true + Sage: true + Wizard: true + Classes: + Upper: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 50 + Refineable: true + Script: | + bonus bMatkRate,15; bonus bInt,2; bonus bDex,1; if(getskilllv("SA_DRAGONOLOGY")==5) { bonus bUseSPrate,-15; bonus bInt,3; } + - Id: 1701 + AegisName: Bow + Name: Bow + Type: Weapon + SubType: Bow + Buy: 1000 + Weight: 500 + Attack: 15 + Range: 5 + Slots: 3 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 4 + Refineable: true + - Id: 1702 + AegisName: Bow_ + Name: Bow + Type: Weapon + SubType: Bow + Buy: 1000 + Weight: 500 + Attack: 15 + Range: 5 + Slots: 4 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 4 + Refineable: true + - Id: 1703 + AegisName: Bow__ + Name: Bow + Type: Weapon + SubType: Bow + Buy: 1000 + Attack: 15 + Range: 5 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 4 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddDamageClass,1002,500; bonus2 bAddDamageClass,1113,500; bonus2 bAddDamageClass,1031,500; bonus2 bAddDamageClass,1242,500; + - Id: 1704 + AegisName: Composite_Bow + Name: Composite Bow + Type: Weapon + SubType: Bow + Buy: 2500 + Weight: 600 + Attack: 29 + Range: 5 + Slots: 3 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 4 + Refineable: true + - Id: 1705 + AegisName: Composite_Bow_ + Name: Composite Bow + Type: Weapon + SubType: Bow + Buy: 2500 + Weight: 600 + Attack: 29 + Range: 5 + Slots: 4 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 4 + Refineable: true + - Id: 1706 + AegisName: Composite_Bow__ + Name: Composite Bow + Type: Weapon + SubType: Bow + Buy: 2500 + Weight: 600 + Attack: 29 + Range: 5 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 4 + Refineable: true + - Id: 1707 + AegisName: Great_Bow + Name: Great Bow + Type: Weapon + SubType: Bow + Buy: 10000 + Weight: 1000 + Attack: 50 + Range: 5 + Slots: 2 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 18 + Refineable: true + - Id: 1708 + AegisName: Great_Bow_ + Name: Great Bow + Type: Weapon + SubType: Bow + Buy: 10000 + Weight: 1000 + Attack: 50 + Range: 5 + Slots: 3 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 18 + Refineable: true + - Id: 1709 + AegisName: Great_Bow__ + Name: Great Bow + Type: Weapon + SubType: Bow + Buy: 10000 + Weight: 1000 + Attack: 50 + Range: 5 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 18 + Refineable: true + - Id: 1710 + AegisName: CrossBow + Name: Crossbow + Type: Weapon + SubType: Bow + Buy: 17000 + Weight: 900 + Attack: 65 + Range: 5 + Slots: 2 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 18 + Refineable: true + - Id: 1711 + AegisName: CrossBow_ + Name: Crossbow + Type: Weapon + SubType: Bow + Buy: 17000 + Weight: 900 + Attack: 65 + Range: 5 + Slots: 3 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 18 + Refineable: true + - Id: 1712 + AegisName: CrossBow__ + Name: Crossbow + Type: Weapon + SubType: Bow + Buy: 17000 + Weight: 900 + Attack: 65 + Range: 5 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 18 + Refineable: true + - Id: 1713 + AegisName: Arbalest + Name: Arbalest + Type: Weapon + SubType: Bow + Buy: 48000 + Weight: 1000 + Attack: 90 + Range: 5 + Slots: 1 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + Script: | + bonus bDex,2; + - Id: 1714 + AegisName: Kakkung + Name: Gakkung Bow + Type: Weapon + SubType: Bow + Buy: 42000 + Weight: 1100 + Attack: 100 + Range: 5 + Slots: 1 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + - Id: 1715 + AegisName: Arbalest_ + Name: Arbalest + Type: Weapon + SubType: Bow + Buy: 48000 + Weight: 1000 + Attack: 90 + Range: 5 + Slots: 2 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + Script: | + bonus bDex,2; + - Id: 1716 + AegisName: Kakkung_ + Name: Gakkung Bow + Type: Weapon + SubType: Bow + Buy: 42000 + Weight: 1100 + Attack: 100 + Range: 5 + Slots: 2 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + - Id: 1718 + AegisName: Hunter_Bow + Name: Hunter Bow + Type: Weapon + SubType: Bow + Buy: 64000 + Weight: 1500 + Attack: 125 + Range: 5 + Jobs: + Hunter: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + - Id: 1719 + AegisName: Bow_Of_Roguemaster + Name: Roguemaster's Bow + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 500 + Attack: 75 + Range: 11 + Jobs: + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + - Id: 1720 + AegisName: Bow_Of_Rudra + Name: Rudra Bow + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 1200 + Attack: 150 + Range: 5 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + 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; + - Id: 1721 + AegisName: Repeting_CrossBow + Name: Repeating Crossbow + Type: Weapon + SubType: Bow + Buy: 89000 + Weight: 2000 + Attack: 95 + Range: 9 + Slots: 1 + Jobs: + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 65 + Refineable: true + - Id: 1722 + AegisName: Balistar + Name: Ballista + Type: Weapon + SubType: Bow + Buy: 124000 + Weight: 3500 + Attack: 145 + Range: 5 + Jobs: + BardDancer: true + Hunter: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 77 + Refineable: true + - Id: 1723 + AegisName: Luna_Bow + Name: Luna Bow + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 2000 + Attack: 100 + Range: 5 + Slots: 2 + Jobs: + Hunter: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 30 + Refineable: true + Script: | + bonus bDef,2+3*(getrefine()>5)+2*(getrefine()>8); + - Id: 1724 + AegisName: Dragon_Wing + Name: Dragon Wing + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 1200 + Attack: 100 + Range: 5 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 60 + Refineable: true + Script: | + bonus3 bAddMonsterDropItem,1765,RC_Dragon,300; bonus bIgnoreDefRace,RC_Dragon; + - Id: 1725 + AegisName: Bow_Of_Minstrel + Name: Minstrel Bow + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 1700 + Attack: 120 + Range: 5 + Slots: 1 + Jobs: + BardDancer: true + Hunter: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bInt,2; bonus bSPrecovRate,10; + - Id: 1726 + AegisName: Hunter_Bow_ + Name: Hunter Bow + Type: Weapon + SubType: Bow + Buy: 64000 + Weight: 1500 + Attack: 125 + Range: 5 + Slots: 1 + Jobs: + Hunter: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + - Id: 1727 + AegisName: Balistar_ + Name: Ballista + Type: Weapon + SubType: Bow + Buy: 124000 + Weight: 3500 + Attack: 145 + Range: 5 + Slots: 1 + Jobs: + BardDancer: true + Hunter: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 77 + Refineable: true + - Id: 1728 + AegisName: Balistar_C + Name: Ballista + Type: Weapon + SubType: Bow + Buy: 1 + Attack: 194 + Range: 5 + Jobs: + BardDancer: true + Hunter: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bLongAtkRate,20; + - Id: 1729 + AegisName: Bow_Of_Rudra_C + Name: Rudra Bow + Type: Weapon + SubType: Bow + Buy: 2 + Attack: 185 + Range: 5 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Holy; bonus bInt,5; skill "AL_CURE",1; skill "AL_HEAL",1; + - Id: 1730 + AegisName: Burning_Bow + Name: Burning Bow + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 1400 + Attack: 95 + Range: 5 + Slots: 1 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus2 bSubEle,Ele_Fire,10; + - Id: 1731 + AegisName: Frozen_Bow + Name: Frozen Bow + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 1400 + Attack: 100 + Range: 5 + Slots: 1 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus2 bAddEff,Eff_Freeze,1000; + - Id: 1732 + AegisName: Earth_Bow + Name: Earth Bow + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 1400 + Attack: 105 + Range: 5 + Slots: 1 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 55 + Refineable: true + - Id: 1733 + AegisName: Gust_Bow + Name: Gust Bow + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 1400 + Attack: 95 + Range: 5 + Slots: 1 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 55 + Refineable: true + - Id: 1734 + AegisName: Orc_Archer_Bow + Name: Orc Archer Bow + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 1600 + Attack: 120 + Range: 5 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 65 + Refineable: true + Script: | + bonus2 bAddMonsterDropItem,1753,200; + - Id: 1735 + AegisName: Kkakkung + Name: Kkakkung + Type: Weapon + SubType: Bow + Buy: 20 + Attack: 120 + Range: 5 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,50; + - Id: 1736 + AegisName: Double_Bound + Name: Double Bound + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 900 + Attack: 70 + Range: 5 + Slots: 3 + Jobs: + Hunter: true + Classes: + Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus3 bAutoSpell,"AC_DOUBLE",GetSkillLv("AC_DOUBLE"),10; + - Id: 1737 + AegisName: Ixion_Wing + Name: Ixion Wings + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 300 + Attack: 135 + Range: 5 + Slots: 1 + Jobs: + Hunter: true + Classes: + Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 70 + Refineable: true + Script: | + autobonus "{ bonus bAspdRate,7; }",10+(getrefine()*2),7000,BF_WEAPON,"{ specialeffect2 EF_HASTEUP; }"; bonus2 bAddSkillBlow,"AC_CHARGEARROW",3; + - Id: 1738 + AegisName: BF_Bow1 + Name: Valorous Battle CrossBow + Type: Weapon + SubType: Bow + Attack: 100 + Range: 5 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; + - Id: 1739 + AegisName: BF_Bow2 + Name: Brave Battle CrossBow + Type: Weapon + SubType: Bow + Attack: 100 + Range: 5 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,2; bonus bInt,10; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus bUnbreakableWeapon; + - Id: 1740 + AegisName: Nepenthes_Bow + Name: Nepenthes Bow + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 1000 + Attack: 105 + Range: 5 + Slots: 2 + Jobs: + Hunter: true + Classes: + Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 60 + Refineable: true + Script: | + bonus4 bAutoSpellOnSkill,"AC_DOUBLE","AC_CHARGEARROW",1,20; + - Id: 1741 + AegisName: Cursed_Lyre + Name: Cursed Lyre + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 1250 + Attack: 125 + Range: 5 + Slots: 1 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Classes: + Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Script: | + bonus bLuk,-2; bonus2 bAddEff,Eff_Curse,400; + - Id: 1742 + AegisName: N_Composite_Bow + Name: Novice Composite Bow + Type: Weapon + SubType: Bow + Buy: 1 + Attack: 49 + Range: 5 + Slots: 3 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 4 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1743 + AegisName: Krieger_Bow1 + Name: Glorious Hunter Bow + Type: Weapon + SubType: Bow + Attack: 100 + Range: 5 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bCritAtkRate,getrefine() * 2; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) bonus2 bSkillAtk,"AC_DOUBLE",20; + - Id: 1744 + AegisName: Bow_Of_Evil + Name: Bow Of Evil + Type: Weapon + SubType: Bow + Attack: 170 + Range: 5 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bSkillAtk,"AC_DOUBLE",25; bonus bDex,2; + - Id: 1745 + AegisName: Falken_Blitz + Name: Falken Blitz + Type: Weapon + SubType: Bow + Weight: 1000 + Attack: 100 + Range: 5 + Slots: 2 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Classes: + Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 50 + Refineable: true + Script: | + bonus2 bSkillAtk,"SN_SHARPSHOOTING",10; bonus2 bSkillAtk,"AC_DOUBLE",10; bonus2 bSkillAtk,"AC_CHARGEARROW",10; + - Id: 1801 + AegisName: Waghnakh + Name: Waghnak + Type: Weapon + SubType: Knuckle + Buy: 8000 + Weight: 400 + Attack: 30 + Range: 1 + Slots: 3 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + - Id: 1802 + AegisName: Waghnakh_ + Name: Waghnak + Type: Weapon + SubType: Knuckle + Buy: 8000 + Weight: 400 + Attack: 30 + Range: 1 + Slots: 4 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + - Id: 1803 + AegisName: Knuckle_Duster + Name: Knuckle Dusters + Type: Weapon + SubType: Knuckle + Buy: 25000 + Weight: 450 + Attack: 50 + Range: 1 + Slots: 2 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 12 + Refineable: true + - Id: 1804 + AegisName: Knuckle_Duster_ + Name: Knuckle Dusters + Type: Weapon + SubType: Knuckle + Buy: 25000 + Weight: 450 + Attack: 50 + Range: 1 + Slots: 3 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 12 + Refineable: true + - Id: 1805 + AegisName: Hora + Name: Studded Knuckles + Type: Weapon + SubType: Knuckle + Buy: 32000 + Weight: 450 + Attack: 65 + Range: 1 + Slots: 2 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 12 + Refineable: true + - Id: 1806 + AegisName: Hora_ + Name: Studded Knuckles + Type: Weapon + SubType: Knuckle + Buy: 32000 + Weight: 450 + Attack: 65 + Range: 1 + Slots: 3 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 12 + Refineable: true + - Id: 1807 + AegisName: Fist + Name: Fist + Type: Weapon + SubType: Knuckle + Buy: 53000 + Weight: 650 + Attack: 115 + Range: 1 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 24 + Refineable: true + - Id: 1808 + AegisName: Fist_ + Name: Fist + Type: Weapon + SubType: Knuckle + Buy: 53000 + Weight: 650 + Attack: 115 + Range: 1 + Slots: 1 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 24 + Refineable: true + - Id: 1809 + AegisName: Claw + Name: Claw + Type: Weapon + SubType: Knuckle + Buy: 67000 + Weight: 500 + Attack: 86 + Range: 1 + Slots: 1 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 24 + Refineable: true + Script: | + bonus bStr,2; + - Id: 1810 + AegisName: Claw_ + Name: Claw + Type: Weapon + SubType: Knuckle + Buy: 67000 + Weight: 500 + Attack: 86 + Range: 1 + Slots: 2 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 24 + Refineable: true + Script: | + bonus bStr,2; + - Id: 1811 + AegisName: Finger + Name: Finger + Type: Weapon + SubType: Knuckle + Buy: 58000 + Weight: 500 + Attack: 97 + Range: 1 + Slots: 1 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 24 + Refineable: true + - Id: 1812 + AegisName: Finger_ + Name: Finger + Type: Weapon + SubType: Knuckle + Buy: 58000 + Weight: 500 + Attack: 97 + Range: 1 + Slots: 2 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 24 + Refineable: true + - Id: 1813 + AegisName: Kaiser_Knuckle + Name: Kaiser Knuckle + Type: Weapon + SubType: Knuckle + Buy: 20 + Weight: 450 + Attack: 110 + Range: 1 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 36 + Refineable: true + Script: | + bonus bAtkEle,Ele_Wind; bonus2 bAddRace,RC_Undead,5; bonus2 bAddEle,Ele_Water,10; bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Fire,10; bonus2 bAddEle,Ele_Wind,10; + - Id: 1814 + AegisName: Berserk + Name: Berserk + Type: Weapon + SubType: Knuckle + Buy: 20 + Weight: 500 + Attack: 120 + Range: 1 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 36 + Refineable: true + Script: | + bonus bAspdRate,12; + - Id: 1815 + AegisName: Claw_Of_Garm + Name: Hatii Claw + Type: Weapon + SubType: Knuckle + Buy: 20 + Weight: 550 + Attack: 152 + Range: 1 + Slots: 1 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bAtkEle,Ele_Dark; bonus bMaxHPrate,-2; bonus2 bAddEff,Eff_Bleeding,200; + - Id: 1816 + AegisName: Berserk_ + Name: Berserk + Type: Weapon + SubType: Knuckle + Buy: 20 + Weight: 500 + Attack: 120 + Range: 1 + Slots: 1 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 36 + Refineable: true + Script: | + bonus bAspdRate,12; + - Id: 1817 + AegisName: Kaiser_Knuckle_C + Name: Kaiser Knuckle + Type: Weapon + SubType: Knuckle + Buy: 1 + Attack: 159 + Range: 1 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAtkEle,Ele_Wind; bonus2 bAddRace,RC_Undead,5; bonus2 bAddEle,Ele_Water,10; bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Fire,10; bonus2 bAddEle,Ele_Wind,10; bonus bAspdRate,5; + - Id: 1818 + AegisName: Magma_Fist + Name: Magma Fist + Type: Weapon + SubType: Knuckle + Buy: 20 + Weight: 650 + Attack: 80 + Range: 1 + Slots: 3 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 75 + Refineable: true + Script: | + bonus3 bAutoSpell,"SA_FLAMELAUNCHER",5,10; + - Id: 1819 + AegisName: Icicle_Fist + Name: Icicle Fist + Type: Weapon + SubType: Knuckle + Buy: 20 + Weight: 650 + Attack: 80 + Range: 1 + Slots: 3 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 75 + Refineable: true + Script: | + bonus3 bAutoSpell,"SA_FROSTWEAPON",5,10; + - Id: 1820 + AegisName: Electric_Fist + Name: Electric Fist + Type: Weapon + SubType: Knuckle + Buy: 20 + Weight: 650 + Attack: 80 + Range: 1 + Slots: 3 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 75 + Refineable: true + Script: | + bonus3 bAutoSpell,"SA_LIGHTNINGLOADER",5,10; + - Id: 1821 + AegisName: Seismic_Fist + Name: Seismic Fist + Type: Weapon + SubType: Knuckle + Buy: 20 + Weight: 650 + Attack: 80 + Range: 1 + Slots: 3 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 75 + Refineable: true + Script: | + bonus3 bAutoSpell,"SA_SEISMICWEAPON",5,10; + - Id: 1822 + AegisName: Combo_Battle_Glove + Name: Combo Battle Glove + Type: Weapon + SubType: Knuckle + Buy: 20 + Weight: 500 + Attack: 30 + Range: 1 + Slots: 4 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 60 + Refineable: true + Script: | + bonus2 bSkillAtk,"MO_TRIPLEATTACK",15; bonus2 bSkillAtk,"MO_CHAINCOMBO",15; bonus2 bSkillAtk,"MO_COMBOFINISH",20; + - Id: 1823 + AegisName: BF_Knuckle1 + Name: Valorous Battle Fist + Type: Weapon + SubType: Knuckle + Buy: 20 + Attack: 30 + Range: 1 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,2; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus4 bAutoSpell,"CH_SOULCOLLECT",1,5,0; bonus bUnbreakableWeapon; + - Id: 1824 + AegisName: BF_Knuckle2 + Name: Brave Battle Fist + Type: Weapon + SubType: Knuckle + Buy: 20 + Attack: 30 + Range: 1 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,2; bonus bInt,1; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bCastrate,"MO_EXTREMITYFIST",-25; autobonus "{ bonus2 bCastrate,\"MO_EXTREMITYFIST\",-100; }",50,6000,BF_WEAPON,"{ specialeffect2 EF_SUFFRAGIUM; }"; bonus bUnbreakableWeapon; + - Id: 1825 + AegisName: Horn_Of_Hilthrion + Name: Horn of Hillslion + Type: Weapon + SubType: Knuckle + Buy: 20 + Weight: 600 + Attack: 95 + Range: 1 + Slots: 3 + Jobs: + Monk: true + Classes: + Upper: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 60 + Refineable: true + Script: | + bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,100; bonus4 bAutoSpellOnSkill,"CH_PALMSTRIKE","MO_INVESTIGATE",1,100; bonus3 bAutoSpell,"MO_CALLSPIRITS",5,100; + - Id: 1826 + AegisName: Krieger_Knuckle1 + Name: Glorious Claw + Type: Weapon + SubType: Knuckle + Buy: 20 + Attack: 30 + Range: 1 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) { bonus3 bAutoSpell,"MO_INVESTIGATE",5,(getrefine()*10-50); bonus3 bAutoSpell,"AL_DECAGI",1,(getrefine()*10-50); } + - Id: 1827 + AegisName: Krieger_Knuckle2 + Name: Glorious Fist + Type: Weapon + SubType: Knuckle + Buy: 20 + Attack: 30 + Range: 1 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) { bonus2 bCastrate,"MO_EXTREMITYFIST",-100; bonus4 bautospellonskill,"MO_EXPLOSIONSPIRITS","CH_SOULCOLLECT",1,1000; } + - Id: 1828 + AegisName: Monk_Knuckle + Name: Monk Knuckle + Type: Weapon + SubType: Knuckle + Buy: 20 + Attack: 150 + Range: 1 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,2; bonus2 bSkillAtk,"MO_FINGEROFFENSIVE",25; + - Id: 1829 + AegisName: Fist_C + Name: Fist + Type: Weapon + SubType: Knuckle + Attack: 150 + Range: 1 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddSize,Size_All,40; + - Id: 1901 + AegisName: Violin + Name: Violin + Type: Weapon + SubType: Musical + Buy: 4000 + Weight: 700 + Attack: 50 + Range: 1 + Slots: 3 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 2 + Refineable: true + - Id: 1902 + AegisName: Violin_ + Name: Violin + Type: Weapon + SubType: Musical + Buy: 4000 + Weight: 700 + Attack: 50 + Range: 1 + Slots: 4 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 2 + Refineable: true + - Id: 1903 + AegisName: Mandolin + Name: Mandolin + Type: Weapon + SubType: Musical + Buy: 18000 + Weight: 400 + Attack: 90 + Range: 1 + Slots: 2 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 14 + Refineable: true + - Id: 1904 + AegisName: Mandolin_ + Name: Mandolin + Type: Weapon + SubType: Musical + Buy: 18000 + Weight: 400 + Attack: 90 + Range: 1 + Slots: 3 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 14 + Refineable: true + - Id: 1905 + AegisName: Lute + Name: Lute + Type: Weapon + SubType: Musical + Buy: 24500 + Weight: 500 + Attack: 105 + Range: 1 + Slots: 2 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 14 + Refineable: true + - Id: 1906 + AegisName: Lute_ + Name: Lute + Type: Weapon + SubType: Musical + Buy: 24500 + Weight: 500 + Attack: 105 + Range: 1 + Slots: 3 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 14 + Refineable: true + - Id: 1907 + AegisName: Guitar + Name: Guitar + Type: Weapon + SubType: Musical + Buy: 47000 + Weight: 900 + Attack: 142 + Range: 1 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + - Id: 1908 + AegisName: Guitar_ + Name: Guitar + Type: Weapon + SubType: Musical + Buy: 47000 + Weight: 900 + Attack: 142 + Range: 1 + Slots: 1 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + - Id: 1909 + AegisName: Harp + Name: Harp + Type: Weapon + SubType: Musical + Buy: 62000 + Weight: 900 + Attack: 114 + Range: 1 + Slots: 1 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + Script: | + bonus bInt,2; + - Id: 1910 + AegisName: Harp_ + Name: Harp + Type: Weapon + SubType: Musical + Buy: 62000 + Weight: 900 + Attack: 114 + Range: 1 + Slots: 2 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + Script: | + bonus bInt,2; + - Id: 1911 + AegisName: Guh_Moon_Goh + Name: Gumoongoh + Type: Weapon + SubType: Musical + Buy: 54000 + Weight: 1300 + Attack: 126 + Range: 1 + Slots: 1 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + - Id: 1912 + AegisName: Guh_Moon_Goh_ + Name: Gumoongoh + Type: Weapon + SubType: Musical + Buy: 54000 + Weight: 1300 + Attack: 126 + Range: 1 + Slots: 2 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + - Id: 1913 + AegisName: Electronic_Guitar + Name: Electric Guitar + Type: Weapon + SubType: Musical + Buy: 20 + Weight: 1800 + Attack: 110 + Range: 1 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 70 + Refineable: true + Script: | + skill "WZ_JUPITEL",1; bonus3 bAutoSpell,"WZ_JUPITEL",1,100; bonus bAtkEle,Ele_Wind; bonus bInt,2; bonus bAgi,1; + - Id: 1914 + AegisName: Guitar_Of_Passion + Name: Burning Passion Guitar + Type: Weapon + SubType: Musical + Buy: 20 + Weight: 900 + Attack: 110 + Range: 1 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + Script: | + bonus bAtkEle,Ele_Fire; + - Id: 1915 + AegisName: Guitar_Of_Blue_Solo + Name: Loner's Guitar + Type: Weapon + SubType: Musical + Buy: 20 + Weight: 900 + Attack: 110 + Range: 1 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + Script: | + bonus bAtkEle,Ele_Water; + - Id: 1916 + AegisName: Guitar_Of_Vast_Land + Name: Green Acre Guitar + Type: Weapon + SubType: Musical + Buy: 20 + Weight: 900 + Attack: 110 + Range: 1 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + Script: | + bonus bAtkEle,Ele_Earth; + - Id: 1917 + AegisName: Guitar_Of_Gentle_Breeze + Name: Gentle Breeze Guitar + Type: Weapon + SubType: Musical + Buy: 20 + Weight: 900 + Attack: 110 + Range: 1 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + Script: | + bonus bAtkEle,Ele_Wind; + - Id: 1918 + AegisName: Oriental_Lute + Name: Oriental Lute + Type: Weapon + SubType: Musical + Buy: 20 + Weight: 1200 + Attack: 150 + Range: 1 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 65 + Refineable: true + Script: | + bonus2 bSkillAtk,"CG_ARROWVULCAN",10; bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10; + - Id: 1919 + AegisName: Base_Guitar + Name: Bass Guitar + Type: Weapon + SubType: Musical + Buy: 20 + Weight: 1500 + Attack: 130 + Range: 1 + Slots: 1 + Jobs: + BardDancer: true + Classes: + Upper: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bSPGainValue,3; bonus4 bAutoSpellWhenHit,"WZ_HEAVENDRIVE",3,30,1; bonus3 bAutoSpell,"NPC_WIDECONFUSE",2,100; + - Id: 1920 + AegisName: Berserk_Guitar + Name: Berserk Guitar + Type: Weapon + SubType: Musical + Buy: 20 + Weight: 1800 + Attack: 10 + Range: 1 + Jobs: + BardDancer: true + Classes: + Upper: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bAspdRate,100; bonus bHPrecovRate,-100; bonus2 bHPLossRate,50,5000; bonus bDex,-readparam(bDex); + - Id: 1921 + AegisName: Guh_Moon_Gom + Name: Gun Moon Gom + Type: Weapon + SubType: Musical + Buy: 20 + Attack: 120 + Range: 1 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,50; + - Id: 1922 + AegisName: Oriental_Lute_ + Name: Oriental Lute + Type: Weapon + SubType: Musical + Buy: 20 + Weight: 1200 + Attack: 150 + Range: 1 + Slots: 2 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 65 + Refineable: true + Script: | + bonus2 bSkillAtk,"CG_ARROWVULCAN",10; bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10; + - Id: 1923 + AegisName: BF_Instrument1 + Name: Valorous Battlefield Guitar + Type: Weapon + SubType: Musical + Buy: 20 + Attack: 50 + Range: 1 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; + - Id: 1924 + AegisName: BF_Instrument2 + Name: Brave Battlefield Guitar + Type: Weapon + SubType: Musical + Buy: 20 + Attack: 50 + Range: 1 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bSkillAtk,"CG_ARROWVULCAN",20; bonus bUnbreakableWeapon; + - Id: 1925 + AegisName: Cello + Name: Cello + Type: Weapon + SubType: Musical + Buy: 20 + Weight: 700 + Attack: 110 + Range: 1 + Slots: 3 + Jobs: + BardDancer: true + Classes: + Upper: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bAgi,2; bonus bDex,3; bonus2 bAddSkillBlow,"BA_MUSICALSTRIKE",2; bonus2 bAddSkillBlow,"CG_ARROWVULCAN",3; + - Id: 1926 + AegisName: Harp_Of_Nepenthes + Name: Harp of Nepenthes + Type: Weapon + SubType: Musical + Buy: 20 + Weight: 1000 + Attack: 120 + Range: 1 + Slots: 2 + Jobs: + BardDancer: true + Classes: + Upper: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 60 + Refineable: true + Script: | + bonus bInt,2; if( getrefine()>9 ) { bonus3 bAddEffOnSkill,"BA_MUSICALSTRIKE",Eff_Stun,2000; } else { bonus3 bAddEffOnSkill,"BA_MUSICALSTRIKE",Eff_Stun,1000; } + - Id: 1927 + AegisName: Krieger_Instrument1 + Name: Glorious Guitar + Type: Weapon + SubType: Musical + Buy: 20 + Attack: 50 + Range: 1 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) bonus4 bAutoSpellOnSkill,"CG_ARROWVULCAN","CG_TAROTCARD",5,100; + - Id: 1928 + AegisName: Berserk_Guitar_I + Name: Spirited Guitar + Type: Weapon + SubType: Musical + Attack: 40 + Range: 1 + Jobs: + BardDancer: true + Classes: + Upper: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 4 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAspdRate,100; bonus bHPrecovRate,-100; bonus2 bHPLossRate,50,5000; bonus bDex,-readparam(bDex); + - Id: 1929 + AegisName: Guitar_C + Name: Guitar + Type: Weapon + SubType: Musical + Attack: 177 + Range: 1 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddSize,Size_All,40; + - Id: 1950 + AegisName: Rope + Name: Rope + Type: Weapon + SubType: Whip + Buy: 2500 + Weight: 400 + Attack: 45 + Range: 2 + Slots: 3 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 3 + Refineable: true + - Id: 1951 + AegisName: Rope_ + Name: Rope + Type: Weapon + SubType: Whip + Buy: 2500 + Weight: 400 + Attack: 45 + Range: 2 + Slots: 4 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 3 + Refineable: true + - Id: 1952 + AegisName: Line + Name: Whip + Type: Weapon + SubType: Whip + Buy: 12000 + Weight: 300 + Attack: 80 + Range: 2 + Slots: 2 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 16 + Refineable: true + - Id: 1953 + AegisName: Line_ + Name: Whip + Type: Weapon + SubType: Whip + Buy: 12000 + Weight: 300 + Attack: 80 + Range: 2 + Slots: 3 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 16 + Refineable: true + - Id: 1954 + AegisName: Wire + Name: Wire Whip + Type: Weapon + SubType: Whip + Buy: 17500 + Weight: 1000 + Attack: 95 + Range: 2 + Slots: 2 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 16 + Refineable: true + - Id: 1955 + AegisName: Wire_ + Name: Wire Whip + Type: Weapon + SubType: Whip + Buy: 17500 + Weight: 1000 + Attack: 95 + Range: 2 + Slots: 3 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 16 + Refineable: true + - Id: 1956 + AegisName: Rante + Name: Rante Whip + Type: Weapon + SubType: Whip + Buy: 32000 + Weight: 900 + Attack: 135 + Range: 2 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 30 + Refineable: true + - Id: 1957 + AegisName: Rante_ + Name: Rante Whip + Type: Weapon + SubType: Whip + Buy: 32000 + Weight: 900 + Attack: 135 + Range: 2 + Slots: 1 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 30 + Refineable: true + - Id: 1958 + AegisName: Tail + Name: Tail Whip + Type: Weapon + SubType: Whip + Buy: 41000 + Weight: 700 + Attack: 105 + Range: 2 + Slots: 1 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 30 + Refineable: true + Script: | + bonus bLuk,3; + - Id: 1959 + AegisName: Tail_ + Name: Tail Whip + Type: Weapon + SubType: Whip + Buy: 41000 + Weight: 700 + Attack: 105 + Range: 2 + Slots: 2 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 30 + Refineable: true + Script: | + bonus bLuk,3; + - Id: 1960 + AegisName: Whip + Name: Whip + Type: Weapon + SubType: Whip + Buy: 38000 + Weight: 700 + Attack: 120 + Range: 2 + Slots: 1 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 30 + Refineable: true + - Id: 1961 + AegisName: Whip_ + Name: Whip + Type: Weapon + SubType: Whip + Buy: 38000 + Weight: 700 + Attack: 120 + Range: 2 + Slots: 2 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 30 + Refineable: true + - Id: 1962 + AegisName: Lariat + Name: Lariat Whip + Type: Weapon + SubType: Whip + Buy: 20 + Weight: 400 + Attack: 100 + Range: 2 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 44 + Refineable: true + Script: | + bonus bDex,5; bonus bAgi,1; + - Id: 1963 + AegisName: Rapture_Rose + Name: Rapture Rose + Type: Weapon + SubType: Whip + Buy: 20 + Weight: 300 + Attack: 115 + Range: 2 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 44 + Refineable: true + Script: | + bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,5000; + - Id: 1964 + AegisName: Chemeti + Name: Chemeti Whip + Type: Weapon + SubType: Whip + Buy: 20 + Weight: 700 + Attack: 135 + Range: 2 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 44 + Refineable: true + Script: | + bonus bCritical,5; bonus bFlee,10; bonus bFlee2,2; + - Id: 1965 + AegisName: Whip_Of_Red_Flame + Name: Red Flame Whip + Type: Weapon + SubType: Whip + Buy: 20 + Weight: 700 + Attack: 110 + Range: 2 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 30 + Refineable: true + Script: | + bonus bAtkEle,Ele_Fire; + - Id: 1966 + AegisName: Whip_Of_Ice_Piece + Name: Icicle Whip + Type: Weapon + SubType: Whip + Buy: 20 + Weight: 700 + Attack: 110 + Range: 2 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 30 + Refineable: true + Script: | + bonus bAtkEle,Ele_Water; + - Id: 1967 + AegisName: Whip_Of_Earth + Name: Gaia Whip + Type: Weapon + SubType: Whip + Buy: 20 + Weight: 700 + Attack: 110 + Range: 2 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 30 + Refineable: true + Script: | + bonus bAtkEle,Ele_Earth; + - Id: 1968 + AegisName: Jump_Rope + Name: Skipping Rope + Type: Weapon + SubType: Whip + Buy: 20 + Weight: 400 + Attack: 120 + Range: 2 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 30 + Refineable: true + Script: | + bonus bCritical,20; + - Id: 1969 + AegisName: Bladed_Whip + Name: Blade Whip + Type: Weapon + SubType: Whip + Buy: 20 + Weight: 1200 + Attack: 140 + Range: 2 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 30 + Refineable: true + Script: | + bonus2 bAddEff,Eff_Bleeding,300; + - Id: 1970 + AegisName: Queen's_Whip + Name: Queen's Whip + Type: Weapon + SubType: Whip + Buy: 20 + Weight: 1100 + Attack: 150 + Range: 2 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 65 + Refineable: true + Script: | + bonus2 bSkillAtk,"CG_ARROWVULCAN",10; bonus2 bSkillAtk,"DC_THROWARROW",10; + - Id: 1971 + AegisName: Electric_Wire + Name: Electric Wire + Type: Weapon + SubType: Whip + Buy: 20 + Weight: 700 + Attack: 110 + Range: 2 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 30 + Refineable: true + Script: | + bonus bAtkEle,Ele_Wind; + - Id: 1972 + AegisName: Electric_Eel + Name: Electric Eel + Type: Weapon + SubType: Whip + Buy: 20 + Weight: 2000 + Attack: 100 + Range: 2 + Slots: 2 + Jobs: + BardDancer: true + Classes: + Upper: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bAtkEle,Ele_Wind; bonus bInt,2; bonus bAgi,2; bonus3 bAutoSpell,"WZ_JUPITEL",3,20; if(getrefine()>0) bonus3 bAutoSpell,"CG_ARROWVULCAN",getrefine(),50; + - Id: 1973 + AegisName: Sea_Witch_Foot + Name: Sea Witch's Foot + Type: Weapon + SubType: Whip + Buy: 20 + Weight: 1500 + Attack: 110 + Range: 2 + Slots: 1 + Jobs: + BardDancer: true + Classes: + Upper: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bSPGainValue,5; bonus4 bAutoSpellWhenHit,"WZ_FROSTNOVA",3,50,1; bonus3 bAutoSpell,"NPC_WIDESILENCE",2,100; + - Id: 1974 + AegisName: Carrot_Whip + Name: Carrot Whip + Type: Weapon + SubType: Whip + Buy: 20 + Weight: 1300 + Attack: 185 + Range: 2 + Jobs: + BardDancer: true + Classes: + Upper: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 70 + Refineable: true + Script: | + if(getrefine()>0) bonus3 bAutoSpell,"AL_INCAGI",getrefine(),10; + - Id: 1975 + AegisName: Queen_Is_Whip + Name: Queen Is Whip + Type: Weapon + SubType: Whip + Buy: 20 + Attack: 120 + Range: 2 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,50; + - Id: 1976 + AegisName: Queen's_Whip_ + Name: Queen's Whip + Type: Weapon + SubType: Whip + Buy: 20 + Weight: 1100 + Attack: 150 + Range: 2 + Slots: 2 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 65 + Refineable: true + Script: | + bonus2 bSkillAtk,"CG_ARROWVULCAN",10; bonus2 bSkillAtk,"DC_THROWARROW",10; + - Id: 1977 + AegisName: BF_Whip1 + Name: Valorous Battle Lariat + Type: Weapon + SubType: Whip + Buy: 20 + Attack: 50 + Range: 2 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; + - Id: 1978 + AegisName: BF_Whip2 + Name: Brave Battle Lariat + Type: Weapon + SubType: Whip + Buy: 20 + Attack: 50 + Range: 2 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bSkillAtk,"CG_ARROWVULCAN",20; bonus bUnbreakableWeapon; + - Id: 1979 + AegisName: Stem_Of_Nepenthes + Name: Stem of Nepenthes + Type: Weapon + SubType: Whip + Buy: 20 + Weight: 1000 + Attack: 120 + Range: 2 + Slots: 2 + Jobs: + BardDancer: true + Classes: + Upper: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 60 + Refineable: true + Script: | + bonus bInt,2; if( getrefine()>=9 ) { bonus3 bAddEffOnSkill,"DC_THROWARROW",Eff_Freeze,2000; } else { bonus3 bAddEffOnSkill,"DC_THROWARROW",Eff_Freeze,1000; } + - Id: 1980 + AegisName: Whip_Of_Balance + Name: Whip of Balance + Type: Weapon + SubType: Whip + Buy: 20 + Weight: 700 + Attack: 110 + Range: 2 + Slots: 3 + Jobs: + BardDancer: true + Classes: + Upper: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bAgi,2; bonus bDex,3; bonus2 bAddSkillBlow,"DC_THROWARROW",2; bonus2 bAddSkillBlow,"CG_ARROWVULCAN",3; + - Id: 1981 + AegisName: Krieger_Whip1 + Name: Glorious Lariat + Type: Weapon + SubType: Whip + Buy: 20 + Attack: 50 + Range: 2 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) bonus4 bAutoSpellOnSkill,"CG_ARROWVULCAN","CG_TAROTCARD",5,100; + - Id: 1982 + AegisName: Phenomena_Whip + Name: Phenomena Whip + Type: Weapon + SubType: Whip + Buy: 20 + Attack: 160 + Range: 2 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 4 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,2; bonus2 bSkillAtk,"DC_THROWARROW",25; + - Id: 1983 + AegisName: Rante_C + Name: Rante Whip + Type: Weapon + SubType: Whip + Attack: 170 + Range: 2 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddSize,Size_All,40; + - Id: 2000 + AegisName: Destruction_Rod + Name: Staff of Destruction + Type: Weapon + SubType: 2hStaff + Buy: 20 + Weight: 2500 + Attack: 130 + Range: 1 + Slots: 1 + Jobs: + Wizard: true + Classes: + Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Script: | + bonus bMatkRate,25+getrefine()/2; bonus bInt,3; bonus bAgi,10; bonus bUseSPrate,(getrefine()*2); bonus3 bAutoSpellWhenHit,"WZ_JUPITEL",5,(getrefine()*20); bonus2 bCastrate,"HW_MAGICPOWER",-50; + - Id: 2001 + AegisName: Divine_Cross + Name: Divine Cross + Type: Weapon + SubType: 2hStaff + Buy: 20 + Weight: 1500 + Attack: 120 + Range: 1 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bAtkEle,Ele_Holy; bonus bMatkRate,15; bonus bDex,4; bonus2 bSubRace,RC_Demon,15; bonus2 bSubRace,RC_Undead,15; + - Id: 2002 + AegisName: Krieger_Twohand_Staff1 + Name: Glorious Destruction Staff + Type: Weapon + SubType: 2hStaff + Buy: 20 + Attack: 70 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + Wizard: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMatkRate,getrefine(); bonus2 bMagicAddRace,RC_DemiHuman,15; bonus2 bMagicAddRace,RC_Player_Human,15; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bMagicAddRace,RC_DemiHuman,(getrefine()-5)*2; bonus2 bMagicAddRace,RC_Player_Human,(getrefine()-5)*2; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5+(getrefine()-5)*2; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,5+(getrefine()-5)*2; } if(getrefine()>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; } + - Id: 2003 + AegisName: Destruction_Rod_M + Name: Staff of Destruction + Type: Weapon + SubType: 2hStaff + Buy: 20 + Weight: 2500 + Attack: 130 + Range: 1 + Slots: 1 + Jobs: + Wizard: true + Classes: + Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMatkRate,25+getrefine()/2; bonus bInt,3; bonus bAgi,10; bonus bUseSPrate,(getrefine()*2); bonus3 bAutoSpellWhenHit,"WZ_JUPITEL",5,(getrefine()*20); bonus2 bCastrate,"HW_MAGICPOWER",-50; + - Id: 2004 + AegisName: Kronos + Name: Kronos + Type: Weapon + SubType: 2hStaff + Buy: 20 + Weight: 1000 + Attack: 30 + Range: 1 + Jobs: + Mage: true + Sage: true + Wizard: true + Classes: + Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 50 + Refineable: true + Script: | + bonus bMatkRate,20; bonus bInt,3+(getrefine()/2); bonus bMaxHP,300+(50*getrefine()/2); autobonus "{ bonus bMatkRate,12; bonus buseSPRate,20; }",1,5000,BF_MAGIC,"{ specialeffect2 EF_ENHANCE; }"; + - Id: 2005 + AegisName: Dea_Staff + Name: Dea Staff + Type: Weapon + SubType: 2hStaff + Buy: 20 + Weight: 1000 + Attack: 30 + Range: 1 + Slots: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Classes: + Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 50 + Refineable: true + Script: | + bonus bAtkEle,Ele_Holy; bonus bMatkRate,15+getrefine()/2; bonus bInt,6; bonus bVit,2; autobonus3 "{ }",20,1000,"AL_HEAL","{ specialeffect2 EF_MAGICALATTHIT; heal 0,200; }"; + - Id: 2006 + AegisName: G_Staff_Of_Light + Name: Staff Of Light + Type: Weapon + SubType: 2hStaff + Buy: 20 + Weight: 1900 + Attack: 80 + Range: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 60 + Refineable: true + Script: | + /* bonus bMatk,150; */ bonus bAtkEle,Ele_Holy; bonus bInt,6; + - Id: 2101 + AegisName: Guard + Name: Guard + Type: Armor + Buy: 500 + Weight: 300 + Defense: 3 + Locations: + Left_Hand: true + Refineable: true + View: 1 + - Id: 2102 + AegisName: Guard_ + Name: Guard + Type: Armor + Buy: 500 + Weight: 300 + Defense: 3 + Slots: 1 + Locations: + Left_Hand: true + Refineable: true + View: 1 + - Id: 2103 + AegisName: Buckler + Name: Buckler + Type: Armor + Buy: 14000 + Weight: 600 + Defense: 4 + Jobs: + Acolyte: true + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Rogue: true + Swordman: true + Thief: true + Locations: + Left_Hand: true + Refineable: true + View: 2 + - Id: 2104 + AegisName: Buckler_ + Name: Buckler + Type: Armor + Buy: 14000 + Weight: 600 + Defense: 4 + Slots: 1 + Jobs: + Acolyte: true + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Rogue: true + Swordman: true + Thief: true + Locations: + Left_Hand: true + Refineable: true + View: 2 + - Id: 2105 + AegisName: Shield + Name: Shield + Type: Armor + Buy: 56000 + Weight: 1300 + Defense: 6 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Left_Hand: true + Refineable: true + View: 3 + - Id: 2106 + AegisName: Shield_ + Name: Shield + Type: Armor + Buy: 56000 + Weight: 1300 + Defense: 6 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Left_Hand: true + Refineable: true + View: 3 + - Id: 2107 + AegisName: Mirror_Shield + Name: Mirror Shield + Type: Armor + Buy: 60000 + Weight: 1000 + Defense: 4 + Jobs: + Crusader: true + Knight: true + StarGladiator: true + Swordman: true + Locations: + Left_Hand: true + Refineable: true + View: 4 + Script: | + bonus bMdef,5; + - Id: 2108 + AegisName: Mirror_Shield_ + Name: Mirror Shield + Type: Armor + Buy: 60000 + Weight: 1000 + Defense: 4 + Slots: 1 + Jobs: + Crusader: true + Knight: true + StarGladiator: true + Swordman: true + Locations: + Left_Hand: true + Refineable: true + View: 4 + Script: | + bonus bMdef,5; + - Id: 2109 + AegisName: Memorize_Book + Name: Memory Book + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 3 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Left_Hand: true + Refineable: true + View: 5 + Script: | + bonus bInt,1; bonus bMdef,2; + - Id: 2110 + AegisName: Holy_Guard + Name: Holy Guard + Type: Armor + Buy: 85000 + Weight: 1400 + Defense: 5 + Jobs: + Crusader: true + Locations: + Left_Hand: true + EquipLevelMin: 68 + View: 4 + Script: | + bonus bVit,2; bonus bMdef,2; + - Id: 2111 + AegisName: Herald_Of_GOD + Name: Sacred Mission + Type: Armor + Buy: 128000 + Weight: 1600 + Defense: 5 + Jobs: + Crusader: true + Locations: + Left_Hand: true + EquipLevelMin: 83 + Refineable: true + View: 4 + Script: | + bonus bVit,3; bonus bInt,2; bonus bMdef,3; bonus bUnbreakableShield; + - Id: 2112 + AegisName: Novice_Guard + Name: Novice Guard + Type: Armor + Buy: 1 + Weight: 1 + Defense: 3 + Jobs: + Novice: true + SuperNovice: true + Locations: + Left_Hand: true + View: 1 + - Id: 2113 + AegisName: Novice_Shield + Name: Novice Shield + Type: Armor + Buy: 5000 + Weight: 1000 + Defense: 3 + Slots: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Left_Hand: true + EquipLevelMin: 40 + Refineable: true + View: 3 + Script: | + bonus2 bSubEle,Ele_Water,20; bonus2 bSubEle,Ele_Earth,20; bonus2 bSubEle,Ele_Fire,20; bonus2 bSubEle,Ele_Wind,20; bonus2 bSubEle,Ele_Poison,20; bonus2 bSubEle,Ele_Ghost,20; bonus2 bSubEle,Ele_Undead,20; + - Id: 2114 + AegisName: Stone_Buckler + Name: Stone Buckler + Type: Armor + Buy: 30000 + Weight: 1500 + Defense: 3 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Left_Hand: true + EquipLevelMin: 65 + Refineable: true + View: 2 + Script: | + bonus2 bSubSize,Size_Large,5; + - Id: 2115 + AegisName: Valkyrja's_Shield + Name: Valkyrja's Shield + Type: Armor + Buy: 30000 + Weight: 500 + Defense: 3 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Left_Hand: true + EquipLevelMin: 65 + Refineable: true + View: 4 + Script: | + bonus2 bSubEle,Ele_Water,20; bonus2 bSubEle,Ele_Fire,20; bonus2 bSubEle,Ele_Dark,20; bonus2 bSubEle,Ele_Undead,20; bonus bMdef,5; + - Id: 2116 + AegisName: Angel's_Safeguard + Name: Angelic Guard + Type: Armor + Buy: 10000 + Weight: 400 + Defense: 3 + Slots: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Left_Hand: true + EquipLevelMin: 20 + Refineable: true + View: 1 + Script: | + bonus2 bSubRace,RC_Demon,5; + - Id: 2117 + AegisName: Arm_Guard + Name: Arm Guard + Type: Armor + Buy: 10000 + Weight: 150 + Defense: 5 + Jobs: + Ninja: true + Locations: + Left_Hand: true + EquipLevelMin: 20 + Refineable: true + View: 1 + - Id: 2118 + AegisName: Arm_Guard_ + Name: Arm Guard + Type: Armor + Buy: 10000 + Weight: 150 + Defense: 5 + Slots: 1 + Jobs: + Ninja: true + Locations: + Left_Hand: true + EquipLevelMin: 20 + Refineable: true + View: 1 + - Id: 2119 + AegisName: Improved_Arm_Guard + Name: Advanced Arm Guard + Type: Armor + Buy: 40000 + Weight: 150 + Defense: 4 + Jobs: + Ninja: true + Locations: + Left_Hand: true + EquipLevelMin: 50 + Refineable: true + View: 1 + Script: | + bonus bMdef,5; + - Id: 2120 + AegisName: Improved_Arm_Guard_ + Name: Advanced Arm Guard + Type: Armor + Buy: 40000 + Weight: 150 + Defense: 4 + Slots: 1 + Jobs: + Ninja: true + Locations: + Left_Hand: true + EquipLevelMin: 50 + Refineable: true + View: 1 + Script: | + bonus bMdef,5; + - Id: 2121 + AegisName: Memorize_Book_ + Name: Memory Book + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 3 + Slots: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Left_Hand: true + Refineable: true + View: 5 + Script: | + bonus bInt,1; bonus bMdef,2; + - Id: 2122 + AegisName: Platinum_Shield + Name: Platinum Shield + Type: Armor + Buy: 20 + Weight: 1200 + Defense: 5 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Locations: + Left_Hand: true + EquipLevelMin: 68 + Refineable: true + View: 4 + Script: | + bonus bMdef,5; bonus2 bSubSize,Size_Medium,15; bonus2 bSubSize,Size_Large,15; bonus2 bSubRace,RC_Undead,10; bonus5 bAutoSpellWhenHit,"NPC_MAGICMIRROR",7,150,BF_MAGIC,0; + - Id: 2123 + AegisName: Orleans_Server + Name: Orleans's Server + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 5 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Locations: + Left_Hand: true + EquipLevelMin: 55 + Refineable: true + View: 4 + Script: | + bonus bMdef,2; bonus bMagicDamageReturn,5; + - Id: 2124 + AegisName: Thorny_Buckler + Name: Thorny Buckler + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 5 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Locations: + Left_Hand: true + EquipLevelMin: 55 + Refineable: true + View: 2 + Script: | + bonus bMdef,2; + - Id: 2125 + AegisName: Strong_Shield + Name: Strong Shield + Type: Armor + Buy: 20 + Weight: 2500 + Defense: 4 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Classes: + Upper: true + Locations: + Left_Hand: true + EquipLevelMin: 75 + Refineable: true + View: 4 + Script: | + bonus bNoKnockback; 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; + - Id: 2126 + AegisName: Guyak_Shield + Name: Guyak Shield + Type: Armor + Buy: 20 + Weight: 700 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Left_Hand: true + EquipLevelMin: 75 + Refineable: true + View: 2 + Script: | + bonus bMdef,3; + - Id: 2127 + AegisName: Secular_Mission + Name: Secular Mission + Type: Armor + Buy: 20 + Defense: 10 + Locations: + Left_Hand: true + View: 4 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bSubClass,Class_All,25; + - Id: 2128 + AegisName: Herald_Of_GOD_ + Name: Sacred Mission + Type: Armor + Buy: 128000 + Weight: 1600 + Defense: 5 + Slots: 1 + Jobs: + Crusader: true + Locations: + Left_Hand: true + EquipLevelMin: 83 + Refineable: true + View: 4 + Script: | + bonus bVit,3; bonus bInt,2; bonus bMdef,3; bonus bUnbreakableShield; + - Id: 2129 + AegisName: Exorcism_Bible + Name: Exorcism Bible + Type: Armor + Buy: 20 + Weight: 600 + Defense: 5 + Jobs: + Monk: true + Priest: true + Locations: + Left_Hand: true + EquipLevelMin: 50 + Refineable: true + View: 5 + Script: | + bonus bHPrecovRate,3; bonus bSPrecovRate,3; bonus bInt,1; + - Id: 2130 + AegisName: Cross_Shield + Name: Cross Shield + Type: Armor + Buy: 20 + Weight: 2000 + Defense: 6 + Slots: 1 + Jobs: + Crusader: true + Locations: + Left_Hand: true + EquipLevelMin: 80 + Refineable: true + View: 4 + Script: | + bonus bStr,1; bonus2 bSkillAtk,"PA_SHIELDCHAIN",30; bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",30; bonus bUseSPrate,10; + - Id: 2131 + AegisName: Magic_Study_Vol1 + Name: Magic Bible Vol1 + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 2 + Slots: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Left_Hand: true + EquipLevelMin: 70 + Refineable: true + View: 5 + Script: | + bonus bMdef,3; bonus bInt,2; bonus2 bAddEffWhenHit,Eff_Stun,1000; + - Id: 2132 + AegisName: Shelter_Resistance + Name: Shell Of Resistance + Type: Armor + Buy: 20 + Defense: 9 + Locations: + Left_Hand: true + View: 2 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bSubEle,Ele_All,20; bonus bShortWeaponDamageReturn,1; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bAllStats,1; } + - Id: 2133 + AegisName: Tournament_Shield + Name: Tournament Shield + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 5 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Classes: + Upper: true + Locations: + Left_Hand: true + EquipLevelMin: 50 + Refineable: true + View: 4 + Script: | + bonus2 bAddClass,Class_All,1; if( Class==Job_Lord_Knight ) bonus bAspdRate,-5; + - Id: 2134 + AegisName: Shield_Of_Naga + Name: Shield of Naga + Type: Armor + Buy: 20 + Weight: 500 + Defense: 3 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Classes: + Upper: true + Locations: + Left_Hand: true + EquipLevelMin: 70 + Refineable: true + View: 2 + Script: | + bonus bMdef,3; autobonus2 "{ bonus bShortWeaponDamageReturn,(getrefine()*3); }",10,5000,BF_WEAPON,"{ specialeffect2 EF_GUARD; }"; + - Id: 2135 + AegisName: Shadow_Guard + Name: Shadow Guard + Type: Armor + Buy: 20 + Weight: 800 + Defense: 4 + Slots: 1 + Jobs: + Rogue: true + Classes: + Upper: true + Locations: + Left_Hand: true + EquipLevelMin: 70 + Refineable: true + View: 2 + - Id: 2136 + AegisName: Cracked_Buckler + Name: Cracked Buckler + Type: Armor + Defense: 5 + Locations: + Left_Hand: true + View: 2 + Script: | + bonus bAgi,2; bonus2 bAddEle,Ele_Neutral,-10; bonus3 bAutoSpellWhenHit,"PR_KYRIE",1,50; bonus bMdef,1; + - Id: 2137 + AegisName: Valkyrja's_Shield_C + Name: Neo Valkyrja's Shield + Type: Armor + Defense: 5 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Locations: + Left_Hand: true + EquipLevelMin: 95 + View: 4 + Script: | + bonus2 bSubEle,Ele_Water,20; bonus2 bSubEle,Ele_Fire,20; bonus2 bSubEle,Ele_Dark,20; bonus2 bSubEle,Ele_Undead,20; bonus bMdef,5; + - Id: 2138 + AegisName: Bradium_Shield + Name: Bradium Shield + Type: Armor + Buy: 20 + Weight: 1800 + Defense: 5 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Classes: + Upper: true + Locations: + Left_Hand: true + EquipLevelMin: 65 + Refineable: true + View: 3 + Script: | + bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",60; bonus bAgi,-1; bonus bMaxHP,500; + - Id: 2139 + AegisName: Flame_Thrower + Name: Flame Thrower + Type: Armor + Buy: 20000 + Weight: 2000 + Defense: 60 + Jobs: + Blacksmith: true + Classes: + Normal: true + Upper: true + Baby: true + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Left_Hand: true + EquipLevelMin: 99 + View: 1 + - Id: 2199 + AegisName: Ahura_Mazda + Name: Ahura Mazdah + Type: Armor + Buy: 1 + Weight: 10 + Defense: 100 + Locations: + Left_Hand: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bAllStats,50; bonus bMdef,99; bonus bShortWeaponDamageReturn,100; bonus2 bSubRace,RC_DemiHuman,95; bonus2 bSubRace,RC_Player_Human,95; skill "CR_FULLPROTECTION",5; Skill "WZ_ESTIMATION",1; Skill "ST_FULLSTRIP",5; Skill "HW_MAGICPOWER",10; bonus bMaxHPRate,200; bonus bNoGemStone; bonus bSpeedRate,25; bonus bNoWalkDelay; + - Id: 2201 + AegisName: Sunglasses + Name: Sunglasses + Type: Armor + Buy: 5000 + Weight: 100 + Locations: + Head_Mid: true + View: 12 + Script: | + bonus2 bResEff,Eff_Blind,500; + - Id: 2202 + AegisName: Sunglasses_ + Name: Sunglasses + Type: Armor + Buy: 5000 + Weight: 100 + Slots: 1 + Locations: + Head_Mid: true + View: 12 + Script: | + bonus2 bResEff,Eff_Blind,500; + - Id: 2203 + AegisName: Glasses + Name: Glasses + Type: Armor + Buy: 4000 + Weight: 100 + Locations: + Head_Mid: true + View: 3 + - Id: 2204 + AegisName: Glasses_ + Name: Glasses + Type: Armor + Buy: 4000 + Weight: 100 + Slots: 1 + Locations: + Head_Mid: true + View: 3 + - Id: 2205 + AegisName: Diver's_Goggles + Name: Diver Goggles + Type: Armor + Buy: 3500 + Weight: 100 + Locations: + Head_Mid: true + View: 10 + - Id: 2206 + AegisName: Wedding_Veil + Name: Wedding Veil + Type: Armor + Buy: 23000 + Weight: 100 + Gender: Female + Locations: + Head_Top: true + Refineable: true + View: 44 + Script: | + bonus bMdef,5; + - Id: 2207 + AegisName: Fancy_Flower + Name: Fancy Flower + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Top: true + View: 4 + Script: | + bonus2 bSubRace,RC_Plant,10; + - Id: 2208 + AegisName: Ribbon + Name: Ribbon + Type: Armor + Buy: 800 + Weight: 100 + Defense: 1 + Gender: Female + Locations: + Head_Top: true + Refineable: true + View: 17 + Script: | + bonus bMdef,3; + - Id: 2209 + AegisName: Ribbon_ + Name: Ribbon + Type: Armor + Buy: 800 + Weight: 100 + Defense: 1 + Slots: 1 + Gender: Female + Locations: + Head_Top: true + Refineable: true + View: 17 + Script: | + bonus bMdef,3; + - Id: 2210 + AegisName: Hair_Band + Name: Hair Band + Type: Armor + Buy: 500 + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + View: 9 + - Id: 2211 + AegisName: Bandana + Name: Bandana + Type: Armor + Buy: 400 + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 6 + - Id: 2212 + AegisName: Eye_Bandage + Name: Eye Patch + Type: Armor + Buy: 1000 + Weight: 100 + Locations: + Head_Mid: true + View: 13 + - Id: 2213 + AegisName: Cat_Hairband + Name: Kitty Band + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 2 + - Id: 2214 + AegisName: Bunny_Band + Name: Bunny Band + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 15 + Script: | + bonus bLuk,2; + - Id: 2215 + AegisName: Flower_Hairband + Name: Flower Band + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 5 + - Id: 2216 + AegisName: Biretta + Name: Biretta + Type: Armor + Buy: 9000 + Weight: 100 + Defense: 4 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Head_Top: true + Refineable: true + View: 11 + - Id: 2217 + AegisName: Biretta_ + Name: Biretta + Type: Armor + Buy: 9000 + Weight: 100 + Defense: 4 + Slots: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Head_Top: true + Refineable: true + View: 11 + - Id: 2218 + AegisName: Flu_Mask + Name: Flu Mask + Type: Armor + Buy: 300 + Weight: 100 + Locations: + Head_Low: true + View: 8 + Script: | + bonus2 bResEff,Eff_Silence,1000; + - Id: 2219 + AegisName: Flu_Mask_ + Name: Flu Mask + Type: Armor + Buy: 300 + Weight: 100 + Locations: + Head_Low: true + View: 8 + Script: | + bonus2 bResEff,Eff_Silence,1000; + - Id: 2220 + AegisName: Hat + Name: Hat + Type: Armor + Buy: 1000 + Weight: 200 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 16 + - Id: 2221 + AegisName: Hat_ + Name: Hat + Type: Armor + Buy: 1000 + Weight: 200 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 16 + - Id: 2222 + AegisName: Turban + Name: Turban + Type: Armor + Buy: 4500 + Weight: 300 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 7 + - Id: 2223 + AegisName: Turban_ + Name: Turban + Type: Armor + Buy: 4500 + Weight: 300 + Defense: 3 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 7 + - Id: 2224 + AegisName: Goggle + Name: Goggles + Type: Armor + Buy: 20 + Weight: 300 + Defense: 5 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Head_Mid: true + Head_Top: true + Refineable: true + View: 1 + - Id: 2225 + AegisName: Goggle_ + Name: Goggles + Type: Armor + Buy: 20 + Weight: 300 + Defense: 5 + Slots: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Head_Mid: true + Head_Top: true + Refineable: true + View: 1 + - Id: 2226 + AegisName: Cap + Name: Cap + Type: Armor + Buy: 12000 + Weight: 400 + Defense: 4 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Head_Top: true + Refineable: true + View: 14 + - Id: 2227 + AegisName: Cap_ + Name: Cap + Type: Armor + Buy: 12000 + Weight: 400 + Defense: 4 + Slots: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Head_Top: true + Refineable: true + View: 14 + - Id: 2228 + AegisName: Helm + Name: Helm + Type: Armor + Buy: 44000 + Weight: 600 + Defense: 6 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Head_Top: true + Refineable: true + View: 40 + - Id: 2229 + AegisName: Helm_ + Name: Helm + Type: Armor + Buy: 44000 + Weight: 600 + Defense: 6 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Head_Top: true + Refineable: true + View: 40 + - Id: 2230 + AegisName: Gemmed_Sallet + Name: Gemmed Sallet + Type: Armor + Buy: 50000 + Weight: 500 + Defense: 4 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Head_Top: true + Refineable: true + Script: | + bonus bMdef,3; + - Id: 2231 + AegisName: Gemmed_Sallet_ + Name: Gemmed Sallet + Type: Armor + Buy: 50000 + Weight: 500 + Defense: 4 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Head_Top: true + Refineable: true + Script: | + bonus bMdef,3; + - Id: 2232 + AegisName: Circlet + Name: Circlet + Type: Armor + Buy: 7500 + Weight: 300 + Defense: 3 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Head_Top: true + Refineable: true + View: 18 + Script: | + bonus bMdef,3; + - Id: 2233 + AegisName: Circlet_ + Name: Circlet + Type: Armor + Buy: 7500 + Weight: 300 + Defense: 3 + Slots: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Head_Top: true + Refineable: true + View: 18 + Script: | + bonus bMdef,3; + - Id: 2234 + AegisName: Tiara + Name: Tiara + Type: Armor + Buy: 20 + Weight: 400 + Defense: 4 + Jobs: + All: true + Novice: false + SuperNovice: false + Gender: Female + Locations: + Head_Top: true + EquipLevelMin: 45 + Refineable: true + View: 19 + Script: | + bonus bInt,2; + - Id: 2235 + AegisName: Crown + Name: Crown + Type: Armor + Buy: 20 + Weight: 400 + Defense: 4 + Jobs: + All: true + Novice: false + SuperNovice: false + Gender: Male + Locations: + Head_Top: true + EquipLevelMin: 45 + Refineable: true + View: 45 + Script: | + bonus bInt,2; + - Id: 2236 + AegisName: Santa's_Hat + Name: Santa Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 20 + Script: | + bonus bMdef,1; bonus bLuk,1; + - Id: 2237 + AegisName: Weird_Goatee + Name: Bandit Beard + Type: Armor + Buy: 2 + Weight: 100 + Locations: + Head_Low: true + View: 21 + - Id: 2239 + AegisName: One_Eyed_Glass + Name: Monocle + Type: Armor + Buy: 10000 + Weight: 100 + Locations: + Head_Mid: true + View: 23 + - Id: 2240 + AegisName: Beard + Name: Beard + Type: Armor + Buy: 2 + Weight: 100 + Locations: + Head_Low: true + View: 24 + - Id: 2241 + AegisName: Granpa_Beard + Name: Grampa Beard + Type: Armor + Buy: 5000 + Weight: 100 + Locations: + Head_Low: true + View: 25 + - Id: 2242 + AegisName: Luxury_Sunglasses + Name: Purple Glasses + Type: Armor + Buy: 24000 + Weight: 100 + Defense: 1 + Locations: + Head_Mid: true + View: 26 + Script: | + bonus2 bResEff,Eff_Blind,1000; + - Id: 2243 + AegisName: Spinning_Eyes + Name: Geek Glasses + Type: Armor + Buy: 20000 + Weight: 100 + Defense: 1 + Locations: + Head_Mid: true + View: 27 + Script: | + bonus2 bResEff,Eff_Blind,1500; + - Id: 2244 + AegisName: Big_Sis'_Ribbon + Name: Big Ribbon + Type: Armor + Buy: 15000 + Weight: 200 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 28 + Script: | + bonus bMdef,3; + - Id: 2245 + AegisName: Sweet_Gents + Name: Sweet Gent + Type: Armor + Buy: 15000 + Weight: 400 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 29 + - Id: 2246 + AegisName: Golden_Gear + Name: Golden Gear + Type: Armor + Buy: 20 + Weight: 900 + Defense: 5 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 40 + Refineable: true + View: 30 + Script: | + bonus bUnbreakableHelm; + - Id: 2247 + AegisName: Oldman's_Romance + Name: Romantic Gent + Type: Armor + Buy: 15000 + Weight: 400 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 31 + - Id: 2248 + AegisName: Western_Grace + Name: Western Grace + Type: Armor + Buy: 15000 + Weight: 400 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 32 + - Id: 2249 + AegisName: Coronet + Name: Coronet + Type: Armor + Buy: 20 + Weight: 300 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 33 + Script: | + bonus bInt,1; + - Id: 2250 + AegisName: Fillet + Name: Cute Ribbon + Type: Armor + Buy: 500 + Weight: 100 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + View: 34 + Script: | + bonus bMaxSP,20; + - Id: 2251 + AegisName: Holy_Bonnet + Name: Monk Hat + Type: Armor + Buy: 30000 + Weight: 100 + Defense: 5 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Head_Top: true + Refineable: true + View: 35 + Script: | + bonus bMdef,3; + - Id: 2252 + AegisName: Star_Sparkling + Name: Wizard Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 4 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Head_Top: true + Refineable: true + View: 36 + Script: | + bonus bMaxSP,100; + - Id: 2253 + AegisName: Sunflower + Name: Sunflower + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + View: 37 + Script: | + bonus2 bSubRace,RC_Insect,10; + - Id: 2254 + AegisName: Angelic_Chain + Name: Angel Wing + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 38 + Script: | + bonus bMdef,3; bonus bAgi,1; bonus bLuk,1; bonus2 bSubRace,RC_Demon,3; + - Id: 2255 + AegisName: Satanic_Chain + Name: Evil Wing + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 39 + Script: | + bonus bMdef,2; bonus bStr,1; bonus2 bSubRace,RC_Angel,3; + - Id: 2256 + AegisName: Magestic_Goat + Name: Majestic Goat + Type: Armor + Buy: 20 + Weight: 800 + Defense: 5 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + StarGladiator: true + Swordman: true + Taekwon: true + Locations: + Head_Top: true + Refineable: true + View: 41 + Script: | + bonus bStr,1; + - Id: 2257 + AegisName: Snowy_Horn + Name: Unicorn Horn + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 42 + - Id: 2258 + AegisName: Sharp_Gear + Name: Spiky Band + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 6 + Jobs: + Acolyte: true + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Rogue: true + StarGladiator: true + Swordman: true + Taekwon: true + Thief: true + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 43 + - Id: 2259 + AegisName: Mini_Propeller + Name: Mini Propeller + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 46 + - Id: 2260 + AegisName: Mini_Glasses + Name: Mini Glasses + Type: Armor + Buy: 28000 + Weight: 100 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + View: 47 + - Id: 2261 + AegisName: Prontera_Army_Cap + Name: Army Cap + Type: Armor + Buy: 20 + Weight: 400 + Defense: 4 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Head_Top: true + Refineable: true + View: 48 + - Id: 2262 + AegisName: Pierrot_Nose + Name: Clown Nose + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Low: true + View: 49 + - Id: 2263 + AegisName: Gangster_Patch + Name: Zorro Masque + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + View: 50 + - Id: 2264 + AegisName: Munak_Turban + Name: Munak Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 5 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + View: 51 + Script: | + bonus2 bSubRace,RC_Undead,10; + - Id: 2265 + AegisName: Ganster_Mask + Name: Gangster Mask + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Low: true + View: 52 + Script: | + bonus2 bResEff,Eff_Silence,1500; + - Id: 2266 + AegisName: Iron_Cane + Name: Iron Cain + Type: Armor + Buy: 20 + Weight: 300 + Defense: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Head_Low: true + EquipLevelMin: 50 + View: 53 + - Id: 2267 + AegisName: Cigar + Name: Cigarette + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Low: true + View: 54 + Script: | + bonus2 bSubRace,RC_Insect,3; + - Id: 2268 + AegisName: Smoking_Pipe + Name: Pipe + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Low: true + View: 55 + Script: | + bonus2 bSubRace,RC_Insect,3; + - Id: 2269 + AegisName: Centimental_Flower + Name: Romantic Flower + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Low: true + View: 56 + Script: | + bonus2 bSubRace,RC_Plant,3; + - Id: 2270 + AegisName: Centimental_Leaf + Name: Romantic Leaf + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Low: true + View: 57 + Script: | + bonus2 bSubRace,RC_Plant,3; + - Id: 2271 + AegisName: Jack_A_Dandy + Name: Jack be Dandy + Type: Armor + Buy: 45000 + Weight: 100 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + View: 58 + - Id: 2272 + AegisName: Stop_Post + Name: Stop Post + Type: Armor + Buy: 20 + Weight: 400 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 59 + - Id: 2273 + AegisName: Doctor_Cap + Name: Doctor Band + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 60 + Script: | + bonus bInt,1; + - Id: 2274 + AegisName: Ghost_Bandana + Name: Ghost Bandana + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 61 + Script: | + bonus bAgi,2; bonus2 bSubEle,Ele_Ghost,10; + - Id: 2275 + AegisName: Red_Bandana + Name: Red Bandana + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 62 + - Id: 2276 + AegisName: Eagle_Eyes + Name: Angled Glasses + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Mid: true + View: 63 + - Id: 2277 + AegisName: Nurse_Cap + Name: Nurse Cap + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Head_Top: true + Refineable: true + View: 64 + Script: | + bonus bInt,1; + - Id: 2278 + AegisName: Mr_Smile + Name: Mr. Smile + Type: Armor + Buy: 60 + Weight: 100 + Defense: 1 + Locations: + Head_Low: true + Head_Mid: true + View: 65 + - Id: 2279 + AegisName: Bomb_Wick + Name: Bomb Wick + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + View: 66 + - Id: 2280 + AegisName: Sahkkat + Name: Sakkat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 3 + Locations: + Head_Top: true + Refineable: true + View: 67 + Script: | + bonus bAgi,1; + - Id: 2281 + AegisName: Phantom_Of_Opera + Name: Opera Masque + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Low: true + Head_Mid: true + View: 68 + - Id: 2282 + AegisName: Spirit_Chain + Name: Halo + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Top: true + View: 69 + Script: | + bonus2 bSubEle,Ele_Holy,15; + - Id: 2283 + AegisName: Ear_Mufs + Name: Ear Muffs + Type: Armor + Buy: 20 + Weight: 200 + Defense: 3 + Locations: + Head_Top: true + Refineable: true + View: 70 + Script: | + bonus2 bResEff,Eff_Curse,1000; + - Id: 2284 + AegisName: Antler + Name: Antlers + Type: Armor + Buy: 20 + Weight: 500 + Defense: 4 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 71 + - Id: 2285 + AegisName: Apple_Of_Archer + Name: Apple of Archer + Type: Armor + Buy: 20 + Weight: 200 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 72 + Script: | + bonus bDex,3; + - Id: 2286 + AegisName: Elven_Ears + Name: Elven Ears + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + EquipLevelMin: 70 + View: 73 + - Id: 2287 + AegisName: Pirate_Bandana + Name: Pirate Bandana + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 74 + Script: | + bonus bStr,1; + - Id: 2288 + AegisName: Mr_Scream + Name: Mr. Scream + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Low: true + Head_Mid: true + View: 75 + - Id: 2289 + AegisName: Poo_Poo_Hat + Name: Poo Poo Hat + Type: Armor + Buy: 20 + Weight: 700 + Locations: + Head_Top: true + View: 76 + Script: | + bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; + - Id: 2290 + AegisName: Funeral_Costume + Name: Funeral Hat + Type: Armor + Buy: 3000 + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + View: 77 + - Id: 2291 + AegisName: Masquerade + Name: Masquerade + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + View: 78 + Script: | + bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player_Human,3; + - Id: 2292 + AegisName: Welding_Mask + Name: Welding Mask + Type: Armor + Buy: 20 + Weight: 300 + Defense: 2 + Jobs: + Alchemist: true + Blacksmith: true + Merchant: true + Locations: + Head_Low: true + Head_Mid: true + EquipLevelMin: 50 + View: 79 + Script: | + bonus2 bSubEle,Ele_Fire,10; + - Id: 2293 + AegisName: Pretend_Murdered + Name: Pretend Murdered + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + View: 80 + - Id: 2294 + AegisName: Star_Dust + Name: Stellar + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 81 + - Id: 2295 + AegisName: Blinker + Name: Blinker + Type: Armor + Buy: 1500 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + View: 82 + Script: | + bonus2 bResEff,Eff_Blind,10000; + - Id: 2296 + AegisName: Binoculars + Name: Binoculars + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Locations: + Head_Mid: true + EquipLevelMin: 50 + View: 83 + Script: | + bonus bDex,1; + - Id: 2297 + AegisName: Goblini_Mask + Name: Goblin Mask + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Low: true + Head_Mid: true + View: 84 + - Id: 2298 + AegisName: Green_Feeler + Name: Green Feeler + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Locations: + Head_Top: true + View: 85 + - Id: 2299 + AegisName: Viking_Helm + Name: Orc Helm + Type: Armor + Buy: 20 + Weight: 500 + Defense: 5 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Head_Top: true + Refineable: true + View: 86 + - Id: 2301 + AegisName: Cotton_Shirt + Name: Cotton Shirt + Type: Armor + Buy: 10 + Weight: 100 + Defense: 1 + Locations: + Armor: true + Refineable: true + - Id: 2302 + AegisName: Cotton_Shirt_ + Name: Cotton Shirt + Type: Armor + Buy: 10 + Weight: 100 + Defense: 1 + Slots: 1 + Locations: + Armor: true + Refineable: true + - Id: 2303 + AegisName: Leather_Jacket + Name: Jacket + Type: Armor + Buy: 200 + Weight: 200 + Defense: 2 + Locations: + Armor: true + Refineable: true + - Id: 2304 + AegisName: Leather_Jacket_ + Name: Jacket + Type: Armor + Buy: 200 + Weight: 200 + Defense: 2 + Slots: 1 + Locations: + Armor: true + Refineable: true + - Id: 2305 + AegisName: Adventure_Suit + Name: Adventurer's Suit + Type: Armor + Buy: 1000 + Weight: 300 + Defense: 3 + Locations: + Armor: true + Refineable: true + - Id: 2306 + AegisName: Adventurere's_Suit_ + Name: Adventurer's Suit + Type: Armor + Buy: 1000 + Weight: 300 + Defense: 3 + Slots: 1 + Locations: + Armor: true + Refineable: true + - Id: 2307 + AegisName: Mantle + Name: Mantle + Type: Armor + Buy: 10000 + Weight: 600 + Defense: 4 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Armor: true + Refineable: true + - Id: 2308 + AegisName: Mantle_ + Name: Mantle + Type: Armor + Buy: 10000 + Weight: 600 + Defense: 4 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Armor: true + Refineable: true + - Id: 2309 + AegisName: Coat + Name: Coat + Type: Armor + Buy: 22000 + Weight: 1200 + Defense: 5 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Armor: true + Refineable: true + - Id: 2310 + AegisName: Coat_ + Name: Coat + Type: Armor + Buy: 22000 + Weight: 1200 + Defense: 5 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Armor: true + Refineable: true + - Id: 2311 + AegisName: Mink_Coat + Name: Mink Coat + Type: Armor + Buy: 20 + Weight: 2300 + Defense: 6 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Armor: true + EquipLevelMin: 30 + Refineable: true + - Id: 2312 + AegisName: Padded_Armor + Name: Padded Armor + Type: Armor + Buy: 48000 + Weight: 2800 + Defense: 7 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Armor: true + Refineable: true + - Id: 2313 + AegisName: Padded_Armor_ + Name: Padded Armor + Type: Armor + Buy: 48000 + Weight: 2800 + Defense: 7 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Armor: true + Refineable: true + - Id: 2314 + AegisName: Chain_Mail + Name: Chain Mail + Type: Armor + Buy: 65000 + Weight: 3300 + Defense: 8 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Armor: true + Refineable: true + - Id: 2315 + AegisName: Chain_Mail_ + Name: Chain Mail + Type: Armor + Buy: 65000 + Weight: 3300 + Defense: 8 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Armor: true + Refineable: true + - Id: 2316 + AegisName: Plate_Armor + Name: Full Plate + Type: Armor + Buy: 80000 + Weight: 4500 + Defense: 10 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Armor: true + EquipLevelMin: 40 + Refineable: true + - Id: 2317 + AegisName: Plate_Armor_ + Name: Full Plate + Type: Armor + Buy: 80000 + Weight: 4500 + Defense: 10 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Armor: true + EquipLevelMin: 40 + Refineable: true + - Id: 2318 + AegisName: Clothes_Of_The_Lord + Name: Lord's Clothes + Type: Armor + Buy: 20 + Weight: 2500 + Defense: 8 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Merchant: true + Locations: + Armor: true + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bMdef,5; bonus bInt,1; + - Id: 2319 + AegisName: Glittering_Clothes + Name: Glittering Jacket + Type: Armor + Buy: 20 + Weight: 2500 + Defense: 7 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Armor: true + EquipLevelMin: 60 + Refineable: true + Script: | + bonus bMdef,5; bonus2 bAddEff,Eff_Blind,300; + - Id: 2320 + AegisName: Formal_Suit + Name: Formal Suit + Type: Armor + Buy: 20 + Weight: 300 + Defense: 5 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Armor: true + Refineable: true + - Id: 2321 + AegisName: Silk_Robe + Name: Silk Robe + Type: Armor + Buy: 8000 + Weight: 400 + Defense: 3 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Mage: true + Merchant: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Swordman: true + Wizard: true + Locations: + Armor: true + Refineable: true + Script: | + bonus bMdef,10; + - Id: 2322 + AegisName: Silk_Robe_ + Name: Silk Robe + Type: Armor + Buy: 8000 + Weight: 400 + Defense: 3 + Slots: 1 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Mage: true + Merchant: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Swordman: true + Wizard: true + Locations: + Armor: true + Refineable: true + Script: | + bonus bMdef,10; + - Id: 2323 + AegisName: Scapulare + Name: Scapulare + Type: Armor + Buy: 6500 + Weight: 400 + Defense: 4 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Armor: true + Refineable: true + - Id: 2324 + AegisName: Scapulare_ + Name: Scapulare + Type: Armor + Buy: 6500 + Weight: 400 + Defense: 4 + Slots: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Armor: true + Refineable: true + - Id: 2325 + AegisName: Saint_Robe + Name: Saint's Robe + Type: Armor + Buy: 54000 + Weight: 600 + Defense: 6 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Merchant: true + Monk: true + Priest: true + Locations: + Armor: true + Refineable: true + Script: | + bonus bMdef,5; + - Id: 2326 + AegisName: Saint_Robe_ + Name: Saint's Robe + Type: Armor + Buy: 54000 + Weight: 600 + Defense: 6 + Slots: 1 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Merchant: true + Monk: true + Priest: true + Locations: + Armor: true + Refineable: true + Script: | + bonus bMdef,5; + - Id: 2327 + AegisName: Holy_Robe + Name: Holy Robe + Type: Armor + Buy: 20 + Weight: 1700 + Defense: 7 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Armor: true + EquipLevelMin: 60 + Refineable: true + Script: | + bonus bMdef,5; bonus2 bSubRace,RC_Demon,15; bonus2 bSubEle,Ele_Dark,10; + - Id: 2328 + AegisName: Wooden_Mail + Name: Wooden Mail + Type: Armor + Buy: 5500 + Weight: 1000 + Defense: 4 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Armor: true + Refineable: true + - Id: 2329 + AegisName: Wooden_Mail_ + Name: Wooden Mail + Type: Armor + Buy: 5500 + Weight: 1000 + Defense: 4 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Armor: true + Refineable: true + - Id: 2330 + AegisName: Tights + Name: Tights + Type: Armor + Buy: 71000 + Weight: 500 + Defense: 6 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Locations: + Armor: true + EquipLevelMin: 45 + Refineable: true + Script: | + bonus bDex,1; + - Id: 2331 + AegisName: Tights_ + Name: Tights + Type: Armor + Buy: 71000 + Weight: 500 + Defense: 6 + Slots: 1 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Locations: + Armor: true + EquipLevelMin: 45 + Refineable: true + Script: | + bonus bDex,1; + - Id: 2332 + AegisName: Silver_Robe + Name: Silver Robe + Type: Armor + Buy: 7000 + Weight: 700 + Defense: 4 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Armor: true + Refineable: true + - Id: 2333 + AegisName: Silver_Robe_ + Name: Silver Robe + Type: Armor + Buy: 7000 + Weight: 700 + Defense: 4 + Slots: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Armor: true + Refineable: true + - Id: 2334 + AegisName: Mage_Coat + Name: Mage Coat + Type: Armor + Buy: 20 + Weight: 600 + Defense: 5 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Armor: true + EquipLevelMin: 50 + Refineable: true + Script: | + bonus bMdef,5; bonus bInt,1; + - Id: 2335 + AegisName: Thief_Clothes + Name: Thief Clothes + Type: Armor + Buy: 74000 + Weight: 100 + Defense: 6 + Jobs: + Assassin: true + Ninja: true + Rogue: true + Thief: true + Locations: + Armor: true + Refineable: true + Script: | + bonus bAgi,1; + - Id: 2336 + AegisName: Thief_Clothes_ + Name: Thief Clothes + Type: Armor + Buy: 74000 + Weight: 100 + Defense: 6 + Slots: 1 + Jobs: + Assassin: true + Ninja: true + Rogue: true + Thief: true + Locations: + Armor: true + Refineable: true + Script: | + bonus bAgi,1; + - Id: 2337 + AegisName: Ninja_Suit + Name: Ninja Suit + Type: Armor + Buy: 20 + Weight: 1500 + Defense: 7 + Jobs: + Assassin: true + Ninja: true + Rogue: true + Thief: true + Locations: + Armor: true + EquipLevelMin: 50 + Refineable: true + Script: | + bonus bAgi,1; bonus bMdef,3; + - Id: 2338 + AegisName: Wedding_Dress + Name: Wedding Dress + Type: Armor + Buy: 43000 + Weight: 500 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Armor: true + Refineable: true + Script: | + bonus bMdef,15; + - Id: 2339 + AegisName: G_Strings + Name: Pantie + Type: Armor + Buy: 1000 + Weight: 100 + Defense: 4 + Locations: + Armor: true + Refineable: true + - Id: 2340 + AegisName: Novice_Breast + Name: Novice Breastplate + Type: Armor + Buy: 89000 + Weight: 500 + Defense: 4 + Slots: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Armor: true + EquipLevelMin: 10 + Refineable: true + - Id: 2341 + AegisName: Full_Plate_Armor + Name: Legion Plate Armor + Type: Armor + Buy: 94000 + Weight: 5500 + Defense: 11 + Jobs: + Crusader: true + Locations: + Armor: true + EquipLevelMin: 70 + Refineable: true + - Id: 2342 + AegisName: Full_Plate_Armor_ + Name: Legion Plate Armor + Type: Armor + Buy: 102500 + Weight: 5500 + Defense: 11 + Slots: 1 + Jobs: + Crusader: true + Locations: + Armor: true + EquipLevelMin: 70 + Refineable: true + - Id: 2343 + AegisName: Robe_Of_Casting + Name: Robe of Cast + Type: Armor + Buy: 124800 + Weight: 1100 + Defense: 5 + Jobs: + Sage: true + SoulLinker: true + Wizard: true + Locations: + Armor: true + EquipLevelMin: 75 + Refineable: true + Script: | + bonus bCastrate,-3; bonus bMdef,4; + - Id: 2344 + AegisName: Flame_Sprits_Armor + Name: Lucius's Fierce Armor of Volcano + Type: Armor + Buy: 136000 + Weight: 2200 + Defense: 4 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Armor: true + EquipLevelMin: 45 + Refineable: true + Script: | + bonus bDefEle,Ele_Fire; + - Id: 2345 + AegisName: Flame_Sprits_Armor_ + Name: Lucius's Fierce Armor of Volcano + Type: Armor + Buy: 136000 + Weight: 2200 + Defense: 4 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Armor: true + EquipLevelMin: 45 + Refineable: true + Script: | + bonus bDefEle,Ele_Fire; + - Id: 2346 + AegisName: Water_Sprits_Armor + Name: Saphien's Armor of Ocean + Type: Armor + Buy: 136000 + Weight: 2200 + Defense: 4 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Armor: true + EquipLevelMin: 45 + Refineable: true + Script: | + bonus bDefEle,Ele_Water; + - Id: 2347 + AegisName: Water_Sprits_Armor_ + Name: Saphien's Armor of Ocean + Type: Armor + Buy: 136000 + Weight: 2200 + Defense: 4 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Armor: true + EquipLevelMin: 45 + Refineable: true + Script: | + bonus bDefEle,Ele_Water; + - Id: 2348 + AegisName: Wind_Sprits_Armor + Name: Aebecee's Raging Typhoon Armor + Type: Armor + Buy: 136000 + Weight: 2200 + Defense: 4 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Armor: true + EquipLevelMin: 45 + Refineable: true + Script: | + bonus bDefEle,Ele_Wind; + - Id: 2349 + AegisName: Wind_Sprits_Armor_ + Name: Aebecee's Raging Typhoon Armor + Type: Armor + Buy: 136000 + Weight: 2200 + Defense: 4 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Armor: true + EquipLevelMin: 45 + Refineable: true + Script: | + bonus bDefEle,Ele_Wind; + - Id: 2350 + AegisName: Earth_Sprits_Armor + Name: Claytos Cracking Earth Armor + Type: Armor + Buy: 136000 + Weight: 2200 + Defense: 4 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Armor: true + EquipLevelMin: 45 + Refineable: true + Script: | + bonus bDefEle,Ele_Earth; + - Id: 2351 + AegisName: Earth_Sprits_Armor_ + Name: Claytos Cracking Earth Armor + Type: Armor + Buy: 136000 + Weight: 2200 + Defense: 4 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Armor: true + EquipLevelMin: 45 + Refineable: true + Script: | + bonus bDefEle,Ele_Earth; + - Id: 2352 + AegisName: Novice_Plate + Name: Tattered Novice Ninja Suit + Type: Armor + Buy: 1 + Weight: 1 + Defense: 4 + Jobs: + Novice: true + SuperNovice: true + Locations: + Armor: true + - Id: 2353 + AegisName: Odin's_Blessing + Name: Odin's Blessing + Type: Armor + Buy: 30000 + Weight: 2500 + Defense: 6 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Armor: true + EquipLevelMin: 65 + Refineable: true + - Id: 2354 + AegisName: Goibne's_Armor + Name: Goibne's Armor + Type: Armor + Buy: 50000 + Weight: 3500 + Defense: 7 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Armor: true + EquipLevelMin: 54 + Refineable: true + Script: | + bonus bVit,2; bonus bMaxHPrate,10; + - Id: 2355 + AegisName: Angel's_Protection + Name: Angelic Protection + Type: Armor + Buy: 10000 + Weight: 600 + Defense: 4 + Slots: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Armor: true + EquipLevelMin: 40 + Refineable: true + Script: | + bonus bMdef,20; + - Id: 2356 + AegisName: Vestment_Of_Grace + Name: Blessed Holy Robe + Type: Armor + Buy: 20 + Weight: 2500 + Defense: 5 + Slots: 1 + Jobs: + Monk: true + Priest: true + Locations: + Armor: true + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bMdef,5; bonus2 bResEff,Eff_Blind,8000; + - Id: 2357 + AegisName: Valkyrie_Armor + Name: Valkyrian Armor + Type: Armor + Weight: 2800 + Defense: 6 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Locations: + Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bAllStats,1; bonus bUnbreakableArmor; 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; + - Id: 2358 + AegisName: Dress_Of_Angel + Name: Angel's Dress + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 5 + Locations: + Armor: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bLuk,4; + - Id: 2359 + AegisName: Ninja_Suit_ + Name: Ninja Suit + Type: Armor + Buy: 20 + Weight: 1500 + Defense: 7 + Slots: 1 + Jobs: + Assassin: true + Ninja: true + Rogue: true + Thief: true + Locations: + Armor: true + EquipLevelMin: 50 + Refineable: true + Script: | + bonus bAgi,1; bonus bMdef,3; + - Id: 2360 + AegisName: Robe_Of_Casting_ + Name: Robe of Cast + Type: Armor + Buy: 124800 + Weight: 1100 + Defense: 5 + Slots: 1 + Jobs: + Sage: true + SoulLinker: true + Wizard: true + Locations: + Armor: true + EquipLevelMin: 75 + Refineable: true + Script: | + bonus bCastrate,-3; bonus bMdef,4; + - Id: 2364 + AegisName: Meteo_Plate_Armor + Name: Meteo Plate Armor + Type: Armor + Buy: 20 + Weight: 3000 + Defense: 10 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Classes: + Upper: true + Locations: + Armor: true + EquipLevelMin: 55 + Refineable: true + Script: | + bonus2 bResEff,Eff_Stun,3000; bonus2 bResEff,Eff_Freeze,3000; + - Id: 2365 + AegisName: Orleans_Gown + Name: Orleans's Gown + Type: Armor + Buy: 20 + Weight: 300 + Defense: 2 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Locations: + Armor: true + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bCastrate,15; bonus bNoCastCancel; + - Id: 2366 + AegisName: Divine_Cloth + Name: Divine Cloth + Type: Armor + Buy: 20 + Weight: 1500 + Defense: 6 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Locations: + Armor: true + EquipLevelMin: 55 + Refineable: true + Script: | + 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; + - Id: 2367 + AegisName: Sniping_Suit + Name: Sniping Suit + Type: Armor + Buy: 20 + Weight: 750 + Defense: 5 + Slots: 1 + Jobs: + Hunter: true + Classes: + Upper: true + Locations: + Armor: true + EquipLevelMin: 50 + Refineable: true + Script: | + bonus bMdef,5; bonus bCritical,6+(readparam(bLuk)/10); bonus bDelayRate,-23; + - Id: 2368 + AegisName: Golden_Armor + Name: Golden Armor + Type: Armor + Buy: 20 + Weight: 2000 + Defense: 4 + Locations: + Armor: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,4; + - Id: 2369 + AegisName: Freyja_Overcoat + Name: Freyja Overcoat + Type: Armor + Weight: 500 + Defense: 12 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Armor: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bUnbreakableArmor; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; + - Id: 2370 + AegisName: Used_Mage_Coat + Name: Used Mage Coat + Type: Armor + Defense: 15 + Locations: + Armor: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,300; bonus bMaxSP,30; bonus bBaseAtk,10; bonus bAGI,1; + - Id: 2371 + AegisName: G_Strings_ + Name: Pantie + Type: Armor + Buy: 1000 + Weight: 100 + Defense: 4 + Slots: 1 + Locations: + Armor: true + Refineable: true + - Id: 2372 + AegisName: Mage_Coat_ + Name: Mage Coat + Type: Armor + Buy: 20 + Weight: 600 + Defense: 5 + Slots: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Armor: true + EquipLevelMin: 50 + Refineable: true + Script: | + bonus bMdef,5; bonus bInt,1; + - Id: 2373 + AegisName: Holy_Robe_ + Name: Holy Robe + Type: Armor + Buy: 20 + Weight: 1700 + Defense: 7 + Slots: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Armor: true + EquipLevelMin: 60 + Refineable: true + Script: | + bonus bMdef,5; bonus2 bSubRace,RC_Demon,15; bonus2 bSubEle,Ele_Dark,10; + - Id: 2374 + AegisName: Diabolus_Robe + Name: Diabolus Robe + Type: Armor + Buy: 20 + Weight: 300 + Defense: 6 + Slots: 1 + Jobs: + Acolyte: true + Archer: true + BardDancer: true + Hunter: true + Mage: true + Monk: true + Priest: true + Sage: true + Wizard: true + Classes: + Upper: true + Locations: + Armor: true + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bMaxSP,150; bonus bMdef,5; bonus bHealPower,6; bonus bDelayRate,-10; + - Id: 2375 + AegisName: Diabolus_Armor + Name: Diabolus Armor + Type: Armor + Buy: 20 + Weight: 600 + Defense: 7 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Classes: + Upper: true + Locations: + Armor: true + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bStr,2; bonus bDex,1; bonus bMaxHP,150; bonus2 bResEff,Eff_Stun,500; bonus2 bResEff,Eff_Stone,500; + - Id: 2376 + AegisName: Assaulter_Plate + Name: Assaulter Plate + Type: Armor + Buy: 10 + Defense: 7 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + StarGladiator: true + Swordman: true + Taekwon: true + Locations: + Armor: true + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; + - Id: 2377 + AegisName: Elite_Engineer_Armor + Name: Elite Engineer Armor + Type: Armor + Buy: 10 + Defense: 7 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Merchant: true + Locations: + Armor: true + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; + - Id: 2378 + AegisName: Assassin_Robe + Name: Assassin Robe + Type: Armor + Buy: 10 + Defense: 7 + Slots: 1 + Jobs: + Assassin: true + Ninja: true + Rogue: true + Thief: true + Locations: + Armor: true + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; + - Id: 2379 + AegisName: Warlock_Battle_Robe + Name: Warlock's Battle Robe + Type: Armor + Buy: 10 + Defense: 3 + Slots: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Armor: true + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; + - Id: 2380 + AegisName: Medic_Robe + Name: Medic's Robe + Type: Armor + Buy: 10 + Defense: 3 + Slots: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Armor: true + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; + - Id: 2381 + AegisName: Elite_Archer_Suit + Name: Elite Archer Suit + Type: Armor + Buy: 10 + Defense: 3 + Slots: 1 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Locations: + Armor: true + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; + - Id: 2382 + AegisName: Elite_Shooter_Suit + Name: Elite Shooter Suit + Type: Armor + Buy: 10 + Defense: 3 + Slots: 1 + Jobs: + Gunslinger: true + Locations: + Armor: true + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; + - Id: 2383 + AegisName: Brynhild + Name: Brynhild + Type: Armor + Buy: 20 + Weight: 400 + Defense: 10 + Locations: + Armor: true + EquipLevelMin: 94 + Script: | + bonus bMdef,10; bonus bMaxHP,20*BaseLevel; bonus bMaxSP,5*BaseLevel; bonus2 bAddClass,Class_All,10; bonus bMatkRate,10; bonus bUnbreakableArmor; bonus bNoKnockback; + - Id: 2384 + AegisName: Spritual_Tunic + Name: Spiritual Tunic + Type: Armor + Buy: 20 + Defense: 10 + Locations: + Armor: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + 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; + - Id: 2385 + AegisName: Recuperative_Armor + Name: Recuperative Armor + Type: Armor + Buy: 20 + Defense: 12 + Locations: + Armor: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bNoRegen,1; bonus bNoRegen,2; bonus bHPGainValue,60; bonus bSPGainValue,6; bonus bMagicHPGainValue,60; bonus bMagicSPGainValue,6; + UnEquipScript: | + heal 0,-100; + - Id: 2386 + AegisName: Chameleon_Armor + Name: Chameleon Armor + Type: Armor + Buy: 20 + Weight: 1700 + Defense: 5 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Classes: + Upper: true + Locations: + Armor: true + EquipLevelMin: 70 + Refineable: true + Script: | + 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; + - Id: 2387 + AegisName: Sprint_Mail + Name: Sprint Mail + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 3 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Classes: + Upper: true + Locations: + Armor: true + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bVit,1; bonus bHPrecovRate,5; bonus bAddItemHealRate,3; bonus2 bSkillHeal,"AL_HEAL",3; + - Id: 2388 + AegisName: Kandura + Name: Kandura + Type: Armor + Buy: 20 + Weight: 300 + Defense: 4 + Slots: 1 + Jobs: + Assassin: true + Classes: + Upper: true + Locations: + Armor: true + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bAgi,1; bonus bFlee,5; bonus bAspdRate,2; + - Id: 2389 + AegisName: Armor_Of_Naga + Name: Armor of Naga + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 5 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Classes: + Upper: true + Locations: + Armor: true + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bMdef,2; autobonus "{ bonus bBaseAtk,20; }",10,10000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; + - Id: 2390 + AegisName: Improved_Tights + Name: Improved Tights + Type: Armor + Buy: 20 + Weight: 400 + Defense: 6 + Slots: 1 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Classes: + Upper: true + Locations: + Armor: true + EquipLevelMin: 75 + Refineable: true + Script: | + bonus bMdef,2; bonus bFlee2,3; + - Id: 2391 + AegisName: Life_Link + Name: Life Link + Type: Armor + Buy: 20 + Weight: 3500 + Defense: 9 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Classes: + Upper: true + Locations: + Armor: true + EquipLevelMin: 82 + Refineable: true + Script: | + bonus bVit,2; bonus bMdef,5; bonus bHPrecovRate,50; + - Id: 2392 + AegisName: Old_Pant + Name: Old Green Pantie + Type: Armor + Defense: 10 + Locations: + Armor: true + Script: | + bonus bStr,2; bonus bVit,2; bonus bMaxHP,200; bonus3 bAutoSpellWhenHit,"MO_CALLSPIRITS",5,20; bonus bMdef,1; + - Id: 2393 + AegisName: N_Adventurer's_Suit + Name: Novice Adventurer's Suit + Type: Armor + Defense: 8 + Slots: 1 + Locations: + Armor: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 2394 + AegisName: Krieger_Suit1 + Name: Glorious Suit + Type: Armor + Buy: 20 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Armor: true + EquipLevelMin: 81 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHPRate,20; bonus2 bSubRace,RC_DemiHuman,7; bonus2 bSubRace,RC_Player_Human,7; + - Id: 2395 + AegisName: Krieger_Suit2 + Name: Glorious Popularized Suit + Type: Armor + Buy: 20 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Armor: true + EquipLevelMin: 61 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,600; bonus bSPrecovRate,10; + - Id: 2396 + AegisName: Krieger_Suit3 + Name: Glorious Mass-Production Suit + Type: Armor + Buy: 20 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Armor: true + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,500; + - Id: 2397 + AegisName: Incredible_Coat + Name: Incredible Event Resignation Coat + Type: Armor + Buy: 10 + Weight: 900 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Armor: true + Refineable: true + - Id: 2398 + AegisName: Sniping_Suit_M + Name: Sniping Suit + Type: Armor + Buy: 20 + Weight: 750 + Defense: 5 + Slots: 1 + Jobs: + Hunter: true + Classes: + Upper: true + Locations: + Armor: true + EquipLevelMin: 50 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,5; bonus bCritical,6+(readparam(bLuk)/10); bonus bDelayRate,-23; + - Id: 2399 + AegisName: Dragon_Vest + Name: Dragon Vest + Type: Armor + Buy: 20 + Weight: 500 + Defense: 3 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Locations: + Armor: true + Refineable: true + Script: | + bonus bMdef,3; + - Id: 2401 + AegisName: Sandals + Name: Sandals + Type: Armor + Buy: 400 + Weight: 200 + Defense: 1 + Locations: + Shoes: true + Refineable: true + - Id: 2402 + AegisName: Sandals_ + Name: Sandals + Type: Armor + Buy: 400 + Weight: 200 + Defense: 1 + Slots: 1 + Locations: + Shoes: true + Refineable: true + - Id: 2403 + AegisName: Shoes + Name: Shoes + Type: Armor + Buy: 3500 + Weight: 400 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Shoes: true + Refineable: true + - Id: 2404 + AegisName: Shoes_ + Name: Shoes + Type: Armor + Buy: 3500 + Weight: 400 + Defense: 2 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Shoes: true + Refineable: true + - Id: 2405 + AegisName: Boots + Name: Boots + Type: Armor + Buy: 18000 + Weight: 600 + Defense: 4 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Gunslinger: true + Hunter: true + Knight: true + Merchant: true + Rogue: true + StarGladiator: true + Swordman: true + Taekwon: true + Thief: true + Locations: + Shoes: true + Refineable: true + - Id: 2406 + AegisName: Boots_ + Name: Boots + Type: Armor + Buy: 18000 + Weight: 600 + Defense: 4 + Slots: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Gunslinger: true + Hunter: true + Knight: true + Merchant: true + Rogue: true + StarGladiator: true + Swordman: true + Taekwon: true + Thief: true + Locations: + Shoes: true + Refineable: true + - Id: 2407 + AegisName: Chrystal_Pumps + Name: Crystal Pumps + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Gender: Female + Locations: + Shoes: true + Refineable: true + Script: | + bonus bMdef,10; bonus bLuk,5; + - Id: 2408 + AegisName: Cuffs + Name: Shackles + Type: Armor + Buy: 5000 + Weight: 3000 + Defense: 3 + Locations: + Shoes: true + Refineable: true + - Id: 2409 + AegisName: Spiky_Heel + Name: High Heels + Type: Armor + Buy: 8500 + Weight: 600 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Shoes: true + Refineable: true + Script: | + bonus bMdef,5; + - Id: 2410 + AegisName: Sleipnir + Name: Sleipnir + Type: Armor + Buy: 20 + Weight: 3500 + Defense: 5 + Locations: + Shoes: true + EquipLevelMin: 94 + Script: | + bonus bMdef,10; bonus bMaxHPrate,20; bonus bMaxSPrate,20; bonus bSPrecovRate,15; bonus bSpeedRate,25; + - Id: 2411 + AegisName: Grave + Name: Greaves + Type: Armor + Buy: 48000 + Weight: 750 + Defense: 5 + Jobs: + Crusader: true + Knight: true + Locations: + Shoes: true + EquipLevelMin: 65 + Refineable: true + - Id: 2412 + AegisName: Grave_ + Name: Greaves + Type: Armor + Buy: 54000 + Weight: 750 + Defense: 5 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Locations: + Shoes: true + EquipLevelMin: 65 + Refineable: true + - Id: 2413 + AegisName: Safty_Boots + Name: Safety Boots + Type: Armor + Buy: 34000 + Weight: 350 + Defense: 6 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Shoes: true + EquipLevelMin: 30 + - Id: 2414 + AegisName: Novice_Boots + Name: Novice Slippers + Type: Armor + Buy: 1 + Weight: 1 + Defense: 2 + Jobs: + Novice: true + SuperNovice: true + Locations: + Shoes: true + - Id: 2415 + AegisName: Slipper + Name: Bunny Slipper + Type: Armor + Buy: 34000 + Weight: 300 + Defense: 3 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Gender: Female + Locations: + Shoes: true + EquipLevelMin: 30 + Refineable: true + Script: | + bonus bLuk,3; bonus bMdef,3; + - Id: 2416 + AegisName: Novice_Shoes + Name: Novice Shoes + Type: Armor + Buy: 35000 + Weight: 500 + Defense: 2 + Slots: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Shoes: true + EquipLevelMin: 40 + Refineable: true + Script: | + bonus bMaxHPrate,5; + - Id: 2417 + AegisName: Fricco_Shoes + Name: Fricco's Shoes + Type: Armor + Buy: 30000 + Weight: 500 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Shoes: true + EquipLevelMin: 65 + Refineable: true + Script: | + bonus bAgi,2; bonus2 bAddItemGroupHealRate,IG_Potion,20; + - Id: 2418 + AegisName: Vidar's_Boots + Name: Vidar's Boots + Type: Armor + Buy: 30000 + Weight: 650 + Defense: 4 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Shoes: true + EquipLevelMin: 65 + Refineable: true + Script: | + bonus bMaxHPrate,9; bonus bMaxSPrate,9; + - Id: 2419 + AegisName: Goibne's_Combat_Boots + Name: Goibne's Greaves + Type: Armor + Buy: 30000 + Weight: 700 + Defense: 4 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Shoes: true + EquipLevelMin: 54 + Refineable: true + Script: | + bonus bMdef,3; bonus bMaxHPrate,5; bonus bMaxSPrate,5; + - Id: 2420 + AegisName: Angel's_Arrival + Name: Angel's Reincarnation + Type: Armor + Buy: 10000 + Weight: 300 + Defense: 2 + Slots: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Shoes: true + EquipLevelMin: 25 + Refineable: true + Script: | + bonus bMaxHP,100; + - Id: 2421 + AegisName: Valkyrie_Shoes + Name: Valkyrian Shoes + Type: Armor + Weight: 500 + Defense: 4 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Locations: + Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bUnbreakableShoes; 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); + - Id: 2422 + AegisName: High_Fashion_Sandals + Name: High Fashion Sandals + Type: Armor + Buy: 24000 + Weight: 200 + Defense: 2 + Slots: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Shoes: true + EquipLevelMin: 40 + Refineable: true + Script: | + bonus bMdef,10; + - Id: 2423 + AegisName: Variant_Shoes + Name: Variant Shoes + Type: Armor + Buy: 20 + Weight: 500 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Locations: + Shoes: true + EquipLevelMin: 85 + Refineable: true + Script: | + bonus bMaxHPRate,20-getrefine(); bonus bMaxSPRate,20-getrefine(); bonus bDef,getrefine()/2; + - Id: 2424 + AegisName: Tidal_Shoes + Name: Tidal Shoes + Type: Armor + Buy: 20 + Weight: 300 + Defense: 3 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Locations: + Shoes: true + EquipLevelMin: 55 + Refineable: true + Script: | + bonus2 bSubEle,Ele_Water,5; + - Id: 2425 + AegisName: Black_Leather_Boots + Name: Black Leather Boots + Type: Armor + Buy: 20 + Weight: 500 + Defense: 4 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Locations: + Shoes: true + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bAgi,1; if(getrefine()>=9) bonus bAgi,2; + - Id: 2426 + AegisName: Shadow_Walk + Name: Shadow Walk + Type: Armor + Buy: 20 + Weight: 2000 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Locations: + Shoes: true + EquipLevelMin: 75 + Refineable: true + Script: | + bonus bMdef,10; if(getskilllv("AS_CLOAKING")<2){ bonus5 bAutoSpellWhenHit,"AS_CLOAKING",2,100,BF_MAGIC,0; } else bonus5 bAutoSpellWhenHit,"AS_CLOAKING",getskilllv("AS_CLOAKING"),100,BF_MAGIC,0; + - Id: 2427 + AegisName: Golden_Shoes + Name: Golden Shoes + Type: Armor + Buy: 20 + Weight: 300 + Defense: 4 + Locations: + Shoes: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,4; + - Id: 2428 + AegisName: Freyja_Boots + Name: Freyja Boots + Type: Armor + Weight: 300 + Defense: 10 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Shoes: true + Script: | + bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; + - Id: 2429 + AegisName: Iron_Boots01 + Name: Iron Boots + Type: Armor + Weight: 1500 + Defense: 5 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Shoes: true + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 2430 + AegisName: Iron_Boots02 + Name: Iron Boots + Type: Armor + Weight: 800 + Defense: 5 + Locations: + Shoes: true + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 2431 + AegisName: Valley_Shoes + Name: Valley Shoes + Type: Armor + Buy: 20 + Defense: 10 + Locations: + Shoes: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHPRate,7; bonus bMaxSPRate,7; + - Id: 2432 + AegisName: Spiky_Heel_ + Name: High Heels + Type: Armor + Buy: 8500 + Weight: 600 + Defense: 2 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Shoes: true + Refineable: true + Script: | + bonus bMdef,5; + - Id: 2433 + AegisName: Diabolus_Boots + Name: Diabolus Boots + Type: Armor + Buy: 20 + Weight: 250 + Defense: 4 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Classes: + Upper: true + Locations: + Shoes: true + Refineable: true + Script: | + bonus bMaxHP,(BaseLevel*10); + - Id: 2434 + AegisName: Black_Leather_Boots_ + Name: Black Leather Boots + Type: Armor + Buy: 20 + Weight: 500 + Defense: 4 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Locations: + Shoes: true + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bAgi,1; if(getrefine()>=9) bonus bAgi,2; + - Id: 2435 + AegisName: Battle_Greave + Name: Battle Greaves + Type: Armor + Buy: 10 + Defense: 4 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Ninja: true + Rogue: true + StarGladiator: true + Swordman: true + Taekwon: true + Thief: true + Locations: + Shoes: true + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,100; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; + - Id: 2436 + AegisName: Combat_Boots + Name: Combat Boots + Type: Armor + Buy: 10 + Defense: 3 + Slots: 1 + Jobs: + Acolyte: true + Archer: true + BardDancer: true + Hunter: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Shoes: true + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,100; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; + - Id: 2437 + AegisName: Battle_Boots + Name: Battle Boots + Type: Armor + Buy: 10 + Defense: 3 + Slots: 1 + Jobs: + Gunslinger: true + Locations: + Shoes: true + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,100; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; + - Id: 2438 + AegisName: Paw_Of_Cat + Name: Paw Of Cat + Type: Armor + Buy: 10 + Weight: 300 + Locations: + Shoes: true + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bFlee,5; bonus bAgi,1; + - Id: 2439 + AegisName: Refresh_Shoes + Name: Refresh Shoes + Type: Armor + Buy: 20 + Defense: 9 + Locations: + Shoes: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHPRate,17; bonus bMaxSPRate,8; bonus2 bHPRegenRate,20,10000; bonus2 bSPRegenRate,3,10000; + - Id: 2440 + AegisName: Sprint_Shoes + Name: Sprint Shoes + Type: Armor + Buy: 20 + Weight: 300 + Defense: 2 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Classes: + Upper: true + Locations: + Shoes: true + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bAgi,1; bonus bSPrecovRate,5; + - Id: 2441 + AegisName: Beach_Sandal + Name: Beach Sandals + Type: Armor + Buy: 20 + Weight: 200 + Locations: + Shoes: true + Refineable: true + Script: | + bonus bStr,1; bonus bInt,1; bonus bAgi,1; bonus2 bSubEle,Ele_Fire,10; + - Id: 2442 + AegisName: Boots_Perforated + Name: Red Stocking Boots + Type: Armor + Defense: 7 + Locations: + Shoes: true + Script: | + bonus bLuk,2; bonus bHPrecovRate,10; bonus bSPrecovRate,10; bonus3 bAutoSpellWhenHit,"WZ_QUAGMIRE",3,20; bonus bMdef,1; + - Id: 2443 + AegisName: Fish_Shoes + Name: Fisher's Boots + Type: Armor + Buy: 10 + Weight: 250 + Locations: + Shoes: true + - Id: 2444 + AegisName: Krieger_Shoes1 + Name: Glorious Shoes + Type: Armor + Buy: 20 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Shoes: true + EquipLevelMin: 81 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHPRate,10; bonus2 bSubRace,RC_DemiHuman,4; bonus2 bSubRace,RC_Player_Human,4; bonus3 bAutoSpellWhenHit,"AL_INCAGI",1,10; + - Id: 2445 + AegisName: Krieger_Shoes2 + Name: Glorious Popularized Shoes + Type: Armor + Buy: 20 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Shoes: true + EquipLevelMin: 61 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHPRate,5; bonus bMaxSPRate,5; + - Id: 2446 + AegisName: Krieger_Shoes3 + Name: Glorious Mass-Production Shoes + Type: Armor + Buy: 20 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Shoes: true + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHPRate,5; + - Id: 2447 + AegisName: Military_Boots + Name: Army Boots + Type: Armor + Weight: 1000 + Defense: 5 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Shoes: true + Refineable: true + - Id: 2448 + AegisName: Air_Boss + Name: Air Boss + Type: Armor + Weight: 500 + Defense: 2 + Locations: + Shoes: true + Refineable: true + Script: | + bonus bAgi,1; + - Id: 2449 + AegisName: Variant_Shoes_M + Name: Variant Shoes + Type: Armor + Buy: 20 + Weight: 500 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Locations: + Shoes: true + EquipLevelMin: 85 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHPRate,20-getrefine(); bonus bMaxSPRate,20-getrefine(); bonus bDef,getrefine()/2; + - Id: 2450 + AegisName: Vital_Tree_Shoes + Name: Vital Tree Shoes + Type: Armor + Buy: 20 + Weight: 500 + Defense: 4 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Locations: + Shoes: true + EquipLevelMin: 60 + Refineable: true + Script: | + bonus bMaxHPrate,10; bonus2 bHPRegenRate,30,10000; bonus bHealpower2,5; bonus bAddItemHealRate,5; bonus bMdef,3; bonus bVit,2; + - Id: 2501 + AegisName: Hood + Name: Hood + Type: Armor + Buy: 1000 + Weight: 200 + Defense: 1 + Locations: + Garment: true + Refineable: true + - Id: 2502 + AegisName: Hood_ + Name: Hood + Type: Armor + Buy: 1000 + Weight: 200 + Defense: 1 + Slots: 1 + Locations: + Garment: true + Refineable: true + - Id: 2503 + AegisName: Muffler + Name: Muffler + Type: Armor + Buy: 5000 + Weight: 400 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Garment: true + Refineable: true + - Id: 2504 + AegisName: Muffler_ + Name: Muffler + Type: Armor + Buy: 5000 + Weight: 400 + Defense: 2 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Garment: true + Refineable: true + - Id: 2505 + AegisName: Manteau + Name: Manteau + Type: Armor + Buy: 32000 + Weight: 600 + Defense: 4 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + StarGladiator: true + Swordman: true + Taekwon: true + Thief: true + Locations: + Garment: true + Refineable: true + - Id: 2506 + AegisName: Manteau_ + Name: Manteau + Type: Armor + Buy: 32000 + Weight: 600 + Defense: 4 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + StarGladiator: true + Swordman: true + Taekwon: true + Thief: true + Locations: + Garment: true + Refineable: true + - Id: 2507 + AegisName: Cape_Of_Ancient_Lord + Name: Ancient Cape + Type: Armor + Buy: 82000 + Weight: 600 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Garment: true + EquipLevelMin: 40 + Refineable: true + Script: | + bonus bAgi,1; + - Id: 2508 + AegisName: Ragamuffin_Cape + Name: Ragamuffin Manteau + Type: Armor + Buy: 56000 + Weight: 500 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Garment: true + Refineable: true + Script: | + bonus bUnbreakableGarment; bonus bMdef,10; + - Id: 2509 + AegisName: Clack_Of_Servival + Name: Survivor's Manteau + Type: Armor + Buy: 20000 + Weight: 550 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Garment: true + EquipLevelMin: 75 + Refineable: true + Script: | + bonus bMdef,5; bonus bVit,10; + - Id: 2510 + AegisName: Novice_Hood + Name: Somber Novice Hood + Type: Armor + Buy: 1 + Weight: 1 + Defense: 2 + Jobs: + Novice: true + SuperNovice: true + Locations: + Garment: true + Script: | + bonus2 bSubEle,Ele_Neutral,20; + - Id: 2511 + AegisName: Skeleton's_Cape + Name: Skeleton Manteau + Type: Armor + Buy: 5000 + Weight: 700 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Garment: true + EquipLevelMin: 75 + Refineable: true + Script: | + bonus bStr,2; bonus bInt,-3; bonus bDex,2; bonus bVit,-3; bonus bLuk,2; bonus bAgi,-4; + - Id: 2512 + AegisName: Novice_Manteau + Name: Novice Manteau + Type: Armor + Buy: 50000 + Weight: 500 + Defense: 2 + Slots: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Garment: true + EquipLevelMin: 40 + Refineable: true + Script: | + bonus2 bSubEle,Ele_Neutral,10; + - Id: 2513 + AegisName: Celestial_Robe + Name: Heavenly Maiden Robe + Type: Armor + Buy: 20 + Weight: 500 + Defense: 3 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Garment: true + EquipLevelMin: 80 + Refineable: true + - Id: 2514 + AegisName: Pauldron + Name: Pauldron + Type: Armor + Buy: 20 + Weight: 800 + Defense: 5 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Garment: true + EquipLevelMin: 80 + Refineable: true + - Id: 2515 + AegisName: Wing_Of_Eagle + Name: Eagle Wing + Type: Armor + Buy: 20000 + Weight: 300 + Defense: 1 + Slots: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Garment: true + EquipLevelMin: 85 + Refineable: true + - Id: 2516 + AegisName: Falcon_Robe + Name: Falcon Muffler + Type: Armor + Buy: 30000 + Weight: 400 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Garment: true + EquipLevelMin: 65 + Refineable: true + Script: | + bonus bFlee,15; bonus bFlee2,5; + - Id: 2517 + AegisName: Vali's_Manteau + Name: Vali's Manteau + Type: Armor + Buy: 30000 + Weight: 600 + Defense: 4 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Garment: true + EquipLevelMin: 65 + Refineable: true + Script: | + bonus2 bSubEle,Ele_Neutral,15; + - Id: 2518 + AegisName: Morpheus's_Shawl + Name: Morpheus's Shawl + Type: Armor + Buy: 30000 + Weight: 600 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Garment: true + EquipLevelMin: 33 + Refineable: true + Script: | + bonus bMaxSPrate,10; bonus bMdef,3; + - Id: 2519 + AegisName: Morrigane's_Manteau + Name: Morrigane's Manteau + Type: Armor + Buy: 30000 + Weight: 600 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Garment: true + EquipLevelMin: 61 + Refineable: true + Script: | + bonus bLuk,2; bonus bFlee2,8; + - Id: 2520 + AegisName: Goibne's_Shoulder_Arms + Name: Goibne's Spaulders + Type: Armor + Buy: 30000 + Weight: 700 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Garment: true + EquipLevelMin: 54 + Refineable: true + Script: | + bonus bLongAtkDef,10; bonus bMdef,2; bonus bVit,1; + - Id: 2521 + AegisName: Angel's_Warmth + Name: Angelic Cardigan + Type: Armor + Buy: 10000 + Weight: 400 + Defense: 2 + Slots: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Garment: true + EquipLevelMin: 20 + Refineable: true + Script: | + bonus bHPrecovRate,5; + - Id: 2522 + AegisName: Undershirt + Name: Undershirt + Type: Armor + Buy: 20000 + Weight: 150 + Defense: 2 + Locations: + Garment: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bMdef,1; + - Id: 2523 + AegisName: Undershirt_ + Name: Undershirt + Type: Armor + Buy: 20000 + Weight: 150 + Defense: 2 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bMdef,1; + - Id: 2524 + AegisName: Valkyrie_Manteau + Name: Valkyrian Manteau + Type: Armor + Weight: 500 + Defense: 3 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Locations: + Garment: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bUnbreakableGarment; 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); + - Id: 2525 + AegisName: Cape_Of_Ancient_Lord_ + Name: Ancient Cape + Type: Armor + Buy: 82000 + Weight: 600 + Defense: 2 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Garment: true + EquipLevelMin: 40 + Refineable: true + Script: | + bonus bAgi,1; + - Id: 2526 + AegisName: Dragon_Scale_Coat + Name: Coat of Dragon Scale + Type: Armor + Buy: 20 + Weight: 10 + Defense: 4 + Locations: + Garment: true + EquipLevelMin: 50 + Refineable: true + - Id: 2527 + AegisName: Dragon_Breath + Name: Dragon Breath + Type: Armor + Buy: 20 + Weight: 600 + Defense: 4 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Locations: + Garment: true + EquipLevelMin: 48 + Refineable: true + Script: | + bonus2 bSubRace,RC_Dragon,15; + - Id: 2528 + AegisName: Wool_Scarf + Name: Wool Scarf + Type: Armor + Buy: 20 + Weight: 500 + Defense: 3 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Locations: + Garment: true + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bMdef,4; + - Id: 2529 + AegisName: Rider_Insignia + Name: Rider Insignia + Type: Armor + Buy: 20 + Weight: 500 + Defense: 4 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Locations: + Garment: true + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bAgi,2; + - Id: 2530 + AegisName: Rider_Insignia_ + Name: Rider Insignia + Type: Armor + Buy: 20 + Weight: 500 + Defense: 4 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Locations: + Garment: true + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bAgi,2; + - Id: 2531 + AegisName: Ulfhedinn + Name: Ulfhedinn + Type: Armor + Buy: 20 + Weight: 700 + Defense: 3 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Classes: + Upper: true + Locations: + Garment: true + EquipLevelMin: 70 + Refineable: true + Script: | + bonus3 bAutoSpellWhenHit,"NPC_STONESKIN",6,20; + - Id: 2532 + AegisName: Mithril_Magic_Cape + Name: Mithril Magic Cape + Type: Armor + Buy: 20 + Weight: 400 + Defense: 3 + Slots: 1 + Jobs: + Acolyte: true + Archer: true + BardDancer: true + Hunter: true + Mage: true + Monk: true + Priest: true + Sage: true + Wizard: true + Classes: + Upper: true + Locations: + Garment: true + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bMdef,3; bonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,200,BF_MAGIC,0; + - Id: 2533 + AegisName: Freyja_Cape + Name: Freyja Cape + Type: Armor + Weight: 200 + Defense: 10 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Garment: true + Script: | + bonus2 bSubRace,RC_DemiHuman,15; bonus2 bSubRace,RC_Player_Human,15; + - Id: 2534 + AegisName: Ruffler + Name: Ruffler + Type: Armor + Buy: 20 + Defense: 10 + Locations: + Garment: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bSubEle,Ele_Neutral,17; bonus bFlee,17; + - Id: 2535 + AegisName: Cloak_Of_Survival_C + Name: Cloak Of Survival + Type: Armor + Buy: 1 + Defense: 5 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Garment: true + Script: | + bonus bVit,10; bonus bMdef,10; + - Id: 2536 + AegisName: Skin_Of_Ventus + Name: Skin of Ventus + Type: Armor + Buy: 20 + Weight: 250 + Defense: 2 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Garment: true + EquipLevelMin: 60 + Refineable: true + Script: | + bonus bMdef,2; bonus bMaxHP,200; bonus bFlee,10; + - Id: 2537 + AegisName: Diabolus_Manteau + Name: Diabolus Manteau + Type: Armor + Buy: 20 + Weight: 250 + Defense: 5 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Classes: + Upper: true + Locations: + Garment: true + Refineable: true + Script: | + bonus2 bSubEle,Ele_Neutral,5; bonus bMaxHP,100; bonus2 bAddDamageClass,1916,10; bonus2 bAddDamageClass,1917,10; + - Id: 2538 + AegisName: Commander_Manteau + Name: Captain's Manteau + Type: Armor + Buy: 10 + Defense: 4 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Ninja: true + Rogue: true + StarGladiator: true + Swordman: true + Taekwon: true + Thief: true + Locations: + Garment: true + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,50; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; + - Id: 2539 + AegisName: Commander_Manteau_ + Name: Commander's Manteau + Type: Armor + Buy: 10 + Defense: 3 + Slots: 1 + Jobs: + Acolyte: true + Archer: true + BardDancer: true + Hunter: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Garment: true + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,50; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; + - Id: 2540 + AegisName: Sheriff_Manteau + Name: Sheriff's Manteau + Type: Armor + Buy: 10 + Defense: 3 + Slots: 1 + Jobs: + Gunslinger: true + Locations: + Garment: true + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,50; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; + - Id: 2541 + AegisName: Asprika + Name: Asprika + Type: Armor + Buy: 20 + Weight: 400 + Defense: 5 + Locations: + Garment: true + EquipLevelMin: 94 + Script: | + 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; + - Id: 2542 + AegisName: Flame_Manteau + Name: Flame Manteau of Naght Sieger + Type: Armor + Buy: 20 + Weight: 70 + Defense: 4 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Locations: + Garment: true + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bMaxHPRate,5; bonus bMdef,2; bonus bMatkRate,1; bonus2 bAddEle,Ele_Fire,2; + - Id: 2543 + AegisName: Sylphid_Manteau + Name: Sylphid Manteau + Type: Armor + Buy: 20 + Defense: 9 + Locations: + Garment: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bFlee,13; bonus2 bSubEle,Ele_Neutral,13; bonus bFlee2,1; + - Id: 2544 + AegisName: Leather_Of_Tendrilion + Name: Leather of Tendrilion + Type: Armor + Buy: 20 + Weight: 300 + Defense: 3 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Classes: + Upper: true + Locations: + Garment: true + Refineable: true + Script: | + bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Earth,5; bonus2 bSubRace,RC_Plant,5; bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5; + - Id: 2545 + AegisName: Musika + Name: Musika + Type: Armor + Buy: 20 + Weight: 500 + Defense: 2 + Slots: 1 + Jobs: + Monk: true + Priest: true + Classes: + Upper: true + Locations: + Garment: true + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bMdef,3; bonus3 bAutoSpellwhenhit,"AL_HEAL",max(1,getskilllv("AL_HEAL")),20; + - Id: 2546 + AegisName: Beach_Manteau + Name: Beach Manteau + Type: Armor + Buy: 20 + Weight: 600 + Slots: 1 + Locations: + Garment: true + Refineable: true + Script: | + bonus bStr,1; bonus bInt,1; bonus2 bSubEle,Ele_Fire,10; + - Id: 2547 + AegisName: Cheap_Running_Shirts + Name: Cheap Undershirt + Type: Armor + Defense: 8 + Locations: + Garment: true + Refineable: true + Script: | + bonus bDex,2; bonus bFlee,10; bonus2 bSubEle,Ele_Neutral,10; bonus bMdef,1; + - Id: 2548 + AegisName: Muffler_C + Name: Neo Muffler + Type: Armor + Defense: 5 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Locations: + Garment: true + EquipLevelMin: 95 + Script: | + bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus bMaxHPrate,10; bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Fire,5; bonus2 bSubEle,Ele_Holy,5; bonus2 bSubEle,Ele_Dark,5; + - Id: 2549 + AegisName: Krieger_Muffler1 + Name: Glorious Muffler + Type: Armor + Buy: 20 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Garment: true + EquipLevelMin: 81 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHPRate,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; + - Id: 2550 + AegisName: Fisher's_Muffler + Name: Fisher's Muffler + Type: Armor + Buy: 20 + Weight: 200 + Locations: + Garment: true + Refineable: true + - Id: 2551 + AegisName: Rider_Insignia_M + Name: Crest of the Rider + Type: Armor + Buy: 20 + Weight: 500 + Defense: 4 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Locations: + Garment: true + EquipLevelMin: 55 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAgi,2; + - Id: 2552 + AegisName: Mithril_Magic_Cape_M + Name: Mithril Magic Manteau + Type: Armor + Buy: 20 + Weight: 400 + Defense: 3 + Slots: 1 + Jobs: + Acolyte: true + Archer: true + BardDancer: true + Hunter: true + Mage: true + Monk: true + Priest: true + Sage: true + Wizard: true + Classes: + Upper: true + Locations: + Garment: true + EquipLevelMin: 70 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,3; bonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,200,BF_MAGIC,0; + - Id: 2553 + AegisName: Dragon_Manteau + Name: Dragon Manteau + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 5 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Locations: + Garment: true + Refineable: true + Script: | + bonus bAgi,1; bonus bMdef,5; + - Id: 2554 + AegisName: Piece_Of_Angent_Skin + Name: Nydhorgg's Shadow Garb + Type: Armor + Buy: 20 + Weight: 400 + Defense: 5 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Locations: + Garment: true + EquipLevelMin: 90 + Refineable: true + Script: | + 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; + - Id: 2601 + AegisName: Ring + Name: Ring + Type: Armor + Buy: 30000 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 20 + Script: | + bonus bStr,2; + - Id: 2602 + AegisName: Earring + Name: Earring + Type: Armor + Buy: 30000 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 20 + Script: | + bonus bInt,2; + - Id: 2603 + AegisName: Necklace + Name: Necklace + Type: Armor + Buy: 30000 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 20 + Script: | + bonus bVit,2; + - Id: 2604 + AegisName: Glove + Name: Glove + Type: Armor + Buy: 30000 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 20 + Script: | + bonus bDex,2; + - Id: 2605 + AegisName: Brooch + Name: Brooch + Type: Armor + Buy: 30000 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 20 + Script: | + bonus bAgi,2; + - Id: 2607 + AegisName: Clip + Name: Clip + Type: Armor + Buy: 30000 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bMaxSP,10; + - Id: 2608 + AegisName: Rosary + Name: Rosary + Type: Armor + Buy: 15000 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 20 + Script: | + bonus bMdef,5; bonus bLuk,2; + - Id: 2609 + AegisName: Skul_Ring + Name: Skull Ring + Type: Armor + Buy: 10000 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + - Id: 2610 + AegisName: Gold_Ring + Name: Gold Ring + Type: Armor + Buy: 30000 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + - Id: 2611 + AegisName: Silver_Ring + Name: Silver Ring + Type: Armor + Buy: 20000 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + - Id: 2612 + AegisName: Flower_Ring + Name: Flower Ring + Type: Armor + Buy: 1500 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + - Id: 2613 + AegisName: Diamond_Ring + Name: Diamond Ring + Type: Armor + Buy: 45000 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + - Id: 2614 + AegisName: An_Eye_Of_Dullahan + Name: Eye of Dullahan + Type: Armor + Buy: 90000 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 50 + Script: | + bonus2 bResEff,Eff_Poison,10000; bonus2 bSubRace,RC_Undead,4; bonus2 bSubRace,RC_Demon,4; + - Id: 2615 + AegisName: Safety_Ring + Name: Safety Ring + Type: Armor + Buy: 75000 + Weight: 100 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 40 + Script: | + bonus bMdef,3; + - Id: 2616 + AegisName: Critical_Ring + Name: Critical Ring + Type: Armor + Buy: 75000 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 40 + Script: | + bonus bCritical,5; + - Id: 2617 + AegisName: Mitten_Of_Presbyter + Name: Celebrant's Mitten + Type: Armor + Buy: 2 + Weight: 100 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 35 + Script: | + bonus bInt,1; + - Id: 2618 + AegisName: Matyr's_Flea_Guard + Name: Matyr's Leash + Type: Armor + Buy: 2 + Weight: 100 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 35 + Script: | + bonus bAgi,1; + - Id: 2619 + AegisName: Thimble_Of_Archer + Name: Bow Thimble + Type: Armor + Buy: 10000 + Weight: 100 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 65 + Script: | + bonus bLongAtkRate,3; + - Id: 2620 + AegisName: Ring_Of_Rogue + Name: Rogue's Treasure + Type: Armor + Buy: 10000 + Weight: 100 + Jobs: + Assassin: true + Ninja: true + Rogue: true + Thief: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 70 + Script: | + if(readparam(bStr)>=90){ bonus bHit,10; bonus bFlee,10; } if(readparam(bAgi)>=90){ bonus bBaseAtk,10; bonus bCritical,10; } + - Id: 2621 + AegisName: Ring_ + Name: Ring + Type: Armor + Buy: 30000 + Weight: 200 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 90 + Script: | + bonus bStr,1; + - Id: 2622 + AegisName: Earring_ + Name: Earring + Type: Armor + Buy: 30000 + Weight: 200 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 90 + Script: | + bonus bInt,1; + - Id: 2623 + AegisName: Necklace_ + Name: Necklace + Type: Armor + Buy: 30000 + Weight: 200 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 90 + Script: | + bonus bVit,1; + - Id: 2624 + AegisName: Glove_ + Name: Glove + Type: Armor + Buy: 30000 + Weight: 200 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 90 + Script: | + bonus bDex,1; + - Id: 2625 + AegisName: Brooch_ + Name: Brooch + Type: Armor + Buy: 30000 + Weight: 200 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 90 + Script: | + bonus bAgi,1; + - Id: 2626 + AegisName: Rosary_ + Name: Rosary + Type: Armor + Buy: 15000 + Weight: 200 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 90 + Script: | + bonus bMdef,3; bonus bLuk,1; + - Id: 2627 + AegisName: Belt + Name: Belt + Type: Armor + Buy: 20000 + Weight: 1200 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 25 + - Id: 2628 + AegisName: Novice_Armlet + Name: Novice Armlet + Type: Armor + Buy: 400 + Weight: 200 + Slots: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + - Id: 2629 + AegisName: Magingiorde + Name: Megingjard + Type: Armor + Buy: 20 + Weight: 8000 + Defense: 2 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 94 + Script: | + bonus bStr,40; bonus bMdef,7; + - Id: 2630 + AegisName: Brysinggamen + Name: Brisingamen + Type: Armor + Buy: 20 + Weight: 1500 + Defense: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 94 + Script: | + bonus bStr,6; bonus bAgi,6; bonus bVit,6; bonus bInt,6; bonus bLuk,10; bonus bMdef,5; + - Id: 2631 + AegisName: First_Age_Ring + Name: Celebration Ring + Type: Armor + Buy: 1 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + - Id: 2634 + AegisName: Bridegroom_Ring + Name: Wedding Ring + Type: Armor + Gender: Male + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + skill "WE_MALE",1; skill "WE_FEMALE",1; skill "WE_CALLPARTNER",1; + - Id: 2635 + AegisName: Bride_Ring + Name: Wedding Ring + Type: Armor + Gender: Female + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + skill "WE_MALE",1; skill "WE_FEMALE",1; skill "WE_CALLPARTNER",1; + - Id: 2636 + AegisName: Gold_Ring_ + Name: Gold Christmas Ring + Type: Armor + Buy: 30000 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bLuk,1; + - Id: 2637 + AegisName: Silver_Ring_ + Name: Silver Christmas Ring + Type: Armor + Buy: 20000 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bLuk,1; + - Id: 2638 + AegisName: Exorcize_Sachet + Name: Sacred Incense + Type: Armor + Buy: 20000 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bStr,1; bonus bLuk,1; + - Id: 2639 + AegisName: Purification_Sachet + Name: Occult Incense + Type: Armor + Buy: 20000 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bInt,1; bonus bAgi,1; + - Id: 2640 + AegisName: Kafra_Ring + Name: Kafra Ring + Type: Armor + Buy: 40000 + Weight: 200 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bStr,1; bonus bInt,1; bonus bAgi,1; bonus bLuk,1; bonus bMdef,1; + - Id: 2641 + AegisName: Fashionable_Sack + Name: Fashion Hip Sack + Type: Armor + Buy: 20 + Weight: 700 + Jobs: + Alchemist: true + Blacksmith: true + Merchant: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 50 + Script: | + bonus bStr,2; + - Id: 2642 + AegisName: Serin's_Gold_Ring + Name: Serin's Gold Ring + Type: Armor + Buy: 20 + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 2643 + AegisName: Serin's_Gold_Ring_ + Name: Serin's Gold Ring + Type: Armor + Buy: 45000 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + - Id: 2644 + AegisName: The_Sign_ + Name: The Sign + Type: Armor + Buy: 2 + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; + - Id: 2645 + AegisName: Moonlight_Ring + Name: Moonlight Ring + Type: Armor + Buy: 40000 + Weight: 200 + Jobs: + Assassin: true + Ninja: true + Rogue: true + Thief: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 60 + Script: | + bonus bMdef,2; + - Id: 2646 + AegisName: Bunch_Of_Carnation + Name: Bunch of Carnations + Type: Armor + Buy: 2 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bAllStats,3; + - Id: 2647 + AegisName: Nile_Rose + Name: Nile Rose + Type: Armor + Buy: 2 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,10; + - Id: 2648 + AegisName: Morpheus's_Ring + Name: Morpheus's Ring + Type: Armor + Buy: 30000 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 33 + Script: | + bonus bInt,1; bonus bMaxSPrate,5; + - Id: 2649 + AegisName: Morpheus's_Armlet + Name: Morpheus's Bracelet + Type: Armor + Buy: 30000 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 33 + Script: | + bonus bInt,1; bonus bMaxSPrate,5; + - Id: 2650 + AegisName: Morrigane's_Belt + Name: Morrigane's Belt + Type: Armor + Buy: 30000 + Weight: 200 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 61 + Script: | + bonus bBaseAtk,5; bonus bCritical,3; + - Id: 2651 + AegisName: Morrigane's_Pendant + Name: Morrigane's Pendant + Type: Armor + Buy: 30000 + Weight: 200 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 61 + Script: | + bonus bStr,2; bonus bCritical,3; + - Id: 2652 + AegisName: Cursed_Lucky_Brooch + Name: Goddess of Fortune's Cursed Brooch + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 40 + Script: | + bonus bCritical,6; bonus2 bAddEff2,Eff_Curse,50; + - Id: 2653 + AegisName: Sacrifice_Ring + Name: Sacrifice Ring + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 90 + - Id: 2654 + AegisName: Shinobi's_Sash + Name: Shinobi Sash + Type: Armor + Buy: 20000 + Weight: 300 + Defense: 1 + Jobs: + Assassin: true + Ninja: true + Rogue: true + Thief: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 30 + Script: | + bonus bStr,1; bonus bAgi,1; bonus bMdef,1; + - Id: 2655 + AegisName: Bloody_Iron_Ball + Name: Bloodied Shackle Ball + Type: Armor + Buy: 50000 + Weight: 4000 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + - Id: 2656 + AegisName: Hyper_Changer + Name: Armor Charm + Type: Armor + Buy: 20000 + Weight: 1000 + Defense: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bMaxHP,50; + - Id: 2657 + AegisName: Lab_Passport + Name: Laboratory Permit + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + - Id: 2658 + AegisName: Nile_Rose_ + Name: Nile Rose + Type: Armor + Buy: 2 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bMaxHP,10; + - Id: 2659 + AegisName: Vesper_Core01 + Name: Vesper Core 01 + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Classes: + Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bMdef,3; bonus bInt,2; bonus bMaxSPrate,5; + - Id: 2660 + AegisName: Vesper_Core02 + Name: Vesper Core 02 + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Classes: + Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bMdef,3; bonus bStr,3; bonus bBaseAtk,10; + - Id: 2661 + AegisName: Vesper_Core03 + Name: Vesper Core 03 + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Classes: + Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bMdef,3; bonus bAgi,3; bonus bFlee,5; + - Id: 2662 + AegisName: Vesper_Core04 + Name: Vesper Core 04 + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Classes: + Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bMdef,3; bonus bDex,3; bonus bHit,10; + - Id: 2663 + AegisName: Gauntlet_Of_Accuracy + Name: Gauntlet of Hit + Type: Armor + Buy: 20 + Weight: 900 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 75 + Script: | + bonus bHit,15; bonus bStr,1; + - Id: 2664 + AegisName: Scarf_Belt + Name: Belcarf + Type: Armor + Buy: 20 + Weight: 200 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 75 + Script: | + bonus bDex,2; bonus bInt,1; + - Id: 2665 + AegisName: Ring_Of_Exorcism + Name: Exorcising Ring + Type: Armor + Buy: 20 + Weight: 500 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 60 + Script: | + bonus bMdef,1; bonus2 bExpAddRace,RC_Undead,5; bonus2 bExpAddRace,RC_Demon,5; + - Id: 2666 + AegisName: Lamp_Of_Hope + Name: Lantern of Hope + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bStr,2; bonus2 bResEff,Eff_Blind,1000; + - Id: 2667 + AegisName: Glove_Of_Archer + Name: Renown Archer's Gloves + Type: Armor + Buy: 20 + Weight: 300 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 60 + Script: | + bonus bHit,5; bonus bCritical,5; bonus bDex,1; + - Id: 2668 + AegisName: Women's_Glory + Name: Woman Glory + Type: Armor + Weight: 500 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 2669 + AegisName: Golden_Necklace_ + Name: RJC Necklace + Type: Armor + Buy: 30000 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bMaxSP,10; + - Id: 2670 + AegisName: Ring_Of_Longing + Name: Ring of Longing + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 30 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bFlee,5; + - Id: 2671 + AegisName: Thimble_Of_Archer_ + Name: Bow Thimble + Type: Armor + Buy: 10000 + Weight: 100 + Slots: 1 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 65 + Script: | + bonus bLongAtkRate,3; + - Id: 2672 + AegisName: Anniversary_Ring + Name: 3rd Anniversary Celebration Ring + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + - Id: 2673 + AegisName: Shining_Ring + Name: Warrior's Shining Ring + Type: Armor + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 48 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bBaseAtk,10; bonus bSPrecovRate,3; + - Id: 2674 + AegisName: Honor_Ring + Name: Ring of Honor + Type: Armor + Buy: 20 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 2675 + AegisName: Lord_Ring + Name: Lord Ring + Type: Armor + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bAllStats,3; + - Id: 2676 + AegisName: Hunter_Earring + Name: Hunter's Earring + Type: Armor + Buy: 20 + Weight: 300 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddMonsterDropItem,7618,100; + - Id: 2677 + AegisName: Spiritual_Ring + Name: Spiritual Ring + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bInt,2; bonus bDex,1; + - Id: 2678 + AegisName: Ring_Of_Flame_Lord + Name: Ring Of Flame Lord + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Classes: + Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bStr,2; bonus bVit,1; bonus bBaseAtk,15; 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; + - Id: 2679 + AegisName: Ring_Of_Resonance + Name: Ring Of Resonance + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Classes: + Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bAgi,2; bonus bVit,1; bonus bMdef,2; 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; + - Id: 2680 + AegisName: Lesser_Elemental_Ring + Name: Lesser Elemental Ring + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bAllStats,1; bonus3 bAutoSpell,"WZ_ESTIMATION",1,80; bonus3 bAutoSpell,"MC_IDENTIFY",1,50; bonus3 bAutoSpell,"TF_PICKSTONE",1,100; bonus3 bAutoSpell,"BS_GREED",1,10; bonus3 bAutoSpellWhenHit,"TK_RUN",5,20; bonus3 bAutoSpellWhenHit,"TK_HIGHJUMP",3,30; bonus3 bAutoSpellWhenHit,"NV_FIRSTAID",1,100; bonus3 bAutoSpellWhenHit,"TF_BACKSLIDING",1,50; + - Id: 2681 + AegisName: Republic_Ring + Name: Republic Anniversary Ring + Type: Armor + Buy: 20 + Weight: 1000 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bAllStats,3; + - Id: 2682 + AegisName: Ring_Of_Water + Name: Ring of Water + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 20 + Script: | + bonus2 bSubEle,Ele_Water,5; + - Id: 2683 + AegisName: Ring_Of_Fire + Name: Ring of Fire + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 20 + Script: | + bonus2 bSubEle,Ele_Fire,5; + - Id: 2684 + AegisName: Ring_Of_Wind + Name: Ring of Wind + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 20 + Script: | + bonus2 bSubEle,Ele_Wind,5; + - Id: 2685 + AegisName: Ring_Of_Earth + Name: Ring of Earth + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 20 + Script: | + bonus2 bSubEle,Ele_Earth,5; + - Id: 2686 + AegisName: Elven_Ears_C + Name: Elven Ears + Type: Armor + Buy: 1 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + EquipLevelMin: 1 + View: 73 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,1; + - Id: 2687 + AegisName: Steel_Flower_C + Name: Steel Flower + Type: Armor + Buy: 1 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 56 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bSubRace,RC_Plant,3; + - Id: 2688 + AegisName: Critical_Ring_C + Name: Critical Ring + Type: Armor + Buy: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bCritical,10; + - Id: 2689 + AegisName: Earring_C + Name: Earring + Type: Armor + Buy: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,3; + - Id: 2690 + AegisName: Ring_C + Name: Ring + Type: Armor + Buy: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,4; + - Id: 2691 + AegisName: Necklace_C + Name: Necklace + Type: Armor + Buy: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bVit,4; + - Id: 2692 + AegisName: Glove_C + Name: Glove + Type: Armor + Buy: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,4; + - Id: 2693 + AegisName: Brooch_C + Name: Brooch + Type: Armor + Buy: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAgi,4; + - Id: 2694 + AegisName: Rosary_C + Name: Rosary + Type: Armor + Buy: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,5; bonus bLuk,4; + - Id: 2695 + AegisName: Safety_Ring_C + Name: Safety Ring + Type: Armor + Buy: 1 + Defense: 5 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,5; + - Id: 2696 + AegisName: Vesper_Core01_C + Name: Vesper Core 01 + Type: Armor + Buy: 1 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,3; bonus bInt,2; bonus bMaxSPrate,5; + - Id: 2697 + AegisName: Vesper_Core02_C + Name: Vesper Core 02 + Type: Armor + Buy: 1 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,3; bonus bStr,3; bonus bBaseAtk,10; + - Id: 2698 + AegisName: Vesper_Core03_C + Name: Vesper Core 03 + Type: Armor + Buy: 1 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,3; bonus bAgi,3; bonus bFlee,5; + - Id: 2699 + AegisName: Vesper_Core04_C + Name: Vesper Core 04 + Type: Armor + Buy: 1 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,3; bonus bDex,3; bonus bHit,10; + - Id: 2700 + AegisName: Red_Silk_Seal + Name: Red Silk Seal + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + Crusader: true + Knight: true + Swordman: true + Classes: + Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 60 + - Id: 2701 + AegisName: Orleans_Glove + Name: Orleans's Glove + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 90 + Script: | + bonus bDex,2; bonus bMatkRate,3; + - Id: 2702 + AegisName: Bison_Horn + Name: Bison Horn + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 90 + Script: | + bonus bAgi,2; + - Id: 2703 + AegisName: Expert_Ring + Name: Expert Ring + Type: Armor + Buy: 20 + Weight: 150 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 50 + Script: | + bonus bDelayRate,-5; bonus bUseSPrate,5; + - Id: 2704 + AegisName: Golden_Accessory + Name: Golden Accessories + Type: Armor + Buy: 20 + Weight: 100 + Defense: 4 + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,4; + - Id: 2705 + AegisName: Golden_Accessory2 + Name: Golden Accessories + Type: Armor + Buy: 20 + Weight: 100 + Defense: 4 + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddMonsterDropItem,12018,500; + - Id: 2706 + AegisName: Handcuff + Name: Arrest Handcuffs + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + - Id: 2707 + AegisName: Gusli + Name: GUSLI + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + - Id: 2708 + AegisName: Chinese_Handicraft + Name: Chinese Handicraft + Type: Armor + Weight: 50 + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus3 bAutoSpell,"MG_FIREBOLT",5,300; + - Id: 2709 + AegisName: 5_Anniversary_Coin + Name: 5th Anniversary Coin + Type: Armor + Buy: 2 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bAtkRate,5; bonus bMatkRate,5; + - Id: 2710 + AegisName: Bloody_Iron_Ball_C + Name: Bloody Iron Ball + Type: Armor + Buy: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bBaseAtk,30; + - Id: 2711 + AegisName: Spiritual_Ring_C + Name: Spiritual Ring + Type: Armor + Buy: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bInt,2; bonus bDex,2; + - Id: 2712 + AegisName: Ragnarok_Limited_Ed + Name: Ragnarok Limited Edition + Type: Armor + Weight: 300 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 30 + Script: | + bonus bVit,3; bonus bAgi,3; bonus bLuk,3; + - Id: 2713 + AegisName: Certificate_TW + Name: Certificate + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 2714 + AegisName: Marvelous_Pandent + Name: Marvelous Pendant + Type: Armor + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + - Id: 2715 + AegisName: Skul_Ring_ + Name: Skull Ring + Type: Armor + Buy: 10000 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus2 bSubRace,RC_Undead,1; + - Id: 2716 + AegisName: Librarian_Glove + Name: Librarian Glove + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Jobs: + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 80 + Script: | + bonus bMaxSP,20; + - Id: 2717 + AegisName: Pocket_Watch_ + Name: Pocket Watch + Type: Armor + Buy: 20 + Weight: 200 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 80 + - Id: 2718 + AegisName: Lunatic_Brooch + Name: Lunatic Brooch + Type: Armor + Buy: 20 + Weight: 200 + Slots: 1 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 65 + - Id: 2719 + AegisName: Iron_Wrist + Name: Iron Wrist + Type: Armor + Buy: 20 + Weight: 700 + Defense: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 50 + Script: | + bonus2 bSkillAtk,"SM_BASH",6; bonus2 bSkillAtk,"MC_MAMMONITE",6; + - Id: 2720 + AegisName: Medal_Swordman + Name: Medal of Honor + Type: Armor + Buy: 20 + Defense: 1 + Jobs: + Crusader: true + Knight: true + StarGladiator: true + Swordman: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 70 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bHit,10; bonus bMaxHP,500; bonus bMaxSP,50; bonus3 bAddEff,Eff_Stun,100,ATF_SHORT; + - Id: 2721 + AegisName: Medal_Thief + Name: Medal of Honor + Type: Armor + Buy: 20 + Defense: 1 + Jobs: + Assassin: true + Ninja: true + Rogue: true + Thief: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 70 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bFlee,10; bonus bMaxHP,300; bonus bMaxSP,80; bonus3 bAddEff,Eff_Poison,100,ATF_SHORT; + - Id: 2722 + AegisName: Medal_Acolyte + Name: Medal of Honor + Type: Armor + Buy: 20 + Defense: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 70 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bMdef,6; bonus bMaxHP,600; bonus3 bAddEff,Eff_Silence,100,ATF_SHORT; + - Id: 2723 + AegisName: Medal_Mage + Name: Medal of Honor + Type: Armor + Buy: 20 + Defense: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 70 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bMdef,6; bonus bMaxHP,600; bonus2 bAddEffWhenHit,Eff_Stone,100; + - Id: 2724 + AegisName: Medal_Archer + Name: Medal of Honor + Type: Armor + Buy: 20 + Defense: 1 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 70 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bCritical,10; bonus bMaxHP,300; bonus bMaxSP,80; bonus3 bAddEff,Eff_Blind,100,ATF_LONG; + - Id: 2725 + AegisName: Medal_Merchant + Name: Medal of Honor + Type: Armor + Buy: 20 + Defense: 1 + Jobs: + Alchemist: true + Blacksmith: true + Merchant: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 70 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bAspdRate,10; bonus bMaxHP,500; bonus bMaxSP,50; bonus3 bAddEff,Eff_Curse,100,ATF_SHORT; + - Id: 2726 + AegisName: Icarus_Wing + Name: Icarus Wings + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + Hunter: true + Classes: + Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 70 + Script: | + bonus bMaxSP,50; bonus bDex,3; + - Id: 2727 + AegisName: Bowman_Scarf + Name: Bowman Scarf + Type: Armor + Buy: 20 + Weight: 200 + Jobs: + Hunter: true + Classes: + Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 70 + Script: | + bonus bMaxSP,50; bonus bDex,3; + - Id: 2728 + AegisName: Cursed_Hand + Name: Cursed Hand + Type: Armor + Buy: 20 + Weight: 50 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 80 + Script: | + bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,30; bonus bHit,10; bonus bHPrecovRate,20; + - Id: 2729 + AegisName: Diabolus_Ring + Name: Diabolus Ring + Type: Armor + Buy: 20 + Weight: 50 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Classes: + Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bMaxHP,100; bonus bMaxSP,100; bonus bHealPower,5; bonus2 bAddDamageClass,1916,10; bonus2 bAddDamageClass,1917,10; + - Id: 2730 + AegisName: Morroc_Seal + Name: Seal of Continental Guard + Type: Armor + Buy: 20 + Weight: 50 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 80 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,50; bonus bAspdRate,3; + - Id: 2731 + AegisName: Morroc_Charm_Stone + Name: Rune Spellstone + Type: Armor + Buy: 20 + Weight: 50 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 80 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxSP,50; bonus bCastRate,-1; + - Id: 2732 + AegisName: Morroc_Ring + Name: Death Loop + Type: Armor + Buy: 20 + Weight: 50 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 80 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bCritical,5; + - Id: 2733 + AegisName: Medal_Gunner + Name: Sheriff Badge + Type: Armor + Buy: 20 + Defense: 1 + Jobs: + Gunslinger: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 70 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bCritical,10; bonus bMaxHP,300; bonus bMaxSP,80; bonus3 bAddEff,Eff_Blind,100,ATF_LONG; + - Id: 2734 + AegisName: Directive_A + Name: Directive + Type: Armor + Defense: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 2735 + AegisName: Directive_B + Name: Directive + Type: Armor + Defense: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 2736 + AegisName: Navel_Ring + Name: Navel Ring + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 75 + Script: | + bonus bDex,3; bonus bLuk,3; bonus bMdef,2; + - Id: 2737 + AegisName: Foot_Ring + Name: Foot Ring + Type: Armor + Buy: 20 + Weight: 150 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 75 + Script: | + bonus bVit,3; bonus bMaxHPRate,10; + - Id: 2738 + AegisName: Shiny_Coin + Name: Shiny Coin + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,6; bonus bMatkRate,6; + - Id: 2739 + AegisName: Ordinary_Coin + Name: Ordinary Coin + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; + - Id: 2740 + AegisName: Rusty_Coin + Name: Rusty Coin + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,3; bonus bMatkRate,3; + - Id: 2741 + AegisName: All_In_One_Ring + Name: All In One Ring + Type: Armor + Buy: 20 + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,1; bonus bNoCastCancel; bonus bCastRate,10; skill "AL_HEAL",1; skill "AL_TELEPORT",1; + - Id: 2743 + AegisName: Angelic_Ring + Name: Angelic Ring + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Classes: + Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 70 + Script: | + bonus bInt,2; bonus bDex,1; bonus bMdef,2; autobonus3 "{ bonus bHealPower,20; }",100,3000,"AL_HEAL","{ specialeffect2 EF_HEAL3; }"; autobonus3 "{ bonus bHealPower,20; }",100,3000,"AM_POTIONPITCHER","{ specialeffect2 EF_HEAL3; }"; autobonus3 "{ bonus bHealPower,20; }",100,3000,"PR_SANCTUARY","{ specialeffect2 EF_HEAL3; }"; + - Id: 2744 + AegisName: Sprint_Ring + Name: Sprint Ring + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Classes: + Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 70 + Script: | + bonus bCastrate,-10; bonus bDelayRate,-5; + - Id: 2745 + AegisName: Pinguicula_Corsage + Name: Pinguicula Corsage + Type: Armor + Buy: 20 + Weight: 200 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Classes: + Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 70 + Script: | + bonus bMdef,2; bonus bMaxSP,25; + - Id: 2746 + AegisName: Cold_Heart + Name: Cold Heart + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Jobs: + Assassin: true + Classes: + Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 80 + Script: | + bonus bAgi,3; + - Id: 2747 + AegisName: Black_Cat + Name: Black Cat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Jobs: + Rogue: true + Classes: + Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 80 + Script: | + bonus bDex,3; + - Id: 2748 + AegisName: Cursed_Star + Name: Cursed Star + Type: Armor + Buy: 20 + Weight: 200 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Classes: + Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 84 + Script: | + bonus bMdef,3; bonus bDex,2; bonus bLuk,-1; bonus2 bHPLossRate,50,10000; bonus3 bAddEff,Eff_Curse,200,ATF_WEAPON|ATF_LONG|ATF_TARGET; + UnEquipScript: | + heal -300,0; + - Id: 2749 + AegisName: Linen_Glove + Name: Linen Glove + Type: Armor + Buy: 20 + Weight: 120 + Defense: 1 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Classes: + Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 90 + Script: | + bonus bMdef,2; bonus bAgi,2; bonus bDex,1; + - Id: 2751 + AegisName: Academy_Badge + Name: Academy Of Badge + Type: Armor + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + if(BaseLevel<80) { bonus bMaxHP,400; bonus bMaxSP,200; } + - Id: 2752 + AegisName: Praxinus_C + Name: Praccsinos + Type: Armor + Buy: 2 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,5; bonus bMatkrate,5; + - Id: 2753 + AegisName: Beholder_Ring + Name: Beholder Ring + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bExpAddRace,RC_Formless,15; + - Id: 2754 + AegisName: Hallow_Ring + Name: Hallow Ring + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bExpAddRace,RC_undead,15; + - Id: 2755 + AegisName: Clamorous_Ring + Name: Clamorous Ring + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bExpAddRace,RC_Brute,15; + - Id: 2756 + AegisName: Chemical_Ring + Name: Chemical Ring + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bExpAddRace,RC_Plant,15; + - Id: 2757 + AegisName: Insecticide_Ring + Name: Insecticide Ring + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bExpAddRace,RC_Insect,15; + - Id: 2758 + AegisName: Fisher_Ring + Name: Fischer Ring + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bExpAddRace,RC_Fish,15; + - Id: 2759 + AegisName: Decussate_Ring + Name: Decussate Ring + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bExpAddRace,RC_Demon,15; + - Id: 2760 + AegisName: Bloody_Ring + Name: Bloody Ring + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bExpAddRace,RC_DemiHuman,15; + - Id: 2761 + AegisName: Satanic_Ring + Name: Satanic Ring + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bExpAddRace,RC_Angel,15; + - Id: 2762 + AegisName: Dragoon_Ring + Name: Dragon Ring + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bExpAddRace,RC_Dragon,15; + - Id: 2763 + AegisName: Skul_Ring_C + Name: Neo Skull Ring + Type: Armor + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 95 + Script: | + bonus bAtkRate,5; bonus bMatkrate,5; bonus bMaxHPrate,5; bonus2 bSkillHeal,"AL_HEAL",5; skill "MG_SIGHT",1; + - Id: 2764 + AegisName: Small_Fishing_Rod + Name: Small Fishing Rod + Type: Armor + Buy: 10 + Weight: 250 + Locations: + Right_Accessory: true + Left_Accessory: true + - Id: 2765 + AegisName: Novice_Figure + Name: Novice Figure + Type: Armor + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bMaxHP,70; if(BaseJob==Job_Novice||BaseJob==Job_SuperNovice) bonus bMaxHP,30; + - Id: 2766 + AegisName: Swordman_Figure + Name: Swordman Figure + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bVit,1; if(Class==Job_Swordman) bonus bDef,2; + - Id: 2767 + AegisName: Acolyte_Figure + Name: Acolyte Figure + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bInt,1; if(Class==Job_Acolyte) bonus bMaxSP,50; + - Id: 2768 + AegisName: Mage_Figure + Name: Mage Figure + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bInt,1; if(Class==Job_Mage) bonus bSPrecovRate,5; + - Id: 2769 + AegisName: Archer_Figure + Name: Archer Figure + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bDex,1; if(Class==Job_Archer) bonus bBaseAtk,10; + - Id: 2770 + AegisName: Thief_Figure + Name: Thief Figure + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bAgi,1; if(Class==Job_Thief) bonus bAspdRate,3; + - Id: 2771 + AegisName: Merchant_Figure + Name: Merchant Figure + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bStr,1; if(Class==Job_Merchant) bonus bCritical,5; + - Id: 2772 + AegisName: Krieger_Ring1 + Name: Glorious Ring + Type: Armor + Buy: 20 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 81 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,300; bonus2 bSubEle,Ele_Water,10; bonus2 bSubEle,Ele_Wind,10; bonus2 bSubEle,Ele_Earth,10; bonus2 bSubEle,Ele_Fire,10; bonus bAspdRate,5; bonus bCastrate,-3; bonus bHealPower,5; + - Id: 2773 + AegisName: Krieger_Ring2 + Name: Glorious Mass-Production Ring + Type: Armor + Buy: 20 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 61 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,2; + - Id: 2774 + AegisName: Krieger_Ring3 + Name: Glorious Popularized Ring + Type: Armor + Buy: 20 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,1; + - Id: 2775 + AegisName: Lure + Name: Lure + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + - Id: 2776 + AegisName: Cool_Towel + Name: Adventurer's Trusty Towel + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipScript: | + sc_start SC_SUMMER,INFINITE_TICK,0; + UnEquipScript: | + sc_end SC_SUMMER; + - Id: 2777 + AegisName: Shaman_Ring + Name: Shaman Ring + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 30 + Trade: + Override: 100 + NoDrop: true + NoGuildStorage: true + Script: | + bonus bUseSPrate,-5; + - Id: 2778 + AegisName: Shaman_Earing + Name: Shaman Earrings + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 30 + Trade: + Override: 100 + NoDrop: true + NoGuildStorage: true + Script: | + bonus bInt,2; + - Id: 2779 + AegisName: Dark_Knight_Belt + Name: Dark Knight Belt + Type: Armor + Buy: 20 + Weight: 500 + Defense: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 30 + Trade: + Override: 100 + NoDrop: true + NoGuildStorage: true + Script: | + bonus bStr,2; bonus bAgi,1; + - Id: 2780 + AegisName: Dark_Knight_Glove + Name: Dark Knight Glove + Type: Armor + Buy: 20 + Weight: 500 + Defense: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 80 + Trade: + Override: 100 + NoDrop: true + NoGuildStorage: true + Script: | + autobonus "{ bonus bAspdRate,2; }",10,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }"; + - Id: 2781 + AegisName: Aumdura's_Grace + Name: Aumdura's Benefit + Type: Armor + Weight: 100 + Defense: 1 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoGuildStorage: true + Script: | + bonus bAllStats,1; bonus bMdef,1; + - Id: 2782 + AegisName: Ring_Of_Wise_King + Name: Ring of the Ancient Wise King + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,50; bonus bMaxSP,20; + - Id: 2783 + AegisName: Eyes_Stone_Ring + Name: Eye Stone Ring + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 70 + Script: | + bonus bCritical,2; bonus bMaxSP,25; + - Id: 2784 + AegisName: Oh_Holy_Night + Name: Christmas Musicbox + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + skill "ALL_WEWISH",1; + - Id: 2785 + AegisName: Orleans_Glove_M + Name: Orlean's Gloves + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 90 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,2; bonus bMatkRate,3; + - Id: 2786 + AegisName: Spiritual_Ring_M + Name: Spiritual Ring + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bInt,2; bonus bDex,1; + - Id: 2787 + AegisName: Waterdrop_Brooch + Name: Waterdrop Brooch + Type: Armor + Buy: 20 + Weight: 200 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 75 + Script: | + bonus2 bSubEle,Ele_Water,5; bonus bMaxHP,80; bonus bMdef,2; + - Id: 2788 + AegisName: Bradium_Earing + Name: Bradium Earring + Type: Armor + Buy: 20 + Weight: 200 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 60 + Script: | + bonus bMatkRate,2; bonus bInt,1; bonus bDex,1; + - Id: 2789 + AegisName: Bradium_Ring + Name: Bradium Ring + Type: Armor + Buy: 20 + Weight: 200 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 60 + Script: | + bonus2 bAddClass,Class_All,2; bonus bStr,1; bonus bVit,1; + - Id: 2790 + AegisName: Bradium_Brooch + Name: Bradium Brooch + Type: Armor + Buy: 20 + Weight: 200 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 60 + Script: | + bonus bFlee,4; bonus bAspdRate,2; bonus bAgi,1; + - Id: 2791 + AegisName: Just_Got_Fish + Name: Fresh Fish + Type: Armor + Buy: 20 + Weight: 500 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bHit,3; + - Id: 2794 + AegisName: Magic_Stone_Ring + Name: Magic Stone Ring + Type: Armor + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 99 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,2; + - Id: 2795 + AegisName: Green_Apple_Ring + Name: Green Apple Ring + Type: Armor + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 99 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,6; if(JobLevel <30) { bonus bAllStats,(JobLevel/5); } + - Id: 2796 + AegisName: Magical_Stone + Name: Rocks + Type: Armor + Weight: 200 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 99 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddDamageClass,2047,10; bonus2 bAddDefMonster,2048,-10; bonus3 bAddMonsterIdDropItem,6152,2047,70; + - Id: 2797 + AegisName: Magical_Stone_ + Name: Rocks + Type: Armor + Weight: 200 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 99 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddDamageClass,2049,10; bonus2 bAddDefMonster,2050,-10; bonus3 bAddMonsterIdDropItem,6151,2049,70; + - Id: 2798 + AegisName: Will_Of_Exhausted_Angel + Name: Will Of Exhausted Angel + Type: Armor + Weight: 200 + Jobs: + Monk: true + Priest: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 99 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + if(strcharinfo(3)=="job3_arch02") { bonus2 bAddDefMonster,1761,50; bonus2 bAddDefMonster,1762,50; } + - Id: 2799 + AegisName: Kuirpenring + Name: Kuirpenring + Type: Armor + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bMdef,1; + - Id: 2800 + AegisName: Accelerator + Name: Accelerator + Type: Armor + Buy: 100000 + Weight: 100 + Slots: 1 + Jobs: + Blacksmith: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 99 + Script: | + bonus bAgi,2; + - Id: 2801 + AegisName: Hovering_Booster + Name: Hovering Booster + Type: Armor + Buy: 100000 + Weight: 2000 + Slots: 1 + Jobs: + Blacksmith: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 99 + Script: | + bonus bAgi,1; + - Id: 2802 + AegisName: Suicidal_Device + Name: Suicidal Device + Type: Armor + Buy: 500000 + Weight: 1000 + Slots: 1 + Jobs: + Blacksmith: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 99 + - Id: 2803 + AegisName: Shape_Shifter + Name: Shape Shifter + Type: Armor + Buy: 100000 + Weight: 500 + Slots: 1 + Jobs: + Blacksmith: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 99 + Script: | + bonus bInt,3; + - Id: 2804 + AegisName: Cooling_Device + Name: Cooling Device + Type: Armor + Buy: 100000 + Weight: 2500 + Slots: 1 + Jobs: + Blacksmith: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 99 + Script: | + bonus bDex,1; + - Id: 2805 + AegisName: Mag_Field_Generator + Name: Magnetic Field Generator + Type: Armor + Buy: 100000 + Weight: 6000 + Slots: 1 + Jobs: + Blacksmith: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 99 + Script: | + bonus bDex,1; + - Id: 2806 + AegisName: Barrier_Builder + Name: Barrier Builder + Type: Armor + Buy: 150000 + Weight: 8000 + Defense: 3 + Slots: 1 + Jobs: + Blacksmith: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 99 + Script: | + bonus bDex,1; + - Id: 2807 + AegisName: Repair_Kit + Name: Repair Kit + Type: Armor + Buy: 200000 + Weight: 400 + Slots: 1 + Jobs: + Blacksmith: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 99 + - Id: 2808 + AegisName: Camouflage_Generator + Name: Camouflague Generator + Type: Armor + Buy: 250000 + Weight: 1000 + Slots: 1 + Jobs: + Blacksmith: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 99 + Script: | + bonus bAgi,3; + - Id: 2809 + AegisName: High_Quality_Cooler + Name: High Quality Cooler + Type: Armor + Buy: 100000 + Weight: 2500 + Slots: 1 + Jobs: + Blacksmith: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 99 + Script: | + bonus bDex,1; + - Id: 2810 + AegisName: Special_Cooler + Name: Special Cooler + Type: Armor + Buy: 100000 + Weight: 2500 + Slots: 1 + Jobs: + Blacksmith: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 99 + Script: | + bonus bDex,1; + - Id: 2819 + AegisName: Swordman_Manual + Name: Swordsman Manual + Type: Armor + Weight: 100 + Jobs: + Novice: true + SuperNovice: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxSP,100; skill "SM_BASH",1; skill "SM_PROVOKE",1; skill "SM_MAGNUM",1; + - Id: 2820 + AegisName: Thief_Manual + Name: Thief Manual + Type: Armor + Weight: 100 + Jobs: + Novice: true + SuperNovice: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxSP,100; skill "TF_DOUBLE",3; bonus bDoubleRate,15; skill "TF_STEAL",1; skill "TF_HIDING",1; skill "TF_POISON",1; + - Id: 2821 + AegisName: Acolyte_Manual + Name: Acolyte Manual + Type: Armor + Weight: 100 + Jobs: + Novice: true + SuperNovice: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxSP,100; skill "AL_HEAL",1; skill "AL_INCAGI",1; skill "AL_BLESSING",1; + - Id: 2822 + AegisName: Archer_Manual + Name: Archer Manual + Type: Armor + Weight: 100 + Jobs: + Novice: true + SuperNovice: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxSP,100; skill "AC_OWL",1; skill "AC_CONCENTRATION",1; + - Id: 2823 + AegisName: Merchant_Manual + Name: Merchant Manual + Type: Armor + Weight: 100 + Jobs: + Novice: true + SuperNovice: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxSP,100; skill "MC_DISCOUNT",1; skill "MC_OVERCHARGE",10; skill "MC_IDENTIFY",1; skill "MC_MAMMONITE",1; + - Id: 2824 + AegisName: Mage_Manual + Name: Mage Manual + Type: Armor + Weight: 100 + Jobs: + Novice: true + SuperNovice: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxSP,100; skill "MG_SRECOVERY",1; skill "MG_COLDBOLT",1; skill "MG_FIREWALL",1; skill "MG_FIREBOLT",1; + - Id: 5001 + AegisName: Headset + Name: Headset + Type: Armor + Buy: 20 + Weight: 200 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 87 + Script: | + bonus2 bResEff,Eff_Curse,1000; + - Id: 5002 + AegisName: Gemmed_Crown + Name: Jewel Crown + Type: Armor + Buy: 20 + Weight: 600 + Defense: 4 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Head_Top: true + EquipLevelMin: 60 + Refineable: true + View: 88 + Script: | + bonus bInt,2; bonus bLuk,1; bonus bMdef,3; + - Id: 5003 + AegisName: Joker_Jester + Name: Joker Jester + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 89 + Script: | + bonus bLuk,2; bonus bMdef,5; + - Id: 5004 + AegisName: Oxygen_Mask + Name: Oxygen Mask + Type: Armor + Buy: 20 + Weight: 200 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Low: true + View: 90 + Script: | + bonus2 bResEff,Eff_Poison,2000; + - Id: 5005 + AegisName: Gas_Mask + Name: Gas Mask + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Low: true + Head_Mid: true + View: 91 + Script: | + bonus2 bResEff,Eff_Poison,3000; + - Id: 5006 + AegisName: Machoman_Glasses + Name: Machoman's Glasses + Type: Armor + Buy: 36000 + Weight: 100 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + View: 92 + - Id: 5007 + AegisName: Loard_Circlet + Name: Grand Circlet + Type: Armor + Buy: 20 + Weight: 200 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 55 + Refineable: true + View: 93 + Script: | + bonus bStr,1; bonus bInt,1; bonus bLuk,1; bonus bMdef,4; + - Id: 5008 + AegisName: Puppy_Love + Name: Puppy Love + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + View: 94 + - Id: 5009 + AegisName: Safety_Helmet + Name: Safety Helmet + Type: Armor + Buy: 20 + Weight: 500 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 95 + Script: | + bonus bMdef,3; bonus bUnbreakableHelm; + - Id: 5010 + AegisName: Indian_Hair_Piece + Name: Indian Fillet + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Locations: + Head_Top: true + Refineable: true + View: 96 + - Id: 5011 + AegisName: Antenna + Name: Aerial + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Locations: + Head_Top: true + Refineable: true + View: 97 + - Id: 5012 + AegisName: Ph.D_Hat + Name: Ph.D Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 98 + - Id: 5013 + AegisName: Horn_Of_Lord_Kaho + Name: Lord Kaho's Horn + Type: Armor + Buy: 20 + Weight: 100 + Defense: 5 + Locations: + Head_Top: true + Refineable: true + View: 99 + Script: | + bonus bMdef,10; bonus bStr,5; bonus bAgi,10; bonus bVit,10; bonus bInt,5; bonus bLuk,20; + - Id: 5014 + AegisName: Fin_Helm + Name: Fin Helm + Type: Armor + Buy: 20 + Weight: 300 + Defense: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Head_Mid: true + EquipLevelMin: 65 + View: 100 + - Id: 5015 + AegisName: Egg_Shell + Name: Egg Shell + Type: Armor + Buy: 20 + Weight: 200 + Defense: 3 + Locations: + Head_Top: true + View: 101 + - Id: 5016 + AegisName: Boy's_Cap + Name: Boy's Cap + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 102 + - Id: 5017 + AegisName: Bone_Helm + Name: Bone Helm + Type: Armor + Buy: 20 + Weight: 800 + Defense: 7 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 103 + Script: | + bonus2 bSubEle,Ele_Dark,-15; + - Id: 5018 + AegisName: Feather_Bonnet + Name: Feather Bonnet + Type: Armor + Buy: 20 + Weight: 300 + Defense: 4 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Locations: + Head_Top: true + Refineable: true + View: 104 + Script: | + bonus bAgi,1; + - Id: 5019 + AegisName: Corsair + Name: Corsair + Type: Armor + Buy: 20 + Weight: 500 + Defense: 5 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 105 + Script: | + bonus bVit,1; + - Id: 5020 + AegisName: Kafra_Band + Name: Kafra Band + Type: Armor + Buy: 20 + Weight: 500 + Defense: 3 + Locations: + Head_Top: true + Refineable: true + View: 106 + Script: | + bonus bMdef,3; + - Id: 5021 + AegisName: Bankruptcy_Of_Heart + Name: Grief for Greed + Type: Armor + Buy: 20 + Weight: 1200 + Defense: 4 + Jobs: + Alchemist: true + Blacksmith: true + Merchant: true + Locations: + Head_Top: true + EquipLevelMin: 38 + Refineable: true + View: 107 + Script: | + bonus bInt,1; bonus bDex,1; + - Id: 5022 + AegisName: Helm_Of_Sun + Name: Hat of the Sun God + Type: Armor + Buy: 20 + Weight: 2400 + Defense: 4 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Locations: + Head_Mid: true + Head_Top: true + Refineable: true + View: 138 + Script: | + bonus bStr,3; bonus bInt,2; + - Id: 5023 + AegisName: Hat_Of_Bundle + Name: Parcel Hat + Type: Armor + Buy: 20 + Weight: 1000 + Jobs: + Alchemist: true + Blacksmith: true + Merchant: true + Locations: + Head_Top: true + Refineable: true + View: 108 + - Id: 5024 + AegisName: Hat_Of_Cake + Name: Cake Hat + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 109 + - Id: 5025 + AegisName: Helm_Of_Angel + Name: Helm of Angel + Type: Armor + Buy: 20 + Weight: 1600 + Defense: 5 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Locations: + Head_Top: true + EquipLevelMin: 74 + Refineable: true + View: 110 + Script: | + bonus bAgi,1; bonus bLuk,1; bonus bMdef,3; + - Id: 5026 + AegisName: Hat_Of_Cook + Name: Chef Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 111 + Script: | + bonus bDex,1; + - Id: 5027 + AegisName: Wizardry_Hat + Name: Mage Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Head_Top: true + Refineable: true + View: 112 + Script: | + bonus bInt,2; bonus bMaxSP,150; + - Id: 5028 + AegisName: Candle + Name: Candle + Type: Armor + Buy: 20 + Weight: 150 + Locations: + Head_Top: true + Refineable: true + View: 113 + - Id: 5029 + AegisName: Spore_Hat + Name: Spore Hat + Type: Armor + Buy: 20 + Weight: 900 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 114 + - Id: 5030 + AegisName: Panda_Cap + Name: Panda Hat + Type: Armor + Buy: 20 + Weight: 800 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 40 + Refineable: true + View: 115 + - Id: 5031 + AegisName: Mine_Helm + Name: Mine Hat + Type: Armor + Buy: 20 + Weight: 1500 + Defense: 4 + Jobs: + Acolyte: true + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Rogue: true + Swordman: true + Thief: true + Locations: + Head_Top: true + EquipLevelMin: 55 + Refineable: true + View: 116 + Script: | + bonus bDex,2; + - Id: 5032 + AegisName: Picnic_Hat + Name: Sunday Hat + Type: Armor + Buy: 20 + Weight: 800 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 117 + - Id: 5033 + AegisName: Smokie_Hat + Name: Raccoon Hat + Type: Armor + Buy: 20 + Weight: 900 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 118 + - Id: 5034 + AegisName: Light_Bulb_Band + Name: Bulb Band + Type: Armor + Buy: 20 + Weight: 500 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 119 + - Id: 5035 + AegisName: Poring_Hat + Name: Poring Hat + Type: Armor + Buy: 20 + Weight: 700 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 38 + Refineable: true + View: 120 + - Id: 5036 + AegisName: Cross_Band + Name: Cross Hat + Type: Armor + Buy: 20 + Weight: 250 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 121 + - Id: 5037 + AegisName: Fruit_Shell + Name: Nut Shell + Type: Armor + Buy: 20 + Weight: 150 + Defense: 4 + Locations: + Head_Top: true + EquipLevelMin: 5 + View: 122 + - Id: 5038 + AegisName: Deviruchi_Cap + Name: Deviruchi Hat + Type: Armor + Buy: 20 + Weight: 800 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 64 + Refineable: true + View: 123 + Script: | + bonus bStr,1; bonus bInt,1; + - Id: 5039 + AegisName: Mottled_Egg_Shell + Name: Rainbow Eggshell + Type: Armor + Buy: 20 + Weight: 400 + Defense: 4 + Locations: + Head_Top: true + EquipLevelMin: 19 + View: 124 + - Id: 5040 + AegisName: Blush + Name: Blush + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Mid: true + View: 125 + - Id: 5041 + AegisName: Heart_Hair_Pin + Name: Heart Hairpin + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Top: true + Refineable: true + View: 126 + - Id: 5042 + AegisName: Hair_Protector + Name: Bao Bao + Type: Armor + Buy: 20 + Weight: 150 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 14 + Refineable: true + View: 127 + - Id: 5043 + AegisName: Opera_Ghost_Mask + Name: Opera Phantom Mask + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + EquipLevelMin: 20 + View: 128 + - Id: 5044 + AegisName: Devil's_Wing + Name: Evil Wing Ears + Type: Armor + Buy: 20 + Weight: 350 + Defense: 2 + Locations: + Head_Top: true + EquipLevelMin: 45 + Refineable: true + View: 129 + Script: | + bonus bVit,1; + - Id: 5045 + AegisName: Magician_Hat + Name: Magician Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 3 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 130 + Script: | + bonus bDex,1; bonus bAgi,1; bonus bMaxSP,50; + - Id: 5046 + AegisName: Bongun_Hat + Name: Bongun Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 5 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + View: 139 + - Id: 5047 + AegisName: Fashion_Sunglass + Name: Fashionable Glasses + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 131 + - Id: 5048 + AegisName: First_Moon_Hair_Pin + Name: Cresent Hairpin + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Top: true + Refineable: true + View: 132 + - Id: 5049 + AegisName: Stripe_Band + Name: Striped Hairband + Type: Armor + Buy: 20 + Weight: 150 + Defense: 1 + Locations: + Head_Top: true + View: 133 + - Id: 5050 + AegisName: Mystery_Fruit_Shell + Name: Wonder Nutshell + Type: Armor + Buy: 20 + Weight: 300 + Defense: 5 + Locations: + Head_Top: true + EquipLevelMin: 30 + View: 134 + - Id: 5051 + AegisName: Kitty_Bell + Name: Pussy Cat Bell + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Low: true + View: 135 + - Id: 5052 + AegisName: Blue_Hair_Band + Name: Blue Hairband + Type: Armor + Buy: 20 + Weight: 150 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 136 + - Id: 5053 + AegisName: Spinx_Helm + Name: Sphinx Hat + Type: Armor + Buy: 20 + Weight: 3000 + Defense: 5 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Head_Low: true + Head_Top: true + EquipLevelMin: 65 + View: 137 + Script: | + bonus bStr,2; + - Id: 5054 + AegisName: Assassin_Mask + Name: Assassin Mask + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + Assassin: true + Priest: true + Locations: + Head_Low: true + EquipLevelMin: 70 + View: 180 + - Id: 5055 + AegisName: Novice_Egg_Cap + Name: Novice False Eggshell + Type: Armor + Buy: 1 + Weight: 1 + Defense: 3 + Jobs: + Novice: true + SuperNovice: true + Locations: + Head_Top: true + View: 101 + - Id: 5056 + AegisName: Love_Berry + Name: Fruit of Love + Type: Armor + Buy: 1 + Weight: 100 + Locations: + Head_Top: true + View: 140 + - Id: 5057 + AegisName: Ear_Of_Black_Cat + Name: Black Cat Ears + Type: Armor + Buy: 16000 + Weight: 200 + Defense: 2 + Locations: + Head_Top: true + EquipLevelMin: 45 + Refineable: true + View: 141 + - Id: 5058 + AegisName: Drooping_Kitty + Name: Drooping Cat + Type: Armor + Buy: 250000 + Weight: 500 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 142 + Script: | + bonus bMdef,15; bonus2 bResEff,Eff_Curse,3000; + - Id: 5059 + AegisName: Brown_Bear_Cap + Name: Teddybear Hat + Type: Armor + Buy: 20 + Weight: 800 + Defense: 3 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 143 + - Id: 5060 + AegisName: Party_Hat + Name: Party Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 3 + Locations: + Head_Top: true + Refineable: true + View: 144 + Script: | + bonus bLuk,1; + - Id: 5061 + AegisName: Flower_Hairpin + Name: Flower Hairpin + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 145 + - Id: 5062 + AegisName: Straw_Hat + Name: Straw Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 3 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 146 + Script: | + bonus bAgi,1; + - Id: 5063 + AegisName: Plaster + Name: Giant Band Aid + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 147 + - Id: 5064 + AegisName: Leaf_Headgear + Name: Smokie Leaf + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 148 + - Id: 5065 + AegisName: Fish_On_Head + Name: Blue Fish + Type: Armor + Buy: 20 + Weight: 500 + Defense: 2 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 149 + Script: | + bonus2 bAddRace,RC_Fish,10; + - Id: 5066 + AegisName: Horn_Of_Succubus + Name: Succubus Horn + Type: Armor + Buy: 20 + Weight: 800 + Defense: 4 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 150 + Script: | + bonus bInt,1; bonus bMdef,10; + - Id: 5067 + AegisName: Sombrero + Name: Sombrero + Type: Armor + Buy: 20 + Weight: 350 + Defense: 4 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 151 + Script: | + bonus bAgi,1; + - Id: 5068 + AegisName: Ear_Of_Devil's_Wing + Name: Evil Wing Ears + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Mid: true + EquipLevelMin: 70 + View: 152 + Script: | + bonus bStr,1; + - Id: 5069 + AegisName: Mask_Of_Fox + Name: Kitsune Mask + Type: Armor + Buy: 20 + Weight: 300 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 153 + Script: | + bonus bAgi,1; bonus bLuk,1; + - Id: 5070 + AegisName: Headband_Of_Power + Name: Hot-blooded Headband + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 154 + Script: | + bonus bStr,2; + - Id: 5071 + AegisName: Indian_Headband + Name: Indian Headband + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 155 + Script: | + bonus bDex,1; + - Id: 5072 + AegisName: Inccubus_Horn + Name: Incubus Horn + Type: Armor + Buy: 20 + Weight: 800 + Defense: 4 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 156 + Script: | + bonus bAgi,1; bonus bMdef,10; + - Id: 5073 + AegisName: Cap_Of_Concentration + Name: Model Training Hat + Type: Armor + Buy: 20 + Weight: 700 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 157 + Script: | + bonus bDex,2; + - Id: 5074 + AegisName: Ear_Of_Angel's_Wing + Name: Angel Wing Ears + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Mid: true + EquipLevelMin: 70 + View: 158 + Script: | + bonus bStr,1; + - Id: 5075 + AegisName: Cowboy_Hat + Name: Cowboy Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 4 + Locations: + Head_Top: true + Refineable: true + View: 159 + - Id: 5076 + AegisName: Fur_Hat + Name: Beanie + Type: Armor + Buy: 20 + Weight: 350 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 160 + Script: | + bonus bLuk,1; + - Id: 5077 + AegisName: Tulip_Hairpin + Name: Tulip Hairpin + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 161 + - Id: 5078 + AegisName: Sea_Otter_Cap + Name: Sea-Otter Hat + Type: Armor + Buy: 20 + Weight: 800 + Defense: 3 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 162 + Script: | + bonus bVit,1; + - Id: 5079 + AegisName: Crossed_Hair_Band + Name: X Hairpin + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 163 + - Id: 5080 + AegisName: Headgear_Of_Queen + Name: Crown of Ancient Queen + Type: Armor + Buy: 20 + Weight: 400 + Defense: 4 + Locations: + Head_Top: true + EquipLevelMin: 45 + Refineable: true + View: 164 + - Id: 5081 + AegisName: Mistress_Crown + Name: Crown of Mistress + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 75 + Refineable: true + View: 165 + Script: | + bonus bMaxSP,100; bonus bInt,2; bonus bUnbreakableHelm; + - Id: 5082 + AegisName: Mushroom_Band + Name: Decorative Mushroom + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 166 + - Id: 5083 + AegisName: Red_Tailed_Ribbon + Name: Red Ribbon + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Locations: + Head_Top: true + EquipLevelMin: 45 + Refineable: true + View: 167 + Script: | + bonus bMdef,10; + - Id: 5084 + AegisName: Lazy_Raccoon + Name: Lazy Smokie + Type: Armor + Buy: 20 + Weight: 500 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 168 + Script: | + bonus2 bResEff,Eff_Sleep,2000; + - Id: 5085 + AegisName: Pair_Of_Red_Ribbon + Name: Small Ribbons + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Mid: true + EquipLevelMin: 45 + View: 169 + - Id: 5086 + AegisName: Alarm_Mask + Name: Alarm Mask + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Low: true + Head_Mid: true + View: 170 + Script: | + bonus2 bResEff,Eff_Blind,5000; + - Id: 5087 + AegisName: Goblin_Mask_01 + Name: Poker Face + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Low: true + Head_Mid: true + View: 171 + - Id: 5088 + AegisName: Goblin_Mask_02 + Name: Surprised Mask + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Low: true + Head_Mid: true + View: 172 + - Id: 5089 + AegisName: Goblin_Mask_03 + Name: Annoyed Mask + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Low: true + Head_Mid: true + View: 173 + - Id: 5090 + AegisName: Goblin_Mask_04 + Name: Goblin Leader Mask + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Locations: + Head_Low: true + Head_Mid: true + View: 174 + - Id: 5091 + AegisName: Big_Golden_Bell + Name: Decorative Golden Bell + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 35 + Refineable: true + View: 175 + - Id: 5092 + AegisName: Blue_Coif + Name: Coif + Type: Armor + Buy: 150000 + Weight: 300 + Defense: 5 + Jobs: + Assassin: true + Priest: true + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 65 + Refineable: true + View: 176 + - Id: 5093 + AegisName: Blue_Coif_ + Name: Coif + Type: Armor + Buy: 150000 + Weight: 300 + Defense: 5 + Slots: 1 + Jobs: + Assassin: true + Priest: true + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 65 + Refineable: true + View: 177 + Script: | + bonus bMaxSP,100; + - Id: 5094 + AegisName: Orc_Hero_Helm + Name: Helmet of Orc Hero + Type: Armor + Buy: 500000 + Weight: 900 + Defense: 5 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 55 + Refineable: true + View: 178 + Script: | + bonus bStr,2; bonus bVit,1; + - Id: 5096 + AegisName: Assassin_Mask_ + Name: Assassin Mask + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + Assassin: true + Priest: true + Locations: + Head_Low: true + EquipLevelMin: 70 + View: 180 + - Id: 5097 + AegisName: Cone_Hat_ + Name: Holiday Hat + Type: Armor + Weight: 400 + Locations: + Head_Top: true + Refineable: true + View: 144 + - Id: 5098 + AegisName: Tiger_Mask + Name: Tiger Mask + Type: Armor + Buy: 20 + Weight: 400 + Defense: 2 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 50 + View: 181 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bStr,3; bonus bMaxHP,100; + - Id: 5099 + AegisName: Cat_Hat + Name: Neko Mimi + Type: Armor + Buy: 20 + Weight: 300 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 182 + Script: | + bonus bLuk,2; bonus bMdef,10; bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5; + - Id: 5100 + AegisName: Sales_Signboard + Name: Sales Banner + Type: Armor + Buy: 20 + Weight: 800 + Locations: + Head_Top: true + EquipLevelMin: 75 + Refineable: true + View: 183 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bStr,1; bonus bAgi,1; bonus bLuk,1; + - Id: 5101 + AegisName: Takius_Blindfold + Name: Takius's Blindfold + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Mid: true + View: 184 + - Id: 5102 + AegisName: Round_Eyes + Name: Blank Eyes + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Mid: true + View: 185 + - Id: 5103 + AegisName: Sunflower_Hairpin + Name: Sunflower Hairpin + Type: Armor + Buy: 20 + Weight: 600 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 30 + View: 186 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bAgi,2; bonus bCritical,5; + - Id: 5104 + AegisName: Dark_Blindfold + Name: Dark Blinder + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + View: 187 + Script: | + bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Stun,200; + - Id: 5105 + AegisName: Hat_Of_Cake_ + Name: 2nd Anniversary Hat + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 1 + Locations: + Head_Top: true + EquipLevelMin: 24 + Refineable: true + View: 109 + Script: | + bonus bDex,1; bonus bMaxSP,80; bonus3 bAddMonsterDropItem,7864,7,50; + - Id: 5106 + AegisName: Cone_Hat_INA + Name: 2nd Anniversary Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 3 + Locations: + Head_Top: true + EquipLevelMin: 1 + View: 144 + Script: | + bonus bLuk,1; + - Id: 5107 + AegisName: Well_Baked_Toast + Name: Crunch Toast + Type: Armor + Buy: 20 + Weight: 50 + Locations: + Head_Low: true + View: 188 + - Id: 5108 + AegisName: Detective_Hat + Name: Renown Detective's Cap + Type: Armor + Buy: 20 + Weight: 350 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 189 + - Id: 5109 + AegisName: Red_Bonnet + Name: Red Bonnet + Type: Armor + Buy: 20 + Weight: 400 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 190 + - Id: 5110 + AegisName: Baby_Pacifier + Name: Baby Pacifier + Type: Armor + Buy: 20 + Weight: 50 + Locations: + Head_Low: true + View: 191 + - Id: 5111 + AegisName: Galapago_Cap + Name: Galapago Cap + Type: Armor + Buy: 20 + Weight: 500 + Defense: 2 + Locations: + Head_Top: true + EquipLevelMin: 55 + Refineable: true + View: 192 + Script: | + bonus2 bAddMonsterDropItem,605,100; + - Id: 5112 + AegisName: Super_Novice_Hat + Name: Super Novice Hat + Type: Armor + Buy: 8500 + Weight: 400 + Defense: 4 + Jobs: + Novice: true + SuperNovice: true + Locations: + Head_Top: true + EquipLevelMin: 40 + Refineable: true + View: 193 + Script: | + bonus bAllStats,1; + - Id: 5113 + AegisName: Angry_Mouth + Name: Angry Snarl + Type: Armor + Buy: 20 + Weight: 50 + Locations: + Head_Low: true + View: 194 + - Id: 5114 + AegisName: Fedora + Name: Bucket Hat + Type: Armor + Buy: 6000 + Weight: 300 + Defense: 3 + Locations: + Head_Top: true + Refineable: true + View: 195 + - Id: 5115 + AegisName: Winter_Hat + Name: Winter Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 3 + Locations: + Head_Top: true + Refineable: true + View: 196 + Script: | + bonus2 bResEff,Eff_Freeze,1000; + - Id: 5116 + AegisName: Banana_Hat + Name: Banana Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 197 + Script: | + bonus3 bAutoSpell,"SM_PROVOKE",3,30; + - Id: 5117 + AegisName: Mistic_Rose + Name: Mystic Rose + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Top: true + Refineable: true + View: 198 + Script: | + bonus2 bSubRace,RC_Plant,2; + - Id: 5118 + AegisName: Ear_Of_Puppy + Name: Puppy Headband + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 199 + - Id: 5119 + AegisName: Super_Novice_Hat_ + Name: Super Novice Hat + Type: Armor + Buy: 8500 + Weight: 400 + Defense: 4 + Slots: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Head_Top: true + EquipLevelMin: 40 + Refineable: true + View: 193 + Script: | + bonus bAllStats,1; + - Id: 5120 + AegisName: Fedora_ + Name: Bucket Hat + Type: Armor + Buy: 6000 + Weight: 300 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 195 + - Id: 5121 + AegisName: Zherlthsh_Mask + Name: Zealotus Mask + Type: Armor + Buy: 20 + Weight: 400 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 200 + Script: | + bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; + - Id: 5122 + AegisName: Magni_Cap + Name: Magni's Cap + Type: Armor + Buy: 30000 + Weight: 1000 + Defense: 5 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 65 + Refineable: true + View: 250 + Script: | + bonus bStr,2; + - Id: 5123 + AegisName: Ulle_Cap + Name: Ulle's Cap + Type: Armor + Buy: 30000 + Weight: 500 + Defense: 3 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 65 + Refineable: true + View: 254 + Script: | + bonus bDex,2; bonus bAgi,1; + - Id: 5124 + AegisName: Fricca_Circlet + Name: Fricca's Circlet + Type: Armor + Buy: 30000 + Weight: 300 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 65 + Refineable: true + View: 251 + Script: | + bonus bMdef,10; bonus bInt,2; bonus bMaxSP,50; + - Id: 5125 + AegisName: Kiss_Of_Angel + Name: Angel's Kiss + Type: Armor + Buy: 10000 + Weight: 300 + Defense: 3 + Slots: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 255 + Script: | + bonus bSPrecovRate,5; + - Id: 5126 + AegisName: Morpheus's_Hood + Name: Morpheus's Hood + Type: Armor + Buy: 30000 + Weight: 200 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 33 + Refineable: true + View: 256 + Script: | + bonus bInt,2; + - Id: 5127 + AegisName: Morrigane's_Helm + Name: Morrigane's Helm + Type: Armor + Buy: 30000 + Weight: 500 + Defense: 4 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 61 + Refineable: true + View: 257 + Script: | + bonus bLuk,2; bonus bBaseAtk,3; + - Id: 5128 + AegisName: Goibne's_Helmet + Name: Goibne's Helm + Type: Armor + Buy: 30000 + Weight: 500 + Defense: 5 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 54 + Refineable: true + View: 258 + Script: | + bonus bVit,3; bonus bMdef,3; + - Id: 5129 + AegisName: Bird_Nest + Name: Bird Nest + Type: Armor + Buy: 20 + Weight: 400 + Defense: 1 + Locations: + Head_Top: true + EquipLevelMin: 50 + View: 201 + Script: | + bonus bAgi,2; bonus2 bSubRace,RC_Brute,10; bonus2 bSubRace,RC_Player_Doram,10; + - Id: 5130 + AegisName: Lion_Mask + Name: Lion Mask + Type: Armor + Buy: 20 + Weight: 700 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 75 + Refineable: true + View: 202 + Script: | + bonus2 bAddEffWhenHit,Eff_Silence,500; bonus bMdef,1; + - Id: 5131 + AegisName: Close_Helmet + Name: Close Helmet + Type: Armor + Buy: 20 + Weight: 1200 + Defense: 8 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + EquipLevelMin: 75 + Refineable: true + View: 203 + Script: | + bonus bVit,3; bonus bMaxHPrate,3; + - Id: 5132 + AegisName: Angeling_Hat + Name: Angeling Hat + Type: Armor + Buy: 20 + Weight: 700 + Defense: 2 + Locations: + Head_Top: true + View: 204 + Trade: + Override: 100 + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; + - Id: 5133 + AegisName: Sheep_Hat + Name: Sheep Hat + Type: Armor + Buy: 20 + Weight: 150 + Defense: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Head_Top: true + View: 205 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bShortWeaponDamageReturn,5; + - Id: 5134 + AegisName: Pumpkin_Hat + Name: Pumpkin-Head + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 206 + Script: | + bonus2 bSubRace,RC_Demon,5; + - Id: 5135 + AegisName: Cyclops_Visor + Name: Cyclop's Eye + Type: Armor + Weight: 200 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + EquipLevelMin: 75 + View: 207 + Script: | + bonus bMaxSP,50; + - Id: 5136 + AegisName: Santa's_Hat_ + Name: Antonio's Santa Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 20 + - Id: 5137 + AegisName: Alice_Doll + Name: Alice Doll + Type: Armor + Buy: 20 + Weight: 500 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 30 + View: 208 + Script: | + bonus bStr,1; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus2 bAddEff2,Eff_Sleep,10; + - Id: 5138 + AegisName: Magic_Eyes + Name: Magic Eyes + Type: Armor + Buy: 20 + Weight: 300 + Defense: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 209 + Script: | + bonus bMdef,5; bonus bCastrate,-10; bonus bUseSPrate,20; + - Id: 5139 + AegisName: Hibiscus + Name: Hibiscus + Type: Armor + Buy: 20 + Weight: 200 + Locations: + Head_Top: true + EquipLevelMin: 10 + View: 210 + Script: | + bonus bDex,1; bonus bInt,1; bonus bMdef,5; + - Id: 5140 + AegisName: Charming_Ribbon + Name: Charming Ribbon + Type: Armor + Buy: 20 + Weight: 400 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 211 + Script: | + bonus2 bSubRace,RC_Undead,5; bonus2 bSubRace,RC_Demon,5; + - Id: 5141 + AegisName: Marionette_Doll + Name: Marionette Doll + Type: Armor + Buy: 20 + Weight: 400 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 212 + Script: | + bonus bStr,1; + - Id: 5142 + AegisName: Crescent_Helm + Name: Crescent Helm + Type: Armor + Buy: 20 + Weight: 3000 + Defense: 8 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 213 + Script: | + bonus bVit,1; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; + - Id: 5143 + AegisName: Kabuki_Mask + Name: Kabuki Mask + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 5 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Gender: Male + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 214 + Script: | + bonus2 bResEff,Eff_Silence,3000; + - Id: 5144 + AegisName: Gambler_Hat + Name: Gambler Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 16 + Script: | + bonus bLuk,5; + - Id: 5145 + AegisName: Carnival_Joker_Jester + Name: Carnival Joker Jester + Type: Armor + Buy: 10 + Weight: 100 + Locations: + Head_Top: true + Refineable: true + View: 89 + - Id: 5146 + AegisName: Elephant_Hat + Name: Elephant Hat + Type: Armor + Weight: 500 + Locations: + Head_Top: true + Refineable: true + View: 215 + Script: | + bonus bVit,1; bonus2 bSubRace,RC_Brute,7; skill "WZ_WATERBALL",1; + - Id: 5147 + AegisName: Baseball_Cap + Name: Baseball Cap + Type: Armor + Weight: 200 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 216 + - Id: 5148 + AegisName: Phrygian_Cap + Name: Phrygian Cap + Type: Armor + Weight: 500 + Locations: + Head_Top: true + Refineable: true + View: 217 + Script: | + bonus bInt,2; + - Id: 5149 + AegisName: Silver_Tiara + Name: Silver Tiara + Type: Armor + Weight: 100 + Locations: + Head_Top: true + Refineable: true + View: 218 + Script: | + bonus bInt,2; + - Id: 5150 + AegisName: Joker_Jester_ + Name: Joker Jester + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + View: 219 + Script: | + bonus bSpeedRate,25; + - Id: 5151 + AegisName: Headset_OST + Name: Note Headphones + Type: Armor + Buy: 20 + Weight: 200 + Defense: 4 + Slots: 1 + Locations: + Head_Mid: true + Head_Top: true + Refineable: true + View: 220 + Script: | + bonus bMdef,3; bonus2 bResEff,Eff_Stun,1000; bonus2 bResEff,Eff_Freeze,1000; + - Id: 5152 + AegisName: Chinese_Crown + Name: Chinese Crown + Type: Armor + Buy: 20 + Weight: 2000 + Defense: 2 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 221 + Script: | + bonus2 bResEff,Eff_Stun,1000; bonus bInt,1; + - Id: 5153 + AegisName: Angeling_Hairpin + Name: Angeling Hairpin + Type: Armor + Buy: 20 + Weight: 700 + Defense: 3 + Locations: + Head_Top: true + Refineable: true + View: 222 + Script: | + bonus bFlee,5; + - Id: 5154 + AegisName: Sunglasses_F + Name: Father's Sunglasses + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Locations: + Head_Mid: true + View: 12 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 5155 + AegisName: Granpa_Beard_F + Name: Father's White Moustache + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Low: true + View: 25 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bBaseAtk,20; + - Id: 5156 + AegisName: Flu_Mask_F + Name: Father's Mask + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Low: true + View: 8 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMatkRate,1; + - Id: 5157 + AegisName: Viking_Helm_ + Name: Orc Helm + Type: Armor + Buy: 20 + Weight: 500 + Defense: 5 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Head_Top: true + Refineable: true + View: 86 + - Id: 5158 + AegisName: Holy_Bonnet_ + Name: Monk Hat + Type: Armor + Buy: 30000 + Weight: 100 + Defense: 5 + Slots: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Head_Top: true + Refineable: true + View: 35 + Script: | + bonus bMdef,3; + - Id: 5159 + AegisName: Golden_Gear_ + Name: Golden Gear + Type: Armor + Buy: 20 + Weight: 900 + Defense: 5 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 40 + Refineable: true + View: 30 + Script: | + bonus bUnbreakableHelm; + - Id: 5160 + AegisName: Magestic_Goat_ + Name: Majestic Goat + Type: Armor + Buy: 20 + Weight: 800 + Defense: 5 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + StarGladiator: true + Swordman: true + Taekwon: true + Locations: + Head_Top: true + Refineable: true + View: 41 + Script: | + bonus bStr,1; + - Id: 5161 + AegisName: Sharp_Gear_ + Name: Spiky Band + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 6 + Slots: 1 + Jobs: + Acolyte: true + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Rogue: true + StarGladiator: true + Swordman: true + Taekwon: true + Thief: true + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 43 + - Id: 5162 + AegisName: Bone_Helm_ + Name: Bone Helm + Type: Armor + Buy: 20 + Weight: 800 + Defense: 7 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 103 + Script: | + bonus2 bSubEle,Ele_Dark,-15; + - Id: 5163 + AegisName: Corsair_ + Name: Corsair + Type: Armor + Buy: 20 + Weight: 500 + Defense: 5 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 105 + Script: | + bonus bVit,1; + - Id: 5164 + AegisName: Tiara_ + Name: Tiara + Type: Armor + Buy: 20 + Weight: 400 + Defense: 4 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Gender: Female + Locations: + Head_Top: true + EquipLevelMin: 45 + Refineable: true + View: 19 + Script: | + bonus bInt,1; + - Id: 5165 + AegisName: Crown_ + Name: Crown + Type: Armor + Buy: 20 + Weight: 400 + Defense: 4 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Gender: Male + Locations: + Head_Top: true + EquipLevelMin: 45 + Refineable: true + View: 45 + Script: | + bonus bInt,1; + - Id: 5166 + AegisName: Spinx_Helm_ + Name: Sphinx Hat + Type: Armor + Buy: 20 + Weight: 3000 + Defense: 5 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Head_Low: true + Head_Top: true + EquipLevelMin: 65 + View: 137 + Script: | + bonus bStr,2; + - Id: 5167 + AegisName: Munak_Turban_ + Name: Munak Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 5 + Slots: 1 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + View: 51 + Script: | + bonus2 bSubRace,RC_Undead,10; + - Id: 5168 + AegisName: Bongun_Hat_ + Name: Bongun Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 5 + Slots: 1 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + View: 139 + - Id: 5169 + AegisName: Bride_Mask + Name: Bride Mask + Type: Armor + Buy: 30000 + Weight: 500 + Defense: 4 + Slots: 1 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 40 + Refineable: true + View: 223 + Script: | + if(BaseClass==Job_Taekwon){ bonus bLuk,2; bonus bCritical,5; } + - Id: 5170 + AegisName: Feather_Beret + Name: Feather Beret + Type: Armor + Buy: 30000 + Weight: 600 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 224 + Script: | + bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; + - Id: 5171 + AegisName: Valkyrie_Helm + Name: Valkyrie Helm + Type: Armor + Buy: 100000 + Weight: 1000 + Defense: 5 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Locations: + Head_Top: true + Refineable: true + View: 225 + Script: | + bonus bMdef,5; + - Id: 5172 + AegisName: Beret + Name: Beret + Type: Armor + Buy: 30000 + Weight: 700 + Locations: + Head_Top: true + View: 226 + Script: | + bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; + - Id: 5173 + AegisName: Satto_Hat + Name: Magistrate Hat + Type: Armor + Buy: 30000 + Weight: 400 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 60 + Refineable: true + View: 227 + Script: | + if(BaseClass==Job_Taekwon){ bonus bAgi,1; bonus bHPrecovRate,3; } + - Id: 5174 + AegisName: Ayam + Name: Ayam + Type: Armor + Buy: 30000 + Weight: 400 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 60 + Refineable: true + View: 228 + Script: | + if(BaseClass==Job_Taekwon){ bonus bInt,1; bonus bSPrecovRate,3; } + - Id: 5175 + AegisName: Censor_Bar + Name: Censor Bar + Type: Armor + Buy: 30000 + Weight: 100 + Locations: + Head_Mid: true + View: 229 + Script: | + bonus2 bResEff,Eff_Curse,500; bonus bMdef,1; bonus bHit,-5; + - Id: 5176 + AegisName: Hahoe_Mask + Name: Hahoe Mask + Type: Armor + Buy: 30000 + Weight: 100 + Defense: 2 + Locations: + Head_Low: true + Head_Mid: true + EquipLevelMin: 30 + View: 230 + Script: | + if(BaseClass==Job_Taekwon){ bonus bLuk,1; bonus bFlee2,2; } + - Id: 5177 + AegisName: Guardian_Lion_Mask + Name: Mythical Lion Mask + Type: Armor + Buy: 30000 + Weight: 500 + Defense: 5 + Slots: 1 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 40 + Refineable: true + View: 231 + Script: | + if(BaseClass==Job_Taekwon){ bonus bDex,2; bonus bBaseAtk,2*getrefine(); bonus3 bAddEff,Eff_Stun,1000,ATF_SHORT; } + - Id: 5178 + AegisName: Candle_ + Name: Candle + Type: Armor + Buy: 20 + Weight: 150 + Locations: + Head_Top: true + Refineable: true + View: 113 + Script: | + bonus bAllStats,1; + - Id: 5179 + AegisName: Gold_Tiara + Name: Golden Tiara + Type: Armor + Weight: 100 + Locations: + Head_Top: true + Refineable: true + View: 232 + Script: | + bonus bInt,2; + - Id: 5180 + AegisName: Phrygian_Cap_ + Name: France Holiday Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 217 + Script: | + bonus bVit,1; + - Id: 5181 + AegisName: Helm_Of_Darkness + Name: Helm of Darkness + Type: Armor + Buy: 20 + Weight: 2000 + Defense: 3 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 233 + Script: | + bonus bStr,2; + - Id: 5182 + AegisName: Puppy_Hat + Name: Puppy Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 2 + Locations: + Head_Top: true + EquipLevelMin: 30 + View: 234 + Script: | + bonus bAgi,1; bonus3 bAutoSpell,"PR_GLORIA",1,10+20*(readparam(bAgi)>=77); + - Id: 5183 + AegisName: Bird_Nest_Hat + Name: Bird Nest Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 2 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 235 + Script: | + bonus bDex,1; bonus bAgi,1; bonus2 bResEff,Eff_Stun,1000; + - Id: 5184 + AegisName: Captain_Hat + Name: Captain's Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 4 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 236 + Script: | + bonus2 bSubEle,Ele_Water,5; + - Id: 5185 + AegisName: Laurel_Wreath + Name: Laurel Wreath + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 237 + Script: | + bonus bLuk,3; bonus2 bResEff,Eff_Blind,500; bonus2 bResEff,Eff_Curse,500; + - Id: 5186 + AegisName: Geographer_Band + Name: Geographer Band + Type: Armor + Buy: 20 + Weight: 500 + Defense: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + View: 238 + Script: | + bonus bInt,1; bonus3 bAutoSpellWhenHit,"AL_HEAL",1,50; + - Id: 5187 + AegisName: Twin_Ribbon + Name: Twin Ribbon + Type: Armor + Buy: 20 + Weight: 200 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 239 + Script: | + bonus bMaxSP,30; bonus bMdef,3; bonus3 bAutoSpellWhenHit,"NPC_STONESKIN",6,10; bonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,120,BF_MAGIC,0; + - Id: 5188 + AegisName: Minstrel_Hat + Name: Wandering Minstrel Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 2 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 240 + Script: | + bonus bInt,1; bonus bDex,1; + - Id: 5189 + AegisName: Fallen_Leaves + Name: Autumn Leaves + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Top: true + Refineable: true + View: 241 + Script: | + bonus bMaxHP,40; bonus bMaxSP,40; + - Id: 5190 + AegisName: Baseball_Cap_ + Name: Independence Memorial Hat + Type: Armor + Buy: 20 + Weight: 20 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 216 + - Id: 5191 + AegisName: Ribbon_Black + Name: Black Ribbon + Type: Armor + Buy: 800 + Weight: 100 + Defense: 1 + Slots: 1 + Gender: Female + Locations: + Head_Top: true + Refineable: true + View: 242 + Script: | + bonus bInt,1; bonus bMdef,3; + - Id: 5192 + AegisName: Ribbon_Yellow + Name: Yellow Ribbon + Type: Armor + Buy: 800 + Weight: 100 + Defense: 1 + Slots: 1 + Gender: Female + Locations: + Head_Top: true + Refineable: true + View: 243 + Script: | + bonus bMdef,3; + - Id: 5193 + AegisName: Ribbon_Green + Name: Green Ribbon + Type: Armor + Buy: 800 + Weight: 100 + Defense: 1 + Slots: 1 + Gender: Female + Locations: + Head_Top: true + Refineable: true + View: 244 + Script: | + bonus bMdef,3; + - Id: 5194 + AegisName: Ribbon_Pink + Name: Pink Ribbon + Type: Armor + Buy: 800 + Weight: 100 + Defense: 1 + Slots: 1 + Gender: Female + Locations: + Head_Top: true + Refineable: true + View: 245 + Script: | + bonus bMdef,3; + - Id: 5195 + AegisName: Ribbon_Red + Name: Red Ribbon + Type: Armor + Buy: 800 + Weight: 100 + Defense: 1 + Slots: 1 + Gender: Female + Locations: + Head_Top: true + Refineable: true + View: 246 + Script: | + bonus bMdef,3; + - Id: 5196 + AegisName: Ribbon_Orange + Name: Orange Ribbon + Type: Armor + Buy: 800 + Weight: 100 + Defense: 1 + Slots: 1 + Gender: Female + Locations: + Head_Top: true + Refineable: true + View: 247 + Script: | + bonus bMdef,3; + - Id: 5197 + AegisName: Ribbon_White + Name: White Ribbon + Type: Armor + Buy: 800 + Weight: 100 + Defense: 1 + Slots: 1 + Gender: Female + Locations: + Head_Top: true + Refineable: true + View: 248 + Script: | + bonus bMdef,3; + - Id: 5198 + AegisName: Drooping_Bunny + Name: Drooping Bunny + Type: Armor + Buy: 10 + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 249 + Script: | + bonus bDex,1; bonus bFlee,2; + - Id: 5199 + AegisName: Baseball_Cap_I + Name: Baseball Cap + Type: Armor + Weight: 200 + Defense: 3 + Locations: + Head_Top: true + Refineable: true + View: 216 + - Id: 5200 + AegisName: Coppola + Name: Coppola + Type: Armor + Buy: 10 + Weight: 300 + Locations: + Head_Top: true + Refineable: true + View: 252 + - Id: 5201 + AegisName: Party_Hat_B + Name: Party Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 3 + Locations: + Head_Top: true + Refineable: true + View: 144 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 5202 + AegisName: Pumpkin_Hat_ + Name: Fantastic Pumpkin-Head + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 206 + Script: | + bonus2 bSubRace,RC_Demon,5; + - Id: 5203 + AegisName: Tongue_Mask + Name: Smiling Mask + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Locations: + Head_Low: true + Head_Mid: true + View: 253 + Script: | + bonus bSpeedRate,25; + - Id: 5204 + AegisName: Event_Pierrot_Nose + Name: Rudolph's Nose + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Low: true + View: 49 + Script: | + bonus2 bResEff,Eff_Blind,3000; bonus2 bAddMonsterDropItem,12130,30; + - Id: 5205 + AegisName: Wreath + Name: Emperor's Laurel Crown + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 3 + Locations: + Head_Mid: true + Head_Top: true + Refineable: true + View: 261 + Script: | + bonus bAllStats,1; bonus bMdef,3; + - Id: 5206 + AegisName: Romantic_White_Flower + Name: Romantic White Flower + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Low: true + View: 259 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus2 bSubRace,RC_Plant,3; + - Id: 5207 + AegisName: Gold_Spirit_Chain + Name: Angel Blessing + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Top: true + View: 260 + Script: | + bonus bLuk,1; bonus2 bSubEle,Ele_Holy,5; + - Id: 5208 + AegisName: Rideword_Hat + Name: Rideword Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 2 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 40 + Refineable: true + View: 262 + Script: | + bonus2 bHPDrainRate,50,8; bonus2 bSPDrainRate,10,4; bonus2 bHPLossRate,10,5000; + - Id: 5209 + AegisName: Yellow_Baseball_Cap + Name: Love Dad Cap + Type: Armor + Buy: 20 + Weight: 300 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 263 + - Id: 5210 + AegisName: Flying_Angel + Name: Flapping Angel Wing + Type: Armor + Buy: 20 + Weight: 300 + Defense: 1 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 264 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bCastrate,-3; bonus bAspdRate,3; bonus bInt,1; bonus bAgi,1; + - Id: 5211 + AegisName: Dress_Hat + Name: Dress Hat + Type: Armor + Weight: 200 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 265 + Script: | + 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; } + - Id: 5212 + AegisName: Satellite_Hairband + Name: Satellite Hairband + Type: Armor + Weight: 1000 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 266 + Script: | + bonus bMaxHP,50; bonus bMaxSP,10; skill "AL_RUWACH",1; + UnEquipScript: | + sc_end SC_RUWACH; + - Id: 5213 + AegisName: Black_Bunny_Band + Name: Sheila Hairnet + Type: Armor + Weight: 200 + Defense: 2 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 267 + Script: | + bonus bAgi,2; bonus bMdef,3; + - Id: 5214 + AegisName: Moonlight_Flower_Hat + Name: Moonlight Flower Hat + Type: Armor + Weight: 200 + Defense: 3 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 268 + Script: | + bonus bDex,2; bonus3 bAutoSpell,"AL_INCAGI",1,50; + - Id: 5215 + AegisName: Angelic_Chain_ + Name: Evolved Angel Wing + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 38 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bMdef,3; bonus bDex,1; bonus bInt,1; bonus2 bSubRace,RC_Demon,3; + - Id: 5216 + AegisName: Satanic_Chain_ + Name: Evolved Evil Wing + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 39 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bStr,1; bonus bAgi,1; bonus bFlee,3; bonus2 bSubRace,RC_Angel,3; + - Id: 5217 + AegisName: Magestic_Goat_TW + Name: Evolved Majestic Goat + Type: Armor + Buy: 20 + Weight: 800 + Defense: 5 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + StarGladiator: true + Swordman: true + Taekwon: true + Locations: + Head_Top: true + Refineable: true + View: 41 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bStr,2; + - Id: 5218 + AegisName: Bunny_Band_ + Name: Evolved Bunny Band + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 15 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bInt,2; + - Id: 5219 + AegisName: Drooping_Kitty_ + Name: Evolved Drooping Cat + Type: Armor + Buy: 250000 + Weight: 500 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 142 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bMdef,18; bonus bFlee,3; + - Id: 5220 + AegisName: Smoking_Pipe_ + Name: Evolved Pipe + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Low: true + View: 55 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bVit,1; bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5; + - Id: 5221 + AegisName: Pair_Of_Red_Ribbon_ + Name: Evolved Pair of Red Ribbon + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Gender: Female + Locations: + Head_Mid: true + EquipLevelMin: 45 + View: 169 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bFlee,5; + - Id: 5222 + AegisName: Fish_On_Head_ + Name: Evolved Blue Fish + Type: Armor + Buy: 20 + Weight: 500 + Defense: 2 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 149 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bAgi,1; bonus bDex,1; + - Id: 5223 + AegisName: Big_Golden_Bell_ + Name: Evolved Big Golden Bell + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 35 + Refineable: true + View: 175 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bAgi,2; + - Id: 5224 + AegisName: Orc_Hero_Helm_TW + Name: Evolved Orc Hero Helm + Type: Armor + Buy: 500000 + Weight: 900 + Defense: 5 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 55 + Refineable: true + View: 178 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bStr,2; bonus bVit,1; bonus bMaxHPrate,10; + - Id: 5225 + AegisName: Marcher_Hat + Name: Parade Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 269 + Script: | + bonus bMdef,2; bonus bStr,2; bonus4 bAutoSpellWhenHit,"AL_ANGELUS",5,30,0; bonus4 bAutoSpellWhenHit,"HP_ASSUMPTIO",1,1,0; bonus2 bResEff,Eff_Stun,1000; if(BaseClass==Job_Acolyte) bonus4 bAutoSpellOnSkill,"AL_HEAL","PR_LEXAETERNA",1,1000; + - Id: 5226 + AegisName: Mini_Propeller_ + Name: Mini Propeller + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 270 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bAgi,2; bonus bDex,1; bonus bFlee,10; bonus bCastrate,-getrefine(); + - Id: 5227 + AegisName: Red_Deviruchi_Cap + Name: Red Deviruchi Hat + Type: Armor + Buy: 20 + Weight: 800 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 64 + Refineable: true + View: 271 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,1; bonus bInt,1; + - Id: 5228 + AegisName: White_Deviruchi_Cap + Name: Gray Deviruchi Hat + Type: Armor + Buy: 20 + Weight: 800 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 64 + Refineable: true + View: 272 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,1; bonus bInt,1; + - Id: 5229 + AegisName: Gray_Deviruchi_Cap + Name: Brown Deviruchi Hat + Type: Armor + Buy: 20 + Weight: 800 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 64 + Refineable: true + View: 273 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,1; bonus bInt,1; + - Id: 5230 + AegisName: White_Drooping_Kitty + Name: Gray Drooping Cat + Type: Armor + Buy: 250000 + Weight: 500 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 274 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15; + - Id: 5231 + AegisName: Gray_Drooping_Kitty + Name: Brown Drooping Cat + Type: Armor + Buy: 250000 + Weight: 500 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 275 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15; + - Id: 5232 + AegisName: Pink_Drooping_Kitty + Name: Pink Drooping Cat + Type: Armor + Buy: 250000 + Weight: 500 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 276 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15; + - Id: 5233 + AegisName: Blue_Drooping_Kitty + Name: Blue Drooping Cat + Type: Armor + Buy: 250000 + Weight: 500 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 277 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15; + - Id: 5234 + AegisName: Yellow_Drooping_Kitty + Name: Yellow Drooping Cat + Type: Armor + Buy: 250000 + Weight: 500 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 278 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15; + - Id: 5235 + AegisName: Gray_Fur_Hat + Name: Brown Beanie + Type: Armor + Buy: 20 + Weight: 350 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 279 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bLuk,1; + - Id: 5236 + AegisName: Blue_Fur_Hat + Name: Blue Beanie + Type: Armor + Buy: 20 + Weight: 350 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 280 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bLuk,1; + - Id: 5237 + AegisName: Pink_Fur_Hat + Name: Pink Beanie + Type: Armor + Buy: 20 + Weight: 350 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 281 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bLuk,1; + - Id: 5238 + AegisName: Red_Wizardry_Hat + Name: Red Mage Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Head_Top: true + Refineable: true + View: 282 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,2; bonus bMaxSP,150; + - Id: 5239 + AegisName: White_Wizardry_Hat + Name: Gray Mage Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Head_Top: true + Refineable: true + View: 283 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,2; bonus bMaxSP,150; + - Id: 5240 + AegisName: Gray_Wizardry_Hat + Name: Brown Mage Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Head_Top: true + Refineable: true + View: 284 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,2; bonus bMaxSP,150; + - Id: 5241 + AegisName: Blue_Wizardry_Hat + Name: Blue Mage Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Head_Top: true + Refineable: true + View: 285 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,2; bonus bMaxSP,150; + - Id: 5242 + AegisName: Yellow_Wizardry_Hat + Name: Yellow Mage Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Head_Top: true + Refineable: true + View: 286 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,2; bonus bMaxSP,150; + - Id: 5243 + AegisName: Chullos + Name: Shafka + Type: Armor + Buy: 20 + Weight: 800 + Defense: 2 + Slots: 1 + Locations: + Head_Mid: true + Head_Top: true + Refineable: true + View: 287 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus2 bResEff,Eff_Freeze,1000; + - Id: 5244 + AegisName: Elven_Blindfold + Name: Elven Blindfold + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Locations: + Head_Mid: true + View: 288 + Script: | + bonus2 bResEff,Eff_Blind,10000; + - Id: 5245 + AegisName: Elven_Sunglasses + Name: Elven Sunglasses + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Locations: + Head_Mid: true + View: 289 + Script: | + bonus2 bResEff,Eff_Blind,500; + - Id: 5246 + AegisName: Angelic_Helm + Name: Angelic Helm + Type: Armor + Buy: 20 + Weight: 700 + Defense: 3 + Locations: + Head_Top: true + Refineable: true + View: 290 + Script: | + bonus bAgi,1; bonus bLuk,1; bonus bMdef,3; bonus2 bSubRace,RC_Demon,5; + - Id: 5247 + AegisName: Satanic_Helm + Name: Satanic Helm + Type: Armor + Buy: 20 + Weight: 700 + Defense: 4 + Locations: + Head_Top: true + Refineable: true + View: 291 + Script: | + bonus bAgi,1; bonus bLuk,1; bonus bMdef,3; bonus2 bSubRace,RC_Demon,5; + - Id: 5248 + AegisName: Robotic_Blindfold + Name: Robotic Blindfold + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Locations: + Head_Mid: true + View: 292 + Script: | + bonus2 bResEff,Eff_Blind,10000; + - Id: 5249 + AegisName: Human_Blindfold + Name: Human Blindfold + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Locations: + Head_Mid: true + View: 293 + Script: | + bonus2 bResEff,Eff_Blind,10000; + - Id: 5250 + AegisName: Robotic_Ears + Name: Robotic Ears + Type: Armor + Buy: 20 + Weight: 10 + Locations: + Head_Mid: true + View: 294 + - Id: 5251 + AegisName: Round_Ears + Name: Round Ears + Type: Armor + Buy: 20 + Weight: 10 + Locations: + Head_Mid: true + View: 295 + - Id: 5252 + AegisName: Drooping_Nine_Tail + Name: Drooping Ninetail + Type: Armor + Buy: 20 + Weight: 300 + Defense: 1 + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 296 + Script: | + bonus bAgi,1; bonus bDex,1; bonus3 bAutoSpellWhenHit,"PR_GLORIA",1,30; + - Id: 5253 + AegisName: Lif_Doll_Hat + Name: Lif Doll Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 297 + Script: | + bonus bInt,1; bonus bMdef,getrefine(); bonus bDef,getrefine()*-1; + - Id: 5254 + AegisName: Deviling_Hat + Name: Deviling Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 298 + Script: | + bonus bStr,1; bonus bCritical,3; bonus2 bSubRace,RC_Angel,-20; if(getrefine()>=6){ bonus bCritical,getrefine()-5; } + - Id: 5255 + AegisName: Triple_Poring_Hat + Name: Triple Poring Hat + Type: Armor + Buy: 20 + Weight: 600 + Defense: 3 + Locations: + Head_Top: true + EquipLevelMin: 20 + View: 299 + Script: | + bonus bLuk,3; bonus3 bAutoSpell,"BS_GREED",1,50; + - Id: 5256 + AegisName: Valkyrie_Feather_Band + Name: Valkyrie Feather Band + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 300 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bInt,1; bonus3 bAutoSpellWhenHit,"AL_HEAL",1,10; + - Id: 5257 + AegisName: Soulless_Wing + Name: Soul Ring + Type: Armor + Buy: 20 + Weight: 300 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 301 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bMdef,2; bonus3 bAutoSpellWhenHit,"HP_ASSUMPTIO",1,10; + - Id: 5258 + AegisName: Afro_Wig + Name: Afro Wig + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 302 + Script: | + bonus3 bAutoSpellWhenHit,"NV_FIRSTAID",1,300; bonus2 bSubEle,Ele_Neutral,1; + - Id: 5259 + AegisName: Elephant_Hat_ + Name: Elephant Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 3 + Locations: + Head_Top: true + Refineable: true + View: 215 + Script: | + bonus bVit,1; bonus3 bAutoSpell,"WZ_WATERBALL",3,10; skill "AL_HOLYWATER",1; + - Id: 5260 + AegisName: Cookie_Hat + Name: Cookie Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 217 + Script: | + bonus bAgi,1; bonus bFlee2,5; bonus bCritAtkRate,5; + - Id: 5261 + AegisName: Silver_Tiara_ + Name: Silver Tiara + Type: Armor + Buy: 20 + Weight: 500 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 218 + Script: | + 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); + - Id: 5262 + AegisName: Gold_Tiara_ + Name: Golden Tiara + Type: Armor + Buy: 20 + Weight: 500 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 232 + Script: | + bonus bStr,2; bonus bUnbreakableHelm; if((readparam(bDex)<56)&&(BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Thief)) bonus bDex,JobLevel/7; + - Id: 5263 + AegisName: Ati_Atihan_Hat + Name: Pagdayaw + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 303 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus2 bSubEle,Ele_Water,1; bonus2 bSubEle,Ele_Earth,1; bonus2 bSubEle,Ele_Fire,1; bonus2 bSubEle,Ele_Wind,1; bonus2 bAddEff,Eff_Curse,300; + - Id: 5264 + AegisName: Aussie_Flag_Hat + Name: Australian Flag Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 4 + Locations: + Head_Top: true + Refineable: true + View: 304 + Script: | + bonus bAllStats,2; + - Id: 5265 + AegisName: Apple_Of_Archer_C + Name: Apple of Archer + Type: Armor + Buy: 1 + Defense: 7 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 1 + View: 72 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,4; + - Id: 5266 + AegisName: Bunny_Band_C + Name: Bunny Band + Type: Armor + Buy: 1 + Defense: 9 + Locations: + Head_Top: true + EquipLevelMin: 1 + View: 15 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,5; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; + - Id: 5267 + AegisName: Sahkkat_C + Name: Sakkat + Type: Armor + Buy: 1 + Defense: 10 + Locations: + Head_Top: true + View: 67 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAgi,3; + - Id: 5268 + AegisName: Lord_Circlet_C + Name: Grand Circlet + Type: Armor + Buy: 1 + Defense: 10 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 1 + View: 93 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,3; bonus bInt,3; bonus bLuk,3; bonus bMdef,4; + - Id: 5269 + AegisName: Flying_Angel_ + Name: Flapping Angel Wing + Type: Armor + Buy: 20 + Weight: 300 + Defense: 1 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 264 + Script: | + bonus bInt,1; bonus bAgi,1; bonus bAspdRate,3; bonus bSpeedRate,25; + - Id: 5270 + AegisName: Fallen_Leaves_ + Name: Autumn Leaves + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 241 + Script: | + bonus bFlee2,5; + - Id: 5271 + AegisName: Chinese_Crown_ + Name: Phoenix Crown + Type: Armor + Buy: 20 + Weight: 500 + Defense: 4 + Slots: 1 + Locations: + Head_Mid: true + Head_Top: true + Refineable: true + View: 221 + Script: | + bonus bMdef,3; bonus2 bSubClass,Class_Boss,getrefine(); + - Id: 5272 + AegisName: Tongue_Mask_ + Name: Tongue Mask + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Locations: + Head_Low: true + Head_Mid: true + View: 253 + Script: | + bonus3 bAutoSpell,"SM_PROVOKE",5,50; + - Id: 5273 + AegisName: Happy_Wig + Name: Happy Wig + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Mid: true + Head_Top: true + Refineable: true + View: 305 + Script: | + bonus bSpeedRate,25; bonus bDef,4; skill "TF_HIDING",1; + UnEquipScript: | + sc_end SC_HIDING; + - Id: 5274 + AegisName: Shiny_Wig + Name: Shiny Wig + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Mid: true + Head_Top: true + Refineable: true + View: 306 + Script: | + bonus bSpeedRate,25; bonus bDef,4; skill "TF_HIDING",1; + UnEquipScript: | + sc_end SC_HIDING; + - Id: 5275 + AegisName: Marvelous_Wig + Name: Marvelous Wig + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Mid: true + Head_Top: true + Refineable: true + View: 307 + Script: | + bonus bSpeedRate,25; bonus bDef,4; skill "TF_HIDING",1; + UnEquipScript: | + sc_end SC_HIDING; + - Id: 5276 + AegisName: Fantastic_Wig + Name: Fantastic Wig + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Mid: true + Head_Top: true + Refineable: true + View: 308 + Script: | + bonus bSpeedRate,25; bonus bDef,4; skill "TF_HIDING",1; + UnEquipScript: | + sc_end SC_HIDING; + - Id: 5277 + AegisName: Yellow_Bandana + Name: Yellow Bandana + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 309 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bLuk,2; bonus bVit,2; bonus bLongAtkDef,10; + - Id: 5278 + AegisName: Yellow_Ribbon + Name: Yellow Ribbon + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 310 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bLuk,2; bonus bVit,2; bonus bLongAtkDef,10; + - Id: 5279 + AegisName: Drooping_Kitty_C + Name: Refined Drooping Cat + Type: Armor + Buy: 2 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + View: 142 + Script: | + bonus bMdef,15; bonus2 bResEff,Eff_Curse,3000; + - Id: 5280 + AegisName: Magestic_Goat_C + Name: Baphomet Horns + Type: Armor + Buy: 2 + Defense: 5 + Locations: + Head_Top: true + View: 41 + Script: | + bonus bStr,1; + - Id: 5281 + AegisName: Deviruchi_Cap_C + Name: Refined Deviruchi Hat + Type: Armor + Buy: 2 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + View: 123 + Script: | + bonus bStr,1; bonus bInt,1; + - Id: 5282 + AegisName: euRO_Baseball_Cap + Name: Europe Baseball Cap + Type: Armor + Weight: 200 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 216 + - Id: 5283 + AegisName: Chick_Hat + Name: Chick Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + EquipLevelMin: 10 + View: 311 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bLuk,2; bonus bMaxHP,50; bonus bMaxSP,50; skill "TF_DOUBLE",2; bonus bDoubleRate,10; bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3; + - Id: 5284 + AegisName: Water_Lily_Crown + Name: Water Lily Crown + Type: Armor + Buy: 20 + Weight: 200 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + View: 312 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bDex,1; bonus bAgi,1; bonus bHPrecovRate,5; bonus bSPrecovRate,3; + - Id: 5285 + AegisName: Vane_Hairpin + Name: Vane Hairpin + Type: Armor + Buy: 20 + Weight: 300 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + View: 313 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bAgi,2; + - Id: 5286 + AegisName: Pecopeco_Hairband + Name: Pecopeco Hairband + Type: Armor + Buy: 20 + Defense: 3 + Locations: + Head_Top: true + EquipLevelMin: 70 + View: 314 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bSpeedRate,25; bonus bAspdRate,-10; bonus bCastrate,25; + - Id: 5287 + AegisName: Vacation_Hat + Name: Vacation Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + View: 315 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bVit,1; + - Id: 5288 + AegisName: Red_Glasses + Name: Red Glasses + Type: Armor + Buy: 20 + Defense: 1 + Locations: + Head_Mid: true + View: 316 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bInt,1; + - Id: 5289 + AegisName: Vanilmirth_Hat + Name: Vanilmirth Hat + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Top: true + EquipLevelMin: 30 + View: 317 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bUnbreakableHelm; bonus3 bAutoSpell,"MG_FIREBOLT",1,10; bonus3 bAutoSpell,"MG_COLDBOLT",1,10; bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",1,10; bonus bMdef,5; + - Id: 5290 + AegisName: Drooping_Bunny_ + Name: Drooping Bunny + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 249 + Script: | + bonus bDex,1; bonus bFlee,2; + - Id: 5291 + AegisName: Kettle_Hat + Name: Kettle Hat + Type: Armor + Buy: 20 + Weight: 600 + Defense: 4 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 318 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus4 bAutoSpell,"SA_DELUGE",2,10,0; bonus3 bAutoSpell,"WZ_WATERBALL",3,10; + - Id: 5292 + AegisName: Dragon_Skull + Name: Dragon Skull + Type: Armor + Buy: 20 + Weight: 800 + Defense: 5 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 319 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus2 bSubRace,RC_Dragon,5; + - Id: 5293 + AegisName: Ramen_Hat + Name: Ramen Hat + Type: Armor + Buy: 20 + Defense: 1 + Locations: + Head_Top: true + View: 320 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bDex,4; bonus4 bAutoSpellWhenHit,"AL_DECAGI",1,30,1; + - Id: 5294 + AegisName: Whisper_Mask + Name: Whisper Mask + Type: Armor + Buy: 20 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + View: 321 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bAgi,3; bonus2 bSubEle,Ele_Ghost,-10; + - Id: 5295 + AegisName: Golden_Bandana + Name: Golden Bandana + Type: Armor + Buy: 20 + Weight: 2400 + Defense: 4 + Locations: + Head_Mid: true + Head_Top: true + View: 138 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,4; + - Id: 5296 + AegisName: Drooping_Nine_Tail_ + Name: Drooping Nine Tail + Type: Armor + Buy: 20 + Weight: 300 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 296 + Script: | + bonus bAgi,1; bonus bCritical,1; + - Id: 5297 + AegisName: Soulless_Wing_ + Name: Soul Wing + Type: Armor + Buy: 20 + Weight: 300 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 301 + Script: | + bonus bAllStats,1; bonus2 bSPRegenRate,2,10000; + - Id: 5298 + AegisName: Marvelous_Wig_ + Name: Dokebi's Wig + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Slots: 1 + Locations: + Head_Mid: true + Head_Top: true + Refineable: true + View: 307 + Script: | + bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubEle,Ele_Fire,-5; bonus2 bSubEle,Ele_Water,-5; + - Id: 5299 + AegisName: Ati_Atihan_Hat_ + Name: Pagdayaw + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Slots: 1 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + View: 303 + Script: | + bonus3 bAutoSpell,"DC_SCREAM",1,50; + - Id: 5300 + AegisName: Bullock_Helm + Name: Bullock Helm + Type: Armor + Buy: 20 + Weight: 800 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 45 + Refineable: true + View: 322 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bMaxHP,100; + - Id: 5301 + AegisName: Russian_Ribbon + Name: Victory Hairband + Type: Armor + Weight: 100 + Locations: + Head_Top: true + Refineable: true + View: 323 + - Id: 5302 + AegisName: Lotus_Flower_Hat + Name: Flower Lily + Type: Armor + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 324 + - Id: 5303 + AegisName: Flower_Coronet + Name: Flower Crown + Type: Armor + Buy: 20 + Weight: 300 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 325 + Script: | + bonus bMdef,3; bonus bMaxHP,50; + - Id: 5304 + AegisName: Cap_Of_Blindness + Name: Cap Of Blindness + Type: Armor + Buy: 20 + Weight: 800 + Defense: 4 + Slots: 1 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 326 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus2 bResEff,Eff_Curse,700; bonus2 bResEff,Eff_Blind,10000; + - Id: 5305 + AegisName: Pirate_Dagger + Name: Pirate Dagger + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Low: true + View: 327 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bBaseAtk,5; + - Id: 5306 + AegisName: Freyja_Crown + Name: Freya's Crown + Type: Armor + Weight: 500 + Defense: 12 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + View: 328 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; + - Id: 5307 + AegisName: Carmen_Miranda's_Hat + Name: Carmen Miranda's Hat + Type: Armor + Buy: 20 + Weight: 400 + Defense: 3 + Locations: + Head_Top: true + Refineable: true + View: 329 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bMdef,3; bonus3 bAutoSpellWhenHit,"DC_WINKCHARM",1,50; + - Id: 5308 + AegisName: Brazilian_Flag_Hat + Name: Brazil National Flag Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 330 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bSpeedAddRate,25; + - Id: 5309 + AegisName: Mahican + Name: Wool Mask + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Refineable: true + View: 331 + Script: | + skill "RG_GRAFFITI",1; + - Id: 5310 + AegisName: Bulb_Hairband + Name: Shining Electric Bulb Hairband + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 332 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus2 bSubEle,Ele_Dark,10; skill "MG_SIGHT",1; + UnEquipScript: | + sc_end SC_SIGHT; + - Id: 5311 + AegisName: Large_Hibiscus + Name: Large Hisbiscus + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 333 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bMdef,15; + - Id: 5312 + AegisName: Ayothaya_Hat + Name: Ayothaya King's Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 5 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Head_Top: true + Refineable: true + View: 334 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bStr,1; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; + - Id: 5313 + AegisName: Diadem + Name: Diadem + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Slots: 1 + Locations: + Head_Mid: true + Head_Top: true + Refineable: true + View: 335 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bInt,1; bonus bMatkRate,3; bonus bCastrate,-3; + - Id: 5314 + AegisName: Hockey_Mask + Name: Hockey Mask + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Low: true + Head_Mid: true + EquipLevelMin: 50 + View: 336 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; + - Id: 5315 + AegisName: Observer + Name: Observer + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Mid: true + EquipLevelMin: 35 + View: 337 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + skill "WZ_ESTIMATION",1; + - Id: 5316 + AegisName: Umbrella_Hat + Name: Umbrella Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 338 + Script: | + bonus2 bSubEle,Ele_Water,3; + - Id: 5317 + AegisName: Fisherman_Hat + Name: Fisherman's Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 339 + Script: | + bonus3 bAutoSpell,"WZ_WATERBALL",3,50; + - Id: 5318 + AegisName: Poring_Party_Hat + Name: Poring Party Hat + Type: Armor + Buy: 20 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 340 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,3; + - Id: 5319 + AegisName: Hellomother_Hat + Name: Hello Mother Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 341 + Script: | + bonus bLuk,3; + - Id: 5320 + AegisName: Champion_Wreath + Name: Champion Wreath + Type: Armor + Buy: 20 + Weight: 500 + Defense: 4 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 261 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,2; bonus4 bAutoSpellWhenHit,"AL_HEAL",1,50,0; + - Id: 5321 + AegisName: Indonesian_Bandana + Name: Bandana Merah Putih + Type: Armor + Buy: 20 + Weight: 500 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 342 + - Id: 5322 + AegisName: Scarf + Name: Kerchief + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Locations: + Head_Top: true + EquipLevelMin: 24 + Refineable: true + View: 343 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,2; bonus bFlee,5; + - Id: 5323 + AegisName: Misstrance_Crown + Name: Misstrance Crown + Type: Armor + Buy: 20 + Defense: 10 + Locations: + Head_Top: true + View: 165 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,2; + - Id: 5324 + AegisName: Little_Angel_Doll + Name: Little Angel Doll + Type: Armor + Buy: 20 + Weight: 300 + Defense: 2 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 344 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bDex,3; bonus4 bAutoSpellWhenHit,"CR_GRANDCROSS",3,30,0; + - Id: 5325 + AegisName: Robo_Eye + Name: Robo Eye + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Locations: + Head_Mid: true + EquipLevelMin: 10 + View: 345 + Script: | + bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; bonus bDex,1; + - Id: 5326 + AegisName: Masquerade_C + Name: Masquerade C + Type: Armor + Buy: 1 + Defense: 1 + Locations: + Head_Mid: true + View: 78 + Script: | + bonus2 bAddRace,RC_DemiHuman,7; bonus2 bAddRace,RC_Player_Human,7; + - Id: 5327 + AegisName: Orc_Hero_Helm_C + Name: Refined Helmet of Orc Hero + Type: Armor + Buy: 1 + Defense: 10 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + Head_Top: true + View: 178 + Script: | + bonus bStr,5; bonus bVit,3; + - Id: 5328 + AegisName: Evil_Wing_Ears_C + Name: Evil Wing Ears C + Type: Armor + Buy: 1 + Defense: 2 + Locations: + Head_Mid: true + View: 152 + Script: | + bonus bStr,1; + - Id: 5329 + AegisName: Dark_Blindfold_C + Name: Dark Blindfold C + Type: Armor + Buy: 1 + Defense: 1 + Locations: + Head_Mid: true + View: 187 + Script: | + bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Stun,500; + - Id: 5330 + AegisName: kRO_Drooping_Kitty_C + Name: kRO Drooping Kitty C + Type: Armor + Buy: 1 + Defense: 6 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + View: 142 + Script: | + bonus bMdef,15; bonus2 bResEff,Eff_Curse,4000; bonus2 bResEff,Eff_Curse,1000; + - Id: 5331 + AegisName: Corsair_C + Name: Corsair C + Type: Armor + Buy: 1 + Defense: 10 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + View: 105 + Script: | + bonus bVit,3; bonus bInt,3; + - Id: 5332 + AegisName: Loki_Mask + Name: Loki Mask + Type: Armor + Weight: 200 + Locations: + Head_Low: true + Head_Mid: true + EquipLevelMin: 20 + View: 346 + Script: | + bonus bFlee2,3; + - Id: 5333 + AegisName: Radio_Antenna + Name: Radio Antenna + Type: Armor + Weight: 1500 + Defense: 2 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 347 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,5; bonus bCritical,5; bonus bFlee,5; skill "MG_LIGHTNINGBOLT",1; bonus4 bAutoSpellWhenHit,"MG_THUNDERSTORM",5,30,1; + - Id: 5334 + AegisName: Angeling_Wanna_Fly + Name: Flapping Angeling + Type: Armor + Weight: 700 + Locations: + Head_Top: true + EquipLevelMin: 38 + View: 348 + Script: | + bonus bLuk,2; bonus bMdef,2; + - Id: 5335 + AegisName: Jumping_Poring + Name: Jumping Poring + Type: Armor + Weight: 300 + Defense: 2 + Locations: + Head_Top: true + View: 349 + Script: | + bonus bLuk,1; bonus bUnbreakableHelm; + - Id: 5336 + AegisName: Guildsman_Recruiter + Name: Guildsman Recruiter Hat + Type: Armor + Defense: 2 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 350 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + - Id: 5337 + AegisName: Party_Recruiter_Hat + Name: Party Recruiter Hat + Type: Armor + Defense: 2 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 351 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + - Id: 5338 + AegisName: Bf_Recruiter_Hat + Name: Bf Recruiter Hat + Type: Armor + Defense: 2 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 352 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 5339 + AegisName: Friend_Recruiter_Hat + Name: Friend Recruiter Hat + Type: Armor + Defense: 2 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 353 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 5340 + AegisName: Deprotai_Doll_Hat + Name: Defolty Doll Hat + Type: Armor + Weight: 500 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 60 + View: 354 + Script: | + bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bStr,2; bonus3 bAutoSpellWhenHit,"AL_ANGELUS",10,20; + - Id: 5341 + AegisName: Claris_Doll_Hat + Name: Glaris Doll Hat + Type: Armor + Weight: 500 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 60 + View: 355 + Script: | + bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bInt,2; bonus bMagicHPGainValue,50; + - Id: 5342 + AegisName: Sorin_Doll_Hat + Name: Sorin Doll Hat + Type: Armor + Weight: 500 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 60 + View: 356 + Script: | + bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bDex,2; autobonus "{ bonus bBaseAtk,50; }",20,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }"; + - Id: 5343 + AegisName: Tayelin_Doll_Hat + Name: Telling Doll Hat + Type: Armor + Weight: 500 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 60 + View: 357 + Script: | + bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bAgi,2; bonus2 bAddItemHealRate,504,10; bonus2 bAddItemHealRate,547,10; + - Id: 5344 + AegisName: Binit_Doll_Hat + Name: Bennit Doll Hat + Type: Armor + Weight: 500 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 60 + View: 358 + Script: | + bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bVit,2; autobonus "{ bonus bAspdRate,5; }",20,30000,0,"{ specialeffect2 EF_HASTEUP; }"; + - Id: 5345 + AegisName: Debril_Doll_Hat + Name: W Doll Hat + Type: Armor + Weight: 500 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 60 + View: 359 + Script: | + bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bLuk,2; bonus2 bAddRace,RC_Undead,5; bonus2 bMagicAddRace,RC_Undead,5; bonus2 bSubRace,RC_Undead,5; + - Id: 5346 + AegisName: Gf_Recruiter_Hat + Name: Gf Recruiter Hat + Type: Armor + Defense: 2 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 360 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 5347 + AegisName: Ph.D_Hat_ + Name: Ph.D Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 3 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 98 + - Id: 5348 + AegisName: Big_Sis'_Ribbon_ + Name: Big Ribbon + Type: Armor + Buy: 15000 + Weight: 200 + Defense: 2 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 28 + Script: | + bonus bMdef,3; + - Id: 5349 + AegisName: Boy's_Cap_ + Name: Boy's Cap + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 102 + - Id: 5350 + AegisName: Pirate_Bandana_ + Name: Pirate Bandana + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 74 + Script: | + bonus bStr,1; + - Id: 5351 + AegisName: Sunflower_ + Name: Sunflower + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + View: 37 + Script: | + bonus2 bSubRace,RC_Insect,10; + - Id: 5352 + AegisName: Poporing_Cap + Name: Poporing Cap + Type: Armor + Buy: 20 + Weight: 700 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 38 + Refineable: true + View: 361 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + - Id: 5353 + AegisName: Helm_Of_Sun_ + Name: Hat of the Sun God + Type: Armor + Buy: 20 + Weight: 2400 + Defense: 4 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Locations: + Head_Mid: true + Head_Top: true + Refineable: true + View: 138 + Script: | + bonus bStr,3; bonus bInt,2; + - Id: 5354 + AegisName: Muslim_Hat_M + Name: Muslim Hat M + Type: Armor + Weight: 100 + Defense: 2 + Gender: Male + Locations: + Head_Top: true + View: 362 + Script: | + bonus bCastrate,-5; + - Id: 5355 + AegisName: Muslim_Hat_F + Name: Selendang + Type: Armor + Weight: 100 + Defense: 2 + Gender: Female + Locations: + Head_Top: true + View: 363 + Script: | + bonus bCastrate,-5; + - Id: 5356 + AegisName: Pumpkin_Hat_H + Name: Festival Pumpkin Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 206 + Trade: + Override: 100 + NoMail: true + NoAuction: true + Script: | + bonus2 bSubRace,RC_Demon,5; bonus2 bAddRace,RC_Demon,5; + - Id: 5357 + AegisName: Wings_Of_Victory + Name: Wings Of Victory + Type: Armor + Buy: 20 + Weight: 200 + Defense: 10 + Locations: + Head_Mid: true + Head_Top: true + View: 365 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,10; bonus bUnbreakableHelm; + - Id: 5358 + AegisName: Pecopeco_Wing_Ears + Name: Peco Ears + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Mid: true + EquipLevelMin: 70 + View: 366 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bAgi,1; bonus bMdef,2; bonus bUnbreakableHelm; + - Id: 5359 + AegisName: J_Captain_Hat + Name: Ship Captain Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 60 + Refineable: true + View: 367 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bDex,1; bonus bLongAtkRate,7; bonus bMaxHP,100; + - Id: 5360 + AegisName: Whikebain_Ears + Name: Hyuke's Black Cat Ears + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Locations: + Head_Top: true + EquipLevelMin: 45 + Refineable: true + View: 368 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bFlee,10; bonus bCritical,3; bonus bCritAtkRate,10; bonus bDefRate,-50; bonus bDef2Rate,-50; + - Id: 5361 + AegisName: Gang_Scarf + Name: Gangster Scarf + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Low: true + EquipLevelMin: 60 + View: 369 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bBaseAtk,5; if(BaseJob==Job_Rogue) skill "RG_GANGSTER",1; + - Id: 5362 + AegisName: Ninja_Scroll + Name: Ninja Scroll + Type: Armor + Buy: 20 + Weight: 200 + Locations: + Head_Low: true + EquipLevelMin: 60 + View: 370 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bMatkRate,1; + - Id: 5363 + AegisName: Helm_Of_Abyss + Name: Helm Of Abyss + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 2 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 371 + Script: | + bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player_Human,-10; bonus2 bSubClass,Class_Boss,10; + - Id: 5364 + AegisName: Dark_Snake_Lord_Hat + Name: Evil Snake Lord Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 60 + Refineable: true + View: 372 + Script: | + bonus bStr,1; bonus bInt,1; bonus bAgi,2; + - Id: 5365 + AegisName: Fried_Egg + Name: Magnolia Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + View: 373 + Script: | + bonus2 bResEff,Eff_Stun,500; skill "HT_FLASHER",1; + - Id: 5366 + AegisName: Hat_0f_King + Name: Love Dad Bandana + Type: Armor + Buy: 20 + Weight: 200 + Defense: 3 + Locations: + Head_Top: true + Refineable: true + View: 374 + Script: | + bonus bAllStats,5; + - Id: 5367 + AegisName: Hyegun_Hat + Name: Hyegun Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 5 + Slots: 1 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + EquipLevelMin: 10 + View: 375 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bMdef,3; bonus2 bSubRace,RC_Demon,10; + - Id: 5368 + AegisName: White_Wing + Name: White Wing + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 38 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddMonsterDropItem,12280,300; + - Id: 5369 + AegisName: Dark_Wing + Name: Dark Wing + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 39 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddMonsterDropItem,12279,300; + - Id: 5370 + AegisName: Orchid_Hairband + Name: Orchid Hairband + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 376 + Script: | + bonus bInt,1; + - Id: 5371 + AegisName: Hat_Of_Judge + Name: Judge Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 2 + Locations: + Head_Mid: true + Head_Top: true + Refineable: true + View: 377 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bLuk,1; bonus bMaxSP,30; + - Id: 5372 + AegisName: Drooping_White_Kitty + Name: Koneko Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 378 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bInt,1; bonus bDelayRate,-3; bonus bMatkRate,3; bonus bMaxSPrate,3; bonus bMdef,3; + - Id: 5373 + AegisName: Darkness_Helm + Name: Dark Randgris Helm + Type: Armor + Buy: 20 + Weight: 300 + Defense: 2 + Slots: 1 + Locations: + Head_Mid: true + Head_Top: true + Refineable: true + View: 379 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bDex,3; bonus bMdef,1; + - Id: 5374 + AegisName: L_Magestic_Goat + Name: Gigantic Majestic Goat + Type: Armor + Buy: 20 + Weight: 800 + Defense: 5 + Locations: + Head_Top: true + Refineable: true + View: 380 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus2 bAddRace,RC_DemiHuman,12; bonus2 bAddRace,RC_Player_Human,12; bonus bBaseAtk,(JobLevel*2)/7; + - Id: 5375 + AegisName: L_Orc_Hero_Helm + Name: Orc Hero Headdress + Type: Armor + Buy: 20 + Weight: 900 + Defense: 5 + Slots: 1 + Locations: + Head_Mid: true + Head_Top: true + Refineable: true + View: 381 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bStr,2; bonus3 bAutoSpellWhenHit,"BS_WEAPONPERFECT",3,10; + - Id: 5376 + AegisName: Satanic_Chain_P + Name: Flying Evil Wing + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 382 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bMaxSP,120; bonus2 bAddEff2,Eff_Curse,300; + - Id: 5377 + AegisName: Antique_Pipe + Name: Gentleman's Pipe + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Low: true + View: 383 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; + - Id: 5378 + AegisName: Rabbit_Ear_Hat + Name: Bunny Top Hat + Type: Armor + Buy: 20 + Weight: 300 + Locations: + Head_Top: true + Refineable: true + View: 384 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bAgi,3; bonus3 bAutoSpellWhenHit,"AL_INCAGI",5,10; + - Id: 5379 + AegisName: Balloon_Hat + Name: Tam + Type: Armor + Weight: 800 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 385 + Script: | + bonus bMdef,2; bonus bMatkRate,2+(getrefine()/2); + - Id: 5380 + AegisName: Fish_Head_Hat + Name: Fish Head Hat + Type: Armor + Buy: 20 + Weight: 400 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 386 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus3 bAutoSpell,"SA_FROSTWEAPON",1,5; + - Id: 5381 + AegisName: Santa_Poring_Hat + Name: Santa Poring Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + View: 387 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bMdef,2; bonus2 bAddEle,Ele_Dark,3; bonus2 bSubEle,Ele_Dark,3; + - Id: 5382 + AegisName: Bell_Ribbon + Name: Bell Ribbon + Type: Armor + Buy: 20 + Weight: 200 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 388 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bVit,1; skill "AL_ANGELUS",1; + UnEquipScript: | + sc_end SC_ANGELUS; + - Id: 5383 + AegisName: Hunting_Cap + Name: Hunter's Cap + Type: Armor + Buy: 20 + Weight: 250 + Defense: 3 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 389 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bLuk,1; bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Player_Doram,10; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; + - Id: 5384 + AegisName: Santa_Hat_1 + Name: Twin Pompom By JB + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 390 + Script: | + bonus bLuk,3; skill "WZ_ESTIMATION",1; bonus3 bAutoSpell,"AL_INCAGI",1,500; + - Id: 5385 + AegisName: Yoyo_Hat + Name: Yoyo Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 1 + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 391 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + skill "TF_HIDING", 1; + UnEquipScript: | + sc_end SC_HIDING; + - Id: 5386 + AegisName: Ayam_ + Name: Ayam + Type: Armor + Weight: 70 + Defense: 7 + Locations: + Head_Top: true + EquipLevelMin: 1 + View: 228 + Trade: + Override: 100 + NoMail: true + NoAuction: true + Script: | + bonus bMdef,7; bonus bFlee,7; bonus2 bAddMonsterDropItem,12198,200; + - Id: 5387 + AegisName: Neko_Mimi_Kafra + Name: Neko Mimi Kafra + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 392 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bMdef,5; + - Id: 5388 + AegisName: Snake_Head + Name: Snake Head Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 393 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + skill "TF_DOUBLE",5; bonus bDoubleRate,25; + - Id: 5389 + AegisName: Angel_Spirit + Name: Angel Spirit + Type: Armor + Buy: 20 + Weight: 200 + Locations: + Head_Mid: true + EquipLevelMin: 30 + View: 394 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bStr,2; bonus bHit,15; + - Id: 5390 + AegisName: Santa_Hat_2 + Name: Frozen Twin Pompom + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 395 + Script: | + bonus2 bResEff, Eff_Freeze, 3000; + - Id: 5391 + AegisName: Toast_C + Name: Toast + Type: Armor + Buy: 20 + Locations: + Head_Low: true + View: 188 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,100; bonus2 bAddMonsterDropItem,617,10; + - Id: 5392 + AegisName: Louyang_Cap + Name: Luoyang NewYear Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 396 + Script: | + bonus bLuk,2; + - Id: 5393 + AegisName: Valentine_Hat + Name: Love Valentine's Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Locations: + Head_Top: true + View: 397 + Script: | + bonus bMaxSPrate, 7; bonus bMaxHPrate, 7; + - Id: 5394 + AegisName: Bubblegum_Lower + Name: Bubblegum + Type: Armor + Locations: + Head_Low: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 5395 + AegisName: Tiraya_Bonnet + Name: Striped Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 398 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bMaxHP,100+(getrefine()*20); bonus bLuk,3; + - Id: 5396 + AegisName: Jasper_Crest + Name: Jasper Crest + Type: Armor + Buy: 20 + Weight: 700 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 399 + Script: | + bonus bDex,3; bonus bVit,1; + - Id: 5397 + AegisName: Scuba_Mask + Name: Scuba Gear + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Mid: true + View: 400 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus2 bSubEle,Ele_Water, 10; bonus bUnbreakableHelm, 0; + - Id: 5398 + AegisName: Bone_Head + Name: Bone Head + Type: Armor + Buy: 20 + Weight: 1200 + Defense: 5 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Classes: + Upper: true + Locations: + Head_Top: true + EquipLevelMin: 85 + Refineable: true + View: 401 + Script: | + bonus bStr,2; bonus bMdef,5; bonus2 bResEff,Eff_Stun,500; bonus2 bResEff,Eff_Bleeding,500; + - Id: 5399 + AegisName: Mandragora_Cap + Name: Mandragora Cap + Type: Armor + Buy: 20 + Weight: 300 + Defense: 1 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Classes: + Upper: true + Locations: + Head_Top: true + EquipLevelMin: 85 + View: 402 + Script: | + bonus bVit,3; bonus3 bAutoSpellWhenHit,"DC_SCREAM",5,30; + - Id: 5400 + AegisName: Fox_Hat + Name: Fox Hat + Type: Armor + Buy: 20 + Weight: 200 + Gender: Female + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + View: 403 + Script: | + bonus bLuk,1; + - Id: 5401 + AegisName: Black_Glasses + Name: Black Frame Glasses + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Locations: + Head_Mid: true + EquipLevelMin: 70 + View: 404 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bInt,1; bonus bMdef,2; bonus bUnbreakableHelm, 0; + - Id: 5402 + AegisName: Mischievous_Fairy + Name: Mischievous Fairy + Type: Armor + Buy: 10 + Weight: 200 + Defense: 1 + Locations: + Head_Mid: true + EquipLevelMin: 70 + View: 405 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bUnbreakableHelm, 0; bonus bFlee2, 3; + - Id: 5403 + AegisName: Fish_In_Mouth + Name: Fish In Mouth + Type: Armor + Buy: 10 + Weight: 200 + Locations: + Head_Low: true + EquipLevelMin: 30 + View: 406 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus2 bAddMonsterDropItem,579,500; bonus2 bAddItemHealRate,579,25; + - Id: 5404 + AegisName: Blue_Ribbon + Name: Blue Ribbon + Type: Armor + Buy: 10 + Weight: 100 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 45 + Refineable: true + View: 407 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus4 bAutoSpellWhenHit,"AC_CONCENTRATION",2,7,0; + - Id: 5405 + AegisName: Filir_Hat + Name: Filir Hat + Type: Armor + Buy: 10 + Weight: 200 + Locations: + Head_Top: true + EquipLevelMin: 80 + View: 408 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bShortWeaponDamageReturn, 1; + - Id: 5406 + AegisName: Academy_Freshman_Hat + Name: Academy Freshman Hat + Type: Armor + Weight: 500 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 409 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,80; bonus bMaxSP,10; + - Id: 5407 + AegisName: Academy_Graduating_Cap + Name: Academy Completion Hat + Type: Armor + Weight: 200 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 410 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxSP,30; + - Id: 5408 + AegisName: Old_Bandanna + Name: Old Bandana + Type: Armor + Defense: 5 + Locations: + Head_Top: true + View: 6 + Script: | + bonus bInt,2; bonus bMaxSP,50; bonus bCastrate,10; + - Id: 5409 + AegisName: New_Cowboy_Hat + Name: Purple Cowboy Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 4 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 411 + Script: | + bonus bInt,2; bonus bVit,2; bonus bMaxSP,50; + - Id: 5410 + AegisName: Bread_Bag2 + Name: Brown Paperbag Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 6 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + View: 412 + Script: | + bonus bMaxHP,100; bonus2 bResEff, Eff_Stun, 400; bonus2 bSubRace,RC_DemiHuman,4; bonus2 bSubRace,RC_Player_Human,4; + - Id: 5411 + AegisName: White_Snake_Hat + Name: White Snake Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 413 + Script: | + bonus bDex,2; + - Id: 5412 + AegisName: Sweet_Candy + Name: Sweet Candy + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Low: true + View: 414 + Script: | + bonus bUnbreakableHelm, 0; + - Id: 5413 + AegisName: Popcorn_Hat + Name: Pop Corn Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 2 + Locations: + Head_Top: true + View: 415 + Script: | + bonus2 bSubEle,Ele_Wind, 10; + - Id: 5414 + AegisName: Campfire_Hat + Name: Camp Fire Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 2 + Locations: + Head_Top: true + View: 416 + Script: | + bonus2 bSubEle,Ele_Fire,10; bonus4 bAutoSpellWhenHit,"MG_FIREBALL",5,100,1; + - Id: 5415 + AegisName: Poring_Cake_Cap + Name: Poring Cake Hat + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 5 + Locations: + Head_Top: true + EquipLevelMin: 40 + Refineable: true + View: 417 + Script: | + bonus bMdef,5; bonus bCritical,5; bonus bFlee,5; bonus bFlee2,5; bonus bAspdRate,5; bonus bCastrate,-5; bonus bDelayRate,-5; + - Id: 5416 + AegisName: Beer_Cap + Name: Beer Hat + Type: Armor + Buy: 20 + Weight: 600 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 18 + Refineable: true + View: 418 + Script: | + bonus bFlee2,5; skill "SM_RECOVERY",3; skill "MG_SRECOVERY",3; + - Id: 5417 + AegisName: Crown_Parrot + Name: Crown Parrots + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + View: 419 + Script: | + bonus bInt,1; bonus2 bResEff,Eff_Silence,10000; bonus3 bAutoSpell,"DC_SCREAM",1,50; + - Id: 5418 + AegisName: Soldier_Hat + Name: Legionnaire Hat + Type: Armor + Buy: 20 + Weight: 400 + Defense: 4 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 420 + Script: | + bonus bStr,1; bonus2 bAddClass,Class_All,3; bonus bUseSPrate,10; + - Id: 5419 + AegisName: Evolved_Leaf + Name: Leaves Of Grass + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Low: true + View: 57 + Script: | + bonus bVit,1; bonus2 bSubRace,RC_Plant,5; + - Id: 5420 + AegisName: Mask_Of_Ifrit + Name: Mask Of Ifrit + Type: Armor + Defense: 8 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + EquipLevelMin: 70 + View: 421 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bStr,1; bonus bInt,1; bonus bMdef,5; bonus2 bSubEle,Ele_Fire,10; bonus2 bSubEle,Ele_Water,-10; skill "MG_SIGHT",1; bonus3 bAutoSpellWhenHit,"WZ_METEOR",3,50; bonus3 bAutoSpell,"MG_FIREBOLT",3,50; + UnEquipScript: | + sc_end SC_SIGHT; + - Id: 5421 + AegisName: Ifrit's_Ear + Name: Ears Of Ifrit + Type: Armor + Buy: 20 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + EquipLevelMin: 70 + View: 422 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bStr,1; bonus bMdef,3; bonus2 bSkillAtk,"MG_FIREBOLT",2; bonus2 bSkillAtk,"WZ_FIREPILLAR",2; bonus2 bSkillAtk,"WZ_METEOR",2; bonus2 bSkillAtk,"SM_BASH",2; bonus2 bSkillAtk,"SM_MAGNUM",2; bonus2 bSkillAtk,"KN_PIERCE",2; bonus2 bSubEle,Ele_Fire,5; bonus2 bSubEle,Ele_Water,-5; + - Id: 5422 + AegisName: Linguistic_Book_Cap + Name: Linguistic Book Hat + Type: Armor + Buy: 20 + Weight: 70 + Locations: + Head_Top: true + Refineable: true + View: 423 + Script: | + bonus bInt,1; bonus bMdef,2; + - Id: 5423 + AegisName: Lovecap_China + Name: I Love China + Type: Armor + Buy: 20 + Weight: 250 + Defense: 5 + Locations: + Head_Top: true + View: 424 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bDex,3; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; + - Id: 5424 + AegisName: Fanta_Orange_Can + Name: Fanta Orange Can Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 425 + - Id: 5425 + AegisName: Fanta_Grape_Can + Name: Fanta Grape Can Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 426 + - Id: 5426 + AegisName: Karada_Meguri_Tea_Hat + Name: Karada Meguricha Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 427 + Script: | + bonus bLuk,1; + - Id: 5427 + AegisName: Royal_Milk_Tea_Hat + Name: Black Tea Kochakaden Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 428 + Script: | + bonus bAgi,1; + - Id: 5428 + AegisName: Bread_Bag1 + Name: RWC Anniversary Bread Envelope + Type: Armor + Weight: 100 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Refineable: true + View: 429 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bSubRace,RC_DemiHuman,12; bonus2 bSubRace,RC_Player_Human,12; + - Id: 5429 + AegisName: Bogy_Cap + Name: Bogy Cap + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 430 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bHPrecovRate, 5; bonus bSPrecovRate, 5; + - Id: 5430 + AegisName: Sacred_Torch_Coronet + Name: Torch Cap + Type: Armor + Buy: 20 + Defense: 3 + Locations: + Head_Top: true + View: 431 + Trade: + Override: 100 + NoDrop: true + NoGuildStorage: true + Script: | + bonus2 bSubEle,Ele_Fire,20; skill "MG_FIREBOLT",5; + - Id: 5431 + AegisName: Chicken_Hat + Name: Chicken Hat + Type: Armor + Buy: 20 + Weight: 1000 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 432 + Script: | + bonus3 bAutoSpell,"MC_LOUD",1,30; bonus bAspdRate,5; + - Id: 5432 + AegisName: Brazil_Baseball_Cap + Name: bRO 4th Anniversary Hat + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Top: true + Refineable: true + View: 433 + Script: | + if(gettime(DT_MONTH)==SEPTEMBER&&gettime(DT_DAYOFMONTH)>=10&&gettime(DT_DAYOFMONTH)<=24) bonus bAllStats, 4; + - Id: 5433 + AegisName: Golden_Wreath + Name: Golden Laurel + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Top: true + Refineable: true + View: 434 + - Id: 5435 + AegisName: Coke_Hat + Name: Red Minstrel Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 40 + Refineable: true + View: 436 + Script: | + bonus bInt,1; bonus bMaxSP,80; bonus bMdef,3; if(getrefine()>5) { bonus bMdef,getrefine()-5; bonus bMaxSP,(getrefine()-5)*10; } + - Id: 5436 + AegisName: Bride's_Corolla + Name: Bride's Corolla + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 437 + Script: | + bonus bLuk,3; bonus bMdef,2; + - Id: 5437 + AegisName: Flower_Of_Fairy + Name: Fairy Flower + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 438 + Script: | + bonus bInt,1; bonus bMdef,1; bonus2 bSubRace,RC_Insect,5; + - Id: 5438 + AegisName: Fillet_Green + Name: Cute Green Ribbon + Type: Armor + Buy: 500 + Weight: 100 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + View: 439 + Script: | + bonus bMaxSP,20; + - Id: 5439 + AegisName: Fillet_Red + Name: Cute Red Ribbon + Type: Armor + Buy: 500 + Weight: 100 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + View: 440 + Script: | + bonus bMaxSP,20; + - Id: 5440 + AegisName: Fillet_Blue + Name: Cute Blue Ribbon + Type: Armor + Buy: 500 + Weight: 100 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + View: 441 + Script: | + bonus bMaxSP,20; + - Id: 5441 + AegisName: Fillet_White + Name: Cute White Ribbon + Type: Armor + Buy: 500 + Weight: 100 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + View: 442 + Script: | + bonus bMaxSP,20; + - Id: 5442 + AegisName: Necktie + Name: Necktie + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 443 + Script: | + bonus bVit,1; bonus bHit,-5; bonus bUseSPrate,5; + - Id: 5443 + AegisName: Status_Of_Baby_Angel + Name: Statue Of Baby Angel + Type: Armor + Buy: 20 + Weight: 600 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 444 + Script: | + bonus bMdef,2; bonus4 bAutoSpellWhenHit,"PR_STRECOVERY",1,20,0; + - Id: 5444 + AegisName: Hair_Brush + Name: Hair Brush + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Top: true + Refineable: true + View: 445 + Script: | + bonus bCritical,6; + - Id: 5445 + AegisName: Candy_Cane_In_The_Mouth + Name: Candy Cane In Mouth + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Low: true + View: 446 + Script: | + bonus bMaxSP,5; + - Id: 5446 + AegisName: Cat_Foot_Hairpin + Name: Catfoot Hairpin + Type: Armor + Buy: 20 + Weight: 200 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 447 + Script: | + bonus bFlee,5; bonus bFlee2,3; + - Id: 5447 + AegisName: Frog_Cap + Name: Frog Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 3 + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 448 + Script: | + bonus bMdef,1; bonus2 bAddRace,RC_Insect,12; bonus2 bMagicAddRace,RC_Insect,12; + - Id: 5448 + AegisName: Solo_Play_Box1 + Name: Soloplay Box1 + Type: Armor + Weight: 300 + Slots: 1 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Refineable: true + View: 449 + - Id: 5449 + AegisName: Solo_Play_Box2 + Name: Soloplay Box2 + Type: Armor + Weight: 300 + Slots: 1 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Refineable: true + View: 450 + - Id: 5450 + AegisName: Sun_Cap + Name: Solar Hat + Type: Armor + Buy: 20 + Weight: 1000 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 451 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 5451 + AegisName: Dragonhelm_Gold + Name: RWC 2008 Dragon Helm Gold + Type: Armor + Buy: 20 + Weight: 2500 + Defense: 7 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + View: 452 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAspdRate,10; bonus bAllStats,3; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; + - Id: 5452 + AegisName: Dragonhelm_Silver + Name: RWC 2008 Dragon Helm Silver + Type: Armor + Buy: 20 + Weight: 2500 + Defense: 5 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + View: 453 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAspdRate,7; bonus bAllStats,2; bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player_Human,3; + - Id: 5453 + AegisName: Dragonhelm_Copper + Name: RWC 2008 Dragon Helm Copper + Type: Armor + Buy: 20 + Weight: 2500 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + View: 454 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAspdRate,5; bonus bAllStats,2; bonus2 bAddRace,RC_DemiHuman,1; bonus2 bAddRace,RC_Player_Human,1; + - Id: 5454 + AegisName: Dog_Cap_ + Name: Puppy Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 234 + Script: | + bonus bStr,1; bonus bInt,1; autobonus "{ bonus bCritical,100; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; autobonus "{ bonus2 bIgnoreMdefClassRate,Class_Normal,100; bonus2 bIgnoreMdefClassRate,Class_Boss,100; }",10,3000,BF_MAGIC,"{ specialeffect2 EF_MAGICALATTHIT; }"; + - Id: 5455 + AegisName: Geographer_Band_ + Name: Decorative Geographer + Type: Armor + Buy: 20 + Weight: 500 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 238 + Script: | + bonus bInt,1; bonus3 bAutoSpell,"AL_HEAL",5,50; bonus3 bAutoSpellWhenHit,"AL_HEAL",5,30; + - Id: 5456 + AegisName: Vacation_Hat_ + Name: Summer Hat + Type: Armor + Buy: 20 + Weight: 200 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 315 + Script: | + bonus bVit,5; bonus bHPrecovRate,20; bonus bSPrecovRate,15; + - Id: 5457 + AegisName: Spring_Rabbit_Hat + Name: Moon Rabbit Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 455 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bAgi,3; bonus bBaseAtk,5; bonus bMatkRate,5; if(getrefine()>4) { bonus bBaseAtk,getrefine()-4; bonus bMatkRate,getrefine()-4; } + - Id: 5458 + AegisName: Pinwheel_Cap + Name: Pinwheel Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 456 + Script: | + bonus bMaxHPrate,5; bonus bMaxSPrate,5; + - Id: 5459 + AegisName: Drooping_Bunny_Chusuk + Name: Drooping Bunny + Type: Armor + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 249 + Script: | + bonus bDex,1; bonus bFlee,2; + - Id: 5460 + AegisName: Adv_Dragon_Skull + Name: Evolved Dragon Skull Hat + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 7 + Locations: + Head_Top: true + EquipLevelMin: 60 + Refineable: true + View: 457 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats, 2; bonus bMaxHPrate, 3; + - Id: 5461 + AegisName: Adv_Whisper_Mask + Name: Evolved Whisper Mask + Type: Armor + Buy: 20 + Weight: 300 + Defense: 1 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 458 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,3; bonus2 bSubEle,Ele_Ghost, 20; + - Id: 5462 + AegisName: Spiked_Scarf + Name: Spiked Scarf + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Low: true + EquipLevelMin: 90 + View: 459 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bVit,1; bonus2 bAddRace,RC_DemiHuman,1; bonus2 bAddRace,RC_Player_Human,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; + - Id: 5463 + AegisName: Rainbow_Scarf + Name: Rainbow Scarf + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Low: true + EquipLevelMin: 90 + View: 460 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,1; bonus bMdef,2; bonus bMatkRate,1; + - Id: 5464 + AegisName: Zaha_Doll_Hat + Name: Zaha Doll Hat + Type: Armor + Buy: 20 + Defense: 1 + Locations: + Head_Top: true + View: 461 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,2; skill "PR_MAGNIFICAT", 3; + - Id: 5476 + AegisName: Hairband_Of_Grandpeco + Name: Grand Peco Hairband + Type: Armor + Buy: 20 + Weight: 800 + Defense: 2 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 473 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bStr,2; bonus bMaxHPrate,-10; bonus2 bAddRace2,RC2_Orc,15; + - Id: 5477 + AegisName: Bro_Flag + Name: Brazilian Flag Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 474 + Script: | + skill "SM_BASH", 1; + - Id: 5478 + AegisName: Classic_Hat + Name: Classic Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 3 + Locations: + Head_Top: true + Refineable: true + View: 475 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,2; bonus bMaxHP,300; + - Id: 5479 + AegisName: Shaman's_Hair_Ornament + Name: Shaman's Hair Decoration + Type: Armor + Buy: 20 + Weight: 300 + Defense: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 476 + Trade: + Override: 100 + NoDrop: true + NoGuildStorage: true + Script: | + bonus bMdef,3; bonus bMaxHP,50; bonus2 bSubEle,Ele_Neutral,5; + - Id: 5480 + AegisName: Bizofnil_Wing_Deco + Name: Bijofnil Wings + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 3 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 477 + Trade: + Override: 100 + NoDrop: true + NoGuildStorage: true + Script: | + bonus bAllStats,2; bonus3 bAutoSpell,"PR_IMPOSITIO",3,3; + - Id: 5481 + AegisName: Hermose_Cap + Name: Hermode Cap + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 478 + Trade: + Override: 100 + NoDrop: true + NoGuildStorage: true + Script: | + bonus bAspdRate,10; bonus bBaseAtk,-20; bonus bMatkRate,-10; + - Id: 5482 + AegisName: Dark_Knight_Mask + Name: Dark Knight Mask + Type: Armor + Weight: 3000 + Defense: 5 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + EquipLevelMin: 80 + Refineable: true + View: 479 + Trade: + Override: 100 + NoDrop: true + NoGuildStorage: true + Script: | + bonus bStr,3; + - Id: 5483 + AegisName: Odin_Mask + Name: Odin Mask + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Low: true + Head_Mid: true + EquipLevelMin: 50 + View: 480 + Trade: + Override: 100 + NoDrop: true + NoGuildStorage: true + Script: | + bonus bHit,-10; bonus2 bAddRace,RC_DemiHuman,6; bonus2 bAddRace,RC_Player_Human,6; + - Id: 5485 + AegisName: Tiger_Face + Name: Tiger Face + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 3 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + EquipLevelMin: 60 + Refineable: true + View: 483 + Script: | + bonus2 bSubRace,RC_Brute,5; bonus2 bAddRace,RC_Brute,5; bonus2 bMagicAddRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5; bonus2 bAddRace,RC_Player_Doram,5; bonus2 bMagicAddRace,RC_Player_Doram,5; + - Id: 5486 + AegisName: J_Anniversary_Hat + Name: Anniversary Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 3 + Locations: + Head_Top: true + Refineable: true + View: 395 + Script: | + bonus bAllStats, 2; + - Id: 5487 + AegisName: J_Poringcake_Hat + Name: Poring Cake Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 417 + Script: | + bonus bLuk,2; + - Id: 5488 + AegisName: J_Twin_Santahat + Name: Twin Santa Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 390 + Script: | + bonus bLuk,1; bonus bMdef,1; + - Id: 5489 + AegisName: Love_Daddy + Name: Love Daddy Hat + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Top: true + Refineable: true + View: 484 + Script: | + bonus bDex,2; + - Id: 5490 + AegisName: Anubis_Helm + Name: Anubis Helm + Type: Armor + Buy: 20 + Defense: 3 + Locations: + Head_Top: true + EquipLevelMin: 70 + View: 485 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,5; bonus2 bSubClass,Class_Boss,10; bonus bHealpower2,10; bonus bAddItemHealRate,10; + - Id: 5491 + AegisName: Hat_Of_Outlaw + Name: Bandit Hat + Type: Armor + Buy: 20 + Weight: 800 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 486 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,2; bonus2 bSubEle,Ele_Fire, 10; + - Id: 5492 + AegisName: Boy's_Cap_I + Name: Student Cap + Type: Armor + Defense: 5 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + View: 102 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,3; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; + - Id: 5493 + AegisName: Ulle_Cap_I + Name: Ulle's Cap + Type: Armor + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + View: 254 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,2; bonus bAgi,1; + - Id: 5494 + AegisName: Spinx_Helm_I + Name: Sphinx Hat + Type: Armor + Defense: 5 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Head_Low: true + Head_Top: true + View: 137 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,5; + - Id: 5495 + AegisName: Power_Of_Thor + Name: Power Of Thor + Type: Armor + Buy: 20 + Weight: 100 + Defense: 6 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 75 + Refineable: true + View: 493 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bInt,1; bonus bDex,1; bonus bMdef,3; bonus bFlee,5; + - Id: 5496 + AegisName: Dice_Hat + Name: Dice Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 3 + Locations: + Head_Top: true + EquipLevelMin: 50 + View: 494 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bLuk,4; + - Id: 5497 + AegisName: King_Tiger_Doll_Hat + Name: King Tiger Doll Hat + Type: Armor + Buy: 20 + Weight: 400 + Defense: 3 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 495 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,2; + - Id: 5498 + AegisName: Wondering_Wolf_Helm + Name: Wandering Wolf Helm + Type: Armor + Buy: 20 + Weight: 600 + Defense: 5 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 490 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bVit,5; bonus bFlee,10; + - Id: 5499 + AegisName: Pizza_Hat + Name: Pizza Hat + Type: Armor + Buy: 20 + Weight: 600 + Locations: + Head_Top: true + View: 487 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + skill "SM_PROVOKE", 1; + - Id: 5500 + AegisName: Icecream_Hat + Name: Icecream Hat + Type: Armor + Weight: 300 + Defense: 6 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 488 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bMdef,3; skill "MG_FROSTDIVER",3; + - Id: 5501 + AegisName: Pirate's_Pride + Name: Pirate's Pride + Type: Armor + Weight: 100 + Defense: 6 + Locations: + Head_Top: true + EquipLevelMin: 10 + View: 496 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace2,RC2_Ninja,5; bonus2 bSubRace2,RC2_Ninja,5; + - Id: 5502 + AegisName: Necromencer's_Hood + Name: Necromancer's Hood + Type: Armor + Weight: 500 + Defense: 2 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 491 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus5 bAutoSpellWhenHit,"NPC_DARKSTRIKE",5,5,BF_WEAPON|BF_MAGIC,1; + - Id: 5503 + AegisName: Rabbit_Magic_Hat + Name: Magic Rabit Hat + Type: Armor + Weight: 800 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 497 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bDex,2; bonus bAgi,2; bonus bMdef,1; bonus bMaxSP,50; bonus3 bAutoSpellWhenHit,"MG_FIREBOLT",1,20; bonus3 bAutoSpellWhenHit,"MG_COLDBOLT",1,20; bonus3 bAutoSpellWhenHit,"MG_LIGHTNINGBOLT",1,20; + - Id: 5504 + AegisName: China_Wedding_Veil + Name: Wedding Weil + Type: Armor + Buy: 20 + Weight: 500 + Defense: 5 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 489 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bMdef,10; + - Id: 5505 + AegisName: Asara_Fairy_Hat + Name: Asara Fairy Hat + Type: Armor + Weight: 500 + Defense: 2 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 492 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + skill "DC_DONTFORGETME",1; bonus bDex,2; bonus bLuk,2; + - Id: 5506 + AegisName: Blue_Pajamas_Hat + Name: Blue Night Cap + Type: Armor + Weight: 100 + Defense: 4 + Locations: + Head_Top: true + Refineable: true + View: 501 + Script: | + bonus bBaseAtk,5; bonus bMatkRate,5; + - Id: 5507 + AegisName: Pink_Pajamas_Hat + Name: Pink Night Cap + Type: Armor + Weight: 100 + Defense: 4 + Locations: + Head_Top: true + Refineable: true + View: 502 + Script: | + bonus bBaseAtk,5; bonus bMatkRate,5; + - Id: 5508 + AegisName: Shark_Hat + Name: Shark Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 3 + Locations: + Head_Top: true + Refineable: true + View: 503 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bStr,1; bonus bAgi,2; bonus bMdef,1; bonus2 bAddEle,Ele_Water,5; bonus2 bSubEle,Ele_Water,10; + - Id: 5509 + AegisName: Sting_Hat + Name: Sting hat + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 5 + Locations: + Head_Top: true + Refineable: true + View: 504 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bStr,2; bonus bVit,1; bonus bMdef,3; bonus2 bAddEle,Ele_Fire,5; bonus2 bSubEle,Ele_Earth,5; bonus3 bAutoSpell,"WZ_EARTHSPIKE",1,10; + - Id: 5510 + AegisName: Shower_Cap + Name: Shower Cap + Type: Armor + Buy: 20 + Defense: 4 + Locations: + Head_Top: true + Refineable: true + View: 507 + Script: | + bonus bMdef,3; bonus bFlee,3; bonus2 bAddEle,Ele_Water,10; bonus2 bSubRace,RC_Fish,10; + - Id: 5511 + AegisName: Samambaia + Name: Samambaia + Type: Armor + Buy: 20 + Weight: 200 + Defense: 5 + Slots: 1 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 508 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bSPrecovRate,8; + - Id: 5512 + AegisName: Aquarius_Diadem + Name: Aquarius Diadem + Type: Armor + Buy: 20 + Weight: 300 + Defense: 6 + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 509 + Script: | + bonus bStr,2; bonus bFlee,10; bonus2 bSubEle,Ele_Wind, 5; if(getrefine()>6) { bonus bDef, 1; bonus bBaseAtk,15; } + - Id: 5513 + AegisName: Aquarius_Crown + Name: Aquarius Crown + Type: Armor + Buy: 20 + Weight: 300 + Defense: 6 + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 510 + Script: | + bonus bStr,2; bonus bFlee,10; bonus2 bSubEle,Ele_Wind, 5; if(getrefine()>6) { bonus bDef, 1; bonus bBaseAtk,15; } + - Id: 5514 + AegisName: Pisces_Diadem + Name: Pisces Diadem + Type: Armor + Buy: 20 + Weight: 300 + Defense: 6 + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 511 + Script: | + bonus bInt,2; bonus bMdef,5; bonus2 bSubEle,Ele_Water, 5; if(getrefine()>6) { bonus bDef, 1; bonus bMatkRate,2; } + - Id: 5515 + AegisName: Pisces_Crown + Name: Pisces Crown + Type: Armor + Buy: 20 + Weight: 300 + Defense: 6 + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 512 + Script: | + bonus bInt,2; bonus bMdef,5; bonus2 bSubEle,Ele_Water, 5; if(getrefine()>6) { bonus bDef, 1; bonus bMatkRate,2; } + - Id: 5516 + AegisName: Hawk_Eyes01 + Name: hawk Eyes + Type: Armor + Buy: 10 + Weight: 100 + Jobs: + Hunter: true + Classes: + Upper: true + Locations: + Head_Mid: true + EquipLevelMin: 60 + View: 23 + Script: | + bonus bDex,1; + - Id: 5517 + AegisName: Hawk_Eyes02 + Name: Hawk Eyes + Type: Armor + Buy: 10 + Weight: 100 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Locations: + Head_Mid: true + EquipLevelMin: 60 + View: 23 + Script: | + bonus bDex,1; + - Id: 5518 + AegisName: L_Magestic_Goat2 + Name: Gigantic Majestic Goat + Type: Armor + Buy: 20 + Weight: 800 + Defense: 5 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 513 + Script: | + bonus2 bSubRace,RC_DemiHuman,12; bonus2 bSubRace,RC_Player_Human,12; bonus bBaseAtk,(JobLevel*2)/7; + - Id: 5519 + AegisName: Peacock_Feather + Name: Peacock Feather + Type: Armor + Buy: 20 + Weight: 800 + Defense: 4 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 514 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bInt,2; + - Id: 5520 + AegisName: Rabbit_Earplug + Name: Rabbit Earplugs + Type: Armor + Weight: 400 + Slots: 1 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 515 + Script: | + bonus2 bAddClass,Class_All,4; bonus bMatkRate,4; + - Id: 5521 + AegisName: Angry_Mouth_C + Name: Angry Mouth + Type: Armor + Locations: + Head_Low: true + View: 194 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDelayRate,-3; + - Id: 5522 + AegisName: Fanta_Zero_Lemon_Hat + Name: Fanta Zero Lemon Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 4 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 516 + - Id: 5523 + AegisName: Sakura_Mist_Hat + Name: Sakura Mist Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 4 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 517 + Script: | + bonus bDex,1; + - Id: 5524 + AegisName: Sakura_Milk_Tea_Hat + Name: Sakura Milk Tea Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 4 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 518 + Script: | + bonus bVit,1; + - Id: 5525 + AegisName: First_Leaf_Tea_Hat + Name: Flower Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 4 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 519 + Script: | + bonus bMaxHP,80; bonus bMaxSP,20; + - Id: 5526 + AegisName: Lady_Tanee_Doll + Name: Tanigumi Girl Doll + Type: Armor + Buy: 20 + Weight: 300 + Defense: 4 + Locations: + Head_Top: true + EquipLevelMin: 60 + View: 520 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bAgi,2; bonus bFlee,3; bonus2 bSubEle,Ele_Wind, 5; bonus2 bAddMonsterDropItem, 513, 200; + - Id: 5527 + AegisName: Lunatic_Hat + Name: Lunatic Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 2 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 521 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bLuk,5; bonus bMdef,2; bonus bFlee2,5; bonus2 bAddMonsterDropItem,622,50; + - Id: 5528 + AegisName: King_Frog_Hat + Name: Frog King Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 4 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 30 + View: 522 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAgi,1; + - Id: 5529 + AegisName: Evil's_Bone_Hat + Name: Satanic Bone Helm + Type: Armor + Buy: 20 + Weight: 600 + Defense: 6 + Slots: 1 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 523 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,3; bonus2 bSubEle,Ele_Neutral,5; skill "WZ_FROSTNOVA",1; + - Id: 5530 + AegisName: Raven_Cap + Name: Raven Cap + Type: Armor + Buy: 20 + Weight: 100 + Defense: 6 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 524 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + - Id: 5531 + AegisName: B_Dragon_Hat + Name: Baby Dragon Hat + Type: Armor + Buy: 45000 + Weight: 100 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 525 + Script: | + bonus bDex,2; .@bonus = max(getskilllv("TF_DOUBLE"), 5); skill "TF_DOUBLE",.@bonus; bonus bDoubleRate,.@bonus * 5; + - Id: 5532 + AegisName: Pirate_Dagger_J + Name: Pirate Dagger + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Low: true + Refineable: true + View: 327 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bShortWeaponDamageReturn,1; + - Id: 5533 + AegisName: Emperor_Wreath_J + Name: Emperor Wreath + Type: Armor + Buy: 20 + Weight: 800 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 80 + Refineable: true + View: 261 + Script: | + bonus bAllStats,1; + - Id: 5535 + AegisName: Side_Cap + Name: Side Cap + Type: Armor + Weight: 500 + Defense: 3 + Locations: + Head_Top: true + Refineable: true + View: 529 + Script: | + bonus bVit,1; bonus bDex,1; bonus bMdef,3; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player_Human,3; + - Id: 5536 + AegisName: Spare_Card + Name: Spare Card + Type: Armor + Buy: 20 + Weight: 10 + Defense: 1 + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 526 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddMonsterDropItem,6187,1000; + - Id: 5537 + AegisName: Quati_Hat + Name: Kwati Hat + Type: Armor + Buy: 20 + Weight: 700 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 45 + View: 527 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bAgi,3; + - Id: 5538 + AegisName: Tucan_Hat + Name: Tucan Hat + Type: Armor + Buy: 20 + Weight: 600 + Defense: 2 + Slots: 1 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 45 + View: 528 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bDex,3; + - Id: 5539 + AegisName: Jaguar_Hat + Name: Jaguar Hat + Type: Armor + Buy: 20 + Weight: 400 + Defense: 4 + Slots: 1 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + EquipLevelMin: 25 + Refineable: true + View: 530 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bMdef,2; skill "MC_LOUD", 1; + - Id: 5540 + AegisName: Freyja_SCirclet7 + Name: Freyja SCirclet7 + Type: Armor + Buy: 20 + Weight: 700 + Defense: 8 + Locations: + Head_Top: true + EquipLevelMin: 20 + View: 18 + Script: | + bonus bStr,1; bonus bInt,1; bonus bDex,1; + - Id: 5541 + AegisName: Freyja_SCirclet30 + Name: Freyja SCirclet30 + Type: Armor + Buy: 20 + Weight: 700 + Defense: 8 + Locations: + Head_Top: true + EquipLevelMin: 20 + View: 18 + Script: | + bonus bStr,1; bonus bInt,1; bonus bDex,1; + - Id: 5542 + AegisName: Freyja_SCirclet60 + Name: Freyja SCirclet60 + Type: Armor + Buy: 20 + Weight: 700 + Defense: 8 + Locations: + Head_Top: true + EquipLevelMin: 20 + View: 18 + Script: | + bonus bStr,1; bonus bInt,1; bonus bDex,1; + - Id: 5543 + AegisName: Freyja_SCirclet90 + Name: Freyja SCirclet90 + Type: Armor + Buy: 20 + Weight: 700 + Defense: 8 + Locations: + Head_Top: true + EquipLevelMin: 20 + View: 18 + Script: | + bonus bStr,1; bonus bInt,1; bonus bDex,1; + - Id: 5544 + AegisName: Time_Keeper_Hat + Name: Time Keeper Hat + Type: Armor + Buy: 30000 + Defense: 6 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 240 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,2; bonus bMaxSP,50; + - Id: 5545 + AegisName: Aries_Diadem + Name: Aries Diadem + Type: Armor + Buy: 20 + Weight: 400 + Defense: 3 + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 531 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bVit,2; bonus2 bSubEle,Ele_fire,5; if(getrefine()>6) { bonus bDef,1; bonus bVit,1; } + - Id: 5546 + AegisName: Aries_Crown + Name: Aries Crown + Type: Armor + Buy: 20 + Weight: 400 + Defense: 3 + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 532 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bVit,2; bonus2 bSubEle,Ele_fire,5; if(getrefine()>6) { bonus bDef,1; bonus bVit,1; } + - Id: 5547 + AegisName: RJC_Katusa + Name: RJC Katusa Flower + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 533 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus2 bSkillAtk, "WZ_HEAVENDRIVE", 15 + getequiprefinerycnt(EQI_HAND_R); bonus2 bSkillAtk, "WZ_EARTHSPIKE", 15 + getequiprefinerycnt(EQI_HAND_R); bonus2 bCastrate, "WZ_HEAVENDRIVE", -25; bonus2 bCastrate, "WZ_EARTHSPIKE", -25; ; + - Id: 5548 + AegisName: Scarlet_Rose + Name: Scarlet Rose + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Low: true + EquipLevelMin: 50 + Refineable: true + View: 534 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bLuk,1; + - Id: 5549 + AegisName: Taurus_Diadem + Name: Taurus Diadem + Type: Armor + Buy: 20 + Weight: 300 + Defense: 3 + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 535 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bDex,2; bonus bDelayRate,-2; bonus2 bSubEle,Ele_earth,5; if(getrefine()>6) { bonus bDex,1; bonus bMatkRate,1; } + - Id: 5550 + AegisName: Taurus_Crown + Name: Taurus Crown + Type: Armor + Buy: 20 + Weight: 300 + Defense: 3 + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 536 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bDex,2; bonus bDelayRate,-2; bonus2 bSubEle,Ele_earth,5; if(getrefine()>6) { bonus bDex,1; bonus bMatkRate,1; } + - Id: 5552 + AegisName: Fest_Lord_Circlet + Name: Festival Grand Circlet + Type: Armor + Defense: 8 + Locations: + Head_Top: true + View: 93 + Script: | + bonus bStr,3; bonus bInt,3; bonus bMdef,3; + - Id: 5553 + AegisName: Fest_Bunny_Band + Name: Festival Bunny Band + Type: Armor + Defense: 7 + Locations: + Head_Top: true + View: 15 + Script: | + bonus bMdef,4; bonus2 bSubRace,RC_DemiHuman,9; bonus2 bSubRace,RC_Player_Human,9; + - Id: 5554 + AegisName: Octopus_Hat + Name: Octopus Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 3 + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 538 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus3 bAutoSpell,"SM_PROVOKE",5,10; bonus bUnbreakableHelm; + - Id: 5555 + AegisName: Leaf_Cat_Hat + Name: Leaf Cat Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Locations: + Head_Top: true + Refineable: true + View: 539 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bAgi,1; bonus3 bAutoSpellWhenHit,"AL_HEAL",3,10; + - Id: 5556 + AegisName: Fur_Seal_Hat + Name: Seal Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 3 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + EquipLevelMin: 55 + Refineable: true + View: 540 + Script: | + bonus bInt,1; bonus3 bAutoSpell,"WZ_FROSTNOVA",1,30; + - Id: 5557 + AegisName: Wild_Rose_Hat + Name: Wild Rose Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 6 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 541 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bAgi,3; + - Id: 5558 + AegisName: Saci_Hat + Name: Luxury Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 6 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 542 + Script: | + bonus3 bAddMonsterDropItem,510,RC_Plant,500; + - Id: 5559 + AegisName: Piece_Of_White_Cloth_E + Name: Piece Of White Cloth + Type: Armor + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 543 + - Id: 5560 + AegisName: Bullock_Helm_J + Name: Bullock Helm + Type: Armor + Buy: 20 + Weight: 3000 + Defense: 3 + Locations: + Head_Top: true + EquipLevelMin: 75 + Refineable: true + View: 322 + Script: | + bonus bMaxHP,100; bonus bNoKnockback; 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; + - Id: 5561 + AegisName: Rabbit_Magic_Hat_J + Name: Magic Rabbit Hat + Type: Armor + Weight: 800 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 497 + Script: | + bonus bInt,1; bonus bMaxSP,50; bonus4 bAutoSpellWhenHit,"MG_FIREBOLT",3,10,3; bonus4 bAutoSpellWhenHit,"MG_COLDBOLT",3,10,3; bonus4 bAutoSpellWhenHit,"MG_LIGHTNINGBOLT",3,10,3; bonus3 bAutoSpellWhenHit,"AL_HEAL",1,10; + - Id: 5562 + AegisName: Good_Wedding_Veil_J + Name: Luxurious Wedding Veil + Type: Armor + Weight: 500 + Slots: 1 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 45 + View: 489 + Script: | + bonus bMdef,10; bonus bCastRate,-3; bonus bUseSPrate,-5; + - Id: 5564 + AegisName: Crown_Of_Deceit + Name: Crown of Deceit + Type: Armor + Buy: 20 + Weight: 300 + Defense: 3 + Slots: 1 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 85 + Refineable: true + View: 544 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bInt,4; bonus bCastRate,-10; + - Id: 5565 + AegisName: Dragon_Arhat_Mask + Name: Dragon Arhat Mask + Type: Armor + Defense: 5 + Locations: + Head_Low: true + Head_Mid: true + EquipLevelMin: 1 + View: 545 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; + - Id: 5566 + AegisName: Tiger_Arhat_Mask + Name: Tiger Arhat Mask + Type: Armor + Defense: 1 + Locations: + Head_Low: true + Head_Mid: true + EquipLevelMin: 1 + View: 546 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,2; bonus2 bAddRace,RC_Player_Human,2; + - Id: 5567 + AegisName: Bright_Fury + Name: Bright Fury + Type: Armor + Buy: 20 + Weight: 300 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 548 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bStr,1; bonus2 bAddClass,Class_All,2; bonus bAspdRate,2; + - Id: 5568 + AegisName: Rabbit_Bonnet + Name: Rabbit Bonnet + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 1 + Slots: 1 + Locations: + Head_Mid: true + Head_Top: true + Refineable: true + View: 549 + Script: | + bonus bInt,2; + - Id: 5569 + AegisName: Gemini_Diadem + Name: Gemini Diadem + Type: Armor + Buy: 20 + Weight: 300 + Defense: 4 + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 550 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bAgi,2; bonus bMatkRate,2; if(getrefine()>6) { bonus bMdef,7; bonus bMAtkRate,8; bonus2 bSubEle,Ele_Wind,5; } + - Id: 5570 + AegisName: Gemini_Crown + Name: Gemini Crown + Type: Armor + Buy: 20 + Weight: 300 + Defense: 4 + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 551 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bAgi,2; bonus bBaseAtk,2; bonus bMdef,5; if(getrefine()>6) { bonus bDef,1; bonus bMatk,15; bonus bFlee,10; bonus2 bSubEle,Ele_Wind,5; } + - Id: 5572 + AegisName: Savage_Baby_Hat + Name: Savage Babe Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 553 + Script: | + bonus bVit,2; + - Id: 5573 + AegisName: Bogy_Horn + Name: Dokebi Horn + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 554 + - Id: 5574 + AegisName: Pencil_In_Mouth + Name: Well-Chewed Pencil + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Low: true + EquipLevelMin: 10 + View: 555 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bdex,2; bonus bHitRate,3; + - Id: 5575 + AegisName: Onigiri_Hat + Name: Rice Ball Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 6 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + View: 556 + - Id: 5577 + AegisName: Dark_Knight_MaskB + Name: Dark Knight Mask + Type: Armor + Weight: 3000 + Defense: 5 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + EquipLevelMin: 80 + Refineable: true + View: 479 + Trade: + Override: 100 + NoDrop: true + NoGuildStorage: true + Script: | + bonus bStr,3; + - Id: 5578 + AegisName: Voyage_Hat + Name: Voyage_Hat + Type: Armor + Buy: 200 + Weight: 10 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 236 + Script: | + bonus bAgi,2; + - Id: 5579 + AegisName: Wanderer's_Sakkat + Name: Wanderer's Sakkat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 2 + Slots: 1 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 558 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bAgi,2; + - Id: 5581 + AegisName: Cancer_Diadem + Name: Cancer Diadem + Type: Armor + Buy: 20 + Weight: 300 + Defense: 3 + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 560 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bInt,2; bonus2 bSubEle,Ele_water, 5; if(getrefine()>6) { bonus bMdef,1; bonus bHealPower, 3; bonus bMatkRate,2; } + - Id: 5582 + AegisName: Cancer_Crown + Name: Cancer Crown + Type: Armor + Buy: 20 + Weight: 300 + Defense: 3 + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 561 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bStr,2; bonus2 bSubEle,Ele_water, 5; if(getrefine()>6) { bonus bDef, 1; bonus bBaseAtk,15; bonus bFlee,10; } + - Id: 5583 + AegisName: Para_Team_Hat + Name: Eden Team Hat + Type: Armor + Defense: 1 + Locations: + Head_Top: true + EquipLevelMin: 12 + Refineable: true + View: 465 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 5584 + AegisName: Majestic_Evil_Horn + Name: Majestic Evil Horns + Type: Armor + Weight: 400 + Defense: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 562 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus2 bSubRace,RC_Demon,3; bonus2 bHPDrainRate,3,15; bonus2 bSPDrainRate,1,7; + - Id: 5585 + AegisName: Rune_Hairband + Name: Rune Cloth Circlet + Type: Armor + Buy: 20 + Weight: 400 + Defense: 1 + Slots: 1 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 564 + - Id: 5586 + AegisName: Mosquito_Coil + Name: Mosquito Coil + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 563 + - Id: 5587 + AegisName: Mosquito_Coil_1Use + Name: Mosquito Coil + Type: Armor + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 563 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 5590 + AegisName: K_Poring_Cake_Cap + Name: Poring Cake Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 417 + - Id: 5592 + AegisName: Sigrun's_Wing + Name: Sigrun's Wings + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Locations: + Head_Mid: true + EquipLevelMin: 80 + View: 568 + Script: | + if(BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Thief||(BaseJob==Job_Taekwon&&Class!=Job_Soul_Linker)) bonus bStr,1; else if(BaseClass==Job_Mage||BaseClass==Job_Acolyte||class==Job_Ninja||class==Job_Soul_Linker) bonus bInt,1; else if(BaseClass==Job_Archer||BaseClass==Job_Gunslinger) bonus bDex,1; else if(BaseJob==Job_Novice||BaseJob==Job_SuperNovice) { bonus bMaxHP,80; bonus bMaxSP,30; } + - Id: 5593 + AegisName: K_Rabbit_Bonnet + Name: Rabbit Bonnet + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Slots: 1 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 549 + - Id: 5594 + AegisName: Donut_In_Mouth + Name: Donut In Mouth + Type: Armor + Buy: 20 + Weight: 50 + Defense: 1 + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 569 + - Id: 5596 + AegisName: 4Leaf_Clover_In_Mouth + Name: 4Leaf Clover In Mouth + Type: Armor + Buy: 20 + Defense: 2 + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 571 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,2; + - Id: 5597 + AegisName: Bubble_Gum_In_Mouth + Name: Bubble Gum In Mouth + Type: Armor + Buy: 20 + Defense: 2 + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 572 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,2; + - Id: 5600 + AegisName: Br_Twin_Ribbon + Name: Brazil Twin Ribbon + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 575 + Script: | + bonus bAllStats,3; bonus bMdef,1; + - Id: 5603 + AegisName: RTC_Winner_Only + Name: RTC First Place + Type: Armor + Weight: 250 + Defense: 8 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 577 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats, 3; + - Id: 5604 + AegisName: RTC_Second_Best + Name: RTC Second Place + Type: Armor + Weight: 250 + Defense: 6 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 578 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats, 2; + - Id: 5605 + AegisName: RTC_Third_Best + Name: RTC Third Place + Type: Armor + Weight: 250 + Defense: 4 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 579 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats, 1; + - Id: 5653 + AegisName: Darkness_Helm_J + Name: Darkness Helm + Type: Armor + Buy: 20 + Weight: 500 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 586 + - Id: 5654 + AegisName: Holy_Marching_Hat_J + Name: Holy Marching Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 587 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bStr,2; bonus3 bAutoSpell,"PR_ASPERSIO",2,30; + - Id: 5658 + AegisName: Imp_Hat + Name: Imp Hat + Type: Armor + Buy: 20 + Weight: 400 + Defense: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 589 + Script: | + bonus3 bAutoSpell,"SA_FLAMELAUNCHER",1,5; + - Id: 5659 + AegisName: Sleepr_Hat + Name: Sleeper Hat + Type: Armor + Buy: 20 + Weight: 400 + Defense: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 590 + Script: | + bonus3 bAutoSpell,"SA_SEISMICWEAPON",1,5; + - Id: 5660 + AegisName: Gryphon_Hat + Name: Gryphon Hat + Type: Armor + Buy: 20 + Weight: 400 + Defense: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 591 + Script: | + bonus3 bAutoSpell,"SA_LIGHTNINGLOADER",1,5; + - Id: 5664 + AegisName: Filir_Wing + Name: Filir's Pinions + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Mid: true + EquipLevelMin: 70 + View: 595 + Script: | + bonus bAspdRate,2; bonus bCastRate,-2; + - Id: 5665 + AegisName: Shaman_Hat + Name: Shaman Hat + Type: Armor + Buy: 20 + Weight: 400 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 596 + Script: | + bonus2 bSubEle,Ele_Neutral,3; bonus2 bSubEle,Ele_Water,3; bonus2 bSubEle,Ele_Earth,3; bonus2 bSubEle,Ele_Fire,3; bonus2 bSubEle,Ele_Wind,3; bonus2 bSubEle,Ele_Poison,3; bonus2 bSubEle,Ele_Holy,3; bonus2 bSubEle,Ele_Dark,3; bonus2 bSubEle,Ele_Ghost,3; bonus2 bSubEle,Ele_Undead,3; + - Id: 5666 + AegisName: Golden_Crown + Name: Golden Crown + Type: Armor + Buy: 20 + Weight: 500 + Defense: 8 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 597 + Script: | + bonus bInt,1; bonus bDex,1; bonus bLuk,1; + - Id: 5667 + AegisName: Skull_Hood + Name: Skull Hood + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Slots: 1 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 598 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + - Id: 5668 + AegisName: Weird_Pumpkin_Hat + Name: Weird Pumpkin Hat + Type: Armor + Buy: 20 + Defense: 5 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 206 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,5; + - Id: 5671 + AegisName: Drooping_Morocc_Minion + Name: Drooping Morocc Minion + Type: Armor + Buy: 20 + Weight: 300 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 70 + View: 600 + - Id: 5681 + AegisName: F_Ribbon_Green + Name: Green Ribbon + Type: Armor + Buy: 800 + Weight: 100 + Defense: 1 + Gender: Female + Locations: + Head_Top: true + Refineable: true + View: 244 + Script: | + bonus bMdef,3; + - Id: 5682 + AegisName: Triangle_Rune_Cap + Name: Triangle Rune Cap + Type: Armor + Buy: 20 + Weight: 300 + Defense: 5 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 610 + Script: | + 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; } + - Id: 5683 + AegisName: Majestic_Goat_Repl + Name: Baphomet Horns + Type: Armor + Buy: 20 + Weight: 100 + Defense: 5 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 41 + - Id: 5684 + AegisName: Jewel_Crown_Repl + Name: Ornate Crown + Type: Armor + Buy: 20 + Weight: 100 + Defense: 5 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 88 + - Id: 5685 + AegisName: Prontera_Army_Cap_Repl + Name: Army Cap + Type: Armor + Buy: 20 + Weight: 100 + Defense: 5 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 48 + - Id: 5686 + AegisName: Feather_Bonnet_Repl + Name: Nice Hat Feather + Type: Armor + Buy: 20 + Weight: 100 + Defense: 5 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 104 + - Id: 5687 + AegisName: Viking_Helm_Repl + Name: Orc Helm + Type: Armor + Buy: 20 + Weight: 100 + Defense: 5 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 86 + - Id: 5690 + AegisName: Red_Wing_Hat + Name: Red Wing Hat + Type: Armor + Buy: 20 + Weight: 600 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 613 + Script: | + if(getrefine()>6) { bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; } if(getrefine()>8) { bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; } + - Id: 5691 + AegisName: Catain_Bandanna + Name: Sailor's Bandana + Type: Armor + Buy: 20 + Weight: 10 + Defense: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 542 + Script: | + bonus bDex,1; bonus2 bSubEle,Ele_Poison,20; + - Id: 5692 + AegisName: Sea_Cat_Hat + Name: Sea Cat Hat + Type: Armor + Buy: 20 + Weight: 10 + Defense: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 539 + Script: | + bonus bDex,1; + - Id: 5738 + AegisName: Snowman_Hat + Name: Snowman Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 4 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 616 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + 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; } + - Id: 5741 + AegisName: Im_Egg_Shell_Hat + Name: Eternal Egg Shell + Type: Armor + Buy: 20 + Defense: 1 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 101 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 5742 + AegisName: Rudolf_Santa_Hat + Name: Rudolph Santa Hat + Type: Armor + Buy: 20 + Weight: 400 + Defense: 5 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 619 + Script: | + bonus bLuk,1; + - Id: 5770 + AegisName: Splash_Hat + Name: Splash Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 349 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + autobonus "{ sc_start SC_WINDWEAPON, 180000, 1; }", 3, 180000, BF_WEAPON, "{ specialeffect2 EF_ENHANCE; }"; + - Id: 5771 + AegisName: Family_Hat + Name: Family Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 109 + Script: | + bonus bDex,1; bonus bMdef,1; + - Id: 5775 + AegisName: Choco_Donut_In_Mouth + Name: Choco Donut In Mouth + Type: Armor + Buy: 20 + Weight: 50 + Defense: 1 + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 653 + - Id: 5781 + AegisName: Persika + Name: Persika + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Locations: + Head_Top: true + View: 659 + - Id: 5786 + AegisName: Ancient_Elven_Ear + Name: Ancient Elven Ear + Type: Armor + Buy: 10 + Weight: 200 + Defense: 1 + Locations: + Head_Mid: true + EquipLevelMin: 1 + View: 665 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bLuk,1; + - Id: 5788 + AegisName: 3D_Glasses + Name: 3D Glasses + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Mid: true + EquipLevelMin: 1 + View: 661 + - Id: 5792 + AegisName: Fish_Pin + Name: Fish Pin + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 669 + - Id: 5793 + AegisName: Ribbon_Of_Life + Name: Ribbon Of Life + Type: Armor + Buy: 20 + Defense: 2 + Locations: + Head_Mid: true + EquipLevelMin: 1 + View: 575 + Script: | + bonus bInt,1; bonus bMdef,2; + - Id: 5794 + AegisName: 3D_Glasses_ + Name: 3D Glasses + Type: Armor + Buy: 20 + Defense: 1 + Locations: + Head_Mid: true + EquipLevelMin: 1 + View: 661 + - Id: 5796 + AegisName: Cheer_Scarf + Name: Cheer Scarf + Type: Armor + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 369 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 5797 + AegisName: Cheer_Scarf2 + Name: Cheer Scarf2 + Type: Armor + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 369 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 5798 + AegisName: Cheer_Scarf3 + Name: Cheer Scarf3 + Type: Armor + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 369 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 5799 + AegisName: Cheer_Scarf4 + Name: Cheer Scarf4 + Type: Armor + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 369 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 5800 + AegisName: Blush_Of_Groom + Name: Blush of Groom + Type: Armor + Buy: 20 + Weight: 50 + Locations: + Head_Mid: true + View: 125 + Script: | + bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3; + - Id: 5801 + AegisName: Ribbon_Of_Bride + Name: Red Tailed Ribbon + Type: Armor + Buy: 20 + Weight: 100 + Defense: 5 + Locations: + Head_Top: true + Refineable: true + View: 167 + Script: | + bonus bAllStats,2; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; if(getskilllv("AL_HEAL")==10) { bonus3 bAutoSpellWhenHit,"AL_HEAL",10,20; } else { bonus3 bAutoSpellWhenHit,"AL_HEAL",5,20; } + - Id: 5802 + AegisName: Upgrade_Elephant_Hat + Name: Upgraded Elephant Hat + Type: Armor + Weight: 500 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 215 + - Id: 5803 + AegisName: Flower_Love_Hat + Name: Love Flower Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 5 + Script: | + bonus2 bAddMonsterDropItem,608,100; + - Id: 5804 + AegisName: Pirate_Eyepatch + Name: Pirate Eye Bandage + Type: Armor + Buy: 1000 + Weight: 100 + Locations: + Head_Mid: true + View: 13 + - Id: 5805 + AegisName: Victorious_Coronet + Name: Victorious Coronet + Type: Armor + Weight: 150 + Defense: 1 + Locations: + Head_Top: true + EquipLevelMin: 70 + View: 43 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHPrate,15; bonus bSPrecovRate,5; + - Id: 5806 + AegisName: Poem_Natalia_Hat + Name: Poet Natalie's Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 5 + Locations: + Head_Top: true + View: 67 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 5807 + AegisName: October_Fest_Cap + Name: October Fest Cap + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 104 + - Id: 5808 + AegisName: Diabolus_Helmet + Name: Dark Bacilium + Type: Armor + Buy: 20 + Weight: 250 + Defense: 5 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + Wizard: true + Classes: + Upper: true + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Refineable: true + View: 364 + Script: | + bonus2 bResEff,Eff_Stone,2000+(getrefine()*200); bonus2 bResEff,Eff_Freeze,2000+(getrefine()*200); bonus2 bResEff,Eff_Stun,2000+(getrefine()*200); + - Id: 5809 + AegisName: Boom_Boom_Hat + Name: Boom Boom Hat + Type: Armor + Weight: 100 + Defense: 6 + Locations: + Head_Top: true + View: 216 + Script: | + bonus bAllStats,5; + - Id: 5810 + AegisName: Ph.D_Hat_V + Name: Ph.D Hat V + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 98 + Script: | + bonus bInt,5; bonus bVit,3; bonus bDex,3; + - Id: 5811 + AegisName: Santa_Beard + Name: Santa's Beard + Type: Armor + Buy: 20 + Weight: 100 + Defense: 5 + Locations: + Head_Low: true + View: 25 + - Id: 5812 + AegisName: Hat_Of_Expert + Name: Hat Of Expert + Type: Armor + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 16 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 5815 + AegisName: Classic_Hat_J + Name: Classic Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 475 + Script: | + bonus bStr,1; bonus2 bSubSize, 0, 5; bonus2 bSubSize, 1, 5; bonus2 bSubSize, 2, 5; + - Id: 5816 + AegisName: Cowboy_Hat_J + Name: Purple Cowboy Hat + Type: Armor + Buy: 20 + Weight: 500 + Locations: + Head_Top: true + Refineable: true + View: 411 + Script: | + bonus bBaseAtk,15; bonus bFlee,-5; + - Id: 5817 + AegisName: Valentine_Pledge + Name: Valentine Pledge + Type: Armor + Buy: 20 + Defense: 3 + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,2; bonus bMdef,3; + - Id: 5818 + AegisName: Carnival_Hat + Name: Carnival Hat + Type: Armor + Defense: 6 + Locations: + Head_Top: true + Refineable: true + View: 505 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats, 3; + - Id: 5819 + AegisName: Carnival_Circlet + Name: Carnival Circlet + Type: Armor + Defense: 6 + Locations: + Head_Top: true + Refineable: true + View: 506 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats, 3; + - Id: 5821 + AegisName: Gold_Tulip_Hairpin + Name: Gold Tulip Hairpin + Type: Armor + Buy: 10 + Weight: 100 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 499 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bExpAddClass,Class_All,5; + - Id: 5822 + AegisName: Love_Chick_Hat + Name: Love Chick Hat + Type: Armor + Buy: 10000 + Weight: 100 + Defense: 4 + Locations: + Head_Top: true + Refineable: true + View: 500 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bLuk,4; bonus bMaxHP,100; bonus bMaxSP,100; bonus2 bSubRace,RC_DemiHuman,7; bonus2 bSubRace,RC_Player_Human,7; bonus2 bSubRace,RC_Undead,7; + - Id: 5824 + AegisName: Fools_Day_Hat + Name: Fools Day Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 6 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 265 + - Id: 5826 + AegisName: Valkyrie_Helmet + Name: Valkyrie Helmet + Type: Armor + Defense: 10 + Locations: + Head_Top: true + View: 225 + Script: | + bonus bStr,2; bonus bInt,2; bonus bDex,2; bonus bAgi,2; bonus bMdef,5; + - Id: 5827 + AegisName: Book_File_Hat + Name: Book File Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 423 + - Id: 5828 + AegisName: Honor_Gold_Ring + Name: Honor Gold Ring + Type: Armor + Weight: 50 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bAllStats,1; bonus bMdef,5; + - Id: 5844 + AegisName: Loyal_Ring3 + Name: Loyal Ring3 + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bAllStats,3; + - Id: 5846 + AegisName: Buzzy_Ball_Gum + Name: Buzzy Ball Gum + Type: Armor + Buy: 50 + Weight: 100 + Defense: 1 + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 572 + Script: | + bonus bMdef,5; + - Id: 5851 + AegisName: Summer_Knight + Name: Summer Knight + Type: Armor + Buy: 20 + Defense: 1 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 60 + View: 138 + - Id: 5856 + AegisName: Passion_FB_Hat + Name: Passion FB Hat + Type: Armor + Buy: 20 + Weight: 600 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 671 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,2; bonus bDex,2; + - Id: 5857 + AegisName: Cool_FB_Hat + Name: Cool FB Hat + Type: Armor + Buy: 20 + Weight: 600 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 672 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,2; bonus bVit,2; + - Id: 5858 + AegisName: Victory_FB_Hat + Name: Victory FB Hat + Type: Armor + Buy: 20 + Weight: 600 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 673 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,2; bonus bDex,2; + - Id: 5859 + AegisName: Glory_FB_Hat + Name: Glory FB Hat + Type: Armor + Buy: 20 + Weight: 600 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 674 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,1; + - Id: 9001 + AegisName: Poring_Egg + Name: Poring Egg + Type: Petegg + Buy: 20 + - Id: 9002 + AegisName: Drops_Egg + Name: Drops Egg + Type: Petegg + Buy: 20 + - Id: 9003 + AegisName: Poporing_Egg + Name: Poporing Egg + Type: Petegg + Buy: 20 + - Id: 9004 + AegisName: Lunatic_Egg + Name: Lunatic Egg + Type: Petegg + Buy: 20 + - Id: 9005 + AegisName: Picky_Egg + Name: Picky Egg + Type: Petegg + Buy: 20 + - Id: 9006 + AegisName: Chonchon_Egg + Name: Chonchon Egg + Type: Petegg + Buy: 20 + - Id: 9007 + AegisName: Steel_Chonchon_Egg + Name: Steel Chonchon Egg + Type: Petegg + Buy: 20 + - Id: 9008 + AegisName: Hunter_Fly_Egg + Name: Hunter Fly Egg + Type: Petegg + Buy: 20 + - Id: 9009 + AegisName: Savage_Bebe_Egg + Name: Savage Babe Egg + Type: Petegg + Buy: 20 + - Id: 9010 + AegisName: Baby_Desert_Wolf_Egg + Name: Baby Desert Wolf Egg + Type: Petegg + Buy: 20 + - Id: 9011 + AegisName: Rocker_Egg + Name: Rocker Egg + Type: Petegg + Buy: 20 + - Id: 9012 + AegisName: Spore_Egg + Name: Spore Egg + Type: Petegg + Buy: 20 + - Id: 9013 + AegisName: Poison_Spore_Egg + Name: Poison Spore Egg + Type: Petegg + Buy: 20 + - Id: 9014 + AegisName: PecoPeco_Egg + Name: Peco Peco Egg + Type: Petegg + Buy: 20 + - Id: 9015 + AegisName: Smokie_Egg + Name: Smokie Egg + Type: Petegg + Buy: 20 + - Id: 9016 + AegisName: Yoyo_Egg + Name: Yoyo Egg + Type: Petegg + Buy: 20 + - Id: 9017 + AegisName: Orc_Warrior_Egg + Name: Orc Warrior Egg + Type: Petegg + Buy: 20 + - Id: 9018 + AegisName: Munak_Egg + Name: Munak Egg + Type: Petegg + Buy: 20 + - Id: 9019 + AegisName: Dokkaebi_Egg + Name: Dokebi Egg + Type: Petegg + Buy: 20 + - Id: 9020 + AegisName: Sohee_Egg + Name: Sohee Egg + Type: Petegg + Buy: 20 + - Id: 9021 + AegisName: Isis_Egg + Name: Isis Egg + Type: Petegg + Buy: 20 + - Id: 9022 + AegisName: Green_Petite_Egg + Name: Green Petite Egg + Type: Petegg + Buy: 20 + - Id: 9023 + AegisName: Deviruchi_Egg + Name: Deviruchi Egg + Type: Petegg + Buy: 20 + - Id: 9024 + AegisName: Bapho_Jr._Egg + Name: Bapho Jr. Egg + Type: Petegg + Buy: 20 + - Id: 9025 + AegisName: Bongun_Egg + Name: Bongun Egg + Type: Petegg + Buy: 20 + - Id: 9026 + AegisName: Zherlthsh_Egg + Name: Zealotus Egg + Type: Petegg + Buy: 20 + - Id: 9027 + AegisName: Alice_Egg + Name: Alice Egg + Type: Petegg + Buy: 20 + - Id: 9028 + AegisName: Rice_Cake_Egg + Name: Hard Rice Cake + Type: Petegg + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 9029 + AegisName: Santa_Goblin_Egg + Name: Christmas Goblin's Egg + Type: Petegg + Buy: 20 + - Id: 9030 + AegisName: Chung_E_Egg + Name: Green Maiden Egg + Type: Petegg + Buy: 20 + - Id: 9031 + AegisName: Spring_Rabbit_Egg + Name: Spring Rabbit Egg + Type: Petegg + Buy: 20 + - Id: 9032 + AegisName: Knife_Goblin_Egg + Name: Knife Goblin Egg + Type: Petegg + Buy: 20 + - Id: 9033 + AegisName: Flail_Goblin_Egg + Name: Flail Goblin Egg + Type: Petegg + Buy: 20 + - Id: 9034 + AegisName: Hammer_Goblin_Egg + Name: Hammer Goblin Egg + Type: Petegg + Buy: 20 + - Id: 9035 + AegisName: Red_Deleter_Egg + Name: Red Deleter Egg + Type: Petegg + Buy: 20 + - Id: 9036 + AegisName: Diabolic_Egg + Name: Diabolic Egg + Type: Petegg + Buy: 20 + - Id: 9037 + AegisName: Wanderer_Egg + Name: Wanderer Egg + Type: Petegg + Buy: 20 + - Id: 9038 + AegisName: New_Year_Doll_Egg + Name: New Year Doll Egg + Type: Petegg + Buy: 20 + - Id: 9039 + AegisName: Bacsojin_Egg + Name: Bacsojin Egg + Type: Petegg + Buy: 20 + - Id: 9040 + AegisName: Civil_Servant_Egg + Name: Civil Servant Egg + Type: Petegg + Buy: 20 + - Id: 9041 + AegisName: Leaf_Cat_Egg + Name: Leaf Cat Egg + Type: Petegg + Buy: 20 + - Id: 9042 + AegisName: Loli_Ruri_Egg + Name: Loli Ruri Egg + Type: Petegg + Buy: 20 + - Id: 9043 + AegisName: Marionette_Egg + Name: Marionette Egg + Type: Petegg + Buy: 20 + - Id: 9044 + AegisName: Shinobi_Egg + Name: Shinobi Egg + Type: Petegg + Buy: 20 + - Id: 9045 + AegisName: Whisper_Egg + Name: Whisper Egg + Type: Petegg + Buy: 20 + - Id: 9046 + AegisName: Goblin_Leader_Egg + Name: Goblin Leader Egg + Type: Petegg + Buy: 20 + - Id: 9047 + AegisName: Wicked_Nymph_Egg + Name: Wicked Nymph Egg + Type: Petegg + Buy: 20 + - Id: 9048 + AegisName: Miyabi_Ningyo_Egg + Name: Miyabi Ningyo Egg + Type: Petegg + Buy: 20 + - Id: 9049 + AegisName: Dullahan_Egg + Name: Dullahan Egg + Type: Petegg + Buy: 20 + - Id: 9050 + AegisName: Medusa_Egg + Name: Medusa Egg + Type: Petegg + Buy: 20 + - Id: 9051 + AegisName: Stone_Shooter_Egg + Name: Stone Shooter Egg + Type: Petegg + Buy: 20 + - Id: 9052 + AegisName: Incubus_Egg + Name: Incubus Egg + Type: Petegg + Buy: 20 + - Id: 9053 + AegisName: Golem_Egg + Name: Golem Egg + Type: Petegg + Buy: 20 + - Id: 9054 + AegisName: Nightmare_Terror_Egg + Name: Nightmare Terror Egg + Type: Petegg + Buy: 20 + - Id: 9055 + AegisName: Succubus_Egg + Name: Succubus Egg + Type: Petegg + Buy: 20 + - Id: 9056 + AegisName: Imp_Egg + Name: Imp Egg + Type: Petegg + Buy: 20 + - Id: 10001 + AegisName: Skull_Helm + Name: Skull Helm + Type: Petarmor + Buy: 20 + - Id: 10002 + AegisName: Monster_Oxygen_Mask + Name: Monster Oxygen Mask + Type: Petarmor + Buy: 20 + - Id: 10003 + AegisName: Transparent_Headgear + Name: Transparent Head Protector + Type: Petarmor + Buy: 20 + - Id: 10004 + AegisName: Pacifier + Name: Pacifier + Type: Petarmor + Buy: 20 + - Id: 10005 + AegisName: Wig + Name: Wig + Type: Petarmor + Buy: 20 + - Id: 10006 + AegisName: Queen's_Hair_Ornament + Name: Queen's Hair Ornament + Type: Petarmor + Buy: 20 + - Id: 10007 + AegisName: Silk_Ribbon + Name: Silk Ribbon + Type: Petarmor + Buy: 20 + - Id: 10008 + AegisName: Punisher + Name: Punisher + Type: Petarmor + Buy: 20 + - Id: 10009 + AegisName: Wild_Flower + Name: Wild Flower + Type: Petarmor + Buy: 20 + - Id: 10010 + AegisName: Battered_Pot + Name: Battered Pot + Type: Petarmor + Buy: 20 + - Id: 10011 + AegisName: Stellar_Hairpin + Name: Stellar Hairpin + Type: Petarmor + Buy: 20 + - Id: 10012 + AegisName: Tiny_Egg_Shell + Name: Tiny Egg Shell + Type: Petarmor + Buy: 20 + - Id: 10013 + AegisName: Backpack + Name: Backpack + Type: Petarmor + Buy: 1500 + - Id: 10014 + AegisName: Rocker_Glasses + Name: Rocker Glasses + Type: Petarmor + Buy: 2000 + - Id: 10015 + AegisName: Green_Lace + Name: Green Lace + Type: Petarmor + Buy: 20 + - Id: 10016 + AegisName: Golden_Bell + Name: Golden Bell + Type: Petarmor + Buy: 20 + - Id: 10017 + AegisName: Bark_Shorts + Name: Bark Shorts + Type: Petarmor + Buy: 20 + - Id: 10018 + AegisName: Monkey_Circlet + Name: Monkey Circlet + Type: Petarmor + Buy: 20 + - Id: 10019 + AegisName: Red_Muffler + Name: Red Scarf + Type: Petarmor + Buy: 20 + - Id: 10020 + AegisName: Sword_Of_Grave_Keeper + Name: Grave Keeper's Sword + Type: Petarmor + Buy: 20 + - Id: 10021 + AegisName: Round_Hair_Ornament + Name: Circular Headgear + Type: Petarmor + Buy: 20 + - Id: 10022 + AegisName: Golden_Earing + Name: Gold Earring + Type: Petarmor + Buy: 20 + - Id: 10023 + AegisName: Green_Lucky_Bag + Name: Green Jewel Bag + Type: Petarmor + Buy: 20 + - Id: 10024 + AegisName: Fashionable_Glasses + Name: Fashion Glasses + Type: Petarmor + Buy: 20 + - Id: 10025 + AegisName: Star_Hairband + Name: Hairband Of Stars + Type: Petarmor + Buy: 20 + - Id: 10026 + AegisName: Wine_On_Sleeve + Name: Tassel for Durumagi + Type: Petarmor + Buy: 20 + - Id: 10027 + AegisName: Spirit_Chain_ + Name: Pet Soul Ring + Type: Petarmor + Buy: 20 + - Id: 10028 + AegisName: Nice_Badge + Name: Beautiful Badges + Type: Petarmor + Buy: 20 + - Id: 10029 + AegisName: Jade_Trinket + Name: Jade Trinket + Type: Petarmor + Buy: 20 + - Id: 10030 + AegisName: Summer_Fan + Name: Summer Fan + Type: Petarmor + Buy: 20 + - Id: 10031 + AegisName: Death_Coil + Name: Ring Of Death + Type: Petarmor + Buy: 20 + - Id: 10032 + AegisName: Queen's_Coronet + Name: Queen's Coronet + Type: Petarmor + Buy: 20 + - Id: 10033 + AegisName: Apro_Hair + Name: Afro + Type: Petarmor + Buy: 20 + - Id: 10034 + AegisName: Ball_Mask + Name: Masked Ball + Type: Petarmor + Buy: 20 + - Id: 10035 + AegisName: Windup_Spring + Name: Spring + Type: Petarmor + Buy: 20 + - Id: 10036 + AegisName: Hell_Horn + Name: Horn Of Hell + Type: Petarmor + Buy: 20 + - Id: 10037 + AegisName: Black_Butterfly_Mask + Name: Black Butterfly Mask + Type: Petarmor + Buy: 20 + - Id: 10038 + AegisName: Horn_Protector + Name: Horn Barrier + Type: Petarmor + Buy: 20 + - Id: 13000 + AegisName: Jujube_Dagger + Name: Jujube Dagger + Type: Weapon + SubType: Dagger + Buy: 10000 + Weight: 600 + Attack: 39 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bAtkEle,Ele_Wind; + - Id: 13001 + AegisName: Dragon_Killer + Name: Dragon Killer + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 900 + Attack: 110 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 60 + Refineable: true + Script: | + bonus bIgnoreDefRace,RC_Dragon; bonus2 bExpAddRace,RC_Dragon,10; + - Id: 13002 + AegisName: Ginnungagap + Name: Ginnungagap + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 700 + Attack: 148 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Blind,500; bonus2 bAddEff2,Eff_Blind,50; + - Id: 13003 + AegisName: Coward + Name: Cowardice Blade + Type: Weapon + SubType: Dagger + Buy: 52000 + Weight: 700 + Attack: 80 + Range: 1 + Slots: 1 + Jobs: + Assassin: true + Ninja: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bDef,5; + - Id: 13004 + AegisName: Coward_ + Name: Cowardice Blade + Type: Weapon + SubType: Dagger + Buy: 52000 + Weight: 700 + Attack: 80 + Range: 1 + Slots: 2 + Jobs: + Assassin: true + Ninja: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bDef,5; + - Id: 13005 + AegisName: Angelwing_Short_Sword + Name: Angelic Wing Dagger + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 600 + Attack: 120 + Range: 1 + Slots: 2 + Jobs: + Novice: true + SuperNovice: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 50 + Refineable: true + - Id: 13006 + AegisName: Khukri + Name: Khukri + Type: Weapon + SubType: Dagger + Buy: 240000 + Weight: 600 + Attack: 150 + Range: 1 + Jobs: + Ninja: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 65 + Refineable: true + Script: | + bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Curse,1000; + - Id: 13007 + AegisName: Jitte + Name: Jitte + Type: Weapon + SubType: Dagger + Buy: 20000 + Weight: 400 + Attack: 70 + Range: 1 + Jobs: + Ninja: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 35 + Refineable: true + Script: | + bonus bBreakWeaponRate,200; + - Id: 13008 + AegisName: Jitte_ + Name: Jitte + Type: Weapon + SubType: Dagger + Buy: 20000 + Weight: 400 + Attack: 70 + Range: 1 + Slots: 1 + Jobs: + Ninja: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 35 + Refineable: true + Script: | + bonus bBreakWeaponRate,200; + - Id: 13009 + AegisName: Kamaitachi + Name: Kamaitachi + Type: Weapon + SubType: Dagger + Buy: 48000 + Weight: 900 + Attack: 125 + Range: 2 + Jobs: + Ninja: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bAtkEle,Ele_Wind; bonus bCritical,3; bonus bAspdRate,3; + - Id: 13010 + AegisName: Asura + Name: Asura + Type: Weapon + SubType: Dagger + Buy: 3000 + Weight: 600 + Attack: 50 + Range: 1 + Slots: 2 + Jobs: + Ninja: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 12 + Refineable: true + Script: | + bonus bMatkRate,10; + - Id: 13011 + AegisName: Asura_ + Name: Asura + Type: Weapon + SubType: Dagger + Buy: 3000 + Weight: 600 + Attack: 50 + Range: 1 + Slots: 3 + Jobs: + Ninja: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 12 + Refineable: true + Script: | + bonus bMatkRate,10; + - Id: 13012 + AegisName: Murasame + Name: Murasame + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 700 + Attack: 95 + Range: 1 + Slots: 1 + Jobs: + Ninja: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 24 + Refineable: true + Script: | + bonus bAtkEle,Ele_Water; bonus2 bCriticalAddRace,RC_DemiHuman,10; bonus2 bCriticalAddRace,RC_Player_Human,10; + - Id: 13013 + AegisName: Murasame_ + Name: Murasame + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 700 + Attack: 95 + Range: 1 + Slots: 2 + Jobs: + Ninja: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 24 + Refineable: true + Script: | + bonus bAtkEle,Ele_Water; bonus2 bCriticalAddRace,RC_DemiHuman,10; bonus2 bCriticalAddRace,RC_Player_Human,10; + - Id: 13014 + AegisName: Hakujin + Name: Hakujin + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 800 + Attack: 120 + Range: 1 + Jobs: + Ninja: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 42 + Refineable: true + Script: | + bonus bInt,2; bonus3 bAutoSpell,"AL_HEAL",1,10; + - Id: 13015 + AegisName: Hakujin_ + Name: Hakujin + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 800 + Attack: 120 + Range: 1 + Slots: 1 + Jobs: + Ninja: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 42 + Refineable: true + Script: | + bonus bInt,2; bonus3 bAutoSpell,"AL_HEAL",1,10; + - Id: 13016 + AegisName: Poison_Knife_ + Name: Poison Knife + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 800 + Attack: 64 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 65 + Refineable: true + Script: | + bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,3000; + - Id: 13017 + AegisName: House_Auger_ + Name: Ice Pick + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 600 + Attack: 70 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 36 + Refineable: true + Script: | + bonus bDefRatioAtkClass,Class_All; + - Id: 13018 + AegisName: Sucsamad_ + Name: Sucsamad + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 800 + Attack: 140 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 36 + Refineable: true + Script: | + bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Wind,10; bonus bUnbreakableWeapon; + - Id: 13019 + AegisName: Ginnungagap_ + Name: Ginnungagap + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 700 + Attack: 148 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Blind,500; bonus2 bAddEff2,Eff_Blind,50; + - Id: 13020 + AegisName: Warrior_Balmung_ + Name: Warrior's Balmung + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 1000 + Attack: 170 + Range: 1 + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,5; + - Id: 13021 + AegisName: Combat_Knife_C + Name: Combat Knife + Type: Weapon + SubType: Dagger + Buy: 1 + Attack: 129 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Demon,-10; bonus bMaxSPrate,10; bonus bSPDrainValue,3; + - Id: 13022 + AegisName: Counter_Dagger_C + Name: Dagger of Counter + Type: Weapon + SubType: Dagger + Buy: 1 + Attack: 209 + Range: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bCritical,90; + - Id: 13023 + AegisName: Asura_C + Name: Ashura + Type: Weapon + SubType: Dagger + Buy: 1 + Attack: 120 + Range: 1 + Jobs: + Ninja: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMatkRate,15; + - Id: 13024 + AegisName: Sword_Breaker_C + Name: Refined Swordbreaker + Type: Weapon + SubType: Dagger + Buy: 2 + Attack: 105 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + Script: | + bonus bBreakWeaponRate,500; + - Id: 13025 + AegisName: Mail_Breaker_C + Name: Refined Mailbreaker + Type: Weapon + SubType: Dagger + Buy: 2 + Attack: 105 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + Script: | + bonus bBreakArmorRate,500; + - Id: 13026 + AegisName: Moonlight_Sword_C + Name: Moonlight Dagger + Type: Weapon + SubType: Dagger + Buy: 2 + Attack: 85 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + Script: | + bonus bMaxSPrate,10; bonus bSPDrainValue,3; + - Id: 13027 + AegisName: Scalpel + Name: Scalpel + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 500 + Attack: 120 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Classes: + Upper: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus2 bAddEff,Eff_Bleeding,500; + - Id: 13028 + AegisName: Tooth_Blade + Name: Tooth Blade + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 700 + Attack: 130 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Classes: + Upper: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 55 + Refineable: true + Script: | + if(getrefine()>=9){ bonus3 bAutoSpell,"NPC_SLOWCAST",2,70; } else bonus3 bAutoSpell,"NPC_SLOWCAST",1,50; + - Id: 13029 + AegisName: Prinsence_Knife + Name: Prinsense Knife + Type: Weapon + SubType: Dagger + Buy: 20 + Attack: 120 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,50; + - Id: 13030 + AegisName: Dragon_Killer_ + Name: Dragon Killer + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 900 + Attack: 110 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 60 + Refineable: true + Script: | + bonus bIgnoreDefRace,RC_Dragon; bonus2 bExpAddRace,RC_Dragon,10; + - Id: 13031 + AegisName: Sword_Breaker_ + Name: Swordbreaker + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 1000 + Attack: 70 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 36 + Refineable: true + Script: | + bonus bBreakWeaponRate,500; + - Id: 13032 + AegisName: Mail_Breaker_ + Name: Mailbreaker + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 1000 + Attack: 70 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 36 + Refineable: true + Script: | + bonus bBreakArmorRate,500; + - Id: 13033 + AegisName: Assasin_Dagger_ + Name: Assassin Dagger + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 600 + Attack: 140 + Range: 1 + Slots: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 36 + Refineable: true + Script: | + bonus bMaxHPrate,20; bonus bMaxSPrate,15; bonus bAspdRate,2; bonus bAtkEle,Ele_Dark; + - Id: 13034 + AegisName: Twilight_Desert + Name: Desert Twilight + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 600 + Attack: 130 + Range: 1 + Slots: 2 + Jobs: + Assassin: true + Classes: + Upper: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 70 + Refineable: true + - Id: 13035 + AegisName: Sandstorm + Name: Sandstorm + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 600 + Attack: 50 + Range: 1 + Slots: 4 + Jobs: + Assassin: true + Classes: + Upper: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 70 + Refineable: true + - Id: 13036 + AegisName: BF_Dagger1 + Name: Brave Assassin's Damascus + Type: Weapon + SubType: Dagger + Buy: 20 + Attack: 120 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,1; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(Class==Job_Ninja||Class==Job_Rogue||Class==Job_Stalker) bonus bMatkRate,15; + - Id: 13037 + AegisName: BF_Dagger2 + Name: Valorous Assassin's Damascus + Type: Weapon + SubType: Dagger + Buy: 20 + Attack: 120 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,1; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus bUnbreakableWeapon; 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; + - Id: 13038 + AegisName: Dagger_Of_Hunter + Name: Dagger of Hunter + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 700 + Attack: 120 + Range: 1 + Slots: 3 + Jobs: + Rogue: true + Classes: + Upper: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bStr,1; bonus bAgi,2; bonus bDex,1; bonus4 bAutoSpellOnSkill,"RG_BACKSTAP","SM_BASH",10,100; bonus2 bSkillAtk,"RG_BACKSTAP",20; + - Id: 13039 + AegisName: Ivory_Knife + Name: Ivory Knife + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 700 + Attack: 130 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Classes: + Upper: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 50 + Refineable: true + Script: | + bonus bAgi,2; bonus bAspdRate,3; bonus2 bAddEff,Eff_Bleeding,300; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,30; + - Id: 13040 + AegisName: N_Cutter + Name: Novice Cutter + Type: Weapon + SubType: Dagger + Attack: 50 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 13041 + AegisName: N_Main_Gauche + Name: Novice Main Gauche + Type: Weapon + SubType: Dagger + Attack: 63 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 13042 + AegisName: Krieger_Dagger1 + Name: Glorious Gladius + Type: Weapon + SubType: Dagger + Buy: 20 + Attack: 120 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus3 bAutoSpell,"PR_LEXDIVINA",1,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) bonus4 bAutoSpellOnSkill,"RG_RAID","NPC_WIDEBLEEDING",1,250; + - Id: 13043 + AegisName: Fortune_Sword_I + Name: Fortune Sword + Type: Weapon + SubType: Dagger + Attack: 120 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bLuk,5; + - Id: 13044 + AegisName: House_Auger_I + Name: Ice Pick + Type: Weapon + SubType: Dagger + Attack: 105 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 13045 + AegisName: Kamaitachi_I + Name: Kamaitachi + Type: Weapon + SubType: Dagger + Attack: 155 + Range: 2 + Jobs: + Ninja: true + Locations: + Right_Hand: true + WeaponLevel: 4 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 13046 + AegisName: Krieg + Name: Krierg + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 500 + Attack: 110 + Range: 1 + Slots: 3 + Jobs: + Assassin: true + Rogue: true + Thief: true + Classes: + Upper: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 50 + Refineable: true + Script: | + bonus3 bAddEffOnSkill,"RG_BACKSTAP",Eff_Bleeding,1000; bonus2 bSkillAtk,"RG_BACKSTAP",15; + - Id: 13047 + AegisName: Weihna + Name: Weihna + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 500 + Attack: 135 + Range: 1 + Slots: 2 + Jobs: + Assassin: true + Rogue: true + Thief: true + Classes: + Upper: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 50 + Refineable: true + Script: | + bonus3 bAddEffOnSkill,"RG_RAID",Eff_Poison,1000; autobonus "{ bonus2 bAddClass,Class_All,10; }",5,5000,BF_WEAPON|BF_SHORT,"{ specialeffect2 EF_POTION_BERSERK; }"; + - Id: 13048 + AegisName: Damascus_C + Name: Damascus + Type: Weapon + SubType: Dagger + Attack: 153 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddSize,Size_All,40; + - Id: 13100 + AegisName: Six_Shooter + Name: Six Shooter + Type: Weapon + SubType: Revolver + Buy: 4500 + Weight: 400 + Attack: 30 + Range: 7 + Slots: 1 + Jobs: + Gunslinger: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 10 + Refineable: true + Script: | + bonus bHit,-10; + - Id: 13101 + AegisName: Six_Shooter_ + Name: Six Shooter + Type: Weapon + SubType: Revolver + Buy: 4500 + Weight: 400 + Attack: 30 + Range: 7 + Slots: 2 + Jobs: + Gunslinger: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 10 + Refineable: true + Script: | + bonus bHit,-10; + - Id: 13102 + AegisName: Crimson_Bolt + Name: Crimson Bolt + Type: Weapon + SubType: Revolver + Buy: 20000 + Weight: 450 + Attack: 45 + Range: 7 + Slots: 1 + Jobs: + Gunslinger: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 35 + Refineable: true + Script: | + bonus bHit,-10; + - Id: 13103 + AegisName: Crimson_Bolt_ + Name: Crimson Bolt + Type: Weapon + SubType: Revolver + Buy: 20000 + Weight: 450 + Attack: 45 + Range: 7 + Slots: 2 + Jobs: + Gunslinger: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 35 + Refineable: true + Script: | + bonus bHit,-10; + - Id: 13104 + AegisName: The_Garrison + Name: Garrison + Type: Weapon + SubType: Revolver + Buy: 48000 + Weight: 500 + Attack: 70 + Range: 7 + Slots: 1 + Jobs: + Gunslinger: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bHit,-10; + - Id: 13105 + AegisName: The_Garrison_ + Name: Garrison + Type: Weapon + SubType: Revolver + Buy: 48000 + Weight: 500 + Attack: 70 + Range: 7 + Slots: 2 + Jobs: + Gunslinger: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bHit,-10; + - Id: 13106 + AegisName: Gold_Lux + Name: Gold Lux + Type: Weapon + SubType: Revolver + Buy: 100000 + Weight: 500 + Attack: 20 + Range: 7 + Jobs: + Gunslinger: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 12 + Refineable: true + Script: | + bonus bHit,-10; if(getskilllv("GS_GLITTERING")>0) bonus3 bAutoSpell,"GS_GLITTERING",getskilllv("GS_GLITTERING"),100; + - Id: 13107 + AegisName: Wasteland_Outlaw + Name: Wasteland's Outlaw + Type: Weapon + SubType: Revolver + Buy: 20 + Weight: 580 + Attack: 68 + Range: 7 + Slots: 2 + Jobs: + Gunslinger: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bHit,readparam(bAgi)/10; bonus bAspdRate,readparam(bAgi)/14; + - Id: 13108 + AegisName: BF_Pistol1 + Name: Soldier Revolver + Type: Weapon + SubType: Revolver + Attack: 70 + Range: 7 + Jobs: + Gunslinger: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,2; bonus bHit,-10; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; autobonus "{ bonus bAspdRate,100; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; bonus bUnbreakableWeapon; + - Id: 13109 + AegisName: Wasteland_Outlaw_C + Name: Wasteland Outlaw + Type: Weapon + SubType: Revolver + Buy: 20 + Attack: 100 + Range: 7 + Jobs: + Gunslinger: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + Script: | + bonus bHit,readparam(bAgi)/10; bonus bAspdRate,readparam(bAgi)/14; bonus2 bAddClass,Class_All,10; bonus bMatkRate,10; + - Id: 13110 + AegisName: Krieger_Pistol1 + Name: Glorious Pistol + Type: Weapon + SubType: Revolver + Attack: 80 + Range: 7 + Jobs: + Gunslinger: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5){ bonus2 bAddRace,RC_DemiHuman,pow(getrefine()-4,2); bonus2 bAddRace,RC_Player_Human,pow(getrefine()-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) { bonus4 bAutoSpellOnSkill,"GS_RAPIDSHOWER","GS_GLITTERING",1,1000; bonus2 bSkillAtk,"GS_RAPIDSHOWER",getrefine()*2; } + - Id: 13112 + AegisName: P_Revolver1 + Name: Eden Revlover I + Type: Weapon + SubType: Revolver + Attack: 4 + Range: 7 + Jobs: + Gunslinger: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 26 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bHit,-5; + - Id: 13113 + AegisName: P_Revolver2 + Name: Eden Revlover II + Type: Weapon + SubType: Revolver + Attack: 60 + Range: 7 + Jobs: + Gunslinger: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 40 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bHit,-5; + - Id: 13150 + AegisName: Branch + Name: Branch + Type: Weapon + SubType: Rifle + Buy: 3000 + Weight: 500 + Attack: 50 + Range: 9 + Slots: 3 + Jobs: + Gunslinger: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + - Id: 13151 + AegisName: The_Cyclone + Name: Cyclone + Type: Weapon + SubType: Rifle + Buy: 17500 + Weight: 700 + Attack: 120 + Range: 9 + Slots: 1 + Jobs: + Gunslinger: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 24 + Refineable: true + Script: | + bonus bHit,10; bonus bCritical,10; + - Id: 13152 + AegisName: The_Cyclone_ + Name: Cyclone + Type: Weapon + SubType: Rifle + Buy: 17500 + Weight: 700 + Attack: 120 + Range: 9 + Slots: 2 + Jobs: + Gunslinger: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 24 + Refineable: true + Script: | + bonus bHit,10; bonus bCritical,10; + - Id: 13153 + AegisName: Dusk + Name: Dusk + Type: Weapon + SubType: Rifle + Buy: 23500 + Weight: 750 + Attack: 150 + Range: 9 + Slots: 1 + Jobs: + Gunslinger: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 56 + Refineable: true + Script: | + bonus bHit,10; bonus bCritical,10; + - Id: 13154 + AegisName: Rolling_Stone + Name: Rolling Stone + Type: Weapon + SubType: Shotgun + Buy: 12000 + Weight: 900 + Attack: 135 + Range: 9 + Slots: 1 + Jobs: + Gunslinger: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 14 + Refineable: true + Script: | + bonus bSplashRange,1; + - Id: 13155 + AegisName: Black_Rose + Name: Black Rose + Type: Weapon + SubType: Shotgun + Buy: 32000 + Weight: 900 + Attack: 180 + Range: 9 + Slots: 1 + Jobs: + Gunslinger: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 35 + Refineable: true + Script: | + bonus bSplashRange,1; + - Id: 13156 + AegisName: Gate_Keeper + Name: Gate Keeper + Type: Weapon + SubType: Shotgun + Buy: 56000 + Weight: 1000 + Attack: 210 + Range: 9 + Jobs: + Gunslinger: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 24 + Refineable: true + Script: | + bonus bSplashRange,1; bonus3 bAutoSpell,"GS_SPREADATTACK",6,50; + - Id: 13157 + AegisName: Drifter + Name: Drifter + Type: Weapon + SubType: Gatling + Buy: 80000 + Weight: 2300 + Attack: 50 + Range: 9 + Slots: 1 + Jobs: + Gunslinger: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 55 + Refineable: true + - Id: 13158 + AegisName: Butcher + Name: Butcher + Type: Weapon + SubType: Gatling + Buy: 130000 + Weight: 2500 + Attack: 75 + Range: 9 + Jobs: + Gunslinger: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 68 + Refineable: true + Script: | + bonus2 bCriticalAddRace,RC_Brute,10; bonus2 bCriticalAddRace,RC_Player_Doram,10; + - Id: 13159 + AegisName: Butcher_ + Name: Butcher + Type: Weapon + SubType: Gatling + Buy: 130000 + Weight: 2500 + Attack: 75 + Range: 9 + Slots: 1 + Jobs: + Gunslinger: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 68 + Refineable: true + Script: | + bonus2 bCriticalAddRace,RC_Brute,10; bonus2 bCriticalAddRace,RC_Player_Doram,10; + - Id: 13160 + AegisName: Destroyer + Name: Destroyer + Type: Weapon + SubType: Grenade + Buy: 110000 + Weight: 1200 + Attack: 220 + Range: 9 + Jobs: + Gunslinger: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 52 + Refineable: true + Script: | + bonus bBreakArmorRate,200; + - Id: 13161 + AegisName: Destroyer_ + Name: Destroyer + Type: Weapon + SubType: Grenade + Buy: 110000 + Weight: 1200 + Attack: 220 + Range: 9 + Slots: 1 + Jobs: + Gunslinger: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 52 + Refineable: true + Script: | + bonus bBreakArmorRate,200; + - Id: 13162 + AegisName: Inferno + Name: Inferno + Type: Weapon + SubType: Grenade + Buy: 230000 + Weight: 1250 + Attack: 280 + Range: 9 + Slots: 1 + Jobs: + Gunslinger: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 65 + Refineable: true + - Id: 13163 + AegisName: Long_Barrel + Name: Long Barrel + Type: Weapon + SubType: Rifle + Buy: 40000 + Weight: 1000 + Attack: 150 + Range: 9 + Jobs: + Gunslinger: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bHit,10; bonus bCritical,20; bonus bAspdRate,-3; bonus3 bAutoSpell,"GS_TRACKING",5,20; + - Id: 13164 + AegisName: Long_Barrel_ + Name: Long Barrel + Type: Weapon + SubType: Rifle + Buy: 40000 + Weight: 1000 + Attack: 150 + Range: 9 + Slots: 1 + Jobs: + Gunslinger: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bHit,10; bonus bCritical,20; bonus bAspdRate,-3; bonus3 bAutoSpell,"GS_TRACKING",5,20; + - Id: 13165 + AegisName: Jungle_Carbine + Name: Jungle Carbine + Type: Weapon + SubType: Rifle + Buy: 56000 + Weight: 700 + Attack: 170 + Range: 9 + Jobs: + Gunslinger: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bHit,10; bonus bCritical,4; bonus bAspdRate,10; bonus bHit,-readparam(bDex)/3; + - Id: 13166 + AegisName: Jungle_Carbine_ + Name: Jungle Carbine + Type: Weapon + SubType: Rifle + Buy: 56000 + Weight: 700 + Attack: 170 + Range: 9 + Slots: 1 + Jobs: + Gunslinger: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bHit,10; bonus bCritical,4; bonus bAspdRate,10; bonus bHit,-readparam(bDex)/3; + - Id: 13167 + AegisName: Gate_KeeperDD + Name: Gate Keeper-DD + Type: Weapon + SubType: Shotgun + Buy: 72000 + Weight: 1300 + Attack: 200 + Range: 9 + Jobs: + Gunslinger: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bSplashRange,1; bonus3 bAutoSpell,"GS_SPREADATTACK",6,50; bonus bDef,getrefine(); bonus bDex,1; + - Id: 13168 + AegisName: Thunder_P + Name: Thunder P + Type: Weapon + SubType: Shotgun + Buy: 76000 + Weight: 700 + Attack: 80 + Range: 9 + Slots: 1 + Jobs: + Gunslinger: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bSplashRange,1; bonus bHit,-5; bonus bAspdRate,20; + - Id: 13169 + AegisName: Thunder_P_ + Name: Thunder P + Type: Weapon + SubType: Shotgun + Buy: 76000 + Weight: 700 + Attack: 80 + Range: 9 + Slots: 2 + Jobs: + Gunslinger: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bSplashRange,1; bonus bHit,-5; bonus bAspdRate,20; + - Id: 13170 + AegisName: Lever_Action_Rifle + Name: Lever Action Rifle + Type: Weapon + SubType: Rifle + Buy: 20 + Weight: 770 + Attack: 138 + Range: 9 + Slots: 2 + Jobs: + Gunslinger: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bHit,20; bonus bCritical,50; bonus bAspdRate,-5; + - Id: 13171 + AegisName: BF_Rifle1 + Name: Soldier Rifle + Type: Weapon + SubType: Rifle + Attack: 50 + Range: 9 + Jobs: + Gunslinger: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,2; bonus bHit,10; bonus bCritical,10; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bCastrate,"GS_TRACKING",-25; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; + - Id: 13172 + AegisName: BF_Gatling_Gun1 + Name: Soldier Gatling Gun + Type: Weapon + SubType: Gatling + Attack: 80 + Range: 9 + Jobs: + Gunslinger: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; autobonus "{ bonus bBaseAtk,80; bonus2 bHPLossRate,120,1000; }",10,6000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; bonus bUnbreakableWeapon; + - Id: 13173 + AegisName: BF_Shotgun1 + Name: Soldier Shotgun + Type: Weapon + SubType: Shotgun + Attack: 100 + Range: 9 + Jobs: + Gunslinger: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,2; bonus bSplashRange,1; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; autobonus "{ bonus bBaseAtk,80; bonus2 bHPLossRate,100,1000; }",30,6000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; bonus bUnbreakableWeapon; + - Id: 13174 + AegisName: BF_Launcher1 + Name: Soldier Grenade Launcher + Type: Weapon + SubType: Grenade + Attack: 300 + Range: 9 + Jobs: + Gunslinger: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; autobonus "{ bonus bBaseAtk,300; bonus2 bHPLossRate,120,1000; }",30,9000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; bonus bUnbreakableWeapon; + - Id: 13175 + AegisName: Lever_Action_Rifle_C + Name: Lever Action Rifle + Type: Weapon + SubType: Rifle + Buy: 20 + Attack: 170 + Range: 9 + Jobs: + Gunslinger: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bHit,20; bonus bCritical,50; bonus bAspdRate,-5; + - Id: 13176 + AegisName: Krieger_Rifle1 + Name: Glorious Rifle + Type: Weapon + SubType: Rifle + Attack: 90 + Range: 9 + Jobs: + Gunslinger: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) { bonus2 bCastrate,"GS_TRACKING",25; bonus2 bSkillAtk,"GS_TRACKING",getrefine() * 3; } + - Id: 13177 + AegisName: Krieger_Gatling1 + Name: Glorious Gatling Gun + Type: Weapon + SubType: Gatling + Attack: 90 + Range: 9 + Jobs: + Gunslinger: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) {bonus2 bAddClass,Class_All,getrefine(); } + - Id: 13178 + AegisName: Krieger_Shotgun1 + Name: Glorious Shotgun + Type: Weapon + SubType: Shotgun + Attack: 110 + Range: 9 + Jobs: + Gunslinger: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bSplashRange,1; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) { bonus2 bSkillAtk,"GS_SPREADATTACK",getrefine() * 2; bonus3 bAddEffOnSkill,"GS_SPREADATTACK",Eff_Stun,2000; } + - Id: 13179 + AegisName: Krieger_Launcher1 + Name: Glorious Grenade Launcher + Type: Weapon + SubType: Grenade + Attack: 330 + Range: 9 + Jobs: + Gunslinger: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) { bonus2 bSkillAtk,"GS_GROUNDDRIFT",getrefine() * 2; bonus3 bAddEffOnSkill,"GS_SPREADATTACK",Eff_Stun,2000; autobonus "{ bonus bAspdRate,20; }",200,20000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; } + - Id: 13300 + AegisName: Huuma_Bird_Wing + Name: Huuma Wing Shuriken + Type: Weapon + SubType: Huuma + Buy: 90000 + Weight: 3000 + Attack: 150 + Range: 1 + Jobs: + Ninja: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 65 + Refineable: true + Script: | + bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Wind; bonus bDex,-2; bonus bAgi,-1; + - Id: 13301 + AegisName: Huuma_Giant_Wheel + Name: Huuma Giant Wheel Shuriken + Type: Weapon + SubType: Huuma + Buy: 40000 + Weight: 2500 + Attack: 50 + Range: 1 + Slots: 3 + Jobs: + Ninja: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 42 + Refineable: true + Script: | + bonus bUnbreakableWeapon; bonus2 bAddEff,Eff_Bleeding,100; + - Id: 13302 + AegisName: Huuma_Giant_Wheel_ + Name: Huuma Giant Wheel Shuriken + Type: Weapon + SubType: Huuma + Buy: 40000 + Weight: 2500 + Attack: 50 + Range: 1 + Slots: 4 + Jobs: + Ninja: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 42 + Refineable: true + Script: | + bonus bUnbreakableWeapon; bonus2 bAddEff,Eff_Bleeding,100; + - Id: 13303 + AegisName: Huuma_Blaze + Name: Huuma Blaze Shuriken + Type: Weapon + SubType: Huuma + Buy: 78000 + Weight: 1500 + Attack: 185 + Range: 1 + Jobs: + Ninja: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Fire; bonus bDex,-2; bonus3 bAutoSpell,"MG_FIREBALL",5,30; + - Id: 13304 + AegisName: Huuma_Calm_Mind + Name: Huuma Calm Mind + Type: Weapon + SubType: Huuma + Buy: 20 + Weight: 1550 + Attack: 112 + Range: 1 + Slots: 2 + Jobs: + Ninja: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bUnbreakableWeapon; bonus2 bSkillAtk,"NJ_HUUMA",30; bonus bNoCastCancel; + - Id: 13305 + AegisName: BF_Huuma_Shuriken1 + Name: Brave Huuma Front Shuriken + Type: Weapon + SubType: Huuma + Buy: 20 + Attack: 55 + Range: 1 + Jobs: + Ninja: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,2; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; + - Id: 13306 + AegisName: BF_Huuma_Shuriken2 + Name: Valorous Huuma Front Shuriken + Type: Weapon + SubType: Huuma + Buy: 20 + Attack: 55 + Range: 1 + Jobs: + Ninja: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,2; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; autobonus "{ bonus2 bSkillAtk,\"NJ_HUUMA\",100; bonus2 bSkillAtk,\"NJ_ISSEN\",100; }",50,10000,BF_WEAPON,"{specialeffect2 EF_POTION_BERSERK; }"; bonus bUnbreakableWeapon; + - Id: 13307 + AegisName: Krieger_Huuma_Shuriken1 + Name: Glorious Shuriken + Type: Weapon + SubType: Huuma + Buy: 20 + Attack: 55 + Range: 1 + Jobs: + Ninja: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bMatkRate,15; autobonus "{ bonus2 bSkillAtk,\"NJ_HUUMA\",100; bonus2 bSkillAtk,\"NJ_ISSEN\",100; }",50,10000; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-3)*(getrefine()-3); bonus2 bAddRace,RC_Player_Human,(getrefine()-3)*(getrefine()-3); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) { bonus5 bAutoSpellOnSkill,"NJ_ISSEN","AL_HEAL",10,1000,1; bonus4 bAutoSpellOnSkill,"NJ_HUUMA","NPC_CRITICALWOUND",2,200; } + - Id: 13308 + AegisName: Huuma_Blaze_I + Name: Huuma Blaze Shuriken + Type: Weapon + SubType: Huuma + Attack: 230 + Range: 1 + Jobs: + Ninja: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Fire; bonus bDex,2; + - Id: 13309 + AegisName: Huuma_Giant_Wheel_C + Name: Huuma Giant Wheel Shuriken + Type: Weapon + SubType: Huuma + Attack: 99 + Range: 1 + Jobs: + Ninja: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddSize,Size_All,80; + - Id: 13400 + AegisName: Cutlas_ + Name: Cutlus + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 900 + Attack: 150 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + skill "SM_BASH",5; bonus bStr,2; bonus bDef,1; + - Id: 13401 + AegisName: Excalibur_C + Name: Excalibur + Type: Weapon + SubType: 1hSword + Buy: 1 + Attack: 199 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,10; bonus bLuk,10; bonus bAtkEle,Ele_Holy; + - Id: 13402 + AegisName: Cutlas_C + Name: Cutlus + Type: Weapon + SubType: 1hSword + Buy: 2 + Attack: 185 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + Script: | + skill "SM_BASH",5; bonus bStr,2; bonus bDef,1; + - Id: 13403 + AegisName: Solar_Sword_C + Name: Solar Sword + Type: Weapon + SubType: 1hSword + Buy: 2 + Attack: 120 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + Script: | + bonus bAtkEle,Ele_Fire; bonus bHPDrainRate,1; bonus2 bSPLossRate,15,10000; + - Id: 13404 + AegisName: Platinum_Shotel + Name: Platinum Shotel + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 1500 + Attack: 130 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bCritical,50; + - Id: 13405 + AegisName: Curved_Sword + Name: Curved Sword + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 800 + Attack: 125 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bAspdRate,10; bonus2 bAddEff,Eff_Curse,300; + - Id: 13406 + AegisName: Edger + Name: Edger + Type: Weapon + SubType: 1hSword + Buy: 20 + Attack: 120 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,50; + - Id: 13407 + AegisName: Nagan_C + Name: Refined Nagan + Type: Weapon + SubType: 1hSword + Buy: 1 + Attack: 148 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + Script: | + skill "TF_DOUBLE",5; bonus bDoubleRate,25; bonus2 bAddRace,RC_DemiHuman,40; bonus2 bAddRace,RC_Player_Human,40; + - Id: 13408 + AegisName: Fire_Brand_C + Name: Refined Fireblend + Type: Weapon + SubType: 1hSword + Buy: 1 + Attack: 120 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + Script: | + bonus bAtkEle,Ele_Fire; bonus bInt,2; skill "MG_FIREBOLT",5; bonus3 bAutoSpell,"MG_FIREBOLT",5,100; + - Id: 13409 + AegisName: Immaterial_Sword_C + Name: Refined Immaterial Sword + Type: Weapon + SubType: 1hSword + Buy: 1 + Attack: 160 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + Script: | + bonus bAtkEle,Ele_Ghost; bonus2 bSPVanishRate,45,30; bonus bSPDrainValue,-1; bonus bUnbreakableWeapon; + - Id: 13410 + AegisName: BF_Sword1 + Name: Valorous Gladiator Blade + Type: Weapon + SubType: 1hSword + Buy: 20 + Attack: 115 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; + - Id: 13411 + AegisName: BF_Sword2 + Name: Brave Gladiator Blade + Type: Weapon + SubType: 1hSword + Buy: 20 + Attack: 115 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus bMatkRate,10; bonus bUnbreakableWeapon; + - Id: 13412 + AegisName: Twin_Edge_B + Name: Twin Edge of Naght Sieger + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 1500 + Attack: 150 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Classes: + Upper: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 75 + Refineable: true + Script: | + bonus bAtkEle,Ele_Water; skill "MG_FROSTDIVER",5; autobonus "{ bonus bIgnoreDefClass,Class_Normal; }",50,5000; + - Id: 13413 + AegisName: Twin_Edge_R + Name: Twin Edge of Naght Sieger + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 1500 + Attack: 160 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Classes: + Upper: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 75 + Refineable: true + Script: | + bonus bAtkEle,Ele_Fire; skill "WZ_METEOR",3; autobonus "{ bonus bIgnoreDefClass,Class_Normal; }",50,5000; + - Id: 13414 + AegisName: Elemental_Sword + Name: Elemental Sword + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 1200 + Attack: 105 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Classes: + Upper: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bStr,2; bonus bInt,4; bonus bDex,1; bonus bMatkRate,5; 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,1000; bonus4 bAutoSpellOnSkill,"MG_LIGHTNINGBOLT","WZ_EARTHSPIKE",3,1000; + - Id: 13415 + AegisName: N_Falchion + Name: Novice Falchion + Type: Weapon + SubType: 1hSword + Attack: 59 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 2 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 13416 + AegisName: Krieger_Onehand_Sword1 + Name: Glorious Flamberge + Type: Weapon + SubType: 1hSword + Buy: 20 + Attack: 130 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>6) bonus bAspdRate,5; if(getrefine()>8) { bonus bAspdRate,5; bonus4 bAutoSpellOnSkill,"SM_BASH","NPC_CRITICALWOUND",2,200; } + - Id: 13417 + AegisName: Krieger_Onehand_Sword2 + Name: Glorious Rapier + Type: Weapon + SubType: 1hSword + Buy: 20 + Attack: 130 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,getrefine()-5; bonus bMatkRate,10; bonus bUnbreakableWeapon; if(getrefine()>5) bonus bUseSPrate,-10; if(getrefine()>8) bonus bInt,5; + - Id: 13418 + AegisName: Krieger_Onehand_Sword3 + Name: Glorious Holy Avenger + Type: Weapon + SubType: 1hSword + Buy: 20 + Attack: 130 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,getrefine()-5; bonus bMatkRate,10; bonus bUnbreakableWeapon; if(getrefine()>5) bonus bUseSPrate,-10; if(getrefine()>8) bonus4 bAutoSpellOnSkill,"PA_PRESSURE","PR_LEXAETERNA",1,1000; if(getrefine()>9) bonus bInt,5; + - Id: 13419 + AegisName: Holy_Saber + Name: Holy saber + Type: Weapon + SubType: 1hSword + Buy: 20 + Attack: 160 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 13420 + AegisName: Honglyun's_Sword + Name: Honglyun's Sword + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 1200 + Attack: 160 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 70 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + bonus bAtkEle,Ele_Fire; bonus bStr,2; bonus bInt,2; + - Id: 13421 + AegisName: Ruber + Name: Ruber + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 1500 + Attack: 170 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Classes: + Upper: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 50 + Refineable: true + Script: | + autobonus "{ bonus2 bSkillAtk,\"KN_BOWLINGBASH\",20; bonus2 bSkillAtk,\"SM_BASH\",20; }",5,15000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; + - Id: 13422 + AegisName: Flamberge_C + Name: Flamberge + Type: Weapon + SubType: 1hSword + Attack: 185 + Range: 1 + Jobs: + Crusader: true + Knight: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bUnbreakableWeapon; bonus2 bAddSize,Size_All,40; + - Id: 15000 + AegisName: Bone_Plate + Name: Bone Plate + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 7 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Classes: + Upper: true + Locations: + Armor: true + EquipLevelMin: 85 + Refineable: true + Script: | + bonus bStr,1; bonus bMdef,3; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus2 bIgnoreDefRaceRate,RC_Brute,10; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,10; bonus3 bAutoSpellWhenHit,"NPC_WIDEBLEEDING",1,10; + - Id: 15001 + AegisName: Odin's_Blessing_I + Name: Odin's Blessing + Type: Armor + Defense: 10 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Armor: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 16000 + AegisName: Erde + Name: Erde + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 500 + Attack: 130 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Swordman: true + Classes: + Upper: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 50 + Refineable: true + Script: | + bonus2 bSkillAtk,"AM_ACIDTERROR",20; bonus2 bSkillAtk,"AM_DEMONSTRATION",20; bonus bMaxSP,50; bonus bHealPower,10; + - Id: 16001 + AegisName: Red_Square_Bag + Name: Red Square Bag + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 500 + Attack: 130 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Swordman: true + Classes: + Upper: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 50 + Refineable: true + Script: | + 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; + - Id: 16002 + AegisName: Stunner_C + Name: Stunner + Type: Weapon + SubType: Mace + Attack: 175 + Range: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddEff,Eff_Stun,1000; bonus2 bAddSize,Size_All,40; + - Id: 16030 + AegisName: Pilebuncker_S + Name: Pile Bunker S + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 3000 + Attack: 400 + Range: 1 + Slots: 1 + Jobs: + Blacksmith: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 130 + Refineable: true + Script: | + bonus bAspdRate,getrefine()/2; + - Id: 16031 + AegisName: Pilebuncker_P + Name: Pile Bunker P + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 4000 + Attack: 450 + Range: 1 + Jobs: + Blacksmith: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 130 + Refineable: true + Script: | + bonus bBaseAtk,getrefine()*5; + - Id: 16032 + AegisName: Pilebuncker_T + Name: Pile Bunker T + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 3500 + Attack: 400 + Range: 1 + Slots: 1 + Jobs: + Blacksmith: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 130 + Refineable: true + Script: | + bonus bUseSPrate,getrefine()*-1; + - Id: 18100 + AegisName: Shooting_Star_C + Name: Shooting Star + Type: Weapon + SubType: Bow + Buy: 20 + Attack: 190 + Range: 5 + Jobs: + BardDancer: true + Hunter: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bLongAtkRate,20; + - Id: 18101 + AegisName: F_Bow_Of_Rudra_C + Name: Rudra Bow + Type: Weapon + SubType: Bow + Buy: 2 + Attack: 185 + Range: 5 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + Script: | + 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; + - Id: 18102 + AegisName: E_Bow_Of_Rudra_C + Name: Rudra Bow + Type: Weapon + SubType: Bow + Buy: 2 + Attack: 185 + Range: 5 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + Script: | + 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; + - Id: 18500 + AegisName: Cheer_Scarf6 + Name: Cheer Scarf6 + Type: Armor + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 369 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 18501 + AegisName: Cheer_Scarf8 + Name: Cheer Scarf8 + Type: Armor + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 369 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 18502 + AegisName: Cheer_Scarf10 + Name: Cheer Scarf10 + Type: Armor + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 369 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 18503 + AegisName: Small_Horn_Of_Devil + Name: Small Devil Horns + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Locations: + Head_Mid: true + EquipLevelMin: 1 + View: 562 + Script: | + bonus bAtkRate,5; bonus bMatkRate,5; bonus bMaxHPRate,10; bonus bMaxSPRate,10; + - Id: 18505 + AegisName: Umbala_Spirit + Name: Umbala Spirit + Type: Armor + Weight: 200 + Defense: 1 + Slots: 1 + Locations: + Head_Low: true + EquipLevelMin: 30 + View: 675 + Script: | + bonus bVit,1; + - Id: 18506 + AegisName: Hattah_Black + Name: Hattah Black + Type: Armor + Buy: 12000 + Weight: 4000 + Defense: 2 + Slots: 1 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 676 + - Id: 18507 + AegisName: Elven_Ears_ + Name: Elven Ears + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + EquipLevelMin: 70 + View: 73 + - Id: 18539 + AegisName: Skull_Cap + Name: Skull Cap + Type: Armor + Buy: 40 + Weight: 200 + Defense: 5 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 713 + Script: | + bonus bMatkRate,2; if(getrefine() >= 5) { bonus bMatkRate,3; } if(getrefine() >= 7) { bonus bMatkRate,3; } + - Id: 18595 + AegisName: Horn_Of_Ancient + Name: Horn of Ancient + Type: Armor + Buy: 40 + Weight: 200 + Defense: 8 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 757 + Script: | + autobonus "{ bonus bBaseAtk,100; }",5,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }"; + - Id: 18596 + AegisName: Sprout_Hat + Name: Sprout Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 4 + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 758 + Script: | + skill "WZ_HEAVENDRIVE",3; + - Id: 18597 + AegisName: Mercury_Helm + Name: Mercury Riser + Type: Armor + Buy: 40 + Weight: 200 + Defense: 10 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 759 + Script: | + bonus bAspdRate,3; bonus bCritical,3; if(getrefine() >= 7) { bonus bAspdRate,2; bonus bCritical,2; } if(getrefine() >= 9) { bonus bAspdRate,2; bonus bCritical,2; } + - Id: 18600 + AegisName: Cat_Ears_Beret + Name: Cat Ear Beret + Type: Armor + Buy: 20 + Weight: 100 + Defense: 5 + Locations: + Head_Top: true + Refineable: true + View: 761 + Script: | + bonus bAtkRate,5; if(getrefine() > 5 && getrefine() <= 12) { bonus2 bAddRace,RC_DemiHuman,(getrefine() - 5); bonus2 bSubRace,RC_DemiHuman,(getrefine() - 5); bonus2 bAddRace,RC_Player_Human,(getrefine() - 5); bonus2 bSubRace,RC_Player_Human,(getrefine() - 5); } if(getrefine() > 12) { bonus2 bAddRace,RC_DemiHuman,7; bonus2 bAddRace,RC_Player_Human,7; bonus2 bSubRace,RC_DemiHuman,7; bonus2 bSubRace,RC_Player_Human,7; } + - Id: 18612 + AegisName: White_Musang_Hat + Name: White Musang Hat + Type: Armor + Buy: 40 + Weight: 200 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 770 + Script: | + bonus bStr,2; bonus bVit,2; bonus bLuk,1; bonus bUnbreakableHelm; + - Id: 18613 + AegisName: Black_Musang_Hat + Name: Black Musang Hat + Type: Armor + Buy: 40 + Weight: 200 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 771 + Script: | + bonus bInt,2; bonus bDex,2; bonus bAgi,1; bonus bUnbreakableHelm; + - Id: 18620 + AegisName: Heart_Eyepatch + Name: Heart Eyepatch + Type: Armor + Buy: 5 + Weight: 200 + Defense: 2 + Locations: + Head_Mid: true + EquipLevelMin: 20 + Refineable: true + View: 779 + - Id: 18656 + AegisName: Wit_Pumpkin_Hat + Name: Witch's Pumpkin Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 10 + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 717 + Script: | + bonus bMdef,10; bonus bStr,2; bonus bInt,2; bonus2 bMagicAddRace,RC_Undead,15; bonus2 bMagicAddRace,RC_Demon,15; + - Id: 19500 + AegisName: T_Mr_Smile + Name: T Mr Smile + Type: Armor + Locations: + Costume_Head_Mid: true + Costume_Head_Low: true + View: 65 + Script: | + bonus bStr,2; + - Id: 19501 + AegisName: T_Spinx_Helm + Name: T Spinx Helm + Type: Armor + Slots: 1 + Locations: + Costume_Head_Top: true + Costume_Head_Low: true + View: 137 + - Id: 19504 + AegisName: T_Sunglasses + Name: T Sunglasses + Type: Armor + Locations: + Costume_Head_Mid: true + View: 12 + - Id: 19505 + AegisName: T_Cigarette + Name: T Cigarette + Type: Armor + Locations: + Costume_Head_Low: true + View: 54 + - Id: 19506 + AegisName: T_Valkyrie_Feather_Band + Name: T Valkyrie Feather Band + Type: Armor + Locations: + Costume_Head_Top: true + Refineable: true + View: 300 + - Id: 19507 + AegisName: Fine_Sun + Name: Clear Sun + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 654 diff --git a/db/pre-re/item_db_etc.yml b/db/pre-re/item_db_etc.yml new file mode 100644 index 0000000000..919f427069 --- /dev/null +++ b/db/pre-re/item_db_etc.yml @@ -0,0 +1,21020 @@ +# This file is a part of rAthena. +# Copyright(C) 2019 rAthena Development Team +# https://rathena.org - https://github.com/rathena +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# +########################################################################### +# Item Database +########################################################################### +# +# Item Settings +# +########################################################################### +# - Id Item ID. +# AegisName Server name to reference the item in scripts and lookups, should use no spaces. +# Name Name in English for displaying as output. +# Type Item type. (Default: Etc) +# SubType Weapon or Ammo type. (Default: 0) +# Buy Buying price. When not specified, becomes double the sell price. (Default: 0) +# Sell Selling price. When not specified, becomes half the buy price. (Default: 0) +# Weight Item weight. Each 10 is 1 weight. (Default: 0) +# Attack Weapon's attack. (Default: 0) +# MagicAttack Weapon's magic attack. (Default: 0) +# Defense Armor's defense. (Default: 0) +# Range Weapon's attack range. (Default: 0) +# Slots Available slots in item. (Default: 0) +# Jobs Jobs that can equip the item. (Map default is 'All: true') +# Classes Upper class types that can equip the item. (Map default is 'All: true') +# Gender Gender that can equip the item. (Default: Both) +# Locations Equipment's placement. (Default: None) +# WeaponLevel Weapon level. (Default: 0) +# EquipLevelMin Minimum required level to equip. (Default: 0) +# EquipLevelMax Maximum level that can equip. (Default: 0) +# Refineable If the item can be refined. (Default: false) +# View View sprite of an item. (Default: 0) +# AliasName Another item's AegisName that will be sent to the client instead of this item's AegisName. (Default: null) +# Flags: Item flags. (Default: null) +# BuyingStore If the item is available for Buyingstores. (Default: false) +# DeadBranch If the item is a Dead Branch. (Default: false) +# Container If the item is part of a container. (Default: false) +# UniqueId If the item is a unique stack. (Default: false) +# BindOnEquip If the item is bound to the character upon equipping. (Default: false) +# DropAnnounce If the item has a special announcement to self on drop. (Default: false) +# NoConsume If the item is consumed on use. (Default: false) +# DropEffect If the item has a special effect when on the ground. (Default: None) +# Delay: Item use delay. (Default: null) +# Duration Duration of delay in seconds. +# Status Status Change used to track delay. (Default: None) +# Stack: Item stack amount. (Default: null) +# Amount Maximum amount that can be stacked. +# Inventory If the stack is applied to player's inventory. (Default: true) +# Cart If the stack is applied to the player's cart. (Default: false) +# Storage If the stack is applied to the player's storage. (Default: false) +# GuildStorage If the stack is applied to the player's guild storage. (Default: false) +# NoUse: Conditions when the item is unusable. (Default: null) +# Override Group level to override these conditions. +# Sitting If the item can not be used while sitting. (Default: false) +# Trade: Trade restrictions. (Default: null) +# Override Group level to override these conditions. +# NoDrop If the item can not be dropped. (Default: false) +# NoTrade If the item can not be traded. (Default: false) +# TradePartner If the item can not be traded to the player's partner. (Default: false) +# NoSell If the item can not be sold. (Default: false) +# NoCart If the item can not be put in a cart. (Default: false) +# NoStorage If the item can not be put in a storage. (Default: false) +# NoGuildStorage If the item can not be put in a guild storage. (Default: false) +# NoMail If the item can not be put in a mail. (Default: false) +# NoAuction If the item can not be put in an auction. (Default: false) +# Script Script to execute when the item is used/equipped. (Default: null) +# EquipScript Script to execute when the item is equipped. (Default: null) +# UnEquipScript Script to execute when the item is unequipped or when a rental item expires. (Default: null) +########################################################################### + +Header: + Type: ITEM_DB + Version: 1 + +Body: + - Id: 670 + AegisName: Gold_Coin_Moneybag + Name: Bag of Gold Coins + Type: Etc + Buy: 100000 + Weight: 400 + - Id: 671 + AegisName: Gold_Coin + Name: Gold Coin + Type: Etc + Buy: 10000 + Weight: 40 + - Id: 672 + AegisName: Copper_Coin_Moneybag + Name: Bag of Bronze Coins + Type: Etc + Buy: 1000 + Weight: 400 + - Id: 673 + AegisName: Copper_Coin + Name: Bronze Coin + Type: Etc + Buy: 100 + Weight: 40 + - Id: 674 + AegisName: Mithril_Coin + Name: Mithril Coin + Type: Etc + Buy: 5000 + Weight: 40 + - Id: 675 + AegisName: Silver_Coin + Name: Silver Coin + Type: Etc + Buy: 5000 + Weight: 40 + - Id: 676 + AegisName: Silver_Coin_Moneybag + Name: Bag of Silver Coins + Type: Etc + Buy: 50000 + Weight: 400 + - Id: 677 + AegisName: White_Gold_Coin + Name: Platinum Coin + Type: Etc + Buy: 2000 + Weight: 40 + - Id: 701 + AegisName: Ora_Ora + Name: Ora Ora + Type: Etc + Buy: 55000 + Weight: 200 + Flags: + BuyingStore: true + - Id: 702 + AegisName: Animal_Blood + Name: Animal Gore + Type: Etc + Buy: 450 + Weight: 100 + Flags: + BuyingStore: true + - Id: 703 + AegisName: Hinalle + Name: Hinalle + Type: Etc + Buy: 500 + Weight: 10 + Flags: + BuyingStore: true + - Id: 704 + AegisName: Aloe + Name: Aloe + Type: Etc + Buy: 500 + Weight: 10 + Flags: + BuyingStore: true + - Id: 705 + AegisName: Clover + Name: Clover + Type: Etc + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + - Id: 706 + AegisName: Four_Leaf_Clover + Name: Four Leaf Clover + Type: Etc + Buy: 80000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 707 + AegisName: Singing_Plant + Name: Singing Plant + Type: Etc + Buy: 500 + Weight: 10 + Flags: + BuyingStore: true + - Id: 708 + AegisName: Ment + Name: Ment + Type: Etc + Buy: 500 + Weight: 10 + Flags: + BuyingStore: true + - Id: 709 + AegisName: Izidor + Name: Izidor + Type: Etc + Buy: 500 + Weight: 10 + Flags: + BuyingStore: true + - Id: 710 + AegisName: Illusion_Flower + Name: Illusion Flower + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 711 + AegisName: Shoot + Name: Shoot + Type: Etc + Buy: 16 + Weight: 10 + Flags: + BuyingStore: true + - Id: 712 + AegisName: Flower + Name: Flower + Type: Etc + Buy: 2 + Weight: 10 + Flags: + BuyingStore: true + - Id: 713 + AegisName: Empty_Bottle + Name: Empty Bottle + Type: Etc + Buy: 6 + Weight: 20 + Flags: + BuyingStore: true + - Id: 714 + AegisName: Emperium + Name: Emperium + Type: Etc + Buy: 2 + Weight: 1000 + Flags: + BuyingStore: true + - Id: 715 + AegisName: Yellow_Gemstone + Name: Yellow Gemstone + Type: Etc + Buy: 600 + Weight: 30 + Flags: + BuyingStore: true + - Id: 716 + AegisName: Red_Gemstone + Name: Red Gemstone + Type: Etc + Buy: 600 + Weight: 30 + Flags: + BuyingStore: true + - Id: 717 + AegisName: Blue_Gemstone + Name: Blue Gemstone + Type: Etc + Buy: 600 + Weight: 30 + Flags: + BuyingStore: true + - Id: 718 + AegisName: Dark_Red_Jewel + Name: Garnet + Type: Etc + Buy: 6000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 719 + AegisName: Violet_Jewel + Name: Amethyst + Type: Etc + Buy: 6000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 720 + AegisName: Skyblue_Jewel + Name: Aquamarine + Type: Etc + Buy: 6000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 721 + AegisName: Azure_Jewel + Name: Emerald + Type: Etc + Buy: 6000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 722 + AegisName: Scarlet_Jewel + Name: Pearl + Type: Etc + Buy: 6000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 723 + AegisName: Cardinal_Jewel + Name: Ruby + Type: Etc + Buy: 6000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 724 + AegisName: Cardinal_Jewel_ + Name: Cursed Ruby + Type: Etc + Buy: 600 + Weight: 100 + Flags: + BuyingStore: true + - Id: 725 + AegisName: Red_Jewel + Name: Sardonyx + Type: Etc + Buy: 6000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 726 + AegisName: Blue_Jewel + Name: Sapphire + Type: Etc + Buy: 6000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 727 + AegisName: White_Jewel + Name: Opal + Type: Etc + Buy: 6000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 728 + AegisName: Golden_Jewel + Name: Topaz + Type: Etc + Buy: 6000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 729 + AegisName: Bluish_Green_Jewel + Name: Zircon + Type: Etc + Buy: 6000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 730 + AegisName: Crystal_Jewel + Name: 1carat Diamond + Type: Etc + Buy: 10000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 731 + AegisName: Crystal_Jewel_ + Name: 2carat Diamond + Type: Etc + Buy: 25000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 732 + AegisName: Crystal_Jewel__ + Name: 3carat Diamond + Type: Etc + Buy: 55000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 733 + AegisName: Crystal_Jewel___ + Name: Cracked Diamond + Type: Etc + Buy: 10 + Weight: 100 + Flags: + BuyingStore: true + - Id: 734 + AegisName: Red_Frame + Name: Red Frame + Type: Etc + Buy: 3000 + Weight: 200 + Flags: + BuyingStore: true + - Id: 735 + AegisName: Blue_Porcelain + Name: Chung Jah + Type: Etc + Buy: 5000 + Weight: 500 + Flags: + BuyingStore: true + - Id: 736 + AegisName: White_Platter + Name: China + Type: Etc + Buy: 1000 + Weight: 300 + Flags: + BuyingStore: true + - Id: 737 + AegisName: Black_Ladle + Name: Black Ladle + Type: Etc + Buy: 400 + Weight: 50 + Flags: + BuyingStore: true + - Id: 738 + AegisName: Pencil_Case + Name: Pencil Case + Type: Etc + Buy: 400 + Weight: 100 + Flags: + BuyingStore: true + - Id: 739 + AegisName: Rouge + Name: Rouge + Type: Etc + Buy: 10000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 740 + AegisName: Stuffed_Doll + Name: Puppet + Type: Etc + Buy: 1000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 741 + AegisName: Poring_Doll + Name: Poring Doll + Type: Etc + Buy: 1800 + Weight: 100 + Flags: + BuyingStore: true + - Id: 742 + AegisName: Chonchon_Doll + Name: Chonchon Doll + Type: Etc + Buy: 3000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 743 + AegisName: Spore_Doll + Name: Spore Doll + Type: Etc + Buy: 5500 + Weight: 100 + Flags: + BuyingStore: true + - Id: 744 + AegisName: Bunch_Of_Flowers + Name: Bouquet + Type: Etc + Buy: 2000 + Weight: 50 + Flags: + BuyingStore: true + - Id: 745 + AegisName: Wedding_Bouquet + Name: Wedding Bouquet + Type: Etc + Buy: 12000 + Weight: 50 + Flags: + BuyingStore: true + - Id: 746 + AegisName: Glass_Bead + Name: Glass Bead + Type: Etc + Buy: 1400 + Weight: 50 + Flags: + BuyingStore: true + - Id: 747 + AegisName: Crystal_Mirror + Name: Crystal Mirror + Type: Etc + Buy: 15000 + Weight: 50 + Flags: + BuyingStore: true + - Id: 748 + AegisName: Witherless_Rose + Name: Witherless Rose + Type: Etc + Buy: 55000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 749 + AegisName: Frozen_Rose + Name: Frozen Rose + Type: Etc + Buy: 35000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 750 + AegisName: Baphomet_Doll + Name: Baphomet Doll + Type: Etc + Buy: 18000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 751 + AegisName: Osiris_Doll + Name: Osiris Doll + Type: Etc + Buy: 14000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 752 + AegisName: Grasshopper_Doll + Name: Rocker Doll + Type: Etc + Buy: 4000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 753 + AegisName: Monkey_Doll + Name: Yoyo Doll + Type: Etc + Buy: 6000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 754 + AegisName: Raccoondog_Doll + Name: Raccoon Doll + Type: Etc + Buy: 5000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 756 + AegisName: Oridecon_Stone + Name: Rough Oridecon + Type: Etc + Buy: 550 + Weight: 200 + Flags: + BuyingStore: true + - Id: 757 + AegisName: Elunium_Stone + Name: Rough Elunium + Type: Etc + Buy: 650 + Weight: 200 + Flags: + BuyingStore: true + - Id: 901 + AegisName: Danggie + Name: Daenggie + Type: Etc + Buy: 260 + Weight: 10 + Flags: + BuyingStore: true + - Id: 902 + AegisName: Tree_Root + Name: Tree Root + Type: Etc + Buy: 12 + Weight: 10 + Flags: + BuyingStore: true + - Id: 903 + AegisName: Reptile_Tongue + Name: Reptile Tongue + Type: Etc + Buy: 140 + Weight: 10 + Flags: + BuyingStore: true + - Id: 904 + AegisName: Scorpion's_Tail + Name: Scorpion Tail + Type: Etc + Buy: 124 + Weight: 10 + Flags: + BuyingStore: true + - Id: 905 + AegisName: Stem + Name: Stem + Type: Etc + Buy: 46 + Weight: 10 + Flags: + BuyingStore: true + - Id: 906 + AegisName: Pointed_Scale + Name: Pointed Scale + Type: Etc + Buy: 68 + Weight: 10 + Flags: + BuyingStore: true + - Id: 907 + AegisName: Resin + Name: Resin + Type: Etc + Buy: 120 + Weight: 10 + Flags: + BuyingStore: true + - Id: 908 + AegisName: Spawn + Name: Spawn + Type: Etc + Buy: 140 + Weight: 10 + Flags: + BuyingStore: true + - Id: 909 + AegisName: Jellopy + Name: Jellopy + Type: Etc + Buy: 6 + Weight: 10 + Flags: + BuyingStore: true + - Id: 910 + AegisName: Garlet + Name: Garlet + Type: Etc + Buy: 40 + Weight: 10 + Flags: + BuyingStore: true + - Id: 911 + AegisName: Scell + Name: Scell + Type: Etc + Buy: 160 + Weight: 10 + Flags: + BuyingStore: true + - Id: 912 + AegisName: Zargon + Name: Zargon + Type: Etc + Buy: 480 + Weight: 10 + Flags: + BuyingStore: true + - Id: 913 + AegisName: Tooth_Of_Bat + Name: Tooth of Bat + Type: Etc + Buy: 34 + Weight: 10 + Flags: + BuyingStore: true + - Id: 914 + AegisName: Fluff + Name: Fluff + Type: Etc + Buy: 8 + Weight: 10 + Flags: + BuyingStore: true + - Id: 915 + AegisName: Chrysalis + Name: Chrysalis + Type: Etc + Buy: 8 + Weight: 10 + Flags: + BuyingStore: true + - Id: 916 + AegisName: Feather_Of_Birds + Name: Feather of Birds + Type: Etc + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + - Id: 917 + AegisName: Talon + Name: Talon + Type: Etc + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + - Id: 918 + AegisName: Sticky_Webfoot + Name: Sticky Webfoot + Type: Etc + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + - Id: 919 + AegisName: Animal's_Skin + Name: Animal Skin + Type: Etc + Buy: 36 + Weight: 10 + Flags: + BuyingStore: true + - Id: 920 + AegisName: Claw_Of_Wolves + Name: Wolf Claw + Type: Etc + Buy: 58 + Weight: 10 + Flags: + BuyingStore: true + - Id: 921 + AegisName: Mushroom_Spore + Name: Mushroom Spore + Type: Etc + Buy: 36 + Weight: 10 + Flags: + BuyingStore: true + - Id: 922 + AegisName: Orcish_Cuspid + Name: Orc's Fang + Type: Etc + Buy: 220 + Weight: 10 + Flags: + BuyingStore: true + - Id: 923 + AegisName: Evil_Horn + Name: Evil Horn + Type: Etc + Buy: 1200 + Weight: 10 + Flags: + BuyingStore: true + - Id: 924 + AegisName: Powder_Of_Butterfly + Name: Powder of Butterfly + Type: Etc + Buy: 90 + Weight: 10 + Flags: + BuyingStore: true + - Id: 925 + AegisName: Bill_Of_Birds + Name: Bill of Birds + Type: Etc + Buy: 64 + Weight: 10 + Flags: + BuyingStore: true + - Id: 926 + AegisName: Scale_Of_Snakes + Name: Snake Scale + Type: Etc + Buy: 82 + Weight: 10 + Flags: + BuyingStore: true + - Id: 928 + AegisName: Insect_Feeler + Name: Insect Feeler + Type: Etc + Buy: 114 + Weight: 10 + Flags: + BuyingStore: true + - Id: 929 + AegisName: Immortal_Heart + Name: Immortal Heart + Type: Etc + Buy: 374 + Weight: 10 + Flags: + BuyingStore: true + - Id: 930 + AegisName: Rotten_Bandage + Name: Rotten Bandage + Type: Etc + Buy: 350 + Weight: 10 + Flags: + BuyingStore: true + - Id: 931 + AegisName: Orcish_Voucher + Name: Orcish Voucher + Type: Etc + Buy: 142 + Weight: 10 + Flags: + BuyingStore: true + - Id: 932 + AegisName: Skel_Bone + Name: Skel-Bone + Type: Etc + Buy: 232 + Weight: 10 + Flags: + BuyingStore: true + - Id: 934 + AegisName: Mementos + Name: Memento + Type: Etc + Buy: 600 + Weight: 10 + Flags: + BuyingStore: true + - Id: 935 + AegisName: Shell + Name: Shell + Type: Etc + Buy: 14 + Weight: 10 + Flags: + BuyingStore: true + - Id: 936 + AegisName: Scales_Shell + Name: Scale Shell + Type: Etc + Buy: 466 + Weight: 10 + Flags: + BuyingStore: true + - Id: 937 + AegisName: Posionous_Canine + Name: Venom Canine + Type: Etc + Buy: 148 + Weight: 10 + Flags: + BuyingStore: true + - Id: 938 + AegisName: Sticky_Mucus + Name: Sticky Mucus + Type: Etc + Buy: 70 + Weight: 10 + Flags: + BuyingStore: true + - Id: 939 + AegisName: Bee_Sting + Name: Bee Sting + Type: Etc + Buy: 32 + Weight: 10 + Flags: + BuyingStore: true + - Id: 940 + AegisName: Grasshopper's_Leg + Name: Grasshopper's Leg + Type: Etc + Buy: 36 + Weight: 10 + Flags: + BuyingStore: true + - Id: 941 + AegisName: Nose_Ring + Name: Nose Ring + Type: Etc + Buy: 568 + Weight: 10 + Flags: + BuyingStore: true + - Id: 942 + AegisName: Yoyo_Tail + Name: Yoyo Tail + Type: Etc + Buy: 114 + Weight: 10 + Flags: + BuyingStore: true + - Id: 943 + AegisName: Solid_Shell + Name: Solid Shell + Type: Etc + Buy: 448 + Weight: 10 + Flags: + BuyingStore: true + - Id: 944 + AegisName: Horseshoe + Name: Horseshoe + Type: Etc + Buy: 588 + Weight: 10 + Flags: + BuyingStore: true + - Id: 945 + AegisName: Raccoon_Leaf + Name: Raccoon Leaf + Type: Etc + Buy: 106 + Weight: 10 + Flags: + BuyingStore: true + - Id: 946 + AegisName: Snail's_Shell + Name: Snail's Shell + Type: Etc + Buy: 64 + Weight: 10 + Flags: + BuyingStore: true + - Id: 947 + AegisName: Horn + Name: Horn + Type: Etc + Buy: 116 + Weight: 10 + Flags: + BuyingStore: true + - Id: 948 + AegisName: Bear's_Foot + Name: Bear's Footskin + Type: Etc + Buy: 174 + Weight: 10 + Flags: + BuyingStore: true + - Id: 949 + AegisName: Feather + Name: Feather + Type: Etc + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + - Id: 950 + AegisName: Heart_Of_Mermaid + Name: Heart of Mermaid + Type: Etc + Buy: 264 + Weight: 10 + Flags: + BuyingStore: true + - Id: 951 + AegisName: Fin + Name: Fin + Type: Etc + Buy: 412 + Weight: 10 + Flags: + BuyingStore: true + - Id: 952 + AegisName: Cactus_Needle + Name: Cactus Needle + Type: Etc + Buy: 82 + Weight: 10 + Flags: + BuyingStore: true + - Id: 953 + AegisName: Stone_Heart + Name: Stone Heart + Type: Etc + Buy: 184 + Weight: 10 + Flags: + BuyingStore: true + - Id: 954 + AegisName: Shining_Scales + Name: Shining Scale + Type: Etc + Buy: 466 + Weight: 10 + Flags: + BuyingStore: true + - Id: 955 + AegisName: Worm_Peelings + Name: Worm Peeling + Type: Etc + Buy: 52 + Weight: 10 + Flags: + BuyingStore: true + - Id: 956 + AegisName: Gill + Name: Gill + Type: Etc + Buy: 342 + Weight: 10 + Flags: + BuyingStore: true + - Id: 957 + AegisName: Decayed_Nail + Name: Decayed Nail + Type: Etc + Buy: 82 + Weight: 10 + Flags: + BuyingStore: true + - Id: 958 + AegisName: Horrendous_Mouth + Name: Horrendous Mouth + Type: Etc + Buy: 390 + Weight: 10 + Flags: + BuyingStore: true + - Id: 959 + AegisName: Rotten_Scale + Name: Stinky Scale + Type: Etc + Buy: 168 + Weight: 10 + Flags: + BuyingStore: true + - Id: 960 + AegisName: Nipper + Name: Nipper + Type: Etc + Buy: 114 + Weight: 10 + Flags: + BuyingStore: true + - Id: 961 + AegisName: Conch + Name: Conch + Type: Etc + Buy: 158 + Weight: 10 + Flags: + BuyingStore: true + - Id: 962 + AegisName: Tentacle + Name: Tentacle + Type: Etc + Buy: 70 + Weight: 10 + Flags: + BuyingStore: true + - Id: 963 + AegisName: Sharp_Scale + Name: Sharp Scale + Type: Etc + Buy: 250 + Weight: 10 + Flags: + BuyingStore: true + - Id: 964 + AegisName: Crap_Shell + Name: Crab Shell + Type: Etc + Buy: 90 + Weight: 10 + Flags: + BuyingStore: true + - Id: 965 + AegisName: Clam_Shell + Name: Clam Shell + Type: Etc + Buy: 56 + Weight: 10 + Flags: + BuyingStore: true + - Id: 966 + AegisName: Flesh_Of_Clam + Name: Clam Flesh + Type: Etc + Buy: 158 + Weight: 10 + Flags: + BuyingStore: true + - Id: 967 + AegisName: Turtle_Shell + Name: Turtle Shell + Type: Etc + Buy: 680 + Weight: 10 + Flags: + BuyingStore: true + - Id: 968 + AegisName: Voucher_Of_Orcish_Hero + Name: Heroic Emblem + Type: Etc + Buy: 3000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 969 + AegisName: Gold + Name: Gold + Type: Etc + Buy: 200000 + Weight: 200 + Flags: + BuyingStore: true + - Id: 970 + AegisName: Alchol + Name: Alcohol + Type: Etc + Buy: 400 + Weight: 30 + Flags: + BuyingStore: true + - Id: 971 + AegisName: Detrimindexta + Name: Detrimindexta + Type: Etc + Buy: 400 + Weight: 30 + Flags: + BuyingStore: true + - Id: 972 + AegisName: Karvodailnirol + Name: Karvodailnirol + Type: Etc + Buy: 400 + Weight: 30 + Flags: + BuyingStore: true + - Id: 973 + AegisName: Counteragent + Name: Counteragent + Type: Etc + Buy: 800 + Weight: 70 + Flags: + BuyingStore: true + - Id: 974 + AegisName: Mixture + Name: Mixture + Type: Etc + Buy: 800 + Weight: 70 + Flags: + BuyingStore: true + - Id: 975 + AegisName: Scarlet_Dyestuffs + Name: Scarlet Dyestuffs + Type: Etc + Buy: 8000 + Weight: 150 + Flags: + BuyingStore: true + - Id: 976 + AegisName: Lemon_Dyestuffs + Name: Lemon Dyestuffs + Type: Etc + Buy: 8000 + Weight: 150 + Flags: + BuyingStore: true + - Id: 978 + AegisName: Cobaltblue_Dyestuffs + Name: Cobaltblue Dyestuffs + Type: Etc + Buy: 8000 + Weight: 150 + Flags: + BuyingStore: true + - Id: 979 + AegisName: Darkgreen_Dyestuffs + Name: Darkgreen Dyestuffs + Type: Etc + Buy: 8000 + Weight: 150 + Flags: + BuyingStore: true + - Id: 980 + AegisName: Orange_Dyestuffs + Name: Orange Dyestuffs + Type: Etc + Buy: 8000 + Weight: 150 + Flags: + BuyingStore: true + - Id: 981 + AegisName: Violet_Dyestuffs + Name: Violet Dyestuffs + Type: Etc + Buy: 8000 + Weight: 150 + Flags: + BuyingStore: true + - Id: 982 + AegisName: White_Dyestuffs + Name: White Dyestuffs + Type: Etc + Buy: 8000 + Weight: 150 + Flags: + BuyingStore: true + - Id: 983 + AegisName: Black_Dyestuffs + Name: Black Dyestuffs + Type: Etc + Buy: 8000 + Weight: 150 + Flags: + BuyingStore: true + - Id: 984 + AegisName: Oridecon + Name: Oridecon + Type: Etc + Buy: 1100 + Weight: 200 + Flags: + BuyingStore: true + - Id: 985 + AegisName: Elunium + Name: Elunium + Type: Etc + Buy: 1100 + Weight: 200 + Flags: + BuyingStore: true + - Id: 986 + AegisName: Anvil + Name: Anvil + Type: Etc + Buy: 30000 + Weight: 500 + Flags: + BuyingStore: true + - Id: 987 + AegisName: Oridecon_Anvil + Name: Oridecon Anvil + Type: Etc + Buy: 120000 + Weight: 700 + Flags: + BuyingStore: true + - Id: 988 + AegisName: Golden_Anvil + Name: Golden Anvil + Type: Etc + Buy: 300000 + Weight: 900 + Flags: + BuyingStore: true + - Id: 989 + AegisName: Emperium_Anvil + Name: Emperium Anvil + Type: Etc + Buy: 600000 + Weight: 1000 + Flags: + BuyingStore: true + - Id: 990 + AegisName: Boody_Red + Name: Red Blood + Type: Etc + Buy: 1000 + Weight: 50 + Flags: + BuyingStore: true + - Id: 991 + AegisName: Crystal_Blue + Name: Crystal Blue + Type: Etc + Buy: 1000 + Weight: 50 + Flags: + BuyingStore: true + - Id: 992 + AegisName: Wind_Of_Verdure + Name: Wind of Verdure + Type: Etc + Buy: 1000 + Weight: 50 + Flags: + BuyingStore: true + - Id: 993 + AegisName: Yellow_Live + Name: Green Live + Type: Etc + Buy: 1000 + Weight: 50 + Flags: + BuyingStore: true + - Id: 994 + AegisName: Flame_Heart + Name: Flame Heart + Type: Etc + Buy: 3000 + Weight: 300 + Flags: + BuyingStore: true + - Id: 995 + AegisName: Mistic_Frozen + Name: Mystic Frozen + Type: Etc + Buy: 3000 + Weight: 300 + Flags: + BuyingStore: true + - Id: 996 + AegisName: Rough_Wind + Name: Rough Wind + Type: Etc + Buy: 3000 + Weight: 300 + Flags: + BuyingStore: true + - Id: 997 + AegisName: Great_Nature + Name: Great Nature + Type: Etc + Buy: 3000 + Weight: 300 + Flags: + BuyingStore: true + - Id: 998 + AegisName: Iron + Name: Iron + Type: Etc + Buy: 100 + Weight: 50 + Flags: + BuyingStore: true + - Id: 999 + AegisName: Steel + Name: Steel + Type: Etc + Buy: 1000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 1000 + AegisName: Star_Crumb + Name: Star Crumb + Type: Etc + Buy: 4500 + Weight: 100 + Flags: + BuyingStore: true + - Id: 1001 + AegisName: Sparkling_Dust + Name: Star Dust + Type: Etc + Buy: 1500 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1002 + AegisName: Iron_Ore + Name: Iron Ore + Type: Etc + Buy: 50 + Weight: 150 + Flags: + BuyingStore: true + - Id: 1003 + AegisName: Coal + Name: Coal + Type: Etc + Buy: 500 + Weight: 50 + Flags: + BuyingStore: true + - Id: 1004 + AegisName: Patriotism_Marks + Name: Chivalry Emblem + Type: Etc + Buy: 2 + Weight: 100 + Flags: + BuyingStore: true + - Id: 1005 + AegisName: Hammer_Of_Blacksmith + Name: Hammer of Blacksmith + Type: Etc + Buy: 2 + Weight: 800 + Flags: + BuyingStore: true + - Id: 1006 + AegisName: Old_Magic_Book + Name: Old Magicbook + Type: Etc + Buy: 2 + Weight: 30 + Flags: + BuyingStore: true + - Id: 1007 + AegisName: Penetration + Name: Necklace of Wisdom + Type: Etc + Buy: 2 + Weight: 40 + Flags: + BuyingStore: true + - Id: 1008 + AegisName: Frozen_Heart + Name: Necklace of Oblivion + Type: Etc + Buy: 2 + Weight: 100 + Flags: + BuyingStore: true + - Id: 1009 + AegisName: Sacred_Marks + Name: Hand of God + Type: Etc + Buy: 2 + Weight: 20 + Flags: + BuyingStore: true + - Id: 1010 + AegisName: Phracon + Name: Phracon + Type: Etc + Buy: 200 + Weight: 200 + Flags: + BuyingStore: true + - Id: 1011 + AegisName: Emveretarcon + Name: Emveretarcon + Type: Etc + Buy: 1000 + Weight: 200 + Flags: + BuyingStore: true + - Id: 1012 + AegisName: Lizard_Scruff + Name: Frill + Type: Etc + Buy: 250 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1013 + AegisName: Colorful_Shell + Name: Rainbow Shell + Type: Etc + Buy: 90 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1014 + AegisName: Jaws_Of_Ant + Name: Ant Jaw + Type: Etc + Buy: 232 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1015 + AegisName: Thin_N'_Long_Tongue + Name: Tongue + Type: Etc + Buy: 528 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1016 + AegisName: Rat_Tail + Name: Rat Tail + Type: Etc + Buy: 52 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1017 + AegisName: Moustache_Of_Mole + Name: Mole Whiskers + Type: Etc + Buy: 106 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1018 + AegisName: Nail_Of_Mole + Name: Mole Claw + Type: Etc + Buy: 210 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1019 + AegisName: Wooden_Block + Name: Trunk + Type: Etc + Buy: 60 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1020 + AegisName: Long_Hair + Name: Black Hair + Type: Etc + Buy: 292 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1021 + AegisName: Dokkaebi_Horn + Name: Dokebi Horn + Type: Etc + Buy: 292 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1022 + AegisName: Fox_Tail + Name: Nine Tails + Type: Etc + Buy: 650 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1023 + AegisName: Fish_Tail + Name: Fish Tail + Type: Etc + Buy: 196 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1024 + AegisName: Chinese_Ink + Name: Squid Ink + Type: Etc + Buy: 264 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1025 + AegisName: Spiderweb + Name: Cobweb + Type: Etc + Buy: 184 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1026 + AegisName: Acorn + Name: Acorn + Type: Etc + Buy: 98 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1027 + AegisName: Porcupine_Spike + Name: Porcupine Quill + Type: Etc + Buy: 158 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1028 + AegisName: Wild_Boar's_Mane + Name: Mane + Type: Etc + Buy: 196 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1029 + AegisName: Tiger's_Skin + Name: Tiger Skin + Type: Etc + Buy: 548 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1030 + AegisName: Tiger_Footskin + Name: Tiger's Footskin + Type: Etc + Buy: 1500 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1031 + AegisName: Limb_Of_Mantis + Name: Mantis Scythe + Type: Etc + Buy: 196 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1032 + AegisName: Blossom_Of_Maneater + Name: Maneater Blossom + Type: Etc + Buy: 196 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1033 + AegisName: Root_Of_Maneater + Name: Maneater Root + Type: Etc + Buy: 208 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1034 + AegisName: Cobold_Hair + Name: Blue Hair + Type: Etc + Buy: 342 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1035 + AegisName: Dragon_Canine + Name: Dragon Canine + Type: Etc + Buy: 484 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1036 + AegisName: Dragon_Scale + Name: Dragon Scale + Type: Etc + Buy: 500 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1037 + AegisName: Dragon_Train + Name: Dragon Tail + Type: Etc + Buy: 1200 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1038 + AegisName: Petite_DiablOfs_Horn + Name: Little Evil Horn + Type: Etc + Buy: 528 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1039 + AegisName: Petite_DiablOfs_Wing + Name: Little Evil Wing + Type: Etc + Buy: 2000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1040 + AegisName: Elder_Pixie's_Beard + Name: Elder Pixie's Moustache + Type: Etc + Buy: 232 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1041 + AegisName: Lantern + Name: Lantern + Type: Etc + Buy: 250 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1042 + AegisName: Short_Leg + Name: Bug Leg + Type: Etc + Buy: 430 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1043 + AegisName: Nail_Of_Orc + Name: Orc Claw + Type: Etc + Buy: 168 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1044 + AegisName: Tooth_Of_ + Name: Zenorc's Fang + Type: Etc + Buy: 264 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1045 + AegisName: Sacred_Masque + Name: Cultish Masque + Type: Etc + Buy: 412 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1046 + AegisName: Tweezer + Name: Scorpion Nipper + Type: Etc + Buy: 614 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1047 + AegisName: Head_Of_Medusa + Name: Dead Medusa + Type: Etc + Buy: 548 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1048 + AegisName: Slender_Snake + Name: Horrendous Hair + Type: Etc + Buy: 800 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1049 + AegisName: Skirt_Of_Virgin + Name: Skirt of Virgin + Type: Etc + Buy: 1700 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1050 + AegisName: Tendon + Name: Tendon + Type: Etc + Buy: 220 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1051 + AegisName: Detonator + Name: Detonator + Type: Etc + Buy: 450 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1052 + AegisName: Single_Cell + Name: Single Cell + Type: Etc + Buy: 46 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1053 + AegisName: Tooth_Of_Ancient_Fish + Name: Ancient Tooth + Type: Etc + Buy: 548 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1054 + AegisName: Lip_Of_Ancient_Fish + Name: Ancient Lips + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1055 + AegisName: Earthworm_Peeling + Name: Earthworm Peeling + Type: Etc + Buy: 196 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1056 + AegisName: Grit + Name: Grit + Type: Etc + Buy: 306 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1057 + AegisName: Moth_Dust + Name: Moth Dust + Type: Etc + Buy: 138 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1058 + AegisName: Wing_Of_Moth + Name: Moth Wings + Type: Etc + Buy: 200 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1059 + AegisName: Transparent_Cloth + Name: Fabric + Type: Etc + Buy: 306 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1060 + AegisName: Golden_Hair + Name: Golden Hair + Type: Etc + Buy: 430 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1061 + AegisName: Starsand_Of_Witch + Name: Witched Starsand + Type: Etc + Buy: 484 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1062 + AegisName: Pumpkin_Head + Name: Jack o' Pumpkin + Type: Etc + Buy: 374 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1063 + AegisName: Sharpened_Cuspid + Name: Fang + Type: Etc + Buy: 680 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1064 + AegisName: Reins + Name: Reins + Type: Etc + Buy: 802 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1065 + AegisName: Booby_Trap + Name: Trap + Type: Etc + Buy: 100 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1066 + AegisName: Tree_Of_Archer_1 + Name: Fine-grained Trunk + Type: Etc + Buy: 2 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1067 + AegisName: Tree_Of_Archer_2 + Name: Solid Trunk + Type: Etc + Buy: 2 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1068 + AegisName: Tree_Of_Archer_3 + Name: Barren Trunk + Type: Etc + Buy: 2 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1069 + AegisName: Mushroom_Of_Thief_1 + Name: Orange Net Mushroom + Type: Etc + Buy: 2 + Weight: 10 + - Id: 1070 + AegisName: Mushroom_Of_Thief_2 + Name: Orange Gooey Mushroom + Type: Etc + Buy: 2 + Weight: 10 + - Id: 1071 + AegisName: Mage_Test_1 + Name: Unknown Test Tube + Type: Etc + Weight: 10 + - Id: 1072 + AegisName: Delivery_Message + Name: Delivery Message + Type: Etc + Weight: 10 + - Id: 1073 + AegisName: Merchant_Voucher_1 + Name: Voucher + Type: Etc + Weight: 10 + - Id: 1074 + AegisName: Merchant_Voucher_2 + Name: Voucher + Type: Etc + Weight: 10 + - Id: 1075 + AegisName: Merchant_Voucher_3 + Name: Voucher + Type: Etc + Weight: 10 + - Id: 1076 + AegisName: Merchant_Voucher_4 + Name: Voucher + Type: Etc + Weight: 10 + - Id: 1077 + AegisName: Merchant_Voucher_5 + Name: Voucher + Type: Etc + Weight: 10 + - Id: 1078 + AegisName: Merchant_Voucher_6 + Name: Voucher + Type: Etc + Weight: 10 + - Id: 1079 + AegisName: Merchant_Voucher_7 + Name: Voucher + Type: Etc + Weight: 10 + - Id: 1080 + AegisName: Merchant_Voucher_8 + Name: Voucher + Type: Etc + Weight: 10 + - Id: 1081 + AegisName: Merchant_Box_1 + Name: Delivery Box + Type: Etc + Weight: 10 + - Id: 1082 + AegisName: Merchant_Box_2 + Name: Delivery Box + Type: Etc + Weight: 10 + - Id: 1083 + AegisName: Merchant_Box_3 + Name: Delivery Box + Type: Etc + Weight: 10 + - Id: 1084 + AegisName: Kapra's_Pass + Name: Kafra Pass + Type: Etc + Weight: 10 + - Id: 1085 + AegisName: Mage_Test_2 + Name: Unknown Test Tube + Type: Etc + Weight: 10 + - Id: 1086 + AegisName: Mage_Test_3 + Name: Unknown Test Tube + Type: Etc + Weight: 10 + - Id: 1087 + AegisName: Mage_Test_4 + Name: Unknown Test Tube + Type: Etc + Weight: 10 + - Id: 1088 + AegisName: Morocc_Potion + Name: Morocc Solution + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 1089 + AegisName: Payon_Potion + Name: Payon Solution + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 1090 + AegisName: Mage_Test_Etc + Name: Unknown Test Tube + Type: Etc + Weight: 10 + - Id: 1091 + AegisName: Merchant_Box_Etc + Name: Delivery Box + Type: Etc + Weight: 10 + - Id: 1092 + AegisName: Empty_Cylinder + Name: Empty Test Tube + Type: Etc + Buy: 3 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1093 + AegisName: Empty_Potion + Name: Empty Potion Bottle + Type: Etc + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1094 + AegisName: Short_Daenggie + Name: Short Daenggie + Type: Etc + Buy: 278 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1095 + AegisName: Needle_Of_Alarm + Name: Needle of Alarm + Type: Etc + Buy: 546 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1096 + AegisName: Round_Shell + Name: Round Shell + Type: Etc + Buy: 780 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1097 + AegisName: Worn_Out_Page + Name: Worn Out Page + Type: Etc + Buy: 948 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1098 + AegisName: Manacles + Name: Manacles + Type: Etc + Buy: 658 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1099 + AegisName: Worn_Out_Prison_Uniform + Name: Worn-out Prison Uniform + Type: Etc + Buy: 680 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1750 + AegisName: Arrow + Name: Arrow + Type: Ammo + SubType: Arrow + Buy: 1 + Weight: 1 + Attack: 25 + Jobs: + Archer: true + Assassin: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Ammo: true + EquipLevelMin: 1 + - Id: 1751 + AegisName: Silver_Arrow + Name: Silver Arrow + Type: Ammo + SubType: Arrow + Buy: 3 + Weight: 2 + Attack: 30 + Jobs: + Archer: true + Assassin: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Holy; + - Id: 1752 + AegisName: Fire_Arrow + Name: Fire Arrow + Type: Ammo + SubType: Arrow + Buy: 3 + Weight: 2 + Attack: 30 + Jobs: + Archer: true + Assassin: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Fire; + - Id: 1753 + AegisName: Steel_Arrow + Name: Steel Arrow + Type: Ammo + SubType: Arrow + Buy: 4 + Weight: 2 + Attack: 40 + Jobs: + Archer: true + Assassin: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Ammo: true + EquipLevelMin: 1 + - Id: 1754 + AegisName: Crystal_Arrow + Name: Crystal Arrow + Type: Ammo + SubType: Arrow + Buy: 3 + Weight: 2 + Attack: 30 + Jobs: + Archer: true + Assassin: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Water; + - Id: 1755 + AegisName: Arrow_Of_Wind + Name: Arrow of Wind + Type: Ammo + SubType: Arrow + Buy: 3 + Weight: 2 + Attack: 30 + Jobs: + Archer: true + Assassin: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Wind; + - Id: 1756 + AegisName: Stone_Arrow + Name: Stone Arrow + Type: Ammo + SubType: Arrow + Buy: 3 + Weight: 2 + Attack: 30 + Jobs: + Archer: true + Assassin: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Earth; + - Id: 1757 + AegisName: Immatrial_Arrow + Name: Immaterial Arrow + Type: Ammo + SubType: Arrow + Buy: 3 + Weight: 1 + Attack: 30 + Jobs: + Archer: true + Assassin: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Ghost; + - Id: 1758 + AegisName: Stun_Arrow + Name: Stun Arrow + Type: Ammo + SubType: Arrow + Buy: 10 + Weight: 3 + Attack: 1 + Jobs: + Archer: true + Assassin: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus2 bAddEff,Eff_Stun,1000; + - Id: 1759 + AegisName: Freezing_Arrow + Name: Frozen Arrow + Type: Ammo + SubType: Arrow + Buy: 10 + Weight: 3 + Attack: 1 + Jobs: + Archer: true + Assassin: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Water; bonus2 bAddEff,Eff_Freeze,1000; + - Id: 1760 + AegisName: Flash_Arrow + Name: Flash Arrow + Type: Ammo + SubType: Arrow + Buy: 10 + Weight: 3 + Attack: 1 + Jobs: + Archer: true + Assassin: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus2 bAddEff,Eff_Blind,1000; + - Id: 1761 + AegisName: Curse_Arrow + Name: Cursed Arrow + Type: Ammo + SubType: Arrow + Buy: 10 + Weight: 3 + Attack: 1 + Jobs: + Archer: true + Assassin: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus2 bAddEff,Eff_Curse,1000; + - Id: 1762 + AegisName: Rusty_Arrow + Name: Rusty Arrow + Type: Ammo + SubType: Arrow + Buy: 3 + Weight: 2 + Attack: 30 + Jobs: + Archer: true + Assassin: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Poison; + - Id: 1763 + AegisName: Poison_Arrow + Name: Poison Arrow + Type: Ammo + SubType: Arrow + Buy: 10 + Weight: 3 + Attack: 1 + Jobs: + Archer: true + Assassin: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,2000; + - Id: 1764 + AegisName: Incisive_Arrow + Name: Sharp Arrow + Type: Ammo + SubType: Arrow + Buy: 20 + Weight: 3 + Attack: 10 + Jobs: + Archer: true + Assassin: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus bCriticalLong,20; + - Id: 1765 + AegisName: Oridecon_Arrow + Name: Oridecon Arrow + Type: Ammo + SubType: Arrow + Buy: 30 + Weight: 3 + Attack: 50 + Jobs: + Archer: true + Assassin: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Ammo: true + EquipLevelMin: 1 + - Id: 1766 + AegisName: Arrow_Of_Counter_Evil + Name: Arrow of Counter Evil + Type: Ammo + SubType: Arrow + Buy: 40 + Weight: 3 + Attack: 50 + Jobs: + Archer: true + Assassin: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Holy; + - Id: 1767 + AegisName: Arrow_Of_Shadow + Name: Arrow of Shadow + Type: Ammo + SubType: Arrow + Buy: 3 + Weight: 2 + Attack: 30 + Jobs: + Archer: true + Assassin: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Dark; + - Id: 1768 + AegisName: Sleep_Arrow + Name: Sleep Arrow + Type: Ammo + SubType: Arrow + Buy: 10 + Weight: 3 + Attack: 1 + Jobs: + Archer: true + Assassin: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus2 bAddEff,Eff_Sleep,2000; + - Id: 1769 + AegisName: Silence_Arrow + Name: Mute Arrow + Type: Ammo + SubType: Arrow + Buy: 10 + Weight: 3 + Attack: 1 + Jobs: + Archer: true + Assassin: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus2 bAddEff,Eff_Silence,1000; + - Id: 1770 + AegisName: Iron_Arrow + Name: Iron Arrow + Type: Ammo + SubType: Arrow + Buy: 2 + Weight: 1 + Attack: 30 + Jobs: + Archer: true + Assassin: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Ammo: true + EquipLevelMin: 1 + - Id: 1771 + AegisName: Venom_Knife + Name: Venom Knife + Type: Ammo + SubType: Dagger + Buy: 50 + Weight: 5 + Attack: 30 + Jobs: + Assassin: true + Locations: + Ammo: true + EquipLevelMin: 1 + - Id: 1772 + AegisName: Holy_Arrow + Name: Holy Arrow + Type: Ammo + SubType: Arrow + Buy: 3 + Weight: 2 + Attack: 50 + Jobs: + Archer: true + Assassin: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Holy; bonus2 bAddRace,RC_Demon,5; + - Id: 4001 + AegisName: Poring_Card + Name: Poring Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bLuk,2; bonus bFlee2,1; + - Id: 4002 + AegisName: Fabre_Card + Name: Fabre Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bVit,1; bonus bMaxHP,100; + - Id: 4003 + AegisName: Pupa_Card + Name: Pupa Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bMaxHP,700; + - Id: 4004 + AegisName: Drops_Card + Name: Drops Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bDex,1; bonus bHit,3; + - Id: 4005 + AegisName: Poring__Card + Name: Santa Poring Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEle,Ele_Dark,20; + - Id: 4006 + AegisName: Lunatic_Card + Name: Lunatic Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bLuk,1; bonus bCritical,1; bonus bFlee2,1; + - Id: 4007 + AegisName: Pecopeco_Egg_Card + Name: Peco Peco Egg Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddRace,RC_Formless,20; + - Id: 4008 + AegisName: Picky_Card + Name: Picky Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bStr,1; bonus bBaseAtk,10; + - Id: 4009 + AegisName: Chonchon_Card + Name: Chonchon Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bAgi,1; bonus bFlee,2; + - Id: 4010 + AegisName: Wilow_Card + Name: Willow Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bMaxSP,80; + - Id: 4011 + AegisName: Picky__Card + Name: Picky Egg Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bVit,1; bonus bMaxHP,100; + - Id: 4012 + AegisName: Thief_Bug_Egg_Card + Name: Thief Bug Egg Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bMaxHP,400; + - Id: 4013 + AegisName: Andre_Egg_Card + Name: Andre Egg Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bMaxHPrate,5; + - Id: 4014 + AegisName: Roda_Frog_Card + Name: Roda Frog Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bMaxHP,400; bonus bMaxSP,50; + - Id: 4015 + AegisName: Condor_Card + Name: Condor Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bFlee,10; + - Id: 4016 + AegisName: Thief_Bug_Card + Name: Thief Bug Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bAgi,1; + - Id: 4017 + AegisName: Savage_Babe_Card + Name: Savage Babe Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEff,Eff_Stun,500; + - Id: 4018 + AegisName: Andre_Larva_Card + Name: Andre Larva Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bInt,1; bonus bMaxSP,10; + - Id: 4019 + AegisName: Hornet_Card + Name: Hornet Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bStr,1; bonus bBaseAtk,3; + - Id: 4020 + AegisName: Farmiliar_Card + Name: Familiar Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEff,Eff_Blind,500; bonus bBaseAtk,5; + - Id: 4021 + AegisName: Rocker_Card + Name: Rocker Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bDex,1; bonus bBaseAtk,5; + - Id: 4022 + AegisName: Spore_Card + Name: Spore Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bVit,2; + - Id: 4023 + AegisName: Desert_Wolf_Babe_Card + Name: Baby Desert Wolf Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bInt,1; + - Id: 4024 + AegisName: Plankton_Card + Name: Plankton Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEff,Eff_Sleep,500; bonus bBaseAtk,5; + - Id: 4025 + AegisName: Skeleton_Card + Name: Skeleton Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,10; bonus2 bAddEff,Eff_Stun,200; + - Id: 4026 + AegisName: Thief_Bug_Female_Card + Name: Female Thief Bug Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bAgi,1; bonus bFlee,1; + - Id: 4027 + AegisName: Kukre_Card + Name: Kukre Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bAgi,2; + - Id: 4028 + AegisName: Tarou_Card + Name: Tarou Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bStr,2; + - Id: 4029 + AegisName: Wolf_Card + Name: Wolf Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,15; bonus bCritical,1; + - Id: 4030 + AegisName: Mandragora_Card + Name: Mandragora Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEle,Ele_Wind,20; + - Id: 4031 + AegisName: Pecopeco_Card + Name: Peco Peco Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bMaxHPrate,10; + - Id: 4032 + AegisName: Ambernite_Card + Name: Ambernite Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bDef,2; + - Id: 4033 + AegisName: Poporing_Card + Name: Poporing Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + skill "TF_DETOXIFY",1; + - Id: 4034 + AegisName: Worm_Tail_Card + Name: Wormtail Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bDex,2; + - Id: 4035 + AegisName: Hydra_Card + Name: Hydra Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; + - Id: 4036 + AegisName: Muka_Card + Name: Muka Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bHPrecovRate,10; + - Id: 4037 + AegisName: Snake_Card + Name: Snake Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEff,Eff_Poison,500; bonus bBaseAtk,5; + - Id: 4038 + AegisName: Zombie_Card + Name: Zombie Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bHPrecovRate,20; + - Id: 4039 + AegisName: Stainer_Card + Name: Stainer Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus2 bResEff,Eff_Silence,2000; bonus bDef,1; + - Id: 4040 + AegisName: Creamy_Card + Name: Creamy Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + skill "AL_TELEPORT",1; + - Id: 4041 + AegisName: Coco_Card + Name: Coco Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus2 bResEff,Eff_Sleep,2000; bonus bDef,1; + - Id: 4042 + AegisName: Steel_Chonchon_Card + Name: Steel Chonchon Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubEle,Ele_Wind,10; bonus bDef,2; + - Id: 4043 + AegisName: Andre_Card + Name: Andre Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,20; + - Id: 4044 + AegisName: Smokie_Card + Name: Smokie Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + skill "TF_HIDING",1; + UnEquipScript: | + sc_end SC_HIDING; + - Id: 4045 + AegisName: Horn_Card + Name: Horn Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bLongAtkDef,35; + - Id: 4046 + AegisName: Martin_Card + Name: Martin Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus2 bResEff,Eff_Blind,2000; bonus bDef,1; + - Id: 4047 + AegisName: Ghostring_Card + Name: Ghostring Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bDefEle,Ele_Ghost; bonus bHPrecovRate,-25; + - Id: 4048 + AegisName: Poison_Spore_Card + Name: Poison Spore Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + skill "TF_POISON",3; + - Id: 4049 + AegisName: Vadon_Card + Name: Vadon Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEle,Ele_Fire,20; + - Id: 4050 + AegisName: Thief_Bug_Male_Card + Name: Male Thief Bug Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bAgi,2; + - Id: 4051 + AegisName: Yoyo_Card + Name: Yoyo Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bFlee2,5; bonus bAgi,1; + - Id: 4052 + AegisName: Elder_Wilow_Card + Name: Elder Willow Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bInt,2; + - Id: 4053 + AegisName: Vitata_Card + Name: Vitata Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + skill "AL_HEAL",1; bonus bUseSPrate,25; + - Id: 4054 + AegisName: Angeling_Card + Name: Angeling Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bDefEle,Ele_Holy; + - Id: 4055 + AegisName: Marina_Card + Name: Marina Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEff,Eff_Freeze,500; bonus bBaseAtk,5; + - Id: 4056 + AegisName: Dustiness_Card + Name: Dustiness Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubEle,Ele_Wind,30; bonus bFlee,5; + - Id: 4057 + AegisName: Metaller_Card + Name: Metaller Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEff,Eff_Silence,500; bonus bBaseAtk,5; + - Id: 4058 + AegisName: Thara_Frog_Card + Name: Thara Frog Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubRace,RC_DemiHuman,30; bonus2 bSubRace,RC_Player_Human,30; + - Id: 4059 + AegisName: Soldier_Andre_Card + Name: Soldier Andre Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubRace,RC_Plant,30; + - Id: 4060 + AegisName: Goblin_Card + Name: Goblin Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddRace,RC_Brute,20; bonus2 bAddRace,RC_Player_Doram,20; + - Id: 4061 + AegisName: Cornutus_Card + Name: Cornutus Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bUnbreakableArmor; bonus bDef,1; + - Id: 4062 + AegisName: Anacondaq_Card + Name: Anacondaq Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEle,Ele_Poison,20; + - Id: 4063 + AegisName: Caramel_Card + Name: Caramel Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddRace,RC_Insect,20; + - Id: 4064 + AegisName: Zerom_Card + Name: Zerom Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bDex,3; + - Id: 4065 + AegisName: Kaho_Card + Name: Kaho Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEle,Ele_Earth,20; + - Id: 4066 + AegisName: Orc_Warrior_Card + Name: Orc Warrior Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubRace,RC_Brute,30; bonus2 bSubRace,RC_Player_Doram,30; + - Id: 4067 + AegisName: Megalodon_Card + Name: Megalodon Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bResEff,Eff_Freeze,2000; bonus bDef,1; + - Id: 4068 + AegisName: Scorpion_Card + Name: Scorpion Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddRace,RC_Plant,20; + - Id: 4069 + AegisName: Drainliar_Card + Name: Drainliar Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEle,Ele_Water,20; + - Id: 4070 + AegisName: Eggyra_Card + Name: Eggyra Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bSPrecovRate,15; + - Id: 4071 + AegisName: Orc_Zombie_Card + Name: Orc Zombie Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubEle,Ele_Undead,30; bonus bFlee,5; + - Id: 4072 + AegisName: Golem_Card + Name: Golem Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bUnbreakableWeapon; bonus bBaseAtk,5; + - Id: 4073 + AegisName: Pirate_Skel_Card + Name: Pirate Skeleton Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + skill "MC_DISCOUNT",5; + - Id: 4074 + AegisName: BigFoot_Card + Name: Bigfoot Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubRace,RC_Insect,30; + - Id: 4075 + AegisName: Argos_Card + Name: Argos Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bResEff,Eff_Stone,2000; bonus bDef,1; + - Id: 4076 + AegisName: Magnolia_Card + Name: Magnolia Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEff,Eff_Curse,500; bonus bBaseAtk,5; + - Id: 4077 + AegisName: Phen_Card + Name: Phen Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bNoCastCancel; bonus bCastrate,25; + - Id: 4078 + AegisName: Savage_Card + Name: Savage Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bVit,3; + - Id: 4079 + AegisName: Mantis_Card + Name: Mantis Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bStr,3; + - Id: 4080 + AegisName: Flora_Card + Name: Flora Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddRace,RC_Fish,20; + - Id: 4081 + AegisName: Hode_Card + Name: Hode Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubEle,Ele_Earth,30; bonus bFlee,5; + - Id: 4082 + AegisName: Desert_Wolf_Card + Name: Desert Wolf Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddSize,Size_Small,15; bonus bBaseAtk,5; + - Id: 4083 + AegisName: Rafflesia_Card + Name: Rafflesia Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubRace,RC_Fish,30; + - Id: 4084 + AegisName: Marine_Sphere_Card + Name: Marine Sphere Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + skill "SM_MAGNUM",3; + - Id: 4085 + AegisName: Orc_Skeleton_Card + Name: Orc Skeleton Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEle,Ele_Holy,20; + - Id: 4086 + AegisName: Soldier_Skeleton_Card + Name: Soldier Skeleton Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bCritical,9; + - Id: 4087 + AegisName: Giearth_Card + Name: Giearth Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus2 bResEff,Eff_Confusion,10000; bonus2 bSubEle,Ele_Earth,15; + - Id: 4088 + AegisName: Frilldora_Card + Name: Frilldora Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + skill "AS_CLOAKING",1; + UnEquipScript: | + sc_end SC_CLOAKING; + - Id: 4089 + AegisName: Sword_Fish_Card + Name: Swordfish Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bDefEle,Ele_Water; bonus bDef,1; + - Id: 4090 + AegisName: Munak_Card + Name: Munak Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bResEff,Eff_Stone,1500; bonus2 bSubEle,Ele_Earth,5; bonus bDef,1; + - Id: 4091 + AegisName: Kobold_Card + Name: Kobold Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bStr,1; bonus bCritical,4; + - Id: 4092 + AegisName: Skel_Worker_Card + Name: Skeleton Worker Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddSize,Size_Medium,15; bonus bBaseAtk,5; + - Id: 4093 + AegisName: Obeaune_Card + Name: Obeaune Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + skill "AL_CURE",1; + - Id: 4094 + AegisName: Archer_Skeleton_Card + Name: Archer Skeleton Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bLongAtkRate,10; + - Id: 4095 + AegisName: Marse_Card + Name: Marse Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubEle,Ele_Water,30; bonus bFlee,5; + - Id: 4096 + AegisName: Zenorc_Card + Name: Zenorc Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEff,Eff_Poison,400; bonus bBaseAtk,10; + - Id: 4097 + AegisName: Matyr_Card + Name: Matyr Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bMaxHPrate,10; bonus bAgi,1; + - Id: 4098 + AegisName: Dokebi_Card + Name: Dokebi Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bDefEle,Ele_Wind; bonus bDef,1; + - Id: 4099 + AegisName: Pasana_Card + Name: Pasana Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bDefEle,Ele_Fire; bonus bDef,1; + - Id: 4100 + AegisName: Sohee_Card + Name: Sohee Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bMaxSPrate,15; bonus bSPrecovRate,3; + - Id: 4101 + AegisName: Sand_Man_Card + Name: Sandman Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bDefEle,Ele_Earth; bonus bDef,1; + - Id: 4102 + AegisName: Whisper_Card + Name: Whisper Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bFlee,20; bonus2 bSubEle,Ele_Ghost,-50; + - Id: 4103 + AegisName: Horong_Card + Name: Horong Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + skill "MG_SIGHT",1; + UnEquipScript: | + sc_end SC_SIGHT; + - Id: 4104 + AegisName: Requiem_Card + Name: Requiem Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEff,Eff_Confusion,500; + - Id: 4105 + AegisName: Marc_Card + Name: Marc Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubEle,Ele_Water,5; bonus2 bResEff,Eff_Freeze,10000; + - Id: 4106 + AegisName: Mummy_Card + Name: Mummy Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bHit,20; + - Id: 4107 + AegisName: Verit_Card + Name: Verit Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bMaxHPrate,8; bonus bMaxSPrate,8; + - Id: 4108 + AegisName: Myst_Card + Name: Myst Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubEle,Ele_Poison,30; bonus bFlee,5; + - Id: 4109 + AegisName: Jakk_Card + Name: Jakk Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubEle,Ele_Fire,30; bonus bFlee,5; + - Id: 4110 + AegisName: Ghoul_Card + Name: Ghoul Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus2 bResEff,Eff_Poison,2000; bonus bDef,1; + - Id: 4111 + AegisName: Strouf_Card + Name: Strouf Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddRace,RC_Demon,20; + - Id: 4112 + AegisName: Marduk_Card + Name: Marduk Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus2 bResEff,Eff_Silence,10000; + - Id: 4113 + AegisName: Marionette_Card + Name: Marionette Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubEle,Ele_Ghost,30; bonus bFlee,5; + - Id: 4114 + AegisName: Argiope_Card + Name: Argiope Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bDefEle,Ele_Poison; bonus bDef,1; + - Id: 4115 + AegisName: Hunter_Fly_Card + Name: Hunter Fly Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bHPDrainRate,30,15; + - Id: 4116 + AegisName: Isis_Card + Name: Isis Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubEle,Ele_Dark,30; bonus bFlee,5; + - Id: 4117 + AegisName: Side_Winder_Card + Name: Sidewinder Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + skill "TF_DOUBLE",1; bonus bDoubleRate,5; + - Id: 4118 + AegisName: Petit_Card + Name: Earth Petite Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddRace,RC_Dragon,20; + - Id: 4119 + AegisName: Bathory_Card + Name: Bathory Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bDefEle,Ele_Dark; + - Id: 4120 + AegisName: Petit__Card + Name: Sky Petite Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubRace,RC_Dragon,30; + - Id: 4121 + AegisName: Phreeoni_Card + Name: Phreeoni Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bHit,100; + - Id: 4122 + AegisName: Deviruchi_Card + Name: Deviruchi Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bStr,1; bonus2 bResEff,Eff_Blind,10000; + - Id: 4123 + AegisName: Eddga_Card + Name: Eddga Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bMaxHPrate,-25; bonus bNoWalkDelay; + - Id: 4124 + AegisName: Medusa_Card + Name: Medusa Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubRace,RC_Demon,15; bonus2 bResEff,Eff_Stone,10000; + - Id: 4125 + AegisName: Deviace_Card + Name: Deviace Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddRace,RC_DemiHuman,7; bonus2 bAddRace,RC_Player_Human,7; bonus2 bAddRace,RC_Brute,7; bonus2 bAddRace,RC_Player_Doram,7; bonus2 bAddRace,RC_Plant,7; bonus2 bAddRace,RC_Insect,7; + - Id: 4126 + AegisName: Minorous_Card + Name: Minorous Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddSize,Size_Large,15; bonus bBaseAtk,5; + - Id: 4127 + AegisName: Nightmare_Card + Name: Nightmare Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus2 bResEff,Eff_Sleep,10000; bonus bAgi,1; + - Id: 4128 + AegisName: Golden_Bug_Card + Name: Golden Thief Bug Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bNoMagicDamage,100; bonus bUseSPrate,100; + - Id: 4129 + AegisName: Baphomet__Card + Name: Bapho Jr. Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bAgi,3; bonus bCritical,1; + - Id: 4130 + AegisName: Scorpion_King_Card + Name: Scorpion King Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEle,Ele_Undead,20; + - Id: 4131 + AegisName: Moonlight_Flower_Card + Name: Moonlight Flower Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bSpeedRate,25; + - Id: 4132 + AegisName: Mistress_Card + Name: Mistress Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bNoGemStone; bonus bUseSPrate,25; + - Id: 4133 + AegisName: Daydric_Card + Name: Raydric Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubEle,Ele_Neutral,20; + - Id: 4134 + AegisName: Dracula_Card + Name: Dracula Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSPDrainRate,100,5; + - Id: 4135 + AegisName: Orc_Load_Card + Name: Orc Lord Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bShortWeaponDamageReturn,30; + - Id: 4136 + AegisName: Khalitzburg_Card + Name: Khalitzburg Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubRace,RC_Demon,30; + - Id: 4137 + AegisName: Drake_Card + Name: Drake Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bNoSizeFix; + - Id: 4138 + AegisName: Anubis_Card + Name: Anubis Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubRace,RC_Angel,30; + - Id: 4139 + AegisName: Joker_Card + Name: Joker Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + skill "TF_STEAL",1; + - Id: 4140 + AegisName: Knight_Of_Abyss_Card + Name: Abysmal Knight Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddClass,Class_Boss,25; + - Id: 4141 + AegisName: Evil_Druid_Card + Name: Evil Druid Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bDefEle,Ele_Undead; bonus bInt,1; bonus bDef,1; + - Id: 4142 + AegisName: Doppelganger_Card + Name: Doppelganger Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bAspdRate,10; + - Id: 4143 + AegisName: Orc_Hero_Card + Name: Orc Hero Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bVit,3; bonus2 bResEff,Eff_Stun,10000; + - Id: 4144 + AegisName: Osiris_Card + Name: Osiris Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bRestartFullRecover; + - Id: 4145 + AegisName: Berzebub_Card + Name: Berzebub Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bCastrate,-30; + - Id: 4146 + AegisName: Maya_Card + Name: Maya Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bMagicDamageReturn,50; + - Id: 4147 + AegisName: Baphomet_Card + Name: Baphomet Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bHit,-10; bonus bSplashRange,1; + - Id: 4148 + AegisName: Pharaoh_Card + Name: Pharaoh Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bUseSPrate,-30; + - Id: 4149 + AegisName: Gargoyle_Card + Name: Gargoyle Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus3 bAddMonsterDropItem,12028,RC_Insect,100; + - Id: 4150 + AegisName: Goat_Card + Name: Goat Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + if(getrefine()<6) { bonus bDef,2; bonus bMdef,5; } + - Id: 4151 + AegisName: Gajomart_Card + Name: Gajomart Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubRace,RC_Plant,-20; bonus2 bExpAddRace,RC_Plant,10; + - Id: 4152 + AegisName: Galapago_Card + Name: Galapago Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddItemGroupHealRate,IG_Juice,50; bonus3 bAddMonsterDropItem,531,RC_Insect,300; bonus3 bAddMonsterDropItem,532,RC_Insect,300; bonus3 bAddMonsterDropItem,534,RC_Insect,300; + - Id: 4153 + AegisName: Crab_Card + Name: Crab Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,5; bonus2 bAddDamageClass,1266,30; + - Id: 4154 + AegisName: Rice_Cake_Boy_Card + Name: Dumpling Child Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddItemGroupHealRate,IG_Candy,50; bonus3 bAddMonsterDropItem,529,RC_DemiHuman,300; bonus3 bAddMonsterDropItem,530,RC_DemiHuman,100; + - Id: 4155 + AegisName: Goblin_Leader_Card + Name: Goblin Leader Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddRace2,RC2_Goblin,30; + - Id: 4156 + AegisName: Steam_Goblin_Card + Name: Goblin Steamrider Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Formless,7; + - Id: 4157 + AegisName: Goblin_Archer_Card + Name: Goblin Archer Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Undead,7; + - Id: 4158 + AegisName: Flying_Deleter_Card + Name: Sky Deleter Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bHPrecovRate,-100; bonus bHPGainValue,100; + - Id: 4159 + AegisName: Nine_Tail_Card + Name: Nine Tail Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bAgi,2; if(getrefine()>8) bonus bFlee,20; + - Id: 4160 + AegisName: Antique_Firelock_Card + Name: Firelock Soldier Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bStr,2; if(getrefine()>8) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; } + - Id: 4161 + AegisName: Grand_Peco_Card + Name: Grand Peco Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpellWhenHit,"PR_GLORIA",1,50; + - Id: 4162 + AegisName: Grizzly_Card + Name: Grizzly Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEffWhenHit,Eff_Blind,300; + - Id: 4163 + AegisName: Gryphon_Card + Name: Gryphon Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bFlee,2; bonus bCritical,7; if(BaseClass==Job_Swordman) bonus3 bAutoSpell,"KN_BOWLINGBASH",5,10; + - Id: 4164 + AegisName: Gullinbursti_Card + Name: Gullinbursti Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubRace,RC_Fish,-20; bonus2 bExpAddRace,RC_Fish,10; + - Id: 4165 + AegisName: Gig_Card + Name: Gig Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSPGainRace,RC_Insect,5; + UnEquipScript: | + heal 0,-5; + - Id: 4166 + AegisName: Nightmare_Terror_Card + Name: Nightmare Terror Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEffWhenHit,Eff_Curse,300; + - Id: 4167 + AegisName: Neraid_Card + Name: Nereid Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSPGainRace,RC_Brute,5; bonus2 bSPGainRace,RC_Player_Doram,5; + UnEquipScript: | + heal 0,-5; + - Id: 4168 + AegisName: Dark_Lord_Card + Name: Dark Lord Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpellWhenHit,"WZ_METEOR",5,100; + - Id: 4169 + AegisName: Dark_Illusion_Card + Name: Dark Illusion Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bMaxHPrate,-10; bonus bMaxSPrate,-10; bonus bCastrate,-10; + - Id: 4170 + AegisName: Dark_Frame_Card + Name: Dark Frame Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEffWhenHit,Eff_Stone,600; + - Id: 4171 + AegisName: Dark_Priest_Card + Name: Dark Priest Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSPVanishRate,50,10; if(BaseJob==Job_Sage) bonus bSPDrainValue,1; + - Id: 4172 + AegisName: The_Paper_Card + Name: The Paper Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bCritAtkRate,20; bonus bSPDrainValue,-1; + - Id: 4173 + AegisName: Demon_Pungus_Card + Name: Demon Pungus Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEffWhenHit,Eff_Sleep,600; + - Id: 4174 + AegisName: Deviling_Card + Name: Deviling Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + 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; + - Id: 4175 + AegisName: Poison_Toad_Card + Name: Poisonous Toad Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpell,"TF_POISON",1,20; bonus2 bAddSkillBlow,52,5; + - Id: 4176 + AegisName: Dullahan_Card + Name: Dullahan Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Dragon,7; + - Id: 4177 + AegisName: Dryad_Card + Name: Dryad Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus3 bAddMonsterDropItem,993,RC_Plant,100; bonus2 bSubEle,Ele_Earth,10; + - Id: 4178 + AegisName: Dragon_Tail_Card + Name: Dragon Tail Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bAgi,1; bonus bFlee,10; bonus2 bSkillAtk,"AC_DOUBLE",5; bonus2 bSkillAtk,"AC_SHOWER",5; + - Id: 4179 + AegisName: Dragon_Fly_Card + Name: Dragon Fly Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bAgi,1; + - Id: 4180 + AegisName: Driller_Card + Name: Driller Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSPGainRace,RC_Dragon,5; + UnEquipScript: | + heal 0,-5; + - Id: 4181 + AegisName: Disguise_Card + Name: Disguise Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEffWhenHit,Eff_Silence,300+600*(readparam(bVit)>=77); + - Id: 4182 + AegisName: Diabolic_Card + Name: Diabolic Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSPGainRace,RC_Demon,5; + UnEquipScript: | + heal 0,-5; + - Id: 4183 + AegisName: Vagabond_Wolf_Card + Name: Vagabond Wolf Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bStr,1; + - Id: 4184 + AegisName: Lava_Golem_Card + Name: Lava Golem Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddRace2,RC2_Golem,30; + - Id: 4185 + AegisName: Rideword_Card + Name: Rideword Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bInt,1; if(BaseClass==Job_Acolyte) { bonus bInt,1; bonus bMdef,1; } + - Id: 4186 + AegisName: Raggler_Card + Name: Raggler Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bStr,1; bonus bVit,1; + - Id: 4187 + AegisName: Raydric_Archer_Card + Name: Raydric Archer Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus3 bAddMonsterDropItem,12030,RC_Demon,100; + - Id: 4188 + AegisName: Leib_Olmai_Card + Name: Leib Olmai Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubEle,Ele_Fire,10; bonus3 bAddMonsterDropItem,990,RC_Brute,100; + - Id: 4189 + AegisName: Wraith_Dead_Card + Name: Wraith Dead Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEffWhenHit,Eff_Curse,600; + - Id: 4190 + AegisName: Wraith_Card + Name: Wraith Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus3 bAddMonsterDropItem,12027,RC_Undead,100; + - Id: 4191 + AegisName: Loli_Ruri_Card + Name: Loli Ruri Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpellWhenHit,"AL_HEAL",3,50; + - Id: 4192 + AegisName: Rotar_Zairo_Card + Name: Rotar Zairo Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Fish,7; + - Id: 4193 + AegisName: Lude_Card + Name: Lude Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + if(BaseJob==Job_Novice||BaseJob==Job_SuperNovice) bonus3 bAutoSpellWhenHit,"SM_ENDURE",1,200; + - Id: 4194 + AegisName: Rybio_Card + Name: Rybio Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEffWhenHit,Eff_Stun,300+600*(readparam(bDex)>=77); + - Id: 4195 + AegisName: Leaf_Cat_Card + Name: Leaf Cat Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubEle,Ele_Water,10; bonus3 bAddMonsterDropItem,991,RC_Fish,100; + - Id: 4196 + AegisName: Marin_Card + Name: Marin Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddMonsterDropItem,909,2000; bonus2 bAddMonsterDropItem,7126,10; + - Id: 4197 + AegisName: Mastering_Card + Name: Mastering Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bLuk,1; + - Id: 4198 + AegisName: Maya_Puple_Card + Name: Maya Purple Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bIntravision; + - Id: 4199 + AegisName: Merman_Card + Name: Merman Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bHPrecovRate,10; bonus bSPrecovRate,10; + - Id: 4200 + AegisName: Megalith_Card + Name: Megalith Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + if(getrefine()<6) bonus bMdef,7; + - Id: 4201 + AegisName: Majoruros_Card + Name: Majoruros Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEffWhenHit,Eff_Stun,600; + - Id: 4202 + AegisName: Civil_Servant_Card + Name: Mao Guai Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEle,Ele_Ghost,20; + - Id: 4203 + AegisName: Mutant_Dragon_Card + Name: Mutant Dragonoid Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,15; bonus3 bAutoSpell,"MG_FIREBALL",3+2*(getskilllv("MG_FIREBALL")==10),50; + - Id: 4204 + AegisName: Mini_Demon_Card + Name: Mini Demon Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubRace,RC_Brute,-20; bonus2 bSubRace,RC_Player_Doram,-20; bonus2 bExpAddRace,RC_Brute,10; + - Id: 4205 + AegisName: Mimic_Card + Name: Mimic Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddMonsterDropItem,603,10; + - Id: 4206 + AegisName: Mystcase_Card + Name: Myst Case Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddMonsterDropItem,644,30; + - Id: 4207 + AegisName: Mysteltainn_Card + Name: Mysteltainn Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubSize,Size_Small,25; bonus bDef,1; + - Id: 4208 + AegisName: Miyabi_Ningyo_Card + Name: Miyabi Doll Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bMaxSPrate,10; bonus2 bSkillAtk,"MG_FROSTDIVER",5; + - Id: 4209 + AegisName: Violy_Card + Name: Violy Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpell,"BA_FROSTJOKER",1+4*(getskilllv("BA_FROSTJOKER")==5),20; + - Id: 4210 + AegisName: Wander_Man_Card + Name: Wanderer Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + if(!isequipped(4172,4257,4230,4272)) bonus3 bAutoSpell,"RG_INTIMIDATE",1,20; if(BaseClass==Job_Thief) bonus bFlee,20; + - Id: 4211 + AegisName: Vocal_Card + Name: Vocal Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bMdef,3; + - Id: 4212 + AegisName: Bon_Gun_Card + Name: Bongun Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpell,"SM_BASH",1,20; bonus2 bAddSkillBlow,"SM_BASH",5; bonus2 bAddDefMonster,1026,-100; + - Id: 4213 + AegisName: Brilight_Card + Name: Brilight Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEffWhenHit,Eff_Silence,600; + - Id: 4214 + AegisName: Bloody_Murderer_Card + Name: Bloody Murderer Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Insect,7; + - Id: 4215 + AegisName: Blazzer_Card + Name: Blazer Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddMonsterDropItemGroup,IG_Food,600; + - Id: 4216 + AegisName: Sasquatch_Card + Name: Sasquatch Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEffWhenHit,Eff_Freeze,600; + - Id: 4217 + AegisName: Live_Peach_Tree_Card + Name: Enchanted Peach Tree Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpell,"AL_HEAL",1+9*(getskilllv("AL_HEAL")==10),20; + - Id: 4218 + AegisName: Succubus_Card + Name: Succubus Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bVit,-3; bonus bHPrecovRate,-20; bonus bMaxHP,1000; + - Id: 4219 + AegisName: Sageworm_Card + Name: Sage Worm Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddMonsterDropItem,715,30; bonus2 bAddMonsterDropItem,716,30; bonus2 bAddMonsterDropItem,717,30; + - Id: 4220 + AegisName: Solider_Card + Name: Solider Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bDef,2; bonus bMdef,2; + - Id: 4221 + AegisName: Skeleton_General_Card + Name: Skeleton General Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubRace,RC_Insect,-20; bonus2 bExpAddRace,RC_Insect,10; + - Id: 4222 + AegisName: Skel_Prisoner_Card + Name: Skeleton Prisoner Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEffWhenHit,Eff_Sleep,300; + - Id: 4223 + AegisName: Stalactic_Golem_Card + Name: Stalactic Golem Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bDef,1; bonus2 bResEff,Eff_Stun,2000; + - Id: 4224 + AegisName: Stem_Worm_Card + Name: Stem Worm Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus3 bAddMonsterDropItem,12032,RC_Brute,100; + - Id: 4225 + AegisName: Stone_Shooter_Card + Name: Stone Shooter Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,10; bonus bHit,10; + - Id: 4226 + AegisName: Sting_Card + Name: Sting Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bDef,2; if(getrefine()>8) bonus bMdef,5; + - Id: 4227 + AegisName: Spring_Rabbit_Card + Name: Spring Rabbit Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddItemGroupHealRate,IG_Meat,50; bonus3 bAddMonsterDropItem,517,RC_Brute,200; bonus3 bAddMonsterDropItem,528,RC_Brute,200; + - Id: 4228 + AegisName: Sleeper_Card + Name: Sleeper Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus3 bAddMonsterDropItem,12031,RC_Fish,100; + - Id: 4229 + AegisName: C_Tower_Manager_Card + Name: Tower Keeper Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bInt,1; bonus bCastrate,-5; + - Id: 4230 + AegisName: Shinobi_Card + Name: Shinobi Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bAgi,1; bonus3 bAutoSpellWhenHit,"AS_CLOAKING",5,100; + - Id: 4231 + AegisName: Increase_Soil_Card + Name: Mi Gao Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubRace2,RC2_Guardian,50; + - Id: 4232 + AegisName: Wild_Ginseng_Card + Name: Hermit Plant Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddItemGroupHealRate,IG_Herb,50; bonus3 bAddMonsterDropItem,507,RC_Plant,300; bonus3 bAddMonsterDropItem,508,RC_Plant,200; bonus3 bAddMonsterDropItem,509,RC_Plant,100; + - Id: 4233 + AegisName: Baby_Leopard_Card + Name: Baby Leopard Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bLuk,3; if(BaseClass==Job_Merchant) bonus bUnbreakableArmor; + - Id: 4234 + AegisName: Anolian_Card + Name: Anolian Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpellWhenHit,"AC_CONCENTRATION",1+9*(getskilllv("AC_CONCENTRATION")==10),30; + - Id: 4235 + AegisName: Cookie_XMAS_Card + Name: Christmas Cookie Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubRace,RC_Angel,-20; bonus2 bExpAddRace,RC_Angel,10; + - Id: 4236 + AegisName: Amon_Ra_Card + Name: Amon Ra Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bAllStats,1; bonus3 bAutoSpellWhenHit,"PR_KYRIE",10,(30+70*(readparam(bInt)>=99)); + - Id: 4237 + AegisName: Owl_Duke_Card + Name: Owl Duke Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpell,"PR_IMPOSITIO",3,3; + - Id: 4238 + AegisName: Owl_Baron_Card + Name: Owl Baron Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpell,"PR_LEXAETERNA",1,30; + - Id: 4239 + AegisName: Iron_Fist_Card + Name: Iron Fist Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubRace,RC_Formless,-20; bonus2 bExpAddRace,RC_Formless,10; + - Id: 4240 + AegisName: Arclouse_Card + Name: Arclouze Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + if(getrefine()<6) { bonus bDef,2; bonus bMdef,3; } + - Id: 4241 + AegisName: Archangeling_Card + Name: Arc Angeling Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bMaxHP,300; if(readparam(bLuk)>=77) { bonus bHPrecovRate,100; bonus bSPrecovRate,100; } + - Id: 4242 + AegisName: Apocalips_Card + Name: Apocalipse Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bVit,2; if(getrefine()>8) bonus bMaxHP,800; + - Id: 4243 + AegisName: Antonio_Card + Name: Antonio Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpellWhenHit,"AL_TELEPORT",1,500; + - Id: 4244 + AegisName: Alarm_Card + Name: Alarm Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpellWhenHit,"MG_SIGHT",1,200; bonus bMaxHP,300; bonus bVit,1; + - Id: 4245 + AegisName: Am_Mut_Card + Name: Am Mut Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubRace,RC_DemiHuman,-20; bonus2 bSubRace,RC_Player_Human,-20; bonus2 bExpAddRace,RC_DemiHuman,10; + - Id: 4246 + AegisName: Assulter_Card + Name: Assaulter Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_DemiHuman,7; bonus2 bCriticalAddRace,RC_Player_Human,7; + - Id: 4247 + AegisName: Aster_Card + Name: Aster Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,5; bonus2 bAddDamageClass,1074,30; + - Id: 4248 + AegisName: Ancient_Mummy_Card + Name: Ancient Mummy Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpellWhenHit,"AL_CRUCIS",5,30; + - Id: 4249 + AegisName: Ancient_Worm_Card + Name: Ancient Worm Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubRace,RC_Demon,-20; bonus2 bExpAddRace,RC_Demon,10; + - Id: 4250 + AegisName: Executioner_Card + Name: Executioner Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubSize,Size_Large,25; bonus bDef,1; + - Id: 4251 + AegisName: Elder_Card + Name: Elder Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddRace2,RC2_Guardian,40; + - Id: 4252 + AegisName: Alligator_Card + Name: Alligator Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bLongAtkDef,5; + - Id: 4253 + AegisName: Alice_Card + Name: Alice Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubClass,Class_Boss,40; bonus2 bSubClass,Class_Normal,-40; + - Id: 4254 + AegisName: Tirfing_Card + Name: Ogretooth Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubSize,Size_Medium,25; bonus bDef,1; + - Id: 4255 + AegisName: Orc_Lady_Card + Name: Orc Lady Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddRace2,3,30; + - Id: 4256 + AegisName: Orc_Archer_Card + Name: Orc Archer Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus3 bAddMonsterDropItem,12034,RC_DemiHuman,100; + - Id: 4257 + AegisName: Wild_Rose_Card + Name: Wild Rose Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bAgi,1; if(BaseClass==Job_Thief) bonus bFlee2,5; + - Id: 4258 + AegisName: Wicked_Nymph_Card + Name: Evil Nymph Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bInt,1; bonus bMaxSP,50; + - Id: 4259 + AegisName: Wooden_Golem_Card + Name: Wooden Golem Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bDef,1; bonus bHPrecovRate,30; + - Id: 4260 + AegisName: Wootan_Shooter_Card + Name: Wootan Shooter Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bDef,1; bonus2 bResEff,Eff_Confusion,2000; + - Id: 4261 + AegisName: Wootan_Fighter_Card + Name: Wootan Fighter Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bDef,1; bonus2 bResEff,Eff_Bleeding,2000; + - Id: 4262 + AegisName: Evil_Cloud_Hermit_Card + Name: Cloud Hermit Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus3 bAddMonsterDropItem,12029,RC_Plant,100; + - Id: 4263 + AegisName: Incant_Samurai_Card + Name: Samurai Spector Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bIgnoreDefClass,Class_Normal; bonus bHPrecovRate,-100; bonus2 bHPLossRate,666,10000; + UnEquipScript: | + 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; } + - Id: 4264 + AegisName: Wind_Ghost_Card + Name: Wind Ghost Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpell,"WZ_JUPITEL",3+7*(getskilllv("WZ_JUPITEL")==10),20; + - Id: 4265 + AegisName: Li_Me_Mang_Ryang_Card + Name: Jing Guai Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus3 bAddMonsterDropItem,12033,RC_Angel,100; + - Id: 4266 + AegisName: Eclipse_Card + Name: Eclipse Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bVit,1; + - Id: 4267 + AegisName: Explosion_Card + Name: Explosion Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubRace,RC_Dragon,-20; bonus2 bExpAddRace,RC_Dragon,10; + - Id: 4268 + AegisName: Injustice_Card + Name: Injustice Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpell,"AS_SONICBLOW",1,50; + - Id: 4269 + AegisName: Incubus_Card + Name: Incubus Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bInt,-3; bonus bSPrecovRate,-20; bonus bMaxSP,150; + - Id: 4270 + AegisName: Giant_Spider_Card + Name: Giant Spider Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEffWhenHit,Eff_Poison,600; + - Id: 4271 + AegisName: Giant_Honet_Card + Name: Giant Hornet Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubEle,Ele_Wind,10; bonus3 bAddMonsterDropItem,992,RC_Insect,100; + - Id: 4272 + AegisName: Dancing_Dragon_Card + Name: Zhu Po Long Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bAgi,1; bonus bCritical,3; + - Id: 4273 + AegisName: Shellfish_Card + Name: Shell Fish Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,5; bonus2 bAddDamageClass,1073,30; + - Id: 4274 + AegisName: Zombie_Master_Card + Name: Zombie Master Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSPGainRace,RC_Undead,5; + UnEquipScript: | + heal 0,-5; + - Id: 4275 + AegisName: Zombie_Prisoner_Card + Name: Zombie Prisoner Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubRace,RC_Undead,-20; bonus2 bExpAddRace,RC_Undead,10; + - Id: 4276 + AegisName: Lord_Of_Death_Card + Name: Lord of The Dead Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + 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; + - Id: 4277 + AegisName: Zherlthsh_Card + Name: Zealotus Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bLuk,2; bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10; bonus2 bSkillAtk,"DC_THROWARROW",10; + - Id: 4278 + AegisName: Gibbet_Card + Name: Gibbet Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + if(getrefine()<6) bonus bMdef,5; + - Id: 4279 + AegisName: Deleter_Card + Name: Earth Deleter Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bSPrecovRate,-100; bonus bSPGainValue,10; + UnEquipScript: | + heal 0,-100; + - Id: 4280 + AegisName: Geographer_Card + Name: Geographer Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpellWhenHit,"AL_BLESSING",2+8*(getskilllv("AL_BLESSING")==10),30; + - Id: 4281 + AegisName: Zipper_Bear_Card + Name: Zipper Bear Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,30; bonus bSPDrainValue,-1; if(BaseClass==Job_Merchant) bonus bUnbreakableWeapon; + - Id: 4282 + AegisName: Tengu_Card + Name: Tengu Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddMonsterDropItemGroup,IG_Recovery,600; + - Id: 4283 + AegisName: Greatest_General_Card + Name: Greatest General Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpell,"MO_CALLSPIRITS",5,2+18*(BaseClass==Job_Acolyte); + - Id: 4284 + AegisName: Chepet_Card + Name: Chepet Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus4 bAutoSpell,"AL_HEAL",5,50,1; + - Id: 4285 + AegisName: Choco_Card + Name: Choco Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bFlee2,5; bonus bFlee,10; + - Id: 4286 + AegisName: Karakasa_Card + Name: Karakasa Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEffWhenHit,Eff_Confusion,300+600*(readparam(bStr)>=77); + - Id: 4287 + AegisName: Kapha_Card + Name: Kapha Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + if(getrefine()<6) bonus bMdef,8; + - Id: 4288 + AegisName: Carat_Card + Name: Carat Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bInt,2; if(getrefine()>8) bonus bMaxSP,150; + - Id: 4289 + AegisName: Caterpillar_Card + Name: Caterpillar Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSPGainRace,RC_Plant,5; + UnEquipScript: | + heal 0,-5; + - Id: 4290 + AegisName: Cat_O_Nine_Tail_Card + Name: Cat O' Nine Tails Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bMdef,3; bonus bMagicDamageReturn,5; + - Id: 4291 + AegisName: Kobold_Leader_Card + Name: Kobold Leader Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddRace2,RC2_Kobold,30; + - Id: 4292 + AegisName: Kobold_Archer_Card + Name: Kobold Archer Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Plant,7; + - Id: 4293 + AegisName: Cookie_Card + Name: Cookie Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bLuk,2; bonus2 bSkillAtk,"AL_HOLYLIGHT",10; + - Id: 4294 + AegisName: Quve_Card + Name: Quve Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + if(BaseJob==Job_Novice||BaseJob==Job_SuperNovice) bonus3 bAutoSpellWhenHit,"AL_INCAGI",1,100; + - Id: 4295 + AegisName: Kraben_Card + Name: Kraben Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEffWhenHit,Eff_Blind,600; + - Id: 4296 + AegisName: Cramp_Card + Name: Cramp Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus2 bGetZenyNum,500,1; + - Id: 4297 + AegisName: Cruiser_Card + Name: Cruiser Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Brute,7; bonus2 bCriticalAddRace,RC_Player_Doram,7; + - Id: 4298 + AegisName: Cremy_Fear_Card + Name: Creamy Fear Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEffWhenHit,Eff_Confusion,600; + - Id: 4299 + AegisName: Clock_Card + Name: Clock Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpellWhenHit,"CR_AUTOGUARD",3+7*(getskilllv("CR_AUTOGUARD")==10),30; + UnEquipScript: | + sc_end SC_AUTOGUARD; + - Id: 4300 + AegisName: Chimera_Card + Name: Chimera Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEffWhenHit,Eff_Poison,300+600*(BaseJob==Job_Assassin); + - Id: 4301 + AegisName: Killer_Mantis_Card + Name: Killer Mantis Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEffWhenHit,Eff_Bleeding,600; + - Id: 4302 + AegisName: Tao_Gunka_Card + Name: Tao Gunka Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bMaxHPrate,100; bonus bDef,-50; bonus bMdef,-50; + - Id: 4303 + AegisName: Whisper_Boss_Card + Name: Giant Whisper Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bFlee,10; if(readparam(bStr)>=80) bonus bBaseAtk,20; if(readparam(bVit)>=80) bonus bMaxHPrate,3; if(readparam(bLuk)>=80) bonus bCritical,3; + - Id: 4304 + AegisName: Tamruan_Card + Name: Tamruan Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bDef,2; bonus2 bSkillAtk,"CR_SHIELDCHARGE",10; bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",10; + - Id: 4305 + AegisName: Turtle_General_Card + Name: Turtle General Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddClass,Class_All,20; bonus3 bAutoSpell,"SM_MAGNUM",10,30; + - Id: 4306 + AegisName: Toad_Card + Name: Toad Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bFlee2,1; + - Id: 4307 + AegisName: Kind_Of_Beetle_Card + Name: Beetle King Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSPGainRace,RC_Fish,5; + UnEquipScript: | + heal 0,-5; + - Id: 4308 + AegisName: Tri_Joint_Card + Name: Tri Joint Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSPGainRace,RC_Formless,5; + UnEquipScript: | + heal 0,-5; + - Id: 4309 + AegisName: Parasite_Card + Name: Parasite Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bDef,1; bonus2 bSubRace,RC_Formless,5; + - Id: 4310 + AegisName: Panzer_Goblin_Card + Name: Panzer Goblin Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Demon,7; + - Id: 4311 + AegisName: Permeter_Card + Name: Permeter Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubEle,Ele_Dark,15; bonus2 bSubEle,Ele_Undead,15; + - Id: 4312 + AegisName: Fur_Seal_Card + Name: Seal Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bFlee,3; bonus bHit,10; if(BaseClass==Job_Acolyte) { bonus2 bCriticalAddRace,RC_Undead,9; bonus2 bCriticalAddRace,RC_Demon,9; } + - Id: 4313 + AegisName: Punk_Card + Name: Punk Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus4 bAutoSpellWhenHit,"WZ_QUAGMIRE",1+4*(getskilllv("WZ_QUAGMIRE")==5),50,0; + - Id: 4314 + AegisName: Penomena_Card + Name: Penomena Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubRace,RC_Formless,30; + - Id: 4315 + AegisName: Pest_Card + Name: Pest Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEffWhenHit,Eff_Stone,300+600*(readparam(bInt)>=77); + - Id: 4316 + AegisName: Fake_Angel_Card + Name: False Angel Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSPGainRace,RC_Angel,5; + UnEquipScript: | + heal 0,-5; + - Id: 4317 + AegisName: Mobster_Card + Name: Mobster Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bCritAtkRate,15; if(BaseClass==Job_Thief) bonus bCritical,4; + - Id: 4318 + AegisName: Knight_Windstorm_Card + Name: Stormy Knight Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpell,"WZ_STORMGUST",2,20; bonus2 bAddEff,Eff_Freeze,2000; + - Id: 4319 + AegisName: Freezer_Card + Name: Freezer Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bMaxHP,300; if(getrefine()>=9) bonus2 bSkillAtk,"SM_BASH",10; + - Id: 4320 + AegisName: Bloody_Knight_Card + Name: Bloody Knight Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpell,"WZ_METEOR",1,20; + - Id: 4321 + AegisName: Hylozoist_Card + Name: Hylozoist Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bClassChange,100; + - Id: 4322 + AegisName: High_Orc_Card + Name: High Orc Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bDef,1; bonus bShortWeaponDamageReturn,5; + - Id: 4323 + AegisName: Garm_Baby_Card + Name: Hatii Babe Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpell,"MG_FROSTDIVER",3,50; + - Id: 4324 + AegisName: Garm_Card + Name: Hatii Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEffWhenHit,Eff_Freeze,5000; + - Id: 4325 + AegisName: Harpy_Card + Name: Harpy Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubEle,Ele_Neutral,15; bonus2 bSkillAtk,"MG_NAPALMBEAT",5; + - Id: 4326 + AegisName: See_Otter_Card + Name: Sea-Otter Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddItemGroupHealRate,IG_Fish,50; bonus3 bAddMonsterDropItem,551,RC_Fish,300; bonus3 bAddMonsterDropItem,544,RC_Fish,300; + - Id: 4327 + AegisName: Blood_Butterfly_Card + Name: Bloody Butterfly Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bCastrate,30; bonus bNoCastCancel; bonus2 bSkillAtk,"MG_FIREWALL",5; + - Id: 4328 + AegisName: Hyegun_Card + Name: Yao Jun Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bFlee,15; bonus bCritical,1; + - Id: 4329 + AegisName: Phendark_Card + Name: Phendark Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSPGainRace,RC_DemiHuman,5; bonus2 bSPGainRace,RC_Player_Human,5; + UnEquipScript: | + heal 0,-5; + - Id: 4330 + AegisName: Dark_Snake_Lord_Card + Name: Evil Snake Lord Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bInt,3; bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Curse,10000; + - Id: 4331 + AegisName: Heater_Card + Name: Heater Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bCritical,3; if(BaseClass==Job_Swordman) bonus bFlee2,3; + - Id: 4332 + AegisName: Waste_Stove_Card + Name: Waste Stove Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,5; bonus bInt,1; + - Id: 4333 + AegisName: Venomous_Card + Name: Venomous Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus3 bAddEffWhenHit,Eff_Poison,3000,ATF_TARGET|ATF_SELF; + - Id: 4334 + AegisName: Noxious_Card + Name: Noxious Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bLongAtkDef,10; bonus2 bSubEle,Ele_Neutral,10; + - Id: 4335 + AegisName: Pitman_Card + Name: Pitman Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSkillAtk,"WZ_EARTHSPIKE",5; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",5; + UnEquipScript: | + heal 0,-50; + - Id: 4336 + AegisName: Ungoliant_Card + Name: Ungoliant Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bHPrecovRate,10; bonus2 bResEff,Eff_Bleeding,10000; + - Id: 4337 + AegisName: Porcellio_Card + Name: Porcellio Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,25; bonus bDef,-5; + - Id: 4338 + AegisName: Obsidian_Card + Name: Obsidian Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bVit,readparam(bDex)/18; + - Id: 4339 + AegisName: Mineral_Card + Name: Mineral Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,-25; bonus bDef,3; + - Id: 4340 + AegisName: Teddy_Bear_Card + Name: Teddy Bear Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubRace,RC_Undead,30; + - Id: 4341 + AegisName: Metaling_Card + Name: Metaling Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpell,"RG_STRIPWEAPON",1,50; + - Id: 4342 + AegisName: Rsx_0806_Card + Name: RSX-0806 Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bVit,3; bonus bUnbreakableArmor; bonus bNoKnockback; + - Id: 4343 + AegisName: Mole_Card + Name: Holden Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bLuk,2; + - Id: 4344 + AegisName: Anopheles_Card + Name: Anopheles Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus3 bAddMonsterDropItem,12058,RC_Insect,50; + - Id: 4345 + AegisName: Hill_Wind_Card + Name: Hill Wind Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSkillAtk,"MG_THUNDERSTORM",5; bonus2 bSkillAtk,"WZ_JUPITEL",5; bonus2 bSkillAtk,"WZ_VERMILION",5; + UnEquipScript: | + heal 0,-50; + - Id: 4346 + AegisName: Ygnizem_Card + Name: Egnigem Cenia Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bStr,readparam(bInt)/18; + - Id: 4347 + AegisName: Armaia_Card + Name: Armeyer Dinze Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus3 bAddMonsterDropItem,12053,RC_Fish,50; + - Id: 4348 + AegisName: Whikebain_Card + Name: Wickebine Tres Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpell,"RG_STRIPARMOR",1,50; + - Id: 4349 + AegisName: Erend_Card + Name: Errende Ebecee Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus4 bAutoSpellWhenHit,"AL_PNEUMA",1,50,0; + - Id: 4350 + AegisName: Rawrel_Card + Name: Laurell Weinder Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSkillAtk,"WZ_FROSTNOVA",3; bonus2 bSkillAtk,"WZ_STORMGUST",3; + UnEquipScript: | + heal 0,-50; + - Id: 4351 + AegisName: Kavac_Card + Name: Kavach Icarus Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + if(getrefine()<=4) { bonus bFlee,20; bonus bFlee2,1; } else { bonus bFlee,10; } + - Id: 4352 + AegisName: B_Ygnizem_Card + Name: General Egnigem Cenia Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bHPRegenRate,50,10000; bonus2 bSPRegenRate,10,10000; + - Id: 4353 + AegisName: Removal_Card + Name: Remover Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bMaxHP,800-40*getrefine(); bonus bHPrecovRate,10; + - Id: 4354 + AegisName: Gemini_Card + Name: Gemini-S58 Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + if(readparam(bAgi)>=90) { bonus2 bResEff,Eff_Silence,3000; bonus2 bResEff,Eff_Stun,3000; } if(readparam(bVit)>=80) { bonus2 bResEff,Eff_Stone,5000; bonus2 bResEff,Eff_Sleep,5000; } + - Id: 4355 + AegisName: Gremlin_Card + Name: Gremlin Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus3 bAddMonsterDropItem,12043,RC_Brute,50; + - Id: 4356 + AegisName: Beholder_Card + Name: Beholder Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + skill "SA_CASTCANCEL",1; + - Id: 4357 + AegisName: B_Seyren_Card + Name: Lord Knight Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + skill "LK_BERSERK",1; bonus bMaxHPrate,-50; + - Id: 4358 + AegisName: Seyren_Card + Name: Seyren Windsor Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bStr,getrefine()-6; + - Id: 4359 + AegisName: B_Eremes_Card + Name: Assassin Cross Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + skill "AS_CLOAKING",3; + UnEquipScript: | + sc_end SC_CLOAKING; + - Id: 4360 + AegisName: Eremes_Card + Name: Eremes Guile Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bCriticalAddRace,RC_DemiHuman,10; bonus2 bCriticalAddRace,RC_Player_Human,10; + - Id: 4361 + AegisName: B_Harword_Card + Name: MasterSmith Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bBreakWeaponRate,1000; bonus bBreakArmorRate,700; + - Id: 4362 + AegisName: Harword_Card + Name: Howard Alt-Eisen Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bAspdRate,-5; bonus bHit,30; + - Id: 4363 + AegisName: B_Magaleta_Card + Name: High Priest Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus5 bAutoSpellWhenHit,"HP_ASSUMPTIO",1,50,BF_WEAPON|BF_MAGIC,0; + - Id: 4364 + AegisName: Magaleta_Card + Name: Margaretha Sorin Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bInt,1; bonus5 bAutoSpellWhenHit,"PR_LEXDIVINA",5,150,BF_MAGIC,1; + - Id: 4365 + AegisName: B_Katrinn_Card + Name: High Wizard Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus2 bIgnoreMdefClassRate,Class_Normal,100; bonus bCastrate,100; bonus bSPrecovRate,-100; + UnEquipScript: | + heal 0,-2000; + - Id: 4366 + AegisName: Katrinn_Card + Name: Kathryne Keyron Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bCastrate,getrefine()*-1; if(getrefine()>=9) { bonus bMatkRate,2; } + - Id: 4367 + AegisName: B_Shecil_Card + Name: Sniper Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bHPDrainRate,50,20; bonus bHPrecovRate,-10; + - Id: 4368 + AegisName: Shecil_Card + Name: Cecil Damon Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bAspdRate,5; bonus bHit,-30; + - Id: 4369 + AegisName: Venatu_Card + Name: Venatu Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bLuk,readparam(bAgi)/18; + - Id: 4370 + AegisName: Dimik_Card + Name: Dimik Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bVit,getrefine()-5; + - Id: 4371 + AegisName: Archdam_Card + Name: Archdam Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,10; bonus bCastrate,20; + - Id: 4372 + AegisName: Bacsojin_Card + Name: White Lady Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bHealPower,30; bonus bUseSPrate,15; + - Id: 4373 + AegisName: Chung_E_Card + Name: Green Maiden Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bLuk,getrefine()-5; bonus bCritical,getrefine(); + - Id: 4374 + AegisName: Apocalips_H_Card + Name: Vesper Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bDex,2; bonus2 bIgnoreMdefClassRate,Class_Boss,30; + - Id: 4375 + AegisName: Orc_Baby_Card + Name: Orc Baby Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + if(getrefine()>=9) { bonus2 bSubEle,Ele_Neutral,15; bonus bFlee,15; } else { bonus2 bSubEle,Ele_Neutral,10; bonus bFlee,10; } + - Id: 4376 + AegisName: Lady_Tanee_Card + Name: Lady Tanee Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bMaxHPrate,-40; bonus bMaxSPrate,50; bonus2 bAddMonsterDropItem,513,200; bonus2 bAddItemHealRate,513,100; + - Id: 4377 + AegisName: Green_Iguana_Card + Name: Grove Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus3 bAddMonsterDropItem,12063,RC_Formless,50; + - Id: 4378 + AegisName: Acidus_Card + Name: Gold Acidus Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + if(getrefine()<=4) { bonus bMaxHPrate,8; bonus bMaxSPrate,8; bonus bHPrecovRate,5; bonus bSPrecovRate,5; } else { bonus bMaxHPrate,4; bonus bMaxSPrate,4; } + - Id: 4379 + AegisName: Acidus__Card + Name: Blue Acidus Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + if(getrefine()<=4) { bonus bSPrecovRate,5; bonus bMaxSP,80; } else { bonus bMaxSP,40; } + - Id: 4380 + AegisName: Ferus_Card + Name: Red Ferus Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSkillAtk,"WZ_FIREPILLAR",5; bonus2 bSkillAtk,"WZ_METEOR",5; + UnEquipScript: | + heal 0,-50; + - Id: 4381 + AegisName: Ferus__Card + Name: Green Ferus Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bVit,1; bonus bMaxHPrate,10; + - Id: 4382 + AegisName: Novus__Card + Name: Yellow Novus Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bMaxHP,500; bonus bHPrecovRate,10; + - Id: 4383 + AegisName: Novus_Card + Name: Red Novus Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus3 bAddEffWhenHit,Eff_Confusion,3000,ATF_TARGET|ATF_SELF; + - Id: 4384 + AegisName: Hydro_Card + Name: Hydrolancer Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpell,"SA_SPELLBREAKER",1,100; + - Id: 4385 + AegisName: Dragon_Egg_Card + Name: Dragon Egg Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus3 bAddMonsterDropItem,12048,RC_Dragon,50; + - Id: 4386 + AegisName: Detale_Card + Name: Detardeurus Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bMdef,-20; bonus2 bResEff,Eff_Freeze,10000; bonus5 bAutoSpellWhenHit,"SA_LANDPROTECTOR",1,70,BF_MAGIC,0; + - Id: 4387 + AegisName: Ancient_Mimic_Card + Name: Ancient Mimic Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bAgi,readparam(bLuk)/18; + - Id: 4388 + AegisName: Deathword_Card + Name: Death Word Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSkillAtk,"MG_NAPALMBEAT",5; bonus2 bSkillAtk,"MG_SOULSTRIKE",5; bonus2 bSkillAtk,"HW_NAPALMVULCAN",5; + UnEquipScript: | + heal 0,-50; + - Id: 4389 + AegisName: Plasma_Card + Name: Plasma Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddMonsterDropItem,12118,50; bonus2 bAddMonsterDropItem,12119,50; bonus2 bAddMonsterDropItem,12120,50; bonus2 bAddMonsterDropItem,12121,50; + - Id: 4390 + AegisName: Breeze_Card + Name: Breeze Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,5; bonus2 bAddEff,Eff_Bleeding,500; + - Id: 4391 + AegisName: Retribution_Card + Name: Baroness of Retribution Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus3 bAddMonsterDropItem,12068,RC_Angel,50; + - Id: 4392 + AegisName: Observation_Card + Name: Dame of Sentinel Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bDex,readparam(bVit)/18; + - Id: 4393 + AegisName: Shelter_Card + Name: Mistress of Shelter Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bInt,readparam(bStr)/18; + - Id: 4394 + AegisName: Solace_Card + Name: Lady Solace Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + if(BaseJob==Job_Priest) bonus3 bAutoSpell,"CR_GRANDCROSS",5,20; + - Id: 4395 + AegisName: Tha_Maero_Card + Name: Maero of Thanatos Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,5; bonus3 bAutoSpell,"AL_DECAGI",3,50; + - Id: 4396 + AegisName: Tha_Odium_Card + Name: Odium of Thanatos Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bAgi,getrefine()-5; + - Id: 4397 + AegisName: Tha_Despero_Card + Name: Despero of Thanatos Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bInt,getrefine()-6; + - Id: 4398 + AegisName: Tha_Dolor_Card + Name: Dolor of Thanatos Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bMagicAddRace,RC_Angel,10; + - Id: 4399 + AegisName: Thanatos_Card + Name: Memory of Thanatos Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bDefRatioAtkClass,Class_All; bonus bSPDrainValue,-1; bonus bDef,-30; bonus bFlee,-30; + - Id: 4400 + AegisName: Aliza_Card + Name: Aliza Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpellWhenHit,"DC_WINKCHARM",1,50+50*(BaseJob==Job_Dancer); + - Id: 4401 + AegisName: Alicel_Card + Name: Alicel Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bFlee,10; bonus bDef,-5; + - Id: 4402 + AegisName: Aliot_Card + Name: Aliot Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + if(BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Thief) { bonus bStr,2; bonus bMaxHPrate,5; } if(BaseClass==Job_Mage||BaseClass==Job_Archer||BaseClass==Job_Acolyte) { bonus bInt,2; bonus bMaxSPrate,5; } + - Id: 4403 + AegisName: Kiel_Card + Name: Kiel-D-01 Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bDelayRate,-30; + - Id: 4404 + AegisName: Skogul_Card + Name: Skogul Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus3 bAddEffWhenHit,Eff_Bleeding,3000,ATF_TARGET|ATF_SELF; + - Id: 4405 + AegisName: Frus_Card + Name: Frus Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bMagicDamageReturn,getrefine()*2; if(BaseClass==Job_Mage) bonus bMdef,3; + - Id: 4406 + AegisName: Skeggiold_Card + Name: Skeggiold Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bMagicAddRace,RC_Demon,2; + - Id: 4407 + AegisName: Randgris_Card + Name: Randgris Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bUnbreakableWeapon; bonus2 bAddClass,Class_All,10; bonus3 bAutoSpell,"SA_DISPELL",1,50; + - Id: 4408 + AegisName: Gloom_Under_Night_Card + Name: Gloom Under Night Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEle,Ele_Holy,40; bonus2 bAddEle,Ele_Dark,40; bonus2 bAddRace,RC_Angel,40; bonus2 bAddRace,RC_Demon,40; + - Id: 4409 + AegisName: Agav_Card + Name: Agav Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bMatkRate,5; bonus bDef,-10; if(BaseClass==Job_Mage) bonus bMaxSP,100; + - Id: 4410 + AegisName: Echio_Card + Name: Echio Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,15; if(BaseClass==Job_Swordman) bonus bMaxHP,500; + - Id: 4411 + AegisName: Vanberk_Card + Name: Vanberk Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bStr,2; autobonus "{ bonus bCritical,100; }",5,5000,0,"{ specialeffect2 EF_ENHANCE; }"; + - Id: 4412 + AegisName: Isilla_Card + Name: Isilla Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bInt,2; autobonus "{ bonus bCastrate,-50; bonus bFlee,30; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }"; + - Id: 4413 + AegisName: Hodremlin_Card + Name: Hodremlin Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubSize,Size_All,15; autobonus2 "{ bonus bFlee2,30; }",3,10000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_WIND; }"; + - Id: 4414 + AegisName: Seeker_Card + Name: Seeker Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + skill "MG_STONECURSE",1; bonus2 bResEff,Eff_Stone,3000; bonus bMdef,10; + - Id: 4415 + AegisName: Snowier_Card + Name: Snowier Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddMonsterDropItem,536,2000; bonus2 bAddItemHealRate,536,100; + - Id: 4416 + AegisName: Siroma_Card + Name: Siroma Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus2 bSkillAtk,"MG_COLDBOLT",25; bonus2 bCastrate,"MG_COLDBOLT",-25; + - Id: 4417 + AegisName: Ice_Titan_Card + Name: Ice Titan Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bVit,2; autobonus2 "{ bonus bDef,10; }",3,10000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_FREEZED; }"; + - Id: 4418 + AegisName: Gazeti_Card + Name: Gazeti Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpell,"MG_COLDBOLT",2,100; + - Id: 4419 + AegisName: Ktullanux_Card + Name: Ktullanux Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEle,Ele_Fire,50; bonus5 bAutoSpellWhenHit,"WZ_FROSTNOVA",10,20,BF_WEAPON|BF_MAGIC,0; + - Id: 4420 + AegisName: Muscipular_Card + Name: Muscipular Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpellWhenHit,"AL_HEAL",1,100; bonus3 bAutoSpellWhenHit,"AL_INCAGI",1,100; + - Id: 4421 + AegisName: Drosera_Card + Name: Drosera Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bCriticalLong,15; + - Id: 4422 + AegisName: Roween_Card + Name: Roween Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bFlee,5; bonus bFlee2,3; bonus2 bAddEle,Ele_Water,10; bonus2 bCriticalAddRace,RC_Fish,15; + - Id: 4423 + AegisName: Galion_Card + Name: Galion Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bHit,5; bonus2 bAddEle,Ele_Water,5; + - Id: 4424 + AegisName: Stapo_Card + Name: Stapo Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + skill "TF_PICKSTONE",1; skill "TF_THROWSTONE",1; + - Id: 4425 + AegisName: Atroce_Card + Name: Atroce Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,25; autobonus "{ bonus bAspdRate,100; }",5,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }"; + - Id: 4426 + AegisName: Byorgue_Card + Name: Byorgue Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + if(BaseJob==Job_Rogue) { bonus bMatkRate,10; bonus2 bAddClass,Class_All,10; } + - Id: 4427 + AegisName: Sword_Guardian_Card + Name: Sword Guardian Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + if(getiteminfo(getequipid(EQI_HAND_R),11)==W_1HSWORD||getiteminfo(getequipid(EQI_HAND_R),11)==W_2HSWORD) { bonus bHit,5; bonus bCritical,5; bonus2 bSkillAtk,62,25; } + - Id: 4428 + AegisName: Bow_Guardian_Card + Name: Bow Guardian Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + if(getiteminfo(getequipid(EQI_HAND_R),11)==W_BOW) { bonus bHit,5; bonus bCritical,5; bonus2 bSkillAtk,47,50; } + - Id: 4429 + AegisName: Salamander_Card + Name: Salamander Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus2 bSkillAtk,"WZ_FIREPILLAR",40; bonus2 bSkillAtk,"WZ_METEOR",40; + - Id: 4430 + AegisName: Ifrit_Card + Name: Ifrit Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,(JobLevel/10); bonus bCritical,(JobLevel/10); bonus bHit,(JobLevel/10); bonus3 bAutoSpellWhenHit,"NPC_EARTHQUAKE",2,10; + - Id: 4431 + AegisName: Kasa_Card + Name: Kasa Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpell,"MG_FIREBALL",5,20; bonus3 bAutoSpell,"MG_FIREBOLT",5,20; + - Id: 4432 + AegisName: Magmaring_Card + Name: Magmaring Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,5; bonus2 bAddEle,Ele_Earth,10; bonus2 bCriticalAddRace,RC_Brute,15; bonus2 bCriticalAddRace,RC_Player_Doram,15; bonus2 bCriticalAddRace,RC_Plant,15; + - Id: 4433 + AegisName: Imp_Card + Name: Imp Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus2 bSkillAtk,"MG_FIREBOLT",25; bonus2 bCastrate,"MG_FIREBOLT",-25; + - Id: 4434 + AegisName: Knocker_Card + Name: Knocker Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddRace,RC_Formless,5; bonus3 bAddMonsterDropItem,756,RC_Formless,10; bonus3 bAddMonsterDropItem,757,RC_Formless,10; + - Id: 4435 + AegisName: Zombie_Slaughter_Card + Name: Zombie Slaughter Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddRace,RC_DemiHuman,1; bonus2 bAddRace,RC_Player_Human,1; bonus2 bMagicAddRace,RC_DemiHuman,1; bonus2 bMagicAddRace,RC_Player_Human,1; bonus bHPGainValue,50; + - Id: 4436 + AegisName: Ragged_Zombie_Card + Name: Ragged Zombie Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus2 bCriticalAddRace,RC_DemiHuman,5; bonus2 bCriticalAddRace,RC_Player_Human,5; bonus2 bAddRace,RC_DemiHuman,1; bonus2 bAddRace,RC_Player_Human,1; bonus2 bMagicAddRace,RC_DemiHuman,1; bonus2 bMagicAddRace,RC_Player_Human,1; bonus2 bAddEff2,Eff_Bleeding,10; + - Id: 4437 + AegisName: Hell_Poodle_Card + Name: Hell Poodle Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bHit,1; bonus2 bAddItemHealRate,517,100; bonus3 bAddEff,Eff_Bleeding,50,ATF_SHORT; + - Id: 4438 + AegisName: Banshee_Card + Name: Banshee Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + 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; } + - Id: 4439 + AegisName: Flame_Skull_Card + Name: Flame Skull Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + 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; + - Id: 4440 + AegisName: Necromancer_Card + Name: Necromancer Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + if(getiteminfo(getequipid(EQI_HAND_R),11)==W_STAFF) { bonus bInt,1; bonus2 bIgnoreMdefClassRate,Class_Normal,2; bonus2 bIgnoreMdefClassRate,Class_Boss,2; } + - Id: 4441 + AegisName: Fallen_Bishop_Card + Name: Fallen Bishop Hibram Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bMatkRate,10; bonus bMaxSPrate,-50; bonus2 bMagicAddRace,RC_Angel,50; bonus2 bMagicAddRace,RC_DemiHuman,50; bonus2 bMagicAddRace,RC_Player_Human,50; + - Id: 4442 + AegisName: Tatacho_Card + Name: Tatacho Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubEle,Ele_Neutral,20; bonus2 bAddEle,Ele_Neutral,5; + - Id: 4443 + AegisName: Aqua_Elemental_Card + Name: Aqua Elemental Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubEle,Ele_Water,20; bonus2 bAddEle,Ele_Water,5; + - Id: 4444 + AegisName: Draco_Card + Name: Draco Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubEle,Ele_Earth,20; bonus2 bAddEle,Ele_Earth,5; + - Id: 4445 + AegisName: Luciola_Vespa_Card + Name: Luciola Vespa Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubEle,Ele_Wind,20; bonus2 bAddEle,Ele_Wind,5; + - Id: 4447 + AegisName: Centipede_Card + Name: Centipede Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubEle,Ele_Poison,20; bonus2 bAddEle,Ele_Poison,5; + - Id: 4448 + AegisName: Cornus_Card + Name: Cornus Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubEle,Ele_Holy,20; bonus2 bAddEle,Ele_Holy,5; + - Id: 4449 + AegisName: Dark_Shadow_Card + Name: Dark Shadow Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubEle,Ele_Dark,20; bonus2 bAddEle,Ele_Dark,5; + - Id: 4450 + AegisName: Banshee_Master_Card + Name: Banshee Master Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bInt,1; bonus bMatk,10; + - Id: 4451 + AegisName: Ant_Buyanne_Card + Name: Entweihen Crothen Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bMatk,100; + - Id: 4452 + AegisName: Centipede_Larva_Card + Name: Centipede Larva Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bInt,1; bonus bMatk,3; + - Id: 4453 + AegisName: Hilsrion_Card + Name: Hillsrion Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,25; + - Id: 4700 + AegisName: Strength1 + Name: STR+1 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bStr,1; + - Id: 4701 + AegisName: Strength2 + Name: STR+2 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bStr,2; + - Id: 4702 + AegisName: Strength3 + Name: STR+3 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bStr,3; + - Id: 4703 + AegisName: Strength4 + Name: STR+4 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bStr,4; + - Id: 4704 + AegisName: Strength5 + Name: STR+5 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bStr,5; + - Id: 4705 + AegisName: Strength6 + Name: STR+6 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bStr,6; + - Id: 4706 + AegisName: Strength7 + Name: STR+7 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bStr,7; + - Id: 4707 + AegisName: Strength8 + Name: STR+8 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bStr,8; + - Id: 4708 + AegisName: Strength9 + Name: STR+9 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bStr,9; + - Id: 4709 + AegisName: Strength10 + Name: STR+10 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bStr,10; + - Id: 4710 + AegisName: Inteligence1 + Name: INT+1 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bInt,1; + - Id: 4711 + AegisName: Inteligence2 + Name: INT+2 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bInt,2; + - Id: 4712 + AegisName: Inteligence3 + Name: INT+3 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bInt,3; + - Id: 4713 + AegisName: Inteligence4 + Name: INT+4 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bInt,4; + - Id: 4714 + AegisName: Inteligence5 + Name: INT+5 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bInt,5; + - Id: 4715 + AegisName: Inteligence6 + Name: INT+6 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bInt,6; + - Id: 4716 + AegisName: Inteligence7 + Name: INT+7 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bInt,7; + - Id: 4717 + AegisName: Inteligence8 + Name: INT+8 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bInt,8; + - Id: 4718 + AegisName: Inteligence9 + Name: INT+9 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bInt,9; + - Id: 4719 + AegisName: Inteligence10 + Name: INT+10 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bInt,10; + - Id: 4720 + AegisName: Dexterity1 + Name: DEX+1 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bDex,1; + - Id: 4721 + AegisName: Dexterity2 + Name: DEX+2 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bDex,2; + - Id: 4722 + AegisName: Dexterity3 + Name: DEX+3 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bDex,3; + - Id: 4723 + AegisName: Dexterity4 + Name: DEX+4 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bDex,4; + - Id: 4724 + AegisName: Dexterity5 + Name: DEX+5 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bDex,5; + - Id: 4725 + AegisName: Dexterity6 + Name: DEX+6 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bDex,6; + - Id: 4726 + AegisName: Dexterity7 + Name: DEX+7 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bDex,7; + - Id: 4727 + AegisName: Dexterity8 + Name: DEX+8 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bDex,8; + - Id: 4728 + AegisName: Dexterity9 + Name: DEX+9 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bDex,9; + - Id: 4729 + AegisName: Dexterity10 + Name: DEX+10 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bDex,10; + - Id: 4730 + AegisName: Agility1 + Name: AGI+1 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bAgi,1; + - Id: 4731 + AegisName: Agility2 + Name: AGI+2 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bAgi,2; + - Id: 4732 + AegisName: Agility3 + Name: AGI+3 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bAgi,3; + - Id: 4733 + AegisName: Agility4 + Name: AGI+4 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bAgi,4; + - Id: 4734 + AegisName: Agility5 + Name: AGI+5 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bAgi,5; + - Id: 4735 + AegisName: Agility6 + Name: AGI+6 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bAgi,6; + - Id: 4736 + AegisName: Agility7 + Name: AGI+7 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bAgi,7; + - Id: 4737 + AegisName: Agility8 + Name: AGI+8 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bAgi,8; + - Id: 4738 + AegisName: Agility9 + Name: AGI+9 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bAgi,9; + - Id: 4739 + AegisName: Agility10 + Name: AGI+10 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bAgi,10; + - Id: 4740 + AegisName: Vitality1 + Name: VIT+1 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bVit,1; + - Id: 4741 + AegisName: Vitality2 + Name: VIT+2 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bVit,2; + - Id: 4742 + AegisName: Vitality3 + Name: VIT+3 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bVit,3; + - Id: 4743 + AegisName: Vitality4 + Name: VIT+4 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bVit,4; + - Id: 4744 + AegisName: Vitality5 + Name: VIT+5 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bVit,5; + - Id: 4745 + AegisName: Vitality6 + Name: VIT+6 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bVit,6; + - Id: 4746 + AegisName: Vitality7 + Name: VIT+7 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bVit,7; + - Id: 4747 + AegisName: Vitality8 + Name: VIT+8 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bVit,8; + - Id: 4748 + AegisName: Vitality9 + Name: VIT+9 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bVit,9; + - Id: 4749 + AegisName: Vitality10 + Name: VIT+10 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bVit,10; + - Id: 4750 + AegisName: Luck1 + Name: LUK+1 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bLuk,1; + - Id: 4751 + AegisName: Luck2 + Name: LUK+2 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bLuk,2; + - Id: 4752 + AegisName: Luck3 + Name: LUK+3 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bLuk,3; + - Id: 4753 + AegisName: Luck4 + Name: LUK+4 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bLuk,4; + - Id: 4754 + AegisName: Luck5 + Name: LUK+5 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bLuk,5; + - Id: 4755 + AegisName: Luck6 + Name: LUK+6 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bLuk,6; + - Id: 4756 + AegisName: Luck7 + Name: LUK+7 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bLuk,7; + - Id: 4757 + AegisName: Luck8 + Name: LUK+8 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bLuk,8; + - Id: 4758 + AegisName: Luck9 + Name: LUK+9 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bLuk,9; + - Id: 4759 + AegisName: Luck10 + Name: LUK+10 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bLuk,10; + - Id: 4760 + AegisName: Matk1 + Name: MATK+1% + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bMatkRate,1; + - Id: 4761 + AegisName: Matk2 + Name: MATK+2% + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bMatkRate,2; + - Id: 4762 + AegisName: Evasion6 + Name: FLEE+6 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bFlee,6; + - Id: 4763 + AegisName: Evasion12 + Name: FLEE+12 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bFlee,12; + - Id: 4764 + AegisName: Critical5 + Name: CRI+5 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bCritical,5; + - Id: 4765 + AegisName: Critical7 + Name: CRI+7 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bCritical,7; + - Id: 4766 + AegisName: Atk2 + Name: ATK+2% + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus2 bAddClass,Class_All,2; + - Id: 4767 + AegisName: Atk3 + Name: ATK+3% + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus2 bAddClass,Class_All,3; + - Id: 4768 + AegisName: Str1_J + Name: STR+1 + Type: Card + Buy: 20 + Weight: 10 + - Id: 4769 + AegisName: Str2_J + Name: STR+2 + Type: Card + Buy: 20 + Weight: 10 + - Id: 4770 + AegisName: Str3_J + Name: STR+3 + Type: Card + Buy: 20 + Weight: 10 + - Id: 4771 + AegisName: Int1_J + Name: INT+1 + Type: Card + Buy: 20 + Weight: 10 + - Id: 4772 + AegisName: Int2_J + Name: INT+2 + Type: Card + Buy: 20 + Weight: 10 + - Id: 4773 + AegisName: Int3_J + Name: INT+3 + Type: Card + Buy: 20 + Weight: 10 + - Id: 4774 + AegisName: Vit1_J + Name: VIT+1 + Type: Card + Buy: 20 + Weight: 10 + - Id: 4775 + AegisName: Vit2_J + Name: VIT+2 + Type: Card + Buy: 20 + Weight: 10 + - Id: 4776 + AegisName: Vit3_J + Name: VIT+3 + Type: Card + Buy: 20 + Weight: 10 + - Id: 4777 + AegisName: Agi1_J + Name: AGI+1 + Type: Card + Buy: 20 + Weight: 10 + - Id: 4778 + AegisName: Agi2_J + Name: AGI+2 + Type: Card + Buy: 20 + Weight: 10 + - Id: 4779 + AegisName: Agi3_J + Name: AGI+3 + Type: Card + Buy: 20 + Weight: 10 + - Id: 4780 + AegisName: Dex1_J + Name: DEX+1 + Type: Card + Buy: 20 + Weight: 10 + - Id: 4781 + AegisName: Dex2_J + Name: DEX+2 + Type: Card + Buy: 20 + Weight: 10 + - Id: 4782 + AegisName: Dex3_J + Name: DEX+3 + Type: Card + Buy: 20 + Weight: 10 + - Id: 4783 + AegisName: Luk1_J + Name: LUK+1 + Type: Card + Buy: 20 + Weight: 10 + - Id: 4784 + AegisName: Luk2_J + Name: LUK+2 + Type: Card + Buy: 20 + Weight: 10 + - Id: 4785 + AegisName: Luk3_J + Name: LUK+3 + Type: Card + Buy: 20 + Weight: 10 + - Id: 6000 + AegisName: Dark_Ashes + Name: Ashes of Darkness + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6001 + AegisName: Essence_Of_Fire + Name: Essence of Fire + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 6002 + AegisName: Token_Of_Apostle + Name: Token of Apostle + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 6003 + AegisName: Soul_Pendant + Name: Pendant of Spirit + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 6004 + AegisName: Bapho_Doll + Name: Cursed Baphomet Doll + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 6005 + AegisName: New_Year_Rice_Cake + Name: New Year Rice Cake + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6006 + AegisName: Rice_Cake_Delivery_Box + Name: Rice Cake Delivery Box + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6007 + AegisName: New_Year_Rice_Cake_Soup + Name: New Year Rice Cake Soup + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6008 + AegisName: Wood + Name: Wood + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 6009 + AegisName: Large_Magical_Fan + Name: Big Fan Of Magic + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6010 + AegisName: Pickaxe + Name: Hoe + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 6011 + AegisName: Blue_Card_B + Name: Blue B Card + Type: Etc + Weight: 10 + - Id: 6012 + AegisName: Blue_Card_C + Name: Blue C Card + Type: Etc + Weight: 10 + - Id: 6013 + AegisName: Blue_Card_J + Name: Blue J Card + Type: Etc + Weight: 10 + - Id: 6015 + AegisName: Blue_Card_M + Name: Blue M Card + Type: Etc + Weight: 10 + - Id: 6016 + AegisName: Blue_Card_Q + Name: Blue Q Card + Type: Etc + Weight: 10 + - Id: 6017 + AegisName: Blue_Card_T + Name: Blue T Card + Type: Etc + Weight: 10 + - Id: 6018 + AegisName: Blue_Card_V + Name: Blue V Card + Type: Etc + Weight: 10 + - Id: 6019 + AegisName: Blue_Card_Z + Name: Blue Z Card + Type: Etc + Weight: 10 + - Id: 6020 + AegisName: Fur + Name: Fur + Type: Etc + Buy: 704 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6021 + AegisName: Peaked_Hat + Name: Peaked Hat + Type: Etc + Buy: 433 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6022 + AegisName: Hard_Skin + Name: Hard Skin + Type: Etc + Buy: 884 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6023 + AegisName: Mystic_Horn + Name: Mystic Horn + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6024 + AegisName: 17Carat_Dia + Name: 17Carat Diamond + Type: Etc + Weight: 10 + - Id: 6025 + AegisName: Towel_Of_Memory + Name: Towel of Memory + Type: Etc + - Id: 6026 + AegisName: Marriage_Covenant + Name: Written Oath Of Marriage + Type: Etc + Weight: 10 + - Id: 6027 + AegisName: Crystal_Of_Feardoom + Name: Crystal Of Feardom + Type: Etc + - Id: 6028 + AegisName: Seal_Scroll + Name: Sealed Scroll + Type: Etc + - Id: 6029 + AegisName: Morocc_Tracing_Log + Name: Morocc Tracing Log + Type: Etc + - Id: 6030 + AegisName: Glitering_PaperA + Name: Glittering Paper + Type: Etc + Weight: 10 + - Id: 6031 + AegisName: Glitering_PaperB + Name: Glittering Paper + Type: Etc + Weight: 10 + - Id: 6032 + AegisName: Horn_Of_Hilsrion + Name: Horn of Hillslion + Type: Etc + Buy: 500 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6033 + AegisName: Horn_Of_Tendrilion + Name: Horn of Tendrilion + Type: Etc + Buy: 500 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6034 + AegisName: Weird_Part + Name: Weird Part + Type: Etc + - Id: 6035 + AegisName: Decaying_Stem + Name: Decaying Stem + Type: Etc + - Id: 6036 + AegisName: Invite_To_Meeting + Name: Meeting Invitation + Type: Etc + Weight: 10 + - Id: 6037 + AegisName: Rough_File + Name: Messy File + Type: Etc + - Id: 6038 + AegisName: Neat_Report + Name: Neat Report + Type: Etc + Weight: 10 + - Id: 6039 + AegisName: Piece_Of_Fish + Name: Piece of Fish + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6040 + AegisName: Some_Of_Report + Name: Part of a Report + Type: Etc + - Id: 6041 + AegisName: Strong_Bine + Name: Strong Vine + Type: Etc + Buy: 30 + Weight: 50 + - Id: 6042 + AegisName: Ordinary_Branch + Name: Ordinary Branch + Type: Etc + Weight: 10 + - Id: 6043 + AegisName: Letter_From_Lugen + Name: Letter from Lugen + Type: Etc + Weight: 10 + - Id: 6044 + AegisName: Letter_From_Otto + Name: Letter from Otto + Type: Etc + Weight: 10 + - Id: 6045 + AegisName: Supply_Box + Name: Supply Box + Type: Etc + - Id: 6048 + AegisName: Unidentified_Mineral + Name: Unidentified Mineral + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6049 + AegisName: Marlin + Name: Marlin + Type: Etc + Weight: 10 + - Id: 6050 + AegisName: Mercenary_Contract + Name: Mercenary Contract + Type: Etc + Weight: 10 + - Id: 6051 + AegisName: Gray_Hollow + Name: Gray Hollow + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6052 + AegisName: Ornamental_Hairpin + Name: Ornament Hairpin + Type: Etc + Buy: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6053 + AegisName: Yuanbao + Name: Circle Step + Type: Etc + Buy: 100 + Weight: 100 + - Id: 6054 + AegisName: Blue_Card_6 + Name: Number 6 Card + Type: Etc + Weight: 10 + - Id: 6055 + AegisName: Blue_Card_Annyver + Name: Character Week Card + Type: Etc + Weight: 10 + - Id: 6056 + AegisName: Blue_Card_Sary + Name: Character Year Card + Type: Etc + Weight: 10 + - Id: 6057 + AegisName: Blue_Card_E + Name: Character Lee Card + Type: Etc + Weight: 10 + - Id: 6058 + AegisName: Blue_Card_Ven + Name: Character Ben Card + Type: Etc + Weight: 10 + - Id: 6059 + AegisName: Blue_Card_Nt + Name: Character Project Card + Type: Etc + Weight: 10 + - Id: 6060 + AegisName: Moon_Admin_Ticket + Name: Month Viewing Ticket + Type: Etc + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6061 + AegisName: Plantain + Name: Blood Beginner + Type: Etc + Buy: 100 + Weight: 50 + - Id: 6062 + AegisName: Moon_Cake15 + Name: Letter Moon Cake + Type: Etc + Buy: 10 + Weight: 10 + - Id: 6063 + AegisName: Moon_Cake16 + Name: Letter Moon Cake + Type: Etc + Buy: 10 + Weight: 10 + - Id: 6064 + AegisName: Moon_Cake17 + Name: Letter Moon Cake + Type: Etc + Buy: 10 + Weight: 10 + - Id: 6065 + AegisName: Moon_Cake18 + Name: Letter Moon Cake + Type: Etc + Buy: 10 + Weight: 10 + - Id: 6066 + AegisName: Moon_Cake19 + Name: Letter Moon Cake + Type: Etc + Buy: 10 + Weight: 10 + - Id: 6067 + AegisName: Moon_Cake20 + Name: Letter Moon Cake + Type: Etc + Buy: 10 + Weight: 10 + - Id: 6068 + AegisName: Rabbit_Skin + Name: Leather Rabbit + Type: Etc + Buy: 10 + Weight: 10 + - Id: 6069 + AegisName: ABUNDANCE + Name: Abundance + Type: Etc + Buy: 10 + Weight: 10 + - Id: 6070 + AegisName: Shaman's_Old_Paper + Name: Shaman's Document + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6071 + AegisName: Broken_Sword + Name: Broken Sword + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6072 + AegisName: Wing_Of_Bizofnil + Name: Bijofnil Feather + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6073 + AegisName: Dragon's_Mane + Name: Dragon's Mane + Type: Etc + Flags: + BuyingStore: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6074 + AegisName: Bazett's_Order + Name: Bazett's Order + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6075 + AegisName: Crystalized_Teardrop + Name: Crystalized Teardrop + Type: Etc + Flags: + BuyingStore: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6076 + AegisName: Portable_Toolbox + Name: Portable Toolbox + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6077 + AegisName: Rough_Mineral + Name: Rough Mineral + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6078 + AegisName: Stone_Fragments + Name: Stone Fragment + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6079 + AegisName: Flower_Of_Alfheim + Name: Flower Of Alfheim + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6080 + AegisName: Manuk_Coin + Name: Manuk Coin + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6081 + AegisName: Splendide_Coin + Name: Splendide Coin + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6082 + AegisName: Spirit_Of_Alfheim + Name: Spirit Of Alfheim + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6083 + AegisName: Dolly_Capsule + Name: Capsule Dolls + Type: Etc + Weight: 10 + - Id: 6084 + AegisName: Bradium_Fragments + Name: Bradium Fragments + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6085 + AegisName: Shaggy_Muffler + Name: Shaggy Muffler + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6086 + AegisName: Withered_Flower + Name: Withered Flower + Type: Etc + Buy: 890 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6087 + AegisName: Crystal_Of_Soul_01 + Name: Spiritual Crystal + Type: Etc + Buy: 1050 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6088 + AegisName: Crystal_Of_Soul_02 + Name: Spiritual Crystal + Type: Etc + Buy: 1050 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6089 + AegisName: Piece_Of_Darkness + Name: Dark Piece + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6090 + AegisName: Purified_Bradium + Name: Refined Bradium + Type: Etc + Buy: 1100 + Weight: 50 + Flags: + BuyingStore: true + - Id: 6091 + AegisName: Dark_Red_Scale + Name: Dark Red Scale + Type: Etc + Buy: 200000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6092 + AegisName: Singing_Crystal_Piece + Name: Piece Of Singing Crystal + Type: Etc + Weight: 10 + - Id: 6093 + AegisName: Egg_Of_Draco + Name: Draco's Egg + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6094 + AegisName: Traditional_Cookie + Name: Traditional Sweets + Type: Etc + Buy: 20 + Weight: 10 + - Id: 6095 + AegisName: Flavored_Alcohol + Name: Flavored Alcohol + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6096 + AegisName: Fish_With_Blue_Back + Name: Fish With Blue Back + Type: Etc + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6097 + AegisName: Pumpkin_Pie_ + Name: Pumpkin Pie + Type: Etc + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6098 + AegisName: Small_Snow_Flower + Name: Small Snow Flower + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6099 + AegisName: Grilled_Rice_Cake + Name: Grilled Rice Cake + Type: Etc + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6100 + AegisName: Damp_Darkness + Name: Damp Darkness + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6101 + AegisName: Attendance_Card + Name: Attendance Card + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6102 + AegisName: Report_On_Splendide + Name: Report On Splendide + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6103 + AegisName: Report_On_Manuk + Name: Report On Manuk + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6104 + AegisName: Big_Cell + Name: Big Cell + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6105 + AegisName: Morning_Dew + Name: Morning Dew + Type: Etc + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6106 + AegisName: Well_Ripened_Berry + Name: Well Ripened Berry + Type: Etc + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6107 + AegisName: Sunset_On_The_Rock + Name: Sunset On The Rock + Type: Etc + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6108 + AegisName: Apple_Pudding + Name: Apple Pudding + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6109 + AegisName: Plant_Neutrient + Name: Plant Neutrient + Type: Etc + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6110 + AegisName: Vital_Flower + Name: Vital Flower + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6111 + AegisName: Mystic_Stone + Name: Mystic Stone + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6112 + AegisName: Fresh_Plant + Name: Fresh Plant + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6113 + AegisName: Vital_Flower_ + Name: Vital Flower + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6114 + AegisName: Flame_Gemstone + Name: Flame Gemstone + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6115 + AegisName: Bun_ + Name: Bun + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6116 + AegisName: Succu_Pet_Coupon + Name: Succubus Pet Exchange Coupon + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6117 + AegisName: Imp_Pet_Coupon + Name: Imp Pet Exchange Coupon + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6118 + AegisName: Chung_E_Pet_Coupon + Name: Chung E Exchange Coupon + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6119 + AegisName: Natural_Leather + Name: Cow Leather + Type: Etc + - Id: 6120 + AegisName: Face_Paint + Name: Face Paint + Type: Etc + Buy: 120 + Weight: 20 + Flags: + BuyingStore: true + - Id: 6121 + AegisName: Makeover_Brush + Name: Makeover Brush + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6122 + AegisName: Paint_Brush + Name: Paint Brush + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6123 + AegisName: Surface_Paint + Name: Surface Paint + Type: Etc + Buy: 200 + Weight: 30 + Flags: + BuyingStore: true + - Id: 6124 + AegisName: Wolf's_Flute + Name: Wolf Flute + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6125 + AegisName: Lucky_Box + Name: Spring Time Box + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6126 + AegisName: Happy_Box + Name: Summer Happy Box + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6127 + AegisName: Purification_Stone + Name: Purification Stone + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6128 + AegisName: Guillotine_Antidote + Name: Antidote + Type: Etc + Flags: + BuyingStore: true + - Id: 6129 + AegisName: Ticket_Nightmare + Name: Nightmare Terror Exchange Coupon + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6130 + AegisName: Ticket_Loli_Ruri + Name: Loli Ruri Exchange Coupon + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6131 + AegisName: Ticket_Goblin_Leader + Name: Goblin Leader Exchange Coupon + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6132 + AegisName: Ticket_Incubus + Name: Incubus Exchange Coupon + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6133 + AegisName: Ticket_Miyabi_Ningyo + Name: Miyabi Ningyo Exchange Coupon + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6134 + AegisName: Ticket_Whisper + Name: Giant Whisper Exchange Coupon + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6135 + AegisName: Ticket_Wicked_Nymph + Name: Evil Nymph Exchange Coupon + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6136 + AegisName: Ticket_Medusa + Name: Medusa Exchange Coupon + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6137 + AegisName: Ticket_Stoneshooter + Name: Stone Shooter Exchange Coupon + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6138 + AegisName: Ticket_Marionette + Name: Marionette Exchange Coupon + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6139 + AegisName: Ticket_Leafcat + Name: Leaf Cat Exchange Coupon + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6140 + AegisName: Ticket_Dullahan + Name: Dullahan Exchange Coupon + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6141 + AegisName: Ticket_Shinobi + Name: Shinobi Exchange Coupon + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6142 + AegisName: Ticket_Golem + Name: Golem Exchange Coupon + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6143 + AegisName: Ticket_Civil_Servant + Name: Civil Servant Exchange Coupon + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6144 + AegisName: Heartbroken_Tears + Name: Regrettable Tears + Type: Etc + Buy: 1000 + Weight: 2 + Flags: + BuyingStore: true + - Id: 6145 + AegisName: Vulcan_Bullet + Name: Vulcan Bullet + Type: Etc + Buy: 10 + Weight: 2 + Flags: + BuyingStore: true + - Id: 6146 + AegisName: Magic_Gear_Fuel + Name: Magic Gear Fuel + Type: Etc + Buy: 300 + Weight: 30 + Flags: + BuyingStore: true + - Id: 6147 + AegisName: Liquid_Condensed_Bullet + Name: Liquid Condensed Bullet + Type: Etc + Buy: 100 + Weight: 3 + Flags: + BuyingStore: true + - Id: 6148 + AegisName: Chocolate_Of_Eternity + Name: Eternity Of Chocolate + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6149 + AegisName: Plain_Chocolate + Name: Simple Chocolate + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6150 + AegisName: Key_Of_The_Mansion + Name: Key of The Mansion + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6151 + AegisName: Peice_Of_Great_Bradium + Name: Giant Bradium Fragment + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6152 + AegisName: Glittering_Crystal + Name: Glittering Crystal + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6153 + AegisName: Special_Exchange_Coupon + Name: Special Exchange Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6154 + AegisName: Broken_Horn_Pipe + Name: Broken Horn Pipe + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6155 + AegisName: Coke_Membership_Card + Name: Member Card + Type: Etc + - Id: 6156 + AegisName: Approval_Report + Name: Approval Report + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6157 + AegisName: Poring_Ticket + Name: Poring Exchange Ticket + Type: Etc + - Id: 6158 + AegisName: Drops_Ticket + Name: Drops Exchange Ticket + Type: Etc + - Id: 6159 + AegisName: Poporing_Ticket + Name: Poporing Exchange Ticket + Type: Etc + - Id: 6160 + AegisName: Lunatic_Ticket + Name: Lunatic Exchange Ticket + Type: Etc + - Id: 6161 + AegisName: Picky_Ticket + Name: Picky Exchange Ticket + Type: Etc + - Id: 6162 + AegisName: Pecopeco_Ticket + Name: Peco Peco Exchange Ticket + Type: Etc + - Id: 6163 + AegisName: Savage_Baby_Ticket + Name: Savage Babe Exchange Ticket + Type: Etc + - Id: 6164 + AegisName: Spore_Ticket + Name: Spore Exchange Ticket + Type: Etc + - Id: 6165 + AegisName: Poison_Spore_Ticket + Name: Poison Spore Exchange Ticket + Type: Etc + - Id: 6166 + AegisName: Chonchon_Ticket + Name: Chonchon Exchange Ticket + Type: Etc + - Id: 6167 + AegisName: Steel_Chonchon_Ticket + Name: Steel Chonchon Exchange Ticket + Type: Etc + - Id: 6168 + AegisName: Petit_Ticket + Name: Sky Petite Exchange Ticket + Type: Etc + - Id: 6169 + AegisName: Deviruchi_Ticket + Name: Deviruchi Exchange Ticket + Type: Etc + - Id: 6170 + AegisName: Isis_Ticket + Name: Isis Exchange Ticket + Type: Etc + - Id: 6171 + AegisName: Smokie_Ticket + Name: Smokie Exchange Ticket + Type: Etc + - Id: 6172 + AegisName: Dokebi_Ticket + Name: Dokebi Exchange Ticket + Type: Etc + - Id: 6173 + AegisName: Desert_Wolf_B_Ticket + Name: Baby Desert Wolf Exchange Ticket + Type: Etc + - Id: 6174 + AegisName: Yoyo_Ticket + Name: Yoyo Exchange Ticket + Type: Etc + - Id: 6175 + AegisName: Sohee_Ticket + Name: Sohee Exchange Ticket + Type: Etc + - Id: 6176 + AegisName: Rocker_Ticket + Name: Rocker Exchange Ticket + Type: Etc + - Id: 6177 + AegisName: Hunter_Fly_Ticket + Name: Hunter Fly Exchange Ticket + Type: Etc + - Id: 6178 + AegisName: Orc_Warrior_Ticket + Name: Orc Warrior Exchange Ticket + Type: Etc + - Id: 6179 + AegisName: Bapho_Jr_Ticket + Name: Bapho Jr. Exchange Ticket + Type: Etc + - Id: 6180 + AegisName: Munak_Ticket + Name: Munak Exchange Ticket + Type: Etc + - Id: 6181 + AegisName: Bongun_Ticket + Name: Bongun Exchange Ticket + Type: Etc + - Id: 6182 + AegisName: Goblin_Ticket + Name: Christmas Goblin Exchange Ticket + Type: Etc + - Id: 6183 + AegisName: Hardtack_Ticket + Name: Rice Cake Exchange Ticket + Type: Etc + - Id: 6184 + AegisName: Zherlthsh_Ticket + Name: Zherlthsh Exchange Ticket + Type: Etc + - Id: 6185 + AegisName: Alice_Ticket + Name: Alice Exchange Ticket + Type: Etc + - Id: 6186 + AegisName: Monkey_Wrench + Name: Monkey Wrench + Type: Etc + Buy: 500 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6187 + AegisName: Blank_Card + Name: Blank Card + Type: Etc + Buy: 20 + Weight: 10 + - Id: 6188 + AegisName: Slot_Coupon + Name: Slotting Advertisement + Type: Etc + Buy: 20 + Weight: 10 + - Id: 6189 + AegisName: Magic_Book_FB + Name: Spell Book (Fire Bolt) + Type: Etc + Flags: + BuyingStore: true + - Id: 6190 + AegisName: Magic_Book_CB + Name: Spell Book (Cold Bolt) + Type: Etc + Flags: + BuyingStore: true + - Id: 6191 + AegisName: Magic_Book_LB + Name: Spell Book (Lightening Bolt) + Type: Etc + Flags: + BuyingStore: true + - Id: 6192 + AegisName: Magic_Book_SG + Name: Spell Book (Storm Gust) + Type: Etc + Flags: + BuyingStore: true + - Id: 6193 + AegisName: Magic_Book_LOV + Name: Spell Book (Lord Of Vermilion) + Type: Etc + Flags: + BuyingStore: true + - Id: 6194 + AegisName: Magic_Book_MS + Name: Spell Book (Meteor Storm) + Type: Etc + Flags: + BuyingStore: true + - Id: 6195 + AegisName: Magic_Book_CM + Name: Spell Book (Comet) + Type: Etc + Flags: + BuyingStore: true + - Id: 6196 + AegisName: Magic_Book_TV + Name: Spell Book (Tetra Vortex) + Type: Etc + Flags: + BuyingStore: true + - Id: 6197 + AegisName: Magic_Book_TS + Name: Spell Book (Thunder Storm) + Type: Etc + Flags: + BuyingStore: true + - Id: 6198 + AegisName: Magic_Book_JT + Name: Spell Book (Jupitel Thunder) + Type: Etc + Flags: + BuyingStore: true + - Id: 6199 + AegisName: Magic_Book_WB + Name: Spell Book (Water Ball) + Type: Etc + Flags: + BuyingStore: true + - Id: 6200 + AegisName: Magic_Book_HD + Name: Spell Book (Heaven's Drive) + Type: Etc + Flags: + BuyingStore: true + - Id: 6201 + AegisName: Magic_Book_ES + Name: Spell Book (Earth Spike) + Type: Etc + Flags: + BuyingStore: true + - Id: 6202 + AegisName: Magic_Book_ES_ + Name: Spell Book (Earth Strain) + Type: Etc + Flags: + BuyingStore: true + - Id: 6203 + AegisName: Magic_Book_CL + Name: Spell Book (Chain Lightning) + Type: Etc + Flags: + BuyingStore: true + - Id: 6204 + AegisName: Magic_Book_CR + Name: Spell Book (Crimson Rock) + Type: Etc + Flags: + BuyingStore: true + - Id: 6205 + AegisName: Magic_Book_DL + Name: Spell Book (Drain Life) + Type: Etc + Flags: + BuyingStore: true + - Id: 6206 + AegisName: I_Love_You + Name: I Love You + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6207 + AegisName: Thank_You + Name: Thank You + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6208 + AegisName: I_Respect_You + Name: I Respect You + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6209 + AegisName: Glory_Of_Knights + Name: Knight's Honor + Type: Etc + - Id: 6210 + AegisName: Seed_Of_Horny_Plant + Name: Seed Of Thorny Plant + Type: Etc + Buy: 600 + Weight: 1 + Flags: + BuyingStore: true + - Id: 6211 + AegisName: Bloodsuck_Plant_Seed + Name: Bloodsuck Plant Seed + Type: Etc + Buy: 800 + Weight: 1 + Flags: + BuyingStore: true + - Id: 6212 + AegisName: Bomb_Mushroom_Spore + Name: Bomb Mushroom Spore + Type: Etc + Buy: 1000 + Weight: 1 + Flags: + BuyingStore: true + - Id: 6213 + AegisName: Explosive_Powder + Name: Explosive Powder + Type: Etc + Buy: 500 + Weight: 1 + Flags: + BuyingStore: true + - Id: 6214 + AegisName: Smoke_Powder + Name: Smoke Powder + Type: Etc + Buy: 500 + Weight: 1 + Flags: + BuyingStore: true + - Id: 6215 + AegisName: Tear_Gas + Name: Tear Gas + Type: Etc + Buy: 500 + Weight: 1 + Flags: + BuyingStore: true + - Id: 6216 + AegisName: Oil_Bottle + Name: Oil Bottle + Type: Etc + Buy: 1000 + Weight: 1 + Flags: + BuyingStore: true + - Id: 6217 + AegisName: Mandragora_Flowerpot + Name: Mandragora Flowerpot + Type: Etc + Buy: 2000 + Weight: 1 + Flags: + BuyingStore: true + - Id: 6218 + AegisName: Disin_Delivery_Box + Name: Delivery_Daishin_Box + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6219 + AegisName: Para_Team_Mark + Name: Eden Group Mark + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6220 + AegisName: Mysterious_Dyestuff + Name: Mysterious Dyestuff + Type: Etc + Weight: 10 + - Id: 6221 + AegisName: Mystic_Leaf_Cat_Ball + Name: Mystic Leaf Cat Ball + Type: Etc + - Id: 6222 + AegisName: Shining_Beads + Name: Shining Beads + Type: Etc + Buy: 20 + - Id: 6223 + AegisName: Carnium + Name: Carnium + Type: Etc + Buy: 2000 + Weight: 150 + Flags: + BuyingStore: true + - Id: 6224 + AegisName: Bradium + Name: Bradium + Type: Etc + Buy: 2000 + Weight: 150 + Flags: + BuyingStore: true + - Id: 6225 + AegisName: HD_Carnium + Name: HD Carnium + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6226 + AegisName: HD_Bradium + Name: HD Bradium + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6228 + AegisName: Guarantee_Weapon_9Up + Name: +9 Weapon Refine Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6229 + AegisName: Guarantee_Weapon_8Up + Name: +8 Weapon Refine Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6230 + AegisName: Guarantee_Weapon_7Up + Name: +7 Weapon Refine Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6231 + AegisName: Guarantee_Weapon_6Up + Name: +6 Weapon Refine Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6232 + AegisName: Guarantee_Armor_9Up + Name: +9 Armor Refine Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6233 + AegisName: Guarantee_Armor_8Up + Name: +8 Armor Refine Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6234 + AegisName: Guarantee_Armor_7Up + Name: +7 Armor Refine Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6235 + AegisName: Guarantee_Armor_6Up + Name: +6 Armor Refine Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6236 + AegisName: Blue_Card_7 + Name: Blue Card 7 + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6237 + AegisName: Guarana_Fruit + Name: Guarana Fruit + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6238 + AegisName: Guarantee_Weapon_11Up + Name: +11 Weapon Refine Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6239 + AegisName: Guarantee_Armor_11Up + Name: +11 Armor Refine Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6240 + AegisName: HD_Oridecon + Name: HD Oridecon + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6241 + AegisName: HD_Elunium + Name: HD Elunium + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6242 + AegisName: Midgard_Coin + Name: Midgard Coin + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6243 + AegisName: Exchange_Coupon + Name: Exchange Coupon + Type: Etc + - Id: 6244 + AegisName: Gun_Powder + Name: Gun Powder + Type: Etc + Buy: 10 + Weight: 1 + Flags: + BuyingStore: true + - Id: 6245 + AegisName: Black_Powder + Name: Black Powder + Type: Etc + Buy: 100 + Weight: 1 + Flags: + BuyingStore: true + - Id: 6246 + AegisName: Yellow_Powder + Name: Yellow Powder + Type: Etc + Buy: 100 + Weight: 1 + Flags: + BuyingStore: true + - Id: 6247 + AegisName: White_Powder + Name: White Powder + Type: Etc + Buy: 100 + Weight: 1 + Flags: + BuyingStore: true + - Id: 6248 + AegisName: Melange_Pot + Name: Melange Pot + Type: Etc + Buy: 600 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6249 + AegisName: Savage_Meat + Name: Savage Meat + Type: Etc + Buy: 100 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6250 + AegisName: Cooking_Skewer + Name: Cooking Skewer + Type: Etc + Buy: 300 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6251 + AegisName: Black_Charcoal + Name: Black Charcoal + Type: Etc + Buy: 300 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6252 + AegisName: Wolf_Blood + Name: Blood Of Wolf + Type: Etc + Buy: 100 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6253 + AegisName: Cold_Ice + Name: Cold Ice + Type: Etc + Buy: 100 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6254 + AegisName: Beef_Head_Meat + Name: Beef Head + Type: Etc + Buy: 100 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6255 + AegisName: Large_Cookpot + Name: Large Cookpot + Type: Etc + Buy: 500 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6256 + AegisName: Ice_Fragment + Name: Ice Piece + Type: Etc + Buy: 100 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6257 + AegisName: Ice_Crystal + Name: Ice Crystal + Type: Etc + Buy: 100 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6258 + AegisName: Comodo_Tropic_Fruit + Name: Comodo Tropical Fruit + Type: Etc + Buy: 800 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6259 + AegisName: Drocera_Tentacle + Name: Drosera Tentacle + Type: Etc + Buy: 100 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6260 + AegisName: Petti_Tail + Name: Petite's Tail + Type: Etc + Buy: 100 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6261 + AegisName: Fine_Noodle + Name: Fine Noodles + Type: Etc + Buy: 500 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6262 + AegisName: Cool_Gravy + Name: Cool Gravy + Type: Etc + Buy: 400 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6263 + AegisName: Coconut_Fruit + Name: Coconut Fruit + Type: Etc + Buy: 100 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6264 + AegisName: Melon + Name: Melon + Type: Etc + Buy: 100 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6265 + AegisName: Pineapple + Name: Pineapple + Type: Etc + Buy: 100 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6266 + AegisName: Cheat_Key + Name: Key Of Deception + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6267 + AegisName: Virtual_Key + Name: Key Of Illusion + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6268 + AegisName: Mirth_Key + Name: Key Of Gaiety + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6269 + AegisName: Master_Brush + Name: A Master's Blush + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6270 + AegisName: Mins_Picture + Name: A Picture Of Minstrel Song + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6271 + AegisName: Mins_Receipt + Name: Receipt + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6272 + AegisName: Experiment_Seed + Name: Experiment Seed + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6273 + AegisName: Altered_Seed + Name: Seed For Experiment + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6274 + AegisName: Saint_Cloth_Piece + Name: A Piece Of Cloth Of A Saint + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6275 + AegisName: King_Shield + Name: Shield Of King + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6276 + AegisName: Clear_Reagent + Name: Clear Reagent + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6277 + AegisName: Red_Reagent + Name: Red Reagent + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6278 + AegisName: Black_Reagent + Name: Black Reagent + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6279 + AegisName: Apple_Bomb_CB + Name: Apple Bomb Guidebook + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6280 + AegisName: Pinepple_Bomb_CB + Name: Pineapple Bomb Guidebook + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6281 + AegisName: Coconut_Bomb_CB + Name: Coconut Fruit Bomb Guidebook + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6282 + AegisName: Melon_Bomb_CB + Name: Melon Bomb Guidebook + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6283 + AegisName: Banana_Bomb_CB + Name: Banana Bomb Guidebook + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6284 + AegisName: Plant_Genetic_Grow + Name: How To Grow Plant Genes + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6285 + AegisName: Quality_Potion_Book + Name: "Manual: How To Make High Quality Potion" + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6286 + AegisName: F_Max_Weight_Up_Scroll + Name: F Max Weight Up Scroll + Type: Etc + Weight: 10 + - Id: 6287 + AegisName: F_Clothing_Dye_Coupon + Name: F Clothing Dye Coupon + Type: Etc + - Id: 6288 + AegisName: F_Happy_Box + Name: F Happy Box + Type: Etc + Buy: 10 + - Id: 6289 + AegisName: F_Mysterious_Dyestuff + Name: F Mysterious Dyestuff + Type: Etc + Weight: 10 + - Id: 6290 + AegisName: F_New_Style_Coupon + Name: F New Style Coupon + Type: Etc + Weight: 10 + - Id: 6291 + AegisName: F_Enriched_Elunium + Name: F Enriched Elunium + Type: Etc + Buy: 2 + Weight: 10 + - Id: 6292 + AegisName: F_Enriched_Oridecon + Name: F Enriched Oridecon + Type: Etc + Buy: 2 + Weight: 10 + - Id: 6293 + AegisName: F_Token_Of_Siegfried + Name: F Token Of Siegfried + Type: Etc + Buy: 2 + Weight: 10 + - Id: 6294 + AegisName: F_Marriage_Covenant + Name: F Marriage Covenant + Type: Etc + Weight: 10 + - Id: 6295 + AegisName: F_Clothing_Dye_Coupon2 + Name: F Clothing Dye Coupon2 + Type: Etc + - Id: 6296 + AegisName: RF_Taining_Notice + Name: Training Notice + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6297 + AegisName: Bottle_To_Throw + Name: Throwing Bottle + Type: Etc + Buy: 300 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6298 + AegisName: Pumpkin_Head_Crushed + Name: Pumpkin Head Crushed + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6299 + AegisName: Worn_Cloth_Piece + Name: Worn Cloth Piece + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6300 + AegisName: J_7Draw + Name: event + Type: Etc + Buy: 20 + Weight: 10 + - Id: 6301 + AegisName: J_Semi_Draw + Name: event + Type: Etc + Buy: 20 + Weight: 10 + - Id: 6302 + AegisName: GM_Handwriting + Name: GM Handwriting + Type: Etc + Buy: 20004 + - Id: 6303 + AegisName: Changed_Hydra_Ball + Name: Changed Hydra Ball + Type: Etc + - Id: 6304 + AegisName: Sapa_Feat_Cert + Name: Proof Of Sapha's Honor + Type: Etc + - Id: 6305 + AegisName: Frozen_Skin_Piece + Name: Frozen Piece Of Skin + Type: Etc + - Id: 6306 + AegisName: Solid_Bloodstain + Name: Hard Bloodstain + Type: Etc + - Id: 6307 + AegisName: Suspicious_Magic_Stone + Name: Cursed Magical Stone + Type: Etc + - Id: 6308 + AegisName: Unidentified_Relic + Name: Unidentified Relic + Type: Etc + - Id: 6309 + AegisName: E_Max_Weight_Up_Scroll + Name: E Max Weight Up Scroll + Type: Etc + Weight: 10 + - Id: 6310 + AegisName: E_Cloth_Dye_Coupon + Name: E Cloth Dye Coupon + Type: Etc + - Id: 6311 + AegisName: E_Happy_Box + Name: E Happy Box + Type: Etc + Buy: 10 + - Id: 6312 + AegisName: E_Mysterious_Dyestuff + Name: E Mysterious Dyestuff + Type: Etc + Weight: 10 + - Id: 6313 + AegisName: E_New_Style_Coupon + Name: E New Style Coupon + Type: Etc + Weight: 10 + - Id: 6314 + AegisName: E_Enriched_Elunium + Name: E Enriched Elunium + Type: Etc + Buy: 2 + Weight: 10 + - Id: 6315 + AegisName: E_Enriched_Oridecon + Name: E Enriched Oridecon + Type: Etc + Buy: 2 + Weight: 10 + - Id: 6316 + AegisName: E_Token_Of_Siegfried + Name: E Token Of Siegfried + Type: Etc + Buy: 2 + Weight: 10 + - Id: 6317 + AegisName: E_Marriage_Covenant + Name: E Marriage Covenant + Type: Etc + Weight: 10 + - Id: 6318 + AegisName: E_Cloth_Dye_Coupon2 + Name: E Cloth Dye Coupon2 + Type: Etc + - Id: 6319 + AegisName: Small_Bradium + Name: Small Bradium + Type: Etc + Buy: 324 + Weight: 10 + - Id: 6320 + AegisName: Premium_Reset_Stone + Name: Premium Reset Stone + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6321 + AegisName: Rakehorn_Helm + Name: Rakehorn Helm + Type: Etc + Buy: 822 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6322 + AegisName: Antler_Helm + Name: Antler Helmet + Type: Etc + Buy: 800 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6323 + AegisName: Twinhorn_Helm + Name: Two-Horned Helmet + Type: Etc + Buy: 728 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6324 + AegisName: Singlehorn_Helm + Name: Single Horned Helmet + Type: Etc + Buy: 702 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6325 + AegisName: White_Spider_Limb + Name: White Spider Limb + Type: Etc + Buy: 1004 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6326 + AegisName: Queen_Wing_Piece + Name: Queen Wing Piece + Type: Etc + Buy: 1630 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6328 + AegisName: Calender_January + Name: Calender January + Type: Etc + Buy: 20 + - Id: 6329 + AegisName: Calender_February + Name: Calender February + Type: Etc + Buy: 20 + - Id: 6330 + AegisName: Calender_March + Name: Calender March + Type: Etc + Buy: 20 + - Id: 6331 + AegisName: Calender_April + Name: Calender April + Type: Etc + Buy: 20 + - Id: 6332 + AegisName: Calender_May + Name: Calender May + Type: Etc + Buy: 20 + - Id: 6333 + AegisName: Calender_June + Name: Calender June + Type: Etc + Buy: 20 + - Id: 6334 + AegisName: Calender_July + Name: Calender July + Type: Etc + Buy: 20 + - Id: 6335 + AegisName: Calender_August + Name: Calender August + Type: Etc + Buy: 20 + - Id: 6336 + AegisName: Calender_September + Name: Calender September + Type: Etc + Buy: 20 + - Id: 6337 + AegisName: Calender_October + Name: Calender October + Type: Etc + Buy: 20 + - Id: 6338 + AegisName: Calender_November + Name: Calender November + Type: Etc + Buy: 20 + - Id: 6339 + AegisName: Calender_December + Name: Calender December + Type: Etc + Buy: 20 + - Id: 6340 + AegisName: Fade_Notation_Green + Name: Fade Notation Green + Type: Etc + Weight: 10 + - Id: 6341 + AegisName: Fade_Notation_Red + Name: Fade Notation Red + Type: Etc + Weight: 10 + - Id: 6342 + AegisName: Fade_Notation_Purple + Name: Fade Notation Purple + Type: Etc + Weight: 10 + - Id: 6343 + AegisName: Fade_Notation_Blue + Name: Fade Notation Blue + Type: Etc + Weight: 10 + - Id: 6344 + AegisName: Muscle_Story + Name: Muscle Story + Type: Etc + - Id: 6345 + AegisName: Love_Ball + Name: Love Ball + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6346 + AegisName: Seagate_Mark + Name: Seagate Mark + Type: Etc + - Id: 6347 + AegisName: Bless_Word_Paper1 + Name: Bless Word Paper + Type: Etc + Buy: 4020 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6348 + AegisName: Bless_Word_Paper2 + Name: Bless Word Paper + Type: Etc + Buy: 4020 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6349 + AegisName: Bless_Word_Paper3 + Name: Bless Word Paper + Type: Etc + Buy: 4020 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6350 + AegisName: Bless_Word_Paper4 + Name: Bless Word Paper + Type: Etc + Buy: 4020 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6351 + AegisName: Bless_Word_Paper5 + Name: Bless Word Paper + Type: Etc + Buy: 4020 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6352 + AegisName: Bless_Word_Paper6 + Name: Bless Word Paper + Type: Etc + Buy: 4020 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6353 + AegisName: Bless_Word_Paper7 + Name: Bless Word Paper + Type: Etc + Buy: 4020 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6354 + AegisName: Bless_Word_Paper8 + Name: Bless Word Paper + Type: Etc + Buy: 4020 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6355 + AegisName: Bless_Word_Paper9 + Name: Bless Word Paper + Type: Etc + Buy: 4020 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6356 + AegisName: Bless_Word_Paper10 + Name: Bless Word Paper + Type: Etc + Buy: 4020 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6357 + AegisName: Fortune_Cookie_Fail + Name: Fortune Cookie Fail + Type: Etc + Buy: 4020 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6358 + AegisName: Free_Cash_Coupon + Name: Free Cash Coupon + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6359 + AegisName: Guidebook_Exchange + Name: Guidebook Exchange + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6360 + AegisName: Scarlet_Pts + Name: Scarlet Point + Type: Etc + Buy: 100 + Weight: 5 + Flags: + BuyingStore: true + - Id: 6361 + AegisName: Indigo_Pts + Name: Indigo Point + Type: Etc + Buy: 100 + Weight: 5 + Flags: + BuyingStore: true + - Id: 6362 + AegisName: Yellow_Wish_Pts + Name: Yellow Wish Point + Type: Etc + Buy: 100 + Weight: 5 + Flags: + BuyingStore: true + - Id: 6363 + AegisName: Lime_Green_Pts + Name: Lime Green Point + Type: Etc + Buy: 100 + Weight: 5 + Flags: + BuyingStore: true + - Id: 6369 + AegisName: Amatsu_Bead_A + Name: Amatsu Bead A + Type: Etc + - Id: 6370 + AegisName: Amatsu_Bead_Ma + Name: Amatsu Bead Ma + Type: Etc + - Id: 6371 + AegisName: Amatsu_Bead_Tsu + Name: Amatsu Bead Tsu + Type: Etc + - Id: 6372 + AegisName: Amatsu_Bead_Jam + Name: Amatsu Bead Jam + Type: Etc + - Id: 6373 + AegisName: Amatsu_Bead_Bo + Name: Amatsu Bead Bo + Type: Etc + - Id: 6374 + AegisName: Amatsu_Bead_Ree + Name: Amatsu Bead Ree + Type: Etc + - Id: 6375 + AegisName: Amatsu_Bead_! + Name: Amatsu Bead ! + Type: Etc + - Id: 6376 + AegisName: KVM_Badge + Name: KVM Badge + Type: Etc + - Id: 6377 + AegisName: Buy_Market_Permit + Name: Buy Market Permit + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6378 + AegisName: Winning_Mark + Name: Winning Mark + Type: Etc + - Id: 6379 + AegisName: 7Star_Board + Name: 7Star Board + Type: Etc + Buy: 20 + Weight: 10 + - Id: 6380 + AegisName: Mora_Coin + Name: Mora Coin + Type: Etc + Buy: 20 + - Id: 6381 + AegisName: Field_Shovel + Name: Field Shovel + Type: Etc + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6382 + AegisName: Urn + Name: Urn + Type: Etc + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6383 + AegisName: Clue_Of_Lope + Name: Lope's Clue + Type: Etc + Buy: 20 + Weight: 10 + - Id: 6384 + AegisName: Ring_Of_Lope + Name: Lope's Ring + Type: Etc + - Id: 6385 + AegisName: Research_Tool_Bag + Name: Research Tool Bag + Type: Etc + - Id: 6386 + AegisName: Bathtub_R_Sample + Name: Bath Water Sample + Type: Etc + Buy: 20 + - Id: 6387 + AegisName: Teeth_Sample + Name: Teeth Sample + Type: Etc + Buy: 20 + - Id: 6388 + AegisName: Scale_Sample + Name: Scale Sample + Type: Etc + Buy: 20 + - Id: 6389 + AegisName: Puddle_R_Sample + Name: Sample Of Puddle Research + Type: Etc + Buy: 20 + - Id: 6390 + AegisName: Small_Pocket + Name: Small Pocket + Type: Etc + Buy: 20 + - Id: 6391 + AegisName: Splendid_Supply_Kit + Name: Splendid Supply Kit + Type: Etc + Buy: 20 + Weight: 2000 + - Id: 6392 + AegisName: Bradium_Box + Name: Bradium Box + Type: Etc + Buy: 20 + Weight: 10 + - Id: 6393 + AegisName: Round_Feather + Name: Round Feather + Type: Etc + Buy: 700 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6394 + AegisName: Golden_Feather + Name: Golden Feather + Type: Etc + Buy: 650 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6395 + AegisName: Angel_Magic_Power + Name: Angel Magic Power + Type: Etc + Buy: 820 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6396 + AegisName: Auger_Of_Spirit + Name: Auger Of Spirit + Type: Etc + Weight: 10 + - Id: 6456 + AegisName: Guarantee_Weapon_5Up + Name: +5 Weapon Refine Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6457 + AegisName: Guarantee_Armor_5Up + Name: +5 Armor Refine Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6493 + AegisName: Makibishi + Name: Makibishi + Type: Etc + Buy: 30 + Weight: 1 + Flags: + BuyingStore: true + - Id: 6499 + AegisName: Ancient_Grudge + Name: Ancient Grudge + Type: Etc + Buy: 500 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6512 + AegisName: Charm_Fire + Name: Fire Amulet + Type: Etc + Buy: 100 + Weight: 1 + Flags: + BuyingStore: true + - Id: 6513 + AegisName: Charm_Ice + Name: Ice Amulet + Type: Etc + Buy: 100 + Weight: 1 + Flags: + BuyingStore: true + - Id: 6514 + AegisName: Charm_Wind + Name: Wind Amulet + Type: Etc + Buy: 100 + Weight: 1 + Flags: + BuyingStore: true + - Id: 6515 + AegisName: Charm_Earth + Name: Earth Amulet + Type: Etc + Buy: 100 + Weight: 1 + Flags: + BuyingStore: true + - Id: 7001 + AegisName: Mould_Powder + Name: Mould Powder + Type: Etc + Buy: 466 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7002 + AegisName: Ogre_Tooth + Name: Ogre Tooth + Type: Etc + Buy: 658 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7003 + AegisName: Anolian_Skin + Name: Anolian Skin + Type: Etc + Buy: 968 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7004 + AegisName: Mud_Lump + Name: Mud Lump + Type: Etc + Buy: 876 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7005 + AegisName: Skull + Name: Skull + Type: Etc + Buy: 1044 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7006 + AegisName: Wing_Of_Red_Bat + Name: Wing of Red Bat + Type: Etc + Buy: 168 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7007 + AegisName: Claw_Of_Rat + Name: Claw of Rat + Type: Etc + Buy: 748 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7008 + AegisName: Stiff_Horn + Name: Stiff Horn + Type: Etc + Buy: 636 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7009 + AegisName: Glitter_Shell + Name: Glitter Shell + Type: Etc + Buy: 528 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7010 + AegisName: Tail_Of_Steel_Scorpion + Name: Tail of Steel Scorpion + Type: Etc + Buy: 548 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7011 + AegisName: Claw_Of_Monkey + Name: Claw of Monkey + Type: Etc + Buy: 466 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7012 + AegisName: Tough_Scalelike_Stem + Name: Tough Scalelike Stem + Type: Etc + Buy: 412 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7013 + AegisName: Coral_Reef + Name: Coral Reef + Type: Etc + Buy: 772 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7014 + AegisName: Old_Portrait + Name: Old Portrait + Type: Etc + Buy: 1500 + Weight: 100 + Flags: + BuyingStore: true + - Id: 7015 + AegisName: Bookclip_In_Memory + Name: Bookclip in Memory + Type: Etc + Buy: 3000 + Weight: 20 + Flags: + BuyingStore: true + - Id: 7016 + AegisName: Spoon_Stub + Name: Spoon Stub + Type: Etc + Buy: 2500 + Weight: 20 + Flags: + BuyingStore: true + - Id: 7017 + AegisName: Executioner's_Mitten + Name: Executioner's Mitten + Type: Etc + Buy: 4500 + Weight: 30 + Flags: + BuyingStore: true + - Id: 7018 + AegisName: Young_Twig + Name: Young Twig + Type: Etc + Buy: 50 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7019 + AegisName: Loki's_Whispers + Name: Loki's Whispers + Type: Etc + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7020 + AegisName: Mother's_Nightmare + Name: Mother's Nightmare + Type: Etc + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7021 + AegisName: Foolishness_Of_Blind + Name: Foolishness of the Blind + Type: Etc + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7022 + AegisName: Old_Hilt + Name: Old Hilt + Type: Etc + Buy: 150 + Weight: 30 + Flags: + BuyingStore: true + - Id: 7023 + AegisName: Blade_Lost_In_Darkness + Name: Blade Lost in Darkness + Type: Etc + Buy: 12000 + Weight: 40 + Flags: + BuyingStore: true + - Id: 7024 + AegisName: Bloody_Edge + Name: Bloody Edge + Type: Etc + Buy: 10000 + Weight: 40 + Flags: + BuyingStore: true + - Id: 7025 + AegisName: Lucifer's_Lament + Name: Lucifer's Lament + Type: Etc + Buy: 30000 + Weight: 50 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7026 + AegisName: Key_Of_Clock_Tower + Name: Key of Clock Tower + Type: Etc + Buy: 100 + Weight: 30 + Flags: + BuyingStore: true + - Id: 7027 + AegisName: Underground_Key + Name: Key of Underground + Type: Etc + Buy: 100 + Weight: 30 + Flags: + BuyingStore: true + - Id: 7028 + AegisName: Invite_For_Duel + Name: Invite for Duel + Type: Etc + - Id: 7029 + AegisName: Admission_For_Duel + Name: Admission for Duel + Type: Etc + - Id: 7030 + AegisName: Claw_Of_Desert_Wolf + Name: Claw of Desert Wolf + Type: Etc + Buy: 208 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7031 + AegisName: Old_Frying_Pan + Name: Old Frying Pan + Type: Etc + Buy: 196 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7032 + AegisName: Piece_Of_Egg_Shell + Name: Piece of Egg Shell + Type: Etc + Buy: 168 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7033 + AegisName: Poison_Spore + Name: Poison Spore + Type: Etc + Buy: 114 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7034 + AegisName: Red_Socks_With_Holes + Name: Red Stocking + Type: Etc + Buy: 100 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7035 + AegisName: Matchstick + Name: Matchstick + Type: Etc + Buy: 100 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7036 + AegisName: Fang_Of_Garm + Name: Fang of Hatii + Type: Etc + Buy: 100 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7037 + AegisName: Trade_Coupon + Name: Coupon + Type: Etc + Buy: 100 + Weight: 10 + - Id: 7038 + AegisName: Yarn + Name: Yarn + Type: Etc + Buy: 100 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7039 + AegisName: Novice_Nametag + Name: Newbie Tag + Type: Etc + Weight: 10 + - Id: 7040 + AegisName: Megaphone + Name: Megaphone + Type: Etc + Buy: 1 + Weight: 10 + - Id: 7041 + AegisName: Fine_Grit + Name: Fine Grit + Type: Etc + Buy: 120 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7042 + AegisName: Leather_Bag_Of_Infinity + Name: Leather Bag of Infinity + Type: Etc + Buy: 1 + Weight: 10 + - Id: 7043 + AegisName: Fine_Sand + Name: Fine Sand + Type: Etc + Buy: 100 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7044 + AegisName: Vigorgra + Name: Vigorgra + Type: Etc + Buy: 1 + Weight: 10 + - Id: 7045 + AegisName: Magic_Paint + Name: Magic Paint + Type: Etc + Buy: 1 + Weight: 10 + - Id: 7046 + AegisName: Cart_Parts + Name: Cart Parts + Type: Etc + Buy: 1 + Weight: 10 + - Id: 7047 + AegisName: Alice's_Apron + Name: Alice's Apron + Type: Etc + Buy: 2424 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7048 + AegisName: Talon_Of_Griffin + Name: Talon of Griffon + Type: Etc + Buy: 5418 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7049 + AegisName: Stone + Name: Stone + Type: Etc + Weight: 30 + Flags: + BuyingStore: true + - Id: 7050 + AegisName: Cotton_Mat + Name: Cotton Mat + Type: Etc + Buy: 100 + Weight: 10 + - Id: 7051 + AegisName: Silk_Mat + Name: Silk Mat + Type: Etc + Buy: 100 + Weight: 10 + - Id: 7052 + AegisName: Old_Magazine + Name: Old Papers + Type: Etc + Buy: 100 + Weight: 10 + - Id: 7053 + AegisName: Cyfar + Name: Cyfar + Type: Etc + Buy: 772 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7054 + AegisName: Brigan + Name: Brigan + Type: Etc + Buy: 746 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7055 + AegisName: Animal_Pooopoo + Name: Animal Poop + Type: Etc + Buy: 100 + Weight: 50 + Flags: + BuyingStore: true + - Id: 7056 + AegisName: Payroll_Of_Kafra + Name: Payment Statement for Kafra Employee + Type: Etc + Buy: 1 + Weight: 50 + Flags: + BuyingStore: true + - Id: 7057 + AegisName: Gallar_Horn + Name: Gjallar + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7058 + AegisName: Gullraifnir + Name: Gleipnir + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7059 + AegisName: Cargo_Free_Ticket + Name: Free Ticket for Kafra Storage + Type: Etc + Buy: 1 + - Id: 7060 + AegisName: Warp_Free_Ticket + Name: Free Ticket for Kafra Transportation + Type: Etc + Buy: 1 + - Id: 7061 + AegisName: Cart_Free_Ticket + Name: Free Ticket for the Cart Service + Type: Etc + Buy: 1 + - Id: 7062 + AegisName: Broken_Turtle_Shell + Name: Broken Turtle Shell + Type: Etc + Buy: 280 + Weight: 10 + - Id: 7063 + AegisName: Soft_Feather + Name: Soft Feather + Type: Etc + Buy: 280 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7064 + AegisName: Dragon_Fly_Wing + Name: Wing of Dragonfly + Type: Etc + Buy: 520 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7065 + AegisName: Sea_Otter_Leather + Name: Sea-Otter Fur + Type: Etc + Buy: 820 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7066 + AegisName: Ice_Piece + Name: Ice Cubic + Type: Etc + Buy: 660 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7067 + AegisName: Stone_Piece + Name: Stone Fragment + Type: Etc + Buy: 640 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7068 + AegisName: Burn_Tree + Name: Burnt Tree + Type: Etc + Buy: 722 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7069 + AegisName: Broken_Armor_Piece + Name: Destroyed Armor + Type: Etc + Buy: 1042 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7070 + AegisName: Broken_Shell + Name: Broken Shell + Type: Etc + Buy: 900 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7071 + AegisName: Tatters_Clothes + Name: Tattered Clothes + Type: Etc + Buy: 1280 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7072 + AegisName: Rust_Suriken + Name: Old Shuriken + Type: Etc + Buy: 1780 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7073 + AegisName: Jewel_Of_Prayer + Name: Freya's Jewel + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7074 + AegisName: Iron_Glove + Name: Thor's Gauntlets + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7075 + AegisName: Iron_Maiden + Name: Iron Maiden + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7076 + AegisName: Mystery_Wheel + Name: Wheel of the Unknown + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7077 + AegisName: Silver_Fancy + Name: Silver Ornament + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7078 + AegisName: Anger_Of_Valkurye + Name: Wrath of Valkyrie + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7079 + AegisName: Feather_Of_Angel + Name: Feather of Angel Wing + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7080 + AegisName: Foot_Step_Of_Cat + Name: Cat Tread + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7081 + AegisName: Beard_Of_Women + Name: Woman's Moustache + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7082 + AegisName: Root_Of_Stone + Name: Root of Stone + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7083 + AegisName: Soul_Of_Fish + Name: Spirit of Fish + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7084 + AegisName: Saliva_Of_Bird + Name: Sputum of Bird + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7085 + AegisName: Tendon_Of_Bear + Name: Sinew of Bear + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7086 + AegisName: Symbol_Of_Sun + Name: Emblem of the Sun God + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7087 + AegisName: Breath_Of_Soul + Name: Breath of Spirit + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7088 + AegisName: Crystal_Of_Snow + Name: Snow Crystal + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7089 + AegisName: Indication_Of_Tempest + Name: Omen of Tempest + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7090 + AegisName: Slilince_Wave + Name: Ripple + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7091 + AegisName: Rough_Billows + Name: Billow + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7092 + AegisName: Air_Stream + Name: Drifting Air + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7093 + AegisName: Wheel + Name: Cogwheel + Type: Etc + Buy: 1512 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7094 + AegisName: Mystery_Piece + Name: Fragment + Type: Etc + Buy: 1344 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7095 + AegisName: Broken_Steel_Piece + Name: Metal Fragment + Type: Etc + Buy: 1075 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7096 + AegisName: Cold_Magma + Name: Lava + Type: Etc + Buy: 1109 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7097 + AegisName: Burning_Heart + Name: Burning Heart + Type: Etc + Buy: 924 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7098 + AegisName: Live_Coal + Name: Live Coal + Type: Etc + Buy: 638 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7099 + AegisName: Old_Magic_Circle + Name: Worn-out Magic Scroll + Type: Etc + Buy: 773 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7100 + AegisName: Sharp_Leaf + Name: Sharp Leaf + Type: Etc + Buy: 806 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7101 + AegisName: Peco_Wing_Feather + Name: Peco Peco Feather + Type: Etc + Buy: 454 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7102 + AegisName: Hideous_Dream + Name: Nightmare + Type: Etc + Buy: 1075 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7103 + AegisName: Unknown_Liquid_Bottle + Name: Unknown Liquid Bottle + Type: Etc + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7104 + AegisName: Fake_Angel_Wing + Name: False Angel Wing + Type: Etc + Buy: 756 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7105 + AegisName: Fake_Angel_Loop + Name: False Heaven Ring + Type: Etc + Buy: 924 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7106 + AegisName: Goat's_Horn + Name: Antelope Horn + Type: Etc + Buy: 672 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7107 + AegisName: Gaoat's_Skin + Name: Antelope Skin + Type: Etc + Buy: 756 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7108 + AegisName: Boroken_Shiled_Piece + Name: Piece of Shield + Type: Etc + Buy: 1680 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7109 + AegisName: Shine_Spear_Blade + Name: Shining Spear Blade + Type: Etc + Buy: 840 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7110 + AegisName: Vroken_Sword + Name: Broken Sword + Type: Etc + Buy: 588 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7111 + AegisName: Smooth_Paper + Name: Slick Paper + Type: Etc + Buy: 706 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7112 + AegisName: Fright_Paper_Blade + Name: Sharp Paper + Type: Etc + Buy: 907 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7113 + AegisName: Broken_Pharaoh_Symbol + Name: Broken Pharaoh Emblem + Type: Etc + Buy: 2016 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7114 + AegisName: Tutankhamen's_Mask + Name: Masque of Tutankhamen + Type: Etc + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7115 + AegisName: Harpy's_Feather + Name: Harpy Feather + Type: Etc + Buy: 1142 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7116 + AegisName: Harpy's_Claw + Name: Harpy Talon + Type: Etc + Buy: 1210 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7117 + AegisName: Rent_Spell_Book + Name: Torn Magic Book + Type: Etc + Buy: 1142 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7118 + AegisName: Rent_Scroll + Name: Torn Scroll + Type: Etc + Buy: 1361 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7119 + AegisName: Spawns + Name: Bacillus + Type: Etc + Buy: 1025 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7120 + AegisName: Burning_Horse_Shoe + Name: Burning Horseshoe + Type: Etc + Buy: 823 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7121 + AegisName: Honey_Jar + Name: Honey Pot + Type: Etc + Buy: 622 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7122 + AegisName: Hot_Hair + Name: Burning Hair + Type: Etc + Buy: 974 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7123 + AegisName: Dragon's_Skin + Name: Dragon Skin + Type: Etc + Buy: 1025 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7124 + AegisName: Sand_Lump + Name: Sand Clump + Type: Etc + Buy: 706 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7125 + AegisName: Scropion's_Nipper + Name: Scorpion Claw + Type: Etc + Buy: 706 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7126 + AegisName: Large_Jellopy + Name: Large Jellopy + Type: Etc + Buy: 840 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7127 + AegisName: Alcol_Create_Book + Name: Alcohol Creation Guide + Type: Etc + Buy: 100000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7128 + AegisName: FireBottle_Create_Book + Name: Bottle Grenade Creation Guide + Type: Etc + Buy: 100000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7129 + AegisName: Acid_Create_Book + Name: Acid Bottle Creation Guide + Type: Etc + Buy: 100000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7130 + AegisName: Plant_Create_Book + Name: Plant Bottle Creation Guide + Type: Etc + Buy: 100000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7131 + AegisName: Mine_Create_Book + Name: Marine Sphere Creation Guide + Type: Etc + Buy: 100000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7132 + AegisName: Coating_Create_Book + Name: Glistening Coat Creation Guide + Type: Etc + Buy: 100000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7133 + AegisName: Slim_Potion_Create_Book + Name: Condensed Potion Creation Guide + Type: Etc + Buy: 240000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7134 + AegisName: Medicine_Bowl + Name: Medicine Bowl + Type: Etc + Buy: 8 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7135 + AegisName: Fire_Bottle + Name: Bottle Grenade + Type: Etc + Buy: 200 + Weight: 10 + - Id: 7136 + AegisName: Acid_Bottle + Name: Acid Bottle + Type: Etc + Buy: 200 + Weight: 10 + - Id: 7137 + AegisName: MenEater_Plant_Bottle + Name: Plant Bottle + Type: Etc + Buy: 200 + Weight: 10 + - Id: 7138 + AegisName: Mini_Bottle + Name: Marine Sphere Bottle + Type: Etc + Buy: 200 + Weight: 10 + - Id: 7139 + AegisName: Coating_Bottle + Name: Glistening Coat + Type: Etc + Buy: 200 + Weight: 10 + - Id: 7140 + AegisName: Seed_Of_Life + Name: Seed of Life + Type: Etc + Buy: 60000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7141 + AegisName: Yggdrasilberry_Dew + Name: Morning Dew of Yggdrasil + Type: Etc + Buy: 20000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7142 + AegisName: Germination_Breed + Name: Embryo + Type: Etc + Buy: 10 + Weight: 10 + - Id: 7143 + AegisName: Life_Force_Pot + Name: Glass Tube + Type: Etc + Buy: 5000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7144 + AegisName: Normal_Potion_Book + Name: Potion Creation Guide + Type: Etc + Buy: 100000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7145 + AegisName: Rag_T_Shirts + Name: Ragnarok T-shirt + Type: Etc + Buy: 1 + Weight: 10 + - Id: 7146 + AegisName: Vacance_Ticket + Name: Vacation Ticket + Type: Etc + Buy: 1 + Weight: 10 + - Id: 7147 + AegisName: Jasmin + Name: Jasmine + Type: Etc + Buy: 1 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7148 + AegisName: Mother_Letter + Name: Mother's Letter + Type: Etc + Buy: 1 + Weight: 10 + - Id: 7149 + AegisName: Yellow_Plate + Name: Yellow Plate + Type: Etc + Buy: 220 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7150 + AegisName: Bamboo_Cut + Name: Piece of Bamboo + Type: Etc + Buy: 310 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7151 + AegisName: Oil_Paper + Name: Oil Paper + Type: Etc + Buy: 210 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7152 + AegisName: Glossy_Hair + Name: Glossy Hair + Type: Etc + Buy: 340 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7153 + AegisName: Old_Japaness_Clothes + Name: Worn-out Kimono + Type: Etc + Buy: 590 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7154 + AegisName: Poison_Powder + Name: Poisonous Powder + Type: Etc + Buy: 160 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7155 + AegisName: Poison_Toad's_Skin + Name: Poisonous Toad Skin + Type: Etc + Buy: 280 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7156 + AegisName: Broken_Shuriken + Name: Broken Shuriken + Type: Etc + Buy: 470 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7157 + AegisName: Black_Mask + Name: Dark Mask + Type: Etc + Buy: 315 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7158 + AegisName: Broken_Wine_Vessel + Name: Broken Liquor Jar + Type: Etc + Buy: 160 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7159 + AegisName: Tengu's_Nose + Name: Tengu Nose + Type: Etc + Buy: 400 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7160 + AegisName: Lord's_Passable_Ticket + Name: Feudal Lord Permit + Type: Etc + Buy: 1 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7161 + AegisName: Black_Bear's_Skin + Name: Black Bear Skin + Type: Etc + Buy: 384 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7162 + AegisName: Cloud_Piece + Name: Cloud Crumb + Type: Etc + Buy: 390 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7163 + AegisName: Sharp_Feeler + Name: Hard Feeler + Type: Etc + Buy: 570 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7164 + AegisName: Hard_Peach + Name: Solid Peach + Type: Etc + Buy: 400 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7165 + AegisName: Limpid_Celestial_Robe + Name: Transparent Celestial Robe + Type: Etc + Buy: 650 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7166 + AegisName: Soft_Silk_Cloth + Name: Soft Silk + Type: Etc + Buy: 1200 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7167 + AegisName: Mystery_Iron_Bit + Name: Strange Steel Piece + Type: Etc + Buy: 430 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7168 + AegisName: Great_Wing + Name: Giant Butterfly Wing + Type: Etc + Buy: 614 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7169 + AegisName: Taegeuk_Plate + Name: Ba Gua + Type: Etc + Buy: 2800 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7170 + AegisName: Tuxedo + Name: Tuxedo + Type: Etc + Buy: 43000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7171 + AegisName: Leopard_Skin + Name: Leopard Skin + Type: Etc + Buy: 282 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7172 + AegisName: Leopard_Talon + Name: Leopard Claw + Type: Etc + Buy: 290 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7173 + AegisName: BurnBuster_Bag + Name: iROGM02's Backpack + Type: Etc + Weight: 10 + - Id: 7174 + AegisName: Packing_Ribbon + Name: Wrapping Lace + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 7175 + AegisName: Packing_Paper + Name: Wrapping Paper + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 7176 + AegisName: XMAS_Coupon + Name: Royal Certificate + Type: Etc + Weight: 10 + - Id: 7177 + AegisName: Part_Of_Star's_Sob + Name: Crumb of Sobbing Starlight + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7178 + AegisName: Star's_Sob + Name: Sobbing Starlight + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7179 + AegisName: Donation_Card + Name: Proof of Donation + Type: Etc + Weight: 10 + - Id: 7180 + AegisName: Introduction_Of_Mr.Han + Name: Hahn Sukbong's Recommendation + Type: Etc + Weight: 10 + - Id: 7181 + AegisName: Receipt_01 + Name: Receipt + Type: Etc + Weight: 10 + - Id: 7182 + AegisName: Cacao + Name: Cacao + Type: Etc + Buy: 200 + Weight: 20 + Flags: + BuyingStore: true + - Id: 7183 + AegisName: Sister_Letter + Name: Letter from Sister + Type: Etc + Weight: 10 + - Id: 7184 + AegisName: Piano_Keyboard + Name: Piano Key + Type: Etc + Weight: 10 + - Id: 7185 + AegisName: Quiz_Ticket + Name: Quiz Entry + Type: Etc + Weight: 10 + - Id: 7186 + AegisName: Thin_Stem + Name: Thin Trunk + Type: Etc + Buy: 380 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7187 + AegisName: Festival_Mask + Name: Festival Mask + Type: Etc + Buy: 100 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7188 + AegisName: Browny_Root + Name: Brown Root + Type: Etc + Buy: 560 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7189 + AegisName: Heart_Of_Tree + Name: Wooden Heart + Type: Etc + Buy: 680 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7190 + AegisName: Solid_Peeling + Name: Solid Husk + Type: Etc + Buy: 140 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7191 + AegisName: Lamplight + Name: Lamp + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 7192 + AegisName: Blade_Of_Pinwheel + Name: Vane + Type: Etc + Buy: 160 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7193 + AegisName: Germinating_Sprout + Name: Sprout + Type: Etc + Buy: 230 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7194 + AegisName: Soft_Leaf + Name: Soft Blade of Grass + Type: Etc + Buy: 400 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7195 + AegisName: Air_Rifle + Name: Slingshot + Type: Etc + Buy: 210 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7196 + AegisName: Shoulder_Protection + Name: Shoulder Protector + Type: Etc + Buy: 230 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7197 + AegisName: Tough_Vines + Name: Tough Vines + Type: Etc + Buy: 500 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7198 + AegisName: Great_Leaf + Name: Huge Leaf + Type: Etc + Buy: 610 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7199 + AegisName: Coupon + Name: Coupon + Type: Etc + Weight: 10 + - Id: 7200 + AegisName: Flexible_String + Name: Elastic Band + Type: Etc + Buy: 380 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7201 + AegisName: Log + Name: Log + Type: Etc + Buy: 250 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7202 + AegisName: Beetle_Nipper + Name: Pincher of Beetle + Type: Etc + Buy: 290 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7203 + AegisName: Solid_Twig + Name: Strong Branch + Type: Etc + Buy: 190 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7204 + AegisName: Gunpowder + Name: Gunpowder + Type: Etc + Buy: 320 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7205 + AegisName: Piece_Of_Black_Cloth + Name: Piece of Black Cloth + Type: Etc + Buy: 526 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7206 + AegisName: Black_Kitty_Doll + Name: Black Cat Doll + Type: Etc + Buy: 1440 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7207 + AegisName: Old_Manteau + Name: Old Manteau + Type: Etc + Buy: 1050 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7208 + AegisName: Rusty_Cleaver + Name: Rusty Kitchen Knife + Type: Etc + Buy: 1780 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7209 + AegisName: Dullahan's_Helm + Name: Helm of Dullahan + Type: Etc + Buy: 1350 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7210 + AegisName: Dullahan_Armor + Name: Armor Piece of Dullahan + Type: Etc + Buy: 790 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7211 + AegisName: Rojerta_Piece + Name: Fragment of Rossata Stone + Type: Etc + Buy: 2600 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7212 + AegisName: Hanging_Doll + Name: Hung Doll + Type: Etc + Buy: 1020 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7213 + AegisName: Needle_Pouch + Name: Needle Packet + Type: Etc + Buy: 832 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7214 + AegisName: Bat_Cage + Name: Bat Cage + Type: Etc + Buy: 880 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7215 + AegisName: Broken_Needle + Name: Broken Needle + Type: Etc + Buy: 690 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7216 + AegisName: Red_Scarf + Name: Red Muffler + Type: Etc + Buy: 660 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7217 + AegisName: Spool + Name: Spool + Type: Etc + Buy: 424 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7218 + AegisName: Rotten_Rope + Name: Decomposed Rope + Type: Etc + Buy: 390 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7219 + AegisName: Striped_Socks + Name: Striped Sock + Type: Etc + Buy: 920 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7220 + AegisName: Ectoplasm + Name: Ectoplasm + Type: Etc + Buy: 322 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7221 + AegisName: Tangled_Chain + Name: Tangled Chains + Type: Etc + Buy: 740 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7222 + AegisName: Tree_Knot + Name: Wooden Gnarl + Type: Etc + Buy: 468 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7223 + AegisName: Distorted_Portrait + Name: Contorted Self-Portrait + Type: Etc + Buy: 2032 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7224 + AegisName: Stone_Of_Intelligence + Name: Stone of Sage + Type: Etc + Weight: 10 + - Id: 7225 + AegisName: Pumpkin_Bucket + Name: Pumpkin Lantern + Type: Etc + Buy: 486 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7226 + AegisName: Pill + Name: Pellet + Type: Etc + Buy: 2 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7227 + AegisName: TCG_Card + Name: TCG Card + Type: Etc + Weight: 10 + - Id: 7228 + AegisName: Gold_Bullion + Name: Gold Bullion + Type: Etc + Buy: 100000 + Weight: 300 + Flags: + BuyingStore: true + - Id: 7229 + AegisName: Silver_Bullion + Name: Silver Bullion + Type: Etc + Buy: 50000 + Weight: 300 + Flags: + BuyingStore: true + - Id: 7230 + AegisName: White_Gold_Bullion + Name: Platinum Bullion + Type: Etc + Buy: 200000 + Weight: 300 + Flags: + BuyingStore: true + - Id: 7231 + AegisName: Gold_Ore + Name: Gold Ore + Type: Etc + Buy: 20 + Weight: 150 + - Id: 7232 + AegisName: Silver_Ore + Name: Silver Ore + Type: Etc + Buy: 20 + Weight: 150 + - Id: 7233 + AegisName: Mithril_Ore + Name: Mithril Ore + Type: Etc + Buy: 20 + Weight: 150 + - Id: 7234 + AegisName: Soul_Of_Guild + Name: Spirit of Guild + Type: Etc + Weight: 10 + - Id: 7235 + AegisName: Soul_Of_Courage + Name: Spirit of Charge + Type: Etc + Weight: 10 + - Id: 7236 + AegisName: Soul_Of_Guard + Name: Spirit of Protection + Type: Etc + Weight: 10 + - Id: 7237 + AegisName: Soul_Of_Partnership + Name: Spirit of Association + Type: Etc + Weight: 10 + - Id: 7238 + AegisName: Soul_Of_Correspondence + Name: Spirit of Coordination + Type: Etc + Weight: 10 + - Id: 7239 + AegisName: Soul_Of_Proceeding + Name: Spirit of Advance + Type: Etc + Weight: 10 + - Id: 7240 + AegisName: Soul_Of_Confidence + Name: Spirit of Trust + Type: Etc + Weight: 10 + - Id: 7241 + AegisName: Soul_Of_Agreement + Name: Spirit of Union + Type: Etc + Weight: 10 + - Id: 7242 + AegisName: Soul_Of_Harmony + Name: Spirit of Combination + Type: Etc + Weight: 10 + - Id: 7243 + AegisName: Soul_Of_Cooperate + Name: Spirit of Cooperation + Type: Etc + Weight: 10 + - Id: 7244 + AegisName: Soul_Of_Unity + Name: Spirit of Solidarity + Type: Etc + Weight: 10 + - Id: 7245 + AegisName: Soul_Of_Friendship + Name: Spirit of Friendship + Type: Etc + Weight: 10 + - Id: 7246 + AegisName: Soul_Of_Peace + Name: Spirit of Peace + Type: Etc + Weight: 10 + - Id: 7247 + AegisName: Soul_Of_Spirit + Name: Spirit of Determination + Type: Etc + Weight: 10 + - Id: 7248 + AegisName: Soul_Of_Honor + Name: Spirit of Honor + Type: Etc + Weight: 10 + - Id: 7249 + AegisName: Soul_Of_Service + Name: Spirit of Service + Type: Etc + Weight: 10 + - Id: 7250 + AegisName: Soul_Of_Glory + Name: Spirit of Glory + Type: Etc + Weight: 10 + - Id: 7251 + AegisName: Soul_Of_Victory + Name: Spirit of Victory + Type: Etc + Weight: 10 + - Id: 7252 + AegisName: Herb_Medicine + Name: Herbal Medicine + Type: Etc + Weight: 10 + - Id: 7253 + AegisName: Taeguk_Flag + Name: Golden Korean Flag + Type: Etc + Weight: 10 + - Id: 7254 + AegisName: Digital_Print_Ticket + Name: Digital Picture Printing Coupon + Type: Etc + Weight: 10 + - Id: 7255 + AegisName: China_Marble01 + Name: Mystic Orb + Type: Etc + Weight: 100 + - Id: 7256 + AegisName: China_Marble02 + Name: Mystic Orb + Type: Etc + Weight: 100 + - Id: 7257 + AegisName: China_Marble03 + Name: Mystic Orb + Type: Etc + Weight: 100 + - Id: 7258 + AegisName: China_Marble04 + Name: Mystic Orb + Type: Etc + Weight: 100 + - Id: 7259 + AegisName: China_Marble05 + Name: Mystic Orb + Type: Etc + Weight: 100 + - Id: 7260 + AegisName: China_Marble06 + Name: Mystic Orb + Type: Etc + Weight: 100 + - Id: 7261 + AegisName: China_Marble07 + Name: Mystic Orb + Type: Etc + Weight: 100 + - Id: 7262 + AegisName: Fan + Name: Folding Fan of Cat Ghost + Type: Etc + Buy: 466 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7263 + AegisName: Cat_Eyed_Stone + Name: Cat's Eye + Type: Etc + Buy: 954 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7264 + AegisName: Dried_Sand + Name: Dry Sand + Type: Etc + Buy: 322 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7265 + AegisName: Dragon_Horn + Name: Dragon Horn + Type: Etc + Buy: 544 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7266 + AegisName: Dragon_Fang + Name: Denture from Dragon Mask + Type: Etc + Buy: 436 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7267 + AegisName: Tiger_Skin_Panties + Name: Tiger Panty + Type: Etc + Buy: 298 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7268 + AegisName: Little_Blacky_Ghost + Name: Little Ghost Doll + Type: Etc + Buy: 1210 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7269 + AegisName: Bib + Name: Pinafore + Type: Etc + Buy: 960 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7270 + AegisName: Milk_Bottle + Name: Nursing Bottle + Type: Etc + Buy: 1100 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7271 + AegisName: Figure + Name: Novice Figure + Type: Etc + Buy: 10000 + Weight: 10 + - Id: 7272 + AegisName: Meat_Dumpling_Doll + Name: Rice Ball Doll + Type: Etc + Buy: 500 + Weight: 10 + - Id: 7273 + AegisName: Golden_Necklace + Name: RWC Necklace + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7274 + AegisName: Ancient_Translator + Name: Translated Ancient Language + Type: Etc + Weight: 10 + - Id: 7275 + AegisName: Ancient_Document + Name: Record of Ancient Language + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7276 + AegisName: Picture_Letter + Name: Doodled Message + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7277 + AegisName: Munak_Doll + Name: Munak Doll + Type: Etc + Buy: 8900 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7278 + AegisName: Wellbeing_Letter + Name: Letter to Wife + Type: Etc + Weight: 10 + - Id: 7279 + AegisName: Vita500_Lid + Name: Vita500 Lid + Type: Etc + Buy: 10 + Weight: 10 + - Id: 7280 + AegisName: Quiz_Ticket01 + Name: 1st Quiz Entry + Type: Etc + Weight: 10 + - Id: 7281 + AegisName: Quiz_Ticket02 + Name: 2nd Quiz Entry + Type: Etc + Weight: 10 + - Id: 7282 + AegisName: Quiz_Ticket03 + Name: 3rd Quiz Entry + Type: Etc + Weight: 10 + - Id: 7283 + AegisName: Quiz_Ticket04 + Name: 4th Quiz Entry + Type: Etc + Weight: 10 + - Id: 7284 + AegisName: Quiz_Ticket05 + Name: 5th Quiz Entry + Type: Etc + Weight: 10 + - Id: 7285 + AegisName: Thread_Skein + Name: Holy Threads + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7286 + AegisName: Chilli + Name: Red Chile + Type: Etc + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7287 + AegisName: Thread_Skein_ + Name: Holier Threads + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7288 + AegisName: Thai_Ring + Name: Engagement Ring + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7289 + AegisName: Olivine + Name: Peridot + Type: Etc + Buy: 3000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 7290 + AegisName: Phlogopite + Name: Phlogopite + Type: Etc + Buy: 3000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 7291 + AegisName: Agate + Name: Agate + Type: Etc + Buy: 3000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 7292 + AegisName: Muscovite + Name: Muscovite + Type: Etc + Buy: 3000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 7293 + AegisName: Rose_Quartz + Name: Rose Quartz + Type: Etc + Buy: 3000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 7294 + AegisName: Turquoise + Name: Turquoise + Type: Etc + Buy: 3000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 7295 + AegisName: Citrine + Name: Citrin + Type: Etc + Buy: 3000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 7296 + AegisName: Pyroxene + Name: Pyroxene + Type: Etc + Buy: 3000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 7297 + AegisName: Biotite + Name: Biotite + Type: Etc + Buy: 3000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 7298 + AegisName: Leaf_Clothes + Name: Fig Leaf + Type: Etc + Buy: 538 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7299 + AegisName: Bamboo_Basket + Name: Straw Basket + Type: Etc + Buy: 632 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7300 + AegisName: Gemstone + Name: Gemstone + Type: Etc + Buy: 1420 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7301 + AegisName: Sword_Accessory + Name: Tassel + Type: Etc + Buy: 798 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7302 + AegisName: KRATHONG + Name: Krathong + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7303 + AegisName: Bag_Of_Rice + Name: Straw Rice Bag + Type: Etc + Weight: 800 + Flags: + BuyingStore: true + - Id: 7304 + AegisName: Witch's_Spell_Book + Name: Witch's Spell Scroll + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7305 + AegisName: Authority_Of_Nine_World + Name: Symbol of the Nine Realms + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7306 + AegisName: Fragment_Of_Soul + Name: Piece of Spirit + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7307 + AegisName: Whisper_Of_Soul + Name: Spiritual Whispers + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7308 + AegisName: Witch's_Potion + Name: Witch's Tonic + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7309 + AegisName: Wing_Of_Crow + Name: Crow Wing + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7310 + AegisName: Free_Peco_Ticket + Name: Free Ticket for Peco Ride + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7311 + AegisName: Free_Flying_Ship_Ticket + Name: Free Ticket for Flyship + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7312 + AegisName: Jubilee + Name: Jubilee + Type: Etc + Buy: 32 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7313 + AegisName: Seal_Of_Witch + Name: Witch's Medal + Type: Etc + Buy: 2 + - Id: 7314 + AegisName: The_Sign + Name: The Sign + Type: Etc + Buy: 2 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7315 + AegisName: Dark_Crystal_Fragment + Name: Dark Crystal Fragment + Type: Etc + Buy: 422 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7316 + AegisName: Long_Limb + Name: Insect Leg + Type: Etc + Buy: 658 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7317 + AegisName: Screw + Name: Rusty Screw + Type: Etc + Buy: 534 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7318 + AegisName: Old_Pick + Name: Old Pick + Type: Etc + Buy: 512 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7319 + AegisName: Old_Steel_Plate + Name: Used Iron Plate + Type: Etc + Buy: 1024 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7320 + AegisName: Air_Pollutant + Name: Dust Pollutant + Type: Etc + Buy: 256 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7321 + AegisName: Fragment_Of_Crystal + Name: Crystal Fragment + Type: Etc + Buy: 552 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7322 + AegisName: Poisonous_Gas + Name: Toxic Gas + Type: Etc + Buy: 666 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7323 + AegisName: Battered_Kettle + Name: Battered Kettle + Type: Etc + Buy: 256 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7325 + AegisName: Tube + Name: Flexible Tube + Type: Etc + Buy: 102 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7326 + AegisName: Fluorescent_Liquid + Name: Fluorescent Liquid + Type: Etc + Buy: 712 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7327 + AegisName: Headlamp + Name: Flashlight + Type: Etc + Buy: 1024 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7328 + AegisName: Legendary_Scroll + Name: Legend of Songkran + Type: Etc + Weight: 10 + - Id: 7329 + AegisName: Old_Copper_Key + Name: Old Bronze Key + Type: Etc + Weight: 10 + - Id: 7330 + AegisName: 2anny + Name: Mystic Orb + Type: Etc + Weight: 100 + - Id: 7331 + AegisName: Flower_Of_Heaven + Name: Heaven Flower + Type: Etc + Buy: 500 + Weight: 10 + - Id: 7332 + AegisName: Slate + Name: Complete Tablet + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7333 + AegisName: Piece_Of_Slate_1 + Name: Prontera Tablet + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7334 + AegisName: Piece_Of_Slate_2 + Name: Payon Tablet + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7335 + AegisName: Piece_Of_Slate_3 + Name: Morocc Tablet + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7336 + AegisName: Piece_Of_Slate_4 + Name: Geffen Tablet + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7337 + AegisName: Eye_Of_Hellion + Name: Eye of Hellion + Type: Etc + - Id: 7338 + AegisName: RO_Transportation_Card + Name: One-way Ticket + Type: Etc + - Id: 7339 + AegisName: RO_Transportation_Card_ + Name: Commemorative Travel Card + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7340 + AegisName: Will_Of_Darkness + Name: Will of the Darkness + Type: Etc + Buy: 734 + Weight: 50 + Flags: + BuyingStore: true + - Id: 7341 + AegisName: Worn_Out_Pendant + Name: Old Pendant + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7342 + AegisName: File01 + Name: File Folder + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7343 + AegisName: File02 + Name: Sealed File Folder + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7344 + AegisName: File03 + Name: Shinokas Case File + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7345 + AegisName: Armlet_Of_Prisoner + Name: Handcuffs + Type: Etc + Buy: 724 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7346 + AegisName: Pile_Of_Ymir_Heart + Name: Ymir's Heart Piece + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7347 + AegisName: Lab_Staff_Record + Name: Research Chart + Type: Etc + Buy: 840 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7348 + AegisName: Indication_Of_Member01 + Name: Membership Card + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7349 + AegisName: Indication_Of_Member02 + Name: Archive Permit + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7350 + AegisName: Pass + Name: Pass + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7351 + AegisName: Friend's_Diary + Name: Friend's Diary + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7352 + AegisName: Transparent_Plate01 + Name: Transparent Plate + Type: Etc + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7353 + AegisName: Transparent_Plate02 + Name: Transparent Plate + Type: Etc + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7354 + AegisName: Transparent_Plate03 + Name: Transparent Plate + Type: Etc + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7355 + AegisName: Transparent_Plate04 + Name: Transparent Plate + Type: Etc + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7356 + AegisName: Piece_Of_Crest1 + Name: Crest Piece + Type: Etc + Buy: 5000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7357 + AegisName: Piece_Of_Crest2 + Name: Crest Piece + Type: Etc + Buy: 5000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7358 + AegisName: Piece_Of_Crest3 + Name: Crest Piece + Type: Etc + Buy: 5000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7359 + AegisName: Piece_Of_Crest4 + Name: Crest Piece + Type: Etc + Buy: 5000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7360 + AegisName: RO_Festival_Ticket + Name: RO Festival Invitation + Type: Etc + Weight: 10 + - Id: 7361 + AegisName: Lotto01 + Name: Lotto Ball 01 + Type: Etc + Weight: 10 + - Id: 7362 + AegisName: Lotto02 + Name: Lotto Ball 02 + Type: Etc + Weight: 10 + - Id: 7363 + AegisName: Lotto03 + Name: Lotto Ball 03 + Type: Etc + Weight: 10 + - Id: 7364 + AegisName: Lotto04 + Name: Lotto Ball 04 + Type: Etc + Weight: 10 + - Id: 7365 + AegisName: Lotto05 + Name: Lotto Ball 05 + Type: Etc + Weight: 10 + - Id: 7366 + AegisName: Lotto06 + Name: Lotto Ball 06 + Type: Etc + Weight: 10 + - Id: 7367 + AegisName: Lotto07 + Name: Lotto Ball 07 + Type: Etc + Weight: 10 + - Id: 7368 + AegisName: Lotto08 + Name: Lotto Ball 08 + Type: Etc + Weight: 10 + - Id: 7369 + AegisName: Lotto09 + Name: Lotto Ball 09 + Type: Etc + Weight: 10 + - Id: 7370 + AegisName: Lotto10 + Name: Lotto Ball 10 + Type: Etc + Weight: 10 + - Id: 7371 + AegisName: Lotto11 + Name: Lotto Ball 11 + Type: Etc + Weight: 10 + - Id: 7372 + AegisName: Lotto12 + Name: Lotto Ball 12 + Type: Etc + Weight: 10 + - Id: 7373 + AegisName: Lotto13 + Name: Lotto Ball 13 + Type: Etc + Weight: 10 + - Id: 7374 + AegisName: Lotto14 + Name: Lotto Ball 14 + Type: Etc + Weight: 10 + - Id: 7375 + AegisName: Lotto15 + Name: Lotto Ball 15 + Type: Etc + Weight: 10 + - Id: 7376 + AegisName: Lotto16 + Name: Lotto Ball 16 + Type: Etc + Weight: 10 + - Id: 7377 + AegisName: Lotto17 + Name: Lotto Ball 17 + Type: Etc + Weight: 10 + - Id: 7378 + AegisName: Lotto18 + Name: Lotto Ball 18 + Type: Etc + Weight: 10 + - Id: 7379 + AegisName: Lotto19 + Name: Lotto Ball 19 + Type: Etc + Weight: 10 + - Id: 7380 + AegisName: Lotto20 + Name: Lotto Ball 20 + Type: Etc + Weight: 10 + - Id: 7381 + AegisName: Lotto21 + Name: Lotto Ball 21 + Type: Etc + Weight: 10 + - Id: 7382 + AegisName: Lotto22 + Name: Lotto Ball 22 + Type: Etc + Weight: 10 + - Id: 7383 + AegisName: Lotto23 + Name: Lotto Ball 23 + Type: Etc + Weight: 10 + - Id: 7384 + AegisName: Lotto24 + Name: Lotto Ball 24 + Type: Etc + Weight: 10 + - Id: 7385 + AegisName: Lotto25 + Name: Lotto Ball 25 + Type: Etc + Weight: 10 + - Id: 7386 + AegisName: Lotto26 + Name: Lotto Ball 26 + Type: Etc + Weight: 10 + - Id: 7387 + AegisName: Lotto27 + Name: Lotto Ball 27 + Type: Etc + Weight: 10 + - Id: 7388 + AegisName: Lotto28 + Name: Lotto Ball 28 + Type: Etc + Weight: 10 + - Id: 7389 + AegisName: Lotto29 + Name: Lotto Ball 29 + Type: Etc + Weight: 10 + - Id: 7390 + AegisName: Lotto30 + Name: Lotto Ball 30 + Type: Etc + Weight: 10 + - Id: 7391 + AegisName: Lotto31 + Name: Lotto Ball 31 + Type: Etc + Weight: 10 + - Id: 7392 + AegisName: Lotto32 + Name: Lotto Ball 32 + Type: Etc + Weight: 10 + - Id: 7393 + AegisName: Lotto33 + Name: Lotto Ball 33 + Type: Etc + Weight: 10 + - Id: 7394 + AegisName: Lotto34 + Name: Lotto Ball 34 + Type: Etc + Weight: 10 + - Id: 7395 + AegisName: Lotto35 + Name: Lotto Ball 35 + Type: Etc + Weight: 10 + - Id: 7396 + AegisName: Lotto36 + Name: Lotto Ball 36 + Type: Etc + Weight: 10 + - Id: 7397 + AegisName: Lotto37 + Name: Lotto Ball 37 + Type: Etc + Weight: 10 + - Id: 7398 + AegisName: Lotto38 + Name: Lotto Ball 38 + Type: Etc + Weight: 10 + - Id: 7399 + AegisName: Word_Card01 + Name: Selamat + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7400 + AegisName: Word_Card02 + Name: Hari + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7401 + AegisName: Word_Card03 + Name: Kemerdekaan + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7402 + AegisName: Word_Card04 + Name: Republik + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7403 + AegisName: Word_Card05 + Name: Indonesia + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7404 + AegisName: Word_Card06 + Name: Ke-60 + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7405 + AegisName: Crushed_Can + Name: Crushed Can + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7406 + AegisName: Moon_Cake1 + Name: Yuebing + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7407 + AegisName: Moon_Cake2 + Name: Yuebing + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7408 + AegisName: Moon_Cake3 + Name: Yuebing + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7409 + AegisName: Moon_Cake4 + Name: Yuebing + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7410 + AegisName: Moon_Cake5 + Name: Yuebing + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7411 + AegisName: Moon_Cake6 + Name: Yuebing + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7412 + AegisName: Moon_Cake7 + Name: Yuebing + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7413 + AegisName: Moon_Cake8 + Name: Yuebing + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7414 + AegisName: Moon_Cake9 + Name: Yuebing + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7415 + AegisName: Stone_Of_Summons + Name: Summoning Stone + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7416 + AegisName: Letter_Of_Recommend + Name: Letter of Recommendation + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7417 + AegisName: Mission_ScrollA + Name: Written Request(A) + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7418 + AegisName: Mission_ScrollB + Name: Written Request(B) + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7419 + AegisName: Embryo_HandBook + Name: Embryo Creation Guide + Type: Etc + Buy: 48000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7420 + AegisName: Skull_ + Name: Skull + Type: Etc + Trade: + Override: 100 + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7421 + AegisName: Key_Red + Name: Red Key + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7422 + AegisName: Key_Yellow + Name: Yellow Key + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7423 + AegisName: Key_Blue + Name: Blue Key + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7424 + AegisName: Key_Green + Name: Green Key + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7425 + AegisName: Key_Black + Name: Black Key + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7426 + AegisName: Magic_Gem_Red + Name: Red Charm Stone + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7427 + AegisName: Magic_Gem_Yellow + Name: Yellow Charm Stone + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7428 + AegisName: Magic_Gem_Blue + Name: Blue Charm Stone + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7429 + AegisName: Magic_Gem_Green + Name: Green Charm Stone + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7430 + AegisName: Magic_Gem_Black + Name: Black Charm Stone + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7431 + AegisName: Several_Books + Name: Pile of Books + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7432 + AegisName: Leather_Pouch + Name: Leather Pouch + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7433 + AegisName: Scroll + Name: Blank Scroll + Type: Etc + Buy: 4000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7434 + AegisName: Elemental_Potion_Book + Name: Elemental Potion Creation Guide + Type: Etc + Buy: 100000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7435 + AegisName: Golden_Bracelet + Name: Golden Ornament + Type: Etc + Buy: 1907 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7436 + AegisName: Piece_Of_Memory_Green + Name: Fragment of Agony + Type: Etc + Buy: 1506 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7437 + AegisName: Piece_Of_Memory_Purple + Name: Fragment of Misery + Type: Etc + Buy: 1506 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7438 + AegisName: Piece_Of_Memory_Blue + Name: Fragment of Hatred + Type: Etc + Buy: 1506 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7439 + AegisName: Piece_Of_Memory_Red + Name: Fragment of Despair + Type: Etc + Buy: 1506 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7440 + AegisName: Red_Feather + Name: Red Feather + Type: Etc + Buy: 1335 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7441 + AegisName: Blue_Feather + Name: Blue Feather + Type: Etc + Buy: 1408 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7442 + AegisName: Cursed_Seal + Name: Cursed Seal + Type: Etc + Buy: 1332 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7443 + AegisName: Tri_Headed_Dragon_Head + Name: Three-Headed Dragon's Head + Type: Etc + Buy: 956 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7444 + AegisName: Treasure_Box + Name: Treasure Box + Type: Etc + Buy: 300000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7445 + AegisName: Dragonball_Green + Name: Green Bijou + Type: Etc + Buy: 887 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7446 + AegisName: Dragonball_Blue + Name: Blue Bijou + Type: Etc + Buy: 887 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7447 + AegisName: Dragonball_Red + Name: Red Bijou + Type: Etc + Buy: 887 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7448 + AegisName: Dragonball_Yellow + Name: Yellow Bijou + Type: Etc + Buy: 887 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7449 + AegisName: Bloody_Page + Name: Bloody Page + Type: Etc + Buy: 681 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7450 + AegisName: Piece_Of_Bone_Armor + Name: Skeletal Armor Piece + Type: Etc + Buy: 2050 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7451 + AegisName: Scale_Of_Red_Dragon + Name: Fire Dragon Scale + Type: Etc + Buy: 1852 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7452 + AegisName: Yellow_Spice + Name: Yellow Spice + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7453 + AegisName: Sweet_Sauce + Name: Sweet Sauce + Type: Etc + Buy: 700 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7454 + AegisName: Plain_Sauce + Name: Savory Sauce + Type: Etc + Buy: 700 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7455 + AegisName: Hot_Sauce + Name: Spicy Sauce + Type: Etc + Buy: 700 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7456 + AegisName: Red_Spice + Name: Red Spice + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7457 + AegisName: Cooking_Oil + Name: Cooking Oil + Type: Etc + Buy: 500 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7458 + AegisName: Baphomet's_Horn + Name: Fortune Horn + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7459 + AegisName: RAMADAN_ + Name: Idul Fitri Card + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7460 + AegisName: Niflheim_Ticket + Name: Niflheim Express Ticket + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7461 + AegisName: BlueCard_A + Name: Blue A Card + Type: Etc + Weight: 10 + - Id: 7462 + AegisName: BlueCard_E + Name: Blue E Card + Type: Etc + Weight: 10 + - Id: 7463 + AegisName: BlueCard_F + Name: Blue F Card + Type: Etc + Weight: 10 + - Id: 7464 + AegisName: BlueCard_H + Name: Blue H Card + Type: Etc + Weight: 10 + - Id: 7465 + AegisName: BlueCard_L + Name: Blue L Card + Type: Etc + Weight: 10 + - Id: 7466 + AegisName: BlueCard_N + Name: Blue N Card + Type: Etc + Weight: 10 + - Id: 7467 + AegisName: BlueCard_O + Name: Blue O Card + Type: Etc + Weight: 10 + - Id: 7468 + AegisName: BlueCard_P + Name: Blue P Card + Type: Etc + Weight: 10 + - Id: 7469 + AegisName: BlueCard_U + Name: Blue U Card + Type: Etc + Weight: 10 + - Id: 7470 + AegisName: BlueCard_W + Name: Blue W Card + Type: Etc + Weight: 10 + - Id: 7471 + AegisName: BlueCard_Y + Name: Blue Y Card + Type: Etc + Weight: 10 + - Id: 7472 + AegisName: Cookbook01 + Name: Level 1 Cookbook + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7473 + AegisName: Cookbook02 + Name: Level 2 Cookbook + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7474 + AegisName: Cookbook03 + Name: Level 3 Cookbook + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7475 + AegisName: Cookbook04 + Name: Level 4 Cookbook + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7476 + AegisName: Cookbook05 + Name: Level 5 Cookbook + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7477 + AegisName: Cookbook06 + Name: Level 6 Cookbook + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7478 + AegisName: Cookbook07 + Name: Level 7 Cookbook + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7479 + AegisName: Cookbook08 + Name: Level 8 Cookbook + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7480 + AegisName: Cookbook09 + Name: Level 9 Cookbook + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7481 + AegisName: Cookbook10 + Name: Level 10 Cookbook + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7482 + AegisName: Pot + Name: Pot + Type: Etc + Buy: 200 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7483 + AegisName: Key_Of_Seal + Name: Key of the Seal + Type: Etc + - Id: 7484 + AegisName: Warrior_Symbol + Name: Symbol of a Brave Warrior + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7485 + AegisName: 2nd_Floor_Pass + Name: Cloud General + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7486 + AegisName: 3rd_Floor_Pass + Name: Wind General + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7487 + AegisName: Tavern_Wine + Name: Culinary Wine + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7488 + AegisName: Delivery_Box + Name: Delivery Package + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7489 + AegisName: Villa_Spare_Key + Name: Cottage Key + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7490 + AegisName: Kyll_Hire_Letter + Name: Letter to Elly + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7491 + AegisName: Iron_Box + Name: Steel Box + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7492 + AegisName: Yellow_Key_Card + Name: Yellow Keycard + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7493 + AegisName: Golden_Key + Name: Golden Key + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7494 + AegisName: Kiel_Button + Name: Luxurious Button + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7495 + AegisName: Blue_Key_Card + Name: Blue Keycard + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7496 + AegisName: Red_Key_Card + Name: Red Keycard + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7497 + AegisName: Steel_Piece + Name: Metal Fragment + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7498 + AegisName: Rosimier_Key + Name: Rosimier Mansion Keys + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7499 + AegisName: Family_Portrait + Name: Family Portrait + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7500 + AegisName: Elysia_Portrait + Name: Woman's Portrait + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7501 + AegisName: Kyll_Hire_Letter2 + Name: K.H's Letter + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7502 + AegisName: Piece_Memo_Of_James + Name: James's Note + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7503 + AegisName: Man_Portrait + Name: Man's Portrait + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7504 + AegisName: Toy_Motor + Name: Power Device + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7505 + AegisName: Toy_Key + Name: Toy Key + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7506 + AegisName: Black_Key_Card + Name: Black Keycard + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7507 + AegisName: Sturdy_Iron_Piece + Name: Solid Iron Piece + Type: Etc + Buy: 842 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7508 + AegisName: Elysia_Ring + Name: Allysia's Ring + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7509 + AegisName: Fancy_Key_Card + Name: Luxurious Keycard + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7510 + AegisName: Valhalla_Flower + Name: Valhalla's Flower + Type: Etc + Buy: 200000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7511 + AegisName: Rune_Of_Darkness + Name: Rune of Darkness + Type: Etc + Buy: 2526 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7512 + AegisName: Burnt_Parts + Name: Burnt Part + Type: Etc + Buy: 1600 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7513 + AegisName: Pocket_Watch + Name: Pocket Watch + Type: Etc + Buy: 3420 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7514 + AegisName: Monster_Ticket + Name: Monster Ticket + Type: Etc + Buy: 2 + - Id: 7515 + AegisName: Marvelous_Medal + Name: Prize Medal + Type: Etc + Buy: 2 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7516 + AegisName: Green_Key_Card + Name: Green Keycard + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7517 + AegisName: Gold_Coin_ + Name: Gold Coin + Type: Etc + Buy: 1000 + Weight: 100 + - Id: 7518 + AegisName: Women's_Medal + Name: Women's Medal + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7519 + AegisName: Money_Envelope + Name: Handsel + Type: Etc + Weight: 10 + - Id: 7520 + AegisName: Chinese_Scroll + Name: Please Be Rich + Type: Etc + Weight: 10 + - Id: 7521 + AegisName: Flame_Stone + Name: Flame Stone + Type: Etc + Buy: 150 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7522 + AegisName: Ice_Stone + Name: Ice Stone + Type: Etc + Buy: 150 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7523 + AegisName: Wind_Stone + Name: Wind Stone + Type: Etc + Buy: 150 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7524 + AegisName: Shadow_Orb + Name: Shadow Orb + Type: Etc + Buy: 300 + Weight: 20 + Flags: + BuyingStore: true + - Id: 7525 + AegisName: Summer_Feast_Ticket + Name: Summer Festival Ticket + Type: Etc + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7526 + AegisName: Manuscript_Paper + Name: Manuscript Paper + Type: Etc + Buy: 2 + - Id: 7527 + AegisName: Life_Book + Name: Book About True Life + Type: Etc + Weight: 100 + Trade: + Override: 100 + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7528 + AegisName: Id_Lottery_Ticket + Name: Lottery Ticket + Type: Etc + - Id: 7529 + AegisName: Stolen_Sandals + Name: Stolen Sandal + Type: Etc + - Id: 7530 + AegisName: Travel_Brochure_01 + Name: Travel Brochure [Amatsu] + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7531 + AegisName: Travel_Brochure_02 + Name: Travel Brochure [Kunlun] + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7532 + AegisName: Travel_Brochure_03 + Name: Travel Brochure [Luoyang] + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7533 + AegisName: Travel_Brochure_04 + Name: Travel Brochure [Ayothaya] + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7534 + AegisName: Photo_Album_01 + Name: Amatsu Completed Photo Album + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7535 + AegisName: Photo_Album_02 + Name: Kunlun Completed Photo Album + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7536 + AegisName: Photo_Album_03 + Name: Luoyang Completed Photo Album + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7537 + AegisName: Photo_Album_04 + Name: Ayothaya Completed Photo Album + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7538 + AegisName: Sifted_Sand + Name: Sand for Work + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7539 + AegisName: Poring_Coin + Name: Poring Coin + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7540 + AegisName: Lotto39 + Name: Lotto Ball 39 + Type: Etc + Weight: 10 + - Id: 7541 + AegisName: Lotto40 + Name: Lotto Ball 40 + Type: Etc + Weight: 10 + - Id: 7542 + AegisName: Lotto41 + Name: Lotto Ball 41 + Type: Etc + Weight: 10 + - Id: 7543 + AegisName: Lotto42 + Name: Lotto Ball 42 + Type: Etc + Weight: 10 + - Id: 7544 + AegisName: Lotto43 + Name: Lotto Ball 43 + Type: Etc + Weight: 10 + - Id: 7545 + AegisName: Lotto44 + Name: Lotto Ball 44 + Type: Etc + Weight: 10 + - Id: 7546 + AegisName: Lotto45 + Name: Lotto Ball 45 + Type: Etc + Weight: 10 + - Id: 7547 + AegisName: Soccer_Ball + Name: Soccer Ball + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7548 + AegisName: Soccer_Shoes + Name: Soccer Shoes + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7549 + AegisName: Brazilian_Flag + Name: Brazilian Flag + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7550 + AegisName: Ticket01 + Name: 6.13 Ticket + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7551 + AegisName: Ticket02 + Name: 6.18 Ticket + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7552 + AegisName: Ticket03 + Name: 6.22 Ticket + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7553 + AegisName: Lotus_Flower + Name: Lotus Flower + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7554 + AegisName: Striped_Candle + Name: Striped Candle + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7555 + AegisName: Green_Incense + Name: Green Incense + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7556 + AegisName: Longing_Heart + Name: Longing Heart + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7557 + AegisName: Invitation_Letter + Name: Invitation Letter + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7558 + AegisName: Invitation_Ticket + Name: Invitation Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7559 + AegisName: Key_Of_Flower_Garden + Name: Key to the Secret Garden + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7560 + AegisName: Longing_Heart2 + Name: Longing Heart + Type: Etc + - Id: 7561 + AegisName: Ice_Heart + Name: Glacial Heart + Type: Etc + Buy: 606 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7562 + AegisName: Ice_Scale + Name: Ice Scale + Type: Etc + Buy: 3020 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7563 + AegisName: Bloody_Rune + Name: Bloody Rune + Type: Etc + Buy: 2016 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7564 + AegisName: Rotten_Meat + Name: Rotten Meat + Type: Etc + Buy: 102 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7565 + AegisName: Sticky_Poison + Name: Sticky Poison + Type: Etc + Buy: 350 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7566 + AegisName: Will_Of_Darkness_ + Name: Will of Red Darkness + Type: Etc + Buy: 1530 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7567 + AegisName: Suspicious_Hat + Name: Suspicious Hat + Type: Etc + Buy: 1290 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7568 + AegisName: White_Mask + Name: White Mask + Type: Etc + Buy: 1060 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7569 + AegisName: Hammer_Of_Wind + Name: Wind Hammer + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7570 + AegisName: Temple_Lottery_Ticket + Name: Temple Lottery Ticket + Type: Etc + Weight: 10 + - Id: 7571 + AegisName: Diary_Of_Blue + Name: Bruspetti's Diary + Type: Etc + - Id: 7572 + AegisName: Magic_Necklace + Name: Ashy Necklace + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7573 + AegisName: Magic_Necklace_ + Name: Sparkling Necklace + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7574 + AegisName: Ice_Particle + Name: Freezing Snow Powder + Type: Etc + Flags: + BuyingStore: true + - Id: 7575 + AegisName: Red_Jewel_ + Name: Red Jewel + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7576 + AegisName: Blue_Jewel_ + Name: Blue Jewel + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7577 + AegisName: Golden_Jewel_ + Name: Yellow Jewel + Type: Etc + Buy: 20 + Weight: 50 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7578 + AegisName: Anti_Spell_Bead + Name: Countermagic Crystal + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7579 + AegisName: Silk_Handkerchief + Name: Silk Handkerchief of Zhi Nu + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7580 + AegisName: Black_Bead + Name: Black Marble + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7581 + AegisName: Anniversary_Ticket + Name: Celebration Document + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7582 + AegisName: Gem_Of_Ruin + Name: Jewel of Destruction + Type: Etc + Buy: 10 + Weight: 10 + - Id: 7583 + AegisName: Evil_Mind + Name: Evil Mind + Type: Etc + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7584 + AegisName: Proof_Of_Guard1 + Name: Guard's First Proof + Type: Etc + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7585 + AegisName: Proof_Of_Guard2 + Name: Guard's Second Proof + Type: Etc + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7586 + AegisName: Proof_Of_Guard3 + Name: Guard's Third Proof + Type: Etc + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7587 + AegisName: Proof_Of_Guard4 + Name: Guard's Fourth Proof + Type: Etc + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7588 + AegisName: IPOD_Ticker + Name: IPOD Coupon + Type: Etc + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7589 + AegisName: Moon_Cake10 + Name: Lettered Moon Snack 01 + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7590 + AegisName: Moon_Cake11 + Name: Lettered Moon Snack 02 + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7591 + AegisName: Moon_Cake12 + Name: Lettered Moon Snack 03 + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7592 + AegisName: Moon_Cake13 + Name: Lettered Moon Snack 04 + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7593 + AegisName: Moon_Cake14 + Name: Lettered Moon Snack 05 + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7594 + AegisName: Sonia's_Letter + Name: Sonia's Letter + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7595 + AegisName: Unique_Sword + Name: Special Sword + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7596 + AegisName: Unique_Shield + Name: Special Shield + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7597 + AegisName: Magic_Stone + Name: Magic Stone + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7603 + AegisName: RO_Party_Ticket + Name: RO Party Invitation Ticket + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7604 + AegisName: Flour + Name: Flour + Type: Etc + Weight: 10 + - Id: 7605 + AegisName: Chicken_Egg + Name: Chicken Egg + Type: Etc + Weight: 10 + - Id: 7606 + AegisName: Coin + Name: Token of the Ox + Type: Etc + Weight: 10 + - Id: 7607 + AegisName: Evil_Dragon_Head + Name: Neck of Demon Dragon + Type: Etc + Buy: 10 + Weight: 10 + - Id: 7608 + AegisName: Premium_Ticket + Name: Premium Ticket + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7609 + AegisName: Pumpkin_Mojo + Name: Pumpkin Mojo + Type: Etc + Weight: 10 + - Id: 7610 + AegisName: Food_Ticket + Name: Food Exchange Ticket + Type: Etc + Buy: 1000 + Weight: 10 + - Id: 7611 + AegisName: Fox_Symbol + Name: Symbol of Fox + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7612 + AegisName: Heart_Of_Fox_Queen + Name: Heart of Queen Fox + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7613 + AegisName: Small_Rice_Dough + Name: Small Rice Cake Dough + Type: Etc + - Id: 7614 + AegisName: Special_Packing_Paper + Name: Wrapping Paper + Type: Etc + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7615 + AegisName: MVP_Ticket + Name: MVP Voucher + Type: Etc + Buy: 10 + Weight: 10 + - Id: 7616 + AegisName: Mini_Boss_Ticket + Name: Miniboss Voucher + Type: Etc + Buy: 10 + Weight: 10 + - Id: 7617 + AegisName: Monster_Ticket_ + Name: Monster Voucher + Type: Etc + Buy: 10 + Weight: 10 + - Id: 7618 + AegisName: Monster_Crystal + Name: Monster Crystal + Type: Etc + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7619 + AegisName: Enriched_Elunium + Name: Enriched Elunium + Type: Etc + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7620 + AegisName: Enriched_Oridecon + Name: Enriched Oridecon + Type: Etc + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7621 + AegisName: Token_Of_Siegfried + Name: Token Of Siegfried + Type: Etc + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7622 + AegisName: New_Style_Coupon + Name: Hairstyle Coupon + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + - Id: 7623 + AegisName: Name_Change_Coupon + Name: Ticket Of Identification + Type: Etc + Buy: 2 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7624 + AegisName: Spring_Stanza23 + Name: Spring Stanza23 + Type: Etc + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7625 + AegisName: Registration_Ticket + Name: Registration Ticket + Type: Etc + - Id: 7626 + AegisName: Bubble_Gum_Token + Name: Bubble Gum Token + Type: Etc + Buy: 10 + Weight: 10 + - Id: 7627 + AegisName: Sage_Key + Name: Sage Key + Type: Etc + - Id: 7628 + AegisName: Idiot_Key + Name: Idiot Key + Type: Etc + - Id: 7629 + AegisName: Pink_Gift_Box + Name: Pink Gift Box + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7630 + AegisName: Clean_Beach_Brush + Name: Clean Beach Brush + Type: Etc + - Id: 7631 + AegisName: Trash_Debris + Name: Trash Debris + Type: Etc + - Id: 7635 + AegisName: Sachet + Name: Sachet + Type: Etc + Buy: 100 + - Id: 7701 + AegisName: Dragon_Spirit + Name: Soul + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7702 + AegisName: Special_Cogwheel + Name: Special Cogwheel + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7703 + AegisName: Piece_Of_Cogwheel + Name: Piece of Cogwheel + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7704 + AegisName: Broken_Thermometer + Name: Broken Thermometer + Type: Etc + Buy: 2 + - Id: 7705 + AegisName: Note_Of_Geologist + Name: Note of Geologist + Type: Etc + Buy: 2 + - Id: 7706 + AegisName: Spoiled_Carrot_Juice + Name: Broken Carrot Juice + Type: Etc + Buy: 20 + Weight: 40 + - Id: 7707 + AegisName: Spoiled_Banana_Juice + Name: Broken Banana Juice + Type: Etc + Buy: 20 + Weight: 40 + - Id: 7708 + AegisName: Spoiled_Apple_Juice + Name: Broken Apple Juice + Type: Etc + Buy: 20 + Weight: 40 + - Id: 7709 + AegisName: Spoiled_Grape_Juice + Name: Broken Grape Juice + Type: Etc + Buy: 20 + Weight: 40 + - Id: 7710 + AegisName: Black_Gemstone + Name: Black Gemstone + Type: Etc + Buy: 600 + Weight: 30 + - Id: 7711 + AegisName: Update_Ticket + Name: Event Ticket + Type: Etc + Weight: 10 + - Id: 7712 + AegisName: Nokia5500 + Name: Nokia 5500 + Type: Etc + Weight: 10 + - Id: 7713 + AegisName: BlueCard_A_ + Name: Blue A(2) Card + Type: Etc + Weight: 10 + - Id: 7714 + AegisName: BlueCard_R_ + Name: Blue R(2) Card + Type: Etc + Weight: 10 + - Id: 7715 + AegisName: Handmade_Choco_Recipe + Name: Handmade Chocolate Recipe + Type: Etc + - Id: 7716 + AegisName: Strawberry_Choco_Recipe + Name: Chocolate Strawberry Recipe + Type: Etc + - Id: 7717 + AegisName: Choco_Tart_Recipe + Name: Chocolate Tart Recipe + Type: Etc + - Id: 7718 + AegisName: Cacao_Bean + Name: Cacao Bean + Type: Etc + Weight: 10 + - Id: 7719 + AegisName: BlueCard_G + Name: Blue G Card + Type: Etc + Weight: 10 + - Id: 7720 + AegisName: Gold_Coin_US + Name: Gold Coin + Type: Etc + Buy: 100 + Weight: 10 + - Id: 7721 + AegisName: Treasure_Box_ + Name: Treasure Box + Type: Etc + Buy: 100 + Weight: 500 + - Id: 7722 + AegisName: Debt_Note + Name: Debt Note + Type: Etc + Buy: 20 + - Id: 7723 + AegisName: Diamond_Of_Ruin + Name: Diamond of Ruin + Type: Etc + Buy: 20 + - Id: 7724 + AegisName: Forbidden_Secret_Art + Name: Forbidden Secret Art + Type: Etc + Buy: 20 + - Id: 7725 + AegisName: Unlucky_Emerald + Name: Unlucky Emerald + Type: Etc + Buy: 20 + - Id: 7726 + AegisName: Token_Of_King + Name: Token of King + Type: Etc + Buy: 20 + - Id: 7727 + AegisName: HP_Doctor_Ticket + Name: HP Doctor Ticket + Type: Etc + - Id: 7728 + AegisName: SP_Doctor_Ticket + Name: SP Doctor Ticket + Type: Etc + - Id: 7729 + AegisName: Rok_Star_Badge + Name: Rok Star Badge + Type: Etc + Buy: 20 + Weight: 100 + - Id: 7730 + AegisName: Mission_Certificate1 + Name: Mission Ticket 1 + Type: Etc + Weight: 10 + - Id: 7731 + AegisName: Mission_Certificate2 + Name: Mission Ticket 2 + Type: Etc + Weight: 10 + - Id: 7732 + AegisName: Mission_Certificate3 + Name: Mission Ticket 3 + Type: Etc + Weight: 10 + - Id: 7733 + AegisName: Mission_Certificate4 + Name: Mission Ticket 4 + Type: Etc + Weight: 10 + - Id: 7734 + AegisName: Mission_Certificate5 + Name: Mission Ticket 5 + Type: Etc + Weight: 10 + - Id: 7735 + AegisName: Mission_Certificate6 + Name: Mission Ticket 6 + Type: Etc + Weight: 10 + - Id: 7736 + AegisName: Mission_Certificate7 + Name: Mission Ticket 7 + Type: Etc + Weight: 10 + - Id: 7737 + AegisName: Mission_Certificate8 + Name: Mission Ticket 8 + Type: Etc + Weight: 10 + - Id: 7738 + AegisName: Mission_Certificate9 + Name: Mission Ticket 9 + Type: Etc + Weight: 10 + - Id: 7739 + AegisName: Mission_Certificate10 + Name: Mission Ticket 10 + Type: Etc + Weight: 10 + - Id: 7740 + AegisName: Mission_Certificate11 + Name: Mission Ticket 11 + Type: Etc + Weight: 10 + - Id: 7741 + AegisName: Mission_Certificate12 + Name: Mission Ticket 12 + Type: Etc + Weight: 10 + - Id: 7742 + AegisName: Kaong + Name: Kaong + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7743 + AegisName: Gulaman + Name: Gulaman + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7744 + AegisName: Leche_Flan + Name: Leche Flan + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7745 + AegisName: Ube_Jam + Name: Ube Jam + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7746 + AegisName: Sago + Name: Sago + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7747 + AegisName: Langka + Name: Langka + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7748 + AegisName: Sweet_Bean + Name: Sweet Beans + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7749 + AegisName: Sweet_Banana + Name: Sweet Bananas + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7750 + AegisName: Macapuno + Name: Macapuno + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7751 + AegisName: Old_White_Cloth + Name: Old White Cloth + Type: Etc + Buy: 550 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7752 + AegisName: Clattering_Skull + Name: Clattering Skull + Type: Etc + Buy: 840 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7753 + AegisName: Broken_Farming_Utensil + Name: Broken Farming Utensil + Type: Etc + Buy: 330 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7754 + AegisName: Broken_Crown + Name: Broken Crown + Type: Etc + Buy: 3000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7755 + AegisName: Research_Note + Name: Research Note + Type: Etc + Buy: 20 + - Id: 7756 + AegisName: Sealed_Book + Name: Sealed Book + Type: Etc + Buy: 2000 + Weight: 10 + - Id: 7757 + AegisName: Mithril + Name: Mithril + Type: Etc + Buy: 20 + Weight: 100 + - Id: 7758 + AegisName: Star_Crystal + Name: Star Crystal + Type: Etc + Buy: 20 + Weight: 100 + - Id: 7759 + AegisName: Geology_Report + Name: Geologist's Report + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7760 + AegisName: Yaga_Magic_Book + Name: Yaga's Magic Book + Type: Etc + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7761 + AegisName: Magic_Gourd_Bottle + Name: Magic Gourd Bottle + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7762 + AegisName: Yaga_Pestle + Name: Yaga's Pestle + Type: Etc + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7763 + AegisName: Sticky_Herb + Name: Sticky Herb + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7764 + AegisName: High_Strength_Adhesive + Name: High Strength Adhesive + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7765 + AegisName: Yaga_Secret_Medicine + Name: Baba Yaga's Secret Medicine + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7766 + AegisName: Bok_Choy + Name: Bok Choy + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7767 + AegisName: Chung_E_Cake + Name: Green Maiden's Cake + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7768 + AegisName: Squid + Name: Squid + Type: Etc + Weight: 10 + - Id: 7769 + AegisName: Egg_Yolk + Name: Egg Yolk + Type: Etc + Weight: 10 + - Id: 7770 + AegisName: Sweet_Rice + Name: Sweet Rice + Type: Etc + Weight: 10 + - Id: 7771 + AegisName: Lotus_Leaf + Name: Lotus Leaf + Type: Etc + Weight: 10 + - Id: 7772 + AegisName: String + Name: String + Type: Etc + Weight: 10 + - Id: 7773 + AegisName: War_Badge + Name: Wat Badge + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7774 + AegisName: Chung_E_Ticket + Name: Green Maiden Ticket + Type: Etc + Weight: 10 + - Id: 7775 + AegisName: Spring_Rabbit_Ticket + Name: Spring Rabbit Ticket + Type: Etc + Weight: 10 + - Id: 7776 + AegisName: Max_Weight_Up_Scroll + Name: Gym Pass + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7777 + AegisName: Gold_Box + Name: Sealed Golden Box + Type: Etc + Weight: 10 + - Id: 7778 + AegisName: Silver_Box + Name: Sealed Silver Box + Type: Etc + Weight: 10 + - Id: 7779 + AegisName: Gold_Key_TW + Name: Golden Key + Type: Etc + Weight: 10 + - Id: 7780 + AegisName: Silver_Key + Name: Silver Key + Type: Etc + Weight: 10 + - Id: 7781 + AegisName: Heart_Box + Name: Engrave Treasure Box + Type: Etc + Weight: 10 + - Id: 7782 + AegisName: Gold_Key77 + Name: Episode 13.1 Poporing Key + Type: Etc + Weight: 10 + - Id: 7783 + AegisName: Silver_Key77 + Name: Episode 13.2 Poring Key + Type: Etc + Weight: 10 + - Id: 7784 + AegisName: Fawner_Coupon1 + Name: Free Coupon 1 + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7785 + AegisName: Fawner_Coupon2 + Name: Free Coupon 2 + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7786 + AegisName: Fawner_Coupon3 + Name: Free Coupon 3 + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7787 + AegisName: Fawner_Coupon4 + Name: Free Coupon 4 + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7788 + AegisName: Fawner_Coupon5 + Name: Free Coupon 5 + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7789 + AegisName: Fawner_Coupon6 + Name: Free Coupon 6 + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7790 + AegisName: Fawner_Coupon7 + Name: Free Coupon 7 + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7791 + AegisName: Fawner_Coupon8 + Name: Free Coupon 8 + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7792 + AegisName: Guyak + Name: Guyak + Type: Etc + Weight: 10 + - Id: 7793 + AegisName: Golden_Apple + Name: Golden Apple + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7794 + AegisName: Fate_Of_Crow + Name: The Crow of Destiny + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7795 + AegisName: Mami_Photo_Album + Name: Mammi's Photo Album + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7796 + AegisName: Author_Autograph + Name: Author's Autograph + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7797 + AegisName: Author_Memo + Name: Author's Memo + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7798 + AegisName: Dark_Debris + Name: Fragment of Darkness + Type: Etc + Buy: 500 + Weight: 10 + - Id: 7799 + AegisName: Dark_Crystal + Name: Crystal of Darkness + Type: Etc + Buy: 10 + Weight: 10 + - Id: 7800 + AegisName: Golden_Apple_ + Name: Golden Charm Apple + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7801 + AegisName: Girl_Fan_Letter + Name: Girl's Letter + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7802 + AegisName: Autograph_Book + Name: Signature Notebook + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7803 + AegisName: Battle_Manual_TW + Name: Beginner's Field Manual + Type: Etc + Weight: 10 + - Id: 7805 + AegisName: Brown_Ring + Name: Brown Jenoss's Family Ring + Type: Etc + Weight: 10 + - Id: 7806 + AegisName: Black_Anvil + Name: God Anvil + Type: Etc + Weight: 10 + - Id: 7807 + AegisName: Ore + Name: God Mineral + Type: Etc + Weight: 10 + - Id: 7808 + AegisName: Gold_Hammer + Name: God Hammer + Type: Etc + Weight: 10 + - Id: 7809 + AegisName: Gold_Furnace + Name: God Furnace + Type: Etc + Weight: 10 + - Id: 7810 + AegisName: Yellow_Cat_Eyed_Stone + Name: Symbol of Richness + Type: Etc + Weight: 10 + - Id: 7811 + AegisName: Gold_Anvil + Name: Anvil + Type: Etc + Weight: 10 + - Id: 7812 + AegisName: Red_Cat_Eyed_Stone + Name: Symbol of Bravery + Type: Etc + Weight: 10 + - Id: 7813 + AegisName: Th_Red_Ring + Name: Red Jenoss's Family Ring + Type: Etc + Weight: 10 + - Id: 7814 + AegisName: Green_Ring + Name: Green Jenoss's Family Ring + Type: Etc + Weight: 10 + - Id: 7815 + AegisName: Blue_Ring + Name: Blue Jenoss's Family Ring + Type: Etc + Weight: 10 + - Id: 7816 + AegisName: Blue_Cat_Eyed_Stone + Name: Symbol of Faith + Type: Etc + Weight: 10 + - Id: 7817 + AegisName: White_Cat_Eyed_Stone + Name: Symbol of Peace + Type: Etc + Weight: 10 + - Id: 7818 + AegisName: RJC_Golden_Necklace + Name: Jessur's Necklace + Type: Etc + Weight: 10 + - Id: 7819 + AegisName: Nokia5300 + Name: Nokia 5300 + Type: Etc + Weight: 10 + - Id: 7820 + AegisName: Morroc_Skin + Name: Piece of Morocc Skin + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7821 + AegisName: Green_Apple + Name: Green Apple + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7822 + AegisName: Whole_Barbecue + Name: Whole Barbecue + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7823 + AegisName: Meat_Veg_Skewer + Name: Meat Veg Skewer + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7824 + AegisName: Spirit_Liquor + Name: Spirit Liquor + Type: Etc + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7825 + AegisName: Heroic_Stone + Name: Heroic Stone + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7826 + AegisName: Continental_Guard_Paper + Name: Continental Guard Paper + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7827 + AegisName: Mineral_Report + Name: Mineral Evals + Type: Etc + - Id: 7828 + AegisName: BF_Badge1 + Name: Bravery Badge + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7829 + AegisName: BF_Badge2 + Name: Valor Badge + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7830 + AegisName: Goddess_Tear + Name: Goddess Tear + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7831 + AegisName: Valkyrie_Token + Name: Valkyrie's Token + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7832 + AegisName: Brynhild_Armor_Piece + Name: Brynhild Armor Piece + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7833 + AegisName: Hero_Remains + Name: Hero's Remains + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7834 + AegisName: Andvari_Ring + Name: Andvari's Ring + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7835 + AegisName: Dusk_Glow + Name: Dusk Glow + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7836 + AegisName: Dawn_Essence + Name: Dawn Essence + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7837 + AegisName: Cold_Moonlight + Name: Cold Moonlight + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7838 + AegisName: Hazy_Starlight + Name: Hazy Starlight + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7839 + AegisName: Crystal_Key + Name: Crystal Key + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7840 + AegisName: Valkyrie_Gift + Name: Valkyrie's Gift + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7841 + AegisName: Spotted_Paper + Name: Stained Piece Of Paper + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7842 + AegisName: Torn_Paper + Name: Torn Piece Of Paper + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7843 + AegisName: Old_Paper + Name: Old Piece Of Paper + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7844 + AegisName: Burnt_Paper + Name: Burnt Pieces Of Paper + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7845 + AegisName: Copy_Of_Spotted_Paper + Name: Copy Of Spotted Paper + Type: Etc + Weight: 10 + - Id: 7846 + AegisName: Copy_Of_Torn_Paper + Name: Copy Of Torn Paper + Type: Etc + Weight: 10 + - Id: 7847 + AegisName: Copy_Of_Old_Paper + Name: Copy Of Old Paper + Type: Etc + Weight: 10 + - Id: 7848 + AegisName: Copy_Of_Burnt_Paper + Name: Copy Of Burnt Paper + Type: Etc + Weight: 10 + - Id: 7849 + AegisName: Soul_Crystal + Name: Soul Crystal + Type: Etc + Weight: 10 + - Id: 7850 + AegisName: Wooden_Block_ + Name: Wooden Block + Type: Etc + Buy: 20 + Weight: 100 + - Id: 7851 + AegisName: Pass_F1 + Name: Wii Raffle Ticket + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7852 + AegisName: Pass_F2 + Name: Divx Player Raffle Ticket + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7853 + AegisName: Pass_F3 + Name: iPod nano Raffle Ticket + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7854 + AegisName: Pass_CF + Name: Comodo Festival Ticket + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7855 + AegisName: Heart + Name: Heart + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7856 + AegisName: Girl_Bunch_Of_Flower_ + Name: Girl's Bouquet + Type: Etc + Buy: 20 + Weight: 50 + - Id: 7857 + AegisName: Handmade_Kitty_Doll + Name: Hand-made Kitty Doll + Type: Etc + Buy: 20 + Weight: 30 + - Id: 7858 + AegisName: Dragonball_Yellow_ + Name: Dragonball Yellow + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7859 + AegisName: Game_Ticket + Name: Game Ticket + Type: Etc + Buy: 20 + Weight: 100 + - Id: 7860 + AegisName: Peeps + Name: Peeps + Type: Etc + Weight: 50 + - Id: 7861 + AegisName: Jelly_Bean + Name: Jelly Bean + Type: Etc + Weight: 50 + - Id: 7862 + AegisName: Marshmallow + Name: Marshmallow + Type: Etc + Weight: 50 + - Id: 7863 + AegisName: GOLD_ID4 + Name: Special Gold + Type: Etc + Buy: 20 + Weight: 200 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7864 + AegisName: Love_Flower + Name: Love Flower + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7865 + AegisName: Gold_Pouch + Name: Gold Pouch + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7866 + AegisName: Certificate + Name: Certificate + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7867 + AegisName: SesamePouch + Name: Sesame Bag + Type: Etc + Buy: 10 + Weight: 100 + - Id: 7868 + AegisName: Water + Name: Fresh Water + Type: Etc + Buy: 10 + Weight: 100 + - Id: 7869 + AegisName: RicePouch + Name: Rice Pouch + Type: Etc + Buy: 10 + Weight: 100 + - Id: 7870 + AegisName: Corn + Name: Corn + Type: Etc + Buy: 5 + Weight: 20 + - Id: 7871 + AegisName: BeanPouch + Name: Bean Bag + Type: Etc + Buy: 10 + Weight: 20 + - Id: 7872 + AegisName: Grass + Name: Herb + Type: Etc + Buy: 10 + Weight: 30 + - Id: 7873 + AegisName: MVP_Monster_Scroll + Name: MVP Monster Scroll + Type: Etc + Buy: 10 + Weight: 10 + - Id: 7874 + AegisName: Monster_Scroll + Name: Create Monster Scroll + Type: Etc + Buy: 10 + Weight: 10 + - Id: 7875 + AegisName: Pirate_Box + Name: Pirate Treasure + Type: Etc + Buy: 300000 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7876 + AegisName: Gold_Key + Name: Golden Key + Type: Etc + Weight: 50 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7877 + AegisName: Red_Ring + Name: Red Ring + Type: Etc + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7878 + AegisName: Lusalka_Hair + Name: Lusalka's Hair + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7879 + AegisName: Golden_Thread + Name: Golden Thread + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7880 + AegisName: Babayaga_Silver_Spoon + Name: Baba Yaga's Silver Spoon + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7881 + AegisName: Book_Of_Magic + Name: Mystery Magic Book + Type: Etc + Weight: 50 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7882 + AegisName: Pointed_Branch + Name: Sharp Branch + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7883 + AegisName: Pointed_Wooden_Flute + Name: Wooden Flute + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7884 + AegisName: Jade_Plate + Name: Jade Plate + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7885 + AegisName: Sacred_Arrow + Name: Sacred Arrow + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7886 + AegisName: Bean_Paste + Name: Bean Paste + Type: Etc + Weight: 10 + - Id: 7887 + AegisName: Dried_Fruit_Box + Name: Dried Fruit Box + Type: Etc + Weight: 30 + - Id: 7888 + AegisName: Bag_Of_Nuts + Name: Bag of Nuts + Type: Etc + Weight: 30 + - Id: 7889 + AegisName: Chicken_Feed + Name: Chicken Feed + Type: Etc + Weight: 20 + - Id: 7891 + AegisName: Mug + Name: Mug + Type: Etc + Buy: 2 + Weight: 100 + - Id: 7892 + AegisName: Charcoal + Name: Charcoal + Type: Etc + Buy: 10 + Weight: 10 + - Id: 7893 + AegisName: Sulfur + Name: Sulphur + Type: Etc + Buy: 10 + Weight: 10 + - Id: 7894 + AegisName: Nitrate + Name: Nitrogen Acid + Type: Etc + Buy: 10 + Weight: 10 + - Id: 7895 + AegisName: TRO_Memory_Book01 + Name: Rama5 Book + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7896 + AegisName: TRO_Memory_Book02 + Name: Loykrathong Book + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7897 + AegisName: TRO_Memory_Book03 + Name: Constitution Book + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7898 + AegisName: VVS_Balmung + Name: VV Strong Balmung + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7899 + AegisName: Spiritualist_Dagger + Name: Dagger Of Psychic + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7900 + AegisName: Jenoss_Ring1 + Name: Jonathan Family Ring + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7901 + AegisName: Jenoss_Ring2 + Name: Jillberriel Family Ring + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7902 + AegisName: Jenoss_Ring3 + Name: Jessur Family Ring + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7903 + AegisName: Jenoss_Ring4 + Name: Jenoss Family Ring + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7904 + AegisName: Piano_Key + Name: Piano Key + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7905 + AegisName: Rok_Star_Badge_ + Name: Rok Star Badge + Type: Etc + Buy: 20 + Weight: 100 + - Id: 7906 + AegisName: Poppy_Wreath + Name: Poppy Wreath + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7907 + AegisName: Bobbin_Of_Goddess + Name: Bobbin Of Goddess + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7908 + AegisName: Louis_Hair_Coupon + Name: Louise's Beauty Coupon + Type: Etc + Weight: 10 + - Id: 7909 + AegisName: Stolen_Cookie + Name: Stolen Cookie + Type: Etc + Weight: 10 + - Id: 7910 + AegisName: Stolen_Candy + Name: Stolen Candy + Type: Etc + Weight: 10 + - Id: 7911 + AegisName: Yulia_Hat + Name: Yulia's Hat + Type: Etc + Weight: 10 + - Id: 7912 + AegisName: Portable_Snowman + Name: Portable Snowman Machine + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7913 + AegisName: Test_Certificate + Name: Battle Test Certificate + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7914 + AegisName: Ancient_Document_TW + Name: Ancient Language Document + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7915 + AegisName: Copper_Coin_ + Name: Bronze Coin + Type: Etc + - Id: 7916 + AegisName: Silver_Coin_ + Name: Silver Coin + Type: Etc + - Id: 7917 + AegisName: Magic_Potion + Name: Magic Potion + Type: Etc + - Id: 7918 + AegisName: Particle_Of_Memory + Name: Fragment Of Memory + Type: Etc + Buy: 2000 + Weight: 100 + - Id: 7919 + AegisName: Festival_Ticket + Name: Festival Ticket + Type: Etc + Buy: 10 + Weight: 10 + - Id: 7920 + AegisName: Hero's_Arsenal + Name: He's Arsenal + Type: Etc + - Id: 7921 + AegisName: Essence_Of_Dragon + Name: Essence Of Dragon + Type: Etc + Buy: 1000 + Weight: 10 + - Id: 7922 + AegisName: RWC_Ticket + Name: RWC Voucher Items + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7923 + AegisName: KRATHONG_ + Name: Krathong + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7928 + AegisName: Brazilian_Flag_ + Name: Brazil National Flag + Type: Etc + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7929 + AegisName: Golden_Coin_ + Name: Gold Coin + Type: Etc + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7930 + AegisName: Cowking's_Nose_Ring + Name: Devil's Cattle Ring + Type: Etc + Weight: 1000 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7931 + AegisName: Poison_Kit + Name: Poison Kit + Type: Etc + Buy: 1 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7932 + AegisName: Poison_Herb_Nerium + Name: Poison Herb Nerium + Type: Etc + Buy: 1 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7933 + AegisName: Poison_Herb_Rantana + Name: Poison Herb Rantana + Type: Etc + Buy: 1 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7934 + AegisName: Poison_Herb_Makulata + Name: Poison Herb Makulata + Type: Etc + Buy: 1 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7935 + AegisName: Poison_Herb_Seratum + Name: Poison Herb Seratum + Type: Etc + Buy: 1 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7936 + AegisName: Poison_Herb_Scopolia + Name: Poison Herb Scoporia + Type: Etc + Buy: 1 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7937 + AegisName: Poison_Herb_Amoena + Name: Poison Herb Amoena + Type: Etc + Buy: 1 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7938 + AegisName: Light_Granule + Name: Light Granule + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7939 + AegisName: Elder_Branch + Name: Elder Branch + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7940 + AegisName: Special_Alloy_Trap + Name: Special Alloy Trap + Type: Etc + Buy: 200 + Weight: 2 + Flags: + BuyingStore: true + - Id: 7941 + AegisName: Halloween_Ticket + Name: Halloween Ticket + Type: Etc + Buy: 10 + - Id: 7942 + AegisName: Letter_From_Chico + Name: Chico Cesar Letter + Type: Etc + - Id: 7943 + AegisName: Caskinya + Name: Caskinya + Type: Etc + - Id: 7944 + AegisName: Sealed_Box + Name: Sealed Box + Type: Etc + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + - Id: 7945 + AegisName: Almighty_Charm + Name: Universal Amulet + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + - Id: 7946 + AegisName: Valentine_Gold_Ring + Name: Gold Ring Of Valentine + Type: Etc + Buy: 10 + - Id: 7947 + AegisName: Valentine_Silver_Ring + Name: Silver Ring Of Valentine + Type: Etc + Buy: 10 + - Id: 7948 + AegisName: Box + Name: Box + Type: Etc + Buy: 10 + Weight: 10 + - Id: 7949 + AegisName: Woven_Wool + Name: Woven Wool + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7950 + AegisName: Ayothaya_Ticket + Name: Ayothaya Fest Ticket + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7951 + AegisName: Gold_Tulip + Name: Golden Tulip Flower + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7952 + AegisName: Gift_From_Romiros + Name: Gift Of Lomi Ross + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7953 + AegisName: Gift_From_Juliedge + Name: Gift Of Juliet + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7954 + AegisName: Festival_Ticket_ + Name: Summer Festival Ticket + Type: Etc + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7955 + AegisName: Lost_Card1 + Name: Lost Card1 + Type: Etc + Buy: 10 + - Id: 7956 + AegisName: Lost_Card2 + Name: Lost Card2 + Type: Etc + Buy: 10 + - Id: 7957 + AegisName: Lost_Card3 + Name: Lost Card3 + Type: Etc + Buy: 10 + - Id: 7958 + AegisName: Lost_Card4 + Name: Lost Card4 + Type: Etc + Buy: 10 + - Id: 7959 + AegisName: Ancient_Gold_Coin + Name: Ancient Gold Coin + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoGuildStorage: true + - Id: 7960 + AegisName: Ancient_Silver_Coin + Name: Ancient Silver Coin + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoGuildStorage: true + - Id: 7961 + AegisName: Weapon_Exchange + Name: Weapon Exchange + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7962 + AegisName: Treasure_Map1 + Name: Treasure Map1 + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7963 + AegisName: Treasure_Map2 + Name: Treasure Map2 + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7964 + AegisName: Treasure_Map3 + Name: Treasure Map3 + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7965 + AegisName: Treasure_Map4 + Name: Treasure Map4 + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7966 + AegisName: Weird_Parchment1 + Name: Weird Parchment1 + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7967 + AegisName: Weird_Parchment2 + Name: Weird Parchment2 + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7968 + AegisName: Weird_Parchment3 + Name: Weird Parchment3 + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7969 + AegisName: Weird_Parchment4 + Name: Weird Parchment4 + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7970 + AegisName: Unwritten_Letter1 + Name: Unwritten Letter1 + Type: Etc + - Id: 7971 + AegisName: Unwritten_Letter2 + Name: Unwritten Letter2 + Type: Etc + - Id: 7972 + AegisName: Oath_Day_Letter + Name: Oath Day Letter + Type: Etc + - Id: 7973 + AegisName: Immortality_Egg + Name: Immortality Egg + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7974 + AegisName: Illusion_Piece + Name: Illusion Piece + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7975 + AegisName: Cupid_Choco + Name: Cupid Choco + Type: Etc + - Id: 7976 + AegisName: Gf_Magic_Coin + Name: Gf Magic Coin + Type: Etc + Buy: 20 + - Id: 7977 + AegisName: Hunting_Medal_Badge + Name: Hunting Medal Badge + Type: Etc + - Id: 7978 + AegisName: Spring_Stanza1 + Name: Spring Stanza1 + Type: Etc + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7979 + AegisName: Spring_Stanza2 + Name: Spring Stanza2 + Type: Etc + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7980 + AegisName: Spring_Stanza3 + Name: Spring Stanza3 + Type: Etc + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7981 + AegisName: Spring_Stanza4 + Name: Spring Stanza4 + Type: Etc + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7982 + AegisName: Spring_Stanza5 + Name: Spring Stanza5 + Type: Etc + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7983 + AegisName: Spring_Stanza6 + Name: Spring Stanza6 + Type: Etc + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7984 + AegisName: Spring_Stanza7 + Name: Spring Stanza7 + Type: Etc + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7985 + AegisName: Spring_Stanza8 + Name: Spring Stanza8 + Type: Etc + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7986 + AegisName: Spring_Stanza9 + Name: Spring Stanza9 + Type: Etc + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7987 + AegisName: Spring_Stanza10 + Name: Spring Stanza10 + Type: Etc + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7988 + AegisName: Spring_Stanza11 + Name: Spring Stanza11 + Type: Etc + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7989 + AegisName: Spring_Stanza12 + Name: Spring Stanza12 + Type: Etc + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7990 + AegisName: Spring_Stanza13 + Name: Spring Stanza13 + Type: Etc + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7991 + AegisName: Spring_Stanza14 + Name: Spring Stanza14 + Type: Etc + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7992 + AegisName: Spring_Stanza15 + Name: Spring Stanza15 + Type: Etc + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7993 + AegisName: Spring_Stanza16 + Name: Spring Stanza16 + Type: Etc + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7994 + AegisName: Spring_Stanza17 + Name: Spring Stanza17 + Type: Etc + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7995 + AegisName: Spring_Stanza18 + Name: Spring Stanza18 + Type: Etc + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7996 + AegisName: Spring_Stanza19 + Name: Spring Stanza19 + Type: Etc + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7997 + AegisName: Spring_Stanza20 + Name: Spring Stanza20 + Type: Etc + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7998 + AegisName: Spring_Stanza21 + Name: Spring Stanza21 + Type: Etc + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7999 + AegisName: Spring_Stanza22 + Name: Spring Stanza22 + Type: Etc + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 11000 + AegisName: Prontera_Book_01 + Name: History book of Prontera + Type: Etc + Buy: 8000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 11001 + AegisName: Adventure_Story01 + Name: Adventure Story Vol.1 + Type: Etc + Buy: 8000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 11002 + AegisName: Great_Chef_Orleans01 + Name: Chef King Orleans Vol.1 + Type: Etc + Buy: 8000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 11003 + AegisName: Legend_Of_Kafra01 + Name: Kafra Legend Vol.1 + Type: Etc + Buy: 8000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 11004 + AegisName: Mercenary_Rebellion + Name: Old Book + Type: Etc + Buy: 10000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 11005 + AegisName: Tyrant_Schmidt + Name: Rune Royal Family Book + Type: Etc + Buy: 10000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 11006 + AegisName: Blood_Flower01 + Name: Blood Flower Vol.1 + Type: Etc + Buy: 8000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 11007 + AegisName: Blood_Flower02 + Name: Blood Flower Vol.2 + Type: Etc + Buy: 8000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 11008 + AegisName: Barmund + Name: Biographical Dictionary Copy Edition + Type: Etc + Buy: 10000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 11009 + AegisName: Adventure_Story02 + Name: Adventure Story Vol.2 + Type: Etc + Buy: 8000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 11010 + AegisName: Reward_List_Book + Name: Battlegrounds Catalog + Type: Etc + Weight: 10 + - Id: 11011 + AegisName: Barmund_Note + Name: Varmunt's Note + Type: Etc + - Id: 11012 + AegisName: Expedition_Report + Name: Expedition Report + Type: Etc + - Id: 11013 + AegisName: Expedition_Report_Vol1 + Name: Expedition Report Vol1 + Type: Etc + - Id: 11014 + AegisName: Expedition_Report_Vol2 + Name: Expedition Report Vol2 + Type: Etc + - Id: 11015 + AegisName: Expedition_Report_Vol3 + Name: Expedition Report Vol3 + Type: Etc + - Id: 11016 + AegisName: Expedition_Report_Vol4 + Name: Expedition Report Vol4 + Type: Etc + - Id: 11017 + AegisName: Reward_List_Book2 + Name: KVM Reward Items Catalog + Type: Etc + Weight: 10 + - Id: 11018 + AegisName: Splendide_Selling_Item + Name: Splendide Selling Item + Type: Etc + Weight: 10 + - Id: 11019 + AegisName: Manuk_Selling_Item + Name: Manuk Selling Item + Type: Etc + Weight: 10 + - Id: 11020 + AegisName: Japan_Book1 + Name: Japan Book1 + Type: Etc + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + - Id: 11021 + AegisName: Japan_Book2 + Name: Japan Book2 + Type: Etc + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + - Id: 11022 + AegisName: Mix_Cook_Book + Name: Mix Cook Book + Type: Etc + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + - Id: 11023 + AegisName: Increase_Stamina_Study + Name: Increase Stamina Study + Type: Etc + Buy: 10 + Weight: 50 + Flags: + BuyingStore: true + - Id: 11024 + AegisName: Vital_Drink_CB + Name: Vital Drink CB + Type: Etc + Buy: 10 + Weight: 50 + Flags: + BuyingStore: true + - Id: 11025 + AegisName: Swordman_Book_Basic + Name: Swordman Book Basic + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11026 + AegisName: Swordman_Book_Practice + Name: Swordman Book Practice + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11027 + AegisName: Swrodman_Book_Misc + Name: Swrodman Book Misc + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11028 + AegisName: Thief_Book_Basic + Name: Thief Book Basic + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11029 + AegisName: Thief_Book_Practice + Name: Thief Book Practice + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11030 + AegisName: Thief_Book_Misc + Name: Thief Book Misc + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11031 + AegisName: Archer_Book_Basic + Name: Archer Book Basic + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11032 + AegisName: Archer_Book_Practice + Name: Archer Book Practice + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11033 + AegisName: Archer_Book_Misc + Name: Archer Book Misc + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11034 + AegisName: Acol_Book_Basic + Name: Acol Book Basic + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11035 + AegisName: Acol_Book_Practice + Name: Acol Book Practice + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11036 + AegisName: Acol_Book_Misc + Name: Acol Book Misc + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11037 + AegisName: Mage_Book_Basic + Name: Mage Book Basic + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11038 + AegisName: Mage_Book_Practice + Name: Mage Book Practice + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11039 + AegisName: Mage_Book_Misc + Name: Mage Book Misc + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11040 + AegisName: Mer_Book_Basic + Name: Mer Book Basic + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11041 + AegisName: Mer_Book_Practice + Name: Mer Book Practice + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11042 + AegisName: Mer_Book_Misc + Name: Mer Book Misc + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11043 + AegisName: TK_Book_Basic + Name: TK Book Basic + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11044 + AegisName: TK_Book_Practice + Name: TK Book Practice + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11045 + AegisName: TK_Book_Misc + Name: TK Book Misc + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11046 + AegisName: Ninja_Book_Basic + Name: Ninja Book Basic + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11047 + AegisName: Ninja_Book_Practice + Name: Ninja Book Practice + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11048 + AegisName: Ninja_Book_Misc + Name: Ninja Book Misc + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11049 + AegisName: Gun_Book_Basic + Name: Gun Book Basic + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11050 + AegisName: Gun_Book_Practice + Name: Gun Book Practice + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11051 + AegisName: Gun_Book_Misc + Name: Gun Book Misc + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11052 + AegisName: SN_Book_Basic + Name: SN Book Basic + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11053 + AegisName: SN_Book_Practice + Name: SN Book Practice + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11054 + AegisName: SN_Book_Misc + Name: SN Book Misc + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11055 + AegisName: Basic_Adventure + Name: Basic Adventure + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11056 + AegisName: Elemental_Spirit_Guide + Name: Elemental Spirit Guide + Type: Etc + Buy: 1000 + Weight: 10 + - Id: 13200 + AegisName: Bullet + Name: Bullet + Type: Ammo + SubType: Bullet + Buy: 1 + Weight: 2 + Attack: 10 + Jobs: + Gunslinger: true + Locations: + Ammo: true + EquipLevelMin: 1 + - Id: 13201 + AegisName: Silver_Bullet + Name: Silver Bullet + Type: Ammo + SubType: Bullet + Buy: 15 + Weight: 2 + Attack: 15 + Jobs: + Gunslinger: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Holy; + - Id: 13202 + AegisName: Shell_Of_Blood + Name: Bloody Shell + Type: Ammo + SubType: Bullet + Buy: 30 + Weight: 2 + Attack: 30 + Jobs: + Gunslinger: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus2 bAddEff,Eff_Bleeding,100; + - Id: 13203 + AegisName: Flare_Sphere + Name: Flare Sphere + Type: Ammo + SubType: Grenade + Buy: 80 + Weight: 5 + Attack: 50 + Jobs: + Gunslinger: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Fire; + - Id: 13204 + AegisName: Lighting_Sphere + Name: Lightning Sphere + Type: Ammo + SubType: Grenade + Buy: 80 + Weight: 5 + Attack: 50 + Jobs: + Gunslinger: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Wind; + - Id: 13205 + AegisName: Poison_Sphere + Name: Poison Sphere + Type: Ammo + SubType: Grenade + Buy: 80 + Weight: 5 + Attack: 50 + Jobs: + Gunslinger: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,500; + - Id: 13206 + AegisName: Blind_Sphere + Name: Blind Sphere + Type: Ammo + SubType: Grenade + Buy: 80 + Weight: 5 + Attack: 50 + Jobs: + Gunslinger: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Blind,500; + - Id: 13207 + AegisName: Freezing_Sphere + Name: Freezing Sphere + Type: Ammo + SubType: Grenade + Buy: 80 + Weight: 5 + Attack: 50 + Jobs: + Gunslinger: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Water; + - Id: 13250 + AegisName: Shuriken + Name: Shuriken + Type: Ammo + SubType: Shuriken + Buy: 4 + Weight: 5 + Attack: 10 + Jobs: + Ninja: true + Locations: + Ammo: true + EquipLevelMin: 1 + - Id: 13251 + AegisName: Nimbus_Shuriken + Name: Nimbus Shuriken + Type: Ammo + SubType: Shuriken + Buy: 10 + Weight: 5 + Attack: 30 + Jobs: + Ninja: true + Locations: + Ammo: true + EquipLevelMin: 20 + - Id: 13252 + AegisName: Flash_Shuriken + Name: Flash Shuriken + Type: Ammo + SubType: Shuriken + Buy: 20 + Weight: 5 + Attack: 45 + Jobs: + Ninja: true + Locations: + Ammo: true + EquipLevelMin: 40 + - Id: 13253 + AegisName: Sharp_Leaf_Shuriken + Name: Sharp Leaf Shuriken + Type: Ammo + SubType: Shuriken + Buy: 40 + Weight: 5 + Attack: 70 + Jobs: + Ninja: true + Locations: + Ammo: true + EquipLevelMin: 60 + - Id: 13254 + AegisName: Thorn_Needle_Shuriken + Name: Thorn Needle Shuriken + Type: Ammo + SubType: Shuriken + Buy: 100 + Weight: 5 + Attack: 100 + Jobs: + Ninja: true + Locations: + Ammo: true + EquipLevelMin: 80 + - Id: 13255 + AegisName: Kunai_Of_Icicle + Name: Icicle Kunai + Type: Ammo + SubType: Kunai + Buy: 10 + Weight: 20 + Attack: 30 + Jobs: + Ninja: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Water; + - Id: 13256 + AegisName: Kunai_Of_Black_Soil + Name: Black Earth Kunai + Type: Ammo + SubType: Kunai + Buy: 10 + Weight: 20 + Attack: 30 + Jobs: + Ninja: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Earth; + - Id: 13257 + AegisName: Kunai_Of_Furious_Wind + Name: High Wind Kunai + Type: Ammo + SubType: Kunai + Buy: 10 + Weight: 20 + Attack: 30 + Jobs: + Ninja: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Wind; + - Id: 13258 + AegisName: Kunai_Of_Fierce_Flame + Name: Heat Wave Kunai + Type: Ammo + SubType: Kunai + Buy: 10 + Weight: 20 + Attack: 30 + Jobs: + Ninja: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Fire; + - Id: 13259 + AegisName: Kunai_Of_Deadly_Poison + Name: Fell Poison Kunai + Type: Ammo + SubType: Kunai + Buy: 10 + Weight: 20 + Attack: 30 + Jobs: + Ninja: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,500; + - Id: 13260 + AegisName: Apple_Bomb + Name: Apple Bomb + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 1 + Jobs: + Alchemist: true + Classes: + Third: true + Locations: + Ammo: true + EquipLevelMin: 99 + - Id: 13261 + AegisName: Coconut_Bomb + Name: Coconut Bomb + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 1 + Jobs: + Alchemist: true + Classes: + Third: true + Locations: + Ammo: true + EquipLevelMin: 99 + - Id: 13262 + AegisName: Melon_Bomb + Name: Melon Bomb + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 1 + Jobs: + Alchemist: true + Classes: + Third: true + Locations: + Ammo: true + EquipLevelMin: 99 + - Id: 13263 + AegisName: Pineapple_Bomb + Name: Pineapple Bomb + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 1 + Jobs: + Alchemist: true + Classes: + Third: true + Locations: + Ammo: true + EquipLevelMin: 99 + - Id: 13264 + AegisName: Banana_Bomb + Name: Banana Bomb + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 1 + Jobs: + Alchemist: true + Classes: + Third: true + Locations: + Ammo: true + EquipLevelMin: 99 + - Id: 13265 + AegisName: Black_Lump + Name: Black Lump + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 50 + Jobs: + Alchemist: true + Classes: + Third: true + Locations: + Ammo: true + EquipLevelMin: 99 + - Id: 13266 + AegisName: Black_Hard_Lump + Name: Hard Black Lump + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 50 + Jobs: + Alchemist: true + Classes: + Third: true + Locations: + Ammo: true + EquipLevelMin: 99 + - Id: 13267 + AegisName: Very_Hard_Lump + Name: Extremely Hard Black Lump + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 50 + Jobs: + Alchemist: true + Classes: + Third: true + Locations: + Ammo: true + EquipLevelMin: 99 + - Id: 13268 + AegisName: Mysterious_Powder + Name: Mysterious Powder + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 10 + Jobs: + Alchemist: true + Classes: + Third: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + sc_start SC_MYSTERIOUS_POWDER,10000,2; + - Id: 13269 + AegisName: Boost500_To_Throw + Name: Throwing Boost 500 + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 10 + Jobs: + Alchemist: true + Classes: + Third: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + sc_start SC_BOOST500,500000,10; + - Id: 13270 + AegisName: Full_SwingK_To_Throw + Name: Throwing Full Swing K + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 50 + Jobs: + Alchemist: true + Classes: + Third: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + sc_start SC_FULL_SWING_K,500000,50; + - Id: 13271 + AegisName: Mana_Plus_To_Throw + Name: Throwing Mana Plus + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 50 + Jobs: + Alchemist: true + Classes: + Third: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + sc_start SC_MANA_PLUS,500000,50; + - Id: 13272 + AegisName: Cure_Free_To_Throw + Name: Throwing Cure Free + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 50 + Jobs: + Alchemist: true + Classes: + Third: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + 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; + - Id: 13273 + AegisName: Stamina_Up_M_To_Throw + Name: Throwing Muramura M + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 10 + Jobs: + Alchemist: true + Classes: + Third: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + sc_start SC_MUSTLE_M,500000,5; + - Id: 13274 + AegisName: Digestive_F_To_Throw + Name: Throwing Falmons F + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 10 + Jobs: + Alchemist: true + Classes: + Third: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + sc_start SC_LIFE_FORCE_F,500000,5; + - Id: 13275 + AegisName: HP_Inc_PotS_To_Throw + Name: Throwing Increase HP Potion (Small) + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 20 + Jobs: + Alchemist: true + Classes: + Third: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + /* Item bonus in source because of BaseLevel check */ + - Id: 13276 + AegisName: HP_Inc_PotM_To_Throw + Name: Throwing Increase HP Potion (Medium) + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 40 + Jobs: + Alchemist: true + Classes: + Third: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + /* Item bonus in source because of BaseLevel check */ + - Id: 13277 + AegisName: HP_Inc_PotL_To_Throw + Name: Throwing Increase HP Potion (Large) + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 80 + Jobs: + Alchemist: true + Classes: + Third: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + /* Item bonus in source because of BaseLevel check */ + - Id: 13278 + AegisName: SP_Inc_PotS_To_Throw + Name: Throwing Increase SP Potion (Small) + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 20 + Jobs: + Alchemist: true + Classes: + Third: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + /* Item bonus in source because of BaseLevel check */ + - Id: 13279 + AegisName: SP_Inc_PotM_To_Throw + Name: Throwing Increase SP Potion (Medium) + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 40 + Jobs: + Alchemist: true + Classes: + Third: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + /* Item bonus in source because of BaseLevel check */ + - Id: 13280 + AegisName: SP_Inc_PotL_To_Throw + Name: Throwing Increase SP Potion (Large) + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 80 + Jobs: + Alchemist: true + Classes: + Third: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + /* Item bonus in source because of BaseLevel check */ + - Id: 13281 + AegisName: En_White_PotZ_To_Throw + Name: Throwing Concentrated White Potion Z + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 70 + Jobs: + Alchemist: true + Classes: + Third: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + sc_start SC_EXTRACT_WHITE_POTION_Z,500000,20; itemheal 1000,0; + - Id: 13282 + AegisName: Vitata500_To_Throw + Name: Throwing Vitata 500 + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 50 + Jobs: + Alchemist: true + Classes: + Third: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + sc_start2 SC_VITATA_500,500000,20,5; itemheal 0,200; + - Id: 13283 + AegisName: En_Cel_Juice_To_Throw + Name: Throwing Ceromain Soup + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 50 + Jobs: + Alchemist: true + Classes: + Third: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + sc_start SC_EXTRACT_SALAMINE_JUICE,500000,10; + - Id: 13284 + AegisName: Savage_BBQ_To_Throw + Name: Throwing Savage Full Roast + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 50 + Jobs: + Alchemist: true + Classes: + Third: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + sc_start SC_SAVAGE_STEAK,300000,20; + - Id: 13285 + AegisName: Wug_Cocktail_To_Throw + Name: Throwing Cocktail Warg Blood + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 50 + Jobs: + Alchemist: true + Classes: + Third: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + sc_start SC_COCKTAIL_WARG_BLOOD,300000,20; + - Id: 13286 + AegisName: M_Brisket_To_Throw + Name: Throwing Minor Stew + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 50 + Jobs: + Alchemist: true + Classes: + Third: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + sc_start SC_MINOR_BBQ,300000,20; + - Id: 13287 + AegisName: Siroma_Icetea_To_Throw + Name: Throwing Siroma Iced Tea + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 50 + Jobs: + Alchemist: true + Classes: + Third: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + sc_start SC_SIROMA_ICE_TEA,300000,20; + - Id: 13288 + AegisName: Drocera_Stew_To_Throw + Name: Throwing Drosera Herb Salad + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 50 + Jobs: + Alchemist: true + Classes: + Third: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + sc_start SC_DROCERA_HERB_STEAMED,300000,20; + - Id: 13289 + AegisName: Petti_Noodle_To_Throw + Name: Throwing Petite Tail Soup + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 50 + Jobs: + Alchemist: true + Classes: + Third: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + sc_start SC_PUTTI_TAILS_NOODLES,300000,20; + - Id: 13290 + AegisName: Black_Thing_To_Throw + Name: Throwing Black Mass + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 50 + Jobs: + Alchemist: true + Classes: + Third: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + sc_start SC_STOMACHACHE,60000,rand(5,10); + - Id: 13294 + AegisName: Explosive_Kunai + Name: Explosive Kunai + Type: Ammo + SubType: Kunai + Buy: 100 + Weight: 30 + Attack: 50 + Jobs: + Ninja: true + Classes: + Normal: true + Upper: true + Baby: true + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Ammo: true + EquipLevelMin: 100 + Script: | + bonus bAtkEle,Ele_Neutral; + - Id: 18000 + AegisName: Cannon_Ball + Name: Cannon Ball + Type: Ammo + SubType: Cannonball + Buy: 100 + Weight: 10 + Attack: 100 + Jobs: + Alchemist: true + Blacksmith: true + Classes: + Third: true + Locations: + Ammo: true + EquipLevelMin: 99 + - Id: 18001 + AegisName: Holy_Cannon_Ball + Name: Holy Cannon Ball + Type: Ammo + SubType: Cannonball + Buy: 200 + Weight: 10 + Attack: 120 + Jobs: + Alchemist: true + Blacksmith: true + Classes: + Third: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + bonus bAtkEle,Ele_Holy; + - Id: 18002 + AegisName: Dark_Cannon_Ball + Name: Dark Cannon Ball + Type: Ammo + SubType: Cannonball + Buy: 200 + Weight: 10 + Attack: 120 + Jobs: + Alchemist: true + Blacksmith: true + Classes: + Third: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + bonus bAtkEle,Ele_Dark; + - Id: 18003 + AegisName: Soul_Cannon_Ball + Name: Soul Cannon Ball + Type: Ammo + SubType: Cannonball + Buy: 200 + Weight: 10 + Attack: 120 + Jobs: + Alchemist: true + Blacksmith: true + Classes: + Third: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + bonus bAtkEle,Ele_Ghost; + - Id: 18004 + AegisName: Iron_Cannon_Ball + Name: Iron Cannon Ball + Type: Ammo + SubType: Cannonball + Buy: 500 + Weight: 10 + Attack: 250 + Jobs: + Alchemist: true + Blacksmith: true + Classes: + Third: true + Locations: + Ammo: true + EquipLevelMin: 99 diff --git a/db/pre-re/item_db_usable.yml b/db/pre-re/item_db_usable.yml new file mode 100644 index 0000000000..192598a529 --- /dev/null +++ b/db/pre-re/item_db_usable.yml @@ -0,0 +1,22303 @@ +# This file is a part of rAthena. +# Copyright(C) 2019 rAthena Development Team +# https://rathena.org - https://github.com/rathena +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# +########################################################################### +# Item Database +########################################################################### +# +# Item Settings +# +########################################################################### +# - Id Item ID. +# AegisName Server name to reference the item in scripts and lookups, should use no spaces. +# Name Name in English for displaying as output. +# Type Item type. (Default: Etc) +# SubType Weapon or Ammo type. (Default: 0) +# Buy Buying price. When not specified, becomes double the sell price. (Default: 0) +# Sell Selling price. When not specified, becomes half the buy price. (Default: 0) +# Weight Item weight. Each 10 is 1 weight. (Default: 0) +# Attack Weapon's attack. (Default: 0) +# MagicAttack Weapon's magic attack. (Default: 0) +# Defense Armor's defense. (Default: 0) +# Range Weapon's attack range. (Default: 0) +# Slots Available slots in item. (Default: 0) +# Jobs Jobs that can equip the item. (Map default is 'All: true') +# Classes Upper class types that can equip the item. (Map default is 'All: true') +# Gender Gender that can equip the item. (Default: Both) +# Locations Equipment's placement. (Default: None) +# WeaponLevel Weapon level. (Default: 0) +# EquipLevelMin Minimum required level to equip. (Default: 0) +# EquipLevelMax Maximum level that can equip. (Default: 0) +# Refineable If the item can be refined. (Default: false) +# View View sprite of an item. (Default: 0) +# AliasName Another item's AegisName that will be sent to the client instead of this item's AegisName. (Default: null) +# Flags: Item flags. (Default: null) +# BuyingStore If the item is available for Buyingstores. (Default: false) +# DeadBranch If the item is a Dead Branch. (Default: false) +# Container If the item is part of a container. (Default: false) +# UniqueId If the item is a unique stack. (Default: false) +# BindOnEquip If the item is bound to the character upon equipping. (Default: false) +# DropAnnounce If the item has a special announcement to self on drop. (Default: false) +# NoConsume If the item is consumed on use. (Default: false) +# DropEffect If the item has a special effect when on the ground. (Default: None) +# Delay: Item use delay. (Default: null) +# Duration Duration of delay in seconds. +# Status Status Change used to track delay. (Default: None) +# Stack: Item stack amount. (Default: null) +# Amount Maximum amount that can be stacked. +# Inventory If the stack is applied to player's inventory. (Default: true) +# Cart If the stack is applied to the player's cart. (Default: false) +# Storage If the stack is applied to the player's storage. (Default: false) +# GuildStorage If the stack is applied to the player's guild storage. (Default: false) +# NoUse: Conditions when the item is unusable. (Default: null) +# Override Group level to override these conditions. +# Sitting If the item can not be used while sitting. (Default: false) +# Trade: Trade restrictions. (Default: null) +# Override Group level to override these conditions. +# NoDrop If the item can not be dropped. (Default: false) +# NoTrade If the item can not be traded. (Default: false) +# TradePartner If the item can not be traded to the player's partner. (Default: false) +# NoSell If the item can not be sold. (Default: false) +# NoCart If the item can not be put in a cart. (Default: false) +# NoStorage If the item can not be put in a storage. (Default: false) +# NoGuildStorage If the item can not be put in a guild storage. (Default: false) +# NoMail If the item can not be put in a mail. (Default: false) +# NoAuction If the item can not be put in an auction. (Default: false) +# Script Script to execute when the item is used/equipped. (Default: null) +# EquipScript Script to execute when the item is equipped. (Default: null) +# UnEquipScript Script to execute when the item is unequipped or when a rental item expires. (Default: null) +########################################################################### + +Header: + Type: ITEM_DB + Version: 1 + +Body: + - Id: 501 + AegisName: Red_Potion + Name: Red Potion + Type: Healing + Buy: 50 + Weight: 70 + Script: | + itemheal rand(45,65),0; + - Id: 502 + AegisName: Orange_Potion + Name: Orange Potion + Type: Healing + Buy: 200 + Weight: 100 + Script: | + itemheal rand(105,145),0; + - Id: 503 + AegisName: Yellow_Potion + Name: Yellow Potion + Type: Healing + Buy: 550 + Weight: 130 + Script: | + itemheal rand(175,235),0; + - Id: 504 + AegisName: White_Potion + Name: White Potion + Type: Healing + Buy: 1200 + Weight: 150 + Script: | + itemheal rand(325,405),0; + - Id: 505 + AegisName: Blue_Potion + Name: Blue Potion + Type: Healing + Buy: 5000 + Weight: 150 + Script: | + itemheal 0,rand(40,60); + - Id: 506 + AegisName: Green_Potion + Name: Green Potion + Type: Healing + Buy: 40 + Weight: 70 + Flags: + BuyingStore: true + Script: | + sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; + - Id: 507 + AegisName: Red_Herb + Name: Red Herb + Type: Healing + Buy: 18 + Weight: 30 + Flags: + BuyingStore: true + Script: | + itemheal rand(18,28),0; + - Id: 508 + AegisName: Yellow_Herb + Name: Yellow Herb + Type: Healing + Buy: 40 + Weight: 50 + Flags: + BuyingStore: true + Script: | + itemheal rand(38,58),0; + - Id: 509 + AegisName: White_Herb + Name: White Herb + Type: Healing + Buy: 120 + Weight: 70 + Flags: + BuyingStore: true + Script: | + itemheal rand(75,115),0; + - Id: 510 + AegisName: Blue_Herb + Name: Blue Herb + Type: Healing + Buy: 60 + Weight: 70 + Flags: + BuyingStore: true + Script: | + itemheal 0,rand(15,30); + - Id: 511 + AegisName: Green_Herb + Name: Green Herb + Type: Healing + Buy: 10 + Weight: 30 + Flags: + BuyingStore: true + Script: | + sc_end SC_Poison; + - Id: 512 + AegisName: Apple + Name: Apple + Type: Healing + Buy: 15 + Weight: 20 + Flags: + BuyingStore: true + Script: | + itemheal rand(16,22),0; + - Id: 513 + AegisName: Banana + Name: Banana + Type: Healing + Buy: 15 + Weight: 20 + Flags: + BuyingStore: true + Script: | + itemheal rand(17,21),0; + - Id: 514 + AegisName: Grape + Name: Grape + Type: Healing + Buy: 200 + Weight: 20 + Flags: + BuyingStore: true + Script: | + itemheal 0,rand(10,15); + - Id: 515 + AegisName: Carrot + Name: Carrot + Type: Healing + Buy: 15 + Weight: 20 + Flags: + BuyingStore: true + Script: | + itemheal rand(18,20),0; + - Id: 516 + AegisName: Sweet_Potato + Name: Potato + Type: Healing + Buy: 15 + Weight: 20 + Flags: + BuyingStore: true + Script: | + itemheal rand(15,23),0; + - Id: 517 + AegisName: Meat + Name: Meat + Type: Healing + Buy: 50 + Weight: 150 + Flags: + BuyingStore: true + Script: | + itemheal rand(70,100),0; + - Id: 518 + AegisName: Honey + Name: Honey + Type: Healing + Buy: 500 + Weight: 100 + Flags: + BuyingStore: true + Script: | + itemheal rand(70,100),rand(20,40); + - Id: 519 + AegisName: Milk + Name: Milk + Type: Healing + Buy: 25 + Weight: 30 + Flags: + BuyingStore: true + Script: | + itemheal rand(27,37),0; + - Id: 520 + AegisName: Leaflet_Of_Hinal + Name: Hinalle Leaflet + Type: Healing + Buy: 150 + Weight: 10 + Flags: + BuyingStore: true + Script: | + itemheal rand(175,235),0; + - Id: 521 + AegisName: Leaflet_Of_Aloe + Name: Aloe Leaflet + Type: Healing + Buy: 360 + Weight: 20 + Flags: + BuyingStore: true + Script: | + itemheal rand(325,405),0; + - Id: 522 + AegisName: Fruit_Of_Mastela + Name: Mastela Fruit + Type: Healing + Buy: 8500 + Weight: 30 + Flags: + BuyingStore: true + Script: | + itemheal rand(400,600),0; + - Id: 523 + AegisName: Holy_Water + Name: Holy Water + Type: Healing + Buy: 20 + Weight: 30 + Flags: + BuyingStore: true + Script: | + sc_end SC_Curse; + - Id: 525 + AegisName: Panacea + Name: Panacea + Type: Healing + Buy: 500 + Weight: 100 + Flags: + BuyingStore: true + Script: | + sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination; + - Id: 526 + AegisName: Royal_Jelly + Name: Royal Jelly + Type: Healing + Buy: 7000 + Weight: 150 + Flags: + BuyingStore: true + Script: | + itemheal rand(325,405),rand(40,60); sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination; + - Id: 528 + AegisName: Monster's_Feed + Name: Monster's Feed + Type: Healing + Buy: 60 + Weight: 150 + Flags: + BuyingStore: true + Script: | + itemheal rand(72,108),0; + - Id: 529 + AegisName: Candy + Name: Candy + Type: Healing + Buy: 10 + Weight: 30 + Flags: + BuyingStore: true + Script: | + itemheal rand(45,65),0; + - Id: 530 + AegisName: Candy_Striper + Name: Candy Cane + Type: Healing + Buy: 20 + Weight: 40 + Flags: + BuyingStore: true + Script: | + itemheal rand(105,145),0; + - Id: 531 + AegisName: Apple_Juice + Name: Apple Juice + Type: Healing + Buy: 20 + Weight: 40 + Flags: + BuyingStore: true + Script: | + itemheal rand(25,35),0; + - Id: 532 + AegisName: Banana_Juice + Name: Banana Juice + Type: Healing + Buy: 20 + Weight: 40 + Flags: + BuyingStore: true + Script: | + itemheal rand(26,34),0; + - Id: 533 + AegisName: Grape_Juice + Name: Grape Juice + Type: Healing + Buy: 250 + Weight: 40 + Flags: + BuyingStore: true + Script: | + itemheal 0,rand(15,25); + - Id: 534 + AegisName: Carrot_Juice + Name: Carrot Juice + Type: Healing + Buy: 20 + Weight: 40 + Flags: + BuyingStore: true + Script: | + itemheal rand(27,33),0; + - Id: 535 + AegisName: Pumpkin + Name: Pumpkin + Type: Healing + Buy: 15 + Weight: 20 + Flags: + BuyingStore: true + Script: | + itemheal 19,0; + - Id: 536 + AegisName: Ice_Cream + Name: Ice Cream + Type: Healing + Buy: 150 + Weight: 80 + Flags: + BuyingStore: true + Script: | + itemheal rand(105,145),0; sc_start SC_Freeze,10000,0,2500,0; + - Id: 537 + AegisName: Pet_Food + Name: Pet Food + Type: Healing + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + Script: | + itemheal rand(50,90),0; + - Id: 538 + AegisName: Well_Baked_Cookie + Name: Well-baked Cookie + Type: Healing + Buy: 1000 + Weight: 30 + Flags: + BuyingStore: true + Script: | + itemheal rand(160,200),0; + - Id: 539 + AegisName: Piece_Of_Cake + Name: Piece of Cake + Type: Healing + Buy: 3000 + Weight: 100 + Flags: + BuyingStore: true + Script: | + itemheal rand(270,330),0; + - Id: 540 + AegisName: Falcon's_Feed + Name: Falcon Food + Type: Healing + Buy: 2000 + Weight: 50 + Script: | + itemheal rand(185,225),0; + - Id: 541 + AegisName: Pecopeco's_Feed + Name: PecoPeco Food + Type: Healing + Buy: 3000 + Weight: 50 + Script: | + itemheal rand(325,405),0; + - Id: 544 + AegisName: Fish_Slice + Name: Raw Fish + Type: Healing + Buy: 20 + Weight: 30 + Flags: + BuyingStore: true + Script: | + itemheal rand(25,60),0; + - Id: 545 + AegisName: Red_Slim_Potion + Name: Condensed Red Potion + Type: Healing + Buy: 150 + Weight: 10 + Script: | + itemheal rand(45,65),0; + - Id: 546 + AegisName: Yellow_Slim_Potion + Name: Condensed Yellow Potion + Type: Healing + Buy: 600 + Weight: 20 + Script: | + itemheal rand(175,235),0; + - Id: 547 + AegisName: White_Slim_Potion + Name: Condensed White Potion + Type: Healing + Buy: 1650 + Weight: 20 + Script: | + itemheal rand(325,405),0; + - Id: 548 + AegisName: Cheese + Name: Cheese + Type: Healing + Buy: 2800 + Weight: 50 + Flags: + BuyingStore: true + Script: | + itemheal 0,rand(10,15); + - Id: 549 + AegisName: Nice_Sweet_Potato + Name: Yam + Type: Healing + Buy: 180 + Weight: 80 + Flags: + BuyingStore: true + Script: | + itemheal rand(50,100),0; sc_start SC_Stun,3000,0,1500,0; + - Id: 550 + AegisName: Popped_Rice + Name: Rice Cake + Type: Healing + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + Script: | + itemheal rand(10,15),0; + - Id: 551 + AegisName: Shusi + Name: Sushi + Type: Healing + Buy: 1 + Weight: 50 + Flags: + BuyingStore: true + Script: | + itemheal rand(50,60),0; + - Id: 552 + AegisName: KETUPAT + Name: Ketupat + Type: Healing + Buy: 1 + Weight: 10 + Script: | + itemheal rand(70,90),rand(20,30); + - Id: 553 + AegisName: Bun + Name: Bao + Type: Healing + Buy: 1 + Weight: 50 + Flags: + BuyingStore: true + Script: | + itemheal rand(35,70),0; + - Id: 554 + AegisName: Mojji + Name: Mochi + Type: Healing + Buy: 400 + Weight: 80 + Script: | + itemheal rand(105,145),0; sc_start SC_Stun,3000,0; sc_start SC_Blind,2000,0,1500,0; + - Id: 555 + AegisName: Rice_Cake + Name: Traditional Rice Cake + Type: Healing + Buy: 100 + Weight: 20 + Script: | + itemheal rand(105,145),0; + - Id: 556 + AegisName: Long_Rice_Cake + Name: Rice Cake Stick + Type: Healing + Buy: 10 + Weight: 10 + Script: | + itemheal rand(20,25),0; + - Id: 557 + AegisName: Hash_Rice_Cake + Name: Neatly Sliced Rice Cake + Type: Healing + Buy: 10 + Weight: 10 + Script: | + itemheal rand(25,30),0; + - Id: 558 + AegisName: Chocolate + Name: Chocolate + Type: Healing + Buy: 1 + Weight: 20 + Script: | + itemheal 1,1; + - Id: 559 + AegisName: HandMade_Chocolate + Name: Hand-made Chocolate + Type: Healing + Buy: 1 + Weight: 80 + Script: | + itemheal 50,50; + - Id: 560 + AegisName: HandMade_Chocolate_ + Name: Handmade White Chocolate + Type: Healing + Buy: 5000 + Weight: 80 + Script: | + itemheal 50,50; + - Id: 561 + AegisName: White_Chocolate + Name: White Chocolate + Type: Healing + Buy: 5000 + Weight: 80 + Script: | + itemheal 50,50; + - Id: 562 + AegisName: Pizza + Name: Doublecrust Swiss Fondue + Type: Healing + Buy: 100 + Weight: 150 + Script: | + itemheal rand(70,100),0; + - Id: 563 + AegisName: Pizza_01 + Name: Doublecrust Swiss Fondue + Type: Healing + Buy: 1200 + Weight: 150 + Script: | + itemheal rand(375,445),0; + - Id: 564 + AegisName: Rice_Ball + Name: Rice Ball + Type: Healing + Buy: 1 + Weight: 30 + Flags: + BuyingStore: true + Script: | + itemheal 200,0; + - Id: 565 + AegisName: Vita500_Bottle + Name: Vita500 + Type: Healing + Buy: 580 + Weight: 100 + Script: | + itemheal rand(142,274),0; + - Id: 566 + AegisName: Tomyumkung + Name: Tom Yum Goong + Type: Healing + Buy: 10000 + Weight: 150 + Flags: + BuyingStore: true + Script: | + itemheal rand(244,350),rand(10,30); sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination; + - Id: 567 + AegisName: Prawn + Name: Shrimp + Type: Healing + Buy: 500 + Weight: 40 + Flags: + BuyingStore: true + Script: | + itemheal rand(117,192),0; + - Id: 568 + AegisName: Lemon + Name: Lemon + Type: Healing + Buy: 60 + Weight: 40 + Flags: + BuyingStore: true + Script: | + itemheal 0,rand(10,20); + - Id: 569 + AegisName: Novice_Potion + Name: Novice Potion + Type: Healing + Weight: 10 + Flags: + BuyingStore: true + Script: | + itemheal rand(22,33),0; + - Id: 570 + AegisName: Lucky_Candy + Name: Lucky Candy + Type: Healing + Buy: 10 + Weight: 30 + Flags: + BuyingStore: true + Script: | + itemheal rand(45,65),0; + - Id: 571 + AegisName: Lucky_Candy_Cane + Name: Lucky Candy Cane + Type: Healing + Buy: 20 + Weight: 40 + Flags: + BuyingStore: true + Script: | + itemheal rand(105,145),0; + - Id: 572 + AegisName: Lucky_Cookie + Name: Lucky Cookie + Type: Healing + Buy: 1000 + Weight: 30 + Flags: + BuyingStore: true + Script: | + itemheal rand(160,200),0; + - Id: 573 + AegisName: Chocolate_Drink + Name: Chocolate Drink + Type: Healing + Buy: 7000 + Weight: 150 + Script: | + itemheal rand(330,410),rand(45,65); sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination; + - Id: 574 + AegisName: Egg + Name: Egg + Type: Healing + Buy: 20 + Weight: 30 + Flags: + BuyingStore: true + Script: | + itemheal rand(33,42),0; + - Id: 575 + AegisName: Piece_Of_Cake_ + Name: 2nd Anniversary Cake + Type: Healing + Buy: 10 + Weight: 100 + Script: | + itemheal rand(270,330),0; + - Id: 576 + AegisName: Prickly_Fruit + Name: Prickly Fruit + Type: Healing + Buy: 540 + Weight: 60 + Flags: + BuyingStore: true + Script: | + itemheal rand(150,300),rand(20,30); + - Id: 577 + AegisName: Grain + Name: Bag of Grain + Type: Healing + Buy: 200 + Weight: 20 + Flags: + BuyingStore: true + Script: | + itemheal rand(60,70),0; + - Id: 578 + AegisName: Strawberry + Name: Strawberry + Type: Healing + Buy: 200 + Weight: 20 + Flags: + BuyingStore: true + Script: | + itemheal 0,rand(16,28); + - Id: 579 + AegisName: Delicious_Fish + Name: Fresh Fish + Type: Healing + Buy: 250 + Weight: 20 + Flags: + BuyingStore: true + Script: | + itemheal rand(100,150),0; + - Id: 580 + AegisName: Bread + Name: Bread + Type: Healing + Buy: 150 + Weight: 20 + Flags: + BuyingStore: true + Script: | + itemheal rand(50,90),0; + - Id: 581 + AegisName: Mushroom + Name: Edible Mushroom + Type: Healing + Buy: 40 + Weight: 20 + Flags: + BuyingStore: true + Script: | + itemheal rand(20,30),0; + - Id: 582 + AegisName: Orange + Name: Orange + Type: Healing + Buy: 300 + Weight: 20 + Flags: + BuyingStore: true + Script: | + itemheal rand(10,20),rand(10,20); + - Id: 583 + AegisName: KETUPAT_ + Name: Ketupat Sayur + Type: Healing + Buy: 7000 + Weight: 150 + Script: | + itemheal rand(325,405),rand(40,60); sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination; + - Id: 584 + AegisName: Fish_Ball_Soup + Name: Fish Cake Soup + Type: Healing + Buy: 100 + Weight: 60 + Flags: + BuyingStore: true + Script: | + itemheal rand(40,70),0; + - Id: 585 + AegisName: Wurst + Name: Brusti + Type: Delayconsume + Buy: 2 + Weight: 40 + Script: | + itemheal rand(15,20),0; itemskill "PR_MAGNIFICAT",3; + - Id: 586 + AegisName: Mother's_Cake + Name: Mother's Cake + Type: Healing + Buy: 20 + Weight: 100 + Script: | + itemheal rand(325,405),0; + - Id: 587 + AegisName: Prickly_Fruit_ + Name: Red Prickly Fruit + Type: Healing + Buy: 880 + Weight: 60 + Flags: + BuyingStore: true + Script: | + itemheal rand(270,330),rand(20,30); + - Id: 588 + AegisName: Spaghetti + Name: Spaghetti + Type: Healing + Buy: 100 + Weight: 100 + Script: | + itemheal rand(40,70),0; + - Id: 589 + AegisName: Pizza_02 + Name: Pizza + Type: Healing + Buy: 1200 + Weight: 150 + Script: | + itemheal rand(375,445),0; + - Id: 590 + AegisName: Brezel_ + Name: Pretzel + Type: Healing + Buy: 2 + Weight: 20 + Script: | + itemheal rand(50,90),0; + - Id: 591 + AegisName: Caviar_Pancake + Name: Caviar Pancake + Type: Healing + Weight: 150 + Flags: + BuyingStore: true + Script: | + itemheal rand(325,405),rand(40,60); sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination; + - Id: 592 + AegisName: Jam_Pancake + Name: Jam Pancake + Type: Healing + Weight: 150 + Flags: + BuyingStore: true + Script: | + itemheal rand(325,405),rand(40,60); sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination; + - Id: 593 + AegisName: Honey_Pancake + Name: Honey Pancake + Type: Healing + Weight: 150 + Flags: + BuyingStore: true + Script: | + itemheal rand(325,405),rand(40,60); sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination; + - Id: 594 + AegisName: Sour_Cream_Pancake + Name: Sour-Cream Pancake + Type: Healing + Weight: 150 + Flags: + BuyingStore: true + Script: | + itemheal rand(325,405),rand(40,60); sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination; + - Id: 595 + AegisName: Mushroom_Pancake + Name: Mushroom Pancake + Type: Healing + Weight: 150 + Flags: + BuyingStore: true + Script: | + itemheal rand(325,405),rand(40,60); sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination; + - Id: 596 + AegisName: Cute_Strawberry_Choco + Name: Cute Strawberry-Choco + Type: Healing + Buy: 20 + Weight: 100 + Script: | + itemheal 0,rand(1,100); + - Id: 597 + AegisName: Lovely_Choco_Tart + Name: Lovely Choco-Tart + Type: Healing + Buy: 20 + Weight: 100 + Script: | + itemheal rand(10,400),0; + - Id: 598 + AegisName: Light_Red_Pot + Name: Light Red Potion + Type: Healing + Buy: 50 + Weight: 10 + Script: | + itemheal rand(45,65),0; + - Id: 599 + AegisName: Light_Orange_Pot + Name: Light Orange Potion + Type: Healing + Buy: 200 + Weight: 10 + Script: | + itemheal rand(105,145),0; + - Id: 601 + AegisName: Wing_Of_Fly + Name: Fly Wing + Type: Delayconsume + Buy: 60 + Weight: 50 + Flags: + BuyingStore: true + Script: | + itemskill "AL_TELEPORT",1; + - Id: 602 + AegisName: Wing_Of_Butterfly + Name: Butterfly Wing + Type: Delayconsume + Buy: 300 + Weight: 50 + Flags: + BuyingStore: true + Script: | + itemskill "AL_TELEPORT",3; + - Id: 603 + AegisName: Old_Blue_Box + Name: Old Blue Box + Type: Usable + Buy: 10000 + Weight: 200 + Flags: + BuyingStore: true + Container: true + Script: | + getrandgroupitem(IG_BlueBox),1; + - Id: 604 + AegisName: Branch_Of_Dead_Tree + Name: Dead Branch + Type: Usable + Buy: 50 + Weight: 50 + Flags: + BuyingStore: true + DeadBranch: true + Script: | + monster "this",-1,-1,"--ja--",-1,1,""; + - Id: 605 + AegisName: Anodyne + Name: Anodyne + Type: Delayconsume + Buy: 2000 + Weight: 100 + Flags: + BuyingStore: true + Script: | + itemskill "SM_ENDURE",1; + - Id: 606 + AegisName: Aloebera + Name: Aloevera + Type: Delayconsume + Buy: 1500 + Weight: 100 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "SM_SELFPROVOKE",1; + - Id: 607 + AegisName: Yggdrasilberry + Name: Yggdrasil Berry + Type: Healing + Buy: 5000 + Weight: 300 + Flags: + BuyingStore: true + Delay: + Duration: 5000 + Status: Reuse_Limit_F + Script: | + percentheal 100,100; + - Id: 608 + AegisName: Seed_Of_Yggdrasil + Name: Yggdrasil Seed + Type: Healing + Buy: 5000 + Weight: 300 + Flags: + BuyingStore: true + Delay: + Duration: 3000 + Status: Reuse_Limit_G + Script: | + percentheal 50,50; + - Id: 609 + AegisName: Amulet + Name: Amulet + Type: Usable + Buy: 100 + Weight: 100 + Flags: + BuyingStore: true + - Id: 610 + AegisName: Leaf_Of_Yggdrasil + Name: Yggdrasil Leaf + Type: Delayconsume + Buy: 4000 + Weight: 100 + Flags: + BuyingStore: true + Script: | + itemskill "ALL_RESURRECTION",1; + - Id: 611 + AegisName: Spectacles + Name: Magnifier + Type: Delayconsume + Buy: 40 + Weight: 50 + Flags: + BuyingStore: true + Script: | + itemskill "MC_IDENTIFY",1; + - Id: 612 + AegisName: Portable_Furnace + Name: Mini Furnace + Type: Usable + Buy: 150 + Weight: 200 + Flags: + BuyingStore: true + Script: | + produce 21; + - Id: 613 + AegisName: Iron_Hammer + Name: Iron Hammer + Type: Usable + Buy: 1000 + Weight: 200 + Flags: + BuyingStore: true + Script: | + produce 1; + - Id: 614 + AegisName: Golden_Hammer + Name: Golden Hammer + Type: Usable + Buy: 3000 + Weight: 300 + Flags: + BuyingStore: true + Script: | + produce 2; + - Id: 615 + AegisName: Oridecon_Hammer + Name: Oridecon Hammer + Type: Usable + Buy: 5000 + Weight: 400 + Flags: + BuyingStore: true + Script: | + produce 3; + - Id: 616 + AegisName: Old_Card_Album + Name: Old Card Album + Type: Usable + Buy: 10000 + Weight: 50 + Flags: + BuyingStore: true + Container: true + Script: | + getrandgroupitem(IG_CardAlbum),1; + - Id: 617 + AegisName: Old_Violet_Box + Name: Old Purple Box + Type: Usable + Buy: 10000 + Weight: 200 + Flags: + BuyingStore: true + Container: true + Script: | + getrandgroupitem(IG_VioletBox),1; + - Id: 618 + AegisName: Worn_Out_Scroll + Name: Worn Out Scroll + Type: Usable + Buy: 50 + Weight: 20 + Flags: + BuyingStore: true + Container: true + - Id: 619 + AegisName: Unripe_Apple + Name: Unripe Apple + Type: Usable + Buy: 1000 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1002; + - Id: 620 + AegisName: Orange_Juice + Name: Orange Juice + Type: Usable + Buy: 1500 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1113; + - Id: 621 + AegisName: Bitter_Herb + Name: Bitter Herb + Type: Usable + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1031; + - Id: 622 + AegisName: Rainbow_Carrot + Name: Rainbow Carrot + Type: Usable + Buy: 2500 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1063; + - Id: 623 + AegisName: Earthworm_The_Dude + Name: Earthworm the Dude + Type: Usable + Buy: 4000 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1049; + - Id: 624 + AegisName: Rotten_Fish + Name: Rotten Fish + Type: Usable + Buy: 2500 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1011; + - Id: 625 + AegisName: Lusty_Iron + Name: Rusty Iron + Type: Usable + Buy: 100 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1042; + - Id: 626 + AegisName: Monster_Juice + Name: Monster Juice + Type: Usable + Buy: 1500 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1035; + - Id: 627 + AegisName: Sweet_Milk + Name: Sweet Milk + Type: Usable + Buy: 7000 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1167; + - Id: 628 + AegisName: Well_Dried_Bone + Name: Well-Dried Bone + Type: Usable + Buy: 10000 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1107; + - Id: 629 + AegisName: Singing_Flower + Name: Singing Flower + Type: Usable + Buy: 300 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1052; + - Id: 630 + AegisName: Dew_Laden_Moss + Name: Dew Laden Moss + Type: Usable + Buy: 10 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1014; + - Id: 631 + AegisName: Deadly_Noxious_Herb + Name: Deadly Noxious Herb + Type: Usable + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1077; + - Id: 632 + AegisName: Fatty_Chubby_Earthworm + Name: Fatty Chubby Earthworm + Type: Usable + Buy: 5000 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1019; + - Id: 633 + AegisName: Baked_Yam + Name: Sweet Potato + Type: Usable + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1056; + - Id: 634 + AegisName: Tropical_Banana + Name: Tropical Banana + Type: Usable + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1057; + - Id: 635 + AegisName: Horror_Of_Tribe + Name: Orc Trophy + Type: Usable + Buy: 300 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1023; + - Id: 636 + AegisName: No_Recipient + Name: No Recipient + Type: Usable + Buy: 100 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1026; + - Id: 637 + AegisName: Old_Broom + Name: Old Broom + Type: Usable + Buy: 350 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1110; + - Id: 638 + AegisName: Silver_Knife_Of_Chaste + Name: Silver Knife of Chastity + Type: Usable + Buy: 12000 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1170; + - Id: 639 + AegisName: Armlet_Of_Obedience + Name: Armlet of Obedience + Type: Usable + Buy: 18000 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1029; + - Id: 640 + AegisName: Shining_Stone + Name: Shining Stone + Type: Usable + Buy: 3000 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1155; + - Id: 641 + AegisName: Contracts_In_Shadow + Name: Contract in Shadow + Type: Usable + Buy: 100 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1109; + - Id: 642 + AegisName: Book_Of_Devil + Name: Book of the Devil + Type: Usable + Buy: 1800 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1101; + - Id: 643 + AegisName: Pet_Incubator + Name: Pet Incubator + Type: Usable + Buy: 3000 + Weight: 30 + Flags: + BuyingStore: true + Script: | + bpet; + - Id: 644 + AegisName: Gift_Box + Name: Gift Box + Type: Usable + Buy: 1000 + Weight: 200 + Flags: + BuyingStore: true + Container: true + Script: | + getrandgroupitem(IG_GiftBox),1; + - Id: 645 + AegisName: Center_Potion + Name: Concentration Potion + Type: Usable + Buy: 800 + Weight: 100 + Flags: + BuyingStore: true + Script: | + sc_start SC_ASPDPOTION0,1800000,0; + - Id: 656 + AegisName: Awakening_Potion + Name: Awakening Potion + Type: Usable + Buy: 1500 + Weight: 150 + Jobs: + Alchemist: true + Archer: true + Assassin: true + Blacksmith: true + Crusader: true + Gunslinger: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Monk: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + SuperNovice: true + Swordman: true + Taekwon: true + Thief: true + Wizard: true + EquipLevelMin: 40 + Flags: + BuyingStore: true + Script: | + sc_start SC_ASPDPOTION1,1800000,0; + - Id: 657 + AegisName: Berserk_Potion + Name: Berserk Potion + Type: Usable + Buy: 3000 + Weight: 200 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Gunslinger: true + Knight: true + Mage: true + Merchant: true + Rogue: true + SoulLinker: true + StarGladiator: true + Swordman: true + Taekwon: true + Wizard: true + EquipLevelMin: 85 + Flags: + BuyingStore: true + Script: | + sc_start SC_ASPDPOTION2,1800000,0; + - Id: 658 + AegisName: Union_Of_Tribe + Name: Union of Tribe + Type: Usable + Buy: 2 + Weight: 500 + Flags: + BuyingStore: true + Script: | + guildgetexp rand(600000,1200000); + - Id: 659 + AegisName: Heart_Of_Her + Name: Her Heart + Type: Usable + Buy: 500 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1188; + - Id: 660 + AegisName: Prohibition_Red_Candle + Name: Forbidden Red Candle + Type: Usable + Buy: 20000 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1200; + - Id: 661 + AegisName: Sway_Apron + Name: Soft Apron + Type: Usable + Buy: 20000 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1275; + - Id: 662 + AegisName: Inspector_Certificate + Name: Authoritative Badge + Type: Usable + Buy: 1450 + Weight: 30 + Flags: + BuyingStore: true + Script: | + sc_start SC_SPEEDUP0,180000,25; + - Id: 663 + AegisName: Korea_Rice_Cake + Name: Korean Rice Cake + Type: Healing + Buy: 1 + Weight: 10 + Flags: + BuyingStore: true + Script: | + percentheal 10,0; + - Id: 664 + AegisName: Gift_Box_1 + Name: Gift Box + Type: Usable + Buy: 1000 + Weight: 200 + Flags: + BuyingStore: true + Container: true + Script: | + getrandgroupitem(IG_GiftBox_1),1; + - Id: 665 + AegisName: Gift_Box_2 + Name: Gift Box + Type: Usable + Buy: 1000 + Weight: 200 + Flags: + BuyingStore: true + Container: true + Script: | + getrandgroupitem(IG_GiftBox_2),1; + - Id: 666 + AegisName: Gift_Box_3 + Name: Gift Box + Type: Usable + Buy: 1000 + Weight: 200 + Flags: + BuyingStore: true + Container: true + Script: | + getrandgroupitem(IG_GiftBox_3),1; + - Id: 667 + AegisName: Gift_Box_4 + Name: Gift Box + Type: Usable + Buy: 1000 + Weight: 200 + Flags: + BuyingStore: true + Container: true + Script: | + getrandgroupitem(IG_GiftBox_4),1; + - Id: 668 + AegisName: Handsei + Name: Red Envelope + Type: Usable + Weight: 20 + Flags: + BuyingStore: true + Script: | + set Zeny,Zeny+rand(1000,10000); + - Id: 669 + AegisName: Rice_Cake_Soup + Name: Tempting Rice-Cake Soup + Type: Healing + Buy: 500 + Weight: 100 + Flags: + BuyingStore: true + Script: | + percentheal -100,-100; + - Id: 678 + AegisName: Poison_Bottle + Name: Poison Bottle + Type: Usable + Buy: 5000 + Weight: 100 + Flags: + BuyingStore: true + Script: | + if(Class==Job_Assassin_Cross) { sc_start SC_DPoison,60000,0; sc_start SC_ASPDPOTION3,60000,0; } else percentheal -100,-100; + - Id: 679 + AegisName: Gold_Pill + Name: Pilule + Type: Usable + Buy: 5000 + Weight: 300 + Flags: + BuyingStore: true + Script: | + sc_start SC_DPoison,10000,0,1000,0; sc_start SC_Poison,50000,0; + - Id: 680 + AegisName: Magical_Carnation + Name: Magic Carnation + Type: Healing + Weight: 1000 + Script: | + percentheal 0,20; + - Id: 681 + AegisName: Memory_Of_Wedding + Name: Sweet Memory of Marriage + Type: Usable + Buy: 50000 + Weight: 10 + Flags: + BuyingStore: true + Script: | + if(getpartnerid()) sc_start SC_WEDDING,600000,0; + - Id: 682 + AegisName: Realgar_Wine + Name: Distilled Fighting Spirit + Type: Usable + Weight: 100 + Flags: + BuyingStore: true + Script: | + sc_start SC_ATKPOTION,60000,30; + - Id: 683 + AegisName: Exorcize_Herb + Name: Herb of Incantation + Type: Usable + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_MATKPOTION,60000,30; + - Id: 684 + AegisName: Durian + Name: Durian + Type: Usable + Buy: 15000 + Weight: 300 + Flags: + BuyingStore: true + Script: | + sc_start SC_ATKPOTION,60000,10; sc_start SC_MATKPOTION,60000,10; + - Id: 685 + AegisName: RAMADAN + Name: Ramadan + Type: Healing + Buy: 5000 + Weight: 300 + Script: | + percentheal 100,50; + - Id: 686 + AegisName: Earth_Scroll_1_3 + Name: Level 3 Earth Spike + Type: Delayconsume + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "WZ_EARTHSPIKE",3; + - Id: 687 + AegisName: Earth_Scroll_1_5 + Name: Level 5 Earth Spike + Type: Delayconsume + Buy: 2000 + Weight: 10 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "WZ_EARTHSPIKE",5; + - Id: 688 + AegisName: Cold_Scroll_1_3 + Name: Level 3 Cold Bolt + Type: Delayconsume + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "MG_COLDBOLT",3; + - Id: 689 + AegisName: Cold_Scroll_1_5 + Name: Level 5 Cold Bolt + Type: Delayconsume + Buy: 2000 + Weight: 10 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "MG_COLDBOLT",5; + - Id: 690 + AegisName: Fire_Scroll_1_3 + Name: Level 3 Fire Bolt + Type: Delayconsume + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "MG_FIREBOLT",3; + - Id: 691 + AegisName: Fire_Scroll_1_5 + Name: Level 5 Fire Bolt + Type: Delayconsume + Buy: 2000 + Weight: 10 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "MG_FIREBOLT",5; + - Id: 692 + AegisName: Wind_Scroll_1_3 + Name: Level 3 Lightening Bolt + Type: Delayconsume + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "MG_LIGHTNINGBOLT",3; + - Id: 693 + AegisName: Wind_Scroll_1_5 + Name: Level 5 Lightening Bolt + Type: Delayconsume + Buy: 2000 + Weight: 10 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "MG_LIGHTNINGBOLT",5; + - Id: 694 + AegisName: Ghost_Scroll_1_3 + Name: Level 3 Soul Strike + Type: Delayconsume + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "MG_SOULSTRIKE",3; + - Id: 695 + AegisName: Ghost_Scroll_1_5 + Name: Level 5 Soul Strike + Type: Delayconsume + Buy: 2000 + Weight: 10 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "MG_SOULSTRIKE",5; + - Id: 696 + AegisName: Fire_Scroll_2_1 + Name: Level 1 Fire Ball + Type: Delayconsume + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "MG_FIREBALL",1; + - Id: 697 + AegisName: Fire_Scroll_2_5 + Name: Level 5 Fire Ball + Type: Delayconsume + Buy: 2000 + Weight: 10 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "MG_FIREBALL",5; + - Id: 698 + AegisName: Fire_Scroll_3_1 + Name: Level 1 Fire Wall + Type: Delayconsume + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "MG_FIREWALL",1; + - Id: 699 + AegisName: Fire_Scroll_3_5 + Name: Level 5 Fire Wall + Type: Delayconsume + Buy: 2000 + Weight: 10 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "MG_FIREWALL",5; + - Id: 700 + AegisName: Cold_Scroll_2_1 + Name: Level 1 Frost Diver + Type: Delayconsume + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "MG_FROSTDIVER",1; + - Id: 6046 + AegisName: Clothing_Dye_Coupon + Name: Clothing Dye Coupon + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6047 + AegisName: Clothing_Dye_Coupon_II + Name: Clothing Dye Coupon II + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 11500 + AegisName: Light_Yellow_Pot + Name: Light Yellow Potion + Type: Healing + Buy: 550 + Weight: 10 + Script: | + itemheal rand(175,235),0; + - Id: 11501 + AegisName: Light_White_Pot + Name: Light White Potion + Type: Healing + Buy: 1200 + Weight: 10 + Script: | + itemheal rand(325,405),0; + - Id: 11502 + AegisName: Light_Blue_Pot + Name: Light Blue Potion + Type: Healing + Buy: 5000 + Weight: 10 + Script: | + itemheal 0,rand(40,60); + - Id: 11503 + AegisName: Siege_White_Potion + Name: WoE White Potion + Type: Healing + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemheal rand(400,500),0; + - Id: 11504 + AegisName: Siege_Blue_Potion + Name: WoE Blue Potion + Type: Healing + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemheal 0,rand(50,70); + - Id: 11505 + AegisName: Iris + Name: Iris + Type: Healing + Weight: 30 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemheal 0,150; + - Id: 11506 + AegisName: Fanta_Orange + Name: Fanta Orange + Type: Healing + Buy: 800 + Weight: 100 + Script: | + itemheal rand(50,70),rand(10,12); + - Id: 11507 + AegisName: Fanta_Grape + Name: Fanta Grape + Type: Healing + Buy: 800 + Weight: 100 + Script: | + itemheal rand(50,70),rand(10,12); + - Id: 11508 + AegisName: Karada_Meguri_Tea + Name: Karada Meguricha + Type: Healing + Buy: 800 + Weight: 100 + Script: | + itemheal rand(50,70),rand(10,12); + - Id: 11509 + AegisName: Royal_Milk_Tea + Name: Black Tea Kochakaden + Type: Healing + Buy: 800 + Weight: 100 + Script: | + itemheal rand(50,70),rand(10,12); + - Id: 11510 + AegisName: Coke_Zero + Name: Coca Cola Zero + Type: Healing + Buy: 800 + Weight: 100 + Script: | + itemheal rand(50,70),rand(10,12); + - Id: 11511 + AegisName: Coke_No_Cal + Name: Diet Coca Cola + Type: Healing + Buy: 800 + Weight: 100 + Script: | + itemheal rand(50,70),rand(10,12); + - Id: 11512 + AegisName: Coca_Cola + Name: Coca Cola + Type: Healing + Buy: 800 + Weight: 100 + Script: | + itemheal rand(50,70),rand(10,12); + - Id: 11513 + AegisName: Protect_Neck_Candy + Name: Protect Neck Candy + Type: Healing + Buy: 200 + Weight: 1 + Flags: + BuyingStore: true + Script: | + itemheal rand(5,25),0; + - Id: 11514 + AegisName: Enriched_Slim_Pot + Name: Enriched Slim Pot + Type: Healing + Weight: 50 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemheal rand(335,415),0; + - Id: 11515 + AegisName: Coconut + Name: Coconut + Type: Healing + Buy: 1500 + Weight: 120 + Flags: + BuyingStore: true + Script: | + itemheal rand(300,400),0; + - Id: 11516 + AegisName: Asai_Fruit + Name: Asai Fruit + Type: Healing + Buy: 15 + Weight: 20 + Flags: + BuyingStore: true + Script: | + itemheal rand(16,22),0; + - Id: 11517 + AegisName: Puri_Potion + Name: Puri Potion + Type: Healing + Buy: 20 + Weight: 100 + Flags: + BuyingStore: true + Script: | + itemheal rand(400,600),0; + - Id: 11518 + AegisName: N_Blue_Potion + Name: Blue Potion + Type: Healing + Weight: 50 + Script: | + itemheal 0,5; + - Id: 11519 + AegisName: Beef_Toast + Name: Beef Toast + Type: Healing + Buy: 650 + Weight: 40 + Flags: + BuyingStore: true + Script: | + itemheal rand(170,250),0; + - Id: 11520 + AegisName: Mora_Mandarin + Name: Mora Mandar + Type: Healing + Buy: 500 + Weight: 20 + Flags: + BuyingStore: true + Script: | + itemheal 0,rand(50,80); + - Id: 11521 + AegisName: Pingui_Berry_Juice + Name: Pingui Berry Juice + Type: Healing + Buy: 500 + Weight: 50 + Flags: + BuyingStore: true + Script: | + itemheal rand(400,800),rand(50,80); + - Id: 11522 + AegisName: Red_Raffle_Sap + Name: Red Raffle Sap + Type: Healing + Buy: 2000 + Weight: 100 + Flags: + BuyingStore: true + Delay: + Duration: 1000 + Status: Reuse_Limit_E + Script: | + itemheal rand(400,800),0; + - Id: 11523 + AegisName: Yellow_Raffle_Sap + Name: Yellow Raffle Sap + Type: Healing + Buy: 2400 + Weight: 120 + Flags: + BuyingStore: true + Delay: + Duration: 2000 + Status: Reuse_Limit_E + Script: | + itemheal rand(600,1000),0; + - Id: 11524 + AegisName: White_Raffle_Sap + Name: White Raffle Sap + Type: Healing + Buy: 2800 + Weight: 140 + Flags: + BuyingStore: true + Delay: + Duration: 3000 + Status: Reuse_Limit_E + Script: | + itemheal rand(800,1200),0; + - Id: 11525 + AegisName: Mora_Hip_Tea + Name: Mora HIp Tea + Type: Healing + Buy: 20 + Weight: 150 + Flags: + BuyingStore: true + Delay: + Duration: 5000 + Status: Reuse_Limit_H + Script: | + itemheal rand(1500,2000),0; + - Id: 11526 + AegisName: Rafflecino + Name: Rafflecino + Type: Healing + Buy: 20 + Weight: 100 + Flags: + BuyingStore: true + Script: | + itemheal 0,rand(120,160); + - Id: 11527 + AegisName: Baklava + Name: Baklava + Type: Healing + Buy: 3500 + Weight: 600 + Script: | + itemheal 1200,440; + - Id: 11528 + AegisName: Kanafeh + Name: Kanafeh + Type: Healing + Buy: 1500 + Weight: 200 + Script: | + itemheal 300,240; + - Id: 11529 + AegisName: MAAMOUL_ + Name: Maamoul + Type: Healing + Buy: 500 + Weight: 100 + Script: | + itemheal 120,60; + - Id: 11530 + AegisName: Jujube + Name: Jujube + Type: Healing + Buy: 10 + Weight: 100 + Script: | + itemheal 30,0; + - Id: 11531 + AegisName: Coffee + Name: Coffee + Type: Healing + Buy: 10 + Weight: 100 + Script: | + itemheal 0,10; + - Id: 11701 + AegisName: Girl_Bunch_Of_Flower + Name: Girl's Bouquet + Type: Healing + Buy: 20 + Weight: 50 + Script: | + itemheal rand(105,145),0; + - Id: 11702 + AegisName: Moon_Cookie + Name: Moon Cookie + Type: Healing + Weight: 300 + NoUse: + Override: 100 + Sitting: true + - Id: 11703 + AegisName: Mysterious_Blood + Name: Mystery Blood + Type: Healing + Weight: 30 + Script: | + itemheal 0,rand(25,35); + - Id: 11704 + AegisName: KETUPAT_F + Name: Ketupat + Type: Healing + Buy: 2 + Weight: 10 + Script: | + itemheal rand(70,90),0; + - Id: 11705 + AegisName: Special_White_Potion + Name: Children's Potion + Type: Healing + Buy: 1 + Weight: 10 + Script: | + itemheal rand(425,425),0; + - Id: 11706 + AegisName: Steak + Name: Steak + Type: Healing + Buy: 1 + Weight: 200 + Script: | + itemheal rand(700,1000),0; + - Id: 11707 + AegisName: Roasted_Beef + Name: Roast Beef + Type: Healing + Buy: 1 + Weight: 200 + Script: | + itemheal 0,rand(100,200); + - Id: 11708 + AegisName: Fore_Flank_Sirloin + Name: Fore Flank Sirloin + Type: Healing + Buy: 20 + Weight: 100 + Script: | + itemheal rand(30,50),rand(1,5); + - Id: 11709 + AegisName: Fanta_Zero_Lemon + Name: Fanta Zero Lemon + Type: Healing + Buy: 800 + Weight: 100 + Script: | + itemheal rand(50,70),rand(10,12); + - Id: 11710 + AegisName: Sakura_Mist + Name: Sakura Mist + Type: Healing + Buy: 800 + Weight: 100 + Script: | + itemheal rand(50,70),rand(10,12); + - Id: 11711 + AegisName: Sakura_Milk_Tea + Name: Sakura Milk Tea + Type: Healing + Buy: 800 + Weight: 100 + Script: | + itemheal rand(50,70),rand(10,12); + - Id: 11712 + AegisName: First_Leaf_Tea + Name: Flower + Type: Healing + Buy: 800 + Weight: 100 + Script: | + itemheal rand(50,70),rand(10,12); + - Id: 12000 + AegisName: Cold_Scroll_2_5 + Name: Level 5 Frost Diver + Type: Delayconsume + Buy: 2000 + Weight: 10 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "MG_FROSTDIVER",5; + - Id: 12001 + AegisName: Holy_Scroll_1_3 + Name: Level 3 Heal + Type: Delayconsume + Buy: 2000 + Weight: 10 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "AL_HEAL",3; + - Id: 12002 + AegisName: Holy_Scroll_1_5 + Name: Level 5 Heal + Type: Delayconsume + Buy: 2000 + Weight: 10 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "AL_HEAL",5; + - Id: 12003 + AegisName: Holy_Scroll_2_1 + Name: Level 1 Teleport + Type: Delayconsume + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + Script: | + itemskill "AL_TELEPORT",1; + - Id: 12004 + AegisName: Arrow_Container + Name: Quiver + Type: Usable + Buy: 2 + Weight: 250 + Flags: + BuyingStore: true + Script: | + getitem 1750,500; + - Id: 12005 + AegisName: Iron_Arrow_Container + Name: Iron Arrow Quiver + Type: Usable + Buy: 2 + Weight: 250 + Flags: + BuyingStore: true + Script: | + getitem 1770,500; + - Id: 12006 + AegisName: Steel_Arrow_Container + Name: Steel Arrow Quiver + Type: Usable + Buy: 2 + Weight: 250 + Flags: + BuyingStore: true + Script: | + getitem 1753,500; + - Id: 12007 + AegisName: Ori_Arrow_Container + Name: Oridecon Arrow Quiver + Type: Usable + Buy: 2 + Weight: 250 + Flags: + BuyingStore: true + Script: | + getitem 1765,500; + - Id: 12008 + AegisName: Fire_Arrow_Container + Name: Fire Arrow Quiver + Type: Usable + Buy: 2 + Weight: 250 + Flags: + BuyingStore: true + Script: | + getitem 1752,500; + - Id: 12009 + AegisName: Silver_Arrow_Container + Name: Silver Arrow Quiver + Type: Usable + Buy: 2 + Weight: 250 + Flags: + BuyingStore: true + Script: | + getitem 1751,500; + - Id: 12010 + AegisName: Wind_Arrow_Container + Name: Wind Arrow Quiver + Type: Usable + Buy: 2 + Weight: 250 + Flags: + BuyingStore: true + Script: | + getitem 1755,500; + - Id: 12011 + AegisName: Stone_Arrow_Container + Name: Stone Arrow Quiver + Type: Usable + Buy: 2 + Weight: 250 + Flags: + BuyingStore: true + Script: | + getitem 1756,500; + - Id: 12012 + AegisName: Crystal_Arrow_Container + Name: Crystal Arrow Quiver + Type: Usable + Buy: 2 + Weight: 250 + Flags: + BuyingStore: true + Script: | + getitem 1754,500; + - Id: 12013 + AegisName: Shadow_Arrow_Container + Name: Shadow Arrow Quiver + Type: Usable + Buy: 2 + Weight: 250 + Flags: + BuyingStore: true + Script: | + getitem 1767,500; + - Id: 12014 + AegisName: Imma_Arrow_Container + Name: Immaterial Arrow Quiver + Type: Usable + Buy: 2 + Weight: 250 + Flags: + BuyingStore: true + Script: | + getitem 1757,500; + - Id: 12015 + AegisName: Rusty_Arrow_Container + Name: Rusty Arrow Quiver + Type: Usable + Buy: 2 + Weight: 250 + Flags: + BuyingStore: true + Script: | + getitem 1762,500; + - Id: 12016 + AegisName: Speed_Up_Potion + Name: Speed Potion + Type: Usable + Buy: 2 + Weight: 100 + Flags: + BuyingStore: true + Script: | + sc_start SC_SPEEDUP1,5000,50; + - Id: 12017 + AegisName: Slow_Down_Potion + Name: Slow Potion + Type: Usable + Buy: 2 + Weight: 100 + Flags: + BuyingStore: true + Script: | + sc_start SC_SlowDown,5000,0; + - Id: 12018 + AegisName: Fire_Cracker + Name: Firecracker + Type: Usable + Buy: 2 + Weight: 20 + Flags: + BuyingStore: true + - Id: 12019 + AegisName: Holy_Egg + Name: Holy Egg + Type: Delayconsume + Buy: 2 + Weight: 150 + Script: | + itemskill "ALL_RESURRECTION",2; + - Id: 12020 + AegisName: Water_Of_Darkness + Name: Cursed Water + Type: Delayconsume + Buy: 2 + Weight: 30 + Flags: + BuyingStore: true + Script: | + itemskill "ITEM_ENCHANTARMS",8; + - Id: 12021 + AegisName: Pork_Belly + Name: Pork + Type: Healing + Weight: 10 + Script: | + itemheal rand(70,99),0; + - Id: 12022 + AegisName: Spareribs + Name: Galbi + Type: Healing + Weight: 10 + Script: | + itemheal rand(70,99),0; + - Id: 12023 + AegisName: Giftbox_China + Name: Wrapped Box + Type: Usable + Buy: 1000 + Weight: 200 + Flags: + Container: true + Script: | + getrandgroupitem(IG_GiftBoxChina),1; + - Id: 12024 + AegisName: Red_Pouch_Of_Surprise + Name: Red Pouch + Type: Usable + Buy: 50 + Weight: 50 + Flags: + DeadBranch: true + Script: | + monster "this",-1,-1,"--ja--",-4,1,""; + - Id: 12025 + AegisName: Egg_Boy + Name: Dano Festival Egg + Type: Usable + Buy: 1000 + Weight: 200 + Flags: + Container: true + Script: | + getrandgroupitem(IG_EggBoy),1; + - Id: 12026 + AegisName: Egg_Girl + Name: Dano Festival Egg + Type: Usable + Buy: 1000 + Weight: 200 + Flags: + Container: true + Script: | + getrandgroupitem(IG_EggGirl),1; + - Id: 12027 + AegisName: Giggling_Box + Name: Giggling Box + Type: Usable + Buy: 1000 + Weight: 200 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + percentheal 9,0; sc_start SC_Curse,30000,0,3000,0; + - Id: 12028 + AegisName: Box_Of_Thunder + Name: Box of Thunder + Type: Usable + Buy: 1000 + Weight: 200 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + sc_start SC_SPEEDUP0,20000,25; + - Id: 12029 + AegisName: Gloomy_Box + Name: Box of Gloom + Type: Delayconsume + Buy: 1000 + Weight: 200 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "AC_CONCENTRATION",1; + - Id: 12030 + AegisName: Box_Of_Grudge + Name: Box of Resentment + Type: Usable + Buy: 1000 + Weight: 200 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + sc_start SC_ATKPOTION,60000,20; + - Id: 12031 + AegisName: Sleepy_Box + Name: Box of Drowsiness + Type: Usable + Buy: 1000 + Weight: 200 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + sc_start SC_MATKPOTION,60000,20; + - Id: 12032 + AegisName: Box_Of_Storm + Name: Box of Storms + Type: Delayconsume + Buy: 1000 + Weight: 200 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "ITEM_ENCHANTARMS",2; + - Id: 12033 + AegisName: Box_Of_Sunlight + Name: Box of Sunlight + Type: Usable + Buy: 1000 + Weight: 200 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + sc_start SC_Intravision,30000,0; + - Id: 12034 + AegisName: Painting_Box + Name: Box of Panting + Type: Usable + Buy: 1000 + Weight: 200 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + percentheal 0,9; sc_start SC_Silence,30000,0,3000,0; + - Id: 12035 + AegisName: Lotto_Box01 + Name: Lotto Box 01 + Type: Usable + Weight: 20 + Script: | + getitem rand(7361,7370),1; + - Id: 12036 + AegisName: Lotto_Box02 + Name: Lotto Box 02 + Type: Usable + Weight: 20 + Script: | + getitem rand(7371,7380),1; + - Id: 12037 + AegisName: Lotto_Box03 + Name: Lotto Box 03 + Type: Usable + Weight: 20 + Script: | + getitem rand(7381,7390),1; + - Id: 12038 + AegisName: Lotto_Box04 + Name: Lotto Box 04 + Type: Usable + Weight: 20 + Flags: + Container: true + Script: | + getrandgroupitem(IG_LottoBox),1; + - Id: 12039 + AegisName: Lotto_Box05 + Name: Lotto Box 05 + Type: Usable + Weight: 20 + Script: | + getitem rand(7542,7546),1; + - Id: 12040 + AegisName: Stone_Of_Intelligence_ + Name: Stone of Sage + Type: Usable + Buy: 100000 + Weight: 300 + Flags: + BuyingStore: true + Script: | + homevolution; + - Id: 12041 + AegisName: Str_Dish01 + Name: Fried Grasshopper Legs + Type: Healing + Buy: 2000 + Weight: 60 + Flags: + BuyingStore: true + Script: | + sc_start SC_STRFOOD,1200000,1; percentheal 5,0; + - Id: 12042 + AegisName: Str_Dish02 + Name: Seasoned Sticky Webfoot + Type: Healing + Buy: 4000 + Weight: 500 + Flags: + BuyingStore: true + Script: | + sc_start SC_STRFOOD,1200000,2; percentheal 5,0; + - Id: 12043 + AegisName: Str_Dish03 + Name: Bomber Steak + Type: Healing + Buy: 6000 + Weight: 500 + Flags: + BuyingStore: true + Script: | + sc_start SC_STRFOOD,1200000,3; percentheal 5,0; + - Id: 12044 + AegisName: Str_Dish04 + Name: Herb Marinade Beef + Type: Healing + Buy: 8000 + Weight: 500 + Flags: + BuyingStore: true + Script: | + sc_start SC_STRFOOD,1200000,4; percentheal 5,0; + - Id: 12045 + AegisName: Str_Dish05 + Name: Lutie Lady's Pancake + Type: Healing + Buy: 10000 + Weight: 500 + Flags: + BuyingStore: true + Script: | + sc_start SC_STRFOOD,1200000,5; percentheal 10,0; + - Id: 12046 + AegisName: Int_Dish01 + Name: Grape Juice Herbal Tea + Type: Healing + Buy: 2000 + Weight: 100 + Flags: + BuyingStore: true + Script: | + sc_start SC_INTFOOD,1200000,1; percentheal 0,5; + - Id: 12047 + AegisName: Int_Dish02 + Name: Autumn Red Tea + Type: Healing + Buy: 4000 + Weight: 500 + Flags: + BuyingStore: true + Script: | + sc_start SC_INTFOOD,1200000,2; percentheal 0,5; + - Id: 12048 + AegisName: Int_Dish03 + Name: Honey Herbal Tea + Type: Healing + Buy: 6000 + Weight: 500 + Flags: + BuyingStore: true + Script: | + sc_start SC_INTFOOD,1200000,3; percentheal 0,5; + - Id: 12049 + AegisName: Int_Dish04 + Name: Morocc Fruit Wine + Type: Healing + Buy: 8000 + Weight: 300 + Flags: + BuyingStore: true + Script: | + sc_start SC_INTFOOD,1200000,4; percentheal 0,5; + - Id: 12050 + AegisName: Int_Dish05 + Name: Mastela Fruit Wine + Type: Healing + Buy: 10000 + Weight: 400 + Flags: + BuyingStore: true + Script: | + sc_start SC_INTFOOD,1200000,5; percentheal 0,10; + - Id: 12051 + AegisName: Vit_Dish01 + Name: Steamed Crab Nippers + Type: Healing + Buy: 2000 + Weight: 100 + Flags: + BuyingStore: true + Script: | + sc_start SC_VITFOOD,1200000,1; percentheal 5,0; + - Id: 12052 + AegisName: Vit_Dish02 + Name: Assorted Seafood + Type: Healing + Buy: 4000 + Weight: 200 + Flags: + BuyingStore: true + Script: | + sc_start SC_VITFOOD,1200000,2; percentheal 5,0; + - Id: 12053 + AegisName: Vit_Dish03 + Name: Clam Soup + Type: Healing + Buy: 6000 + Weight: 300 + Flags: + BuyingStore: true + Script: | + sc_start SC_VITFOOD,1200000,3; percentheal 5,0; + - Id: 12054 + AegisName: Vit_Dish04 + Name: Seasoned Jellyfish + Type: Healing + Buy: 8000 + Weight: 500 + Flags: + BuyingStore: true + Script: | + sc_start SC_VITFOOD,1200000,4; percentheal 5,0; + - Id: 12055 + AegisName: Vit_Dish05 + Name: Spicy Fried Bao + Type: Healing + Buy: 10000 + Weight: 800 + Flags: + BuyingStore: true + Script: | + sc_start SC_VITFOOD,1200000,5; percentheal 10,0; + - Id: 12056 + AegisName: Agi_Dish01 + Name: Frog Egg Squid Ink Soup + Type: Healing + Buy: 2000 + Weight: 100 + Flags: + BuyingStore: true + Script: | + sc_start SC_AGIFOOD,1200000,1; percentheal 3,1; + - Id: 12057 + AegisName: Agi_Dish02 + Name: Smooth Noodle + Type: Healing + Buy: 4000 + Weight: 100 + Flags: + BuyingStore: true + Script: | + sc_start SC_AGIFOOD,1200000,2; percentheal 3,1; + - Id: 12058 + AegisName: Agi_Dish03 + Name: Tentacle Cheese Gratin + Type: Healing + Buy: 6000 + Weight: 500 + Flags: + BuyingStore: true + Script: | + sc_start SC_AGIFOOD,1200000,3; percentheal 3,1; + - Id: 12059 + AegisName: Agi_Dish04 + Name: Lutie Cold Noodle + Type: Healing + Buy: 8000 + Weight: 400 + Flags: + BuyingStore: true + Script: | + sc_start SC_AGIFOOD,1200000,4; percentheal 3,1; + - Id: 12060 + AegisName: Agi_Dish05 + Name: Steamed Bat Wing in Pumpkin + Type: Healing + Buy: 10000 + Weight: 500 + Flags: + BuyingStore: true + Script: | + sc_start SC_AGIFOOD,1200000,5; percentheal 6,2; + - Id: 12061 + AegisName: Dex_Dish01 + Name: Honey Grape Juice + Type: Healing + Buy: 2000 + Weight: 100 + Flags: + BuyingStore: true + Script: | + sc_start SC_DEXFOOD,1200000,1; percentheal 2,2; + - Id: 12062 + AegisName: Dex_Dish02 + Name: Chocolate Mousse Cake + Type: Healing + Buy: 4000 + Weight: 200 + Flags: + BuyingStore: true + Script: | + sc_start SC_DEXFOOD,1200000,2; percentheal 2,2; + - Id: 12063 + AegisName: Dex_Dish03 + Name: Fruit Mix + Type: Healing + Buy: 6000 + Weight: 200 + Flags: + BuyingStore: true + Script: | + sc_start SC_DEXFOOD,1200000,3; percentheal 2,2; + - Id: 12064 + AegisName: Dex_Dish04 + Name: Cream Sandwich + Type: Healing + Buy: 8000 + Weight: 500 + Flags: + BuyingStore: true + Script: | + sc_start SC_DEXFOOD,1200000,4; percentheal 2,2; + - Id: 12065 + AegisName: Dex_Dish05 + Name: Green Salad + Type: Healing + Buy: 10000 + Weight: 200 + Flags: + BuyingStore: true + Script: | + sc_start SC_DEXFOOD,1200000,5; percentheal 5,5; + - Id: 12066 + AegisName: Luk_Dish01 + Name: Fried Monkey Tails + Type: Healing + Buy: 2000 + Weight: 60 + Flags: + BuyingStore: true + Script: | + sc_start SC_LUKFOOD,1200000,1; percentheal 3,2; + - Id: 12067 + AegisName: Luk_Dish02 + Name: Mixed Juice + Type: Healing + Buy: 4000 + Weight: 200 + Flags: + BuyingStore: true + Script: | + sc_start SC_LUKFOOD,1200000,2; percentheal 3,2; + - Id: 12068 + AegisName: Luk_Dish03 + Name: Fried Sweet Potato + Type: Healing + Buy: 6000 + Weight: 500 + Flags: + BuyingStore: true + Script: | + sc_start SC_LUKFOOD,1200000,3; percentheal 4,2; + - Id: 12069 + AegisName: Luk_Dish04 + Name: Steamed Ancient Lips + Type: Healing + Buy: 8000 + Weight: 500 + Flags: + BuyingStore: true + Script: | + sc_start SC_LUKFOOD,1200000,4; percentheal 4,2; + - Id: 12070 + AegisName: Luk_Dish05 + Name: Fried Scorpion Tails + Type: Healing + Buy: 10000 + Weight: 400 + Flags: + BuyingStore: true + Script: | + sc_start SC_LUKFOOD,1200000,5; percentheal 5,2; + - Id: 12071 + AegisName: Str_Dish06 + Name: Shiny Marinade Beef + Type: Healing + Buy: 20000 + Weight: 800 + Flags: + BuyingStore: true + Script: | + sc_start SC_STRFOOD,1200000,6; percentheal 10,2; + - Id: 12072 + AegisName: Str_Dish07 + Name: Whole Roast + Type: Healing + Buy: 40000 + Weight: 1000 + Flags: + BuyingStore: true + Script: | + sc_start SC_STRFOOD,1200000,7; percentheal 10,4; + - Id: 12073 + AegisName: Str_Dish08 + Name: Bearfoot Special + Type: Healing + Buy: 60000 + Weight: 500 + Flags: + BuyingStore: true + Script: | + sc_start SC_STRFOOD,1200000,8; percentheal 15,6; + - Id: 12074 + AegisName: Str_Dish09 + Name: Tendon Satay + Type: Healing + Buy: 80000 + Weight: 1000 + Flags: + BuyingStore: true + Script: | + sc_start SC_STRFOOD,1200000,9; percentheal 15,8; + - Id: 12075 + AegisName: Str_Dish10 + Name: Steamed Tongue + Type: Healing + Buy: 100000 + Weight: 1000 + Flags: + BuyingStore: true + Script: | + sc_start SC_STRFOOD,1200000,10; percentheal 20,20; + - Id: 12076 + AegisName: Int_Dish06 + Name: Red Mushroom Wine + Type: Healing + Buy: 20000 + Weight: 300 + Flags: + BuyingStore: true + Script: | + sc_start SC_INTFOOD,1200000,6; percentheal 2,10; + - Id: 12077 + AegisName: Int_Dish07 + Name: Special Royal Jelly Herbal Tea + Type: Healing + Buy: 40000 + Weight: 800 + Flags: + BuyingStore: true + Script: | + sc_start SC_INTFOOD,1200000,7; percentheal 4,10; + - Id: 12078 + AegisName: Int_Dish08 + Name: Royal Family Tea + Type: Healing + Buy: 60000 + Weight: 1000 + Flags: + BuyingStore: true + Script: | + sc_start SC_INTFOOD,1200000,8; percentheal 6,10; + - Id: 12079 + AegisName: Int_Dish09 + Name: Tristan XII + Type: Healing + Buy: 80000 + Weight: 1000 + Flags: + BuyingStore: true + Script: | + sc_start SC_INTFOOD,1200000,9; percentheal 8,15; + - Id: 12080 + AegisName: Int_Dish10 + Name: Dragon Breath Cocktail + Type: Healing + Buy: 100000 + Weight: 1000 + Flags: + BuyingStore: true + Script: | + sc_start SC_INTFOOD,1200000,10; percentheal 10,20; + - Id: 12081 + AegisName: Vit_Dish06 + Name: Awfully Bitter Bracer + Type: Healing + Buy: 20000 + Weight: 500 + Flags: + BuyingStore: true + Script: | + sc_start SC_VITFOOD,1200000,6; percentheal 13,0; + - Id: 12082 + AegisName: Vit_Dish07 + Name: Sumptuous Feast + Type: Healing + Buy: 40000 + Weight: 400 + Flags: + BuyingStore: true + Script: | + sc_start SC_VITFOOD,1200000,7; percentheal 16,0; + - Id: 12083 + AegisName: Vit_Dish08 + Name: Giant Burito + Type: Healing + Buy: 60000 + Weight: 1000 + Flags: + BuyingStore: true + Script: | + sc_start SC_VITFOOD,1200000,8; percentheal 19,0; + - Id: 12084 + AegisName: Vit_Dish09 + Name: Ascending Dragon Soup + Type: Healing + Buy: 80000 + Weight: 1000 + Flags: + BuyingStore: true + Script: | + sc_start SC_VITFOOD,1200000,9; percentheal 22,0; + - Id: 12085 + AegisName: Vit_Dish10 + Name: Immortal Stew + Type: Healing + Buy: 100000 + Weight: 1000 + Flags: + BuyingStore: true + Script: | + sc_start SC_VITFOOD,1200000,10; percentheal 25,0; + - Id: 12086 + AegisName: Agi_Dish06 + Name: Chile Shrimp Gratin + Type: Healing + Buy: 20000 + Weight: 800 + Flags: + BuyingStore: true + Script: | + sc_start SC_AGIFOOD,1200000,6; percentheal 7,2; + - Id: 12087 + AegisName: Agi_Dish07 + Name: Steamed Alligator with Vegetable + Type: Healing + Buy: 40000 + Weight: 800 + Flags: + BuyingStore: true + Script: | + sc_start SC_AGIFOOD,1200000,7; percentheal 8,2; + - Id: 12088 + AegisName: Agi_Dish08 + Name: Incredibly Spicy Curry + Type: Healing + Buy: 60000 + Weight: 1000 + Flags: + BuyingStore: true + Script: | + sc_start SC_AGIFOOD,1200000,8; percentheal 9,2; + - Id: 12089 + AegisName: Agi_Dish09 + Name: Special Meat Stew + Type: Healing + Buy: 80000 + Weight: 1000 + Flags: + BuyingStore: true + Script: | + sc_start SC_AGIFOOD,1200000,9; percentheal 10,2; + - Id: 12090 + AegisName: Agi_Dish10 + Name: Steamed Desert Scorpions + Type: Healing + Buy: 100000 + Weight: 1000 + Flags: + BuyingStore: true + Script: | + sc_start SC_AGIFOOD,1200000,10; percentheal 15,5; + - Id: 12091 + AegisName: Dex_Dish06 + Name: Peach Cake + Type: Healing + Buy: 20000 + Weight: 800 + Flags: + BuyingStore: true + Script: | + sc_start SC_DEXFOOD,1200000,6; percentheal 5,6; + - Id: 12092 + AegisName: Dex_Dish07 + Name: Soul Haunted Bread + Type: Healing + Buy: 40000 + Weight: 800 + Flags: + BuyingStore: true + Script: | + sc_start SC_DEXFOOD,1200000,7; percentheal 5,7; + - Id: 12093 + AegisName: Dex_Dish08 + Name: Special Toast + Type: Healing + Buy: 60000 + Weight: 1000 + Flags: + BuyingStore: true + Script: | + sc_start SC_DEXFOOD,1200000,8; percentheal 5,8; + - Id: 12094 + AegisName: Dex_Dish09 + Name: Heavenly Fruit Juice + Type: Healing + Buy: 80000 + Weight: 500 + Flags: + BuyingStore: true + Script: | + sc_start SC_DEXFOOD,1200000,9; percentheal 5,9; + - Id: 12095 + AegisName: Dex_Dish10 + Name: Hwergelmir's Tonic + Type: Healing + Buy: 100000 + Weight: 1000 + Flags: + BuyingStore: true + Script: | + sc_start SC_DEXFOOD,1200000,10; percentheal 10,10; + - Id: 12096 + AegisName: Luk_Dish06 + Name: Lucky Soup + Type: Healing + Buy: 20000 + Weight: 300 + Flags: + BuyingStore: true + Script: | + sc_start SC_LUKFOOD,1200000,6; percentheal 6,3; + - Id: 12097 + AegisName: Luk_Dish07 + Name: Assorted Shish Kebob + Type: Healing + Buy: 40000 + Weight: 800 + Flags: + BuyingStore: true + Script: | + sc_start SC_LUKFOOD,1200000,7; percentheal 7,3; + - Id: 12098 + AegisName: Luk_Dish08 + Name: Strawberry Flavored Rice Ball + Type: Healing + Buy: 60000 + Weight: 400 + Flags: + BuyingStore: true + Script: | + sc_start SC_LUKFOOD,1200000,8; percentheal 9,3; + - Id: 12099 + AegisName: Luk_Dish09 + Name: Blood Flavored Soda + Type: Healing + Buy: 80000 + Weight: 1000 + Flags: + BuyingStore: true + Script: | + sc_start SC_LUKFOOD,1200000,9; percentheal 10,4; + - Id: 12100 + AegisName: Luk_Dish10 + Name: Cooked Nine Tail's Tails + Type: Healing + Buy: 100000 + Weight: 500 + Flags: + BuyingStore: true + Script: | + sc_start SC_LUKFOOD,1200000,10; percentheal 14,8; + - Id: 12101 + AegisName: Citron + Name: Citron + Type: Healing + Buy: 20 + Weight: 300 + Flags: + BuyingStore: true + - Id: 12102 + AegisName: Meat_Skewer + Name: Grilled Skewer + Type: Healing + Buy: 20 + Weight: 300 + Flags: + BuyingStore: true + - Id: 12103 + AegisName: Bloody_Dead_Branch + Name: Bloody Branch + Type: Usable + Buy: 10000 + Weight: 200 + Flags: + BuyingStore: true + DeadBranch: true + Script: | + monster "this",-1,-1,"--ja--",-3,1,""; + - Id: 12104 + AegisName: Random_Quiver + Name: Random Quiver + Type: Usable + Buy: 10000 + Weight: 200 + Flags: + BuyingStore: true + Container: true + Script: | + getrandgroupitem(IG_Quiver),1; + - Id: 12105 + AegisName: Set_Of_Taiming_Item + Name: Taming Gift Set + Type: Usable + Buy: 10000 + Weight: 200 + Flags: + BuyingStore: true + Container: true + Script: | + getrandgroupitem(IG_Taming),1; getrandgroupitem(IG_Taming),1; getrandgroupitem(IG_Taming),1; + - Id: 12106 + AegisName: Accessory_Box + Name: Jewelry Box + Type: Usable + Buy: 10000 + Weight: 200 + Flags: + BuyingStore: true + Container: true + Script: | + getrandgroupitem(IG_Accesory),1; + - Id: 12107 + AegisName: Wrapped_Mask + Name: Wrapped Mask + Type: Usable + Buy: 10000 + Weight: 200 + Flags: + BuyingStore: true + Container: true + Script: | + getrandgroupitem(IG_Mask),1; + - Id: 12108 + AegisName: Bundle_Of_Magic_Scroll + Name: Scroll Package + Type: Usable + Buy: 10000 + Weight: 200 + Flags: + BuyingStore: true + Container: true + Script: | + getrandgroupitem(IG_Scroll),1; getrandgroupitem(IG_Scroll),1; getrandgroupitem(IG_Scroll),1; getrandgroupitem(IG_Scroll),1; getrandgroupitem(IG_Scroll),1; + - Id: 12109 + AegisName: Poring_Box + Name: Poring Box + Type: Usable + Buy: 10000 + Weight: 200 + Flags: + BuyingStore: true + DeadBranch: true + Script: | + monster "this",-1,-1,"--ja--",-2,1,""; + - Id: 12110 + AegisName: First_Aid_Kit + Name: First Aid Kit + Type: Usable + Buy: 10000 + Weight: 200 + Flags: + BuyingStore: true + Container: true + Script: | + getrandgroupitem(IG_FirstAid),1; getrandgroupitem(IG_FirstAid),1; getrandgroupitem(IG_FirstAid),1; getrandgroupitem(IG_FirstAid),1; getrandgroupitem(IG_FirstAid),1; + - Id: 12111 + AegisName: Food_Package + Name: Bundle of Food + Type: Usable + Buy: 10000 + Weight: 200 + Flags: + BuyingStore: true + Container: true + Script: | + getrandgroupitem(IG_FoodBag),1; getrandgroupitem(IG_FoodBag),1; getrandgroupitem(IG_FoodBag),1; + - Id: 12112 + AegisName: Tropical_Sograt + Name: Tropical Sograt + Type: Usable + Buy: 1000 + Weight: 100 + Flags: + BuyingStore: true + Script: | + sc_start SC_Curse,10000,1; + - Id: 12113 + AegisName: Vermilion_The_Beach + Name: Vermilion on the Beach + Type: Usable + Buy: 1000 + Weight: 100 + Flags: + BuyingStore: true + Script: | + sc_start SC_Stun,10000,1; + - Id: 12114 + AegisName: Elemental_Fire + Name: Elemental Converter + Type: Delayconsume + Buy: 2 + Weight: 10 + Flags: + BuyingStore: true + Script: | + itemskill "ITEM_ENCHANTARMS",4; + - Id: 12115 + AegisName: Elemental_Water + Name: Elemental Converter + Type: Delayconsume + Buy: 2 + Weight: 10 + Flags: + BuyingStore: true + Script: | + itemskill "ITEM_ENCHANTARMS",2; + - Id: 12116 + AegisName: Elemental_Earth + Name: Elemental Converter + Type: Delayconsume + Buy: 2 + Weight: 10 + Flags: + BuyingStore: true + Script: | + itemskill "ITEM_ENCHANTARMS",3; + - Id: 12117 + AegisName: Elemental_Wind + Name: Elemental Converter + Type: Delayconsume + Buy: 2 + Weight: 10 + Flags: + BuyingStore: true + Script: | + itemskill "ITEM_ENCHANTARMS",5; + - Id: 12118 + AegisName: Resist_Fire + Name: Fireproof Potion + Type: Usable + Buy: 2 + Weight: 10 + Flags: + BuyingStore: true + Script: | + sc_start4 SC_ARMOR_ELEMENT_FIRE,1200000,-15,0,20,0; + - Id: 12119 + AegisName: Resist_Water + Name: Coldproof Potion + Type: Usable + Buy: 2 + Weight: 10 + Flags: + BuyingStore: true + Script: | + sc_start4 SC_ARMOR_ELEMENT_WATER,1200000,20,0,0,-15; + - Id: 12120 + AegisName: Resist_Earth + Name: Earthproof Potion + Type: Usable + Buy: 2 + Weight: 10 + Flags: + BuyingStore: true + Script: | + sc_start4 SC_ARMOR_ELEMENT_EARTH,1200000,0,20,-15,0; + - Id: 12121 + AegisName: Resist_Wind + Name: Thunderproof Potion + Type: Usable + Buy: 2 + Weight: 10 + Flags: + BuyingStore: true + Script: | + sc_start4 SC_ARMOR_ELEMENT_WIND,1200000,0,-15,0,20; + - Id: 12122 + AegisName: Sesame_Pastry + Name: Sesame Pastry + Type: Usable + Buy: 2 + Weight: 70 + Flags: + BuyingStore: true + Script: | + sc_start SC_HITFOOD,1800000,30; + - Id: 12123 + AegisName: Honey_Pastry + Name: Honey Pastry + Type: Usable + Buy: 2 + Weight: 70 + Flags: + BuyingStore: true + Script: | + sc_start SC_FLEEFOOD,1800000,30; + - Id: 12124 + AegisName: Rainbow_Cake + Name: Rainbow Cake + Type: Usable + Buy: 2 + Weight: 70 + Flags: + BuyingStore: true + Script: | + sc_start SC_BATKFOOD,60000,10; sc_start SC_MATKFOOD,60000,10; + - Id: 12125 + AegisName: Outdoor_Cooking_Kits + Name: Outdoor Cooking Kit + Type: Usable + Buy: 500 + Weight: 20 + Flags: + BuyingStore: true + Script: | + cooking 11; + - Id: 12126 + AegisName: Indoor_Cooking_Kits + Name: Home Cooking Kit + Type: Usable + Buy: 1000 + Weight: 30 + Flags: + BuyingStore: true + Script: | + cooking 12; + - Id: 12127 + AegisName: High_end_Cooking_Kits + Name: Professional Cooking Kit + Type: Usable + Buy: 2000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + cooking 13; + - Id: 12128 + AegisName: Imperial_Cooking_Kits + Name: Royal Cooking Kit + Type: Usable + Buy: 5000 + Weight: 70 + Flags: + BuyingStore: true + Script: | + cooking 14; + - Id: 12129 + AegisName: Fantastic_Cooking_Kits + Name: Fantastic Cooking Kit + Type: Usable + Buy: 10000 + Weight: 70 + Flags: + BuyingStore: true + Script: | + cooking 15; + - Id: 12130 + AegisName: Cookie_Bag + Name: Cookie Bag + Type: Usable + Buy: 2 + Weight: 70 + Flags: + BuyingStore: true + Container: true + Script: | + getrandgroupitem(IG_CookieBag),1; getrandgroupitem(IG_CookieBag),1; getrandgroupitem(IG_CookieBag),1; + - Id: 12131 + AegisName: Lucky_Potion + Name: Lucky Potion + Type: Healing + Buy: 2 + Weight: 100 + - Id: 12132 + AegisName: Red_Bag + Name: Santa's Bag + Type: Usable + Weight: 200 + Flags: + BuyingStore: true + Script: | + sc_start SC_Xmas,600000,0; + - Id: 12133 + AegisName: Ice_Cream_ + Name: McDonald's Ice Cone + Type: Healing + Weight: 80 + Script: | + if(gettime(DT_DAYOFMONTH)!=MDiceCone) { set MDiceCone,gettime(DT_DAYOFMONTH); percentheal 50,50; } + - Id: 12134 + AegisName: Red_Envelope + Name: Red Envelope + Type: Usable + Buy: 1 + Weight: 10 + Script: | + set Zeny,Zeny+rand(1000,10000); + - Id: 12135 + AegisName: Green_Ale + Name: Green Ale + Type: Usable + Buy: 20 + Weight: 30 + Script: | + percentheal 50,50; sc_start SC_Confusion,10000,0,1000,0; + - Id: 12136 + AegisName: Women's_Bundle + Name: Women's Bundle + Type: Usable + Weight: 100 + Script: | + getitem callfunc("F_Rand",558,529,2668,7518),1; + - Id: 12137 + AegisName: 1st_Stage_Prize + Name: First Stage Prize + Type: Usable + - Id: 12138 + AegisName: 2nd_Stage_Prize + Name: Second Stage Prize + Type: Usable + - Id: 12139 + AegisName: 3rd_Stage_Prize + Name: Third Stage Prize + Type: Usable + - Id: 12140 + AegisName: 4th_Stage_Prize + Name: Fourth Stage Prize + Type: Usable + - Id: 12141 + AegisName: 5th_Stage_Prize + Name: Fifth Stage Prize + Type: Usable + - Id: 12142 + AegisName: Magic_Book + Name: Book of Magic + Type: Usable + Weight: 100 + Trade: + Override: 100 + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_AGIFOOD,1800000,10; + - Id: 12143 + AegisName: Red_Can + Name: Red Can + Type: Usable + Buy: 50000 + Weight: 300 + - Id: 12144 + AegisName: Sphere_Case_Wind + Name: Lightning Sphere Pack + Type: Usable + Buy: 2 + Weight: 350 + Flags: + BuyingStore: true + Script: | + getitem 13204,500; + - Id: 12145 + AegisName: Sphere_Case_Darkness + Name: Blind Sphere Pack + Type: Usable + Buy: 2 + Weight: 350 + Flags: + BuyingStore: true + Script: | + getitem 13206,500; + - Id: 12146 + AegisName: Sphere_Case_Poison + Name: Poison Sphere Pack + Type: Usable + Buy: 2 + Weight: 350 + Flags: + BuyingStore: true + Script: | + getitem 13205,500; + - Id: 12147 + AegisName: Sphere_Case_Water + Name: Freezing Sphere Pack + Type: Usable + Buy: 2 + Weight: 350 + Flags: + BuyingStore: true + Script: | + getitem 13207,500; + - Id: 12148 + AegisName: Sphere_Case_Fire + Name: Flare Sphere Pack + Type: Usable + Buy: 2 + Weight: 350 + Flags: + BuyingStore: true + Script: | + getitem 13203,500; + - Id: 12149 + AegisName: Bullet_Case + Name: Cartridge + Type: Usable + Buy: 2 + Weight: 250 + Flags: + BuyingStore: true + Script: | + getitem 13200,500; + - Id: 12150 + AegisName: Bullet_Case_Blood + Name: Blood Cartridge + Type: Usable + Buy: 2 + Weight: 250 + Flags: + BuyingStore: true + Script: | + getitem 13202,500; + - Id: 12151 + AegisName: Bullet_Case_Silver + Name: Silver Cartridge + Type: Usable + Buy: 2 + Weight: 250 + Flags: + BuyingStore: true + Script: | + getitem 13201,500; + - Id: 12152 + AegisName: Special_Box + Name: Special Present + Type: Usable + Weight: 100 + - Id: 12153 + AegisName: Bow_Mercenary_Scroll1 + Name: Bowman Scroll 1 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6017,1800000; + - Id: 12154 + AegisName: Bow_Mercenary_Scroll2 + Name: Bowman Scroll 2 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6018,1800000; + - Id: 12155 + AegisName: Bow_Mercenary_Scroll3 + Name: Bowman Scroll 3 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6019,1800000; + - Id: 12156 + AegisName: Bow_Mercenary_Scroll4 + Name: Bowman Scroll 4 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6020,1800000; + - Id: 12157 + AegisName: Bow_Mercenary_Scroll5 + Name: Bowman Scroll 5 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6021,1800000; + - Id: 12158 + AegisName: Bow_Mercenary_Scroll6 + Name: Bowman Scroll 6 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6022,1800000; + - Id: 12159 + AegisName: Bow_Mercenary_Scroll7 + Name: Bowman Scroll 7 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6023,1800000; + - Id: 12160 + AegisName: Bow_Mercenary_Scroll8 + Name: Bowman Scroll 8 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6024,1800000; + - Id: 12161 + AegisName: Bow_Mercenary_Scroll9 + Name: Bowman Scroll 9 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6025,1800000; + - Id: 12162 + AegisName: Bow_Mercenary_Scroll10 + Name: Bowman Scroll 10 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6026,1800000; + - Id: 12163 + AegisName: SwordMercenary_Scroll1 + Name: Fencer Scroll 1 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6037,1800000; + - Id: 12164 + AegisName: SwordMercenary_Scroll2 + Name: Fencer Scroll 2 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6038,1800000; + - Id: 12165 + AegisName: SwordMercenary_Scroll3 + Name: Fencer Scroll 3 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6039,1800000; + - Id: 12166 + AegisName: SwordMercenary_Scroll4 + Name: Fencer Scroll 4 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6040,1800000; + - Id: 12167 + AegisName: SwordMercenary_Scroll5 + Name: Fencer Scroll 5 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6041,1800000; + - Id: 12168 + AegisName: SwordMercenary_Scroll6 + Name: Fencer Scroll 6 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6042,1800000; + - Id: 12169 + AegisName: SwordMercenary_Scroll7 + Name: Fencer Scroll 7 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6043,1800000; + - Id: 12170 + AegisName: SwordMercenary_Scroll8 + Name: Fencer Scroll 8 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6044,1800000; + - Id: 12171 + AegisName: SwordMercenary_Scroll9 + Name: Fencer Scroll 9 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6045,1800000; + - Id: 12172 + AegisName: SwordMercenary_Scroll10 + Name: Fencer Scroll 10 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6046,1800000; + - Id: 12173 + AegisName: SpearMercenary_Scroll1 + Name: Spearman Scroll 1 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6027,1800000; + - Id: 12174 + AegisName: SpearMercenary_Scroll2 + Name: Spearman Scroll 2 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6028,1800000; + - Id: 12175 + AegisName: SpearMercenary_Scroll3 + Name: Spearman Scroll 3 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6029,1800000; + - Id: 12176 + AegisName: SpearMercenary_Scroll4 + Name: Spearman Scroll 4 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6030,1800000; + - Id: 12177 + AegisName: SpearMercenary_Scroll5 + Name: Spearman Scroll 5 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6031,1800000; + - Id: 12178 + AegisName: SpearMercenary_Scroll6 + Name: Spearman Scroll 6 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6032,1800000; + - Id: 12179 + AegisName: SpearMercenary_Scroll7 + Name: Spearman Scroll 7 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6033,1800000; + - Id: 12180 + AegisName: SpearMercenary_Scroll8 + Name: Spearman Scroll 8 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6034,1800000; + - Id: 12181 + AegisName: SpearMercenary_Scroll9 + Name: Spearman Scroll 9 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6035,1800000; + - Id: 12182 + AegisName: SpearMercenary_Scroll10 + Name: Spearman Scroll 10 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6036,1800000; + - Id: 12183 + AegisName: Holy_Arrow_Quiver + Name: Holy Arrow Quiver + Type: Usable + Buy: 2 + Weight: 250 + Flags: + BuyingStore: true + Script: | + getitem 1772,500; + - Id: 12184 + AegisName: Mercenary_Red_Potion + Name: Mercenary Red Potion + Type: Usable + Buy: 500 + Weight: 100 + Flags: + BuyingStore: true + Script: | + mercenary_heal 1000,0; + - Id: 12185 + AegisName: Mercenary_Blue_Potion + Name: Mercenary Blue Potion + Type: Usable + Buy: 1000 + Weight: 100 + Flags: + BuyingStore: true + Script: | + mercenary_heal 0,100; + - Id: 12186 + AegisName: Red_Box + Name: Old Red Box + Type: Usable + Buy: 50000 + Weight: 200 + Flags: + Container: true + Script: | + getrandgroupitem(IG_RedBox),1; + - Id: 12187 + AegisName: Green_Box + Name: Old Green Box + Type: Usable + Buy: 50000 + Weight: 200 + Flags: + Container: true + Script: | + getrandgroupitem(IG_GreenBox),1; + - Id: 12188 + AegisName: Magical_Moon_Cake + Name: Grace Moon Cake + Type: Healing + Buy: 20 + Weight: 300 + Script: | + percentheal 50,50; + - Id: 12189 + AegisName: Red_Box_ + Name: Old Red Box + Type: Usable + Buy: 50000 + Weight: 200 + Flags: + Container: true + Script: | + getrandgroupitem(IG_RedBox_2),1; + - Id: 12190 + AegisName: Moon_Cake + Name: Moon Cake + Type: Usable + Buy: 2 + Weight: 300 + - Id: 12191 + AegisName: Special_Moon_Cake + Name: Special Moon Cake + Type: Usable + Buy: 2 + Weight: 500 + - Id: 12192 + AegisName: Pumpkin_Pie + Name: Pumpkin Pie + Type: Healing + Buy: 20 + Weight: 10 + Script: | + percentheal 5,5; + - Id: 12193 + AegisName: Brezel + Name: Pretzel + Type: Usable + Buy: 20 + Weight: 20 + - Id: 12194 + AegisName: Hometown_Gift + Name: Hometown Gift + Type: Usable + Buy: 20 + Weight: 200 + Flags: + BuyingStore: true + Container: true + Script: | + getrandgroupitem(IG_HometownGift),1; getrandgroupitem(IG_HometownGift),1; getrandgroupitem(IG_HometownGift),1; + - Id: 12195 + AegisName: Plain_Rice_Cake + Name: Plain Rice Cake + Type: Healing + Buy: 20 + Weight: 100 + Flags: + BuyingStore: true + Script: | + percentheal 0,20; + - Id: 12196 + AegisName: Hearty_Rice_Cake + Name: Hearty Rice Cake + Type: Healing + Buy: 20 + Weight: 100 + Flags: + BuyingStore: true + Script: | + percentheal 50,0; + - Id: 12197 + AegisName: Salty_Rice_Cake + Name: Salty Rice Cake + Type: Healing + Buy: 20 + Weight: 100 + Flags: + BuyingStore: true + Script: | + percentheal 10,10; + - Id: 12198 + AegisName: Lucky_Rice_Cake + Name: Lucky Rice Cake + Type: Usable + Buy: 20 + Weight: 100 + Flags: + BuyingStore: true + Script: | + sc_start SC_INCLUK,1200000,21; + - Id: 12199 + AegisName: Rice_Scroll + Name: Scroll of Magic + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12200 + AegisName: Event_Cake + Name: X-mas Cake + Type: Delayconsume + Buy: 20 + Weight: 50 + Script: | + itemskill "PR_MAGNIFICAT",3; + - Id: 12201 + AegisName: Red_Box_C + Name: Commonplace Red Box + Type: Usable + Buy: 20 + Weight: 200 + - Id: 12202 + AegisName: Str_Dish10_ + Name: Steamed Tongue + Type: Healing + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_FOOD_STR_CASH,1800000,10; percentheal 15,5; + - Id: 12203 + AegisName: Agi_Dish10_ + Name: Steamed Scorpion + Type: Healing + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_FOOD_AGI_CASH,1800000,10; percentheal 15,5; + - Id: 12204 + AegisName: Int_Dish10_ + Name: Dragon Breath Cocktail + Type: Healing + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_FOOD_INT_CASH,1800000,10; percentheal 15,5; + - Id: 12205 + AegisName: Dex_Dish10_ + Name: Hwergelmir's Tonic + Type: Healing + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_FOOD_DEX_CASH,1800000,10; percentheal 15,5; + - Id: 12206 + AegisName: Luk_Dish10_ + Name: Cooked Nine Tail's Tails + Type: Healing + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_FOOD_LUK_CASH,1800000,10; percentheal 15,5; + - Id: 12207 + AegisName: Vit_Dish10_ + Name: Stew Of Immortality + Type: Healing + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_FOOD_VIT_CASH,1800000,10; percentheal 15,5; + - Id: 12208 + AegisName: Battle_Manual + Name: Battle Manual + Type: Usable + Buy: 2 + Weight: 10 + Delay: + Duration: 60000 + Status: Reuse_Limit_C + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_EXPBOOST,1800000,50; + - Id: 12209 + AegisName: Insurance + Name: Life Insurance + Type: Usable + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_LIFEINSURANCE,1800000,0; + - Id: 12210 + AegisName: Bubble_Gum + Name: Bubble Gum + Type: Usable + Buy: 2 + Weight: 10 + Delay: + Duration: 60000 + Status: Reuse_Limit_D + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_ITEMBOOST,1800000,200; + - Id: 12211 + AegisName: Kafra_Card + Name: Kafra Card + Type: Usable + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + callfunc "F_CashStore"; + - Id: 12212 + AegisName: Giant_Fly_Wing + Name: Giant Fly Wing + Type: Usable + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + callfunc "F_CashPartyCall"; + - Id: 12213 + AegisName: Neuralizer + Name: Neuralizer + Type: Delayconsume + Buy: 2 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + callfunc "F_CashReset"; + - Id: 12214 + AegisName: Convex_Mirror + Name: Convex Mirror + Type: Usable + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_BOSSMAPINFO,600000,0; + - Id: 12215 + AegisName: Blessing_10_Scroll + Name: LV10 Blessing Scroll + Type: Usable + Buy: 2 + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,240000,10; + - Id: 12216 + AegisName: Inc_Agi_10_Scroll + Name: LV10 Agil Scroll + Type: Usable + Buy: 2 + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + if(Hp>15) { skilleffect "AL_INCAGI",0; sc_start SC_INCREASEAGI,240000,10; heal -15,0; } + - Id: 12217 + AegisName: Aspersio_5_Scroll + Name: LV5 Aspersio Scroll + Type: Usable + Buy: 2 + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + if(countitem(523)>0) { skilleffect "PR_ASPERSIO",0; sc_start SC_ASPERSIO,180000,5; delitem 523,1; } + - Id: 12218 + AegisName: Assumptio_5_Scroll + Name: LV5 Assumptio Scroll + Type: Usable + Buy: 2 + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_ASSUMPTIO,100000,5; skilleffect "HP_ASSUMPTIO",0; + - Id: 12219 + AegisName: Wind_Walk_10_Scroll + Name: LV10 Wind Walker Scroll + Type: Usable + Buy: 2 + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + skilleffect "SN_WINDWALK",0; sc_start SC_WINDWALK,250000,5; + - Id: 12220 + AegisName: Adrenaline_Scroll + Name: LV5 Adrenaline Scroll + Type: Usable + Buy: 2 + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + set .@type,getiteminfo(getequipid(EQI_HAND_R),11); if (.@type==W_1HAXE||.@type==W_2HAXE||.@type==W_MACE) { skilleffect "BS_ADRENALINE",0; sc_start SC_ADRENALINE,150000,5; } + - Id: 12221 + AegisName: Megaphone_ + Name: Megaphone + Type: Usable + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + input @megaphone$; announce strcharinfo(0) + ": " + @megaphone$,bc_all,0xFF0000; + - Id: 12225 + AegisName: Sweet_Candy_Striper + Name: Sweet Candy Cane + Type: Usable + Buy: 20 + Weight: 50 + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1245; + - Id: 12226 + AegisName: Examination1 + Name: Examination 1 + Type: Healing + Buy: 20 + Weight: 50 + Script: | + 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; + - Id: 12227 + AegisName: Examination2 + Name: Examination 2 + Type: Healing + Buy: 20 + Weight: 50 + Script: | + 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; + - Id: 12228 + AegisName: Examination3 + Name: Examination 3 + Type: Healing + Buy: 20 + Weight: 50 + Script: | + 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; + - Id: 12229 + AegisName: Examination4 + Name: Examination 4 + Type: Healing + Buy: 20 + Weight: 50 + Script: | + 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; + - Id: 12230 + AegisName: Examination5 + Name: Examination 5 + Type: Healing + Buy: 20 + Weight: 50 + Script: | + 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; + - Id: 12231 + AegisName: Examination6 + Name: Examination 6 + Type: Healing + Buy: 20 + Weight: 50 + Script: | + 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; + - Id: 12232 + AegisName: Gingerbread + Name: Ginger Bread + Type: Usable + Buy: 20 + Weight: 150 + Script: | + sc_start SC_ASPDPOTION1,900000,0; sc_start SC_SPEEDUP0,900000,25; + - Id: 12233 + AegisName: Kvass + Name: Kvass + Type: Healing + Buy: 20 + Weight: 200 + Script: | + percentheal 100,100; + - Id: 12234 + AegisName: Cacao99 + Name: Fierce Cacao 99% + Type: Healing + Buy: 20 + Weight: 100 + Script: | + percentheal 25,0; + - Id: 12235 + AegisName: Strawberry_Choco + Name: Chocolate Strawberry + Type: Usable + Buy: 20 + Weight: 100 + NoUse: + Override: 100 + Sitting: true + Script: | + percentheal 0,5; skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,240000,10; + - Id: 12236 + AegisName: Choco_Tart + Name: Chocolate Tart + Type: Delayconsume + Buy: 20 + Weight: 100 + NoUse: + Override: 100 + Sitting: true + Script: | + percentheal 5,0; itemskill "AL_ANGELUS",5; + - Id: 12237 + AegisName: Choco_Lump + Name: Junky Chocolate + Type: Usable + Weight: 100 + NoUse: + Override: 100 + Sitting: true + Script: | + percentheal 0,5; sc_start SC_Poison,18000,0; sc_start SC_Bleeding,18000,0; + - Id: 12238 + AegisName: New_Year_Rice_Cake_1 + Name: New Year Rice Cake + Type: Usable + Buy: 20 + Weight: 100 + Script: | + sc_start SC_DPoison,10000,0,1000,0; sc_start SC_Poison,50000,0; + - Id: 12239 + AegisName: New_Year_Rice_Cake_2 + Name: New Year Rice Cake + Type: Usable + Buy: 20 + Weight: 100 + Script: | + sc_start SC_DPoison,10000,0,1000,0; sc_start SC_Poison,50000,0; + - Id: 12240 + AegisName: Old_Yellow_Box + Name: Old Yellow Box + Type: Usable + Buy: 20 + Weight: 200 + Flags: + Container: true + Script: | + getrandgroupitem(IG_YellowBox),1; + - Id: 12241 + AegisName: M_Center_Potion + Name: Mercenary Concentration Potion + Type: Usable + Buy: 800 + Weight: 100 + Flags: + BuyingStore: true + Script: | + mercenary_sc_start SC_ASPDPOTION0,1800000,0; + - Id: 12242 + AegisName: M_Awakening_Potion + Name: Mercenary Awakening Potion + Type: Usable + Buy: 1500 + Weight: 150 + Flags: + BuyingStore: true + Script: | + mercenary_sc_start SC_ASPDPOTION1,1800000,0; + - Id: 12243 + AegisName: M_Berserk_Potion + Name: Mercenary Berserk Potion + Type: Usable + Buy: 3000 + Weight: 200 + Flags: + BuyingStore: true + Script: | + mercenary_sc_start SC_ASPDPOTION2,1800000,0; + - Id: 12244 + AegisName: Old_Gift_Box + Name: Old Gift Box + Type: Usable + Buy: 20 + Weight: 200 + Flags: + Container: true + Script: | + getrandgroupitem(IG_OldGiftBox),1; + - Id: 12245 + AegisName: Green_Ale_US + Name: Green Ale + Type: Healing + Buy: 5000 + Weight: 500 + Script: | + percentheal 100,0; + - Id: 12246 + AegisName: Magic_Card_Album + Name: Mystical Card Album + Type: Usable + Buy: 10000 + Weight: 50 + Flags: + BuyingStore: true + Container: true + Script: | + getrandgroupitem(IG_MagicCardAlbum),1; + - Id: 12247 + AegisName: Halohalo + Name: Halo-Halo + Type: Usable + Buy: 2 + Weight: 100 + EquipLevelMin: 20 + Script: | + sc_start SC_INCALLSTATUS,600000,3; + - Id: 12248 + AegisName: Masquerade_Ball_Box + Name: Fancy Ball Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getrandgroupitem(IG_Masquerade),1; + - Id: 12249 + AegisName: Payroll_Of_Kafra_ + Name: Payment Statement for Kafra Employee + Type: Usable + Buy: 20 + Weight: 10 + - Id: 12250 + AegisName: Str_Dish10_M + Name: Steamed Tongue + Type: Usable + Weight: 10 + Script: | + sc_start SC_STRFOOD,3600000,10; percentheal 20,20; + - Id: 12251 + AegisName: Agi_Dish10_M + Name: Steamed Desert Scorpions + Type: Usable + Weight: 10 + Script: | + sc_start SC_AGIFOOD,3600000,10; percentheal 15,5; + - Id: 12252 + AegisName: Int_Dish10_M + Name: Dragon Breath Cocktail + Type: Usable + Weight: 10 + Script: | + sc_start SC_INTFOOD,3600000,10; percentheal 10,20; + - Id: 12253 + AegisName: Dex_Dish10_M + Name: Hwergelmir's Tonic + Type: Usable + Weight: 10 + Script: | + sc_start SC_DEXFOOD,3600000,10; percentheal 10,10; + - Id: 12254 + AegisName: Luk_Dish10_M + Name: Cooked Nine Tail + Type: Usable + Weight: 10 + Script: | + sc_start SC_LUKFOOD,3600000,10; percentheal 14,8; + - Id: 12255 + AegisName: Vit_Dish10_M + Name: Immortal Stew + Type: Usable + Weight: 10 + Script: | + sc_start SC_VITFOOD,3600000,10; percentheal 25,0; + - Id: 12256 + AegisName: PRO_Gift_Box + Name: PRO Gift Box + Type: Usable + Weight: 10 + - Id: 12257 + AegisName: Cold_Medicine + Name: Cold Medicine + Type: Healing + Buy: 20 + Weight: 100 + EquipLevelMin: 50 + Script: | + percentheal 25,25; + - Id: 12258 + AegisName: Bombring_Box + Name: Bomb Poring Box + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + if(strcharinfo(3)=="job3_rang02") { monster "this",-1,-1,"--ja--",1904,1,""; } + - Id: 12259 + AegisName: Miracle_Medicine + Name: Miracle Tonic + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getexp2(3000000,1500000); + - Id: 12260 + AegisName: Cool_Summer_Outfit + Name: Cool Summer Outfit + Type: Usable + Weight: 100 + Flags: + BuyingStore: true + Script: | + sc_start SC_Summer,600000,0; + - Id: 12261 + AegisName: Secret_Medicine + Name: Leap of Fantasy + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getexp2(2000000,1000000); + - Id: 12262 + AegisName: Inspector_Certificate_ + Name: Authoritative Badge + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_SPEEDUP0,540000,25; + - Id: 12263 + AegisName: Comp_Battle_Manual + Name: Field Manual + Type: Usable + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_EXPBOOST,1800000,50; + - Id: 12264 + AegisName: Comp_Bubble_Gum + Name: Bubble Gum + Type: Usable + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_ITEMBOOST,1800000,200; + - Id: 12265 + AegisName: Comp_Insurance + Name: Life Insurrance + Type: Usable + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_LIFEINSURANCE,1800000,0; + - Id: 12266 + AegisName: Sesame_Pastry_ + Name: Sesame Pastry + Type: Usable + Buy: 2 + Weight: 70 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_HITFOOD,180000,30; + - Id: 12267 + AegisName: Honey_Pastry_ + Name: Honey Pastry + Type: Usable + Buy: 2 + Weight: 70 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_FLEEFOOD,180000,30; + - Id: 12268 + AegisName: Rainbow_Cake_ + Name: Rainbow Cake + Type: Usable + Buy: 2 + Weight: 70 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_ATKPOTION,60000,10; sc_start SC_MATKFOOD,60000,10; + - Id: 12269 + AegisName: Tasty_Colonel + Name: Tasty Pink Ration + Type: Usable + Buy: 2 + Weight: 70 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_ATKPOTION,600000,15; + - Id: 12270 + AegisName: Tasty_Major + Name: Tasty White Ration + Type: Usable + Buy: 2 + Weight: 70 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_MATKPOTION,600000,15; + - Id: 12271 + AegisName: Mre_A + Name: Military Ration A + Type: Healing + Buy: 2 + Weight: 70 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + percentheal 5,0; + - Id: 12272 + AegisName: Mre_B + Name: Military Ration B + Type: Usable + Buy: 2 + Weight: 70 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_HITFOOD,600000,33; + - Id: 12273 + AegisName: Mre_C + Name: Military Ration C + Type: Usable + Buy: 2 + Weight: 70 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_FLEEFOOD,600000,33; + - Id: 12274 + AegisName: Gold_Pill_1 + Name: Daehwandan + Type: Healing + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start2 SC_INCREASE_MAXHP,3600000,5,10; percentheal 10,0; + - Id: 12275 + AegisName: Gold_Pill_2 + Name: Taecheongdan + Type: Healing + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start2 SC_INCREASE_MAXSP,3600000,5,10; percentheal 0,10; + - Id: 12276 + AegisName: Mimic_Scroll + Name: Mimic Scroll + Type: Usable + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + mercenary_create 2058,1800000; + - Id: 12277 + AegisName: Disguise_Scroll + Name: Disguise Scroll + Type: Usable + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + mercenary_create 2059,1800000; + - Id: 12278 + AegisName: Alice_Scroll + Name: Alice Scroll + Type: Usable + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + mercenary_create 2060,1800000; + - Id: 12279 + AegisName: Undead_Element_Scroll + Name: Undead Elemental Scroll + Type: Usable + Weight: 10 + Script: | + sc_start4 SC_ARMOR_RESIST,300000,20,20,20,20; + - Id: 12280 + AegisName: Holy_Element_Scroll + Name: Holy Elemental Scroll + Type: Usable + Weight: 10 + Script: | + specialeffect2 EF_BENEDICTIO; sc_start SC_BENEDICTIO,300000,1; + - Id: 12281 + AegisName: Tresure_Box_WoE + Name: Event Treasure Box + Type: Usable + Buy: 20 + Weight: 150 + Flags: + Container: true + Script: | + getrandgroupitem(IG_Tresure_Box_WoE),1; + - Id: 12282 + AegisName: Internet_Cafe1 + Name: Internet Cafe1 + Type: Usable + Weight: 10 + Script: | + sc_start SC_INCALLSTATUS,5400000,3; sc_start SC_ATKPOTION,5400000,15; sc_start SC_MATKPOTION,5400000,15; + - Id: 12283 + AegisName: Internet_Cafe2 + Name: Internet Cafe2 + Type: Usable + Weight: 10 + Script: | + sc_start SC_INCSTR,5400000,8; sc_start SC_INCDEX,5400000,4; sc_start SC_INCAGI,5400000,6; sc_start SC_ATKPOTION,5400000,32; sc_start SC_INCFLEE,5400000,5; + - Id: 12284 + AegisName: Internet_Cafe3 + Name: Internet Cafe3 + Type: Usable + Weight: 10 + Script: | + sc_start SC_INCINT,5400000,8; sc_start SC_INCVIT,5400000,4; sc_start SC_INCDEX,5400000,6; sc_start SC_MATKPOTION,5400000,40; + - Id: 12285 + AegisName: Internet_Cafe4 + Name: Internet Cafe4 + Type: Usable + Weight: 10 + Script: | + sc_start SC_INCDEX,5400000,8; sc_start SC_INCLUK,5400000,4; sc_start SC_INCAGI,5400000,6; sc_start SC_ATKPOTION,5400000,24; sc_start SC_MATKPOTION,5400000,24; + - Id: 12286 + AegisName: Masquerade_Ball_Box2 + Name: Masquerade Ball Box2 + Type: Usable + Weight: 10 + Flags: + Container: true + Script: | + getrandgroupitem(IG_Masquerade_2),1; + - Id: 12287 + AegisName: Love_Angel + Name: Love Angel Magic Powder + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + setfont 1; + UnEquipScript: | + setfont 0; + - Id: 12288 + AegisName: Squirrel + Name: Squirrel Magic Powder + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + setfont 2; + UnEquipScript: | + setfont 0; + - Id: 12289 + AegisName: Gogo + Name: Gogo Magic Powder + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + setfont 3; + UnEquipScript: | + setfont 0; + - Id: 12290 + AegisName: Mysterious_Can + Name: Mysterious Can Magic Powder + Type: Usable + Buy: 10 + Weight: 100 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + percentheal 5,0; skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,120000,5; + - Id: 12291 + AegisName: Mysterious_PET_Bottle + Name: Mysterious PET Bottle + Type: Usable + Buy: 10 + Weight: 100 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + percentheal 5,0; skilleffect "AL_INCAGI",0; sc_start SC_INCREASEAGI,120000,5; + - Id: 12292 + AegisName: Unripe_Fruit + Name: Unripe Fruit + Type: Healing + Buy: 500 + Weight: 200 + Flags: + BuyingStore: true + Script: | + percentheal 20,0; + - Id: 12293 + AegisName: Dried_Yggdrasilberry + Name: Dried Yggdrasilberry + Type: Healing + Buy: 500 + Weight: 200 + Flags: + BuyingStore: true + Script: | + percentheal 0,20; + - Id: 12294 + AegisName: PC_Bang_Coin_Box1 + Name: PC-Room Coin Box + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2740,1; + - Id: 12295 + AegisName: PC_Bang_Coin_Box2 + Name: PC-Room Coin Box + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2739,1; + - Id: 12296 + AegisName: PC_Bang_Coin_Box3 + Name: PC-Room Coin Box + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2738,1; + - Id: 12297 + AegisName: PC_Bang_Coin_Box4 + Name: PC-Room Coin Box + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2738,2; + - Id: 12298 + AegisName: SP_Potion + Name: SP Consumption Reduction Potion + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_SPCOST_RATE,3600000,15; + - Id: 12299 + AegisName: Mega_Resist_Potion + Name: Mega Resist Potion + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_COMMONSC_RESIST,3600000,10; + - Id: 12300 + AegisName: Wild_Rose_Scroll + Name: Wild Rose Contract + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 1965,1800000; + - Id: 12301 + AegisName: Doppelganger_Scroll + Name: Doppelganger Contract + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 1966,1800000; + - Id: 12302 + AegisName: Ygnizem_Scroll + Name: Egnigem Cenia Contract + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 1967,1800000; + - Id: 12303 + AegisName: Water_Of_Blessing + Name: Blessing Of Water + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12304 + AegisName: Picture_Diary + Name: Diary Magic Powder + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + setfont 4; + UnEquipScript: | + setfont 0; + - Id: 12305 + AegisName: Mini_Heart + Name: Mini Heart Magic Powder + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + setfont 5; + UnEquipScript: | + setfont 0; + - Id: 12306 + AegisName: Newcomer + Name: Freshman Magic Powder + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + setfont 6; + UnEquipScript: | + setfont 0; + - Id: 12307 + AegisName: Kid + Name: Kid Magic Powder + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + setfont 7; + UnEquipScript: | + setfont 0; + - Id: 12308 + AegisName: Magic_Castle + Name: Magic Magic Powder + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + setfont 8; + UnEquipScript: | + setfont 0; + - Id: 12309 + AegisName: Bulging_Head + Name: JJangu Magic Powder + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + setfont 9; + UnEquipScript: | + setfont 0; + - Id: 12310 + AegisName: Spray_Of_Flowers + Name: Spray Of Flowers + Type: Usable + Weight: 50 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_FLEEFOOD,300000,10; + - Id: 12311 + AegisName: Large_Spray_Of_Flowers + Name: Huge Spray Of Flowers + Type: Delayconsume + Weight: 100 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemskill "ALL_PARTYFLEE",1; + - Id: 12312 + AegisName: Thick_Manual50 + Name: Thick Battle Manual + Type: Usable + Script: | + sc_start SC_EXPBOOST,3600000,50; + - Id: 12313 + AegisName: Protection_Of_Angel + Name: Guardian Angel + Type: Usable + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /* itemskill "ALL_ANGEL_PROTECT",1; */ + - Id: 12314 + AegisName: Noive_Box + Name: Noive Box + Type: Usable + Weight: 10 + - Id: 12315 + AegisName: Goddess_Bless + Name: Goddess Of Blessing + Type: Usable + Weight: 10 + - Id: 12316 + AegisName: Angel_Bless + Name: Angel Of Blessing + Type: Usable + Weight: 10 + - Id: 12317 + AegisName: Powder_Snow + Name: Snow Powder + Type: Usable + Weight: 10 + - Id: 12318 + AegisName: Little_Heart + Name: Small Hearts + Type: Usable + Weight: 10 + - Id: 12319 + AegisName: Strawberry_Cake + Name: Rune Strawberry Cake + Type: Usable + Weight: 300 + Script: | + sc_start SC_ATKPOTION,600000,5; sc_start SC_MATKPOTION,600000,5; + - Id: 12320 + AegisName: Pineapple_Juice + Name: Schwarzwald Pine Jubilee + Type: Usable + Weight: 300 + Script: | + sc_start SC_HITFOOD,600000,10; sc_start SC_FLEEFOOD,600000,20; + - Id: 12321 + AegisName: Spicy_Sandwich + Name: Arunafeltz Desert Sandwich + Type: Usable + Weight: 300 + Script: | + sc_start SC_INCCRI,600000,7; + - Id: 12322 + AegisName: Chocolate_Pie + Name: Chocolate Pie + Type: Healing + Weight: 50 + Script: | + percentheal 5,5; + - Id: 12323 + AegisName: N_Fly_Wing + Name: Novice Fly Wing + Type: Delayconsume + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemskill "AL_TELEPORT",1; + - Id: 12324 + AegisName: N_Butterfly_Wing + Name: Novice Butterfly Wing + Type: Delayconsume + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemskill "AL_TELEPORT",3; + - Id: 12325 + AegisName: N_Magnifier + Name: Novice Magnifier + Type: Delayconsume + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemskill "MC_IDENTIFY",1; + - Id: 12326 + AegisName: J_Firecracker + Name: Large Firecracker + Type: Usable + Buy: 2 + Weight: 20 + - Id: 12327 + AegisName: Charm_Of_Luck + Name: Charm Of Luck + Type: Usable + Buy: 1000 + Weight: 50 + - Id: 12328 + AegisName: Charm_Of_Happiness + Name: Charm Of Happiness + Type: Usable + Buy: 1800 + Weight: 100 + Script: | + sc_start SC_INCLUK,3600000,20; + - Id: 12329 + AegisName: Recall_MaleGM + Name: Summon Male GameMaster Scroll + Type: Usable + Weight: 10 + Flags: + BuyingStore: true + Script: | + mercenary_create 2000,1800000; + - Id: 12330 + AegisName: Recall_FemaleGM + Name: Summon Female GameMaster Scroll + Type: Usable + Weight: 10 + Flags: + BuyingStore: true + Script: | + mercenary_create 2001,1800000; + - Id: 12331 + AegisName: Ginseng + Name: Ginseng + Type: Healing + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + percentheal 6,0; + - Id: 12332 + AegisName: Fruit_Juice + Name: Fruit Juice + Type: Healing + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + percentheal 0,6; + - Id: 12333 + AegisName: Ansila + Name: Ancilla + Type: Usable + Weight: 10 + Stack: + Amount: 3 + Inventory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + percentheal 0,15; + - Id: 12334 + AegisName: Cherish_Box + Name: Treasure Edition Helm Box + Type: Usable + Weight: 10 + Flags: + Container: true + Script: | + getrandgroupitem(IG_Cherish_Box),1; + - Id: 12335 + AegisName: Yummy_Skewered_Dish + Name: Grilled Delicious Skewer + Type: Healing + Buy: 1000 + Weight: 350 + Script: | + percentheal 60,60; + - Id: 12336 + AegisName: Baked_Mushroom + Name: Grilled Mushroom + Type: Healing + Buy: 500 + Weight: 300 + Script: | + percentheal 30,30; + - Id: 12337 + AegisName: Grilled_Sausage + Name: Grilled Sausages + Type: Healing + Buy: 300 + Weight: 200 + Script: | + percentheal 20,20; + - Id: 12338 + AegisName: Grilled_Corn + Name: Grilled Corn + Type: Usable + Buy: 100 + Weight: 100 + Script: | + sc_start SC_INCSTR,180000,2; sc_start SC_INCINT,180000,2; sc_start SC_INCAGI,180000,2; + - Id: 12339 + AegisName: Cherish_Box_Ori + Name: Treasure Edition Box + Type: Usable + Weight: 10 + Flags: + Container: true + Script: | + getrandgroupitem(IG_Cherish_Box_Ori),1; + - Id: 12340 + AegisName: Mysterious_Rice_Powder + Name: Chewy Rice Powder + Type: Usable + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + pet 1815; + - Id: 12341 + AegisName: Special_Alloy_Trap_Box + Name: Special Alloy Trap Box + Type: Usable + Buy: 30000 + Weight: 10 + Flags: + BuyingStore: true + Script: | + getitem 7940,100; + - Id: 12342 + AegisName: Manuk's_Opportunity + Name: Manuk's Opportunity + Type: Usable + Weight: 50 + Flags: + BuyingStore: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_POTION_BERSERK; sc_start SC_MANU_ATK,600000,10; + - Id: 12343 + AegisName: Manuk's_Courage + Name: Manuk's Courage + Type: Usable + Weight: 50 + Flags: + BuyingStore: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_GUARD; sc_start SC_MANU_DEF,600000,10; + - Id: 12344 + AegisName: Pinguicula's_fruit_Jam + Name: Pinguicula's Fruit Jam + Type: Usable + Weight: 50 + Flags: + BuyingStore: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_POTION_BERSERK; sc_start SC_SPL_ATK,600000,10; + - Id: 12345 + AegisName: Luciola's_Honey_Jam + Name: Luciola's Honey Jam + Type: Usable + Weight: 50 + Flags: + BuyingStore: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_GUARD; sc_start SC_SPL_DEF,600000,10; + - Id: 12346 + AegisName: Unripe_Acorn + Name: Unripe Acorn + Type: Usable + Flags: + BuyingStore: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + heal -100,0; + - Id: 12347 + AegisName: Acorn_Jelly + Name: Acorn Jelly + Type: Delayconsume + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "ALL_REVERSEORCISH",1; + - Id: 12348 + AegisName: Manuk's_Faith + Name: Manuk's Faith + Type: Usable + Weight: 50 + Flags: + BuyingStore: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_POTION_BERSERK; sc_start SC_MANU_MATK,600000,10; + - Id: 12349 + AegisName: Cornus'_Tears + Name: Cornus' Tears + Type: Usable + Weight: 50 + Flags: + BuyingStore: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_POTION_BERSERK; sc_start SC_SPL_MATK,600000,10; + - Id: 12350 + AegisName: Angeling_Potion + Name: Angeling Potion + Type: Delayconsume + Buy: 20 + Weight: 100 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,120000,5; itemskill "AL_ANGELUS",5; + - Id: 12351 + AegisName: Shout_Megaphone + Name: Scream Megaphone + Type: Delayconsume + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemskill "MC_LOUD",1; + - Id: 12352 + AegisName: Dun_Tele_Scroll3 + Name: Dungeon Teleport Scroll 3 + Type: Usable + Weight: 10 + Script: | + callfunc "F_CashDungeon",3; + - Id: 12353 + AegisName: Tiny_Waterbottle + Name: Small Bottle + Type: Usable + Buy: 800 + Weight: 10 + Flags: + BuyingStore: true + Script: | + sc_start SC_WATERWEAPON,90000,1; + - Id: 12354 + AegisName: Buche_De_Noel + Name: Buche De Noel + Type: Usable + Buy: 2 + Weight: 50 + Flags: + BuyingStore: true + Script: | + specialeffect2 EF_ANGELUS; sc_start SC_INCMHPRATE,600000,3; sc_start SC_INCMSPRATE,600000,3; sc_start SC_INCHITRATE,600000,3; sc_start SC_INCCRI,600000,7; + - Id: 12355 + AegisName: Xmas_Gift + Name: Xmas Gift + Type: Usable + Buy: 2 + Weight: 100 + Flags: + BuyingStore: true + Container: true + Script: | + getrandgroupitem(IG_Xmas_Gift),1; + - Id: 12356 + AegisName: Louise_Costume_Box + Name: Louise Costume Box + Type: Usable + Buy: 2 + Weight: 100 + Flags: + BuyingStore: true + Container: true + Script: | + getrandgroupitem(IG_Louise_Costume_Box),1; + - Id: 12357 + AegisName: Shiny_Wing_Gown + Name: Shiny Wing Gown + Type: Usable + Buy: 20 + Weight: 50 + Script: | + pet 1630; + - Id: 12358 + AegisName: Fan_Of_Wind + Name: Fan Of Wind + Type: Usable + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1513; + - Id: 12359 + AegisName: Very_Soft_Plant + Name: Very Soft Plant + Type: Usable + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1586; + - Id: 12360 + AegisName: Very_Red_Juice + Name: Very Red Juice + Type: Usable + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1505; + - Id: 12361 + AegisName: Delicious_Shaved_Ice + Name: Delicious Shaved Ice + Type: Usable + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + pet 1143; + - Id: 12362 + AegisName: Kuloren + Name: Kuloren + Type: Usable + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1401; + - Id: 12363 + AegisName: Fit_Pipe + Name: Fit Pipe + Type: Usable + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + pet 1179; + - Id: 12364 + AegisName: Staff_Of_Leader + Name: Staff Of Leader + Type: Usable + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1299; + - Id: 12365 + AegisName: Charming_Lotus + Name: Charming Lotus + Type: Usable + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1416; + - Id: 12366 + AegisName: Gril_Doll + Name: Girl's Doll + Type: Usable + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1404; + - Id: 12367 + AegisName: Luxury_Whisky_Bottle + Name: Luxury Whisky Bottle + Type: Usable + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1504; + - Id: 12368 + AegisName: Splendid_Mirror + Name: Splendid Mirror + Type: Usable + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1148; + - Id: 12369 + AegisName: Oilpalm_Coconut + Name: Oilpalm Coconut + Type: Usable + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1495; + - Id: 12370 + AegisName: Gril's_Naivety + Name: Girl's Naivety + Type: Usable + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + pet 1374; + - Id: 12371 + AegisName: Magical_Lithography + Name: Magical Lithography + Type: Usable + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1040; + - Id: 12372 + AegisName: Hell_Contract + Name: Hell Contract + Type: Usable + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1379; + - Id: 12373 + AegisName: Boy's_Naivety + Name: Boy's Pure Heart + Type: Usable + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1370; + - Id: 12374 + AegisName: Flaming_Ice + Name: Ice Fireworks + Type: Usable + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1837; + - Id: 12375 + AegisName: Acaraje + Name: Akaraje + Type: Usable + Weight: 80 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_STEAL; bonus_script "{ bonus bHit,5; bonus bAspdRate,10; }",1200,0,0,EFST_ACARAJE; + - Id: 12376 + AegisName: Mysterious_Can2 + Name: Mysterious Can2 + Type: Usable + Buy: 10 + Weight: 100 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + percentheal 3,0; itemskill "PR_GLORIA",2; + - Id: 12377 + AegisName: Mysterious_PET_Bottle2 + Name: Mysterious PET Bottle2 + Type: Usable + Buy: 10 + Weight: 100 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + percentheal 0,3; itemskill "PR_MAGNIFICAT",1; + - Id: 12378 + AegisName: 2009_Rice_Cake_Soup + Name: Rice Cake Soup + Type: Usable + Buy: 10 + Weight: 100 + Script: | + /* percentheal 50,50; */ + - Id: 12379 + AegisName: Pope's_Cookie + Name: Pope Cookie + Type: Usable + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + - Id: 12380 + AegisName: Desert_Wolf_Babe_Scroll + Name: Job Change Flute + Type: Usable + Buy: 10 + Weight: 10 + Script: | + mercenary_create 2034,1800000; + - Id: 12381 + AegisName: ValkyrieA_Scroll + Name: Ancient Languages Scroll + Type: Usable + Buy: 10 + Weight: 10 + Script: | + if(strcharinfo(3)=="job3_arch02") { mercenary_create 2037,1800000; } + - Id: 12382 + AegisName: ValkyrieB_Scroll + Name: Ancient Languages Scroll + Type: Usable + Buy: 10 + Weight: 10 + Script: | + if(strcharinfo(3)=="job3_arch02") { mercenary_create 2038,1800000; } + - Id: 12383 + AegisName: Vulcan_Bullet_Magazine + Name: Vulcan Bullet Magazine + Type: Usable + Buy: 11000 + Weight: 500 + Flags: + BuyingStore: true + Script: | + getitem 6145,1000; + - Id: 12384 + AegisName: Rainbow_Ruby_Water + Name: Rainbow Ruby + Type: Delayconsume + Weight: 50 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /* if(strcharinfo(3)=="job3_war02") { itemskill "WL_FROSTMISTY",5; } */ + - Id: 12385 + AegisName: Rainbow_Ruby_Fire + Name: Rainbow Ruby + Type: Delayconsume + Weight: 50 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /* if(strcharinfo(3)=="job3_war02") { itemskill "WL_CRIMSONROCK",5; } */ + - Id: 12386 + AegisName: Rainbow_Ruby_Wind + Name: Rainbow Ruby + Type: Delayconsume + Weight: 50 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /* if(strcharinfo(3)=="job3_war02") { itemskill "WL_CHAINLIGHTNING",5; } */ + - Id: 12387 + AegisName: Rainbow_Ruby_Earth + Name: Rainbow Ruby + Type: Delayconsume + Weight: 50 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /* if(strcharinfo(3)=="job3_war02") { itemskill "WL_EARTHSTRAIN",5; } */ + - Id: 12388 + AegisName: Runstone_Crush + Name: Rhydo Runestone For Apprentice + Type: Delayconsume + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /* if(strcharinfo(3)=="job3_rune02") { itemskill "RK_CRUSHSTRIKE",1; } */ + - Id: 12389 + AegisName: Runstone_Storm + Name: Pertz Runestone For Apprentice + Type: Delayconsume + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /* if(strcharinfo(3)=="job3_rune02") { itemskill "RK_STORMBLAST",1; } */ + - Id: 12390 + AegisName: Runstone_Millennium + Name: Verkana Runestone For Apprentice + Type: Delayconsume + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /* if(strcharinfo(3)=="job3_rune02") { itemskill "RK_MILLENNIUMSHIELD",1; } */ + - Id: 12391 + AegisName: Lucky_Egg_C + Name: Lucky Egg + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12392 + AegisName: RepairA + Name: Repair A + Type: Usable + Buy: 220 + Weight: 100 + Jobs: + Blacksmith: true + Classes: + Third: true + Flags: + BuyingStore: true + Script: | + if ( checkmadogear() ) { itemheal rand(200,300),0; } + - Id: 12393 + AegisName: RepairB + Name: Repair B + Type: Usable + Buy: 500 + Weight: 140 + Jobs: + Blacksmith: true + Classes: + Third: true + Flags: + BuyingStore: true + Script: | + if ( checkmadogear() ) { itemheal rand(300,400),0; } + - Id: 12394 + AegisName: RepairC + Name: Repair C + Type: Usable + Buy: 1100 + Weight: 180 + Jobs: + Blacksmith: true + Classes: + Third: true + Flags: + BuyingStore: true + Script: | + if ( checkmadogear() ) { itemheal rand(400,500),0; } + - Id: 12395 + AegisName: Tantanmen + Name: Tantan Noodle + Type: Usable + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + Script: | + pet 1519; + - Id: 12396 + AegisName: Fools_Day_Box + Name: Gift Box? + Type: Delayconsume + Buy: 20 + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + .@rnd = rand(1,10); if(.@rnd==1) itemskill "AL_TELEPORT",1; else if(.@rnd==2) itemskill "AL_TELEPORT",3; else if(.@rnd==3) percentheal 50,0; else if(.@rnd==4) percentheal 0,50; else if(.@rnd==5) end; else if(.@rnd==6) getitem 512,1; else if(.@rnd==7) itemskill "ALL_REVERSEORCISH",1; else if(.@rnd==8) specialeffect2 EF_MAPPILLAR2; else if(.@rnd==9) specialeffect2 EF_ANGEL2; else specialeffect2 EF_COIN; + - Id: 12397 + AegisName: Fools_Day_Box2 + Name: Gift Box? + Type: Delayconsume + Buy: 20 + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + .@rnd = rand(1,10); if(.@rnd==1) itemskill "TF_DETOXIFY",1; else if(.@rnd==2) itemskill "TF_PICKSTONE",1; else if(.@rnd==3) itemskill "BA_FROSTJOKER",1; else if(.@rnd==4) itemskill "DC_SCREAM",1; else if(.@rnd==5) end; else if(.@rnd==6) getitem 909,1; else if(.@rnd==7) itemskill "AL_RUWACH",1; else if(.@rnd==8) specialeffect2 EF_BEGINASURA; else if(.@rnd==9) specialeffect2 EF_MVP; else specialeffect2 EF_CURSEATTACK; + - Id: 12398 + AegisName: PCBang_Gift_Box + Name: PCBang Gift Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12399 + AegisName: Castle_Treasure_Box + Name: Castle Treasure Box + Type: Usable + Buy: 20 + Weight: 1000 + Script: | + Zeny += 1000000; + - Id: 12400 + AegisName: Water_Of_Blessing_ + Name: Water Of Blessing + Type: Usable + Buy: 20 + Weight: 10 + - Id: 12401 + AegisName: Rune_Kn_Test_Int + Name: Rune Kn Test Int + Type: Usable + Script: | + sc_start SC_INCINT,300000,40; + - Id: 12402 + AegisName: 29Fruit + Name: 29Fruit + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + percentheal 5,5; + - Id: 12403 + AegisName: Lucky_Egg_C2 + Name: Lucky Egg2 + Type: Usable + Buy: 20 + Weight: 10 + - Id: 12404 + AegisName: Acti_Potion + Name: Acti Potion + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12405 + AegisName: Underripe_Yggseed + Name: Underripe Yggseed + Type: Usable + Buy: 20 + Weight: 50 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + percentheal 30,30; skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,140000,5; + - Id: 12406 + AegisName: Psychic_ArmorS + Name: Psychic ArmorS + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12407 + AegisName: PCBang_Coupon_Box + Name: PCBang Coupon Box + Type: Usable + Weight: 10 + - Id: 12408 + AegisName: Leaf_Cat_Ball + Name: Leaf Cat Ball + Type: Usable + Script: | + pet 2081; + - Id: 12409 + AegisName: Pork_Belly_H + Name: 1st Class Pork Belly + Type: Usable + - Id: 12410 + AegisName: Spareribs_H + Name: Thick Pork Belly H + Type: Usable + - Id: 12411 + AegisName: HE_Battle_Manual + Name: HE Battle Manual + Type: Usable + Buy: 2 + Weight: 10 + Script: | + sc_start SC_EXPBOOST,900000,200; + - Id: 12412 + AegisName: HE_Bubble_Gum + Name: HE Bubble Gum + Type: Usable + Buy: 2 + Weight: 10 + Script: | + sc_start SC_ITEMBOOST,900000,300; + - Id: 12413 + AegisName: PCBang_Coupon_Box2 + Name: PCBang Coupon Box2 + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12414 + AegisName: Guarana_Candy + Name: Guarana Candy + Type: Usable + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + Script: | + sc_start SC_ASPDPOTION0,1800000,0; sc_start SC_INCREASEAGI,140000,5; skilleffect "AL_INCAGI",0; + - Id: 12415 + AegisName: Siege_Teleport_Scroll2 + Name: Siege Teleport Scroll Silver + Type: Usable + Weight: 10 + NoUse: + Override: 100 + Sitting: true + - Id: 12416 + AegisName: Lucky_Egg_C3 + Name: Lucky Egg C3 + Type: Usable + Buy: 20 + Weight: 10 + - Id: 12417 + AegisName: Boost500 + Name: Boost500 + Type: Usable + Buy: 100 + Weight: 50 + Script: | + sc_start SC_BOOST500,500000,10; + - Id: 12418 + AegisName: Full_SwingK + Name: Full SwingK + Type: Usable + Buy: 100 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_FULL_SWING_K,500000,50; + - Id: 12419 + AegisName: Mana_Plus + Name: Mana Plus + Type: Usable + Buy: 100 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_MANA_PLUS,500000,50; + - Id: 12420 + AegisName: Stamina_Up_M + Name: Stamina Up M + Type: Usable + Buy: 100 + Weight: 50 + Script: | + sc_start SC_MUSTLE_M,500000,5; + - Id: 12421 + AegisName: Digestive_F + Name: Falmons F + Type: Usable + Buy: 10 + Weight: 10 + Script: | + sc_start SC_LIFE_FORCE_F,500000,5; + - Id: 12422 + AegisName: HP_Increase_PotionS + Name: HP Increase Potion (Small) + Type: Usable + Buy: 100 + Weight: 20 + Classes: + Normal: true + Upper: true + Baby: true + Third: true + Third_Upper: true + Third_Baby: true + Flags: + BuyingStore: true + Script: | + sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,1; percentheal 1,0; + - Id: 12423 + AegisName: HP_Increase_PotionM + Name: HP Increase Potion (Medium) + Type: Usable + Buy: 100 + Weight: 40 + Classes: + Normal: true + Upper: true + Baby: true + Third: true + Third_Upper: true + Third_Baby: true + Flags: + BuyingStore: true + Script: | + sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,2; percentheal 2,0; + - Id: 12424 + AegisName: HP_Increase_PotionL + Name: HP Increase Potion (Large) + Type: Usable + Buy: 100 + Weight: 80 + Classes: + Normal: true + Upper: true + Baby: true + Third: true + Third_Upper: true + Third_Baby: true + Flags: + BuyingStore: true + Script: | + sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,3; percentheal 5,0; + - Id: 12425 + AegisName: SP_Increase_PotionS + Name: SP Increase Potion (Small) + Type: Usable + Buy: 100 + Weight: 20 + Classes: + Normal: true + Upper: true + Baby: true + Third: true + Third_Upper: true + Third_Baby: true + Flags: + BuyingStore: true + Script: | + sc_start2 SC_ENERGY_DRINK_RESERCH,500000,1,1; percentheal 0,2; + - Id: 12426 + AegisName: SP_Increase_PotionM + Name: SP Increase Potion (Medium) + Type: Usable + Buy: 100 + Weight: 40 + Classes: + Normal: true + Upper: true + Baby: true + Third: true + Third_Upper: true + Third_Baby: true + Flags: + BuyingStore: true + Script: | + sc_start2 SC_ENERGY_DRINK_RESERCH,500000,1,2; percentheal 0,4; + - Id: 12427 + AegisName: SP_Increase_PotionL + Name: SP Increase Potion (Large) + Type: Usable + Buy: 100 + Weight: 80 + Classes: + Normal: true + Upper: true + Baby: true + Third: true + Third_Upper: true + Third_Baby: true + Flags: + BuyingStore: true + Script: | + sc_start2 SC_ENERGY_DRINK_RESERCH,500000,1,3; percentheal 0,8; + - Id: 12428 + AegisName: Enrich_White_PotionZ + Name: Concentrated White Potion Z + Type: Healing + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + Script: | + sc_start SC_EXTRACT_WHITE_POTION_Z,500000,20; heal 1000,0; + - Id: 12429 + AegisName: Savage_BBQ + Name: Savage Full Roast + Type: Usable + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_SAVAGE_STEAK,300000,20; + - Id: 12430 + AegisName: Wug_Blood_Cocktail + Name: Cocktail Warg Blood + Type: Usable + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_COCKTAIL_WARG_BLOOD,300000,20; + - Id: 12431 + AegisName: Minor_Brisket + Name: Minor Stew + Type: Usable + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_MINOR_BBQ,300000,20; + - Id: 12432 + AegisName: Siroma_Icetea + Name: Siroma Iced Tea + Type: Usable + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_SIROMA_ICE_TEA,300000,20; + - Id: 12433 + AegisName: Drocera_Herb_Stew + Name: Drosera Herb Salad + Type: Usable + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_DROCERA_HERB_STEAMED,300000,20; + - Id: 12434 + AegisName: Petti_Tail_Noodle + Name: Petite Tail Noodles + Type: Usable + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_PUTTI_TAILS_NOODLES,300000,20; + - Id: 12435 + AegisName: Black_Thing + Name: Black Mass + Type: Usable + Weight: 50 + Script: | + sc_start SC_STOMACHACHE,60000,rand(5,10); + - Id: 12436 + AegisName: Vitata500 + Name: Vitata 500 + Type: Healing + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + Script: | + sc_start SC_VITATA_500,500000,0; itemheal 0,200; + - Id: 12437 + AegisName: Enrich_Celermine_Juice + Name: Concentrated Ceromain Soup + Type: Usable + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + Script: | + sc_start SC_EXTRACT_SALAMINE_JUICE,500000,10; + - Id: 12438 + AegisName: F_Giant_Fly_Wing + Name: F Giant Fly Wing + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12439 + AegisName: F_Battle_Manual + Name: F Battle Manual + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12440 + AegisName: F_Insurance + Name: F Insurance + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12441 + AegisName: F_Bubble_Gum + Name: F Bubble Gum + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12442 + AegisName: F_Kafra_Card + Name: F Kafra Card + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12443 + AegisName: F_Neuralizer + Name: F Neuralizer + Type: Usable + Buy: 2 + - Id: 12444 + AegisName: F_Dun_Tele_Scroll1 + Name: F Dun Tele Scroll1 + Type: Usable + Weight: 10 + - Id: 12445 + AegisName: F_Str_Dish10_ + Name: F Str Dish10 + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12446 + AegisName: F_Agi_Dish10_ + Name: F Agi Dish10 + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12447 + AegisName: F_Int_Dish10_ + Name: F Int Dish10 + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12448 + AegisName: F_Dex_Dish10_ + Name: F Dex Dish10 + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12449 + AegisName: F_Luk_Dish10_ + Name: F Luk Dish10 + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12450 + AegisName: F_Vit_Dish10_ + Name: F Vit Dish10 + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12451 + AegisName: F_WOB_Rune + Name: F WOB Rune + Type: Usable + Weight: 10 + - Id: 12452 + AegisName: F_WOB_Schwaltz + Name: F WOB Schwarz + Type: Usable + Weight: 10 + - Id: 12453 + AegisName: F_WOB_Rachel + Name: F WOB Rachel + Type: Usable + Weight: 10 + - Id: 12454 + AegisName: F_WOB_Local + Name: F WOB Local + Type: Usable + Weight: 10 + - Id: 12456 + AegisName: F_Greed_Scroll + Name: F Greed Scroll + Type: Usable + Weight: 10 + - Id: 12457 + AegisName: F_Glass_Of_Illusion + Name: F Glass Of Illusion + Type: Usable + Weight: 10 + - Id: 12458 + AegisName: F_Abrasive + Name: F Abrasive + Type: Usable + Weight: 10 + - Id: 12459 + AegisName: F_Med_Life_Potion + Name: F Med Life Potion + Type: Usable + Weight: 10 + - Id: 12460 + AegisName: F_Small_Life_Potion + Name: F Small Life Potion + Type: Usable + Weight: 10 + - Id: 12461 + AegisName: F_Regeneration_Potion + Name: F Regeneration Potion + Type: Usable + Weight: 10 + - Id: 12462 + AegisName: F_B_Mdef_Potion + Name: F B Mdef Potion + Type: Usable + Weight: 10 + - Id: 12463 + AegisName: F_S_Mdef_Potion + Name: F S Mdef Potion + Type: Usable + Weight: 10 + - Id: 12464 + AegisName: F_B_Def_Potion + Name: F B Def Potion + Type: Usable + Weight: 10 + - Id: 12465 + AegisName: F_S_Def_Potion + Name: F S Def Potion + Type: Usable + Weight: 10 + - Id: 12466 + AegisName: F_Blessing_10_Scroll + Name: F Blessing 10 Scroll + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12467 + AegisName: F_Inc_Agi_10_Scroll + Name: F Inc Agi 10 Scroll + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12468 + AegisName: F_Aspersio_5_Scroll + Name: F Aspersio 5 Scroll + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12470 + AegisName: F_Wind_Walk_10_Scroll + Name: F Wind Walk 10 Scroll + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12471 + AegisName: F_Adrenaline_Scroll + Name: F Adrenaline Scroll + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12472 + AegisName: F_Convex_Mirror + Name: F Convex Mirror + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12473 + AegisName: RWC_Parti_Box + Name: RWC Parti Box + Type: Usable + Buy: 20 + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12474 + AegisName: RWC_Final_Comp_Box + Name: RWC Final Comp Box + Type: Usable + Buy: 20 + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12475 + AegisName: Cure_Free + Name: Cure Free + Type: Usable + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_end SC_SILENCE; sc_end SC_BLEEDING; sc_end SC_POISON; sc_end SC_CURSE; sc_end SC_ORCISH; sc_end SC_CHANGEUNDEAD; itemheal 500,0; + - Id: 12476 + AegisName: PCBang_Coupon_Box3 + Name: PCBang Coupon Box3 + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12477 + AegisName: Gift_Bundle + Name: Gift Bundle + Type: Usable + - Id: 12478 + AegisName: Chance_Box + Name: Chance Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12479 + AegisName: Caracas_Ring_Box + Name: Caracas Ring Box + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12480 + AegisName: Attend_3Day_Box + Name: Attend 3Day Box + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12481 + AegisName: Attend_7Day_Box + Name: Attend 7Day Box + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12482 + AegisName: Attend_10Day_Box + Name: Attend 10Day Box + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12483 + AegisName: Attend_15Day_Box + Name: Attend 15Day Box + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12484 + AegisName: Attend_20Day_Box + Name: Attend 20Day Box + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12485 + AegisName: Attend_25Day_Box + Name: Attend 25Day Box + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12486 + AegisName: GoldPC_First_Box + Name: GoldPC First Box + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12487 + AegisName: PC_4Leaf_Clover_Box + Name: PC 4Leaf Clover Box + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12488 + AegisName: Ticket_Gift_Box + Name: Ticket Gift Box + Type: Usable + Weight: 10 + - Id: 12489 + AegisName: Ticket_Gift_Box2 + Name: Ticket Gift Box2 + Type: Usable + Weight: 10 + - Id: 12490 + AegisName: Vivid_Notation + Name: Vivid Notation + Type: Usable + Buy: 20 + Flags: + BuyingStore: true + - Id: 12491 + AegisName: Curious_Snowball + Name: Curious Snowball + Type: Usable + Buy: 20 + Script: | + callfunc "F_Snowball"; + - Id: 12492 + AegisName: Crumpled_Paper + Name: Crumpled Paper + Type: Usable + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12493 + AegisName: Lucky_Egg_C4 + Name: Lucky Egg C4 + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12494 + AegisName: E_Giant_Fly_Wing + Name: E Giant Fly Wing + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12495 + AegisName: E_Battle_Manual + Name: E Battle Manual + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12496 + AegisName: E_Insurance + Name: E Insurance + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12497 + AegisName: E_Bubble_Gum + Name: E Bubble Gum + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12498 + AegisName: E_Kafra_Card + Name: E Kafra Card + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12499 + AegisName: E_Neuralizer + Name: E Neuralizer + Type: Usable + Buy: 2 + - Id: 12500 + AegisName: E_Dun_Tele_Scroll1 + Name: E Dun Tele Scroll1 + Type: Usable + Weight: 10 + - Id: 12501 + AegisName: E_Str_Dish10_ + Name: E Str Dish10 + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12502 + AegisName: E_Agi_Dish10_ + Name: E Agi Dish10 + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12503 + AegisName: E_Int_Dish10_ + Name: E Int Dish10 + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12504 + AegisName: E_Dex_Dish10_ + Name: E Dex Dish10 + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12505 + AegisName: E_Luk_Dish10_ + Name: E Luk Dish10 + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12506 + AegisName: E_Vit_Dish10_ + Name: E Vit Dish10 + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12507 + AegisName: E_WOB_Rune + Name: Yellow Butterfly Wing + Type: Usable + Weight: 10 + Script: | + callfunc "F_CashCity",1; + - Id: 12508 + AegisName: E_WOB_Schwaltz + Name: Green Butterfly Wing + Type: Usable + Weight: 10 + Script: | + callfunc "F_CashCity",2; + - Id: 12509 + AegisName: E_WOB_Rachel + Name: Red Butterfly Wing + Type: Usable + Weight: 10 + Script: | + callfunc "F_CashCity",3; + - Id: 12510 + AegisName: E_WOB_Local + Name: Blue Butterfly Wing + Type: Usable + Weight: 10 + Script: | + callfunc "F_CashCity",5; + - Id: 12511 + AegisName: E_Siege_Teleport_Scroll + Name: E Siege Teleport Scroll + Type: Usable + Weight: 10 + - Id: 12512 + AegisName: E_Greed_Scroll + Name: E Greed Scroll + Type: Usable + Weight: 10 + - Id: 12513 + AegisName: E_Glass_Of_Illusion + Name: E Glass Of Illusion + Type: Usable + Weight: 10 + - Id: 12514 + AegisName: E_Abrasive + Name: E Abrasive + Type: Usable + Weight: 10 + - Id: 12515 + AegisName: E_Med_Life_Potion + Name: E Med Life Potion + Type: Usable + Weight: 10 + - Id: 12516 + AegisName: E_Small_Life_Potion + Name: E Small Life Potion + Type: Usable + Weight: 10 + - Id: 12517 + AegisName: E_Regeneration_Potion + Name: E Regeneration Potion + Type: Usable + Weight: 10 + - Id: 12518 + AegisName: E_B_Mdef_Potion + Name: E B Mdef Potion + Type: Usable + Weight: 10 + - Id: 12519 + AegisName: E_S_Mdef_Potion + Name: E S Mdef Potion + Type: Usable + Weight: 10 + - Id: 12520 + AegisName: E_B_Def_Potion + Name: E B Def Potion + Type: Usable + Weight: 10 + - Id: 12521 + AegisName: E_S_Def_Potion + Name: E S Def Potion + Type: Usable + Weight: 10 + - Id: 12522 + AegisName: E_Blessing_10_Scroll + Name: E Blessing 10 Scroll + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12523 + AegisName: E_Inc_Agi_10_Scroll + Name: E Inc Agi 10 Scroll + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12524 + AegisName: E_Aspersio_5_Scroll + Name: E Aspersio 5 Scroll + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12525 + AegisName: E_Assumptio_5_Scroll + Name: E Assumptio 5 Scroll + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12526 + AegisName: E_Wind_Walk_10_Scroll + Name: E Wind Walk 10 Scroll + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12527 + AegisName: E_Adrenaline_Scroll + Name: E Adrenaline Scroll + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12528 + AegisName: E_Convex_Mirror + Name: E Convex Mirror + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12529 + AegisName: White_Slim_Potion_Box + Name: White Slim Potion Box + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12530 + AegisName: Mastela_Fruit_Box + Name: Mastela Fruit Box + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12531 + AegisName: White_Potion_Box + Name: White Potion Box + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12532 + AegisName: Royal_Jelly_Box2 + Name: Royal Jelly Box2 + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12533 + AegisName: Blue_Herb_Box2 + Name: Blue Herb Box2 + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12534 + AegisName: Yggdrasil_Seed_Box + Name: Yggdrasil Seed Box + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12535 + AegisName: Iggdrasilberry_Box + Name: Iggdrasilberry Box + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12536 + AegisName: NY_Rice_Cake_Soup + Name: NY Rice Cake Soup + Type: Usable + Buy: 20 + Weight: 100 + Flags: + BuyingStore: true + - Id: 12537 + AegisName: Solo_Gift_Basket + Name: Solo Gift Basket + Type: Usable + Buy: 1000 + Weight: 10 + - Id: 12538 + AegisName: Couple_Event_Basket + Name: Couple Event Basket + Type: Usable + Buy: 2000 + Weight: 10 + - Id: 12539 + AegisName: Splendid_Box + Name: Splendid Box + Type: Usable + Buy: 20 + Weight: 100 + Flags: + BuyingStore: true + - Id: 12540 + AegisName: GM_Warp_Box + Name: GM Warp Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12541 + AegisName: Fortune_Cookie1 + Name: Fortune Cookie1 + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12542 + AegisName: Fortune_Cookie2 + Name: Fortune Cookie2 + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12543 + AegisName: Fortune_Cookie3 + Name: Fortune Cookie3 + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12544 + AegisName: Mystic_Tree_Branch + Name: Mystic Tree Branch + Type: Usable + Buy: 20 + Weight: 10 + - Id: 12545 + AegisName: Lucky_Egg_C5 + Name: Lucky Egg C5 + Type: Usable + Buy: 20 + Weight: 10 + - Id: 12546 + AegisName: Suspicious_Dish + Name: Suspicious Dish + Type: Usable + Buy: 100 + Weight: 50 + - Id: 12547 + AegisName: Chalcenodny_Box + Name: Chalcenodny Box + Type: Usable + Weight: 200 + - Id: 12548 + AegisName: Buy_Market_Permit2 + Name: Shabby Purchase Street Stall License + Type: Usable + Buy: 500 + Weight: 10 + Script: | + buyingstore 2; + - Id: 12549 + AegisName: White_Slim_Pot_Box2 + Name: White Slim Pot Box2 + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12550 + AegisName: Poison_Bottle_Box2 + Name: Poison Bottle Box2 + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12551 + AegisName: MVP_Tele_Scroll + Name: MVP Tele Scroll + Type: Usable + Weight: 10 + - Id: 12552 + AegisName: Quest_Tele_Scroll + Name: Quest Tele Scroll + Type: Usable + Weight: 10 + - Id: 12553 + AegisName: Brysinggamen_Piece_Box + Name: Brysinggamen Piece Box + Type: Usable + Buy: 20 + Weight: 10 + - Id: 12554 + AegisName: Asprika_Piece_Box + Name: Asprika Piece Box + Type: Usable + Buy: 20 + Weight: 10 + - Id: 12555 + AegisName: Brynhild_Piece_Box + Name: Brynhild Piece Box + Type: Usable + Buy: 20 + Weight: 10 + - Id: 12556 + AegisName: Sleipnir_Piece_Box + Name: Sleipnir Piece Box + Type: Usable + Buy: 20 + Weight: 10 + - Id: 12557 + AegisName: Mjolnir_Piece_Box + Name: Mjolnir Piece Box + Type: Usable + Buy: 20 + Weight: 10 + - Id: 12558 + AegisName: Magingiorde_Piece_Box + Name: Magingiorde Piece Box + Type: Usable + Buy: 20 + Weight: 10 + - Id: 12559 + AegisName: Tenkaippin_Strong + Name: Tenkaippin Strong + Type: Usable + Buy: 650 + Weight: 200 + - Id: 12560 + AegisName: Tenkaippin_Clean + Name: Tenkaippin Clean + Type: Usable + Buy: 650 + Weight: 200 + - Id: 12561 + AegisName: Mysterious_Seed + Name: Mysterious Seed + Type: Usable + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + - Id: 12562 + AegisName: Bubble_Gum_Plus + Name: Bubble Gum Plus + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12563 + AegisName: BM75 + Name: BM75 + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12564 + AegisName: 3D_Glasses_Box + Name: 3D Glasses Box + Type: Usable + Buy: 20 + Weight: 10 + - Id: 12565 + AegisName: Cheer_Scarf_Box + Name: Cheer Scarf Box + Type: Usable + Weight: 10 + - Id: 12566 + AegisName: Cheer_Scarf2_Box + Name: Cheer Scarf2 Box + Type: Usable + Weight: 10 + - Id: 12567 + AegisName: Cheer_Scarf3_Box + Name: Cheer Scarf3 Box + Type: Usable + Weight: 10 + - Id: 12568 + AegisName: Cheer_Scarf4_Box + Name: Cheer Scarf4 Box + Type: Usable + Weight: 10 + - Id: 12569 + AegisName: Cheer_Scarf6_Box + Name: Cheer Scarf6 Box + Type: Usable + Weight: 10 + - Id: 12570 + AegisName: Cheer_Scarf8_Box + Name: Cheer Scarf8 Box + Type: Usable + Weight: 10 + - Id: 12571 + AegisName: Cheer_Scarf10_Box + Name: Cheer Scarf10 Box + Type: Usable + Weight: 10 + - Id: 12572 + AegisName: Cheer_Scarf10_Box2 + Name: Cheer Scarf10 Box2 + Type: Usable + Weight: 10 + - Id: 12573 + AegisName: Fruit_Basket + Name: Fruit Basket + Type: Usable + Buy: 20 + Weight: 50 + - Id: 12574 + AegisName: Mora_Berry + Name: Mora Berry + Type: Usable + Weight: 20 + Flags: + BuyingStore: true + - Id: 12575 + AegisName: Arrow_Of_Elf_Cntr + Name: Arrow Of Elf Cntr + Type: Usable + Buy: 500 + Weight: 250 + Flags: + BuyingStore: true + - Id: 12576 + AegisName: Hunting_Arrow_Cntr + Name: Hunting Arrow Cntr + Type: Usable + Buy: 500 + Weight: 250 + Flags: + BuyingStore: true + - Id: 12577 + AegisName: Lucky_Egg_C6 + Name: Lucky Egg C6 + Type: Usable + Buy: 20 + Weight: 10 + - Id: 12578 + AegisName: Rapid_Life_Water + Name: Rapid Life Water + Type: Usable + Weight: 10 + - Id: 12579 + AegisName: Ring_Of_Valkyrie_Box + Name: Ring Of Valkyrie Box + Type: Usable + Buy: 20 + - Id: 12580 + AegisName: Vending_Search_Scroll + Name: Universal Catalog Silver + Type: Usable + Weight: 10 + Script: | + searchstores 10,0; + - Id: 12581 + AegisName: Vending_Search_Scroll2 + Name: Universal Catalog Gold + Type: Usable + Weight: 10 + Script: | + searchstores 10,1; + - Id: 12591 + AegisName: Uni_Catalog_Bz + Name: Universal Catalog Bronze + Type: Usable + Weight: 10 + Script: | + searchstores 10,1; + - Id: 12609 + AegisName: Old_Ore_Box + Name: Old Ore Box + Type: Usable + Buy: 20 + Weight: 100 + Classes: + Normal: true + Upper: true + Baby: true + Third: true + Third_Upper: true + Third_Baby: true + - Id: 12701 + AegisName: Old_Blue_Box_F + Name: Old Blue Box + Type: Usable + Weight: 10 + - Id: 12702 + AegisName: Old_Bleu_Box + Name: Old Navy Box + Type: Usable + Weight: 200 + Flags: + Container: true + Script: | + getrandgroupitem(IG_BleuBox),1; getrandgroupitem(IG_BleuBox),1; + - Id: 12703 + AegisName: Holy_Egg_2 + Name: Holy Egg + Type: Delayconsume + Weight: 50 + - Id: 12704 + AegisName: Elixir_Of_Life + Name: Elixir of Life + Type: Healing + Weight: 10 + EquipLevelMin: 85 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + percentheal 100,0; + - Id: 12705 + AegisName: Noble_Nameplate + Name: Noble Nameplate + Type: Usable + Weight: 100 + EquipLevelMin: 90 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_EXPBOOST,1800000,100; + - Id: 12706 + AegisName: Lucky_Cookie01 + Name: Lucky Cookie + Type: Delayconsume + Weight: 100 + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "PR_GLORIA",5; + - Id: 12707 + AegisName: Lucky_Cookie02 + Name: Lucky Cookie + Type: Delayconsume + Weight: 100 + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "PR_MAGNIFICAT",1; + - Id: 12708 + AegisName: Lucky_Cookie03 + Name: Lucky Cookie + Type: Delayconsume + Weight: 100 + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "PR_IMPOSITIO",3; + - Id: 12709 + AegisName: Guyak_Candy + Name: Guyak Candy + Type: Healing + Weight: 150 + Script: | + percentheal 30,30; + - Id: 12710 + AegisName: Guyak_Pudding + Name: Guyak Pudding + Type: Usable + Weight: 200 + Script: | + sc_start SC_SPEEDUP1,300000,50; + - Id: 12711 + AegisName: Pretzel + Name: Pretzel + Type: Healing + Buy: 2 + Weight: 100 + Script: | + itemheal rand(50,90),0; + - Id: 12712 + AegisName: Green_Beer + Name: Green Beer + Type: Usable + Buy: 2 + Weight: 100 + Script: | + percentheal 0,50; + - Id: 12713 + AegisName: Monster_Extract + Name: Monster Extract + Type: Usable + Buy: 20 + Weight: 10 + - Id: 12714 + AegisName: Easter_Scroll + Name: Easter Scroll + Type: Usable + Buy: 1 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getrandgroupitem(IG_Easter_Scroll),1; + - Id: 12715 + AegisName: Black_Treasure_Box + Name: Black Treasure Box + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12716 + AegisName: Indian_Rice_Cake + Name: Indian Rice Cake + Type: Usable + Weight: 10 + - Id: 12717 + AegisName: Poison_Paralysis + Name: Paralyze + Type: Healing + Buy: 2 + Weight: 100 + Flags: + BuyingStore: true + Script: | + sc_start SC_PARALYSE,300000,0,10,0; + - Id: 12718 + AegisName: Poison_Leech + Name: Leech End + Type: Healing + Buy: 2 + Weight: 100 + Flags: + BuyingStore: true + Script: | + sc_start SC_LEECHESEND,300000,0,10,0; + - Id: 12719 + AegisName: Poison_Oblivion + Name: Oblivion Curse + Type: Healing + Buy: 2 + Weight: 100 + Flags: + BuyingStore: true + Script: | + sc_start SC_OBLIVIONCURSE,300000,0,10,0; + - Id: 12720 + AegisName: Poison_Contamination + Name: Disheart + Type: Healing + Buy: 2 + Weight: 100 + Flags: + BuyingStore: true + Script: | + sc_start SC_DEATHHURT,300000,0,10,0; + - Id: 12721 + AegisName: Poison_Numb + Name: Toxin + Type: Healing + Buy: 2 + Weight: 100 + Flags: + BuyingStore: true + Script: | + sc_start SC_TOXIN,300000,0,10,0; + - Id: 12722 + AegisName: Poison_Fever + Name: Pyrexia + Type: Healing + Buy: 2 + Weight: 100 + Flags: + BuyingStore: true + Script: | + sc_start SC_PYREXIA,300000,0,10,0; + - Id: 12723 + AegisName: Poison_Laughing + Name: Magic Mushroom + Type: Healing + Buy: 2 + Weight: 100 + Flags: + BuyingStore: true + Script: | + sc_start SC_MAGICMUSHROOM,300000,0,10,0; + - Id: 12724 + AegisName: Poison_Fatigue + Name: Venom Bleed + Type: Healing + Buy: 2 + Weight: 100 + Flags: + BuyingStore: true + Script: | + sc_start SC_VENOMBLEED,15000,0,10,0; + - Id: 12725 + AegisName: Runstone_Nosiege + Name: Nauthiz Rune + Type: Usable + Buy: 100 + Weight: 100 + Classes: + Third: true + Stack: + Amount: 60 + Inventory: true + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_REFRESH",1; + - Id: 12726 + AegisName: Runstone_Rhydo + Name: Raido Rune + Type: Usable + Buy: 100 + Weight: 100 + Classes: + Third: true + Stack: + Amount: 60 + Inventory: true + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_CRUSHSTRIKE",1; + - Id: 12727 + AegisName: Runstone_Verkana + Name: Berkana Rune + Type: Usable + Buy: 100 + Weight: 100 + Classes: + Third: true + Stack: + Amount: 60 + Inventory: true + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_MILLENNIUMSHIELD",1; + - Id: 12728 + AegisName: Runstone_Isia + Name: Isa Rune + Type: Usable + Buy: 100 + Weight: 100 + Classes: + Third: true + Stack: + Amount: 60 + Inventory: true + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_VITALITYACTIVATION",1; + - Id: 12729 + AegisName: Runstone_Asir + Name: Othila Rune + Type: Usable + Buy: 100 + Weight: 100 + Classes: + Third: true + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_FIGHTINGSPIRIT",1; + - Id: 12730 + AegisName: Runstone_Urj + Name: Uruz Rune + Type: Usable + Buy: 100 + Weight: 100 + Classes: + Third: true + Stack: + Amount: 60 + Inventory: true + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_ABUNDANCE",1; + - Id: 12731 + AegisName: Runstone_Turisus + Name: Thurisaz Rune + Type: Usable + Buy: 100 + Weight: 100 + Classes: + Third: true + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_GIANTGROWTH",1; + - Id: 12732 + AegisName: Runstone_Pertz + Name: Wyrd Rune + Type: Usable + Buy: 100 + Weight: 100 + Classes: + Third: true + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_STORMBLAST",1; + - Id: 12733 + AegisName: Runstone_Hagalas + Name: Hagalaz Rune + Type: Usable + Buy: 100 + Weight: 100 + Classes: + Third: true + Stack: + Amount: 60 + Inventory: true + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_STONEHARDSKIN",1; + - Id: 12734 + AegisName: Runstone_Quality + Name: Luxurious Rune + Type: Healing + Buy: 2 + Weight: 100 + Jobs: + Knight: true + Classes: + Third: true + Flags: + BuyingStore: true + Script: | + makerune 5; + - Id: 12735 + AegisName: Runstone_Ancient + Name: Ancient Rune + Type: Healing + Buy: 2 + Weight: 100 + Jobs: + Knight: true + Classes: + Third: true + Flags: + BuyingStore: true + Script: | + makerune 11; + - Id: 12736 + AegisName: Runstone_Mystic + Name: Mystic Rune + Type: Healing + Buy: 2 + Weight: 100 + Jobs: + Knight: true + Classes: + Third: true + Flags: + BuyingStore: true + Script: | + makerune 14; + - Id: 12737 + AegisName: Runstone_Ordinary + Name: General Rune + Type: Healing + Buy: 2 + Weight: 100 + Jobs: + Knight: true + Classes: + Third: true + Flags: + BuyingStore: true + Script: | + makerune 2; + - Id: 12738 + AegisName: Runstone_Rare + Name: Rare Rune + Type: Healing + Buy: 2 + Weight: 100 + Jobs: + Knight: true + Classes: + Third: true + Flags: + BuyingStore: true + Script: | + makerune 8; + - Id: 12739 + AegisName: Snow_Flower + Name: Snow Flowers + Type: Usable + Weight: 10 + Flags: + BuyingStore: true + - Id: 12740 + AegisName: Inc_Str_Scroll + Name: Amplification Scroll + Type: Usable + Buy: 1 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + - Id: 12741 + AegisName: Inc_Int_Scroll + Name: Intellect Amplification Scroll + Type: Usable + Buy: 1 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + - Id: 12742 + AegisName: Valentine_Gift_Box1 + Name: Valentine Gift Box + Type: Usable + - Id: 12743 + AegisName: Valentine_Gift_Box2 + Name: Valentine Gift Box + Type: Usable + - Id: 12744 + AegisName: Chocotate_Box + Name: Chocolate Box + Type: Usable + - Id: 12745 + AegisName: Skull_Scroll + Name: Skull Scroll + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12746 + AegisName: Destruction_Scroll + Name: Destruction Scroll + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12747 + AegisName: Royal_Scroll + Name: Royal Scroll + Type: Usable + Buy: 20 + Weight: 10 + - Id: 12748 + AegisName: Immune_Scroll + Name: Immune Scroll + Type: Usable + Buy: 20 + Weight: 10 + - Id: 12749 + AegisName: Mystic_Scroll + Name: Mystic Scroll + Type: Usable + Buy: 20 + Weight: 10 + - Id: 12750 + AegisName: Battle_Scroll + Name: Battle Scroll + Type: Usable + Buy: 20 + Weight: 10 + - Id: 12751 + AegisName: Armor_Scroll + Name: Armor Scroll + Type: Usable + Buy: 20 + Weight: 10 + - Id: 12752 + AegisName: Prayer_Scroll + Name: Prayer Scroll + Type: Usable + Buy: 20 + Weight: 10 + - Id: 12753 + AegisName: Soul_Scroll + Name: Soul Scroll + Type: Usable + Buy: 20 + Weight: 10 + - Id: 12754 + AegisName: New_Year_Bun + Name: Chinese Pastel + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12755 + AegisName: Traditional_Firecrack + Name: Chinese Fireworks + Type: Usable + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_POK_JAP; /* itemskill "MO_CALLSPIRITS",3; itemskill "MO_FINGEROFFENSIVE",5; */ + - Id: 12756 + AegisName: New_Gift_Envelope + Name: Chinese New Year Envelope + Type: Usable + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12757 + AegisName: Loyal_Ring1_Box + Name: Loyal Ring1 Box + Type: Usable + Buy: 10 + - Id: 12758 + AegisName: Loyal_Ring2_Box + Name: Loyal Ring2 Box + Type: Usable + Buy: 10 + - Id: 12759 + AegisName: Loyal_Ring3_Box + Name: Loyal Ring3 Box + Type: Usable + Buy: 10 + - Id: 12760 + AegisName: Bubble_Gum_Green + Name: Bubble Gum Green + Type: Usable + Buy: 20 + Weight: 10 + - Id: 12761 + AegisName: Bubble_Gum_Yellow + Name: Bubble Gum Yellow + Type: Usable + Buy: 20 + Weight: 10 + - Id: 12762 + AegisName: Bubble_Gum_Orange + Name: Bubble Gum Orange + Type: Usable + Buy: 20 + Weight: 10 + - Id: 12763 + AegisName: Bubble_Gum_Red + Name: Bubble Gum Red + Type: Usable + Buy: 20 + Weight: 10 + - Id: 12764 + AegisName: Fools_Day_Box_Tw + Name: Fools Day Box Tw + Type: Usable + - Id: 12765 + AegisName: Summer_Knight_Box + Name: Summer Knight Box + Type: Usable + Buy: 20 + Weight: 10 + - Id: 12766 + AegisName: Reward_Job_BM25 + Name: Reward Job BM25 + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12767 + AegisName: Passion_FB_Hat_Box + Name: Passion FB Hat Box + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12768 + AegisName: Cool_FB_Hat_Box + Name: Cool FB Hat Box + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12769 + AegisName: Victory_FB_Hat_Box + Name: Victory FB Hat Box + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12770 + AegisName: Glory_FB_Hat_Box + Name: Glory FB Hat Box + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12771 + AegisName: Passion_Hat_Box2 + Name: Passion Hat Box2 + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12772 + AegisName: Cool_Hat_Box2 + Name: Cool Hat Box2 + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12773 + AegisName: Victory_Hat_Box2 + Name: Victory Hat Box2 + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12831 + AegisName: Potion_Box + Name: Potion Box + Type: Usable + Weight: 50 + Classes: + Normal: true + Upper: true + Baby: true + Third: true + Third_Upper: true + Third_Baby: true + - Id: 12848 + AegisName: Falcon_Flute + Name: Falcon Flute + Type: Delayconsume + Weight: 10 + Script: | + if(getskilllv("HT_FALCON")) { if(!checkoption(Option_Wug) && !checkoption(Option_Wugrider)) setfalcon (!checkfalcon()); } + - Id: 12900 + AegisName: Battle_Manual_Box + Name: Battle Manual Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12208,10; + - Id: 12901 + AegisName: Insurance_Package + Name: Insurance Package + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12209,10; + - Id: 12902 + AegisName: Bubble_Gum_Box + Name: Bubble Gum Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12210,10; + - Id: 12903 + AegisName: Str_Dish_Box + Name: Steamed Tongue Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12202,10; + - Id: 12904 + AegisName: Agi_Dish_Box + Name: Steamed Scorpion Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12203,10; + - Id: 12905 + AegisName: Int_Dish_Box + Name: Dragon Breath Cocktail Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12204,10; + - Id: 12906 + AegisName: Dex_Dish_Box + Name: Hwergelmir's Tonic Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12205,10; + - Id: 12907 + AegisName: Luk_Dish_Box + Name: Nine Tail Dish Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12206,10; + - Id: 12908 + AegisName: Vit_Dish_Box + Name: Stew Of Immortality Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12207,10; + - Id: 12909 + AegisName: Kafra_Card_Box + Name: Kafra Card Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12211,10; + - Id: 12910 + AegisName: Giant_Fly_Wing_Box + Name: Giant Fly Wing Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12212,10; + - Id: 12911 + AegisName: Neuralizer_Box + Name: Neuralizer Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12213,1; + - Id: 12912 + AegisName: Convex_Mirror_Box + Name: Convex Mirror Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12214,10; + - Id: 12913 + AegisName: Blessing_10_Scroll_Box + Name: Blessing 10 Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12215,10; + - Id: 12914 + AegisName: Inc_Agi_10_Scroll_Box + Name: Increase AGI 10 scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12216,10; + - Id: 12915 + AegisName: Aspersio_5_Scroll_Box + Name: Aspersio 5 Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12217,10; + - Id: 12916 + AegisName: Assumptio_5_Scroll_Box + Name: Assumptio 5 Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12218,10; + - Id: 12917 + AegisName: Wind_Walk_10_Scroll_Box + Name: Wind Walk 10 Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12219,10; + - Id: 12918 + AegisName: Adrenaline_Scroll_Box + Name: Adrenaline 5 Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12220,10; + - Id: 12919 + AegisName: Megaphone_Box + Name: Megaphone Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12221,10; + - Id: 12920 + AegisName: Enriched_Elunium_Box + Name: Enriched Elunium Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7619,10; + - Id: 12921 + AegisName: Enriched_Oridecon_Box + Name: Enriched Oridecon Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7620,10; + - Id: 12922 + AegisName: Token_Of_Siegfried_Box + Name: Token of Siegfried Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7621,10; + - Id: 12923 + AegisName: Pet_Egg_Scroll_Box1 + Name: December Lucky Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12925,1; + - Id: 12924 + AegisName: Pet_Egg_Scroll_Box2 + Name: Pet Egg Box 2 + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12926,1; + - Id: 12925 + AegisName: Pet_Egg_Scroll1 + Name: Kafra Item Mall Prize Package + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12926 + AegisName: Pet_Egg_Scroll2 + Name: December Lucky Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12927 + AegisName: J_Aspersio_5_Scroll_Box + Name: Aspersio Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12928,10; + - Id: 12928 + AegisName: J_Aspersio_5_Scroll + Name: Sacred Scroll + Type: Delayconsume + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemskill "PR_ASPERSIO",5; + - Id: 12929 + AegisName: Pet_Egg_Scroll_Box3 + Name: Pet Egg Box 3 + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12932,1; + - Id: 12930 + AegisName: Pet_Egg_Scroll_Box4 + Name: Pet Egg Box 4 + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12933,1; + - Id: 12931 + AegisName: Pet_Egg_Scroll_Box5 + Name: Pet Egg Box 5 + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12934,1; + - Id: 12932 + AegisName: Pet_Egg_Scroll3 + Name: Episode 13.2 Key Package + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12933 + AegisName: Pet_Egg_Scroll4 + Name: Summer Hat Pack + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12934 + AegisName: Pet_Egg_Scroll5 + Name: Pet Egg Scroll5 + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12935 + AegisName: Infiltrator_Box + Name: Infiltrator Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1267,604800; + - Id: 12936 + AegisName: Muramasa_Box + Name: Muramasa Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1173,604800; + - Id: 12937 + AegisName: Excalibur_Box + Name: Excalibur Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13401,604800; + - Id: 12938 + AegisName: Combat_Knife_Box + Name: Combat Knife Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13021,604800; + - Id: 12939 + AegisName: Counter_Dagger_Box + Name: Dagger of Counter Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13022,604800; + - Id: 12940 + AegisName: Kaiser_Knuckle_Box + Name: Kaiser Knuckle Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1817,604800; + - Id: 12941 + AegisName: Pole_Axe_Box + Name: Poll Axe Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1419,604800; + - Id: 12942 + AegisName: Mighty_Staff_Box + Name: Mighty Staff Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1623,604800; + - Id: 12943 + AegisName: Right_Epsilon_Box + Name: Light Epsilon Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1372,604800; + - Id: 12944 + AegisName: Balistar_Box + Name: Ballista Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1728,604800; + - Id: 12945 + AegisName: Diary_Of_Great_Sage_Box + Name: Sage's Diary Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1563,604800; + - Id: 12946 + AegisName: Asura_Box + Name: Asura Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13023,604800; + - Id: 12947 + AegisName: Apple_Of_Archer_Box + Name: Apple of Archer Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5265,1209600; + - Id: 12948 + AegisName: Bunny_Band_Box + Name: Bunny Band Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5266,1209600; + - Id: 12949 + AegisName: Sahkkat_Box + Name: Sakkat Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5267,1209600; + - Id: 12950 + AegisName: Lord_Circlet_Box + Name: Grand Circlet Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5268,1209600; + - Id: 12951 + AegisName: Elven_Ears_Box + Name: Elven Ears Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2686,604800; + - Id: 12952 + AegisName: Steel_Flower_Box + Name: Steel Flower Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2687,1209600; + - Id: 12953 + AegisName: Critical_Ring_Box + Name: Critical Ring Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2688,604800; + - Id: 12954 + AegisName: Earring_Box + Name: Earring Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2689,604800; + - Id: 12955 + AegisName: Ring_Box + Name: Ring Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2690,604800; + - Id: 12956 + AegisName: Necklace_Box + Name: Necklace Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2691,604800; + - Id: 12957 + AegisName: Glove_Box + Name: Glove Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2692,604800; + - Id: 12958 + AegisName: Brooch_Box + Name: Brooch Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2693,604800; + - Id: 12959 + AegisName: Rosary_Box + Name: Rosary Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2694,604800; + - Id: 12960 + AegisName: Safety_Ring_Box + Name: Safety Ring Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2695,604800; + - Id: 12961 + AegisName: Vesper_Core01_Box + Name: Vesper Core 01 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2696,604800; + - Id: 12962 + AegisName: Vesper_Core02_Box + Name: Vesper Core 02 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2697,604800; + - Id: 12963 + AegisName: Vesper_Core03_Box + Name: Vesper Core 03 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2698,604800; + - Id: 12964 + AegisName: Vesper_Core04_Box + Name: Vesper Core 04 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2699,604800; + - Id: 12965 + AegisName: Emergency_Box1 + Name: Emergency Level 1 Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12968,1; + - Id: 12966 + AegisName: Emergency_Box2 + Name: Emergency Level 2 Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12969,1; + - Id: 12967 + AegisName: Emergency_Box3 + Name: Emergency Level 3 Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12970,1; + - Id: 12968 + AegisName: Emergency_Scroll1 + Name: Emergency Level 1 Scroll + Type: Usable + Buy: 2 + Weight: 10 + Delay: + Duration: 300000 + Status: Reuse_Limit_Recall + Script: | + unitskilluseid getcharid(3),"GD_ITEMEMERGENCYCALL",1; + - Id: 12969 + AegisName: Emergency_Scroll2 + Name: Emergency Level 2 Scroll + Type: Usable + Buy: 2 + Weight: 10 + Delay: + Duration: 300000 + Status: Reuse_Limit_Recall + Script: | + unitskilluseid getcharid(3),"GD_ITEMEMERGENCYCALL",2; + - Id: 12970 + AegisName: Emergency_Scroll3 + Name: Emergency Level 3 Scroll + Type: Usable + Buy: 2 + Weight: 10 + Delay: + Duration: 300000 + Status: Reuse_Limit_Recall + Script: | + unitskilluseid getcharid(3),"GD_ITEMEMERGENCYCALL",3; + - Id: 12971 + AegisName: Teleport_Box1 + Name: Teleport Scroll Box 1 + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12977,10; + - Id: 12972 + AegisName: Teleport_Box2 + Name: Teleport Scroll Box 2 + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12978,10; + - Id: 12973 + AegisName: Teleport_Box3 + Name: Teleport Scroll Box 3 + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12979,10; + - Id: 12974 + AegisName: Teleport_Box4 + Name: Teleport Scroll Box 4 + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12980,10; + - Id: 12975 + AegisName: Teleport_Box5 + Name: Teleport Scroll Box 5 + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12981,10; + - Id: 12976 + AegisName: Teleport_Box6 + Name: Teleport Scroll Box 6 + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12982,10; + - Id: 12977 + AegisName: Teleport_Scroll1 + Name: Teleport Scroll 1 + Type: Usable + Buy: 2 + Weight: 10 + Script: | + callfunc "F_CashTele",1; + - Id: 12978 + AegisName: Teleport_Scroll2 + Name: Teleport Scroll 2 + Type: Usable + Buy: 2 + Weight: 10 + Script: | + callfunc "F_CashTele",2; + - Id: 12979 + AegisName: Teleport_Scroll3 + Name: Teleport Scroll 3 + Type: Usable + Buy: 2 + Weight: 10 + Script: | + callfunc "F_CashTele",3; + - Id: 12980 + AegisName: Teleport_Scroll4 + Name: Teleport Scroll 4 + Type: Usable + Buy: 2 + Weight: 10 + Script: | + callfunc "F_CashTele",4; + - Id: 12981 + AegisName: Teleport_Scroll5 + Name: Teleport Scroll 5 + Type: Usable + Buy: 2 + Weight: 10 + Script: | + callfunc "F_CashTele",5; + - Id: 12982 + AegisName: Teleport_Scroll6 + Name: Teleport Scroll 6 + Type: Usable + Buy: 2 + Weight: 10 + Script: | + callfunc "F_CashTele",6; + - Id: 12983 + AegisName: Pet_Egg_Scroll_Box6 + Name: Pet Egg Scroll Box 6 + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12989,1; + - Id: 12984 + AegisName: Pet_Egg_Scroll_Box7 + Name: Pet Egg Scroll Box 7 + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12990,1; + - Id: 12985 + AegisName: Pet_Egg_Scroll_Box8 + Name: Pet Egg Scroll Box 8 + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12991,1; + - Id: 12986 + AegisName: Pet_Egg_Scroll_Box9 + Name: Adventurer Pack Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12992,1; + - Id: 12987 + AegisName: Pet_Egg_Scroll_Box10 + Name: Pet Egg Scroll Box 10 + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12993,1; + - Id: 12988 + AegisName: Pet_Egg_Scroll_Box11 + Name: Pet Egg Scroll Box 11 + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12994,1; + - Id: 12989 + AegisName: Pet_Egg_Scroll6 + Name: Pet Egg Scroll 6 + Type: Delayconsume + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12990 + AegisName: Pet_Egg_Scroll7 + Name: Pet Egg Scroll 7 + Type: Delayconsume + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12991 + AegisName: Pet_Egg_Scroll8 + Name: Party Hard Pack + Type: Delayconsume + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12992 + AegisName: Pet_Egg_Scroll9 + Name: Adventurer Pack + Type: Delayconsume + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12993 + AegisName: Pet_Egg_Scroll10 + Name: Pet Egg Scroll 10 + Type: Delayconsume + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12994 + AegisName: Pet_Egg_Scroll11 + Name: Pet Egg Scroll 11 + Type: Delayconsume + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12995 + AegisName: White_Herb_Box + Name: White Herb Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 509,15; + - Id: 12996 + AegisName: Blue_Herb_Box + Name: Blue Herb Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 510,15; + - Id: 12997 + AegisName: Elunium_Box + Name: Elunium Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 985,5; + - Id: 12998 + AegisName: Oridecon_Box + Name: Oridecon Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 984,5; + - Id: 12999 + AegisName: Branch_Of_Dead_Tree_Box + Name: Dead Branch Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 604,3; + - Id: 13500 + AegisName: Insurance60_Package + Name: Life Insurrance Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14500,10; + - Id: 13501 + AegisName: Assorted_Scroll_Box + Name: Experience Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + - Id: 13502 + AegisName: Drooping_Kitty_Box + Name: Refined Drooping Cat Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 5279,604800; + - Id: 13503 + AegisName: Magestic_Goat_Box + Name: Baphomet Horns Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 5280,604800; + - Id: 13504 + AegisName: Deviruchi_Cap_Box + Name: Refined Deviruchi Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 5281,604800; + - Id: 13505 + AegisName: Executioner_Box + Name: Executioner Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 1174,604800; + - Id: 13506 + AegisName: Brood_Axe_Box + Name: Refined Bloody Axe Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 1373,604800; + - Id: 13507 + AegisName: Tomahawk_Box + Name: Tomahawk Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 1374,604800; + - Id: 13508 + AegisName: Bow_Of_Rudra_Box + Name: Rudra Bow Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 1729,604800; + - Id: 13509 + AegisName: Cutlas_Box + Name: Cutlus Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 13402,604800; + - Id: 13510 + AegisName: Solar_Sword_Box + Name: Solar Sword Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 13403,604800; + - Id: 13511 + AegisName: Sword_Breaker_Box + Name: Refined Swordbreaker Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 13024,604800; + - Id: 13512 + AegisName: Mail_Breaker_Box + Name: Refined Mailbreaker Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 13025,604800; + - Id: 13513 + AegisName: Moonlight_Sword_Box + Name: Moonlight Dagger Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 13026,604800; + - Id: 13514 + AegisName: Spanner_Box + Name: Wrench Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 1534,604800; + - Id: 13515 + AegisName: Grape_Box + Name: Grape Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 514,10; + - Id: 13516 + AegisName: Royal_Jelly_Box + Name: Royal Jelly Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 526,5; + - Id: 13517 + AegisName: Yggdrasilberry_Box + Name: Yggdrasil Berry Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 607,3; + - Id: 13518 + AegisName: Weapon_Card_Scroll_Box + Name: Weapon Card Pet Egg Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 13558,1; + - Id: 13519 + AegisName: Armor_Card_Scroll_Box + Name: Armor Card Pet Egg Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 13559,1; + - Id: 13520 + AegisName: Helmet_Card_Scroll_Box + Name: Helmet Card Pet Egg Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 13560,1; + - Id: 13521 + AegisName: Hood_Card_Scroll_Box + Name: Garment Card Pet Egg Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 13561,1; + - Id: 13522 + AegisName: Hood_Card_Scroll_Box2 + Name: Shield Card Pet Egg Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 13562,1; + - Id: 13523 + AegisName: Shoes_Card_Scroll_Box + Name: Shoes Card Pet Egg Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 13563,1; + - Id: 13524 + AegisName: Accy_Card_Scroll_Box + Name: Accessory Card Pet Egg Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 13564,1; + - Id: 13525 + AegisName: Zeny_Scroll_Box + Name: Zeny Pet Egg Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 14508,1; + - Id: 13526 + AegisName: Pet_Egg_Scroll_Box1_ + Name: Pet Egg Scroll Box 12 + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12925,30; + - Id: 13527 + AegisName: Pet_Egg_Scroll_Box2_ + Name: Pet Egg Scroll Box 13 + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12926,30; + - Id: 13528 + AegisName: Pet_Egg_Scroll_Box3_ + Name: Pet Egg Scroll Box 14 + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12932,30; + - Id: 13529 + AegisName: Pet_Egg_Scroll_Box4_ + Name: Pet Egg Scroll Box 15 + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12933,30; + - Id: 13530 + AegisName: Pet_Egg_Scroll_Box5_ + Name: Pet Egg Scroll Box 16 + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12934,30; + - Id: 13531 + AegisName: Light_Red_Pot_Box + Name: Light Red Potion Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 598,50; + - Id: 13532 + AegisName: Light_Orange_Pot_Box + Name: Light Orange Potion Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 599,50; + - Id: 13533 + AegisName: Light_Yellow_Pot_Box + Name: Light Yellow Potion Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 11500,50; + - Id: 13534 + AegisName: Light_White_Pot_Box + Name: Light White Potion Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 11501,50; + - Id: 13535 + AegisName: Light_Center_Pot_Box + Name: Light Concentration Potion Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14509,20; + - Id: 13536 + AegisName: Light_Awakening_Pot_Box + Name: Light Awakening Potion Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14510,20; + - Id: 13537 + AegisName: Light_Berserk_Pot_Box + Name: Light Berserk Potion Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14511,20; + - Id: 13538 + AegisName: Meteor_10_Scroll_Box + Name: Meteor Storm Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14512,10; + - Id: 13539 + AegisName: Storm_10_Scroll_Box + Name: Storm Gust Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14513,10; + - Id: 13540 + AegisName: Vermilion_10_Scroll_Box + Name: Lord of Vermilion Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14514,10; + - Id: 13541 + AegisName: Lex_Aeterna_Scroll_Box + Name: Lex Aeterna Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14515,10; + - Id: 13542 + AegisName: Magnificat_5_Scroll_Box + Name: Magnificat Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14516,10; + - Id: 13543 + AegisName: CP_Helm_Scroll_Box + Name: Chemical Protection Helm Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14517,10; getitem 7139,10; + - Id: 13544 + AegisName: CP_Shield_Scroll_Box + Name: Chemical Protection Shield Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14518,10; getitem 7139,10; + - Id: 13545 + AegisName: CP_Armor_Scroll_Box + Name: Chemical Protection Armor Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14519,10; getitem 7139,10; + - Id: 13546 + AegisName: CP_Weapon_Scroll_Box + Name: Chemical Protection Weapon Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14520,10; getitem 7139,10; + - Id: 13547 + AegisName: Repair_Scroll_Box + Name: Repair Weapon Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 14587,5; getitem 1002,5; getitem 998,5; getitem 756,5; getitem 999,5; + - Id: 13548 + AegisName: Big_Bun_Box + Name: Big Bun Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14522,10; + - Id: 13549 + AegisName: Pill__Box + Name: Pill Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14523,10; + - Id: 13550 + AegisName: Superb_Fish_Slice_Box + Name: Fish Slice Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14524,10; + - Id: 13551 + AegisName: Chewy_Ricecake_Box + Name: Chewy Ricecake Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14525,10; + - Id: 13552 + AegisName: Oriental_Pastry_Box + Name: Pastry Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14526,10; + - Id: 13553 + AegisName: Dun_Tele_Scroll1_Box + Name: Dungeon Teleport Scroll 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 14527,5; + - Id: 13554 + AegisName: Weapon_Card_Scroll_Box2 + Name: Weapon Card Pet Egg Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 13565,1; + - Id: 13555 + AegisName: Weapon_Card_Scroll_Box3 + Name: Weapon Card Pet Egg Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 13566,1; + - Id: 13556 + AegisName: Armor_Card_Scroll_Box2 + Name: Armor Card Pet Egg Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 13567,1; + - Id: 13557 + AegisName: Accy_Card_Scroll_Box2 + Name: Accessory Card Pet Egg Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 13568,1; + - Id: 13558 + AegisName: Weapon_Card_Scroll + Name: Weapon Card Pet Egg Scroll + Type: Usable + Buy: 20 + Weight: 10 + - Id: 13559 + AegisName: Armor_Card_Scroll + Name: Armor Card Pet Egg Scroll + Type: Usable + Buy: 20 + Weight: 10 + - Id: 13560 + AegisName: Helmet_Card_Scroll + Name: Helmet Card Pet Egg Scroll + Type: Usable + Buy: 20 + Weight: 10 + - Id: 13561 + AegisName: Hood_Card_Scroll + Name: Garment Card Pet Egg Scroll + Type: Usable + Buy: 20 + Weight: 10 + - Id: 13562 + AegisName: Hood_Card_Scroll2 + Name: Shield Card Pet Egg Scroll + Type: Usable + Buy: 20 + Weight: 10 + - Id: 13563 + AegisName: Shoes_Card_Scroll + Name: Shoes Card Pet Egg Scroll + Type: Usable + Buy: 20 + Weight: 10 + - Id: 13564 + AegisName: Accy_Card_Scroll + Name: Accessory Card Pet Egg Scroll + Type: Usable + Buy: 20 + Weight: 10 + - Id: 13565 + AegisName: Weapon_Card_Scroll2 + Name: Weapon Card Pet Egg Scroll + Type: Usable + Buy: 20 + Weight: 10 + - Id: 13566 + AegisName: Weapon_Card_Scroll3 + Name: Weapon Card Pet Egg Scroll + Type: Usable + Buy: 20 + Weight: 10 + - Id: 13567 + AegisName: Armor_Card_Scroll2 + Name: Armor Card Pet Egg Scroll + Type: Usable + Buy: 20 + Weight: 10 + - Id: 13568 + AegisName: Accy_Card_Scroll2 + Name: Accessory Card Pet Egg Scroll + Type: Usable + Buy: 20 + Weight: 10 + - Id: 13569 + AegisName: PVP_Tele_Scroll_Box + Name: PVP Teleport Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14528,10; + - Id: 13570 + AegisName: Giant_Fly_Wing_Box50 + Name: Giant Fly Wing 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12212,50; + - Id: 13571 + AegisName: Giant_Fly_Wing_Box100 + Name: Giant Fly Wing 100 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12212,100; + - Id: 13572 + AegisName: Dex_Dish_Box30 + Name: Hwergelmir's Tonic 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12205,30; + - Id: 13573 + AegisName: Dex_Dish_Box50 + Name: Hwergelmir's Tonic 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12205,50; + - Id: 13574 + AegisName: Luk_Dish_Box30 + Name: Nine Tail Dish 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12206,30; + - Id: 13575 + AegisName: Luk_Dish_Box50 + Name: Nine Tail Dish 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12206,50; + - Id: 13576 + AegisName: Inc_Agi_10_Box30 + Name: Increase Agility Scroll 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12216,30; + - Id: 13577 + AegisName: Inc_Agi_10_Box50 + Name: Increase Agility Scroll 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12216,50; + - Id: 13578 + AegisName: Vit_Dish_Box30 + Name: Stew of Immortality 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12207,30; + - Id: 13579 + AegisName: Vit_Dish_Box50 + Name: Stew of Immortality 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12207,50; + - Id: 13580 + AegisName: Insurance_Package30 + Name: Life Insurrance 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12209,30; + - Id: 13581 + AegisName: Insurance_Package50 + Name: Life Insurrance 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12209,50; + - Id: 13582 + AegisName: Convex_Mirror_Box5 + Name: Convex Mirror 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12214,5; + - Id: 13583 + AegisName: Convex_Mirror_Box30 + Name: Convex Mirror 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12214,30; + - Id: 13584 + AegisName: Blessing10_Box30 + Name: Blessing Scroll 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12215,30; + - Id: 13585 + AegisName: Blessing10_Box50 + Name: Blessing Scroll 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12215,50; + - Id: 13586 + AegisName: Adrenaline10_Box30 + Name: Adrenaline Rush Scroll 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12220,30; + - Id: 13587 + AegisName: Adrenaline10_Box50 + Name: Adrenaline Rush Scroll 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12220,50; + - Id: 13588 + AegisName: Assumptio_5_Box30 + Name: Assumptio Scroll 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12218,30; + - Id: 13589 + AegisName: Assumptio_5_Box50 + Name: Assumptio Scroll 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12218,50; + - Id: 13590 + AegisName: Aspersio_5_Box30 + Name: Aspersio Scroll 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12217,30; + - Id: 13591 + AegisName: Aspersio_5_Box50 + Name: Aspersio Scroll 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12217,50; + - Id: 13592 + AegisName: Agi_Dish_Box30 + Name: Steamed Scorpion 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12203,30; + - Id: 13593 + AegisName: Agi_Dish_Box50 + Name: Steamed Scorpion 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12203,50; + - Id: 13594 + AegisName: Wind_Walk10_Box30 + Name: Wind Walk Scroll 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12219,30; + - Id: 13595 + AegisName: Wind_Walk10_Box50 + Name: Wind Walk Scroll 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12219,50; + - Id: 13596 + AegisName: Int_Dish_Box30 + Name: Dragon Breath Cocktail 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12204,30; + - Id: 13597 + AegisName: Int_Dish_Box50 + Name: Dragon Breath Cocktail 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12204,50; + - Id: 13598 + AegisName: Battle_Manual_Box1 + Name: Field Manual Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12208,1; + - Id: 13599 + AegisName: Battle_Manual_Box5 + Name: Field Manual 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12208,5; + - Id: 13600 + AegisName: Siegfried_Box5 + Name: Token of Siegfried 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 7621,5; + - Id: 13601 + AegisName: Siegfried_Box20 + Name: Token of Siegfried 20 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 7621,20; + - Id: 13602 + AegisName: Kafra_Card_Box30 + Name: Kafra Card 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12211,30; + - Id: 13603 + AegisName: Kafra_Card_Box50 + Name: Kafra Card 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12211,50; + - Id: 13604 + AegisName: Str_Dish_Box30 + Name: Steamed Tongue 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12202,30; + - Id: 13605 + AegisName: Str_Dish_Box50 + Name: Steamed Tongue 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12202,50; + - Id: 13606 + AegisName: Bubble_Gum_Box1 + Name: Bubble Gum Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12210,1; + - Id: 13607 + AegisName: Bubble_Gum_Box5 + Name: Bubble Gum 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12210,5; + - Id: 13608 + AegisName: Megaphone_Box1 + Name: Megaphone Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12221,1; + - Id: 13609 + AegisName: Megaphone_Box5 + Name: Megaphone 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12221,5; + - Id: 13610 + AegisName: Enriched_Elunium_Box5 + Name: Enriched Elunium 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 7619,5; + - Id: 13611 + AegisName: Enriched_Oridecon_Box5 + Name: Enriched Oridecon 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 7620,5; + - Id: 13612 + AegisName: Handcuff_Box + Name: Arrest Handcuffs Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 2706,1; + - Id: 13613 + AegisName: Super_Pet_Egg_Box1 + Name: Super Pet Egg Box 1 + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 13617,1; + - Id: 13614 + AegisName: Super_Pet_Egg_Box2 + Name: Super Pet Egg Box 2 + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 13618,1; + - Id: 13615 + AegisName: Super_Pet_Egg_Box3 + Name: Super Pet Egg Box 3 + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 13619,1; + - Id: 13616 + AegisName: Super_Pet_Egg_Box4 + Name: Super Pet Egg Box 4 + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 13620,1; + - Id: 13617 + AegisName: Super_Pet_Egg1 + Name: Super Pet Egg 1 + Type: Usable + Buy: 20 + Weight: 10 + - Id: 13618 + AegisName: Super_Pet_Egg2 + Name: Super Pet Egg 2 + Type: Usable + Buy: 20 + Weight: 10 + - Id: 13619 + AegisName: Super_Pet_Egg3 + Name: Super Pet Egg 3 + Type: Usable + Buy: 20 + Weight: 10 + - Id: 13620 + AegisName: Super_Pet_Egg4 + Name: Super Pet Egg 4 + Type: Usable + Buy: 20 + Weight: 10 + - Id: 13621 + AegisName: Greed_Box30 + Name: Greed Scroll 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14529,30; + - Id: 13622 + AegisName: Greed_Box50 + Name: Greed Scroll 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14529,50; + - Id: 13623 + AegisName: Greed_Box100 + Name: Greed Scroll 100 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14529,100; + - Id: 13624 + AegisName: Flee_30_Scroll_Box + Name: Evasion Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14530,1; + - Id: 13625 + AegisName: Accuracy_30_Scroll_Box + Name: Concentration Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14531,1; + - Id: 13626 + AegisName: Super_Card_Pet_Egg_Box1 + Name: Super Card Pet Egg Box 1 + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 13630,1; + - Id: 13627 + AegisName: Super_Card_Pet_Egg_Box2 + Name: Super Card Pet Egg Box 2 + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 13631,1; + - Id: 13628 + AegisName: Super_Card_Pet_Egg_Box3 + Name: Super Card Pet Egg Box 3 + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 13632,1; + - Id: 13629 + AegisName: Super_Card_Pet_Egg_Box4 + Name: Super Card Pet Egg Box 4 + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 13633,1; + - Id: 13630 + AegisName: Super_Card_Pet_Egg1 + Name: Super Card Pet Egg 1 + Type: Usable + Buy: 20 + Weight: 10 + - Id: 13631 + AegisName: Super_Card_Pet_Egg2 + Name: Super Card Pet Egg 2 + Type: Usable + Buy: 20 + Weight: 10 + - Id: 13632 + AegisName: Super_Card_Pet_Egg3 + Name: Super Card Pet Egg 3 + Type: Usable + Buy: 20 + Weight: 10 + - Id: 13633 + AegisName: Super_Card_Pet_Egg4 + Name: Super Card Pet Egg 4 + Type: Usable + Buy: 20 + Weight: 10 + - Id: 13634 + AegisName: Vigorgra_Package1 + Name: 1 Hour Package Vol. 1 + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12250,2; getitem 12251,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; + - Id: 13635 + AegisName: Vigorgra_Package2 + Name: 1 Hour Package Vol. 2 + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12250,2; getitem 12255,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; + - Id: 13636 + AegisName: Vigorgra_Package3 + Name: 1 Hour Package Vol. 3 + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12252,2; getitem 12253,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; + - Id: 13637 + AegisName: Vigorgra_Package4 + Name: 1 Hour Package Vol. 4 + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12252,2; getitem 12255,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; + - Id: 13638 + AegisName: Vigorgra_Package5 + Name: 1 Hour Package Vol. 5 + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12252,2; getitem 12250,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; + - Id: 13639 + AegisName: Vigorgra_Package6 + Name: 1 Hour Package Vol. 6 + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12250,2; getitem 12251,2; getitem 12208,2; getitem 12215,15; getitem 12217,20; getitem 12211,1; getitem 7621,1; + - Id: 13640 + AegisName: Vigorgra_Package7 + Name: 2 Hour Package Vol. 1 + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12250,4; getitem 12251,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; + - Id: 13641 + AegisName: Vigorgra_Package8 + Name: 2 Hour Package Vol. 2 + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12250,4; getitem 12255,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; + - Id: 13642 + AegisName: Vigorgra_Package9 + Name: 2 Hour Package Vol. 3 + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12252,4; getitem 12253,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; + - Id: 13643 + AegisName: Vigorgra_Package10 + Name: 2 Hour Package Vol. 4 + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12252,4; getitem 12255,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; + - Id: 13644 + AegisName: Vigorgra_Package11 + Name: 2 Hour Package Vol. 5 + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12252,4; getitem 12250,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; + - Id: 13645 + AegisName: Vigorgra_Package12 + Name: 2 Hour Package Vol. 6 + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12250,4; getitem 12251,4; getitem 12208,4; getitem 12215,30; getitem 12217,40; getitem 12211,2; getitem 7621,2; + - Id: 13646 + AegisName: Infiltrator_Box1 + Name: Refined Infiltrator Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 1267,604800; + - Id: 13647 + AegisName: Muramasa_Box1 + Name: Refined Muramasa Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 1173,604800; + - Id: 13648 + AegisName: Excalibur_Box1 + Name: Refined Excalibur Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 13401,604800; + - Id: 13649 + AegisName: Combat_Knife_Box1 + Name: Refined Combat Knife Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 13021,604800; + - Id: 13650 + AegisName: Counter_Dagger_Box1 + Name: Refined Dagger of Counter Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 13022,604800; + - Id: 13651 + AegisName: Kaiser_Knuckle_Box1 + Name: Refined Kaiser Knuckle Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 1817,604800; + - Id: 13652 + AegisName: Pole_Axe_Box1 + Name: Refined Pole Axe Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 1419,604800; + - Id: 13653 + AegisName: Mighty_Staff_Box1 + Name: Refined Mighty Staff Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 1623,604800; + - Id: 13654 + AegisName: Right_Epsilon_Box1 + Name: Refined Light Epsilon Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 1372,604800; + - Id: 13655 + AegisName: Balistar_Box1 + Name: Refined Ballista Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 1728,604800; + - Id: 13656 + AegisName: Diary_Of_Sage_Box1 + Name: Refined Sage's Diary Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 1563,604800; + - Id: 13657 + AegisName: Asura_Box1 + Name: Refined Ashura Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 13023,604800; + - Id: 13658 + AegisName: Apple_Of_Archer_Box1 + Name: Refined Apple of Archer Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 5265,1209600; + - Id: 13659 + AegisName: Bunny_Band_Box1 + Name: Refined Bunny Band Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 5266,1209600; + - Id: 13660 + AegisName: Sahkkat_Box1 + Name: Refined Sakkat Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 5267,1209600; + - Id: 13661 + AegisName: Lord_Circlet_Box1 + Name: Refined Grand Circlet Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 5268,1209600; + - Id: 13662 + AegisName: Elven_Ears_Box1 + Name: Refined Elven Ears Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 2686,1209600; + - Id: 13663 + AegisName: Steel_Flower_Box1 + Name: Refined Romantic Flower Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 2687,1209600; + - Id: 13664 + AegisName: Critical_Ring_Box1 + Name: Refined Critical Ring Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 2688,604800; + - Id: 13665 + AegisName: Earring_Box1 + Name: Refined Earring Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 2689,604800; + - Id: 13666 + AegisName: Ring_Box1 + Name: Refined Ring Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 2690,604800; + - Id: 13667 + AegisName: Necklace_Box1 + Name: Refined Necklace Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 2691,604800; + - Id: 13668 + AegisName: Glove_Box1 + Name: Refined Glove Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 2692,604800; + - Id: 13669 + AegisName: Brooch_Box1 + Name: Refined Brooch Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 2693,604800; + - Id: 13670 + AegisName: Rosary_Box1 + Name: Refined Rosary Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 2694,604800; + - Id: 13671 + AegisName: Safety_Ring_Box1 + Name: Refined Safety Ring Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 2695,604800; + - Id: 13672 + AegisName: Vesper_Core01_Box1 + Name: Refined Vesper Core 01 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 2696,604800; + - Id: 13673 + AegisName: Vesper_Core02_Box1 + Name: Refined Vesper Core 02 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 2697,604800; + - Id: 13674 + AegisName: Vesper_Core03_Box1 + Name: Refined Vesper Core 03 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 2698,604800; + - Id: 13675 + AegisName: Vesper_Core04_Box1 + Name: Refined Vesper Core 04 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 2699,604800; + - Id: 13676 + AegisName: Drooping_Kitty_Box1 + Name: Refined Drooping Cat Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 5279,1209600; + - Id: 13677 + AegisName: Magestic_Goat_Box1 + Name: Refined Majestic Goat Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 5280,1209600; + - Id: 13678 + AegisName: Deviruchi_Cap_Box1 + Name: Refined Deviruchi Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 5281,1209600; + - Id: 13679 + AegisName: Executioner_Box1 + Name: Refined Executioner Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 1174,604800; + - Id: 13680 + AegisName: Brood_Axe_Box1 + Name: Refined Bloody Axe Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 1373,604800; + - Id: 13681 + AegisName: Tomahawk_Box1 + Name: Refined Tomahawk Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 1374,604800; + - Id: 13682 + AegisName: Bow_Of_Rudra_Box1 + Name: Refined Rudra Bow Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 1729,604800; + - Id: 13683 + AegisName: Cutlas_Box1 + Name: Refined Cutlus Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 13402,604800; + - Id: 13684 + AegisName: Solar_Sword_Box1 + Name: Refined Solar Sword Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 13403,604800; + - Id: 13685 + AegisName: Sword_Breaker_Box1 + Name: Refined Swordbreaker Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 13024,604800; + - Id: 13686 + AegisName: Mail_Breaker_Box1 + Name: Refined Mailbreaker Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 13025,604800; + - Id: 13687 + AegisName: Moonlight_Sword_Box1 + Name: Refined Moonlight Dagger Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 13026,604800; + - Id: 13688 + AegisName: Spanner_Box1 + Name: Refined Wrench Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 1534,604800; + - Id: 13689 + AegisName: Bok_Choy_Box + Name: Bok Choy Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7766,100; + - Id: 13690 + AegisName: Chung_E_Cake_Box + Name: Green Maiden Cake Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7767,100; + - Id: 13691 + AegisName: Freyja_Overcoat_Box + Name: Freya's Clothes Box + Type: Cash + Weight: 10 + Script: | + rentitem 2369,604800; + - Id: 13692 + AegisName: Freyja_Boots_Box + Name: Freya's Boots Box + Type: Cash + Weight: 10 + Script: | + rentitem 2428,604800; + - Id: 13693 + AegisName: Freyja_Cape_Box + Name: Freya's Manteau Box + Type: Cash + Weight: 10 + Script: | + rentitem 2533,604800; + - Id: 13694 + AegisName: Freyja_Crown_Box + Name: Freya's Crown Box + Type: Cash + Weight: 10 + Script: | + rentitem 5306,604800; + - Id: 13695 + AegisName: Battle_Manual25_Box + Name: Field Manual 25% Box + Type: Cash + Weight: 10 + Script: | + getitem 14532,10; + - Id: 13696 + AegisName: Battle_Manual100_Box + Name: Field Manual 100% Box + Type: Cash + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14533,10; + - Id: 13697 + AegisName: J_Blessing10_Box + Name: Blessing Scroll 10 Box + Type: Cash + Weight: 10 + Script: | + getitem 12215,10; + - Id: 13698 + AegisName: J_Inc_Agi10_Box + Name: Increase Agility Scroll 10 Box + Type: Cash + Weight: 10 + Script: | + getitem 12216,10; + - Id: 13699 + AegisName: J_Wind_Walk10_Box + Name: Wind Walk Scroll 10 Box + Type: Cash + Weight: 10 + Script: | + getitem 12219,10; + - Id: 13700 + AegisName: J_Adrenaline10_Box + Name: Adrenaline Rush Scroll 10 Box + Type: Cash + Weight: 10 + Script: | + getitem 12220,10; + - Id: 13701 + AegisName: Pet_Egg_Scroll12 + Name: Pet Egg Scroll 12 + Type: Usable + Weight: 10 + - Id: 13702 + AegisName: Pet_Egg_Scroll13 + Name: Pet Egg Scroll 13 + Type: Usable + Weight: 10 + - Id: 13703 + AegisName: Pet_Egg_Scroll14 + Name: Pet Egg Scroll 14 + Type: Usable + Weight: 10 + - Id: 13704 + AegisName: Super_Pet_Egg5 + Name: Super Pet Egg 5 + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + - Id: 13705 + AegisName: Super_Pet_Egg6 + Name: Super Pet Egg 6 + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + - Id: 13706 + AegisName: Super_Pet_Egg7 + Name: Super Pet Egg 7 + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + - Id: 13707 + AegisName: Super_Pet_Egg8 + Name: Super Pet Egg 8 + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + - Id: 13708 + AegisName: Pet_Egg_Scroll_E + Name: Pet Egg Scroll E + Type: Usable + Buy: 20 + Weight: 10 + - Id: 13709 + AegisName: BRO_Package_1 + Name: BRO Package Box + Type: Usable + Buy: 20 + Weight: 10 + - Id: 13710 + AegisName: Max_Weight_Up_Box + Name: Gym Pass Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 7776,10; + - Id: 13711 + AegisName: Small_Life_Potion_Box + Name: Small Life Potion 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 14534,10; + - Id: 13712 + AegisName: Small_Life_Potion_Box30 + Name: Small Life Potion 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 14534,30; + - Id: 13713 + AegisName: Small_Life_Potion_Box50 + Name: Small Life Potion 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 14534,50; + - Id: 13714 + AegisName: Med_Life_Potion_Box + Name: Medium Life Potion 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 14535,10; + - Id: 13715 + AegisName: Med_Life_Potion_Box30 + Name: Medium Life Potion 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 14535,30; + - Id: 13716 + AegisName: Med_Life_Potion_Box50 + Name: Medium Life Potion 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 14535,50; + - Id: 13717 + AegisName: Abrasive_Box5 + Name: Abrasive 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 14536,5; + - Id: 13718 + AegisName: Abrasive_Box10 + Name: Abrasive 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 14536,10; + - Id: 13719 + AegisName: Regeneration_Box5 + Name: Regeneration Potion 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 14537,5; + - Id: 13720 + AegisName: Regeneration_Box10 + Name: Regeneration 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 14537,10; + - Id: 13721 + AegisName: Dun_Tele_Scroll_Box10 + Name: Dungeon Teleport Scroll 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 14527,10; + - Id: 13722 + AegisName: Pecopeco_Hairband_Box + Name: Peco Peco Hairband Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 5286,1; + - Id: 13723 + AegisName: Red_Glasses_Box + Name: Red Glasses Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 5288,1; + - Id: 13724 + AegisName: Whisper_Mask_Box + Name: Whisper Mask Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 5294,1; + - Id: 13725 + AegisName: Ramen_Hat_Box + Name: Ramen Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 5293,1; + - Id: 13726 + AegisName: Gold_Box_ + Name: Golden Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 7777,1; + - Id: 13727 + AegisName: Silver_Box_ + Name: Silver Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 7778,1; + - Id: 13728 + AegisName: Gold_Key1_Box + Name: Golden Key 1 Box + Type: Cash + Weight: 10 + Script: | + getitem 7779,1; + - Id: 13729 + AegisName: Gold_Key5_Box + Name: Golden Key 5 Box + Type: Cash + Weight: 10 + Script: | + getitem 7779,5; + - Id: 13730 + AegisName: Silver_Key1_Box + Name: Silver Key 1 Box + Type: Cash + Weight: 10 + Script: | + getitem 7780,1; + - Id: 13731 + AegisName: Silver_Key5_Box + Name: Silver Key 5 Box + Type: Cash + Weight: 10 + Script: | + getitem 7780,5; + - Id: 13734 + AegisName: Pecopeco_Hairband_Box1 + Name: Peco Peco Hairband Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 5286,1; + - Id: 13735 + AegisName: Red_Glasses_Box1 + Name: Red Glasses Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 5288,1; + - Id: 13736 + AegisName: Whisper_Mask_Box1 + Name: Whisper Mask Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 5294,1; + - Id: 13737 + AegisName: Ramen_Hat_Box1 + Name: Ramen Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 5293,1; + - Id: 13738 + AegisName: Glass_Of_Illusion_Box5 + Name: Glass of Illusion 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 14538,5; + - Id: 13739 + AegisName: Glass_Of_Illusion_Box10 + Name: Glass of Illusion 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 14538,10; + - Id: 13740 + AegisName: Shadow_Armor_S_Box5 + Name: Shadow Armor Scroll 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 14539,5; + - Id: 13741 + AegisName: Shadow_Armor_S_Box10 + Name: Shadow Armor Scroll 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 14539,10; + - Id: 13742 + AegisName: Shadow_Armor_S_Box30 + Name: Shadow Armor Scroll 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 14539,30; + - Id: 13743 + AegisName: Holy_Armor_S_Box5 + Name: Holy Armor Scroll 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 14540,5; + - Id: 13744 + AegisName: Holy_Armor_S_Box10 + Name: Holy Armor Scroll 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 14540,10; + - Id: 13745 + AegisName: Holy_Armor_S_Box30 + Name: Holy Armor Scroll 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 14540,30; + - Id: 13746 + AegisName: S_Def_Potion_Box10 + Name: Small Defense Potion 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 14541,10; + - Id: 13747 + AegisName: S_Def_Potion_Box30 + Name: Small Defense Potion 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 14541,30; + - Id: 13748 + AegisName: S_Def_Potion_Box50 + Name: Small Defense Potion 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 14541,50; + - Id: 13749 + AegisName: B_Def_Potion_Box10 + Name: Big Defense Potion 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 14542,10; + - Id: 13750 + AegisName: B_Def_Potion_Box30 + Name: Big Defense Potion 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 14542,30; + - Id: 13751 + AegisName: B_Def_Potion_Box50 + Name: Big Defense Potion 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 14542,50; + - Id: 13752 + AegisName: S_Mdef_Potion_Box10 + Name: Small Magic Defense Potion 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 14543,10; + - Id: 13753 + AegisName: S_Mdef_Potion_Box30 + Name: Small Magic Defense Potion 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 14543,30; + - Id: 13754 + AegisName: S_Mdef_Potion_Box50 + Name: Small Magic Defense Potion 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 14543,50; + - Id: 13755 + AegisName: B_Mdef_Potion_Box10 + Name: Big Magic Defense Potion 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 14544,10; + - Id: 13756 + AegisName: B_Mdef_Potion_Box30 + Name: Big Magic Defense Potion 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 14544,30; + - Id: 13757 + AegisName: B_Mdef_Potion_Box50 + Name: Big Magic Defense Potion 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 14544,50; + - Id: 13758 + AegisName: Battle_Manual_X3_Box + Name: Field Manual 300% Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14545,20; + - Id: 13759 + AegisName: In_Blue_Herb_Box + Name: Blue Herb Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 510,50; + - Id: 13760 + AegisName: Honey_Box + Name: Honey Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 518,100; + - Id: 13761 + AegisName: Empty_Bottle_Box + Name: Empty Bottle Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 713,500; + - Id: 13762 + AegisName: In_Royal_Jelly_Box + Name: Royal Jelly Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 526,70; + - Id: 13763 + AegisName: 5_Anniversary_Coin_Box + Name: Coin Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 2709,1; + - Id: 13764 + AegisName: Battle_Manual_Box_TW + Name: Beginner's Field Manual 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 7803,5; + - Id: 13765 + AegisName: Certificate_TW_Box + Name: Certificate Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7804,1; + - Id: 13766 + AegisName: Nagan_Box + Name: Refined Nagan Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 13407,604800; + - Id: 13767 + AegisName: Skewer_Box + Name: Refined Brocca Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 1424,604800; + - Id: 13768 + AegisName: Survival_Rod_Box + Name: Refined Survivor's Rod Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 1628,604800; + - Id: 13769 + AegisName: Quadrille_Box + Name: Refined Quadrille Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 1537,604800; + - Id: 13770 + AegisName: Great_Axe_Box + Name: Refined Great Axe Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 1378,604800; + - Id: 13771 + AegisName: Bloody_Roar_Box + Name: Refined Bloody Roar Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 1273,604800; + - Id: 13772 + AegisName: Hardback_Box + Name: Refined Hardcover Book Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 1567,604800; + - Id: 13773 + AegisName: Fire_Brand_Box + Name: Refined Fireblend Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 13408,604800; + - Id: 13774 + AegisName: Immaterial_Sword_Box + Name: Refined Immaterial Sword Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 13409,604800; + - Id: 13775 + AegisName: Unholy_Touch_Box + Name: Refined Unholy Touch Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 1274,604800; + - Id: 13776 + AegisName: Cloak_Of_Survival_Box + Name: Refined Survivor's Manteau Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 2535,1209600; + - Id: 13777 + AegisName: Masquerade_Box + Name: Refined Masquerade Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 5326,1209600; + - Id: 13778 + AegisName: Orc_Hero_Helm_Box + Name: Refined Helmet of Orc Hero Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 5327,1209600; + - Id: 13779 + AegisName: Evil_Wing_Ears_Box + Name: Refined Wing of Diablo Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 5328,1209600; + - Id: 13780 + AegisName: Dark_Blindfold_Box + Name: Refined Dark Blinder Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 5329,1209600; + - Id: 13781 + AegisName: kRO_Drooping_Kitty_Box + Name: Refined Drooping Cat Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 5330,1209600; + - Id: 13782 + AegisName: Corsair_Box + Name: Refined Corsair Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 5331,1209600; + - Id: 13783 + AegisName: Bloody_Iron_Ball_Box + Name: Refined Bloodied Shackle Ball Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 2710,604800; + - Id: 13784 + AegisName: Spiritual_Ring_Box + Name: Refined Spiritual Ring Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 2711,604800; + - Id: 13785 + AegisName: Nagan_Box1 + Name: Refined Nagan Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 13407,86400; + - Id: 13786 + AegisName: Skewer_Box1 + Name: Refined Brocca Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 1424,86400; + - Id: 13787 + AegisName: Survival_Rod_Box1 + Name: Refined Survivor's Rod Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 1628,86400; + - Id: 13788 + AegisName: Quadrille_Box1 + Name: Refined Quadrille Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 1537,86400; + - Id: 13789 + AegisName: Great_Axe_Box1 + Name: Refined Great Axe Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 1378,86400; + - Id: 13790 + AegisName: Bloody_Roar_Box1 + Name: Refined Bloody Roar Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 1273,86400; + - Id: 13791 + AegisName: Hardback_Box1 + Name: Refined Hardcover Book Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 1567,86400; + - Id: 13792 + AegisName: Fire_Brand_Box1 + Name: Refined Fireblend Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 13408,86400; + - Id: 13793 + AegisName: Immaterial_Sword_Box1 + Name: Refined Immaterial Sword Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 13409,86400; + - Id: 13794 + AegisName: Unholy_Touch_Box1 + Name: Refined Unholy Touch Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 1274,86400; + - Id: 13795 + AegisName: Cloak_Of_Survival_Box1 + Name: Refined Survivor's Manteau Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 2535,86400; + - Id: 13796 + AegisName: Masquerade_Box1 + Name: Refined Masquerade Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 5326,86400; + - Id: 13797 + AegisName: Orc_Hero_Helm_Box1 + Name: Refined Helmet of Orc Hero Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 5327,86400; + - Id: 13798 + AegisName: Evil_Wing_Ears_Box1 + Name: Refined Wing of Diablo Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 5328,86400; + - Id: 13799 + AegisName: Dark_Blindfold_Box1 + Name: Refined Dark Blinder Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 5329,86400; + - Id: 13800 + AegisName: kRO_Drooping_Kitty_Box1 + Name: Refined Drooping Cat Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 5330,86400; + - Id: 13801 + AegisName: Corsair_Box1 + Name: Refined Corsair Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 5331,86400; + - Id: 13802 + AegisName: Bloody_Iron_Ball_Box1 + Name: Refined Bloodied Shackle Ball Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 2710,86400; + - Id: 13803 + AegisName: Spiritual_Ring_Box1 + Name: Refined Spiritual Ring Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + rentitem 2711,86400; + - Id: 13804 + AegisName: Fire_Cracker_Love_Box + Name: I Love You Firecracker Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14546,10; + - Id: 13805 + AegisName: Fire_Cracker_Wday_Box + Name: Whiteday Firecracker Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14547,10; + - Id: 13806 + AegisName: Fire_Cracker_Vday_Box + Name: Valentine's Day Firecracker Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14548,10; + - Id: 13807 + AegisName: Fire_Cracker_Bday_Box + Name: Birthday Firecracker Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14549,10; + - Id: 13808 + AegisName: Fire_Cracker_Xmas_Box + Name: Xmas Firecracker Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14550,10; + - Id: 13809 + AegisName: Blue_Gemstone_Box + Name: Blue Gemstone Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 717,100; + - Id: 13810 + AegisName: Blue_Potion_Box + Name: Blue Potion Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 11502,25; + - Id: 13811 + AegisName: Food_Box_Lv1 + Name: Food Box Vol 1 + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14551,1; getitem 14554,1; getitem 14557,1; getitem 14560,1; getitem 14563,1; getitem 14566,1; + - Id: 13812 + AegisName: Food_Box_Lv2 + Name: Food Box Vol 2 + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14552,1; getitem 14555,1; getitem 14558,1; getitem 14561,1; getitem 14564,1; getitem 14567,1; + - Id: 13813 + AegisName: Food_Box_Lv3 + Name: Food Box Vol 3 + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14553,1; getitem 14556,1; getitem 14559,1; getitem 14562,1; getitem 14565,1; getitem 14568,1; + - Id: 13814 + AegisName: Indonesia_Box + Name: Healing Box + Type: Cash + Buy: 20 + Weight: 10 + - Id: 13815 + AegisName: Knife_Goblin_Box + Name: Knife Goblin Taming Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 14569,10; + - Id: 13816 + AegisName: Flail_Goblin_Box + Name: Flail Goblin Taming Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 14570,10; + - Id: 13817 + AegisName: Hammer_Goblin_Box + Name: Hammer Goblin Taming Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 14571,10; + - Id: 13818 + AegisName: Red_Deleter_Box + Name: Red Deleter Taming Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 14572,10; + - Id: 13819 + AegisName: Diabolic_Box + Name: Diabolic Taming Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 14573,10; + - Id: 13820 + AegisName: Wanderer_Box + Name: Wanderer Taming Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 14574,10; + - Id: 13821 + AegisName: Green_Apple_Box + Name: Green Apple Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 7821,10; + - Id: 13822 + AegisName: Whole_Barbecue_Box + Name: Barbeque Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 7822,10; + - Id: 13823 + AegisName: Meat_Veg_Skewer_Box + Name: Meat Skewer Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 7823,10; + - Id: 13824 + AegisName: Spirit_Liquor_Box + Name: Spirit Liquor Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 7824,10; + - Id: 13825 + AegisName: Green_Box_ + Name: Old Green Box + Type: Usable + Buy: 20 + Weight: 10 + - Id: 13826 + AegisName: Power_Box1 + Name: Power Box 1 + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 682,1; getitem 12123,1; getitem 12122,1; + - Id: 13827 + AegisName: Power_Box2 + Name: Power Box 2 + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 683,1; getitem 12123,1; getitem 12122,1; + - Id: 13828 + AegisName: Resist_Box1 + Name: Resist Box 1 + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 12118,1; getitem 12119,1; + - Id: 13829 + AegisName: Resist_Box2 + Name: Resist Box 2 + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 12120,1; getitem 12121,1; + - Id: 13830 + AegisName: Stat_Boost1 + Name: Stat Boost 1 + Type: Usable + Buy: 20 + Weight: 10 + Script: | + sc_start SC_INCSTR,60000,5; sc_start SC_INCAGI,60000,5; sc_start SC_INCVIT,60000,5; + - Id: 13831 + AegisName: Stat_Boost2 + Name: Stat Boost 2 + Type: Usable + Buy: 20 + Weight: 10 + Script: | + sc_start SC_INCINT,60000,5; sc_start SC_INCLUK,60000,5; sc_start SC_INCDEX,60000,5; + - Id: 13832 + AegisName: Stat_Boost3 + Name: Stat Boost 3 + Type: Usable + Buy: 20 + Weight: 10 + Script: | + sc_start SC_INCAGI,60000,5; sc_start SC_INCVIT,60000,5; sc_start SC_INCDEX,60000,5; + - Id: 13833 + AegisName: Stat_Boost4 + Name: Stat Boost 4 + Type: Usable + Buy: 20 + Weight: 10 + Script: | + sc_start SC_INCINT,60000,5; sc_start SC_INCVIT,60000,5; sc_start SC_INCDEX,60000,5; + - Id: 13834 + AegisName: Dun_Tele_Scroll2_Box5 + Name: Dungeon Teleport Scroll II 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14581,5; + - Id: 13835 + AegisName: Dun_Tele_Scroll2_Box10 + Name: Dungeon Teleport Scroll II 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14581,10; + - Id: 13836 + AegisName: Mbl_Str_Dish_Box + Name: Steamed Tongue Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12250,1; + - Id: 13837 + AegisName: Mbl_Agi_Dish_Box + Name: Steamed Desert Scorpions Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12251,1; + - Id: 13838 + AegisName: Mbl_Int_Dish_Box + Name: Dragon Breath Cocktail Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12252,1; + - Id: 13839 + AegisName: Mbl_Dex_Dish_Box + Name: Hwergelmir's Tonic Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12253,1; + - Id: 13840 + AegisName: Mbl_Luk_Dish_Box + Name: Cooked Nine Tail Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12254,1; + - Id: 13841 + AegisName: Mbl_Vit_Dish_Box + Name: Immortal Stew Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12255,1; + - Id: 13842 + AegisName: Mbl_Kafra_Card_Box + Name: Payment Statement for Kafra Employee Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12249,1; + - Id: 13843 + AegisName: Mbl_Battle_Manual_Box + Name: Field Manual Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14532,1; + - Id: 13844 + AegisName: Heroic_Stone_Box + Name: Heroic Stone Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 7825,1; + - Id: 13845 + AegisName: Mysterious_Travel_Sack1 + Name: Mystery Travel Sack A + Type: Cash + Buy: 20 + Weight: 10 + - Id: 13846 + AegisName: Mysterious_Travel_Sack2 + Name: Mystery Travel Sack B + Type: Cash + Buy: 20 + Weight: 10 + - Id: 13847 + AegisName: Mysterious_Travel_Sack3 + Name: Mystery Travel Sack C + Type: Cash + Buy: 20 + Weight: 10 + - Id: 13848 + AegisName: Mysterious_Travel_Sack4 + Name: Mystery Travel Sack D + Type: Cash + Buy: 20 + Weight: 10 + - Id: 13849 + AegisName: WOB_Box_Rune5 + Name: Yellow Butterfly Wing 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14582,5; + - Id: 13850 + AegisName: WOB_Box_Rune10 + Name: Yellow Butterfly Wing Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14582,10; + - Id: 13851 + AegisName: WOB_Box_Schawaltz5 + Name: Green Butterfly Wing 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14583,5; + - Id: 13852 + AegisName: WOB_Box_Schawaltz10 + Name: Green Butterfly Wing Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14583,10; + - Id: 13853 + AegisName: WOB_Box_Rachel5 + Name: Red Butterfly Wing 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14584,5; + - Id: 13854 + AegisName: WOB_Box_Rachel10 + Name: Red Butterfly Wing Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14584,10; + - Id: 13855 + AegisName: WOB_Box_Local5 + Name: Blue Butterfly Wing 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14585,5; + - Id: 13856 + AegisName: WOB_Box_Local10 + Name: Blue Butterfly Wing Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14585,10; + - Id: 13857 + AegisName: Spark_Candy_Box5 + Name: Candy 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14586,5; + - Id: 13858 + AegisName: Spark_Candy_Box10 + Name: Candy 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14586,10; + - Id: 13859 + AegisName: Directive_A_Envelope + Name: Directive Envelope A + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2734,1; + - Id: 13860 + AegisName: Directive_B_Envelope + Name: Directive Envelope B + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2735,1; + - Id: 13861 + AegisName: Mini_Battle_Manual_Box + Name: Small Field Manual Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12208,4; + - Id: 13862 + AegisName: Trial_Box + Name: Trial Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12208,2; getitem 12215,15; getitem 12216,15; + - Id: 13863 + AegisName: Repair_Scroll_Box10 + Name: Repair Weapon Scroll 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14521,10; getitem 1002,10; getitem 998,10; getitem 756,10; getitem 999,10; + - Id: 13866 + AegisName: Flying_Angel_Box + Name: Flying Angel Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5210,1; + - Id: 13867 + AegisName: Neko_Mimi_Box + Name: Neko Mimi Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5099,1; + - Id: 13868 + AegisName: MFH_Box + Name: Moonlight Flower Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5214,1; + - Id: 13869 + AegisName: Chick_Hat_Box + Name: Baby Chick Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5283,1; + - Id: 13870 + AegisName: New_Style_Box + Name: Beauty Gift Certificate Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7622,1; + - Id: 13871 + AegisName: Magician_Card_Box + Name: Mage Card Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4327,1; getitem 4309,1; getitem 4325,1; getitem 4208,1; getitem 4258,1; getitem 4191,1; + - Id: 13872 + AegisName: Acolyte_Card_Box + Name: Acolyte Card Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4185,1; getitem 4312,1; getitem 4217,1; getitem 4280,1; getitem 4293,1; + - Id: 13873 + AegisName: Archer_Card_Box + Name: Archer Card Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4297,1; getitem 4234,1; getitem 4199,1; getitem 4178,1; getitem 4252,1; + - Id: 13874 + AegisName: Swordman_Card_Box + Name: Swordman Card Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4319,1; getitem 4331,1; getitem 4220,1; getitem 4311,1; getitem 4246,1; + - Id: 13875 + AegisName: Thief_Card_Box + Name: Thief Card Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4230,1; getitem 4210,1; getitem 4257,1; getitem 4172,1; getitem 4272,1; + - Id: 13876 + AegisName: Merchant_Card_Box + Name: Merchant Card Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4206,1; getitem 4281,1; getitem 4186,1; getitem 4233,1; getitem 4321,1; + - Id: 13877 + AegisName: Clock_Tower_Card_Box + Name: Clock Tower Card Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4244,1; getitem 4299,1; getitem 4313,1; getitem 4229,1; + - Id: 13878 + AegisName: Geffenia_Card_Box + Name: Geffenia Card Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4218,1; getitem 4269,1; + - Id: 13879 + AegisName: Owl_Card_Box + Name: Owl Card Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4237,1; getitem 4238,1; + - Id: 13880 + AegisName: Ghost_Card_Box + Name: Ghost Card Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4193,1; getitem 4294,1; + - Id: 13881 + AegisName: Nightmare_Card_Box + Name: Nightmare Card Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4127,1; getitem 4166,1; + - Id: 13882 + AegisName: Curse_Card_Box + Name: Curse Card Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4076,4; + - Id: 13883 + AegisName: Sleep_Card_Box + Name: Sleep Card Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4024,4; + - Id: 13884 + AegisName: Freeze_Card_Box + Name: Freeze Card Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4055,4; + - Id: 13885 + AegisName: Stun_Card_Box + Name: Stun Card Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4017,4; + - Id: 13886 + AegisName: Silence_Card_Box + Name: Silence Card Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4057,4; + - Id: 13887 + AegisName: Blind_Card_Box + Name: Blind Card Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4020,4; + - Id: 13888 + AegisName: Chaos_Card_Box + Name: Chaos Card Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4104,4; + - Id: 13889 + AegisName: Elunium_Box_ + Name: Elunium Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 985,10; + - Id: 13890 + AegisName: Oridecon_Box_ + Name: Oridecon Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 984,10; + - Id: 13891 + AegisName: Fire_Converter_Box + Name: Fire Converter Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12114,10; + - Id: 13892 + AegisName: Water_Converter_Box + Name: Water Converter Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12115,10; + - Id: 13893 + AegisName: Wind_Converter_Box + Name: Wind Converter Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12117,10; + - Id: 13894 + AegisName: Earth_Converter_Box + Name: Earth Converter Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12116,10; + - Id: 13895 + AegisName: Starter_Pack + Name: Starter Pack + Type: Cash + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7229,2; getitem 569,300; getitem 504,20; getitem 505,20; getitem 7060,30; getitem 2403,1; getitem 5039,1; getitem 2503,1; getitem 2307,1; getitem 616,1; getitem 603,1; getitem 617,1; getitem 610,5; getitem 604,5; + - Id: 13896 + AegisName: Mimic_Summon_Box5 + Name: Mimic Summoning 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 12276,5; + - Id: 13897 + AegisName: Disguise_Summon_Box5 + Name: Disguise Summoning 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 12277,5; + - Id: 13898 + AegisName: Alice_Summon_Box5 + Name: Alice Summoning 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 12278,5; + - Id: 13899 + AegisName: Mimic_Summon_Box10 + Name: Mimic Summoning 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 12276,10; + - Id: 13900 + AegisName: Disguise_Summon_Box10 + Name: Disguise Summoning 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 12277,10; + - Id: 13901 + AegisName: Alice_Summon_Box10 + Name: Alice Summoning 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 12278,10; + - Id: 13902 + AegisName: Fish_Head_Hat_Box + Name: Fish Head Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5380,1; + - Id: 13903 + AegisName: Santa_Poring_Hat_Box + Name: Santa Poring Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5381,1; + - Id: 13904 + AegisName: Bell_Ribbon_Box + Name: Bell Ribbon Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5382,1; + - Id: 13905 + AegisName: Hard_Core_Set_Box + Name: XM Hardcore Set Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12208,10; getitem 12209,10; getitem 12210,10; + - Id: 13906 + AegisName: Kitty_Set_Box + Name: XM Kitty Set Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5230,1; getitem 5231,1; getitem 5232,1; getitem 5233,1; getitem 5234,1; + - Id: 13907 + AegisName: Soft_Core_Set_Box + Name: XM Softcore Set Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12208,5; getitem 12209,5; getitem 12210,5; + - Id: 13908 + AegisName: Deviruchi_Set_Box + Name: XM Deviruchi Set Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5227,1; getitem 5228,1; getitem 5229,1; + - Id: 13909 + AegisName: MVP_Hunt_Box + Name: MVP Hunting Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7621,1; getitem 12210,1; getitem 12221,1; getitem 12214,3; + - Id: 13910 + AegisName: Brewing_Box + Name: XM Brewing Set Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12204,10; getitem 12205,10; getitem 12206,10; + - Id: 13911 + AegisName: Xmas_Pet_Scroll + Name: Christmas Pet Scroll + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 13912 + AegisName: Party_Blessing_Box + Name: Party Blessing 10 Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 14588,10; + - Id: 13913 + AegisName: Party_Inc_Agi_Box + Name: Party Increase Agi 10 Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 14589,10; + - Id: 13914 + AegisName: Party_Assumptio_Box + Name: Party Assumptio 5 Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 14590,10; + - Id: 13915 + AegisName: Love_Angel_Box + Name: Love Angel Magic Powder Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12287,604800; + - Id: 13916 + AegisName: Squirrel_Box + Name: Squirrel Magic Powder Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12288,604800; + - Id: 13917 + AegisName: Gogo_Box + Name: Gogo Magic Powder Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12289,604800; + - Id: 13926 + AegisName: Crusader_Card_Box + Name: Crusader Card Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4371,1; getitem 4311,1; getitem 4319,1; getitem 4331,1; + - Id: 13927 + AegisName: Alchemist_Card_Box + Name: Alchemist Card Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4281,1; getitem 4233,1; getitem 4343,1; getitem 4186,1; getitem 4036,1; + - Id: 13928 + AegisName: Rogue_Card_Box + Name: Rogue Card Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4039,1; getitem 4210,1; getitem 4257,1; getitem 4230,1; getitem 4348,1; + - Id: 13929 + AegisName: Bard_Dancer_Card_Box + Name: Bard Dancer Card Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4297,1; getitem 4234,1; getitem 4178,1; getitem 4381,1; getitem 4252,1; + - Id: 13930 + AegisName: Sage_Card_Box + Name: Sage card box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4382,1; getitem 4258,1; getitem 4325,1; getitem 4208,1; getitem 4327,1; + - Id: 13931 + AegisName: Monk_Card_Box + Name: Monk Card Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4312,1; getitem 4332,1; getitem 4185,1; getitem 4293,1; + - Id: 13932 + AegisName: Sylph_Box + Name: Sylph Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4345,4; + - Id: 13933 + AegisName: Undine_Box + Name: Undine Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4350,4; + - Id: 13934 + AegisName: Salamander_Box + Name: Salamander Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4380,4; + - Id: 13935 + AegisName: Soul_Box + Name: Soul Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4388,4; + - Id: 13936 + AegisName: Noum_Bpx + Name: Gnome Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4335,4; + - Id: 13937 + AegisName: Robo_Eye_Box + Name: Robo Eye Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5325,1; + - Id: 13938 + AegisName: Twin_Ribbon_Box + Name: Maiden's Twin Ribbon Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5187,1; + - Id: 13940 + AegisName: Siege_Tele_Scroll_Box + Name: WoE Teleport Scroll 100 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14591,100; + - Id: 13941 + AegisName: Valentine_Scroll_TW + Name: Taiwan Valentine Scroll + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 13942 + AegisName: Love_Angel_Box_1m + Name: Love Angel Magic Powder Box 30 Days + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14009,1; + - Id: 13943 + AegisName: Squirrel_Box_1m + Name: Squirrel Magic Powder Box 30 Days + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14010,1; + - Id: 13944 + AegisName: Gogo_Box_1m + Name: Gogo Magic Powder Box 30 Days + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14011,1; + - Id: 13945 + AegisName: Br_SwordPackage + Name: Brazil Swordsman Package + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2317,1; getitem 2106,1; getitem 2406,1; getitem 2506,1; getitem 4003,1; getitem 4133,1; getitem 2607,2; getitem 2229,1; getitem 2266,1; + - Id: 13946 + AegisName: Br_MagePackage + Name: Brazil Magician Package + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2322,1; getitem 2102,1; getitem 2104,1; getitem 2504,1; getitem 4003,1; getitem 4077,1; getitem 2607,2; getitem 5027,1; + - Id: 13947 + AegisName: Br_AcolPackage + Name: Brazil Acolyte Package + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2326,1; getitem 2104,1; getitem 2404,1; getitem 2504,1; getitem 4003,1; getitem 4100,1; getitem 2607,2; getitem 2217,1; + - Id: 13948 + AegisName: Br_ArcherPackage + Name: Brazil Archer package + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2331,1; getitem 1716,1; getitem 2406,1; getitem 2504,1; getitem 4064,1; getitem 4102,1; getitem 2607,2; getitem 2285,1; + - Id: 13949 + AegisName: Br_MerPackage + Name: Brazil Merchant Package + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2315,1; getitem 2104,1; getitem 2406,1; getitem 2506,1; getitem 4003,1; getitem 4133,1; getitem 2607,2; getitem 5021,1; + - Id: 13950 + AegisName: Br_ThiefPackage + Name: Brazil Thief Package + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2336,1; getitem 2104,1; getitem 2406,1; getitem 2506,1; getitem 4097,1; getitem 4102,1; getitem 2607,2; getitem 2274,1; + - Id: 13951 + AegisName: Wasteland_Outlaw_Box + Name: Western Outlaw Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13109,604800; + - Id: 13952 + AegisName: Lever_Action_Rifle_Box + Name: Lever Action Rifle Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13170,604800; + - Id: 13953 + AegisName: All_In_One_Ring_Box + Name: All In One Ring Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2741,604800; + - Id: 13954 + AegisName: Spiritual_Tunic_Box + Name: Spiritual Tunic Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2384,604800; + - Id: 13955 + AegisName: Recuperative_Armor_Box + Name: Recuvative Armor Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2385,604800; + - Id: 13956 + AegisName: Shelter_Resistance_Box + Name: Shell Of Resistance Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2132,604800; + - Id: 13957 + AegisName: Sylphid_Manteau_Box + Name: Silf Manteau Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2543,604800; + - Id: 13958 + AegisName: Refresh_Shoes_Box + Name: Refresh Shoes Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2439,604800; + - Id: 13959 + AegisName: Toast_Box + Name: Crunch Toast Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5391,604800; + - Id: 13960 + AegisName: Name_Change_Coupon_Box + Name: Identification Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7623,1; + - Id: 13961 + AegisName: Mojji_Box + Name: Mochi Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 554,5; + - Id: 13962 + AegisName: Deprotai_Doll_Hat_Box + Name: Defolty Doll Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5340,1; + - Id: 13963 + AegisName: Claris_Doll_Hat_Box + Name: Glaris Doll Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5341,1; + - Id: 13964 + AegisName: Sorin_Doll_Hat_Box + Name: Sorin Doll Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5342,1; + - Id: 13965 + AegisName: Tayelin_Doll_Hat_Box + Name: Tailring Doll Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5343,1; + - Id: 13966 + AegisName: Binit_Doll_Hat_Box + Name: Vinit Doll Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5344,1; + - Id: 13967 + AegisName: Debril_Doll_Hat_Box + Name: W Doll Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5345,1; + - Id: 13970 + AegisName: Iron_10_Box + Name: Iron Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 998,10; + - Id: 13971 + AegisName: Steel_10_Box + Name: Steel Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 999,10; + - Id: 13972 + AegisName: Coal_10_Box + Name: Coal Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 1003,10; + - Id: 13973 + AegisName: Poison_Bottle_30_Box + Name: Poison Bottle Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 678,30; + - Id: 13974 + AegisName: TW_Scroll01 + Name: Fisherman Scroll + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 13975 + AegisName: Picture_Diary_Box + Name: Diary Magic Powder Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12304,604800; + - Id: 13976 + AegisName: Mini_Heart_Box + Name: Mini Heart Magic Powder Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12305,604800; + - Id: 13977 + AegisName: Newcomer_Box + Name: Freshman Magic Powder Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12306,604800; + - Id: 13978 + AegisName: Kid_Box + Name: Kid Magic Powder Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12307,604800; + - Id: 13979 + AegisName: Magic_Castle_Box + Name: Magic Magic Powder Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12308,604800; + - Id: 13980 + AegisName: Bulging_Head_Box + Name: JJangu Magic Powder Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12309,604800; + - Id: 13981 + AegisName: Picture_Diary_Box_1m + Name: Diary Magic Powder Box 30 Days + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12304,2592000; + - Id: 13982 + AegisName: Mini_Heart_Box_1m + Name: Mini Heart Magic Powder Box 30 Days + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12305,2592000; + - Id: 13983 + AegisName: Newcomer_Box_1m + Name: Freshman Magic Powder Box 30 Days + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12306,2592000; + - Id: 13984 + AegisName: Kid_Box_1m + Name: Kid Magic Powder Box 30 Days + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12307,2592000; + - Id: 13985 + AegisName: Magic_Castle_Box_1m + Name: Magic Magic Powder Box 30 Days + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12308,2592000; + - Id: 13986 + AegisName: Bulging_Head_Box_1m + Name: JJangu Magic Powder Box 30 Days + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12309,2592000; + - Id: 13987 + AegisName: Ori_Stone_5_Box + Name: Rough Oridecon 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 756,5; + - Id: 13988 + AegisName: Ori_Stone_50_Box + Name: Rough Oridecon 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 756,50; + - Id: 13989 + AegisName: Acidbomb_10_Box + Name: Acid Bomb 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7135,10; getitem 7136,10; + - Id: 13990 + AegisName: Job_Manual50_Box + Name: JOB Battle Manual Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14592,10; + - Id: 13991 + AegisName: Tiger_Mask_Box + Name: Tiger Mask Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5098,1; + - Id: 13992 + AegisName: Cat_Hat_Box + Name: Pussy Cat Bell Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5099,1; + - Id: 13993 + AegisName: Alice_Doll_Box + Name: Alice Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5137,1; + - Id: 13994 + AegisName: Speed_Up_Potion_Box5 + Name: Speed Potion 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12016,5; + - Id: 13995 + AegisName: Speed_Up_Potion_Box10 + Name: Speed Potion 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12016,10; + - Id: 13996 + AegisName: Big_Bun_Box100 + Name: Big Bun 100 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14522,100; + - Id: 13997 + AegisName: Big_Bun_Box500 + Name: Big Bun 500 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14522,500; + - Id: 13998 + AegisName: Giant_Fly_Wing_Box500 + Name: Giant Fly Wing 500 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12212,500; + - Id: 13999 + AegisName: Pill__Box100 + Name: Pill 100 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14523,100; + - Id: 14000 + AegisName: Pill__Box500 + Name: Pill 500 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14523,500; + - Id: 14001 + AegisName: Basic_Siege_Supply_Box + Name: Recruit Siege Supply Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 11503,25; getitem 11504,10; + - Id: 14002 + AegisName: Adv_Siege_Supply_Box + Name: Veteran Siege Supply Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 11503,50; getitem 11504,20; + - Id: 14003 + AegisName: Elite_Siege_Supply_Box + Name: Elite Siege Supply Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 11503,100; getitem 11504,50; + - Id: 14004 + AegisName: Poison_Bottle_10_Box + Name: Poison Bottle 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 678,10; + - Id: 14005 + AegisName: Poison_Bottle_5_Box + Name: Poison Bottle 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 678,5; + - Id: 14006 + AegisName: F_Drooping_W_Kitty_Box + Name: Evolved Drooping Cat Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5372,1; + - Id: 14007 + AegisName: F_Rabbit_Ear_Hat_Box + Name: Evolved Rabbits Headband Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5378,1; + - Id: 14008 + AegisName: F_L_Orc_Hero_Helm_Box + Name: Evolved Helmet Of Orc Hero Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5375,1; + - Id: 14009 + AegisName: F_Love_Angel_Box + Name: Love Angel Magic Powder Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12287,604800; + - Id: 14010 + AegisName: F_Squirrel_Box + Name: Squillroll Magic Powder Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12288,604800; + - Id: 14011 + AegisName: F_Gogo_Box + Name: Gogo Magic Powder Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12289,604800; + - Id: 14012 + AegisName: F_Love_Angel_Box_1m + Name: Love Angel Magic Powder Box 30 Days + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13915,2592000; + - Id: 14013 + AegisName: F_Squirrel_Box_1m + Name: Squillroll Magic Powder Box 30 Days + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13916,2592000; + - Id: 14014 + AegisName: F_Gogo_Box_1m + Name: Gogo Magic Powder Box 30 Days + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13917,2592000; + - Id: 14015 + AegisName: F_Wasteland_Outlaw_Box + Name: Western Outlaw Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13107,604800; + - Id: 14016 + AegisName: F_Lever_Action_Rifle_Box + Name: Lever Action Rifle Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13170,604800; + - Id: 14017 + AegisName: F_All_In_One_Ring_Box + Name: All In One Ring Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2741,604800; + - Id: 14018 + AegisName: F_Spritual_Tunic_Box + Name: Spiritual Tunic Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2384,604800; + - Id: 14019 + AegisName: F_Recuperative_Box + Name: Recuvative Armor Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2385,604800; + - Id: 14020 + AegisName: F_Shelter_Resist_Box + Name: Shell Of Resistance Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2132,604800; + - Id: 14021 + AegisName: F_Sylphid_Manteau_Box + Name: Silf Manteau Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2543,604800; + - Id: 14022 + AegisName: F_Refresh_Shoes_Box + Name: Refresh Shoes Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2439,604800; + - Id: 14023 + AegisName: F_Toast_Box + Name: Crunch Toast Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5391,604800; + - Id: 14024 + AegisName: F_Robo_Eye_Box + Name: Robo Eye Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5325,1; + - Id: 14025 + AegisName: F_Twin_Ribbon_Box + Name: Maiden's Twin Ribbon Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5187,1; + - Id: 14027 + AegisName: F_Fish_Head_Hat_Box + Name: Fish Head Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5380,1; + - Id: 14028 + AegisName: F_Santa_Poring_Hat_Box + Name: SantaPoring Cap Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5381,1; + - Id: 14029 + AegisName: F_Bell_Ribbon_Box + Name: Bell Ribbon Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5382,1; + - Id: 14030 + AegisName: F_Mimic_Scroll_Box5 + Name: Mimic Summoning 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12276,5; + - Id: 14031 + AegisName: F_Disguise_Scroll_Box5 + Name: Disguise Summoning 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12277,5; + - Id: 14032 + AegisName: F_Alice_Scroll_Box5 + Name: Alice Summoning 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12278,5; + - Id: 14033 + AegisName: F_Mimic_Scroll_Box10 + Name: Mimic Summoning 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12276,10; + - Id: 14034 + AegisName: F_Disguise_Scroll_Box10 + Name: Disguise Summoning 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12277,10; + - Id: 14035 + AegisName: F_Alice_Scroll_Box10 + Name: Alice Summoning 10 Box) + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12278,10; + - Id: 14036 + AegisName: F_New_Style_Coupon_Box + Name: New Style Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7622,1; + - Id: 14037 + AegisName: F_Repair_Scroll_Box + Name: Repair Weapon Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14521,5; getitem 1002,5; getitem 998,5; getitem 756,5; getitem 999,5; + - Id: 14038 + AegisName: F_Repair_Scroll_Box10 + Name: Repair Weapon Scroll 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14521,10; getitem 1002,10; getitem 998,10; getitem 756,10; getitem 999,10; + - Id: 14041 + AegisName: F_WOB_Rune_Box5 + Name: Yellow Butterfly Wing 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14582,5; + - Id: 14042 + AegisName: F_WOB_Rune_Box10 + Name: Yellow Butterfly Wing Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14582,10; + - Id: 14043 + AegisName: F_WOB_Schwaltz_Box5 + Name: Green Butterfly Wing 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14583,5; + - Id: 14044 + AegisName: F_WOB_Schwaltz_Box10 + Name: Green Butterfly Wing Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14583,10; + - Id: 14045 + AegisName: F_WOB_Rachel_Box5 + Name: Red Butterfly Wing 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14584,5; + - Id: 14046 + AegisName: F_WOB_Rachel_Box10 + Name: Red Butterfly Wing Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14584,10; + - Id: 14047 + AegisName: F_WOB_Local_Box5 + Name: Blue Butterfly Wing 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14585,5; + - Id: 14048 + AegisName: F_WOB_Local_Box10 + Name: Blue Butterfly Wing Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14585,10; + - Id: 14049 + AegisName: F_Spark_Candy_Box5 + Name: Candy 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14586,5; + - Id: 14050 + AegisName: F_Spark_Candy_Box10 + Name: Candy 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14586,10; + - Id: 14051 + AegisName: F_Dun_Tel_Scroll2_Box5 + Name: Dungeon Teleport Scroll II 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14581,5; + - Id: 14052 + AegisName: F_Dun_Tel_Scroll2_Box10 + Name: Dungeon Teleport Scroll II 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14581,10; + - Id: 14053 + AegisName: F_Little_Angel_Doll_Box + Name: Little Angel Doll Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5324,1; + - Id: 14054 + AegisName: F_Triple_Poring_Hat_Box + Name: Poring 3 Hats Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5255,1; + - Id: 14055 + AegisName: F_Nagan_Box + Name: Refined Nagan Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13407,604800; + - Id: 14056 + AegisName: F_Skewer_Box + Name: Refined Brocca Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1424,604800; + - Id: 14057 + AegisName: F_Survival_Rod_Box + Name: Refined Survivor's Rod Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1628,604800; + - Id: 14058 + AegisName: F_Quadrille_Box + Name: Refined Quadrille Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1537,604800; + - Id: 14059 + AegisName: F_Great_Axe_Box + Name: Refined Great Axe Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1378,604800; + - Id: 14060 + AegisName: F_Bloody_Roar_Box + Name: Refined Bloody Roar Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1273,604800; + - Id: 14061 + AegisName: F_Hardback_Box + Name: Refined Hardcover Book Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1567,604800; + - Id: 14062 + AegisName: F_Fire_Brand_Box + Name: Refined Fireblend Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13408,604800; + - Id: 14063 + AegisName: F_Immaterial_Sword_Box + Name: Refined Immaterial Sword Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13409,604800; + - Id: 14064 + AegisName: F_Unholy_Touch_Box + Name: Refined Unholy Touch Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1274,604800; + - Id: 14065 + AegisName: F_Clack_Of_Servival_Box + Name: Refined Survivor's Manteau Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2535,1209600; + - Id: 14066 + AegisName: F_Masquerade_Box + Name: Refined Masquerade Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5326,1209600; + - Id: 14067 + AegisName: F_Orc_Hero_Helm_Box + Name: Refined Helmet of Orc Hero Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5327,1209600; + - Id: 14068 + AegisName: F_Ear_Of_Devil_Wing_Box + Name: Refined Wing of Diablo Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5328,1209600; + - Id: 14069 + AegisName: F_Dark_Blindfold_Box + Name: Refined Dark Blinder Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5329,1209600; + - Id: 14070 + AegisName: F_K_Drooping_Kitty_Box + Name: Refined Drooping Cat Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5330,1209600; + - Id: 14071 + AegisName: F_Corsair_Box + Name: Refined Corsair Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5331,1209600; + - Id: 14072 + AegisName: F_Bloody_Iron_Ball_Box + Name: Refined Bloodied Shackle Ball Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2710,604800; + - Id: 14073 + AegisName: F_Spiritual_Ring_Box + Name: Refined Spiritual Ring Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2711,604800; + - Id: 14074 + AegisName: F_G_O_I_Box5 + Name: Wine Glass of Illusion 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14538,5; + - Id: 14075 + AegisName: F_G_O_I_Box10 + Name: Glass Of Illusion 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14538,10; + - Id: 14076 + AegisName: F_Shadow_Armor_S_Box5 + Name: Scroll of Shadow Armor 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14539,5; + - Id: 14077 + AegisName: F_Shadow_Armor_S_Box10 + Name: Scroll of Shadow Armor 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14539,10; + - Id: 14078 + AegisName: F_Shadow_Armor_S_Box30 + Name: Scroll of Shadow Armor 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14539,30; + - Id: 14079 + AegisName: F_Holy_Armor_S_Box5 + Name: Scroll of Holy Armor 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14540,5; + - Id: 14080 + AegisName: F_Holy_Armor_S_Box10 + Name: Scroll of Holy Armor 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14540,10; + - Id: 14081 + AegisName: F_Holy_Armor_S_Box30 + Name: Scroll of Holy Armor 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14540,30; + - Id: 14082 + AegisName: FS_Def_Potion_Box10 + Name: Small Defense Potion 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14541,10; + - Id: 14083 + AegisName: FS_Def_Potion_Box30 + Name: Small Physical Defense Potion 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14541,30; + - Id: 14084 + AegisName: FS_Def_Potion_Box50 + Name: Small Physical Defense Potion 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14541,50; + - Id: 14085 + AegisName: FB_Def_Potion_Box10 + Name: Big Defense Potion 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14542,10; + - Id: 14086 + AegisName: FB_Def_Potion_Box30 + Name: Large Physical Defense Potion 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14542,30; + - Id: 14087 + AegisName: FB_Def_Potion_Box50 + Name: Large Physical Defense Potion 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14542,50; + - Id: 14088 + AegisName: FS_Mdef_Potion_Box10 + Name: Small Magic Defense Potion 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14543,10; + - Id: 14089 + AegisName: FS_Mdef_Potion_Box30 + Name: Small Magical Defense Potion 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14543,30; + - Id: 14090 + AegisName: FS_Mdef_Potion_Box50 + Name: Small Magical Defense Potion 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14543,50; + - Id: 14091 + AegisName: FB_Mdef_Potion_Box10 + Name: Big Magic Defense Potion 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14544,10; + - Id: 14092 + AegisName: FB_Mdef_Potion_Box30 + Name: Large Magical Defense Potion 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14544,30; + - Id: 14093 + AegisName: FB_Mdef_Potion_Box50 + Name: Large Magical Defense Potion 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14544,50; + - Id: 14094 + AegisName: F_Flying_Angel_Box + Name: Flying Angel Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5210,1; + - Id: 14095 + AegisName: F_Cat_Hat_Box + Name: Neko Mimi Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5099,1; + - Id: 14096 + AegisName: F_M_F_H_Box + Name: Moonlight Flower Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5214,1; + - Id: 14097 + AegisName: F_Chick_Hat_Box + Name: Baby Chick Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5283,1; + - Id: 14098 + AegisName: F_Pecopeco_Hairband_Box + Name: Peco Peco Hairband Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5286,1209600; + - Id: 14099 + AegisName: F_Red_Glasses_Box + Name: Red Glasses Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5288,1209600; + - Id: 14100 + AegisName: F_Whisper_Mask_Box + Name: Whisper Mask Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5294,1209600; + - Id: 14101 + AegisName: F_Ramen_Hat_Box + Name: Ramen Hat Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5293,1209600; + - Id: 14102 + AegisName: F_Dun_Tele_Scroll1_Box + Name: Dungeon Teleport Scroll 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14527,5; + - Id: 14103 + AegisName: F_Max_Weight_Up_Box + Name: Gym Membership Card Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7776,1; + - Id: 14104 + AegisName: F_S_Life_Potion_Box + Name: Small Life Potion 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14534,10; + - Id: 14105 + AegisName: F_S_Life_Potion_Box30 + Name: Small Life Potion 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14534,30; + - Id: 14106 + AegisName: F_S_Life_Potion_Box50 + Name: Small Life Potion 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14534,50; + - Id: 14107 + AegisName: F_M_Life_Potion_Box + Name: Medium Life Potion 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14535,10; + - Id: 14108 + AegisName: F_M_Life_Potion_Box30 + Name: Large Life Potion 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14535,30; + - Id: 14109 + AegisName: F_M_Life_Potion_Box50 + Name: Large Life Potion 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14535,50; + - Id: 14110 + AegisName: F_Abrasive_Box5 + Name: Abrasive 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14536,5; + - Id: 14111 + AegisName: F_Abrasive_Box10 + Name: Abrasive 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14536,10; + - Id: 14112 + AegisName: F_Regeneration_Box5 + Name: Regeneration Potion 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14537,5; + - Id: 14113 + AegisName: F_Regeneration_Box10 + Name: Regeneration Potion 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14537,10; + - Id: 14114 + AegisName: F_Dun_Tele_Scroll_Box10 + Name: Dungeon Teleport Scroll 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14527,10; + - Id: 14115 + AegisName: F_Infiltrator_Box + Name: Refined Infiltrator Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1267,604800; + - Id: 14116 + AegisName: F_Muramasa_Box + Name: Refined Muramasa Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1173,604800; + - Id: 14117 + AegisName: F_Excalibur_Box + Name: Refined Excalibur Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13401,604800; + - Id: 14118 + AegisName: F_Combat_Knife_Box + Name: Combat Knife Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13021,604800; + - Id: 14119 + AegisName: F_Counter_Dagger_Box + Name: Counter Dagger Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13022,604800; + - Id: 14120 + AegisName: F_Kaiser_Knuckle_Box + Name: Refined Kaiser Knuckle Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1817,604800; + - Id: 14121 + AegisName: F_Mighty_Staff_Box + Name: Refined Mighty Staff Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1623,604800; + - Id: 14122 + AegisName: F_Right_Epsilon_Box + Name: Light Epsilon Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1372,604800; + - Id: 14123 + AegisName: F_Balistar_Box + Name: Refined Ballista Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1728,604800; + - Id: 14124 + AegisName: F_Diary_Of_Great_Sage + Name: Sage's Diary Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1563,604800; + - Id: 14125 + AegisName: F_Asura_Box + Name: Asura Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13023,604800; + - Id: 14126 + AegisName: F_Apple_Of_Archer_Box + Name: Apple of Archer Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5265,1209600; + - Id: 14127 + AegisName: F_Bunny_Band_Box + Name: Bunny Band Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5266,1209600; + - Id: 14128 + AegisName: F_Sahkkat_Box + Name: Refined Sakkat Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5267,1209600; + - Id: 14129 + AegisName: F_Lord_Circlet_Box + Name: Refined Grand Circlet Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5268,1209600; + - Id: 14130 + AegisName: F_Elven_Ears_Box + Name: Elven Ears Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2686,1209600; + - Id: 14131 + AegisName: F_Steel_Flower_Box + Name: Steel Flower Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2687,1209600; + - Id: 14132 + AegisName: F_Critical_Ring_Box + Name: Critical Ring Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2688,604800; + - Id: 14133 + AegisName: F_Earring_Box + Name: Earring Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2689,604800; + - Id: 14134 + AegisName: F_Ring_Box + Name: Ring Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2690,604800; + - Id: 14135 + AegisName: F_Necklace_Box + Name: Necklace Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2691,604800; + - Id: 14136 + AegisName: F_Glove_Box + Name: Glove Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2692,604800; + - Id: 14137 + AegisName: F_Brooch_Box + Name: Brooch Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2693,604800; + - Id: 14138 + AegisName: F_Rosary_Box + Name: Rosary Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2694,604800; + - Id: 14139 + AegisName: F_Safety_Ring_Box + Name: Safety Ring Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2695,604800; + - Id: 14140 + AegisName: F_Vesper_Core_Box01 + Name: Refined Vesper Core 01 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2696,604800; + - Id: 14141 + AegisName: F_Vesper_Core_Box02 + Name: Refined Vesper Core 02 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2697,604800; + - Id: 14142 + AegisName: F_Vesper_Core_Box03 + Name: Refined Vesper Core 03 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2698,604800; + - Id: 14143 + AegisName: F_Vesper_Core_Box04 + Name: Refined Vesper Core 04 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2699,604800; + - Id: 14144 + AegisName: F_Vigorgra_Package1 + Name: Vigorgra Box1 + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12250,2; getitem 12251,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; + - Id: 14145 + AegisName: F_Vigorgra_Package2 + Name: Vigorgra Box2 + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12250,2; getitem 12255,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; + - Id: 14146 + AegisName: F_Vigorgra_Package3 + Name: Vigorgra Box3 + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12252,2; getitem 12253,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; + - Id: 14147 + AegisName: F_Vigorgra_Package4 + Name: Vigorgra Box4 + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12252,2; getitem 12255,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; + - Id: 14148 + AegisName: F_Vigorgra_Package5 + Name: Vigorgra Box5 + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12252,2; getitem 12250,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; + - Id: 14149 + AegisName: F_Vigorgra_Package6 + Name: Vigorgra Box6 + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12250,2; getitem 12251,2; getitem 12208,2; getitem 12215,15; getitem 12217,20; getitem 12211,1; getitem 7621,1; + - Id: 14150 + AegisName: F_Vigorgra_Package7 + Name: Vigorgra Box7 + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12250,4; getitem 12251,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; + - Id: 14151 + AegisName: F_Vigorgra_Package8 + Name: Vigorgra Box8 + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12250,4; getitem 12255,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; + - Id: 14152 + AegisName: F_Vigorgra_Package9 + Name: Start your Journey Pack + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12252,4; getitem 12253,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; + - Id: 14153 + AegisName: F_Vigorgra_Package10 + Name: Siege Mode Pack + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12252,4; getitem 12255,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; + - Id: 14154 + AegisName: F_Vigorgra_Package11 + Name: 1 Hour Survival Pack + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12252,4; getitem 12250,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; + - Id: 14155 + AegisName: F_Vigorgra_Package12 + Name: Weekend Hunting Pack + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12250,4; getitem 12251,4; getitem 12208,4; getitem 12215,30; getitem 12217,40; getitem 12211,2; getitem 7621,2; + - Id: 14156 + AegisName: F_Battle_Manual_Box + Name: Battle Manual Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12208,10; + - Id: 14157 + AegisName: F_Insurance_Package + Name: Insurance Package + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12209,10; + - Id: 14158 + AegisName: F_Bubble_Gum_Box + Name: Bubble Gum Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12210,10; + - Id: 14159 + AegisName: F_Str_Dish_Box + Name: Steamed Tongue Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12202,10; + - Id: 14160 + AegisName: F_Agi_Dish_Box + Name: Steamed Scorpion Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12203,10; + - Id: 14161 + AegisName: F_Int_Dish_Box + Name: Dragon Breath Cocktail Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12204,10; + - Id: 14162 + AegisName: F_Dex_Dish_Box + Name: Hwergelmir's Tonic Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12205,10; + - Id: 14163 + AegisName: F_Luk_Dish_Box + Name: Nine Tail Dish Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12206,10; + - Id: 14164 + AegisName: F_Vit_Dish_Box + Name: Stew Of Immortality Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12207,10; + - Id: 14165 + AegisName: F_Kafra_Card_Box + Name: Kafra Card Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12211,10; + - Id: 14166 + AegisName: F_Giant_Fly_Wing_Box + Name: Giant Fly Wing Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12212,10; + - Id: 14167 + AegisName: F_Neuralizer_Box + Name: Neuralizer Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12213,1; + - Id: 14168 + AegisName: F_Convex_Mirror_Box + Name: Convex Mirror Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12214,10; + - Id: 14169 + AegisName: F_Blessing_10_Scroll_Box + Name: Blessing 10 Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12215,10; + - Id: 14170 + AegisName: F_Inc_Agi_10_Scroll_Box + Name: Increase AGI 10 scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12216,10; + - Id: 14171 + AegisName: F_Aspersio_5_Scroll_Box + Name: Aspersio 5 Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12217,10; getitem 523,10; + - Id: 14172 + AegisName: F_Assumptio_5_Scroll_Box + Name: Assumptio 5 Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12218,10; + - Id: 14173 + AegisName: F_Wind_Walk_10_Scroll_Box + Name: Wind Walk 10 Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12219,10; + - Id: 14174 + AegisName: F_Adrenaline_Scroll_Box + Name: Adrenaline 5 Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12220,10; + - Id: 14175 + AegisName: F_Megaphone_Box + Name: Megaphone 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12221,10; + - Id: 14176 + AegisName: F_Enriched_Elunium_Box + Name: Enriched Elunium Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7619,10; + - Id: 14177 + AegisName: F_Enriched_Oridecon_Box + Name: Enriched Oridecon Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7620,10; + - Id: 14178 + AegisName: F_Token_Of_Siegfried_Box + Name: Token of Siegfried Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7621,10; + - Id: 14179 + AegisName: F_Giant_Fly_Wing_Box50 + Name: Giant Fly Wing 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12212,50; + - Id: 14180 + AegisName: F_Giant_Fly_Wing_Box100 + Name: Giant Fly Wing 100 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12212,100; + - Id: 14181 + AegisName: F_Dex_Dish_Box30 + Name: Hwergelmir's Tonic 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12205,30; + - Id: 14182 + AegisName: F_Dex_Dish_Box50 + Name: Hwergelmir's Tonic 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12205,50; + - Id: 14183 + AegisName: F_Luk_Dish_Box30 + Name: Nine Tail Dish 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12206,30; + - Id: 14184 + AegisName: F_Luk_Dish_Box50 + Name: Nine Tail Dish 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12206,50; + - Id: 14185 + AegisName: F_Inc_Agi_10_Box30 + Name: Increase Agility Scroll 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12216,30; + - Id: 14186 + AegisName: F_Inc_Agi_10_Box50 + Name: Increase Agility Scroll 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12216,50; + - Id: 14187 + AegisName: F_Vit_Dish_Box30 + Name: Stew of Immortality 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12207,30; + - Id: 14188 + AegisName: F_Vit_Dish_Box50 + Name: Stew of Immortality 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12207,50; + - Id: 14189 + AegisName: F_Insurance_Package30 + Name: Life Insurrance 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12209,30; + - Id: 14190 + AegisName: F_Insurance_Package50 + Name: Life Insurrance 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12209,50; + - Id: 14191 + AegisName: F_Convex_Mirror_Box5 + Name: Convex Mirror 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12214,5; + - Id: 14192 + AegisName: F_Convex_Mirror_Box30 + Name: Convex Mirror 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12214,30; + - Id: 14193 + AegisName: F_Blessing10_Box30 + Name: Blessing Scroll 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12215,30; + - Id: 14194 + AegisName: F_Blessing10_Box50 + Name: Lv10 Blessing Scroll Box 50 + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12215,50; + - Id: 14195 + AegisName: F_Adrenaline10_Box30 + Name: Adrenaline Rush Scroll 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12220,30; + - Id: 14196 + AegisName: F_Adrenaline10_Box50 + Name: Adrenaline Rush Scroll 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12220,50; + - Id: 14197 + AegisName: F_Assumptio_5_Box30 + Name: Assumptio Scroll 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12218,30; + - Id: 14198 + AegisName: F_Assumptio_5_Box50 + Name: Lv5 Assumptio Scroll Box 50 + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12218,50; + - Id: 14199 + AegisName: F_Aspersio_5_Box30 + Name: Aspersio Scroll 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12217,30; getitem 523,30; + - Id: 14200 + AegisName: F_Aspersio_5_Box50 + Name: Aspersio Scroll 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12217,50; getitem 523,50; + - Id: 14201 + AegisName: F_Agi_Dish_Box30 + Name: Steamed Scorpion 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12203,30; + - Id: 14202 + AegisName: F_Agi_Dish_Box50 + Name: Steamed Scorpion 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12203,50; + - Id: 14203 + AegisName: F_Wind_Walk10_Box30 + Name: Wind Walk Scroll 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12219,30; + - Id: 14204 + AegisName: F_Wind_Walk10_Box50 + Name: Wind Walk Scroll 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12219,50; + - Id: 14205 + AegisName: F_Int_Dish_Box30 + Name: Dragon Breath Cocktail 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12204,30; + - Id: 14206 + AegisName: F_Int_Dish_Box50 + Name: Dragon Breath Cocktail 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12204,50; + - Id: 14207 + AegisName: F_Battle_Manual_Box1 + Name: Field Manual Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12208,1; + - Id: 14208 + AegisName: F_Battle_Manual_Box5 + Name: Battle Manual 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12208,5; + - Id: 14209 + AegisName: F_Siegfried_Box5 + Name: Token of Siegfried 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7621,5; + - Id: 14210 + AegisName: F_Siegfried_Box20 + Name: Token of Siegfried 20 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7621,20; + - Id: 14211 + AegisName: F_Kafra_Card_Box30 + Name: Kafra Card 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12211,30; + - Id: 14212 + AegisName: F_Kafra_Card_Box50 + Name: Kafra Card 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12211,50; + - Id: 14213 + AegisName: F_Str_Dish_Box30 + Name: Steamed Tongue 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12202,30; + - Id: 14214 + AegisName: F_Str_Dish_Box50 + Name: Steamed Tongue 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12202,50; + - Id: 14215 + AegisName: F_Bubble_Gum_Box1 + Name: Bubble Gum Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12210,1; + - Id: 14216 + AegisName: F_Bubble_Gum_Box5 + Name: Bubble Gum 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12210,5; + - Id: 14217 + AegisName: F_Megaphone_Box1 + Name: Megaphone Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12221,1; + - Id: 14218 + AegisName: F_Megaphone_Box5 + Name: Megaphone 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12221,5; + - Id: 14219 + AegisName: F_Enriched_Elunium_Box5 + Name: Enriched Elunium 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7619,5; + - Id: 14220 + AegisName: F_Enriched_Oridecon_Box5 + Name: Enriched Oridecon 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7620,5; + - Id: 14221 + AegisName: MP_Scroll_Box + Name: Mystical Amplification Scroll 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14593,10; + - Id: 14222 + AegisName: MP_Scroll_Box30 + Name: Mystical Amplification Scroll 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14593,30; + - Id: 14223 + AegisName: MP_Scroll_Box50 + Name: Mystical Amplification Scroll 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14593,50; + - Id: 14224 + AegisName: Quagmire_Scroll_Box + Name: Quagmire Scroll 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14594,10; + - Id: 14225 + AegisName: Quagmire_Scroll_Box30 + Name: Quagmire Scroll 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14594,30; + - Id: 14226 + AegisName: Quagmire_Scroll_Box50 + Name: Quagmire Scroll 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14594,50; + - Id: 14227 + AegisName: Healing_Staff_Box + Name: Healing Staff Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1638,604800; + - Id: 14232 + AegisName: Yggdrasilberry_Box_ + Name: Yggdrasil Berry 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 607,10; + - Id: 14233 + AegisName: Dead_Tree_Branch_Box1 + Name: Dead Branch 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 604,10; + - Id: 14234 + AegisName: Dead_Tree_Branch_Box2 + Name: Dead Branch 25 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 604,25; + - Id: 14235 + AegisName: Field_Manual_Box_2 + Name: Field Manual 2 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12208,2; + - Id: 14236 + AegisName: Steamed_Tongue_Box_20 + Name: Steamed Tongue 20 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12202,20; + - Id: 14237 + AegisName: Steamed_Desert_Scorpions_Box_20 + Name: Steamed Desert Scorpions Box(20) + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12203,20; + - Id: 14238 + AegisName: Stew_Of_Immortality_Box_20 + Name: Immortal Stew 20 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12207,20; + - Id: 14239 + AegisName: Dragon_Breath_Cocktail_Box_20 + Name: Dragon Breath Cocktail 20 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12204,20; + - Id: 14240 + AegisName: Hwergelmir's_Tonic_Box_20 + Name: Hwergelmir's Tonic 20 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12205,20; + - Id: 14241 + AegisName: Nine_Tail_Dish_Box_20 + Name: Nine Tail Dish 20 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 12206,20; + - Id: 14242 + AegisName: Beholder_Ring_Box + Name: Beholder Ring Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 2753,1; + - Id: 14243 + AegisName: Hallow_Ring_Box + Name: Hallow Ring Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 2754,1; + - Id: 14244 + AegisName: Clamorous_Ring_Box + Name: Clamorous Ring Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 2755,1; + - Id: 14245 + AegisName: Chemical_Ring_Box + Name: Chemical Ring Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 2756,1; + - Id: 14246 + AegisName: Insecticide_Ring_Box + Name: Insecticide Ring Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 2757,1; + - Id: 14247 + AegisName: Fisher_Ring_Box + Name: Fisher Ring Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 2758,1; + - Id: 14248 + AegisName: Decussate_Ring_Box + Name: Decussate Ring Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 2759,1; + - Id: 14249 + AegisName: Bloody_Ring_Box + Name: Bloody Ring Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 2760,1; + - Id: 14250 + AegisName: Satanic_Ring_Box + Name: Satanic Ring Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 2761,1; + - Id: 14251 + AegisName: Dragoon_Ring_Box + Name: Dragon Ring Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 2762,1; + - Id: 14252 + AegisName: Beholder_Ring_Box2 + Name: Beholder Ring Box II + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 2753,1; + - Id: 14253 + AegisName: Hallow_Ring_Box2 + Name: Hallow Ring Box II + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 2754,1; + - Id: 14254 + AegisName: Clamorous_Ring_Box2 + Name: Clamorous Ring Box II + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 2755,1; + - Id: 14255 + AegisName: Chemical_Ring_Box2 + Name: Chemical Ring Box II + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 2756,1; + - Id: 14256 + AegisName: Insecticide_Ring_Box2 + Name: Insecticide Ring Box II + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 2757,1; + - Id: 14257 + AegisName: Fisher_Ring_Box2 + Name: Fisher Ring Box II + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 2758,1; + - Id: 14258 + AegisName: Decussate_Ring_Box2 + Name: Decussate Ring Box II + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 2759,1; + - Id: 14259 + AegisName: Bloody_Ring_Box2 + Name: Bloody Ring Box II + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 2760,1; + - Id: 14260 + AegisName: Satanic_Ring_Box2 + Name: Satanic Ring Box II + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 2761,1; + - Id: 14261 + AegisName: Dragoon_Ring_Box2 + Name: Dragon Ring Box II + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 2762,1; + - Id: 14262 + AegisName: Diary_Magic_Powder_Box + Name: Diary Magic Powder Box + Type: Cash + Buy: 20 + Script: | + rentitem 12304,604800; + - Id: 14263 + AegisName: Mini_Heart_Magic_Powder_Box + Name: Mini Heart Magic Powder Box + Type: Cash + Buy: 20 + Script: | + rentitem 12305,604800; + - Id: 14264 + AegisName: Freshman_Magic_Powder_Box + Name: Freshman Magic Powder Box + Type: Cash + Buy: 20 + Script: | + rentitem 12306,604800; + - Id: 14265 + AegisName: Kid_Magic_Powder_Box + Name: Kid Magic Powder Box + Type: Cash + Buy: 20 + Script: | + rentitem 12307,604800; + - Id: 14266 + AegisName: Magic_Magic_Powder_Box + Name: Magic Magic Powder Box + Type: Cash + Buy: 20 + Script: | + rentitem 12308,604800; + - Id: 14267 + AegisName: JJangu_Magic_Powder_Box + Name: JJangu Magic Powder Box + Type: Cash + Buy: 20 + Script: | + rentitem 12309,604800; + - Id: 14268 + AegisName: Diary_Magic_Powder_Box4 + Name: Diary Magic Powder Box + Type: Cash + Buy: 20 + Weight: 10 + - Id: 14269 + AegisName: Mini_Heart_Magic_Powder_Box4 + Name: Mini_Heart_Magic Powder Box + Type: Cash + Buy: 20 + Weight: 10 + - Id: 14270 + AegisName: Freshman_Magic_Powder_Box4 + Name: Freshman Magic Powder Box + Type: Cash + Buy: 20 + Weight: 10 + - Id: 14271 + AegisName: Kid_Magic_Powder_Box4 + Name: Kid Magic Powder Box + Type: Cash + Buy: 20 + Weight: 10 + - Id: 14272 + AegisName: Magic_Magic_Powder_Box4 + Name: Magic Magic Powder Box + Type: Cash + Buy: 20 + Weight: 10 + - Id: 14273 + AegisName: JJangu_Magic_Powder_Box4 + Name: JJangu Magic Powder Box + Type: Cash + Buy: 20 + Weight: 10 + - Id: 14274 + AegisName: Amplification_10_Scroll_Box2 + Name: Mystical Amplification Scroll 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14593,10; + - Id: 14275 + AegisName: Amplification_30_Scroll_Box2 + Name: Mystical Amplification Scroll 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14593,30; + - Id: 14276 + AegisName: Amplification_50_Scroll_Box2 + Name: Mystical Amplification Scroll 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14593,50; + - Id: 14277 + AegisName: Quagmire_10_Scroll_Box2 + Name: Quagmire Scroll 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14594,10; + - Id: 14278 + AegisName: Quagmire_30_Scroll_Box2 + Name: Quagmire Scroll 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14594,30; + - Id: 14279 + AegisName: Quagmire_50_Scroll_Box2 + Name: Quagmire Scroll 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 14594,50; + - Id: 14280 + AegisName: Healing_Staff_Box2 + Name: Healing Staff Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 1638,1; + - Id: 14282 + AegisName: Emperium_Box + Name: Emperium Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 714,1; + - Id: 14283 + AegisName: Marriage_Certificate_Box + Name: Written Oath Of Marriage Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 6026,1; + - Id: 14287 + AegisName: Baricade_Repair_Kit + Name: Barricade Repair Kit + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 1019,30; getitem 999,10; getitem 1011,10; getitem 984,5; + - Id: 14288 + AegisName: Guardian_Stone_Repair_Kit + Name: Guardian Stone Repair Kit + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 984,1; getitem 985,1; getitem 7049,30; getitem 717,5; getitem 716,5; getitem 715,5; + - Id: 14289 + AegisName: Cloth_Dye_Coupon_Box + Name: New Clothing Dye Coupon Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6046,1; + - Id: 14290 + AegisName: Cloth_Dye_Coupon2_Box + Name: Original Clothing Dye Coupon Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6047,1; + - Id: 14291 + AegisName: Cloth_Dye_Coupon3_Box + Name: Clothing Dye Coupon Box + Type: Usable + Weight: 10 + Script: | + getitem 6046,1; + - Id: 14292 + AegisName: Cloth_Dye_Coupon4_Box + Name: Clothing Dye Coupon Box II + Type: Usable + Weight: 10 + Script: | + getitem 6047,1; + - Id: 14296 + AegisName: Angel_Scroll + Name: Angel Scroll + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + - Id: 14297 + AegisName: Devil_Scroll + Name: Devil Scroll + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + - Id: 14300 + AegisName: Mask_Of_Ifrit_Box + Name: Mask Of Ifrit Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 5420,1; + - Id: 14301 + AegisName: Ifrit's_Ear_Box + Name: Ears Of Ifrit Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 5421,1; + - Id: 14304 + AegisName: Scuba_Mask_Box + Name: Scuba Mask Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 5397,1; + - Id: 14314 + AegisName: Phreeoni_Scroll_Box + Name: Phreeoni Scroll Box + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14597,10; + - Id: 14315 + AegisName: GhostringS_Box + Name: Ghostring Scroll Box + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14598,10; + - Id: 14316 + AegisName: July7_Scroll + Name: July7 Scroll + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + - Id: 14317 + AegisName: Bacsojin_Scroll + Name: Bacsojin Scroll + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 14343 + AegisName: Spiked_Scarf_Box + Name: Spiked Scarf Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5462,1; + - Id: 14344 + AegisName: Rainbow_Scarf_Box + Name: Rainbow Scarf Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5463,1; + - Id: 14345 + AegisName: Animal_Scroll + Name: Animal Scroll + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 14349 + AegisName: Mental_Potion20_Box + Name: Mental Potion 20 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 14600,20; + - Id: 14350 + AegisName: Mental_Potion50_Box + Name: Mental Potion 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 14600,50; + - Id: 14351 + AegisName: Tyr's_Blessing20_Box + Name: Tyr's Blessing 20 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 14601,20; + - Id: 14352 + AegisName: Tyr's_Blessing50_Box + Name: Tyr's Blessing 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 14601,50; + - Id: 14363 + AegisName: Heart_Scroll + Name: Heart Scroll + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + - Id: 14375 + AegisName: Holy_Celestial_Axe_Box + Name: Celestial Axe Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 1383,1; + - Id: 14376 + AegisName: Angeling_Pot_Box + Name: Angeling Potion Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12350,1; + - Id: 14377 + AegisName: Shout_Megaphone_Box + Name: Scream Megaphone Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12351,1; + - Id: 14380 + AegisName: Anubis_Helm_Box + Name: Anubis Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5490,1; + - Id: 14393 + AegisName: Almighty_Charm_Box + Name: Universal Amulet Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 7945,1; + - Id: 14408 + AegisName: New_Year_Scroll + Name: New Year Scroll + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + - Id: 14440 + AegisName: Dice_Hat_Box + Name: Dice Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5496,1; + - Id: 14441 + AegisName: King_Tiger_Doll_Hat_Box + Name: King Tiger Doll Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5497,1; + - Id: 14447 + AegisName: Pirate's_Pride_Box + Name: Pirate's Pride Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5501,1; + - Id: 14448 + AegisName: Necromencer's_Hood_Box + Name: Necromancer's Hood Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5502,1; + - Id: 14459 + AegisName: Rabbit_Magic_Hat_Box + Name: Magic Rabbit Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5503,1; + - Id: 14460 + AegisName: China_Wedding_Veil_Box + Name: RO 5th Wedding Anniversary Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5504,1; + - Id: 14461 + AegisName: Asara_Fairy_Hat_Box + Name: Ashura Fairy Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5505,1; + - Id: 14466 + AegisName: Valentine_Pledge_Box + Name: Valentine's Emblem Box + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 14469 + AegisName: Ox_Tail_Scroll + Name: Ox Tail Egg + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 14500 + AegisName: Insurance60 + Name: Life Insurrance Certificate + Type: Usable + Buy: 2 + Weight: 10 + Script: | + sc_start SC_LIFEINSURANCE,3600000,0; + - Id: 14508 + AegisName: Zeny_Scroll + Name: Zeny Pet Egg Scroll + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + - Id: 14509 + AegisName: Light_Center_Pot + Name: Light Concentration Potion + Type: Usable + Buy: 800 + Weight: 20 + Script: | + sc_start SC_ASPDPOTION0,1800000,0; + - Id: 14510 + AegisName: Light_Awakening_Pot + Name: Light Awakening Potion + Type: Usable + Buy: 1500 + Weight: 20 + Jobs: + Alchemist: true + Archer: true + Assassin: true + Blacksmith: true + Crusader: true + Gunslinger: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Monk: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + SuperNovice: true + Swordman: true + Taekwon: true + Thief: true + Wizard: true + EquipLevelMin: 40 + Script: | + sc_start SC_ASPDPOTION1,1800000,0; + - Id: 14511 + AegisName: Light_Berserk_Pot + Name: Light Berserk Potion + Type: Usable + Buy: 3000 + Weight: 20 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Gunslinger: true + Knight: true + Mage: true + Merchant: true + Rogue: true + SoulLinker: true + StarGladiator: true + Swordman: true + Taekwon: true + Wizard: true + EquipLevelMin: 85 + Script: | + sc_start SC_ASPDPOTION2,1800000,0; + - Id: 14512 + AegisName: Meteor_10_Scroll + Name: Meteor Storm Scroll + Type: Delayconsume + Weight: 10 + Script: | + itemskill "WZ_METEOR",10; + - Id: 14513 + AegisName: Storm_10_Scroll + Name: Storm Gust Scroll + Type: Delayconsume + Weight: 10 + Script: | + itemskill "WZ_STORMGUST",10; + - Id: 14514 + AegisName: Vermilion_10_Scroll + Name: Lord of Vermilion Scroll + Type: Delayconsume + Weight: 10 + Script: | + itemskill "WZ_VERMILION",10; + - Id: 14515 + AegisName: Lex_Aeterna_Scroll + Name: Lex Aeterna Scroll + Type: Delayconsume + Weight: 10 + Script: | + itemskill "PR_LEXAETERNA",1; + - Id: 14516 + AegisName: Magnificat_5_Scroll + Name: Magnificat Scroll + Type: Delayconsume + Weight: 10 + Script: | + itemskill "PR_MAGNIFICAT",5; + - Id: 14517 + AegisName: CP_Helm_Scroll + Name: Chemical Protection Helm Scroll + Type: Usable + Weight: 10 + Script: | + unitskilluseid getcharid(3),"AM_CP_HELM",5; + - Id: 14518 + AegisName: CP_Shield_Scroll + Name: Chemical Protection Shield Scrol + Type: Usable + Weight: 10 + Script: | + unitskilluseid getcharid(3),"AM_CP_SHIELD",5; + - Id: 14519 + AegisName: CP_Armor_Scroll + Name: Chemical Protection Armor Scroll + Type: Usable + Weight: 10 + Script: | + unitskilluseid getcharid(3),"AM_CP_ARMOR",5; + - Id: 14520 + AegisName: CP_Weapon_Scroll + Name: Chemical Protection Weapon Scroll + Type: Usable + Weight: 10 + Script: | + unitskilluseid getcharid(3),"AM_CP_WEAPON",5; + - Id: 14521 + AegisName: Repair_Scroll + Name: Repair Weapon Scroll + Type: Usable + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + unitskilluseid getcharid(3),"BS_REPAIRWEAPON",1; + - Id: 14522 + AegisName: Big_Bun + Name: Big Bun + Type: Healing + Weight: 10 + Script: | + percentheal 100,0; + - Id: 14523 + AegisName: Pill_ + Name: Pill + Type: Healing + Weight: 10 + Script: | + percentheal 0,100; + - Id: 14524 + AegisName: Superb_Fish_Slice + Name: Superb Fish Slice + Type: Healing + Weight: 10 + Script: | + percentheal 100,100; + - Id: 14525 + AegisName: Chewy_Ricecake + Name: Chewy Ricecake + Type: Usable + Weight: 10 + Script: | + sc_start SC_ATKPOTION,1800000,10; + - Id: 14526 + AegisName: Oriental_Pastry + Name: Oriental Pastry + Type: Usable + Weight: 10 + Script: | + sc_start SC_MATKPOTION,1800000,10; + - Id: 14527 + AegisName: Dun_Tele_Scroll1 + Name: Dungeon Teleport Scroll + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + callfunc "F_CashDungeon",1; + - Id: 14528 + AegisName: PVP_Tele_Scroll + Name: PVP Teleport Scroll + Type: Usable + Weight: 10 + - Id: 14529 + AegisName: Greed_Scroll + Name: Greed Scroll + Type: Delayconsume + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "BS_GREED",1; + - Id: 14530 + AegisName: Flee_30_Scroll + Name: Evasion Scroll + Type: Usable + Weight: 10 + Script: | + sc_start SC_FLEEFOOD,1800000,30; + - Id: 14531 + AegisName: Accuracy_30_Scroll + Name: Concentration Scroll + Type: Usable + Weight: 10 + Script: | + sc_start SC_HITFOOD,1800000,30; + - Id: 14532 + AegisName: Battle_Manual25 + Name: Field Manual 25% + Type: Usable + Buy: 2 + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Script: | + sc_start SC_EXPBOOST,1800000,25; + - Id: 14533 + AegisName: Battle_Manual100 + Name: Field Manual 100% + Type: Usable + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_EXPBOOST,1800000,100; + - Id: 14534 + AegisName: Small_Life_Potion + Name: Small Life Potion + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_HEAL3; sc_start4 SC_S_LIFEPOTION,600000,-5,5,0,0; + - Id: 14535 + AegisName: Med_Life_Potion + Name: Medium Life Potion + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_HEAL3; sc_start4 SC_L_LIFEPOTION,600000,-7,4,0,0; + - Id: 14536 + AegisName: Abrasive + Name: Abrasive + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_MAGICALATTHIT; sc_start SC_INCCRI,300000,30; + - Id: 14537 + AegisName: Regeneration_Potion + Name: Regeneration Potion + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_LIGHTSPHERE; sc_start SC_INCHEALRATE,1800000,20; + - Id: 14538 + AegisName: Glass_Of_Illusion + Name: Glass of Illusion + Type: Usable + Weight: 10 + Delay: + Duration: 300000 + Status: Reuse_Limit_A + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_STEAL; sc_start SC_INCFLEE2,60000,20; + - Id: 14539 + AegisName: Shadow_Armor_S + Name: Shadow Armor Scroll + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_CLOAKING; sc_start4 SC_ELEMENTALCHANGE,1800000,1,Ele_Dark,1,0; + - Id: 14540 + AegisName: Holy_Armor_S + Name: Holy Armor Scroll + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_BENEDICTIO; sc_start4 SC_ELEMENTALCHANGE,1800000,1,Ele_Holy,1,0; + - Id: 14541 + AegisName: S_Def_Potion + Name: Small Defense Potion + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_GUARD; sc_start SC_DEF_RATE,60000,3; + - Id: 14542 + AegisName: B_Def_Potion + Name: Big Defense Potion + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_GUARD; sc_start SC_DEF_RATE,180000,3; + - Id: 14543 + AegisName: S_Mdef_Potion + Name: Small Magic Defense Potion + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_SPELLBREAKER; sc_start SC_MDEF_RATE,60000,3; + - Id: 14544 + AegisName: B_Mdef_Potion + Name: Big Magic Defense Potion + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_SPELLBREAKER; sc_start SC_MDEF_RATE,180000,3; + - Id: 14545 + AegisName: Battle_Manual_X3 + Name: Field Manual 300% + Type: Usable + Weight: 10 + Script: | + sc_start SC_EXPBOOST,1800000,300; + - Id: 14546 + AegisName: Fire_Cracker_Love + Name: I Love You Firecracker + Type: Usable + Buy: 2 + Weight: 20 + - Id: 14547 + AegisName: Fire_Cracker_Wday + Name: Whiteday Firecracker + Type: Usable + Buy: 2 + Weight: 20 + - Id: 14548 + AegisName: Fire_Cracker_Vday + Name: Valentine's Day Firecracker + Type: Usable + Buy: 2 + Weight: 20 + - Id: 14549 + AegisName: Fire_Cracker_Bday + Name: Birthday Firecracker + Type: Usable + Buy: 2 + Weight: 20 + - Id: 14550 + AegisName: Fire_Cracker_Xmas + Name: Xmas Firecracker + Type: Usable + Buy: 2 + Weight: 20 + - Id: 14551 + AegisName: Str_Dish01_ + Name: Fried Grasshopper Legs + Type: Healing + Buy: 2 + Weight: 10 + Script: | + sc_start SC_STRFOOD,1200000,1; percentheal 5,0; + - Id: 14552 + AegisName: Str_Dish02_ + Name: Seasoned Sticky Webfoot + Type: Healing + Buy: 2 + Weight: 10 + Script: | + sc_start SC_STRFOOD,1200000,2; percentheal 5,0; + - Id: 14553 + AegisName: Str_Dish03_ + Name: Bomber Steak + Type: Healing + Buy: 2 + Weight: 10 + Script: | + sc_start SC_STRFOOD,1200000,3; percentheal 5,0; + - Id: 14554 + AegisName: Int_Dish01_ + Name: Grape Juice Herbal Tea + Type: Healing + Buy: 2 + Weight: 10 + Script: | + sc_start SC_INTFOOD,1200000,1; percentheal 0,5; + - Id: 14555 + AegisName: Int_Dish02_ + Name: Autumn Red Tea + Type: Healing + Buy: 2 + Weight: 10 + Script: | + sc_start SC_INTFOOD,1200000,2; percentheal 0,5; + - Id: 14556 + AegisName: Int_Dish03_ + Name: Honey Herbal Tea + Type: Healing + Buy: 2 + Weight: 10 + Script: | + sc_start SC_INTFOOD,1200000,3; percentheal 0,5; + - Id: 14557 + AegisName: Vit_Dish01_ + Name: Steamed Crab Nippers + Type: Healing + Buy: 2 + Weight: 10 + Script: | + sc_start SC_VITFOOD,1200000,1; percentheal 5,0; + - Id: 14558 + AegisName: Vit_Dish02_ + Name: Assorted Seafood + Type: Healing + Buy: 2 + Weight: 10 + Script: | + sc_start SC_VITFOOD,1200000,2; percentheal 5,0; + - Id: 14559 + AegisName: Vit_Dish03_ + Name: Clam Soup + Type: Healing + Buy: 2 + Weight: 10 + Script: | + sc_start SC_VITFOOD,1200000,3; percentheal 5,0; + - Id: 14560 + AegisName: Agi_Dish01_ + Name: Frog Egg Squid Ink Soup + Type: Healing + Buy: 2 + Weight: 10 + Script: | + sc_start SC_AGIFOOD,1200000,1; percentheal 3,1; + - Id: 14561 + AegisName: Agi_Dish02_ + Name: Smooth Noodle + Type: Healing + Buy: 2 + Weight: 10 + Script: | + sc_start SC_AGIFOOD,1200000,2; percentheal 3,1; + - Id: 14562 + AegisName: Agi_Dish03_ + Name: Tentacle Cheese Gratin + Type: Healing + Buy: 2 + Weight: 10 + Script: | + sc_start SC_AGIFOOD,1200000,3; percentheal 3,1; + - Id: 14563 + AegisName: Dex_Dish01_ + Name: Honey Grape Juice + Type: Healing + Buy: 2 + Weight: 10 + Script: | + sc_start SC_DEXFOOD,1200000,1; percentheal 2,2; + - Id: 14564 + AegisName: Dex_Dish02_ + Name: Chocolate Mousse Cake + Type: Healing + Buy: 2 + Weight: 10 + Script: | + sc_start SC_DEXFOOD,1200000,2; percentheal 2,2; + - Id: 14565 + AegisName: Dex_Dish03_ + Name: Fruit Mix + Type: Healing + Buy: 2 + Weight: 10 + Script: | + sc_start SC_DEXFOOD,1200000,3; percentheal 2,2; + - Id: 14566 + AegisName: Luk_Dish01_ + Name: Fried Monkey Tails + Type: Healing + Buy: 2 + Weight: 10 + Script: | + sc_start SC_LUKFOOD,1200000,1; percentheal 3,2; + - Id: 14567 + AegisName: Luk_Dish02_ + Name: Mixed Juice + Type: Healing + Buy: 2 + Weight: 10 + Script: | + sc_start SC_LUKFOOD,1200000,2; percentheal 3,2; + - Id: 14568 + AegisName: Luk_Dish03_ + Name: Fried Sweet Potato + Type: Healing + Buy: 2 + Weight: 10 + Script: | + sc_start SC_LUKFOOD,1200000,3; percentheal 4,2; + - Id: 14569 + AegisName: Knife_Goblin_Ring + Name: Knife Goblin Ring + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + pet 1122; + - Id: 14570 + AegisName: Flail_Goblin_Ring + Name: Flail Goblin Ring + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + pet 1123; + - Id: 14571 + AegisName: Hammer_Goblin_Ring + Name: Hammer Goblin Ring + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + pet 1125; + - Id: 14572 + AegisName: Holy_Marble + Name: Holy Marble + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + pet 1385; + - Id: 14573 + AegisName: Red_Burning_Stone + Name: Red Burning Stone + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + pet 1382; + - Id: 14574 + AegisName: Skull_Of_Vagabond + Name: Vagabond's Skull + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + pet 1208; + - Id: 14575 + AegisName: Str_Dish05_ + Name: Lutie Lady's Pancake + Type: Healing + Buy: 2 + Weight: 10 + Script: | + sc_start SC_STRFOOD,1200000,5; percentheal 10,0; + - Id: 14576 + AegisName: Int_Dish05_ + Name: Mastela Fruit Wine + Type: Healing + Buy: 2 + Weight: 10 + Script: | + sc_start SC_INTFOOD,1200000,5; percentheal 0,10; + - Id: 14577 + AegisName: Vit_Dish05_ + Name: Spicy Fried Bao + Type: Healing + Buy: 2 + Weight: 10 + Script: | + sc_start SC_VITFOOD,1200000,5; percentheal 10,0; + - Id: 14578 + AegisName: Agi_Dish05_ + Name: Steamed Bat Wing in Pumpkin + Type: Healing + Buy: 2 + Weight: 10 + Script: | + sc_start SC_AGIFOOD,1200000,5; percentheal 6,2; + - Id: 14579 + AegisName: Dex_Dish05_ + Name: Green Salad + Type: Healing + Buy: 2 + Weight: 10 + Script: | + sc_start SC_DEXFOOD,1200000,5; percentheal 5,5; + - Id: 14580 + AegisName: Luk_Dish05_ + Name: Fried Scorpion Tails + Type: Healing + Buy: 2 + Weight: 10 + Script: | + sc_start SC_LUKFOOD,1200000,5; percentheal 5,2; + - Id: 14581 + AegisName: Dun_Tele_Scroll2 + Name: Dungeon Teleport Scroll II + Type: Usable + Weight: 10 + Script: | + callfunc "F_CashDungeon",2; + - Id: 14582 + AegisName: WOB_Rune + Name: Yellow Butterfly Wing + Type: Usable + Weight: 10 + Script: | + callfunc "F_CashCity",1; + - Id: 14583 + AegisName: WOB_Schwaltz + Name: Green Butterfly Wing + Type: Usable + Weight: 10 + Script: | + callfunc "F_CashCity",2; + - Id: 14584 + AegisName: WOB_Rachel + Name: Red Butterfly Wing + Type: Usable + Weight: 10 + Script: | + callfunc "F_CashCity",3; + - Id: 14585 + AegisName: WOB_Local + Name: Blue Butterfly Wing + Type: Usable + Weight: 10 + Script: | + callfunc "F_CashCity",4; + - Id: 14586 + AegisName: Spark_Candy + Name: Jumping Candy + Type: Usable + Weight: 10 + Delay: + Duration: 180000 + Status: Reuse_Limit_B + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + - Id: 14587 + AegisName: Repair_Scroll_ + Name: Equipment Repair Spell Book + Type: Delayconsume + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemskill "BS_REPAIRWEAPON",1; + - Id: 14588 + AegisName: Pty_Blessing_Scroll + Name: Party Blessing 10 Scroll + Type: Delayconsume + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoGuildStorage: true + Script: | + itemskill "CASH_BLESSING",10; + - Id: 14589 + AegisName: Pty_Inc_Agi_Scroll + Name: Party Increase Agi 10 Scroll + Type: Delayconsume + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoGuildStorage: true + Script: | + itemskill "CASH_INCAGI",10; + - Id: 14590 + AegisName: Pty_Assumptio_Scroll + Name: Party Assumptio 5 Scroll + Type: Delayconsume + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoGuildStorage: true + Script: | + itemskill "CASH_ASSUMPTIO",5; + - Id: 14591 + AegisName: Siege_Teleport_Scroll + Name: WoE Teleport Scroll + Type: Usable + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + callfunc "F_CashSiegeTele"; + - Id: 14592 + AegisName: Job_Manual50 + Name: JOB Battle Manual + Type: Usable + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_JEXPBOOST,1800000,50; + - Id: 14593 + AegisName: Magic_Power_Scroll + Name: Mystical Amplification Scroll + Type: Delayconsume + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemskill "HW_MAGICPOWER",10; + - Id: 14594 + AegisName: Quagmire_Scroll + Name: Quagmire Scroll + Type: Delayconsume + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemskill "WZ_QUAGMIRE",5; + - Id: 14595 + AegisName: Unsealed_Magic_Spell + Name: Unsealed Magic Spell + Type: Usable + Script: | + warp "yuno_fild09",255,127; + - Id: 14596 + AegisName: Pierre_Treasurebox + Name: Pierre's Treasure Box + Type: Usable + Weight: 100 + Flags: + Container: true + Script: | + getrandgroupitem(IG_Pierre_Treasurebox),1; getrandgroupitem(IG_Pierre_Treasurebox),1; getrandgroupitem(IG_Pierre_Treasurebox),1; getrandgroupitem(IG_Pierre_Treasurebox),1; getrandgroupitem(IG_Pierre_Treasurebox),1; getrandgroupitem(IG_Pierre_Treasurebox),1; + - Id: 14597 + AegisName: PhreeoniS + Name: Phreeoni Scroll + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start2 SC_ITEMSCRIPT,180000,4121,EFST_FOOD_BASICHIT; + - Id: 14598 + AegisName: GhostringS + Name: Ghostring Scroll + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start2 SC_ITEMSCRIPT,60000,4047,EFST_ARMOR_PROPERTY; + - Id: 14599 + AegisName: Greed_Scroll_C + Name: Greed Scroll + Type: Usable + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 14600 + AegisName: Mental_Potion + Name: Mental Potion + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + - Id: 14601 + AegisName: Tyr's_Blessing + Name: Tyr's Blessing + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + sc_start SC_FLEEFOOD,300000,30; sc_start SC_HITFOOD,300000,30; sc_start SC_ATKPOTION,300000,20; sc_start SC_MATKPOTION,300000,20; + - Id: 14602 + AegisName: TaogunkaS + Name: Tao Gunka Scroll + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start2 SC_ITEMSCRIPT,180000,4302,EFST_MVPCARD_TAOGUNKA; + - Id: 14603 + AegisName: MistressS + Name: Mistress Scroll + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start2 SC_ITEMSCRIPT,180000,4132,EFST_MVPCARD_MISTRESS; + - Id: 14604 + AegisName: Orc_HeroS + Name: Orc Hero Scroll + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start2 SC_ITEMSCRIPT,60000,4143,EFST_MVPCARD_ORCHERO; + - Id: 14605 + AegisName: Orc_LoadS + Name: Orc Lord Scroll + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start2 SC_ITEMSCRIPT,180000,4135,EFST_MVPCARD_ORCLORD; + - Id: 14606 + AegisName: Job_Manual25 + Name: JOB Battle Manual + Type: Usable + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 14607 + AegisName: Luxurious_Dinner_W + Name: Luxurious Western Food + Type: Usable + Buy: 10000 + Weight: 600 + Script: | + sc_start SC_INCALLSTATUS,3600000,3; + - Id: 14608 + AegisName: Luxurious_Dinner_E + Name: Manchu-Han Imperial Feast + Type: Usable + Buy: 20000 + Weight: 1200 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + sc_start SC_INCALLSTATUS,3600000,6; + - Id: 14609 + AegisName: Spoiled_Cuisine + Name: Spoiled Cuisine + Type: Usable + Buy: 5000 + Weight: 300 + Script: | + percentheal 10,10; + - Id: 16134 + AegisName: King_Frog_Hat_Box + Name: Frog King Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5528,1; + - Id: 16135 + AegisName: Evil's_Bone_Hat_Box + Name: Satanic Bone Helm Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5529,1; + - Id: 16247 + AegisName: Dragon_Arhat_Mask_Box + Name: Dragon Arhat Mask Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5565,1; + - Id: 16248 + AegisName: Tiger_Arhat_Mask_Box + Name: Tiger Arhat Mask Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5566,1; + - Id: 16257 + AegisName: Buddah_Scroll + Name: Buddah Scroll + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + - Id: 16258 + AegisName: HD_Bradium_Box5 + Name: HD Bradium 5 Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6226,5; + - Id: 16259 + AegisName: HD_Carnium_Box5 + Name: HD Carnium 5 Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6225,5; + - Id: 16260 + AegisName: HD_Bradium_Box10 + Name: HD Bradium 10 Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6226,10; + - Id: 16261 + AegisName: HD_Carnium_Box10 + Name: HD Carnium 10 Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6225,10; + - Id: 16304 + AegisName: Evil_Incarnation_Disable + Name: Evil Incarnation + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 16371 + AegisName: Tw_Aug_Scroll + Name: Tw Aug Scroll + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + - Id: 16393 + AegisName: HD_Ori_Box5 + Name: HD Oridecon 5 Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6240,5; + - Id: 16394 + AegisName: HD_Ori_Box10 + Name: HD Oridecon 10 Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6240,10; + - Id: 16395 + AegisName: HD_Elu_Box5 + Name: HD Elunium 5 Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6241,5; + - Id: 16396 + AegisName: HD_Elu_Box10 + Name: HD Elunium 10 Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6241,10; + - Id: 16461 + AegisName: Red_Wing_Hat_Box + Name: Red Wing Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + Script: | + getitem 5690,1; + - Id: 16555 + AegisName: Pr_Reset_Stone_Box + Name: Pr Reset Stone Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoGuildStorage: true + - Id: 16677 + AegisName: Universal_Catalog_Gold_Box10 + Name: Universal Catalog Gold 10 Box + Type: Usable + Weight: 10 + Script: | + getitem 12581,10; + - Id: 16678 + AegisName: Universal_Catalog_Gold_Box50 + Name: Universal Catalog Gold 50 Box + Type: Usable + Weight: 10 + Script: | + getitem 12581,50; + - Id: 16679 + AegisName: Universal_Catalog_Gold_Box10_ + Name: Universal Catalog Gold 10 Box + Type: Usable + Weight: 10 + Script: | + getitem 12581,10; + - Id: 16680 + AegisName: Universal_Catalog_Gold_Box50_ + Name: Universal Catalog Gold 50 Box + Type: Usable + Weight: 10 + Script: | + getitem 12581,50; + - Id: 16776 + AegisName: Universal_Catalog_Gold_Box10__ + Name: Universal Catalog Gold 10 Box + Type: Usable + Weight: 10 + Script: | + getitem 12581,10; + - Id: 16777 + AegisName: Universal_Catalog_Gold_Box50__ + Name: Universal Catalog Gold 50 Box + Type: Usable + Weight: 10 + Script: | + getitem 12581,50; + - Id: 17104 + AegisName: HD_Oridecon_50Box + Name: HD Oridecon 50 Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 6240,50; + - Id: 17105 + AegisName: HD_Elunium_50Box + Name: HD Elunium 50 Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 6241,50; + - Id: 22777 + AegisName: Gift_Buff_Set + Name: Gift Buff Set + Type: Usable + Buy: 10 + Weight: 100 + Classes: + Normal: true + Upper: true + Baby: true + Third: true + Third_Upper: true + Third_Baby: true + EquipLevelMin: 1 diff --git a/db/pre-re/item_delay.txt b/db/pre-re/item_delay.txt deleted file mode 100644 index 8e29ab9af8..0000000000 --- a/db/pre-re/item_delay.txt +++ /dev/null @@ -1,58 +0,0 @@ -// Item Delay Database -// -// Structure of Database: -// ,{,} -// -// -// 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,SC_REUSE_LIMIT_MTF // Transformation Scroll(Deviruchi) -// 12659,10000,SC_REUSE_LIMIT_MTF // 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.hpp as MAX_ITEMDELAYS. - -// SC_REUSE_LIMIT_A -14538,300000,SC_REUSE_LIMIT_A //Glass_Of_Illusion - -// SC_REUSE_LIMIT_B -14586,180000,SC_REUSE_LIMIT_B //Spark_Candy - -// SC_REUSE_LIMIT_C -12208,60000,SC_REUSE_LIMIT_C //Battle_Manual - -// SC_REUSE_LIMIT_D -12210,60000,SC_REUSE_LIMIT_D //Bubble_Gum - -// SC_REUSE_LIMIT_E -11522,1000,SC_REUSE_LIMIT_E //Red_Raffle_Sap -11523,2000,SC_REUSE_LIMIT_E //Yellow_Raffle_Sap -11524,3000,SC_REUSE_LIMIT_E //White_Raffle_Sap - -// SC_REUSE_LIMIT_F -607,5000,SC_REUSE_LIMIT_F //Yggdrasil_Berry - -// SC_REUSE_LIMIT_G -608,3000,SC_REUSE_LIMIT_G //Yggdrasil_Seed - -// SC_REUSE_LIMIT_H -11525,5000,SC_REUSE_LIMIT_H //Mora_Hip_Tea - -// SC_REUSE_LIMIT_RECALL -12968,300000,SC_REUSE_LIMIT_RECALL //Emergency_Scroll1 -12969,300000,SC_REUSE_LIMIT_RECALL //Emergency_Scroll2 -12970,300000,SC_REUSE_LIMIT_RECALL //Emergency_Scroll3 - -// 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_ diff --git a/db/pre-re/item_flag.txt b/db/pre-re/item_flag.txt deleted file mode 100644 index 760da451cd..0000000000 --- a/db/pre-re/item_flag.txt +++ /dev/null @@ -1,63 +0,0 @@ -// Flagged Items -// , -// -// : -// 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! -// 32 - Item will not be removed on consumption. Also supports 'itemskill' -// 64 - Item will be displayed with a client side defined drop -// 128 - Item will be displayed with a white pillar drop effect -// 256 - Item will be displayed with a blue pillar drop effect -// 512 - Item will be displayed with a yellow pillar drop effect -// 1024 - Item will be displayed with a purple pillar drop effect -// 2048 - Item will be displayed with a orange pillar drop effect -// 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 -604,1 //Branch_Of_Dead_Tree -12103,1 //Bloody_Dead_Branch -12109,1 //Poring_Box -12024,1 //Red_Pouch_Of_Surprise - -// Item group container -603,2 //Old_Blue_Box -616,2 //Old_Card_Album -617,2 //Old_Violet_Box -618,2 //Worn_Out_Scroll -644,2 //Gift_Box -664,2 //Gift_Box_1 -665,2 //Gift_Box_2 -666,2 //Gift_Box_3 -667,2 //Gift_Box_4 -12023,2 //Giftbox_China -12025,2 //Egg_Boy -12026,2 //Egg_Girl -12038,2 //Lotto_Box04 -12104,2 //Random_Quiver -12105,2 //Set_Of_Taiming_Item -12106,2 //Accessory_Box -12107,2 //Wrapped_Mask -12108,2 //Bundle_Of_Magic_Scroll -12110,2 //First_Aid_Kit -12111,2 //Food_Package -12130,2 //Cookie_Bag -12186,2 //Red_Box -12187,2 //Green_Box -12189,2 //Red_Box_ -12194,2 //Hometown_Gift -12240,2 //Old_Yellow_Box -12244,2 //Old_Gift_Box -12246,2 //Magic_Card_Album -12248,2 //Masquerade_Ball_Box -12281,2 //Tresure_Box_WoE -12286,2 //Masquerade_Ball_Box2 -12334,2 //Cherish_Box -12339,2 //Cherish_Box_Ori -12355,2 //Xmas_Gift -12356,2 //Louise_Costume_Box -12702,2 //Old_Bleu_Box -12714,2 //Easter_Scroll -14596,2 //Pierre_Treasurebox diff --git a/db/pre-re/item_stack.txt b/db/pre-re/item_stack.txt deleted file mode 100644 index 6c66e325d3..0000000000 --- a/db/pre-re/item_stack.txt +++ /dev/null @@ -1,29 +0,0 @@ -// Item Stacking Restriction File -// Prevents an item to be stacked more than x times in given -// inventory types. Generally used by 3rd class related skill items. -// -// Structure of Database: -// ItemID,MaxStackAmount,Type -// -// MaxStackAmount: -// Stack limit for the item. Use 0 to disable a restriction. -// -// Type mask values: -// &1: Character inventory restriction -// &2: Character cart restriction -// &4: Account storage restriction -// &8: Guild storage restriction -// -// Example: -// 512,4,12 // Will not allow more than 4 Apples in storages. - -// Rune Knight -12725,60,1 // Nauthiz Rune -12726,60,1 // Raido Rune -12727,60,1 // Berkana Rune -12728,60,1 // Isa Rune -12730,60,1 // Uruz Rune -12733,60,1 // Hagalaz Rune - -// Arch Bishop -12333,3,1 // Ancilla diff --git a/db/pre-re/item_trade.txt b/db/pre-re/item_trade.txt deleted file mode 100644 index 0ff39baac4..0000000000 --- a/db/pre-re/item_trade.txt +++ /dev/null @@ -1,1792 +0,0 @@ -// Item Trade Restrictions Database -// Defines special trade rules for individual items. -// -// Structure of Database: -// Item ID, TradeMask,Group Level Override -// -// Legend for 'TradeMask' field (bitmask): -// 1 - item can't be dropped -// 2 - item can't be traded (nor vended) -// 4 - wedded partner can override restriction 2 -// 8 - item can't be sold to npcs -// 16 - item can't be placed in the cart -// 32 - item can't be placed in the storage -// 64 - item can't be placed in the guild storage -// 128 - item can't be attached to mail -// 256 - item can't be auctioned -// -// Example: -// 1161,67,50 -// 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. - -// Wedding Related items -2634,507,100 // Wedding Ring -2635,507,100 // Wedding Ring - -// "2005 The Sign" related items -7177,507,100 // Crumb of Sobbing Starlight -7178,507,100 // Sobbing Starlight -7304,507,100 // Witch's Spell Scroll -7305,507,100 // Symbol of the Nine Realms -7306,507,100 // Piece of Spirit -7307,507,100 // Spiritual Whispers -7308,507,100 // Witch's Tonic -7309,507,100 // Crow Wing -2642,507,100 // Serin's Gold Ring -2644,507,100 // The Sign -7314,507,100 // The Sign -7025,475,100 // Lucifer's Lament - -// "2nd Anniversary Event" items -// "Eye of Hellion" items -2647,507,100 // Nile Rose -7332,507,100 // Complete Tablet -7333,507,100 // Prontera Tablet -7334,507,100 // Payon Tablet -7335,507,100 // Morocc Tablet -7336,507,100 // Geffen Tablet -7339,507,100 // Commemorative Travel Card -5132,472,100 // Angeling Hat - -// "Main Quest"/"Danilion's Request" items -7416,475,100 // Letter of Recommendation -7417,475,100 // Written Request(A) -7418,475,100 // Written Request(B) - -// PVP Item -7420,498,100 // Skull - -// 10.3 Quest items -// * "Gaebolg family Curse" items -7431,499,100 // Pile of Books -7432,507,100 // Leather Pouch -// * "Thanatos Tower" items -7421,499,100 // Red Key -7422,499,100 // Yellow Key -7423,499,100 // Blue Key -7424,499,100 // Green Key -7425,499,100 // Black Key -7426,499,100 // Red Charm Stone -7427,499,100 // Yellow Charm Stone -7428,499,100 // Blue Charm Stone -7429,499,100 // Green Charm Stone -7430,499,100 // Black Charm Stone - -// Chinese New Year -7484,507,100 // Symbol of a Brave Warrior -7485,507,100 // Cloud General -7486,507,100 // Wind General - -// "Kiel Hyre's Cottage" Quest related items -7487,507,100 // Culinary Wine -7488,507,100 // Delivery Package -7489,507,100 // Cottage Key -7490,507,100 // Letter to Elly -7491,507,100 // Steel Box -7492,507,100 // Yellow Keycard -7493,507,100 // Golden Key -7494,507,100 // Luxurious Button -7495,507,100 // Blue Keycard -7496,507,100 // Red Keycard -7497,507,100 // Metal Fragment -7498,507,100 // Rosimier Mansion Keys -7499,507,100 // Family Portrait -7500,507,100 // Woman's Portrait -7501,507,100 // K.H's Letter -7502,507,100 // James's Note -7503,507,100 // Man's Portrait -7504,507,100 // Power Device -7505,507,100 // Toy Key -7506,499,100 // Black Keycard -7508,507,100 // Allysia's Ring -7509,475,100 // Luxurious Keycard -7516,499,100 // Green Keycard - -// Hugel Race Track token -7515,499,100 // Prize Medal - -// Chinese ????? related items -7518,499,100 // Women's Medal -2668,499,100 // Woman Glory -7525,499,100 // Summer Festival Ticket -7341,507,100 // Old Pendant - -// Lighthalzen Quest items -// * Schwarzwald Trilogy Quest items -7342,507,100 // File Folder -7343,507,100 // Sealed File Folder -7344,507,100 // Shinokas Case File -7346,507,100 // Ymir's Heart Piece -7349,507,100 // Archive Permit -// * Friendship Quest(?) Items -7351,507,100 // Friend's Diary - -// ??? Indonesian Event -7527,506,100 // Book About True Life -12142,506,100 // Book of Magic - -// "2006 USA 3rd Anniversary" related items -7530,507,100 // Travel Brochure [Amatsu] -7531,507,100 // Travel Brochure [Kunlun] -7532,507,100 // Travel Brochure [Luoyang] -7533,507,100 // Travel Brochure [Ayothaya] -7534,507,100 // Amatsu Completed Photo Album -7535,507,100 // Kunlun Completed Photo Album -7536,507,100 // Luoyang Completed Photo Album -7537,507,100 // Ayothaya Completed Photo Album - -// Poring Coin items -7538,499,100 // Sand for Work -7539,499,100 // Poring Coin - -// Brazillian Event items -7547,499,100 // Soccer Ball -7548,499,100 // Soccer Shoes -7549,499,100 // Brazilian Flag -7550,499,100 // 6.13 Ticket -7551,499,100 // 6.18 Ticket -7552,499,100 // 6.22 Ticket - -// Taiwan Besark's Day Event items -7553,499,100 // Lotus Flower -7554,499,100 // Striped Candle -7555,499,100 // Green Incense - -// Taiwan 'Pink Yearning' Event items -7556,475,100 // Longing Heart -7557,475,100 // Invitation Letter -7558,475,100 // Invitation Ticket -7559,475,100 // Key to the Secret Garden -2670,475,100 // Ring of Longing -2358,73,100 // Angel's Dress - -// India Father's Day Event items -5154,475,100 // Father's Sunglasses -5155,475,100 // Father's White Moustache -5156,475,100 // Father's Mask - -// Indonesia Jewel Event items -7575,507,100 // Red Jewel -7576,507,100 // Blue Jewel -7577,499,100 // Yellow Jewel - -// Rachel Quest items -// * Aruna First (Katullanux quest) -7569,475,100 // Wind Hammer -7572,475,100 // Ashy Necklace -7573,475,100 // Sparkling Necklace - -// 2006 Chinese Event items -7579,499,100 // Silk Handkerchief of Zhi Nu - -// Taiwan 4th Anniversary Memorial items -7583,499,100 // Evil Mind -7584,499,100 // Guard's First Proof -7585,499,100 // Guard's Second Proof -7586,499,100 // Guard's Third Proof -7587,499,100 // Guard's Fourth Proof -2673,507,100 // Warrior's Shining Ring -1533,507,100 // Warrior's Balmung -13020,507,100 // Warrior's Balmung - -// Vietnam Event item -7588,499,100 // IPOD Coupon - -// 2006 Brazilian 2nd Anniversary items -7603,499,100 // RO Party Invitation Ticket -5201,499,100 // Party Hat - -// 2006 Indonesia Honor Ring item -2674,507,100 // Ring of Honor - -// 2006 Korean Harvest Moon Day Event item -12199,507,100 // Scroll of Magic - -// 2006 Indonesia Event -7614,499,100 // Wrapping Paper -7618,499,100 // Monster Crystal -2676,507,100 // Hunter's Earring - -// Mercenary scrolls -12153,499,100 // Bowman Scroll 1 -12154,499,100 // Bowman Scroll 2 -12155,499,100 // Bowman Scroll 3 -12156,499,100 // Bowman Scroll 4 -12157,499,100 // Bowman Scroll 5 -12158,499,100 // Bowman Scroll 6 -12159,499,100 // Bowman Scroll 7 -12160,499,100 // Bowman Scroll 8 -12161,499,100 // Bowman Scroll 9 -12162,499,100 // Bowman Scroll 10 -12163,499,100 // Fencer Scroll 1 -12164,499,100 // Fencer Scroll 2 -12165,499,100 // Fencer Scroll 3 -12166,499,100 // Fencer Scroll 4 -12167,499,100 // Fencer Scroll 5 -12168,499,100 // Fencer Scroll 6 -12169,499,100 // Fencer Scroll 7 -12170,499,100 // Fencer Scroll 8 -12171,499,100 // Fencer Scroll 9 -12172,499,100 // Fencer Scroll 10 -12173,499,100 // Spearman Scroll 1 -12174,499,100 // Spearman Scroll 2 -12175,499,100 // Spearman Scroll 3 -12176,499,100 // Spearman Scroll 4 -12177,499,100 // Spearman Scroll 5 -12178,499,100 // Spearman Scroll 6 -12179,499,100 // Spearman Scroll 7 -12180,499,100 // Spearman Scroll 8 -12181,499,100 // Spearman Scroll 9 -12182,499,100 // Spearman Scroll 10 - -// Indonesia 4 Annual Events -2368,467,100 // Golden Armor -2427,467,100 // Golden Shoes -2704,467,100 // Golden Accessories -2705,467,100 // Golden Accessories -5295,467,100 // Golden Bandana -7863,467,100 // Special Gold - -// Thailand Event-Environment Day Items -7865,499,100 // Gold Pouch -7866,499,100 // Certificate - -// 11.2 Quest items -// * "Thor Volcano Base" items -7759,507,100 // Geologist's Report - -// USA 4th Anniversary Event Items -5305,475,100 // Pirate Dagger -5373,73,100 // Dark Randgris Helm -7773,499,100 // Wat Badge -7875,467,100 // Pirate Treasure - -// Moscovia Quest Items ----- -2429,499,100 // Iron Boots -2430,499,100 // Iron Boots -7876,499,100 // Golden Key -7877,499,100 // Red Ring -7878,499,100 // Lusalka's Hair -7879,499,100 // Golden Thread -7880,499,100 // Baba Yaga's Silver Spoon -7881,499,100 // Mystery Magic Book -7882,499,100 // Sharp Branch -7883,499,100 // Wooden Flute - -// Indonesian Red Bandana Hair Band -5320,475,100 // Champion Wreath - -// Malaysia/Singapore Event Items -2708,475,100 // Chinese Handicraft -5805,475,100 // Victorious Coronet -7884,475,100 // Jade Plate -7885,475,100 // Sacred Arrow -12704,475,100 // Elixir of Life -12705,475,100 // Noble Nameplate - -// Compensation Items Coupon -7784,475,100 // Free Coupon 1 -7785,475,100 // Free Coupon 2 -7786,475,100 // Free Coupon 3 -7787,475,100 // Free Coupon 4 -7788,475,100 // Free Coupon 5 -7789,475,100 // Free Coupon 6 -7790,475,100 // Free Coupon 7 -7791,475,100 // Free Coupon 8 - -// Fate Crow Quest Items -7794,475,100 // The Crow of Destiny - -// Russian Golden Apple Event Items -//5322,475,100 // Kerchief -7793,475,100 // Golden Apple -7800,475,100 // Golden Charm Apple - -// Taiwan Medicine of Fantasy -12259,507,100 // Miracle Tonic -12261,507,100 // Leap of Fantasy - -// 2007 Summer Event Items -7801,499,100 // Girl's Letter -7802,499,100 // Signature Notebook - -// Sakray Test items -1177,475,100 // Muramash -1272,475,100 // Scratcher -1423,475,100 // Pole XO -1536,475,100 // Good Morning Star -1566,475,100 // Diary Of Great Basil -1627,475,100 // Staffy -1735,475,100 // Kkakkung -1921,475,100 // Gun Moon Gom -1975,475,100 // Queen Is Whip -2127,475,100 // Secular Mission -2370,475,100 // Used Mage Coat -2431,475,100 // Valley Shoes -2534,475,100 // Ruffler -5323,475,100 // Misstrance Crown -13029,475,100 // Prinsense Knife -13406,475,100 // Edger - -// Taiwan ??? -2713,507,100 // Certificate - -// Satan Morocc -7820,507,100 // Piece of Morocc Skin - -// Vietnam Independence Day -5806,475,100 // Poet Natalie's Hat - -// PC-Cafe Authoritative Badge -12262,507,100 // Authoritative Badge -12263,475,100 // Field Manual -12264,475,100 // Bubble Gum -12265,475,100 // Life Insurrance - -// Morocc Continental Guard Certificate -7826,507,100 // Continental Guard Paper - -// Harvest Moon Day PC Items -12266,507,100 // Sesame Pastry -12267,507,100 // Honey Pastry -12268,507,100 // Rainbow Cake - -// Satan Morocc (Episode 12) -2730,467,100 // Seal of Continental Guard -2731,467,100 // Rune Spellstone -2732,467,100 // Death Loop - -// Episode 12 -1638,507,100 // Staff Of Healing -2438,467,100 // Paw Of Cat -2720,499,100 // Medal of Honor -2721,499,100 // Medal of Honor -2722,499,100 // Medal of Honor -2723,499,100 // Medal of Honor -2724,499,100 // Medal of Honor -2725,499,100 // Medal of Honor -2738,507,100 // Shiny Coin -2739,507,100 // Ordinary Coin -2740,507,100 // Rusty Coin -2751,467,100 // Academy Of Badge -2752,507,100 // Praccsinos -5357,475,100 // Wings Of Victory -5368,475,100 // White Wing -5369,475,100 // Dark Wing -5386,384,100 // Ayam -5394,507,100 // Bubblegum -5812,507,100 // Hat Of Expert -6000,475,100 // Ashes of Darkness -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 // Big Fan Of Magic -7623,507,100 // Ticket Of Identification - -// Falicious Okolnir -7839,499,100 // Crystal Key -7840,507,100 // Valkyrie's Gift - -// "St. Patrick's Day (2008)" Quest related items -12715,507,100 // Black Treasure Box - -// Battleground Rewards (Tierra Gorge/Flavius) -1183,467,100 // Brave Assaulter's Katzbalger -1184,467,100 // Valorous Assaulter's Katzbalger -1279,467,100 // Brave Carnage Katar -1280,467,100 // Valorous Carnage Katar -1379,467,100 // Valorous Insane Battle Axe -1380,467,100 // Brave Insane Battle Axe -1425,467,100 // Assaulter Spear -1482,467,100 // Assaulter Lance -1542,467,100 // Valorous Battlefield Morning Star -1543,467,100 // Brave Battlefield Morning Star -1574,467,100 // Brave Battle Strategy Book -1575,467,100 // Valorous Battle Strategy Book -1632,467,100 // Warlock's Magic Wand -1633,467,100 // Warlock's Battle Wand -1634,467,100 // Strong Recovery Wand -1635,467,100 // Speedy Recovery Wand -1738,467,100 // Valorous Battle CrossBow -1739,467,100 // Brave Battle CrossBow -1823,467,100 // Valorous Battle Fist -1824,467,100 // Brave Battle Fist -1923,467,100 // Valorous Battlefield Guitar -1924,467,100 // Brave Battlefield Guitar -1977,467,100 // Valorous Battle Lariat -1978,467,100 // Brave Battle Lariat -2376,467,100 // Assaulter Plate -2377,467,100 // Elite Engineer Armor -2378,467,100 // Assassin Robe -2379,467,100 // Warlock's Battle Robe -2380,467,100 // Medic's Robe -2381,467,100 // Elite Archer Suit -2382,467,100 // Elite Shooter Suit -2435,467,100 // Battle Greaves -2436,467,100 // Combat Boots -2437,467,100 // Battle Boots -2538,467,100 // Captain's Manteau -2539,467,100 // Commander's Manteau -2540,467,100 // Sheriff's Manteau -2733,467,100 // Sheriff Badge -7828,467,100 // Bravery Badge -7829,467,100 // Valor Badge -13036,467,100 // Brave Assassin's Damascus -13037,467,100 // Valorous Assassin's Damascus -13108,467,100 // Soldier Revolver -13171,467,100 // Soldier Rifle -13172,467,100 // Soldier Gatling Gun -13173,467,100 // Soldier Shotgun -13174,467,100 // Soldier Grenade Launcher -13305,467,100 // Brave Huuma Front Shuriken -13306,467,100 // Valorous Huuma Front Shuriken -13410,467,100 // Valorous Gladiator Blade -13411,467,100 // Brave Gladiator Blade - -// "Valentine's Day (2009)" Event related items -5817,507,100 // Valentine Pledge -14466,507,100 // Valentine's Emblem Box - -// Ayo_event 20090303 -7950,499,100 // Ayothaya Fest Ticket - -// Episode 13.1 -6039,507,100 // Piece of Fish -6048,507,100 // Unidentified Mineral -6051,499,100 // Gray Hollow - -// Battleground Rewards (Krieger Von Midgard) -1187,499,100 // Glorious Claymore -1281,499,100 // Glorious Bloody Roar -1282,499,100 // Glorious Jamadhar -1310,499,100 // Glorious Cleaver -1382,499,100 // Glorious Two-Handed Axe -1426,499,100 // Glorious Spear -1486,499,100 // Glorious Lance -1546,499,100 // Glorious Morning Star -1576,499,100 // Glorious Tablet -1577,499,100 // Glorious Apocalypse -1640,499,100 // Glorious Arc Wand -1641,499,100 // Glorious Cure Wand -1743,499,100 // Glorious Hunter Bow -1826,499,100 // Glorious Claw -1827,499,100 // Glorious Fist -1927,499,100 // Glorious Guitar -1981,499,100 // Glorious Lariat -2002,499,100 // Glorious Destruction Staff -2394,499,100 // Glorious Suit -2395,499,100 // Glorious Popularized Suit -2396,499,100 // Glorious Mass-Production Suit -2444,499,100 // Glorious Shoes -2445,499,100 // Glorious Popularized Shoes -2446,499,100 // Glorious Mass-Production Shoes -2549,499,100 // Glorious Muffler -2772,499,100 // Glorious Ring -2773,499,100 // Glorious Mass-Production Ring -2774,499,100 // Glorious Popularized Ring -13042,499,100 // Glorious Gladius -13110,499,100 // Glorious Pistol -13176,499,100 // Glorious Rifle -13177,499,100 // Glorious Gatling Gun -13178,499,100 // Glorious Shotgun -13179,499,100 // Glorious Grenade Launcher -13307,499,100 // Glorious Shuriken -13416,499,100 // Glorious Flamberge -13417,499,100 // Glorious Rapier -13418,499,100 // Glorious Holy Avenger - -// Episode 13.2 -6074,499,100 // Bazett's Order -6075,507,100 // Crystalized Teardrop -6076,507,100 // Portable Toolbox -6077,507,100 // Rough Mineral -6078,507,100 // Stone Fragment -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 -12342,475,100 // Manuk's Opportunity -12343,475,100 // Manuk's Courage -12344,475,100 // Pinguicula's Fruit Jam -12345,475,100 // Luciola's Honey Jam -12348,475,100 // Manuk's Faith -12349,475,100 // Cornus' Tears - -// New Novice Training Grounds Equipment -1381,499,100 // Novice Battle Axe -1545,499,100 // Novice Mace -1639,499,100 // Novice Rod -1742,499,100 // Novice Composite Bow -2393,499,100 // Novice Adventurer's Suit -2819,499,100 // Swordsman Manual -2820,499,100 // Thief Manual -2821,499,100 // Acolyte Manual -2822,499,100 // Archer Manual -2823,499,100 // Merchant Manual -2824,499,100 // Mage Manual -12323,507,100 // Novice Fly Wing -12324,507,100 // Novice Butterfly Wing -12325,507,100 // Novice Magnifier -13040,499,100 // Novice Cutter -13041,499,100 // Novice Main Gauche -13415,499,100 // Novice Falchion - -// Eden Group -1192,499,100 // Eden Slayer I -1193,499,100 // Eden Slayer II -1650,499,100 // Eden Staff I -1651,499,100 // Eden Staff II -1747,499,100 // Eden Bow I -1748,499,100 // Eden Bow II -2456,499,100 // Eden Team Boots I -2457,499,100 // Eden Team Boots II -2458,499,100 // Eden Team Boots III -2560,499,100 // Eden Team Manteau I -5583,499,100 // Eden Team Hat I -6218,507,100 // Delivery_Daishin_Box -6219,507,100 // Eden Group Mark -13050,499,100 // Eden Dagger I -13051,499,100 // Eden Dagger II -13112,499,100 // Eden Revlover I -13113,499,100 // Eden Revlover II -13423,499,100 // Eden Sabre I -13424,499,100 // Eden Sabre II -15009,499,100 // Eden Team Uniform I -15010,499,100 // Eden Team Uniform II -15011,499,100 // Eden Team Uniform III -16004,499,100 // Eden Mace I -16005,499,100 // Eden Mace II - -// * Third Job-related -1703,507,100 // Bow -2794,507,100 // Magic Stone Ring -2795,499,100 // Green Apple Ring -2796,507,100 // Rocks -2797,507,100 // Rocks -2798,499,100 // Will Of Exhausted Angel -6121,507,100 // Makeover Brush -6122,507,100 // Paint Brush -6124,507,100 // Wolf Flute -6151,499,100 // Giant Bradium Fragment -6152,499,100 // Glittering Crystal -6153,507,100 // Special Exchange Ticket -6154,499,100 // Broken Horn Pipe -6156,499,100 // Approval Report -6266,507,100 // Key Of Deception -6267,507,100 // Key Of Illusion -6268,507,100 // Key Of Gaiety -6269,507,100 // A Master's Blush -6270,499,100 // A Picture Of Minstrel Song -6271,499,100 // Receipt -6272,507,100 // Experiment Seed -6273,507,100 // Seed For Experiment -6274,507,100 // A Piece Of Cloth Of A Saint -6275,507,100 // Shield Of King -6276,507,100 // Clear Reagent -6277,507,100 // Red Reagent -6278,507,100 // Black Reagent -12258,499,100 // Bomb Poring Box -12333,507,100 // Ancilla -12384,499,100 // Rainbow Ruby -12385,499,100 // Rainbow Ruby -12386,499,100 // Rainbow Ruby -12387,499,100 // Rainbow Ruby -12388,507,100 // Rhydo Runestone For Apprentice -12389,507,100 // Pertz Runestone For Apprentice -12390,507,100 // Verkana Runestone For Apprentice -12725,475,100 // Nauthiz Rune -12726,475,100 // Raido Rune -12727,475,100 // Berkana Rune -12728,475,100 // Isa Rune -12729,475,100 // Othila Rune -12730,475,100 // Uruz Rune -12731,475,100 // Thurisaz Rune -12732,475,100 // Wyrd Rune -12733,475,100 // Hagalaz Rune - -// Brasilis -6237,507,100 // Guarana Fruit - -// Cash Shop Related Items -1173,507,100 // Muramasa -1190,507,100 // Claymore -1267,507,100 // Infiltrator -1283,507,100 // Katar Of Speed -1286,507,100 // Jamadhar -1312,507,100 // Orcish Axe -1372,507,100 // Light Epsilon -1383,457,100 // Celestial Axe -1419,507,100 // Pole Axe -1427,507,100 // Spear Of Excellent -1430,507,100 // Pike -1487,507,100 // Lance -1547,507,100 // Mace Of Madness -1563,507,100 // Sage's Diary -1578,507,100 // Book Of Prayer -1580,507,100 // Giant Encyclopedia -1623,507,100 // Mighty Staff -1642,507,100 // Staff Of Darkness -1728,507,100 // Ballista -1744,507,100 // Bow Of Evil -1817,507,100 // Kaiser Knuckle -1828,507,100 // Monk Knuckle -1829,507,100 // Fist -1929,507,100 // Guitar -1982,507,100 // Phenomena Whip -1983,507,100 // Rante Whip -2132,507,100 // Shell Of Resistance -2369,507,100 // Freyja Overcoat -2384,507,100 // Spiritual Tunic -2385,507,100 // Recuperative Armor -2439,507,100 // Refresh Shoes -2543,507,100 // Sylphid Manteau -2686,507,100 // Elven Ears -2687,507,100 // Steel Flower -2688,507,100 // Critical Ring -2689,507,100 // Earring -2690,507,100 // Ring -2691,507,100 // Necklace -2692,507,100 // Glove -2693,507,100 // Brooch -2694,507,100 // Rosary -2695,507,100 // Safety Ring -2696,507,100 // Vesper Core 01 -2697,507,100 // Vesper Core 02 -2698,507,100 // Vesper Core 03 -2699,507,100 // Vesper Core 04 -2734,499,100 // Directive -2735,499,100 // Directive -2741,507,100 // All In One Ring -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 // Fischer Ring -2759,507,100 // Decussate Ring -2760,507,100 // Bloody Ring -2761,507,100 // Satanic Ring -2762,507,100 // Dragon Ring -5098,73,100 // Tiger Mask -5210,73,100 // Flapping Angel Wing -5226,73,100 // Mini Propeller -5227,475,100 // Red Deviruchi Hat -5228,475,100 // Gray Deviruchi Hat -5229,475,100 // Brown Deviruchi Hat -5230,475,100 // Gray Drooping Cat -5231,475,100 // Brown Drooping Cat -5232,475,100 // Pink Drooping Cat -5233,475,100 // Blue Drooping Cat -5234,475,100 // Yellow Drooping Cat -5235,475,100 // Brown Beanie -5236,475,100 // Blue Beanie -5237,475,100 // Pink Beanie -5238,475,100 // Red Mage Hat -5239,475,100 // Gray Mage Hat -5240,475,100 // Brown Mage Hat -5241,475,100 // Blue Mage Hat -5242,475,100 // Yellow Mage Hat -5263,73,100 // Pagdayaw -5265,507,100 // Apple of Archer -5266,507,100 // Bunny Band -5267,507,100 // Sakkat -5268,507,100 // Grand Circlet -5277,73,100 // Yellow Bandana -5283,73,100 // Chick Hat -5286,73,100 // Pecopeco Hairband -5288,73,100 // Red Glasses -5293,73,100 // Ramen Hat -5294,73,100 // Whisper Mask -5313,73,100 // Diadem -5314,73,100 // Hockey Mask -5315,73,100 // Observer -5324,73,100 // Little Angel Doll -5372,73,100 // Koneko Hat -5374,73,100 // Gigantic Majestic Goat -5375,73,100 // Orc Hero Headdress -5376,73,100 // Flying Evil Wing -5377,73,100 // Gentleman's Pipe -5378,73,100 // Bunny Top Hat -5380,73,100 // Fish Head Hat -5381,73,100 // Santa Poring Hat -5382,73,100 // Bell Ribbon -5391,507,100 // Toast -5420,73,100 // Mask Of Ifrit -5421,73,100 // Ears Of Ifrit -5462,457,100 // Spiked Scarf -5463,457,100 // Rainbow Scarf -5502,457,100 // Necromancer's Hood -5503,73,100 // Magic Rabit Hat -5505,73,100 // Asara Fairy Hat -5529,457,100 // Satanic Bone Helm -5596,507,100 // 4Leaf Clover In Mouth -5597,507,100 // Bubble Gum In Mouth -6046,507,100 // Clothing Dye Coupon -6047,507,100 // Clothing Dye Coupon II -7619,475,100 // Enriched Elunium -7620,475,100 // Enriched Oridecon -7621,475,100 // Token Of Siegfried -7622,73,100 // Hairstyle Coupon -7766,475,100 // Bok Choy -7767,475,100 // Green Maiden's Cake -7776,475,100 // Gym Pass -7821,475,100 // Green Apple -7822,475,100 // Whole Barbecue -7823,475,100 // Meat Veg Skewer -7824,475,100 // Spirit Liquor -7945,73,100 // Universal Amulet -12202,475,100 // Steamed Tongue -12203,475,100 // Steamed Scorpion -12204,475,100 // Dragon Breath Cocktail -12205,475,100 // Hwergelmir's Tonic -12206,475,100 // Cooked Nine Tail's Tails -12207,475,100 // Stew Of Immortality -12208,475,100 // Battle Manual -12209,475,100 // Life 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 // LV10 Blessing Scroll -12216,475,100 // LV10 Agil Scroll -12217,475,100 // LV5 Aspersio Scroll -12218,475,100 // LV5 Assumptio Scroll -12219,475,100 // LV10 Wind Walker Scroll -12220,475,100 // LV5 Adrenaline Scroll -12221,475,100 // Megaphone -12269,499,100 // Tasty Pink Ration -12270,499,100 // Tasty White Ration -12271,499,100 // Military Ration A -12272,499,100 // Military Ration B -12273,499,100 // Military Ration C -12274,507,100 // Daehwandan -12275,507,100 // Taecheongdan -12276,73,100 // Mimic Scroll -12277,73,100 // Disguise Scroll -12278,73,100 // Alice Scroll -12287,507,100 // Love Angel Magic Powder -12288,507,100 // Squirrel Magic Powder -12289,507,100 // Gogo Magic Powder -12294,507,100 // PC-Room Coin Box -12295,507,100 // PC-Room Coin Box -12296,507,100 // PC-Room Coin Box -12297,507,100 // PC-Room Coin Box -12298,507,100 // SP Consumption Reduction Potion -12299,507,100 // Mega Resist Potion -12300,499,100 // Wild Rose Contract -12301,499,100 // Doppelganger Contract -12302,499,100 // Egnigem Cenia Contract -12303,475,100 // Blessing Of Water -12304,507,100 // Diary Magic Powder -12305,507,100 // Mini Heart Magic Powder -12306,507,100 // Freshman Magic Powder -12307,507,100 // Kid Magic Powder -12308,507,100 // Magic Magic Powder -12309,507,100 // JJangu Magic Powder -12310,467,100 // Spray Of Flowers -12311,467,100 // Huge Spray Of Flowers -12313,499,100 // Guardian Angel -12331,507,100 // Ginseng -12332,507,100 // Fruit Juice -12340,499,100 // Chewy Rice Powder -12346,499,100 // Unripe Acorn -12350,457,100 // Angeling Potion -12351,457,100 // Scream Megaphone -12361,507,100 // Delicious Shaved Ice -12363,507,100 // Fit Pipe -12370,507,100 // Girl's Naivety -12375,457,100 // Akaraje -12391,475,100 // Lucky Egg -12396,73,100 // Gift Box? -12397,73,100 // Gift Box? -12398,507,100 // PCBang Gift Box -12402,475,100 // 29Fruit -12404,475,100 // Acti Potion -12405,475,100 // Underripe Yggseed -12406,475,100 // Psychic ArmorS -12413,475,100 // PCBang Coupon Box2 -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 -12492,475,100 // Crumpled Paper -12493,475,100 // Lucky Egg C4 -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 -12549,475,100 // White Slim Pot Box2 -12550,475,100 // Poison Bottle Box2 -12714,467,100 // Easter Scroll -12900,457,100 // Battle Manual Box -12901,457,100 // Insurance Package -12902,457,100 // Bubble Gum Box -12903,457,100 // Steamed Tongue Box -12904,457,100 // Steamed Scorpion Box -12905,457,100 // Dragon Breath Cocktail Box -12906,457,100 // Hwergelmir's Tonic Box -12907,457,100 // Nine Tail Dish Box -12908,457,100 // Stew Of Immortality Box -12909,457,100 // Kafra Card Box -12910,457,100 // Giant Fly Wing Box -12911,457,100 // Neuralizer Box -12912,457,100 // Convex Mirror Box -12913,457,100 // Blessing 10 Scroll Box -12914,457,100 // Increase AGI 10 scroll Box -12915,457,100 // Aspersio 5 Scroll Box -12916,457,100 // Assumptio 5 Scroll Box -12917,457,100 // Wind Walk 10 Scroll Box -12918,457,100 // Adrenaline 5 Scroll Box -12919,457,100 // Megaphone Box -12920,457,100 // Enriched Elunium Box -12921,457,100 // Enriched Oridecon Box -12922,457,100 // Token of Siegfried Box -12923,457,100 // December Lucky Box -12924,457,100 // Pet Egg Box 2 -12925,475,100 // Kafra Item Mall Prize Package -12926,475,100 // December Lucky Box -12928,475,100 // Sacred Scroll -12929,457,100 // Pet Egg Box 3 -12930,457,100 // Pet Egg Box 4 -12931,457,100 // Pet Egg Box 5 -12932,475,100 // Episode 13.2 Key Package -12933,475,100 // Summer Hat Pack -12934,475,100 // Pet Egg Scroll5 -12935,473,100 // Infiltrator Box -12936,473,100 // Muramasa Box -12937,473,100 // Excalibur Box -12938,473,100 // Combat Knife Box -12939,473,100 // Dagger of Counter Box -12940,473,100 // Kaiser Knuckle Box -12941,473,100 // Poll Axe Box -12942,473,100 // Mighty Staff Box -12943,473,100 // Light Epsilon Box -12944,473,100 // Ballista Box -12945,473,100 // Sage's Diary Box -12946,473,100 // Asura Box -12947,473,100 // Apple of Archer Box -12948,473,100 // Bunny Band Box -12949,473,100 // Sakkat Box -12950,473,100 // Grand Circlet Box -12951,473,100 // Elven Ears Box -12952,473,100 // Steel Flower Box -12953,473,100 // Critical Ring Box -12954,473,100 // Earring Box -12955,473,100 // Ring Box -12956,473,100 // Necklace Box -12957,473,100 // Glove Box -12958,473,100 // Brooch Box -12959,473,100 // Rosary Box -12960,473,100 // Safety Ring Box -12961,473,100 // Vesper Core 01 Box -12962,473,100 // Vesper Core 02 Box -12963,473,100 // Vesper Core 03 Box -12964,473,100 // Vesper Core 04 Box -12983,457,100 // Pet Egg Scroll Box 6 -12984,457,100 // Pet Egg Scroll Box 7 -12985,457,100 // Pet Egg Scroll Box 8 -12986,457,100 // Adventurer Pack Box -12987,457,100 // Pet Egg Scroll Box 10 -12988,457,100 // Pet Egg Scroll Box 11 -12989,475,100 // Pet Egg Scroll 6 -12990,475,100 // Pet Egg Scroll 7 -12991,475,100 // Party Hard Pack -12992,475,100 // Adventurer Pack -12993,475,100 // Pet Egg Scroll 10 -12994,475,100 // Pet Egg Scroll 11 -13021,507,100 // Combat Knife -13022,507,100 // Dagger of Counter -13023,507,100 // Ashura -13048,507,100 // Damascus -13175,507,100 // Lever Action Rifle -13309,507,100 // Huuma Giant Wheel Shuriken -13401,507,100 // Excalibur -13419,507,100 // Holy Saber -13422,507,100 // Flamberge -13525,73,100 // Zeny Pet Egg Scroll Box -13547,73,100 // Repair Weapon Scroll Box -13553,73,100 // Dungeon Teleport Scroll 5 Box -13689,475,100 // Bok Choy Box -13690,475,100 // Green Maiden Cake Box -13696,457,100 // Field Manual 100% Box -13704,73,100 // Super Pet Egg 5 -13705,73,100 // Super Pet Egg 6 -13706,73,100 // Super Pet Egg 7 -13707,73,100 // Super Pet Egg 8 -13710,73,100 // Gym Pass Box -13711,73,100 // Small Life Potion 10 Box -13712,73,100 // Small Life Potion 30 Box -13713,73,100 // Small Life Potion 50 Box -13714,73,100 // Medium Life Potion 10 Box -13715,73,100 // Medium Life Potion 30 Box -13716,73,100 // Medium Life Potion 50 Box -13717,73,100 // Abrasive 5 Box -13718,73,100 // Abrasive 10 Box -13719,73,100 // Regeneration Potion 5 Box -13720,73,100 // Regeneration 10 Box -13721,73,100 // Dungeon Teleport Scroll 10 Box -13738,73,100 // Glass of Illusion 5 Box -13739,73,100 // Glass of Illusion 10 Box -13740,73,100 // Shadow Armor Scroll 5 Box -13741,73,100 // Shadow Armor Scroll 10 Box -13742,73,100 // Shadow Armor Scroll 30 Box -13743,73,100 // Holy Armor Scroll 5 Box -13744,73,100 // Holy Armor Scroll 10 Box -13745,73,100 // Holy Armor Scroll 30 Box -13746,73,100 // Small Defense Potion 10 Box -13747,73,100 // Small Defense Potion 30 Box -13748,73,100 // Small Defense Potion 50 Box -13749,73,100 // Big Defense Potion 10 Box -13750,73,100 // Big Defense Potion 30 Box -13751,73,100 // Big Defense Potion 50 Box -13752,73,100 // Small Magic Defense Potion 10 Box -13753,73,100 // Small Magic Defense Potion 30 Box -13754,73,100 // Small Magic Defense Potion 50 Box -13755,73,100 // Big Magic Defense Potion 10 Box -13756,73,100 // Big Magic Defense Potion 30 Box -13757,73,100 // Big Magic Defense Potion 50 Box -13765,507,100 // Certificate Box -13815,73,100 // Knife Goblin Taming Box -13816,73,100 // Flail Goblin Taming Box -13817,73,100 // Hammer Goblin Taming Box -13818,73,100 // Red Deleter Taming Box -13819,73,100 // Diabolic Taming Box -13820,73,100 // Wanderer Taming Box -13821,73,100 // Green Apple Box -13822,73,100 // Barbeque Box -13823,73,100 // Meat Skewer Box -13824,73,100 // Spirit Liquor Box -13859,499,100 // Directive Envelope A -13860,499,100 // Directive Envelope B -13863,475,100 // Repair Weapon Scroll 10 Box -13866,475,100 // Flying Angel Box -13867,475,100 // Neko Mimi Box -13868,475,100 // Moonlight Flower Hat Box -13869,475,100 // Baby Chick Hat Box -13870,475,100 // Beauty Gift Certificate Box -13871,475,100 // Mage 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,73,100 // Mimic Summoning 5 Box -13897,73,100 // Disguise Summoning 5 Box -13898,73,100 // Alice Summoning 5 Box -13899,73,100 // Mimic Summoning 10 Box -13900,73,100 // Disguise Summoning 10 Box -13901,73,100 // Alice Summoning 10 Box -13902,475,100 // Fish Head Hat Box -13903,475,100 // Santa Poring Box -13904,475,100 // Bell Ribbon Box -13905,475,100 // XM Hardcore Set Box -13906,475,100 // XM Kitty Set Box -13907,475,100 // XM Softcore Set Box -13908,475,100 // XM Deviruchi Set Box -13909,475,100 // MVP Hunting Box -13910,475,100 // XM Brewing Set -13911,475,100 // Christmas Pet Scroll -13912,73,100 // Party Blessing 10 Scroll Box -13913,73,100 // Party Increase Agi 10 Scroll Box -13914,73,100 // Party Assumptio 5 Scroll Box -13915,475,100 // Love Angel Magic Powder Box -13916,475,100 // Squirrel Magic Powder Box -13917,475,100 // Gogo Magic Powder Box -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 // Gnome Box -13937,475,100 // Robo Eye Box -13938,475,100 // Maiden's Twin Ribbon Box -13940,475,100 // WoE Teleport Scroll 100 Box -13941,475,100 // Taiwan Valentine Scroll -13942,475,100 // Love Angel Magic Powder Box 30 Days -13943,475,100 // Squirrel Magic Powder Box 30 Days -13944,475,100 // Gogo Magic Powder Box 30 Days -13945,475,100 // Brazil Swordsman Package -13946,475,100 // Brazil Magician Package -13947,475,100 // Brazil Acolyte Package -13948,475,100 // Brazil Archer package -13949,475,100 // Brazil Merchant Package -13950,475,100 // Brazil Thief Package -13951,475,100 // Western 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 // Recuvative Armor Box -13956,475,100 // Shell Of Resistance Box -13957,475,100 // Silf Manteau Box -13958,475,100 // Refresh Shoes Box -13959,475,100 // Crunch Toast Box -13960,475,100 // Identification Box -13961,475,100 // Mochi Box -13962,475,100 // Defolty Doll Hat Box -13963,475,100 // Glaris Doll Hat Box -13964,475,100 // Sorin Doll Hat Box -13965,475,100 // Tailring Doll Hat Box -13966,475,100 // Vinit Doll Hat Box -13967,475,100 // W Doll Hat Box -13970,475,100 // Iron Box -13971,475,100 // Steel Box -13972,475,100 // Coal Box -13973,475,100 // Poison Bottle Box -13974,475,100 // Fisherman Scroll -13975,475,100 // Diary Magic Powder Box -13976,475,100 // Mini Heart Magic Powder Box -13977,475,100 // Freshman Magic Powder Box -13978,475,100 // Kid Magic Powder Box -13979,475,100 // Magic Magic Powder Box -13980,475,100 // JJangu Magic Powder Box -13981,475,100 // Diary Magic Powder Box 30 Days -13982,475,100 // Mini Heart Magic Powder Box 30 Days -13983,475,100 // Freshman Magic Powder Box 30 Days -13984,475,100 // Kid Magic Powder Box 30 Days -13985,475,100 // Magic Magic Powder Box 30 Days -13986,475,100 // JJangu Magic Powder Box 30 Days -13987,475,100 // Rough Oridecon 5 Box -13988,475,100 // Rough Oridecon 50 Box -13989,475,100 // Acid Bomb 10 Box -13990,475,100 // JOB Battle Manual Box -13991,475,100 // Tiger Mask Box -13992,475,100 // Pussy Cat Bell Box -13993,475,100 // Alice Hat Box -13994,475,100 // Speed Potion 5 Box -13995,475,100 // Speed Potion 10 Box -13996,475,100 // Big Bun 100 Box -13997,475,100 // Big Bun 500 Box -13998,475,100 // Giant Fly Wing 500 Box -13999,475,100 // Pill 100 Box -14000,475,100 // Pill 500 Box -14001,475,100 // Recruit Siege Supply Box -14002,475,100 // Veteran 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 // Evolved Drooping Cat Box -14007,475,100 // Evolved Rabbits Headband Box -14008,475,100 // Evolved Helmet Of Orc Hero Box -14009,475,100 // Love Angel Magic Powder Box -14010,475,100 // Squillroll Magic Powder Box -14011,475,100 // Gogo Magic Powder Box -14012,475,100 // Love Angel Magic Powder Box 30 Days -14013,475,100 // Squillroll Magic Powder Box 30 Days -14014,475,100 // Gogo Magic Powder Box 30 Days -14015,475,100 // Western Outlaw Box -14016,475,100 // Lever Action Rifle Box -14017,475,100 // All In One Ring Box -14018,475,100 // Spiritual Tunic Box -14019,475,100 // Recuvative Armor Box -14020,475,100 // Shell Of Resistance Box -14021,475,100 // Silf Manteau Box -14022,475,100 // Refresh Shoes Box -14023,475,100 // Crunch Toast Box -14024,475,100 // Robo Eye Box -14025,475,100 // Maiden's Twin Ribbon Box -14027,475,100 // Fish Head Hat Box -14028,475,100 // SantaPoring Cap Box -14029,475,100 // Bell Ribbon Box -14030,475,100 // Mimic Summoning 5 Box -14031,475,100 // Disguise Summoning 5 Box -14032,475,100 // Alice Summoning 5 Box -14033,475,100 // Mimic Summoning 10 Box -14034,475,100 // Disguise Summoning 10 Box -14035,475,100 // Alice Summoning 10 Box) -14036,475,100 // New Style Box -14037,475,100 // Repair Weapon Scroll Box -14038,475,100 // Repair Weapon Scroll 10 Box -14041,475,100 // Yellow Butterfly Wing 5 Box -14042,475,100 // Yellow Butterfly Wing Box -14043,475,100 // Green Butterfly Wing 5 Box -14044,475,100 // Green Butterfly Wing Box -14045,475,100 // Red Butterfly Wing 5 Box -14046,475,100 // Red Butterfly Wing Box -14047,475,100 // Blue Butterfly Wing 5 Box -14048,475,100 // Blue Butterfly Wing Box -14049,475,100 // Candy 5 Box -14050,475,100 // Candy 10 Box -14051,475,100 // Dungeon Teleport Scroll II 5 Box -14052,475,100 // Dungeon Teleport Scroll II 10 Box -14053,475,100 // Little Angel Doll Box -14054,475,100 // Poring 3 Hats Box -14055,475,100 // Refined Nagan Box -14056,475,100 // Refined Brocca Box -14057,475,100 // Refined Survivor's Rod Box -14058,475,100 // Refined Quadrille Box -14059,475,100 // Refined Great Axe Box -14060,475,100 // Refined Bloody Roar Box -14061,475,100 // Refined Hardcover Book Box -14062,475,100 // Refined Fireblend Box -14063,475,100 // Refined Immaterial Sword Box -14064,475,100 // Refined Unholy Touch Box -14065,475,100 // Refined Survivor's Manteau Box -14066,475,100 // Refined Masquerade Box -14067,475,100 // Refined Helmet of Orc Hero Box -14068,475,100 // Refined Wing of Diablo Box -14069,475,100 // Refined Dark Blinder Box -14070,475,100 // Refined Drooping Cat Box -14071,475,100 // Refined Corsair Box -14072,475,100 // Refined Bloodied Shackle Ball Box -14073,475,100 // Refined Spiritual Ring Box -14074,475,100 // Wine Glass of Illusion 5 Box -14075,475,100 // Glass Of Illusion 10 Box -14076,475,100 // Scroll of Shadow Armor 5 Box -14077,475,100 // Scroll of Shadow Armor 10 Box -14078,475,100 // Scroll of Shadow Armor 30 Box -14079,475,100 // Scroll of Holy Armor 5 Box -14080,475,100 // Scroll of Holy Armor 10 Box -14081,475,100 // Scroll of Holy Armor 30 Box -14082,475,100 // Small Defense Potion 10 Box -14083,475,100 // Small Physical Defense Potion 30 Box -14084,475,100 // Small Physical Defense Potion 50 Box -14085,475,100 // Big Defense Potion 10 Box -14086,475,100 // Large Physical Defense Potion 30 Box -14087,475,100 // Large Physical Defense Potion 50 Box -14088,475,100 // Small Magic Defense Potion 10 Box -14089,475,100 // Small Magical Defense Potion 30 Box -14090,475,100 // Small Magical Defense Potion 50 Box -14091,475,100 // Big Magic Defense Potion 10 Box -14092,475,100 // Large Magical Defense Potion 30 Box -14093,475,100 // Large Magical Defense Potion 50 Box -14094,475,100 // Flying Angel Box -14095,475,100 // Neko Mimi Box -14096,475,100 // Moonlight Flower Hat Box -14097,475,100 // Baby Chick Hat Box -14098,475,100 // Peco Peco Hairband Box -14099,475,100 // Red Glasses Box -14100,475,100 // Whisper Mask Box -14101,475,100 // Ramen Hat Box -14102,475,100 // Dungeon Teleport Scroll 5 Box -14103,475,100 // Gym Membership Card Box -14104,475,100 // Small Life Potion 10 Box -14105,475,100 // Small Life Potion 30 Box -14106,475,100 // Small Life Potion 50 Box -14107,475,100 // Medium Life Potion 10 Box -14108,475,100 // Large Life Potion 30 Box -14109,475,100 // Large Life Potion 50 Box -14110,475,100 // Abrasive 5 Box -14111,475,100 // Abrasive 10 Box -14112,475,100 // Regeneration Potion 5 Box -14113,475,100 // Regeneration Potion 10 Box -14114,475,100 // Dungeon Teleport Scroll 10 Box -14115,475,100 // Refined Infiltrator Box -14116,475,100 // Refined Muramasa Box -14117,475,100 // Refined Excalibur Box -14118,475,100 // Combat Knife Box -14119,475,100 // Counter Dagger Box -14120,475,100 // Refined Kaiser Knuckle Box -14121,475,100 // Refined Mighty Staff Box -14122,475,100 // Light Epsilon Box -14123,475,100 // Refined Ballista Box -14124,475,100 // Sage's Diary Box -14125,475,100 // Asura Box -14126,475,100 // Apple of Archer Box -14127,475,100 // Bunny Band Box -14128,475,100 // Refined Sakkat Box -14129,475,100 // Refined Grand Circlet Box -14130,475,100 // Elven Ears Box -14131,475,100 // Steel Flower Box -14132,475,100 // Critical Ring Box -14133,475,100 // Earring Box -14134,475,100 // Ring Box -14135,475,100 // Necklace Box -14136,475,100 // Glove Box -14137,475,100 // Brooch Box -14138,475,100 // Rosary Box -14139,475,100 // Safety Ring Box -14140,475,100 // Refined Vesper Core 01 Box -14141,475,100 // Refined Vesper Core 02 Box -14142,475,100 // Refined Vesper Core 03 Box -14143,475,100 // Refined Vesper Core 04 Box -14144,475,100 // Vigorgra Box1 -14145,475,100 // Vigorgra Box2 -14146,475,100 // Vigorgra Box3 -14147,475,100 // Vigorgra Box4 -14148,475,100 // Vigorgra Box5 -14149,475,100 // Vigorgra Box6 -14150,475,100 // Vigorgra Box7 -14151,475,100 // Vigorgra Box8 -14152,475,100 // Start your Journey Pack -14153,475,100 // Siege Mode Pack -14154,475,100 // 1 Hour Survival Pack -14155,475,100 // Weekend Hunting Pack -14156,475,100 // Battle Manual Box -14157,475,100 // Insurance Package -14158,475,100 // Bubble Gum Box -14159,475,100 // Steamed Tongue Box -14160,475,100 // Steamed Scorpion Box -14161,475,100 // Dragon Breath Cocktail Box -14162,475,100 // Hwergelmir's Tonic Box -14163,475,100 // Nine Tail Dish Box -14164,475,100 // Stew Of Immortality Box -14165,475,100 // Kafra Card Box -14166,475,100 // Giant Fly Wing Box -14167,475,100 // Neuralizer Box -14168,475,100 // Convex Mirror Box -14169,475,100 // Blessing 10 Scroll Box -14170,475,100 // Increase AGI 10 scroll Box -14171,475,100 // Aspersio 5 Scroll Box -14172,475,100 // Assumptio 5 Scroll Box -14173,475,100 // Wind Walk 10 Scroll Box -14174,475,100 // Adrenaline 5 Scroll Box -14175,475,100 // Megaphone 10 Box -14176,475,100 // Enriched Elunium Box -14177,475,100 // Enriched Oridecon Box -14178,475,100 // Token of Siegfried Box -14179,475,100 // Giant Fly Wing 50 Box -14180,475,100 // Giant Fly Wing 100 Box -14181,475,100 // Hwergelmir's Tonic 30 Box -14182,475,100 // Hwergelmir's Tonic 50 Box -14183,475,100 // Nine Tail Dish 30 Box -14184,475,100 // Nine Tail Dish 50 Box -14185,475,100 // Increase Agility Scroll 30 Box -14186,475,100 // Increase Agility Scroll 50 Box -14187,475,100 // Stew of Immortality 30 Box -14188,475,100 // Stew of Immortality 50 Box -14189,475,100 // Life Insurrance 30 Box -14190,475,100 // Life Insurrance 50 Box -14191,475,100 // Convex Mirror 5 Box -14192,475,100 // Convex Mirror 30 Box -14193,475,100 // Blessing Scroll 30 Box -14194,475,100 // Lv10 Blessing Scroll Box 50 -14195,475,100 // Adrenaline Rush Scroll 30 Box -14196,475,100 // Adrenaline Rush Scroll 50 Box -14197,475,100 // Assumptio Scroll 30 Box -14198,475,100 // Lv5 Assumptio Scroll Box 50 -14199,475,100 // Aspersio Scroll 30 Box -14200,475,100 // Aspersio Scroll 50 Box -14201,475,100 // Steamed Scorpion 30 Box -14202,475,100 // Steamed Scorpion 50 Box -14203,475,100 // Wind Walk Scroll 30 Box -14204,475,100 // Wind Walk Scroll 50 Box -14205,475,100 // Dragon Breath Cocktail 30 Box -14206,475,100 // Dragon Breath Cocktail 50 Box -14207,475,100 // Field Manual Box -14208,475,100 // Battle Manual 5 Box -14209,475,100 // Token of Siegfried 5 Box -14210,475,100 // Token of Siegfried 20 Box -14211,475,100 // Kafra Card 30 Box -14212,475,100 // Kafra Card 50 Box -14213,475,100 // Steamed Tongue 30 Box -14214,475,100 // Steamed Tongue 50 Box -14215,475,100 // Bubble Gum Box -14216,475,100 // Bubble Gum 5 Box -14217,475,100 // Megaphone Box -14218,475,100 // Megaphone 5 Box -14219,475,100 // Enriched Elunium 5 Box -14220,475,100 // Enriched Oridecon 5 Box -14221,475,100 // Mystical Amplification Scroll 10 Box -14222,475,100 // Mystical Amplification Scroll 30 Box -14223,475,100 // Mystical Amplification Scroll 50 Box -14224,475,100 // Quagmire Scroll 10 Box -14225,475,100 // Quagmire Scroll 30 Box -14226,475,100 // Quagmire Scroll 50 Box -14227,475,100 // Healing Staff Box -14234,73,100 // Dead Branch 25 Box -14242,73,100 // Beholder Ring Box -14243,73,100 // Hallow Ring Box -14244,73,100 // Clamorous Ring Box -14245,73,100 // Chemical Ring Box -14246,73,100 // Insecticide Ring Box -14247,73,100 // Fisher Ring Box -14248,73,100 // Decussate Ring Box -14249,73,100 // Bloody Ring Box -14250,73,100 // Satanic Ring Box -14251,73,100 // Dragon Ring Box -14252,73,100 // Beholder Ring Box II -14253,73,100 // Hallow Ring Box II -14254,73,100 // Clamorous Ring Box II -14255,73,100 // Chemical Ring Box II -14256,73,100 // Insecticide Ring Box II -14257,73,100 // Fisher Ring Box II -14258,73,100 // Decussate Ring Box II -14259,73,100 // Bloody Ring Box II -14260,73,100 // Satanic Ring Box II -14261,73,100 // Dragon Ring Box II -14289,475,100 // New Clothing Dye Coupon Box -14290,475,100 // Original Clothing Dye Coupon Box -14296,73,100 // Angel Scroll -14297,73,100 // Devil Scroll -14300,73,100 // Mask Of Ifrit Box -14301,73,100 // Ears Of Ifrit Box -14304,73,100 // Scuba Mask Box -14314,475,100 // Phreeoni Scroll Box -14315,475,100 // Ghostring Scroll Box -14316,73,100 // July7 Scroll -14317,457,100 // Bacsojin Scroll -14343,475,100 // Spiked Scarf Box -14344,475,100 // Rainbow Scarf Box -14345,457,100 // Animal Scroll -14349,73,100 // Mental Potion 20 Box -14350,73,100 // Mental Potion 50 Box -14351,73,100 // Tyr's Blessing 20 Box -14352,73,100 // Tyr's Blessing 50 Box -14363,73,100 // Heart Scroll -14375,457,100 // Celestial Axe Box -14376,475,100 // Angeling Potion Box -14377,457,100 // Scream Megaphone Box -14380,457,100 // Anubis Hat Box -14393,73,100 // Universal Amulet Box -14408,73,100 // New Year Scroll -14440,457,100 // Dice Hat Box -14441,457,100 // King Tiger Doll Hat Box -14447,457,100 // Pirate's Pride Box -14448,457,100 // Necromancer's Hood Box -14459,475,100 // Magic Rabbit Hat Box -14460,475,100 // RO 5th Wedding Anniversary Box -14461,475,100 // Ashura Fairy Hat Box -14469,457,100 // Ox Tail Egg -14508,73,100 // Zeny Pet Egg Scroll -14521,475,100 // Repair Weapon Scroll -14527,475,100 // Dungeon Teleport Scroll -14533,475,100 // Field Manual 100% -14534,475,100 // Small Life Potion -14535,475,100 // Medium Life Potion -14536,475,100 // Abrasive -14537,475,100 // Regeneration Potion -14538,475,100 // Glass of Illusion -14539,475,100 // Shadow Armor Scroll -14540,475,100 // Holy Armor Scroll -14541,475,100 // Small Defense Potion -14542,475,100 // Big Defense Potion -14543,475,100 // Small Magic Defense Potion -14544,475,100 // Big Magic Defense Potion -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 -14574,475,100 // Vagabond's Skull -14586,73,100 // Jumping Candy -14587,475,100 // Equipment Repair Spell Book -14588,75,100 // Party Blessing 10 Scroll -14589,75,100 // Party Increase Agi 10 Scroll -14590,75,100 // Party Assumptio 5 Scroll -14591,475,100 // WoE Teleport Scroll -14592,475,100 // JOB Battle Manual -14593,475,100 // Mystical Amplification Scroll -14594,475,100 // Quagmire Scroll -14597,475,100 // Phreeoni Scroll -14598,475,100 // Ghostring Scroll -14599,475,100 // Greed Scroll -14600,73,100 // Mental Potion -14601,73,100 // Tyr's Blessing -14602,475,100 // Tao Gunka Scroll -14603,475,100 // Mistress Scroll -14604,475,100 // Orc Hero Scroll -14605,475,100 // Orc Lord Scroll -14606,475,100 // JOB Battle Manual -14608,73,100 // Manchu-Han Imperial Feast -16002,507,100 // Stunner -16134,475,100 // Frog King Hat Box -16135,457,100 // Satanic Bone Helm Box -16247,475,100 // Dragon Arhat Mask Box -16248,475,100 // Tiger Arhat Mask Box -16257,73,100 // Buddah Scroll -16258,457,100 // HD Bradium 5 Box -16259,457,100 // HD Carnium 5 Box -16260,457,100 // HD Bradium 10 Box -16261,457,100 // HD Carnium 10 Box -16304,475,100 // Evil Incarnation -16371,73,100 // Tw Aug Scroll -16393,457,100 // HD Oridecon 5 Box -16394,457,100 // HD Oridecon 10 Box -16395,457,100 // HD Elunium 5 Box -16396,457,100 // HD Elunium 10 Box -16461,73,100 // Red Wing Hat Box -16555,73,100 // Pr Reset Stone Box - -// Misc. Items -1313,499,100 // Tourist Axe -1386,507,100 // Doom Slayer -1388,507,100 // Two-Handed Axe -1428,475,100 // Long Horn -1429,475,100 // Hunting Spear -1579,475,100 // Book of the Dead -1644,475,100 // Staff of Piercing -1645,475,100 // Lich's Bone Wand -1749,499,100 // Tourist Bow -1928,507,100 // Spirited Guitar -2003,475,100 // Staff of Destruction -2398,475,100 // Sniping Suit -2449,475,100 // Variant Shoes -2551,475,100 // Crest of the Rider -2552,475,100 // Mithril Magic Manteau -2777,65,100 // Shaman Ring -2778,65,100 // Shaman Earrings -2779,65,100 // Dark Knight Belt -2780,65,100 // Dark Knight Glove -2781,65,100 // Aumdura's Benefit -2782,475,100 // Ring of the Ancient Wise King -2785,475,100 // Orlean's Gloves -5100,73,100 // Sales Banner -5103,73,100 // Sunflower Hairpin -5133,73,100 // Sheep Hat -5206,73,100 // Romantic White Flower -5215,73,100 // Evolved Angel Wing -5216,73,100 // Evolved Evil Wing -5217,73,100 // Evolved Majestic Goat -5218,73,100 // Evolved Bunny Band -5219,73,100 // Evolved Drooping Cat -5220,73,100 // Evolved Pipe -5221,73,100 // Evolved Pair of Red Ribbon -5222,73,100 // Evolved Blue Fish -5223,73,100 // Evolved Big Golden Bell -5224,73,100 // Evolved Orc Hero Helm -5243,73,100 // Shafka -5256,73,100 // Valkyrie Feather Band -5257,73,100 // Soul Ring -5278,73,100 // Yellow Ribbon -5284,73,100 // Water Lily Crown -5285,73,100 // Vane Hairpin -5287,73,100 // Vacation Hat -5289,73,100 // Vanilmirth Hat -5291,73,100 // Kettle Hat -5292,73,100 // Dragon Skull -5300,73,100 // Bullock Helm -5304,73,100 // Cap Of Blindness -5318,467,100 // Poring Party Hat -5333,457,100 // Radio Antenna -5336,73,100 // Guildsman Recruiter Hat -5337,73,100 // Party Recruiter Hat -5338,507,100 // Bf Recruiter Hat -5339,507,100 // Friend Recruiter Hat -5346,507,100 // Gf Recruiter Hat -5352,73,100 // Poporing Cap -5356,384,100 // Festival Pumpkin Hat -5359,73,100 // Ship Captain Hat -5360,73,100 // Hyuke's Black Cat Ears -5361,73,100 // Gangster Scarf -5362,73,100 // Ninja Scroll -5371,73,100 // Judge Hat -5383,73,100 // Hunter's Cap -5387,73,100 // Neko Mimi Kafra -5389,73,100 // Angel Spirit -5395,73,100 // Striped Hat -5403,73,100 // Fish In Mouth -5428,475,100 // RWC Anniversary Bread Envelope -5451,475,100 // RWC 2008 Dragon Helm Gold -5452,475,100 // RWC 2008 Dragon Helm Silver -5453,475,100 // RWC 2008 Dragon Helm Copper -5457,73,100 // Moon Rabbit Hat -5476,73,100 // Grand Peco Hairband -5479,65,100 // Shaman's Hair Decoration -5480,65,100 // Bijofnil Wings -5481,65,100 // Hermode Cap -5482,65,100 // Dark Knight Mask -5483,65,100 // Odin Mask -5492,507,100 // Student Cap -5493,507,100 // Ulle's Cap -5494,507,100 // Sphinx Hat -5495,73,100 // Power Of Thor -5508,73,100 // Shark Hat -5509,73,100 // Sting hat -5511,73,100 // Samambaia -5521,507,100 // Angry Mouth -5527,73,100 // Lunatic Hat -5532,73,100 // Pirate Dagger -5536,507,100 // Spare Card -5544,467,100 // Time Keeper Hat -5545,73,100 // Aries Diadem -5546,73,100 // Aries Crown -5549,73,100 // Taurus Diadem -5550,73,100 // Taurus Crown -5554,73,100 // Octopus Hat -5555,73,100 // Leaf Cat Hat -5567,73,100 // Bright Fury -5569,73,100 // Gemini Diadem -5570,73,100 // Gemini Crown -5574,73,100 // Well-Chewed Pencil -5577,65,100 // Dark Knight Mask -5579,73,100 // Wanderer's Sakkat -5584,73,100 // Majestic Evil Horns -5587,499,100 // Mosquito Coil -5654,73,100 // Holy Marching Hat -5667,73,100 // Skull Hood -5668,499,100 // Weird Pumpkin Hat -5738,73,100 // Snowman Hat -5741,499,100 // Eternal Egg Shell -5786,475,100 // Ancient Elven Ear -5796,507,100 // Cheer Scarf -5797,507,100 // Cheer Scarf2 -5798,507,100 // Cheer Scarf3 -5799,507,100 // Cheer Scarf4 -5856,507,100 // Passion FB Hat -5857,507,100 // Cool FB Hat -5858,507,100 // Victory FB Hat -5859,507,100 // Glory FB Hat -6052,507,100 // Ornament Hairpin -6060,499,100 // Month Viewing Ticket -6070,475,100 // Shaman's Document -6071,475,100 // Broken Sword -6072,475,100 // Bijofnil Feather -6073,499,100 // Dragon's Mane -6093,499,100 // Draco's Egg -6101,499,100 // Attendance Card -6102,507,100 // Report On Splendide -6103,507,100 // Report On Manuk -6116,507,100 // Succubus Pet Exchange Coupon -6117,507,100 // Imp Pet Exchange Coupon -6118,507,100 // Chung E Exchange Coupon -6125,507,100 // Spring Time Box -6126,507,100 // Summer Happy Box -6127,507,100 // Purification Stone -6129,507,100 // Nightmare Terror Exchange Coupon -6130,507,100 // Loli Ruri Exchange Coupon -6131,507,100 // Goblin Leader Exchange Coupon -6132,507,100 // Incubus Exchange Coupon -6133,507,100 // Miyabi Ningyo Exchange Coupon -6134,507,100 // Giant Whisper Exchange Coupon -6135,507,100 // Evil Nymph Exchange Coupon -6136,507,100 // Medusa Exchange Coupon -6137,507,100 // Stone Shooter Exchange Coupon -6138,507,100 // Marionette Exchange Coupon -6139,507,100 // Leaf Cat Exchange Coupon -6140,507,100 // Dullahan Exchange Coupon -6141,507,100 // Shinobi Exchange Coupon -6142,507,100 // Golem Exchange Coupon -6143,507,100 // Civil Servant Exchange Coupon -6148,499,100 // Eternity Of Chocolate -6149,499,100 // Simple Chocolate -6150,507,100 // Key of The Mansion -6206,499,100 // I Love You -6207,499,100 // Thank You -6208,499,100 // I Respect Yo -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 -6238,475,100 // Guarantee Weapon 11Up -6239,475,100 // Guarantee Armor 11Up -6240,475,100 // HD Oridecon -6241,475,100 // HD Elunium -6242,457,100 // Midgard Coinu -6296,499,100 // Training Notice -6298,499,100 // Pumpkin Head Crushed -6299,499,100 // Worn Cloth Piece -6320,507,100 // Premium Reset Stone -6345,499,100 // Love Ball -6347,499,100 // Bless Word Paper -6348,499,100 // Bless Word Paper -6349,499,100 // Bless Word Paper -6350,499,100 // Bless Word Paper -6351,499,100 // Bless Word Paper -6352,499,100 // Bless Word Paper -6353,499,100 // Bless Word Paper -6354,499,100 // Bless Word Paper -6355,499,100 // Bless Word Paper -6356,499,100 // Bless Word Paper -6357,499,100 // Fortune Cookie Fail -6358,507,100 // Free Cash Coupon -6359,507,100 // Guidebook Exchange -6377,467,100 // Buy Market Permit -6456,475,100 // Guarantee Weapon 5Up -6457,475,100 // Guarantee Armor 5Up -7275,507,100 // Record of Ancient Language -7276,507,100 // Doodled Message -7580,499,100 // Black Marble -7624,499,100 // Spring Stanza23 -7629,499,100 // Pink Gift Box -7841,499,100 // Stained Piece Of Paper -7842,499,100 // Torn Piece Of Paper -7843,499,100 // Old Piece Of Paper -7844,499,100 // Burnt Pieces Of Paper -7895,499,100 // Rama5 Book -7896,499,100 // Loykrathong Book -7897,499,100 // Constitution Book -7898,499,100 // VV Strong Balmung -7899,499,100 // Dagger Of Psychic -7900,507,100 // Jonathan Family Ring -7901,507,100 // Jillberriel Family Ring -7902,507,100 // Jessur Family Ring -7903,507,100 // Jenoss Family Ring -7904,507,100 // Piano Key -7906,507,100 // Poppy Wreath -7907,499,100 // Bobbin Of Goddess -7912,507,100 // Portable Snowman Machine -7913,507,100 // Battle Test Certificate -7914,507,100 // Ancient Language Document -7923,499,100 // Krathong -7928,507,100 // Brazil National Flag -7929,507,100 // Gold Coin -7930,507,100 // Devil's Cattle Ring -7944,73,100 // Sealed Box -7949,499,100 // Woven Wool -7951,507,100 // Golden Tulip Flower -7952,507,100 // Gift Of Lomi Ross -7953,507,100 // Gift Of Juliet -7954,499,100 // Summer Festival Ticket -7959,65,100 // Ancient Gold Coin -7960,65,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 -7973,499,100 // Immortality Egg -7974,499,100 // Illusion Piece -7978,499,100 // Spring Stanza1 -7979,499,100 // Spring Stanza2 -7980,499,100 // Spring Stanza3 -7981,499,100 // Spring Stanza4 -7982,499,100 // Spring Stanza5 -7983,499,100 // Spring Stanza6 -7984,499,100 // Spring Stanza7 -7985,499,100 // Spring Stanza8 -7986,499,100 // Spring Stanza9 -7987,499,100 // Spring Stanza10 -7988,499,100 // Spring Stanza11 -7989,499,100 // Spring Stanza12 -7990,499,100 // Spring Stanza13 -7991,499,100 // Spring Stanza14 -7992,499,100 // Spring Stanza15 -7993,499,100 // Spring Stanza16 -7994,499,100 // Spring Stanza17 -7995,499,100 // Spring Stanza18 -7996,499,100 // Spring Stanza19 -7997,499,100 // Spring Stanza20 -7998,499,100 // Spring Stanza21 -7999,499,100 // Spring Stanza22 -9028,465,100 // Hard Rice Cake -11503,475,100 // WoE White Potion -11504,475,100 // WoE Blue Potion -11505,507,100 // Iris -11514,475,100 // Enriched Slim Pot -12740,73,100 // Amplification Scroll -12741,73,100 // Intellect Amplification Scroll -12745,507,100 // Skull Scroll -12746,499,100 // Destruction Scroll -12754,499,100 // New Year Bun -12755,499,100 // Traditional Firecrack -12756,499,100 // New Gift Envelope -12766,507,100 // Reward Job BM25 -12767,467,100 // Passion FB Hat Box -12768,467,100 // Cool FB Hat Box -12769,467,100 // Victory FB Hat Box -12770,467,100 // Glory FB Hat Box -12771,467,100 // Passion Hat Box2 -12772,467,100 // Cool Hat Box2 -12773,467,100 // Victory Hat Box2 -13043,507,100 // Fortune Sword -13044,507,100 // Ice Pick -13045,507,100 // Kamaitachi -13308,507,100 // Huuma Blaze Shuriken -13420,73,100 // Honglyun's Sword -15001,507,100 // Odin's Blessing -18500,507,100 // Cheer Scarf6 -18501,507,100 // Cheer Scarf8 -18502,507,100 // Cheer Scarf10 -5306,507,100 // Freya's Crown -5307,73,100 // Carmen Miranda's Hat -5308,73,100 // Brazil National Flag Hat -5310,73,100 // Shining Electric Bulb Hairband -5311,73,100 // Large Hisbiscus -5312,73,100 // Ayothaya King's Hat -5322,475,100 // Kerchief -5358,73,100 // Peco Ears -5367,73,100 // Hyegun Hat -5385,457,100 // Yoyo Hat -5388,73,100 // Snake Head Hat -5397,73,100 // Scuba Gear -5401,73,100 // Black Frame Glasses -5402,73,100 // Mischievous Fairy -5404,73,100 // Blue Ribbon -5405,73,100 // Filir Hat -5406,467,100 // Academy Freshman Hat -5407,467,100 // Academy Completion Hat -5423,73,100 // I Love China -5429,73,100 // Bogy Cap -5430,65,100 // Torch Cap -5450,475,100 // Solar Hat -5460,499,100 // Evolved Dragon Skull Hat -5461,499,100 // Evolved Whisper Mask -5464,507,100 // Zaha Doll Hat -5478,457,100 // Classic Hat -5490,457,100 // Anubis Helm -5491,457,100 // Bandit Hat -5496,457,100 // Dice Hat -5497,457,100 // King Tiger Doll Hat -5498,73,100 // Wandering Wolf Helm -5499,73,100 // Pizza Hat -5500,73,100 // Icecream Hat -5501,457,100 // Pirate's Pride -5504,73,100 // Wedding Weil -5519,73,100 // Peacock Feather -5526,73,100 // Tanigumi Girl Doll -5528,457,100 // Frog King Hat -5530,73,100 // Raven Cap -5537,73,100 // Kwati Hat -5538,73,100 // Tucan Hat -5539,73,100 // Jaguar Hat -5547,73,100 // RJC Katusa Flower -5548,73,100 // Scarlet Rose -5557,73,100 // Wild Rose Hat -5564,73,100 // Crown of Deceit -5565,507,100 // Dragon Arhat Mask -5566,507,100 // Tiger Arhat Mask -5581,73,100 // Cancer Diadem -5582,73,100 // Cancer Crown -5603,475,100 // RTC First Place -5604,475,100 // RTC Second Place -5605,475,100 // RTC Third Place -5770,73,100 // Splash Hat -5818,507,100 // Carnival Hat -5819,507,100 // Carnival Circlet -5821,507,100 // Gold Tulip Hairpin -5822,499,100 // Love Chick Hat diff --git a/db/re/item_buyingstore.txt b/db/re/item_buyingstore.txt deleted file mode 100644 index 003d501ac9..0000000000 --- a/db/re/item_buyingstore.txt +++ /dev/null @@ -1,2031 +0,0 @@ -// Buying Store Item List -// List of items that can be sold to buying stores. -// -// Structure of Database: -// ItemID -// -// Note: -// Items are in same order as data\buyingstoreitemlist.txt, which -// must be edited as well for the client to accept added items. - -//---2018 / 05 / 16 - ΎΖΐΜΕΫ Γί°‘ 8517 -6635 //Blacksmith_Blessing -12507 //E_WOB_Rune -12508 //E_WOB_Schwaltz -12509 //E_WOB_Rachel -12510 //E_WOB_Local -//22999 -//23136 -//23221 -//23222 -//23223 -//23224 -//23225 -//23226 -//23227 -23228 //Hazy_Mooncake -//23282 -//25041 -//---2018 / 04 / 18 - ΐΟ·ηΐό ΏΐΊκ ·ηΎΘ΄Ω ΎΖΐΜΕΫ Γί°‘ -//25633 -//25634 -//25635 -//25636 -//25637 -//25638 -//25639 -//25640 -//25641 -//25642 -//---2018 / 03 / 14 - Βϋ½ΊΕΟΊΞΗ° Γί°‘ -6752 //Charleston_Parts -//---2018 / 03 / 05 - ΐΟ·ηΐό ΎΖΐΜΕΫ ΉΧ ΘλΊϋΐΗΑΆ°’ °ΤΖζΈΆΉύ΄λΘΈΑΦΘ­ Γί°‘ -6671 //Geffen_Coin_Magic_Tournament -6672 //Shard_of_Gray -//11620 -25256 //Hazy_Dream_Fragment -25257 //Bloody_Love_Letter -25258 //Broken_Arrow -//25261 -//25262 -//25263 -//25264 -//25265 -//25266 -//25267 -25271 //Illusion_Stone -//25297 -//25298 -//25299 -//25300 -//25311 -//25312 -//25313 -//25314 -//25615 -//25616 -//25617 -//25618 -//25619 -//---2017 / 10 / 30 - »η³Ι΄λΘΈ ΐΜΊ₯Ζ ΔΪΐΞ Γί°‘ -//23533 -//--- 2017 / 01 / 25 - ½ΕΊρΗΡ Έή΄ή Γί°‘ -//25273 -//--- 2016 / 12 / 07 - ΆτΈ΄Αφ Γί°‘ -//25276 -//25277 -//25278 -//25279 -//25280 -//25281 -//25282 -//25283 -//25284 -//25285 -//--- 2015 / 12 / 16 - ΐό»ηΐΪΉ«΄ύ -//25127 -//25128 -//25129 -//25130 -//25131 -//23016 -//23080 -4671 //V_B_Celia_Card -4672 //V_B_Chen_Card -4673 //V_B_Alphoccio_Card -4674 //V_B_Eremes_Card -4675 //V_B_Magaleta_Card -4676 //V_B_Shecil_Card -4677 //V_B_Howard_Card -4678 //V_B_Katrinn_Card -4679 //V_B_Seyren_Card -4680 //V_B_Randel_Card -4681 //V_B_Flamel_Card -4682 //V_B_Gertie_Card -4683 //V_B_Trentini_Card -4684 //V_Eremes_Card -4685 //V_Magaleta_Card -4686 //V_Katrinn_Card -4687 //V_Shecil_Card -4688 //V_Harword_Card -4689 //V_Seyren_Card -4690 //V_Randel_Card -4691 //V_Flamel_Card -4692 //V_Celia_Card -4693 //V_Chen_Card -4694 //V_Gertie_Card -4695 //V_Trentini_Card -4696 //V_Alphoccio_Card -//--- 2015 / 11 19 - ΊΞΌ­Αψ ΈΆΉύΌ Γί°‘ -6905 //Broken_Magic_Stone -//--- 2015 / 11 / 30 - Δ«΅ε Γί°‘ -4001 //Poring_Card -4002 //Fabre_Card -4003 //Pupa_Card -4004 //Drops_Card -4005 //Poring__Card -4006 //Lunatic_Card -4007 //Pecopeco_Egg_Card -4008 //Picky_Card -4009 //Chonchon_Card -4010 //Wilow_Card -4011 //Picky__Card -4012 //Thief_Bug_Egg_Card -4013 //Andre_Egg_Card -4014 //Roda_Frog_Card -4015 //Condor_Card -4016 //Thief_Bug_Card -4017 //Savage_Babe_Card -4018 //Andre_Larva_Card -4019 //Hornet_Card -4020 //Farmiliar_Card -4021 //Rocker_Card -4022 //Spore_Card -4023 //Desert_Wolf_Babe_Card -4024 //Plankton_Card -4025 //Skeleton_Card -4026 //Thief_Bug_Female_Card -4027 //Kukre_Card -4028 //Tarou_Card -4029 //Wolf_Card -4030 //Mandragora_Card -4031 //Pecopeco_Card -4032 //Ambernite_Card -4033 //Poporing_Card -4034 //Worm_Tail_Card -4035 //Hydra_Card -4036 //Muka_Card -4037 //Snake_Card -4038 //Zombie_Card -4039 //Stainer_Card -4040 //Creamy_Card -4041 //Coco_Card -4042 //Steel_Chonchon_Card -4043 //Andre_Card -4044 //Smokie_Card -4045 //Horn_Card -4046 //Martin_Card -4047 //Ghostring_Card -4048 //Poison_Spore_Card -4049 //Vadon_Card -4050 //Thief_Bug_Male_Card -4051 //Yoyo_Card -4052 //Elder_Wilow_Card -4053 //Vitata_Card -4054 //Angeling_Card -4055 //Marina_Card -4056 //Dustiness_Card -4057 //Metaller_Card -4058 //Thara_Frog_Card -4059 //Soldier_Andre_Card -4060 //Goblin_Card -4061 //Cornutus_Card -4062 //Anacondaq_Card -4063 //Caramel_Card -4064 //Zerom_Card -4065 //Kaho_Card -4066 //Orc_Warrior_Card -4067 //Megalodon_Card -4068 //Scorpion_Card -4069 //Drainliar_Card -4070 //Eggyra_Card -4071 //Orc_Zombie_Card -4072 //Golem_Card -4073 //Pirate_Skel_Card -4074 //BigFoot_Card -4075 //Argos_Card -4076 //Magnolia_Card -4077 //Phen_Card -4078 //Savage_Card -4079 //Mantis_Card -4080 //Flora_Card -4081 //Hode_Card -4082 //Desert_Wolf_Card -4083 //Rafflesia_Card -4084 //Marine_Sphere_Card -4085 //Orc_Skeleton_Card -4086 //Soldier_Skeleton_Card -4087 //Giearth_Card -4088 //Frilldora_Card -4089 //Sword_Fish_Card -4090 //Munak_Card -4091 //Kobold_Card -4092 //Skel_Worker_Card -4093 //Obeaune_Card -4094 //Archer_Skeleton_Card -4095 //Marse_Card -4096 //Zenorc_Card -4097 //Matyr_Card -4098 //Dokebi_Card -4099 //Pasana_Card -4100 //Sohee_Card -4101 //Sand_Man_Card -4102 //Whisper_Card -4103 //Horong_Card -4104 //Requiem_Card -4105 //Marc_Card -4106 //Mummy_Card -4107 //Verit_Card -4108 //Myst_Card -4109 //Jakk_Card -4110 //Ghoul_Card -4111 //Strouf_Card -4112 //Marduk_Card -4113 //Marionette_Card -4114 //Argiope_Card -4115 //Hunter_Fly_Card -4116 //Isis_Card -4117 //Side_Winder_Card -4118 //Petit_Card -4119 //Bathory_Card -4120 //Petit__Card -4121 //Phreeoni_Card -4122 //Deviruchi_Card -4123 //Eddga_Card -4124 //Medusa_Card -4125 //Deviace_Card -4126 //Minorous_Card -4127 //Nightmare_Card -4128 //Golden_Bug_Card -4129 //Baphomet__Card -4130 //Scorpion_King_Card -4131 //Moonlight_Flower_Card -4132 //Mistress_Card -4133 //Daydric_Card -4134 //Dracula_Card -4135 //Orc_Load_Card -4136 //Khalitzburg_Card -4137 //Drake_Card -4138 //Anubis_Card -4139 //Joker_Card -4140 //Knight_Of_Abyss_Card -4141 //Evil_Druid_Card -4142 //Doppelganger_Card -4143 //Orc_Hero_Card -4144 //Osiris_Card -4145 //Berzebub_Card -4146 //Maya_Card -4147 //Baphomet_Card -4148 //Pharaoh_Card -4149 //Gargoyle_Card -4150 //Goat_Card -4151 //Gajomart_Card -4152 //Galapago_Card -4153 //Crab_Card -4154 //Rice_Cake_Boy_Card -4155 //Goblin_Leader_Card -4156 //Steam_Goblin_Card -4157 //Goblin_Archer_Card -4158 //Flying_Deleter_Card -4159 //Nine_Tail_Card -4160 //Antique_Firelock_Card -4161 //Grand_Peco_Card -4162 //Grizzly_Card -4163 //Gryphon_Card -4164 //Gullinbursti_Card -4165 //Gig_Card -4166 //Nightmare_Terror_Card -4167 //Neraid_Card -4168 //Dark_Lord_Card -4169 //Dark_Illusion_Card -4170 //Dark_Frame_Card -4171 //Dark_Priest_Card -4172 //The_Paper_Card -4173 //Demon_Pungus_Card -4174 //Deviling_Card -4175 //Poison_Toad_Card -4176 //Dullahan_Card -4177 //Dryad_Card -4178 //Dragon_Tail_Card -4179 //Dragon_Fly_Card -4180 //Driller_Card -4181 //Disguise_Card -4182 //Diabolic_Card -4183 //Vagabond_Wolf_Card -4184 //Lava_Golem_Card -4185 //Rideword_Card -4186 //Raggler_Card -4187 //Raydric_Archer_Card -4188 //Leib_Olmai_Card -4189 //Wraith_Dead_Card -4190 //Wraith_Card -4191 //Loli_Ruri_Card -4192 //Rotar_Zairo_Card -4193 //Lude_Card -4194 //Rybio_Card -4195 //Leaf_Cat_Card -4196 //Marin_Card -4197 //Mastering_Card -4198 //Maya_Puple_Card -4199 //Merman_Card -4200 //Megalith_Card -4201 //Majoruros_Card -4202 //Civil_Servant_Card -4203 //Mutant_Dragon_Card -4204 //Mini_Demon_Card -4205 //Mimic_Card -4206 //Mystcase_Card -4207 //Mysteltainn_Card -4208 //Miyabi_Ningyo_Card -4209 //Violy_Card -4210 //Wander_Man_Card -4211 //Vocal_Card -4212 //Bon_Gun_Card -4213 //Brilight_Card -4214 //Bloody_Murderer_Card -4215 //Blazzer_Card -4216 //Sasquatch_Card -4217 //Live_Peach_Tree_Card -4218 //Succubus_Card -4219 //Sageworm_Card -4220 //Solider_Card -4221 //Skeleton_General_Card -4222 //Skel_Prisoner_Card -4223 //Stalactic_Golem_Card -4224 //Stem_Worm_Card -4225 //Stone_Shooter_Card -4226 //Sting_Card -4227 //Spring_Rabbit_Card -4228 //Sleeper_Card -4229 //C_Tower_Manager_Card -4230 //Shinobi_Card -4231 //Increase_Soil_Card -4232 //Wild_Ginseng_Card -4233 //Baby_Leopard_Card -4234 //Anolian_Card -4235 //Cookie_XMAS_Card -4236 //Amon_Ra_Card -4237 //Owl_Duke_Card -4238 //Owl_Baron_Card -4239 //Iron_Fist_Card -4240 //Arclouse_Card -4241 //Archangeling_Card -4242 //Apocalips_Card -4243 //Antonio_Card -4244 //Alarm_Card -4245 //Am_Mut_Card -4246 //Assulter_Card -4247 //Aster_Card -4248 //Ancient_Mummy_Card -4249 //Ancient_Worm_Card -4250 //Executioner_Card -4251 //Elder_Card -4252 //Alligator_Card -4253 //Alice_Card -4254 //Tirfing_Card -4255 //Orc_Lady_Card -4256 //Orc_Archer_Card -4257 //Wild_Rose_Card -4258 //Wicked_Nymph_Card -4259 //Wooden_Golem_Card -4260 //Wootan_Shooter_Card -4261 //Wootan_Fighter_Card -4262 //Evil_Cloud_Hermit_Card -4263 //Incant_Samurai_Card -4264 //Wind_Ghost_Card -4265 //Li_Me_Mang_Ryang_Card -4266 //Eclipse_Card -4267 //Explosion_Card -4268 //Injustice_Card -4269 //Incubus_Card -4270 //Giant_Spider_Card -4271 //Giant_Honet_Card -4272 //Dancing_Dragon_Card -4273 //Shellfish_Card -4274 //Zombie_Master_Card -4275 //Zombie_Prisoner_Card -4276 //Lord_Of_Death_Card -4277 //Zherlthsh_Card -4278 //Gibbet_Card -4279 //Deleter_Card -4280 //Geographer_Card -4281 //Zipper_Bear_Card -4282 //Tengu_Card -4283 //Greatest_General_Card -4284 //Chepet_Card -4285 //Choco_Card -4286 //Karakasa_Card -4287 //Kapha_Card -4288 //Carat_Card -4289 //Caterpillar_Card -4290 //Cat_O_Nine_Tail_Card -4291 //Kobold_Leader_Card -4292 //Kobold_Archer_Card -4293 //Cookie_Card -4294 //Quve_Card -4295 //Kraben_Card -4296 //Cramp_Card -4297 //Cruiser_Card -4298 //Cremy_Fear_Card -4299 //Clock_Card -4300 //Chimera_Card -4301 //Killer_Mantis_Card -4302 //Tao_Gunka_Card -4303 //Whisper_Boss_Card -4304 //Tamruan_Card -4305 //Turtle_General_Card -4306 //Toad_Card -4307 //Kind_Of_Beetle_Card -4308 //Tri_Joint_Card -4309 //Parasite_Card -4310 //Panzer_Goblin_Card -4311 //Permeter_Card -4312 //Fur_Seal_Card -4313 //Punk_Card -4314 //Penomena_Card -4315 //Pest_Card -4316 //Fake_Angel_Card -4317 //Mobster_Card -4318 //Knight_Windstorm_Card -4319 //Freezer_Card -4320 //Bloody_Knight_Card -4321 //Hylozoist_Card -4322 //High_Orc_Card -4323 //Garm_Baby_Card -4324 //Garm_Card -4325 //Harpy_Card -4326 //See_Otter_Card -4327 //Blood_Butterfly_Card -4328 //Hyegun_Card -4329 //Phendark_Card -4330 //Dark_Snake_Lord_Card -4331 //Heater_Card -4332 //Waste_Stove_Card -4333 //Venomous_Card -4334 //Noxious_Card -4335 //Pitman_Card -4336 //Ungoliant_Card -4337 //Porcellio_Card -4338 //Obsidian_Card -4339 //Mineral_Card -4340 //Teddy_Bear_Card -4341 //Metaling_Card -4342 //Rsx_0806_Card -4343 //Mole_Card -4344 //Anopheles_Card -4345 //Hill_Wind_Card -4346 //Ygnizem_Card -4347 //Armaia_Card -4348 //Whikebain_Card -4349 //Erend_Card -4350 //Rawrel_Card -4351 //Kavac_Card -4352 //B_Ygnizem_Card -4353 //Removal_Card -4354 //Gemini_Card -4355 //Gremlin_Card -4356 //Beholder_Card -4357 //B_Seyren_Card -4358 //Seyren_Card -4359 //B_Eremes_Card -4360 //Eremes_Card -4361 //B_Harword_Card -4362 //Harword_Card -4363 //B_Magaleta_Card -4364 //Magaleta_Card -4365 //B_Katrinn_Card -4366 //Katrinn_Card -4367 //B_Shecil_Card -4368 //Shecil_Card -4369 //Venatu_Card -4370 //Dimik_Card -4371 //Archdam_Card -4372 //Bacsojin_Card -4373 //Chung_E_Card -4374 //Apocalips_H_Card -4375 //Orc_Baby_Card -4376 //Lady_Tanee_Card -4377 //Green_Iguana_Card -4378 //Acidus_Card -4379 //Acidus__Card -4380 //Ferus_Card -4381 //Ferus__Card -4382 //Novus__Card -4383 //Novus_Card -4384 //Hydro_Card -4385 //Dragon_Egg_Card -4386 //Detale_Card -4387 //Ancient_Mimic_Card -4388 //Deathword_Card -4389 //Plasma_Card -4390 //Breeze_Card -4391 //Retribution_Card -4392 //Observation_Card -4393 //Shelter_Card -4394 //Solace_Card -4395 //Tha_Maero_Card -4396 //Tha_Odium_Card -4397 //Tha_Despero_Card -4398 //Tha_Dolor_Card -4399 //Thanatos_Card -4400 //Aliza_Card -4401 //Alicel_Card -4402 //Aliot_Card -4403 //Kiel_Card -4404 //Skogul_Card -4405 //Frus_Card -4406 //Skeggiold_Card -4407 //Randgris_Card -4408 //Gloom_Under_Night_Card -4409 //Agav_Card -4410 //Echio_Card -4411 //Vanberk_Card -4412 //Isilla_Card -4413 //Hodremlin_Card -4414 //Seeker_Card -4415 //Snowier_Card -4416 //Siroma_Card -4417 //Ice_Titan_Card -4418 //Gazeti_Card -4419 //Ktullanux_Card -4420 //Muscipular_Card -4421 //Drosera_Card -4422 //Roween_Card -4423 //Galion_Card -4424 //Stapo_Card -4425 //Atroce_Card -4426 //Byorgue_Card -4427 //Sword_Guardian_Card -4428 //Bow_Guardian_Card -4429 //Salamander_Card -4430 //Ifrit_Card -4431 //Kasa_Card -4432 //Magmaring_Card -4433 //Imp_Card -4434 //Knocker_Card -4435 //Zombie_Slaughter_Card -4436 //Ragged_Zombie_Card -4437 //Hell_Poodle_Card -4438 //Banshee_Card -4439 //Flame_Skull_Card -4440 //Necromancer_Card -4441 //Fallen_Bishop_Card -4442 //Tatacho_Card -4443 //Aqua_Elemental_Card -4444 //Draco_Card -4445 //Luciola_Vespa_Card -4446 //Enhanced_Skeleton_Card -4447 //Centipede_Card -4448 //Cornus_Card -4449 //Dark_Shadow_Card -4450 //Banshee_Master_Card -4451 //Ant_Buyanne_Card -4452 //Centipede_Larva_Card -4453 //Hilsrion_Card -4454 //Light_Up_Card1 -4455 //Light_Up_Card2 -4456 //Nidhogg_Shadow_Card -4457 //Nahtzigger_Card -4458 //Duneirre_Card -4459 //Lata_Card -4460 //Ringco_Card -4461 //Pillar_Card -4462 //Hardrock_Mammos_Card -4463 //Tendrilrion_Card -4464 //Aunoe_Card -4465 //Panat_Card -4466 //Beholder_Master_Card -4467 //Heavy_Metaling_Card -4468 //Pinguicula_Dark_Card -4469 //Naga_Card -4470 //Nepenthes_Card -4471 //Egg_Of_Draco_Card -4472 //Bradium_Goram_Card -4473 //Ancient_Tree_Card -4474 //Jakudam_Card -4475 //Cobalt_Mineral_Card -4476 //Pinguicula_Card -4477 //Hell_Apocalips_Card -4478 //Light_Up_Card3 -4479 //Light_Up_Card4 -4480 //Sealed_Kiel_Card -4481 //Sealed_Ktullanux_Card -4482 //Sealed_B_Ygnizem_Card -4483 //Sealed_Dracula_Card -4484 //Sealed_Mistress_Card -4485 //Sealed_Gloom_Card -4486 //Sealed_Berz_Card -4487 //Sealed_Ifrit_Card -4488 //Sealed_D_Lord_Card -4489 //Sealed_Pharaoh_Card -4490 //Sealed_M_Flower_Card -4491 //Sealed_B_Shecil_Card -4492 //Sealed_Orc_Hero_Card -4493 //Sealed_Tao_Card -4494 //Sealed_TurtleG_Card -4495 //Sealed_Amon_Ra_Card -4496 //Sealed_Drake_Card -4497 //Sealed_Knight_WS_Card -4498 //Sealed_Lady_Tanee_Card -4499 //Sealed_Samurai_Card -4500 //Sealed_Orc_Load_Card -4501 //Sealed_B_Magaleta_Card -4502 //Sealed_B_Harword_Card -4503 //Sealed_Apocalips_H_Card -4504 //Sealed_Eddga_Card -4505 //Scaraba_Card -4506 //Dolomedes_Card -4507 //Q_Scaraba_Card -4508 //Gold_Scaraba_Card -4509 //Gold_Q_Scaraba_Card -4510 //Miming_Card -4511 //Little_Fatum_Card -4512 //Parus_Card -4513 //Angra_Mantis_Card -4514 //Pom_Spider_Card -4515 //Alnoldi_Card -4516 //Comodo_Card -4517 //Cendrawasih_Card -4518 //Banaspaty_Card -4519 //Butoijo_Card -4520 //Leak_Card -4521 //Sedora_Card -4522 //Sropho_Card -4523 //Pot_Dofle_Card -4524 //King_Dramoh_Card -4525 //Kraken_Card -4526 //Odd_Coelacanth_Card -4527 //Black_Coelacanth_Card -4528 //Mutant_Coelacanth_Card -4529 //Cruel_Coelacanth_Card -4530 //Siorava_Card -4531 //Red_Eruma_Card -4532 //Wild_Rider_Card -4533 //Mini_Octopus_Card -4534 //Giant_Octopus_Card -4535 //Sealed_Rand_Card -4536 //Sealed_Atroce_Card -4537 //Sealed_Phreeoni_Card -4538 //Sealed_Bacsojin_Card -4539 //Sealed_F_Bishop_Card -4540 //SLD_Lord_Of_Death_Card -4541 //SLD_B_Katrinn_Card -4542 //SLD_Detale_Card -4543 //SLD_Garm_Card -4544 //SLD_Dark_Snake_Card -4545 //Novice_Poring_Card -4546 //Val'khiri_Card -4547 //Enhanced_Byorgue_Card -4548 //Enhanced_Salamander_Card -4549 //Upd_Maya_Puple_Card -4550 //Upd_Bow_Guardian_Card -//4551 -4552 //Manny_Card -4553 //Sid_Card -4554 //Diego_Card -4555 //Scrat_Card -4556 //Fenrir_Card -4557 //Weakened_Fenrir_Card -//4558 -4559 //Evil_Morocc_Card -4560 //Clown_Alphoccio_Card -4561 //Professor_Celia_Card -4562 //Champion_Chen_Card -4563 //Creator_Flamel_Card -4564 //Stalker_Gertie_Card -4565 //Paladin_Randel_Card -4566 //Gypsy_Trentini_Card -4567 //Alphoccio_Card -4568 //Celia_Card -4569 //Chen_Card -4570 //Flamel_Card -4571 //Gertie_Card -4572 //Randel_Card -4573 //Trentini_Card -4574 //Daehyon_Card -4575 //Soheon_Card -4576 //Gioia_Card -4577 //Elvira_Card -4578 //Pyuriel_Card -4579 //Lola_Card -4580 //Kades_Card -4581 //Rudo_Card -4582 //Bungisngis_Card -4583 //Engkanto_Card -4584 //Manananggal_Card -4585 //Mangkukulam_Card -4586 //Tikbalang_Card -4587 //Tiyanak_Card -4588 //Wakwak_Card -4589 //Jejeling_Card -4590 //Bangungot_Card -4591 //Bakonawa_Card -4592 //Buwaya_Card -4593 //Menblatt_Card -4594 //Petal_Card -4595 //Cenere_Card -4596 //AntiqueBook_Card -4597 //LichternB_Card -4598 //LichternG_Card -4599 //LichternR_Card -4600 //LichternY_Card -4601 //Amdarais_Card -4602 //Realized_Amdarais_Card -4603 //Corruption_Root_Card -4604 //Realized_Corruption_Root_Card -4605 //UndeadKnightM_Card -4606 //UndeadKnightF_Card -4607 //FaithfulManager_Card -4608 //White_Knight_Card -4609 //Khalitzburg_Knight_Card -4610 //Sarah_Card -4625 //Time_Holder_Card -4626 //Big_Ben_Card -4627 //Big_Bell_Card -4628 //Neo_Punk_Card -4629 //Arc_Elder_Card -4630 //Nightmare_Timer_Keeper_Card -4631 //Owl_Viscount_Card -4632 //Owl_Marquees_Card -4633 //Enhanced_Archer_Skeleton_Card -4634 //Enhanced_Soldier_Skeleton_Card -4635 //Enhanced_Amdarais_Card -4636 //Bijou_Card -4637 //Immortal_Corps_Card -4638 //Watcher_Card -4639 //Taffy_Card -4640 //Frozen_Wolf_Card -4641 //Zombie_Guard_Card -4642 //Min_Toad_Card -4643 //Min_Vagabond_Wolf_Card -4644 //Min_Vocal_Card -4645 //Min_Eclipse_Card -4646 //Min_Chimera_Card -4647 //Min_Osiris_Card -4648 //Min_Eddga_Card -4649 //Min_Phreeoni_Card -4650 //Min_Orc_Hero_Card -4651 //Min_Tao_Gunka_Card -4652 //N_Amon_Ra_Card -4653 //N_Arclouse_Card -4654 //N_Mimic_Card -4655 //N_Minorous_Card -4656 //N_Mummy_Card -4657 //N_Ancient_Mummy_Card -4658 //N_Verit_Card -//--- 2015 / 7 / 9 - ΓΦΑΎΌφΑ€ΐΟ -11600 //Shining_Holy_Water -22847 //Prontera_Medal -22848 //Prison_Key -22849 //Prontera_Time_Crystal -6921 //Dehumidifiers -6922 //Sandpaper -6924 //Red_Eye -6936 //Cold_Core -6937 //Silicone_Shell -6938 //Hedgehog_Picks -6939 //Old_Belt -6940 //Moving_Dark_Matter -6941 //Fragments_Valkyrie_Power -6942 //Will_Master -6961 //Huge_Metal_Scrap -6962 //Old_Fuel -6905 //Broken_Magic_Stone -//--- 2014 / 12 / 17 -12739 //Snow_Flower -//--- 2014 / 07 / 09 -6897 //Blue_Whale -6898 //Whale -6899 //Giant_Octopus -6900 //Giant_Squid -6901 //Sturgeon -6902 //King_Lobster -6903 //King_Earthworm -22770 //Shark_Skewer -22771 //Bluefin_Tuna_Skewer -22772 //Sea_Bream_Skewer -22773 //Piranha_Skewer -22774 //Salmon_Skewer -22775 //Eels_Skewer -22776 //Carp_Skewer -//--- 2014 / 04 / 21 -6691 //Fire_Feather -6692 //Patrol_Journal -6693 //Stone_Blessing -6694 //Blood_of_The_Monster -6695 //Tooth_Rock_Of_Fire_Golem -6696 //Fire_Frill -12490 //Vivid_Notation -22516 //Black_As_Night_Piece_ -22534 //Closed_Mind_Box -11563 //Hot_Tea -11564 //Sweets -//--- 2013 / 12 / 23 -6832 //Questioned_Parts -11597 //Iron_Worm -22699 //Test_Reagent -22679 //Death_Bin -22687 //Pieces_Of_Sentiment -6615 //Siege_Guild_Coin -//--- 2013 / 08 / 02 -6750 //Failed_Engine -6751 //Crushed_Can_Iron_Plate -22648 //Angeling_Package -22649 //Deviling_Package -6797 //11th_Coin -//11556 -6770 //Shark -6771 //Bluefin_Tuna -6772 //Octopus -6773 //Snapper -6774 //Piranha -6775 //Salmon -6776 //Eels -6777 //Carp -6778 //Squid_2 -6779 //Mackerel -6780 //Crucian_Carp -6781 //Living_Earthworm -6782 //Fresh_Lobster -11589 //Iceflake -11590 //Meat_Skewer5 -22620 //Memorial_Box -22621 //Squid_Bbq - -//--- 2013 / 04 / 16 -6557 //Fancy_Fairy_Wing -6558 //Pile_Of_Acorn -6559 //Eye_Drops -6560 //Leaf_Bookmark -6561 //Dustball -12812 //Snow_Flip -12813 //Peony_Mommy -12814 //Slapping_Herb -12815 //Yggdrasil_Dust -6592 //Small_Wooden_Chest -6594 //Magic_Bronze_Bullion -6595 //Hammer_Of_Velund -6596 //Anvil_Of_Velund -6597 //Bracelet_Of_Velund -6598 //Rib_Of_Jormungand -6599 //Spirit_Of_Hugin -6600 //Spirit_Of_Munin -6601 //Chisel_Of_Giant -6602 //Secret_Of_Rune -6603 //Skin_Of_Hraesvelg -6604 //Essence_Rune_Magic -6605 //Muspellium -//6668 -7056 //Payroll_Of_Kafra -11557 //TE_White_Potion -11558 //TE_White_Slim_Potion -6607 //Temporal_Crystal -6608 //Coagulated_Spell -6609 //Glast_Decayed_Nail -6610 //Glast_Horrendous_Mouth -6611 //Colorful_Key -6612 //Gold_Coin_Basket -6613 //Flashy_Brooch -7228 //Gold_Bullion -7229 //Silver_Bullion -7230 //White_Gold_Bullion -6699 //Faith_Silence -6700 //White_Snake_Scale -6701 //Treasure_Dwarf -6702 //Sweat_Dwarf -6703 //Warrior_Tears -6704 //Warrior_Anger -6705 //Warrior_Certificate -6706 //Guardian_Flowers -6683 //Dried_Flower -7640 //Butterfly_Hair_Decoration -7642 //Bloody_Coin -7643 //Bloody_Letter -7644 //Unsent_Letter -6521 //Royal_Certificate -6522 //Royal_Certificate_ -6531 //Royal_Certificate__ -6557 //Fancy_Fairy_Wing -6558 //Pile_Of_Acorn -6559 //Eye_Drops -6560 //Leaf_Bookmark -6561 //Dustball -12812 //Snow_Flip -12813 //Peony_Mommy -12814 //Slapping_Herb -12815 //Yggdrasil_Dust -714 //Emperium -6381 //Field_Shovel -6382 //Urn -6393 //Round_Feather -6394 //Golden_Feather -6395 //Angel_Magic_Power -6403 //Comodo_L -6404 //Caress_H -6405 //Cendrawasih_F -6423 //Anger_Seagod -6469 //Will_Of_Warrior -6470 //Blood_Thirst -6471 //Goast_Chill -6493 //Makibishi -6496 //Tikbalang_Thick_Spine -6497 //Lesser_Agimat -6498 //Jejellopy -6499 //Ancient_Grudge -6508 //Silver_Bracelet -6509 //Mysterious_Flower -6510 //Elegant_Flower -6511 //Beautiful_Flower -6512 //Charm_Fire -6513 //Charm_Ice -6514 //Charm_Wind -6515 //Charm_Earth -6516 //Bakonawa_Doll -6517 //Bangungot_Doll -6518 //Buwaya_Doll -6523 //Bakonawa_Spirit_Piece -6524 //Bangungot_Spirit_Piece -6525 //Buwaya_Spirit_Piece -7347 //Lab_Staff_Record -7760 //Yaga_Magic_Book -7762 //Yaga_Pestle -7824 //Spirit_Liquor -11519 //Beef_Toast -11520 //Mora_Mandarin -11521 //Pingui_Berry_Juice -11522 //Red_Raffle_Sap -11523 //Yellow_Raffle_Sap -11524 //White_Raffle_Sap -11525 //Mora_Hip_Tea -11526 //Rafflecino -11532 //Nasi_Goreng -11533 //Satay -11534 //Coco_Juice -11536 //Cat_Hard_Biscuit -11537 //Rice_Weevil_Bug -11547 //Woe_Violet_Potion -11548 //Woe_White_Potion -11549 //Woe_Blue_Potion -12329 //Recall_MaleGM -12330 //Recall_FemaleGM -12342 //Manuk's_Opportunity -12343 //Manuk's_Courage -12344 //Pinguicula's_fruit_Jam -12345 //Luciola's_Honey_Jam -12348 //Manuk's_Faith -12349 //Cornus'_Tears -12350 //Angeling_Potion -12351 //Shout_Megaphone -12354 //Buche_De_Noel -12355 //Xmas_Gift -12356 //Louise_Costume_Box -12418 //Full_SwingK -12419 //Mana_Plus -12422 //HP_Increase_Potion_(Small) -12423 //HP_Increase_Potion_(Medium) -12424 //HP_Increase_Potion_(Large) -12425 //SP_Increase_Potion_(Small) -12426 //SP_Increase_Potion_(Medium) -12427 //SP_Increase_Potion_(Large) -12428 //Concentrated_White_Potion_Z -12429 //Savage_Full_Roast -12430 //Cocktail_Warg_Blood -12431 //Minor_Stew -12432 //Siroma_Iced_Tea -12433 //Drosera_Herb_Salad -12434 //Petite_Tail_Noodles -12436 //Vitata_500 -12437 //Concentrated_Ceromain_Soup -12475 //Cure_Free -12536 //NY_Rice_Cake_Soup -12539 //Splendid_Box -12561 //Mysterious_Seed -12574 //Mora_Berry -12575 //Arrow_Of_Elf_Cntr -12576 //Hunting_Arrow_Cntr -12582 //Siege_Supply_Box -12608 //Splendid_Box2 -12609 //Old_Ore_Box -12612 //Old_Coin_Pocket -12613 //High_Coin_Pocket -12614 //Mid_Coin_Pocket -12615 //Low_Coin_Pocket -12616 //Sgrade_Pocket -12617 //Agrade_Pocket -12618 //Bgrade_Pocket -12619 //Cgrade_Pocket -12620 //Dgrade_Pocket -12621 //Egrade_Pocket -12623 //High_Weapon_Box -12675 //Sg_Weapon_Supply_Box -12676 //Sg_Violet_Potion_Box -12677 //Siege_Arrow_Quiver_S -12678 //Siege_Arrow_Quiver_A -12679 //Sg_White_Potion_Box -12680 //Sg_Blue_Potion_Box -12683 //Sg_Vi_Potion_Box200 -12690 //Old_C_Album_Helm -12691 //Old_C_Album_Armor -12692 //Old_C_Album_Shield -12693 //Old_C_Album_Garment -12694 //Old_C_Album_Shoes -12695 //Old_C_Album_Acc -12698 //Old_C_Album_Weapon -12699 //Tikbalang_Belt -12700 //Insideout_Shirt -12775 //Ancient_Spirit_Agimat - -//--- 2010 / 03 / 12 -601 //Wing_Of_Fly -602 //Wing_Of_Butterfly -603 //Old_Blue_Box -604 //Branch_Of_Dead_Tree -605 //Anodyne -606 //Aloebera -607 //Yggdrasilberry -608 //Seed_Of_Yggdrasil -609 //Amulet -610 //Leaf_Of_Yggdrasil -611 //Spectacles -612 //Portable_Furnace -613 //Iron_Hammer -614 //Golden_Hammer -615 //Oridecon_Hammer -616 //Old_Card_Album -617 //Old_Violet_Box -618 //Worn_Out_Scroll -619 //Unripe_Apple -620 //Orange_Juice -621 //Bitter_Herb -622 //Rainbow_Carrot -623 //Earthworm_The_Dude -624 //Rotten_Fish -625 //Lusty_Iron -626 //Monster_Juice -627 //Sweet_Milk -628 //Well_Dried_Bone -629 //Singing_Flower -630 //Dew_Laden_Moss -631 //Deadly_Noxious_Herb -632 //Fatty_Chubby_Earthworm -633 //Baked_Yam -634 //Tropical_Banana -635 //Horror_Of_Tribe -636 //No_Recipient -637 //Old_Broom -638 //Silver_Knife_Of_Chaste -639 //Armlet_Of_Obedience -640 //Shining_Stone -641 //Contracts_In_Shadow -642 //Book_Of_Devil -643 //Pet_Incubator -644 //Gift_Box -645 //Center_Potion -656 //Awakening_Potion -657 //Berserk_Potion -658 //Union_Of_Tribe -659 //Heart_Of_Her -660 //Prohibition_Red_Candle -661 //Sway_Apron -662 //Inspector_Certificate -663 //Korea_Rice_Cake -664 //Gift_Box_1 -665 //Gift_Box_2 -666 //Gift_Box_3 -667 //Gift_Box_4 -668 //Handsei -669 //Rice_Cake_Soup -678 //Poison_Bottle -679 //Gold_Pill -681 //Memory_Of_Wedding -682 //Realgar_Wine -683 //Exorcize_Herb -684 //Durian -686 //Earth_Scroll_1_3 -687 //Earth_Scroll_1_5 -688 //Cold_Scroll_1_3 -689 //Cold_Scroll_1_5 -690 //Fire_Scroll_1_3 -691 //Fire_Scroll_1_5 -692 //Wind_Scroll_1_3 -693 //Wind_Scroll_1_5 -694 //Ghost_Scroll_1_3 -695 //Ghost_Scroll_1_5 -696 //Fire_Scroll_2_1 -697 //Fire_Scroll_2_5 -698 //Fire_Scroll_3_1 -699 //Fire_Scroll_3_5 -700 //Cold_Scroll_2_1 -12000 //Cold_Scroll_2_5 -12001 //Holy_Scroll_1_3 -12002 //Holy_Scroll_1_5 -12003 //Holy_Scroll_2_1 -12004 //Arrow_Container -12005 //Iron_Arrow_Container -12006 //Steel_Arrow_Container -12007 //Ori_Arrow_Container -12008 //Fire_Arrow_Container -12009 //Silver_Arrow_Container -12010 //Wind_Arrow_Container -12011 //Stone_Arrow_Container -12012 //Crystal_Arrow_Container -12013 //Shadow_Arrow_Container -12014 //Imma_Arrow_Container -12015 //Rusty_Arrow_Container -12016 //Speed_Up_Potion -12017 //Slow_Down_Potion -12018 //Fire_Cracker -12020 //Water_Of_Darkness -12027 //Giggling_Box -12028 //Box_Of_Thunder -12029 //Gloomy_Box -12030 //Box_Of_Grudge -12031 //Sleepy_Box -12032 //Box_Of_Storm -12033 //Box_Of_Sunlight -12034 //Painting_Box -12040 //Stone_Of_Intelligence_ -12041 //Str_Dish01 -12042 //Str_Dish02 -12043 //Str_Dish03 -12044 //Str_Dish04 -12045 //Str_Dish05 -12046 //Int_Dish01 -12047 //Int_Dish02 -12048 //Int_Dish03 -12049 //Int_Dish04 -12050 //Int_Dish05 -12051 //Vit_Dish01 -12052 //Vit_Dish02 -12053 //Vit_Dish03 -12054 //Vit_Dish04 -12055 //Vit_Dish05 -12056 //Agi_Dish01 -12057 //Agi_Dish02 -12058 //Agi_Dish03 -12059 //Agi_Dish04 -12060 //Agi_Dish05 -12061 //Dex_Dish01 -12062 //Dex_Dish02 -12063 //Dex_Dish03 -12064 //Dex_Dish04 -12065 //Dex_Dish05 -12066 //Luk_Dish01 -12067 //Luk_Dish02 -12068 //Luk_Dish03 -12069 //Luk_Dish04 -12070 //Luk_Dish05 -12071 //Str_Dish06 -12072 //Str_Dish07 -12073 //Str_Dish08 -12074 //Str_Dish09 -12075 //Str_Dish10 -12076 //Int_Dish06 -12077 //Int_Dish07 -12078 //Int_Dish08 -12079 //Int_Dish09 -12080 //Int_Dish10 -12081 //Vit_Dish06 -12082 //Vit_Dish07 -12083 //Vit_Dish08 -12084 //Vit_Dish09 -12085 //Vit_Dish10 -12086 //Agi_Dish06 -12087 //Agi_Dish07 -12088 //Agi_Dish08 -12089 //Agi_Dish09 -12090 //Agi_Dish10 -12091 //Dex_Dish06 -12092 //Dex_Dish07 -12093 //Dex_Dish08 -12094 //Dex_Dish09 -12095 //Dex_Dish10 -12096 //Luk_Dish06 -12097 //Luk_Dish07 -12098 //Luk_Dish08 -12099 //Luk_Dish09 -12100 //Luk_Dish10 -12101 //Citron -12102 //Meat_Skewer -12103 //Bloody_Dead_Branch -12104 //Random_Quiver -12105 //Set_Of_Taiming_Item -12106 //Accessory_Box -12107 //Wrapped_Mask -12108 //Bundle_Of_Magic_Scroll -12109 //Poring_Box -12110 //First_Aid_Kit -12111 //Food_Package -12112 //Tropical_Sograt -12113 //Vermilion_The_Beach -12114 //Elemental_Fire -12115 //Elemental_Water -12116 //Elemental_Earth -12117 //Elemental_Wind -12118 //Resist_Fire -12119 //Resist_Water -12120 //Resist_Earth -12121 //Resist_Wind -12122 //Sesame_Pastry -12123 //Honey_Pastry -12124 //Rainbow_Cake -12125 //Outdoor_Cooking_Kits -12126 //Indoor_Cooking_Kits -12127 //High_end_Cooking_Kits -12128 //Imperial_Cooking_Kits -12129 //Fantastic_Cooking_Kits -12130 //Cookie_Bag -12132 //Red_Bag -12144 //Sphere_Case_Wind -12145 //Sphere_Case_Darkness -12146 //Sphere_Case_Poison -12147 //Sphere_Case_Water -12148 //Sphere_Case_Fire -12149 //Bullet_Case -12150 //Bullet_Case_Blood -12151 //Bullet_Case_Silver -12183 //Holy_Arrow_Quiver -12184 //Mercenary_Red_Potion -12185 //Mercenary_Blue_Potion -12194 //Hometown_Gift -12195 //Plain_Rice_Cake -12196 //Hearty_Rice_Cake -12197 //Salty_Rice_Cake -12198 //Lucky_Rice_Cake -12241 //M_Center_Potion -12242 //M_Awakening_Potion -12243 //M_Berserk_Potion -12246 //Magic_Card_Album -12260 //Cool_Summer_Outfit -12290 //Mysterious_Can -12291 //Mysterious_PET_Bottle -12292 //Unripe_Fruit -12293 //Dried_Yggdrasilberry -12341 //Special_Alloy_Trap_Box -12346 //Unripe_Acorn -12347 //Acorn_Jelly -12353 //Tiny_Waterbottle -12358 //Fan_Of_Wind -12359 //Very_Soft_Plant -12360 //Very_Red_Juice -12362 //Kuloren -12364 //Staff_Of_Leader -12365 //Charming_Lotus -12366 //Gril_Doll -12367 //Luxury_Whisky_Bottle -12368 //Splendid_Mirror -12369 //Oilpalm_Coconut -12371 //Magical_Lithography -12372 //Hell_Contract -12373 //Boy's_Naivety -12374 //Flaming_Ice -12376 //Mysterious_Can2 -12377 //Mysterious_PET_Bottle2 -12379 //Pope's_Cookie -12383 //Vulcan_Bullet_Magazine -12392 //Repair_A -12393 //Repair_B -12394 //Repair_C -12395 //Tantanmen -12414 //Guarana_Candy -12717 //Poison_Paralysis -12718 //Poison_Leech -12719 //Poison_Oblivion -12720 //Poison_Disheart -12721 //Poison_Numb -12722 //Poison_Fever -12723 //Poison_Laughing -12724 //Poison_Fatigue -12734 //Runstone_Quality -12735 //Runstone_Ancient -12736 //Runstone_Mystic -12737 //Runstone_Ordinary -12738 //Runstone_Rare -506 //Green_Potion -507 //Red_Herb -508 //Yellow_Herb -509 //White_Herb -510 //Blue_Herb -511 //Green_Herb -512 //Apple -513 //Banana -514 //Grape -515 //Carrot -516 //Sweet_Potato -517 //Meat -518 //Honey -519 //Milk -520 //Leaflet_Of_Hinal -521 //Leaflet_Of_Aloe -522 //Fruit_Of_Mastela -523 //Holy_Water -525 //Panacea -526 //Royal_Jelly -528 //Monster's_Feed -529 //Candy -530 //Candy_Striper -531 //Apple_Juice -532 //Banana_Juice -533 //Grape_Juice -534 //Carrot_Juice -535 //Pumpkin -536 //Ice_Cream -537 //Pet_Food -538 //Well_Baked_Cookie -539 //Piece_Of_Cake -544 //Fish_Slice -548 //Cheese -549 //Nice_Sweet_Potato -550 //Popped_Rice -551 //Shusi -553 //Bun -564 //Rice_Ball -566 //Tomyumkung -567 //Prawn -568 //Lemon -569 //Novice_Potion -570 //Lucky_Candy -571 //Lucky_Candy_Cane -572 //Lucky_Cookie -574 //Egg -576 //Prickly_Fruit -577 //Grain -578 //Strawberry -579 //Delicious_Fish -580 //Bread -581 //Mushroom -582 //Orange -584 //Fish_Ball_Soup -587 //Prickly_Fruit_ -591 //Caviar_Pancake -592 //Jam_Pancake -593 //Honey_Pancake -594 //Sour_Cream_Pancake -595 //Mushroom_Pancake -11513 //Protect_Neck_Candy -11515 //Coconut -11516 //Asai_Fruit -11517 //Puri_Potion -701 //Ora_Ora -702 //Animal_Blood -703 //Hinalle -704 //Aloe -705 //Clover -706 //Four_Leaf_Clover -707 //Singing_Plant -708 //Ment -709 //Izidor -710 //Illusion_Flower -711 //Shoot -712 //Flower -713 //Empty_Bottle -715 //Yellow_Gemstone -716 //Red_Gemstone -717 //Blue_Gemstone -718 //Dark_Red_Jewel -719 //Violet_Jewel -720 //Skyblue_Jewel -721 //Azure_Jewel -722 //Scarlet_Jewel -723 //Cardinal_Jewel -724 //Cardinal_Jewel_ -725 //Red_Jewel -726 //Blue_Jewel -727 //White_Jewel -728 //Golden_Jewel -729 //Bluish_Green_Jewel -730 //Crystal_Jewel -731 //Crystal_Jewel_ -732 //Crystal_Jewel__ -733 //Crystal_Jewel___ -734 //Red_Frame -735 //Blue_Porcelain -736 //White_Platter -737 //Black_Ladle -738 //Pencil_Case -739 //Rouge -740 //Stuffed_Doll -741 //Poring_Doll -742 //Chonchon_Doll -743 //Spore_Doll -744 //Bunch_Of_Flowers -745 //Wedding_Bouquet -746 //Glass_Bead -747 //Crystal_Mirror -748 //Witherless_Rose -749 //Frozen_Rose -750 //Baphomet_Doll -751 //Osiris_Doll -752 //Grasshopper_Doll -753 //Monkey_Doll -754 //Raccoondog_Doll -756 //Oridecon_Stone -757 //Elunium_Stone -901 //Danggie -902 //Tree_Root -903 //Reptile_Tongue -904 //Scorpion's_Tail -905 //Stem -906 //Pointed_Scale -907 //Resin -908 //Spawn -909 //Jellopy -910 //Garlet -911 //Scell -912 //Zargon -913 //Tooth_Of_Bat -914 //Fluff -915 //Chrysalis -916 //Feather_Of_Birds -917 //Talon -918 //Sticky_Webfoot -919 //Animal's_Skin -920 //Claw_Of_Wolves -921 //Mushroom_Spore -922 //Orcish_Cuspid -923 //Evil_Horn -924 //Powder_Of_Butterfly -925 //Bill_Of_Birds -926 //Scale_Of_Snakes -928 //Insect_Feeler -929 //Immortal_Heart -930 //Rotten_Bandage -931 //Orcish_Voucher -932 //Skel_Bone -934 //Mementos -935 //Shell -936 //Scales_Shell -937 //Posionous_Canine -938 //Sticky_Mucus -939 //Bee_Sting -940 //Grasshopper's_Leg -941 //Nose_Ring -942 //Yoyo_Tail -943 //Solid_Shell -944 //Horseshoe -945 //Raccoon_Leaf -946 //Snail's_Shell -947 //Horn -948 //Bear's_Foot -949 //Feather -950 //Heart_Of_Mermaid -951 //Fin -952 //Cactus_Needle -953 //Stone_Heart -954 //Shining_Scales -955 //Worm_Peelings -956 //Gill -957 //Decayed_Nail -958 //Horrendous_Mouth -959 //Rotten_Scale -960 //Nipper -961 //Conch -962 //Tentacle -963 //Sharp_Scale -964 //Crap_Shell -965 //Clam_Shell -966 //Flesh_Of_Clam -967 //Turtle_Shell -968 //Voucher_Of_Orcish_Hero -969 //Gold -970 //Alchol -971 //Detrimindexta -972 //Karvodailnirol -973 //Counteragent -974 //Mixture -975 //Scarlet_Dyestuffs -976 //Lemon_Dyestuffs -978 //Cobaltblue_Dyestuffs -979 //Darkgreen_Dyestuffs -980 //Orange_Dyestuffs -981 //Violet_Dyestuffs -982 //White_Dyestuffs -983 //Black_Dyestuffs -984 //Oridecon -985 //Elunium -986 //Anvil -987 //Oridecon_Anvil -988 //Golden_Anvil -989 //Emperium_Anvil -990 //Boody_Red -991 //Crystal_Blue -992 //Wind_Of_Verdure -993 //Yellow_Live -994 //Flame_Heart -995 //Mistic_Frozen -996 //Rough_Wind -997 //Great_Nature -998 //Iron -999 //Steel -1000 //Star_Crumb -1001 //Sparkling_Dust -1002 //Iron_Ore -1003 //Coal -1004 //Patriotism_Marks -1005 //Hammer_Of_Blacksmith -1006 //Old_Magic_Book -1007 //Penetration -1008 //Frozen_Heart -1009 //Sacred_Marks -1010 //Phracon -1011 //Emveretarcon -1012 //Lizard_Scruff -1013 //Colorful_Shell -1014 //Jaws_Of_Ant -1015 //Thin_N'_Long_Tongue -1016 //Rat_Tail -1017 //Moustache_Of_Mole -1018 //Nail_Of_Mole -1019 //Wooden_Block -1020 //Long_Hair -1021 //Dokkaebi_Horn -1022 //Fox_Tail -1023 //Fish_Tail -1024 //Chinese_Ink -1025 //Spiderweb -1026 //Acorn -1027 //Porcupine_Spike -1028 //Wild_Boar's_Mane -1029 //Tiger's_Skin -1030 //Tiger_Footskin -1031 //Limb_Of_Mantis -1032 //Blossom_Of_Maneater -1033 //Root_Of_Maneater -1034 //Cobold_Hair -1035 //Dragon_Canine -1036 //Dragon_Scale -1037 //Dragon_Train -1038 //Petite_DiablOfs_Horn -1039 //Petite_DiablOfs_Wing -1040 //Elder_Pixie's_Beard -1041 //Lantern -1042 //Short_Leg -1043 //Nail_Of_Orc -1044 //Tooth_Of_ -1045 //Sacred_Masque -1046 //Tweezer -1047 //Head_Of_Medusa -1048 //Slender_Snake -1049 //Skirt_Of_Virgin -1050 //Tendon -1051 //Detonator -1052 //Single_Cell -1053 //Tooth_Of_Ancient_Fish -1054 //Lip_Of_Ancient_Fish -1055 //Earthworm_Peeling -1056 //Grit -1057 //Moth_Dust -1058 //Wing_Of_Moth -1059 //Transparent_Cloth -1060 //Golden_Hair -1061 //Starsand_Of_Witch -1062 //Pumpkin_Head -1063 //Sharpened_Cuspid -1064 //Reins -1065 //Booby_Trap -1066 //Tree_Of_Archer_1 -1067 //Tree_Of_Archer_2 -1068 //Tree_Of_Archer_3 -1088 //Morocc_Potion -1089 //Payon_Potion -1092 //Empty_Cylinder -1093 //Empty_Potion -1094 //Short_Daenggie -1095 //Needle_Of_Alarm -1096 //Round_Shell -1097 //Worn_Out_Page -1098 //Manacles -1099 //Worn_Out_Prison_Uniform -6001 //Essence_Of_Fire -6002 //Token_Of_Apostle -6003 //Soul_Pendant -6004 //Bapho_Doll -6008 //Wood -6010 //Pickaxe -6020 //Fur -6021 //Peaked_Hat -6022 //Hard_Skin -6023 //Mystic_Horn -6032 //Horn_Of_Hilsrion -6033 //Horn_Of_Tendrilion -6073 //Dragon's_Mane -6075 //Crystalized_Teardrop -6086 //Withered_Flower -6087 //Crystal_Of_Soul_01 -6088 //Crystal_Of_Soul_02 -6089 //Piece_Of_Darkness -6090 //Purified_Bradium -6091 //Dark_Red_Scale -6095 //Flavored_Alcohol -6096 //Fish_With_Blue_Back -6097 //Pumpkin_Pie_ -6098 //Small_Snow_Flower -6099 //Grilled_Rice_Cake -6100 //Damp_Darkness -6104 //Big_Cell -6105 //Morning_Dew -6106 //Well_Ripened_Berry -6107 //Sunset_On_The_Rock -6108 //Apple_Pudding -6109 //Plant_Neutrient -6110 //Vital_Flower -6111 //Mystic_Stone -6112 //Fresh_Plant -6113 //Vital_Flower_ -6114 //Flame_Gemstone -6115 //Bun_ -6120 //Face_Paint -6123 //Surface_Paint -6128 //Guillotine_Antidote -6144 //Heartbroken_Tears -6145 //Vulcan_Bullet -6146 //Magic_Gear_Fuel -6147 //Liquid_Condensed_Bullet -6186 //Monkey_Wrench -6189 //Magic_Book_FB -6190 //Magic_Book_CB -6191 //Magic_Book_LB -6192 //Magic_Book_SG -6193 //Magic_Book_LOV -6194 //Magic_Book_MS -6195 //Magic_Book_CM -6196 //Magic_Book_TV -6197 //Magic_Book_TS -6198 //Magic_Book_JT -6199 //Magic_Book_WB -6200 //Magic_Book_HD -6201 //Magic_Book_ES -6202 //Magic_Book_ES_ -6203 //Magic_Book_CL -6204 //Magic_Book_CR -6205 //Magic_Book_DL -6210 //Seed_Of_Horny_Plant -6211 //Bloodsuck_Plant_Seed -6212 //Bomb_Mushroom_Spore -6213 //Explosive_Powder -6214 //Smoke_Powder -6215 //Tear_Gas -6216 //Oil_Bottle -6217 //Mandragora_Flowerpot -6223 //Carnium -6224 //Bradium -6244 //Gun_Powder -6245 //Black_Powder -6246 //Yellow_Powder -6247 //White_Powder -6248 //Melange_Pot -6249 //Savage_Meat -6250 //Cooking_Skewer -6251 //Black_Charcoal -6252 //Wolf_Blood -6253 //Cold_Ice -6254 //Beef_Head_Meat -6255 //Large_Cookpot -6256 //Ice_Fragment -6257 //Ice_Crystal -6258 //Comodo_Tropic_Fruit -6259 //Drocera_Tentacle -6260 //Petti_Tail -6261 //Fine_Noodle -6262 //Cool_Gravy -6263 //Coconut_Fruit -6264 //Melon -6265 //Pineapple -6279 //Apple_Bomb_CB -6280 //Pinepple_Bomb_CB -6281 //Coconut_Bomb_CB -6282 //Melon_Bomb_CB -6283 //Banana_Bomb_CB -6284 //Plant_Genetic_Grow -6285 //Quality_Potion_Book -6297 //Bottle_To_Throw -6321 //Rakehorn_Helm -6322 //Antler_Helm -6323 //Twinhorn_Helm -6324 //Singlehorn_Helm -6325 //White_Spider_Limb -6326 //Queen_Wing_Piece -6360 //Scarlet_Pts -6361 //Indigo_Pts -6362 //Yellow_Wish_Pts -6363 //Lime_Green_Pts -7001 //Mould_Powder -7002 //Ogre_Tooth -7003 //Anolian_Skin -7004 //Mud_Lump -7005 //Skull -7006 //Wing_Of_Red_Bat -7007 //Claw_Of_Rat -7008 //Stiff_Horn -7009 //Glitter_Shell -7010 //Tail_Of_Steel_Scorpion -7011 //Claw_Of_Monkey -7012 //Tough_Scalelike_Stem -7013 //Coral_Reef -7014 //Old_Portrait -7015 //Bookclip_In_Memory -7016 //Spoon_Stub -7017 //Executioner's_Mitten -7018 //Young_Twig -7019 //Loki's_Whispers -7020 //Mother's_Nightmare -7021 //Foolishness_Of_Blind -7022 //Old_Hilt -7023 //Blade_Lost_In_Darkness -7024 //Bloody_Edge -7026 //Key_Of_Clock_Tower -7027 //Underground_Key -7030 //Claw_Of_Desert_Wolf -7031 //Old_Frying_Pan -7032 //Piece_Of_Egg_Shell -7033 //Poison_Spore -7034 //Red_Socks_With_Holes -7035 //Matchstick -7036 //Fang_Of_Garm -7038 //Yarn -7041 //Fine_Grit -7043 //Fine_Sand -7047 //Alice's_Apron -7048 //Talon_Of_Griffin -7049 //Stone -7053 //Cyfar -7054 //Brigan -7055 //Animal_Pooopoo -7056 //Payroll_Of_Kafra -7057 //Gallar_Horn -7058 //Gullraifnir -7063 //Soft_Feather -7064 //Dragon_Fly_Wing -7065 //Sea_Otter_Leather -7066 //Ice_Piece -7067 //Stone_Piece -7068 //Burn_Tree -7069 //Broken_Armor_Piece -7070 //Broken_Shell -7071 //Tatters_Clothes -7072 //Rust_Suriken -7073 //Jewel_Of_Prayer -7074 //Iron_Glove -7075 //Iron_Maiden -7076 //Mystery_Wheel -7077 //Silver_Fancy -7078 //Anger_Of_Valkurye -7079 //Feather_Of_Angel -7080 //Foot_Step_Of_Cat -7081 //Beard_Of_Women -7082 //Root_Of_Stone -7083 //Soul_Of_Fish -7084 //Saliva_Of_Bird -7085 //Tendon_Of_Bear -7086 //Symbol_Of_Sun -7087 //Breath_Of_Soul -7088 //Crystal_Of_Snow -7089 //Indication_Of_Tempest -7090 //Slilince_Wave -7091 //Rough_Billows -7092 //Air_Stream -7093 //Wheel -7094 //Mystery_Piece -7095 //Broken_Steel_Piece -7096 //Cold_Magma -7097 //Burning_Heart -7098 //Live_Coal -7099 //Old_Magic_Circle -7100 //Sharp_Leaf -7101 //Peco_Wing_Feather -7102 //Hideous_Dream -7103 //Unknown_Liquid_Bottle -7104 //Fake_Angel_Wing -7105 //Fake_Angel_Loop -7106 //Goat's_Horn -7107 //Gaoat's_Skin -7108 //Boroken_Shiled_Piece -7109 //Shine_Spear_Blade -7110 //Vroken_Sword -7111 //Smooth_Paper -7112 //Fright_Paper_Blade -7113 //Broken_Pharaoh_Symbol -7114 //Tutankhamen's_Mask -7115 //Harpy's_Feather -7116 //Harpy's_Claw -7117 //Rent_Spell_Book -7118 //Rent_Scroll -7119 //Spawns -7120 //Burning_Horse_Shoe -7121 //Honey_Jar -7122 //Hot_Hair -7123 //Dragon's_Skin -7124 //Sand_Lump -7125 //Scropion's_Nipper -7126 //Large_Jellopy -7127 //Alcol_Create_Book -7128 //FireBottle_Create_Book -7129 //Acid_Create_Book -7130 //Plant_Create_Book -7131 //Mine_Create_Book -7132 //Coating_Create_Book -7133 //Slim_Potion_Create_Book -7134 //Medicine_Bowl -7140 //Seed_Of_Life -7141 //Yggdrasilberry_Dew -7143 //Life_Force_Pot -7144 //Normal_Potion_Book -7147 //Jasmin -7149 //Yellow_Plate -7150 //Bamboo_Cut -7151 //Oil_Paper -7152 //Glossy_Hair -7153 //Old_Japaness_Clothes -7154 //Poison_Powder -7155 //Poison_Toad's_Skin -7156 //Broken_Shuriken -7157 //Black_Mask -7158 //Broken_Wine_Vessel -7159 //Tengu's_Nose -7160 //Lord's_Passable_Ticket -7161 //Black_Bear's_Skin -7162 //Cloud_Piece -7163 //Sharp_Feeler -7164 //Hard_Peach -7165 //Limpid_Celestial_Robe -7166 //Soft_Silk_Cloth -7167 //Mystery_Iron_Bit -7168 //Great_Wing -7169 //Taegeuk_Plate -7170 //Tuxedo -7171 //Leopard_Skin -7172 //Leopard_Talon -7174 //Packing_Ribbon -7175 //Packing_Paper -7182 //Cacao -7186 //Thin_Stem -7187 //Festival_Mask -7188 //Browny_Root -7189 //Heart_Of_Tree -7190 //Solid_Peeling -7191 //Lamplight -7192 //Blade_Of_Pinwheel -7193 //Germinating_Sprout -7194 //Soft_Leaf -7195 //Air_Rifle -7196 //Shoulder_Protection -7197 //Tough_Vines -7198 //Great_Leaf -7200 //Flexible_String -7201 //Log -7202 //Beetle_Nipper -7203 //Solid_Twig -7204 //Gunpowder -7205 //Piece_Of_Black_Cloth -7206 //Black_Kitty_Doll -7207 //Old_Manteau -7208 //Rusty_Cleaver -7209 //Dullahan's_Helm -7210 //Dullahan_Armor -7211 //Rojerta_Piece -7212 //Hanging_Doll -7213 //Needle_Pouch -7214 //Bat_Cage -7215 //Broken_Needle -7216 //Red_Scarf -7217 //Spool -7218 //Rotten_Rope -7219 //Striped_Socks -7220 //Ectoplasm -7221 //Tangled_Chain -7222 //Tree_Knot -7223 //Distorted_Portrait -7225 //Pumpkin_Bucket -7226 //Pill -7262 //Fan -7263 //Cat_Eyed_Stone -7264 //Dried_Sand -7265 //Dragon_Horn -7266 //Dragon_Fang -7267 //Tiger_Skin_Panties -7268 //Little_Blacky_Ghost -7269 //Bib -7270 //Milk_Bottle -7277 //Munak_Doll -7286 //Chilli -7289 //Olivine -7290 //Phlogopite -7291 //Agate -7292 //Muscovite -7293 //Rose_Quartz -7294 //Turquoise -7295 //Citrine -7296 //Pyroxene -7297 //Biotite -7298 //Leaf_Clothes -7299 //Bamboo_Basket -7300 //Gemstone -7301 //Sword_Accessory -7303 //Bag_Of_Rice -7312 //Jubilee -7315 //Dark_Crystal_Fragment -7316 //Long_Limb -7317 //Screw -7318 //Old_Pick -7319 //Old_Steel_Plate -7320 //Air_Pollutant -7321 //Fragment_Of_Crystal -7322 //Poisonous_Gas -7323 //Battered_Kettle -7325 //Tube -7326 //Fluorescent_Liquid -7327 //Headlamp -7340 //Will_Of_Darkness -7345 //Armlet_Of_Prisoner -7352 //Transparent_Plate01 -7353 //Transparent_Plate02 -7354 //Transparent_Plate03 -7355 //Transparent_Plate04 -7356 //Piece_Of_Crest1 -7357 //Piece_Of_Crest2 -7358 //Piece_Of_Crest3 -7359 //Piece_Of_Crest4 -7419 //Embryo_HandBook -7433 //Scroll -7434 //Elemental_Potion_Book -7435 //Golden_Bracelet -7436 //Piece_Of_Memory_Green -7437 //Piece_Of_Memory_Purple -7438 //Piece_Of_Memory_Blue -7439 //Piece_Of_Memory_Red -7440 //Red_Feather -7441 //Blue_Feather -7442 //Cursed_Seal -7443 //Tri_Headed_Dragon_Head -7444 //Treasure_Box -7445 //Dragonball_Green -7446 //Dragonball_Blue -7447 //Dragonball_Red -7448 //Dragonball_Yellow -7449 //Bloody_Page -7450 //Piece_Of_Bone_Armor -7451 //Scale_Of_Red_Dragon -7452 //Yellow_Spice -7453 //Sweet_Sauce -7454 //Plain_Sauce -7455 //Hot_Sauce -7456 //Red_Spice -7457 //Cooking_Oil -7472 //Cookbook01 -7473 //Cookbook02 -7474 //Cookbook03 -7475 //Cookbook04 -7476 //Cookbook05 -7477 //Cookbook06 -7478 //Cookbook07 -7479 //Cookbook08 -7480 //Cookbook09 -7481 //Cookbook10 -7482 //Pot -7507 //Sturdy_Iron_Piece -7510 //Valhalla_Flower -7511 //Rune_Of_Darkness -7512 //Burnt_Parts -7513 //Pocket_Watch__ -7521 //Flame_Stone -7522 //Ice_Stone -7523 //Wind_Stone -7524 //Shadow_Orb -7561 //Ice_Heart -7562 //Ice_Scale -7563 //Bloody_Rune -7564 //Rotten_Meat -7565 //Sticky_Poison -7566 //Will_Of_Darkness_ -7567 //Suspicious_Hat -7568 //White_Mask -7574 //Ice_Particle -7751 //Old_White_Cloth -7752 //Clattering_Skull -7753 //Broken_Farming_Utensil -7754 //Broken_Crown -7830 //Goddess_Tear -7831 //Valkyrie_Token -7832 //Brynhild_Armor_Piece -7833 //Hero_Remains -7834 //Andvari_Ring -7835 //Dusk_Glow -7836 //Dawn_Essence -7837 //Cold_Moonlight -7838 //Hazy_Starlight -7931 //Poison_Kit -7932 //Poison_Herb_Nerium -7933 //Poison_Herb_Rantana -7934 //Poison_Herb_Makulata -7935 //Poison_Herb_Seratum -7936 //Poison_Herb_Scopolia -7937 //Poison_Herb_Amoena -7938 //Light_Granule -7939 //Elder_Branch -7940 //Special_Alloy_Trap -11000 //Prontera_Book_01 -11001 //Adventure_Story01 -11002 //Great_Chef_Orleans01 -11003 //Legend_Of_Kafra01 -11004 //Mercenary_Rebellion -11005 //Tyrant_Schmidt -11006 //Blood_Flower01 -11007 //Blood_Flower02 -11008 //Barmund -11009 //Adventure_Story02 -11020 //Japan_Book1 -11021 //Japan_Book2 -11022 //Mix_Cook_Book -11023 //Increase_Stamina_Study -11024 //Vital_Drink_CB -//--- 2010 / 03 / 12 diff --git a/db/re/item_db.txt b/db/re/item_db.txt deleted file mode 100644 index f5031fdc3a..0000000000 --- a/db/re/item_db.txt +++ /dev/null @@ -1,13965 +0,0 @@ -// Items Database -// -// Structure of Database: -// ID,AegisName,Name,Type,Buy,Sell,Weight,ATK[:MATK],DEF,Range,Slots,Job,Class,Gender,Loc,wLV,eLV[:maxLevel],Refineable,View,{ Script },{ OnEquip_Script },{ OnUnequip_Script } -// -// Healing Items -//============================================================= -500,Choko_Gangjeong,Choko Gangjeong,0,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 10,10; },{},{} -501,Red_Potion,Red Potion,0,10,,70,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(45,65),0; },{},{} -502,Orange_Potion,Orange Potion,0,50,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(105,145),0; },{},{} -503,Yellow_Potion,Yellow Potion,0,180,,130,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(175,235),0; },{},{} -504,White_Potion,White Potion,0,1200,,150,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(325,405),0; },{},{} -505,Blue_Potion,Blue Potion,0,5000,,150,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 0,rand(40,60); },{},{} -506,Green_Potion,Green Potion,0,40,,70,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_HALLUCINATION; },{},{} -507,Red_Herb,Red Herb,0,18,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(18,28),0; },{},{} -508,Yellow_Herb,Yellow Herb,0,40,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(38,58),0; },{},{} -509,White_Herb,White Herb,0,120,,70,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(75,115),0; },{},{} -510,Blue_Herb,Blue Herb,0,60,,70,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 0,rand(15,30); },{},{} -511,Green_Herb,Green Herb,0,10,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_end SC_POISON; },{},{} -512,Apple,Apple,0,15,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(16,22),0; },{},{} -513,Banana,Banana,0,15,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(17,21),0; },{},{} -514,Grape,Grape,0,200,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 0,rand(10,15); },{},{} -515,Carrot,Carrot,0,15,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(18,20),0; },{},{} -516,Sweet_Potato,Potato,0,15,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(15,23),0; },{},{} -517,Meat,Meat,0,50,,150,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(70,100),0; },{},{} -518,Honey,Honey,0,500,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(70,100),rand(20,40); },{},{} -519,Milk,Milk,0,25,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(27,37),0; },{},{} -520,Leaflet_Of_Hinal,Hinalle Leaflet,0,150,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(175,235),0; },{},{} -521,Leaflet_Of_Aloe,Aloe Leaflet,0,360,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(325,405),0; },{},{} -522,Fruit_Of_Mastela,Mastela Fruit,0,8500,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(400,600),0; },{},{} -523,Holy_Water,Holy Water,0,20,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_end SC_CURSE; },{},{} -525,Panacea,Panacea,0,500,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination; },{},{} -526,Royal_Jelly,Royal Jelly,0,7000,,150,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(325,405),rand(40,60); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination; },{},{} -528,Monster's_Feed,Monster's Feed,0,60,,150,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(72,108),0; },{},{} -529,Candy,Candy,0,10,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(45,65),0; },{},{} -530,Candy_Striper,Candy Cane,0,20,,40,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(105,145),0; },{},{} -531,Apple_Juice,Apple Juice,0,20,,40,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(25,35),0; },{},{} -532,Banana_Juice,Banana Juice,0,20,,40,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(26,34),0; },{},{} -533,Grape_Juice,Grape Juice,0,250,,40,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 0,rand(15,25); },{},{} -534,Carrot_Juice,Carrot Juice,0,20,,40,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(27,33),0; },{},{} -535,Pumpkin,Pumpkin,0,15,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 19,0; },{},{} -536,Ice_Cream,Ice Cream,0,150,,80,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(105,145),0; sc_start SC_FREEZE,10000,0,2500,0; },{},{} -537,Pet_Food,Pet Food,0,1000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(50,90),0; },{},{} -538,Well_Baked_Cookie,Well-baked Cookie,0,1000,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(160,200),0; },{},{} -539,Piece_Of_Cake,Piece of Cake,0,3000,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(270,330),0; },{},{} -540,Falcon's_Feed,Falcon Food,0,2000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(185,225),0; },{},{} -541,Pecopeco's_Feed,PecoPeco Food,0,3000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(325,405),0; },{},{} -542,Festive_Cookie,Festival Cookie,0,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(325,405),0; },{},{} -543,Festive_Rainbow_Cake,Festival Rainbow Cake,0,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(325,405),0; },{},{} -544,Fish_Slice,Raw Fish,0,20,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(25,60),0; },{},{} -545,Red_Slim_Potion,Condensed Red Potion,0,150,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(45,65),0; },{},{} -546,Yellow_Slim_Potion,Condensed Yellow Potion,0,600,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(175,235),0; },{},{} -547,White_Slim_Potion,Condensed White Potion,0,1650,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(325,405),0; },{},{} -548,Cheese,Cheese,0,2800,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 0,rand(10,15); },{},{} -549,Nice_Sweet_Potato,Yam,0,180,,80,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(50,100),0; sc_start SC_STUN,3000,0,1500,0; },{},{} -550,Popped_Rice,Rice Cake,0,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(10,15),0; },{},{} -551,Shusi,Sushi,0,1,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(50,60),0; },{},{} -552,KETUPAT,Ketupat,0,1,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(70,90),rand(20,30); },{},{} -553,Bun,Bao,0,1,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(35,70),0; },{},{} -554,Mojji,Mochi,0,100,,80,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(105,145),0; sc_start SC_STUN,3000,0; sc_start SC_BLIND,2000,0,1500,0; },{},{} -555,Rice_Cake,Traditional Rice Cake,0,100,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(105,145),0; },{},{} -556,Long_Rice_Cake,Rice Cake Stick,0,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(20,25),0; },{},{} -557,Hash_Rice_Cake,Neatly Sliced Rice Cake,0,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(25,30),0; },{},{} -558,Chocolate,Chocolate,0,1,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 1,1; },{},{} -559,HandMade_Chocolate,Hand-made Chocolate,0,1,,80,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 50,50; },{},{} -560,HandMade_Chocolate_,Handmade White Chocolate,0,5000,,80,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 50,50; },{},{} -561,White_Chocolate,White Chocolate,0,5000,,80,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 50,50; },{},{} -562,Pizza,Doublecrust Swiss Fondue,0,100,,150,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(70,100),0; },{},{} -563,Pizza_01,Doublecrust Swiss Fondue,0,1200,,150,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(375,445),0; },{},{} -564,Rice_Ball,Rice Ball,0,1,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 200,0; },{},{} -565,Vita500_Bottle,Vita500,0,580,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(142,274),0; },{},{} -566,Tomyumkung,Tom Yum Goong,0,10000,,150,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(244,350),rand(10,30); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination; },{},{} -567,Prawn,Shrimp,0,500,,40,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(117,192),0; },{},{} -568,Lemon,Lemon,0,60,,40,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 0,rand(10,20); },{},{} -569,Novice_Potion,Novice Potion,0,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(44,66),0; },{},{} -570,Lucky_Candy,Lucky Candy,0,10,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(45,65),0; },{},{} -571,Lucky_Candy_Cane,Lucky Candy Cane,0,20,,40,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(105,145),0; },{},{} -572,Lucky_Cookie,Lucky Cookie,0,1000,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(160,200),0; },{},{} -573,Chocolate_Drink,Chocolate Drink,0,7000,,150,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(330,410),rand(45,65); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination; },{},{} -574,Egg,Egg,0,20,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(33,42),0; },{},{} -575,Piece_Of_Cake_,2nd Anniversary Cake,0,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(270,330),0; },{},{} -576,Prickly_Fruit,Prickly Fruit,0,540,,60,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(150,300),rand(20,30); },{},{} -577,Grain,Bag of Grain,0,200,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(60,70),0; },{},{} -578,Strawberry,Strawberry,0,200,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 0,rand(16,28); },{},{} -579,Delicious_Fish,Fresh Fish,0,700,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(100,150),0; },{},{} -580,Bread,Bread,0,150,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(50,90),0; },{},{} -581,Mushroom,Edible Mushroom,0,40,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(20,30),0; },{},{} -582,Orange,Orange,0,300,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(10,20),rand(10,20); },{},{} -583,KETUPAT_,Ketupat Sayur,0,7000,,150,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(325,405),rand(40,60); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination; },{},{} -584,Fish_Ball_Soup,Fish Cake Soup,0,100,,60,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(40,70),0; },{},{} -585,Wurst,Brusti,11,2,,40,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(15,20),0; itemskill "PR_MAGNIFICAT",3; },{},{} -586,Mother's_Cake,Mother's Cake,0,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(325,405),0; },{},{} -587,Prickly_Fruit_,Red Prickly Fruit,0,880,,60,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(270,330),rand(20,30); },{},{} -588,Spaghetti,Spaghetti,0,100,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(40,70),0; },{},{} -589,Pizza_02,Pizza,0,1200,,150,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(375,445),0; },{},{} -590,Brezel_,Pretzel,0,2,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(50,90),0; },{},{} -591,Caviar_Pancake,Caviar Pancake,0,0,,150,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(325,405),rand(40,60); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination; },{},{} -592,Jam_Pancake,Jam Pancake,0,0,,150,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(325,405),rand(40,60); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination; },{},{} -593,Honey_Pancake,Honey Pancake,0,0,,150,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(325,405),rand(40,60); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination; },{},{} -594,Sour_Cream_Pancake,Sour-Cream Pancake,0,0,,150,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(325,405),rand(40,60); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination; },{},{} -595,Mushroom_Pancake,Mushroom Pancake,0,0,,150,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(325,405),rand(40,60); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination; },{},{} -596,Cute_Strawberry_Choco,Cute Strawberry-Choco,0,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 0,rand(1,100); },{},{} -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-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; },{},{} -608,Seed_Of_Yggdrasil,Yggdrasil Seed,0,5000,,300,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 50,50; },{},{} -609,Amulet,Amulet,2,100,,100,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -610,Leaf_Of_Yggdrasil,Yggdrasil Leaf,11,4000,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "ALL_RESURRECTION",1; },{},{} -611,Spectacles,Magnifier,11,40,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "MC_IDENTIFY",1; },{},{} -612,Portable_Furnace,Mini Furnace,2,150,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ produce 21; },{},{} -613,Iron_Hammer,Iron Hammer,2,1000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ produce 1; },{},{} -614,Golden_Hammer,Golden Hammer,2,3000,,300,,,,,0xFFFFFFFF,63,2,,,,,,{ produce 2; },{},{} -615,Oridecon_Hammer,Oridecon Hammer,2,5000,,400,,,,,0xFFFFFFFF,63,2,,,,,,{ produce 3; },{},{} -616,Old_Card_Album,Old Card Album,2,10000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_CardAlbum,1); },{},{} -617,Old_Violet_Box,Old Purple Box,2,10000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_VioletBox,1); },{},{} -618,Worn_Out_Scroll,Worn Out Scroll,2,50,,20,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -619,Unripe_Apple,Unripe Apple,2,1000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1002; },{},{} -620,Orange_Juice,Orange Juice,2,1500,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1113; },{},{} -621,Bitter_Herb,Bitter Herb,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1031; },{},{} -622,Rainbow_Carrot,Rainbow Carrot,2,2500,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1063; },{},{} -623,Earthworm_The_Dude,Earthworm the Dude,2,4000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1049; },{},{} -624,Rotten_Fish,Rotten Fish,2,2500,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1011; },{},{} -625,Lusty_Iron,Rusty Iron,2,100,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1042; },{},{} -626,Monster_Juice,Monster Juice,2,1500,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1035; },{},{} -627,Sweet_Milk,Sweet Milk,2,7000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1167; },{},{} -628,Well_Dried_Bone,Well-Dried Bone,2,10000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1107; },{},{} -629,Singing_Flower,Singing Flower,2,300,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1052; },{},{} -630,Dew_Laden_Moss,Dew Laden Moss,2,10,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1014; },{},{} -631,Deadly_Noxious_Herb,Deadly Noxious Herb,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1077; },{},{} -632,Fatty_Chubby_Earthworm,Fatty Chubby Earthworm,2,5000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1019; },{},{} -633,Baked_Yam,Sweet Potato,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1056; },{},{} -634,Tropical_Banana,Tropical Banana,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1057; },{},{} -635,Horror_Of_Tribe,Orc Trophy,2,300,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1023; },{},{} -636,No_Recipient,No Recipient,2,100,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1026; },{},{} -637,Old_Broom,Old Broom,2,350,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1110; },{},{} -638,Silver_Knife_Of_Chaste,Silver Knife of Chastity,2,12000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1170; },{},{} -639,Armlet_Of_Obedience,Armlet of Obedience,2,18000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1029; },{},{} -640,Shining_Stone,Shining Stone,2,3000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1155; },{},{} -641,Contracts_In_Shadow,Contract in Shadow,2,100,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1109; },{},{} -642,Book_Of_Devil,Book of the Devil,2,1800,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1101; },{},{} -643,Pet_Incubator,Pet Incubator,2,10000,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ bpet; },{},{} -644,Gift_Box,Gift Box,2,1000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_GiftBox,1); },{},{} -//ASPD in RE they give a fixed +4/+6/+9 ASPD -645,Center_Potion,Concentration Potion,2,1200,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ASPDPOTION0,1800000,4; },{},{} -656,Awakening_Potion,Awakening Potion,2,2200,,150,,,,,0xFFF7FEEF,63,2,,,40,,,{ sc_start SC_ASPDPOTION1,1800000,6; },{},{} -657,Berserk_Potion,Berserk Potion,2,4500,,200,,,,,0x41E646A6,63,2,,,85,,,{ sc_start SC_ASPDPOTION2,1800000,9; },{},{} -658,Union_Of_Tribe,Union of Tribe,2,2,,500,,,,,0xFFFFFFFF,63,2,,,,,,{ guildgetexp rand(600000,1200000); },{},{} -659,Heart_Of_Her,Her Heart,2,500,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1188; },{},{} -660,Prohibition_Red_Candle,Forbidden Red Candle,2,20000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1200; },{},{} -661,Sway_Apron,Soft Apron,2,20000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1275; },{},{} -662,Inspector_Certificate,Authoritative Badge,2,1450,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_SPEEDUP0,180000,25; },{},{} -663,Korea_Rice_Cake,Korean Rice Cake,0,1,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 10,0; },{},{} -664,Gift_Box_1,Gift Box,2,1000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_GiftBox_1,1); },{},{} -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,,,,,,{ Zeny += rand(1000,10000); },{},{} -669,Rice_Cake_Soup,Tempting Rice-Cake Soup,0,500,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 10,10; },{},{} -670,Gold_Coin_Moneybag,Bag of Gold Coins,3,100000,,400,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -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,2,100,,40,,,,,0xFFFFFFFF,63,2,,,,,,{ RouletteBronze++; },{},{} -674,Mithril_Coin,Mithril Coin,3,5000,,40,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -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; },{},{} -679,Gold_Pill,Pilule,2,5000,,300,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_DPOISON,10000,0,1000,0; sc_start SC_POISON,50000,0; },{},{} -680,Magical_Carnation,Magic Carnation,0,0,,1000,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 0,20; },{},{} -681,Memory_Of_Wedding,Sweet Memory of Marriage,2,50000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ if (getpartnerid()) sc_start SC_WEDDING,600000,0; },{},{} -682,Realgar_Wine,Distilled Fighting Spirit,2,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ATKPOTION,60000,30; },{},{} -683,Exorcize_Herb,Herb of Incantation,2,0,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_MATKPOTION,60000,30; },{},{} -684,Durian,Durian,2,15000,,300,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ATKPOTION,60000,10; sc_start SC_MATKPOTION,60000,10; },{},{} -685,RAMADAN,Ramadan,0,5000,,300,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 100,50; },{},{} -686,Earth_Scroll_1_3,Level 3 Earth Spike,11,1000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "WZ_EARTHSPIKE",3; },{},{} -687,Earth_Scroll_1_5,Level 5 Earth Spike,11,2000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "WZ_EARTHSPIKE",5; },{},{} -688,Cold_Scroll_1_3,Level 3 Cold Bolt,11,1000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "MG_COLDBOLT",3; },{},{} -689,Cold_Scroll_1_5,Level 5 Cold Bolt,11,2000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "MG_COLDBOLT",5; },{},{} -690,Fire_Scroll_1_3,Level 3 Fire Bolt,11,1000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "MG_FIREBOLT",3; },{},{} -691,Fire_Scroll_1_5,Level 5 Fire Bolt,11,2000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "MG_FIREBOLT",5; },{},{} -692,Wind_Scroll_1_3,Level 3 Lightening Bolt,11,1000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "MG_LIGHTNINGBOLT",3; },{},{} -693,Wind_Scroll_1_5,Level 5 Lightening Bolt,11,2000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "MG_LIGHTNINGBOLT",5; },{},{} -694,Ghost_Scroll_1_3,Level 3 Soul Strike,11,1000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "MG_SOULSTRIKE",3; },{},{} -695,Ghost_Scroll_1_5,Level 5 Soul Strike,11,2000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "MG_SOULSTRIKE",5; },{},{} -696,Fire_Scroll_2_1,Level 1 Fire Ball,11,1000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "MG_FIREBALL",1; },{},{} -697,Fire_Scroll_2_5,Level 5 Fire Ball,11,2000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "MG_FIREBALL",5; },{},{} -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,,,,,,,,,,,,,{},{},{} -702,Animal_Blood,Animal Gore,3,450,,100,,,,,,,,,,,,,{},{},{} -703,Hinalle,Hinalle,3,500,,10,,,,,,,,,,,,,{},{},{} -704,Aloe,Aloe,3,500,,10,,,,,,,,,,,,,{},{},{} -705,Clover,Clover,3,10,,10,,,,,,,,,,,,,{},{},{} -706,Four_Leaf_Clover,Four Leaf Clover,3,80000,,10,,,,,,,,,,,,,{},{},{} -707,Singing_Plant,Singing Plant,3,500,,10,,,,,,,,,,,,,{},{},{} -708,Ment,Ment,3,500,,10,,,,,,,,,,,,,{},{},{} -709,Izidor,Izidor,3,500,,10,,,,,,,,,,,,,{},{},{} -710,Illusion_Flower,Illusion Flower,3,1000,,10,,,,,,,,,,,,,{},{},{} -711,Shoot,Shoot,3,16,,10,,,,,,,,,,,,,{},{},{} -712,Flower,Flower,3,2,,10,,,,,,,,,,,,,{},{},{} -713,Empty_Bottle,Empty Bottle,3,6,,20,,,,,,,,,,,,,{},{},{} -714,Emperium,Emperium,3,2,,1000,,,,,,,,,,,,,{},{},{} -715,Yellow_Gemstone,Yellow Gemstone,3,600,,30,,,,,,,,,,,,,{},{},{} -716,Red_Gemstone,Red Gemstone,3,600,,30,,,,,,,,,,,,,{},{},{} -717,Blue_Gemstone,Blue Gemstone,3,600,,30,,,,,,,,,,,,,{},{},{} -718,Dark_Red_Jewel,Garnet,3,6000,,100,,,,,,,,,,,,,{},{},{} -719,Violet_Jewel,Amethyst,3,6000,,100,,,,,,,,,,,,,{},{},{} -720,Skyblue_Jewel,Aquamarine,3,6000,,100,,,,,,,,,,,,,{},{},{} -721,Azure_Jewel,Emerald,3,6000,,100,,,,,,,,,,,,,{},{},{} -722,Scarlet_Jewel,Pearl,3,6000,,100,,,,,,,,,,,,,{},{},{} -723,Cardinal_Jewel,Ruby,3,6000,,100,,,,,,,,,,,,,{},{},{} -724,Cardinal_Jewel_,Cursed Ruby,3,600,,100,,,,,,,,,,,,,{},{},{} -725,Red_Jewel,Sardonyx,3,6000,,100,,,,,,,,,,,,,{},{},{} -726,Blue_Jewel,Sapphire,3,6000,,100,,,,,,,,,,,,,{},{},{} -727,White_Jewel,Opal,3,6000,,100,,,,,,,,,,,,,{},{},{} -728,Golden_Jewel,Topaz,3,6000,,100,,,,,,,,,,,,,{},{},{} -729,Bluish_Green_Jewel,Zircon,3,6000,,100,,,,,,,,,,,,,{},{},{} -730,Crystal_Jewel,1carat Diamond,3,10000,,100,,,,,,,,,,,,,{},{},{} -731,Crystal_Jewel_,2carat Diamond,3,25000,,100,,,,,,,,,,,,,{},{},{} -732,Crystal_Jewel__,3carat Diamond,3,55000,,100,,,,,,,,,,,,,{},{},{} -733,Crystal_Jewel___,Cracked Diamond,3,10,,100,,,,,,,,,,,,,{},{},{} -734,Red_Frame,Red Frame,3,3000,,200,,,,,,,,,,,,,{},{},{} -735,Blue_Porcelain,Chung Jah,3,5000,,500,,,,,,,,,,,,,{},{},{} -736,White_Platter,China,3,1000,,300,,,,,,,,,,,,,{},{},{} -737,Black_Ladle,Black Ladle,3,400,,50,,,,,,,,,,,,,{},{},{} -738,Pencil_Case,Pencil Case,3,400,,100,,,,,,,,,,,,,{},{},{} -739,Rouge,Rouge,3,10000,,10,,,,,,,,,,,,,{},{},{} -740,Stuffed_Doll,Puppet,3,1000,,100,,,,,,,,,,,,,{},{},{} -741,Poring_Doll,Poring Doll,3,1800,,100,,,,,,,,,,,,,{},{},{} -742,Chonchon_Doll,Chonchon Doll,3,3000,,100,,,,,,,,,,,,,{},{},{} -743,Spore_Doll,Spore Doll,3,5500,,100,,,,,,,,,,,,,{},{},{} -744,Bunch_Of_Flowers,Bouquet,3,2000,,50,,,,,,,,,,,,,{},{},{} -745,Wedding_Bouquet,Wedding Bouquet,3,12000,,50,,,,,,,,,,,,,{},{},{} -746,Glass_Bead,Glass Bead,3,1400,,50,,,,,,,,,,,,,{},{},{} -747,Crystal_Mirror,Crystal Mirror,3,15000,,50,,,,,,,,,,,,,{},{},{} -748,Witherless_Rose,Witherless Rose,3,55000,,10,,,,,,,,,,,,,{},{},{} -749,Frozen_Rose,Frozen Rose,3,35000,,10,,,,,,,,,,,,,{},{},{} -750,Baphomet_Doll,Baphomet Doll,3,18000,,100,,,,,,,,,,,,,{},{},{} -751,Osiris_Doll,Osiris Doll,3,14000,,100,,,,,,,,,,,,,{},{},{} -752,Grasshopper_Doll,Rocker Doll,3,4000,,100,,,,,,,,,,,,,{},{},{} -753,Monkey_Doll,Yoyo Doll,3,6000,,100,,,,,,,,,,,,,{},{},{} -754,Raccoondog_Doll,Raccoon Doll,3,5000,,100,,,,,,,,,,,,,{},{},{} -756,Oridecon_Stone,Rough Oridecon,3,550,,200,,,,,,,,,,,,,{},{},{} -757,Elunium_Stone,Rough Elunium,3,650,,200,,,,,,,,,,,,,{},{},{} -901,Danggie,Daenggie,3,260,,10,,,,,,,,,,,,,{},{},{} -902,Tree_Root,Tree Root,3,12,,10,,,,,,,,,,,,,{},{},{} -903,Reptile_Tongue,Reptile Tongue,3,140,,10,,,,,,,,,,,,,{},{},{} -904,Scorpion's_Tail,Scorpion Tail,3,124,,10,,,,,,,,,,,,,{},{},{} -905,Stem,Stem,3,46,,10,,,,,,,,,,,,,{},{},{} -906,Pointed_Scale,Pointed Scale,3,68,,10,,,,,,,,,,,,,{},{},{} -907,Resin,Resin,3,120,,10,,,,,,,,,,,,,{},{},{} -908,Spawn,Spawn,3,140,,10,,,,,,,,,,,,,{},{},{} -909,Jellopy,Jellopy,3,6,,10,,,,,,,,,,,,,{},{},{} -910,Garlet,Garlet,3,40,,10,,,,,,,,,,,,,{},{},{} -911,Scell,Scell,3,160,,10,,,,,,,,,,,,,{},{},{} -912,Zargon,Zargon,3,480,,10,,,,,,,,,,,,,{},{},{} -913,Tooth_Of_Bat,Tooth of Bat,3,34,,10,,,,,,,,,,,,,{},{},{} -914,Fluff,Fluff,3,8,,10,,,,,,,,,,,,,{},{},{} -915,Chrysalis,Chrysalis,3,8,,10,,,,,,,,,,,,,{},{},{} -916,Feather_Of_Birds,Feather of Birds,3,10,,10,,,,,,,,,,,,,{},{},{} -917,Talon,Talon,3,20,,10,,,,,,,,,,,,,{},{},{} -918,Sticky_Webfoot,Sticky Webfoot,3,20,,10,,,,,,,,,,,,,{},{},{} -919,Animal's_Skin,Animal Skin,3,36,,10,,,,,,,,,,,,,{},{},{} -920,Claw_Of_Wolves,Wolf Claw,3,58,,10,,,,,,,,,,,,,{},{},{} -921,Mushroom_Spore,Mushroom Spore,3,36,,10,,,,,,,,,,,,,{},{},{} -922,Orcish_Cuspid,Orc's Fang,3,220,,10,,,,,,,,,,,,,{},{},{} -923,Evil_Horn,Evil Horn,3,1200,,10,,,,,,,,,,,,,{},{},{} -924,Powder_Of_Butterfly,Powder of Butterfly,3,90,,10,,,,,,,,,,,,,{},{},{} -925,Bill_Of_Birds,Bill of Birds,3,64,,10,,,,,,,,,,,,,{},{},{} -926,Scale_Of_Snakes,Snake Scale,3,82,,10,,,,,,,,,,,,,{},{},{} -928,Insect_Feeler,Insect Feeler,3,114,,10,,,,,,,,,,,,,{},{},{} -929,Immortal_Heart,Immortal Heart,3,374,,10,,,,,,,,,,,,,{},{},{} -930,Rotten_Bandage,Rotten Bandage,3,350,,10,,,,,,,,,,,,,{},{},{} -931,Orcish_Voucher,Orcish Voucher,3,142,,10,,,,,,,,,,,,,{},{},{} -932,Skel_Bone,Skel-Bone,3,232,,10,,,,,,,,,,,,,{},{},{} -934,Mementos,Memento,3,600,,10,,,,,,,,,,,,,{},{},{} -935,Shell,Shell,3,14,,10,,,,,,,,,,,,,{},{},{} -936,Scales_Shell,Scale Shell,3,466,,10,,,,,,,,,,,,,{},{},{} -937,Posionous_Canine,Venom Canine,3,148,,10,,,,,,,,,,,,,{},{},{} -938,Sticky_Mucus,Sticky Mucus,3,70,,10,,,,,,,,,,,,,{},{},{} -939,Bee_Sting,Bee Sting,3,32,,10,,,,,,,,,,,,,{},{},{} -940,Grasshopper's_Leg,Grasshopper's Leg,3,36,,10,,,,,,,,,,,,,{},{},{} -941,Nose_Ring,Nose Ring,3,568,,10,,,,,,,,,,,,,{},{},{} -942,Yoyo_Tail,Yoyo Tail,3,114,,10,,,,,,,,,,,,,{},{},{} -943,Solid_Shell,Solid Shell,3,448,,10,,,,,,,,,,,,,{},{},{} -944,Horseshoe,Horseshoe,3,588,,10,,,,,,,,,,,,,{},{},{} -945,Raccoon_Leaf,Raccoon Leaf,3,106,,10,,,,,,,,,,,,,{},{},{} -946,Snail's_Shell,Snail's Shell,3,64,,10,,,,,,,,,,,,,{},{},{} -947,Horn,Horn,3,116,,10,,,,,,,,,,,,,{},{},{} -948,Bear's_Foot,Bear's Footskin,3,174,,10,,,,,,,,,,,,,{},{},{} -949,Feather,Feather,3,20,,10,,,,,,,,,,,,,{},{},{} -950,Heart_Of_Mermaid,Heart of Mermaid,3,264,,10,,,,,,,,,,,,,{},{},{} -951,Fin,Fin,3,412,,10,,,,,,,,,,,,,{},{},{} -952,Cactus_Needle,Cactus Needle,3,82,,10,,,,,,,,,,,,,{},{},{} -953,Stone_Heart,Stone Heart,3,184,,10,,,,,,,,,,,,,{},{},{} -954,Shining_Scales,Shining Scale,3,466,,10,,,,,,,,,,,,,{},{},{} -955,Worm_Peelings,Worm Peeling,3,52,,10,,,,,,,,,,,,,{},{},{} -956,Gill,Gill,3,342,,10,,,,,,,,,,,,,{},{},{} -957,Decayed_Nail,Decayed Nail,3,82,,10,,,,,,,,,,,,,{},{},{} -958,Horrendous_Mouth,Horrendous Mouth,3,390,,10,,,,,,,,,,,,,{},{},{} -959,Rotten_Scale,Stinky Scale,3,168,,10,,,,,,,,,,,,,{},{},{} -960,Nipper,Nipper,3,114,,10,,,,,,,,,,,,,{},{},{} -961,Conch,Conch,3,158,,10,,,,,,,,,,,,,{},{},{} -962,Tentacle,Tentacle,3,70,,10,,,,,,,,,,,,,{},{},{} -963,Sharp_Scale,Sharp Scale,3,250,,10,,,,,,,,,,,,,{},{},{} -964,Crap_Shell,Crab Shell,3,90,,10,,,,,,,,,,,,,{},{},{} -965,Clam_Shell,Clam Shell,3,56,,10,,,,,,,,,,,,,{},{},{} -966,Flesh_Of_Clam,Clam Flesh,3,158,,10,,,,,,,,,,,,,{},{},{} -967,Turtle_Shell,Turtle Shell,3,680,,10,,,,,,,,,,,,,{},{},{} -968,Voucher_Of_Orcish_Hero,Heroic Emblem,3,3000,,10,,,,,,,,,,,,,{},{},{} -969,Gold,Gold,3,150000,,200,,,,,,,,,,,,,{},{},{} -970,Alchol,Alcohol,3,400,,30,,,,,,,,,,,,,{},{},{} -971,Detrimindexta,Detrimindexta,3,400,,30,,,,,,,,,,,,,{},{},{} -972,Karvodailnirol,Karvodailnirol,3,400,,30,,,,,,,,,,,,,{},{},{} -973,Counteragent,Counteragent,3,800,,70,,,,,,,,,,,,,{},{},{} -974,Mixture,Mixture,3,800,,70,,,,,,,,,,,,,{},{},{} -975,Scarlet_Dyestuffs,Scarlet Dyestuffs,3,8000,,150,,,,,,,,,,,,,{},{},{} -976,Lemon_Dyestuffs,Lemon Dyestuffs,3,8000,,150,,,,,,,,,,,,,{},{},{} -978,Cobaltblue_Dyestuffs,Cobaltblue Dyestuffs,3,8000,,150,,,,,,,,,,,,,{},{},{} -979,Darkgreen_Dyestuffs,Darkgreen Dyestuffs,3,8000,,150,,,,,,,,,,,,,{},{},{} -980,Orange_Dyestuffs,Orange Dyestuffs,3,8000,,150,,,,,,,,,,,,,{},{},{} -981,Violet_Dyestuffs,Violet Dyestuffs,3,8000,,150,,,,,,,,,,,,,{},{},{} -982,White_Dyestuffs,White Dyestuffs,3,8000,,150,,,,,,,,,,,,,{},{},{} -983,Black_Dyestuffs,Black Dyestuffs,3,8000,,150,,,,,,,,,,,,,{},{},{} -984,Oridecon,Oridecon,3,1100,,200,,,,,,,,,,,,,{},{},{} -985,Elunium,Elunium,3,1100,,200,,,,,,,,,,,,,{},{},{} -986,Anvil,Anvil,3,30000,,500,,,,,,,,,,,,,{},{},{} -987,Oridecon_Anvil,Oridecon Anvil,3,120000,,700,,,,,,,,,,,,,{},{},{} -988,Golden_Anvil,Golden Anvil,3,300000,,900,,,,,,,,,,,,,{},{},{} -989,Emperium_Anvil,Emperium Anvil,3,600000,,1000,,,,,,,,,,,,,{},{},{} -990,Boody_Red,Red Blood,3,1000,,50,,,,,,,,,,,,,{},{},{} -991,Crystal_Blue,Crystal Blue,3,1000,,50,,,,,,,,,,,,,{},{},{} -992,Wind_Of_Verdure,Wind of Verdure,3,1000,,50,,,,,,,,,,,,,{},{},{} -993,Yellow_Live,Green Live,3,1000,,50,,,,,,,,,,,,,{},{},{} -994,Flame_Heart,Flame Heart,3,3000,,300,,,,,,,,,,,,,{},{},{} -995,Mistic_Frozen,Mystic Frozen,3,3000,,300,,,,,,,,,,,,,{},{},{} -996,Rough_Wind,Rough Wind,3,3000,,300,,,,,,,,,,,,,{},{},{} -997,Great_Nature,Great Nature,3,3000,,300,,,,,,,,,,,,,{},{},{} -998,Iron,Iron,3,100,,50,,,,,,,,,,,,,{},{},{} -999,Steel,Steel,3,1000,,100,,,,,,,,,,,,,{},{},{} -1000,Star_Crumb,Star Crumb,3,4500,,100,,,,,,,,,,,,,{},{},{} -1001,Sparkling_Dust,Star Dust,3,1500,,10,,,,,,,,,,,,,{},{},{} -1002,Iron_Ore,Iron Ore,3,50,,150,,,,,,,,,,,,,{},{},{} -1003,Coal,Coal,3,500,,50,,,,,,,,,,,,,{},{},{} -1004,Patriotism_Marks,Chivalry Emblem,3,2,,100,,,,,,,,,,,,,{},{},{} -1005,Hammer_Of_Blacksmith,Hammer of Blacksmith,3,2,,800,,,,,,,,,,,,,{},{},{} -1006,Old_Magic_Book,Old Magicbook,3,2,,30,,,,,,,,,,,,,{},{},{} -1007,Penetration,Necklace of Wisdom,3,2,,40,,,,,,,,,,,,,{},{},{} -1008,Frozen_Heart,Necklace of Oblivion,3,2,,100,,,,,,,,,,,,,{},{},{} -1009,Sacred_Marks,Hand of God,3,2,,20,,,,,,,,,,,,,{},{},{} -1010,Phracon,Phracon,3,200,,200,,,,,,,,,,,,,{},{},{} -1011,Emveretarcon,Emveretarcon,3,1000,,200,,,,,,,,,,,,,{},{},{} -1012,Lizard_Scruff,Frill,3,250,,10,,,,,,,,,,,,,{},{},{} -1013,Colorful_Shell,Rainbow Shell,3,90,,10,,,,,,,,,,,,,{},{},{} -1014,Jaws_Of_Ant,Ant Jaw,3,232,,10,,,,,,,,,,,,,{},{},{} -1015,Thin_N'_Long_Tongue,Tongue,3,528,,10,,,,,,,,,,,,,{},{},{} -1016,Rat_Tail,Rat Tail,3,52,,10,,,,,,,,,,,,,{},{},{} -1017,Moustache_Of_Mole,Mole Whiskers,3,106,,10,,,,,,,,,,,,,{},{},{} -1018,Nail_Of_Mole,Mole Claw,3,210,,10,,,,,,,,,,,,,{},{},{} -1019,Wooden_Block,Trunk,3,60,,10,,,,,,,,,,,,,{},{},{} -1020,Long_Hair,Black Hair,3,292,,10,,,,,,,,,,,,,{},{},{} -1021,Dokkaebi_Horn,Dokebi Horn,3,292,,10,,,,,,,,,,,,,{},{},{} -1022,Fox_Tail,Nine Tails,3,650,,10,,,,,,,,,,,,,{},{},{} -1023,Fish_Tail,Fish Tail,3,196,,10,,,,,,,,,,,,,{},{},{} -1024,Chinese_Ink,Squid Ink,3,264,,10,,,,,,,,,,,,,{},{},{} -1025,Spiderweb,Cobweb,3,184,,10,,,,,,,,,,,,,{},{},{} -1026,Acorn,Acorn,3,98,,10,,,,,,,,,,,,,{},{},{} -1027,Porcupine_Spike,Porcupine Quill,3,158,,10,,,,,,,,,,,,,{},{},{} -1028,Wild_Boar's_Mane,Mane,3,196,,10,,,,,,,,,,,,,{},{},{} -1029,Tiger's_Skin,Tiger Skin,3,548,,10,,,,,,,,,,,,,{},{},{} -1030,Tiger_Footskin,Tiger's Footskin,3,1500,,10,,,,,,,,,,,,,{},{},{} -1031,Limb_Of_Mantis,Mantis Scythe,3,196,,10,,,,,,,,,,,,,{},{},{} -1032,Blossom_Of_Maneater,Maneater Blossom,3,196,,10,,,,,,,,,,,,,{},{},{} -1033,Root_Of_Maneater,Maneater Root,3,208,,10,,,,,,,,,,,,,{},{},{} -1034,Cobold_Hair,Blue Hair,3,342,,10,,,,,,,,,,,,,{},{},{} -1035,Dragon_Canine,Dragon Canine,3,484,,10,,,,,,,,,,,,,{},{},{} -1036,Dragon_Scale,Dragon Scale,3,500,,10,,,,,,,,,,,,,{},{},{} -1037,Dragon_Train,Dragon Tail,3,1200,,10,,,,,,,,,,,,,{},{},{} -1038,Petite_DiablOfs_Horn,Little Evil Horn,3,528,,10,,,,,,,,,,,,,{},{},{} -1039,Petite_DiablOfs_Wing,Little Evil Wing,3,2000,,10,,,,,,,,,,,,,{},{},{} -1040,Elder_Pixie's_Beard,Elder Pixie's Moustache,3,232,,10,,,,,,,,,,,,,{},{},{} -1041,Lantern,Lantern,3,250,,10,,,,,,,,,,,,,{},{},{} -1042,Short_Leg,Bug Leg,3,430,,10,,,,,,,,,,,,,{},{},{} -1043,Nail_Of_Orc,Orc Claw,3,168,,10,,,,,,,,,,,,,{},{},{} -1044,Tooth_Of_,Zenorc's Fang,3,264,,10,,,,,,,,,,,,,{},{},{} -1045,Sacred_Masque,Cultish Masque,3,412,,10,,,,,,,,,,,,,{},{},{} -1046,Tweezer,Scorpion Nipper,3,614,,10,,,,,,,,,,,,,{},{},{} -1047,Head_Of_Medusa,Dead Medusa,3,548,,10,,,,,,,,,,,,,{},{},{} -1048,Slender_Snake,Horrendous Hair,3,800,,10,,,,,,,,,,,,,{},{},{} -1049,Skirt_Of_Virgin,Skirt of Virgin,3,1700,,10,,,,,,,,,,,,,{},{},{} -1050,Tendon,Tendon,3,220,,10,,,,,,,,,,,,,{},{},{} -1051,Detonator,Detonator,3,450,,10,,,,,,,,,,,,,{},{},{} -1052,Single_Cell,Single Cell,3,46,,10,,,,,,,,,,,,,{},{},{} -1053,Tooth_Of_Ancient_Fish,Ancient Tooth,3,548,,10,,,,,,,,,,,,,{},{},{} -1054,Lip_Of_Ancient_Fish,Ancient Lips,3,1000,,10,,,,,,,,,,,,,{},{},{} -1055,Earthworm_Peeling,Earthworm Peeling,3,196,,10,,,,,,,,,,,,,{},{},{} -1056,Grit,Grit,3,306,,10,,,,,,,,,,,,,{},{},{} -1057,Moth_Dust,Moth Dust,3,138,,10,,,,,,,,,,,,,{},{},{} -1058,Wing_Of_Moth,Moth Wings,3,200,,10,,,,,,,,,,,,,{},{},{} -1059,Transparent_Cloth,Fabric,3,306,,10,,,,,,,,,,,,,{},{},{} -1060,Golden_Hair,Golden Hair,3,430,,10,,,,,,,,,,,,,{},{},{} -1061,Starsand_Of_Witch,Witched Starsand,3,484,,10,,,,,,,,,,,,,{},{},{} -1062,Pumpkin_Head,Jack o' Pumpkin,3,374,,10,,,,,,,,,,,,,{},{},{} -1063,Sharpened_Cuspid,Fang,3,680,,10,,,,,,,,,,,,,{},{},{} -1064,Reins,Reins,3,802,,10,,,,,,,,,,,,,{},{},{} -1065,Booby_Trap,Trap,3,75,,10,,,,,,,,,,,,,{},{},{} -1066,Tree_Of_Archer_1,Fine-grained Trunk,3,2,,10,,,,,,,,,,,,,{},{},{} -1067,Tree_Of_Archer_2,Solid Trunk,3,2,,10,,,,,,,,,,,,,{},{},{} -1068,Tree_Of_Archer_3,Barren Trunk,3,2,,10,,,,,,,,,,,,,{},{},{} -1069,Mushroom_Of_Thief_1,Orange Net Mushroom,3,2,,10,,,,,,,,,,,,,{},{},{} -1070,Mushroom_Of_Thief_2,Orange Gooey Mushroom,3,2,,10,,,,,,,,,,,,,{},{},{} -1071,Mage_Test_1,Unknown Test Tube,3,0,,10,,,,,,,,,,,,,{},{},{} -1072,Delivery_Message,Delivery Message,3,0,,10,,,,,,,,,,,,,{},{},{} -1073,Merchant_Voucher_1,Voucher,3,0,,10,,,,,,,,,,,,,{},{},{} -1074,Merchant_Voucher_2,Voucher,3,0,,10,,,,,,,,,,,,,{},{},{} -1075,Merchant_Voucher_3,Voucher,3,0,,10,,,,,,,,,,,,,{},{},{} -1076,Merchant_Voucher_4,Voucher,3,0,,10,,,,,,,,,,,,,{},{},{} -1077,Merchant_Voucher_5,Voucher,3,0,,10,,,,,,,,,,,,,{},{},{} -1078,Merchant_Voucher_6,Voucher,3,0,,10,,,,,,,,,,,,,{},{},{} -1079,Merchant_Voucher_7,Voucher,3,0,,10,,,,,,,,,,,,,{},{},{} -1080,Merchant_Voucher_8,Voucher,3,0,,10,,,,,,,,,,,,,{},{},{} -1081,Merchant_Box_1,Delivery Box,3,0,,1200,,,,,,,,,,,,,{},{},{} -1082,Merchant_Box_2,Delivery Box,3,0,,1200,,,,,,,,,,,,,{},{},{} -1083,Merchant_Box_3,Delivery Box,3,0,,1200,,,,,,,,,,,,,{},{},{} -1084,Kapra's_Pass,Kafra Pass,3,0,,10,,,,,,,,,,,,,{},{},{} -1085,Mage_Test_2,Unknown Test Tube,3,0,,10,,,,,,,,,,,,,{},{},{} -1086,Mage_Test_3,Unknown Test Tube,3,0,,10,,,,,,,,,,,,,{},{},{} -1087,Mage_Test_4,Unknown Test Tube,3,0,,10,,,,,,,,,,,,,{},{},{} -1088,Morocc_Potion,Morocc Solution,3,0,,10,,,,,,,,,,,,,{},{},{} -1089,Payon_Potion,Payon Solution,3,0,,10,,,,,,,,,,,,,{},{},{} -1090,Mage_Test_Etc,Unknown Test Tube,3,0,,10,,,,,,,,,,,,,{},{},{} -1091,Merchant_Box_Etc,Delivery Box,3,0,,10,,,,,,,,,,,,,{},{},{} -1092,Empty_Cylinder,Empty Test Tube,3,3,,10,,,,,,,,,,,,,{},{},{} -1093,Empty_Potion,Empty Potion Bottle,3,10,,10,,,,,,,,,,,,,{},{},{} -1094,Short_Daenggie,Short Daenggie,3,278,,10,,,,,,,,,,,,,{},{},{} -1095,Needle_Of_Alarm,Needle of Alarm,3,546,,10,,,,,,,,,,,,,{},{},{} -1096,Round_Shell,Round Shell,3,780,,10,,,,,,,,,,,,,{},{},{} -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,,,,,,,,,,,,,{},{},{} -//=================================================================== -// 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,{},{},{} -1104,Falchion,Falchion,5,1500,,600,39,,1,3,0x000654E3,63,2,2,1,2,1,2,{},{},{} -1105,Falchion_,Falchion,5,1500,,600,39,,1,4,0x000654E3,63,2,2,1,2,1,2,{},{},{} -1106,Falchion__,Falchion,5,1500,,600,39,,1,0,0x000654E3,63,2,2,1,2,1,2,{},{},{} -1107,Blade,Blade,5,2900,,700,53,,1,3,0x000654E3,63,2,2,1,2,1,2,{},{},{} -1108,Blade_,Blade,5,2900,,700,53,,1,4,0x000654E3,63,2,2,1,2,1,2,{},{},{} -1109,Blade__,Blade,5,2900,,700,53,,1,0,0x000654E3,63,2,2,1,2,1,2,{},{},{} -1110,Lapier,Rapier,5,10000,,500,70,,1,2,0x000654E3,63,2,2,2,14,1,2,{},{},{} -1111,Lapier_,Rapier,5,10000,,500,70,,1,3,0x000654E3,63,2,2,2,14,1,2,{},{},{} -1112,Lapier__,Rapier,5,10000,,500,70,,1,0,0x000654E3,63,2,2,2,14,1,2,{},{},{} -1113,Scimiter,Scimitar,5,17000,,700,85,,1,2,0x000654E3,63,2,2,2,14,1,2,{},{},{} -1114,Scimiter_,Scimitar,5,17000,,700,85,,1,3,0x000654E3,63,2,2,2,14,1,2,{},{},{} -1115,Scimiter__,Scimitar,5,17000,,700,85,,1,3,0x000654E3,63,2,2,2,14,1,2,{},{},{} -1116,Katana,Katana,5,2000,,1000,60,,1,3,0x00004082,63,2,34,1,4,1,3,{},{},{} -1117,Katana_,Katana,5,2000,,1000,60,,1,4,0x00004082,63,2,34,1,4,1,3,{},{},{} -1118,Katana__,Katana,5,2000,,1000,60,,1,0,0x00004082,63,2,34,1,4,1,3,{},{},{} -1119,Tsurugi,Tsurugi,5,51000,,1200,130,,1,1,0x000654E2,63,2,2,3,27,1,2,{},{},{} -1120,Tsurugi_,Tsurugi,5,51000,,1200,130,,1,2,0x000654E2,63,2,2,3,27,1,2,{},{},{} -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; },{},{} -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,{},{},{} -1128,Hae_Dong_Gum_,Haedonggum,5,50000,,900,120,,1,2,0x000654E2,63,2,2,3,27,1,2,{ bonus bInt,3; },{},{} -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_Human,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 bComaClass,Class_All,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; },{},{} -1136,Solar_Sword,Solar Sword,5,20,,1200,85,,1,0,0x000654E2,63,2,2,4,40,1,2,{ bonus bAtkEle,Ele_Fire; bonus2 bHPDrainRate,1000,1; bonus2 bSPLossRate,15,10000; },{},{} -1137,Excalibur,Excalibur,5,20,,1200,150,,1,0,0x000654E2,63,2,2,4,40,1,2,{ bonus bInt,5; bonus bLuk,10; bonus bDex,-1; bonus bAtkEle,Ele_Holy; },{},{} -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; bonus3 bSPVanishRate,3,30,BF_WEAPON; bonus bSPDrainValue,-1; bonus bUnbreakableWeapon; },{},{} -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; },{},{} -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,{},{},{} -1154,Bastard_Sword,Bastard Sword,5,22500,,1600,115,,1,2,0x00004082,63,2,34,2,18,1,3,{},{},{} -1155,Bastard_Sword_,Bastard Sword,5,22500,,1600,115,,1,3,0x00004082,63,2,34,2,18,1,3,{},{},{} -1156,Bastard_Sword__,Bastard Sword,5,22500,,1600,115,,1,0,0x00004082,63,2,34,2,18,1,3,{},{},{} -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; },{},{} -1161,Balmung,Balmung,5,20,,1000,250,,1,0,0xFFFFFFFF,63,2,34,4,48,1,3,{ bonus bInt,20; bonus bLuk,20; },{},{} -1162,Broad_Sword_,Broad Sword,5,65000,,2000,140,,1,2,0x00004082,63,2,34,3,33,1,3,{ bonus bDef,5; bonus bUnbreakableWeapon; },{},{} -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,-66; bonus bDef2Rate,-66; },{},{} -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; },{},{} -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_Human; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player_Human,-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; },{},{} -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_Human; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player_Human,-10; bonus bAtkEle,Ele_Dark; },{},{} -1175,Altas_Weapon,Atlas Weapon,5,20,,3500,200,,1,1,0x00004082,18,2,34,4,55,1,3,{ bonus bCritical,10; if(readparam(bStr)>=80) bonus bBreakArmorRate,500; },{},{} -1176,Muscle_Cutter,Muscle Cutter,5,20,,2200,160,,1,2,0x00004082,18,2,34,4,55,1,3,{ bonus2 bAddEff,Eff_Bleeding,800; bonus3 bAutoSpell,"AL_DECAGI",1,30; },{},{} -1177,Muramash,Muramash,5,20,,0,120,,1,0,0x00004082,63,2,34,1,0,0,3,{ bonus2 bAddClass,Class_All,50; },{},{} -1178,Schweizersabel_,Schweizersabel,5,20,,1600,160,,1,2,0x00004082,63,2,34,4,48,1,3,{ bonus bAtkEle,Ele_Wind; bonus bDef,1; bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",3,100; },{},{} -1179,Executioner__,Executioner,5,20,,2200,155,,1,1,0x00004082,63,2,34,4,48,1,3,{ bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player_Human,-10; bonus bAtkEle,Ele_Dark; },{},{} -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 || (eaclass()&EAJL_THIRD && JobLevel>=50)) autobonus "{ bonus bBaseAtk,50; }",10,10000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; if(getrefine()>8) { bonus bDelayRate,-20; bonus bUseSPrate,-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_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; },{},{} -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_Human,55; bonus bCritAtkRate,20; bonus bUnbreakableWeapon; },{},{} -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; 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_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-3,1); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-3,1); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) { bonus3 bAutoSpell,"LK_CONCENTRATION",max(getskilllv("LK_CONCENTRATION"),1),30; bonus3 bAutoSpell,"LK_AURABLADE",max(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; },{},{} -1191,Alca_Bringer,Alca Bringer,5,20,,3400,280,,2,0,0x00000080,56,2,34,3,100,1,3,{ bonus bAspd,(getrefine()/2); },{},{} -1192,P_Slayer1,Eden Slayer I,5,0,,0,162,,1,0,0x00004082,63,2,34,2,26,0,3,{},{},{} -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; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bSubRace,RC_DemiHuman,-10; bonus bIgnoreDefRace,RC_DemiHuman; bonus2 bAddRace,RC_Player_Human,20; bonus2 bSubRace,RC_Player_Human,-10; bonus bIgnoreDefRace,RC_Player_Human; },{},{} -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; 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 bCritical,20; bonus bCritAtkRate,50; bonus2 bAddEff,Eff_Crystalize,30; 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,{},{},{} -1204,Cutter,Cutter,5,1250,,500,30,,1,3,0x3E9F7EEF,63,2,2,1,1,1,1,{},{},{} -1205,Cutter_,Cutter,5,1250,,500,30,,1,4,0x3E9F7EEF,63,2,2,1,1,1,1,{},{},{} -1206,Cutter__,Cutter,5,1250,,500,30,,1,0,0x3E9F7EEF,63,2,2,1,1,1,1,{},{},{} -1207,Main_Gauche,Main Gauche,5,2400,,600,43,,1,3,0x3E9F7EEF,63,2,2,1,1,1,1,{},{},{} -1208,Main_Gauche_,Main Gauche,5,2400,,600,43,,1,4,0x3E9F7EEF,63,2,2,1,1,1,1,{},{},{} -1209,Main_Gauche__,Main Gauche,5,2400,,600,43,,1,0,0x3E9F7EEF,63,2,2,1,1,1,1,{},{},{} -1210,Dirk,Dirk,5,8500,,500,59,,1,2,0x3E9F7EEF,63,2,2,2,12,1,1,{},{},{} -1211,Dirk_,Dirk,5,8500,,500,59,,1,3,0x3E9F7EEF,63,2,2,2,12,1,1,{},{},{} -1212,Dirk__,Dirk,5,8500,,500,59,,1,0,0x3E9F7EEF,63,2,2,2,12,1,1,{},{},{} -1213,Dagger,Dagger,5,14000,,600,73,,1,2,0x3E9F7EEF,63,2,2,2,12,1,1,{},{},{} -1214,Dagger_,Dagger,5,14000,,600,73,,1,3,0x3E9F7EEF,63,2,2,2,12,1,1,{},{},{} -1215,Dagger__,Dagger,5,14000,,600,73,,1,0,0x3E9F7EEF,63,2,2,2,12,1,1,{},{},{} -1216,Stiletto,Stiletto,5,19500,,700,87,,1,2,0x3E9F7EEF,63,2,2,2,12,1,1,{},{},{} -1217,Stiletto_,Stiletto,5,19500,,700,87,,1,3,0x3E9F7EEF,63,2,2,2,12,1,1,{},{},{} -1218,Stiletto__,Stiletto,5,19500,,700,87,,1,0,0x3E9F7EEF,63,2,2,2,12,1,1,{},{},{} -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; },{},{} -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; },{},{} -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_Human; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,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; },{},{} -1230,House_Auger,Ice Pick,5,20,,600,80,,1,0,0x028F5EEE,63,2,2,4,36,1,1,{ bonus bDefRatioAtkClass,Class_All; },{},{} -1231,Bazerald,Bazerald,5,20,,500,70:105,,1,0,0x028F5EEE,63,2,2,4,36,1,1,{ bonus bAtkEle,Ele_Fire; bonus bInt,5; },{},{} -1232,Assasin_Dagger,Assassin Dagger,5,20,,600,140,,1,0,0x00001000,63,2,2,4,36,1,1,{ bonus bMaxHPrate,20; bonus bMaxSPrate,15; bonus bAspdRate,2; bonus bAtkEle,Ele_Dark; },{},{} -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_Human,-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; },{},{} -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; },{},{} -1240,Princess_Knife,Princess Knife,5,20,,400,84,,1,0,0x028F5EEE,63,2,2,4,1,1,1,{ bonus bAllStats,1; },{},{} -1241,Cursed_Dagger,Cursed Dagger,5,80000,,400,55,,1,0,0x00810204,63,2,2,4,85,1,1,{ bonus2 bAddEff,Eff_Curse,5000; },{},{} -1242,Counter_Dagger,Dagger of Counter,5,120000,,550,140,,1,0,0x00810204,63,2,2,4,55,1,1,{ bonus bCritical,90; },{},{} -1243,Novice_Knife,Novice Main-Gauche,5,0,,1,45,,1,0,0x00000001,63,2,2,1,1,0,1,{},{},{} -1244,Holy_Dagger,Holy Dagger,5,20,,800,100,,1,0,0x02021040,63,2,2,4,55,1,1,{ bonus bAtkEle,Ele_Holy; bonus2 bAddRace,RC_Demon,5; },{},{} -1245,Cinquedea,Cinquedea,5,40000,,700,110,,1,1,0x00000001,63,2,2,3,30,1,1,{},{},{} -1246,Cinquedea_,Cinquedea,5,40000,,700,110,,1,2,0x00000001,63,2,2,3,30,1,1,{},{},{} -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; },{},{} -1253,Katar_,Katar,5,41000,,1200,148,,1,2,0x00001000,63,2,34,3,33,1,16,{ bonus bDex,1; },{},{} -1254,Jamadhar,Jamadhar,5,37200,,1500,165,,1,0,0x00001000,63,2,34,3,33,1,16,{},{},{} -1255,Jamadhar_,Jamadhar,5,37200,,1500,165,,1,1,0x00001000,63,2,34,3,33,1,16,{},{},{} -1256,Katar_Of_Cold_Icicle,Katar of Frozen Icicle,5,45000,,1200,105,,1,0,0x00001000,63,2,34,3,55,1,16,{ bonus bAtkEle,Ele_Water; bonus2 bAddEff,Eff_Freeze,500; },{},{} -1257,Katar_Of_Thornbush,Katar of Quaking,5,45000,,1200,105,,1,0,0x00001000,63,2,34,3,55,1,16,{ bonus bAtkEle,Ele_Earth; bonus2 bAddEff,Eff_Blind,500; },{},{} -1258,Katar_Of_Raging_Blaze,Katar of Raging Blaze,5,45000,,1200,105,,1,0,0x00001000,63,2,34,3,55,1,16,{ bonus bAtkEle,Ele_Fire; bonus2 bAddEff,Eff_Silence,500; },{},{} -1259,Katar_Of_Piercing_Wind,Katar of Piercing Wind,5,45000,,1200,105,,1,0,0x00001000,63,2,34,3,55,1,16,{ bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Sleep,500; },{},{} -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_Human,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; },{},{} -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_Human; bonus bFlee,-(readparam(bAgi)+BaseLevel); 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_Human,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_Human,70; bonus bDef,3; bonus bFlee,5; bonus bFlee2,2; bonus bAspdRate,8; },{},{} -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,{ 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_Human; bonus2 bHPRegenRate,3,5000; },{},{} -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 bUnbreakableWeapon; },{},{} -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_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; },{},{} -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_Human,70; bonus bCritAtkRate,20; bonus bAspdRate,5; bonus bUnbreakableWeapon; },{},{} -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_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,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_Human,70; bonus bCritAtkRate,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bCriticalAddRace,RC_DemiHuman,5; bonus2 bCriticalAddRace,RC_Player_Human,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; bonus3 bAutoSpell,"AS_SONICBLOW",max(getskilllv("AS_SONICBLOW"),1),100; },{},{} -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; 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_Human; 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,{},{},{} -1290,Agent_Katar,Agent Katar,5,41000,,1200,170,,1,1,0x00001000,63,2,34,3,100,1,16,{ bonus bHit,readparam(bLuk)/2; },{},{} -1291,Guillotine_Katar,Guillotine Katar,5,56000,,1500,200,,1,1,0x00001000,63,2,34,4,140,1,16,{ bonus bDex,2; bonus bFlee,-30; bonus2 bAddRace,RC_DemiHuman,50; bonus2 bAddRace,RC_Player_Human,50; bonus2 bSkillAtk,"GC_CROSSIMPACT",30; },{},{} -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_Human,10000,5000,1; bonus4 bSetMDefRace,RC_Player_Human,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_Human,1000,10; },{},{} -1295,Blood_Tears_,Blood Tears,5,20,,1700,120,,1,3,0x00001000,18,2,34,4,55,1,16,{ bonus3 bAutoSpell,"NPC_WIDEBLEEDING",(getrefine()>=9?2:1),30; },{},{} -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 = min(BaseLevel/10,12); if(.@i>2) bonus bBaseAtk,((.@i-2)*5); },{},{} -1297,Inverse_Scale_,Inverse Scale,5,20,,1500,140,,1,2,0x00001000,18,2,34,4,55,1,16,{ bonus bAtkEle,Ele_Holy; bonus3 bAutoSpell,"NPC_DRAGONFEAR",1,30; },{},{} -1298,Shiver_Katar,Katar Of Horror,5,60000,,2700,110,,1,2,0x00001000,63,2,34,4,105,1,16,{ bonus bCritical,getrefine(); },{},{} -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_Human,40; bonus2 bAddEff,Eff_Bleeding,1000; },{},{} -//=================================================================== -// 1-Handed Axes -//=================================================================== -1300,Cleaver_,Cleaver,5,20,,1200,140,,1,3,0x000444A2,63,2,2,4,44,1,6,{ bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus3 bAddMonsterDropItem,517,RC_Brute,3000; },{},{} -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,{},{},{} -1304,Orcish_Axe,Orcish Axe,5,20,,1500,75,,1,0,0x000654E3,63,2,2,3,3,1,6,{},{},{} -1305,Cleaver,Cleaver,5,20,,1200,140,,1,0,0x000444A2,63,2,2,4,44,1,6,{ bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus3 bAddMonsterDropItem,517,RC_Brute,3000; },{},{} -1306,War_Axe,War Axe,5,20,,4200,140,,1,1,0x00040400,63,2,2,3,76,1,6,{ bonus bDex,2; bonus bLuk,2; bonus bUnbreakableWeapon; },{},{} -1307,Windhawk,Windhawk,5,18000,,1500,115,,1,0,0x000654E2,63,2,2,2,14,1,6,{ bonus bAtkEle,Ele_Wind; bonus bAspdRate,5; bonus bUnbreakableWeapon; },{},{} -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_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,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; skill "ITM_TOMAHAWK",1; },{},{} -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; bonus2 bAddRace,RC_Demon,3; skill "AL_HEAL",3; },{},{} -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,30,1,6,{ bonus bUnbreakableWeapon; bonus bAspdRate,5-(BaseLevel/10); bonus bMaxHP,200-(40*(BaseLevel/10)); },{},{} -1318,Dofle_Axe,Deflation Axe,5,50000,,1800,180,,1,2,0x000654E2,63,2,2,4,105,1,6,{ skill "ITM_TOMAHAWK",1; },{},{} -1319,TE_Woe_Axe,TE Woe Axe,5,0,,0,100,,1,0,0x000654E3,63,2,2,3,40,1,6,{ bonus bUnbreakableWeapon; bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Freeze,1000; },{},{} -1321,Dofle_Axe_,Deflation Axe,5,50000,,1800,180,,1,3,0x000654E2,63,2,2,4,105,1,6,{ skill "ITM_TOMAHAWK",1; },{},{} -1322,Ru_Blue_Axe,Blue Axe,5,10,,1800,180,,1,1,0xFFFBFFFF,56,2,2,3,100,1,6,{ bonus bStr,5; bonus bInt,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; },{},{} -1324,War_Axe_,War Axe,5,20,,4200,140,,1,3,0x00040400,63,2,2,3,76,1,6,{ bonus bDex,2; bonus bLuk,2; },{},{} -1326,Illusion_War_Axe,Illusion War Axe,5,0,,4200,180,,1,2,0x00040420,63,2,2,4,120,1,6,{ bonus bStr,2; bonus bDex,2; bonus bLuk,2; .@r = getrefine(); if (.@r >= 9) { .@val = 40; } else if (.@r >= 7) { .@val = 20; } bonus2 bSkillAtk,"NC_AXETORNADO",(100+.@val); bonus2 bSkillAtk,"NC_AXEBOOMERANG",(100+.@val); bonus2 bSkillAtk,"GN_CART_TORNADO",(75+.@val); },{},{} -//=================================================================== -// 2-Handed Axes -//=================================================================== -1333,Golden_Wrench,Golden Wrench,5,,,5500,220,,1,2,0x00000400,56,2,2,4,170,1,6,{ .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bAddClass,Class_all,5; bonus bBaseAtk,4*.@r; if (.@r>=11) .@val = 35; else if (.@r>=9) .@val = 20; bonus2 bSkillAtk,"NC_AXEBOOMERANG",.@val; bonus2 bSkillAtk,"NC_POWERSWING",.@val; },{},{} -1336,Guardian_Knight_Axe,Guardian Knight Axe,5,0,,1500,210,,1,2,0xFFFFFBFF,56,2,2,4,170,1,6,{ bonus bUnbreakableWeapon; bonus2 bAddClass,Class_All,5; .@r = getrefine(); bonus bLongAtkRate,.@r; if(.@r >= 9){ bonus2 bSkillAtk,"NC_POWERSWING",20; bonus2 bSkillAtk,"NC_AXEBOOMERANG",20; } if(.@r >= 11){ bonus2 bAddRace,RC_Undead,20; bonus2 bAddRace,RC_Angel,20; } },{},{} -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,{},{},{} -1354,Hammer,Hammer,5,15500,,2000,120,,1,2,0x000444A2,63,2,34,2,16,1,7,{},{},{} -1355,Hammer_,Hammer,5,15500,,2000,120,,1,3,0x000444A2,63,2,34,2,16,1,7,{},{},{} -1356,Hammer__,Hammer,5,15500,,2000,120,,1,0,0x000444A2,63,2,34,2,16,1,7,{},{},{} -1357,Buster,Buster,5,34000,,2200,155,,1,1,0x000444A2,63,2,34,3,30,1,7,{},{},{} -1358,Buster_,Buster,5,34000,,2200,155,,1,2,0x000444A2,63,2,34,3,30,1,7,{},{},{} -1359,Buster__,Buster,5,34000,,2200,155,,1,0,0x000444A2,63,2,34,3,30,1,7,{},{},{} -1360,Two_Handed_Axe,Two-Handed Axe,5,55000,,2500,185,,1,1,0x000444A2,63,2,34,3,30,1,7,{},{},{} -1361,Two_Handed_Axe_,Two-Handed Axe,5,55000,,2500,185,,1,2,0x000444A2,63,2,34,3,30,1,7,{},{},{} -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 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 bComaRace,RC_Brute,40; bonus bIgnoreDefRace,RC_Player_Doram; bonus2 bComaRace,RC_Player_Doram,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 bComaRace,RC_DemiHuman,30; bonus2 bComaRace,RC_Player_Human,30; bonus2 bSPDrainValueRace,RC_DemiHuman,2; bonus2 bSPDrainValueRace,RC_Player_Human,2; bonus2 bSPGainRace,RC_DemiHuman,20; bonus2 bSPGainRace,RC_Player_Human,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; */},{},{} -1373,Brood_Axe_C,Refined Bloody Axe,5,2,,0,205,,1,0,0x000444A2,63,2,34,4,0,0,7,{ bonus bStr,20; bonus bMatkRate,20; bonus bAspdRate,5; },{},{} -1374,Tomahawk_C,Tomahawk,5,2,,0,200,,1,0,0x000444A2,63,2,34,4,0,0,7,{ bonus bAtkEle,Ele_Wind; skill "ITM_TOMAHAWK",1; },{},{} -1375,Berdysz,Berdysz,5,20,,2500,200,,1,2,0x000444A2,18,2,34,3,70,1,7,{ bonus2 bSubSize,Size_Medium,13; bonus2 bSubSize,Size_Large,15; },{},{} -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 bSkillAtk,"MC_MAMMONITE",20; 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_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; },{},{} -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_Human,55; autobonus "{ bonus bBreakArmorRate,10000; }",20,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; bonus bUnbreakableWeapon; },{},{} -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_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-3,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-3,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,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,0x00040420,63,2,34,4,60,1,7,{ bonus2 bAddRace,RC_Undead,10; bonus3 bAutoSpell,"AL_BLESSING",5,5; },{},{} -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; bonus4 bAutoSpellOnSkill,"BS_HAMMERFALL","SM_MAGNUM",3,50; },{},{} -1385,Bradium_Stonehammer,Bradium Stone Hammer,5,20,,2700,210,,1,0,0x00000400,2,2,34,4,75,1,7,{ bonus3 bAddEffOnSkill,"BS_HAMMERFALL",Eff_Stun,500+(200*getrefine()); },{},{} -1386,Doom_Slayer_I,Doom Slayer,5,0,,0,20,,1,0,0x000444A2,63,2,34,4,0,0,7,{ bonus bAspdRate,-25; bonus bUseSPrate,100; if(readparam(bStr)>=95){ bonus bBaseAtk,400; bonus2 bAddEff,Eff_Stun,3000; bonus bBreakArmorRate,500; } },{},{} -1387,Giant_Axe,Giant Axe,5,20,,4000,330,,1,1,0x00044480,18,2,34,3,50,1,7,{ bonus2 bSkillAtk,"WS_CARTTERMINATION",15; if(readparam(bStr)>=95) { bonus bHit,10; bonus bAspdRate,3; } },{},{} -1388,Two_Handed_Axe_C,Two-Handed Axe,5,0,,0,220,,1,0,0x000444A2,63,2,34,3,1,0,7,{ bonus2 bAddSize,Size_All,40; },{},{} -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,0x00044480,58,2,34,4,95,1,7,{ bonus bAtkEle,Ele_Fire; bonus bUnbreakableWeapon; bonus2 bAddEff,Eff_Burning,200; bonus2 bAddEff2,Eff_Burning,100; },{},{} -1393,End_Sektura,End Sectora,5,56000,,1900,250,,1,1,0x00044480,58,2,34,4,95,1,7,{ bonus bAtkEle,Ele_Water; bonus bUnbreakableWeapon; 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); bonus bUnbreakableWeapon; },{},{} -1395,Velum_Buster,Vellum Buster,5,20,,2500,50,,1,0,0x000444A2,63,2,34,4,95,1,7,{ bonus bUnbreakableWeapon; bonus3 bSPVanishRaceRate,RC_Player_Human,1000,10; },{},{} -1396,Velum_Guillotine,Vellum Guillotine,5,20,,5500,300,,1,0,0x000444A2,63,2,34,4,95,1,7,{ bonus bUnbreakableWeapon; bonus2 bAddRace,RC_Player_Human,40; bonus2 bIgnoreDefRaceRate,RC_Player_Human,30; .@r = getrefine(); if(.@r>=6) { bonus2 bSkillAtk,"NC_AXEBOOMERANG",80; bonus2 bSkillAtk,"NC_POWERSWING",80; } if(.@r>=9) { bonus2 bAddRace,RC_Player_Human,60; } },{},{} -1397,Bradium_Stonehammer_,Bradium Stone Hammer,5,20,,2700,210,,1,2,0x00000400,2,2,34,4,75,1,7,{ bonus3 bAddEffOnSkill,"BS_HAMMERFALL",Eff_Stun,500+(200*getrefine()); },{},{} -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; bonus bBaseAtk,(getrefine()*7); .@i = min(BaseLevel/10,12); 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; bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Stun,1000; },{},{} -//=================================================================== -// 1-Handed Spears -//=================================================================== -1400,Spear_of_Vicious_Mind,Spear of Vicious Mind,5,20,,1400,140,,3,1,0x00004082,63,2,2,4,160,1,4,{ bonus bAtk,pow(min(getrefine(),15),2); },{},{} -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,{},{},{} -1404,Spear,Spear,5,1700,,850,44,,3,3,0x00004082,63,2,2,1,4,1,4,{},{},{} -1405,Spear_,Spear,5,1700,,850,44,,3,4,0x00004082,63,2,2,1,4,1,4,{},{},{} -1406,Spear__,Spear,5,1700,,850,44,,3,0,0x00004082,63,2,2,1,4,1,4,{},{},{} -1407,Pike,Pike,5,3450,,1000,60,,3,3,0x00004082,63,2,2,1,4,1,4,{},{},{} -1408,Pike_,Pike,5,3450,,1000,60,,3,4,0x00004082,63,2,2,1,4,1,4,{},{},{} -1409,Pike__,Pike,5,3450,,1000,60,,3,0,0x00004082,63,2,2,1,4,1,4,{},{},{} -1410,Lance,Lance,5,60000,,2500,185,,3,0,0x00004082,63,2,34,3,33,1,5,{},{},{} -1411,Lance_,Lance,5,60000,,2500,185,,3,0,0x00004082,63,2,34,3,33,1,5,{},{},{} -1412,Lance__,Lance,5,60000,,2500,185,,3,0,0x00004082,63,2,34,3,33,1,5,{},{},{} -1413,Gungnir,Gungnir,5,20,,500,120,,3,0,0x00004082,63,2,2,4,4,1,4,{ bonus bAtkEle,Ele_Wind; bonus bPerfectHitRate,25; bonus bHit,30; },{},{} -1414,Gelerdria,Gelerdria,5,20,,700,145,,3,0,0x00004082,63,2,2,4,48,1,4,{ bonus bAtkEle,Ele_Earth; bonus bMaxHP,800; bonus bMaxSP,-50; },{},{} -1415,Skewer,Brocca,5,20,,850,100,,3,0,0x00004082,63,2,2,4,48,1,4,{ bonus bIgnoreDefClass,Class_Normal; bonus2 bAddEle,Ele_Neutral,25; },{},{} -1416,Tjungkuletti,Tjungkuletti,5,20,,1000,100,,3,0,0x00004082,63,2,2,4,48,1,4,{ bonus bSPDrainValue,1; bonus bSPGainValue,5; },{},{} -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; },{},{} -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_Human,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; bonus bIgnoreDefRace,RC_Player_Doram; 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,1,0,4,{ bonus bIgnoreDefClass,Class_Normal; bonus2 bAddSize,Size_Medium,20; bonus2 bAddSize,Size_Large,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_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; 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_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus bAspdRate,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,100; bonus bAspdRate,5; } },{},{} -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; },{},{} -1429,Hunting_Spear_M,Hunting Spear,5,20,,4200,180,,3,1,0x00004082,18,2,2,4,60,1,4,{ bonus bIgnoreDefRace,RC_Brute; bonus bIgnoreDefRace,RC_Player_Doram; 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; },{},{} -1432,E_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; },{},{} -1433,Imperial_Spear,Imperial Spear,5,20,,1800,180:40,,3,1,0x00004082,63,2,2,3,102,1,4,{ .@r = getrefine(); bonus2 bSkillAtk,"LG_CANNONSPEAR",20+(.@r/2*3); bonus2 bSkillAtk,"LG_BANISHINGPOINT",20+(.@r/2*3); },{},{} -1434,P_Sphere1,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,56,2,2,4,100,1,4,{ bonus bMaxSP,-100; bonus2 bSkillAtk,"LG_CANNONSPEAR",10; bonus2 bSkillAtk,"LG_CANNONSPEAR",(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_Human,60; .@r = getrefine(); if(.@r>=6) { bonus2 bSkillAtk,"RK_HUNDREDSPEAR",80; bonus2 bSkillAtk,"LG_PINPOINTATTACK",80; } if(.@r>=9) { bonus2 bAddRace,RC_Player_Human,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_Human,40; bonus2 bAddEff,Eff_Curse,1000; },{},{} -1438,Thanos_Spear,Thanos Spear,5,10,,3000,150:100,,3,1,0x00004082,56,2,2,4,120,1,4,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000; },{},{ heal -1000,0; } -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_Human,45; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon; if(BaseJob==Job_Crusader) bonus bAspdRate,20; },{},{} -1440,Battle_Hook_,Battle Hook,5,20,,900,140,,3,3,0x00004082,18,2,2,4,65,1,4,{ bonus2 bAddEff,Eff_Stun,500; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; skill "KN_PIERCE",3; },{},{} -1441,Ru_Blue_Spear,Blue Spear,5,10,,1200,180,,3,1,0x00004000,56,2,2,3,100,1,4,{ bonus bStr,5; bonus bAgi,5; },{},{} -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,0x00004082,63,2,2,3,70,1,4,{ .@r = getrefine(); bonus bBaseAtk,(.@r<=15?pow(.@r,2):225); bonus bBaseAtk,((max(0,BaseLevel-70)/10)*5); },{},{} -1445,[Rental]_Hunting_Spear,[Rental] Hunting Spear,5,20,,0,140,,3,2,0x00004082,63,2,2,3,50,1,4,{ .@r = getrefine(); if(.@r >= 7){ bonus2 bAddRace,RC_Insect,10; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddEle,Ele_Water,10; bonus2 bAddEle,Ele_Earth,10; } if(.@r >= 9){ bonus2 bAddRace,RC_Insect,15; bonus2 bAddRace,RC_DemiHuman,15; bonus2 bAddEle,Ele_Water,15; bonus2 bAddEle,Ele_Earth,15; } bonus bAtkEle,Ele_Fire; },{},{} -1446,Requiem_Spear,Requiem Spear,5,20,,1000,130,,3,,0x00004080,63,2,2,4,100,1,4,{ .@r = getrefine(); .@b = 40; bonus bUnbreakableWeapon; if(.@r>=5){ .@b += (.@r-5)*15+20; } bonus2 bAddRace2,RC2_BioLab,.@b; },{},{} -1447,Poison_Forged_Spear,Poison Forged Spear,5,0,,500,150,,3,3,0x00004080,58,2,2,4,100,1,4,{ bonus bAtkEle,Ele_Poison; bonus bCritical,10; skill "TF_DOUBLE",5; bonus bDoubleRate,25; bonus2 bAddEff,Eff_Poison,1000; bonus2 bAddEff2,Eff_Poison,300; },{},{} -1448,Warrior's_Spear,Warrior's Spear,5,0,,2000,140,,3,3,0x00004082,63,2,2,3,50,1,4,{ .@r = getrefine(); if(.@r >= 7){ bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Plant,10; bonus2 bAddEle,Ele_Wind,10; bonus2 bAddEle,Ele_Earth,10; } if(.@r >= 9){ bonus2 bAddRace,RC_Brute,15; bonus2 bAddRace,RC_Plant,15; bonus2 bAddEle,Ele_Wind,15; bonus2 bAddEle,Ele_Earth,15; } },{},{} -1449,Gelerdria_,Gelerdria,5,20,,700,145,,3,3,0x00004082,63,2,2,4,48,1,4,{ bonus bAtkEle,Ele_Earth; bonus bMaxHP,800; bonus bMaxSP,-50; },{},{} -//=================================================================== -// 2-Handed Spears -//=================================================================== -1450,Lance_of_Vicious_Mind,Lance of Vicious Mind,5,20,,2250,225,,3,1,0x00004082,63,2,34,4,160,1,5,{ bonus bAtk,pow(min(getrefine(),15),2); },{},{} -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,{},{},{} -1454,Glaive,Glaive,5,20000,,1200,104,,3,2,0x00004082,63,2,34,2,18,1,5,{},{},{} -1455,Glaive_,Glaive,5,20000,,1200,104,,3,3,0x00004082,63,2,34,2,18,1,5,{},{},{} -1456,Glaive__,Glaive,5,20000,,1200,104,,3,0,0x00004082,63,2,34,2,18,1,5,{},{},{} -1457,Partizan,Partizan,5,27000,,2000,124,,3,1,0x00004082,63,2,34,2,18,1,5,{},{},{} -1458,Partizan_,Partizan,5,27000,,2000,124,,3,2,0x00004082,63,2,34,2,18,1,5,{},{},{} -1459,Partizan__,Partizan,5,27000,,2000,124,,3,0,0x00004082,63,2,34,2,18,1,5,{},{},{} -1460,Trident,Trident,5,51000,,1200,150,,3,2,0x00004082,63,2,34,3,33,1,5,{},{},{} -1461,Trident_,Trident,5,51000,,1200,150,,3,3,0x00004082,63,2,34,3,33,1,5,{},{},{} -1462,Trident__,Trident,5,51000,,1200,150,,3,0,0x00004082,63,2,34,3,33,1,5,{},{},{} -1463,Halberd,Halberd,5,54000,,2500,165,,3,1,0x00004082,63,2,34,3,33,1,5,{},{},{} -1464,Halberd_,Halberd,5,54000,,2500,165,,3,2,0x00004082,63,2,34,3,33,1,5,{},{},{} -1465,Halberd__,Halberd,5,54000,,2500,165,,3,0,0x00004082,63,2,34,3,33,1,5,{},{},{} -1466,Crescent_Scythe,Crescent Scythe,5,20,,2500,180,,3,0,0x00004082,63,2,34,4,48,1,5,{ bonus bCriticalRate,30; bonus bHit,10; },{},{} -1467,Bill_Guisarme,Bill Guisarme,5,20,,1000,183,,3,0,0x00004082,63,2,34,4,48,1,5,{ bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Player_Doram,10; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; },{},{} -1468,Zephyrus,Zephyrus,5,20,,2000,170,,3,0,0x00004082,63,2,34,4,48,1,5,{ bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Silence,200; bonus3 bAutoSpell,"MG_THUNDERSTORM",3,100; },{},{} -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_Human,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; },{},{} -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,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 bCriticalRate,30; bonus bHit,10; },{},{} -1477,Spectral_Spear,Spectral Spear,5,20,,2000,170,,3,0,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 bSubEle,Ele_Undead,10; bonus2 bSubRace,RC_Demon,10; bonus2 bAddEff2,Eff_Confusion,1000; bonus bHPGainValue,50; },{},{} -1478,Ahlspiess,Ahlspiess,5,20,,1000,120,,3,0,0x00004080,63,2,34,4,65,1,5,{ bonus bIgnoreDefClass,Class_Normal; bonus bIgnoreDefClass,Class_Boss; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus3 bAutoSpell,"KN_PIERCE",5,30; },{},{} -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 bSubEle,Ele_Undead,10; bonus2 bSubRace,RC_Demon,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_Human,25; bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus bUnbreakableWeapon; },{},{} -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_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,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,20; bonus2 bAddRace,RC_Player_Human,20; bonus3 bAutoSpell,"KN_PIERCE",5,30; },{},{} -1489,Spearfish_,Marlin,5,0,,0,220,,3,0,0x00004082,18,2,34,1,50,0,5,{ 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_Human,80; bonus2 bAddRace,RC_Player_Doram,80; .@r = getrefine(); if(.@r>=6) { bonus2 bSkillAtk,"LK_SPIRALPIERCE",100; bonus2 bSkillAtk,"LG_OVERBRAND",50; } if(.@r>=9) { bonus bShortWeaponDamageReturn,20; bonus bMagicDamageReturn,20; bonus5 bAutoSpellWhenHit,"NPC_MAGICMIRROR",7,300,BF_MAGIC,0; } },{},{} -1493,Metal_Lance,Metal Lance,5,20,,0,100,,3,1,0x00004082,63,2,34,3,1,1,5,{ bonus bBaseAtk,(getrefine()*6); .@i = min(BaseLevel/10,12); 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; bonus bMaxHPrate,getrefine(); },{},{} -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_Human,40; bonus2 bAddEff,Eff_Blind,1000; },{},{} -1496,Thanos_Long_Spear,Thanos Long Spear,5,10,,3750,250:50,,3,1,0x00004082,56,2,34,4,120,1,5,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000; },{},{ heal -1000,0; } -1497,Hell_Fire_,Hellfire,5,20,,3500,200,,3,3,0x00004082,63,2,34,4,48,1,5,{ bonus bAtkEle,Ele_Fire; bonus3 bAutoSpell,"MG_FIREBALL",5,100; bonus bStr,3; },{},{} -1498,Crimson_Lance,Crimson Lance,5,20,,1750,175,,1,2,0x00004082,63,2,34,3,70,1,5,{ .@r = getrefine(); bonus bBaseAtk,pow(.@r,2); bonus bBaseAtk,(max(0,BaseLevel-70)/10)*5; },{},{} -1499,Requiem_Lance,Requiem Lance,5,20,,1500,220,,3,,0x00004080,63,2,34,4,100,1,5,{ .@r = getrefine(); .@b = 40; .@c = 5; bonus bUnbreakableWeapon; if(.@r>=5){ .@b += (.@r-5)*15+30; .@c += (.@r-5); } bonus2 bAddRace2,RC2_BioLab,.@b; bonus2 bSubRace2,RC2_BioLab,.@c; },{},{} -//=================================================================== -// 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,{},{},{} -1504,Mace,Mace,5,1600,,800,37,,1,3,0x0004C5B3,63,2,2,1,2,1,8,{},{},{} -1505,Mace_,Mace,5,1600,,800,37,,1,4,0x0004C5B3,63,2,2,1,2,1,8,{},{},{} -1506,Mace__,Mace,5,1600,,800,37,,1,0,0x0004C5B3,63,2,2,1,2,1,8,{},{},{} -1507,Smasher,Smasher,5,9000,,1000,54,,1,2,0x0004C5B3,63,2,2,2,14,1,8,{},{},{} -1508,Smasher_,Smasher,5,9000,,1000,54,,1,3,0x0004C5B3,63,2,2,2,14,1,8,{},{},{} -1509,Smasher__,Smasher,5,9000,,1000,54,,1,3,0x0004C5B3,63,2,2,2,14,1,8,{},{},{} -1510,Flail,Flail,5,16000,,900,69,,1,2,0x0004C5B2,63,2,2,2,14,1,8,{},{},{} -1511,Flail_,Flail,5,16000,,900,69,,1,3,0x0004C5B2,63,2,2,2,14,1,8,{},{},{} -1512,Flail__,Flail,5,16000,,900,69,,1,3,0x0004C5B2,63,2,2,2,14,1,8,{},{},{} -1513,Morning_Star,Morning Star,5,41000,,1500,110,,1,1,0x0004C5B2,63,2,2,3,27,1,8,{},{},{} -1514,Morning_Star_,Morning Star,5,41000,,1500,110,,1,2,0x0004C5B2,63,2,2,3,27,1,8,{},{},{} -1515,Morning_Star__,Morning Star,5,41000,,1500,110,,1,2,0x0004C5B2,63,2,2,3,27,1,8,{},{},{} -1516,Sword_Mace,Sword Mace,5,50000,,1200,130,,1,0,0x0004C5B2,63,2,2,3,27,1,8,{},{},{} -1517,Sword_Mace_,Sword Mace,5,50000,,1200,130,,1,1,0x0004C5B2,63,2,2,3,27,1,8,{},{},{} -1518,Sword_Mace__,Sword Mace,5,50000,,1200,130,,1,1,0x0004C5B2,63,2,2,3,27,1,8,{},{},{} -1519,Chain,Chain,5,23000,,800,84,,1,2,0x0004C5B2,63,2,2,2,14,1,8,{},{},{} -1520,Chain_,Chain,5,23000,,800,84,,1,3,0x0004C5B2,63,2,2,2,14,1,8,{},{},{} -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 bCriticalRate,40; bonus bDefRate,-66; bonus bDef2Rate,-66; },{},{} -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; },{},{} -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 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_Human,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; 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,{},{},{} -1530,Mjolnir,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; },{},{} -1531,Spanner,Wrench,5,20,,2500,115,,1,0,0x00008110,63,2,2,3,55,1,8,{ bonus2 bAddEff,Eff_Blind,100; bonus2 bAddEff,Eff_Stun,100; bonus2 bAddEff,Eff_Poison,100; bonus2 bAddEff,Eff_Freeze,100; },{},{} -1532,Stunner_,Stunner,5,60000,,2000,140,,1,2,0x00008110,63,2,2,3,27,1,8,{ bonus2 bAddEff,Eff_Stun,1000; },{},{} -1533,Warrior_Balmung,Warrior's Balmung,5,20,,1000,170,,1,0,0xFFFFFFFF,63,2,2,4,48,1,8,{ bonus bAllStats,5; },{},{} -1534,Spanner_C,Wrench,5,2,,0,150,,1,0,0x00008110,63,2,2,3,0,0,8,{ bonus2 bAddEff,Eff_Blind,100; bonus2 bAddEff,Eff_Stun,100; bonus2 bAddEff,Eff_Poison,100; bonus2 bAddEff,Eff_Freeze,100; },{},{} -1535,Hollgrehenn_Hammer,Hollgrehenn's Hammer,5,4444,,44,4,,1,1,0x0004C5B2,63,2,2,4,44,1,8,{ bonus bBreakArmorRate,100; bonus bBreakWeaponRate,100; if(readparam(bStr)>=44) { bonus bBaseAtk,44; } },{},{} -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_Human,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; },{},{} -1540,Grand_Cross_,Grand Cross,5,20,,1500,140,,1,1,0x00008110,63,2,2,4,40,1,8,{ bonus bAtkEle,Ele_Holy; 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 bAddEle,Ele_Dark,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_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; },{},{} -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_Human,75; bonus bUnbreakableWeapon; 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_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,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 bCriticalRate,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,{},{},{} -1553,Book_Of_Billows,Book of Billows,5,35000,,750,90,,1,0,0x00410100,63,2,2,3,27,1,15,{ bonus bAtkEle,Ele_Water; },{},{} -1554,Book_Of_Mother_Earth,Book of Mother Earth,5,35000,,750,90,,1,0,0x00410100,63,2,2,3,27,1,15,{ bonus bAtkEle,Ele_Earth; },{},{} -1555,Book_Of_Blazing_Sun,Book of the Blazing Sun,5,35000,,750,90,,1,0,0x00410100,63,2,2,3,27,1,15,{ bonus bAtkEle,Ele_Fire; },{},{} -1556,Book_Of_Gust_Of_Wind,Book of Gust of Wind,5,35000,,750,90,,1,0,0x00410100,63,2,2,3,27,1,15,{ bonus bAtkEle,Ele_Wind; },{},{} -1557,Book_Of_The_Apocalypse,Book of the Apocalypse,5,60000,,800,120,,1,0,0x00410100,63,2,2,4,40,1,15,{ bonus bAtkEle,Ele_Dark; bonus2 bSubDefEle,Ele_Holy,-5; bonus2 bAddEle,Ele_Water,7; bonus2 bAddEle,Ele_Earth,7; bonus2 bAddEle,Ele_Fire,7; bonus2 bAddEle,Ele_Wind,7; },{},{} -1558,Girl's_Diary,Girl's Diary,5,1500,,300,60,,1,1,0x00410100,63,2,2,4,40,1,15,{ bonus2 bAddDamageClass,1188,150; },{},{} -1559,Legacy_Of_Dragon,Legacy of Dragon,5,20,,700,130,,1,0,0x00410100,63,2,2,4,70,1,15,{ bonus bInt,3; bonus bIgnoreDefRace,RC_Dragon; bonus2 bSPGainRace,RC_Dragon,10; },{},{} -1560,Diary_Of_Great_Sage,Sage's Diary,5,20,,1100,100:120,,1,2,0x00410100,63,2,2,3,60,1,15,{ if(readparam(bStr)>=50) bonus bAspdRate,5; if(readparam(bInt)>=70) bonus bMatkRate,5; },{},{} -1561,Hardback,Hardcover Book,5,20,,1500,140,,1,1,0x00410100,63,2,2,4,55,1,15,{ bonus bStr,3; bonus bDex,2; },{},{} -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:140,,1,0,0x00410100,63,2,2,3,1,0,15,{ 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 bComaRace,RC_DemiHuman,10; bonus2 bComaRace,RC_Player_Human,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,1,0,15,{ bonus bStr,5; bonus bDex,2; },{},{} -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; },{},{} -1569,Book_Of_Mother_Earth_,Book of Mother Earth,5,35000,,750,90,,1,3,0x00410100,63,2,2,3,27,1,15,{ bonus bAtkEle,Ele_Earth; },{},{} -1570,Book_Of_Blazing_Sun_,Book of Blazing Sun,5,35000,,750,90,,1,3,0x00410100,63,2,2,3,27,1,15,{ bonus bAtkEle,Ele_Fire; },{},{} -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,{ bonus bMdef,8; bonus bMaxSPrate,10; bonus bInt,4; },{},{} -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; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; },{},{} -1575,BF_Book2,Valorous Battle Strategy Book,5,20,,0,90:125,,1,0,0x00410100,63,2,2,3,80,1,15,{ bonus bStr,1; bonus bInt,2; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; },{},{} -1576,Krieger_Book1,Glorious Tablet,5,20,,0,90:115,,1,0,0x00410100,63,2,2,4,80,1,15,{ bonus2 bAddRace,RC_DemiHuman,80; bonus2 bAddRace,RC_Player_Human,80; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,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_Human,80; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5){ bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,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,10; 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 bComaRace,RC_DemiHuman,10; bonus2 bComaRace,RC_Player_Human,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,{ bonus bMatkRate,20; bonus bAspdRate,5; },{},{} -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_Dic1,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; 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 bBaseAtk,(((BaseLevel-70)/10)*5); },{},{} -1586,Velum_Bible,Vellum Bible,5,20,,600,110:125,,1,0,0x00410100,63,2,2,4,95,1,15,{ 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_Human,80+.@r; bonus2 bIgnoreDefRaceRate,RC_Player_Human,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 bBaseAtk,(.@r*5); bonus bMatk,(.@r*2); .@i = min(BaseLevel/10,12); if (BaseLevel>20) { bonus bBaseAtk,((min(BaseLevel,120)-20)/10)*5; } },{},{} -1589,Legacy_Of_Dragon_,Legacy of Dragon,5,20,,700,130,,1,2,0x00410100,63,2,2,4,70,1,15,{ bonus bInt,3; bonus bIgnoreDefRace,RC_Dragon; bonus2 bSPGainRace,RC_Dragon,10; },{},{} -1590,Snake_Encyclopedia,Daizenshu Dakatsu,5,60000,,1500,10:110,,1,2,0x00010100,56,2,2,4,105,1,15,{ bonus bUnbreakableWeapon; .@r = getrefine(); bonus bBaseAtk,.@r*3; bonus bMatk,.@r*3; },{},{} -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_Human,40; bonus2 bMagicAddRace,RC_Player_Human,5; bonus2 bAddRace,RC_Player_Doram,40; bonus2 bMagicAddRace,RC_Player_Doram,5; bonus3 bAddEff,Eff_Blind,1000,ATF_MAGIC; bonus bHealPower,5; },{},{} -1592,Thor_Pedigree_Book,Raijin's Lineage,5,10,,400,90:130,,1,2,0x00410100,63,2,2,4,27,1,15,{ .@r = getrefine(); bonus bInt,3; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",5+.@r; bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Wind; },{},{} -1593,Book_of_Destiny,Book of Destiny,5,10,,400,90:90,,1,1,0x00410100,63,2,2,4,24,1,15,{ .@r = getrefine(); bonus bLuk,5; bonus bFlee2,15; if(.@r >= 7) bonus bFlee2,5; bonus bUnbreakableWeapon; },{},{} -1594,Fire_Pedigree_Book,Fire Pedigree Book,5,10,,400,90:130,,1,2,0x00410100,63,2,2,4,27,1,15,{ .@r = getrefine(); bonus bInt,3; bonus2 bSkillAtk,"MG_FIREBOLT",5+.@r; bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Fire; },{},{} -1595,Water_Pedigree_Book,Water Pedigree Book,5,10,,400,90:130,,1,2,0x00410100,63,2,2,4,27,1,15,{ .@r = getrefine(); bonus bInt,3; bonus2 bSkillAtk,"MG_COLDBOLT",5+.@r; bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Water; },{},{} -1596,Earth_Pedigree_Book,Earth Pedigree Book,5,10,,400,90:130,,1,2,0x00410100,63,2,2,4,27,1,15,{ .@r = getrefine(); bonus bInt,3; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",5+.@r; bonus2 bSkillAtk,"WZ_EARTHSPIKE",5+.@r; bonus bUnbreakableWeapon; },{},{} -1597,Half_BF_Book2,Half BF Book2,5,20,,0,90:125,,1,0,0x00210100,63,2,2,3,80,1,15,{ bonus bStr,1; bonus bInt,1; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,10; },{},{} -// GM Weapon -1598,Snake_Encyclopedia_,Daizenshu Dakatsu,5,60000,,1500,10:110,,1,3,0x00010100,56,2,2,4,105,1,15,{ bonus bUnbreakableWeapon; .@r = getrefine(); bonus bBaseAtk,.@r*3; bonus bMatk,.@r*3; },{},{} -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; bonus bAspdRate,100; },{},{} -//=================================================================== -// 1-Handed Staffs -//=================================================================== -1600,Rod_of_Vicious_Mind,Rod of Vicious Mind,5,20,,600,60:120,,1,1,0x00818315,63,2,2,4,160,1,10,{ bonus bMatk,pow(min(getrefine(),15),2); bonus bInt,5; bonus bUnbreakableWeapon; },{},{} -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,{},{},{} -1604,Wand,Wand,5,2500,,400,25:45,,1,2,0x00818315,63,2,2,2,12,1,10,{ bonus bInt,1; },{},{} -1605,Wand_,Wand,5,2500,,400,25:45,,1,3,0x00818315,63,2,2,2,12,1,10,{ bonus bInt,1; },{},{} -1606,Wand__,Wand,5,2500,,400,25:45,,1,0,0x00818315,63,2,2,2,12,1,10,{ bonus bInt,1; },{},{} -1607,Staff,Staff,5,9500,,400,40:70,,1,2,0x00818314,63,2,2,2,12,1,10,{ bonus bInt,2; },{},{} -1608,Staff_,Staff,5,9500,,400,40:70,,1,3,0x00818314,63,2,2,2,12,1,10,{ bonus bInt,2; },{},{} -1609,Staff__,Staff,5,9500,,400,40:70,,1,0,0x00818314,63,2,2,2,12,1,10,{ bonus bInt,2; },{},{} -1610,Arc_Wand,Arc Wand,5,45000,,400,60:95,,1,1,0x00818314,63,2,2,3,24,1,10,{ bonus bInt,3; },{},{} -1611,Arc_Wand_,Arc Wand,5,45000,,400,60:95,,1,2,0x00818314,63,2,2,3,24,1,10,{ bonus bInt,3; },{},{} -1612,Arc_Wand__,Arc Wand,5,45000,,400,60:95,,1,0,0x00818314,63,2,2,3,24,1,10,{ bonus bInt,3; },{},{} -1613,Mighty_Staff,Mighty Staff,5,20,,700,130:100,,1,0,0x00818314,63,2,2,3,24,1,10,{ bonus bStr,10; bonus bSPDrainValue,-2; },{},{} -1614,Blessed_Wand,Wand of Occult,5,20,,700,75:105,,1,0,0x00818314,63,2,2,3,24,1,10,{ bonus bInt,3; },{},{} -1615,Bone_Wand,Evil Bone Wand,5,20,,700,40:110,,1,0,0x00818314,63,2,2,3,24,1,10,{ bonus bInt,4; bonus bAtkEle,Ele_Undead; },{},{} -1616,Staff_Of_Wing,Wing Staff,5,20,,500,60:115,,1,0,0x00810204,63,2,2,4,40,1,10,{ bonus bVariableCastrate,-5; },{},{} -1617,Survival_Rod,Survivor's Rod,5,85000,,1000,50:120,,1,0,0x00818314,63,2,2,3,24,1,10,{ bonus bDex,2; bonus bMaxHP,300; },{},{} -1618,Survival_Rod_,Survivor's Rod,5,85000,,1000,50:120,,1,1,0x00818314,63,2,2,3,24,1,10,{ bonus bDex,3; bonus bMaxHP,400; },{},{} -1619,Survival_Rod2,Survivor's Rod,5,85000,,1000,50:120,,1,0,0x00818314,63,2,2,3,24,1,10,{ bonus bInt,2; bonus bMaxHP,300; },{},{} -1620,Survival_Rod2_,Survivor's Rod,5,85000,,1000,50:120,,1,1,0x00818314,63,2,2,3,24,1,10,{ bonus bInt,3; bonus bMaxHP,400; },{},{} -1621,Hypnotist's_Staff,Hypnotist's Staff,5,43000,,500,70:120,,1,1,0x00000001,63,2,2,3,30,1,10,{ bonus bInt,1; },{},{} -1622,Hypnotist's_Staff_,Hypnotist's Staff,5,20,,500,70:120,,1,2,0x00000001,63,2,2,3,30,1,10,{ bonus bInt,1; },{},{} -1623,Mighty_Staff_C,Mighty Staff,5,1,,0,165:120,,1,0,0x00818314,63,2,2,3,1,0,10,{ bonus bStr,10; bonus bInt,4; bonus bSPDrainValue,-1; },{},{} -1624,Lich_Bone_Wand,Lich's Bone Wand,5,20,,800,60:170,,1,2,0x00018314,18,2,2,3,70,1,10,{ bonus bInt,1; bonus bDex,1; bonus bAtkEle,Ele_Undead; .@r = getrefine(); bonus3 bAutoSpellWhenHit,"NPC_WIDECURSE",5,10+.@r; if(.@r>=9){ bonus bMatkRate,3; bonus bMaxSP,300; } },{},{} -1625,Healing_Staff,Healing Staff,5,20,,400,10:105,,1,0,0x00008110,63,2,2,3,55,1,10,{ bonus bAtkEle,Ele_Holy; bonus bHealPower,(getrefine()*3/2); },{},{} -1626,Piercing_Staff,Piercing Staff,5,20,,500,80:145,,1,0,0x00018314,18,2,2,3,70,1,10,{ .@r = getrefine(); bonus bInt,4; bonus2 bIgnoreMdefClassRate,Class_Normal,10+.@r; bonus2 bIgnoreMdefClassRate,Class_Boss,10+.@r; },{},{} -1627,Staffy,Staffy,5,20,,0,40:120,,1,0,0x00818314,63,2,2,1,0,0,10,{ bonus bInt,4; bonus bMatkRate,15; bonus2 bAddClass,Class_All,50; },{},{} -1628,Survival_Rod_C,Refined Survivor's Rod,5,1,,0,71:145,,1,0,0x00818314,63,2,2,3,0,0,10,{ bonus bDex,4; bonus bMatkRate,20; bonus bMaxHP,500; },{},{} -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_Human,25; bonus3 bAddEff,Eff_Stun,500,ATF_MAGIC; bonus bUnbreakableWeapon; },{},{} -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_Human,15; bonus3 bAddEff,Eff_Stun,500,ATF_MAGIC; bonus bUnbreakableWeapon; },{},{} -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; },{},{} -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; },{},{} -1636,Thorn_Staff,Thorn Staff of Darkness,5,20,,700,60:160,,1,0,0x00018314,18,2,2,4,75,1,10,{ bonus bAtkEle,Ele_Dark; 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; 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,1,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,{},{},{} -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_Human,15; .@r = getrefine(); bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25 + ((.@r > 5) ? 5 : 0); bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25 + ((.@r > 5) ? 5 : 0); bonus bUnbreakableWeapon; 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; .@r = getrefine(); if(.@r > 5) { bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,5; bonus bHealPower,5+(min(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; },{},{} -1645,Lich_Bone_Wand_M,Lich's Bone Wand,5,20,,800,60:170,,1,2,0x00018314,18,2,2,3,70,1,10,{ bonus bInt,1; bonus bDex,1; bonus bAtkEle,Ele_Undead; bonus bMatkRate,20; .@r = getrefine(); bonus3 bAutoSpellWhenHit,"NPC_WIDECURSE",5,10+.@r; if(.@r>=9){ bonus bMatkRate,3; bonus bMaxSP,300; } },{},{} -1646,La'cryma_Stick,La'cryma Stick,5,20,,500,30:180,,1,2,0x00010204,18,2,2,3,50,1,10,{ .@r = getrefine(); bonus bInt,4; bonus bMdef,.@r; bonus2 bSkillAtk,"WZ_STORMGUST",.@r; if (.@r > 9) bonus2 bVariableCastrate,"WZ_STORMGUST",-8; },{},{} -1647,Croce_Staff,Croce Staff,5,20,,500,30:175,,1,1,0x00008110,18,2,2,3,50,1,10,{ bonus bAtkEle,Ele_Holy; bonus bInt,4; bonus4 bAutoSpellOnSkill,"AL_HEAL","AL_BLESSING",max(getskilllv("AL_BLESSING"),1),20; },{},{} -1648,Staff_Of_Bordeaux,Staff Of Bordeaux,5,20,,500,30:170,,1,0,0x00010200,18,2,2,4,50,1,10,{ bonus bInt,2; bonus bDex,1; if(getskilllv("SA_DRAGONOLOGY") == 5) { bonus bUseSPrate,-15; bonus bInt,3; } },{},{} -1649,Rafini_Staff,Laphine Staff,5,20,,500,30:180,,1,0,0x00818315,63,2,2,3,100,1,10,{ bonus bFixedCastRate,-getrefine(); },{},{} -1650,P_Staff1,Eden Staff I,5,0,,0,60:125,,1,0,0x00818314,63,2,2,2,26,0,10,{ bonus bInt,2; },{},{} -1651,P_Staff2,Eden Staff II,5,0,,0,60:150,,1,0,0x00818314,63,2,2,2,40,0,10,{ bonus bInt,3; },{},{} -1652,Tourist_Staff,Tourist Staff,5,0,,500,35:0,,1,0,0x00818315,63,2,2,1,1,0,10,{ bonus bMatkRate,15; 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; bonus bHealPower,18; },{},{} -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; },{},{} -1656,Academy_Wand,Academy Wand,5,0,,600,60,,1,1,0x00810204,63,2,2,1,1,1,10,{ bonus bUnbreakableWeapon; },{},{} -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; .@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,{ .@r = getrefine(); bonus bInt,10; bonus bUnbreakableWeapon; bonus bUseSPrate,100; bonus bMdef,20; bonus3 bSPVanishRate,1000,5+(.@r>5?3:0),BF_WEAPON|BF_MAGIC|BF_MISC; },{},{} -1662,Bone_Wand_,Evil Bone Wand,5,20,,700,40:110,,1,2,0x00818314,63,2,2,3,24,1,10,{ bonus bInt,4; bonus bAtkEle,Ele_Undead; },{},{} -1663,Staff_Of_Bordeaux_,Staff Of Bordeaux,5,20,,500,30:180,,1,2,0x00010200,18,2,2,4,50,1,10,{ bonus bInt,2; bonus bDex,1; if(getskilllv("SA_DRAGONOLOGY") == 5) { bonus bUseSPrate,-15; bonus bInt,3; } },{},{} -1664,Thorn_Staff_,Thorn Staff of Darkness,5,10,,700,60:160,,,1,0x14,50,2,2,4,75,1,8,{ bonus bInt,3; bonus bDex,3; .@r = getrefine(); bonus2 bIgnoreMdefClassRate,Class_Normal,.@r; bonus2 bIgnoreMdefClassRate,Class_Boss,.@r; bonus bDelayrate,-.@r*3/2; bonus bAtkEle,Ele_Dark; },{},{} -1665,Piercing_Staff_,Piercing Staff,5,20,,500,80:145,,1,2,0x00018314,18,2,2,3,70,1,10,{ .@r = getrefine(); bonus bInt,4; bonus2 bIgnoreMdefClassRate,Class_Normal,10+.@r; bonus2 bIgnoreMdefClassRate,Class_Boss,10+.@r; },{},{} -1666,Healing_Staff_,Healing Staff,5,20,,400,10:105,,1,2,0x00008110,63,2,2,3,55,1,10,{ bonus bAtkEle,Ele_Holy; bonus bHealPower,(getrefine()*3/2); },{},{} -1667,TE_Woe_Staff,TE Woe Staff,5,0,,0,50:100,,1,0,0x00818315,63,2,2,3,40,1,10,{ bonus2 bMagicAddRace,RC_Player_Human,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,0x810204,63,2,2,4,80,1,10,{ bonus bAspdRate,10; },{},{} -1669,Thanos_Staff,Thanos Staff,5,10,,1000,100:200,,1,1,0x00018314,56,2,2,4,120,1,10,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus bHealPower,15; bonus bMagicHPGainValue,500; bonus bMagicSPGainValue,50; bonus2 bHPLossRate,100,10000; },{},{ heal -1000,0; } -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,Evil Slayer Vanquisher Staff,5,0,,800,30:155,,,1,0x00818315,63,2,2,3,100,1,10,{ bonus2 bAddRace,RC_Undead,10; bonus2 bAddRace,RC_Demon,10; bonus2 bMagicAddRace,RC_Undead,10; bonus2 bMagicAddRace,RC_Demon,10; .@r = getrefine(); if(.@r>=9) { .@dmg = 5; if(.@r>=12) { .@dmg += 7; } bonus bMatkRate,.@dmg; } },{},{} -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; },{},{} -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_Human,10; bonus3 bAddEff,Eff_Stun,200,ATF_SKILL; bonus bUnbreakableWeapon; },{},{} -1675,Walking_Stick_,Gentleman's Staff,5,20,,500,40:125,,1,3,0x00818314,63,2,2,4,50,1,10,{ bonus bDex,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; bonus bVariableCastrate,-10; if (BaseLevel > 99){ bonus bMatk,30; } if(getrefine() > 8){ bonus2 bResEff,Eff_Blind,3000; bonus bUseSPrate,-10; } },{},{} -1677,Ru_Blue_Wand,Blue Wand,5,10,,0,50:200,,1,1,0x00000200,56,2,2,3,100,1,10,{ bonus bDex,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; },{},{} -1679,Rafini_Staff_S,Laphine Staff,5,20,,500,30:180,,1,2,0x00818315,63,2,2,3,100,1,10,{ bonus bFixedCastRate,-getrefine(); },{},{} -1680,Crimson_One-Handed_Staff,Crimson One-Handed Staff,5,10,,600,60:70,,1,2,0x00818315,63,2,2,3,70,1,10,{ .@r = getrefine(); bonus bInt,4; bonus bMatk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bUnbreakableWeapon; },{},{} -1681,Short_Foxtail_Staff,Short Foxtail Staff,5,20,,0,30,,1,0,0x80000000,7,2,2,1,1,1,10,{},{},{} -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; }"; },{},{} -1683,Enriched_Foxtail_Staff,Enriched Foxtail Staff,5,20,,200,50:70,,1,1,0x80000000,7,2,2,2,12,1,10,{ bonus bMaxSP,50; },{},{} -1684,Long_Foxtail_Staff,Long Foxtail Staff,5,20,,200,50,,2,1,0x80000000,7,2,2,2,12,1,10,{ bonus bLongAtkRate,5; bonus bMaxHP,200; },{},{} -1685,Dragonfly_Sitting_Foxtail_Staff,Dragonfly Sitting Foxtail Staff,5,20,,300,70:100,,1,1,0x80000000,7,2,2,2,20,1,10,{ bonus bInt,1; bonus bMaxHP,100; bonus bMaxSP,150; },{},{} -1686,Large_Foxtail_Staff,Large Foxtail Staff,5,20,,300,70,,1,1,0x80000000,7,2,2,2,20,1,10,{ bonus bLongAtkRate,8; bonus bDex,1; bonus bMaxHP,200; bonus bMaxSP,100; },{},{} -1687,Beginner_Foxtail_Staff,Beginner Foxtail Staff,5,20,,100,40:15,,1,1,0x80000000,7,2,2,1,3,1,10,{ bonus bMaxHP,100; },{},{} -1690,Mysterious_Foxtail_Staff,Mysterious Foxtail Staff,5,20,,400,80:180,,1,3,0x80000000,7,2,2,2,60,1,10,{ .@r = getrefine(); bonus bMaxSP,10*(.@r/3)+50; bonus bMatk,10*(.@r/3); },{},{} -1691,Strange_God_Foxtail_Staff,Strange God Foxtail Staff,5,20,,500,100:240,,1,2,0x80000000,7,2,2,3,100,1,10,{ bonus bMaxSP,100; .@r = getrefine(); bonus bMatkRate,2*(.@r/3); bonus bMaxSPrate,.@r/3; if(.@r>=7){ .@r = min(.@r,10)-7; bonus bWeaponAtkRate,(20*.@r)+40; bonus bWeaponMatkRate,(20*.@r)+40; } bonus bUnbreakableWeapon; },{},{} -1692,Magical_Foxtail_Staff,Magical Foxtail Staff,5,20,,600,120:260,,1,2,0x80000000,7,2,2,3,140,1,10,{ bonus bMaxSP,100; .@r = getrefine(); bonus bMatkRate,2*(.@r/3); bonus bMaxSPrate,.@r/3; if(.@r>=7){ .@r = min(.@r,10)-7; bonus bWeaponAtkRate,(20*.@r)+40; bonus bWeaponMatkRate,(20*.@r)+40; } },{},{} -1693,Magical_Yellow_Foxtail_Staff,Magical Yellow Foxtail Staff,5,20,,700,140:280,,1,1,0x80000000,7,2,2,4,175,1,10,{ .@r = getrefine(); bonus bMatkRate,3*(.@r/2); bonus4 bAutoSpellOnSkill,"SU_FRESHSHRIMP","SU_ARCLOUSEDASH",max(1,getskilllv("SU_ARCLOUSEDASH")),200; bonus4 bAutoSpellOnSkill,"SU_SV_STEMSPEAR","SU_FRESHSHRIMP",max(1,getskilllv("SU_FRESHSHRIMP")),200; if(.@r>=7){ .@r = min(.@r,10)-7; bonus bWeaponAtkRate,(20*.@r)+40; bonus bWeaponMatkRate,(20*.@r)+40; } },{},{} -1694,Foxtail_Model,Foxtail Model,5,20,,300,150,,1,3,0x80000000,7,2,2,2,60,1,10,{ bonus bLongAtkRate,8; bonus bMaxHP,100; .@r = getrefine(); bonus bDex,(.@r/3)*2; bonus bMaxSP,(.@r/3)*10; },{},{} -1695,Delicate_Foxtail_Model,Delicate Foxtail Model,5,20,,300,195,,1,2,0x80000000,7,2,2,3,100,1,10,{ bonus bLongAtkRate,8; bonus bMaxHP,200; .@r = getrefine(); bonus bDex,(.@r/3)*3; bonus bMaxSP,(.@r/3)*15; if(.@r>=7){ .@r = min(.@r,10)-7; bonus bWeaponAtkRate,(20*.@r)+40; bonus bWeaponMatkRate,(20*.@r)+40; } },{},{} -1696,Exquisite_Foxtail_Model,Exquisite Foxtail Model,5,20,,300,240,,1,2,0x80000000,7,2,2,3,140,1,10,{ bonus bLongAtkRate,8; bonus bMaxHPrate,5; .@r = getrefine(); bonus bDex,(.@r/2)*3; bonus bMaxSP,(.@r/2)*15; if(.@r>=7){ .@r = min(.@r,10)-7; bonus bWeaponAtkRate,(20*.@r)+40; bonus bWeaponMatkRate,(20*.@r)+40; } },{},{} -1697,Exquisite_Yellow_Foxtail_Model,Exquisite Yellow Foxtail Model,5,20,,300,270,,1,1,0x80000000,7,2,2,4,175,1,10,{ bonus bLongAtkRate,9; bonus bMaxHPrate,7; .@r = getrefine(); bonus bLongAtkRate,.@r/2; bonus bMaxSP,(.@r/2)*20; bonus4 bAutoSpellOnSkill,"SU_PICKYPECK","SU_FRESHSHRIMP",max(1,getskilllv("SU_FRESHSHRIMP")),200; if(.@r>=7){ .@r = min(.@r,10)-7; bonus bWeaponAtkRate,(20*.@r)+40; bonus bWeaponMatkRate,(20*.@r)+40; } },{},{} -1698,Requiem_Arc_Wand,Requiem Arc Wand,5,20,,500,80:145,,1,,0x00000015,63,2,2,4,100,1,10,{ .@r = getrefine(); .@b = 40; if(.@r>=5){ .@b += (.@r-5)*15+20; } bonus2 bMagicAddRace2,RC2_BioLab,.@b; },{},{} -1699,Paradise_Foxtail_Staff_I,Eden Group Foxtail I,5,20,,0,120:135,,1,0,0x80000000,7,2,2,2,26,0,10,{ bonus bDex,3; bonus bInt,3; bonus bLongAtkRate,5; },{},{} -//=================================================================== -// 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; },{},{} -1704,Composite_Bow,Composite Bow,5,2500,,600,29,,5,3,0x000A0848,63,2,34,1,4,1,11,{},{},{} -1705,Composite_Bow_,Composite Bow,5,2500,,600,29,,5,4,0x000A0848,63,2,34,1,4,1,11,{},{},{} -1706,Composite_Bow__,Composite Bow,5,2500,,600,29,,5,0,0x000A0848,63,2,34,1,4,1,11,{},{},{} -1707,Great_Bow,Great Bow,5,10000,,1000,50,,5,2,0x000A0848,63,2,34,2,18,1,11,{},{},{} -1708,Great_Bow_,Great Bow,5,10000,,1000,50,,5,3,0x000A0848,63,2,34,2,18,1,11,{},{},{} -1709,Great_Bow__,Great Bow,5,10000,,1000,50,,5,0,0x000A0848,63,2,34,2,18,1,11,{},{},{} -1710,CrossBow,Crossbow,5,17000,,900,65,,5,2,0x000A0848,63,2,34,2,18,1,11,{},{},{} -1711,CrossBow_,Crossbow,5,17000,,900,65,,5,3,0x000A0848,63,2,34,2,18,1,11,{},{},{} -1712,CrossBow__,Crossbow,5,17000,,900,65,,5,0,0x000A0848,63,2,34,2,18,1,11,{},{},{} -1713,Arbalest,Arbalest,5,48000,,1000,90,,5,1,0x000A0848,63,2,34,3,33,1,11,{ bonus bDex,2; },{},{} -1714,Kakkung,Gakkung Bow,5,42000,,1100,100,,5,1,0x000A0848,63,2,34,3,33,1,11,{},{},{} -1715,Arbalest_,Arbalest,5,48000,,1000,90,,5,2,0x000A0848,63,2,34,3,33,1,11,{ bonus bDex,2; },{},{} -1716,Kakkung_,Gakkung Bow,5,42000,,1100,100,,5,2,0x000A0848,63,2,34,3,33,1,11,{},{},{} -1718,Hunter_Bow,Hunter Bow,5,64000,,1500,125,,5,0,0x00000800,63,2,34,3,33,1,11,{},{},{} -1719,Bow_Of_Roguemaster,Roguemaster's Bow,5,20,,500,75,,11,0,0x00000040,63,2,34,4,48,1,11,{},{},{} -1720,Bow_Of_Rudra,Rudra Bow,5,20,,1200,150,,5,0,0x000A0808,63,2,34,4,48,1,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; },{},{} -1721,Repeting_CrossBow,Repeating Crossbow,5,89000,,2000,95,,9,1,0x00020840,63,2,34,3,65,1,11,{},{},{} -1722,Balistar,Ballista,5,124000,,3500,145,,5,0,0x00080800,63,2,34,4,77,1,11,{},{},{} -1723,Luna_Bow,Luna Bow,5,20,,2000,100,,5,2,0x00000800,63,2,34,3,30,1,11,{ .@r = getrefine(); bonus bDef,2+3*(.@r>5)+5*(.@r>8); },{},{} -1724,Dragon_Wing,Dragon Wing,5,20,,1200,100,,5,0,0x000A0848,63,2,34,4,60,1,11,{ bonus3 bAddMonsterDropItem,1765,RC_Dragon,300; bonus bIgnoreDefRace,RC_Dragon; },{},{} -1725,Bow_Of_Minstrel,Minstrel Bow,5,20,,1700,120,,5,1,0x00080800,63,2,34,4,70,1,11,{ bonus bInt,2; bonus bSPrecovRate,10; },{},{} -1726,Hunter_Bow_,Hunter Bow,5,64000,,1500,125,,5,1,0x00000800,63,2,34,3,33,1,11,{},{},{} -1727,Balistar_,Ballista,5,124000,,3500,145,,5,1,0x00080800,63,2,34,4,77,1,11,{},{},{} -1728,Balistar_C,Ballista,5,1,,0,194,,5,0,0x00080800,63,2,34,4,1,0,11,{ bonus bLongAtkRate,20; },{},{} -1729,Bow_Of_Rudra_C,Rudra Bow,5,2,,0,185,,5,0,0x000A0808,63,2,34,4,1,0,11,{ bonus bAtkEle,Ele_Holy; bonus bInt,5; 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; skill "AL_CURE",1; skill "AL_HEAL",1; bonus2 bAddRace,RC_Undead,20; bonus2 bAddRace,RC_Demon,20; },{},{} -1730,Burning_Bow,Burning Bow,5,20,,1400,95,,5,1,0x000A0808,63,2,34,3,55,1,11,{ bonus2 bSubEle,Ele_Fire,10; },{},{} -1731,Frozen_Bow,Frozen Bow,5,20,,1400,100,,5,1,0x000A0808,63,2,34,3,55,1,11,{ bonus2 bAddEff,Eff_Freeze,1000; },{},{} -1732,Earth_Bow,Earth Bow,5,20,,1400,105,,5,1,0x000A0808,63,2,34,3,55,1,11,{},{},{} -1733,Gust_Bow,Gust Bow,5,20,,1400,95,,5,1,0x000A0808,63,2,34,3,55,1,11,{},{},{} -1734,Orc_Archer_Bow,Orc Archer Bow,5,20,,1600,120,,5,0,0x000A0808,63,2,34,3,65,1,11,{ bonus2 bAddMonsterDropItem,1753,200; },{},{} -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_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; },{},{} -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_Human,55; bonus bUnbreakableWeapon; },{},{} -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,0x00080800,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_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; .@r = getrefine(); bonus bCritAtkRate,min(10,.@r)*2; bonus bUnbreakableWeapon; if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,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,0x00000800,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; },{},{} -1753,Steel_Arrow,Steel Arrow,10,4,,2,40,,,,0x000A1848,63,2,32768,,1,,1,{},{},{} -1754,Crystal_Arrow,Crystal Arrow,10,3,,2,30,,,,0x000A1848,63,2,32768,,1,,1,{ bonus bAtkEle,Ele_Water; },{},{} -1755,Arrow_Of_Wind,Arrow of Wind,10,3,,2,30,,,,0x000A1848,63,2,32768,,1,,1,{ bonus bAtkEle,Ele_Wind; },{},{} -1756,Stone_Arrow,Stone Arrow,10,3,,2,30,,,,0x000A1848,63,2,32768,,1,,1,{ bonus bAtkEle,Ele_Earth; },{},{} -1757,Immatrial_Arrow,Immaterial Arrow,10,3,,1,30,,,,0x000A1848,63,2,32768,,1,,1,{ bonus bAtkEle,Ele_Ghost; },{},{} -1758,Stun_Arrow,Stun Arrow,10,10,,3,1,,,,0x000A1848,63,2,32768,,1,,1,{ bonus2 bAddEff,Eff_Stun,1000; },{},{} -1759,Freezing_Arrow,Frozen Arrow,10,10,,3,1,,,,0x000A1848,63,2,32768,,1,,1,{ bonus bAtkEle,Ele_Water; bonus2 bAddEff,Eff_Freeze,1000; },{},{} -1760,Flash_Arrow,Flash Arrow,10,10,,3,1,,,,0x000A1848,63,2,32768,,1,,1,{ bonus2 bAddEff,Eff_Blind,1000; },{},{} -1761,Curse_Arrow,Cursed Arrow,10,10,,3,1,,,,0x000A1848,63,2,32768,,1,,1,{ bonus2 bAddEff,Eff_Curse,1000; },{},{} -1762,Rusty_Arrow,Rusty Arrow,10,3,,2,30,,,,0x000A1848,63,2,32768,,1,,1,{ bonus bAtkEle,Ele_Poison; },{},{} -1763,Poison_Arrow,Poison Arrow,10,10,,3,1,,,,0x000A1848,63,2,32768,,1,,1,{ bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,2000; },{},{} -1764,Incisive_Arrow,Sharp Arrow,10,20,,3,10,,,,0x000A1848,63,2,32768,,1,,1,{ bonus bCriticalLong,20; },{},{} -1765,Oridecon_Arrow,Oridecon Arrow,10,30,,3,50,,,,0x000A1848,63,2,32768,,1,,1,{},{},{} -1766,Arrow_Of_Counter_Evil,Arrow of Counter Evil,10,40,,3,50,,,,0x000A1848,63,2,32768,,1,,1,{ bonus bAtkEle,Ele_Holy; },{},{} -1767,Arrow_Of_Shadow,Arrow of Shadow,10,3,,2,30,,,,0x000A1848,63,2,32768,,1,,1,{ bonus bAtkEle,Ele_Dark; },{},{} -1768,Sleep_Arrow,Sleep Arrow,10,10,,3,1,,,,0x000A1848,63,2,32768,,1,,1,{ bonus2 bAddEff,Eff_Sleep,2000; },{},{} -1769,Silence_Arrow,Mute Arrow,10,10,,3,1,,,,0x000A1848,63,2,32768,,1,,1,{ bonus2 bAddEff,Eff_Silence,1000; },{},{} -1770,Iron_Arrow,Iron Arrow,10,2,,1,30,,,,0x000A1848,63,2,32768,,1,,1,{},{},{} -1771,Venom_Knife,Venom Knife,10,50,,5,30,,,,0x00001000,63,2,32768,,1,,2,{},{},{} -1772,Holy_Arrow,Holy Arrow,10,3,,2,50,,,,0x000A1848,63,2,32768,,1,,1,{ bonus bAtkEle,Ele_Holy; bonus2 bAddRace,RC_Demon,5; },{},{} -1773,Arrow_Of_Elf,Elven Arrow,10,5,,1,45,,,,0x000A1848,63,2,32768,,100,,1,{},{},{} -1774,Hunting_Arrow,Hunting Arrow,10,5,,1,35,,,,0x000A1848,63,2,32768,,1,,1,{},{},{} -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 -//=================================================================== -1800,Fist_of_Vicious_Mind,Fist of Vicious Mind,5,20,,1500,150,,1,1,0x00008100,63,2,2,4,160,1,12,{ bonus bAtk,pow(min(getrefine(),15),2); },{},{} -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,{},{},{} -1804,Knuckle_Duster_,Knuckle Dusters,5,25000,,450,50,,1,3,0x00008100,63,2,2,2,12,1,12,{},{},{} -1805,Hora,Studded Knuckles,5,32000,,450,65,,1,2,0x00008100,63,2,2,2,12,1,12,{},{},{} -1806,Hora_,Studded Knuckles,5,32000,,450,65,,1,3,0x00008100,63,2,2,2,12,1,12,{},{},{} -1807,Fist,Fist,5,53000,,650,115,,1,0,0x00008100,63,2,2,3,24,1,12,{},{},{} -1808,Fist_,Fist,5,53000,,650,115,,1,1,0x00008100,63,2,2,3,24,1,12,{},{},{} -1809,Claw,Claw,5,67000,,500,86,,1,1,0x00008100,63,2,2,3,24,1,12,{ bonus bStr,2; },{},{} -1810,Claw_,Claw,5,67000,,500,86,,1,2,0x00008100,63,2,2,3,24,1,12,{ bonus bStr,2; },{},{} -1811,Finger,Finger,5,58000,,500,97,,1,1,0x00008100,63,2,2,3,24,1,12,{},{},{} -1812,Finger_,Finger,5,58000,,500,97,,1,2,0x00008100,63,2,2,3,24,1,12,{},{},{} -1813,Kaiser_Knuckle,Kaiser Knuckle,5,20,,450,110,,1,0,0x00008100,63,2,2,4,36,1,12,{ bonus bAtkEle,Ele_Wind; bonus2 bAddRace,RC_Undead,5; bonus2 bAddEle,Ele_Water,10; bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Fire,10; bonus2 bAddEle,Ele_Wind,10; },{},{} -1814,Berserk,Berserk,5,20,,500,120,,1,0,0x00008100,63,2,2,4,36,1,12,{ bonus bAspdRate,12; },{},{} -1815,Claw_Of_Garm,Hatii Claw,5,20,,550,152,,1,1,0x00008100,63,2,2,4,70,1,12,{ bonus bAtkEle,Ele_Dark; bonus bMaxHPrate,-2; bonus2 bAddEff,Eff_Bleeding,200; },{},{} -1816,Berserk_,Berserk,5,20,,500,120,,1,1,0x00008100,63,2,2,4,36,1,12,{ bonus bAspdRate,12; },{},{} -1817,Kaiser_Knuckle_C,Kaiser Knuckle,5,1,,0,159,,1,0,0x00008100,63,2,2,4,1,0,12,{ bonus bAtkEle,Ele_Wind; bonus2 bAddRace,RC_Undead,5; bonus2 bAddEle,Ele_Water,10; bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Fire,10; bonus2 bAddEle,Ele_Wind,10; bonus bAspdRate,5; },{},{} -1818,Magma_Fist,Magma Fist,5,20,,650,80,,1,3,0x00008100,63,2,2,3,75,1,12,{ bonus3 bAutoSpell,"SA_FLAMELAUNCHER",5,10; },{},{} -1819,Icicle_Fist,Icicle Fist,5,20,,650,80,,1,3,0x00008100,63,2,2,3,75,1,12,{ bonus3 bAutoSpell,"SA_FROSTWEAPON",5,10; },{},{} -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_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus4 bAutoSpell,"CH_SOULCOLLECT",1,5,0; bonus bUnbreakableWeapon; },{},{} -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_Human,95; bonus2 bVariableCastrate,"MO_EXTREMITYFIST",-25; autobonus "{ bonus2 bVariableCastrate,\"MO_EXTREMITYFIST\",-100; }",50,6000,BF_WEAPON,"{ specialeffect2 EF_SUFFRAGIUM; }"; bonus bUnbreakableWeapon; },{},{} -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_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,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_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,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_Human,100; .@r = getrefine(); if(.@r>7) { bonus2 bAddRace,RC_Player_Human,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,{ bonus bAspd,1; bonus bAspdRate,getrefine(); bonus2 bAddSize,Size_Medium,getrefine(); },{},{} -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_Human,40; bonus2 bAddEff,Eff_Freeze,3000; },{},{} -1835,Spartacus,Spartacus,5,0,,600,100,,1,2,0x00008100,63,2,2,4,50,1,12,{ bonus bUnbreakableWeapon; .@r = getrefine(); bonus2 bAddClass,Class_All,.@r; if(.@r>9) { bonus bNoSizeFix; } },{},{} -1836,Thanos_Knuckle,Thanos Knuckle,5,10,,600,160:100,,1,1,0x00008000,56,2,2,4,120,1,12,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000; },{},{ heal -1000,0; } -1837,Iron_nail,Iron Nail,5,10,,1500,100,,,1,0x00008100,63,2,2,3,50,1,12,{ bonus bUnbreakableWeapon; bonus bIgnoreDefClass,Class_All; .@r = (getrefine()/2); bonus bAspdRate,-5+.@r; if(getskilllv("MO_CHAINCOMBO")==5){ bonus bBaseAtk,20; } if(getskilllv("MO_COMBOFINISH")==5){ bonus bBaseAtk,20; } if(getskilllv("CH_TIGERFIST")==5){ bonus bBaseAtk,20; } if(getskilllv("CH_CHAINCRUSH")==10){ bonus bBaseAtk,40; } },{},{} -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_Human,30; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus4 bAutoSpell,"CH_SOULCOLLECT",1,5,0; bonus bUnbreakableWeapon; },{},{} -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; },{},{} -1840,Requiem_Knuckle,Requiem Knuckle,5,20,,500,150:100,,1,0,0x00008100,63,2,2,4,100,1,12,{ .@r = getrefine(); .@b = 40; if(.@r>=5){ .@b += (.@r-5)*15+20; } bonus2 bAddRace2,RC2_BioLab,.@b; },{},{} -1841,Claw_Of_Flash_,Claw of Flash,5,60000,,400,140,,1,3,0x00008100,63,2,2,4,105,1,12,{ bonus bAspd,1; bonus bAspdRate,getrefine(); bonus2 bAddSize,Size_Medium,getrefine(); },{},{} -1846,Illusion_Combo_Battle_Glove,Illusion Combo Battle Glove,5,0,,500,250,,1,2,0x00008000,56,2,2,4,120,1,12,{ .@r = getrefine(); bonus2 bSkillAtk,"SR_SKYNETBLOW",(10+5*(.@r/2)); bonus2 bSkillAtk,"SR_DRAGONCOMBO",(10+5*(.@r/2)); bonus2 bSkillAtk,"SR_TIGERCANNON",(5*(.@r/3)); },{},{} -1862,Burning_Knuckle-OS,Burning Knuckle-OS,5,20,,900,175,,1,2,0x00008000,63,2,2,4,130,1,12,{ .@r = getrefine(); bonus2 bAddClass,Class_All,3; if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",15; if (.@r >= 11) { bonus2 bAddSize,Size_Medium,20; bonus2 bAddSize,Size_Large,20; } } } },{},{} -1865,Raging_Dragon_Fist,Raging Dragon Fist,5,20,,700,210,,1,2,0x00008000,56,2,2,4,170,1,12,{ .@r = getrefine(); bonus bBaseAtk,4*.@r; bonus2 bSkillAtk,"MO_CHAINCOMBO",30; if (.@r >= 9) { bonus2 bSkillAtk,"MO_COMBOFINISH",50; bonus2 bSkillAtk,"CH_CHAINCRUSH",50; } if (.@r >= 11) bonus2 bSkillAtk,"CH_CHAINCRUSH",30; },{},{} -1866,Dedicated_Bandage,Dedicated Bandage,5,20,,800,220,,1,2,0x00008000,56,2,2,4,170,1,12,{ .@r = getrefine(); bonus bBaseAtk,4*.@r; bonus bLongAtkRate,10; if (.@r >= 9) bonus2 bSkillAtk,"SR_KNUCKLEARROW",40; if (.@r >= 11) bonus bDelayrate,-7; },{},{} -//=================================================================== -// Instruments -//=================================================================== -1900,Violin_of_Vicious_Mind,Violin of Vicious Mind,5,20,,1300,130:50,,1,1,0x00080000,63,1,2,4,160,1,13,{ bonus bAtk,pow(min(getrefine(),15),2); bonus bMatk,pow(min(getrefine(),15),2)/2; },{},{} -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,{},{},{} -1904,Mandolin_,Mandolin,5,18000,,400,90,,1,3,0x00080000,63,1,2,2,14,1,13,{},{},{} -1905,Lute,Lute,5,24500,,500,105,,1,2,0x00080000,63,1,2,2,14,1,13,{},{},{} -1906,Lute_,Lute,5,24500,,500,105,,1,3,0x00080000,63,1,2,2,14,1,13,{},{},{} -1907,Guitar,Guitar,5,47000,,900,142,,1,0,0x00080000,63,1,2,3,27,1,13,{},{},{} -1908,Guitar_,Guitar,5,47000,,900,142,,1,1,0x00080000,63,1,2,3,27,1,13,{},{},{} -1909,Harp,Harp,5,62000,,900,114,,1,1,0x00080000,63,1,2,3,27,1,13,{ bonus bInt,2; },{},{} -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; },{},{} -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; },{},{} -1917,Guitar_Of_Gentle_Breeze,Gentle Breeze Guitar,5,20,,900,110,,1,0,0x00080000,63,1,2,3,27,1,13,{ bonus bAtkEle,Ele_Wind; },{},{} -1918,Oriental_Lute,Oriental Lute,5,20,,1200,150,,1,0,0x00080000,63,1,2,4,65,1,13,{ bonus2 bSkillAtk,"CG_ARROWVULCAN",10; bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10; },{},{} -1919,Base_Guitar,Bass Guitar,5,20,,1500,130,,1,1,0x00080000,18,1,2,3,70,1,13,{ bonus bSPGainValue,3; bonus4 bAutoSpellWhenHit,"WZ_HEAVENDRIVE",3,30,1; bonus3 bAutoSpell,"NPC_WIDECONFUSE",2,100; },{},{} -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_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; },{},{} -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_Human,95; bonus2 bSkillAtk,"CG_ARROWVULCAN",20; bonus bUnbreakableWeapon; },{},{} -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; 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_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,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_String_Inst1,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_Human,40; bonus2 bAddEff,Eff_Poison,3000; },{},{} -1933,Thanos_Violin,Thanos Violin,5,10,,2000,200:130,,1,1,0x00080000,56,1,2,4,120,1,13,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus bLongAtkRate,20; bonus2 bHPLossRate,100,10000; },{},{ heal -1000,0; } -1934,Contabass,Contrabass,5,20,,250,180:120,,1,2,0x00080000,63,1,2,3,130,1,13,{ bonus2 bSkillCooldown,"WM_RANDOMIZESPELL",-20; },{},{} -1935,Ukulele_Of_Newoz,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,Ru_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,56,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; },{},{} -1941,Unity_Violin,Unity Violin,5,20,,400,76,,2,1,0x00080000,63,1,2,3,1,1,13,{ bonus bBaseAtk,pow(getrefine(),2)*125/100; },{},{} -1942,Requiem_Violin,Requiem Violin,5,20,,500,160:120,,1,,0x00080000,63,1,2,4,100,1,13,{ .@r = getrefine(); .@b = 40; bonus bUnbreakableWeapon; if(.@r>=5){ .@b += (.@r-5)*15+20; } if(.@r>=7) bonus2 bSkillAtk,"CG_ARROWVULCAN",200; bonus2 bAddRace2,RC2_BioLab,.@b; },{},{} -1944,Hippie_Guitar,Hippie Guitar,5,0,,1000,140,,2,2,0x00080000,56,1,2,3,100,1,13,{ .@r = getrefine(); .@lvl = getskilllv("BA_MUSICALLESSON"); bonus bAspdRate,.@lvl; if (.@r>=7) bonus bBaseAtk,(5*.@lvl); if (.@r>=9) bonus bAspd,1; },{},{} -//=================================================================== -// 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,{},{},{} -1953,Line_,Whip,5,12000,,300,80,,2,3,0x00080000,63,0,2,2,16,1,14,{},{},{} -1954,Wire,Wire Whip,5,17500,,1000,95,,2,2,0x00080000,63,0,2,2,16,1,14,{},{},{} -1955,Wire_,Wire Whip,5,17500,,1000,95,,2,3,0x00080000,63,0,2,2,16,1,14,{},{},{} -1956,Rante,Rante Whip,5,32000,,900,135,,2,0,0x00080000,63,0,2,3,30,1,14,{},{},{} -1957,Rante_,Rante Whip,5,32000,,900,135,,2,1,0x00080000,63,0,2,3,30,1,14,{},{},{} -1958,Tail,Tail Whip,5,41000,,700,105,,2,1,0x00080000,63,0,2,3,30,1,14,{ bonus bLuk,3; },{},{} -1959,Tail_,Tail Whip,5,41000,,700,105,,2,2,0x00080000,63,0,2,3,30,1,14,{ bonus bLuk,3; },{},{} -1960,Whip,Whip,5,38000,,700,120,,2,1,0x00080000,63,0,2,3,30,1,14,{},{},{} -1961,Whip_,Whip,5,38000,,700,120,,2,2,0x00080000,63,0,2,3,30,1,14,{},{},{} -1962,Lariat,Lariat Whip,5,20,,400,100,,2,0,0x00080000,63,0,2,4,44,1,14,{ bonus bDex,5; bonus bAgi,1; },{},{} -1963,Rapture_Rose,Rapture Rose,5,20,,300,115,,2,0,0x00080000,63,0,2,4,44,1,14,{ bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,5000; },{},{} -1964,Chemeti,Chemeti Whip,5,20,,700,135,,2,0,0x00080000,63,0,2,4,44,1,14,{ bonus bCritical,5; bonus bFlee,10; bonus bFlee2,2; },{},{} -1965,Whip_Of_Red_Flame,Red Flame Whip,5,20,,700,110,,2,0,0x00080000,63,0,2,3,30,1,14,{ bonus bAtkEle,Ele_Fire; },{},{} -1966,Whip_Of_Ice_Piece,Icicle Whip,5,20,,700,110,,2,0,0x00080000,63,0,2,3,30,1,14,{ bonus bAtkEle,Ele_Water; },{},{} -1967,Whip_Of_Earth,Gaia Whip,5,20,,700,110,,2,0,0x00080000,63,0,2,3,30,1,14,{ bonus bAtkEle,Ele_Earth; },{},{} -1968,Jump_Rope,Skipping Rope,5,20,,400,120,,2,0,0x00080000,63,0,2,3,30,1,14,{ bonus bCritical,20; },{},{} -1969,Bladed_Whip,Blade Whip,5,20,,1200,140,,2,0,0x00080000,63,0,2,4,30,1,14,{ bonus2 bAddEff,Eff_Bleeding,300; },{},{} -1970,Queen's_Whip,Queen's Whip,5,20,,1100,150,,2,0,0x00080000,63,0,2,4,65,1,14,{ bonus2 bSkillAtk,"CG_ARROWVULCAN",10; bonus2 bSkillAtk,"DC_THROWARROW",10; },{},{} -1971,Electric_Wire,Electric Wire,5,20,,700,110,,2,0,0x00080000,63,0,2,3,30,1,14,{ bonus bAtkEle,Ele_Wind; },{},{} -1972,Electric_Eel,Electric Eel,5,20,,2000,100,,2,2,0x00080000,18,0,2,4,70,1,14,{ bonus bAtkEle,Ele_Wind; bonus bInt,2; bonus bAgi,2; bonus3 bAutoSpell,"WZ_JUPITEL",3,20; .@r = getrefine(); if(.@r>0) bonus3 bAutoSpell,"CG_ARROWVULCAN",.@r,50; },{},{} -1973,Sea_Witch_Foot,Sea Witch's Foot,5,20,,1500,110,,2,1,0x00080000,18,0,2,4,70,1,14,{ bonus bSPGainValue,5; bonus4 bAutoSpellWhenHit,"WZ_FROSTNOVA",3,50,1; bonus3 bAutoSpell,"NPC_WIDESILENCE",2,100; },{},{} -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",min(.@r,10),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_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; },{},{} -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_Human,95; bonus2 bSkillAtk,"CG_ARROWVULCAN",20; bonus bUnbreakableWeapon; },{},{} -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_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,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_Human,40; bonus2 bAddEff,Eff_Blind,3000; },{},{} -1988,Thanos_Whip,Thanos Whip,5,10,,2200,200:130,,2,1,0x00080000,56,0,2,4,120,1,14,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus bLongAtkRate,20; bonus2 bHPLossRate,100,10000; },{},{ heal -1000,0; } -1989,Gymnastics_Ribbon,Rhythmic Gymnastics Ribbon,5,20,,300,150:120,,2,2,0x00080000,63,0,2,3,130,1,14,{ bonus bAspdRate,20; },{},{} -1990,Floral_Mic_Of_Igu,Bloody Floral Decoration Microphone,5,20,,1000,160,,2,2,0x00080000,63,0,2,4,130,1,14,{ bonus2 bSkillUseSP,"CG_MOONLIT",20; },{},{} -1991,Ru_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,56,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); },{},{} -1996,Wire_of_Vicious_Mind,Wire of Vicious Mind,5,20,,1300,130:50,,2,1,0x00080000,63,,2,4,160,1,14,{ bonus bAtk,pow(min(getrefine(),15),2); bonus bMatk,pow(min(getrefine(),15),2)/2; },{},{} -1997,Unity_Whip,Unity Whip,5,20,,76,40,,2,1,0x00080000,63,0,2,3,1,1,14,{ bonus bBaseAtk,pow(getrefine(),2)*125/100; },{},{} -//=================================================================== -// 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 bFixedCastrate,"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_Human,15; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; if(.@r>5) { bonus2 bMagicAddRace,RC_DemiHuman,(min(14,.@r)-5)*2; bonus2 bMagicAddRace,RC_Player_Human,(min(14,.@r)-5)*2; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5+(min(14,.@r)-5)*2; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,5+(min(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; }"; },{},{} -2006,G_Staff_Of_Light,Staff Of Light,5,20,,1900,80:150,,1,0,0x00810204,63,2,34,4,60,1,23,{ bonus bAtkEle,Ele_Holy; bonus bInt,6; },{},{} -2007,Golden_Rod_Staff,Golden Rod Staff,5,20,,900,30:230,,1,2,0x00000200,63,2,34,4,100,1,23,{ bonus bAtkEle,Ele_Wind; bonus bInt,3; bonus2 bSkillAtk,"WZ_JUPITEL",12; },{},{} -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,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; bonus2 bMagicAddRace,RC_Player_Human,25; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; .@r = getrefine(); if(.@r>5) { bonus2 bMagicAddRace,RC_Player_Human,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; bonus bAtkEle,Ele_Holy; bonus bDex,4; bonus2 bSubRace,RC_Demon,15; bonus2 bSubRace,RC_Undead,15; },{},{} -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 = min(BaseLevel/10,12); 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_Human,20; bonus3 bAddEff,Eff_Stun,1000,ATF_MAGIC; bonus bHPRecovRate,5; bonus bSPRecovRate,5; },{},{} -2020,Jormungand,Jormungand,5,10,,3000,200:280,,,0,0x810200,63,2,34,4,1,0,23,{ bonus bInt,20; bonus3 bAddEff,Eff_Poison,3000,ATF_MAGIC; bonus2 bAddEffWhenHit,Eff_DPoison,100; bonus bUnbreakableWeapon; },{},{} -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; },{},{} -2022,Staff_Of_Geffen,Staff of Geffen,5,20,,1000,100:300,,1,1,0x00000200,18,2,34,1,150,1,23,{ bonus bInt,20; },{},{} -2023,Thanos_Rod,Thanos Two-Handed Staff,5,10,,1400,120:250,,1,1,0x00018314,56,2,34,4,120,1,23,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus bHealPower,18; bonus bMagicHPGainValue,500; bonus bMagicSPGainValue,50; bonus2 bHPLossRate,100,10000; },{},{ heal -1000,0; } -2024,Infinity_Two-handed_Stick,Infinity Two-handed Stick,5,10,,500,30:170,,,1,0x810200,56,2,34,4,100,1,23,{},{},{} -2025,Crimson_Two-Handed_Staff,Crimson Two-Handed Staff,5,20,,1000,100,,1,2,0x800200,63,2,34,3,70,1,23,{ .@r = getrefine(); bonus bInt,5; bonus bMatk,150+((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); },{},{} -2026,Staff_of_Vicious_Mind,Staff of Vicious Mind,5,20,,1000,100:200,,1,1,0x00810204,63,2,34,4,160,1,23,{ bonus bMatk,pow(min(getrefine(),15),2); bonus bInt,6; bonus bUnbreakableWeapon; },{},{} -2027,Sunflower_Kid,Sunflower Kid,5,10,,1500,150:320,,,2,0x00000200,56,2,34,4,170,1,23,{ bonus bInt,5; .@r = getrefine(); bonus bMatkRate,(.@r/2); bonus bDelayrate,(.@r*-1); bonus bUnbreakableWeapon; },{},{} -2030,Unity_Two-Handed_Staff,Unity Two-Handed Staff,5,20,,500,95:135,,1,1,0x800200,63,2,34,3,1,1,23,{ bonus bMatk,pow(getrefine(),2)*125/100; },{},{} -2032,Requiem_Wizardry_Staff,Requiem Wizardry Staff,5,20,,500,100:230,,1,,0xFFFFFFFF,63,2,2,4,100,1,10,{ .@r = getrefine(); .@b = 40; .@c = 5; if(.@r>=5){ .@b += (.@r-5)*15+20; .@c += .@r-5; } bonus2 bMagicAddRace2,RC2_BioLab,.@b; bonus2 bSubRace2,RC2_BioLab,.@c; bonus2 bIgnoreMdefRace2Rate,RC2_BioLab,(.@r-5)*10; },{},{} -2039,Illusion_Wizardry_Staff,Illusion Wizardry Staff,5,0,,2400,150:250,,1,2,0x00810204,58,2,34,4,100,1,23,{ .@val = min(getrefine(),10)/2; bonus bInt,(6+.@val); bonus bDex,(2+.@val); },{},{} -2046,Novice_Warlock's_Staff,Novice Warlock's Staff,,0,,,70:170,,1,1,0x00000200,56,2,34,3,100,1,23,{ bonus bMatkRate,5; .@r = getrefine(); if(.@r>=7){ bonus2 bSkillAtk,"WL_CRIMSONROCK",15; } },{},{} -2048,Aeon_Staff,Aeon Staff,5,0,,800,100:200,,1,2,0x00000200,56,2,34,4,100,1,23,{ bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus2 bSkillAtk,"WL_EARTHSTRAIN",12*(.@r/3); if(.@r>=9){ bonus bVariableCastrate,-10; } if (.@r>=11) { bonus2 bSkillCooldown,"WL_EARTHSTRAIN",-1000; } },{},{} -2049,Blue_Flame_Cane,Blue Flame Cane,5,20,,800,110:300,,1,2,0x00818314,63,2,34,4,175,1,23,{ .@r = getrefine; bonus bInt,7; bonus bMatkRate,.@r/2; bonus bUnbreakableWeapon; if (.@r>=9) .@val = 15; else if (.@r>=7) .@val = 5; if (.@r>=11) bonus2 bSubSize,Size_All,20; if (.@r>=13) bonus bDelayrate,-15; bonus2 bMagicAtkEle,Ele_Fire,.@val; bonus2 bMagicAtkEle,Ele_Earth,.@val; bonus2 bMagicAtkEle,Ele_Water,.@val; bonus2 bMagicAtkEle,Ele_Holy,.@val; },{},{} -2051,Illusion_Survivor's_Staff,Illusion Survivor's Staff,5,0,,1200,100:240,,1,2,0x00818314,63,2,34,4,120,1,23,{ .@r = getrefine(); bonus bDex,2; bonus bInt,2; bonus bMaxHP,600; bonus bUnbreakableWeapon; bonus bMatkRate,(.@r/2); if (.@r >= 7) { bonus2 bMagicAddSize,Size_Small,15; bonus2 bMagicAddSize,Size_Medium,15; if (.@r >= 9) { bonus2 bSubSize,Size_Small,15; bonus2 bSubSize,Size_Medium,15; if (.@r >= 11) { bonus2 bSubDefEle,Ele_Water,15; bonus2 bSubDefEle,Ele_Wind,15; bonus2 bSubDefEle,Ele_Earth,15; bonus2 bSubDefEle,Ele_Fire,15; } } } },{},{} -2053,Abyss_Staff,Abyss Staff,5,0,,2400,120:270,,1,1,0x00000301,58,2,34,4,165,1,23,{ bonus2 bSubRace,RC_Player_Human,30; .@r = getrefine(); bonus bHealPower,.@r*2; if(.@r>=7){ bonus2 bMagicAddClass,Class_All,5; bonus2 bSubRace,RC_Player_Human,5; } if(.@r>=9){ bonus2 bMagicAddClass,Class_All,5; bonus2 bSubRace,RC_Player_Human,5; } bonus bUnbreakableWeapon; },{},{} -2054,Sealed_Aeon_Staff,Sealed Aeon Staff,5,0,,0,100:200,,1,2,0x00000200,56,2,34,4,99,1,23,{ bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus2 bSkillAtk,"WL_EARTHSTRAIN",12*(.@r/3); if(.@r>=7){ bonus bVariableCastrate,-10; } if(.@r>=9){ bonus2 bSkillCooldown,"WL_EARTHSTRAIN",-1000; } },{},{} -2055,Staff_of_Miracle,Staff of Miracle,5,20,,1200,100:270,,1,2,0x00000200,56,2,34,4,170,1,23,{ .@r = getrefine(); bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Ghost,5; if (.@r >= 9) { bonus2 bSkillAtk,"MG_SOULSTRIKE",20; bonus2 bSkillAtk,"HW_NAPALMVULCAN",20; bonus2 bSkillAtk,"WL_SOULEXPANSION",20; } if (.@r >= 11) { bonus2 bSkillAtk,"MG_SOULSTRIKE",30; bonus2 bSkillAtk,"HW_NAPALMVULCAN",30; } },{},{} -2056,Gravitation_Staff,Gravitation Staff,5,20,,1300,110:280,,1,2,0x00000200,56,2,34,4,170,1,23,{ .@r = getrefine(); bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Neutral,5; if (.@r >= 9) { bonus2 bSkillAtk,"HW_GRAVITATION",30; bonus2 bSkillAtk,"WL_DRAINLIFE",30; } if (.@r >= 11) { bonus2 bSkillCooldown,"HW_GRAVITATION",-2000; } },{},{} -2057,Adorare_Staff,Adorare Staff,5,20,,1200,100:240,,1,2,0x00000100,56,2,34,4,170,1,23,{ .@r = getrefine(); bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Holy,5; if (.@r >= 9) { bonus2 bSkillAtk,"AB_ADORAMUS",30; } if (.@r >= 11) { bonus2 bSubSize,Size_All,25; } },{},{} -2058,Detecting_Staff,Detecting Staff,5,0,,2000,180:330,,1,2,0x00000100,56,2,34,4,170,1,23,{ .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,10; if (.@r >= 7) { bonus bMatk,60; bonus bVariableCastrate,-10; } if (.@r >= 9) { bonus2 bMagicAtkEle,Ele_Fire,15; autobonus "{ bonus2 bMagicAddSize,Size_All,20; }",10,10000,BF_MAGIC; } if (.@r >= 11) { bonus bDelayrate,-20; } },{},{} -2060,Royal_Magician_Staff,Royal Magician Staff,5,0,,1500,100:270,,1,2,0x00000100,56,2,34,4,170,1,23,{ .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,5; bonus bMatk,5*.@r; if (.@r >= 9) { bonus2 bSkillAtk,"WL_CHAINLIGHTNING",20; bonus2 bSkillAtk,"WL_EARTHSTRAIN",20; } if (.@r >= 11) { bonus2 bMagicAddRace,RC_Undead,20; bonus2 bMagicAddRace,RC_Angel,20; } },{},{} -//=================================================================== -// Shields -//=================================================================== -2101,Guard,Guard,4,500,,300,,20,,0,0xFFFFFFFF,63,2,32,,0,1,1,{},{},{} -2102,Guard_,Guard,4,500,,300,,20,,1,0xFFFFFFFF,63,2,32,,0,1,1,{},{},{} -2103,Buckler,Buckler,4,14000,,600,,40,,0,0x000ED5F2,63,2,32,,0,1,2,{},{},{} -2104,Buckler_,Buckler,4,14000,,600,,40,,1,0x000ED5F2,63,2,32,,0,1,2,{},{},{} -2105,Shield,Shield,4,56000,,1300,,60,,0,0x00004082,63,2,32,,0,1,3,{},{},{} -2106,Shield_,Shield,4,56000,,1300,,60,,1,0x00004082,63,2,32,,0,1,3,{},{},{} -2107,Mirror_Shield,Mirror Shield,4,60000,,1000,,45,,0,0x00404082,63,2,32,,0,1,4,{ bonus bMdef,5; },{},{} -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; },{},{} -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; },{},{} -2115,Valkyrja's_Shield,Valkyrja's Shield,4,30000,,500,,80,,1,0xFFFFFFFE,63,2,32,,65,1,4,{ bonus2 bSubEle,Ele_Water,20; bonus2 bSubEle,Ele_Fire,20; bonus2 bSubEle,Ele_Dark,20; bonus2 bSubEle,Ele_Undead,20; bonus bMdef,5; },{},{} -2116,Angel's_Safeguard,Angelic Guard,4,10000,,400,,30,,1,0x00000001,63,2,32,,20,1,1,{ bonus2 bSubRace,RC_Demon,5; },{},{} -2117,Arm_Guard,Arm Guard,4,10000,,150,,50,,0,0x02000000,63,2,32,,20,1,1,{},{},{} -2118,Arm_Guard_,Arm Guard,4,10000,,150,,50,,1,0x02000000,63,2,32,,20,1,1,{},{},{} -2119,Improved_Arm_Guard,Advanced Arm Guard,4,40000,,150,,45,,0,0x02000000,63,2,32,,50,1,1,{ bonus bMdef,5; },{},{} -2120,Improved_Arm_Guard_,Advanced Arm Guard,4,40000,,150,,45,,1,0x02000000,63,2,32,,50,1,1,{ bonus bMdef,5; },{},{} -2121,Memorize_Book_,Memory Book,4,20,,1000,,25,,1,0x00810204,63,2,32,,0,1,5,{ bonus bInt,1; bonus bMdef,2; },{},{} -2122,Platinum_Shield,Platinum Shield,4,20,,1200,,95,,0,0xFFFFFFFE,18,2,32,,68,1,4,{ bonus bMdef,5; bonus2 bSubSize,Size_Medium,15; bonus2 bSubSize,Size_Large,15; bonus2 bSubRace,RC_Undead,10; bonus5 bAutoSpellWhenHit,"NPC_MAGICMIRROR",7,150,BF_MAGIC,0; },{},{} -2123,Orleans_Server,Orleans's Server,4,20,,1000,,75,,1,0xFFFFFFFE,18,2,32,,55,1,4,{ bonus bMdef,2; bonus bMagicDamageReturn,5; },{},{} -2124,Thorny_Buckler,Thorny Buckler,4,20,,1000,,85,,1,0xFFFFFFFE,18,2,32,,55,1,2,{ bonus bMdef,2; },{},{} -2125,Strong_Shield,Strong Shield,4,20,,2500,,90,,1,0x000654E2,18,2,32,,75,1,4,{ bonus bNoKnockback; 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; },{},{} -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,63,2,32,,70,1,5,{ bonus bMdef,3; bonus bInt,2; bonus2 bAddEffWhenHit,Eff_Stun,1000; },{},{} -2132,Shelter_Resistance,Shell Of Resistance,4,20,,0,,9,,0,0xFFFFFFFF,63,2,32,,0,0,2,{ bonus2 bSubEle,Ele_All,20; bonus bShortWeaponDamageReturn,1; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bAllStats,1; } },{},{} -2133,Tournament_Shield,Tournament Shield,4,20,,1000,,105,,1,0x00004082,18,2,32,,50,1,4,{ bonus2 bAddClass,Class_All,1; if( Class == Job_Lord_Knight ) bonus bAspdRate,-5; },{},{} -2134,Shield_Of_Naga,Shield of Naga,4,20,,500,,35,,1,0x00CFFF80,18,2,32,,70,1,2,{ .@r = getrefine(); bonus bMdef,3; if(.@r<11) { autobonus2 "{ bonus bShortWeaponDamageReturn,("+.@r+"*3); }",10,5000,BF_WEAPON,"{ specialeffect2 EF_GUARD; }"; } else { autobonus2 "{ bonus bShortWeaponDamageReturn,("+.@r+"*3); }",10,5000+(.@r/2*1000),BF_WEAPON,"{ specialeffect2 EF_GUARD; }"; } },{},{} -2135,Shadow_Guard,Shadow Guard,4,20,,800,,52,,1,0x00020000,18,2,32,,70,1,2,{},{},{} -2136,Cracked_Buckler,Cracked Buckler,4,0,,0,,5,,0,0xFFFFFFFF,63,2,32,,0,0,2,{ bonus bAgi,2; bonus2 bSubEle,Ele_Neutral,10; bonus3 bAutoSpellWhenHit,"PR_KYRIE",10,10; bonus bMdef,1; },{},{} -2137,Valkyrja's_Shield_C,Neo Valkyrja's Shield,4,0,,0,,5,,0,0xFFFFFFFE,18,2,32,,95,0,4,{ bonus2 bSubEle,Ele_Water,20; bonus2 bSubEle,Ele_Fire,20; bonus2 bSubEle,Ele_Dark,20; bonus2 bSubEle,Ele_Undead,20; bonus bMdef,5; },{},{} -2138,Bradium_Shield,Bradium Shield,4,20,,1800,,98,,1,0x00CFFF80,18,2,32,,65,1,3,{ bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",60; bonus bAgi,-1; bonus bMaxHP,500; },{},{} -2139,Flame_Thrower,Flame Thrower,4,20000,,2000,,60,,0,0x00000400,63,2,32,,99,0,1,{},{},{} -2140,Energy_Rune_Guard,Energy Rune Guard,4,20,,0,,70,,1,0x00000080,63,2,32,,99,1,4,{ bonus bMaxSPrate,2; },{},{} -2141,Freyja_SShield7,Freyja Spirit Shield,4,0,,300,,5,,0,0xFFFFFFFF,63,2,32,,20,0,1,{ bonus2 bSubSize,Size_Medium,25; },{},{} -2142,Freyja_SShield30,Freyja Spirit Shield,4,0,,300,,5,,0,0xFFFFFFFF,63,2,32,,20,0,1,{ bonus2 bSubSize,Size_Medium,25; },{},{} -2143,Freyja_SShield60,Freyja Spirit Shield,4,0,,300,,5,,0,0xFFFFFFFF,63,2,32,,20,0,1,{ bonus2 bSubSize,Size_Medium,25; },{},{} -2144,Freyja_SShield90,Freyja Spirit Shield,4,0,,300,,5,,0,0xFFFFFFFF,63,2,32,,20,0,1,{ bonus2 bSubSize,Size_Medium,25; },{},{} -2145,Time_Keepr_Shield,Time Keeper Shield,4,30000,,0,,20,,0,0xFFFFFFFF,63,2,32,,0,1,3,{ bonus bMdef,1; bonus2 bSubEle,Ele_Neutral,10; bonus2 bSubSize,Size_Medium,25; },{},{} -2146,Siver_Guard,Silver Guard,4,12500,,300,,60,,1,0xFFFFFFFF,63,2,32,,22,1,1,{},{},{} -2147,Round_Buckler,Round Buckleer,4,24000,,600,,90,,1,0xFFFFFFFE,18,2,32,,22,1,2,{},{},{} -2148,Rotha_Shield,Rosa Shield,4,56000,,1300,,130,,1,0x00004082,63,2,32,,100,1,3,{},{},{} -2149,Upg_Guard,Upg Guard,4,20,,150,,25,,1,0xFFFFFFFF,63,2,32,,1,1,1,{ bonus bMaxHPrate,3; },{},{} -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_Human,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; 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,{ bonus bMdef,2; skill "ALL_ODINS_POWER",1; },{},{} -2157,Insecticide,Pesticide,4,20,,100,,0,,0,0xFFFFFFFF,63,2,32,,0,1,3,{ bonus2 bAddRace,RC_Insect,10; },{},{} -2158,Ramor_Shield_Undead,Ramor Shield,4,20,,1300,,50,,1,0xFFFFFFFF,63,2,32,,65,1,3,{ bonus2 bSubDefEle,Ele_Undead,5; bonus2 bMagicSubDefEle,Ele_Undead,5; bonus2 bSubRace,RC_DemiHuman,5; },{},{} -2159,Sharel_Shield,Sharel Shield,4,20,,1300,,50,,1,0xFFFFFFFF,63,2,32,,65,1,3,{ bonus2 bSubDefEle,Ele_Fire,5; bonus2 bMagicSubDefEle,Ele_Fire,5; bonus2 bSubRace,RC_Demon,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,Flow Shield,4,20,,1300,,50,,1,0xFFFFFFFF,63,2,32,,65,1,3,{ bonus2 bSubDefEle,Ele_Water,5; bonus2 bMagicSubDefEle,Ele_Water,5; bonus2 bSubRace,RC_Brute,-5; },{},{} -2164,Sombre_Shield,Sombre Shield,4,20,,1300,,50,,1,0xFFFFFFFF,63,2,32,,65,1,3,{ bonus2 bSubDefEle,Ele_Dark,5; bonus2 bMagicSubDefEle,Ele_Dark,5; bonus2 bSubRace,RC_Undead,-5; },{},{} -2165,Sol_Shield,Sol Shield,4,20,,1300,,50,,1,0xFFFFFFFF,63,2,32,,65,1,3,{ bonus2 bSubDefEle,Ele_Earth,5; bonus2 bMagicSubDefEle,Ele_Earth,5; bonus2 bSubRace,RC_Plant,-5; },{},{} -2166,Exorcism_Bible_,Devil's Bible Drive,4,20,,600,,80,,1,0x00008100,63,2,32,,50,1,5,{ bonus bHPrecovRate,3; bonus bSPrecovRate,3; bonus bInt,1; },{},{} -2167,Poison_Shield,Poison Shield,4,20,,1300,,50,,1,0xFFFFFFFF,63,2,32,,65,1,3,{ bonus2 bSubDefEle,Ele_Poison,5; bonus2 bMagicSubDefEle,Ele_Poison,5; bonus2 bSubRace,RC_Plant,-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,min(.@r,12)-4; if(.@r>6) bonus2 bSubEle,Ele_Neutral,5; if(.@r>8) { bonus2 bSubEle,Ele_Fire,5; bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Wind,5; bonus2 bSubEle,Ele_Earth,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; },{},{} -2172,Wolf_Armguard,Wolf Wrist Guard,4,45000,,250,,70,,1,0x02000000,63,2,32,,100,1,1,{ autobonus "{ bonus bBaseAtk,100; bonus bFlee,-50; }",20,5000,BF_WEAPON,"{ specialeffect2 EF_TEIHIT1; }"; },{},{} -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,{ bonus2 bSubDefEle,Ele_Holy,5; bonus2 bMagicSubDefEle,Ele_Holy,5; bonus2 bSubRace,RC_Dragon,-5; },{},{} -2175,Esprit_Shield,Spirit Shield,4,20,,1300,,50,,1,0xFFFFFFFF,63,2,32,,65,1,3,{ bonus2 bSubDefEle,Ele_Ghost,5; bonus2 bMagicSubDefEle,Ele_Ghost,5; bonus2 bSubRace,RC_Angel,-5; },{},{} -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 bSubClass,Class_Normal,-10; },{},{} -2178,TE_Woe_Buckler,TE Woe Buckler,4,0,,0,,15,,0,0xFFFFFFFF,63,2,32,,40,1,2,{ bonus bMdef,15; bonus bMaxHP,100; bonus bMaxSP,100; bonus2 bSubRace,RC_Player_Human,15; },{},{} -2179,TE_Woe_Shield,TE Woe Shield,4,0,,0,,25,,0,0x000444A2,63,2,32,,40,1,3,{ bonus bMdef,5; bonus bMaxHP,200; bonus2 bSubRace,RC_Player_Human,20; },{},{} -2180,TE_Woe_Magic_Guard,TE Woe Magic Guard,4,0,,0,,5,,0,0x00818315,63,2,32,,40,1,1,{ bonus bMdef,25; bonus bMaxSP,200; bonus2 bSubRace,RC_Player_Human,10; },{},{} -2181,Hervor,Hervor,4,10,,1500,,100,,0,0xFFFFFFFF,63,2,32,,1,,2,{ bonus bMdef,5; bonus2 bSubRace,RC_All,30; bonus bUnbreakableShield; },{},{} -2182,Hervor_Alvitr,Hervor Alvitr,4,0,,3000,,150,,0,0x000FDF80,56,2,32,,100,0,2,{ bonus bMdef,10; bonus bVit,20; bonus2 bSubRace,RC_All,30; bonus bUnbreakableShield; 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_Reflector,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,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,Shield_Of_Gray,Shield of Gray,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_J,Svalinn,4,10,,500,,80,,1,0xFFFFFFFF,63,2,32,,65,1,3,{ .@r = getrefine(); bonus2 bSubEle,Ele_Water,10; bonus bMaxHPrate,1*(.@r/3); bonus2 bSubEle,Ele_Water,5*(.@r/3); bonus bMdef,5; },{},{} -2189,Mad_Bunny,Mad Bunny Shield,4,10,,100,,40,,1,0xFFFFFFFF,63,2,32,,30,1,6,{ bonus2 bSubEle,Ele_All,5; bonus bMdef,6; bonus bDex,1; },{},{} -2190,Ancient_Shield_Of_Aeon,Ancient Shield Of Aeon,4,0,,200,,5,,0,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; },{},{} -2195,Lian_Shield,Lian Shield,4,0,,1300,,50,,1,0xFFFFFFFF,63,2,32,,65,1,3,{ bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubRace,RC_Formless,-5; },{},{} -2196,White_Gold_Shield,White Gold Shield,4,0,,1800,,140,,1,0xFFFFFFFF,63,2,32,,100,1,4,{ autobonus2 "{ bonus bMagicDamageReturn,20; }",200,2000,BF_MAGIC; bonus bUnbreakableShield; },{},{} -2198,Lapine_Shield,Lapine Shield,4,0,,1000,,25,,1,0xFFFFFFFF,63,2,32,,100,1,3,{ 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,1,{ bonus bAllStats,50; bonus bMdef,99; bonus bShortWeaponDamageReturn,100; bonus2 bSubRace,RC_DemiHuman,95; bonus2 bSubRace,RC_Player_Human,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; bonus bDelayRate,-20; bonus bSpeedRate,25; bonus bIntravision; bonus bNoWalkDelay; },{},{} -//=================================================================== -// Headgears -//=================================================================== -2201,Sunglasses,Sunglasses,4,5000,,100,,0,,0,0xFFFFFFFF,63,2,512,,0,0,12,{ bonus2 bResEff,Eff_Blind,500; },{},{} -2202,Sunglasses_,Sunglasses,4,5000,,100,,0,,1,0xFFFFFFFF,63,2,512,,0,0,12,{ bonus2 bResEff,Eff_Blind,500; },{},{} -2203,Glasses,Glasses,4,4000,,100,,0,,0,0xFFFFFFFF,63,2,512,,0,0,3,{},{},{} -2204,Glasses_,Glasses,4,4000,,100,,0,,1,0xFFFFFFFF,63,2,512,,0,0,3,{},{},{} -2205,Diver's_Goggles,Diver Goggles,4,3500,,100,,0,,0,0xFFFFFFFF,63,2,512,,0,0,10,{},{},{} -2206,Wedding_Veil,Wedding Veil,4,23000,,100,,0,,0,0xFFFFFFFF,63,0,256,,0,1,44,{ bonus bMdef,5; },{},{} -2207,Fancy_Flower,Fancy Flower,4,20,,100,,0,,0,0xFFFFFFFF,63,2,256,,0,0,4,{ bonus2 bSubRace,RC_Plant,10; },{},{} -2208,Ribbon,Ribbon,4,800,,100,,1,,0,0xFFFFFFFF,63,0,256,,0,1,17,{ bonus bMdef,3; },{},{} -2209,Ribbon_,Ribbon,4,800,,100,,1,,1,0xFFFFFFFF,63,0,256,,0,1,17,{ bonus bMdef,3; },{},{} -2210,Hair_Band,Hair Band,4,500,,100,,1,,0,0xFFFFFFFF,63,2,256,,0,0,9,{},{},{} -2211,Bandana,Bandana,4,400,,100,,1,,0,0xFFFFFFFF,63,2,256,,0,1,6,{},{},{} -2212,Eye_Bandage,Eye Patch,4,1000,,100,,0,,0,0xFFFFFFFF,63,2,512,,0,0,13,{},{},{} -2213,Cat_Hairband,Kitty Band,4,20,,100,,2,,0,0xFFFFFFFF,63,2,256,,0,1,2,{},{},{} -2214,Bunny_Band,Bunny Band,4,20,,100,,2,,0,0xFFFFFFFF,63,2,256,,0,1,15,{ bonus bLuk,2; },{},{} -2215,Flower_Hairband,Flower Band,4,20,,100,,2,,0,0xFFFFFFFF,63,2,256,,0,1,5,{},{},{} -2216,Biretta,Biretta,4,9000,,100,,8,,0,0x00008110,63,2,256,,0,1,11,{},{},{} -2217,Biretta_,Biretta,4,9000,,100,,8,,1,0x00008110,63,2,256,,0,1,11,{},{},{} -2218,Flu_Mask,Flu Mask,4,300,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,8,{ bonus2 bResEff,Eff_Silence,1000; },{},{} -2219,Flu_Mask_,Flu Mask,4,300,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,8,{ bonus2 bResEff,Eff_Silence,1000; },{},{} -2220,Hat,Hat,4,1000,,200,,2,,0,0xFFFFFFFF,63,2,256,,0,1,16,{},{},{} -2221,Hat_,Hat,4,1000,,200,,2,,1,0xFFFFFFFF,63,2,256,,0,1,16,{},{},{} -2222,Turban,Turban,4,4500,,300,,3,,0,0xFFFFFFFE,63,2,256,,0,1,7,{},{},{} -2223,Turban_,Turban,4,4500,,300,,3,,1,0xFFFFFFFE,63,2,256,,0,1,7,{},{},{} -2224,Goggle,Goggles,4,20,,300,,5,,0,0x000E5CEA,63,2,768,,0,1,1,{},{},{} -2225,Goggle_,Goggles,4,20,,300,,5,,1,0x000E5CEA,63,2,768,,0,1,1,{},{},{} -2226,Cap,Cap,4,12000,,400,,7,,0,0x000E5CEA,63,2,256,,0,1,14,{},{},{} -2227,Cap_,Cap,4,12000,,400,,7,,1,0x000E5CEA,63,2,256,,0,1,14,{},{},{} -2228,Helm,Helm,4,44000,,600,,13,,0,0x00004082,63,2,256,,0,1,40,{},{},{} -2229,Helm_,Helm,4,44000,,600,,13,,1,0x00004082,63,2,256,,0,1,40,{},{},{} -2230,Gemmed_Sallet,Gemmed Sallet,4,50000,,500,,8,,0,0x000654E2,63,2,256,,0,1,0,{ bonus bMdef,3; },{},{} -2231,Gemmed_Sallet_,Gemmed Sallet,4,50000,,500,,8,,1,0x000654E2,63,2,256,,0,1,0,{ bonus bMdef,3; },{},{} -2232,Circlet,Circlet,4,7500,,300,,6,,0,0x00818314,63,2,256,,0,1,18,{ bonus bMdef,3; },{},{} -2233,Circlet_,Circlet,4,7500,,300,,6,,1,0x00818314,63,2,256,,0,1,18,{ bonus bMdef,3; },{},{} -2234,Tiara,Tiara,4,20,,400,,7,,0,0xFFFFFFFE,63,0,256,,45,1,19,{ bonus bInt,2; },{},{} -2235,Crown,Crown,4,20,,400,,7,,0,0xFFFFFFFE,63,1,256,,45,1,45,{ bonus bInt,2; },{},{} -2236,Santa's_Hat,Santa Hat,4,20,,100,,1,,0,0xFFFFFFFF,63,2,256,,0,1,20,{ bonus bMdef,1; bonus bLuk,1; },{},{} -2237,Weird_Goatee,Bandit Beard,4,2,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,21,{},{},{} -2238,Weird_Moustache,Moustache,4,2,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,22,{},{},{} -2239,One_Eyed_Glass,Monocle,4,10000,,100,,0,,0,0xFFFFFFFF,63,2,512,,0,0,23,{},{},{} -2240,Beard,Beard,4,2,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,24,{},{},{} -2241,Granpa_Beard,Grampa Beard,4,5000,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,25,{},{},{} -2242,Luxury_Sunglasses,Purple Glasses,4,24000,,100,,2,,0,0xFFFFFFFF,63,2,512,,0,0,26,{ bonus2 bResEff,Eff_Blind,1000; },{},{} -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; },{},{} -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; },{},{} -2250,Fillet,Cute Ribbon,4,500,,100,,2,,0,0xFFFFFFFE,63,2,256,,0,0,34,{ bonus bMaxSP,20; },{},{} -2251,Holy_Bonnet,Monk Hat,4,30000,,100,,10,,0,0x00008110,63,2,256,,0,1,35,{ bonus bMdef,3; },{},{} -2252,Star_Sparkling,Wizard Hat,4,20,,300,,7,,0,0x00810204,63,2,256,,0,1,36,{ bonus bMaxSP,100; },{},{} -2253,Sunflower,Sunflower,4,20,,100,,1,,0,0xFFFFFFFF,63,2,256,,0,0,37,{ bonus2 bSubRace,RC_Insect,10; },{},{} -2254,Angelic_Chain,Angel Wing,4,20,,100,,4,,0,0xFFFFFFFE,63,2,256,,0,1,38,{ bonus bMdef,3; bonus bAgi,1; bonus bLuk,1; bonus2 bSubRace,RC_Demon,3; },{},{} -2255,Satanic_Chain,Evil Wing,4,20,,100,,6,,0,0xFFFFFFFE,63,2,256,,0,1,39,{ bonus bMdef,2; bonus bStr,1; bonus2 bSubRace,RC_Angel,3; },{},{} -2256,Magestic_Goat,Majestic Goat,4,20,,800,,9,,0,0x006444A2,63,2,256,,0,1,41,{ bonus bStr,1; },{},{} -2257,Snowy_Horn,Unicorn Horn,4,20,,100,,4,,0,0xFFFFFFFF,63,2,256,,0,1,42,{},{},{} -2258,Sharp_Gear,Spiky Band,4,20,,1000,,12,,0,0x0066D5F2,63,2,256,,50,1,43,{},{},{} -2259,Mini_Propeller,Mini Propeller,4,20,,100,,1,,0,0xFFFFFFFF,63,2,256,,0,1,46,{},{},{} -2260,Mini_Glasses,Mini Glasses,4,28000,,100,,1,,0,0xFFFFFFFE,63,2,512,,0,0,47,{},{},{} -2261,Prontera_Army_Cap,Army Cap,4,20,,400,,8,,0,0x000654E2,63,2,256,,0,1,48,{},{},{} -2262,Pierrot_Nose,Clown Nose,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,49,{},{},{} -2263,Gangster_Patch,Zorro Masque,4,20,,100,,0,,0,0xFFFFFFFE,63,2,512,,0,0,50,{},{},{} -2264,Munak_Turban,Munak Hat,4,20,,300,,5,,0,0xFFFFFFFF,63,2,769,,0,0,51,{ bonus2 bSubRace,RC_Undead,10; },{},{} -2265,Ganster_Mask,Gangster Mask,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,52,{ bonus2 bResEff,Eff_Silence,1500; },{},{} -2266,Iron_Cane,Iron Cain,4,20,,300,,4,,0,0x00004082,63,2,1,,50,0,53,{},{},{} -2267,Cigar,Cigarette,4,20,,100,,0,,0,0xFFFFFFFE,63,2,1,,0,0,54,{ bonus2 bSubRace,RC_Insect,3; },{},{} -2268,Smoking_Pipe,Pipe,4,20,,100,,0,,0,0xFFFFFFFE,63,2,1,,0,0,55,{ bonus2 bSubRace,RC_Insect,3; },{},{} -2269,Centimental_Flower,Romantic Flower,4,20,,100,,0,,0,0xFFFFFFFE,63,2,1,,0,0,56,{ bonus2 bSubRace,RC_Plant,3; },{},{} -2270,Centimental_Leaf,Romantic Leaf,4,20,,100,,0,,0,0xFFFFFFFE,63,2,1,,0,0,57,{ bonus2 bSubRace,RC_Plant,3; },{},{} -2271,Jack_A_Dandy,Jack be Dandy,4,45000,,100,,1,,0,0xFFFFFFFE,63,2,256,,0,0,58,{},{},{} -2272,Stop_Post,Stop Post,4,20,,400,,1,,0,0xFFFFFFFF,63,2,256,,0,1,59,{},{},{} -2273,Doctor_Cap,Doctor Band,4,20,,100,,5,,0,0xFFFFFFFE,63,2,256,,0,1,60,{ bonus bInt,1; },{},{} -2274,Ghost_Bandana,Ghost Bandana,4,20,,100,,0,,0,0xFFFFFFFE,63,2,256,,0,1,61,{ bonus bAgi,2; bonus2 bSubEle,Ele_Ghost,15; },{},{} -2275,Red_Bandana,Red Bandana,4,20,,100,,4,,0,0xFFFFFFFF,63,2,256,,0,1,62,{},{},{} -2276,Eagle_Eyes,Angled Glasses,4,20,,100,,2,,0,0xFFFFFFFF,63,2,512,,0,0,63,{},{},{} -2277,Nurse_Cap,Nurse Cap,4,20,,100,,4,,0,0x00008110,63,2,256,,0,1,64,{ bonus bInt,1; },{},{} -2278,Mr_Smile,Mr. Smile,4,60,,100,,1,,0,0xFFFFFFFF,63,2,513,,0,0,65,{},{},{} -2279,Bomb_Wick,Bomb Wick,4,20,,100,,1,,0,0xFFFFFFFF,63,2,256,,0,0,66,{},{},{} -2280,Sahkkat,Sakkat,4,20,,300,,4,,0,0xFFFFFFFF,63,2,256,,0,1,67,{ bonus bAgi,1; },{},{} -2281,Phantom_Of_Opera,Opera Masque,4,20,,200,,2,,0,0xFFFFFFFE,63,2,513,,0,0,68,{},{},{} -2282,Spirit_Chain,Halo,4,20,,100,,0,,0,0xFFFFFFFF,63,2,256,,0,0,69,{ bonus2 bSubEle,Ele_Holy,15; },{},{} -2283,Ear_Mufs,Ear Muffs,4,20,,200,,4,,0,0xFFFFFFFF,63,2,256,,0,1,70,{ bonus2 bResEff,Eff_Curse,1000; },{},{} -2284,Antler,Antlers,4,20,,500,,8,,0,0xFFFFFFFE,63,2,256,,0,1,71,{},{},{} -2285,Apple_Of_Archer,Apple of Archer,4,20,,200,,1,,0,0xFFFFFFFE,63,2,256,,30,1,72,{ bonus bDex,3; },{},{} -2286,Elven_Ears,Elven Ears,4,20,,100,,0,,0,0xFFFFFFFE,63,2,512,,70,0,73,{},{},{} -2287,Pirate_Bandana,Pirate Bandana,4,20,,100,,4,,0,0xFFFFFFFE,63,2,256,,0,1,74,{ bonus bStr,1; },{},{} -2288,Mr_Scream,Mr. Scream,4,20,,100,,1,,0,0xFFFFFFFE,63,2,513,,0,0,75,{},{},{} -2289,Poo_Poo_Hat,Poo Poo Hat,4,20,,700,,0,,0,0xFFFFFFFF,63,2,256,,0,0,76,{ bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; },{},{} -2290,Funeral_Costume,Funeral Hat,4,3000,,100,,1,,0,0xFFFFFFFF,63,2,256,,0,0,77,{},{},{} -2291,Masquerade,Masquerade,4,20,,100,,0,,0,0xFFFFFFFE,63,2,512,,0,0,78,{ bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player_Human,3; },{},{} -2292,Welding_Mask,Welding Mask,4,20,,300,,2,,0,0x00040420,63,2,513,,50,0,79,{ bonus2 bSubEle,Ele_Fire,10; },{},{} -2293,Pretend_Murdered,Pretend Murdered,4,20,,100,,1,,0,0xFFFFFFFF,63,2,256,,0,0,80,{},{},{} -2294,Star_Dust,Stellar,4,20,,100,,1,,0,0xFFFFFFFF,63,2,256,,0,1,81,{},{},{} -2295,Blinker,Blinker,4,1500,,100,,0,,0,0xFFFFFFFE,63,2,512,,0,0,82,{ bonus2 bResEff,Eff_Blind,10000; },{},{} -2296,Binoculars,Binoculars,4,20,,100,,2,,0,0x00080808,63,2,512,,50,0,83,{ bonus bDex,1; },{},{} -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,{},{},{} -2302,Cotton_Shirt_,Cotton Shirt,4,10,,100,,10,,1,0xFFFFFFFF,63,2,16,,0,1,0,{},{},{} -2303,Leather_Jacket,Jacket,4,200,,200,,15,,0,0xFFFFFFFF,63,2,16,,0,1,0,{},{},{} -2304,Leather_Jacket_,Jacket,4,200,,200,,15,,1,0xFFFFFFFF,63,2,16,,0,1,0,{},{},{} -2305,Adventure_Suit,Adventurer's Suit,4,1000,,300,,20,,0,0xFFFFFFFF,63,2,16,,0,1,0,{},{},{} -2306,Adventurere's_Suit_,Adventurer's Suit,4,1000,,300,,20,,1,0xFFFFFFFF,63,2,16,,0,1,0,{},{},{} -2307,Mantle,Mantle,4,10000,,600,,37,,0,0xFFFFFFFE,63,2,16,,0,1,0,{},{},{} -2308,Mantle_,Mantle,4,10000,,600,,37,,1,0xFFFFFFFE,63,2,16,,0,1,0,{},{},{} -2309,Coat,Coat,4,22000,,1200,,42,,0,0xFFFFFFFE,63,2,16,,0,1,0,{},{},{} -2310,Coat_,Coat,4,22000,,1200,,42,,1,0xFFFFFFFE,63,2,16,,0,1,0,{},{},{} -2311,Mink_Coat,Mink Coat,4,20,,2300,,30,,1,0xFFFFFFFE,63,2,16,,30,1,0,{},{},{} -2312,Padded_Armor,Padded Armor,4,48000,,2800,,35,,0,0x000654E2,63,2,16,,0,1,0,{},{},{} -2313,Padded_Armor_,Padded Armor,4,48000,,2800,,35,,1,0x000654E2,63,2,16,,0,1,0,{},{},{} -2314,Chain_Mail,Chain Mail,4,65000,,3300,,55,,0,0x000654E2,63,2,16,,0,1,0,{},{},{} -2315,Chain_Mail_,Chain Mail,4,65000,,3300,,55,,1,0x000654E2,63,2,16,,0,1,0,{},{},{} -2316,Plate_Armor,Full Plate,4,80000,,4500,,70,,0,0x00004082,63,2,16,,40,1,0,{},{},{} -2317,Plate_Armor_,Full Plate,4,80000,,4500,,70,,1,0x00004082,63,2,16,,40,1,0,{},{},{} -2318,Clothes_Of_The_Lord,Lord's Clothes,4,20,,2500,,59,,1,0x00040420,63,2,16,,70,1,0,{ bonus bMdef,5; bonus bInt,1; },{},{} -2319,Glittering_Clothes,Glittering Jacket,4,20,,2500,,58,,1,0xFFFFFFFE,63,2,16,,60,1,0,{ bonus bMdef,5; bonus2 bAddEff,Eff_Blind,300; },{},{} -2320,Formal_Suit,Formal Suit,4,20,,300,,40,,1,0xFFFFFFFE,63,2,16,,0,1,0,{},{},{} -2321,Silk_Robe,Silk Robe,4,8000,,400,,20,,0,0x0085C7B6,63,2,16,,0,1,0,{ bonus bMdef,10; },{},{} -2322,Silk_Robe_,Silk Robe,4,8000,,400,,20,,1,0x0085C7B6,63,2,16,,0,1,0,{ bonus bMdef,10; },{},{} -2323,Scapulare,Scapulare,4,6500,,400,,24,,0,0x00008110,63,2,16,,0,1,0,{},{},{} -2324,Scapulare_,Scapulare,4,6500,,400,,24,,1,0x00008110,63,2,16,,0,1,0,{},{},{} -2325,Saint_Robe,Saint's Robe,4,54000,,600,,50,,0,0x00048530,63,2,16,,0,1,0,{ bonus bMdef,5; },{},{} -2326,Saint_Robe_,Saint's Robe,4,54000,,600,,50,,1,0x00048530,63,2,16,,0,1,0,{ bonus bMdef,5; },{},{} -2327,Holy_Robe,Holy Robe,4,20,,1700,,57,,0,0x00008110,63,2,16,,60,1,0,{ bonus bMdef,5; bonus2 bSubRace,RC_Demon,15; bonus2 bSubEle,Ele_Dark,10; },{},{} -2328,Wooden_Mail,Wooden Mail,4,5500,,1000,,25,,0,0x000444A2,63,2,16,,0,1,0,{},{},{} -2329,Wooden_Mail_,Wooden Mail,4,5500,,1000,,25,,1,0x000444A2,63,2,16,,0,1,0,{},{},{} -2330,Tights,Tights,4,71000,,500,,27,,0,0x00080808,63,2,16,,45,1,0,{ bonus bDex,1; },{},{} -2331,Tights_,Tights,4,71000,,500,,27,,1,0x00080808,63,2,16,,45,1,0,{ bonus bDex,1; },{},{} -2332,Silver_Robe,Silver Robe,4,7000,,700,,23,,0,0x00810204,63,2,16,,0,1,0,{},{},{} -2333,Silver_Robe_,Silver Robe,4,7000,,700,,23,,1,0x00810204,63,2,16,,0,1,0,{},{},{} -2334,Mage_Coat,Mage Coat,4,20,,600,,40,,0,0x00810204,63,2,16,,50,1,0,{ bonus bMdef,5; bonus bInt,1; },{},{} -2335,Thief_Clothes,Thief Clothes,4,74000,,100,,40,,0,0x02021040,63,2,16,,0,1,0,{ bonus bAgi,1; },{},{} -2336,Thief_Clothes_,Thief Clothes,4,74000,,100,,40,,1,0x02021040,63,2,16,,0,1,0,{ bonus bAgi,1; },{},{} -2337,Ninja_Suit,Ninja Suit,4,20,,1500,,58,,0,0x02021040,63,2,16,,50,1,0,{ bonus bAgi,1; bonus bMdef,3; },{},{} -2338,Wedding_Dress,Wedding Dress,4,43000,,500,,10,,0,0xFFFFFFFE,63,2,16,,0,1,0,{ bonus bMdef,15; },{},{} -2339,G_Strings,Pantie,4,1000,,100,,22,,0,0xFFFFFFFF,63,2,16,,0,1,0,{},{},{} -2340,Novice_Breast,Novice Breastplate,4,89000,,500,,4,,1,0x00000001,63,2,16,,10,1,0,{},{},{} -2341,Full_Plate_Armor,Legion Plate Armor,4,94000,,5500,,79,,0,0x00004000,63,2,16,,70,1,0,{},{},{} -2342,Full_Plate_Armor_,Legion Plate Armor,4,102500,,5500,,79,,1,0x00004000,63,2,16,,70,1,0,{},{},{} -2343,Robe_Of_Casting,Robe of Cast,4,124800,,1100,,40,,0,0x00810200,63,2,16,,75,1,0,{ bonus bVariableCastrate,-3; bonus bMdef,4; },{},{} -2344,Flame_Sprits_Armor,Lucius's Fierce Armor of Volcano,4,136000,,2200,,25,,0,0x000444A2,63,2,16,,45,1,0,{ bonus bDefEle,Ele_Fire; },{},{} -2345,Flame_Sprits_Armor_,Lucius's Fierce Armor of Volcano,4,136000,,2200,,25,,1,0xFFFFFFFE,63,2,16,,45,1,0,{ bonus bDefEle,Ele_Fire; },{},{} -2346,Water_Sprits_Armor,Saphien's Armor of Ocean,4,136000,,2200,,25,,0,0x000444A2,63,2,16,,45,1,0,{ bonus bDefEle,Ele_Water; },{},{} -2347,Water_Sprits_Armor_,Saphien's Armor of Ocean,4,136000,,2200,,25,,1,0xFFFFFFFE,63,2,16,,45,1,0,{ bonus bDefEle,Ele_Water; },{},{} -2348,Wind_Sprits_Armor,Aebecee's Raging Typhoon Armor,4,136000,,2200,,25,,0,0x000444A2,63,2,16,,45,1,0,{ bonus bDefEle,Ele_Wind; },{},{} -2349,Wind_Sprits_Armor_,Aebecee's Raging Typhoon Armor,4,136000,,2200,,25,,1,0xFFFFFFFE,63,2,16,,45,1,0,{ bonus bDefEle,Ele_Wind; },{},{} -2350,Earth_Sprits_Armor,Claytos Cracking Earth Armor,4,136000,,2200,,25,,0,0x000444A2,63,2,16,,45,1,0,{ bonus bDefEle,Ele_Earth; },{},{} -2351,Earth_Sprits_Armor_,Claytos Cracking Earth Armor,4,136000,,2200,,25,,1,0xFFFFFFFE,63,2,16,,45,1,0,{ bonus bDefEle,Ele_Earth; },{},{} -2352,Novice_Plate,Tattered Novice Ninja Suit,4,1,,1,,25,,0,0x00000001,63,2,16,,0,0,0,{},{},{} -2353,Odin's_Blessing,Odin's Blessing,4,30000,,2500,,53,,1,0xFFFFFFFE,63,2,16,,65,1,0,{},{},{} -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; 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; },{},{} -2361,Blue_Aodai,Blue Robe,4,20,,500,,0,,0,0xFFFFFFFE,63,2,16,,1,1,0,{ bonus bAllStats,3; bonus bMdef,5; },{},{} -2362,Red_Aodai,Red Robe,4,20,,500,,0,,0,0xFFFFFFFE,63,2,16,,1,1,0,{ bonus bAllStats,3; bonus bMdef,5; },{},{} -2363,White_Aodai,White Robe,4,20,,500,,0,,0,0x00000001,63,2,16,,1,1,0,{ bonus bAllStats,3; bonus bMdef,5; },{},{} -2364,Meteo_Plate_Armor,Meteo Plate Armor,4,20,,3000,,85,,1,0x000444A2,18,2,16,,55,1,0,{ bonus2 bResEff,Eff_Stun,3000; bonus2 bResEff,Eff_Freeze,3000; },{},{} -2365,Orleans_Gown,Orleans's Gown,4,20,,300,,15,,1,0xFFFFFFFE,18,2,16,,55,1,0,{ bonus bVariableCastrate,15; bonus bNoCastCancel; },{},{} -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; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,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; },{},{} -2373,Holy_Robe_,Holy Robe,4,20,,1700,,57,,1,0x00008110,63,2,16,,60,1,0,{ bonus bMdef,5; bonus2 bSubRace,RC_Demon,15; bonus2 bSubEle,Ele_Dark,10; },{},{} -2374,Diabolus_Robe,Diabolus Robe,4,20,,300,,57,,1,0x00098B1C,18,2,16,,55,1,0,{ bonus bMaxSP,150; bonus bMdef,5; bonus bHealPower,6; bonus bDelayRate,-10; },{},{} -2375,Diabolus_Armor,Diabolus Armor,4,20,,600,,79,,1,0x000654E2,18,2,16,,55,1,0,{ bonus bStr,2; bonus bDex,1; bonus bMdef,5; bonus bMaxHP,150; bonus2 bResEff,Eff_Stun,500; bonus2 bResEff,Eff_Stone,500; },{},{} -2376,Assaulter_Plate,Assaulter Plate,4,10,,0,,57,,1,0x006444A2,63,2,16,,80,1,0,{ bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; },{},{} -2377,Elite_Engineer_Armor,Elite Engineer Armor,4,10,,0,,50,,1,0x00040420,63,2,16,,80,1,0,{ bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; },{},{} -2378,Assassin_Robe,Assassin Robe,4,10,,0,,41,,1,0x02021040,63,2,16,,80,1,0,{ bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; },{},{} -2379,Warlock_Battle_Robe,Warlock's Battle Robe,4,10,,0,,36,,1,0x00810204,63,2,16,,80,1,0,{ bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; },{},{} -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_Human,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_Human,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_Human,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; bonus bNoKnockback; },{},{} -2384,Spritual_Tunic,Spiritual Tunic,4,20,,0,,10,,0,0xFFFFFFFF,63,2,16,,0,0,0,{ bonus bMdef,5; 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; },{},{} -2387,Sprint_Mail,Sprint Mail,4,20,,1000,,20,,1,0x00CFFF80,18,2,16,,70,1,0,{ bonus bVit,1; bonus bHPrecovRate,5; bonus bAddItemHealRate,3; bonus2 bSkillHeal,"AL_HEAL",3; },{},{} -2388,Kandura,Kandura,4,20,,300,,36,,1,0x00001000,18,2,16,,70,1,0,{ bonus bAgi,1; bonus bFlee,5; bonus bAspdRate,2; },{},{} -2389,Armor_Of_Naga,Armor of Naga,4,20,,1000,,45,,1,0x00CFFF80,18,2,16,,70,1,0,{ bonus bMdef,2; autobonus "{ bonus bBaseAtk,20; }",10,10000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; },{},{} -2390,Improved_Tights,Improved Tights,4,20,,400,,38,,1,0x00080808,18,2,16,,75,1,0,{ bonus bMdef,2; bonus bFlee2,3; },{},{} -2391,Life_Link,Life Link,4,20,,3500,,75,,1,0x00004082,18,2,16,,82,1,0,{ bonus bVit,2; bonus bMdef,5; bonus bHPrecovRate,50; },{},{} -2392,Old_Pant,Old Green Pantie,4,0,,0,,10,,0,0xFFFFFFFF,63,2,16,,0,0,0,{ bonus bStr,2; bonus bVit,2; bonus bMaxHP,200; bonus3 bAutoSpellWhenHit,"MO_CALLSPIRITS",5,20; bonus bMdef,1; },{},{} -2393,N_Adventurer's_Suit,Novice Adventurer's Suit,4,0,,0,,45,,1,0xFFFFFFFF,63,2,16,,0,0,0,{},{},{} -2394,Krieger_Suit1,Glorious Suit,4,20,,0,,10,,0,0xFFFFFFFE,63,2,16,,81,1,0,{ bonus bMaxHPrate,20; bonus2 bSubRace,RC_DemiHuman,7; bonus2 bSubRace,RC_Player_Human,7; },{},{} -2395,Krieger_Suit2,Glorious Popularized Suit,4,20,,0,,10,,0,0xFFFFFFFE,63,2,16,,61,1,0,{ bonus bMaxHP,600; bonus bSPrecovRate,10; },{},{} -2396,Krieger_Suit3,Glorious Mass-Production Suit,4,20,,0,,0,,0,0xFFFFFFFE,63,2,16,,0,1,0,{ bonus bMaxHP,500; },{},{} -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,{},{},{} -2402,Sandals_,Sandals,4,400,,200,,5,,1,0xFFFFFFFF,63,2,64,,0,1,0,{},{},{} -2403,Shoes,Shoes,4,3500,,400,,10,,0,0xFFFFFFFE,63,2,64,,0,1,0,{},{},{} -2404,Shoes_,Shoes,4,3500,,400,,10,,1,0xFFFFFFFE,63,2,64,,0,1,0,{},{},{} -2405,Boots,Boots,4,18000,,600,,16,,0,0x416E5CEA,63,2,64,,0,1,0,{},{},{} -2406,Boots_,Boots,4,18000,,600,,16,,1,0x416E5CEA,63,2,64,,0,1,0,{},{},{} -2407,Chrystal_Pumps,Crystal Pumps,4,20,,100,,5,,0,0xFFFFFFFE,63,0,64,,0,1,0,{ bonus bMdef,10; bonus bLuk,5; },{},{} -2408,Cuffs,Shackles,4,5000,,3000,,18,,0,0xFFFFFFFF,63,2,64,,0,1,0,{},{},{} -2409,Spiky_Heel,High Heels,4,8500,,600,,4,,0,0xFFFFFFFE,63,2,64,,0,1,0,{ bonus bMdef,5; },{},{} -2410,Sleipnir,Sleipnir,4,20,,3500,,40,,0,0xFFFFFFFF,63,2,64,,94,0,0,{ bonus bMdef,10; bonus bMaxHPrate,20; bonus bMaxSPrate,20; bonus bSPrecovRate,25; bonus bSpeedRate,25; bonus bInt,25; },{},{} -2411,Grave,Greaves,4,48000,,750,,27,,0,0x00004080,63,2,64,,65,1,0,{},{},{} -2412,Grave_,Greaves,4,54000,,750,,15,,1,0x00004080,63,2,64,,65,1,0,{},{},{} -2413,Safty_Boots,Safety Boots,4,34000,,350,,6,,0,0x00004082,63,2,64,,30,0,0,{},{},{} -2414,Novice_Boots,Novice Slippers,4,1,,1,,5,,0,0x00000001,63,2,64,,0,0,0,{},{},{} -2415,Slipper,Bunny Slipper,4,34000,,300,,3,,1,0xFFFFFFFE,63,0,64,,30,1,0,{ bonus bLuk,3; bonus bMdef,3; },{},{} -2416,Novice_Shoes,Novice Shoes,4,35000,,500,,8,,1,0x00000001,63,2,64,,40,1,0,{ bonus bMaxHPrate,5; },{},{} -2417,Fricco_Shoes,Fricco's Shoes,4,30000,,500,,12,,0,0xFFFFFFFE,63,2,64,,65,1,0,{ bonus bAgi,2; bonus2 bAddItemGroupHealRate,IG_Potion,20; },{},{} -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; 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; },{},{} -2425,Black_Leather_Boots,Black Leather Boots,4,20,,500,,16,,0,0xFFFFFFFE,18,2,64,,55,1,0,{ bonus bAgi,(getrefine()>=9?3:1); },{},{} -2426,Shadow_Walk,Shadow Walk,4,20,,2000,,0,,0,0xFFFFFFFE,18,2,64,,75,1,0,{ bonus bMdef,10; bonus5 bAutoSpellWhenHit,"AS_CLOAKING",max(2,getskilllv("AS_CLOAKING")),100,BF_MAGIC,0; },{},{} -2427,Golden_Shoes,Golden Shoes,4,20,,300,,4,,0,0xFFFFFFFF,63,2,64,,0,0,0,{ bonus bMdef,4; },{},{} -2428,Freyja_Boots,Freyja Boots,4,0,,300,,10,,0,0xFFFFFFFE,63,2,64,,0,0,0,{ bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; },{},{} -2429,Iron_Boots01,Iron Boots,4,0,,1500,,5,,0,0x000E5CEA,63,2,64,,0,1,0,{},{},{} -2430,Iron_Boots02,Iron Boots,4,0,,800,,5,,0,0xFFFFFFFF,63,2,64,,0,1,0,{},{},{} -2431,Valley_Shoes,Valley Shoes,4,20,,0,,10,,0,0xFFFFFFFF,63,2,64,,0,0,0,{ bonus bMaxHPrate,7; bonus bMaxSPrate,7; },{},{} -2432,Spiky_Heel_,High Heels,4,8500,,600,,10,,1,0xFFFFFFFE,63,2,64,,0,1,0,{ bonus bMdef,5; },{},{} -2433,Diabolus_Boots,Diabolus Boots,4,20,,250,,15,,1,0x00CFFF80,18,2,64,,0,1,0,{ bonus bMaxHP,(BaseLevel*10); },{},{} -2434,Black_Leather_Boots_,Black Leather Boots,4,20,,500,,16,,1,0xFFFFFFFE,18,2,64,,55,1,0,{ bonus bAgi,(getrefine()>=9?3:1); },{},{} -2435,Battle_Greave,Battle Greaves,4,10,,0,,15,,1,0x026654E2,63,2,64,,80,1,0,{ bonus bMaxHP,100; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; },{},{} -2436,Combat_Boots,Combat Boots,4,10,,0,,9,,1,0x00898B1C,63,2,64,,80,1,0,{ bonus bMaxHP,100; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; },{},{} -2437,Battle_Boots,Battle Boots,4,10,,0,,9,,1,0x41000000,63,2,64,,80,1,0,{ bonus bMaxHP,100; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; },{},{} -2438,Paw_Of_Cat,Paw Of Cat,4,10,,300,,0,,0,0xFFFFFFFF,63,2,64,,80,1,0,{ bonus bFlee,5; bonus bAgi,1; /* skill "ALL_CATCRY",1; */ },{},{} -2439,Refresh_Shoes,Refresh Shoes,4,20,,0,,9,,0,0xFFFFFFFF,63,2,64,,0,0,0,{ bonus bMaxHPrate,17; bonus bMaxSPrate,8; bonus2 bHPRegenRate,20,10000; bonus2 bSPRegenRate,3,10000; },{},{} -2440,Sprint_Shoes,Sprint Shoes,4,20,,300,,10,,1,0x00CFFF80,18,2,64,,70,1,0,{ bonus bAgi,1; bonus bSPrecovRate,5; },{},{} -2441,Beach_Sandal,Beach Sandals,4,20,,200,,0,,0,0xFFFFFFFF,63,2,64,,0,1,0,{ bonus bStr,1; bonus bInt,1; bonus bAgi,1; bonus2 bSubEle,Ele_Fire,10; },{},{} -2442,Boots_Perforated,Red Stocking Boots,4,0,,0,,7,,0,0xFFFFFFFF,63,2,64,,0,0,0,{ bonus bLuk,2; bonus bHPrecovRate,10; bonus bSPrecovRate,10; bonus3 bAutoSpellWhenHit,"WZ_QUAGMIRE",3,30; bonus bMdef,1; },{},{} -2443,Fish_Shoes,Fisher's Boots,4,10,,250,,0,,0,0xFFFFFFFF,63,2,64,,0,0,0,{},{},{} -2444,Krieger_Shoes1,Glorious Shoes,4,20,,0,,0,,0,0xFFFFFFFE,63,2,64,,81,1,0,{ bonus bMaxHPrate,10; bonus2 bSubRace,RC_DemiHuman,4; bonus2 bSubRace,RC_Player_Human,4; bonus3 bAutoSpellWhenHit,"AL_INCAGI",1,10; },{},{} -2445,Krieger_Shoes2,Glorious Popularized Shoes,4,20,,0,,0,,0,0xFFFFFFFE,63,2,64,,61,1,0,{ bonus bMaxHPrate,5; bonus bMaxSPrate,5; },{},{} -2446,Krieger_Shoes3,Glorious Mass-Production Shoes,4,20,,0,,10,,0,0xFFFFFFFE,63,2,64,,0,1,0,{ bonus bMaxHPrate,5; },{},{} -2447,Military_Boots,Army Boots,4,0,,1000,,5,,0,0xFFFFFFFE,63,2,64,,0,1,0,{},{},{} -2448,Air_Boss,Air Boss,4,0,,500,,2,,0,0xFFFFFFFF,63,2,64,,0,1,0,{ bonus bAgi,1; },{},{} -2449,Variant_Shoes_M,Variant Shoes,4,20,,500,,3,,0,0xFFFFFFFE,18,2,64,,85,1,0,{ .@r = getrefine(); bonus bMaxHPrate,20-.@r; bonus bMaxSPrate,20-.@r; bonus bDef,.@r/2; },{},{} -2450,Vital_Tree_Shoes,Vital Tree Shoes,4,20,,500,,16,,0,0xFFFFFFFE,18,2,64,,60,1,0,{ bonus bMaxHPrate,10; bonus2 bHPRegenRate,30,10000; bonus bHealpower2,5; bonus bAddItemHealRate,5; bonus bMdef,3; bonus bVit,2; },{},{} -2451,Freyja_SSandal7,Freyja Sprit Sandals,4,20,,400,,5,,0,0xFFFFFFFF,63,2,64,,20,0,0,{ bonus bMaxHPrate,8; bonus bMaxSPrate,8; },{},{} -2452,Freyja_SSandal30,Freyja Sprit Sandals,4,20,,400,,5,,0,0xFFFFFFFF,63,2,64,,20,0,0,{ bonus bMaxHPrate,8; bonus bMaxSPrate,8; },{},{} -2453,Freyja_SSandal60,Freyja Sprit Sandals,4,20,,400,,5,,0,0xFFFFFFFF,63,2,64,,20,0,0,{ bonus bMaxHPrate,8; bonus bMaxSPrate,8; },{},{} -2454,Freyja_SSandal90,Freyja Sprit Sandals,4,20,,400,,5,,0,0xFFFFFFFF,63,2,64,,20,0,0,{ bonus bMaxHPrate,8; bonus bMaxSPrate,8; },{},{} -2455,Time_Keepr_Boots,Time Keeper's Boots,4,30000,,0,,17,,0,0xFFFFFFFF,63,2,64,,0,1,0,{ bonus bMdef,1; bonus bMaxHP,100; bonus bHPrecovRate,10; bonus bSPrecovRate,10; },{},{} -2456,Para_Team_Boots1,Eden Team Boots I,4,0,,0,,14,,0,0xFFFFFFFF,63,2,64,,7,0,0,{ bonus bHPrecovRate,10; bonus bSPrecovRate,2; },{},{} -2457,Para_Team_Boots2,Eden Team Boots II,4,0,,0,,16,,0,0xFFFFFFFF,63,2,64,,26,0,0,{ bonus bHPrecovRate,12; bonus bSPrecovRate,4; },{},{} -2458,Para_Team_Boots3,Eden Team Boots III,4,0,,0,,18,,0,0xFFFFFFFF,63,2,64,,40,0,0,{ bonus bHPrecovRate,14; bonus bSPrecovRate,6; },{},{} -2459,Upg_Shoes,Upg Shoes,4,20,,200,,15,,1,0xFFFFFFFE,63,2,64,,0,1,0,{ bonus bMaxHPrate,3; },{},{} -2460,Upg_Boots,Upg Boots,4,20,,300,,21,,1,0x416E5CEA,63,2,64,,0,1,0,{ bonus bMaxHPrate,3; },{},{} -2461,Upg_Greave,Upg Greaves,4,20,,400,,32,,1,0x00004080,63,2,64,,0,1,0,{ bonus bMaxHPrate,3; },{},{} -2462,Sleipnir_C,Sleipnir,4,20,,0,,40,,0,0xFFFFFFFF,63,2,64,,94,0,0,{ bonus bMdef,10; bonus bMaxHPrate,20; bonus bMaxSPrate,20; bonus bSPrecovRate,15; bonus bSpeedRate,25; },{},{} -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,,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; },{},{} -2470,Forest_Shoes,Forest Shoes,4,20,,500,,12,,0,0x00000200,63,2,64,,100,1,0,{ bonus bMdef,2; bonus bMaxHP,500; bonus2 bSubEle,Ele_Earth,15; },{},{} -2471,Shoes_Of_Affection,Shoes Of Affection,4,20,,300,,12,,0,0x00000100,63,2,64,,100,1,0,{ bonus bMaxHP,500; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Formless,-10; bonus2 bSubRace,RC_Undead,-10; bonus2 bSubRace,RC_Brute,-10; bonus2 bSubRace,RC_Player_Doram,-10; bonus2 bSubRace,RC_Plant,-10; bonus2 bSubRace,RC_Insect,-10; bonus2 bSubRace,RC_Fish,-10; bonus2 bSubRace,RC_Demon,-10; bonus2 bSubRace,RC_Angel,-10; bonus2 bSubRace,RC_Dragon,-10; },{},{} -2472,Shoes_Of_Judgement,Shoes Of Judgement,4,20,,300,,12,,0,0x00000100,63,2,64,,100,1,0,{ bonus2 bSkillAtk,"AB_JUDEX",30; bonus2 bSkillUseSP,"AB_JUDEX",-40; bonus bMaxSP,150; },{},{} -2473,Para_Team_Boots4,Eden Team Boots IV,4,0,,0,,20,,0,0xFFFFFFFF,63,2,64,,60,0,0,{ bonus bAgi,1; bonus bVit,1; bonus bHPrecovRate,28; bonus bSPrecovRate,12; },{},{} -2474,Lehmannza_Shoes,Lehmannza Shoes,4,20,,500,,3,,1,0xFFFFFFFF,63,2,64,,60,1,0,{ bonus bMdef,3; },{},{} -2475,Ur_Greave,Ur's Greaves,4,20,,900,,32,,1,0x00000080,56,2,64,,100,1,0,{ bonus bMaxSP,40; .@r = getrefine(); if(.@r>7) bonus bMaxHPrate,.@r-7; },{},{} -2476,Peuz_Greave,Peuz's Greaves,4,20,,900,,32,,1,0x00000080,56,2,64,,100,1,0,{ bonus bMaxSP,40; .@r = getrefine(); if(.@r>7) bonus bAgi,.@r-7; },{},{} -2477,Sabah_Shoes,Sapha Shoes,4,20,,400,,18,,1,0x00001000,63,2,64,,100,1,0,{ bonus bMaxSP,30; bonus bLuk,3; },{},{} -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,,0,0xFFFFFFFF,63,2,64,,0,1,0,{ .@a = readparam(bStr); .@b = readparam(bInt); bonus bBaseAtk,(.@a>=120)?(20):((.@a>=90)?(10):(0)); bonus bMatkRate,(.@b>=120)?(5):((.@b>=90)?(3):(0)); },{},{} -2482,Shoes_Of_Valor,Shoes Of Valor,4,0,,0,,4,,0,0xFFFFFFFF,63,2,64,,0,0,0,{ skill "AL_INCAGI",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_Human,2; },{},{} -2484,Siege_Boots,Siege Boots,4,10,,500,,20,,1,0x636E5CEA,63,2,64,,95,1,0,{ bonus bMdef,5; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; },{},{} -2485,Siege_Shoes,Siege Shoes,4,10,,350,,15,,1,0x00818315,63,2,64,,95,1,0,{ bonus bMdef,10; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; },{},{} -2486,Shadow_Walk_,Shadow Walk,4,20,,2000,,0,,1,0xFFFFFFFE,63,2,64,,75,1,0,{ bonus bMdef,10; },{},{} -2487,Vital_Tree_Shoes_,Vital Tree Shoes,4,20,,500,,16,,1,0xFFFFFFFE,63,2,64,,60,1,0,{ bonus bVit,2; bonus bMdef,3; },{},{} -2488,Fricco_Shoes_,Fricco Shoes,4,30000,,500,,12,,1,0xFFFFFFFE,63,2,64,,65,1,0,{ bonus bAgi,2; bonus2 bAddItemGroupHealRate,IG_Potion,20; },{},{} -2489,Vidar's_Boots_,Vidar's Boots,4,30000,,650,,13,,1,0xFFFFFFFE,63,2,64,,65,1,0,{ bonus bMaxHPrate,9; bonus bMaxSPrate,9; },{},{} -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; } },{},{} -2493,Goibne's_Combat_Boots_,Goibne's Greaves,4,30000,,700,,13,,1,0xFFFFFFFE,63,2,64,,54,1,0,{ bonus bMdef,3; bonus bMaxHPrate,5; bonus bMaxSPrate,5; },{},{} -2494,Chrystal_Pumps_,Crystal Pumps,4,20,,100,,5,,1,0xFFFFFFFE,63,0,64,,0,1,0,{ bonus bMdef,10; bonus bLuk,5; },{},{} -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,,40,1,,{ bonus bMdef,5; bonus bMaxHP,150; bonus bMaxSP,150; bonus2 bAddRace,RC_Player_Human,5; bonus2 bMagicAddRace,RC_Player_Human,5; bonus2 bResEff,Eff_Freeze,25; },{},{} -2497,TE_Woe_Boots,TE Woe Boots,4,0,,0,,10,,0,0x000444A2,63,2,64,,40,1,,{ bonus bMaxHP,200; bonus bMaxSP,100; bonus2 bAddRace,RC_Player_Human,10; bonus2 bResEff,Eff_Freeze,25; },{},{} -2498,TE_Woe_Magic_Sandal,TE Woe Magic Sandal,4,0,,0,,5,,0,0x00818315,63,2,64,,40,1,,{ bonus bMdef,5; bonus bMaxHP,100; bonus bMaxSP,200; bonus2 bMagicAddRace,RC_Player_Human,5; bonus2 bResEff,Eff_Freeze,25; },{},{} -2499,Temporal_Boots,Temporal Boots,4,400,,600,,20,,0,0xFFFFFFFF,63,2,64,,10,1,,{ .@r = getrefine(); bonus bMaxHP,300; bonus bMaxSP,30; bonus bMaxHP,100*(.@r/3); bonus bMaxSP,10*(.@r/3); },{},{} -//=================================================================== -// Garments -//=================================================================== -2501,Hood,Hood,4,1000,,200,,4,,0,0xFFFFFFFF,63,2,4,,0,1,0,{},{},{} -2502,Hood_,Hood,4,1000,,200,,4,,1,0xFFFFFFFF,63,2,4,,0,1,0,{},{},{} -2503,Muffler,Muffler,4,5000,,400,,8,,0,0xFFFFFFFE,63,2,4,,0,1,0,{},{},{} -2504,Muffler_,Muffler,4,5000,,400,,8,,1,0xFFFFFFFE,63,2,4,,0,1,0,{},{},{} -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; 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; },{},{} -2512,Novice_Manteau,Novice Manteau,4,50000,,500,,7,,1,0x00000001,63,2,4,,40,1,0,{ bonus2 bSubEle,Ele_Neutral,10; },{},{} -2513,Celestial_Robe,Heavenly Maiden Robe,4,20,,500,,18,,1,0xFFFFFFFE,63,2,4,,80,1,0,{},{},{} -2514,Pauldron,Pauldron,4,20,,800,,25,,1,0x000654E2,63,2,4,,80,1,0,{},{},{} -2515,Wing_Of_Eagle,Eagle Wing,4,20000,,300,,12,,1,0x00810204,63,2,4,,85,1,0,{},{},{} -2516,Falcon_Robe,Falcon Muffler,4,30000,,400,,8,,0,0xFFFFFFFE,63,2,4,,65,1,0,{ bonus bFlee,15; bonus bFlee2,5; },{},{} -2517,Vali's_Manteau,Vali's Manteau,4,30000,,600,,13,,0,0xFFFFFFFE,63,2,4,,65,1,0,{ bonus2 bSubEle,Ele_Neutral,15; },{},{} -2518,Morpheus's_Shawl,Morpheus's Shawl,4,30000,,600,,8,,0,0xFFFFFFFE,63,2,4,,33,1,0,{ bonus bMaxSPrate,10; bonus bMdef,3; },{},{} -2519,Morrigane's_Manteau,Morrigane's Manteau,4,30000,,600,,9,,0,0xFFFFFFFE,63,2,4,,61,1,0,{ bonus bLuk,2; bonus bFlee2,8; },{},{} -2520,Goibne's_Shoulder_Arms,Goibne's Spaulders,4,30000,,700,,11,,0,0xFFFFFFFE,63,2,4,,54,1,0,{ bonus bLongAtkDef,10; bonus bMdef,2; bonus bVit,1; },{},{} -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; 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; },{},{} -2528,Wool_Scarf,Wool Scarf,4,20,,500,,11,,1,0xFFFFFFFE,18,2,4,,55,1,0,{ bonus bMdef,4; },{},{} -2529,Rider_Insignia,Rider Insignia,4,20,,500,,13,,0,0xFFFFFFFE,18,2,4,,55,1,0,{ bonus bAgi,2; },{},{} -2530,Rider_Insignia_,Rider Insignia,4,20,,500,,13,,1,0xFFFFFFFE,18,2,4,,55,1,0,{ bonus bAgi,2; },{},{} -2531,Ulfhedinn,Ulfhedinn,4,20,,700,,13,,1,0x000654E2,18,2,4,,70,1,0,{ bonus3 bAutoSpellWhenHit,"NPC_STONESKIN",6,20; },{},{} -2532,Mithril_Magic_Cape,Mithril Magic Cape,4,20,,400,,8,,1,0x00098B1C,18,2,4,,70,1,0,{ bonus bMdef,3; bonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,200,BF_MAGIC,0; },{},{} -2533,Freyja_Cape,Freyja Cape,4,0,,200,,10,,0,0xFFFFFFFE,63,2,4,,0,0,0,{ bonus2 bSubRace,RC_DemiHuman,15; bonus2 bSubRace,RC_Player_Human,15; },{},{} -2534,Ruffler,Ruffler,4,20,,0,,10,,0,0xFFFFFFFF,63,2,4,,0,0,0,{ bonus2 bSubEle,Ele_Neutral,17; bonus bFlee,17; },{},{} -2535,Cloak_Of_Survival_C,Cloak Of Survival,4,1,,0,,5,,0,0x00810204,63,2,4,,0,0,0,{ bonus bVit,10; bonus bMdef,10; },{},{} -2536,Skin_Of_Ventus,Skin of Ventus,4,20,,250,,7,,1,0xFFFFFFFE,63,2,4,,60,1,0,{ bonus bMdef,2; bonus bMaxHP,200; bonus bFlee,10; },{},{} -2537,Diabolus_Manteau,Diabolus Manteau,4,20,,250,,15,,1,0x00CFFF80,18,2,4,,0,1,0,{ bonus2 bSubEle,Ele_Neutral,5; bonus bMaxHP,100; bonus2 bAddDamageClass,1916,10; bonus2 bAddDamageClass,1917,10; },{},{} -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_Human,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_Human,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_Human,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; },{},{} -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; bonus2 bSubRace,RC_Player_Doram,5; },{},{} -2545,Musika,Musika,4,20,,500,,10,,1,0x00008100,18,2,4,,70,1,0,{ bonus bMdef,3; bonus3 bAutoSpellwhenhit,"AL_HEAL",max(1,getskilllv("AL_HEAL")),20; },{},{} -2546,Beach_Manteau,Beach Manteau,4,20,,600,,0,,1,0xFFFFFFFF,63,2,4,,0,1,0,{ bonus bStr,1; bonus bInt,1; bonus2 bSubEle,Ele_Fire,10; },{},{} -2547,Cheap_Running_Shirts,Cheap Undershirt,4,0,,0,,8,,0,0xFFFFFFFF,63,2,4,,0,1,0,{ bonus bDex,2; bonus bFlee,10; bonus2 bSubEle,Ele_Neutral,10; bonus bMdef,1; },{},{} -2548,Muffler_C,Neo Muffler,4,0,,0,,5,,0,0xFFFFFFFE,18,2,4,,95,0,0,{ bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus bMaxHPrate,10; bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Fire,5; bonus2 bSubEle,Ele_Holy,5; bonus2 bSubEle,Ele_Dark,5; },{},{} -2549,Krieger_Muffler1,Glorious Muffler,4,20,,0,,3,,0,0xFFFFFFFE,63,2,4,,81,1,0,{ bonus bMaxHPrate,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; },{},{} -2550,Fisher's_Muffler,Fisher's Muffler,4,20,,200,,0,,0,0xFFFFFFFF,63,2,4,,0,1,0,{},{},{} -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_All,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; },{},{} -2558,Freyja_SScarf90,Freyja Soul Scarf,4,20,,400,,4,,0,0xFFFFFFFF,63,2,4,,20,0,0,{ bonus bFlee,15; bonus2 bSubEle,Ele_Neutral,15; },{},{} -2559,Time_Keepr_Manteau,Time Keeper's Manteau,4,30000,,0,,9,,0,0xFFFFFFFF,63,2,4,,1,1,0,{ bonus bMdef,1; bonus bFlee,10; bonus2 bSubEle,Ele_Neutral,10; },{},{} -2560,Para_Team_Manteau,Eden Team Manteau I,4,0,,0,,14,,0,0xFFFFFFFF,63,2,4,,7,0,0,{ bonus2 bSubEle,Ele_Neutral,10; },{},{} -2561,Upg_Hood,Upg Hood,4,0,,100,,9,,1,0xFFFFFFFF,63,2,4,,0,1,0,{ bonus bMaxHPrate,3; },{},{} -2562,Upg_Muffler,Upg Muffler,4,20,,200,,13,,1,0xFFFFFFFE,63,2,4,,0,1,0,{ bonus bMaxHPrate,3; },{},{} -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; },{},{} -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; autobonus2 "{ bonus2 bHPRegenRate,1000,5000; }",300,90000,BF_WEAPON; autobonus2 "{ bonus2 bHPRegenRate,1000,5000; }",400,90000,BF_MAGIC; },{},{} -2570,Shawl_Of_Judgement,Shawl Of Judgement,4,20,,400,,12,,0,0x00000100,63,2,4,,100,1,0,{ bonus bFlee,5; .@i = max(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,,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; },{},{} -2576,Bravery_Bag,Adventurer's Backpack,4,0,,200,,20,,1,0xFFFFFFFF,63,2,4,,0,1,2,{ skill "BS_GREED",1; .@r = getrefine(); if(.@r>=7) { if(readparam(bStr)>=90) { bonus bBaseAtk,(.@r>=9)?30:20; } if(readparam(bInt)>=90) { bonus bMatk,(.@r>=9)?50:30; } if(readparam(bVit)>=90) { bonus2 bSubEle,Ele_Neutral,(.@r>=9)?10:5; } if(readparam(bAgi)>=90) { bonus bAspdRate,8; if(.@r>=9) { bonus bAspd,1; } } if(readparam(bDex)>=90) { bonus bLongAtkRate,(.@r>=9)?10:5; } if(readparam(bLuk)>=90) { bonus bCritAtkRate,(.@r>=9)?15:10; } } },{},{} -2577,Sabah_Hood,Sapha Hood,4,20,,100,,13,,0,0x00001000,63,2,4,,100,1,0,{ bonus bFlee,12; bonus bCritical,getrefine(); },{},{} -2578,Nab_Hood,Nab Hood,4,20,,100,,13,,0,0x00001000,63,2,4,,100,1,0,{ .@r = getrefine(); bonus bFlee,.@r*2; bonus bBaseAtk,.@r*2; },{},{} -2579,Magic_Stole,Magic Stole,4,20,,700,,8,,1,0xFFFFFFFF,63,2,4,,0,1,0,{ bonus bMdef,3; bonus bUseSPrate,-5; bonus bMaxSPrate,((getrefine()>=4)?6:3); },{},{} -2580,White_Wing_Manteau,White Wing Manteau,4,20,,200,,15,,0,0x00000800,63,2,4,,100,1,0,{ bonus bAgi,2; bonus bFlee,10; autobonus2 "{ bonus bFlee,20; }",20,7000,BF_LONG,"{ specialeffect2 EF_CHAINCOMBO; }"; },{},{} -2581,Black_Wing_Manteau,Black Wing Manteau,4,20,,200,,15,,0,0x00000800,56,2,4,,100,1,0,{ .@r = getrefine(); bonus bInt,2; if(.@r>6) bonus bFlee2,.@r-6; },{},{} -2582,Salvage_Cape,Salvage Cape,4,56000,,400,,1,,0,0x00000300,63,2,4,,130,1,0,{ skill "NJ_UTSUSEMI",1; bonus2 bSkillCooldown,"NJ_UTSUSEMI",30000; bonus bUseSPrate,100; },{},{ heal 0,-1200; } -2583,Holy_Cape,Holy Cape,4,20,,100,,5,,1,0xFFFFFFFF,63,2,4,,50,1,0,{ bonus bDex,-5; bonus bMdef,5; },{},{} -2584,Wanderer_Outer,Wanderer Outer,4,20,,500,,8,,1,0xFFFFFFFF,63,2,4,,0,1,0,{},{},{} -2585,Muffler_Of_Valor,Muffler Of Valor,4,0,,0,,4,,0,0xFFFFFFFF,63,2,4,,0,0,0,{ bonus bSPrecovRate,10; },{},{} -2586,Siege_Manteau,Siege Manteau,4,10,,600,,32,,1,0xFFFFFFFE,63,2,4,,95,1,0,{ bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; },{},{} -2587,Siege_Muffler,Siege Muffler,4,10,,400,,15,,1,0xFFFFFFFF,63,2,4,,95,1,0,{ bonus bMdef,10; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; },{},{} -2588,Ragamuffin_Cape_,Ragamuffin Cape,4,56000,,500,,4,,1,0xFFFFFFFE,63,2,4,,40,1,0,{ bonus bMdef,10; },{},{} -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,,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,{ bonus2 bSubDefEle,Ele_Water,5; bonus2 bMagicSubDefEle,Ele_Water,5; bonus2 bSubRace,RC_Brute,-5; },{},{} -2594,Wrapping_Manteau,Wrapping Manteau,4,20,,100,,0,,1,0xFFFFFFFF,63,2,4,,0,1,0,{},{},{} -2597,Scarlet_Poncho,Scarlet Poncho,4,0,,500,,10,,1,0xFFFFFFFF,63,2,4,,,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;*/ },{},{} -2599,Goibne's_Shoulder_Arms_,Goibne's Spaulders,4,30000,,700,,11,,1,0xFFFFFFFE,63,2,4,,54,1,0,{ bonus bLongAtkDef,10; bonus bMdef,2; bonus bVit,1; },{},{} -//=================================================================== -// Accessories -//=================================================================== -2601,Ring,Ring,4,30000,,100,,0,,0,0xFFFFFFFE,63,2,136,,20,0,0,{ bonus bStr,2; },{},{} -2602,Earring,Earring,4,30000,,100,,0,,0,0xFFFFFFFE,63,2,136,,20,0,0,{ bonus bInt,2; },{},{} -2603,Necklace,Necklace,4,30000,,100,,0,,0,0xFFFFFFFE,63,2,136,,20,0,0,{ bonus bVit,2; },{},{} -2604,Glove,Glove,4,30000,,100,,0,,0,0xFFFFFFFE,63,2,136,,20,0,0,{ bonus bDex,2; },{},{} -2605,Brooch,Brooch,4,30000,,100,,0,,0,0xFFFFFFFE,63,2,136,,20,0,0,{ bonus bAgi,2; },{},{} -2607,Clip,Clip,4,30000,,100,,0,,1,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bMaxSP,10; },{},{} -2608,Rosary,Rosary,4,15000,,100,,0,,0,0xFFFFFFFE,63,2,136,,20,0,0,{ bonus bMdef,5; bonus bLuk,2; },{},{} -2609,Skul_Ring,Skull Ring,4,10000,,100,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{},{},{} -2610,Gold_Ring,Gold Ring,4,30000,,100,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{},{},{} -2611,Silver_Ring,Silver Ring,4,20000,,100,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{},{},{} -2612,Flower_Ring,Flower Ring,4,1500,,100,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{},{},{} -2613,Diamond_Ring,Diamond Ring,4,45000,,100,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{},{},{} -2614,An_Eye_Of_Dullahan,Eye of Dullahan,4,90000,,100,,0,,0,0xFFFFFFFE,63,2,136,,50,0,0,{ bonus2 bResEff,Eff_Poison,10000; bonus2 bSubRace,RC_Undead,4; bonus2 bSubRace,RC_Demon,4; },{},{} -2615,Safety_Ring,Safety Ring,4,75000,,100,,5,,0,0xFFFFFFFE,63,2,136,,40,0,0,{ bonus bMdef,5; },{},{} -2616,Critical_Ring,Critical Ring,4,75000,,100,,0,,0,0xFFFFFFFE,63,2,136,,40,0,0,{ bonus bCritical,5; },{},{} -2617,Mitten_Of_Presbyter,Celebrant's Mitten,4,2,,100,,1,,0,0xFFFFFFFE,63,2,136,,35,0,0,{ bonus bInt,1; },{},{} -2618,Matyr's_Flea_Guard,Matyr's Leash,4,2,,100,,1,,0,0xFFFFFFFE,63,2,136,,35,0,0,{ bonus bAgi,1; },{},{} -2619,Thimble_Of_Archer,Bow Thimble,4,10000,,100,,0,,0,0x00080808,63,2,136,,65,0,0,{ bonus bLongAtkRate,3; },{},{} -2620,Ring_Of_Rogue,Rogue's Treasure,4,10000,,100,,0,,0,0x02021040,63,2,136,,70,0,0,{ if(readparam(bStr)>=90){ bonus bHit,10; bonus bFlee,10; } if(readparam(bAgi)>=90){ bonus bBaseAtk,10; bonus bCritical,10; } },{},{} -2621,Ring_,Ring,4,30000,,200,,0,,1,0xFFFFFFFE,63,2,136,,90,0,0,{ bonus bStr,1; },{},{} -2622,Earring_,Earring,4,30000,,200,,0,,1,0xFFFFFFFE,63,2,136,,90,0,0,{ bonus bInt,1; },{},{} -2623,Necklace_,Necklace,4,30000,,200,,0,,1,0xFFFFFFFE,63,2,136,,90,0,0,{ bonus bVit,1; },{},{} -2624,Glove_,Glove,4,30000,,200,,0,,1,0xFFFFFFFE,63,2,136,,90,0,0,{ bonus bDex,1; },{},{} -2625,Brooch_,Brooch,4,30000,,200,,0,,1,0xFFFFFFFE,63,2,136,,90,0,0,{ bonus bAgi,1; },{},{} -2626,Rosary_,Rosary,4,15000,,200,,0,,1,0xFFFFFFFE,63,2,136,,90,0,0,{ bonus bMdef,3; bonus bLuk,1; },{},{} -2627,Belt,Belt,4,20000,,1200,,0,,1,0xFFFFFFFF,63,2,136,,25,0,0,{},{},{} -2628,Novice_Armlet,Novice Armlet,4,400,,200,,0,,1,0x00000001,63,2,136,,0,0,0,{},{},{} -2629,Magingiorde,Megingjard,4,20,,8000,,2,,0,0xFFFFFFFF,63,2,136,,94,0,0,{ bonus bStr,40+BaseLevel/5; bonus bMdef,7; if(readparam(bStr)>=120) bonus2 bAddClass,Class_Boss,10; },{},{} -2630,Brysinggamen,Brisingamen,4,20,,1500,,1,,0,0xFFFFFFFF,63,2,136,,94,0,0,{ bonus bStr,6; bonus bAgi,6; bonus bVit,6; bonus bInt,10; bonus bLuk,10; bonus bMdef,5; bonus bHealPower,6; },{},{} -2631,First_Age_Ring,Celebration Ring,4,1,,10,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bAllStats,5; },{},{} -2632,Korean_Trinket,Korean Trinket,4,125000,,100,,1,,0,0xFFFFFFFE,63,2,136,,65,0,0,{ bonus bVit,1; bonus bDex,1; bonus bLuk,1; },{},{} -2633,Jade_Ring,Jade Ring,4,204000,,100,,0,,0,0xFFFFFFFE,63,2,136,,80,0,0,{ bonus bStr,2; bonus bInt,1; },{},{} -2634,Bridegroom_Ring,Wedding Ring,4,0,,0,,0,,0,0xFFFFFFFF,63,1,136,,0,0,0,{ skill "WE_MALE",1; skill "WE_FEMALE",1; skill "WE_CALLPARTNER",1; skill "WE_CALLALLFAMILY",1; skill "WE_ONEFOREVER",1; },{},{} -2635,Bride_Ring,Wedding Ring,4,0,,0,,0,,0,0xFFFFFFFF,63,0,136,,0,0,0,{ skill "WE_MALE",1; skill "WE_FEMALE",1; skill "WE_CALLPARTNER",1; skill "WE_CALLALLFAMILY",1; skill "WE_ONEFOREVER",1; },{},{} -2636,Gold_Ring_,Gold Christmas Ring,4,30000,,100,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bLuk,1; },{},{} -2637,Silver_Ring_,Silver Christmas Ring,4,20000,,100,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bLuk,1; },{},{} -2638,Exorcize_Sachet,Sacred Incense,4,20000,,100,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bStr,1; bonus bLuk,1; },{},{} -2639,Purification_Sachet,Occult Incense,4,20000,,100,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bInt,1; bonus bAgi,1; },{},{} -2640,Kafra_Ring,Kafra Ring,4,40000,,200,,1,,0,0xFFFFFFFE,63,2,136,,0,0,0,{ bonus bStr,1; bonus bInt,1; bonus bAgi,1; bonus bLuk,1; bonus bMdef,1; },{},{} -2641,Fashionable_Sack,Fashion Hip Sack,4,20,,700,,0,,0,0x00040420,63,2,136,,50,0,0,{ bonus bStr,2; },{},{} -2642,Serin's_Gold_Ring,Serin's Gold Ring,4,20,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{},{},{} -2643,Serin's_Gold_Ring_,Serin's Gold Ring,4,45000,,100,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{},{},{} -2644,The_Sign_,The Sign,4,2,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus2 bAddClass,Class_All,5; bonus2 bMagicAddClass,Class_All,5; },{},{} -2645,Moonlight_Ring,Moonlight Ring,4,40000,,200,,0,,0,0x02021040,63,2,136,,60,0,0,{ bonus bMdef,2; },{},{} -2646,Bunch_Of_Carnation,Bunch of Carnations,4,2,,100,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bAllStats,3; },{},{} -2647,Nile_Rose,Nile Rose,4,2,,100,,0,,1,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bAllStats,5; },{},{} -2648,Morpheus's_Ring,Morpheus's Ring,4,30000,,100,,0,,0,0xFFFFFFFE,63,2,136,,33,0,0,{ bonus bInt,1; bonus bMaxSPrate,5; },{},{} -2649,Morpheus's_Armlet,Morpheus's Bracelet,4,30000,,100,,0,,0,0xFFFFFFFE,63,2,136,,33,0,0,{ bonus bInt,1; bonus bMaxSPrate,5; },{},{} -2650,Morrigane's_Belt,Morrigane's Belt,4,30000,,200,,0,,0,0xFFFFFFFE,63,2,136,,61,0,0,{ bonus bBaseAtk,5; bonus bCritical,3; },{},{} -2651,Morrigane's_Pendant,Morrigane's Pendant,4,30000,,200,,0,,0,0xFFFFFFFE,63,2,136,,61,0,0,{ bonus bStr,2; bonus bCritical,3; },{},{} -2652,Cursed_Lucky_Brooch,Goddess of Fortune's Cursed Brooch,4,20,,100,,0,,0,0xFFFFFFFF,63,2,136,,40,0,0,{ bonus bCritical,6; bonus2 bAddEff2,Eff_Curse,50; },{},{} -2653,Sacrifice_Ring,Sacrifice Ring,4,20,,100,,0,,0,0xFFFFFFFF,63,2,136,,90,0,0,{},{},{} -2654,Shinobi's_Sash,Shinobi Sash,4,20000,,300,,1,,0,0x02021040,63,2,136,,30,0,0,{ bonus bStr,1; bonus bAgi,1; bonus bMdef,1; },{},{} -2655,Bloody_Iron_Ball,Bloodied Shackle Ball,4,50000,,4000,,0,,0,0xFFFFFFFE,63,2,136,,0,0,0,{},{},{} -2656,Hyper_Changer,Armor Charm,4,20000,,1000,,1,,0,0x000654E2,63,2,136,,1,0,0,{ bonus bMaxHP,50; },{},{} -2657,Lab_Passport,Laboratory Permit,4,20,,100,,0,,0,0xFFFFFFFF,63,2,136,,1,0,0,{},{},{} -2658,Nile_Rose_,Nile Rose,4,2,,100,,0,,1,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bMaxHP,10; },{},{} -2659,Vesper_Core01,Vesper Core 01,4,20,,500,,1,,0,0x00CFFF80,18,2,136,,1,0,0,{ bonus bMdef,3; bonus bInt,2; bonus bMaxSPrate,5; },{},{} -2660,Vesper_Core02,Vesper Core 02,4,20,,500,,1,,0,0x00CFFF80,18,2,136,,1,0,0,{ bonus bMdef,3; bonus bStr,3; bonus bBaseAtk,10; },{},{} -2661,Vesper_Core03,Vesper Core 03,4,20,,500,,1,,0,0x00CFFF80,18,2,136,,1,0,0,{ bonus bMdef,3; bonus bAgi,3; bonus bFlee,5; },{},{} -2662,Vesper_Core04,Vesper Core 04,4,20,,500,,1,,0,0x00CFFF80,18,2,136,,1,0,0,{ bonus bMdef,3; bonus bDex,3; bonus bHit,10; },{},{} -2663,Gauntlet_Of_Accuracy,Gauntlet of Hit,4,20,,900,,0,,0,0xFFFFFFFF,63,2,136,,75,0,0,{ bonus bHit,15; bonus bStr,1; },{},{} -2664,Scarf_Belt,Belcarf,4,20,,200,,0,,0,0xFFFFFFFE,63,2,136,,75,0,0,{ bonus bDex,2; bonus bInt,1; },{},{} -2665,Ring_Of_Exorcism,Exorcising Ring,4,20,,500,,0,,0,0x00008110,63,2,136,,60,0,0,{ bonus bMdef,1; bonus2 bExpAddRace,RC_Undead,5; bonus2 bExpAddRace,RC_Demon,5; },{},{} -2666,Lamp_Of_Hope,Lantern of Hope,4,20,,100,,0,,0,0xFFFFFFFF,63,2,136,,1,0,0,{ bonus bStr,2; bonus2 bResEff,Eff_Blind,1000; },{},{} -2667,Glove_Of_Archer,Renown Archer's Gloves,4,20,,300,,0,,0,0xFFFFFFFE,63,2,136,,60,0,0,{ bonus bHit,5; bonus bCritical,5; bonus bDex,1; },{},{} -2668,Women's_Glory,Woman Glory,4,0,,500,,0,,0,0xFFFFFFFF,63,2,136,,1,0,0,{ bonus bStr,3; bonus bAgi,3; bonus bVit,3; bonus bInt,3; bonus bDex,3; bonus bLuk,3; },{},{} -2669,Golden_Necklace_,RJC Necklace,4,30000,,100,,0,,1,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bMaxSP,10; },{},{} -2670,Ring_Of_Longing,Ring of Longing,4,20,,100,,1,,0,0xFFFFFFFF,63,2,136,,30,0,0,{ bonus bFlee,5; },{},{} -2671,Thimble_Of_Archer_,Bow Thimble,4,10000,,100,,0,,1,0x00080808,63,2,136,,65,0,0,{ bonus bLongAtkRate,3; },{},{} -2672,Anniversary_Ring,3rd Anniversary Celebration Ring,4,20,,100,,0,,0,0xFFFFFFFE,63,2,136,,0,0,0,{ bonus bStr,5; bonus bAgi,5; bonus bVit,5; bonus bInt,5; bonus bDex,5; bonus bLuk,5; },{},{} -2673,Shining_Ring,Warrior's Shining Ring,4,0,,100,,0,,0,0xFFFFFFFE,63,2,136,,48,0,0,{ bonus bBaseAtk,10; bonus bSPrecovRate,3; },{},{} -2674,Honor_Ring,Ring of Honor,4,20,,0,,0,,0,0xFFFFFFFF,63,2,136,,1,0,0,{},{},{} -2675,Lord_Ring,Lord Ring,4,0,,10,,0,,0,0xFFFFFFFF,63,2,136,,1,0,0,{ bonus bAllStats,3; },{},{} -2676,Hunter_Earring,Hunter's Earring,4,20,,300,,0,,0,0xFFFFFFFF,63,2,136,,1,0,0,{ bonus2 bAddMonsterDropItem,7618,100; },{},{} -2677,Spiritual_Ring,Spiritual Ring,4,20,,100,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bInt,2; bonus bDex,1; },{},{} -2678,Ring_Of_Flame_Lord,Ring Of Flame Lord,4,20,,100,,0,,0,0x00CFFF80,18,2,136,,0,0,0,{ bonus bStr,2; bonus bVit,1; bonus bBaseAtk,15; 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; },{},{} -2679,Ring_Of_Resonance,Ring Of Resonance,4,20,,100,,2,,0,0x00CFFF80,18,2,136,,0,0,0,{ bonus bAgi,2; bonus bVit,1; bonus bMdef,2; 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; },{},{} -2680,Lesser_Elemental_Ring,Lesser Elemental Ring,4,20,,100,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bAllStats,1; bonus3 bAutoSpell,"WZ_ESTIMATION",1,80; bonus3 bAutoSpell,"MC_IDENTIFY",1,50; bonus3 bAutoSpell,"TF_PICKSTONE",1,100; bonus3 bAutoSpell,"BS_GREED",1,10; bonus3 bAutoSpellWhenHit,"TK_RUN",5,20; bonus3 bAutoSpellWhenHit,"TK_HIGHJUMP",3,30; bonus3 bAutoSpellWhenHit,"NV_FIRSTAID",1,100; bonus3 bAutoSpellWhenHit,"TF_BACKSLIDING",1,50; },{},{} -2681,Republic_Ring,Republic Anniversary Ring,4,20,,1000,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bAllStats,3; },{},{} -2682,Ring_Of_Water,Ring of Water,4,20,,100,,1,,0,0xFFFFFFFE,63,2,136,,20,0,0,{ bonus2 bSubDefEle,Ele_Water,5; },{},{} -2683,Ring_Of_Fire,Ring of Fire,4,20,,100,,1,,0,0xFFFFFFFE,63,2,136,,20,0,0,{ bonus2 bSubDefEle,Ele_Fire,5; },{},{} -2684,Ring_Of_Wind,Ring of Wind,4,20,,100,,1,,0,0xFFFFFFFE,63,2,136,,20,0,0,{ bonus2 bSubDefEle,Ele_Wind,5; },{},{} -2685,Ring_Of_Earth,Ring of Earth,4,20,,100,,1,,0,0xFFFFFFFE,63,2,136,,20,0,0,{ bonus2 bSubDefEle,Ele_Earth,5; },{},{} -2686,Elven_Ears_C,Elven Ears,4,1,,0,,2,,0,0xFFFFFFFE,63,2,512,,1,0,73,{ bonus bInt,1; },{},{} -2687,Steel_Flower_C,Steel Flower,4,1,,0,,1,,0,0xFFFFFFFE,63,2,1,,1,0,56,{ bonus2 bSubRace,RC_Plant,3; bonus3 bAutoSpellWhenHit,"PR_STRECOVERY",1,30; },{},{} -2688,Critical_Ring_C,Critical Ring,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bCriticalRate,10; },{},{} -2689,Earring_C,Earring,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bInt,3; },{},{} -2690,Ring_C,Ring,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bStr,4; },{},{} -2691,Necklace_C,Necklace,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bVit,4; },{},{} -2692,Glove_C,Glove,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bDex,4; },{},{} -2693,Brooch_C,Brooch,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bAgi,4; /*Gold PC Room bonus bAllStats,1;*/ },{},{} -2694,Rosary_C,Rosary,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bMdef,5; bonus bLuk,4; },{},{} -2695,Safety_Ring_C,Safety Ring,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bMdef,8; bonus bDef,8; /*Gold PC Room bonus bAllStats,1;*/ },{},{} -2696,Vesper_Core01_C,Vesper Core 01,4,1,,0,,1,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bMdef,3; bonus bInt,2; bonus bMaxSPrate,5; },{},{} -2697,Vesper_Core02_C,Vesper Core 02,4,1,,0,,1,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bMdef,3; bonus bStr,3; bonus bBaseAtk,10; },{},{} -2698,Vesper_Core03_C,Vesper Core 03,4,1,,0,,1,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bMdef,3; bonus bAgi,3; bonus bFlee,5; },{},{} -2699,Vesper_Core04_C,Vesper Core 04,4,1,,0,,1,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bMdef,3; bonus bDex,3; bonus bHit,10; },{},{} -2700,Red_Silk_Seal,Red Silk Seal,4,20,,100,,0,,0,0x00004082,18,2,136,,60,0,0,{},{},{} -2701,Orleans_Glove,Orleans's Glove,4,20,,100,,0,,1,0xFFFFFFFE,18,2,136,,90,0,0,{ bonus bDex,2; bonus bMatkRate,3; },{},{} -2702,Bison_Horn,Bison Horn,4,20,,100,,0,,1,0xFFFFFFFE,18,2,136,,90,0,0,{ bonus bAgi,2; },{},{} -2703,Expert_Ring,Expert Ring,4,20,,150,,0,,1,0xFFFFFFFE,18,2,136,,50,0,0,{ bonus bDelayRate,-5; bonus bUseSPrate,5; },{},{} -2704,Golden_Accessory,Golden Accessories,4,20,,100,,4,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bMdef,4; },{},{} -2705,Golden_Accessory2,Golden Accessories,4,20,,100,,4,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus2 bAddMonsterDropItem,12018,500; },{},{} -2706,Handcuff,Arrest Handcuffs,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{},{},{} -2707,Gusli,GUSLI,4,20,,100,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{},{},{} -2708,Chinese_Handicraft,Chinese Handicraft,4,0,,50,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus3 bAutoSpell,"MG_FIREBOLT",5,50; },{},{} -2709,5_Anniversary_Coin,5th Anniversary Coin,4,2,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; },{},{} -2710,Bloody_Iron_Ball_C,Bloody Iron Ball,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,0,0,0,{ bonus bBaseAtk,30; },{},{} -2711,Spiritual_Ring_C,Spiritual Ring,4,1,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bInt,2; bonus bDex,2; },{},{} -2712,Ragnarok_Limited_Ed,Ragnarok Limited Edition,4,0,,300,,0,,0,0xFFFFFFFF,63,2,136,,30,0,0,{ bonus bVit,3; bonus bAgi,3; bonus bLuk,3; },{},{} -2713,Certificate_TW,Certificate,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{},{},{} -2714,Marvelous_Pandent,Marvelous Pendant,4,0,,100,,0,,1,0xFFFFFFFF,63,2,136,,0,0,0,{},{},{} -2715,Skul_Ring_,Skull Ring,4,10000,,100,,0,,1,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus2 bSubRace,RC_Undead,1; },{},{} -2716,Librarian_Glove,Librarian Glove,4,20,,100,,0,,1,0x00810200,63,2,136,,80,0,0,{ bonus bMaxSP,20; },{},{} -2717,Pocket_Watch_,Pocket Watch,4,20,,200,,0,,0,0x00010204,63,2,136,,80,0,0,{},{},{} -2718,Lunatic_Brooch,Lunatic Brooch,4,20,,200,,0,,1,0x00080808,63,2,136,,65,0,0,{},{},{} -2719,Iron_Wrist,Iron Wrist,4,20,,700,,1,,0,0x000444A2,63,2,136,,50,0,0,{ bonus2 bSkillAtk,"SM_BASH",6; bonus2 bSkillAtk,"MC_MAMMONITE",6; },{},{} -2720,Medal_Swordman,Medal of Honor,4,20,,0,,1,,0,0x00404082,63,2,136,,70,0,0,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bHit,10; bonus bMaxHP,500; bonus bMaxSP,50; bonus3 bAddEff,Eff_Stun,100,ATF_SHORT; },{},{} -2721,Medal_Thief,Medal of Honor,4,20,,0,,1,,0,0x02021040,63,2,136,,70,0,0,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bFlee,10; bonus bMaxHP,300; bonus bMaxSP,80; bonus3 bAddEff,Eff_Poison,100,ATF_SHORT; },{},{} -2722,Medal_Acolyte,Medal of Honor,4,20,,0,,1,,0,0x00008110,63,2,136,,70,0,0,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bMdef,6; bonus bMaxHP,600; bonus3 bAddEff,Eff_Silence,100,ATF_SHORT; },{},{} -2723,Medal_Mage,Medal of Honor,4,20,,0,,1,,0,0x00810204,63,2,136,,70,0,0,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bMdef,6; bonus bMaxHP,600; bonus2 bAddEffWhenHit,Eff_Stone,100; },{},{} -2724,Medal_Archer,Medal of Honor,4,20,,0,,1,,0,0x00080808,63,2,136,,70,0,0,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bCritical,10; bonus bMaxHP,300; bonus bMaxSP,80; bonus3 bAddEff,Eff_Blind,100,ATF_LONG; },{},{} -2725,Medal_Merchant,Medal of Honor,4,20,,0,,1,,0,0x00040420,63,2,136,,70,0,0,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bAspdRate,10; bonus bMaxHP,500; bonus bMaxSP,50; bonus3 bAddEff,Eff_Curse,100,ATF_SHORT; },{},{} -2726,Icarus_Wing,Icarus Wings,4,20,,100,,0,,0,0x00000800,18,2,136,,70,0,0,{ bonus bMaxSP,50; bonus bDex,3; },{},{} -2727,Bowman_Scarf,Bowman Scarf,4,20,,200,,0,,0,0x00000800,18,2,136,,70,0,0,{ bonus bMaxSP,50; bonus bDex,3; },{},{} -2728,Cursed_Hand,Cursed Hand,4,20,,50,,0,,1,0xFFFFFFFE,63,2,136,,80,0,0,{ bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,30; bonus bHit,10; bonus bHPrecovRate,20; },{},{} -2729,Diabolus_Ring,Diabolus Ring,4,20,,50,,0,,1,0x00CFFF80,18,2,136,,0,0,0,{ bonus bMaxHP,100; bonus bMaxSP,100; bonus bHealPower,5; bonus2 bAddDamageClass,1916,10; bonus2 bAddDamageClass,1917,10; },{},{} -2730,Morroc_Seal,Seal of Continental Guard,4,20,,50,,0,,1,0xFFFFFFFE,63,2,136,,80,0,0,{ bonus bMaxHP,50; bonus bAspdRate,3; },{},{} -2731,Morroc_Charm_Stone,Rune Spellstone,4,20,,50,,0,,1,0xFFFFFFFE,63,2,136,,80,0,0,{ bonus bMaxSP,50; bonus bVariableCastrate,-1; },{},{} -2732,Morroc_Ring,Death Loop,4,20,,50,,0,,1,0xFFFFFFFE,63,2,136,,80,0,0,{ bonus bCritical,5; },{},{} -2733,Medal_Gunner,Sheriff Badge,4,20,,0,,1,,0,0x41000000,63,2,136,,70,0,0,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bCritical,10; bonus bMaxHP,300; bonus bMaxSP,80; bonus3 bAddEff,Eff_Blind,100,ATF_LONG; },{},{} -2734,Directive_A,Directive,4,0,,0,,1,,0,0x00000001,63,2,136,,0,0,0,{},{},{} -2735,Directive_B,Directive,4,0,,0,,1,,0,0x00000001,63,2,136,,0,0,0,{},{},{} -2736,Navel_Ring,Navel Ring,4,20,,100,,0,,0,0xFFFFFFFE,63,2,136,,75,0,0,{ bonus bDex,3; bonus bLuk,3; bonus bMdef,2; },{},{} -2737,Foot_Ring,Foot Ring,4,20,,150,,0,,0,0xFFFFFFFE,63,2,136,,75,0,0,{ bonus bVit,3; bonus bMaxHPrate,10; },{},{} -2738,Shiny_Coin,Shiny Coin,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus2 bAddClass,Class_All,6; bonus bMatkRate,6; },{},{} -2739,Ordinary_Coin,Ordinary Coin,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; },{},{} -2740,Rusty_Coin,Rusty Coin,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus2 bAddClass,Class_All,3; bonus bMatkRate,3; },{},{} -2741,All_In_One_Ring,All In One Ring,4,20,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bAllStats,1; bonus bNoCastCancel; bonus bVariableCastrate,10; skill "AL_HEAL",1; skill "AL_TELEPORT",1; },{},{} -2742,Lucky_Clip,Lucky Clip,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus2 bDropAddRace,RC_All,50; },{},{} -2743,Angelic_Ring,Angelic Ring,4,20,,100,,0,,0,0x00CFFF80,18,2,136,,70,0,0,{ bonus bInt,2; bonus bDex,1; bonus bMdef,2; autobonus3 "{ bonus bHealPower,20; }",100,3000,"AL_HEAL","{ specialeffect2 EF_HEAL3; }"; autobonus3 "{ bonus bHealPower,20; }",100,3000,"AM_POTIONPITCHER","{ specialeffect2 EF_HEAL3; }"; autobonus3 "{ bonus bHealPower,20; }",100,3000,"PR_SANCTUARY","{ specialeffect2 EF_HEAL3; }"; },{},{} -2744,Sprint_Ring,Sprint Ring,4,20,,100,,0,,0,0x00CFFF80,18,2,136,,70,0,0,{ bonus bVariableCastrate,-10; bonus bDelayRate,5; },{},{} -2745,Pinguicula_Corsage,Pinguicula Corsage,4,20,,200,,0,,1,0x00CFFF80,18,2,136,,70,0,0,{ bonus bMdef,2; bonus bMaxSP,25; },{},{} -2746,Cold_Heart,Cold Heart,4,20,,100,,1,,0,0x00001000,18,2,136,,80,0,0,{ bonus bAgi,3; },{},{} -2747,Black_Cat,Black Cat,4,20,,100,,1,,0,0x00020000,18,2,136,,80,0,0,{ bonus bDex,3; },{},{} -2748,Cursed_Star,Cursed Star,4,20,,200,,0,,0,0x00080808,18,2,136,,84,0,0,{ bonus bMdef,3; bonus bDex,2; bonus bLuk,-1; bonus2 bHPLossRate,50,10000; bonus3 bAddEff,Eff_Curse,200,ATF_WEAPON|ATF_LONG|ATF_TARGET; },{},{ heal -300,0; } -2749,Linen_Glove,Linen Glove,4,20,,120,,1,,1,0x00CFFF80,18,2,136,,90,0,0,{ bonus bMdef,2; bonus bAgi,2; bonus bDex,1; },{},{} -2750,Summer_Night_Dream,Summer Night Dream,4,20,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ /* skill "ALL_DREAM_SUMMERNIGHT",1; */ },{},{} -2751,Academy_Badge,Academy Of Badge,4,0,,100,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ if(BaseLevel<80) { bonus bMaxHP,400; bonus bMaxSP,200; } },{},{} -2752,Praxinus_C,Praccsinos,4,2,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus2 bAddClass,Class_All,5; bonus bMatkrate,5; },{},{} -2753,Beholder_Ring,Beholder Ring,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus2 bExpAddRace,RC_Formless,15; },{},{} -2754,Hallow_Ring,Hallow Ring,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus2 bExpAddRace,RC_Undead,15; },{},{} -2755,Clamorous_Ring,Clamorous Ring,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus2 bExpAddRace,RC_Brute,15; },{},{} -2756,Chemical_Ring,Chemical Ring,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus2 bExpAddRace,RC_Plant,15; },{},{} -2757,Insecticide_Ring,Insecticide Ring,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus2 bExpAddRace,RC_Insect,15; },{},{} -2758,Fisher_Ring,Fischer Ring,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus2 bExpAddRace,RC_Fish,15; },{},{} -2759,Decussate_Ring,Decussate Ring,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus2 bExpAddRace,RC_Demon,15; },{},{} -2760,Bloody_Ring,Bloody Ring,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus2 bExpAddRace,RC_DemiHuman,15; },{},{} -2761,Satanic_Ring,Satanic Ring,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus2 bExpAddRace,RC_Angel,15; },{},{} -2762,Dragoon_Ring,Dragon Ring,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus2 bExpAddRace,RC_Dragon,15; },{},{} -2763,Skul_Ring_C,Neo Skull Ring,4,0,,0,,0,,0,0xFFFFFFFE,18,2,136,,95,0,0,{ bonus2 bAddClass,Class_All,5; bonus bMatkrate,5; bonus bMaxHPrate,5; skill "MG_SIGHT",1; },{},{} -2764,Small_Fishing_Rod,Small Fishing Rod,4,10,,250,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{},{},{} -2765,Novice_Figure,Novice Figure,4,0,,100,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bMaxHP,70; if(BaseJob==Job_Novice||BaseJob==Job_SuperNovice) bonus bMaxHP,30; },{},{} -2766,Swordman_Figure,Swordman Figure,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bVit,1; if(Class==Job_Swordman) bonus bDef,2; },{},{} -2767,Acolyte_Figure,Acolyte Figure,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bInt,1; if(Class==Job_Acolyte) bonus bMaxSP,50; },{},{} -2768,Mage_Figure,Mage Figure,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bInt,1; if(Class==Job_Mage) bonus bSPrecovRate,5; },{},{} -2769,Archer_Figure,Archer Figure,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bDex,1; if(Class==Job_Archer) bonus bBaseAtk,10; },{},{} -2770,Thief_Figure,Thief Figure,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bAgi,1; if(Class==Job_Thief) bonus bAspdRate,3; },{},{} -2771,Merchant_Figure,Merchant Figure,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bStr,1; if(Class==Job_Merchant) bonus bCritical,5; },{},{} -2772,Krieger_Ring1,Glorious Ring,4,20,,0,,0,,0,0xFFFFFFFE,63,2,136,,81,0,0,{ bonus bMaxHP,300; bonus2 bSubEle,Ele_Water,10; bonus2 bSubEle,Ele_Wind,10; bonus2 bSubEle,Ele_Earth,10; bonus2 bSubEle,Ele_Fire,10; bonus bAspdRate,5; bonus bVariableCastrate,-3; bonus bHealPower,5; },{},{} -2773,Krieger_Ring2,Glorious Mass-Production Ring,4,20,,0,,0,,0,0xFFFFFFFE,63,2,136,,61,0,0,{ bonus bAllStats,2; },{},{} -2774,Krieger_Ring3,Glorious Popularized Ring,4,20,,0,,0,,0,0xFFFFFFFE,63,2,136,,0,0,0,{ bonus bAllStats,1; },{},{} -2775,Lure,Lure,4,20,,100,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{},{},{} -2776,Cool_Towel,Adventurer's Trusty Towel,4,20,,100,,,,1,0xFFFFFFFF,63,2,136,,0,0,0,{},{ sc_start SC_SUMMER,INFINITE_TICK,0; },{ sc_end SC_SUMMER; } -2777,Shaman_Ring,Shaman Ring,4,20,,100,,0,,1,0xFFFFFFFF,63,2,136,,30,0,0,{ bonus bMaxHP,50; bonus bSPrecovRate,3; },{},{} -2778,Shaman_Earing,Shaman Earrings,4,20,,100,,0,,0,0xFFFFFFFF,63,2,136,,1,0,0,{ bonus bInt,2; },{},{} -2779,Dark_Knight_Belt,Dark Knight Belt,4,20,,500,,1,,0,0xFFFFFFFF,63,2,136,,1,0,0,{ bonus bStr,2; bonus bAgi,1; },{},{} -2780,Dark_Knight_Glove,Dark Knight Glove,4,20,,500,,1,,0,0xFFFFFFFF,63,2,136,,80,0,0,{ autobonus "{ bonus bAspdRate,2; }",10,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }"; },{},{} -2781,Aumdura's_Grace,Aumdura's Benefit,4,0,,100,,1,,1,0xFFFFFFFF,63,2,136,,1,0,0,{ bonus bAllStats,1; bonus bMdef,1; },{},{} -2782,Ring_Of_Wise_King,Ring of the Ancient Wise King,4,20,,100,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bMaxHP,50; bonus bMaxSP,20; },{},{} -2783,Eyes_Stone_Ring,Eye Stone Ring,4,20,,100,,0,,1,0xFFFFFFFF,63,2,136,,70,0,0,{ bonus bCritical,2; bonus bMaxSP,25; },{},{} -2784,Oh_Holy_Night,Christmas Musicbox,4,20,,100,,0,,0,0xFFFFFFFF,63,2,136,,1,0,0,{ skill "ALL_WEWISH",1; },{},{} -2785,Orleans_Glove_M,Orlean's Gloves,4,20,,100,,0,,1,0xFFFFFFFE,18,2,136,,90,0,0,{ bonus bDex,2; bonus bMatkRate,3; },{},{} -2786,Spiritual_Ring_M,Spiritual Ring,4,20,,100,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bInt,2; bonus bDex,1; },{},{} -2787,Waterdrop_Brooch,Waterdrop Brooch,4,20,,200,,0,,1,0xFFFFFFFF,18,2,136,,1,0,0,{ bonus bMdef,2; bonus bMaxHPrate,1; bonus2 bSubEle,Ele_Water,5; },{},{} -2788,Bradium_Earing,Bradium Earring,4,20,,200,,0,,1,0xFFFFFFFF,18,2,136,,0,0,0,{ bonus bInt,1; bonus bDex,1; bonus bMatk,5; },{},{} -2789,Bradium_Ring,Bradium Ring,4,20,,200,,0,,1,0xFFFFFFFF,18,2,136,,0,0,0,{ bonus bStr,1; bonus bVit,1; bonus bBaseAtk,5; },{},{} -2790,Bradium_Brooch,Bradium Brooch,4,20,,200,,0,,1,0xFFFFFFFF,18,2,136,,0,0,0,{ bonus bAgi,1; bonus bFlee,4; if(readparam(bAgi)>=120) bonus bCritical,4; },{},{} -2791,Just_Got_Fish,Fresh Fish,4,20,,500,,0,,1,0xFFFFFFFF,63,2,136,,1,0,0,{ bonus bHit,3; },{},{} -2792,Ring_Of_Flame_Lord_I,Ring of Flame Lord,4,0,,0,,0,,0,0x00CFFF80,18,2,136,,0,0,0,{ bonus bStr,2; bonus bVit,1; bonus bBaseAtk,15; 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; },{},{} -2793,Ring_Of_Resonance_I,Ring of Resonance,4,0,,0,,2,,0,0x00CFFF80,18,2,136,,0,0,0,{ bonus bAgi,2; bonus bVit,1; bonus bMdef,2; 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; },{},{} -2794,Magic_Stone_Ring,Magic Stone Ring,4,0,,0,,0,,1,0x00000080,63,2,136,,99,0,0,{ bonus bStr,2; },{},{} -2795,Green_Apple_Ring,Green Apple Ring,4,0,,0,,0,,0,0xFFFFFFFE,63,2,136,,99,0,0,{ if(JobLevel<30) { bonus bAllStats,6-(JobLevel/5); } },{},{} -2796,Magical_Stone,Rocks,4,0,,200,,0,,0,0x00810204,63,2,136,,99,0,0,{ bonus2 bAddDamageClass,2047,10; bonus2 bAddDefMonster,2048,-10; bonus3 bAddMonsterIdDropItem,6152,2047,70; },{},{} -2797,Magical_Stone_,Rocks,4,0,,200,,0,,0,0x00810204,63,2,136,,99,0,0,{ bonus2 bAddDamageClass,2049,10; bonus2 bAddDefMonster,2050,-10; bonus3 bAddMonsterIdDropItem,6151,2049,70; },{},{} -2798,Will_Of_Exhausted_Angel,Will Of Exhausted Angel,4,0,,200,,0,,0,0x00008100,63,2,136,,99,0,0,{ if(strcharinfo(3)=="job3_arch02") { bonus2 bAddDefMonster,1761,50; bonus2 bAddDefMonster,1762,50; } },{},{} -2799,Kuirpenring,Kuirpenring,4,0,,100,,0,,1,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bMdef,1; },{},{} -2800,Accelerator,Accelerator,4,100000,,100,,0,,1,0x00000400,56,2,136,,99,0,0,{ bonus bAgi,2; },{},{} -2801,Hovering_Booster,Hovering Booster,4,100000,,2000,,0,,1,0x00000400,56,2,136,,99,0,0,{ bonus bAgi,1; },{},{} -2802,Suicidal_Device,Suicidal Device,4,500000,,1000,,0,,1,0x00000400,56,2,136,,99,0,0,{},{},{} -2803,Shape_Shifter,Shape Shifter,4,100000,,500,,0,,1,0x00000400,56,2,136,,99,0,0,{ bonus bInt,3; },{},{} -2804,Cooling_Device,Cooling Device,4,100000,,2500,,0,,1,0x00000400,56,2,136,,99,0,0,{ bonus bDex,1; },{},{} -2805,Mag_Field_Generator,Magnetic Field Generator,4,100000,,6000,,0,,1,0x00000400,56,2,136,,99,0,0,{ bonus bDex,1; },{},{} -2806,Barrier_Builder,Barrier Builder,4,150000,,8000,,3,,1,0x00000400,56,2,136,,99,0,0,{ bonus bDex,1; },{},{} -2807,Repair_Kit,Repair Kit,4,200000,,400,,0,,1,0x00000400,56,2,136,,99,0,0,{},{},{} -2808,Camouflage_Generator,Camouflague Generator,4,250000,,1000,,0,,1,0x00000400,56,2,136,,99,0,0,{ bonus bAgi,3; },{},{} -2809,High_Quality_Cooler,High Quality Cooler,4,100000,,2500,,0,,1,0x00000400,56,2,136,,99,0,0,{ bonus bDex,1; },{},{} -2810,Special_Cooler,Special Cooler,4,100000,,2500,,0,,1,0x00000400,56,2,136,,99,0,0,{ bonus bDex,1; },{},{} -2811,Freyja_SBracelet7,Freyja's Spirit Bracelet,4,20,,200,,1,,0,0xFFFFFFFF,63,2,136,,20,0,0,{ bonus bAllStats,1; },{},{} -2812,Freyja_SBracelet30,Freyja's Spirit Bracelet,4,20,,200,,1,,0,0xFFFFFFFF,63,2,136,,20,0,0,{ bonus bAllStats,1; },{},{} -2813,Freyja_SBracelet60,Freyja's Spirit Bracelet,4,20,,200,,1,,0,0xFFFFFFFF,63,2,136,,20,0,0,{ bonus bAllStats,1; },{},{} -2814,Freyja_SBracelet90,Freyja's Spirit Bracelet,4,20,,200,,1,,0,0xFFFFFFFF,63,2,136,,20,0,0,{ bonus bAllStats,1; },{},{} -2815,Th_Ring_Of_Water,Ring Of Water,4,20,,10,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bAllStats,1; bonus bMdef,2; },{},{} -2816,Radar_Ring1,Radar Ring,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus3 bAddMonsterIdDropItem,6206,1002,400; bonus3 bAddMonsterIdDropItem,6207,1161,400; bonus3 bAddMonsterIdDropItem,6208,1153,400; },{},{} -2817,Radar_Ring2,Radar Ring,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus3 bAddMonsterIdDropItem,6206,1026,400; bonus3 bAddMonsterIdDropItem,6207,1197,400; bonus3 bAddMonsterIdDropItem,6208,1504,400; },{},{} -2818,Radar_Ring3,Radar Ring,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus3 bAddMonsterIdDropItem,6206,1508,400; bonus3 bAddMonsterIdDropItem,6207,1098,400; bonus3 bAddMonsterIdDropItem,6208,1315,400; },{},{} -2819,Swordman_Manual,Swordsman Manual,4,0,,100,,0,,0,0x00000001,63,2,136,,1,0,0,{ bonus bMaxSP,100; skill "SM_BASH",1; skill "SM_PROVOKE",1; skill "SM_MAGNUM",1; },{},{} -2820,Thief_Manual,Thief Manual,4,0,,100,,0,,0,0x00000001,63,2,136,,1,0,0,{ bonus bMaxSP,100; skill "TF_DOUBLE",3; bonus bDoubleRate,15; skill "TF_STEAL",1; skill "TF_HIDING",1; skill "TF_POISON",1; },{},{} -2821,Acolyte_Manual,Acolyte Manual,4,0,,100,,0,,0,0x00000001,63,2,136,,1,0,0,{ bonus bMaxSP,100; skill "AL_HEAL",1; skill "AL_INCAGI",1; skill "AL_BLESSING",1; },{},{} -2822,Archer_Manual,Archer Manual,4,0,,100,,0,,0,0x00000001,63,2,136,,1,0,0,{ bonus bMaxSP,100; skill "AC_OWL",1; skill "AC_CONCENTRATION",1; },{},{} -2823,Merchant_Manual,Merchant Manual,4,0,,100,,0,,0,0x00000001,63,2,136,,1,0,0,{ bonus bMaxSP,100; skill "MC_DISCOUNT",1; skill "MC_OVERCHARGE",1; skill "MC_IDENTIFY",1; skill "MC_MAMMONITE",1; },{},{} -2824,Mage_Manual,Mage Manual,4,0,,100,,0,,0,0x00000001,63,2,136,,1,0,0,{ bonus bMaxSP,100; skill "MG_SRECOVERY",1; skill "MG_COLDBOLT",1; skill "MG_FIREWALL",1; skill "MG_FIREBOLT",1; },{},{} -2825,Shaman_EaringB,Shaman Earrings,4,20,,100,,0,,0,0xFFFFFFFF,63,2,136,,1,0,0,{ bonus bInt,2; },{},{} -2826,Dark_Knight_BeltB,Dark Knight Belt,4,20,,500,,1,,0,0xFFFFFFFF,63,2,136,,1,0,0,{ bonus bDex,2; bonus bAgi,1; },{},{} -2827,Dark_Knight_GloveB,Dark Knight Glove,4,20,,500,,1,,0,0xFFFFFFFF,63,2,136,,1,0,0,{ autobonus "{ bonus bMaxHPrate,10; }",10,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }"; },{},{} -2828,Upg_Clip,Upg Clip,4,20,,100,,0,,1,0xFFFFFFFF,63,2,136,,1,0,0,{ bonus bMaxSP,50; bonus bMaxHPrate,3; },{},{} -2829,Greed_Clip,Greed Clip,4,0,,0,,0,,0,0xFFFFFFFE,63,2,136,,10,0,0,{ skill "BS_GREED",1; },{},{} -2830,Magingiorde_C,Megingjard,4,20,,0,,2,,0,0xFFFFFFFF,63,2,136,,94,0,0,{ bonus bStr,40; bonus bMdef,7; },{},{} -2831,Brysinggamen_C,Brisingamen,4,20,,0,,1,,0,0xFFFFFFFF,63,2,136,,94,0,0,{ bonus bStr,6; bonus bInt,6; bonus bVit,6; bonus bAgi,6; bonus bLuk,10; bonus bMdef,5; },{},{} -2832,Freyja_Ring,Freyja's Ring,4,20,,0,,0,,0,0xFFFFFFFF,63,2,136,,1,0,0,{},{},{} -2833,Odin's_Recall,Odin's Recall,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,1,0,0,{ bonus bAllStats,1; skill "ALL_ODINS_RECALL",1; },{},{} -2834,F_All_In_One_Ring,All In One Ring,4,20,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bAllStats,1; bonus bNoCastCancel; bonus bVariableCastrate,10; skill "AL_HEAL",1; skill "AL_TELEPORT",1; },{},{} -2835,F_Critical_Ring_C,Critical Ring,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bCritical,10; },{},{} -2836,F_Glove_C,Glove,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bDex,4; },{},{} -2837,F_Safety_Ring_C,Safety Ring,4,1,,0,,5,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bMdef,5; },{},{} -2838,F_Necklace_C,Necklace,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bVit,4; },{},{} -2839,F_Ring_C,Ring,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bStr,4; },{},{} -2840,F_Rosary_C,Rosary,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bLuk,4; bonus bMdef,5; },{},{} -2841,Caracas_Ring,Caracas Ring,4,0,,0,,2,,0,0xFFFFFFFE,63,2,136,,99,0,0,{ bonus bInt,2; bonus bDex,2; bonus bMdef,2; bonus2 bExpAddRace,RC_All,10; bonus2 bDropAddRace,RC_All,10; },{},{} -2842,F_Earing_C,Earring,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bInt,3; },{},{} -2843,Gold_Trickle,Gold Trickle,4,20,,0,,0,,0,0xFFFFFFFF,63,2,136,,75,0,0,{ bonus bMaxSP,50; },{},{} -2844,El_Dicastes_Light,Light Of El Discastes,4,20,,100,,0,,0,0xFFFFFFFF,63,2,136,,80,0,0,{ skill "RETURN_TO_ELDICASTES",1; },{},{} -2845,No_Fear_Belt,No Fear Belt,4,0,,0,,2,,0,0xFFFFFFFF,63,2,136,,20,0,0,{ bonus bMdef,2; },{},{} -2846,E_All_In_One_Ring,All In One Ring,4,20,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bAllStats,1; },{},{} -2847,E_Critical_Ring_C,Critical Ring,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bCritical,10; },{},{} -2848,E_Glove_C,Glove,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bDex,4; },{},{} -2849,E_Safety_Ring_C,Safety Ring,4,1,,0,,5,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bMdef,5; },{},{} -2850,E_Ring_C,Ring,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bVit,4; },{},{} -2851,E_Necklace_C,Necklace,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bStr,4; },{},{} -2852,E_Rosary_C,Rosary,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bLuk,4; bonus bMdef,5; },{},{} -2853,Telekinetic_Orb,Telekinetic Orb,4,20,,200,,2,,0,0xFFFFFFFE,63,2,136,,110,0,0,{ bonus bMdef,1; bonus bInt,3; bonus bMaxSP,30; bonus2 bSkillAtk,"WL_SOULEXPANSION",10; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",10; bonus2 bSkillUseSP,"WL_SOULEXPANSION",-50; bonus2 bSkillUseSP,"SO_PSYCHIC_WAVE",-50; },{},{} -2854,Alchemy_Glove,Alchemy Glove,4,20,,100,,1,,1,0xFFFFFFFE,63,2,136,,125,0,0,{ bonus bMdef,2; bonus bInt,1; bonus2 bMagicAtkEle,Ele_Fire,10; bonus2 bMagicAtkEle,Ele_Water,-20; bonus2 bSubEle,Ele_Water,-30; bonus3 bAutoSpell,"MG_FIREBALL",5,30; bonus5 bAutoSpell,"MG_FIREBOLT",5,30,BF_MAGIC,1; },{},{} -2855,Whike_Black_Tail,Whike Black Tail,4,20,,100,,0,,0,0xFFFFFFFF,63,2,136,,45,0,0,{ bonus bCriticalRate,7; bonus bAspdRate,3; },{},{} -2856,Half_Megin,Half Megingjard,4,20,,0,,1,,0,0xFFFFFFFF,63,2,136,,47,0,0,{ bonus bMdef,3; bonus bStr,20; },{},{} -2857,Half_Brysing,Half Brisingamen,4,20,,0,,1,,0,0xFFFFFFFF,63,2,136,,47,0,0,{ bonus bStr,3; bonus bInt,5; bonus bVit,3; bonus bDex,3; bonus bAgi,3; bonus bLuk,5; bonus bMdef,2; },{},{} -2858,Pendant_Of_Guardian,Pendant Of Guardian,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,70,0,0,{ skill "ALL_GUARDIAN_RECALL",1; },{},{} -2859,Golden_Rod_Orb,Golden Rod Orb,4,20,,200,,2,,0,0x00000200,63,2,136,,100,0,0,{ bonus bMdef,2; bonus bInt,1; bonus2 bSubEle,Ele_Wind,15; bonus3 bAutoSpellWhenHit,"WZ_JUPITEL",3,30; },{},{} -2860,Aqua_Orb,Aqua Orb,4,20,,200,,2,,0,0x00000200,63,2,136,,100,0,0,{ bonus bMdef,2; bonus bInt,1; bonus2 bSubEle,Ele_Water,15; bonus3 bAutoSpellWhenHit,"WZ_FROSTNOVA",3,30; },{},{} -2861,Crimson_Orb,Crismon Orb,4,20,,200,,2,,0,0x00000200,63,2,136,,100,0,0,{ bonus bMdef,2; bonus bInt,1; bonus2 bSubEle,Ele_Fire,15; bonus3 bAutoSpellWhenHit,"WZ_SIGHTRASHER",3,30; },{},{} -2862,Forest_Orb,Forest Orb,4,20,,200,,2,,0,0x00000200,63,2,136,,100,0,0,{ bonus bMdef,2; bonus bInt,1; bonus2 bSubEle,Ele_Earth,15; bonus3 bAutoSpellWhenHit,"WZ_QUAGMIRE",3,30; },{},{} -2863,Ring_Of_Valkyrie,Ring Of Valkyrie,4,0,,0,,2,,0,0xFFFFFFFF,63,2,136,,1,0,0,{ bonus2 bExpAddClass,Class_All,5; bonus2 bDropAddRace,RC_All,5; },{},{} -2864,Light_Of_Cure,Light Of Cure,4,20,,0,,0,,0,0x00000100,63,2,136,,110,0,0,{ bonus bVit,2; bonus bHealPower,2; },{},{} -2865,Seal_Of_Cathedral,Seal Of Cathedral,4,20,,0,,0,,0,0x00000100,63,2,136,,110,0,0,{ bonus bInt,2; bonus bHealPower,2; },{},{} -2866,Ring_Of_Archbishop,Ring Of Archbishop,4,20,,0,,0,,0,0x00000100,63,2,136,,110,0,0,{ bonus bDex,2; bonus bHealPower,2; },{},{} -2867,Broken_Bamboo_Piece,Broken Bamboo Piece,4,20,,100,,2,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bMdef,2; },{},{} -2868,Green_Batik,Green Batik,4,20,,100,,1,,0,0xFFFFFFFE,63,2,136,,45,0,0,{ bonus bStr,1; bonus bInt,1; bonus bDex,1; bonus bMdef,1; },{},{} -2869,Colorful_Ketupat,Colorful Ketupat,4,20,,100,,0,,0,0xFFFFFFFE,63,2,136,,45,0,0,{ bonus bStr,1; bonus bInt,1; bonus bDex,1; },{},{} -2870,Tw_8th_Anni_Ring,Tw 8th Anni Ring,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bStr,5; bonus bInt,5; bonus bVit,5; bonus bDex,5; bonus bAgi,5; bonus bLuk,5; },{},{} -2871,Brazilian_Emblem,Brazilian Emblem,4,20,,100,,0,,1,0xFFFFFFFF,63,2,136,,60,0,0,{ bonus2 bAddClass,Class_All,3; bonus bMatkRate,3; bonus bMaxHP,50; bonus bMaxSP,20; },{},{} -2872,G_Honor_Certificate,G Honor Certificate,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,1,0,0,{},{},{} -2873,Cat_Hand_Glove,Cat Hand Glove,4,20,,100,,5,,1,0xFFFFFFFF,63,2,136,,1,0,0,{ bonus bAgi,1; bonus bVit,1; bonus bDex,1; bonus bLuk,1; },{},{} -2874,Buffalo_Horn,Buffalo Horn,4,20,,100,,0,,1,0xFFFFFFFF,63,2,136,,10,0,0,{ bonus bAspd,1; },{},{} -2875,RO_Appreciation_Ring,RO Appreciation Ring,4,20,,100,,0,,1,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; },{},{} -2876,Necklace_Spica,Necklace Spica,4,20,,200,,1,,0,0xFFFFFFFF,63,2,136,,10,0,0,{ bonus bMdef,1; },{},{} -2877,Glove_Sabik,Glove Sabik,4,20,,200,,1,,0,0xFFFFFFFF,63,2,136,,10,0,0,{ bonus bMdef,1; },{},{} -2878,Bracelet_Arunairi,Bracelet Arunairi,4,20,,200,,1,,0,0xFFFFFFFF,63,2,136,,10,0,0,{ bonus bMdef,1; },{},{} -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,,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,,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; },{},{} -2893,Cursed_Heart,Cursed Heart,4,20,,50,,0,,1,0xFFFFFFFF,63,2,136,,80,0,0,{},{},{} -2894,Glove_Of_Shura,Sura Gauntlet,4,20,,400,,1,,0,0x00008000,63,2,136,,130,0,0,{ bonus bStr,5; bonus bMaxSPrate,6; bonus bMaxHPrate,-6; if(readparam(bStr)>=120){ bonus bBaseAtk,30; } },{},{} -2895,Medal_Of_Valor1,Medal Of Valor1,4,0,,0,,4,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bVariableCastrate,-2; },{},{} -2896,Medal_Of_Valor2,Medal Of Valor2,4,0,,0,,4,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bAspdRate,3; },{},{} -2897,2011RWC_Necklace_J,2011RWC Necklace J,4,0,,100,,0,,0,0xFFFFFFFF,63,2,136,,1,0,0,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus2 bExpAddClass,Class_All,1; },{},{} -2898,Black_Rosary,Dark Rosary,4,20,,100,,0,,1,0xFFFFFFFF,63,2,136,,90,0,0,{ bonus bMdef,15; },{},{} -2899,Sound_Amplifier,Sound Amplification Device,4,20,,100,,0,,1,0x00080800,63,2,136,,90,0,0,{ bonus2 bSkillAtk,"WM_METALICSOUND",150; bonus2 bSkillUseSP,"WM_METALICSOUND",-60; bonus bVariableCastrate,-50; },{},{} -2900,Morrigane's_Belt_,Morrigane's Belt,4,30000,,200,,0,,1,0xFFFFFFFE,63,2,136,,61,0,0,{},{},{} -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 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 bFixedCastrate,-7; },{},{} -2908,Light_Ring,Light Ring,4,20,,100,,0,,1,0xFFFFFFFF,63,2,136,,0,0,0,{},{},{} -2909,Darkness_Ring,Darkness Ring,4,20,,100,,0,,1,0xFFFFFFFF,63,2,136,,0,0,0,{},{},{} -2910,Bakonawa_Tattoo,Bakunawa Agimat Tattoo,4,20,,100,,0,,0,0xFFFFFFFF,63,2,136,,1,0,0,{ bonus2 bAddClass,Class_All,7; bonus bAspdRate,10; },{},{} -2911,Bangungot_Tattoo,Bangungot Agimat Tattoo,4,20,,100,,0,,0,0xFFFFFFFF,63,2,136,,1,0,0,{ bonus bHealPower,4; bonus bHealPower2,7; },{},{} -2912,Xylitol_2011,Xylitol 2011,4,20,,300,,0,,1,0xFFFFFFFF,63,2,136,,0,0,0,{},{},{} -2913,Thief_Handcuff,Thief Handcuff,4,20,,1400,,0,,1,0xFFFFFFFF,63,2,136,,10,0,0,{ bonus bBaseAtk,5; },{},{} -2914,Wizard_Left_Eye,Wizard Left Eye,4,20,,100,,1,,1,0x00CFDF80,63,2,136,,0,0,0,{ bonus bInt,4; bonus bMdef,3; bonus bVariableCastrate,3; },{},{} -2915,Ettlang_Keepsake,Ettlang Keepsake,4,20,,50,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bMdef,10; },{},{} -2916,Fairy_Wing,Fairy Wing,4,0,,10,,0,,0,0xFFFFFFFF,63,2,136,,90,0,0,{ skill "ECLAGE_RECALL",1; },{},{} -2917,Str_Glove,Str Glove,4,75000,,100,,0,,0,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus bMaxHP,100; bonus bMaxSP,20; bonus bBaseAtk,(readparam(bStr)/10); if(readparam(bStr)>=110) bonus2 bAddClass,Class_All,1; },{},{} -2918,Int_Glove,Int Glove,4,75000,,100,,0,,0,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus bMaxHP,100; bonus bMaxSP,20; bonus bMatk,(readparam(bInt)/10); if(readparam(bInt)>=110) bonus bMatkRate,1; },{},{} -2919,Agi_Glove,Agi Glove,4,75000,,100,,0,,0,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus bMaxHP,100; bonus bMaxSP,20; bonus bFlee,(readparam(bAgi)/10); if(readparam(bAgi)>=110) bonus bFlee2,1; },{},{} -2920,Vit_Glove,Vit Glove,4,75000,,100,,0,,0,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus bMaxHP,100; bonus bMaxSP,20; bonus bMaxHP,(readparam(bVit)/10)*50; if(readparam(bVit)>=110) bonus bMaxHPrate,1; },{},{} -2921,Dex_Glove,Dex Glove,4,75000,,100,,0,,0,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus bMaxHP,100; bonus bMaxSP,20; bonus bHit,(readparam(bDex)/10); if(readparam(bDex)>=110) bonus bLongAtkRate,1; },{},{} -2922,Luk_Glove,Luk Glove,4,75000,,100,,0,,0,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus bMaxHP,100; bonus bMaxSP,20; bonus bCritical,(readparam(bLuk)/10); if(readparam(bLuk)>=110) bonus bCritAtkRate,1; },{},{} -2923,Str_Glove_,Str Glove,4,75000,,100,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus bMaxHP,100; bonus bMaxSP,20; bonus bBaseAtk,(readparam(bStr)/10); if(readparam(bStr)>=110) bonus2 bAddClass,Class_All,1; },{},{} -2924,Int_Glove_,Int Glove,4,75000,,100,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus bMaxHP,100; bonus bMaxSP,20; bonus bMatk,(readparam(bInt)/10); if(readparam(bInt)>=110) bonus bMatkRate,1; },{},{} -2925,Agi_Glove_,Agi Glove,4,75000,,100,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus bMaxHP,100; bonus bMaxSP,20; bonus bFlee,(readparam(bAgi)/10); if(readparam(bAgi)>=110) bonus bFlee2,1; },{},{} -2926,Vit_Glove_,Vit Glove,4,75000,,100,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus bMaxHP,100; bonus bMaxSP,20; bonus bMaxHP,(readparam(bVit)/10)*50; if(readparam(bVit)>=110) bonus bMaxHPrate,1; },{},{} -2927,Dex_Glove_,Dex Glove,4,75000,,100,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus bMaxHP,100; bonus bMaxSP,20; bonus bHit,(readparam(bDex)/10); if(readparam(bDex)>=110) bonus bLongAtkRate,1; },{},{} -2928,Luk_Glove_,Luk Glove,4,75000,,100,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus bMaxHP,100; bonus bMaxSP,20; bonus bCritical,(readparam(bLuk)/10); if(readparam(bLuk)>=110) bonus bCritAtkRate,1; },{},{} -2935,Sprint_Gloves,Sprint Gloves,4,20,,100,,0,,1,0x000FDF80,58,2,136,,1,0,0,{ bonus bVariableCastrate,-1; bonus bDelayrate,-1; },{},{} -2936,Recovery_Ring,Recovery Ring,4,20,,100,,5,,1,0xFFFFFFFF,63,2,136,,10,0,0,{ bonus bVit,1; bonus bMaxHP,250; bonus bMaxHPrate,5; bonus bHealPower2,5; },{},{} -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,,40,0,,{ bonus bMaxHP,100; bonus2 bSubRace,RC_Player_Human,5; },{},{} -2945,TE_Ring_Of_Rage,TE Ring Of Rage,4,0,,0,,,,0,0xFFFFFFFF,63,2,136,,40,0,,{ bonus2 bAddRace,RC_Player_Human,5; bonus2 bMagicAddRace,RC_Player_Human,5; },{},{} -2946,TE_Ring_Of_Defiance,TE Ring Of Defiance,4,0,,0,,,,0,0xFFFFFFFF,63,2,136,,40,0,,{ bonus bMdef,5; bonus2 bSubRace,RC_Player_Human,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,0,,{ bonus2 bExpAddClass,Class_Normal,10; },{},{} -2951,Kvasir_Ring_Blue,Kvasir Ring Blue,4,0,,100,,,,0,0xFFFFFFFF,63,2,136,,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,0,,{ bonus bMaxSP,30; skill "ECL_PEONYMAMY",1; },{},{} -2953,Kvasir_Ring_Green,Kvasir Ring Green,4,0,,100,,,,0,0xFFFFFFFF,63,2,136,,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; bonus2 bSubRace,RC_Player_Doram,3; },{},{} -2960,Badge_Of_Manny,Badge Of Manny,4,20,,200,,0,,1,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bAllStats,1; },{},{} -2963,Body_Power_Up_Ring,Physical Enhancer Ring,4,10,,100,,,,1,0xFFFFFFFF,63,2,136,,90,0,0,{ bonus2 bAddClass,Class_All,5; },{},{} -2964,Ring_Of_Spell_Explosion,Magic Intensifier Ring,4,10,,100,,,,1,0xFFFFFFFF,63,2,136,,90,0,0,{ bonus bMatkRate,5; },{},{} -2966,RWC_2012_Ring,RWC 2012 Ring,4,20,,200,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus2 bAddClass,Class_All,1; },{},{} -2967,RWC_2012_Ring_,Chambered RWC 2012 Ring,4,20,,200,,0,,1,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus2 bAddClass,Class_All,1; },{},{} -2968,RWC_2012_Pendant,RWC 2012 Pendant,4,20,,200,,0,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bMatkRate,1; },{},{} -2969,RWC_2012_Pendant_,Chambered RWC 2012 Pendant,4,20,,200,,0,,1,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bMatkRate,1; },{},{} -2971,Pocket_Watch,Pocket Watch,4,10,,200,,1,,1,0x800200,63,2,136,,80,0,,{ bonus bHPrecovRate,15; bonus bSPrecovRate,15; bonus bMatkRate,7; },{},{} -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,Hurt_Mind,Hurt Mind,4,10,,100,,0,,1,0xFFFFFFFF,63,2,136,,110,0,,{ bonus bMaxSP,200; skill "DC_SCREAM",3; },{},{} -2978,KindHeart,Kind Heart,4,10,,100,,0,,1,0xFFFFFFFF,63,2,136,,110,0,,{ bonus bMaxHP,500; bonus2 bHPRegenRate,300,10000; },{},{} -2979,Strawberry_Decoration,Strawberry Decoration,4,20,,500,,1,,1,0xFFFFFFFE,63,2,136,,1,,,{ bonus bAllStats,1; bonus3 bAutoSpellWhenHit,"WZ_FROSTNOVA",3,10; /* Confirm: Frost Nova cast chance */ },{},{} -2980,Evilspirit_Gloves,Evil Spirit Gloves,4,10,,100,,,,1,0xFFFFFFFF,63,2,136,,110,,,{ bonus bMaxHP,500; bonus bMaxSP,200; skill "PF_SPIDERWEB",1; bonus3 bAutoSpell,"SO_PSYCHIC_WAVE",1,20; bonus5 bAutoSpell,"HW_MAGICPOWER",1,10,BF_MAGIC,0; bonus5 bAutoSpell,"WZ_FROSTNOVA",10,10,BF_MAGIC,0; bonus5 bAutoSpell,"WZ_FROSTNOVA",10,20,BF_WEAPON,0; bonus5 bAutoSpellWhenHit,"DC_SCREAM",1,50,BF_WEAPON|BF_MAGIC,0; },{},{} -2981,RingOfHero,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,,,{ bonus2 bHPLossRate,10,5000; },{},{} -2984,Glove_Save_Rimnil,Glove Save Rimnil,4,10,,100,,,,1,0xFFFFFFFF,63,2,136,,30,,,{ bonus2 bExpAddRace,RC_All,5; bonus2 bSubRace,RC_All,-5; },{},{} -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,Winged_Ring_Of_Newoz,Oz's New Wing Ring,4,20,,100,,0,,1,0x00080000,56,1,136,,130,,,{ bonus bVariableCastrate,-25; },{},{} -2989,Floral_Bracelet_Of_Igu,Bloody Floral Decoration Bracelet,4,20,,100,,0,,1,0x00080000,56,0,136,,130,,,{ bonus bVariableCastrate,-25; },{},{} -2990,Pendant_Of_Harmony,Pendant of Harmony,4,20,,100,,0,,0,0xFFFFFFFF,63,2,136,,130,,,{ bonus bMatkRate,6; bonus bHPrecovRate,50; bonus bSPrecovRate,50; bonus2 bSubEle,Ele_Holy,5; autobonus "{ bonus2 bHPRegenRate,1000,5000; }",100,90000,BF_NORMAL; bonus4 bAutoSpellWhenHit,"PR_SANCTUARY",3,100,0; bonus bStr,-5; },{},{} -2991,Pendant_Of_Chaos,Pendant of Chaos,4,20,,100,,0,,0,0xFFFFFFFF,63,2,136,,130,,,{ bonus2 bAddClass,Class_All,6; bonus2 bSubEle,Ele_Dark,5; bonus2 bResEff,Eff_Confusion,10000; bonus2 bAddEff,Eff_Confusion,500; bonus3 bAutoSpellWhenHit,"NPC_WIDECONFUSE",2,30; bonus bInt,-5; },{},{} -2992,Pendant_Of_Maelstorm,Pendant of Maelstrom,4,20,,100,,0,,1,0xFFFFFFFF,63,2,136,,130,,,{ bonus2 bAddClass,Class_All,6; bonus bMatkRate,6; bonus bAllStats,1; bonus5 bAutoSpellWhenHit,"SC_MAELSTROM",1,100,BF_MAGIC,0; },{},{} -2995,Supplement_Part_Dex,Supplement Part Dex,4,25000,,100,,0,,1,0x00000400,56,2,136,,100,0,0,{ bonus bUseSPrate,-10; bonus bDelayrate,-10; bonus bVariableCastrate,-10; bonus2 bSkillCooldown,"NC_AXEBOOMERANG",-2000; },{},{} -2996,Upgrade_Part_Gun_Barrel,Reinforced Parts - Gun Barrel,4,10,,500,,,,1,0xFFFFFFFF,63,2,136,,100,,,{ bonus2 bAddClass,Class_All,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; },{},{} -2998,Shining_Trapezohedron,Shining Trapezohedron,4,0,,100,,,,1,0xFFFFFFFF,63,2,136,,90,,,{ bonus2 bSubEle,Ele_Holy,10; },{},{} -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; },{},{} -4002,Fabre_Card,Fabre Card,6,20,,10,,,,,,,,2,,,,,{ bonus bVit,1; bonus bMaxHP,100; },{},{} -4003,Pupa_Card,Pupa Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxHP,700; },{},{} -4004,Drops_Card,Drops Card,6,20,,10,,,,,,,,2,,,,,{ bonus bDex,1; bonus bHit,3; },{},{} -4005,Poring__Card,Santa Poring Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEle,Ele_Dark,20; },{},{} -4006,Lunatic_Card,Lunatic Card,6,20,,10,,,,,,,,2,,,,,{ bonus bLuk,1; bonus bCritical,1; bonus bFlee2,1; },{},{} -4007,Pecopeco_Egg_Card,Peco Peco Egg Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace,RC_Formless,20; },{},{} -4008,Picky_Card,Picky Card,6,20,,10,,,,,,,,16,,,,,{ bonus bStr,1; bonus bBaseAtk,10; },{},{} -4009,Chonchon_Card,Chonchon Card,6,20,,10,,,,,,,,64,,,,,{ bonus bAgi,1; bonus bFlee,2; },{},{} -4010,Wilow_Card,Willow Card,6,20,,10,,,,,,,,769,,,,,{ bonus bMaxSP,80; },{},{} -4011,Picky__Card,Picky Egg Card,6,20,,10,,,,,,,,16,,,,,{ bonus bVit,1; bonus bMaxHP,100; },{},{} -4012,Thief_Bug_Egg_Card,Thief Bug Egg Card,6,20,,10,,,,,,,,32,,,,,{ bonus bMaxHP,400; },{},{} -4013,Andre_Egg_Card,Andre Egg Card,6,20,,10,,,,,,,,32,,,,,{ bonus bMaxHPrate,5; },{},{} -4014,Roda_Frog_Card,Roda Frog Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxHP,400; bonus bMaxSP,50; },{},{} -4015,Condor_Card,Condor Card,6,20,,10,,,,,,,,4,,,,,{ bonus bFlee,10; },{},{} -4016,Thief_Bug_Card,Thief Bug Card,6,20,,10,,,,,,,,16,,,,,{ bonus bAgi,1; },{},{} -4017,Savage_Babe_Card,Savage Babe Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEff,Eff_Stun,500; },{},{} -4018,Andre_Larva_Card,Andre Larva Card,6,20,,10,,,,,,,,2,,,,,{ bonus bInt,1; bonus bMaxSP,10; },{},{} -4019,Hornet_Card,Hornet Card,6,20,,10,,,,,,,,2,,,,,{ bonus bStr,1; bonus bBaseAtk,3; },{},{} -4020,Farmiliar_Card,Familiar Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEff,Eff_Blind,500; bonus bBaseAtk,5; },{},{} -4021,Rocker_Card,Rocker Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDex,1; bonus bBaseAtk,5; },{},{} -4022,Spore_Card,Spore Card,6,20,,10,,,,,,,,136,,,,,{ bonus bVit,2; },{},{} -4023,Desert_Wolf_Babe_Card,Baby Desert Wolf Card,6,20,,10,,,,,,,,16,,,,,{ bonus bInt,1; },{},{} -4024,Plankton_Card,Plankton Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEff,Eff_Sleep,500; bonus bBaseAtk,5; },{},{} -4025,Skeleton_Card,Skeleton Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,10; bonus2 bAddEff,Eff_Stun,200; },{},{} -4026,Thief_Bug_Female_Card,Female Thief Bug Card,6,20,,10,,,,,,,,2,,,,,{ bonus bAgi,1; bonus bFlee,1; },{},{} -4027,Kukre_Card,Kukre Card,6,20,,10,,,,,,,,136,,,,,{ bonus bAgi,2; },{},{} -4028,Tarou_Card,Tarou Card,6,20,,10,,,,,,,,136,,,,,{ bonus bStr,2; },{},{} -4029,Wolf_Card,Wolf Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,15; bonus bCritical,1; },{},{} -4030,Mandragora_Card,Mandragora Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEle,Ele_Wind,20; },{},{} -4031,Pecopeco_Card,Peco Peco Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxHPrate,10; },{},{} -4032,Ambernite_Card,Ambernite Card,6,20,,10,,,,,,,,32,,,,,{ bonus bDef,2; },{},{} -4033,Poporing_Card,Poporing Card,6,20,,10,,,,,,,,136,,,,,{ skill "TF_DETOXIFY",1; },{},{} -4034,Worm_Tail_Card,Wormtail Card,6,20,,10,,,,,,,,136,,,,,{ bonus bDex,2; },{},{} -4035,Hydra_Card,Hydra Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; },{},{} -4036,Muka_Card,Muka Card,6,20,,10,,,,,,,,136,,,,,{ bonus bHPrecovRate,10; },{},{} -4037,Snake_Card,Snake Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEff,Eff_Poison,500; bonus bBaseAtk,5; },{},{} -4038,Zombie_Card,Zombie Card,6,20,,10,,,,,,,,64,,,,,{ bonus bHPrecovRate,20; },{},{} -4039,Stainer_Card,Stainer Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bResEff,Eff_Silence,2000; bonus bDef,1; },{},{} -4040,Creamy_Card,Creamy Card,6,20,,10,,,,,,,,136,,,,,{ skill "AL_TELEPORT",1; },{},{} -4041,Coco_Card,Coco Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bResEff,Eff_Sleep,2000; bonus bDef,1; },{},{} -4042,Steel_Chonchon_Card,Steel Chonchon Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bSubEle,Ele_Wind,10; bonus bDef,2; },{},{} -4043,Andre_Card,Andre Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,20; },{},{} -4044,Smokie_Card,Smokie Card,6,20,,10,,,,,,,,136,,,,,{ skill "TF_HIDING",1; },{},{ sc_end SC_HIDING; } -4045,Horn_Card,Horn Card,6,20,,10,,,,,,,,32,,,,,{ bonus bLongAtkDef,35; },{},{} -4046,Martin_Card,Martin Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bResEff,Eff_Blind,2000; bonus bDef,1; },{},{} -4047,Ghostring_Card,Ghostring Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDefEle,Ele_Ghost; bonus bHPrecovRate,-25; },{},{} -4048,Poison_Spore_Card,Poison Spore Card,6,20,,10,,,,,,,,136,,,,,{ skill "TF_POISON",3; },{},{} -4049,Vadon_Card,Vadon Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEle,Ele_Fire,20; },{},{} -4050,Thief_Bug_Male_Card,Male Thief Bug Card,6,20,,10,,,,,,,,64,,,,,{ bonus bAgi,2; },{},{} -4051,Yoyo_Card,Yoyo Card,6,20,,10,,,,,,,,136,,,,,{ bonus bFlee2,5; bonus bAgi,1; },{},{} -4052,Elder_Wilow_Card,Elder Willow Card,6,20,,10,,,,,,,,769,,,,,{ bonus bInt,2; },{},{} -4053,Vitata_Card,Vitata Card,6,20,,10,,,,,,,,136,,,,,{ skill "AL_HEAL",1; bonus bUseSPrate,25; },{},{} -4054,Angeling_Card,Angeling Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDefEle,Ele_Holy; },{},{} -4055,Marina_Card,Marina Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEff,Eff_Freeze,500; bonus bBaseAtk,5; },{},{} -4056,Dustiness_Card,Dustiness Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Wind,30; bonus bFlee,5; },{},{} -4057,Metaller_Card,Metaller Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEff,Eff_Silence,500; bonus bBaseAtk,5; },{},{} -4058,Thara_Frog_Card,Thara Frog Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_DemiHuman,30; bonus2 bSubRace,RC_Player_Human,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; bonus2 bAddRace,RC_Player_Doram,20; },{},{} -4061,Cornutus_Card,Cornutus Card,6,20,,10,,,,,,,,16,,,,,{ bonus bUnbreakableArmor; 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; },{},{} -4065,Kaho_Card,Kaho Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEle,Ele_Earth,20; },{},{} -4066,Orc_Warrior_Card,Orc Warrior Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_Brute,30; bonus2 bSubRace,RC_Player_Doram,30; },{},{} -4067,Megalodon_Card,Megalodon Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bResEff,Eff_Freeze,2000; bonus bDef,1; },{},{} -4068,Scorpion_Card,Scorpion Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace,RC_Plant,20; },{},{} -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; 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; },{},{} -4076,Magnolia_Card,Magnolia Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEff,Eff_Curse,500; bonus bBaseAtk,5; },{},{} -4077,Phen_Card,Phen Card,6,20,,10,,,,,,,,136,,,,,{ bonus bNoCastCancel; bonus bVariableCastrate,25; },{},{} -4078,Savage_Card,Savage Card,6,20,,10,,,,,,,,16,,,,,{ bonus bVit,3; },{},{} -4079,Mantis_Card,Mantis Card,6,20,,10,,,,,,,,136,,,,,{ bonus bStr,3; },{},{} -4080,Flora_Card,Flora Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace,RC_Fish,20; },{},{} -4081,Hode_Card,Hode Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Earth,30; bonus bFlee,5; },{},{} -4082,Desert_Wolf_Card,Desert Wolf Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddSize,Size_Small,15; bonus bBaseAtk,5; },{},{} -4083,Rafflesia_Card,Rafflesia Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_Fish,30; },{},{} -4084,Marine_Sphere_Card,Marine Sphere Card,6,20,,10,,,,,,,,136,,,,,{ skill "SM_MAGNUM",3; },{},{} -4085,Orc_Skeleton_Card,Orc Skeleton Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEle,Ele_Holy,20; },{},{} -4086,Soldier_Skeleton_Card,Soldier Skeleton Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritical,9; },{},{} -4087,Giearth_Card,Giearth Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bResEff,Eff_Confusion,10000; bonus2 bSubEle,Ele_Earth,15; },{},{} -4088,Frilldora_Card,Frilldora Card,6,20,,10,,,,,,,,4,,,,,{ skill "AS_CLOAKING",1; },{},{ sc_end SC_CLOAKING; } -4089,Sword_Fish_Card,Swordfish Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDefEle,Ele_Water; bonus bDef,1; },{},{} -4090,Munak_Card,Munak Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bResEff,Eff_Stone,1500; bonus2 bSubEle,Ele_Earth,5; bonus bDef,1; },{},{} -4091,Kobold_Card,Kobold Card,6,20,,10,,,,,,,,136,,,,,{ bonus bStr,1; bonus bCritical,4; },{},{} -4092,Skel_Worker_Card,Skeleton Worker Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddSize,Size_Medium,15; bonus bBaseAtk,5; },{},{} -4093,Obeaune_Card,Obeaune Card,6,20,,10,,,,,,,,136,,,,,{ skill "AL_CURE",1; },{},{} -4094,Archer_Skeleton_Card,Archer Skeleton Card,6,20,,10,,,,,,,,2,,,,,{ bonus bLongAtkRate,10; },{},{} -4095,Marse_Card,Marse Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Water,30; bonus bFlee,5; },{},{} -4096,Zenorc_Card,Zenorc Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEff,Eff_Poison,400; bonus bBaseAtk,10; },{},{} -4097,Matyr_Card,Matyr Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMaxHPrate,10; bonus bAgi,1; },{},{} -4098,Dokebi_Card,Dokebi Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDefEle,Ele_Wind; bonus bDef,1; },{},{} -4099,Pasana_Card,Pasana Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDefEle,Ele_Fire; bonus bDef,1; },{},{} -4100,Sohee_Card,Sohee Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMaxSPrate,15; bonus bSPrecovRate,3; },{},{} -4101,Sand_Man_Card,Sandman Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDefEle,Ele_Earth; bonus bDef,1; },{},{} -4102,Whisper_Card,Whisper Card,6,20,,10,,,,,,,,4,,,,,{ bonus bFlee,20; bonus2 bSubEle,Ele_Ghost,-50; },{},{} -4103,Horong_Card,Horong Card,6,20,,10,,,,,,,,136,,,,,{ skill "MG_SIGHT",1; },{},{ sc_end SC_SIGHT; } -4104,Requiem_Card,Requiem Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEff,Eff_Confusion,500; },{},{} -4105,Marc_Card,Marc Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bSubEle,Ele_Water,5; bonus2 bResEff,Eff_Freeze,10000; },{},{} -4106,Mummy_Card,Mummy Card,6,20,,10,,,,,,,,2,,,,,{ bonus bHit,20; },{},{} -4107,Verit_Card,Verit Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMaxHPrate,8; bonus bMaxSPrate,8; },{},{} -4108,Myst_Card,Myst Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Poison,30; bonus bFlee,5; },{},{} -4109,Jakk_Card,Jakk Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Fire,30; bonus bFlee,5; },{},{} -4110,Ghoul_Card,Ghoul Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bResEff,Eff_Poison,2000; bonus bDef,1; },{},{} -4111,Strouf_Card,Strouf Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace,RC_Demon,20; },{},{} -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; },{},{} -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; },{},{} -4119,Bathory_Card,Bathory Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDefEle,Ele_Dark; },{},{} -4120,Petit__Card,Sky Petite Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_Dragon,30; },{},{} -4121,Phreeoni_Card,Phreeoni Card,6,20,,10,,,,,,,,2,,,,,{ bonus bHit,100; },{},{} -4122,Deviruchi_Card,Deviruchi Card,6,20,,10,,,,,,,,769,,,,,{ bonus bStr,1; bonus2 bResEff,Eff_Blind,10000; },{},{} -4123,Eddga_Card,Eddga Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMaxHPrate,-25; bonus bNoWalkDelay; },{},{} -4124,Medusa_Card,Medusa Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_Demon,15; bonus2 bResEff,Eff_Stone,10000; },{},{} -4125,Deviace_Card,Deviace Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace,RC_DemiHuman,7; bonus2 bAddRace,RC_Player_Human,7; bonus2 bAddRace,RC_Brute,7; bonus2 bAddRace,RC_Player_Doram,7; bonus2 bAddRace,RC_Plant,7; bonus2 bAddRace,RC_Insect,7; },{},{} -4126,Minorous_Card,Minorous Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddSize,Size_Large,15; bonus bBaseAtk,5; },{},{} -4127,Nightmare_Card,Nightmare Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bResEff,Eff_Sleep,10000; bonus bAgi,1; },{},{} -4128,Golden_Bug_Card,Golden Thief Bug Card,6,20,,10,,,,,,,,32,,,,,{ bonus bNoMagicDamage,100; bonus bUseSPrate,100; },{},{} -4129,Baphomet__Card,Bapho Jr. Card,6,20,,10,,,,,,,,4,,,,,{ bonus bAgi,3; bonus bCritical,1; },{},{} -4130,Scorpion_King_Card,Scorpion King Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEle,Ele_Undead,20; },{},{} -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; 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; },{},{} -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; },{},{} -4138,Anubis_Card,Anubis Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_Angel,30; },{},{} -4139,Joker_Card,Joker Card,6,20,,10,,,,,,,,136,,,,,{ skill "TF_STEAL",1; },{},{} -4140,Knight_Of_Abyss_Card,Abysmal Knight Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddClass,Class_Boss,25; },{},{} -4141,Evil_Druid_Card,Evil Druid Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDefEle,Ele_Undead; bonus bInt,1; bonus bDef,1; },{},{} -4142,Doppelganger_Card,Doppelganger Card,6,20,,10,,,,,,,,2,,,,,{ bonus bAspdRate,10; },{},{} -4143,Orc_Hero_Card,Orc Hero Card,6,20,,10,,,,,,,,769,,,,,{ bonus bVit,3; bonus2 bResEff,Eff_Stun,10000; },{},{} -4144,Osiris_Card,Osiris Card,6,20,,10,,,,,,,,136,,,,,{ bonus bRestartFullRecover; },{},{} -4145,Berzebub_Card,Berzebub Card,6,20,,10,,,,,,,,136,,,,,{ bonus bVariableCastrate,-30; },{},{} -4146,Maya_Card,Maya Card,6,20,,10,,,,,,,,32,,,,,{ bonus bMagicDamageReturn,50; },{},{} -4147,Baphomet_Card,Baphomet Card,6,20,,10,,,,,,,,2,,,,,{ bonus bHit,-10; bonus bSplashRange,1; },{},{} -4148,Pharaoh_Card,Pharaoh Card,6,20,,10,,,,,,,,769,,,,,{ bonus bUseSPrate,-30; },{},{} -4149,Gargoyle_Card,Gargoyle Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12028,RC_Insect,100; },{},{} -4150,Goat_Card,Goat Card,6,20,,10,,,,,,,,16,,,,,{ if(getrefine()<6) { bonus bDef,2; bonus bMdef,5; } },{},{} -4151,Gajomart_Card,Gajomart Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bSubRace,RC_Plant,-20; bonus2 bExpAddRace,RC_Plant,10; },{},{} -4152,Galapago_Card,Galapago Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddItemGroupHealRate,IG_Juice,50; bonus3 bAddMonsterDropItem,531,RC_Insect,300; bonus3 bAddMonsterDropItem,532,RC_Insect,300; bonus3 bAddMonsterDropItem,534,RC_Insect,300; },{},{} -4153,Crab_Card,Crab Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,5; bonus2 bAddDamageClass,1266,30; },{},{} -4154,Rice_Cake_Boy_Card,Dumpling Child Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddItemGroupHealRate,IG_Candy,50; bonus3 bAddMonsterDropItem,529,RC_DemiHuman,300; bonus3 bAddMonsterDropItem,530,RC_DemiHuman,100; },{},{} -4155,Goblin_Leader_Card,Goblin Leader Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace2,RC2_Goblin,30; },{},{} -4156,Steam_Goblin_Card,Goblin Steamrider Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Formless,7; },{},{} -4157,Goblin_Archer_Card,Goblin Archer Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Undead,7; },{},{} -4158,Flying_Deleter_Card,Sky Deleter Card,6,20,,10,,,,,,,,16,,,,,{ bonus bHPrecovRate,-100; bonus bHPGainValue,100; },{},{} -4159,Nine_Tail_Card,Nine Tail Card,6,20,,10,,,,,,,,4,,,,,{ bonus bAgi,2; if(getrefine()>8) bonus bFlee,20; },{},{} -4160,Antique_Firelock_Card,Firelock Soldier Card,6,20,,10,,,,,,,,64,,,,,{ bonus bStr,2; if(getrefine()>8) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; } },{},{} -4161,Grand_Peco_Card,Grand Peco Card,6,20,,10,,,,,,,,769,,,,,{ bonus3 bAutoSpellWhenHit,"PR_GLORIA",1,50; },{},{} -4162,Grizzly_Card,Grizzly Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Blind,300; },{},{} -4163,Gryphon_Card,Gryphon Card,6,20,,10,,,,,,,,2,,,,,{ bonus bFlee,2; bonus bCritical,7; if(BaseClass==Job_Swordman) bonus3 bAutoSpell,"KN_BOWLINGBASH",5,10; },{},{} -4164,Gullinbursti_Card,Gullinbursti Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bSubRace,RC_Fish,-20; bonus2 bExpAddRace,RC_Fish,10; },{},{} -4165,Gig_Card,Gig Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSPGainRace,RC_Insect,5; },{},{ heal 0,-5; } -4166,Nightmare_Terror_Card,Nightmare Terror Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Curse,300; },{},{} -4167,Neraid_Card,Nereid Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSPGainRace,RC_Brute,5; bonus2 bSPGainRace,RC_Player_Doram,5; },{},{ heal 0,-5; } -4168,Dark_Lord_Card,Dark Lord Card,6,20,,10,,,,,,,,64,,,,,{ bonus3 bAutoSpellWhenHit,"WZ_METEOR",5,100; },{},{} -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,,,,,{ bonus3 bSPVanishRate,50,10,BF_WEAPON|BF_MAGIC|BF_MISC; if(BaseJob==Job_Sage) bonus bSPDrainValue,1; },{},{} -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; },{},{} -4176,Dullahan_Card,Dullahan Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Dragon,7; },{},{} -4177,Dryad_Card,Dryad Card,6,20,,10,,,,,,,,769,,,,,{ bonus3 bAddMonsterDropItem,993,RC_Plant,100; bonus2 bSubEle,Ele_Earth,10; },{},{} -4178,Dragon_Tail_Card,Dragon Tail Card,6,20,,10,,,,,,,,4,,,,,{ bonus bAgi,1; bonus bFlee,10; bonus2 bSkillAtk,"AC_DOUBLE",5; bonus2 bSkillAtk,"AC_SHOWER",5; },{},{} -4179,Dragon_Fly_Card,Dragon Fly Card,6,20,,10,,,,,,,,4,,,,,{ bonus bAgi,1; },{},{} -4180,Driller_Card,Driller Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSPGainRace,RC_Dragon,5; },{},{ heal 0,-5; } -4181,Disguise_Card,Disguise Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Silence,300+600*(readparam(bVit)>=77); },{},{} -4182,Diabolic_Card,Diabolic Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSPGainRace,RC_Demon,5; },{},{ heal 0,-5; } -4183,Vagabond_Wolf_Card,Vagabond Wolf Card,6,20,,10,,,,,,,,4,,,,,{ bonus bStr,1; },{},{} -4184,Lava_Golem_Card,Lava Golem Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace2,RC2_Golem,30; },{},{} -4185,Rideword_Card,Rideword Card,6,20,,10,,,,,,,,769,,,,,{ bonus bInt,1; if(BaseClass==Job_Acolyte) { bonus bInt,1; bonus bMdef,1; } },{},{} -4186,Raggler_Card,Raggler Card,6,20,,10,,,,,,,,64,,,,,{ bonus bStr,1; bonus bVit,1; },{},{} -4187,Raydric_Archer_Card,Raydric Archer Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12030,RC_Demon,100; },{},{} -4188,Leib_Olmai_Card,Leib Olmai Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bSubEle,Ele_Fire,10; bonus3 bAddMonsterDropItem,990,RC_Brute,100; },{},{} -4189,Wraith_Dead_Card,Wraith Dead Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Curse,600; },{},{} -4190,Wraith_Card,Wraith Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12027,RC_Undead,100; },{},{} -4191,Loli_Ruri_Card,Loli Ruri Card,6,20,,10,,,,,,,,16,,,,,{ bonus3 bAutoSpellWhenHit,"AL_HEAL",3,50; },{},{} -4192,Rotar_Zairo_Card,Rotar Zairo Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Fish,7; },{},{} -4193,Lude_Card,Lude Card,6,20,,10,,,,,,,,136,,,,,{ if(BaseJob==Job_Novice||BaseJob==Job_SuperNovice) bonus3 bAutoSpellWhenHit,"SM_ENDURE",1,200; },{},{} -4194,Rybio_Card,Rybio Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Stun,300+600*(readparam(bDex)>=77); },{},{} -4195,Leaf_Cat_Card,Leaf Cat Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bSubEle,Ele_Water,10; bonus3 bAddMonsterDropItem,991,RC_Fish,100; },{},{} -4196,Marin_Card,Marin Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddMonsterDropItem,909,2000; bonus2 bAddMonsterDropItem,7126,10; },{},{} -4197,Mastering_Card,Mastering Card,6,20,,10,,,,,,,,4,,,,,{ bonus bLuk,1; },{},{} -4198,Maya_Puple_Card,Maya Purple Card,6,20,,10,,,,,,,,769,,,,,{ bonus bIntravision; },{},{} -4199,Merman_Card,Merman Card,6,20,,10,,,,,,,,64,,,,,{ bonus bHPrecovRate,10; bonus bSPrecovRate,10; },{},{} -4200,Megalith_Card,Megalith Card,6,20,,10,,,,,,,,64,,,,,{ if(getrefine()<6) bonus bMdef,7; },{},{} -4201,Majoruros_Card,Majoruros Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Stun,600; },{},{} -4202,Civil_Servant_Card,Mao Guai Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEle,Ele_Ghost,20; },{},{} -4203,Mutant_Dragon_Card,Mutant Dragonoid Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,15; bonus3 bAutoSpell,"MG_FIREBALL",3+7*(getskilllv("MG_FIREBALL")==10),50; },{},{} -4204,Mini_Demon_Card,Mini Demon Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bSubRace,RC_Brute,-20; bonus2 bSubRace,RC_Player_Doram,-20; bonus2 bExpAddRace,RC_Brute,10; },{},{} -4205,Mimic_Card,Mimic Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddMonsterDropItem,603,10; },{},{} -4206,Mystcase_Card,Myst Case Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bAddMonsterDropItem,644,30; },{},{} -4207,Mysteltainn_Card,Mysteltainn Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubSize,Size_Small,25; bonus bDef,1; },{},{} -4208,Miyabi_Ningyo_Card,Miyabi Doll Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMaxSPrate,10; bonus2 bSkillAtk,"MG_FROSTDIVER",5; },{},{} -4209,Violy_Card,Violy Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAutoSpell,"BA_FROSTJOKER",1+4*(getskilllv("BA_FROSTJOKER")==5),20; },{},{} -4210,Wander_Man_Card,Wanderer Card,6,20,,10,,,,,,,,4,,,,,{ if(!isequipped(4172,4257,4230,4272)) bonus3 bAutoSpell,"RG_INTIMIDATE",1,20; if(BaseClass==Job_Thief) bonus bFlee,20; },{},{} -4211,Vocal_Card,Vocal Card,6,20,,10,,,,,,,,4,,,,,{ bonus bMdef,3; },{},{} -4212,Bon_Gun_Card,Bongun Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAutoSpell,"SM_BASH",1,20; bonus2 bAddSkillBlow,"SM_BASH",5; bonus2 bAddDefMonster,1026,-100; },{},{} -4213,Brilight_Card,Brilight Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Silence,600; },{},{} -4214,Bloody_Murderer_Card,Bloody Murderer Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Insect,7; },{},{} -4215,Blazzer_Card,Blazer Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddMonsterDropItemGroup,IG_Food,600; },{},{} -4216,Sasquatch_Card,Sasquatch Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Freeze,600; },{},{} -4217,Live_Peach_Tree_Card,Enchanted Peach Tree Card,6,20,,10,,,,,,,,32,,,,,{ bonus3 bAutoSpell,"AL_HEAL",1+9*(getskilllv("AL_HEAL")==10),20; },{},{} -4218,Succubus_Card,Succubus Card,6,20,,10,,,,,,,,16,,,,,{ bonus bVit,-3; bonus bHPrecovRate,-20; bonus bMaxHP,1000; },{},{} -4219,Sageworm_Card,Sage Worm Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddMonsterDropItem,715,30; bonus2 bAddMonsterDropItem,716,30; bonus2 bAddMonsterDropItem,717,30; },{},{} -4220,Solider_Card,Solider Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDef,2; bonus bMdef,2; },{},{} -4221,Skeleton_General_Card,Skeleton General Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bSubRace,RC_Insect,-20; bonus2 bExpAddRace,RC_Insect,10; },{},{} -4222,Skel_Prisoner_Card,Skeleton Prisoner Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Sleep,300; },{},{} -4223,Stalactic_Golem_Card,Stalactic Golem Card,6,20,,10,,,,,,,,769,,,,,{ bonus bDef,1; bonus2 bResEff,Eff_Stun,2000; },{},{} -4224,Stem_Worm_Card,Stem Worm Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12032,RC_Brute,100; },{},{} -4225,Stone_Shooter_Card,Stone Shooter Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,10; bonus bHit,10; },{},{} -4226,Sting_Card,Sting Card,6,20,,10,,,,,,,,32,,,,,{ bonus bDef,2; if(getrefine()>8) bonus bMdef,5; },{},{} -4227,Spring_Rabbit_Card,Spring Rabbit Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddItemGroupHealRate,IG_Meat,50; bonus3 bAddMonsterDropItem,517,RC_Brute,200; bonus3 bAddMonsterDropItem,528,RC_Brute,200; },{},{} -4228,Sleeper_Card,Sleeper Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12031,RC_Fish,100; },{},{} -4229,C_Tower_Manager_Card,Tower Keeper Card,6,20,,10,,,,,,,,769,,,,,{ bonus bInt,1; bonus bVariableCastrate,-5; },{},{} -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; },{},{} -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)); },{},{} -4237,Owl_Duke_Card,Owl Duke Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAutoSpell,"PR_IMPOSITIO",3,3; },{},{} -4238,Owl_Baron_Card,Owl Baron Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAutoSpell,"PR_LEXAETERNA",1,30; },{},{} -4239,Iron_Fist_Card,Iron Fist Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bSubRace,RC_Formless,-20; bonus2 bExpAddRace,RC_Formless,10; },{},{} -4240,Arclouse_Card,Arclouze Card,6,20,,10,,,,,,,,32,,,,,{ if(getrefine()<6) { bonus bDef,2; bonus bMdef,3; } },{},{} -4241,Archangeling_Card,Arc Angeling Card,6,20,,10,,,,,,,,769,,,,,{ bonus bMaxHP,300; if(readparam(bLuk)>=77) { bonus bHPrecovRate,100; bonus bSPrecovRate,100; } },{},{} -4242,Apocalips_Card,Apocalipse Card,6,20,,10,,,,,,,,16,,,,,{ bonus bVit,2; if(getrefine()>8) bonus bMaxHP,800; },{},{} -4243,Antonio_Card,Antonio Card,6,20,,10,,,,,,,,16,,,,,{ bonus3 bAutoSpellWhenHit,"AL_TELEPORT",1,500; },{},{} -4244,Alarm_Card,Alarm Card,6,20,,10,,,,,,,,64,,,,,{ bonus3 bAutoSpellWhenHit,"MG_SIGHT",1,200; bonus bMaxHP,300; bonus bVit,1; },{},{} -4245,Am_Mut_Card,Am Mut Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bSubRace,RC_DemiHuman,-20; bonus2 bSubRace,RC_Player_Human,-20; bonus2 bExpAddRace,RC_DemiHuman,10; },{},{} -4246,Assulter_Card,Assaulter Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_DemiHuman,7; bonus2 bCriticalAddRace,RC_Player_Human,7; },{},{} -4247,Aster_Card,Aster Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,5; bonus2 bAddDamageClass,1074,30; },{},{} -4248,Ancient_Mummy_Card,Ancient Mummy Card,6,20,,10,,,,,,,,32,,,,,{ bonus3 bAutoSpellWhenHit,"AL_CRUCIS",5,30; },{},{} -4249,Ancient_Worm_Card,Ancient Worm Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bSubRace,RC_Demon,-20; bonus2 bExpAddRace,RC_Demon,10; },{},{} -4250,Executioner_Card,Executioner Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubSize,Size_Large,25; bonus bDef,1; },{},{} -4251,Elder_Card,Elder Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace2,RC2_Guardian,40; },{},{} -4252,Alligator_Card,Alligator Card,6,20,,10,,,,,,,,136,,,,,{ bonus bLongAtkDef,5; },{},{} -4253,Alice_Card,Alice Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubClass,Class_Boss,40; bonus2 bSubClass,Class_Normal,-40; },{},{} -4254,Tirfing_Card,Ogretooth Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubSize,Size_Medium,25; bonus bDef,1; },{},{} -4255,Orc_Lady_Card,Orc Lady Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace2,RC2_Orc,30; },{},{} -4256,Orc_Archer_Card,Orc Archer Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12034,RC_DemiHuman,100; },{},{} -4257,Wild_Rose_Card,Wild Rose Card,6,20,,10,,,,,,,,64,,,,,{ bonus bAgi,1; if(BaseClass==Job_Thief) bonus bFlee2,5; },{},{} -4258,Wicked_Nymph_Card,Evil Nymph Card,6,20,,10,,,,,,,,769,,,,,{ bonus bInt,1; bonus bMaxSP,50; },{},{} -4259,Wooden_Golem_Card,Wooden Golem Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDef,1; bonus bHPrecovRate,30; },{},{} -4260,Wootan_Shooter_Card,Wootan Shooter Card,6,20,,10,,,,,,,,769,,,,,{ bonus bDef,1; bonus2 bResEff,Eff_Confusion,2000; },{},{} -4261,Wootan_Fighter_Card,Wootan Fighter Card,6,20,,10,,,,,,,,769,,,,,{ bonus bDef,1; bonus2 bResEff,Eff_Bleeding,2000; },{},{} -4262,Evil_Cloud_Hermit_Card,Cloud Hermit Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12029,RC_Plant,100; },{},{} -4263,Incant_Samurai_Card,Samurai Spector Card,6,20,,10,,,,,,,,2,,,,,{ bonus bIgnoreDefClass,Class_Normal; bonus bHPrecovRate,-100; bonus2 bHPLossRate,666,10000; },{},{ 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; } } -4264,Wind_Ghost_Card,Wind Ghost Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAutoSpell,"WZ_JUPITEL",3+7*(getskilllv("WZ_JUPITEL")==10),20; },{},{} -4265,Li_Me_Mang_Ryang_Card,Jing Guai Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12033,RC_Angel,100; },{},{} -4266,Eclipse_Card,Eclipse Card,6,20,,10,,,,,,,,4,,,,,{ bonus bVit,1; },{},{} -4267,Explosion_Card,Explosion Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bSubRace,RC_Dragon,-20; bonus2 bExpAddRace,RC_Dragon,10; },{},{} -4268,Injustice_Card,Injustice Card,6,20,,10,,,,,,,,2,,,,,{ bonus3 bAutoSpell,"AS_SONICBLOW",1,50; },{},{} -4269,Incubus_Card,Incubus Card,6,20,,10,,,,,,,,769,,,,,{ bonus bInt,-3; bonus bSPrecovRate,-20; bonus bMaxSP,150; },{},{} -4270,Giant_Spider_Card,Giant Spider Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Poison,600; },{},{} -4271,Giant_Honet_Card,Giant Hornet Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bSubEle,Ele_Wind,10; bonus3 bAddMonsterDropItem,992,RC_Insect,100; },{},{} -4272,Dancing_Dragon_Card,Zhu Po Long Card,6,20,,10,,,,,,,,136,,,,,{ bonus bAgi,1; bonus bCritical,3; },{},{} -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 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; bonus bSPDrainValue,-1; if(BaseClass==Job_Merchant) bonus bUnbreakableWeapon; },{},{} -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; },{},{} -4285,Choco_Card,Choco Card,6,20,,10,,,,,,,,4,,,,,{ bonus bFlee2,5; bonus bFlee,10; },{},{} -4286,Karakasa_Card,Karakasa Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Confusion,300+600*(readparam(bStr)>=77); },{},{} -4287,Kapha_Card,Kapha Card,6,20,,10,,,,,,,,4,,,,,{ if(getrefine()<6) bonus bMdef,8; },{},{} -4288,Carat_Card,Carat Card,6,20,,10,,,,,,,,769,,,,,{ bonus bInt,2; if(getrefine()>8) bonus bMaxSP,150; },{},{} -4289,Caterpillar_Card,Caterpillar Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSPGainRace,RC_Plant,5; },{},{ heal 0,-5; } -4290,Cat_O_Nine_Tail_Card,Cat O' Nine Tails Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMdef,3; bonus bMagicDamageReturn,5; },{},{} -4291,Kobold_Leader_Card,Kobold Leader Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace2,RC2_Kobold,30; },{},{} -4292,Kobold_Archer_Card,Kobold Archer Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Plant,7; },{},{} -4293,Cookie_Card,Cookie Card,6,20,,10,,,,,,,,136,,,,,{ bonus bLuk,2; bonus2 bSkillAtk,"AL_HOLYLIGHT",10; },{},{} -4294,Quve_Card,Quve Card,6,20,,10,,,,,,,,136,,,,,{ if(BaseJob==Job_Novice||BaseJob==Job_SuperNovice) bonus3 bAutoSpellWhenHit,"AL_INCAGI",1,100; },{},{} -4295,Kraben_Card,Kraben Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Blind,600; },{},{} -4296,Cramp_Card,Cramp Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bGetZenyNum,500,1; },{},{} -4297,Cruiser_Card,Cruiser Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Brute,7; bonus2 bCriticalAddRace,RC_Player_Doram,7; },{},{} -4298,Cremy_Fear_Card,Creamy Fear Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Confusion,600; },{},{} -4299,Clock_Card,Clock Card,6,20,,10,,,,,,,,16,,,,,{ bonus3 bAutoSpellWhenHit,"CR_AUTOGUARD",3+7*(getskilllv("CR_AUTOGUARD")==10),30; },{},{ sc_end SC_AUTOGUARD; } -4300,Chimera_Card,Chimera Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Poison,300+600*(BaseJob==Job_Assassin); },{},{} -4301,Killer_Mantis_Card,Killer Mantis Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Bleeding,600; },{},{} -4302,Tao_Gunka_Card,Tao Gunka Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxHPrate,100; bonus bDefRate,-50; bonus bMdefRate,-50; },{},{} -4303,Whisper_Boss_Card,Giant Whisper Card,6,20,,10,,,,,,,,4,,,,,{ bonus bFlee,10; if(readparam(bStr)>=80) bonus bBaseAtk,20; if(readparam(bVit)>=80) bonus bMaxHPrate,3; if(readparam(bLuk)>=80) bonus bCritical,3; },{},{} -4304,Tamruan_Card,Tamruan Card,6,20,,10,,,,,,,,32,,,,,{ bonus bDef,2; bonus2 bSkillAtk,"CR_SHIELDCHARGE",10; bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",10; },{},{} -4305,Turtle_General_Card,Turtle General Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddClass,Class_All,20; bonus3 bAutoSpell,"SM_MAGNUM",10,30; },{},{} -4306,Toad_Card,Toad Card,6,20,,10,,,,,,,,4,,,,,{ bonus bFlee2,1; },{},{} -4307,Kind_Of_Beetle_Card,Beetle King Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSPGainRace,RC_Fish,5; },{},{ heal 0,-5; } -4308,Tri_Joint_Card,Tri Joint Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSPGainRace,RC_Formless,5; },{},{ heal 0,-5; } -4309,Parasite_Card,Parasite Card,6,20,,10,,,,,,,,32,,,,,{ bonus bDef,1; bonus2 bSubRace,RC_Formless,5; },{},{} -4310,Panzer_Goblin_Card,Panzer Goblin Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Demon,7; },{},{} -4311,Permeter_Card,Permeter Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bSubEle,Ele_Dark,15; bonus2 bSubEle,Ele_Undead,15; },{},{} -4312,Fur_Seal_Card,Seal Card,6,20,,10,,,,,,,,2,,,,,{ bonus bFlee,3; bonus bHit,10; if(BaseClass==Job_Acolyte) { bonus2 bCriticalAddRace,RC_Undead,9; bonus2 bCriticalAddRace,RC_Demon,9; } },{},{} -4313,Punk_Card,Punk Card,6,20,,10,,,,,,,,4,,,,,{ bonus4 bAutoSpellWhenHit,"WZ_QUAGMIRE",1+4*(getskilllv("WZ_QUAGMIRE")==5),50,0; },{},{} -4314,Penomena_Card,Penomena Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_Formless,30; },{},{} -4315,Pest_Card,Pest Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Stone,300+600*(readparam(bInt)>=77); },{},{} -4316,Fake_Angel_Card,False Angel Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSPGainRace,RC_Angel,5; },{},{ heal 0,-5; } -4317,Mobster_Card,Mobster Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,15; if(BaseClass==Job_Thief) bonus bCritical,4; },{},{} -4318,Knight_Windstorm_Card,Stormy Knight Card,6,20,,10,,,,,,,,2,,,,,{ bonus3 bAutoSpell,"WZ_STORMGUST",1,20; bonus2 bAddEff,Eff_Freeze,2000; },{},{} -4319,Freezer_Card,Freezer Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMaxHP,300; if(getrefine()>=9) bonus2 bSkillAtk,"SM_BASH",10; },{},{} -4320,Bloody_Knight_Card,Bloody Knight Card,6,20,,10,,,,,,,,2,,,,,{ bonus3 bAutoSpell,"WZ_METEOR",1,20; },{},{} -4321,Hylozoist_Card,Hylozoist Card,6,20,,10,,,,,,,,136,,,,,{ bonus bClassChange,100; },{},{} -4322,High_Orc_Card,High Orc Card,6,20,,10,,,,,,,,32,,,,,{ bonus bDef,1; bonus bShortWeaponDamageReturn,5; },{},{} -4323,Garm_Baby_Card,Hatii Babe Card,6,20,,10,,,,,,,,2,,,,,{ bonus3 bAutoSpell,"MG_FROSTDIVER",3,50; },{},{} -4324,Garm_Card,Hatii Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Freeze,5000; },{},{} -4325,Harpy_Card,Harpy Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Neutral,15; bonus2 bSkillAtk,"MG_NAPALMBEAT",5; },{},{} -4326,See_Otter_Card,Sea-Otter Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddItemGroupHealRate,IG_Fish,50; bonus3 bAddMonsterDropItem,551,RC_Fish,300; bonus3 bAddMonsterDropItem,544,RC_Fish,300; },{},{} -4327,Blood_Butterfly_Card,Bloody Butterfly Card,6,20,,10,,,,,,,,136,,,,,{ bonus bVariableCastrate,30; bonus bNoCastCancel; bonus2 bSkillAtk,"MG_FIREWALL",5; },{},{} -4328,Hyegun_Card,Yao Jun Card,6,20,,10,,,,,,,,4,,,,,{ bonus bFlee,15; bonus bCritical,1; },{},{} -4329,Phendark_Card,Phendark Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSPGainRace,RC_DemiHuman,5; bonus2 bSPGainRace,RC_Player_Human,5; },{},{ heal 0,-5; } -4330,Dark_Snake_Lord_Card,Evil Snake Lord Card,6,20,,10,,,,,,,,769,,,,,{ bonus bInt,3; bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Curse,10000; },{},{} -4331,Heater_Card,Heater Card,6,20,,10,,,,,,,,136,,,,,{ bonus bCritical,3; if(BaseClass==Job_Swordman) bonus bFlee2,3; },{},{} -4332,Waste_Stove_Card,Waste Stove Card,6,20,,10,,,,,,,,16,,,,,{ bonus bBaseAtk,5; bonus bInt,1; },{},{} -4333,Venomous_Card,Venomous Card,6,20,,10,,,,,,,,16,,,,,{ bonus3 bAddEffWhenHit,Eff_Poison,3000,ATF_TARGET|ATF_SELF; },{},{} -4334,Noxious_Card,Noxious Card,6,20,,10,,,,,,,,4,,,,,{ bonus bLongAtkDef,10; bonus2 bSubEle,Ele_Neutral,10; },{},{} -4335,Pitman_Card,Pitman Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSkillAtk,"WZ_EARTHSPIKE",5; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",5; },{},{ heal 0,-50; } -4336,Ungoliant_Card,Ungoliant Card,6,20,,10,,,,,,,,769,,,,,{ bonus bHPrecovRate,10; bonus2 bResEff,Eff_Bleeding,10000; },{},{} -4337,Porcellio_Card,Porcellio Card,6,20,,10,,,,,,,,16,,,,,{ bonus bBaseAtk,25; bonus bDef,-5; },{},{} -4338,Obsidian_Card,Obsidian Card,6,20,,10,,,,,,,,16,,,,,{ bonus bVit,readparam(bDex)/18; },{},{} -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; bonus bNoKnockback; },{},{} -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; } -4346,Ygnizem_Card,Egnigem Cenia Card,6,20,,10,,,,,,,,16,,,,,{ bonus bStr,readparam(bInt)/18; },{},{} -4347,Armaia_Card,Armeyer Dinze Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12053,RC_Fish,50; },{},{} -4348,Whikebain_Card,Wickebine Tres Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAutoSpell,"RG_STRIPARMOR",1,50; },{},{} -4349,Erend_Card,Errende Ebecee Card,6,20,,10,,,,,,,,136,,,,,{ bonus4 bAutoSpellWhenHit,"AL_PNEUMA",1,50,0; },{},{} -4350,Rawrel_Card,Laurell Weinder Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSkillAtk,"WZ_FROSTNOVA",3; bonus2 bSkillAtk,"WZ_STORMGUST",3; },{},{ heal 0,-50; } -4351,Kavac_Card,Kavach Icarus Card,6,20,,10,,,,,,,,4,,,,,{ if(getrefine()<=4) { bonus bFlee,20; bonus bFlee2,1; } else { bonus bFlee,10; } },{},{} -4352,B_Ygnizem_Card,General Egnigem Cenia Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bHPRegenRate,50,10000; bonus2 bSPRegenRate,10,10000; },{},{} -4353,Removal_Card,Remover Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxHP,800-40*getrefine(); bonus bHPrecovRate,10; },{},{} -4354,Gemini_Card,Gemini-S58 Card,6,20,,10,,,,,,,,769,,,,,{ if(readparam(bAgi)>=90) { bonus2 bResEff,Eff_Silence,3000; bonus2 bResEff,Eff_Stun,3000; } if(readparam(bVit)>=80) { bonus2 bResEff,Eff_Stone,5000; bonus2 bResEff,Eff_Sleep,5000; } },{},{} -4355,Gremlin_Card,Gremlin Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12043,RC_Brute,50; },{},{} -4356,Beholder_Card,Beholder Card,6,20,,10,,,,,,,,136,,,,,{ skill "SA_CASTCANCEL",1; },{},{} -4357,B_Seyren_Card,Lord Knight Card,6,20,,10,,,,,,,,769,,,,,{ skill "LK_BERSERK",1; bonus bMaxHPrate,-50; },{},{} -4358,Seyren_Card,Seyren Windsor Card,6,20,,10,,,,,,,,769,,,,,{ bonus bStr,getrefine()-6; },{},{} -4359,B_Eremes_Card,Assassin Cross Card,6,20,,10,,,,,,,,4,,,,,{ skill "AS_CLOAKING",3; },{},{ sc_end SC_CLOAKING; } -4360,Eremes_Card,Eremes Guile Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bCriticalAddRace,RC_DemiHuman,10; bonus2 bCriticalAddRace,RC_Player_Human,10; },{},{} -4361,B_Harword_Card,MasterSmith Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBreakWeaponRate,1000; bonus bBreakArmorRate,700; },{},{} -4362,Harword_Card,Howard Alt-Eisen Card,6,20,,10,,,,,,,,2,,,,,{ bonus bAspdRate,-5; bonus bHit,30; },{},{} -4363,B_Magaleta_Card,High Priest Card,6,20,,10,,,,,,,,16,,,,,{ bonus5 bAutoSpellWhenHit,"HP_ASSUMPTIO",5,50,BF_WEAPON|BF_MAGIC,0; },{},{} -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; },{},{} -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; },{},{} -4371,Archdam_Card,Archdam Card,6,20,,10,,,,,,,,16,,,,,{ bonus bBaseAtk,10; bonus bVariableCastrate,20; },{},{} -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,,,,,{ .@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; } },{},{} -4379,Acidus__Card,Blue Acidus Card,6,20,,10,,,,,,,,769,,,,,{ if(getrefine()<=4) { bonus bSPrecovRate,5; bonus bMaxSP,80; } else { bonus bMaxSP,40; } },{},{} -4380,Ferus_Card,Red Ferus Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSkillAtk,"WZ_FIREPILLAR",5; bonus2 bSkillAtk,"WZ_METEOR",5; },{},{ heal 0,-50; } -4381,Ferus__Card,Green Ferus Card,6,20,,10,,,,,,,,64,,,,,{ bonus bVit,1; bonus bMaxHPrate,10; },{},{} -4382,Novus__Card,Yellow Novus Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxHP,500; bonus bHPrecovRate,10; },{},{} -4383,Novus_Card,Red Novus Card,6,20,,10,,,,,,,,16,,,,,{ bonus3 bAddEffWhenHit,Eff_Confusion,3000,ATF_TARGET|ATF_SELF; },{},{} -4384,Hydro_Card,Hydrolancer Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAutoSpell,"SA_SPELLBREAKER",1,100; },{},{} -4385,Dragon_Egg_Card,Dragon Egg Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12048,RC_Dragon,50; },{},{} -4386,Detale_Card,Detardeurus Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMdef,-20; bonus2 bResEff,Eff_Freeze,10000; bonus5 bAutoSpellWhenHit,"SA_LANDPROTECTOR",1,70,BF_MAGIC,0; },{},{} -4387,Ancient_Mimic_Card,Ancient Mimic Card,6,20,,10,,,,,,,,16,,,,,{ bonus bAgi,readparam(bLuk)/18; },{},{} -4388,Deathword_Card,Death Word Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSkillAtk,"MG_NAPALMBEAT",5; bonus2 bSkillAtk,"MG_SOULSTRIKE",5; bonus2 bSkillAtk,"HW_NAPALMVULCAN",5; },{},{ heal 0,-50; } -4389,Plasma_Card,Plasma Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddMonsterDropItem,12118,50; bonus2 bAddMonsterDropItem,12119,50; bonus2 bAddMonsterDropItem,12120,50; bonus2 bAddMonsterDropItem,12121,50; },{},{} -4390,Breeze_Card,Breeze Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,5; bonus2 bAddEff,Eff_Bleeding,500; },{},{} -4391,Retribution_Card,Baroness of Retribution Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAddMonsterDropItem,12068,RC_Angel,50; },{},{} -4392,Observation_Card,Dame of Sentinel Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDex,readparam(bVit)/18; },{},{} -4393,Shelter_Card,Mistress of Shelter Card,6,20,,10,,,,,,,,16,,,,,{ bonus bInt,readparam(bStr)/18; },{},{} -4394,Solace_Card,Lady Solace Card,6,20,,10,,,,,,,,2,,,,,{ if(BaseJob==Job_Priest) bonus3 bAutoSpell,"CR_GRANDCROSS",5,20; },{},{} -4395,Tha_Maero_Card,Maero of Thanatos Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,5; bonus3 bAutoSpell,"AL_DECAGI",3,50; },{},{} -4396,Tha_Odium_Card,Odium of Thanatos Card,6,20,,10,,,,,,,,64,,,,,{ bonus bAgi,getrefine()-5; },{},{} -4397,Tha_Despero_Card,Despero of Thanatos Card,6,20,,10,,,,,,,,32,,,,,{ bonus bInt,getrefine()-6; },{},{} -4398,Tha_Dolor_Card,Dolor of Thanatos Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bMagicAddRace,RC_Angel,10; },{},{} -4399,Thanatos_Card,Memory of Thanatos Card,6,20,,10,,,,,,,,2,,,,,{ bonus bDefRatioAtkClass,Class_All; bonus bSPDrainValue,-1; bonus bDef,-30; bonus bFlee,-30; },{},{} -4400,Aliza_Card,Aliza Card,6,20,,10,,,,,,,,16,,,,,{ bonus3 bAutoSpellWhenHit,"DC_WINKCHARM",1,50+50*(BaseJob==Job_Dancer); },{},{} -4401,Alicel_Card,Alicel Card,6,20,,10,,,,,,,,16,,,,,{ bonus bFlee,10; bonus bDef,-5; },{},{} -4402,Aliot_Card,Aliot Card,6,20,,10,,,,,,,,4,,,,,{ if(BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Thief) { bonus bStr,2; bonus bMaxHPrate,5; } if(BaseClass==Job_Mage||BaseClass==Job_Archer||BaseClass==Job_Acolyte) { bonus bInt,2; bonus bMaxSPrate,5; } },{},{} -4403,Kiel_Card,Kiel-D-01 Card,6,20,,10,,,,,,,,769,,,,,{ bonus bDelayRate,-30; },{},{} -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; 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; },{},{} -4411,Vanberk_Card,Vanberk Card,6,20,,10,,,,,,,,769,,,,,{ bonus bStr,2; autobonus "{ bonus bCritical,100; }",5,5000,0,"{ specialeffect2 EF_ENHANCE; }"; },{},{} -4412,Isilla_Card,Isilla Card,6,20,,10,,,,,,,,769,,,,,{ bonus bInt,2; autobonus "{ bonus bVariableCastrate,-50; bonus bFlee,30; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }"; },{},{} -4413,Hodremlin_Card,Hodremlin Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubSize,Size_All,15; autobonus2 "{ bonus bFlee2,30; }",3,10000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_WIND; }"; },{},{} -4414,Seeker_Card,Seeker Card,6,20,,10,,,,,,,,32,,,,,{ skill "MG_STONECURSE",1; bonus2 bResEff,Eff_Stone,3000; bonus bMdef,10; },{},{} -4415,Snowier_Card,Snowier Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddMonsterDropItem,536,500; bonus2 bAddItemHealRate,536,100; },{},{} -4416,Siroma_Card,Siroma Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bSkillAtk,"MG_COLDBOLT",25; bonus2 bVariableCastrate,"MG_COLDBOLT",-25; },{},{} -4417,Ice_Titan_Card,Ice Titan Card,6,20,,10,,,,,,,,64,,,,,{ bonus bVit,2; autobonus2 "{ bonus bDef,10; }",3,10000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_FREEZED; }"; },{},{} -4418,Gazeti_Card,Gazeti Card,6,20,,10,,,,,,,,136,,,,,{ bonus3 bAutoSpell,"MG_COLDBOLT",2,100; },{},{} -4419,Ktullanux_Card,Ktullanux Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEle,Ele_Fire,50; bonus5 bAutoSpellWhenHit,"WZ_FROSTNOVA",10,20,BF_WEAPON|BF_MAGIC,0; },{},{} -4420,Muscipular_Card,Muscipular Card,6,20,,10,,,,,,,,32,,,,,{ bonus3 bAutoSpellWhenHit,"AL_HEAL",1,100; bonus3 bAutoSpellWhenHit,"AL_INCAGI",1,100; },{},{} -4421,Drosera_Card,Drosera Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCriticalLong,15; },{},{} -4422,Roween_Card,Roween Card,6,20,,10,,,,,,,,4,,,,,{ bonus bFlee,5; bonus bFlee2,3; bonus2 bAddEle,Ele_Water,10; bonus2 bCriticalAddRace,RC_Fish,15; },{},{} -4423,Galion_Card,Galion Card,6,20,,10,,,,,,,,136,,,,,{ bonus bHit,5; bonus2 bAddEle,Ele_Water,5; },{},{} -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,,,,,{ .@i = getiteminfo(getequipid(EQI_HAND_R),11); if(.@i==W_1HSWORD||.@i==W_2HSWORD) { 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)==W_BOW) { 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; },{},{} -4431,Kasa_Card,Kasa Card,6,20,,10,,,,,,,,4,,,,,{ bonus3 bAutoSpell,"MG_FIREBALL",5,20; bonus3 bAutoSpell,"MG_FIREBOLT",5,20; },{},{} -4432,Magmaring_Card,Magmaring Card,6,20,,10,,,,,,,,4,,,,,{ bonus bBaseAtk,5; bonus2 bAddEle,Ele_Earth,10; bonus2 bCriticalAddRace,RC_Brute,15; bonus2 bCriticalAddRace,RC_Player_Doram,15; bonus2 bCriticalAddRace,RC_Plant,15; },{},{} -4433,Imp_Card,Imp Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bSkillAtk,"MG_FIREBOLT",25; bonus2 bVariableCastrate,"MG_FIREBOLT",-25; },{},{} -4434,Knocker_Card,Knocker Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bAddRace,RC_Formless,5; bonus3 bAddMonsterDropItem,756,RC_Formless,10; bonus3 bAddMonsterDropItem,757,RC_Formless,10; },{},{} -4435,Zombie_Slaughter_Card,Zombie Slaughter Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bAddRace,RC_DemiHuman,1; bonus2 bAddRace,RC_Player_Human,1; bonus2 bMagicAddRace,RC_DemiHuman,1; bonus2 bMagicAddRace,RC_Player_Human,1; bonus bHPGainValue,50; },{},{} -4436,Ragged_Zombie_Card,Ragged Zombie Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bCriticalAddRace,RC_DemiHuman,5; bonus2 bCriticalAddRace,RC_Player_Human,5; bonus2 bAddRace,RC_DemiHuman,1; bonus2 bAddRace,RC_Player_Human,1; bonus2 bMagicAddRace,RC_DemiHuman,1; bonus2 bMagicAddRace,RC_Player_Human,1; bonus2 bAddEff2,Eff_Bleeding,10; },{},{} -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,,,,,{ .@i = getiteminfo(getequipid(EQI_HAND_R),11); if(.@i==W_STAFF || .@i==W_2HSTAFF) { 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_Human,50; },{},{} -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; },{},{} -4453,Hilsrion_Card,Hillsrion Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,25; },{},{} -4454,Light_Up_Card1,Light Up Card,6,20,,10,,,,,,,,2,,,,,{},{},{} -4455,Light_Up_Card2,Light Up Card,6,20,,10,,,,,,,,2,,,,,{},{},{} -4456,Nidhogg_Shadow_Card,Nidhoggur Shadow Card,6,20,,10,,,,,,,,16,,,,,{ bonus bInt,5; if (Class == Job_High_Wizard || Class == Job_Baby_Warlock || Class == Job_Warlock || Class == Job_Warlock_T) bonus bFixedCastrate,-50; },{},{} -4457,Nahtzigger_Card,Naght Sieger Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bMagicAtkEle,Ele_Ghost,30; },{},{} -4458,Duneirre_Card,Duneyrr Card,6,20,,10,,,,,,,,769,,,,,{ bonus bBaseAtk,10; autobonus "{ bonus bFlee2,10; }",10,10000,0,"{ specialeffect2 EF_HASTEUP; }"; },{},{} -4459,Lata_Card,Rata Card,6,20,,10,,,,,,,,769,,,,,{ bonus bMatk,10; autobonus "{ bonus bFixedCastrate,-50; }",5,4000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }"; },{},{} -4460,Ringco_Card,Rhyncho Card,6,20,,10,,,,,,,,769,,,,,{ bonus bHealPower,4; bonus2 bSkillUseSP,"AL_HEAL",-15; },{},{} -4461,Pillar_Card,Phylla Card,6,20,,10,,,,,,,,769,,,,,{ bonus bDex,1; bonus bAgi,1; autobonus "{ bonus bCritical,20; }",15,4000,0,"{ specialeffect2 EF_ENHANCE; }"; },{},{} -4462,Hardrock_Mommos_Card,Hardrock Mammoth Card,6,20,,10,,,,,,,,16,,,,,{ .@r = getrefine(); bonus bDef,5; if(.@r>=12) { bonus bDef,20; bonus bMaxHPrate,10; } if(.@r>=14) { bonus bMaxHPrate,3; } },{},{} -4463,Tendrilion_Card,Tendrilrion Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritical,5; .@r = getrefine(); if(.@r>=12) { bonus bBaseAtk,35; } if(.@r>=14) { bonus bCritical,10; } },{},{} -4464,Aunoe_Card,Aunoe Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,20; },{},{} -4465,Panat_Card,Fanat Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,10; if(getiteminfo(getequipid(EQI_HAND_R),11)==W_2HSWORD) { .@r = getrefine(); if(.@r>=10) { bonus bAspd,1; } if(.@r>=14) { bonus bAspd,1; } } },{},{} -4466,Beholder_Master_Card,Beholder Master Card,6,20,,10,,,,,,,,2,,,,,{ bonus bLongAtkRate,3; if(getiteminfo(getequipid(EQI_HAND_R),11)==W_BOW) { .@r = getrefine(); if(.@r>=10) { bonus bAspd,1; } if(.@r>=14) { bonus bAspd,1; } } },{},{} -4467,Heavy_Metaling_Card,Heavy Metaling Card,6,20,,10,,,,,,,,64,,,,,{ bonus bStr,2; if(BaseClass==Job_Merchant){ bonus2 bSkillAtk,"MC_CARTREVOLUTION",50; } },{},{} -4468,Pinguicula_Dark_Card,Dark Pinguicula Card,6,20,,10,,,,,,,,769,,,,,{ bonus bBaseAtk,10; bonus2 bAddMonsterDropItem,7932,10; bonus2 bAddMonsterDropItem,7933,10; bonus2 bAddMonsterDropItem,7934,10; bonus2 bAddMonsterDropItem,7935,10; bonus2 bAddMonsterDropItem,7936,10; bonus2 bAddMonsterDropItem,7937,10; },{},{} -4469,Naga_Card,Naga Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bMagicAddRace,RC_Fish,10; },{},{} -4470,Nepenthes_Card,Nepenthes Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bMagicAddRace,RC_Plant,10; },{},{} -4471,Egg_Of_Draco_Card,Draco Egg Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bMagicAddRace,RC_Dragon,10; },{},{} -4472,Bradium_Goram_Card,Bradium Golem Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bMagicAddRace,RC_Brute,10; bonus2 bMagicAddRace,RC_Player_Doram,10; },{},{} -4473,Ancient_Tree_Card,Ancient Tree Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bMagicAddRace,RC_Undead,10; },{},{} -4474,Jakudam_Card,Zakudam Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bMagicAddRace,RC_DemiHuman,10; bonus2 bMagicAddRace,RC_Player_Human,10; },{},{} -4475,Cobalt_Mineral_Card,Cobalt Mineral Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bMagicAddRace,RC_Formless,10; },{},{} -4476,Pinguicula_Card,Pinguicula Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bMagicAddRace,RC_Insect,10; },{},{} -4477,Hell_Apocalips_Card,Hell Apocalypse Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bMagicAddRace,RC_Demon,10; },{},{} -4478,Light_Up_Card3,Light Up Card,6,20,,10,,,,,,,,64,,,,,{},{},{} -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,,,,,{ .@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; bonus bUseSPrate,((getrefine()>14)?35:50); },{},{} -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); },{},{} -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,,,,,{ .@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,,,,,{ .@rate = (getrefine()>=15?75:50); bonus2 bAddSize,Size_All,.@rate; bonus2 bMagicAddSize,Size_All,.@rate; },{},{} -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); },{},{} -4498,Sealed_Lady_Tanee_Card,Sealed Lady Tanee Card,6,20,,10,,,,,,,,64,,,,,{ .@r = getrefine(); bonus bMaxHPrate,((.@r>14)?-50:-60); bonus bMaxSPrate,50; bonus2 bAddMonsterDropItem,513,100; bonus2 bAddItemHealRate,513,((.@r>14)?80:50); },{},{} -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,,,,,{ .@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); bonus bNoWalkDelay; },{},{} -4505,Scaraba_Card,Scaraba Card,6,20,,10,,,,,,,,136,,,,,{ bonus bMatk,20; bonus bMaxSPrate,-1; },{},{} -4506,Dolomedes_Card,Dolomedes Card,6,20,,10,,,,,,,,769,,,,,{ bonus bDex,2; if(BaseClass==Job_Archer){ bonus bDex,getrefine()/3; } },{},{} -4507,Q_Scaraba_Card,Queen Scaraba Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace2,RC2_SCARABA,30; bonus2 bAddMonsterDropItem,12806,30; },{},{} -4508,Gold_Scaraba_Card,Gold Scaraba Card,6,20,,10,,,,,,,,136,,,,,{ bonus bBaseAtk,20; bonus bMaxHPrate,-1; },{},{} -4509,Gold_Q_Scaraba_Card,Gold Queen Scaraba Card,6,20,,10,,,,,,,,769,,,,,{ bonus bInt,3; bonus2 bSubRace,RC_Insect,10; if(getrefine()>=9) { bonus2 bSubRace,RC_Insect,5; } },{},{} -4510,Miming_Card,Miming Card,6,20,,10,,,,,,,,2,,,,,{ bonus3 bAutoSpell,"WM_LULLABY_DEEPSLEEP",1,30; },{},{} -4511,Little_Fatum_Card,Little Fatum Card,6,20,,10,,,,,,,,2,,,,,{ bonus3 bAddEff,Eff_Silence,500,ATF_MAGIC; },{},{} -4512,Parus_Card,Parus Card,6,20,,10,,,,,,,,769,,,,,{ bonus bHealPower,3; if(BaseClass==Job_Acolyte){ bonus bHealPower,getrefine()/2; } },{},{} -4513,Angra_Mantis_Card,Angra Mantis Card,6,20,,10,,,,,,,,769,,,,,{ bonus bCritAtkRate,2; if(BaseClass==Job_Thief){ bonus bCritAtkRate,getrefine()/2; } },{},{} -4514,Pom_Spider_Card,Pom Spider Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace,RC_Undead,20; },{},{} -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,,,,,{ 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_TARGET; },{},{} -4521,Sedora_Card,Sedora Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,15; },{},{} -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; } -4526,Odd_Coelacanth_Card,Weird Coelacanth Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxSPrate,5; bonus bMdef,50; },{},{} -4527,Black_Coelacanth_Card,Dark Coelacanth Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxHPrate,10; bonus bDef,100; },{},{} -4528,Mutant_Coelacanth_Card,Mutant Coelacanth Card,6,20,,10,,,,,,,,769,,,,,{ .@r = getrefine(); bonus bMatkRate,2+(.@r/2); bonus bMaxHPrate,-.@r/2; },{},{} -4529,Cruel_Coelacanth_Card,Violent Coelacanth Card,6,20,,10,,,,,,,,769,,,,,{ .@r = getrefine(); bonus2 bAddClass,Class_All,2+(.@r/2); bonus bMaxSPrate,-.@r/2; },{},{} -4530,Siorava_Card,Siorava Card,6,20,,10,,,,,,,,769,,,,,{ bonus bLuk,2; if(BaseClass==Job_Merchant){ bonus bLuk,2+(getrefine()/3); } },{},{} -4531,Red_Eruma_Card,Red Eruma Card,6,20,,10,,,,,,,,2,,,,,{ bonus3 bAddEff,Eff_Curse,100,ATF_MAGIC; },{},{} -4532,Wild_Rider_Card,Wild Rider Card,6,20,,10,,,,,,,,64,,,,,{ bonus bAgi,1; bonus3 bAutoSpell,"AL_INCAGI",1,50; },{},{} -4533,Mini_Octopus_Card,Octopus Card,6,20,,10,,,,,,,,2,,,,,{ bonus3 bAddEff,Eff_Blind,100,ATF_MAGIC; },{},{} -4534,Giant_Octopus_Card,Giant Octopus Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxHPrate,12; skill "WZ_WATERBALL",5; },{},{} -4535,Sealed_Rand_Card,Sealed Randgris Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddClass,Class_All,(getrefine()>=15?8:5); bonus5 bAutoSpell,"SA_DISPELL",1,1,BF_NORMAL,1; bonus bUnbreakableWeapon; },{},{} -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,,,,,{ .@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_Human,.@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; .@rate = ((getrefine()>14)?120:150); bonus bVariableCastrate,.@rate; bonus bSPrecovRate,-.@rate; },{},{ heal 0,((getrefine()>14)?-2000:-3000); } -4542,SLD_Detale_Card,Sealed Detale Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bResEff,Eff_Freeze,(getrefine()>=15?6000:4000); bonus5 bAutoSpell,"SA_LANDPROTECTOR",1,1,BF_MAGIC,1; bonus bMdef,-20; },{},{} -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; .@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; },{},{} -4546,Val'khiri_Card,Val'khiri Card,6,20,,10,,,,,,,,2,,,,,{},{},{} -4547,Upd_Byorgue_Card,Enhanced Byorgue Card,6,20,,10,,,,,,,,16,,,,,{ if(BaseJob==Job_Rogue) { bonus bMatkRate,10; bonus2 bAddClass,Class_All,10; bonus bMaxHPrate,getrefine()/2; } /* Adds a chance of inflicting Confuse on target when using Body Paint skill. */ },{},{} -4548,Upd_Salamander_Card,Enhanced Salamander Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSkillAtk,"WZ_FIREPILLAR",40; bonus2 bSkillAtk,"WZ_METEOR",40; },{},{} -4549,Upd_Maya_Puple_Card,Upd Maya Puple Card,6,20,,10,,,,,,,,769,,,,,{ bonus bIntravision; 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)==W_BOW) { bonus2 bSkillAtk,"RA_ARROWSTORM",50; bonus bCriticalLong,25+10*(getequiprefinerycnt(EQI_HAND_R)/4); bonus bHit,5; bonus3 bAutoSpell,"HT_PHANTASMIC",1,100; } },{},{} -4552,Manny_Card,Manny Card,6,20,,10,,,,,,,,136,,,,,{ bonus bMaxHP,10; },{},{} -4553,Sid_Card,Sid Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxHP,100; },{},{} -4554,Diego_Card,Diego Card,6,20,,10,,,,,,,,4,,,,,{ bonus bMaxHP,100; },{},{} -4555,Scrat_Card,Scrat Card,6,20,,10,,,,,,,,769,,,,,{ bonus bMaxHP,100; },{},{} -4556,Fenrir_Card,Fenrir Card,6,10,,10,,,,,,,,769,,,,,{ bonus bMatk,50+getrefine()*5; bonus bFixedCastrate,-70; },{},{} -4557,Fenrir_Card_,Weakened Fenrir Card,6,10,,10,,,,,,,,769,,,,,{ bonus bMatk,25; },{},{} -4559,M_Morocc_Card,Evil Morocc Card,6,20,,100,,,,,,,,64,,,,,{ bonus bAspd,1; bonus bMaxSPrate,-10; },{},{} -4560,Clown_Card,Clown Alphoccio Card,6,20,,10,,,,,,,,16,,,,,{ skill "BA_POEMBRAGI",10; bonus bFlee,(readparam(bVit)>=110)?40:20; },{},{} -4561,Professor_Card,Professor Celia Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMatkRate,(readparam(bDex)>=110)?14:7; bonus5 bAutoSpellWhenHit,"SA_LANDPROTECTOR",5,70,BF_MAGIC,0; },{},{} -4562,Champion_Card,Champion Chen Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddClass,Class_All,(readparam(bAgi)>=110)?14:7; bonus5 bAutoSpellWhenHit,"MO_INVESTIGATE",5,70,BF_WEAPON,1; },{},{} -4563,Creator_Card,Creator Flamel Card,6,20,,10,,,,,,,,16,,,,,{ bonus bCritical,(readparam(bStr)>=110)?40:20; bonus5 bAutoSpellWhenHit,"AM_ACIDTERROR",5,70,BF_WEAPON,1; },{},{} -4564,Stalker_Card,Stalker Gertie Card,6,20,,10,,,,,,,,16,,,,,{ bonus bHit,(readparam(bLuk)>=110)?40:20; bonus5 bAutoSpellWhenHit,"ST_FULLSTRIP",1,70,BF_WEAPON,1; },{},{} -4565,Paladin_Card,Paladin Randel Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxHPrate,(readparam(bInt)>=110)?20:10; bonus5 bAutoSpellWhenHit,"CR_GRANDCROSS",10,70,BF_WEAPON,0; },{},{} -4566,Gypsy_Card,Gypsy Trentini Card,6,20,,10,,,,,,,,16,,,,,{ skill "DC_FORTUNEKISS",10; bonus bFlee,(readparam(bVit)>=110)?40:20; },{},{} -4567,Alphoccio_Card,Alphoccio Card,6,20,,10,,,,,,,,4,,,,,{ bonus bFlee,10; if(BaseJob==Job_Bard) { bonus bMaxHPrate,10; bonus bMaxSPrate,5;} },{},{} -4568,Ceila_Card,Celia Card,6,20,,10,,,,,,,,4,,,,,{ bonus bFlee,10; skill "SA_ABRACADABRA",1; },{},{} -4569,Chen_Card,Chen Card,6,20,,10,,,,,,,,4,,,,,{ bonus bFlee,10; skill "MO_CALLSPIRITS",2; },{},{} -4570,Flamel_Card,Flamel Card,6,20,,10,,,,,,,,4,,,,,{ bonus bFlee,10; bonus2 bAddItemGroupHealRate,IG_Flamel_Card,200; },{},{} -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,Daehyon_Card,General Daehyon Card,6,20,,10,,,,,,,,2,,,,,{ .@i = getiteminfo(getequipid(EQI_HAND_R),11); if(.@i==W_1HSWORD||.@i==W_2HSWORD) { bonus bBaseAtk,100; } },{},{} -4575,Soheon_Card,Armed Guard Soheon Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,10; if(getiteminfo(getequipid(EQI_HAND_R),11) == W_DAGGER) { .@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; },{},{} -4578,Pyuriel_Card,Angry Student Pyuriel Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritAtkRate,30; bonus2 bSubRace,RC_All,-10; bonus2 bSubRace,RC_Player_Human,10; },{},{} -4579,Lora_Card,Warrior Lola Card,6,20,,10,,,,,,,,2,,,,,{ if(getiteminfo(getequipid(EQI_HAND_R),11) == W_MACE) { bonus bBaseAtk,20; bonus bCritical,10; } .@r = getrefine(); bonus bBaseAtk,.@r; bonus bCritical,.@r; },{},{} -4580,Kades_Card,Dark Guardian Kades Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Water,50; bonus2 bSubEle,Ele_Earth,50; bonus2 bSubEle,Ele_Fire,50; bonus2 bSubEle,Ele_Wind,50; bonus2 bSubEle,Ele_Dark,50; bonus2 bSubEle,Ele_Undead,50; bonus2 bSubEle,Ele_Holy,-100; bonus2 bSubEle,Ele_Ghost,-100; },{},{} -4581,Rudo_Card,Rudo Card,6,20,,10,,,,,,,,64,,,,,{ autobonus "{ bonus bAgi,44; heal 0,-40; }",500,3000,0,"{ sc_start SC_SPEEDUP1,3000,50; }"; },{},{} -4582,Bungisngis_Card,Bungisngis Card,6,20,,10,,,,,,,,769,,,,,{ bonus bMaxHPrate,(getrefine()/2); },{},{} -4583,Engkanto_Card,Engkanto Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bAddEle,Ele_Poison,30; bonus2 bMagicAddEle,Ele_Poison,30; bonus2 bIgnoreDefRaceRate,RC_Plant,30; },{},{} -4584,Manananggal_Card,Manananggal Card,6,20,,10,,,,,,,,2,,,,,{ bonus bSPDrainValue,1; bonus bMaxSPrate,-1; },{},{} -4585,Mangkukulam_Card,Mangkukulam Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxSPrate,10; bonus bHPGainValue,-666; },{},{} -4586,Tikbalang_Card,Tikbalang Card,6,20,,10,,,,,,,,769,,,,,{ bonus bMatk,10; bonus2 bMagicAtkEle,Ele_Wind,(getrefine()>=9)?10:5; },{},{} -4587,Tiyanak_Card,Tiyanak Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bCriticalAddRace,RC_Brute,12; bonus2 bCriticalAddRace,RC_Player_Doram,12; bonus2 bCriticalAddRace,RC_Fish,12; bonus2 bCriticalAddRace,RC_DemiHuman,12; },{},{} -4588,Wakwak_Card,Wakwak Card,6,20,,10,,,,,,,,4,,,,,{ bonus bBaseAtk,5*readparam(bStr)/10; },{},{} -4589,Jejeling_Card,Jejeling Card,6,20,,10,,,,,,,,4,,,,,{ bonus bMaxHP,200*readparam(bVit)/10; },{},{} -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 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); },{},{} -4596,AntiqueBook_Card,Antique Book Card,6,20,,10,,,,,,,,4,,,,,{ bonus bMatk,5*(readparam(bInt)/10); },{},{} -4597,LichternB_Card,Lichtern Blue Card,6,20,,10,,,,,,,,769,,,,,{ bonus bMatk,10; bonus2 bMagicAtkEle,Ele_Water,(getrefine()>=9)?10:5; },{},{} -4598,LichternY_Card,Lichtern Green Card,6,20,,10,,,,,,,,769,,,,,{ bonus bMatk,10; bonus2 bMagicAtkEle,Ele_Ghost,(getrefine()>=9)?10:5; },{},{} -4599,LichternR_Card,Lichtern Red Card,6,20,,10,,,,,,,,769,,,,,{ bonus bMatk,10; bonus2 bMagicAtkEle,Ele_Fire,(getrefine()>=9)?10:5; },{},{} -4600,LichternG_Card,Lichtern Yellow Card,6,20,,10,,,,,,,,769,,,,,{ bonus bMatk,10; bonus2 bMagicAtkEle,Ele_Earth,(getrefine()>=9)?10:5; },{},{} -4601,Amdarais_Card,Amdarais Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddClass,Class_All,15; bonus bMatkRate,15; bonus2 bHPLossRate,666,4000; bonus2 bSPLossRate,66,4000; },{},{ heal -6666,-666; } -4602,AmdaraisH_Card,Realized Amdarais Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddClass,Class_All,20; bonus bMatkRate,20; bonus2 bHPLossRate,666,6000; bonus2 bSPLossRate,66,6000; },{},{ heal -6666,-666; } -4603,CorruptionRoot_Card,Corruption Root Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,20; bonus5 bAutoSpell,"NPC_WIDESTONE",1,70,BF_WEAPON,0; bonus5 bAutoSpell,"NPC_WIDESLEEP",1,70,BF_WEAPON,0; bonus5 bAutoSpell,"NPC_WIDECURSE",1,70,BF_WEAPON,0; },{},{} -4604,CorruptionRootH_Card,Realized Corruption Root Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,30; bonus5 bAutoSpell,"NPC_WIDESTONE",2,70,BF_WEAPON,0; bonus5 bAutoSpell,"NPC_WIDESLEEP",2,70,BF_WEAPON,0; bonus5 bAutoSpell,"NPC_WIDECURSE",2,70,BF_WEAPON,0; },{},{} -4605,UndeadKnightM_Card,Agony Of Royal Knight Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxHPrate,-44; bonus bHPGainValue,200+10*getrefine(); },{},{} -4606,UndeadKnightF_Card,Grudge of Royal Knight Card,6,20,,10,,,,,,,,4,,,,,{ bonus bMaxSPrate,-44; bonus bSPGainValue,20+(getrefine()/2); },{},{ heal 0,-444; } -4607,FaithfulManager_Card,Faithful Manager Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,5; bonus bMatk,5; if(getiteminfo(getequipid(EQI_HAND_R),11) == W_BOOK) { .@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,,,,,{ 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,5; bonus2 bMagicAddRace,RC_Demon,5; },{},{} -4627,Big_Bell_Card,Big Bell Card,6,10,,10,,,,,,,,2,,,,,{ bonus2 bAddRace,RC_Formless,10; bonus2 bAddRace,RC_Demon,10; },{},{} -4628,Neo_Punk_Card,Neo Punk Card,6,10,,10,,,,,0xFFFFFFFF,63,2,32,,,,,{ bonus2 bSubRace,RC_Formless,20; bonus2 bSubRace,RC_Demon,20; },{},{} -4629,Arc_Elder_Card,Arc Elder Card,6,10,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Neutral,15; bonus2 bMagicAtkEle,Ele_Earth,getrefine()*3; },{},{} -4630,Nightmare_Timer_Keeper_Card,Nightmare Timer Keeper Card,6,10,,10,,,,,,,,64,,,,,{ bonus3 bAutoSpell,"NPC_WIDECURSE",2,20; },{},{} -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,,,,,{ bonus5 bAutoSpell,"SA_VIOLENTGALE",(getskilllv("SA_VIOLENTGALE")==5?5:1),1,BF_WEAPON,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; bonus2 bAddClass,Class_All,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,,,,,{ bonus2 bAddClass,Class_All,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; },{},{} -4642,Min_Toad_Card,Infinite Toad Card,6,20,,10,,,,,,,,64,,,,,{ .@r = getrefine(); if(.@r>6){ .@b+=2; if(.@r>8).@b+=3; } bonus bFlee2,2+.@b; },{},{} -4643,Min_Vagabond_Wolf_Card,Infinite Vagabond Wolf Card,6,20,,10,,,,,,,,64,,,,,{ .@r = getrefine(); if(.@r>6){ .@b+=10; if(.@r>8).@b+=15; } bonus bAtk,10+.@b; },{},{} -4644,Min_Vocal_Card,Infinite Vocal Card,6,20,,10,,,,,,,,64,,,,,{ .@r = getrefine(); if(.@r>6){ .@b+=10; if(.@r>8) .@b+=15; } bonus bMdef,5+.@b; },{},{} -4645,Min_Eclipse_Card,Infinite Eclipse Card,6,20,,10,,,,,,,,64,,,,,{ .@r = getrefine(); if(.@r>6){ .@b+=300; if(.@r>8).@b+=400; } bonus bMaxHP,300+.@b; },{},{} -4646,Min_Chimera_Card,Infinite Chimera Card,6,20,,10,,,,,,,,4,,,,,{ bonus bMaxHPrate,8; bonus bMaxSPrate,4; },{},{} -4647,Min_Osiris_Card,Infinite Osiris Card,6,20,,10,,,,,,,,136,,,,,{ bonus bHPGainValue,300; },{},{} -4648,Min_Eddga_Card,Infinite Eddga Card,6,20,,10,,,,,,,,64,,,,,{ bonus4 bAutoSpellWhenHit,"SM_PROVOKE",10,500,1; },{},{} -4649,Min_Phreeoni_Card,Infinite Phreeoni Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritical,100; },{},{} -4650,Min_Orc_Hero_Card,Infinite Orc Hero Card,6,20,,10,,,,,,,,769,,,,,{ bonus bVit,3; bonus3 bAddEffWhenHit,Eff_Stun,10000,ATF_MAGIC; },{},{} -4651,Min_Tao_Gunka_Card,Infinite Tao Gunka Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxHP,10000; bonus bAgi,-10; },{},{} -4652,N_Amon_Ra_Card,Nightmare Amon Ra Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bMagicAddRace,RC_Demon,50; bonus2 bMagicAddRace,RC_Undead,50; bonus2 bMagicAddEle,Ele_Dark,50; bonus2 bMagicAddEle,Ele_Undead,50; },{},{} -4653,N_Arclouse_Card,Nightmare Arclouse Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_Brute,20; bonus2 bSubRace,RC_Player_Doram,20; bonus2 bSubRace,RC_Undead,20; },{},{} -4654,N_Mimic_Card,Nightmare Mimic Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bMagicAddRace,RC_Brute,5; bonus2 bMagicAddRace,RC_Player_Doram,5; bonus2 bMagicAddRace,RC_Undead,5; },{},{} -4655,N_Minorous_Card,Nightmare Minorous Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Player_Doram,10; bonus2 bAddRace,RC_Undead,10; },{},{} -4656,N_Mummy_Card,Nightmare Mummy Card,6,20,,10,,,,,,,,64,,,,,{ /* Unofficial chance */ bonus3 bAutoSpellWhenHit,"NPC_WIDESLEEP",2,10; },{},{} -4657,N_Ancient_Mummy_Card,Nightmare Ancient Mummy Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Neutral,15; bonus2 bMagicAtkEle,Ele_Fire,getrefine()*3; },{},{} -4658,N_Verit_Card,Nightmare Verit Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bMagicAddClass,Class_All,5; if(getrefine()>6) { bonus2 bMagicAddClass,Class_All,3; } if(getrefine()>8) { bonus2 bMagicAddClass,Class_All,2; } },{},{} -4659,Eggring_Card,Eggring Card,6,20,,10,,,,,,,,16,,,,,{ bonus bLuk,2; bonus bMaxHP,50; },{},{} -4660,Scout_Basilisk_Card,Scout Basilisk Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubSize,Size_Small,5; bonus2 bSubSize,Size_Medium,5; },{},{} -4661,Charge_Basilisk_Card,Charge Basilisk Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubSize,Size_Medium,20; bonus2 bSubSize,Size_Large,20; bonus2 bSubSize,Size_Small,-15; },{},{} -4662,Big_Eggring_Card,Big Eggring Card,6,20,,10,,,,,,,,4,,,,,{ bonus bAtk,25-5*min(readParam(bStr)/10,5); bonus bMatk,25-5*min(readParam(bInt)/10,5); bonus bAspdRate,10-2*min(readParam(bAgi)/10,5); bonus bMaxHP,1000-200*min(readParam(bVit)/10,5); bonus bLongAtkRate,5-1*min(readParam(bDex)/10,5); bonus bCritAtkRate,10-2*min(readParam(bLuk)/10,5); },{},{} -4663,Leaf_Lunatic_Card,Leaf Lunatic Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMaxSP,5; },{},{} -4664,Grass_Fabre_Card,Grass Fabre Card,6,20,,10,,,,,,,,16,,,,,{ bonus bLuk,1; bonus bMaxHP,100; },{},{} -4665,Wild_Hornet_Card,Wild Hornet Card,6,20,,10,,,,,,,,2,,,,,{ bonus bAtk,5; },{},{} -4666,Sweet_Roda_Frog_Card,Sweet Roda Frog Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxSP,10; bonus bMaxHP,300; },{},{} -4667,Hunter_Wolf_Card,Hunter Wolf Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMaxSP,30; },{},{} -4668,Trance_Spore_Card,Trance Spore Card,6,20,,10,,,,,,,,769,,,,,{ bonus bVit,1; bonus bInt,1; },{},{} -4669,Jungle_Mandragora_Card,Jungle Mandragora Card,6,20,,10,,,,,,,,2,,,,,{ .@r = getrefine(); bonus2 bAddEle,Ele_Wind,((.@r>=9)?7:((.@r>=7)?5:3)); },{},{} -4670,Fruit_Pom_Spider_Card,Fruit Pom Spider Card,6,20,,10,,,,,,,,2,,,,,{ .@r = getrefine(); bonus2 bAddEle,Ele_Fire,((.@r>=9)?7:((.@r>=7)?5:3)); },{},{} -4671,V_Celia_Card,Sorcerer Celia Card,6,20,,10,,,,,,,,4,,,,,{ if(eaclass()&EAJL_THIRD && BaseJob == Job_Sage){ bonus bMaxHPrate,10; bonus bMatkRate,10; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10; },{},{} -4672,V_Chen_Card,Sura Chen Card,6,20,,10,,,,,,,,4,,,,,{ if(eaclass()&EAJL_THIRD && BaseJob == Job_Monk){ bonus bMaxHPrate,10; bonus2 bAddClass,Class_All,10; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10; },{},{} -4673,V_Alphoccio_Card,Minstel Alphoccio Card,6,20,,10,,,,,,,,4,,,,,{ if(eaclass()&EAJL_THIRD && BaseJob == Job_Bard){ bonus bMaxHPrate,15; bonus bMaxSPrate,10; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10; },{},{} -4674,V_Eremes_Card,Guillotine Cross Eremes Card,6,20,,10,,,,,,,,4,,,,,{ if(eaclass()&EAJL_THIRD && BaseJob == Job_Assassin){ bonus bFlee2,10; bonus2 bAddClass,Class_All,15; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10; },{},{} -4675,V_Magaleta_Card,Arch Bishop Magaleta Card,6,20,,10,,,,,,,,4,,,,,{ if(eaclass()&EAJL_THIRD && BaseJob == Job_Priest){ bonus bMaxHPrate,10; bonus bHealPower,10; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10; },{},{} -4676,V_Shecil_Card,Ranger Cecil Card,6,20,,10,,,,,,,,4,,,,,{ if(eaclass()&EAJL_THIRD && BaseJob == Job_Hunter){ bonus bCritical,20; bonus bLongAtkRate,15; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10; },{},{} -4677,V_Howard_Card,Mechanic Howard Card,6,20,,10,,,,,,,,4,,,,,{ if(eaclass()&EAJL_THIRD && BaseJob == Job_Blacksmith){ bonus bHit,20; bonus2 bAddClass,Class_All,15; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10; },{},{} -4678,V_Katrinn_Card,Warlock Kathryne Card,6,20,,10,,,,,,,,4,,,,,{ if(eaclass()&EAJL_THIRD && BaseJob == Job_Wizard){ bonus bMdef,80; bonus bMatkRate,15; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10; },{},{} -4679,V_Seyren_Card,Rune Knight Seyren Card,6,20,,10,,,,,,,,4,,,,,{ if(eaclass()&EAJL_THIRD && BaseJob == Job_Knight){ bonus bAspd,2; bonus2 bAddClass,Class_All,15; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10; },{},{} -4680,V_Randel_Card,Royal Guard Randel Card,6,20,,10,,,,,,,,4,,,,,{ if(eaclass()&EAJL_THIRD && BaseJob == Job_Crusader){ bonus bDef,350; bonus2 bAddClass,Class_All,10; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10; },{},{} -4681,V_Flamel_Card,Genetic Flamel Card,6,20,,10,,,,,,,,4,,,,,{ if(eaclass()&EAJL_THIRD && BaseJob == Job_Alchemist){ bonus bFlee,20; bonus2 bAddClass,Class_All,15; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10; },{},{} -4682,V_Gertie_Card,Shadow Chaser Gertie Card,6,20,,10,,,,,,,,4,,,,,{ if(eaclass()&EAJL_THIRD && BaseJob == Job_Rogue){ bonus2 bAddClass,Class_All,5; bonus bMatkRate,15; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10; },{},{} -4683,V_Trentini_Card,Wanderer Trentini Card,6,20,,10,,,,,,,,4,,,,,{ if(eaclass()&EAJL_THIRD && BaseJob == Job_Dancer){ bonus bMaxHPrate,10; bonus bMaxSPrate,15; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10; },{},{} -4684,V_B_Eremes_Card,True Eremes Guile Card,6,20,,10,,,,,,,,2,,,,,{ if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"GC_CROSSIMPACT",20+.@b; },{},{} -4685,V_B_Magaleta_Card,True Margaretha Sorin Card,6,20,,10,,,,,,,,2,,,,,{ if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"AB_ADORAMUS",20+.@b; },{},{} -4686,V_B_Katrinn_Card,True Kathryne Keyron Card,6,20,,10,,,,,,,,2,,,,,{ if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"WL_CRIMSONROCK",20+.@b; },{},{} -4687,V_B_Shecil_Card,True Cecil Damon Card,6,20,,10,,,,,,,,2,,,,,{ if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"RA_CLUSTERBOMB",20+.@b; },{},{} -4688,V_B_Harword_Card,True Howard Alt-Eisen Card,6,20,,10,,,,,,,,2,,,,,{ if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"NC_AXETORNADO",20+.@b; },{},{} -4689,V_B_Seyren_Card,True Seyren Windsor Card,6,20,,10,,,,,,,,2,,,,,{ if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"RK_IGNITIONBREAK",20+.@b; },{},{} -4690,V_B_Randel_Card,True Randel Lawrence Card,6,20,,10,,,,,,,,2,,,,,{ if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"LG_EARTHDRIVE",20+.@b; },{},{} -4691,V_B_Flamel_Card,True Flamel Emure Card,6,20,,10,,,,,,,,2,,,,,{ if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"GN_CART_TORNADO",20+.@b; },{},{} -4692,V_B_Celia_Card,True Celia Alde Card,6,20,,10,,,,,,,,2,,,,,{ if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"SO_VARETYR_SPEAR",20+.@b; },{},{} -4693,V_B_Chen_Card,True Chen Liu Card,6,20,,10,,,,,,,,2,,,,,{ if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",20+.@b; },{},{} -4694,V_B_Gertie_Card,True Gertie Card,6,20,,10,,,,,,,,2,,,,,{ if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"SC_FEINTBOMB",20+.@b; },{},{} -4695,V_B_Trentini_Card,True Trentini Card,6,20,,10,,,,,,,,2,,,,,{ if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",20+.@b; },{},{} -4696,V_B_Alphoccio_Card,True Alphoccio Card,6,20,,10,,,,,,,,2,,,,,{ if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"WM_REVERBERATION",20+.@b; },{},{} -4697,Charleston3_Card,Charleston3 Card,6,20,,10,,,,,0xFFFFFFFF,63,2,2,,,,,{ bonus bMaxSP,-300; bonus bBreakArmorRate,1500; /* Custom rate [Secret] */ },{},{} -4698,Step_Card,Step Card,6,20,,10,,,,,0xFFFFFFFF,63,2,2,,,,,{ bonus2 bSkillAtk,"NC_AXEBOOMERANG",30+((getrefine() >= 10)*30); },{},{} -4699,Rock_Step_Card,Rock Step Card,6,20,,10,,,,,0xFFFFFFFF,63,2,2,,,,,{ bonus2 bSkillAtk,"NC_ARMSCANNON",20+((getrefine()>=10)*20); },{},{} -//=================================================================== -// Armor Enchant System -//=================================================================== -4700,Strength1,STR+1,6,20,,10,,,,,,,,,,,,,{ bonus bStr,1; },{},{} -4701,Strength2,STR+2,6,20,,10,,,,,,,,,,,,,{ bonus bStr,2; },{},{} -4702,Strength3,STR+3,6,20,,10,,,,,,,,,,,,,{ bonus bStr,3; },{},{} -4703,Strength4,STR+4,6,20,,10,,,,,,,,,,,,,{ bonus bStr,4; },{},{} -4704,Strength5,STR+5,6,20,,10,,,,,,,,,,,,,{ bonus bStr,5; },{},{} -4705,Strength6,STR+6,6,20,,10,,,,,,,,,,,,,{ bonus bStr,6; },{},{} -4706,Strength7,STR+7,6,20,,10,,,,,,,,,,,,,{ bonus bStr,7; },{},{} -4707,Strength8,STR+8,6,20,,10,,,,,,,,,,,,,{ bonus bStr,8; },{},{} -4708,Strength9,STR+9,6,20,,10,,,,,,,,,,,,,{ bonus bStr,9; },{},{} -4709,Strength10,STR+10,6,20,,10,,,,,,,,,,,,,{ bonus bStr,10; },{},{} -4710,Inteligence1,INT+1,6,20,,10,,,,,,,,,,,,,{ bonus bInt,1; },{},{} -4711,Inteligence2,INT+2,6,20,,10,,,,,,,,,,,,,{ bonus bInt,2; },{},{} -4712,Inteligence3,INT+3,6,20,,10,,,,,,,,,,,,,{ bonus bInt,3; },{},{} -4713,Inteligence4,INT+4,6,20,,10,,,,,,,,,,,,,{ bonus bInt,4; },{},{} -4714,Inteligence5,INT+5,6,20,,10,,,,,,,,,,,,,{ bonus bInt,5; },{},{} -4715,Inteligence6,INT+6,6,20,,10,,,,,,,,,,,,,{ bonus bInt,6; },{},{} -4716,Inteligence7,INT+7,6,20,,10,,,,,,,,,,,,,{ bonus bInt,7; },{},{} -4717,Inteligence8,INT+8,6,20,,10,,,,,,,,,,,,,{ bonus bInt,8; },{},{} -4718,Inteligence9,INT+9,6,20,,10,,,,,,,,,,,,,{ bonus bInt,9; },{},{} -4719,Inteligence10,INT+10,6,20,,10,,,,,,,,,,,,,{ bonus bInt,10; },{},{} -4720,Dexterity1,DEX+1,6,20,,10,,,,,,,,,,,,,{ bonus bDex,1; },{},{} -4721,Dexterity2,DEX+2,6,20,,10,,,,,,,,,,,,,{ bonus bDex,2; },{},{} -4722,Dexterity3,DEX+3,6,20,,10,,,,,,,,,,,,,{ bonus bDex,3; },{},{} -4723,Dexterity4,DEX+4,6,20,,10,,,,,,,,,,,,,{ bonus bDex,4; },{},{} -4724,Dexterity5,DEX+5,6,20,,10,,,,,,,,,,,,,{ bonus bDex,5; },{},{} -4725,Dexterity6,DEX+6,6,20,,10,,,,,,,,,,,,,{ bonus bDex,6; },{},{} -4726,Dexterity7,DEX+7,6,20,,10,,,,,,,,,,,,,{ bonus bDex,7; },{},{} -4727,Dexterity8,DEX+8,6,20,,10,,,,,,,,,,,,,{ bonus bDex,8; },{},{} -4728,Dexterity9,DEX+9,6,20,,10,,,,,,,,,,,,,{ bonus bDex,9; },{},{} -4729,Dexterity10,DEX+10,6,20,,10,,,,,,,,,,,,,{ bonus bDex,10; },{},{} -4730,Agility1,AGI+1,6,20,,10,,,,,,,,,,,,,{ bonus bAgi,1; },{},{} -4731,Agility2,AGI+2,6,20,,10,,,,,,,,,,,,,{ bonus bAgi,2; },{},{} -4732,Agility3,AGI+3,6,20,,10,,,,,,,,,,,,,{ bonus bAgi,3; },{},{} -4733,Agility4,AGI+4,6,20,,10,,,,,,,,,,,,,{ bonus bAgi,4; },{},{} -4734,Agility5,AGI+5,6,20,,10,,,,,,,,,,,,,{ bonus bAgi,5; },{},{} -4735,Agility6,AGI+6,6,20,,10,,,,,,,,,,,,,{ bonus bAgi,6; },{},{} -4736,Agility7,AGI+7,6,20,,10,,,,,,,,,,,,,{ bonus bAgi,7; },{},{} -4737,Agility8,AGI+8,6,20,,10,,,,,,,,,,,,,{ bonus bAgi,8; },{},{} -4738,Agility9,AGI+9,6,20,,10,,,,,,,,,,,,,{ bonus bAgi,9; },{},{} -4739,Agility10,AGI+10,6,20,,10,,,,,,,,,,,,,{ bonus bAgi,10; },{},{} -4740,Vitality1,VIT+1,6,20,,10,,,,,,,,,,,,,{ bonus bVit,1; },{},{} -4741,Vitality2,VIT+2,6,20,,10,,,,,,,,,,,,,{ bonus bVit,2; },{},{} -4742,Vitality3,VIT+3,6,20,,10,,,,,,,,,,,,,{ bonus bVit,3; },{},{} -4743,Vitality4,VIT+4,6,20,,10,,,,,,,,,,,,,{ bonus bVit,4; },{},{} -4744,Vitality5,VIT+5,6,20,,10,,,,,,,,,,,,,{ bonus bVit,5; },{},{} -4745,Vitality6,VIT+6,6,20,,10,,,,,,,,,,,,,{ bonus bVit,6; },{},{} -4746,Vitality7,VIT+7,6,20,,10,,,,,,,,,,,,,{ bonus bVit,7; },{},{} -4747,Vitality8,VIT+8,6,20,,10,,,,,,,,,,,,,{ bonus bVit,8; },{},{} -4748,Vitality9,VIT+9,6,20,,10,,,,,,,,,,,,,{ bonus bVit,9; },{},{} -4749,Vitality10,VIT+10,6,20,,10,,,,,,,,,,,,,{ bonus bVit,10; },{},{} -4750,Luck1,LUK+1,6,20,,10,,,,,,,,,,,,,{ bonus bLuk,1; },{},{} -4751,Luck2,LUK+2,6,20,,10,,,,,,,,,,,,,{ bonus bLuk,2; },{},{} -4752,Luck3,LUK+3,6,20,,10,,,,,,,,,,,,,{ bonus bLuk,3; },{},{} -4753,Luck4,LUK+4,6,20,,10,,,,,,,,,,,,,{ bonus bLuk,4; },{},{} -4754,Luck5,LUK+5,6,20,,10,,,,,,,,,,,,,{ bonus bLuk,5; },{},{} -4755,Luck6,LUK+6,6,20,,10,,,,,,,,,,,,,{ bonus bLuk,6; },{},{} -4756,Luck7,LUK+7,6,20,,10,,,,,,,,,,,,,{ bonus bLuk,7; },{},{} -4757,Luck8,LUK+8,6,20,,10,,,,,,,,,,,,,{ bonus bLuk,8; },{},{} -4758,Luck9,LUK+9,6,20,,10,,,,,,,,,,,,,{ bonus bLuk,9; },{},{} -4759,Luck10,LUK+10,6,20,,10,,,,,,,,,,,,,{ bonus bLuk,10; },{},{} -4760,Matk1,MATK+1%,6,20,,10,,,,,,,,,,,,,{ bonus bMatkRate,1; bonus bFixedCastrate,-1; },{},{} -4761,Matk2,MATK+2%,6,20,,10,,,,,,,,,,,,,{ bonus bMatkRate,2; bonus bFixedCastrate,-1; },{},{} -4762,Evasion6,FLEE+6,6,20,,10,,,,,,,,,,,,,{ bonus bFlee,6; },{},{} -4763,Evasion12,FLEE+12,6,20,,10,,,,,,,,,,,,,{ bonus bFlee,12; },{},{} -4764,Critical5,CRI+5,6,20,,10,,,,,,,,,,,,,{ bonus bCritical,5; },{},{} -4765,Critical7,CRI+7,6,20,,10,,,,,,,,,,,,,{ bonus bCritical,7; },{},{} -4766,Atk2,ATK+2%,6,20,,10,,,,,,,,,,,,,{ bonus2 bAddClass,Class_All,2; },{},{} -4767,Atk3,ATK+3%,6,20,,10,,,,,,,,,,,,,{ bonus2 bAddClass,Class_All,3; },{},{} -4768,Str1_J,Str + 1,6,20,,10,,,,,,,,,,,,,{},{},{} -4769,Str2_J,Str + 2,6,20,,10,,,,,,,,,,,,,{},{},{} -4770,Str3_J,Str + 3,6,20,,10,,,,,,,,,,,,,{},{},{} -4771,Int1_J,Int + 1,6,20,,10,,,,,,,,,,,,,{},{},{} -4772,Int2_J,Int + 2,6,20,,10,,,,,,,,,,,,,{},{},{} -4773,Int3_J,Int + 3,6,20,,10,,,,,,,,,,,,,{},{},{} -4774,Vit1_J,Vit + 1,6,20,,10,,,,,,,,,,,,,{},{},{} -4775,Vit2_J,Vit + 2,6,20,,10,,,,,,,,,,,,,{},{},{} -4776,Vit3_J,Vit + 3,6,20,,10,,,,,,,,,,,,,{},{},{} -4777,Agi1_J,Agi + 1,6,20,,10,,,,,,,,,,,,,{},{},{} -4778,Agi2_J,Agi + 2,6,20,,10,,,,,,,,,,,,,{},{},{} -4779,Agi3_J,Agi + 3,6,20,,10,,,,,,,,,,,,,{},{},{} -4780,Dex1_J,Dex + 1,6,20,,10,,,,,,,,,,,,,{},{},{} -4781,Dex2_J,Dex + 2,6,20,,10,,,,,,,,,,,,,{},{},{} -4782,Dex3_J,Dex + 3,6,20,,10,,,,,,,,,,,,,{},{},{} -4783,Luk1_J,Luk + 1,6,20,,10,,,,,,,,,,,,,{},{},{} -4784,Luk2_J,Luk + 2,6,20,,10,,,,,,,,,,,,,{},{},{} -4785,Luk3_J,Luk + 3,6,20,,10,,,,,,,,,,,,,{},{},{} -4786,Mdef2,MDEF+2,6,20,,10,,,,,,,,,,,,,{ bonus bMdef,2; },{},{} -4787,Mdef4,MDEF+4,6,20,,10,,,,,,,,,,,,,{ bonus bMdef,4; },{},{} -4788,Mdef6,MDEF+6,6,20,,10,,,,,,,,,,,,,{ bonus bMdef,6; },{},{} -4789,Mdef8,MDEF+8,6,20,,10,,,,,,,,,,,,,{ bonus bMdef,8; },{},{} -4790,Mdef10,MDEF+10,6,20,,10,,,,,,,,,,,,,{ bonus bMdef,10; },{},{} -4791,Def3,DEF+3,6,20,,10,,,,,,,,,,,,,{ bonus bDef,3; },{},{} -4792,Def6,DEF+6,6,20,,10,,,,,,,,,,,,,{ bonus bDef,6; },{},{} -4793,Def9,DEF+9,6,20,,10,,,,,,,,,,,,,{ bonus bDef,9; },{},{} -4794,Def12,DEF+12,6,20,,10,,,,,,,,,,,,,{ bonus bDef,12; },{},{} -4795,HP100,HP+100,6,20,,10,,,,,,,,,,,,,{ bonus bMaxHP,100; },{},{} -4796,HP200,HP+200,6,20,,10,,,,,,,,,,,,,{ bonus bMaxHP,200; },{},{} -4797,HP300,HP+300,6,20,,10,,,,,,,,,,,,,{ bonus bMaxHP,300; },{},{} -4798,HP400,HP+400,6,20,,10,,,,,,,,,,,,,{ bonus bMaxHP,400; },{},{} -4799,HP500,HP+500,6,20,,10,,,,,,,,,,,,,{ bonus bMaxHP,500; },{},{} -4800,SP50,SP+50,6,20,,10,,,,,,,,,,,,,{ bonus bMaxSP,50; },{},{} -4801,SP100,SP+100,6,20,,10,,,,,,,,,,,,,{ bonus bMaxSP,100; },{},{} -4802,SP150,SP+150,6,20,,10,,,,,,,,,,,,,{ bonus bMaxSP,150; },{},{} -4803,Highness_Heal_3sec,Cure1Lv.,6,20,,10,,,,,,,,,,,,,{ bonus2 bSkillCooldown,"AB_HIGHNESSHEAL",-3000; },{},{} -4804,Coluceo_Heal30,Catholic1Lv.,6,20,,10,,,,,,,,,,,,,{ bonus2 bSkillUseSP,"AB_CHEAL",30; },{},{} -4805,Heal_Amount2,Archbishop1Lv,6,20,,10,,,,,,,,,,,,,{ bonus bHealPower,3; },{},{} -4806,Matk3,MATK+3%,6,20,,10,,,,,,,,,,,,,{ bonus bMatkRate,3; bonus bFixedCastrate,-1; },{},{} -4807,Atk_Speed1,Atk Speed1,6,20,,10,,,,,,,,,,,,,{ bonus bAspd,1; },{},{} -4808,Fighting_Spirit4,Fighting Spirit4,6,20,,10,,,,,,,,,,,,,{ bonus bBaseAtk,15; bonus bHit,5; },{},{} -4809,Fighting_Spirit3,Fighting Spirit3,6,20,,10,,,,,,,,,,,,,{ bonus bBaseAtk,12; bonus bHit,4; },{},{} -4810,Fighting_Spirit2,Fighting Spirit2,6,20,,10,,,,,,,,,,,,,{ bonus bBaseAtk,9; bonus bHit,3; },{},{} -4811,Fighting_Spirit1,Fighting Spirit1,6,20,,10,,,,,,,,,,,,,{ bonus bBaseAtk,6; bonus bHit,2; },{},{} -4812,Spell4,Spell4,6,20,,10,,,,,,,,,,,,,{ bonus bMatk,15; bonus bVariableCastrate,-10; },{},{} -4813,Spell3,Spell3,6,20,,10,,,,,,,,,,,,,{ bonus bMatk,12; bonus bVariableCastrate,-8; },{},{} -4814,Spell2,Spell2,6,20,,10,,,,,,,,,,,,,{ bonus bMatk,9; bonus bVariableCastrate,-6; },{},{} -4815,Spell1,Spell1,6,20,,10,,,,,,,,,,,,,{ bonus bMatk,6; bonus bVariableCastrate,-4; },{},{} -4816,Sharp3,Sharp3,6,20,,10,,,,,,,,,,,,,{ bonus bCritical,12; bonus bHit,4; },{},{} -4817,Sharp2,Sharp2,6,20,,10,,,,,,,,,,,,,{ bonus bCritical,9; bonus bHit,3; },{},{} -4818,Sharp1,Sharp1,6,20,,10,,,,,,,,,,,,,{ bonus bCritical,6; bonus bHit,2; },{},{} -4819,Atk1,Atk1,6,20,,10,,,,,,,,,,,,,{ bonus2 bAddClass,Class_All,1; },{},{} -4820,Fighting_Spirit5,Fighting Spirit5,6,20,,10,,,,,,,,,,,,,{ bonus bBaseAtk,18; bonus bHit,5; },{},{} -4821,Fighting_Spirit6,Fighting Spirit6,6,20,,10,,,,,,,,,,,,,{ bonus bBaseAtk,21; bonus bHit,5; },{},{} -4822,Fighting_Spirit7,Fighting Spirit7,6,20,,10,,,,,,,,,,,,,{ bonus bBaseAtk,24; bonus bHit,5; },{},{} -4823,Fighting_Spirit8,Fighting Spirit8,6,20,,10,,,,,,,,,,,,,{ bonus bBaseAtk,27; bonus bHit,5; },{},{} -4824,Fighting_Spirit9,Fighting Spirit9,6,20,,10,,,,,,,,,,,,,{ bonus bBaseAtk,30; bonus bHit,5; },{},{} -4825,Fighting_Spirit10,Fighting Spirit10,6,20,,10,,,,,,,,,,,,,{ bonus bBaseAtk,50; bonus bHit,15; },{},{} -4826,Spell5,Spell5,6,20,,10,,,,,,,,,,,,,{ bonus bMatk,18; bonus bVariableCastrate,-10; },{},{} -4827,Spell6,Spell6,6,20,,10,,,,,,,,,,,,,{ bonus bMatk,21; bonus bVariableCastrate,-10; },{},{} -4828,Spell7,Spell7,6,20,,10,,,,,,,,,,,,,{ bonus bMatk,24; bonus bVariableCastrate,-10; },{},{} -4829,Spell8,Spell8,6,20,,10,,,,,,,,,,,,,{ bonus bMatk,27; bonus bVariableCastrate,-10; },{},{} -4830,Spell9,Spell9,6,20,,10,,,,,,,,,,,,,{ bonus bMatk,30; bonus bVariableCastrate,-10; },{},{} -4831,Spell10,Spell10,6,20,,10,,,,,,,,,,,,,{ bonus bMatk,50; bonus bVariableCastrate,-20; },{},{} -4832,Expert_Archer1,Expert Archer1,6,20,,10,,,,,,,,,,,,,{ bonus bLongAtkRate,2; },{},{} -4833,Expert_Archer2,Expert Archer2,6,20,,10,,,,,,,,,,,,,{ bonus bLongAtkRate,4; },{},{} -4834,Expert_Archer3,Expert Archer3,6,20,,10,,,,,,,,,,,,,{ bonus bLongAtkRate,6; },{},{} -4835,Expert_Archer4,Expert Archer4,6,20,,10,,,,,,,,,,,,,{ bonus bLongAtkRate,8; },{},{} -4836,Expert_Archer5,Expert Archer5,6,20,,10,,,,,,,,,,,,,{ bonus bLongAtkRate,10; },{},{} -4837,Expert_Archer6,Expert Archer6,6,20,,10,,,,,,,,,,,,,{ bonus bLongAtkRate,12; },{},{} -4838,Expert_Archer7,Expert Archer7,6,20,,10,,,,,,,,,,,,,{ bonus bLongAtkRate,14; },{},{} -4839,Expert_Archer8,Expert Archer8,6,20,,10,,,,,,,,,,,,,{ bonus bLongAtkRate,16; },{},{} -4840,Expert_Archer9,Expert Archer9,6,20,,10,,,,,,,,,,,,,{ bonus bLongAtkRate,18; },{},{} -4841,Expert_Archer10,Expert Archer10,6,20,,10,,,,,,,,,,,,,{ bonus bLongAtkRate,20; bonus bAspd,1; },{},{} -4842,Atk_Speed2,Atk Speed2,6,20,,10,,,,,,,,,,,,,{ bonus bAspd,2; },{},{} -4843,Sharp4,Sharp4,6,20,,10,,,,,,,,,,,,,{ bonus bCritical,14; bonus bHit,5; },{},{} -4844,Sharp5,Sharp5,6,20,,10,,,,,,,,,,,,,{ bonus bCritical,15; bonus bHit,6; },{},{} -4845,Sea_Energy,Strength Of Ocean,6,0,,0,,,,,,,,,,,,,{},{},{} -4846,2011Valentin_Angel,Fully Loved Stone,6,20,,10,,,,,,,,,,,,,{ bonus bBaseAtk,10; bonus bMatk,10; },{},{} -4847,2011Valentin_Devil,Spelled Stone,6,20,,10,,,,,,,,,,,,,{ bonus bBaseAtk,10; bonus bMatk,10; },{},{} -4848,Immuned1,Immune Level 1,6,20,,10,,,,,,,,,,,,,{ bonus2 bSubEle,Ele_Neutral,5; },{},{} -4849,Cranial1,Cranial Level 1,6,20,,10,,,,,,,,,,,,,{ bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; },{},{} -4850,Heal_Amount3,Heal Amount2,6,20,,10,,,,,,,,,,,,,{ bonus bHealPower,6; bonus bUseSPrate,5; },{},{} -4851,Heal_Amount4,Heal Amount3,6,20,,10,,,,,,,,,,,,,{ bonus bHealPower,12; bonus bUseSPrate,10; },{},{} -4852,Heal_Amount5,Heal Amount4,6,20,,10,,,,,,,,,,,,,{ bonus bHealPower,20; bonus bUseSPrate,15; },{},{} -4853,S_Str,Special Str,6,20,,10,,,,,,,,,,,,,{ bonus bStr,1; .@r = getrefine(); if(.@r>7) { bonus bStr,3; } if(.@r>8) { bonus2 bAddClass,Class_All,1; } if(.@r>11) { bonus bAspd,1; bonus bFixedCastrate,-7; } },{},{} -4854,S_Agi,Special Agi,6,20,,10,,,,,,,,,,,,,{ bonus bAgi,1; .@r = getrefine(); if(.@r>7) { bonus bAgi,3; } if(.@r>8) { bonus2 bAddClass,Class_All,1; } if(.@r>11) { bonus bAspd,1; bonus bFixedCastrate,-7; } },{},{} -4855,S_Vital,Special Vit,6,20,,10,,,,,,,,,,,,,{ bonus bVit,1; .@r = getrefine(); if(.@r>7) { bonus bVit,3; } if(.@r>8) { bonus bMaxSPrate,1; } if(.@r>11) { bonus bAspd,1; bonus bFixedCastrate,-7; } },{},{} -4856,S_Int,Special Int,6,20,,10,,,,,,,,,,,,,{ bonus bInt,1; .@r = getrefine(); if(.@r>7) { bonus bInt,3; } if(.@r>8) { bonus bMatkRate,1; } if(.@r>11) { bonus bAspd,1; bonus bFixedCastrate,-7; } },{},{} -4857,S_Dex,Special Dex,6,20,,10,,,,,,,,,,,,,{ bonus bDex,1; .@r = getrefine(); if(.@r>7) { bonus bDex,3; } if(.@r>8) { bonus bMatkRate,1; } if(.@r>11) { bonus bAspd,1; bonus bFixedCastrate,-7; } },{},{} -4858,S_Luck,Special Luk,6,20,,10,,,,,,,,,,,,,{ bonus bLuk,1; .@r = getrefine(); if(.@r>7) { bonus bLuk,3; } if(.@r>8) { bonus bMaxHPrate,1; } if(.@r>11) { bonus bAspd,1; bonus bFixedCastrate,-7; } },{},{} -4859,Evasion1,Evasion1,6,20,,10,,,,,,,,,,,,,{ bonus bFlee,1; },{},{} -4860,Evasion3,Evasion3,6,20,,10,,,,,,,,,,,,,{ bonus bFlee,3; },{},{} -4861,MHP1,MHP+1%,6,20,,10,,,,,,,,,,,,,{ bonus bMaxHPrate,1; },{},{} -4862,MHP2,MHP+2%,6,20,,10,,,,,,,,,,,,,{ bonus bMaxHPrate,2; },{},{} -4863,Fatal1,Fatal1Lv,6,10,,,,,,,,,,,,,,,{ bonus bCritAtkRate,4; bonus bCritical,1; },{},{} -4864,Fatal2,Fatal2Lv,6,10,,,,,,,,,,,,,,,{ bonus bCritAtkRate,6; bonus bCritical,2; },{},{} -4865,Fatal3,Fatal3Lv,6,10,,,,,,,,,,,,,,,{ bonus bCritAtkRate,8; bonus bCritical,3; },{},{} -4866,Fatal4,Fatal4Lv,6,10,,,,,,,,,,,,,,,{ bonus bCritAtkRate,10; bonus bCritical,4; },{},{} -4867,MHP3,MHP+3%,6,20,,10,,,,,,,,,,,,,{ bonus bMaxHPrate,3; },{},{} -4868,MHP4,MHP+4%,6,20,,10,,,,,,,,,,,,,{ bonus bMaxHPrate,4; },{},{} -4869,Attack_Delay_1,DelayafterAttack1Lv,6,10,,,,,,,,,,,,,,,{ bonus bAspdRate,4; },{},{} -4870,SP25,SP+25,6,20,,10,,,,,,,,,,,,,{ bonus bMaxSP,25; },{},{} -4871,SP75,SP+75,6,20,,10,,,,,,,,,,,,,{ bonus bMaxSP,75; },{},{} -4872,Attack_Delay_2,DelayafterAttack2Lv,6,10,,,,,,,,,,,,,,,{ bonus bAspdRate,6; },{},{} -4873,Attack_Delay_3,DelayafterAttack3Lv,6,10,,,,,,,,,,,,,,,{ bonus bAspdRate,8; },{},{} -4875,Bear's_Power,Bear's Power,6,0,,0,,,,,,,,,,,,,{ autobonus2 "{ bonus bStr,200; bonus2 bHPLossRate,500,1000; }",20,5000,BF_WEAPON,"{ active_transform 1060,5000; specialeffect2 EF_POTION_BERSERK; showscript \"Bigfoot Power !\"; }"; },{},{} -4876,Runaway_Magic,Runaway Magic,6,0,,0,,,,,,,,,,,,,{ autobonus "{ bonus bInt,200; bonus2 bSPLossRate,200,1000; }",15,10000,BF_MAGIC,"{ specialeffect2 EF_LAMADAN; }"; },{},{} -4877,Speed_Of_Light,Speed of Light,6,0,,0,,,,,,,,,,,,,{ autobonus "{ bonus bAspdRate,100; bonus bFlee,100; bonus2 bHPLossRate,400,1000; bonus2 bSPLossRate,40,1000;}",10,5000,BF_WEAPON,"{ specialeffect2 EF_FLASHER; }"; },{},{} -4878,Muscle_Fool,Muscle Fool,6,0,,0,,,,,,,,,,,,,{ autobonus2 "{ bonus bDef,1000; bonus2 bAddRace,RC_All,-50; bonus bMatkRate,-50; }",20,5000,BF_WEAPON,"{ specialeffect2 EF_MAGNUMBREAK; }"; },{},{} -4879,Hawkeye,Hawkeye,6,0,,0,,,,,,,,,,,,,{ autobonus "{ bonus bDex,200; bonus2 bSPLossRate,50,1000; }",30,5000,BF_WEAPON,"{ specialeffect2 EF_FLASHER; }"; },{},{} -4880,Lucky_Day,Lucky Day,6,0,,0,,,,,,,,,,,,,{ autobonus "{ bonus bLuk,200; bonus2 bAddMonsterDropItem,7444,10; }",15,5000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_MVP; showscript \"LUCKY MAX !!\"; }"; autobonus2 "{ bonus bLuk,200; bonus2 bAddMonsterDropItem,7444,1; }",1,5000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_MVP; showscript \"LUCKY MAX !!\"; }"; },{},{} -4881,Attack_Delay_4,Attack Delay 4,6,10,,,,,,,,,,,,,,,{ bonus bAspdRate,10; },{},{} -4882,Atk1p,ATK + 1%,6,10,,,,,,,,,,,,,,,{ bonus2 bAddClass,Class_All,1; },{},{} -4883,Matk1p,MATK + 1%,6,10,,,,,,,,,,,,,,,{ bonus bMatkRate,1; },{},{} -4884,HIT1,HIT + 1,6,10,,,,,,,,,,,,,,,{ bonus bHit,1; },{},{} -4885,Conjure1,Spell 1,6,10,,,,,,,,,,,,,,,{ bonus bMatk,5; bonus bVariableCastrate,-3; },{},{} -4886,Conjure2,Spell 2,6,10,,,,,,,,,,,,,,,{ bonus bMatk,10; bonus bVariableCastrate,-3; },{},{} -4887,Conjure3,Spell 3,6,10,,,,,,,,,,,,,,,{ bonus bMatk,15; bonus bVariableCastrate,-3; },{},{} -4888,Conjure4,Spell 4,6,10,,,,,,,,,,,,,,,{ bonus bMatk,20; bonus bVariableCastrate,-3; },{},{} -4889,Conjure5,Spell 5,6,10,,,,,,,,,,,,,,,{ bonus bMatk,30; bonus bVariableCastrate,-5; },{},{} -4890,Mdef1,MDEF+1,6,10,,,,,,,,,,,,,,,{ bonus bMdef,1; },{},{} -4891,Mdef3,MDEF+3,6,10,,,,,,,,,,,,,,,{ bonus bMdef,3; },{},{} -4892,Mdef5,MDEF+5,6,10,,,,,,,,,,,,,,,{ bonus bMdef,5; },{},{} -4893,Def15,DEF+15,6,10,,,,,,,,,,,,,,,{ bonus bDef,15; },{},{} -4894,Atk4p,ATK + 4%,6,10,,,,,,,,,,,,,,,{ bonus2 bAddClass,Class_All,4; },{},{} -4895,Atk5p,ATK + 5%,6,10,,,,,,,,,,,,,,,{ bonus2 bAddClass,Class_All,5; },{},{} -4896,Matk2p,MATK + 2%,6,10,,,,,,,,,,,,,,,{ bonus bMatkRate,2; },{},{} -4897,Matk3p,MATK + 3%,6,10,,,,,,,,,,,,,,,{ bonus bMatkRate,3; },{},{} -4898,Matk4p,MATK + 4%,6,10,,,,,,,,,,,,,,,{ bonus bMatkRate,4; },{},{} -4899,Matk5p,MATK + 5%,6,10,,,,,,,,,,,,,,,{ bonus bMatkRate,5; },{},{} -4900,MHP5,MHP+5%,6,10,,,,,,,,,,,,,,,{ bonus bMaxHPrate,5; },{},{} -4902,Def18,DEF+18,6,10,,,,,,,,,,,,,,,{ bonus bDef,18; },{},{} -4903,Def21,DEF+21,6,10,,,,,,,,,,,,,,,{ bonus bDef,21; },{},{} -4904,Atk6p,ATK + 6%,6,10,,,,,,,,,,,,,,,{ bonus2 bAddClass,Class_All,6; },{},{} -4905,Atk7p,ATK + 7%,6,10,,,,,,,,,,,,,,,{ bonus2 bAddClass,Class_All,7; },{},{} -4906,Matk6p,MATK + 6,6,10,,,,,,,,,,,,,,,{ bonus bMatkRate,6; },{},{} -4907,Matk7p,MATK + 7%,6,10,,,,,,,,,,,,,,,{ bonus bMatkRate,7; },{},{} -4908,Force1,Darklord Essence Force1,6,20,,10,,,,,0xFFFFFFFF,63,2,1023,,,,,{ bonus bStr,1; bonus bBaseAtk,3; bonus bInt,-1;},{},{} -4909,Force2,Darklord Essence Force2,6,20,,10,,,,,0xFFFFFFFF,63,2,1023,,,,,{ bonus bStr,2; bonus bBaseAtk,6; bonus bInt,-2;},{},{} -4910,Force3,Darklord Essence Force3,6,20,,10,,,,,0xFFFFFFFF,63,2,1023,,,,,{ bonus bStr,4; bonus bBaseAtk,12; bonus bInt,-4;},{},{} -4911,Intellect1,Darklord Essence Intelligence1,6,20,,10,,,,,0xFFFFFFFF,63,2,1023,,,,,{ bonus bInt,1; bonus bMatk,3; bonus bStr,-1;},{},{} -4912,Intellect2,Darklord Essence Intelligence2,6,20,,10,,,,,0xFFFFFFFF,63,2,1023,,,,,{ bonus bInt,2; bonus bMatk,6; bonus bStr,-2;},{},{} -4913,Intellect3,Darklord Essence Intelligence3,6,20,,10,,,,,0xFFFFFFFF,63,2,1023,,,,,{ bonus bInt,4; bonus bMatk,12; bonus bStr,-4;},{},{} -4914,Swiftness1,Darklord Essence Speed1,6,20,,10,,,,,0xFFFFFFFF,63,2,1023,,,,,{ bonus bAgi,1; bonus bFlee,2; bonus bVit,-1;},{},{} -4915,Swiftness2,Darklord Essence Speed2,6,20,,10,,,,,0xFFFFFFFF,63,2,1023,,,,,{ bonus bAgi,2; bonus bFlee,4; bonus bVit,-2;},{},{} -4916,Swiftness3,Darklord Essence Speed3,6,20,,10,,,,,0xFFFFFFFF,63,2,1023,,,,,{ bonus bAgi,4; bonus bFlee,8; bonus bVit,-4;},{},{} -4917,Tough1,Darklord Essence Vitality1,6,20,,10,,,,,0xFFFFFFFF,63,2,1023,,,,,{ bonus bVit,1; bonus bDef,3; bonus bMdef,2; bonus bAgi,-1;},{},{} -4918,Tough2,Darklord Essence Vitality2,6,20,,10,,,,,0xFFFFFFFF,63,2,1023,,,,,{ bonus bVit,2; bonus bDef,6; bonus bMdef,4; bonus bAgi,-2;},{},{} -4919,Tough3,Darklord Essence Vitality3,6,20,,10,,,,,0xFFFFFFFF,63,2,1023,,,,,{ bonus bVit,4; bonus bDef,12; bonus bMdef,8; bonus bAgi,-4;},{},{} -4920,Artful1,Darklord Essence Concentration1,6,20,,10,,,,,0xFFFFFFFF,63,2,1023,,,,,{ bonus bDex,1; bonus bHit,2; bonus bLuk,-1;},{},{} -4921,Artful2,Darklord Essence Concentration2,6,20,,10,,,,,0xFFFFFFFF,63,2,1023,,,,,{ bonus bDex,2; bonus bHit,4; bonus bLuk,-2;},{},{} -4922,Artful3,Darklord Essence Concentration3,6,20,,10,,,,,0xFFFFFFFF,63,2,1023,,,,,{ bonus bDex,4; bonus bHit,8; bonus bLuk,-4;},{},{} -4923,Fortune1,Darklord Essence Luck1,6,20,,10,,,,,0xFFFFFFFF,63,2,1023,,,,,{ bonus bLuk,1; bonus bCritical,1; bonus bDex,-1;},{},{} -4924,Fortune2,Darklord Essence Luck2,6,20,,10,,,,,0xFFFFFFFF,63,2,1023,,,,,{ bonus bLuk,2; bonus bCritical,2; bonus bDex,-2;},{},{} -4925,Fortune3,Darklord Essence Luck3,6,20,,10,,,,,0xFFFFFFFF,63,2,1023,,,,,{ bonus bLuk,4; bonus bCritical,4; bonus bDex,-4;},{},{} -4926,Critical1,Cri 1Lv,6,10,,,,,,,,,,,,,,,{ bonus bCritical,1; },{},{} -4927,HP50,MaxHP50,6,10,,,,,,,,,,,,,,,{ bonus bMaxHP,50; },{},{} -4928,SP10,MaxSP+10,6,10,,,,,,,,,,,,,,,{ bonus bMaxSP,10; },{},{} -4929,MSP1,MSP+1%,6,10,,,,,,,,,,,,,,,{ bonus bMaxSPrate,1; },{},{} -4930,HEAL2,Recovery UP,6,10,,0,,,,,,,,,,,,,{ bonus bHPrecovRate,2; bonus bSPrecovRate,2; },{},{} -4931,HEALHP1,Heal 10,6,10,,,,,,,,,,,,,,,{ bonus2 bHPRegenRate,10,10000; },{},{} -4932,HEALSP1,SP recovery1,6,10,,,,,,,,,,,,,,,{ bonus bSPGainValue,1; },{},{} -4933,Tolerance_Not1,Neutral Resistance Lv1,6,10,,,,,,,,,,,,,,,{ bonus2 bSubEle,Ele_Neutral,1; },{},{} -4934,Tolerance_Not2,Neutral Resistance Lv2,6,10,,,,,,,,,,,,,,,{ bonus2 bSubEle,Ele_Neutral,2; },{},{} -4935,Tolerance_Not3,Neutral Resistance Lv3,6,10,,,,,,,,,,,,,,,{ bonus2 bSubEle,Ele_Neutral,3; },{},{} -4936,ATK_BIG1,Attack big1,6,20,,10,,,,,,,,,,,,,{ bonus2 bAddSize,Size_Large,1; },{},{} -4937,ATK_MEDIUM1,Attack mid1,6,20,,10,,,,,,,,,,,,,{ bonus2 bAddSize,Size_Medium,1; },{},{} -4938,ATK_SMALL1,Attack small1,6,20,,10,,,,,,,,,,,,,{ bonus2 bAddSize,Size_Small,1; },{},{} -4939,Critical2,CRI Lv2,6,10,,,,,,,,,,,,,,,{ bonus bCritical,2; },{},{} -4940,Critical3,CRI Lv3,6,10,,,,,,,,,,,,,,,{ bonus bCritical,4; },{},{} -4941,Critical4,CRI Lv4,6,10,,,,,,,,,,,,,,,{ bonus bCritical,6; },{},{} -4942,Dodge1,Parrying Lv1,6,10,,,,,,,,,,,,,,,{ bonus bFlee2,3; },{},{} -4943,Dodge2,Parrying Lv2,6,10,,,,,,,,,,,,,,,{ bonus bFlee2,4; },{},{} -4944,Dodge3,Parrying Lv3,6,10,,,,,,,,,,,,,,,{ bonus bFlee2,5; },{},{} -4945,Thrift1,Economy Lv1,6,10,,,,,,,,,,,,,,,{ bonus bUseSPrate,-2; },{},{} -4946,Thrift2,Economy Lv2,6,10,,,,,,,,,,,,,,,{ bonus bUseSPrate,-4; },{},{} -4947,Thrift3,Economy Lv3,6,10,,,,,,,,,,,,,,,{ bonus bUseSPrate,-6; },{},{} -4948,Skill_Delay1,After Skill Delay Lv1,6,10,,,,,,,,,,,,,,,{ bonus bDelayrate,-2; },{},{} -4949,Skill_Delay2,After Skill Delay Lv2,6,10,,,,,,,,,,,,,,,{ bonus bDelayrate,-4; },{},{} -4950,Skill_Delay3,After Skill Delay Lv3,6,10,,,,,,,,,,,,,,,{ bonus bDelayrate,-6; },{},{} -4951,Darkness_Drop,Darkness Drop,6,0,,,,,,,,,,,,,,,{ bonus2 bAddEle,Ele_Dark,2; bonus2 bMagicAtkEle,Ele_Dark,2; bonus2 bSubEle,Ele_Dark,1; },{},{} -4952,Fire_Drop,Fire Drop,6,0,,,,,,,,,,,,,,,{ bonus2 bAddEle,Ele_Fire,2; bonus2 bMagicAtkEle,Ele_Fire,2; bonus2 bSubEle,Ele_Fire,1; },{},{} -4953,Water_Drop,Water Drop,6,0,,,,,,,,,,,,,,,{ bonus2 bAddEle,Ele_Water,2; bonus2 bMagicAtkEle,Ele_Water,2; bonus2 bSubEle,Ele_Water,1; },{},{} -4954,Earth_Drop,Earth Drop,6,0,,,,,,,,,,,,,,,{ bonus2 bAddEle,Ele_Earth,2; bonus2 bMagicAtkEle,Ele_Earth,2; bonus2 bSubEle,Ele_Earth,1; },{},{} -4955,Holy_Drop,Holy Drop,6,0,,,,,,,,,,,,,,,{ bonus2 bAddEle,Ele_Holy,2; bonus2 bMagicAtkEle,Ele_Holy,2; bonus2 bSubEle,Ele_Holy,1; },{},{} -4956,Recovery_Drop,Recovery Drop,6,0,,,,,,,,,,,,,,,{ setarray .@skills$, "AL_HEAL", "PR_SANCTUARY", "AM_POTIONPITCHER", "AB_HIGHNESSHEAL", "AB_CHEAL"; for( .@i = 0; .@i < getarraysize(.@skills$); .@i++ ){ bonus2 bSkillHeal,.@skills$[.@i],2; bonus2 bSkillHeal2,.@skills$[.@i],2; } /* TODO: Depending on some recovery items HP recovery amount + 2% */ },{},{} -4957,Famitsus_Power,Famitsu's Power,6,0,,,,,,,,,,,,,,,{ bonus bMaxHP,832; },{},{} -4958,Gemini,Gemini,6,0,,,,,,,,,,,,,,,{ bonus bDelayrate,-1; },{},{} -4959,Sagittarius,Sagittarius,6,0,,,,,,,,,,,,,,,{ bonus bLongAtkRate,1; },{},{} -4960,Aquarius,Aquarius,6,0,,,,,,,,,,,,,,,{ bonus bUseSPrate,-2; },{},{} -4961,Aries,Aries,6,0,,,,,,,,,,,,,,,{ bonus bMatk,10; },{},{} -4962,Cancer,Cancer,6,0,,,,,,,,,,,,,,,{ bonus bAtk,3; },{},{} -4963,Taurus,Taurus,6,0,,,,,,,,,,,,,,,{ bonus bAtk,4; bonus bHit,1; },{},{} -4964,Capricorn,Capricorn,6,0,,,,,,,,,,,,,,,{ bonus2 bMagicAddRace,RC_All,3; },{},{} -4965,Pisces,Pisces,6,0,,,,,,,,,,,,,,,{ bonus bVariableCastrate,-2; },{},{} -4966,Scorpio,Scorpio,6,0,,,,,,,,,,,,,,,{ bonus2 bAddRace,RC_All,1; },{},{} -4967,Leo,Leo,6,0,,,,,,,,,,,,,,,{ bonus bAspdRate,3; },{},{} -4968,Virgo,Virgo,6,0,,,,,,,,,,,,,,,{ setarray .@skills$, "AL_HEAL", "PR_SANCTUARY", "AM_POTIONPITCHER", "AB_HIGHNESSHEAL", "AB_CHEAL"; for( .@i = 0; .@i < getarraysize(.@skills$); .@i++ ){ bonus2 bSkillHeal,.@skills$[.@i],1; } },{},{} -4969,Libra,Libra,6,0,,,,,,,,,,,,,,,{ setarray .@skills$, "AL_HEAL", "PR_SANCTUARY", "AM_POTIONPITCHER", "AB_HIGHNESSHEAL", "AB_CHEAL"; for( .@i = 0; .@i < getarraysize(.@skills$); .@i++ ){ bonus2 bSkillHeal2,.@skills$[.@i],1; } /* TODO: Depending on some recovery items HP recovery amount + 1% */ },{},{} -4970,Reactor_P_FIRE,Fire Property Reactor,6,0,,,,,,,,,,,,,,,{ bonus bDefEle,Ele_Fire; },{},{} -4971,Reactor_P_WATER,Water Property Reactor,6,0,,,,,,,,,,,,,,,{ bonus bDefEle,Ele_Water; },{},{} -4972,Reactor_P_GROUND,Earth Property Reactor,6,0,,,,,,,,,,,,,,,{ bonus bDefEle,Ele_Earth; },{},{} -4973,Reactor_P_WIND,Wind Property Reactor,6,0,,,,,,,,,,,,,,,{ bonus bDefEle,Ele_Wind; },{},{} -4974,Reactor_T_FIRE,Fire Resistance Reactor,6,0,,,,,,,,,,,,,,,{ bonus2 bSubEle,Ele_Fire,25; bonus2 bSubEle,Ele_Water,-25; },{},{} -4975,Reactor_T_WATER,Water Resistance Reactor,6,0,,,,,,,,,,,,,,,{ bonus2 bSubEle,Ele_Water,25; bonus2 bSubEle,Ele_Wind,-25; },{},{} -4976,Reactor_T_GROUND,Earth Resistance Reactor,6,0,,,,,,,,,,,,,,,{ bonus2 bSubEle,Ele_Earth,25; bonus2 bSubEle,Ele_Fire,-25; },{},{} -4977,Reactor_T_WIND,Wind Resistance Reactor,6,0,,,,,,,,,,,,,,,{ bonus2 bSubEle,Ele_Wind,25; bonus2 bSubEle,Ele_Earth,-25; },{},{} -4978,Reactor_Cure_101,Recovery Reactor 101,6,0,,,,,,,,,,,,,,,{ if (getrefine()>=7) bonus2 bHPRegenRate,100,5000; else bonus2 bHPRegenRate,50,5000; },{},{} -4979,Reactor_Cure_102,Recovery Reactor 102,6,0,,,,,,,,,,,,,,,{ if (getrefine()>=7) bonus2 bSPRegenRate,5,5000; else bonus2 bHPRegenRate,3,5000; },{},{} -4980,Reactor_Cure_201,Recovery Reactor 201,6,0,,,,,,,,,,,,,,,{ if (getrefine()>=7) bonus bHPrecovRate,100; else bonus bHPrecovRate,50; },{},{} -4981,Reactor_Cure_202,Recovery Reactor 202,6,0,,,,,,,,,,,,,,,{ if (getrefine()>=7) bonus bSPrecovRate,100; else bonus bSPrecovRate,50; },{},{} -4982,Reactor_A_STR,STR Supplement Reactor,6,0,,,,,,,,,,,,,,,{ if (getrefine()>=7) { .@bonus = 10; } bonus bBaseAtk,.@bonus + 5*(readparam(bStr)/10); },{},{} -4983,Reactor_A_INT,INT Supplement Reactor,6,0,,,,,,,,,,,,,,,{ if (getrefine()>=7) { .@bonus = 10; } bonus bMatk,.@bonus + 5*(readparam(bInt)/10); },{},{} -4984,Reactor_A_DEF,DEF SupplementReactor,6,0,,,,,,,,,,,,,,,{ bonus bDef,100; },{},{} -4985,Reactor_A_AVOI,PD Supplement Reactor,6,0,,,,,,,,,,,,,,,{ bonus bFlee2,3; },{},{} -4986,Reactor_A_ATK,Attack Supplement Reactor,6,0,,,,,,,,,,,,,,,{ bonus bBaseAtk,20; },{},{} -4987,Reactor_A_MATK,Magic Supplement Reactor,6,0,,,,,,,,,,,,,,,{ bonus bMatk,20; },{},{} -4988,Reactor_A_MHP,HP Supplement Reactor,6,0,,,,,,,,,,,,,,,{ bonus bMaxHPrate,5; },{},{} -4989,Reactor_A_MSP,SP Supplement Reactor,6,0,,,,,,,,,,,,,,,{ bonus bMaxSPrate,3; },{},{} -4990,Reactor_A_FROZ,Frozen Supplement Reactor,6,0,,,,,,,,,,,,,,,{ bonus2 bResEff,Eff_Freeze,10000; },{},{} -4991,Reactor_A_ASPD,ASPD Supplement Reactor,6,0,,,,,,,,,,,,,,,{ bonus bAspd,1; },{},{} -4992,HPdrain1,HP Absorb 1,6,0,,0,,,,,,,,,,,,,{ bonus2 bHPDrainRate,10,1; },{},{} -4993,SPdrain1,SP Absorb 1,6,0,,0,,,,,,,,,,,,,{ bonus2 bSPDrainRate,10,1; },{},{} -4994,Rune_of_Strength_Lv_1,Rune of Strength Lv 1,6,20,,,,,,,,,,,,,,,{ .@r = getrefine(); if (.@r>=7) { bonus bStr,5; } if (.@r>=10) { bonus2 bAddClass,Class_All,5; } },{},{} -4995,Rune_of_Strength_Lv_2,Rune of Strength Lv 2,6,20,,,,,,,,,,,,,,,{ .@r = getrefine(); if (.@r>=7) { bonus bStr,6; } if (.@r>=11) { bonus bStr,1; bonus2 bAddClass,Class_All,7; } },{},{} -4996,Rune_of_Strength_Lv_3,Rune of Strength_Lv 3,6,20,,,,,,,,,,,,,,,{ .@r = getrefine(); if (.@r>=7) { bonus bStr,7; } if (.@r>=12) { bonus bStr,1; bonus2 bAddClass,Class_All,8; } if (.@r>=13) { bonus bStr,1; bonus2 bAddClass,Class_All,2; } },{},{} -4997,Rune_of_Agility_Lv_1,Rune of Agility Lv 1,6,20,,,,,,,,,,,,,,,{ .@r = getrefine(); if (.@r>=7) { bonus bAgi,5; } if (.@r>=10) { bonus bFlee2,5; } },{},{} -4998,Rune_of_Agility_Lv_2,Rune of Agility Lv 2,6,20,,,,,,,,,,,,,,,{ .@r = getrefine(); if (.@r>=7) { bonus bAgi,6; } if (.@r>=11) { bonus bAgi,1; bonus bFlee2,7; } },{},{} -4999,Rune_of_Agility_Lv_3,Rune of Agility Lv 3,6,20,,,,,,,,,,,,,,,{ .@r = getrefine(); if (.@r>=7) { bonus bAgi,7; } if (.@r>=12) { bonus bAgi,1; bonus bFlee2,5; } if (.@r>=13) { bonus bAgi,1; bonus bFlee2,5; } },{},{} -//=================================================================== -// More Headgears -//=================================================================== -5001,Headset,Headset,4,20,,200,,6,,0,0xFFFFFFFE,63,2,256,,1,1,87,{ bonus2 bResEff,Eff_Curse,1000; },{},{} -5002,Gemmed_Crown,Jewel Crown,4,20,,600,,9,,0,0x000654E2,63,2,256,,60,1,88,{ bonus bInt,2; bonus bLuk,1; bonus bMdef,3; },{},{} -5003,Joker_Jester,Joker Jester,4,20,,100,,3,,0,0xFFFFFFFE,63,2,256,,0,1,89,{ bonus bLuk,2; bonus bMdef,5; },{},{} -5004,Oxygen_Mask,Oxygen Mask,4,20,,200,,0,,0,0xFFFFFFFE,63,2,1,,0,0,90,{ bonus2 bResEff,Eff_Poison,2000; },{},{} -5005,Gas_Mask,Gas Mask,4,20,,100,,1,,0,0xFFFFFFFE,63,2,513,,0,0,91,{ bonus2 bResEff,Eff_Poison,3000; },{},{} -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,,7,,0,0xFFFFFFFE,63,2,256,,0,1,95,{ bonus bMdef,3; bonus bUnbreakableHelm; },{},{} -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,,5,,0,0xFFFFFFFE,63,2,256,,0,1,98,{},{},{} -5013,Horn_Of_Lord_Kaho,Lord Kaho's Horn,4,20,,100,,30,,0,0xFFFFFFFF,63,2,256,,0,1,99,{ bonus bMdef,10; bonus bStr,5; bonus bAgi,10; bonus bVit,10; bonus bInt,5; bonus bLuk,20; },{},{} -5014,Fin_Helm,Fin Helm,4,20,,300,,5,,0,0x00004082,63,2,512,,65,0,100,{},{},{} -5015,Egg_Shell,Egg Shell,4,20,,200,,6,,0,0xFFFFFFFF,63,2,256,,0,0,101,{},{},{} -5016,Boy's_Cap,Boy's Cap,4,20,,100,,3,,0,0xFFFFFFFE,63,2,256,,0,1,102,{},{},{} -5017,Bone_Helm,Bone Helm,4,20,,800,,15,,0,0x000444A2,63,2,256,,70,1,103,{ bonus2 bSubEle,Ele_Dark,-15; },{},{} -5018,Feather_Bonnet,Feather Bonnet,4,20,,300,,8,,0,0x00080808,63,2,256,,0,1,104,{ bonus bAgi,1; },{},{} -5019,Corsair,Corsair,4,20,,500,,11,,0,0xFFFFFFFE,63,2,256,,0,1,105,{ bonus bVit,1; },{},{} -5020,Kafra_Band,Kafra Band,4,20,,500,,5,,0,0xFFFFFFFF,63,2,256,,0,1,106,{ bonus bMdef,3; },{},{} -5021,Bankruptcy_Of_Heart,Grief for Greed,4,20,,1200,,8,,0,0x00040420,63,2,256,,38,1,107,{ bonus bInt,1; bonus bDex,1; },{},{} -5022,Helm_Of_Sun,Hat of the Sun God,4,20,,2400,,4,,0,0x00CFDF80,63,2,768,,0,1,138,{ bonus bStr,3; bonus bInt,2; },{},{} -5023,Hat_Of_Bundle,Parcel Hat,4,20,,1000,,0,,0,0x00040420,63,2,256,,0,1,108,{},{},{} -5024,Hat_Of_Cake,Cake Hat,4,20,,1000,,2,,0,0xFFFFFFFF,63,2,256,,0,1,109,{},{},{} -5025,Helm_Of_Angel,Helm of Angel,4,20,,1600,,10,,0,0x00CFDF80,63,2,256,,74,1,110,{ bonus bAgi,1; bonus bLuk,1; bonus bMdef,3; },{},{} -5026,Hat_Of_Cook,Chef Hat,4,20,,300,,3,,0,0xFFFFFFFE,63,2,256,,50,1,111,{ bonus bDex,1; },{},{} -5027,Wizardry_Hat,Mage Hat,4,20,,300,,2,,0,0x00810204,63,2,256,,0,1,112,{ bonus bInt,2; bonus bMaxSP,150; },{},{} -5028,Candle,Candle,4,20,,150,,0,,0,0xFFFFFFFF,63,2,256,,0,1,113,{},{},{} -5029,Spore_Hat,Spore Hat,4,20,,900,,6,,0,0xFFFFFFFE,63,2,256,,20,1,114,{},{},{} -5030,Panda_Cap,Panda Hat,4,20,,800,,6,,0,0xFFFFFFFE,63,2,256,,40,1,115,{},{},{} -5031,Mine_Helm,Mine Hat,4,20,,1500,,9,,0,0x0006D5F2,63,2,256,,55,1,116,{ bonus bDex,2; },{},{} -5032,Picnic_Hat,Sunday Hat,4,20,,800,,1,,0,0xFFFFFFFE,63,2,256,,0,1,117,{},{},{} -5033,Smokie_Hat,Raccoon Hat,4,20,,900,,6,,0,0xFFFFFFFE,63,2,256,,50,1,118,{},{},{} -5034,Light_Bulb_Band,Bulb Band,4,20,,500,,0,,0,0xFFFFFFFE,63,2,256,,0,1,119,{},{},{} -5035,Poring_Hat,Poring Hat,4,20,,700,,3,,0,0xFFFFFFFE,63,2,256,,38,1,120,{},{},{} -5036,Cross_Band,Cross Hat,4,20,,250,,2,,0,0xFFFFFFFE,63,2,256,,10,1,121,{},{},{} -5037,Fruit_Shell,Nut Shell,4,20,,150,,8,,0,0xFFFFFFFF,63,2,256,,5,0,122,{},{},{} -5038,Deviruchi_Cap,Deviruchi Hat,4,20,,800,,4,,0,0xFFFFFFFE,63,2,256,,64,1,123,{ bonus bStr,1; bonus bInt,1; },{},{} -5039,Mottled_Egg_Shell,Rainbow Eggshell,4,20,,400,,8,,0,0xFFFFFFFF,63,2,256,,19,0,124,{},{},{} -5040,Blush,Blush,4,20,,100,,0,,0,0xFFFFFFFF,63,2,512,,0,0,125,{},{},{} -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,,2,,0,0xFFFFFFFE,63,2,512,,20,0,128,{},{},{} -5044,Devil's_Wing,Evil Wing Ears,4,20,,350,,4,,0,0xFFFFFFFF,63,2,256,,45,1,129,{ bonus bVit,1; },{},{} -5045,Magician_Hat,Magician Hat,4,20,,500,,6,,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,{},{},{} -5048,First_Moon_Hair_Pin,Cresent Hairpin,4,20,,100,,0,,0,0xFFFFFFFF,63,2,256,,0,1,132,{},{},{} -5049,Stripe_Band,Striped Hairband,4,20,,150,,1,,0,0xFFFFFFFF,63,2,256,,0,0,133,{},{},{} -5050,Mystery_Fruit_Shell,Wonder Nutshell,4,20,,300,,10,,0,0xFFFFFFFF,63,2,256,,30,0,134,{},{},{} -5051,Kitty_Bell,Pussy Cat Bell,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,135,{},{},{} -5052,Blue_Hair_Band,Blue Hairband,4,20,,150,,2,,0,0xFFFFFFFF,63,2,256,,0,1,136,{},{},{} -5053,Spinx_Helm,Sphinx Hat,4,20,,3000,,5,,0,0x00004082,63,2,257,,65,0,137,{ bonus bStr,2; },{},{} -5054,Assassin_Mask,Assassin Mask,4,20,,100,,0,,0,0x00001100,63,2,1,,70,0,180,{},{},{} -5055,Novice_Egg_Cap,Novice False Eggshell,4,1,,1,,6,,0,0x00000001,63,2,256,,0,0,101,{},{},{} -5056,Love_Berry,Fruit of Love,4,1,,200,,0,,0,0xFFFFFFFF,63,2,256,,0,0,140,{},{},{} -5057,Ear_Of_Black_Cat,Black Cat Ears,4,16000,,200,,4,,0,0xFFFFFFFF,63,2,256,,45,1,141,{},{},{} -5058,Drooping_Kitty,Drooping Cat,4,250000,,500,,3,,0,0xFFFFFFFE,63,2,256,,0,1,142,{ bonus bMdef,15; bonus2 bResEff,Eff_Curse,3000; },{},{} -5059,Brown_Bear_Cap,Teddybear Hat,4,20,,800,,6,,0,0xFFFFFFFF,63,2,256,,50,1,143,{},{},{} -5060,Party_Hat,Party Hat,4,20,,300,,4,,0,0xFFFFFFFF,63,2,256,,0,1,144,{ bonus bLuk,1; },{},{} -5061,Flower_Hairpin,Flower Hairpin,4,20,,100,,1,,0,0xFFFFFFFF,63,2,256,,0,1,145,{},{},{} -5062,Straw_Hat,Straw Hat,4,20,,200,,6,,0,0xFFFFFFFF,63,2,256,,50,1,146,{ bonus bAgi,1; },{},{} -5063,Plaster,Giant Band Aid,4,20,,100,,1,,0,0xFFFFFFFE,63,2,256,,0,1,147,{},{},{} -5064,Leaf_Headgear,Smokie Leaf,4,20,,100,,1,,0,0xFFFFFFFF,63,2,256,,0,1,148,{},{},{} -5065,Fish_On_Head,Blue Fish,4,20,,500,,4,,0,0xFFFFFFFF,63,2,256,,50,1,149,{ bonus2 bAddRace,RC_Fish,10; },{},{} -5066,Horn_Of_Succubus,Succubus Horn,4,20,,800,,7,,0,0xFFFFFFFE,63,2,256,,70,1,150,{ bonus bInt,1; bonus bMdef,10; },{},{} -5067,Sombrero,Sombrero,4,20,,350,,8,,0,0xFFFFFFFE,63,2,256,,0,1,151,{ bonus bAgi,1; },{},{} -5068,Ear_Of_Devil's_Wing,Evil Wing Ears,4,20,,100,,3,,0,0xFFFFFFFF,63,2,512,,70,0,152,{ bonus bStr,1; },{},{} -5069,Mask_Of_Fox,Kitsune Mask,4,20,,300,,2,,0,0xFFFFFFFE,63,2,256,,0,1,153,{ bonus bAgi,1; bonus bLuk,1; },{},{} -5070,Headband_Of_Power,Hot-blooded Headband,4,20,,100,,3,,0,0xFFFFFFFE,63,2,256,,0,1,154,{ bonus bStr,2; },{},{} -5071,Indian_Headband,Indian Headband,4,20,,200,,2,,0,0xFFFFFFFE,63,2,256,,0,1,155,{ bonus bDex,1; },{},{} -5072,Inccubus_Horn,Incubus Horn,4,20,,800,,7,,0,0xFFFFFFFE,63,2,256,,70,1,156,{ bonus bAgi,1; bonus bMdef,10; },{},{} -5073,Cap_Of_Concentration,Model Training Hat,4,20,,700,,5,,0,0xFFFFFFFE,63,2,256,,0,1,157,{ bonus bDex,2; },{},{} -5074,Ear_Of_Angel's_Wing,Angel Wing Ears,4,20,,100,,3,,0,0xFFFFFFFF,63,2,512,,70,0,158,{ bonus bStr,1; },{},{} -5075,Cowboy_Hat,Cowboy Hat,4,20,,500,,8,,0,0xFFFFFFFF,63,2,256,,0,1,159,{},{},{} -5076,Fur_Hat,Beanie,4,20,,350,,3,,0,0xFFFFFFFF,63,2,256,,0,1,160,{ bonus bLuk,1; },{},{} -5077,Tulip_Hairpin,Tulip Hairpin,4,20,,100,,1,,0,0xFFFFFFFF,63,2,256,,0,1,161,{},{},{} -5078,Sea_Otter_Cap,Sea-Otter Hat,4,20,,800,,6,,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,,8,,0,0xFFFFFFFF,63,2,256,,45,1,164,{},{},{} -5081,Mistress_Crown,Crown of Mistress,4,20,,100,,2,,0,0xFFFFFFFE,63,2,256,,75,1,165,{ bonus bMaxSP,100; bonus bInt,2; bonus bUnbreakableHelm; },{},{} -5082,Mushroom_Band,Decorative Mushroom,4,20,,100,,3,,0,0xFFFFFFFF,63,2,256,,0,1,166,{},{},{} -5083,Red_Tailed_Ribbon,Red Ribbon,4,20,,200,,2,,0,0xFFFFFFFF,63,2,256,,45,1,167,{ bonus bMdef,10; },{},{} -5084,Lazy_Raccoon,Lazy Smokie,4,20,,500,,2,,0,0xFFFFFFFE,63,2,256,,0,1,168,{ bonus2 bResEff,Eff_Sleep,2000; },{},{} -5085,Pair_Of_Red_Ribbon,Small Ribbons,4,20,,100,,2,,0,0xFFFFFFFF,63,2,512,,45,0,169,{},{},{} -5086,Alarm_Mask,Alarm Mask,4,20,,100,,2,,0,0xFFFFFFFE,63,2,513,,0,0,170,{ bonus2 bResEff,Eff_Blind,5000; },{},{} -5087,Goblin_Mask_01,Poker Face,4,20,,100,,1,,0,0xFFFFFFFF,63,2,513,,0,0,171,{},{},{} -5088,Goblin_Mask_02,Surprised Mask,4,20,,100,,1,,0,0xFFFFFFFF,63,2,513,,0,0,172,{},{},{} -5089,Goblin_Mask_03,Annoyed Mask,4,20,,100,,1,,0,0xFFFFFFFF,63,2,513,,0,0,173,{},{},{} -5090,Goblin_Mask_04,Goblin Leader Mask,4,20,,100,,2,,0,0xFFFFFFFF,63,2,513,,0,0,174,{},{},{} -5091,Big_Golden_Bell,Decorative Golden Bell,4,20,,200,,2,,0,0xFFFFFFFE,63,2,768,,35,1,175,{},{},{} -5092,Blue_Coif,Coif,4,150000,,300,,5,,0,0x00001100,63,2,768,,65,1,176,{},{},{} -5093,Blue_Coif_,Coif,4,150000,,300,,5,,1,0x00001100,63,2,768,,65,1,177,{ bonus bMaxSP,100; },{},{} -5094,Orc_Hero_Helm,Helmet of Orc Hero,4,500000,,900,,5,,0,0xFFFFFFFE,63,2,768,,55,1,178,{ bonus bStr,2; bonus bVit,1; },{},{} -5095,Orc_Hero_Helm_,Helmet of Orc Hero,4,800000,,1000,,5,,1,0xFFFFFFFE,63,2,768,,55,1,179,{ bonus bStr,2; bonus bVit,1; },{},{} -5096,Assassin_Mask_,Assassin Mask,4,20,,100,,1,,0,0x00001100,63,2,1,,70,0,180,{},{},{} -5097,Cone_Hat_,Holiday Hat,4,0,,400,,0,,0,0xFFFFFFFF,63,2,256,,0,1,144,{},{},{} -5098,Tiger_Mask,Tiger Mask,4,20,,400,,2,,0,0xFFFFFFFF,63,2,768,,50,0,181,{ bonus bStr,3; bonus bMaxHP,100; },{},{} -5099,Cat_Hat,Neko Mimi,4,20,,300,,2,,0,0xFFFFFFFF,63,2,256,,0,1,182,{ bonus bLuk,2; bonus bMdef,10; bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5; },{},{} -5100,Sales_Signboard,Sales Banner,4,20,,800,,0,,0,0xFFFFFFFF,63,2,256,,75,1,183,{ bonus bStr,1; bonus bAgi,1; bonus bLuk,1; },{},{} -5101,Takius_Blindfold,Takius's Blindfold,4,20,,100,,1,,0,0xFFFFFFFF,63,2,512,,0,0,184,{},{},{} -5102,Round_Eyes,Blank Eyes,4,20,,100,,0,,0,0xFFFFFFFF,63,2,512,,0,0,185,{},{},{} -5103,Sunflower_Hairpin,Sunflower Hairpin,4,20,,600,,2,,0,0xFFFFFFFE,63,2,256,,30,0,186,{ bonus bAgi,2; bonus bCritical,5; },{},{} -5104,Dark_Blindfold,Dark Blinder,4,20,,100,,0,,0,0xFFFFFFFE,63,2,512,,0,0,187,{ bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Stun,200; },{},{} -5105,Hat_Of_Cake_,2nd Anniversary Hat,4,20,,1000,,2,,0,0xFFFFFFFF,63,2,256,,24,1,109,{ bonus bDex,1; bonus bMaxSP,80; bonus3 bAddMonsterDropItem,7864,7,50; },{},{} -5106,Cone_Hat_INA,2nd Anniversary Hat,4,20,,300,,10,,0,0xFFFFFFFF,63,2,256,,1,0,144,{ bonus bLuk,1; bonus bMatkRate,3; bonus bFlee,3; bonus bHit,3; bonus bFlee2,3; },{},{} -5107,Well_Baked_Toast,Crunch Toast,4,20,,50,,0,,0,0xFFFFFFFF,63,2,1,,0,0,188,{},{},{} -5108,Detective_Hat,Renown Detective's Cap,4,20,,350,,6,,1,0xFFFFFFFF,63,2,256,,0,1,189,{},{},{} -5109,Red_Bonnet,Red Bonnet,4,20,,400,,4,,0,0xFFFFFFFF,63,2,256,,0,1,190,{},{},{} -5110,Baby_Pacifier,Baby Pacifier,4,20,,50,,0,,0,0xFFFFFFFF,63,2,1,,0,0,191,{},{},{} -5111,Galapago_Cap,Galapago Cap,4,20,,500,,4,,0,0xFFFFFFFF,63,2,256,,55,1,192,{ bonus2 bAddMonsterDropItem,605,100; },{},{} -5112,Super_Novice_Hat,Super Novice Hat,4,8500,,400,,8,,0,0x00000001,63,2,256,,40,1,193,{ bonus bAllStats,1; },{},{} -5113,Angry_Mouth,Angry Snarl,4,20,,50,,0,,0,0xFFFFFFFF,63,2,1,,0,0,194,{},{},{} -5114,Fedora,Bucket Hat,4,6000,,300,,6,,0,0xFFFFFFFF,63,2,256,,0,1,195,{},{},{} -5115,Winter_Hat,Winter Hat,4,20,,500,,5,,0,0xFFFFFFFF,63,2,256,,0,1,196,{ bonus2 bResEff,Eff_Freeze,1000; },{},{} -5116,Banana_Hat,Banana Hat,4,20,,200,,3,,0,0xFFFFFFFF,63,2,256,,0,1,197,{ bonus3 bAutoSpell,"SM_PROVOKE",3,30; },{},{} -5117,Mistic_Rose,Mystic Rose,4,20,,100,,0,,0,0xFFFFFFFF,63,2,256,,0,1,198,{ bonus2 bSubRace,RC_Plant,2; },{},{} -5118,Ear_Of_Puppy,Puppy Headband,4,20,,100,,3,,0,0xFFFFFFFF,63,2,256,,0,1,199,{},{},{} -5119,Super_Novice_Hat_,Super Novice Hat,4,8500,,400,,8,,1,0x00000001,63,2,256,,40,1,193,{ bonus bAllStats,1; },{},{} -5120,Fedora_,Bucket Hat,4,6000,,300,,6,,1,0xFFFFFFFF,63,2,256,,0,1,195,{},{},{} -5121,Zherlthsh_Mask,Zealotus Mask,4,20,,400,,3,,0,0xFFFFFFFE,63,2,768,,70,1,200,{ bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; },{},{} -5122,Magni_Cap,Magni's Cap,4,30000,,1000,,9,,0,0xFFFFFFFE,63,2,256,,65,1,250,{ bonus bStr,2; },{},{} -5123,Ulle_Cap,Ulle's Cap,4,30000,,500,,6,,1,0xFFFFFFFE,63,2,256,,65,1,254,{ bonus bDex,2; bonus bAgi,1; },{},{} -5124,Fricca_Circlet,Fricca's Circlet,4,30000,,300,,6,,0,0xFFFFFFFE,63,2,256,,65,1,251,{ bonus bMdef,10; bonus bInt,2; bonus bMaxSP,50; },{},{} -5125,Kiss_Of_Angel,Angel's Kiss,4,10000,,300,,6,,1,0x00000001,63,2,256,,50,1,255,{ bonus bSPrecovRate,3; },{},{} -5126,Morpheus's_Hood,Morpheus's Hood,4,30000,,200,,3,,0,0xFFFFFFFE,63,2,256,,33,1,256,{ bonus bInt,2; },{},{} -5127,Morrigane's_Helm,Morrigane's Helm,4,30000,,500,,8,,0,0xFFFFFFFE,63,2,256,,61,1,257,{ bonus bLuk,2; bonus bBaseAtk,3; },{},{} -5128,Goibne's_Helmet,Goibne's Helm,4,30000,,500,,10,,0,0xFFFFFFFE,63,2,256,,54,1,258,{ bonus bVit,3; bonus bMdef,3; },{},{} -5129,Bird_Nest,Bird Nest,4,20,,400,,2,,0,0xFFFFFFFF,63,2,256,,55,0,201,{ bonus bAgi,2; bonus2 bSubRace,RC_Brute,10; bonus2 bSubRace,RC_Player_Doram,10; },{},{} -5130,Lion_Mask,Lion Mask,4,20,,700,,0,,0,0x00CFDF80,63,2,768,,75,1,202,{ bonus2 bAddEffWhenHit,Eff_Silence,500; bonus bMdef,1; },{},{} -5131,Close_Helmet,Close Helmet,4,20,,1200,,8,,0,0x00004082,63,2,769,,75,1,203,{ bonus bVit,3; bonus bMaxHPrate,3; },{},{} -5132,Angeling_Hat,Angeling Hat,4,20,,700,,5,,0,0xFFFFFFFF,63,2,256,,0,0,204,{ bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; },{},{} -5133,Sheep_Hat,Sheep Hat,4,20,,150,,3,,0,0x00008110,63,2,256,,0,0,205,{ bonus bShortWeaponDamageReturn,5; },{},{} -5134,Pumpkin_Hat,Pumpkin-Head,4,20,,200,,3,,0,0xFFFFFFFF,63,2,256,,0,1,206,{},{},{} -5135,Cyclops_Visor,Cyclop's Eye,4,0,,200,,0,,0,0xFFFFFFFE,63,2,512,,75,0,207,{ bonus bMaxSP,50; },{},{} -5136,Santa's_Hat_,Antonio's Santa Hat,4,20,,100,,4,,0,0xFFFFFFFF,63,2,256,,0,1,20,{ bonus3 bAutoSpellWhenHit,"PR_GLORIA",5,50; bonus3 bAutoSpellWhenHit,"AL_BLESSING",10,50; },{},{} -5137,Alice_Doll,Alice Doll,4,20,,500,,1,,1,0xFFFFFFFE,63,2,256,,30,0,208,{ bonus bStr,1; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus2 bAddEff2,Eff_Sleep,10; },{},{} -5138,Magic_Eyes,Magic Eyes,4,20,,300,,3,,0,0x00810204,63,2,256,,30,1,209,{ bonus bMdef,5; bonus bVariableCastrate,-10; bonus bUseSPrate,20; },{},{} -5139,Hibiscus,Hibiscus,4,20,,200,,0,,0,0xFFFFFFFF,63,2,256,,10,0,210,{ bonus bDex,1; bonus bInt,1; bonus bMdef,5; },{},{} -5140,Charming_Ribbon,Charming Ribbon,4,20,,400,,2,,1,0xFFFFFFFF,63,2,256,,10,1,211,{ bonus2 bSubRace,RC_Undead,5; bonus2 bSubRace,RC_Demon,5; },{},{} -5141,Marionette_Doll,Marionette Doll,4,20,,400,,1,,1,0xFFFFFFFE,63,2,256,,30,1,212,{ bonus bStr,1; },{},{} -5142,Crescent_Helm,Crescent Helm,4,20,,3000,,20,,1,0x000444A2,63,2,768,,50,1,213,{ bonus bVit,1; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; },{},{} -5143,Kabuki_Mask,Kabuki Mask,4,20,,1000,,5,,1,0xFFFFFFFE,63,1,769,,30,1,214,{ bonus2 bResEff,Eff_Silence,3000; },{},{} -5144,Gambler_Hat,Gambler Hat,4,20,,200,,4,,0,0xFFFFFFFF,63,2,256,,0,1,16,{ bonus bLuk,5; },{},{} -5145,Carnival_Joker_Jester,Carnival Joker Jester,4,10,,100,,0,,0,0xFFFFFFFF,63,2,256,,0,1,89,{ bonus bAllStats,3; },{},{} -5146,Elephant_Hat,Elephant Hat,4,0,,500,,0,,0,0xFFFFFFFF,63,2,256,,0,1,215,{ bonus bVit,1; bonus2 bSubRace,RC_Brute,7; bonus2 bSubRace,RC_Player_Doram,7; skill "WZ_WATERBALL",1; },{},{} -5147,Baseball_Cap,Baseball Cap,4,0,,200,,5,,0,0xFFFFFFFF,63,2,256,,0,1,216,{},{},{} -5148,Phrygian_Cap,Phrygian Cap,4,0,,500,,0,,0,0xFFFFFFFF,63,2,256,,0,1,217,{ bonus bInt,2; },{},{} -5149,Silver_Tiara,Silver Tiara,4,0,,100,,0,,0,0xFFFFFFFF,63,2,256,,0,1,218,{ bonus bInt,2; },{},{} -5150,Joker_Jester_,Joker Jester,4,20,,100,,3,,0,0xFFFFFFFF,63,2,256,,0,0,219,{ bonus bSpeedRate,25; },{},{} -5151,Headset_OST,Note Headphones,4,20,,200,,4,,1,0xFFFFFFFF,63,2,768,,0,1,220,{ bonus bMdef,3; bonus2 bResEff,Eff_Stun,1000; bonus2 bResEff,Eff_Freeze,1000; },{},{} -5152,Chinese_Crown,Chinese Crown,4,20,,2000,,2,,0,0xFFFFFFFF,63,2,768,,1,1,221,{ bonus2 bResEff,Eff_Stun,1000; bonus bInt,1; },{},{} -5153,Angeling_Hairpin,Angeling Hairpin,4,20,,700,,5,,0,0xFFFFFFFF,63,2,256,,0,1,222,{ bonus bFlee,5; },{},{} -5154,Sunglasses_F,Father's Sunglasses,4,20,,100,,4,,0,0xFFFFFFFF,63,2,512,,0,0,12,{},{},{} -5155,Granpa_Beard_F,Father's White Moustache,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,25,{ bonus bBaseAtk,20; },{},{} -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,,10,,1,0x00008110,63,2,256,,0,1,35,{ bonus bMdef,3; },{},{} -5159,Golden_Gear_,Golden Gear,4,20,,900,,9,,1,0xFFFFFFFE,63,2,256,,40,1,30,{ bonus bUnbreakableHelm; },{},{} -5160,Magestic_Goat_,Majestic Goat,4,20,,800,,9,,1,0x006444A2,63,2,256,,0,1,41,{ bonus bStr,1; },{},{} -5161,Sharp_Gear_,Spiky Band,4,20,,1000,,12,,1,0x0066D5F2,63,2,256,,50,1,43,{},{},{} -5162,Bone_Helm_,Bone Helm,4,20,,800,,15,,1,0x000444A2,63,2,256,,70,1,103,{ bonus2 bSubEle,Ele_Dark,-15; },{},{} -5163,Corsair_,Corsair,4,20,,500,,10,,1,0xFFFFFFFE,63,2,256,,0,1,105,{ bonus bVit,1; },{},{} -5164,Tiara_,Tiara,4,20,,400,,7,,1,0xFFFFFFFE,63,0,256,,45,1,19,{ bonus bInt,1; },{},{} -5165,Crown_,Crown,4,20,,400,,7,,1,0xFFFFFFFE,63,1,256,,45,1,45,{ bonus bInt,1; },{},{} -5166,Spinx_Helm_,Sphinx Hat,4,20,,3000,,5,,1,0x00004082,63,2,257,,65,0,137,{ bonus bStr,2; },{},{} -5167,Munak_Turban_,Munak Hat,4,20,,300,,5,,1,0xFFFFFFFF,63,2,769,,0,0,51,{ bonus2 bSubRace,RC_Undead,10; },{},{} -5168,Bongun_Hat_,Bongun Hat,4,20,,300,,5,,1,0xFFFFFFFF,63,2,769,,0,0,139,{},{},{} -5169,Bride_Mask,Bride Mask,4,30000,,500,,4,,1,0xFFFFFFFF,63,2,768,,40,1,223,{ if(BaseClass==Job_Taekwon){ bonus bLuk,2; bonus bCritical,5; } },{},{} -5170,Feather_Beret,Feather Beret,4,30000,,600,,1,,0,0xFFFFFFFE,63,2,256,,0,1,224,{ bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; },{},{} -5171,Valkyrie_Helm,Valkyrie Helm,4,100000,,1000,,10,,1,0xFFFFFFFE,18,2,256,,0,1,225,{ bonus bMdef,5; },{},{} -5172,Beret,Beret,4,30000,,700,,0,,0,0xFFFFFFFF,63,2,256,,0,0,226,{ bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; },{},{} -5173,Satto_Hat,Magistrate Hat,4,30000,,400,,6,,1,0xFFFFFFFF,63,2,256,,60,1,227,{ if(BaseClass==Job_Taekwon){ bonus bAgi,1; bonus bHPrecovRate,3; } },{},{} -5174,Ayam,Ayam,4,30000,,400,,6,,1,0xFFFFFFFF,63,2,256,,60,1,228,{ if(BaseClass==Job_Taekwon){ bonus bInt,1; bonus bSPrecovRate,3; } },{},{} -5175,Censor_Bar,Censor Bar,4,30000,,100,,0,,0,0xFFFFFFFF,63,2,512,,0,0,229,{ bonus2 bResEff,Eff_Curse,500; bonus bMdef,1; bonus bHit,-5; },{},{} -5176,Hahoe_Mask,Hahoe Mask,4,30000,,100,,2,,0,0xFFFFFFFF,63,2,513,,30,0,230,{ if(BaseClass==Job_Taekwon){ bonus bLuk,1; bonus bFlee2,2; } },{},{} -5177,Guardian_Lion_Mask,Mythical Lion Mask,4,30000,,500,,5,,1,0xFFFFFFFF,63,2,768,,40,1,231,{ if(BaseClass==Job_Taekwon){ bonus bDex,2; bonus bBaseAtk,2*getrefine(); bonus3 bAddEff,Eff_Stun,1000,ATF_SHORT; } },{},{} -5178,Candle_,Candle,4,20,,150,,0,,0,0xFFFFFFFF,63,2,256,,0,1,113,{ bonus bAllStats,1; },{},{} -5179,Gold_Tiara,Golden Tiara,4,0,,100,,0,,0,0xFFFFFFFF,63,2,256,,0,1,232,{ bonus bInt,2; },{},{} -5180,Phrygian_Cap_,France Holiday Hat,4,20,,100,,2,,0,0xFFFFFFFF,63,2,256,,0,1,217,{ bonus bVit,1; },{},{} -5181,Helm_Of_Darkness,Helm of Darkness,4,20,,500,,3,,1,0x000654E2,63,2,768,,50,1,233,{ bonus bStr,2; },{},{} -5182,Puppy_Hat,Puppy Hat,4,20,,500,,4,,0,0xFFFFFFFF,63,2,256,,30,0,234,{ bonus bAgi,1; bonus3 bAutoSpell,"PR_GLORIA",1,10+20*(readparam(bAgi)>=77); },{},{} -5183,Bird_Nest_Hat,Bird Nest Hat,4,20,,500,,4,,0,0xFFFFFFFF,63,2,256,,10,1,235,{ bonus bDex,1; bonus bAgi,1; bonus2 bResEff,Eff_Stun,1000; },{},{} -5184,Captain_Hat,Captain's Hat,4,20,,500,,8,,0,0xFFFFFFFE,63,2,256,,30,1,236,{ bonus2 bSubEle,Ele_Water,5; },{},{} -5185,Laurel_Wreath,Laurel Wreath,4,20,,100,,2,,1,0xFFFFFFFF,63,2,256,,10,1,237,{ bonus bLuk,3; bonus2 bResEff,Eff_Blind,500; bonus2 bResEff,Eff_Curse,500; },{},{} -5186,Geographer_Band,Geographer Band,4,20,,500,,2,,0,0xFFFFFFFF,63,2,256,,30,0,238,{ bonus bInt,1; bonus3 bAutoSpellWhenHit,"AL_HEAL",1,50; },{},{} -5187,Twin_Ribbon,Twin Ribbon,4,20,,200,,6,,1,0xFFFFFFFF,63,2,256,,30,1,239,{ bonus bMaxSP,30; bonus bMdef,3; bonus3 bAutoSpellWhenHit,"NPC_STONESKIN",6,10; bonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,120,BF_MAGIC,0; },{},{} -5188,Minstrel_Hat,Wandering Minstrel Hat,4,20,,500,,2,,0,0xFFFFFFFF,63,2,256,,50,1,240,{ bonus bInt,1; bonus bDex,1; },{},{} -5189,Fallen_Leaves,Autumn Leaves,4,20,,100,,0,,0,0xFFFFFFFF,63,2,256,,0,1,241,{ bonus bMaxHP,40; bonus bMaxSP,40; },{},{} -5190,Baseball_Cap_,Independence Memorial Hat,4,20,,20,,3,,1,0xFFFFFFFF,63,2,256,,0,1,216,{},{},{} -5191,Ribbon_Black,Black Ribbon,4,800,,100,,1,,1,0xFFFFFFFF,63,0,256,,0,1,242,{ bonus bInt,1; bonus bMdef,3; },{},{} -5192,Ribbon_Yellow,Yellow Ribbon,4,800,,100,,1,,1,0xFFFFFFFF,63,0,256,,0,1,243,{ bonus bMdef,3; },{},{} -5193,Ribbon_Green,Green Ribbon,4,800,,100,,1,,1,0xFFFFFFFF,63,0,256,,0,1,244,{ bonus bMdef,3; },{},{} -5194,Ribbon_Pink,Pink Ribbon,4,800,,100,,1,,1,0xFFFFFFFF,63,0,256,,0,1,245,{ bonus bMdef,3; },{},{} -5195,Ribbon_Red,Red Ribbon,4,800,,100,,1,,1,0xFFFFFFFF,63,0,256,,0,1,246,{ bonus bMdef,3; },{},{} -5196,Ribbon_Orange,Orange Ribbon,4,800,,100,,1,,1,0xFFFFFFFF,63,0,256,,0,1,247,{ bonus bMdef,3; },{},{} -5197,Ribbon_White,White Ribbon,4,800,,100,,1,,1,0xFFFFFFFF,63,0,256,,0,1,248,{ bonus bMdef,3; },{},{} -5198,Drooping_Bunny,Drooping Bunny,4,10,,100,,1,,0,0xFFFFFFFF,63,2,256,,0,1,249,{ bonus bDex,1; bonus bFlee,2; },{},{} -5199,Baseball_Cap_I,Baseball Cap,4,0,,200,,3,,0,0xFFFFFFFF,63,2,256,,0,1,216,{},{},{} -5200,Coppola,Coppola,4,10,,300,,0,,0,0xFFFFFFFF,63,2,256,,0,1,252,{},{},{} -5201,Party_Hat_B,Party Hat,4,20,,300,,4,,0,0xFFFFFFFF,63,2,256,,0,1,144,{ bonus bAllStats,3; },{},{} -5202,Pumpkin_Hat_,Fantastic Pumpkin-Head,4,20,,200,,3,,0,0xFFFFFFFF,63,2,256,,0,1,206,{ bonus2 bSubRace,RC_Demon,5; bonus3 bAddMonsterDropItem,529,RC_DemiHuman,1500; },{},{} -5203,Tongue_Mask,Smiling Mask,4,20,,200,,2,,0,0xFFFFFFFF,63,2,513,,0,0,253,{ bonus bSpeedRate,25; },{},{} -5204,Event_Pierrot_Nose,Rudolph's Nose,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,49,{ bonus2 bResEff,Eff_Blind,3000; bonus2 bAddMonsterDropItem,12130,30; },{},{} -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,,3,,1,0xFFFFFFFE,63,2,256,,40,1,262,{ bonus2 bHPDrainRate,50,8; bonus2 bSPDrainRate,10,4; bonus2 bHPLossRate,10,5000; },{},{} -5209,Yellow_Baseball_Cap,Love Dad Cap,4,20,,300,,2,,0,0xFFFFFFFE,63,2,256,,0,1,263,{},{},{} -5210,Flying_Angel,Flapping Angel Wing,4,20,,300,,3,,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,,3,,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; } },{},{} -5212,Satellite_Hairband,Satellite Hairband,4,0,,1000,,6,,1,0xFFFFFFFF,63,2,256,,30,1,266,{ bonus bMaxHP,50; bonus bMaxSP,10; skill "AL_RUWACH",1; },{},{ sc_end SC_RUWACH; } -5213,Black_Bunny_Band,Sheila Hairnet,4,0,,200,,4,,0,0xFFFFFFFF,63,2,256,,1,1,267,{ bonus bAgi,2; bonus bMdef,3; },{},{} -5214,Moonlight_Flower_Hat,Moonlight Flower Hat,4,0,,200,,3,,0,0xFFFFFFFF,63,2,768,,1,1,268,{ bonus bDex,2; bonus3 bAutoSpell,"AL_INCAGI",1,50; },{},{} -5215,Angelic_Chain_,Evolved Angel Wing,4,20,,100,,4,,0,0xFFFFFFFE,63,2,256,,0,1,38,{ bonus bMdef,3; bonus bDex,1; bonus bInt,1; bonus2 bSubRace,RC_Demon,3; },{},{} -5216,Satanic_Chain_,Evolved Evil Wing,4,20,,100,,6,,0,0xFFFFFFFE,63,2,256,,0,1,39,{ bonus bStr,1; bonus bAgi,1; bonus bFlee,3; bonus2 bSubRace,RC_Angel,3; },{},{} -5217,Magestic_Goat_TW,Evolved Majestic Goat,4,20,,800,,10,,0,0x006444A2,63,2,256,,0,1,41,{ bonus bStr,2; },{},{} -5218,Bunny_Band_,Evolved Bunny Band,4,20,,100,,3,,0,0xFFFFFFFF,63,2,256,,0,1,15,{ bonus bInt,2; },{},{} -5219,Drooping_Kitty_,Evolved Drooping Cat,4,250000,,500,,3,,0,0xFFFFFFFE,63,2,256,,0,1,142,{ bonus bMdef,18; bonus bFlee,3; },{},{} -5220,Smoking_Pipe_,Evolved Pipe,4,20,,100,,0,,0,0xFFFFFFFE,63,2,1,,0,0,55,{ bonus bVit,1; bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5; },{},{} -5221,Pair_Of_Red_Ribbon_,Evolved Pair of Red Ribbon,4,20,,100,,2,,0,0xFFFFFFFF,63,0,512,,45,0,169,{ bonus bFlee,5; },{},{} -5222,Fish_On_Head_,Evolved Blue Fish,4,20,,500,,4,,0,0xFFFFFFFF,63,2,256,,50,1,149,{ bonus bAgi,1; bonus bDex,1; },{},{} -5223,Big_Golden_Bell_,Evolved Big Golden Bell,4,20,,200,,2,,0,0xFFFFFFFE,63,2,768,,35,1,175,{ bonus bAgi,2; },{},{} -5224,Orc_Hero_Helm_TW,Evolved Orc Hero Helm,4,500000,,900,,5,,0,0xFFFFFFFE,63,2,768,,55,1,178,{ bonus bStr,2; bonus bVit,1; bonus bMaxHPrate,10; },{},{} -5225,Marcher_Hat,Parade Hat,4,20,,200,,4,,1,0xFFFFFFFF,63,2,256,,10,1,269,{ bonus bMdef,2; bonus4 bAutoSpellWhenHit,"AL_ANGELUS",5,30,0; bonus4 bAutoSpellWhenHit,"HP_ASSUMPTIO",1,1,0; bonus2 bResEff,Eff_Stun,1000; if(BaseClass==Job_Acolyte) bonus4 bAutoSpellOnSkill,"AL_HEAL","PR_LEXAETERNA",1,1000; },{},{} -5226,Mini_Propeller_,Mini Propeller,4,20,,200,,4,,0,0xFFFFFFFF,63,2,256,,0,1,270,{ bonus bAgi,2; bonus bDex,1; bonus bFlee,10; bonus bVariableCastrate,-getrefine(); },{},{} -5227,Red_Deviruchi_Cap,Red Deviruchi Hat,4,20,,800,,4,,0,0xFFFFFFFE,63,2,256,,64,1,271,{ bonus bStr,1; bonus bInt,1; },{},{} -5228,White_Deviruchi_Cap,Gray Deviruchi Hat,4,20,,800,,4,,0,0xFFFFFFFE,63,2,256,,64,1,272,{ bonus bStr,1; bonus bInt,1; },{},{} -5229,Gray_Deviruchi_Cap,Brown Deviruchi Hat,4,20,,800,,4,,0,0xFFFFFFFE,63,2,256,,64,1,273,{ bonus bStr,1; bonus bInt,1; },{},{} -5230,White_Drooping_Kitty,Gray Drooping Cat,4,250000,,500,,3,,0,0xFFFFFFFE,63,2,256,,0,1,274,{ bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15; },{},{} -5231,Gray_Drooping_Kitty,Brown Drooping Cat,4,250000,,500,,3,,0,0xFFFFFFFE,63,2,256,,0,1,275,{ bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15; },{},{} -5232,Pink_Drooping_Kitty,Pink Drooping Cat,4,250000,,500,,3,,0,0xFFFFFFFE,63,2,256,,0,1,276,{ bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15; },{},{} -5233,Blue_Drooping_Kitty,Blue Drooping Cat,4,250000,,500,,3,,0,0xFFFFFFFE,63,2,256,,0,1,277,{ bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15; },{},{} -5234,Yellow_Drooping_Kitty,Yellow Drooping Cat,4,250000,,500,,3,,0,0xFFFFFFFE,63,2,256,,0,1,278,{ bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15; },{},{} -5235,Gray_Fur_Hat,Brown Beanie,4,20,,350,,3,,0,0xFFFFFFFF,63,2,256,,0,1,279,{ bonus bLuk,1; },{},{} -5236,Blue_Fur_Hat,Blue Beanie,4,20,,350,,3,,0,0xFFFFFFFF,63,2,256,,0,1,280,{ bonus bLuk,1; },{},{} -5237,Pink_Fur_Hat,Pink Beanie,4,20,,350,,3,,0,0xFFFFFFFF,63,2,256,,0,1,281,{ bonus bLuk,1; },{},{} -5238,Red_Wizardry_Hat,Red Mage Hat,4,20,,300,,2,,0,0x00810204,63,2,256,,0,1,282,{ bonus bInt,2; bonus bMaxSP,150; },{},{} -5239,White_Wizardry_Hat,Gray Mage Hat,4,20,,300,,2,,0,0x00810204,63,2,256,,0,1,283,{ bonus bInt,2; bonus bMaxSP,150; },{},{} -5240,Gray_Wizardry_Hat,Brown Mage Hat,4,20,,300,,2,,0,0x00810204,63,2,256,,0,1,284,{ bonus bInt,2; bonus bMaxSP,150; },{},{} -5241,Blue_Wizardry_Hat,Blue Mage Hat,4,20,,300,,2,,0,0x00810204,63,2,256,,0,1,285,{ bonus bInt,2; bonus bMaxSP,150; },{},{} -5242,Yellow_Wizardry_Hat,Yellow Mage Hat,4,20,,300,,2,,0,0x00810204,63,2,256,,0,1,286,{ bonus bInt,2; bonus bMaxSP,150; },{},{} -5243,Chullos,Shafka,4,20,,800,,2,,1,0xFFFFFFFF,63,2,768,,0,1,287,{ bonus2 bResEff,Eff_Freeze,1000; },{},{} -5244,Elven_Blindfold,Elven Blindfold,4,20,,200,,1,,0,0xFFFFFFFF,63,2,512,,0,0,288,{ bonus2 bResEff,Eff_Blind,10000; },{},{} -5245,Elven_Sunglasses,Elven Sunglasses,4,20,,200,,1,,0,0xFFFFFFFF,63,2,512,,0,0,289,{ bonus2 bResEff,Eff_Blind,500; },{},{} -5246,Angelic_Helm,Angelic Helm,4,20,,700,,7,,0,0xFFFFFFFF,63,2,256,,0,1,290,{ bonus bAgi,1; bonus bLuk,1; bonus bMdef,3; bonus2 bSubRace,RC_Demon,5; },{},{} -5247,Satanic_Helm,Satanic Helm,4,20,,700,,8,,0,0xFFFFFFFF,63,2,256,,0,1,291,{ bonus bAgi,1; bonus bLuk,1; bonus bMdef,3; bonus2 bSubRace,RC_Demon,5; },{},{} -5248,Robotic_Blindfold,Robotic Blindfold,4,20,,200,,1,,0,0xFFFFFFFF,63,2,512,,0,0,292,{ bonus2 bResEff,Eff_Blind,10000; },{},{} -5249,Human_Blindfold,Human Blindfold,4,20,,200,,1,,0,0xFFFFFFFF,63,2,512,,0,0,293,{ bonus2 bResEff,Eff_Blind,10000; },{},{} -5250,Robotic_Ears,Robotic Ears,4,20,,10,,0,,0,0xFFFFFFFF,63,2,512,,0,0,294,{},{},{} -5251,Round_Ears,Round Ears,4,20,,10,,0,,0,0xFFFFFFFF,63,2,512,,0,0,295,{},{},{} -5252,Drooping_Nine_Tail,Drooping Ninetail,4,20,,300,,1,,0,0xFFFFFFFF,63,2,256,,20,1,296,{ bonus bAgi,1; bonus bDex,1; bonus3 bAutoSpellWhenHit,"PR_GLORIA",1,30; },{},{} -5253,Lif_Doll_Hat,Lif Doll Hat,4,20,,200,,2,,1,0xFFFFFFFF,63,2,256,,20,1,297,{ bonus bInt,1; .@r = getrefine(); bonus bMdef,.@r; bonus bDef,.@r*-1; },{},{} -5254,Deviling_Hat,Deviling Hat,4,20,,500,,6,,1,0xFFFFFFFF,63,2,256,,20,1,298,{ bonus bBaseAtk,2; bonus bMatk,2; if(getrefine()>=7) bonus2 bExpAddRace,RC_All,1; },{},{} -5255,Triple_Poring_Hat,Triple Poring Hat,4,20,,600,,6,,0,0xFFFFFFFF,63,2,256,,20,0,299,{ bonus bLuk,3; bonus3 bAutoSpell,"BS_GREED",1,50; },{},{} -5256,Valkyrie_Feather_Band,Valkyrie Feather Band,4,20,,100,,2,,1,0xFFFFFFFF,63,2,256,,20,1,300,{ bonus bInt,1; bonus3 bAutoSpellWhenHit,"AL_HEAL",1,20; },{},{} -5257,Soulless_Wing,Soul Ring,4,20,,300,,3,,0,0xFFFFFFFE,63,2,256,,20,1,301,{ bonus bMdef,2; bonus3 bAutoSpellWhenHit,"HP_ASSUMPTIO",1,20; },{},{} -5258,Afro_Wig,Afro Wig,4,20,,100,,0,,1,0xFFFFFFFF,63,2,768,,10,1,302,{ bonus3 bAutoSpellWhenHit,"NV_FIRSTAID",1,300; bonus2 bSubEle,Ele_Neutral,1; },{},{} -5259,Elephant_Hat_,Elephant Hat,4,20,,500,,6,,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,,5,,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,,5,,0,0xFFFFFFFF,63,2,256,,0,1,232,{ bonus bStr,2; bonus bUnbreakableHelm; 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,,12,,0,0xFFFFFFFE,63,2,256,,1,0,72,{ bonus bDex,4; },{},{} -5266,Bunny_Band_C,Bunny Band,4,1,,0,,13,,0,0xFFFFFFFF,63,2,256,,1,0,15,{ bonus bMdef,5; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; },{},{} -5267,Sahkkat_C,Sakkat,4,1,,0,,10,,0,0xFFFFFFFF,63,2,256,,0,0,67,{ bonus bAgi,3; },{},{} -5268,Lord_Circlet_C,Grand Circlet,4,1,,0,,14,,0,0xFFFFFFFE,63,2,256,,1,0,93,{ bonus bStr,3; bonus bInt,3; bonus bLuk,3; bonus bMdef,4; },{},{} -5269,Flying_Angel_,Flapping Angel Wing,4,20,,300,,3,,0,0xFFFFFFFF,63,2,256,,10,1,264,{ bonus bInt,1; bonus bAgi,1; bonus bAspdRate,3; bonus bVariableCastrate,-3; },{},{} -5270,Fallen_Leaves_,Autumn Leaves,4,20,,100,,2,,1,0xFFFFFFFF,63,2,256,,0,1,241,{ bonus bFlee2,5; },{},{} -5271,Chinese_Crown_,Phoenix Crown,4,20,,500,,4,,1,0xFFFFFFFF,63,2,768,,0,1,221,{ bonus bMdef,3; bonus2 bSubClass,Class_Boss,getrefine(); },{},{} -5272,Tongue_Mask_,Tongue Mask,4,20,,100,,2,,0,0xFFFFFFFF,63,2,513,,0,0,253,{ bonus3 bAutoSpell,"SM_PROVOKE",5,50; },{},{} -5273,Happy_Wig,Happy Wig,4,20,,100,,1,,0,0xFFFFFFFF,63,2,768,,0,1,305,{ bonus bSpeedRate,25; bonus bDef,4; skill "TF_HIDING",1; },{},{ sc_end SC_HIDING; } -5274,Shiny_Wig,Shiny Wig,4,20,,100,,1,,0,0xFFFFFFFF,63,2,768,,0,1,306,{ bonus bSpeedRate,25; bonus bDef,4; skill "TF_HIDING",1; },{},{ sc_end SC_HIDING; } -5275,Marvelous_Wig,Marvelous Wig,4,20,,100,,1,,0,0xFFFFFFFF,63,2,768,,0,1,307,{ bonus bSpeedRate,25; bonus bDef,4; skill "TF_HIDING",1; },{},{ sc_end SC_HIDING; } -5276,Fantastic_Wig,Fantastic Wig,4,20,,100,,1,,0,0xFFFFFFFF,63,2,768,,0,1,308,{ bonus bSpeedRate,25; bonus bDef,4; skill "TF_HIDING",1; },{},{ sc_end SC_HIDING; } -5277,Yellow_Bandana,Yellow Bandana,4,20,,100,,1,,0,0xFFFFFFFE,63,2,256,,20,1,309,{ bonus bLuk,2; bonus bVit,2; bonus bLongAtkDef,10; },{},{} -5278,Yellow_Ribbon,Yellow Ribbon,4,20,,100,,2,,0,0xFFFFFFFE,63,2,256,,20,1,310,{ bonus bLuk,2; bonus bVit,2; bonus bLongAtkDef,10; },{},{} -5279,Drooping_Kitty_C,Refined Drooping Cat,4,2,,0,,3,,0,0xFFFFFFFE,63,2,256,,0,0,142,{ bonus bMdef,15; bonus2 bResEff,Eff_Curse,3000; },{},{} -5280,Magestic_Goat_C,Baphomet Horns,4,2,,0,,10,,0,0xFFFFFFFF,63,2,256,,0,0,41,{ bonus bStr,1; },{},{} -5281,Deviruchi_Cap_C,Refined Deviruchi Hat,4,2,,0,,4,,0,0xFFFFFFFE,63,2,256,,0,0,123,{ bonus bStr,1; bonus bInt,1; },{},{} -5282,euRO_Baseball_Cap,Europe Baseball Cap,4,0,,200,,5,,1,0xFFFFFFFF,63,2,256,,0,1,216,{},{},{} -5283,Chick_Hat,Chick Hat,4,20,,100,,2,,0,0xFFFFFFFF,63,2,256,,10,0,311,{ bonus bLuk,2; bonus bMaxHP,50; bonus bMaxSP,50; skill "TF_DOUBLE",2; bonus bDoubleRate,10; bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3; },{},{} -5284,Water_Lily_Crown,Water Lily Crown,4,20,,200,,0,,1,0xFFFFFFFF,63,2,256,,30,0,312,{ bonus bDex,1; bonus bAgi,1; bonus bMdef,3; bonus bHPrecovRate,5; bonus bSPrecovRate,3; },{},{} -5285,Vane_Hairpin,Vane Hairpin,4,20,,300,,4,,1,0xFFFFFFFF,63,2,256,,30,0,313,{ bonus bAgi,2; },{},{} -5286,Pecopeco_Hairband,Pecopeco Hairband,4,20,,0,,6,,0,0xFFFFFFFF,63,2,256,,70,0,314,{ bonus bSpeedRate,25; bonus bAspdRate,5; bonus bVariableCastrate,-5; },{},{} -5287,Vacation_Hat,Vacation Hat,4,20,,200,,2,,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; 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,,3,,0,0xFFFFFFFF,63,2,256,,0,1,249,{ bonus bDex,1; bonus bFlee,2; },{},{} -5291,Kettle_Hat,Kettle Hat,4,20,,600,,8,,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,,10,,0,0xFFFFFFFF,63,2,256,,50,1,319,{ bonus2 bSubRace,RC_Dragon,5; },{},{} -5293,Ramen_Hat,Ramen Hat,4,20,,0,,3,,0,0xFFFFFFFF,63,2,256,,0,0,320,{ bonus bDex,4; bonus4 bAutoSpellWhenHit,"AL_DECAGI",1,30,1; },{},{} -5294,Whisper_Mask,Whisper Mask,4,20,,0,,0,,0,0xFFFFFFFF,63,2,769,,0,0,321,{ bonus bAgi,3; bonus2 bSubEle,Ele_Ghost,-10; },{},{} -5295,Golden_Bandana,Golden Bandana,4,20,,2400,,4,,0,0xFFFFFFFF,63,2,768,,0,0,138,{ bonus bMdef,4; },{},{} -5296,Drooping_Nine_Tail_,Drooping Nine Tail,4,20,,300,,2,,1,0xFFFFFFFF,63,2,256,,0,1,296,{ bonus bAgi,1; bonus bCritical,1; },{},{} -5297,Soulless_Wing_,Soul Wing,4,20,,300,,3,,1,0xFFFFFFFF,63,2,256,,0,1,301,{ bonus bAllStats,1; bonus2 bSPRegenRate,2,10000; },{},{} -5298,Marvelous_Wig_,Dokebi's Wig,4,20,,100,,1,,1,0xFFFFFFFF,63,2,768,,0,1,307,{ bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubEle,Ele_Fire,-5; bonus2 bSubEle,Ele_Water,-5; },{},{} -5299,Ati_Atihan_Hat_,Pagdayaw,4,20,,100,,1,,1,0xFFFFFFFF,63,2,769,,1,0,303,{ bonus3 bAutoSpell,"DC_SCREAM",1,50; },{},{} -5300,Bullock_Helm,Bullock Helm,4,20,,800,,4,,0,0xFFFFFFFE,63,2,256,,45,1,322,{ bonus bMaxHP,100; },{},{} -5301,Russian_Ribbon,Victory Hairband,4,0,,100,,0,,0,0xFFFFFFFF,63,2,256,,0,1,323,{},{},{} -5302,Lotus_Flower_Hat,Flower Lily,4,0,,100,,2,,0,0xFFFFFFFF,63,2,256,,30,1,324,{},{},{} -5303,Flower_Coronet,Flower Crown,4,20,,300,,2,,0,0xFFFFFFFF,63,2,256,,0,1,325,{ bonus bMdef,3; bonus bMaxSP,50; },{},{} -5304,Cap_Of_Blindness,Cap Of Blindness,4,20,,800,,4,,1,0xFFFFFFFF,63,2,769,,30,1,326,{ bonus2 bResEff,Eff_Curse,700; bonus2 bResEff,Eff_Blind,10000; },{},{} -5305,Pirate_Dagger,Pirate Dagger,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,327,{ bonus bBaseAtk,5; },{},{} -5306,Freyja_Crown,Freya's Crown,4,0,,500,,20,,0,0xFFFFFFFE,63,2,256,,0,0,328,{ bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; },{},{} -5307,Carmen_Miranda's_Hat,Carmen Miranda's Hat,4,20,,400,,10,,1,0xFFFFFFFF,63,2,256,,0,1,329,{ bonus bMdef,3; .@r = getrefine(); bonus2 bSubEle,Ele_Fire,(.@r>=7?10:5); if(.@r>=7){ bonus bBaseAtk,15; bonus bMatk,15; } bonus3 bAddMonsterDropItem,512,RC_All,10; bonus3 bAddMonsterDropItem,513,RC_All,10; bonus3 bAddMonsterDropItem,514,RC_All,10; bonus3 bAddMonsterDropItem,578,RC_All,10; },{},{} -5308,Brazilian_Flag_Hat,Brazil National Flag Hat,4,20,,300,,5,,1,0xFFFFFFFF,63,2,256,,0,1,330,{ bonus bSpeedAddRate,25; },{},{} -5309,Mahican,Wool Mask,4,20,,200,,1,,0,0xFFFFFFFF,63,2,769,,0,1,331,{ skill "RG_GRAFFITI",1; },{},{} -5310,Bulb_Hairband,Shining Electric Bulb Hairband,4,20,,100,,5,,1,0xFFFFFFFF,63,2,256,,0,1,332,{ bonus2 bSubEle,Ele_Dark,10; skill "MG_SIGHT",1; },{},{ sc_end SC_SIGHT; } -5311,Large_Hibiscus,Large Hisbiscus,4,20,,100,,2,,1,0xFFFFFFFF,63,2,256,,0,1,333,{ bonus bMdef,15; },{},{} -5312,Ayothaya_Hat,Ayothaya King's Hat,4,20,,100,,5,,1,0x000654E2,63,2,256,,0,1,334,{ bonus bStr,1; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; },{},{} -5313,Diadem,Diadem,4,20,,100,,3,,1,0xFFFFFFFF,63,2,768,,0,1,335,{ bonus bInt,1; bonus bMatkRate,3; bonus bVariableCastrate,-3; },{},{} -5314,Hockey_Mask,Hockey Mask,4,20,,100,,1,,0,0xFFFFFFFF,63,2,513,,50,0,336,{ bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; },{},{} -5315,Observer,Observer,4,20,,100,,2,,0,0xFFFFFFFF,63,2,512,,35,0,337,{ skill "WZ_ESTIMATION",1; /*Gold PC Room: bonus bAllStats,1;*/},{},{} -5316,Umbrella_Hat,Umbrella Hat,4,20,,100,,2,,0,0xFFFFFFFF,63,2,256,,50,1,338,{ bonus2 bSubEle,Ele_Water,3; },{},{} -5317,Fisherman_Hat,Fisherman's Hat,4,20,,100,,4,,0,0xFFFFFFFF,63,2,256,,50,1,339,{ bonus3 bAutoSpell,"WZ_WATERBALL",3,50; },{},{} -5318,Poring_Party_Hat,Poring Party Hat,4,20,,0,,2,,0,0xFFFFFFFF,63,2,256,,0,1,340,{ bonus bFlee,6; },{},{} -5319,Hellomother_Hat,Hello Mother Hat,4,20,,200,,3,,1,0xFFFFFFFE,63,2,256,,1,1,341,{ bonus bHPrecovRate,150; bonus bMaxHP,80+(80*getrefine()); },{},{} -5320,Champion_Wreath,Champion Wreath,4,20,,500,,8,,0,0xFFFFFFFE,63,2,256,,0,1,261,{ bonus bAllStats,2; bonus4 bAutoSpellWhenHit,"AL_HEAL",1,50,0; },{},{} -5321,Indonesian_Bandana,Bandana Merah Putih,4,20,,500,,4,,0,0xFFFFFFFF,63,2,256,,0,1,342,{ bonus2 bAddMonsterDropItem,518,300; },{},{} -5322,Scarf,Kerchief,4,20,,100,,4,,0,0xFFFFFFFF,63,2,256,,24,1,343,{ bonus bMdef,2; bonus bFlee,5; },{},{} -5323,Misstrance_Crown,Misstrance Crown,4,20,,0,,14,,0,0xFFFFFFFF,63,2,256,,0,0,165,{ bonus bAllStats,2; },{},{} -5324,Little_Angel_Doll,Little Angel Doll,4,20,,300,,4,,0,0xFFFFFFFF,63,2,256,,10,1,344,{ bonus bDex,3; bonus4 bAutoSpellWhenHit,"CR_GRANDCROSS",3,30,0; },{},{} -5325,Robo_Eye,Robo Eye,4,20,,200,,2,,0,0xFFFFFFFF,63,2,512,,10,0,345,{ bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; bonus bDex,1; },{},{} -5326,Masquerade_C,Masquerade C,4,1,,0,,1,,0,0xFFFFFFFF,63,2,512,,0,0,78,{ bonus2 bAddRace,RC_DemiHuman,7; bonus2 bAddRace,RC_Player_Human,7; },{},{} -5327,Orc_Hero_Helm_C,Refined Helmet of Orc Hero,4,1,,0,,10,,0,0xFFFFFFFE,63,2,768,,0,0,178,{ bonus bStr,5; bonus bVit,3; },{},{} -5328,Evil_Wing_Ears_C,Evil Wing Ears C,4,1,,0,,4,,0,0xFFFFFFFF,63,2,512,,0,0,152,{ bonus bStr,1; },{},{} -5329,Dark_Blindfold_C,Dark Blindfold C,4,1,,0,,1,,0,0xFFFFFFFF,63,2,512,,0,0,187,{ bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Stun,500; },{},{} -5330,kRO_Drooping_Kitty_C,kRO Drooping Kitty C,4,1,,0,,9,,0,0xFFFFFFFE,63,2,256,,0,0,142,{ bonus bMdef,15; bonus2 bResEff,Eff_Curse,4000; bonus2 bResEff,Eff_Stun,1000; },{},{} -5331,Corsair_C,Corsair C,4,1,,0,,14,,0,0xFFFFFFFE,63,2,256,,0,0,105,{ bonus bVit,3; bonus bInt,3; },{},{} -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,,3,,0,0xFFFFFFFF,63,2,256,,0,0,349,{ bonus bLuk,1; bonus bUnbreakableHelm; },{},{} -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,{},{},{} -5339,Friend_Recruiter_Hat,Friend Recruiter Hat,4,0,,0,,4,,0,0xFFFFFFFF,63,2,256,,10,1,353,{},{},{} -5340,Deprotai_Doll_Hat,Defolty Doll Hat,4,0,,500,,1,,1,0xFFFFFFFF,63,2,256,,60,0,354,{ bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus4 bAutoSpellWhenHit,"AL_ANGELUS",10,20,0; },{},{} -5341,Claris_Doll_Hat,Glaris Doll Hat,4,0,,500,,1,,1,0xFFFFFFFF,63,2,256,,60,0,355,{ bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bMagicHPGainValue,50; },{},{} -5342,Sorin_Doll_Hat,Sorin Doll Hat,4,0,,500,,1,,1,0xFFFFFFFF,63,2,256,,60,0,356,{ bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; autobonus "{ bonus bBaseAtk,50; }",20,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }"; },{},{} -5343,Tayelin_Doll_Hat,Telling Doll Hat,4,0,,500,,1,,1,0xFFFFFFFF,63,2,256,,60,0,357,{ bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bAddItemHealRate,504,10; bonus2 bAddItemHealRate,547,10; },{},{} -5344,Binit_Doll_Hat,Bennit Doll Hat,4,0,,500,,1,,1,0xFFFFFFFF,63,2,256,,60,0,358,{ bonus bVit,2; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; autobonus "{ bonus bAspdRate,5; }",20,30000,0,"{ specialeffect2 EF_HASTEUP; }"; },{},{} -5345,Debril_Doll_Hat,W Doll Hat,4,0,,500,,1,,1,0xFFFFFFFF,63,2,256,,60,0,359,{ bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bAddRace,RC_Undead,5; bonus2 bMagicAddRace,RC_Undead,5; },{},{} -5346,Gf_Recruiter_Hat,GF Recruiter Hat,4,0,,0,,4,,0,0xFFFFFFFF,63,2,256,,10,1,360,{},{},{} -5347,Ph.D_Hat_,Ph.D Hat,4,20,,100,,5,,1,0xFFFFFFFE,63,2,256,,0,1,98,{},{},{} -5348,Big_Sis'_Ribbon_,Big Ribbon,4,15000,,200,,3,,1,0xFFFFFFFE,63,2,256,,0,1,28,{ bonus bMdef,3; },{},{} -5349,Boy's_Cap_,Boy's Cap,4,20,,100,,3,,1,0xFFFFFFFE,63,2,256,,0,1,102,{},{},{} -5350,Pirate_Bandana_,Pirate Bandana,4,20,,100,,4,,1,0xFFFFFFFE,63,2,256,,0,1,74,{ bonus bStr,1; },{},{} -5351,Sunflower_,Sunflower,4,20,,100,,2,,1,0xFFFFFFFF,63,2,256,,0,0,37,{ bonus2 bSubRace,RC_Insect,10; },{},{} -5352,Poporing_Cap,Poporing Cap,4,20,,700,,4,,0,0xFFFFFFFE,63,2,256,,38,1,361,{},{},{} -5353,Helm_Of_Sun_,Hat of the Sun God,4,20,,2400,,4,,1,0x00CFDF80,63,2,768,,0,1,138,{ bonus bStr,3; bonus bInt,2; },{},{} -5354,Muslim_Hat_M,Muslim Hat M,4,0,,100,,4,,0,0xFFFFFFFF,63,1,256,,0,0,362,{ bonus bVariableCastrate,-5; },{},{} -5355,Muslim_Hat_F,Selendang,4,0,,100,,4,,0,0xFFFFFFFF,63,0,256,,0,0,363,{ bonus bVariableCastrate,-5; },{},{} -5356,Pumpkin_Hat_H,Festival Pumpkin Hat,4,20,,200,,3,,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; },{},{} -5358,Pecopeco_Wing_Ears,Peco Ears,4,20,,100,,2,,0,0xFFFFFFFF,63,2,512,,70,0,366,{ bonus bAgi,1; bonus bMdef,2; bonus bUnbreakableHelm; },{},{} -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,,4,,0,0xFFFFFFFE,63,2,256,,45,1,368,{ bonus bFlee,10; bonus bCritAtkRate,10; autobonus "{ bonus2 bIgnoreMdefClassRate,Class_Normal,100; bonus2 bIgnoreMdefClassRate,Class_Boss,100; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_STEAL; }"; },{},{} -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; },{},{} -5362,Ninja_Scroll,Ninja Scroll,4,20,,200,,0,,0,0xFFFFFFFF,63,2,1,,0,0,370,{ bonus bMatkRate,1; },{},{} -5363,Helm_Of_Abyss,Helm Of Abyss,4,20,,1000,,9,,1,0x000654E2,63,2,256,,70,1,371,{ bonus2 bSubClass,Class_Normal,-5; bonus2 bSubClass,Class_Boss,10; },{},{} -5364,Dark_Snake_Lord_Hat,Evil Snake Lord Hat,4,20,,500,,4,,1,0xFFFFFFFF,63,2,256,,60,1,372,{ bonus bStr,1; bonus bInt,1; bonus bAgi,2; bonus2 bAddMonsterDropItem,12582,30; },{},{} -5365,Fried_Egg,Magnolia Hat,4,20,,100,,2,,1,0xFFFFFFFF,63,2,256,,1,0,373,{ bonus bBaseAtk,5; bonus3 bAutoSpellWhenHit,"BS_GREED",1,5; },{},{} -5366,Hat_0f_King,Love Dad Bandana,4,20,,200,,5,,0,0xFFFFFFFF,63,2,256,,0,1,374,{ bonus bAllStats,5; },{},{} -5367,Hyegun_Hat,Hyegun Hat,4,20,,100,,5,,1,0xFFFFFFFF,63,2,769,,10,0,375,{ bonus bMdef,3; bonus2 bSubRace,RC_Demon,10; },{},{} -5368,White_Wing,White Wing,4,20,,100,,4,,0,0xFFFFFFFF,63,2,256,,0,1,38,{ bonus2 bAddMonsterDropItem,12280,300; },{},{} -5369,Dark_Wing,Dark Wing,4,20,,100,,4,,0,0xFFFFFFFF,63,2,256,,0,1,39,{ bonus2 bAddMonsterDropItem,12279,300; },{},{} -5370,Orchid_Hairband,Orchid Hairband,4,20,,200,,1,,0,0xFFFFFFFF,63,2,256,,0,1,376,{ bonus bInt,1; },{},{} -5371,Hat_Of_Judge,Judge Hat,4,20,,300,,2,,0,0xFFFFFFFF,63,2,768,,0,1,377,{ bonus bLuk,1; bonus bMaxSP,30; },{},{} -5372,Drooping_White_Kitty,Koneko Hat,4,20,,500,,3,,0,0xFFFFFFFF,63,2,256,,0,1,378,{ bonus bInt,1; bonus bDelayRate,-3; bonus bMatkRate,3; bonus bMaxSPrate,3; bonus bMdef,3; },{},{} -5373,Darkness_Helm,Dark Randgris Helm,4,20,,300,,2,,1,0xFFFFFFFF,63,2,768,,0,1,379,{ bonus bDex,3; bonus bMdef,1; },{},{} -5374,L_Magestic_Goat,Gigantic Majestic Goat,4,20,,800,,10,,0,0xFFFFFFFF,63,2,256,,0,1,380,{ bonus2 bAddRace,RC_DemiHuman,12; bonus2 bAddRace,RC_Player_Human,12; bonus bBaseAtk,(JobLevel*2)/7; },{},{} -5375,L_Orc_Hero_Helm,Orc Hero Headdress,4,20,,900,,5,,1,0xFFFFFFFF,63,2,768,,0,1,381,{ bonus bStr,2; bonus3 bAutoSpellWhenHit,"BS_WEAPONPERFECT",3,10; },{},{} -5376,Satanic_Chain_P,Flying Evil Wing,4,20,,100,,6,,1,0xFFFFFFFF,63,2,256,,0,1,382,{ bonus bMaxSP,120; bonus2 bAddEff2,Eff_Curse,10; },{},{} -5377,Antique_Pipe,Gentleman's Pipe,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,383,{ bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; },{},{} -5378,Rabbit_Ear_Hat,Bunny Top Hat,4,20,,300,,0,,0,0xFFFFFFFF,63,2,256,,0,1,384,{ bonus bAgi,3; bonus3 bAutoSpellWhenHit,"AL_INCAGI",5,10; },{},{} -5379,Balloon_Hat,Tam,4,0,,800,,5,,1,0xFFFFFFFF,63,2,256,,50,1,385,{ bonus bMdef,2; bonus bMatkRate,2+(getrefine()/2); },{},{} -5380,Fish_Head_Hat,Fish Head Hat,4,20,,400,,2,,0,0xFFFFFFFF,63,2,256,,0,1,386,{ bonus3 bAutoSpell,"SA_FROSTWEAPON",1,5; },{},{} -5381,Santa_Poring_Hat,Santa Poring Hat,4,20,,100,,4,,1,0xFFFFFFFF,63,2,256,,0,0,387,{ bonus bMdef,2; bonus2 bAddEle,Ele_Dark,3; bonus2 bSubEle,Ele_Dark,3; },{},{} -5382,Bell_Ribbon,Bell Ribbon,4,20,,200,,5,,1,0xFFFFFFFF,63,2,256,,0,1,388,{ bonus bVit,1; skill "AL_ANGELUS",1; },{},{ sc_end SC_ANGELUS; } -5383,Hunting_Cap,Hunter's Cap,4,20,,250,,6,,1,0xFFFFFFFE,63,2,256,,50,1,389,{ bonus bLuk,1; bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Player_Doram,10; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; },{},{} -5384,Santa_Hat_1,Twin Pompom By JB,4,20,,200,,2,,1,0xFFFFFFFF,63,2,256,,20,1,390,{ bonus bLuk,3; },{},{} -5385,Yoyo_Hat,Yoyo Hat,4,20,,300,,2,,0,0xFFFFFFFF,63,2,256,,20,1,391,{ skill "TF_HIDING",1; },{},{ sc_end SC_HIDING; } -5386,Ayam_,Ayam,4,0,,70,,7,,0,0xFFFFFFFF,63,2,256,,1,0,228,{ bonus bMdef,7; bonus bFlee,7; bonus2 bAddMonsterDropItem,12198,200; },{},{} -5387,Neko_Mimi_Kafra,Neko Mimi Kafra,4,20,,200,,1,,1,0xFFFFFFFF,63,2,256,,30,1,392,{ bonus bMdef,5; bonus2 bAddEffWhenHit,Eff_Silence,1000; bonus2 bAddEffWhenHit,Eff_Poison,1000; bonus2 bAddEffWhenHit,Eff_Curse,1000; bonus2 bAddEffWhenHit,Eff_Blind,1000; bonus2 bAddEffWhenHit,Eff_Stone,1000; bonus2 bAddEffWhenHit,Eff_Freeze,1000; bonus2 bAddEffWhenHit,Eff_Stun,1000; bonus2 bAddEffWhenHit,Eff_Sleep,1000; },{},{} -5388,Snake_Head,Snake Head Hat,4,20,,200,,2,,1,0xFFFFFFFF,63,2,256,,30,1,393,{ skill "TF_DOUBLE",5; bonus bDoubleRate,25; },{},{} -5389,Angel_Spirit,Angel Spirit,4,20,,200,,0,,0,0xFFFFFFFF,63,2,512,,0,0,394,{ bonus bStr,2; bonus bHit,15; },{},{} -5390,Santa_Hat_2,Frozen Twin Pompom,4,20,,100,,4,,0,0xFFFFFFFF,63,2,256,,0,1,395,{ bonus2 bResEff,Eff_Freeze,3000; },{},{} -5391,Toast_C,Toast,4,20,,0,,1,,0,0xFFFFFFFF,63,2,1,,0,0,188,{ bonus bMaxHP,100; bonus2 bAddMonsterDropItem,617,10; },{},{} -5392,Louyang_Cap,Luoyang NewYear Hat,4,20,,300,,6,,1,0xFFFFFFFF,63,2,256,,0,1,396,{ bonus bLuk,2; },{},{} -5393,Valentine_Hat,Love Valentine's Hat,4,20,,200,,4,,0,0xFFFFFFFF,63,2,256,,0,0,397,{ bonus bMaxSPrate,7; bonus bMaxHPrate,7; },{},{} -5394,Bubblegum_Lower,Bubblegum,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1,,0,0,572,{ bonus2 bExpAddClass,Class_All,100; },{},{} -5395,Tiraya_Bonnet,Striped Hat,4,20,,500,,6,,1,0xFFFFFFFF,63,2,256,,50,1,398,{ bonus bMaxHP,100+(getrefine()*20); bonus bLuk,3; },{},{} -5396,Jasper_Crest,Jasper Crest,4,20,,700,,6,,1,0xFFFFFFFF,63,2,256,,0,1,399,{ bonus bDex,1; bonus2 bAddRace,RC_Undead,5; .@r = getrefine(); if (.@r<6) { bonus2 bAddEff2,Eff_Blind,10; } else if (.@r>8) { bonus bDex,2; } },{},{} -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; },{},{} -5398,Bone_Head,Bone Head,4,20,,1200,,10,,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,,5,,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,,2,,0,0xFFFFFFFF,63,2,512,,70,0,404,{ bonus bInt,1; bonus bMdef,2; bonus bUnbreakableHelm; },{},{} -5402,Mischievous_Fairy,Mischievous Fairy,4,10,,200,,2,,0,0xFFFFFFFF,63,2,512,,70,0,405,{ bonus bUnbreakableHelm; 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,,2,,1,0xFFFFFFFF,63,2,256,,45,1,407,{ bonus4 bAutoSpellWhenHit,"AC_CONCENTRATION",2,7,0; },{},{} -5405,Filir_Hat,Filir Hat,4,10,,200,,2,,0,0xFFFFFFFF,63,2,256,,80,0,408,{ bonus bShortWeaponDamageReturn,1; },{},{} -5406,Academy_Freshman_Hat,Academy Freshman Hat,4,0,,500,,3,,0,0xFFFFFFFF,63,2,256,,0,1,409,{ bonus bInt,1; bonus bDex,2; bonus bVit,1; bonus bDelayrate,-5; },{},{} -5407,Academy_Graduating_Cap,Academy Completion Hat,4,0,,200,,3,,0,0xFFFFFFFF,63,2,256,,0,1,410,{ bonus bMaxSP,30; },{},{} -5408,Old_Bandanna,Old Bandana,4,0,,0,,10,,0,0xFFFFFFFF,63,2,256,,0,0,6,{ bonus bInt,2; bonus bMaxSP,50; bonus bVariableCastrate,10; },{},{} -5409,New_Cowboy_Hat,Purple Cowboy Hat,4,20,,500,,8,,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_Human,4; },{},{} -5411,White_Snake_Hat,White Snake Hat,4,20,,500,,4,,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; },{},{} -5413,Popcorn_Hat,Pop Corn Hat,4,20,,300,,4,,0,0xFFFFFFFF,63,2,256,,0,0,415,{ bonus2 bSubEle,Ele_Wind,10; },{},{} -5414,Campfire_Hat,Camp Fire Hat,4,20,,300,,4,,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,,10,,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; },{},{} -5416,Beer_Cap,Beer Hat,4,20,,600,,4,,0,0xFFFFFFFE,63,2,256,,18,1,418,{ bonus bFlee2,5; skill "SM_RECOVERY",3; skill "MG_SRECOVERY",3; },{},{} -5417,Crown_Parrot,Crown Parrots,4,20,,200,,2,,1,0xFFFFFFFF,63,2,256,,0,0,419,{ bonus bInt,1; bonus2 bResEff,Eff_Silence,10000; bonus3 bAutoSpell,"DC_SCREAM",1,50; },{},{} -5418,Soldier_Hat,Legionnaire Hat,4,20,,400,,8,,1,0xFFFFFFFF,63,2,256,,0,1,420,{ bonus bStr,1; bonus2 bAddClass,Class_All,3; bonus bUseSPrate,10; },{},{} -5419,Evolved_Leaf,Leaves Of Grass,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,57,{ bonus bVit,1; bonus2 bSubRace,RC_Plant,5; },{},{} -5420,Mask_Of_Ifrit,Mask Of Ifrit,4,20,,800,,12,,1,0xFFFFFFFE,63,2,769,,50,0,421,{ bonus bStr,2; bonus bInt,2; bonus bMdef,5; bonus2 bSubEle,Ele_Fire,10; bonus2 bSubEle,Ele_Water,-10; bonus2 bAddEle,Ele_Fire,10; bonus2 bMagicAtkEle,Ele_Fire,10; bonus3 bAutoSpell,"WZ_METEOR",3,50; },{},{} -5421,Ifrit's_Ear,Ears Of Ifrit,4,20,,300,,0,,0,0xFFFFFFFE,63,2,512,,50,0,422,{ bonus bStr,1; bonus bInt,1; bonus bMdef,3; bonus2 bAddEle,Ele_Fire,3; bonus2 bSkillAtk,"SM_BASH",4; bonus2 bSkillAtk,"SM_MAGNUM",4; bonus2 bSubEle,Ele_Fire,3; bonus2 bSubEle,Ele_Water,-3; },{},{} -5422,Linguistic_Book_Cap,Linguistic Book Hat,4,20,,70,,0,,0,0xFFFFFFFF,63,2,256,,0,1,423,{ bonus bInt,1; bonus bMdef,2; },{},{} -5423,Lovecap_China,I Love China,4,20,,250,,10,,0,0xFFFFFFFF,63,2,256,,0,0,424,{ bonus bDex,3; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; },{},{} -5424,Fanta_Orange_Can,Fanta Orange Can Hat,4,20,,100,,3,,1,0xFFFFFFFF,63,2,256,,0,1,425,{},{},{} -5425,Fanta_Grape_Can,Fanta Grape Can Hat,4,20,,100,,3,,1,0xFFFFFFFF,63,2,256,,0,1,426,{},{},{} -5426,Karada_Meguri_Tea_Hat,Karada Meguricha Hat,4,20,,100,,3,,1,0xFFFFFFFF,63,2,256,,0,1,427,{ bonus bLuk,1; },{},{} -5427,Royal_Milk_Tea_Hat,Black Tea Kochakaden Hat,4,20,,100,,3,,1,0xFFFFFFFF,63,2,256,,0,1,428,{ bonus bAgi,1; },{},{} -5428,Bread_Bag1,RWC Anniversary Bread Envelope,4,,,100,,0,,0,0xFFFFFFFF,63,2,769,,0,1,429,{ bonus2 bSubRace,RC_DemiHuman,12; bonus2 bSubRace,RC_Player_Human,12; },{},{} -5429,Bogy_Cap,Bogy Cap,4,20,,100,,4,,1,0xFFFFFFFF,63,2,256,,0,1,430,{ bonus bHPrecovRate,5; bonus bSPrecovRate,5; },{},{} -5430,Sacred_Torch_Coronet,Torch Cap,4,20,,0,,6,,0,0xFFFFFFFF,63,2,256,,0,0,431,{ bonus2 bSubEle,Ele_Fire,20; skill "MG_FIREBOLT",5; },{},{} -5431,Chicken_Hat,Chicken Hat,4,20,,1000,,0,,1,0xFFFFFFFF,63,2,256,,30,1,432,{ bonus3 bAutoSpell,"MC_LOUD",1,30; bonus bAspdRate,5; },{},{} -5432,Brazil_Baseball_Cap,bRO 4th Anniversary Hat,4,20,,100,,0,,0,0xFFFFFFFF,63,2,256,,0,1,433,{ if(gettime(DT_MONTH)==SEPTEMBER&&gettime(DT_DAYOFMONTH)>=10&&gettime(DT_DAYOFMONTH)<=24) bonus bAllStats,4; },{},{} -5433,Golden_Wreath,Golden Laurel,4,20,,100,,0,,0,0xFFFFFFFF,63,2,256,,0,1,434,{},{},{} -5434,Cola_Can,Cola Can,4,20,,100,,3,,1,0xFFFFFFFF,63,2,256,,0,1,435,{},{},{} -5435,Coke_Hat,Red Minstrel Hat,4,20,,100,,2,,1,0xFFFFFFFF,63,2,256,,40,1,436,{ bonus bInt,1; bonus bMaxSP,80; bonus bMdef,3; .@r = getrefine(); if(.@r>5) { bonus bMdef,.@r-5; bonus bMaxSP,(.@r-5)*10; } },{},{} -5436,Bride's_Corolla,Bride's Corolla,4,20,,200,,1,,0,0xFFFFFFFF,63,2,256,,0,1,437,{ bonus bLuk,3; bonus bMdef,2; },{},{} -5437,Flower_Of_Fairy,Fairy Flower,4,20,,200,,2,,1,0xFFFFFFFF,63,2,256,,0,1,438,{ bonus bInt,1; bonus bMdef,1; bonus2 bSubRace,RC_Insect,5; },{},{} -5438,Fillet_Green,Cute Green Ribbon,4,500,,100,,1,,0,0xFFFFFFFE,63,2,256,,0,0,439,{ bonus bMaxSP,20; },{},{} -5439,Fillet_Red,Cute Red Ribbon,4,500,,100,,1,,0,0xFFFFFFFE,63,2,256,,0,0,440,{ bonus bMaxSP,20; },{},{} -5440,Fillet_Blue,Cute Blue Ribbon,4,500,,100,,1,,0,0xFFFFFFFE,63,2,256,,0,0,441,{ bonus bMaxSP,20; },{},{} -5441,Fillet_White,Cute White Ribbon,4,500,,100,,1,,0,0xFFFFFFFE,63,2,256,,0,0,442,{ bonus bMaxSP,20; },{},{} -5442,Necktie,Necktie,4,20,,100,,6,,1,0xFFFFFFFF,63,2,256,,70,1,443,{ bonus bVit,1; bonus bHit,-5; bonus bUseSPrate,5; },{},{} -5443,Status_Of_Baby_Angel,Statue Of Baby Angel,4,20,,600,,6,,1,0xFFFFFFFF,63,2,256,,70,1,444,{ bonus bMdef,2; bonus4 bAutoSpellWhenHit,"PR_STRECOVERY",1,20,0; },{},{} -5444,Hair_Brush,Hair Brush,4,20,,100,,0,,0,0xFFFFFFFF,63,2,256,,0,1,445,{ bonus bCritical,6; },{},{} -5445,Candy_Cane_In_The_Mouth,Candy Cane In Mouth,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,446,{ bonus bMaxSP,5; },{},{} -5446,Cat_Foot_Hairpin,Catfoot Hairpin,4,20,,200,,0,,1,0xFFFFFFFF,63,2,256,,0,1,447,{ bonus bFlee,5; bonus bFlee2,3; },{},{} -5447,Frog_Cap,Frog Hat,4,20,,500,,6,,0,0xFFFFFFFF,63,2,256,,70,1,448,{ bonus bMdef,1; bonus2 bAddRace,RC_Insect,12; bonus2 bMagicAddRace,RC_Insect,12; },{},{} -5448,Solo_Play_Box1,Indifferent Solo Hat,4,20,,300,,0,,1,0xFFFFFFFF,63,2,769,,0,1,449,{ skill "RG_GRAFFITI",1; },{},{} -5449,Solo_Play_Box2,Angry Solo Hat,4,20,,300,,0,,1,0xFFFFFFFF,63,2,769,,0,1,450,{ skill "RG_GRAFFITI",1; },{},{} -5450,Sun_Cap,Solar Hat,4,20,,1000,,0,,0,0xFFFFFFFE,63,2,256,,20,1,451,{},{},{} -5451,Dragonhelm_Gold,RWC 2008 Dragon Helm Gold,4,20,,2500,,14,,1,0xFFFFFFFF,63,2,256,,1,0,452,{ bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; },{},{} -5452,Dragonhelm_Silver,RWC 2008 Dragon Helm Silver,4,20,,2500,,10,,1,0xFFFFFFFF,63,2,256,,1,0,453,{ bonus2 bSubRace,RC_DemiHuman,7; bonus2 bSubRace,RC_Player_Human,7; bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player_Human,3; },{},{} -5453,Dragonhelm_Copper,RWC 2008 Dragon Helm Copper,4,20,,2500,,5,,1,0xFFFFFFFF,63,2,256,,1,0,454,{ bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bAddRace,RC_DemiHuman,1; bonus2 bAddRace,RC_Player_Human,1; },{},{} -5454,Dog_Cap_,Puppy Hat,4,20,,500,,3,,1,0xFFFFFFFF,63,2,256,,0,1,234,{ bonus bStr,1; bonus bInt,1; autobonus "{ bonus bCritical,100; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; autobonus "{ bonus2 bIgnoreMdefClassRate,Class_Normal,100; bonus2 bIgnoreMdefClassRate,Class_Boss,100; }",10,3000,BF_MAGIC,"{ specialeffect2 EF_MAGICALATTHIT; }"; },{},{} -5455,Geographer_Band_,Decorative Geographer,4,20,,500,,1,,1,0xFFFFFFFF,63,2,256,,0,1,238,{ bonus bInt,1; bonus3 bAutoSpell,"AL_HEAL",5,50; bonus3 bAutoSpellWhenHit,"AL_HEAL",5,30; },{},{} -5456,Vacation_Hat_,Summer Hat,4,20,,200,,0,,0,0xFFFFFFFF,63,2,256,,0,1,315,{ bonus bVit,5; bonus bHPrecovRate,20; bonus bSPrecovRate,15; },{},{} -5457,Spring_Rabbit_Hat,Moon Rabbit Hat,4,20,,300,,2,,1,0xFFFFFFFF,63,2,256,,1,1,455,{ bonus bAgi,3; bonus bBaseAtk,5; bonus bMatkRate,5; .@r = getrefine(); if(.@r>4) { bonus bBaseAtk,.@r-4; bonus bMatkRate,.@r-4; } },{},{} -5458,Pinwheel_Cap,Pinwheel Hat,4,20,,200,,3,,0,0xFFFFFFFF,63,2,256,,0,1,456,{ bonus bMaxHPrate,5; bonus bMaxSPrate,5; },{},{} -5459,Drooping_Bunny_Chusuk,Drooping Bunny,4,0,,100,,3,,0,0xFFFFFFFF,63,2,256,,0,1,249,{ bonus bDex,1; bonus bFlee,2; },{},{} -5460,Adv_Dragon_Skull,Evolved Dragon Skull Hat,4,20,,1000,,14,,0,0xFFFFFFFF,63,2,256,,60,1,457,{ bonus bAllStats,2; bonus bMaxHPrate,3; },{},{} -5461,Adv_Whisper_Mask,Evolved Whisper Mask,4,20,,300,,1,,0,0xFFFFFFFF,63,2,769,,50,1,458,{ bonus bDex,3; bonus2 bSubEle,Ele_Ghost,20; },{},{} -5462,Spiked_Scarf,Spiked Scarf,4,20,,100,,1,,0,0xFFFFFFFF,63,2,1,,90,0,459,{ bonus bAtk,30; bonus bMaxHPrate,-2; },{},{} -5463,Rainbow_Scarf,Rainbow Scarf,4,20,,0,,1,,0,0xFFFFFFFF,63,2,1,,90,0,460,{ bonus bMatk,30; bonus bMaxSPrate,-2; },{},{} -5464,Zaha_Doll_Hat,Zaha Doll Hat,4,20,,0,,1,,1,0xFFFFFFFF,63,2,256,,0,1,461,{ bonus bInt,3; bonus bMdef,9; bonus2 bMagicAddEle,Ele_Undead,10; .@r0 = getrefine(); autobonus "{ .@r = getrefine(); bonus2 bSPLossRate,10,1000; bonus bMatk,30*.@r; bonus bFixedCast,-80*.@r; }",3*.@r0,3000,BF_MAGIC,"{ active_transform 1518,3000; specialeffect2 EF_POTION_BERSERK; showscript \"Bacsojin Power !\"; }"; autobonus2 "{ .@r = getrefine(); bonus2 bSPLossRate,10,1000; bonus bMatk,30*.@r; bonus bFixedCast,-80*.@r; }",.@r0,3000,BF_MAGIC,"{ active_transform 1518,3000; specialeffect2 EF_POTION_BERSERK; showscript \"Bacsojin Power !\"; }"; },{},{} -5465,Celestial_Hat,Hat Of Fortune,4,20,,500,,3,,1,0xFFFFFFFF,63,2,256,,40,1,462,{ bonus bLuk,2; bonus bMdef,5; .@r = getrefine(); if(.@r>4) bonus bLuk,.@r-4; },{},{} -5466,Wind_Milestone,Wind Milestone,4,20,,100,,2,,1,0xFFFFFFFF,63,2,256,,30,1,463,{ bonus bAgi,2; skill "AL_TELEPORT",1; },{},{} -5467,Helm_Of_Dragoon,Helm Of Dragon,4,20,,1000,,10,,1,0xFFFFFFFF,63,2,256,,1,1,464,{ bonus bStr,2; bonus bInt,2; bonus bDex,2; .@r = getrefine(); if(.@r>=7) bonus2 bExpAddRace,RC_Dragon,3; if(.@r>=9) bonus2 bExpAddRace,RC_Dragon,5; bonus3 bAutoSpell,"NPC_DRAGONFEAR",1,30; },{},{} -5468,Parade_Cap,Parade Hat,4,20,,800,,3,,1,0xFFFFFFFF,63,2,256,,0,1,465,{ bonus bDelayRate,-5; bonus bMdef,2; .@r = getrefine(); if(.@r>5) bonus bVariableCastrate,-(.@r-5); },{},{} -5469,Noble_Hat,Musketeer Hat,4,20,,300,,4,,1,0xFFFFFFFF,63,2,256,,60,1,466,{ bonus bDex,3; bonus bFlee,3; .@r = getrefine(); if(.@r>=7){ bonus bFlee,3; bonus bLongAtkRate,3; } if(.@r>=9){ bonus bFlee,4; bonus bLongAtkRate,2; } },{},{} -5470,Eyes_Of_Darkness,Eye Of Darkness,4,20,,100,,1,,0,0xFFFFFFFF,63,2,512,,50,0,467,{ bonus bDex,1; bonus2 bResEff,Eff_Blind,10000; },{},{} -5471,Hairband_Of_Reginleif,Hairband Of Reginleif,4,20,,800,,2,,0,0xFFFFFFFF,63,2,512,,50,0,468,{ bonus2 bSubEle,Ele_Water,3; bonus2 bSubEle,Ele_Fire,3; bonus2 bSubEle,Ele_Undead,3; bonus2 bSubEle,Ele_Ghost,3; },{},{} -5472,Red_White_Hat,Red Hat,4,20,,100,,0,,0,0xFFFFFFFF,63,2,256,,0,1,469,{ bonus3 bAddMonsterDropItem,554,RC_DemiHuman,200; },{},{} -5473,Forceps_Hairpin,Nipper Crab Hairpin,4,20,,500,,8,,0,0xFFFFFFFF,63,2,256,,30,1,470,{ bonus3 bAutoSpellWhenHit,"MG_COLDBOLT",1,30; bonus3 bAddMonsterDropItem,991,RC_Fish,100; },{},{} -5474,Notice_Board,AFK Hat,4,20,,700,,2,,0,0xFFFFFFFF,63,2,256,,10,0,471,{},{},{} -5475,Cube_Mask,Mask Cube,4,20,,100,,1,,0,0xFFFFFFFF,63,2,513,,0,0,472,{ bonus bAllStats,1; },{},{} -5476,Hairband_Of_Grandpeco,Grand Peco Hairband,4,20,,800,,5,,0,0xFFFFFFFF,63,2,768,,1,1,473,{ bonus2 bAddRace,RC_Brute,7; bonus2 bMagicAddRace,RC_Brute,7; bonus2 bAddRace,RC_DemiHuman,7; bonus2 bMagicAddRace,RC_DemiHuman,7; bonus2 bAddRace,RC_Player_Doram,7; bonus2 bMagicAddRace,RC_Player_Doram,7; bonus3 bAddEff,Eff_Curse,10,ATF_SHORT; },{},{} -5477,Bro_Flag,Brazilian Flag Hat,4,20,,100,,2,,1,0xFFFFFFFF,63,2,256,,30,1,474,{ skill "SM_BASH",1; },{},{} -5478,Classic_Hat,Classic Hat,4,20,,500,,4,,0,0xFFFFFFFF,63,2,256,,0,1,475,{ bonus bStr,2; bonus bMaxHP,300; },{},{} -5479,Shaman's_Hair_Ornament,Shaman's Hair Decoration,4,20,,300,,2,,0,0xFFFFFFFF,63,2,256,,1,1,476,{ bonus bMdef,3; bonus2 bSubEle,Ele_Neutral,5; },{},{} -5480,Bizofnil_Wing_Deco,Bijofnil Wings,4,20,,1000,,6,,0,0xFFFFFFFF,63,2,256,,1,1,477,{ bonus bAllStats,2; bonus2 bSubEle,Ele_All,5; bonus2 bHPRegenRate,(MaxHp*2/100),10000; bonus2 bSPRegenRate,(MaxSp/100),10000; },{},{} -5481,Hermose_Cap,Hermode Cap,4,20,,1000,,2,,1,0xFFFFFFFF,63,2,256,,1,1,478,{ bonus bAspdRate,10; bonus bBaseAtk,-20; bonus bMatkRate,-10; },{},{} -5482,Dark_Knight_Mask,Dark Knight Mask,4,20,,3000,,5,,0,0xFFFFFFFF,63,2,769,,1,1,479,{ bonus bStr,3; },{},{} -5483,Odin_Mask,Odin Mask,4,20,,100,,1,,0,0xFFFFFFFF,63,2,513,,1,0,480,{ bonus2 bSubClass,Class_Boss,2; },{},{} -5484,Taiwan_Flag_Hat,Holidays Hat,4,20,,500,,4,,0,0xFFFFFFFF,63,2,256,,0,0,482,{ bonus bAllStats,5; bonus2 bResEff,Eff_Stun,500; },{},{} -5485,Tiger_Face,Tiger Face,4,20,,1000,,3,,0,0xFFFFFFFF,63,2,769,,60,1,483,{ bonus2 bSubRace,RC_Brute,5; bonus2 bAddRace,RC_Brute,5; bonus2 bMagicAddRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5; bonus2 bAddRace,RC_Player_Doram,5; bonus2 bMagicAddRace,RC_Player_Doram,5; },{},{} -5486,J_Anniversary_Hat,Anniversary Hat,4,20,,300,,6,,0,0xFFFFFFFF,63,2,256,,0,1,395,{ bonus bAllStats,2; },{},{} -5487,J_Poringcake_Hat,Poring Cake Hat,4,20,,500,,1,,0,0xFFFFFFFF,63,2,256,,0,1,417,{ bonus bLuk,2; },{},{} -5488,J_Twin_Santahat,Twin Santa Hat,4,20,,100,,1,,0,0xFFFFFFFF,63,2,256,,0,1,390,{ bonus bLuk,1; bonus bMdef,1; },{},{} -5489,Love_Daddy,Love Daddy Hat,4,20,,100,,0,,0,0xFFFFFFFF,63,2,256,,0,1,484,{ bonus bDex,2; },{},{} -5490,Anubis_Helm,Anubis Helm,4,20,,0,,8,,0,0xFFFFFFFF,63,2,768,,65,0,485,{ bonus bMdef,5; bonus2 bSubClass,Class_Boss,10; bonus bHealpower2,10; bonus bAddItemHealRate,10; },{},{} -5491,Hat_Of_Outlaw,Bandit Hat,4,20,,800,,3,,0,0xFFFFFFFF,63,2,256,,0,1,486,{ bonus bStr,2; bonus2 bSubEle,Ele_Fire,10; },{},{} -5492,Boy's_Cap_I,Student Cap,4,0,,0,,5,,0,0xFFFFFFFE,63,2,256,,0,0,102,{ bonus bMdef,3; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; },{},{} -5493,Ulle_Cap_I,Ulle's Cap,4,0,,0,,3,,0,0xFFFFFFFE,63,2,256,,0,0,254,{ bonus bDex,2; bonus bAgi,1; },{},{} -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 bAddRace,RC_Player_Doram,10; .@r = getrefine(); autobonus "{ bonus2 bSPLossRate,5,1000; bonus bBaseAtk,25*getrefine(); }",3*.@r,3000,BF_NORMAL,"{ active_transform 1115,3000; specialeffect2 EF_POTION_BERSERK; showscript \"Eddga Power !\"; }"; autobonus2 "{ bonus2 bSPLossRate,5,1000; bonus bBaseAtk,25*getrefine(); }",.@r,3000,BF_NORMAL,"{ active_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,1,490,{ bonus bAgi,5; bonus bFlee,10; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Brute,10; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,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; },{},{} -5501,Pirate's_Pride,Pirate's Pride,4,0,,100,,6,,0,0xFFFFFFFF,63,2,256,,10,0,496,{ bonus2 bAddRace2,RC2_Ninja,5; bonus2 bSubRace2,RC2_Ninja,5; },{},{} -5502,Necromencer's_Hood,Necromancer's Hood,4,0,,500,,6,,0,0xFFFFFFFF,63,2,768,,1,1,491,{ bonus bInt,3; bonus bMdef,3; bonus bDefEle,Ele_Undead; bonus2 bSubEle,Ele_Dark,15; bonus2 bSubEle,Ele_Holy,-20; },{},{} -5503,Rabbit_Magic_Hat,Rabbit Magic Hat,4,0,,800,,4,,0,0xFFFFFFFF,63,2,256,,0,1,497,{ bonus bDex,2; bonus bAgi,2; bonus bMdef,1; bonus bAspdRate,5; bonus bDelayRate,-4; },{},{} -5504,China_Wedding_Veil,Wedding Weil,4,20,,500,,5,,0,0xFFFFFFFF,63,2,768,,70,1,489,{ bonus bMdef,10; },{},{} -5505,Asara_Fairy_Hat,Asara Fairy Hat,4,0,,500,,2,,0,0xFFFFFFFF,63,2,768,,50,1,492,{ skill "DC_DONTFORGETME",1; bonus bDex,2; bonus bLuk,2; },{},{} -5506,Blue_Pajamas_Hat,Blue Night Cap,4,0,,100,,4,,0,0xFFFFFFFF,63,2,256,,0,1,501,{ bonus bAtkRate,5; bonus bMatkRate,5; },{},{} -5507,Pink_Pajamas_Hat,Pink Night Cap,4,0,,100,,4,,0,0xFFFFFFFF,63,2,256,,0,1,502,{ bonus bAtkRate,5; bonus bMatkRate,5; },{},{} -5508,Shark_Hat,Shark Hat,4,20,,500,,3,,0,0xFFFFFFFF,63,2,256,,0,1,503,{ bonus bStr,1; bonus bAgi,2; bonus bMdef,1; bonus2 bAddEle,Ele_Water,5; bonus2 bSubDefEle,Ele_Water,10; },{},{} -5509,Sting_Hat,Sting hat,4,20,,1000,,10,,0,0xFFFFFFFF,63,2,256,,0,1,504,{ bonus bStr,2; bonus bVit,1; bonus bMdef,3; bonus2 bAddEle,Ele_Fire,5; bonus2 bSubDefEle,Ele_Earth,5; bonus3 bAutoSpell,"WZ_EARTHSPIKE",1,10; },{},{} -5510,Shower_Cap,Shower Cap,4,20,,0,,4,,0,0xFFFFFFFF,63,2,256,,0,1,507,{ bonus bMdef,3; bonus bFlee,3; bonus2 bAddEle,Ele_Water,10; bonus2 bSubRace,RC_Fish,10; },{},{} -5511,Samambaia,Samambaia,4,20,,200,,5,,1,0xFFFFFFFF,63,2,768,,1,1,508,{ bonus bHealPower,2; bonus bAspd,1; bonus bFixedCastrate,-10; },{},{} -5512,Aquarius_Diadem,Aquarius Diadem,4,20,,300,,6,,0,0xFFFFFFFF,63,2,256,,70,1,509,{ bonus bStr,2; bonus bFlee,10; bonus2 bSubEle,Ele_Wind,5; if(getrefine()>6) { bonus bDef,1; bonus bBaseAtk,15; } },{},{} -5513,Aquarius_Crown,Aquarius Crown,4,20,,300,,6,,0,0xFFFFFFFF,63,2,256,,70,1,510,{ bonus bStr,2; bonus bFlee,10; bonus2 bSubEle,Ele_Wind,5; if(getrefine()>6) { bonus bDef,1; bonus bBaseAtk,15; } },{},{} -5514,Pisces_Diadem,Pisces Diadem,4,20,,300,,6,,0,0xFFFFFFFF,63,2,256,,70,1,511,{ bonus bInt,2; bonus bMdef,5; bonus2 bSubEle,Ele_Water,5; if(getrefine()>6) { bonus bDef,1; bonus bMatkRate,2; } },{},{} -5515,Pisces_Crown,Pisces Crown,4,20,,300,,6,,0,0xFFFFFFFF,63,2,256,,70,1,512,{ bonus bInt,2; bonus bMdef,5; bonus2 bSubEle,Ele_Water,5; if(getrefine()>6) { bonus bDef,1; bonus bMatkRate,2; } },{},{} -5516,Hawk_Eyes01,Hawk Eyes,4,10,,1000,,0,,0,0x00000800,18,2,512,,0,0,23,{ bonus bDex,1; bonus bLongAtkRate,3; },{},{} -5517,Hawk_Eyes02,Hawk Eyes,4,10,,1000,,0,,0,0x00080808,63,2,512,,0,0,23,{ bonus bDex,1; },{},{} -5518,L_Magestic_Goat2,Gigantic Majestic Goat,4,20,,800,,5,,0,0xFFFFFFFF,63,2,256,,50,1,513,{ bonus2 bSubRace,RC_DemiHuman,12; bonus2 bSubRace,RC_Player_Human,12; bonus bBaseAtk,(JobLevel*2)/7; },{},{} -5519,Peacock_Feather,Peacock Feather,4,20,,800,,4,,1,0xFFFFFFFF,63,2,256,,1,1,514,{ bonus bInt,2; },{},{} -5520,Rabbit_Earplug,Rabbit Earplugs,4,,,400,,0,,1,0xFFFFFFFF,63,2,768,,1,1,515,{ bonus2 bAddClass,Class_All,4; bonus bMatkRate,4; },{},{} -5521,Angry_Mouth_C,Angry Mouth,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1,,0,0,194,{ bonus bDelayRate,-3; },{},{} -5522,Fanta_Zero_Lemon_Hat,Fanta Zero Lemon Hat,4,20,,100,,4,,1,0xFFFFFFFF,63,2,256,,0,1,516,{},{},{} -5523,Sakura_Mist_Hat,Sakura Mist Hat,4,20,,100,,4,,1,0xFFFFFFFF,63,2,256,,0,1,517,{ bonus bDex,1; },{},{} -5524,Sakura_Milk_Tea_Hat,Sakura Milk Tea Hat,4,20,,100,,4,,1,0xFFFFFFFF,63,2,256,,0,1,518,{ bonus bVit,1; },{},{} -5525,First_Leaf_Tea_Hat,Flower Hat,4,20,,100,,4,,1,0xFFFFFFFF,63,2,256,,0,1,519,{ bonus bMaxHP,80; bonus bMaxSP,20; },{},{} -5526,Lady_Tanee_Doll,Tanigumi Girl Doll,4,20,,300,,4,,0,0xFFFFFFFF,63,2,256,,60,0,520,{ bonus bAgi,2; bonus bFlee,3; bonus2 bSubEle,Ele_Wind,5; bonus2 bAddMonsterDropItem,513,200; },{},{} -5527,Lunatic_Hat,Lunatic Hat,4,20,,300,,2,,0,0xFFFFFFFF,63,2,256,,1,1,521,{ bonus bLuk,3; bonus bCritical,5; bonus2 bAddRace,RC_Plant,20; },{},{} -5528,King_Frog_Hat,Frog King Hat,4,20,,500,,4,,1,0xFFFFFFFE,63,2,256,,30,0,522,{ bonus bAgi,1; },{},{} -5529,Evil's_Bone_Hat,Satanic Bone Helm,4,20,,600,,6,,1,0xFFFFFFFF,63,2,768,,70,1,523,{ bonus bStr,2; bonus bInt,2; bonus bMdef,2; bonus2 bSubEle,Ele_Neutral,5; skill "WZ_FROSTNOVA",1; },{},{} -5530,Raven_Cap,Raven Cap,4,20,,100,,6,,1,0xFFFFFFFF,63,2,256,,30,1,524,{},{},{} -5531,B_Dragon_Hat,Baby Dragon Hat,4,45000,,100,,1,,1,0xFFFFFFFF,63,2,256,,0,1,525,{ bonus bDex,2; .@bonus = max(getskilllv("TF_DOUBLE"), 5); skill "TF_DOUBLE",.@bonus; bonus bDoubleRate,.@bonus * 5; },{},{} -5532,Pirate_Dagger_J,Pirate Dagger,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,327,{ bonus bShortWeaponDamageReturn,1; },{},{} -5533,Emperor_Wreath_J,Emperor Wreath,4,20,,800,,3,,1,0xFFFFFFFF,63,2,256,,80,1,261,{ bonus bAllStats,1; },{},{} -5534,Fox_Hat_J,Fox Hat,4,20,,100,,1,,0,0xFFFFFFFF,63,2,513,,70,0,403,{ bonus bAgi,1; bonus bFlee2,2; },{},{} -5535,Side_Cap,Side Cap,4,20,,500,,6,,0,0xFFFFFFFF,63,2,256,,0,1,529,{ bonus bVit,1; bonus bDex,1; bonus bMdef,3; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player_Human,3; },{},{} -5536,Spare_Card,Spare Card,4,20,,10,,1,,0,0xFFFFFFFF,63,2,1,,1,0,526,{ bonus bLuk,1; bonus2 bAddMonsterDropItem,6187,1000; bonus bFlee2,1; bonus2 bAddMonsterDropItem,617,5; bonus2 bAddMonsterDropItem,12132,30; bonus2 bAddMonsterDropItem,12130,30; },{},{} -5537,Quati_Hat,Kwati Hat,4,20,,700,,2,,1,0xFFFFFFFF,63,2,256,,45,0,527,{ bonus bAgi,3; bonus2 bAddRace,RC_Plant,10; },{},{} -5538,Tucan_Hat,Tucan Hat,4,20,,600,,2,,1,0xFFFFFFFF,63,2,768,,45,0,528,{ bonus bDex,3; bonus bCritical,5; },{},{} -5539,Jaguar_Hat,Jaguar Hat,4,20,,400,,4,,1,0xFFFFFFFF,63,2,769,,25,1,530,{ bonus bMdef,2; skill "MC_LOUD",1; },{},{} -5540,Freyja_SCirclet7,Freyja SCirclet7,4,20,,700,,8,,0,0xFFFFFFFF,63,2,256,,20,0,18,{ bonus bStr,1; bonus bInt,1; bonus bDex,1; },{},{} -5541,Freyja_SCirclet30,Freyja SCirclet30,4,20,,700,,8,,0,0xFFFFFFFF,63,2,256,,20,0,18,{ bonus bStr,1; bonus bInt,1; bonus bDex,1; },{},{} -5542,Freyja_SCirclet60,Freyja SCirclet60,4,20,,700,,8,,0,0xFFFFFFFF,63,2,256,,20,0,18,{ bonus bStr,1; bonus bInt,1; bonus bDex,1; },{},{} -5543,Freyja_SCirclet90,Freyja SCirclet90,4,20,,700,,8,,0,0xFFFFFFFF,63,2,256,,20,0,18,{ bonus bStr,1; bonus bInt,1; bonus bDex,1; },{},{} -5544,Time_Keeper_Hat,Time Keeper Hat,4,30000,,0,,6,,0,0xFFFFFFFF,63,2,256,,1,1,240,{ bonus bInt,2; bonus bMaxSP,50; },{},{} -5545,Aries_Diadem,Aries Diadem,4,20,,400,,3,,1,0xFFFFFFFF,63,2,256,,1,1,531,{ bonus bVit,2; bonus2 bSubEle,Ele_fire,5; if(getrefine()>6) { bonus bDef,1; bonus bVit,1; } },{},{} -5546,Aries_Crown,Aries Crown,4,20,,400,,3,,1,0xFFFFFFFF,63,2,256,,1,1,532,{ bonus bLuk,2; bonus2 bSubEle,Ele_Fire,5; if(getrefine()>6) { bonus bFlee,2; bonus bLuk,1; } },{},{} -5547,RJC_Katusa,RJC Katusa Flower,4,20,,200,,1,,1,0xFFFFFFFF,63,2,256,,0,1,533,{ bonus2 bSkillAtk,"WZ_HEAVENDRIVE",15+getequiprefinerycnt(EQI_HAND_R); bonus2 bSkillAtk,"WZ_EARTHSPIKE",15+getequiprefinerycnt(EQI_HAND_R); bonus2 bVariableCastrate,"WZ_HEAVENDRIVE",-25; bonus2 bVariableCastrate,"WZ_EARTHSPIKE",-25; },{},{} -5548,Scarlet_Rose,Scarlet Rose,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,1,0,534,{ bonus2 bAddClass,Class_All,1; bonus bMatkRate,1; bonus bMaxSP,30; },{},{} -5549,Taurus_Diadem,Taurus Diadem,4,20,,300,,6,,0,0xFFFFFFFF,63,2,256,,70,1,535,{ bonus bDex,2; bonus bMatkRate,2; bonus bDelayRate,-2; if (getrefine()>6) { bonus bMatkRate,1; bonus bDex,1; } },{},{} -5550,Taurus_Crown,Taurus Crown,4,20,,300,,6,,0,0xFFFFFFFF,63,2,256,,70,1,536,{ bonus bAgi,2; bonus2 bSubClass,Class_All,2; bonus bDelayRate,-2; bonus2 bAddEff,Eff_Stun,2000; if(getrefine()>6) { bonus2 bSubClass,Class_All,1; bonus bStr,1; } },{},{} -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_Human,9; },{},{} -5554,Octopus_Hat,Octopus Hat,4,20,,200,,3,,0,0xFFFFFFFF,63,2,256,,0,1,538,{ bonus bMdef,3; bonus3 bAutoSpell,"SM_PROVOKE",5,10; bonus bUnbreakableHelm; },{},{} -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; },{},{} -5558,Saci_Hat,Luxury Hat,4,20,,100,,6,,1,0xFFFFFFFF,63,2,256,,30,1,542,{ bonus3 bAddMonsterDropItem,510,RC_Plant,20; },{},{} -5559,Piece_Of_White_Cloth_E,Piece Of White Cloth,4,0,,0,,1,,0,0xFFFFFFFF,63,2,256,,0,1,543,{ bonus2 bAddClass,Class_All,6; bonus bMatkRate,6; bonus bLongAtkRate,6; bonus bHealPower,6; bonus bVariableCastrate,-20; bonus bAspd,1; },{},{} -5560,Bullock_Helm_J,Bullock Helm,4,20,,3000,,3,,0,0xFFFFFFFF,63,2,256,,75,1,322,{ bonus bMaxHP,100; bonus bNoKnockback; 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; },{},{} -5561,Rabbit_Magic_Hat_J,Magic Rabbit Hat,4,0,,800,,1,,0,0xFFFFFFFF,63,2,256,,0,1,497,{ bonus bInt,1; bonus bMaxSP,50; bonus4 bAutoSpellWhenHit,"MG_FIREBOLT",3,10,3; bonus4 bAutoSpellWhenHit,"MG_COLDBOLT",3,10,3; bonus4 bAutoSpellWhenHit,"MG_LIGHTNINGBOLT",3,10,3; bonus3 bAutoSpellWhenHit,"AL_HEAL",1,10; },{},{} -5562,Good_Wedding_Veil_J,Luxurious Wedding Veil,4,0,,500,,0,,1,0xFFFFFFFF,63,2,768,,45,0,489,{ bonus bMdef,10; bonus bVariableCastrate,-3; bonus bUseSPrate,-5; },{},{} -5563,Dolor_Hat,Dolor Hat,4,20,,100,,1,,1,0xFFFFFFFF,63,2,256,,0,0,547,{ bonus3 bAutoSpell,"PR_LEXAETERNA",1,15; },{},{} -5564,Crown_Of_Deceit,Crown of Deceit,4,20,,300,,3,,1,0xFFFFFFFF,63,2,768,,85,1,544,{ .@r = getrefine(); bonus bInt,4; bonus bMdef,10; bonus bVariableCastrate,-10; if(.@r==7||.@r==8){ bonus bDef,2; bonus bMatkRate,5; bonus bVariableCastrate,-5; } if(.@r>=9){ bonus bMdef,5; bonus bMatkRate,5; bonus bVariableCastrate,-5; bonus bDelayrate,-5; } },{},{} -5565,Dragon_Arhat_Mask,Dragon Arhat Mask,4,0,,0,,5,,0,0xFFFFFFFF,63,2,513,,1,0,545,{ bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; },{},{} -5566,Tiger_Arhat_Mask,Tiger Arhat Mask,4,0,,0,,1,,0,0xFFFFFFFF,63,2,513,,1,0,546,{ bonus2 bAddRace,RC_DemiHuman,2; bonus2 bAddRace,RC_Player_Human,2; },{},{} -5567,Bright_Fury,Bright Fury,4,20,,300,,1,,1,0xFFFFFFFF,63,2,256,,1,1,548,{ bonus bStr,1; bonus2 bAddClass,Class_All,2; bonus bAspdRate,2; },{},{} -5568,Rabbit_Bonnet,Rabbit Bonnet,4,20,,1000,,1,,0,0xFFFFFFFF,63,2,768,,0,1,549,{ bonus bInt,2; bonus bDelayRate,-3; },{},{} -5569,Gemini_Diadem,Gemini Diadem,4,20,,300,,6,,1,0xFFFFFFFF,63,2,256,,0,1,550,{ bonus bDex,2; bonus bMatkRate,2; if(getrefine()>6) { bonus bDex,1; bonus bMatk,30; } },{},{} -5570,Gemini_Crown,Gemini Crown,4,20,,300,,6,,1,0xFFFFFFFF,63,2,256,,0,1,551,{ bonus bAgi,2; bonus bFlee,10; if(getrefine()>6) { bonus bHit,5; bonus bAtk,30; } },{},{} -5571,Rasta_Wig,Rasta Wig,4,20,,100,,1,,0,0xFFFFFFFF,63,2,256,,0,1,552,{ bonus bStr,1; bonus3 bAutoSpellWhenHit,"BA_FROSTJOKER",1,50; },{},{} -5572,Savage_Baby_Hat,Savage Babe Hat,4,20,,100,,1,,1,0xFFFFFFFF,63,2,256,,30,1,553,{ bonus bVit,2; bonus2 bAddEff,Eff_Stun,500; bonus2 bSubRace,RC_Brute,-10; bonus2 bSubRace,RC_Player_Doram,-10; },{},{} -5573,Bogy_Horn,Dokebi Horn,4,20,,100,,1,,1,0xFFFFFFFF,63,2,256,,75,1,554,{ bonus2 bAddMonsterDropItemGroup,IG_Jewel,100; bonus3 bAutoSpell,"MC_MAMMONITE",5,70; },{},{} -5574,Pencil_In_Mouth,Well-Chewed Pencil,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,10,0,555,{ bonus bHit,3; },{},{} -5575,Onigiri_Hat,Rice Ball Hat,4,20,,100,,6,,1,0xFFFFFFFF,63,2,256,,30,0,556,{},{},{} -5576,Japan_Winecup,Wine Cup,4,20,,100,,1,,0,0xFFFFFFFF,63,2,1,,0,0,557,{},{},{} -5577,Dark_Knight_MaskB,Dark Knight Mask,4,,,3000,,5,,0,0xFFFFFFFF,63,2,769,,80,1,479,{ bonus bDex,3; },{},{} -5578,Voyage_Hat,Voyage Hat,4,200,,10,,1,,0,0xFFFFFFFF,63,2,256,,0,1,236,{ bonus bAgi,2; },{},{} -5579,Wanderer's_Sakkat,Wanderer's Sakkat,4,20,,300,,2,,1,0xFFFFFFFF,63,2,768,,1,1,558,{ bonus bFlee,3; .@r = getrefine(); if(.@r>=7){ bonus bFlee,2; bonus bAgi,2; } if(.@r>=9){ bonus bCritical,10; bonus bAspdRate,8; } },{},{} -5580,Red_Beret,Red Beret,4,20,,100,,3,,0,0xFFFFFFFF,63,2,256,,0,0,559,{ bonus bAllStats,3; bonus bMdef,3; },{},{} -5581,Cancer_Diadem,Cancer Diadem,4,20,,300,,3,,0,0xFFFFFFFF,63,2,256,,70,1,560,{ bonus bInt,2; bonus2 bSubEle,Ele_Water,5; if(getrefine()>6) { bonus bMdef,1; bonus bHealPower,3; bonus bMatkRate,2; } },{},{} -5582,Cancer_Crown,Cancer Crown,4,20,,300,,3,,0,0xFFFFFFFF,63,2,256,,70,1,561,{ bonus bStr,2; bonus2 bSubEle,Ele_Water,5; if(getrefine()>6) { bonus bDef,1; bonus bBaseAtk,15; bonus bFlee,10; } },{},{} -5583,Para_Team_Hat,Eden Team Hat I,4,0,,0,,5,,0,0xFFFFFFFF,63,2,256,,7,1,465,{},{},{} -5584,Majestic_Evil_Horn,Majestic Evil Horns,4,0,,400,,2,,0,0xFFFFFFFF,63,2,256,,1,1,562,{ bonus2 bSubRace,RC_Demon,3; bonus2 bHPDrainRate,3,15; bonus2 bSPDrainRate,1,7; /*Gold PC Room bonus bSPGainValue,2; bonus bMagicSPGainValue,2; bonus2 bSubRace,RC_Demon,2;*/ },{},{} -5585,Rune_Hairband,Rune Cloth Circlet,4,20,,400,,1,,1,0xFFFFFFFF,63,2,768,,1,1,564,{ bonus2 bSubEle,Ele_Neutral,3; bonus bHit,5; bonus2 bHPDrainRate,30,10; bonus2 bSPDrainRate,10,5; },{},{} -5586,Mosquito_Coil,Mosquito Coil,4,20,,100,,1,,1,0xFFFFFFFF,63,2,256,,1,1,563,{ bonus2 bAddDamageClass,1627,100; bonus2 bAddDamageClass,1095,20; bonus2 bAddDamageClass,1160,20; bonus2 bAddDamageClass,1105,20; bonus2 bAddDamageClass,1097,20; bonus2 bAddDamageClass,1051,20; bonus2 bAddDamageClass,1053,20; bonus2 bAddDamageClass,1054,20; bonus2 bAddDamageClass,1048,20; },{},{} -5587,Mosquito_Coil_1Use,Mosquito Coil,4,0,,100,,1,,0,0xFFFFFFFF,63,2,256,,1,1,563,{},{},{} -5588,Leo_Crown,Leo Crown,4,20,,300,,3,,0,0xFFFFFFFF,63,2,256,,1,1,565,{ bonus bStr,2; bonus2 bSubEle,Ele_Fire,5; if(getrefine()>6) { bonus bDef,1; bonus bFlee,10; bonus3 bAutoSpell,"TK_SEVENWIND",4,50; } },{},{} -5589,Leo_Diadem,Leo Diadem,4,20,,300,,3,,0,0xFFFFFFFF,63,2,256,,1,1,566,{ bonus bDex,2; bonus2 bSubEle,Ele_Fire,5; if(getrefine()>6) { bonus bFlee,10; bonus bAspdRate,3; autobonus "{ bonus bSplashRange,1; }",10,10000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; } },{},{} -5590,K_Poring_Cake_Cap,Poring Cake Hat,4,20,,200,,1,,0,0xFFFFFFFF,63,2,256,,0,1,417,{ bonus bLuk,3; bonus bMdef,5; bonus bMaxHP,BaseLevel*2; bonus bMaxSP,50; },{},{} -5591,Desert_Prince,Desert Prince,4,20,,100,,3,,1,0xFFFFFFFF,63,2,256,,30,0,567,{ bonus bUnbreakableHelm; },{},{} -5592,Sigrun's_Wing,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,K_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_Human,3; bonus bDelayRate,-3; if(getrefine()>6) { bonus2 bSubDefEle,Ele_All,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; .@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,Four Leaf Clover,4,20,,0,,2,,0,0xFFFFFFFF,63,2,1,,1,0,571,{ bonus bBaseAtk,5; bonus bMatk,5; bonus bMdef,2; /*Gold PC Room: bonus bAllStats,1; bonus2 bExpAddRace,RC_All,2; */ },{},{} -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; bonus2 bDropAddClass,Class_All,5; */ },{},{} -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; }"; } },{},{} -5599,Virgo_Diadem,Virgo Diadem,4,20,,300,,3,,1,0xFFFFFFFF,63,2,256,,70,1,574,{ bonus bAspdRate,3; bonus2 bSubEle,Ele_Earth,5; if(getrefine()>6) bonus3 bAutoSpell,"MO_BALKYOUNG",1,50; },{},{} -5600,Br_Twin_Ribbon,Brazil Twin Ribbon,4,20,,100,,1,,0,0xFFFFFFFF,63,2,256,,1,1,575,{ bonus bAllStats,3; bonus bMdef,1; },{},{} -5601,Br_Beret,Brazil Beret,4,20,,100,,1,,0,0xFFFFFFFF,63,2,256,,1,1,576,{ bonus bAllStats,3; bonus bMdef,1; },{},{} -5602,Jaguar_Hat_J,Jaguar Hat J,4,20,,300,,0,,1,0xFFFFFFFF,63,2,513,,50,0,530,{ bonus2 bAddEle,Ele_Fire,5; },{},{} -5603,RTC_Winner_Only,RTC First Place,4,0,,250,,8,,1,0xFFFFFFFF,63,2,256,,1,1,577,{ bonus bAllStats,3; bonus bAspdRate,10; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; },{},{} -5604,RTC_Second_Best,RTC Second Place,4,0,,250,,6,,1,0xFFFFFFFF,63,2,256,,1,1,578,{ bonus bAllStats,2; bonus bAspdRate,7; bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player_Human,3; },{},{} -5605,RTC_Third_Best,RTC Third Place,4,0,,250,,4,,1,0xFFFFFFFF,63,2,256,,1,1,579,{ bonus bAllStats,1; bonus bAspdRate,5; bonus2 bAddRace,RC_DemiHuman,1; bonus2 bAddRace,RC_Player_Human,1; },{},{} -5606,Campume_Hat,Champune Hat,4,500,,1200,,4,,0,0xFFFFFFFF,63,2,256,,3,1,580,{ bonus bAllStats,1; },{},{} -5607,Lyria_Doll_Hat,Lyria Doll Hat,4,0,,500,,0,,1,0xFFFFFFFF,63,2,256,,60,0,581,{ bonus bMaxHP,500; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; },{},{} -5608,Dorothy_Doll_Hat,Dorothy Doll Hat,4,0,,500,,0,,1,0xFFFFFFFF,63,2,256,,60,0,582,{ bonus bMaxSP,80; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; },{},{} -5609,Chung_Hairband,Chung Hairband,4,0,,500,,5,,1,0xFFFFFFFF,63,2,256,,60,0,583,{ bonus bLuk,3; bonus bMdef,4; bonus3 bAutoSpellWhenHit,"MC_MAMMONITE",5,5; },{},{} -5610,Ice_Wing_Ear,Ice Wing Ear,4,0,,100,,0,,0,0xFFFFFFFF,63,2,512,,10,0,584,{ bonus bLuk,1; bonus3 bAutoSpellWhenHit,"MG_COLDBOLT",5,5; },{},{} -5611,Turtle_Hat,Turtle Hat,4,0,,300,,0,,0,0xFFFFFFFF,63,2,256,,10,1,585,{ bonus bAgi,1; bonus3 bAutoSpellWhenHit,"AL_DECAGI",3,5; },{},{} -5612,F_Blue_Drooping_Kitty,F Blue Drooping Kitty,4,250000,,500,,1,,0,0xFFFFFFFE,63,2,256,,0,1,277,{ bonus bMdef,15; },{},{} -5613,F_Flying_Angel,F Flying Angel,4,20,,300,,1,,0,0xFFFFFFFF,63,2,256,,10,1,264,{ bonus bInt,1; bonus bAgi,1; },{},{} -5614,F_Smoking_Pipe_,F Smoking Pipe,4,20,,100,,0,,0,0xFFFFFFFE,63,2,1,,0,0,55,{ bonus bVit,1; },{},{} -5615,F_Pair_Of_Red_Ribbon_,F Pair Of Red Ribbon,4,20,,100,,1,,0,0xFFFFFFFF,63,2,512,,45,0,169,{},{},{} -5616,F_Fish_On_Head_,F Fish On Head,4,20,,500,,2,,0,0xFFFFFFFF,63,2,256,,50,1,149,{ bonus bDex,1; bonus bAgi,1; },{},{} -5617,F_Hibiscus,F Hibiscus,4,20,,200,,0,,0,0xFFFFFFFF,63,2,256,,10,0,210,{ bonus bInt,1; bonus bDex,1; bonus bMdef,5; },{},{} -5618,F_Cat_Hat,F Cat Hat,4,20,,300,,1,,0,0xFFFFFFFF,63,2,256,,0,1,182,{ bonus bLuk,2; bonus bMdef,10; },{},{} -5619,F_Bunny_Band_,F Bunny Band,4,20,,100,,2,,0,0xFFFFFFFF,63,2,256,,0,1,15,{ bonus bInt,2; },{},{} -5620,F_Magestic_Goat_TW,F Magestic Goat TW,4,20,,800,,5,,0,0x006444A2,63,2,256,,0,1,41,{ bonus bStr,2; },{},{} -5621,F_Sheep_Hat,F Sheep Hat,4,20,,150,,1,,0,0x00008110,63,2,256,,0,0,205,{},{},{} -5622,F_Mini_Propeller_,F Mini Propeller,4,20,,200,,2,,0,0xFFFFFFFF,63,2,256,,0,1,270,{ bonus bDex,1; bonus bAgi,2; },{},{} -5623,F_Alice_Doll,F Alice Doll,4,20,,500,,0,,1,0xFFFFFFFE,63,2,256,,30,0,208,{ bonus bStr,1; },{},{} -5624,F_Red_Glasses,F Red Glasses,4,20,,0,,1,,0,0xFFFFFFFF,63,2,512,,0,0,316,{ bonus bInt,1; },{},{} -5625,F_Chick_Hat,F Chick Hat,4,20,,100,,1,,0,0xFFFFFFFF,63,2,256,,10,0,311,{ bonus bLuk,2; },{},{} -5626,F_White_Deviruchi_Cap,F White Deviruchi Cap,4,20,,800,,2,,0,0xFFFFFFFE,63,2,256,,64,1,272,{ bonus bStr,1; bonus bInt,1; },{},{} -5627,F_Vane_Hairpin,F Vane Hairpin,4,20,,300,,2,,1,0xFFFFFFFF,63,2,256,,30,0,313,{ bonus bAgi,2; },{},{} -5628,F_Pecopeco_Hairband,F Pecopeco Hairband,4,20,,0,,3,,0,0xFFFFFFFF,63,2,256,,0,0,314,{},{},{} -5629,F_Vacation_Hat,F Vacation Hat,4,20,,200,,1,,1,0xFFFFFFFF,63,2,256,,30,0,315,{ bonus bVit,1; },{},{} -5630,F_Charming_Ribbon,F Charming Ribbon,4,20,,400,,1,,1,0xFFFFFFFF,63,2,256,,10,1,211,{},{},{} -5631,F_Water_Lily_Crown,F Water Lily Crown,4,20,,200,,0,,1,0xFFFFFFFF,63,2,256,,30,0,312,{ bonus bDex,1; bonus bAgi,1; bonus bMdef,3; },{},{} -5632,F_Vanilmirth_Hat,F Vanilmirth Hat,4,20,,1000,,0,,0,0xFFFFFFFF,63,2,256,,30,0,317,{ bonus bMdef,5; },{},{} -5633,F_Drooping_Bunny_,F Drooping Bunny,4,20,,100,,1,,0,0xFFFFFFFF,63,2,256,,0,1,249,{ bonus bDex,1; },{},{} -5634,F_Kettle_Hat,F Kettle Hat,4,20,,600,,4,,0,0xFFFFFFFF,63,2,256,,30,1,318,{},{},{} -5635,F_Dragon_Skull,F Dragon Skull,4,20,,800,,5,,0,0xFFFFFFFF,63,2,256,,50,1,319,{},{},{} -5636,F_Ramen_Hat,F Ramen Hat,4,20,,0,,1,,0,0xFFFFFFFF,63,2,256,,0,0,320,{ bonus bDex,4; },{},{} -5637,F_Pink_Fur_Hat,F Pink Fur Hat,4,20,,350,,2,,0,0xFFFFFFFF,63,2,256,,0,1,281,{ bonus bLuk,1; },{},{} -5638,F_Puppy_Hat,F Puppy Hat,4,20,,500,,2,,0,0xFFFFFFFF,63,2,256,,30,0,234,{ bonus bAgi,1; },{},{} -5639,F_Magic_Eyes,F Magic Eyes,4,20,,300,,1,,0,0x00810204,63,2,256,,30,1,209,{ bonus bMdef,5; },{},{} -5640,F_Jumping_Poring,F Jumping Poring,4,0,,300,,2,,0,0xFFFFFFFF,63,2,256,,0,0,349,{ bonus bLuk,1; },{},{} -5641,F_Robo_Eye,F Robo Eye,4,20,,200,,1,,0,0xFFFFFFFF,63,2,512,,10,0,345,{ bonus bDex,1; },{},{} -5642,F_Yellow_Wizardry_Hat,F Yellow Wizardry Hat,4,20,,300,,1,,0,0x00810204,63,2,256,,0,1,286,{ bonus bInt,2; },{},{} -5643,F_Crescent_Helm,F Crescent Helm,4,20,,3000,,8,,0,0x000444A2,63,2,768,,50,1,213,{ bonus bVit,1; },{},{} -5644,F_Tiger_Mask,F Tiger Mask,4,20,,400,,2,,0,0xFFFFFFFF,63,2,768,,50,0,181,{ bonus bStr,3; },{},{} -5645,F_Fantastic_Wig,F Fantastic Wig,4,20,,100,,1,,0,0xFFFFFFFF,63,2,768,,0,1,308,{},{},{} -5646,F_Whisper_Mask,F Whisper Mask,4,20,,0,,0,,0,0xFFFFFFFF,63,2,769,,0,0,321,{ bonus bAgi,3; },{},{} -5647,F_Bunny_Band_C,F Bunny Band C,4,1,,0,,9,,0,0xFFFFFFFF,63,2,256,,1,0,15,{ bonus bMdef,5; },{},{} -5648,F_Centimental_Flower_C,F Centimental Flower C,4,1,,0,,1,,0,0xFFFFFFFE,63,2,1,,1,0,56,{},{},{} -5649,F_Apple_Of_Archer_C,F Apple Of Archer C,4,1,,0,,7,,0,0xFFFFFFFE,63,2,256,,1,0,72,{ bonus bDex,4; },{},{} -5650,F_Elven_Ears_C,F Elven Ears C,4,1,,0,,2,,0,0xFFFFFFFE,63,2,512,,1,0,73,{ bonus bInt,1; },{},{} -5651,F_Brooch_C,F Brooch C,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bAgi,4; },{},{} -5652,F_Magestic_Goat_C,F Magestic Goat C,4,2,,0,,5,,0,0xFFFFFFFE,63,2,256,,0,0,41,{ bonus bStr,1; },{},{} -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; },{},{} -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,Sleepr_Hat,Sleeper Hat,4,20,,400,,1,,0,0xFFFFFFFF,63,2,256,,1,1,590,{ bonus3 bAutoSpell,"SA_SEISMICWEAPON",1,5; },{},{} -5660,Gryphon_Hat,Gryphon Hat,4,20,,400,,1,,1,0xFFFFFFFF,63,2,256,,1,1,591,{ bonus bAgi,2; if (getrefine() > 6) { bonus bAgi,2; } if (getrefine() > 8) { bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; } },{},{} -5661,Red_Pirate_Bandana,Red Pirate Bandana,4,0,,0,,3,,0,0xFFFFFFFF,63,2,256,,10,1,592,{ bonus bStr,1; bonus bDex,1; bonus bAspdRate,2; bonus bVariableCastrate,-2; bonus3 bAutoSpell,"MO_EXTREMITYFIST",1,3; },{},{} -5662,Libra_Crown,Libra Crown,4,10,,300,,3,,0,0xFFFFFFFF,63,2,256,,1,1,593,{ bonus bDex,3; bonus2 bSubEle,Ele_Wind,7; if (getrefine()>=7) { bonus bMatkRate,3; } if (getrefine()>=9) { bonus bMatkRate,5; bonus3 bAutoSpellWhenHit,"WZ_FROSTNOVA",5,20;} },{},{} -5663,Libra_Diadem,Libra Diadem,4,10,,300,,3,,0,0xFFFFFFFF,63,2,256,,1,1,594,{ bonus bBaseAtk,7; if (getrefine()>=7) { bonus3 bAutoSpell,"TK_SEVENWIND",2,5; } if (getrefine()>=9) { bonus bFlee,5; bonus2 bAddClass,Class_All,3; } },{},{} -5664,Filir_Wing,Filir's Pinions,4,20,,100,,1,,0,0xFFFFFFFF,63,2,512,,70,0,595,{ bonus bAspdRate,2; },{},{} -5665,Shaman_Hat,Shaman Hat,4,20,,400,,1,,1,0xFFFFFFFF,63,2,256,,1,1,596,{ bonus bMdef,5; bonus2 bSubEle,Ele_Neutral,3; bonus2 bSubEle,Ele_Water,3; bonus2 bSubEle,Ele_Earth,3; bonus2 bSubEle,Ele_Fire,3; bonus2 bSubEle,Ele_Wind,3; bonus2 bSubEle,Ele_Poison,3; bonus2 bSubEle,Ele_Holy,3; bonus2 bSubEle,Ele_Dark,3; bonus2 bSubEle,Ele_Ghost,3; bonus2 bSubEle,Ele_Undead,3; },{},{} -5666,Golden_Crown,Golden Crown,4,20,,500,,8,,1,0xFFFFFFFF,63,2,256,,1,1,597,{ bonus bInt,1; bonus bDex,1; bonus bLuk,1; },{},{} -5667,Skull_Hood,Skull Hood,4,20,,100,,1,,1,0xFFFFFFFF,63,2,768,,30,1,598,{ bonus2 bSubRace,RC_Demon,10; bonus2 bSubRace,RC_Undead,10; if(getrefine()>=7) autobonus "{ bonus bCritical,30; bonus bHit,10; }",10,10000,0,"{ specialeffect2 EF_ENHANCE; }"; },{},{} -5668,Weird_Pumpkin_Hat,Weird Pumpkin Hat,4,20,,0,,5,,0,0xFFFFFFFF,63,2,256,,1,1,206,{ bonus bMdef,5; bonus2 bAddMonsterDropItem,6097,10; },{},{} -5669,Poring_Party_Hat_J,Poring Party Hat J,4,20,,300,,1,,0,0xFFFFFFFF,63,2,256,,1,1,340,{},{},{} -5670,Aniv_Star_Hat,Aniv Star Hat,4,20,,300,,0,,0,0xFFFFFFFF,63,2,256,,1,1,599,{},{},{} -5671,Drooping_Morocc_Minion,Drooping Morocc Minion,4,20,,300,,0,,1,0xFFFFFFFF,63,2,256,,70,0,600,{ bonus bSPGainValue,2; bonus3 bAutoSpellWhenHit,"NPC_CRITICALWOUND",2,2; },{},{} -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,{ bonus bNoCastCancel; bonus bVariableCastrate,35; },{},{} -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,{ bonus2 bAddMonsterDropItem,619,10; bonus bUnbreakableHelm; },{},{} -5676,Scorpio_Crown,Scorpio Crown,4,20,,300,,3,,0,0xFFFFFFFF,63,2,256,,1,1,605,{ bonus bAspdRate,3; bonus2 bSubEle,Ele_Water,5; .@r = getrefine(); if (.@r>6) { bonus3 bAutoSpell,"TK_SEVENWIND",3,20; } if (.@r>7) { bonus bAspdRate,2; } if (.@r>8) { bonus3 bAutoSpell,"WZ_FROSTNOVA",5,10; } if (.@r>9) { bonus bAspdRate,2; bonus bBaseAtk,5; } },{},{} -5677,Scorpio_Diadem,Scorpio Diadem,4,20,,300,,3,,0,0xFFFFFFFF,63,2,256,,1,1,606,{ bonus bDex,2; if (getrefine()>6) { bonus bDex,1; bonus bAtk,5; } },{},{} -5678,Notation_Hairband,Notation Hairband,4,200,,100,,5,,0,0xFFFFFFFF,63,2,256,,1,1,607,{ bonus bUnbreakableHelm; },{},{} -5679,Engineer_Cap,Engineer Cap,4,20,,200,,2,,1,0xFFFFFFFF,63,2,256,,10,1,608,{ bonus2 bAddRace,RC_Formless,10; },{},{} -5680,Hawkeyes,Hawkeyes,4,20,,100,,0,,0,0xFFFFFFFF,63,2,512,,10,0,609,{ bonus bHit,10; bonus bUnbreakableHelm; },{},{} -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 bInt,1; 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,{},{},{} -5684,Jewel_Crown_Repl,Ornate Crown,4,20,,100,,5,,0,0xFFFFFFFF,63,2,256,,1,1,88,{},{},{} -5685,Prontera_Army_Cap_Repl,Army Cap,4,20,,100,,5,,0,0xFFFFFFFF,63,2,256,,1,1,48,{},{},{} -5686,Feather_Bonnet_Repl,Nice Hat Feather,4,20,,100,,5,,0,0xFFFFFFFF,63,2,256,,1,1,104,{},{},{} -5687,Viking_Helm_Repl,Orc Helm,4,20,,100,,5,,0,0xFFFFFFFF,63,2,256,,1,1,86,{},{},{} -5688,2009Love_Daddy,2009 Love Dad,4,20,,100,,3,,0,0xFFFFFFFF,63,2,256,,1,1,611,{ bonus bVit,2; },{},{} -5689,Queen_Ant_Diadem,Queen Ant Diadem,4,20,,300,,1,,0,0xFFFFFFFF,63,2,256,,75,1,612,{ bonus3 bAutoSpellWhenHit,"MG_SIGHT",1,5; bonus2 bSubRace,RC_Insect,5; },{},{} -5690,Red_Wing_Hat,Red Wing Hat,4,20,,600,,5,,0,0xFFFFFFFF,63,2,256,,1,1,613,{ bonus bHPrecovRate,20; bonus bSPrecovRate,20; },{},{} -5691,Catain_Bandanna,Sailor's Bandana,4,20,,10,,1,,0,0xFFFFFFFF,63,2,256,,1,1,542,{ bonus bDex,1; bonus2 bSubEle,Ele_Poison,20; bonus2 bResEff,Eff_Poison,2000; bonus bUnbreakableHelm; },{},{} -5692,Sea_Cat_Hat,Sea Cat Hat,4,20,,10,,1,,0,0xFFFFFFFF,63,2,256,,1,1,539,{ bonus bDex,1; bonus2 bResEff,Eff_Curse,2000; bonus bUnbreakableHelm; },{},{} -5693,No_Fear_Underware,No Fear Underwear,4,0,,0,,10,,0,0xFFFFFFFF,63,2,256,,20,0,30,{ bonus bStr,1; bonus bInt,1; bonus bDex,1; bonus bMaxHP,700; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; },{},{} -5694,No_Fear_P_Headgear,No Fear P Headgear,4,0,,0,,1,,0,0xFFFFFFFE,63,2,256,,20,0,614,{ bonus bVit,1; bonus bMaxHP,100; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; },{},{} -5695,E_Blue_Drooping_Kitty,E Blue Drooping Kitty,4,250000,,500,,1,,0,0,7,2,256,,0,1,277,{ bonus bMdef,15; },{},{} -5696,E_Flying_Angel,E Flying Angel,4,20,,300,,1,,0,0xFFFFFFFF,63,2,256,,10,1,264,{ bonus bInt,1; bonus bAgi,1; },{},{} -5697,E_Smoking_Pipe_,E Smoking Pipe,4,20,,100,,0,,0,0,7,2,1,,0,0,55,{ bonus bVit,1; },{},{} -5698,E_Pair_OE_Red_Ribbon_,E Pair OE Red Ribbon,4,20,,100,,1,,0,0,7,2,512,,45,0,169,{},{},{} -5699,E_Fish_On_Head_,E Fish On Head,4,20,,500,,2,,0,0xFFFFFFFF,63,2,256,,50,1,149,{ bonus bDex,1; bonus bAgi,1; },{},{} -5700,E_Hibiscus,E Hibiscus,4,20,,200,,0,,0,0xFFFFFFFF,63,2,256,,10,0,210,{ bonus bInt,1; bonus bDex,1; bonus bMdef,5; },{},{} -5701,E_Cat_Hat,E Cat Hat,4,20,,300,,1,,0,0xFFFFFFFF,63,2,256,,0,1,182,{ bonus bLuk,2; bonus bMdef,10; },{},{} -5702,E_Bunny_Band_,E Bunny Band,4,20,,100,,2,,0,0xFFFFFFFF,63,2,256,,0,1,15,{ bonus bInt,2; },{},{} -5703,E_Magestic_Goat_TW,E Magestic Goat TW,4,20,,800,,5,,0,0x006444A2,63,2,256,,0,1,41,{ bonus bStr,2; },{},{} -5704,E_Sheep_Hat,E Sheep Hat,4,20,,150,,1,,0,0x00008110,63,2,256,,0,0,205,{},{},{} -5705,E_Mini_Propeller_,E Mini Propeller,4,20,,200,,2,,0,0,7,2,256,,0,1,270,{ bonus bDex,1; bonus bAgi,2; },{},{} -5706,E_Alice_Doll,E Alice Doll,4,20,,500,,0,,1,0xFFFFFFFE,63,2,256,,30,0,208,{ bonus bStr,1; },{},{} -5707,E_Red_Glasses,E Red Glasses,4,20,,0,,1,,0,0xFFFFFFFF,63,2,512,,0,0,316,{ bonus bInt,1; },{},{} -5708,E_Chick_Hat,E Chick Hat,4,20,,100,,1,,0,0xFFFFFFFF,63,2,256,,10,0,311,{ bonus bLuk,2; },{},{} -5709,E_White_Deviruchi_Cap,E White Deviruchi Cap,4,20,,800,,2,,0,0xFFFFFFFE,63,2,256,,64,1,272,{ bonus bStr,1; bonus bInt,1; },{},{} -5710,E_Vane_Hairpin,E Vane Hairpin,4,20,,300,,2,,1,0xFFFFFFFF,63,2,256,,30,0,313,{ bonus bAgi,2; },{},{} -5711,E_Pecopeco_Hairband,E Pecopeco Hairband,4,20,,0,,3,,0,0xFFFFFFFF,63,2,256,,0,0,314,{},{},{} -5712,E_Vacation_Hat,E Vacation Hat,4,20,,200,,1,,1,0xFFFFFFFF,63,2,256,,30,0,315,{ bonus bVit,1; },{},{} -5713,E_Charming_Ribbon,E Charming Ribbon,4,20,,400,,1,,1,0xFFFFFFFF,63,2,256,,10,1,211,{},{},{} -5714,E_Water_Lily_Crown,E Water Lily Crown,4,20,,200,,0,,1,0,7,2,256,,30,0,312,{ bonus bDex,1; bonus bAgi,1; bonus bMdef,3; },{},{} -5715,E_Vanilmirth_Hat,E Vanilmirth Hat,4,20,,1000,,0,,0,0xFFFFFFFF,63,2,256,,30,0,317,{ bonus bMdef,5; },{},{} -5716,E_Drooping_Bunny_,E Drooping Bunny,4,20,,100,,1,,0,0,7,2,256,,0,1,249,{ bonus bDex,1; },{},{} -5717,E_Kettle_Hat,E Kettle Hat,4,20,,600,,4,,0,0xFFFFFFFF,63,2,256,,30,1,318,{},{},{} -5718,E_Dragon_Skull,E Dragon Skull,4,20,,800,,5,,0,0xFFFFFFFF,63,2,256,,50,1,319,{},{},{} -5719,E_Ramen_Hat,E Ramen Hat,4,20,,0,,1,,0,0xFFFFFFFF,63,2,256,,0,0,320,{ bonus bDex,4; },{},{} -5720,E_Pink_Fur_Hat,E Pink Fur Hat,4,20,,350,,2,,0,0xFFFFFFFF,63,2,256,,0,1,281,{ bonus bLuk,1; },{},{} -5721,E_Puppy_Hat,E Puppy Hat,4,20,,500,,2,,0,0xFFFFFFFF,63,2,256,,30,0,234,{ bonus bAgi,1; },{},{} -5722,E_Magic_Eyes,E Magic Eyes,4,20,,300,,1,,0,0x00810204,63,2,256,,30,1,209,{ bonus bMdef,5; },{},{} -5723,E_Jumping_Poring,E Jumping Poring,4,0,,300,,2,,0,0xFFFFFFFF,63,2,256,,0,0,349,{ bonus bLuk,1; },{},{} -5724,E_Robo_Eye,E Robo Eye,4,20,,200,,1,,0,0xFFFFFFFF,63,2,512,,10,0,345,{ bonus bDex,1; },{},{} -5725,E_Yellow_Wizardry_Hat,E Yellow Wizardry Hat,4,20,,300,,1,,0,0x00810204,63,2,256,,0,1,286,{ bonus bInt,2; },{},{} -5726,E_Crescent_Helm,E Crescent Helm,4,20,,3000,,8,,0,0x000444A2,63,2,768,,50,1,213,{ bonus bVit,1; },{},{} -5727,E_Tiger_Mask,E Tiger Mask,4,20,,400,,2,,0,0xFFFFFFFF,63,2,768,,50,0,181,{ bonus bStr,3; },{},{} -5728,E_Fantastic_Wig,E Fantastic Wig,4,20,,100,,1,,0,0xFFFFFFFF,63,2,768,,0,1,308,{},{},{} -5729,E_Bunny_Band_C,E Bunny Band C,4,1,,0,,9,,0,0xFFFFFFFF,63,2,256,,1,0,15,{ bonus bMdef,5; },{},{} -5730,E_Centimental_Flower_C,E Centimental Flower C,4,1,,0,,1,,0,0xFFFFFFFE,63,2,1,,1,0,56,{},{},{} -5731,E_Apple_OE_Archer_C,E Apple OE Archer C,4,1,,0,,7,,0,0xFFFFFFFE,63,2,256,,1,0,72,{ bonus bDex,4; },{},{} -5732,E_Elven_Ears_C,E Elven Ears C,4,1,,0,,2,,0,0xFFFFFFFE,63,2,512,,1,0,73,{ bonus bInt,1; },{},{} -5733,E_Brooch_C,E Brooch C,4,1,,0,,0,,0,0xFFFFFFFE,63,2,136,,1,0,0,{ bonus bAgi,4; },{},{} -5734,E_Magestic_Goat_C,E Magestic Goat C,4,2,,0,,5,,0,0xFFFFFFFE,63,2,256,,0,0,41,{ bonus bStr,1; },{},{} -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,{ bonus3 bAddMonsterDropItem,952,RC_Plant,500; },{},{} -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,12354,100; bonus2 bAddMonsterDropItem,530,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; bonus2 bSubEle,Ele_Fire,7; .@r = getrefine(); if (.@r>6) { bonus bAspdRate,2; } if (.@r>7) { bonus bAgi,2; } if (.@r>8) { bonus bLongAtkRate,5; } if (.@r>9) { autobonus "{ bonus bAgi,10; bonus bDex,10; }",3,10000,0,"{ specialeffect2 EF_ENHANCE; }"; } },{},{} -5740,Sagittarius_Diadem,Sagittarius Diadem,4,20,,300,,3,,1,0xFFFFFFFF,63,2,256,,1,1,618,{ bonus bDex,2; bonus bMdef,3; bonus2 bSubEle,Ele_Fire,7; .@r = getrefine(); if (.@r>6) { bonus bVariableCastrate,-3; } if (.@r>7) { bonus5 bAutoSpell,"WZ_SIGHTRASHER",10,5,BF_MAGIC,0; } if (.@r>8) { bonus bVariableCastrate,-2; } if (.@r>9) { bonus bMatkRate,4; } },{},{} -5741,Im_Egg_Shell_Hat,Eternal Egg Shell,4,20,,0,,1,,0,0xFFFFFFFF,63,2,256,,10,1,101,{ bonus2 bAddItemGroupHealRate,IG_Potion,10; bonus bHealPower2,10; },{},{} -5742,Rudolf_Santa_Hat,Rudolph Santa Hat,4,20,,400,,5,,0,0xFFFFFFFF,63,2,256,,10,1,619,{ bonus2 bAddMonsterDropItem,538,100; bonus2 bAddMonsterDropItem,539,100; bonus2 bAddItemHealRate,538,100; bonus2 bAddItemHealRate,539,100; },{},{} -5743,Orange_Stem_Hat,Orange Stem Hat,4,20,,100,,0,,0,0xFFFFFFFF,63,2,256,,1,0,620,{ bonus bLuk,3; },{},{} -5744,Capricorn_Crown,Capricorn Crown,4,20,,300,,3,,1,0xFFFFFFFF,63,2,256,,1,1,621,{ bonus bVit,2; bonus bDex,2; if (getrefine()>6) { bonus3 bAutoSpell,"TK_SEVENWIND",1,500; } },{},{} -5745,Capricorn_Diadem,Capricorn Diadem,4,20,,300,,3,,0,0xFFFFFFFF,63,2,256,,1,1,622,{ bonus bDex,2; bonus bMdef,5; bonus2 bSubEle,Ele_Earth,5; .@r = getrefine(); if (.@r>6) { bonus bInt,2; } if (.@r>7) { bonus bVariableCastrate,-3; } if (.@r>8) { bonus bHealPower2,4; } if (.@r>9) { bonus3 bAutoSpell,"BS_HAMMERFALL",5,5; } },{},{} -5746,Rune_Circlet,Rune Circlet,4,20,,100,,12,,1,0x00000080,56,2,256,,100,1,623,{ bonus bStr,1; bonus bInt,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,10; bonus bMatk,5; } },{},{} -5747,Mitra,Mitra,4,20,,100,,12,,1,0x00000100,56,2,256,,100,1,624,{ bonus bVit,1; bonus bInt,1; bonus bMdef,5; bonus bHealPower,5; if(readparam(bInt)>=120){ bonus bMatk,10; } },{},{} -5748,Sniper_Goggle,Sniper Goggles,4,20,,100,,12,,1,0x00000800,56,2,768,,100,1,625,{ bonus bAgi,1; bonus bDex,1; bonus bMdef,5; if(readparam(bAgi)>=120){ bonus bLongAtkRate,4; bonus bAspd,1; } },{},{} -5749,Driver_Band,Driver Band,4,20,,100,,12,,1,0x00000400,56,1,256,,100,1,626,{ bonus bStr,1; bonus bDex,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,10; bonus bCritical,3; } },{},{} -5750,Shadow_Handicraft,Shadow Crown,4,20,,100,,12,,1,0x00020000,56,2,256,,100,1,627,{ bonus bAgi,1; bonus bInt,1; bonus bMdef,5; if(readparam(bAgi)>=120){ bonus bBaseAtk,10; bonus bFlee,3; } },{},{} -5751,Minstrel_Song_Hat,Minstrel Song Hat,4,20,,100,,12,,1,0x00080000,56,1,256,,100,1,628,{ bonus bInt,1; bonus bLuk,1; bonus bMdef,5; bonus bLongAtkRate,5; bonus2 bSkillUseSP,"MI_RUSH_WINDMILL",10; bonus2 bSkillUseSP,"MI_ECHOSONG",10; },{},{} -5752,Midas_Whisper,Midas Whispers,4,20,,100,,12,,1,0x00040000,56,2,256,,100,1,629,{ bonus bStr,1; bonus bDex,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,5; bonus bAspd,1; } },{},{} -5753,Magic_Stone_Hat,Magic Stone Hat,4,20,,100,,12,,1,0x00000200,56,2,256,,100,1,630,{ bonus bInt,1; bonus bDex,1; bonus bMdef,5; if(readparam(bDex)>=120){ bonus bMatk,10; bonus bVariableCastrate,-2; } },{},{} -5754,Blazing_Soul,Burning Spirit,4,20,,100,,12,,1,0x00008000,56,2,256,,100,1,631,{ bonus bStr,1; bonus bVit,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,10; bonus bHit,3; } },{},{} -5755,Silent_Executer,Silent Enforcer,4,20,,100,,12,,0,0x00001000,56,2,513,,100,0,632,{ bonus bAgi,1; bonus bMdef,5; if(readparam(bAgi)>=120){ bonus bBaseAtk,10; bonus bFlee2,5; } },{},{} -5756,Wind_Whisper,Wispers of Wind,4,20,,100,,12,,1,0x00010000,56,2,256,,100,1,633,{ bonus bInt,1; bonus bDex,1; bonus bMdef,5; if(readparam(bInt)>=120){ bonus bMatk,10; bonus bFlee,3; } },{},{} -5757,Schmidt_Helm,Reissue Schmitz Helm,4,20,,100,,12,,1,0x00004000,56,2,768,,100,1,634,{ bonus bVit,2; bonus bInt,1; bonus bMdef,5; if(readparam(bInt)>=120){ bonus bMatk,10; bonus bDef,5; } },{},{} -5758,Dying_Swan,Resting Swan,4,20,,100,,17,,1,0x00080000,56,0,256,,100,1,635,{ bonus bInt,1; bonus bLuk,1; bonus bMdef,5; bonus bLongAtkRate,5; bonus2 bSkillUseSP,"WA_SWING_DANCE",10; bonus2 bSkillUseSP,"WA_SYMPHONY_OF_LOVER",10; },{},{} -5759,Noah_Hat,Noah Hat,4,20,,500,,1,,1,0xFFFFFFFF,63,2,256,,1,1,636,{ bonus bMdef,3; },{},{} -5760,Driver_Band_,Driver Band,4,20,,100,,12,,1,0x00000400,56,0,256,,100,1,637,{ bonus bStr,1; bonus bDex,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,10; bonus bCritical,3; } },{},{} -5761,Sloth_Hat,Sloth Hat,4,20,,800,,3,,0,0xFFFFFFFF,63,2,256,,1,1,638,{ bonus bAgi,2; bonus3 bAutoSpell,"AS_SONICBLOW",5,50; },{},{} -5762,Duneyrr_Helm,Duneyrr Helm,4,20,,100,,5,,0,0xFFFFFFFF,63,2,256,,1,1,639,{ bonus bAllStats,1; bonus bMdef,5; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; bonus2 bSubRace,RC_Brute,2; bonus2 bSubRace,RC_Player_Doram,2; },{},{} -5763,Red_Bunny_Band,Red Bunny Band,4,0,,200,,4,,0,0xFFFFFFFF,63,2,256,,1,1,640,{ bonus bAgi,2; bonus bMdef,3; },{},{} -5764,Love_Rabbit_Hood,Love Rabbit Hood,4,20,,300,,1,,1,0xFFFFFFFF,63,2,769,,10,0,549,{ bonus3 bAutoSpell,"PR_GLORIA",3,((readparam(bAgi)>=80)?30:10); },{},{} -5765,Black_Tail_Ribbon,Black Tail Ribbon,4,20,,100,,0,,1,0xFFFFFFFF,63,2,256,,10,1,642,{ bonus bMdef,5; bonus bLongAtkDef,10; bonus2 bSubEle,Ele_Neutral,5; },{},{} -5766,Amistr_Cap,Amistr Cap,4,20,,500,,4,,1,0xFFFFFFFF,63,2,256,,1,1,643,{ bonus bVit,1+(getrefine()/2); bonus5 bAutoSpell,"KN_PIERCE",5,10,BF_WEAPON,1; },{},{} -5767,Samurai_Mask,Samurai Mask,4,20,,300,,1,,0,0xFFFFFFFF,63,2,1,,50,0,644,{ bonus2 bAddClass,Class_All,1; },{},{} -5768,Sakura_Coronet,Sakura Coronet,4,20,,800,,1,,1,0xFFFFFFFF,63,2,256,,1,1,645,{ bonus bMdef,3; bonus bMaxSP,25; },{},{} -5769,Gold_Angel_Sculpture,Gold Angel Sculpture,4,100,,0,,2,,0,0xFFFFFFFF,63,2,256,,70,0,646,{ skill "RG_GRAFFITI",1; },{},{} -5770,Splash_Hat,Splash Hat,4,20,,100,,3,,1,0xFFFFFFFF,63,2,256,,1,1,649,{ autobonus "{}",3,180000,BF_WEAPON,"{ sc_start SC_WINDWEAPON,180000,1; specialeffect2 EF_ENHANCE; }"; },{},{} -5771,Family_Hat,Family Hat,4,20,,100,,3,,1,0xFFFFFFFF,63,2,256,,1,1,650,{ bonus bDex,1; bonus bMdef,1; bonus bMaxHPrate,2; bonus bMaxSPrate,2; skill "PR_MAGNIFICAT",1; },{},{} -5772,Red_Navy_Hat,Red Navy Hat,4,3000,,500,,1,,0,0xFFFFFFFF,63,2,256,,95,1,651,{ bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; },{},{} -5773,Navy_Beret,Navy Beret,4,3000,,500,,1,,0,0xFFFFFFFF,63,2,256,,95,1,652,{ bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; },{},{} -5774,Red_Pirate_Hat,Red Pirate Hat,4,3000,,500,,1,,0,0xFFFFFFFF,63,2,256,,95,1,496,{ bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; },{},{} -5775,Choco_Donut_In_Mouth,Choco Donut In Mouth,4,20,,50,,1,,0,0xFFFFFFFF,63,2,1,,1,0,653,{ bonus bMaxHP,50; },{},{} -5776,Blazing_Sun,Blazing Sun,4,0,,500,,0,,0,0xFFFFFFFF,63,2,256,,1,1,654,{ bonus2 bVariableCastrate,"MG_FIREBOLT",-5; bonus2 bSkillAtk,"MG_FIREBOLT",5; bonus2 bVariableCastrate,"MG_FIREBALL",-5; bonus2 bSkillAtk,"MG_FIREBALL",5; bonus2 bSkillAtk,"MG_FIREWALL",3; bonus2 bSkillAtk,"WZ_METEOR",3; bonus bUseSPrate,5; },{},{} -5777,Remover_Hat,Remover Hat,4,20,,800,,2,,0,0xFFFFFFFF,63,2,256,,30,0,655,{ bonus bMdef,1; bonus3 bAddMonsterDropItem,713,RC_Formless,200; bonus3 bAddMonsterDropItem,971,RC_Formless,30; bonus3 bAddMonsterDropItem,972,RC_Formless,10; },{},{} -5778,Blue_Arara_Hat,Blue Arara Hat,4,20,,100,,3,,0,0xFFFFFFFF,63,2,256,,1,1,656,{ bonus bStr,2; autobonus "{ bonus bAspdRate,5; }",10,10000,0,"{ specialeffect2 EF_ENHANCE; }"; },{},{} -5779,Drooping_Boto,Drooping Boto,4,20,,100,,3,,0,0xFFFFFFFF,63,2,256,,1,1,657,{ bonus bInt,2; autobonus "{ bonus bMatkRate,3; }",10,10000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }"; },{},{} -5780,Tendrilion_Hat,Tendrilion Hat,4,20,,100,,0,,0,0xFFFFFFFF,63,2,256,,1,1,658,{ skill "WZ_EARTHSPIKE",3; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; },{},{} -5781,Persika,Persika,4,20,,100,,0,,1,0xFFFFFFFF,63,2,256,,0,0,659,{ bonus bFlee,1; bonus bMaxSP,20; },{},{} -5782,Hoplite_Helmet,Hoplite Helmet,4,20,,700,0,4,0,1,0xFFFFFFFF,63,2,769,,1,1,660,{ bonus bMaxHPrate,3; },{},{} -5783,YellowBunny_Hairband,YellowBunny Hairband,4,20,,200,,0,,0,0xFFFFFFFF,63,2,256,,1,1,662,{ bonus bStr,1; bonus bInt,1; bonus bDex,2; },{},{} -5784,PinkBunny_Hairband,PinkBunny Hairband,4,20,,200,,0,,0,0xFFFFFFFF,63,2,256,,1,1,663,{ bonus bStr,1; bonus bInt,2; bonus bDex,1; },{},{} -5785,Green_Bunny_Hairband,Green Bunny Hairband,4,20,,200,,0,,0,0xFFFFFFFF,63,2,256,,1,1,664,{ bonus bStr,2; bonus bInt,1; bonus bDex,1; },{},{} -5786,Ancient_Elven_Ear,Ancient Elven Ear,4,10,,200,,1,,0,0xFFFFFFFF,63,2,512,,1,0,665,{ bonus bLuk,1; bonus bMaxHP,100; bonus bMaxSP,30; },{},{} -5787,Tha_Maero_Mask,Tha Maero Mask,4,20,,100,,0,,0,0xFFFFFFFF,63,2,513,,30,0,666,{ bonus bMdef,2; },{},{} -5788,3D_Glasses,3D Glasses,4,20,,100,,1,,0,0xFFFFFFFF,63,2,512,,1,0,661,{ bonus2 bMagicAddRace,RC_Formless,4; bonus2 bSubEle,Ele_Neutral,5; bonus bUnbreakableHelm; },{},{} -5789,Thanatos_Mal_Mask,Thanatos Mal Mask,4,20,,100,,3,,0,0xFFFFFFFF,63,2,513,,30,0,667,{ bonus bVit,1; },{},{} -5790,Holy_Mom_Love,TM,4,20,,500,,0,,1,0xFFFFFFFF,63,2,768,,45,1,610,{ bonus2 bSubRace,RC_Demon,-5; bonus2 bSubRace,RC_Undead,-5; bonus3 bAutoSpell,"AL_BLESSING",1,20; },{},{} -5791,Tenkaippin_Ramen,Tenkaippin Ramen,4,20,,500,,1,,0,0xFFFFFFFF,63,2,256,,30,0,668,{ bonus bInt,-1; bonus bDex,4; },{},{} -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,,1,0xFFFFFFFF,63,2,512,,1,0,661,{ .@tmp = BaseLevel/30; if(BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Archer||BaseClass==Job_Gunslinger) { bonus bBaseAtk,(3+.@tmp); } else if(BaseClass==Job_Mage||BaseClass==Job_Acolyte||BaseClass==Job_Ninja||BaseClass==Job_Soul_Linker) { bonus bMatk,(3+.@tmp); } else if(BaseClass==Job_Thief) { bonus bFleeRate,(1+.@tmp); } else if(BaseClass==Job_Novice||BaseClass==Job_SuperNovice||BaseClass==Job_Taekwon||BaseClass==Job_Star_Gladiator||BaseClass==Job_Star_Gladiator2) { bonus bMaxHP,(50+BaseLevel); bonus bMaxSP,(50+.@tmp); } },{},{} -5795,Red_Dress_Hat,Bright Red Dress Hat,4,20,,200,,0,,1,0xFFFFFFFF,63,2,256,,1,1,670,{ bonus bMdef,7+(getrefine()/2); },{},{} -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_Human,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_Human,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,{},{},{} -5805,Victorious_Coronet,Victorious Coronet,4,0,,150,,1,,0,0xFFFFFFFF,63,2,256,,70,0,43,{ bonus bMaxHPrate,15; bonus bSPrecovRate,5; },{},{} -5806,Poem_Natalia_Hat,Poet Natalie's Hat,4,20,,300,,5,,0,0xFFFFFFFF,63,2,256,,0,0,67,{},{},{} -5807,October_Fest_Cap,October Fest Cap,4,20,,100,,1,,0,0xFFFFFFFE,63,2,256,,50,1,104,{},{},{} -5808,Diabolus_Helmet,Dark Bacilium,4,20,,250,,5,,1,0x000FDF80,18,2,769,,0,1,364,{ .@r = getrefine(); bonus2 bResEff,Eff_Stone,2000+(.@r*200); bonus2 bResEff,Eff_Freeze,2000+(.@r*200); bonus2 bResEff,Eff_Stun,2000+(.@r*200); },{},{} -5809,Boom_Boom_Hat,Boom Boom Hat,4,0,,100,,6,,0,0xFFFFFFFF,63,2,256,,0,0,216,{ bonus bAllStats,5; bonus bSpeedRate,25; },{},{} -5810,Ph.D_Hat_V,Ph.D Hat V,4,20,,100,,3,,0,0xFFFFFFFE,63,2,256,,0,1,98,{ bonus bInt,5; bonus bVit,3; bonus bDex,3; },{},{} -5811,Santa_Beard,Santa's Beard,4,20,,100,,5,,0,0xFFFFFFFF,63,2,1,,0,0,25,{ bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5; },{},{} -5812,Hat_Of_Expert,Hat Of Expert,4,0,,0,,2,,0,0xFFFFFFFF,63,2,256,,0,1,16,{ bonus3 bAddEffWhenHit,Eff_Bleeding,500,ATF_TARGET|ATF_SELF; bonus3 bAddEffWhenHit,Eff_Silence,500,ATF_TARGET|ATF_SELF; bonus3 bAddEffWhenHit,Eff_Confusion,500,ATF_TARGET|ATF_SELF; bonus3 bAddEffWhenHit,Eff_Curse,500,ATF_TARGET|ATF_SELF; bonus3 bAddEffWhenHit,Eff_Blind,500,ATF_TARGET|ATF_SELF; },{},{} -5813,Red_Ph.D_Hat,Red Ph.D Hat,4,1000,,500,,0,,0,0xFFFFFFFF,63,2,256,,0,1,481,{ bonus bInt,1; },{},{} -5814,Ati_Atihan_Hat3,Ati Atihan Hat3,4,20,,0,,2,,0,0xFFFFFFFF,63,2,769,,20,0,303,{},{},{} -5815,Classic_Hat_J,Classic Hat,4,20,,500,,2,,0,0xFFFFFFFF,63,2,256,,0,1,475,{ bonus bStr,1; bonus2 bSubSize,Size_All,5; },{},{} -5816,Cowboy_Hat_J,Purple Cowboy Hat,4,20,,500,,0,,0,0xFFFFFFFF,63,2,256,,0,1,411,{ bonus bBaseAtk,15; bonus bFlee,-5; },{},{} -5817,Valentine_Pledge,Valentine Pledge,4,20,,0,,3,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bAllStats,2; bonus bMdef,3; bonus bHealPower,10; bonus2 bAddClass,Class_All,3; bonus bMatkRate,3; bonus bFlee,10; bonus bAspdRate,1; },{},{} -5818,Carnival_Hat,Carnival Hat,4,0,,0,,6,,0,0xFFFFFFFF,63,2,256,,0,1,505,{ bonus bAllStats,3; },{},{} -5819,Carnival_Circlet,Carnival Circlet,4,0,,0,,6,,0,0xFFFFFFFF,63,2,256,,0,1,506,{ bonus bAllStats,3; },{},{} -5820,Black_Elven_Ears,Black Elven Ears,4,10,,100,,2,,0,0xFFFFFFFF,63,2,512,,0,0,498,{},{},{} -5821,Gold_Tulip_Hairpin,Gold Tulip Hairpin,4,10,,100,,2,,0,0xFFFFFFFF,63,2,256,,0,1,499,{ bonus2 bExpAddClass,Class_All,5; },{},{} -5822,Love_Chick_Hat,Love Chick Hat,4,10000,,100,,4,,0,0xFFFFFFFF,63,2,256,,0,1,500,{ bonus bLuk,4; bonus bMaxHP,100; bonus bMaxSP,100; bonus2 bSubRace,RC_Brute,7; bonus2 bSubRace,RC_Player_Doram,7; bonus2 bSubRace,RC_DemiHuman,7; bonus2 bSubRace,RC_Player_Human,7; },{},{} -5823,Love_Arrow,Arrow of Love,4,5000,,100,,2,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bDex,5; bonus bAgi,5; },{},{} -5824,Fools_Day_Hat,Fools Day Hat,4,20,,300,,6,,0,0xFFFFFFFF,63,2,256,,30,1,265,{},{},{} -5825,Badge_Of_Order_Grace,Badge Of Order Grace,4,0,,0,,1,,0,0xFFFFFFFF,63,2,136,,0,0,0,{ bonus bMdef,1; bonus2 bAddClass,Class_All,10; bonus bMatkRate,10; bonus bMaxHP,1500; },{},{} -5826,Valkyrie_Helmet,Valkyrie Helmet,4,0,,0,,10,,0,0xFFFFFFFF,63,2,256,,0,0,225,{ bonus bStr,2; bonus bInt,2; bonus bDex,2; bonus bAgi,2; bonus bAspdRate,3; bonus bMdef,5; bonus bCastrate,-3; },{},{} -5827,Book_File_Hat,Book File Hat,4,20,,100,,1,,0,0xFFFFFFFF,63,2,256,,1,1,423,{},{},{} -5828,Honor_Gold_Ring,Honor Gold Ring,4,0,,50,,0,,0,0xFFFFFFFF,63,2,136,,1,0,0,{ bonus bAllStats,1; bonus bMdef,5; },{},{} -5829,Ordinary_Armor,Ordinary Armor,4,0,,0,,0,,0,0xFFFFFFFF,63,2,16,,30,1,0,{},{},{} -5830,Woe_Sahkkat,Woe Sahkkat,4,20,,10,,0,,0,0xFFFFFFFF,63,2,256,,60,1,67,{},{},{} -5831,Woe_Big_Sis_Ribbon,Woe Big Sis Ribbon,4,20,,10,,0,,0,0xFFFFFFFF,63,2,256,,60,1,28,{},{},{} -5832,Woe_Vane_Hairpin,Woe Vane Hairpin,4,20,,10,,0,,0,0xFFFFFFFF,63,2,256,,60,1,313,{},{},{} -5833,Woe_Picnic_Hat,Woe Picnic Hat,4,20,,10,,0,,0,0xFFFFFFFF,63,2,256,,60,1,117,{},{},{} -5834,Woe_Crown,Woe Crown,4,20,,10,,0,,0,0xFFFFFFFF,63,2,256,,60,1,45,{},{},{} -5835,Woe_Tiara,Woe Tiara,4,20,,10,,0,,0,0xFFFFFFFF,63,2,256,,60,1,19,{},{},{} -5836,Woe_Boys_Cap,Woe Boys Cap,4,20,,10,,0,,0,0xFFFFFFFF,63,2,256,,60,1,102,{},{},{} -5837,Woe_Sunglass,Woe Sunglass,4,20,,10,,0,,0,0xFFFFFFFF,63,2,512,,70,0,12,{},{},{} -5838,Woe_Fin_Helm,Woe Fin Helm,4,20,,10,,0,,0,0xFFFFFFFF,63,2,512,,70,0,100,{},{},{} -5839,Woe_Blush,Woe Blush,4,20,,10,,0,,0,0xFFFFFFFF,63,2,512,,70,0,125,{},{},{} -5840,Woe_Elven_Ears,Woe Elven Ears,4,20,,10,,0,,0,0xFFFFFFFF,63,2,512,,70,0,73,{},{},{} -5841,Shaman_Hat_,Shaman Hat,4,20,,100,,1,,1,0xFFFFFFFF,63,2,256,,30,1,596,{ bonus bLuk,2; bonus3 bSubEle,Ele_Neutral,3,BF_MAGIC; bonus3 bSubEle,Ele_Water,3,BF_MAGIC; bonus3 bSubEle,Ele_Earth,3,BF_MAGIC; bonus3 bSubEle,Ele_Fire,3,BF_MAGIC; bonus3 bSubEle,Ele_Wind,3,BF_MAGIC; bonus3 bSubEle,Ele_Poison,3,BF_MAGIC; bonus3 bSubEle,Ele_Holy,3,BF_MAGIC; bonus3 bSubEle,Ele_Dark,3,BF_MAGIC; bonus3 bSubEle,Ele_Ghost,3,BF_MAGIC; bonus3 bSubEle,Ele_Undead,3,BF_MAGIC; },{},{} -5842,Loyal_Ring1,Loyal Ring1,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,1,0,0,{},{},{} -5843,Loyal_Ring2,Loyal Ring2,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,1,0,0,{ bonus bAllStats,2; },{},{} -5844,Loyal_Ring3,Loyal Ring3,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,1,0,0,{ bonus bAllStats,3; },{},{} -5845,Buzzy_Ball_Board,Buzzy Ball Board,4,50,,400,,0,,0,0xFFFFFFFF,63,2,256,,1,1,641,{},{},{} -5846,Buzzy_Ball_Gum,Buzzy Ball Gum,4,50,,100,,1,,0,0xFFFFFFFF,63,2,1,,1,0,572,{ bonus bMdef,5; },{},{} -5847,Fools_Day_hat_,Fools Day Helmet,4,0,,0,,0,,0,0xFFFFFFFF,63,2,256,,1,0,647,{ bonus bInt,5; bonus bVit,-3; },{},{} -5848,Robin_Eyepatch,Robin Eyepatch,4,20,,0,,0,,0,0xFFFFFFFF,63,2,512,,1,0,50,{},{},{} -5849,Doctor_Hairband,Doctor Hairband,4,20,,0,,0,,0,0xFFFFFFFF,63,2,256,,1,0,60,{},{},{} -5850,Golden_Savage_Hat,Golden Savage Hat,4,20,,500,,5,,0,0xFFFFFFFF,63,2,256,,50,1,648,{},{},{} -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){ bonus2 bAddClass,Class_All,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; 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,{ bonus bAllStats,5; bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubRace,RC_Dragon,5; bonus3 bAutoSpellWhenHit,"HP_ASSUMPTIO",5,5; bonus2 bHPLossRate,600,1000; bonus bUnbreakableHelm; },{},{} -5874,Circlet_Of_Kriemhild,Circlet Of Kriemhild,4,20,,600,,7,,1,0x000444A2,63,2,256,,60,1,1056,{ bonus bAllStats,5; bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubRace,RC_Dragon,5; bonus3 bAutoSpellWhenHit,"PR_KYRIE",9,5; bonus2 bHPLossRate,400,1000; bonus bUnbreakableHelm; },{},{} -5875,Diadem_Of_Bruenhild,Diadem Of Bruenhild,4,20,,600,,7,,1,0x000444A2,63,2,256,,60,1,1057,{ bonus bAllStats,5; bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubRace,RC_Dragon,5; bonus3 bAutoSpellWhenHit,"SM_ENDURE",8,5; bonus2 bHPLossRate,400,1000; bonus bUnbreakableHelm; },{},{} -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 bInt,2; 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 bInt,2; bonus bMaxSP,150; },{},{} -5884,Gray_Wizardry_Hat_C,Brown Mage Hat C,4,20,,300,,1,,0,0x00810204,63,2,256,,0,1,284,{ bonus bInt,2; bonus bMaxSP,150; },{},{} -5885,Blue_Wizardry_Hat_C,Blue Mage Hat C,4,20,,300,,1,,0,0x00810204,63,2,256,,0,1,285,{ bonus bInt,2; 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 bInt,2; 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_Human,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,{ bonus bAllStats,5; skill "AL_TELEPORT",1; },{ sc_start SC_SPEEDUP0,INFINITE_TICK,25; },{ sc_end SC_SPEEDUP0; } -5893,RCC2013_2ND_CROWN,RCC2013 2ND CROWN,4,20,,2500,,7,,1,0xFFFFFFFF,63,2,256,,1,0,1107,{ bonus bAllStats,4; skill "AL_TELEPORT",1; },{ sc_start SC_SPEEDUP0,INFINITE_TICK,25; },{ sc_end SC_SPEEDUP0; } -5894,RCC2013_3RD_CROWN,RCC2013 3RD CROWN,4,20,,2500,,7,,1,0xFFFFFFFF,63,2,256,,1,0,1108,{ bonus bAllStats,3; skill "AL_TELEPORT",1; },{ sc_start SC_SPEEDUP0,INFINITE_TICK,25; },{ sc_end SC_SPEEDUP0; } -5895,RCC2013_ANV_Hat,RCC2013 ANV Hat,4,20,,2500,,7,,1,0xFFFFFFFF,63,2,256,,1,0,1109,{ bonus bAllStats,1; bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; },{},{} -5900,Divine_Guard_Hat,Divine Guard Hat,4,0,,200,,10,,1,0x00004000,56,2,256,,100,1,1121,{ .@r = getrefine(); bonus2 bSubSize,Size_All,5; if(.@r>=7) { .@level = getskilllv("AL_HEAL"); bonus3 bAutoSpellWhenHit,"AL_HEAL",(.@level ? .@level : 5),10; } if(.@r>=9) { bonus2 bSkillAtk,"LG_RAYOFGENESIS",20; } },{},{} -5901,Focus_Beret,Focus Beret,4,0,,200,,10,,1,0x00008000,56,2,256,,100,1,1122,{ .@r = getrefine(); bonus4 bAutoSpellOnSkill,"SR_DRAGONCOMBO","SR_FALLENEMPIRE",max(getskilllv("SR_FALLENEMPIRE"),1),100; if(.@r>=7) { autobonus "{ bonus bAspd,2; }",30,5000,0,"{ specialeffect2 EF_ENHANCE; }"; } if(.@r>=9) { bonus2 bSkillAtk,"SR_FALLENEMPIRE",30; } },{},{} -5902,Harvester_Hat,Harvester Hat,4,0,,200,,10,,1,0x00040000,56,2,256,,100,1,1123,{ .@r = getrefine(); bonus2 bAddMonsterDropItem,6211,100; bonus2 bAddMonsterDropItem,6212,100; if(.@r>=7) { bonus2 bAddMonsterDropItem,6210,50; } if(.@r>=9) { bonus2 bSkillAtk,"GN_CARTCANNON",15; } },{},{} -5903,Deadman_Bandana,Deadman Bandana,4,0,,200,,15,,1,0x00810204,63,2,256,,99,1,1124,{ .@r = getrefine(); .@rate = 1; bonus bCritical,.@r*2; bonus bFixedCastrate,-2; bonus3 bAutoSpellWhenHit,"SL_SWOO",getskilllv("SL_SWOO"),(.@rate*10); if (.@r>=7) { bonus bMatk,20; .@rate += 3; } if(.@r>=9) { bonus bVariableCastrate,-20; bonus2 bSkillUseSP,"SL_STUN",5; bonus2 bSkillUseSP,"SL_SMA",5; } },{},{} -5904,Inconspicuous_Hat,Inconspicuous Hat,4,0,,200,,10,,1,0x00020000,56,2,256,,100,1,1125,{ .@r = getrefine(); if (.@r>=9) { .@matk = 5; } bonus bMatkRate,(7+.@matk); if (.@r>=7) { bonus bMatk,(readparam(bInt)/5)*2; } },{},{} -5905,Lyrica_Hat,Lyrica Hat,4,0,,200,,10,,1,0x00080000,56,2,256,,100,1,1126,{ .@r = getrefine(); bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15; if(.@r>=7) { bonus bFixedCastrate,4*(getskilllv("WM_LESSON")); } if(.@r>=9) { bonus2 bSkillUseSP,"WM_SEVERE_RAINSTORM",10; } },{},{} -5906,Oni_Horns_,Oni Horns,4,0,,20,,10,,1,0x00001000,56,2,256,,100,1,1127,{ bonus2 bSkillAtk,"GC_COUNTERSLASH",(10*getskilllv("GC_WEAPONBLOCKING")); .@r = getrefine(); if(.@r > 6){ bonus bAtk,20; bonus bHit,5; } if(.@r > 9){ bonus3 bAutoSpell,"GC_CROSSIMPACT",1,10; } },{},{} -5907,Sea_Captain_Hat,Sea Captain Hat,4,0,,200,,20,,1,0x00000400,56,2,256,,100,1,1128,{ bonus2 bSkillAtk,"NC_AXEBOOMERANG",20; .@dmg = 20; .@r = getrefine(); if (.@r>=7) { .@dmg += getskilllv("BS_WEAPONRESEARCH"); } if (.@r>=9) { .@dmg += getskilllv("NC_TRAININGAXE"); } bonus2 bSkillAtk,"NC_AXETORNADO",.@dmg; },{},{} -5909,C_Valkyrie_Circlet,C Valkyrie Circlet,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,940,{},{},{} -5914,Earmuff_Flowerform,C Flutter Butterfly,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1378,{ hateffect HAT_EF_FLUTTER_BUTTERFLY,true; },{},{ hateffect HAT_EF_FLUTTER_BUTTERFLY,false; } -5917,Yellow_Scarf,Yellow Scarf,4,0,,100,,,,0,0xFFFFFFFF,63,2,1,,90,0,1170,{ bonus bLongAtkDef,3; },{},{} -5918,Gambler_Seal,Gambler Seal,4,0,,500,,,,0,0xFFFFFFFF,63,2,512,,70,0,1202,{ .@dex = readparam(bDex); .@luk = readparam(bLuk); .@critical = 3 + (.@luk / 10); .@critical_dmg = 3 - (.@dex/10) * 2; .@sub_arrowstorm = 10; .@sub_gateofhell = 10; bonus bBaseAtk,(.@luk/10)*2; bonus bMatk,(.@luk / 10) * 2; if (.@luk > 107) { .@critical += 5; .@critical_dmg += 10; } if (.@luk > 119) { .@critical += 10; .@critical_dmg += 17; .@sub_arrowstorm += 30; .@sub_gateofhell += 30; } bonus bCritical,.@critical; bonus bCritAtkRate,.@critical_dmg; bonus2 bSubSkill,"RA_ARROWSTORM",.@sub_arrowstorm; bonus2 bSubSkill,"SR_GATEOFHELL",.@sub_gateofhell; },{},{} -5919,Camellia_Hair_Pin,Camellia Hair Pin,4,0,,1000,,,,1,0xFFFFFFFF,63,2,256,,50,1,1203,{ bonus bMdef,20; bonus3 bAutoSpell,"AL_PNEUMA",1,30+getrefine()*5; hateffect(HAT_EF_CAMELLIA_HAIR_PIN,true); /* CONFIRM The Rate*/ },{},{ hateffect(HAT_EF_CAMELLIA_HAIR_PIN,false); } -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); },{},{} -5933,Crow_Tengu_Mask,Crow Tengu Mask,4,20,,300,,0,,0,0xFFFFFFFF,63,2,512,,80,0,1287,{ bonus2 bAddSize,Size_All,1; bonus bLongAtkRate,2; if(readparam(bStr)>=108) { bonus2 bAddSize,Size_All,1; bonus bLongAtkRate,2; } if(readparam(bStr)>=120) { bonus2 bAddSize,Size_All,2; bonus bLongAtkRate,3; } },{},{} -5937,Flying_Helmet,Flying Helmet,4,1,,300,,5,,1,0xFFFFFFFF,63,2,256,,20,1,820,{ bonus bMdef,5; bonus bHPGainValue,100; bonus2 bSPGainRace,RC_Dragon,5; .@r = getrefine(); if (.@r>=5) { bonus2 bSubRace,RC_Dragon,5; } if (.@r>=7) { bonus2 bSubRace,RC_Dragon,5; } },{},{} -5938,Octopus_Hat_,Octopus Hat,4,20,,880,,8,,1,0xFFFFFFFF,63,2,256,,60,1,538,{ bonus bMdef,8; bonus bUnbreakableHelm,1; bonus2 bAddItemHealRate,579,50; bonus2 bAddItemHealRate,544,125; bonus2 bAddItemHealRate,551,125; .@r = getrefine(); if (.@r>=5) { bonus2 bAddItemHealRate,579,50; bonus2 bAddItemHealRate,544,125; bonus2 bAddItemHealRate,551,125; } if (.@r>=6) { bonus2 bAddItemHealRate,579,50; bonus2 bAddItemHealRate,544,125; bonus2 bAddItemHealRate,551,125; } if (.@r>=7) { bonus2 bAddItemHealRate,579,50; bonus2 bAddItemHealRate,544,125; bonus2 bAddItemHealRate,551,125; } },{},{} -5943,Owlviscount_Silk_Hat,Owl Viscount Silk Hat,4,0,,500,,15,,1,0xFFFFFFFF,63,2,256,,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; }"; },{},{} -5945,Well_Chewed_Pencil,Well-Chewed Pencil,4,20,,300,,0,,0,0xFFFFFFFF,63,2,1,,30,0,931,{ bonus bStr,1; autobonus "{ bonus bAtkEle,Ele_Fire; }",50,60000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; /* Unknow rate and specialeffect */ },{},{} -5965,_Riot_Chip,Riot Chip,4,0,,300,,,,1,0xFFFFFFFF,63,2,256,,100,1,1201,{ bonus bFixedCastrate,-50; .@r = getrefine(); bonus2 bAddClass,Class_All,.@r; bonus2 bMagicAddClass,Class_All,.@r; },{},{} -5966,KarduiEar,KarduiEar,4,0,,300,,,,0,0xFFFFFFFF,63,2,512,,70,0,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,FlyingGalapago,Flying Galapago,4,0,,500,,,,0,0xFFFFFFFF,63,2,1,,110,0,1358,{ set .@bblvl,max(getskilllv("HT_BLITZBEAT"),1); set .@luk,min(readparam(bLuk),120); bonus bAgi,1; bonus3 bAutoSpell,"HT_BLITZBEAT",.@bblvl,50 + (.@luk / 3) + (.@bblvl * 2); bonus2 bSkillAtk,"HT_BLITZBEAT",getskilllv("HT_STEELCROW") * 40; },{},{} -5968,DVAngelNurseCap,DVAngelNurseCap,4,0,,500,,10,,1,0xFFFFFFFF,63,2,256,,50,1,1359,{ if (BaseClass == Job_Acolyte) bonus bHealPower,3; bonus bNoCastCancel; .@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,,100,1,1360,{ bonus bStr,5; .@r = getrefine(); bonus2 bAddClass,Class_All,7+(.@r > 8 ? 4 : (.@r > 6 ? 3 : (.@r > 4 ? 2 : 0))); bonus bNoSizeFix; },{},{} -5971,Moon_Eyepatch,Moon Eyepatch,4,0,,100,,,,1,0xFFFFFFFF,63,2,512,,10,0,1370,{ bonus2 bSubEle,Ele_Water,5; },{},{} -5972,Chatty_Parrot,Chatty Parrot,4,0,,100,,,,0,0xFFFFFFFF,63,2,1,,80,0,1116,{ bonus bMatkRate,BaseLevel/50; bonus bVariableCast,-readparam(bInt)/30; },{},{} -5973,Ancient_Elven_Ear_J,Ancient Elven Ear J,4,0,,200,,,,0,0xFFFFFFFF,63,2,512,,70,0,665,{ bonus bLuk,10; bonus bMdef,10; bonus bFlee2,2; },{},{} -5978,Syringe_Toy,Toy Syringe,4,0,,100,,3,,0,0xFFFFFFFF,63,2,1,,70,0,842,{ bonus bMdef,3; bonus2 bAddItemHealRate,545,150; bonus2 bAddItemHealRate,546,150; bonus2 bAddItemHealRate,547,150; },{},{} -5979,C_Angel_Fluttering,C Angel Fluttering,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1380,{ hateffect HAT_EF_ANGEL_FLUTTERING,true; },{},{ hateffect HAT_EF_ANGEL_FLUTTERING,false; } -5980,C_Classical_Fhat,C Classical Fhat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1381,{},{},{} -5985,Noble_Mask,Noble Mask,4,0,,200,,,,0,0xFFFFFFFF,63,2,512,,30,1,1409,{ bonus2 bSkillAtk,"PA_SACRIFICE",BaseLevel*2; bonus2 bSkillVariableCast,"PA_PRESSURE",-2000; bonus2 bSkillVariableCast,"CR_DEVOTION",-2000; if (BaseLevel > 149) { bonus bMaxHPrate,3; bonus bAspdRate,3; } else if (BaseLevel > 99) { bonus bMaxHPrate,2; bonus bAspdRate,2; } else { bonus bMaxHPrate,1; bonus bAspdRate,1; } },{},{} -//=================================================================== -// More Etc Items -//=================================================================== -6000,Dark_Ashes,Ashes of Darkness,3,0,,0,,,,,,,,,,,,,{},{},{} -6001,Essence_Of_Fire,Essence of Fire,3,0,,10,,,,,,,,,,,,,{},{},{} -6002,Token_Of_Apostle,Token of Apostle,3,0,,10,,,,,,,,,,,,,{},{},{} -6003,Soul_Pendant,Pendant of Spirit,3,0,,10,,,,,,,,,,,,,{},{},{} -6004,Bapho_Doll,Cursed Baphomet Doll,3,0,,10,,,,,,,,,,,,,{},{},{} -6005,New_Year_Rice_Cake,New Year Rice Cake,3,0,,10,,,,,,,,,,,,,{},{},{} -6006,Rice_Cake_Delivery_Box,Rice Cake Delivery Box,3,0,,10,,,,,,,,,,,,,{},{},{} -6007,New_Year_Rice_Cake_Soup,New Year Rice Cake Soup,3,0,,10,,,,,,,,,,,,,{},{},{} -6008,Wood,Wood,3,0,,10,,,,,,,,,,,,,{},{},{} -6009,Large_Magical_Fan,Big Fan Of Magic,3,0,,0,,,,,,,,,,,,,{},{},{} -6010,Pickaxe,Hoe,3,0,,10,,,,,,,,,,,,,{},{},{} -6011,Blue_Card_B,Blue B Card,3,0,,10,,,,,,,,,,,,,{},{},{} -6012,Blue_Card_C,Blue C Card,3,0,,10,,,,,,,,,,,,,{},{},{} -6013,Blue_Card_J,Blue J Card,3,0,,10,,,,,,,,,,,,,{},{},{} -6015,Blue_Card_M,Blue M Card,3,0,,10,,,,,,,,,,,,,{},{},{} -6016,Blue_Card_Q,Blue Q Card,3,0,,10,,,,,,,,,,,,,{},{},{} -6017,Blue_Card_T,Blue T Card,3,0,,10,,,,,,,,,,,,,{},{},{} -6018,Blue_Card_V,Blue V Card,3,0,,10,,,,,,,,,,,,,{},{},{} -6019,Blue_Card_Z,Blue Z Card,3,0,,10,,,,,,,,,,,,,{},{},{} -6020,Fur,Fur,3,704,,10,,,,,,,,,,,,,{},{},{} -6021,Peaked_Hat,Peaked Hat,3,433,,10,,,,,,,,,,,,,{},{},{} -6022,Hard_Skin,Hard Skin,3,884,,10,,,,,,,,,,,,,{},{},{} -6023,Mystic_Horn,Mystic Horn,3,1000,,10,,,,,,,,,,,,,{},{},{} -6024,17Carat_Dia,17Carat Diamond,3,6000000,,10,,,,,,,,,,,,,{},{},{} -6025,Towel_Of_Memory,Towel of Memory,3,0,,0,,,,,,,,,,,,,{},{},{} -6026,Marriage_Covenant,Written Oath Of Marriage,3,0,,10,,,,,,,,,,,,,{},{},{} -6027,Crystal_Of_Feardoom,Crystal Of Feardom,3,0,,0,,,,,,,,,,,,,{},{},{} -6028,Seal_Scroll,Sealed Scroll,3,0,,0,,,,,,,,,,,,,{},{},{} -6029,Morocc_Tracing_Log,Morocc Tracing Log,3,0,,0,,,,,,,,,,,,,{},{},{} -6030,Glitering_PaperA,Glittering Paper,3,0,,10,,,,,,,,,,,,,{},{},{} -6031,Glitering_PaperB,Glittering Paper,3,0,,10,,,,,,,,,,,,,{},{},{} -6032,Horn_Of_Hilsrion,Horn of Hillslion,3,500,,10,,,,,,,,,,,,,{},{},{} -6033,Horn_Of_Tendrilion,Horn of Tendrilion,3,500,,10,,,,,,,,,,,,,{},{},{} -6034,Weird_Part,Weird Part,3,0,,0,,,,,,,,,,,,,{},{},{} -6035,Decaying_Stem,Decaying Stem,3,0,,0,,,,,,,,,,,,,{},{},{} -6036,Invite_To_Meeting,Meeting Invitation,3,0,,10,,,,,,,,,,,,,{},{},{} -6037,Rough_File,Messy File,3,0,,0,,,,,,,,,,,,,{},{},{} -6038,Neat_Report,Neat Report,3,0,,10,,,,,,,,,,,,,{},{},{} -6039,Piece_Of_Fish,Piece of Fish,3,0,,10,,,,,,,,,,,,,{},{},{} -6040,Some_Of_Report,Part of a Report,3,0,,0,,,,,,,,,,,,,{},{},{} -6041,Strong_Bine,Strong Vine,3,30,,50,,,,,,,,,,,,,{},{},{} -6042,Ordinary_Branch,Ordinary Branch,3,0,,10,,,,,,,,,,,,,{},{},{} -6043,Letter_From_Lugen,Letter from Lugen,3,0,,10,,,,,,,,,,,,,{},{},{} -6044,Letter_From_Otto,Letter from Otto,3,0,,10,,,,,,,,,,,,,{},{},{} -6045,Supply_Box,Supply Box,3,0,,0,,,,,,,,,,,,,{},{},{} -6046,Clothing_Dye_Coupon,Clothing Dye Coupon,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -6047,Clothing_Dye_Coupon_II,Clothing Dye Coupon II,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -6048,Unidentified_Mineral,Unidentified Mineral,3,0,,10,,,,,,,,,,,,,{},{},{} -6049,Marlin,Marlin,3,0,,10,,,,,,,,,,,,,{},{},{} -6050,Mercenary_Contract,Mercenary Contract,3,0,,10,,,,,,,,,,,,,{},{},{} -6051,Gray_Hollow,Gray Hollow,3,0,,10,,,,,,,,,,,,,{},{},{} -6052,Ornamental_Hairpin,Ornament Hairpin,3,1,,0,,,,,,,,,,,,,{},{},{} -6053,Yuanbao,Circle Step,3,100,,100,,,,,,,,,,,,,{},{},{} -6054,Blue_Card_6,Number 6 Card,3,0,,10,,,,,,,,,,,,,{},{},{} -6055,Blue_Card_Annyver,Character Week Card,3,0,,10,,,,,,,,,,,,,{},{},{} -6056,Blue_Card_Sary,Character Year Card,3,0,,10,,,,,,,,,,,,,{},{},{} -6057,Blue_Card_E,Character Lee Card,3,0,,10,,,,,,,,,,,,,{},{},{} -6058,Blue_Card_Ven,Character Ben Card,3,0,,10,,,,,,,,,,,,,{},{},{} -6059,Blue_Card_Nt,Character Project Card,3,0,,10,,,,,,,,,,,,,{},{},{} -6060,Moon_Admin_Ticket,Month Viewing Ticket,3,10,,10,,,,,,,,,,,,,{},{},{} -6061,Plantain,Blood Beginner,3,100,,50,,,,,,,,,,,,,{},{},{} -6062,Moon_Cake15,Letter Moon Cake,3,10,,10,,,,,,,,,,,,,{},{},{} -6063,Moon_Cake16,Letter Moon Cake,3,10,,10,,,,,,,,,,,,,{},{},{} -6064,Moon_Cake17,Letter Moon Cake,3,10,,10,,,,,,,,,,,,,{},{},{} -6065,Moon_Cake18,Letter Moon Cake,3,10,,10,,,,,,,,,,,,,{},{},{} -6066,Moon_Cake19,Letter Moon Cake,3,10,,10,,,,,,,,,,,,,{},{},{} -6067,Moon_Cake20,Letter Moon Cake,3,10,,10,,,,,,,,,,,,,{},{},{} -6068,Rabbit_Skin,Leather Rabbit,3,10,,10,,,,,,,,,,,,,{},{},{} -6069,ABUNDANCE,Abundance,3,10,,10,,,,,,,,,,,,,{},{},{} -6070,Shaman's_Old_Paper,Shaman's Document,3,0,,10,,,,,,,,,,,,,{},{},{} -6071,Broken_Sword,Broken Sword,3,0,,10,,,,,,,,,,,,,{},{},{} -6072,Wing_Of_Bizofnil,Bijofnil Feather,3,0,,10,,,,,,,,,,,,,{},{},{} -6073,Dragon's_Mane,Dragon's Mane,3,0,,0,,,,,,,,,,,,,{},{},{} -6074,Bazett's_Order,Bazett's Order,3,0,,0,,,,,,,,,,,,,{},{},{} -6075,Crystalized_Teardrop,Crystalized Teardrop,3,0,,0,,,,,,,,,,,,,{},{},{} -6076,Portable_Toolbox,Portable Toolbox,3,0,,0,,,,,,,,,,,,,{},{},{} -6077,Rough_Mineral,Rough Mineral,3,0,,0,,,,,,,,,,,,,{},{},{} -6078,Stone_Fragments,Stone Fragment,3,0,,0,,,,,,,,,,,,,{},{},{} -6079,Flower_Of_Alfheim,Flower Of Alfheim,3,0,,0,,,,,,,,,,,,,{},{},{} -6080,Manuk_Coin,Manuk Coin,3,0,,0,,,,,,,,,,,,,{},{},{} -6081,Splendide_Coin,Splendide Coin,3,0,,0,,,,,,,,,,,,,{},{},{} -6082,Spirit_Of_Alfheim,Spirit Of Alfheim,3,0,,0,,,,,,,,,,,,,{},{},{} -6083,Dolly_Capsule,Capsule Dolls,3,0,,10,,,,,,,,,,,,,{},{},{} -6084,Bradium_Fragments,Bradium Fragments,3,0,,0,,,,,,,,,,,,,{},{},{} -6085,Shaggy_Muffler,Shaggy Muffler,3,0,,0,,,,,,,,,,,,,{},{},{} -6086,Withered_Flower,Withered Flower,3,890,,10,,,,,,,,,,,,,{},{},{} -6087,Crystal_Of_Soul_01,Spiritual Crystal,3,1050,,10,,,,,,,,,,,,,{},{},{} -6088,Crystal_Of_Soul_02,Spiritual Crystal,3,1050,,10,,,,,,,,,,,,,{},{},{} -6089,Piece_Of_Darkness,Dark Piece,3,1000,,10,,,,,,,,,,,,,{},{},{} -6090,Purified_Bradium,Refined Bradium,3,1100,,50,,,,,,,,,,,,,{},{},{} -6091,Dark_Red_Scale,Darkred Scale Piece,3,200000,,10,,,,,,,,,,,,,{},{},{} -6092,Singing_Crystal_Piece,Piece Of Singing Crystal,3,0,,10,,,,,,,,,,,,,{},{},{} -6093,Egg_Of_Draco,Draco's Egg,3,0,,0,,,,,,,,,,,,,{},{},{} -6094,Traditional_Cookie,Traditional Sweets,3,20,,10,,,,,,,,,,,,,{},{},{} -6095,Flavored_Alcohol,Flavored Alcohol,3,1000,,10,,,,,,,,,,,,,{},{},{} -6096,Fish_With_Blue_Back,Fish With Blue Back,3,20,,10,,,,,,,,,,,,,{},{},{} -6097,Pumpkin_Pie_,Pumpkin Pie,3,1000,,10,,,,,,,,,,,,,{},{},{} -6098,Small_Snow_Flower,Small Snow Flower,3,1000,,10,,,,,,,,,,,,,{},{},{} -6099,Grilled_Rice_Cake,Grilled Rice Cake,3,20,,10,,,,,,,,,,,,,{},{},{} -6100,Damp_Darkness,Damp Darkness,3,1000,,10,,,,,,,,,,,,,{},{},{} -6101,Attendance_Card,Attendance Card,3,0,,0,,,,,,,,,,,,,{},{},{} -6102,Report_On_Splendide,Report On Splendide,3,0,,0,,,,,,,,,,,,,{},{},{} -6103,Report_On_Manuk,Report On Manuk,3,0,,0,,,,,,,,,,,,,{},{},{} -6104,Big_Cell,Big Cell,3,1000,,10,,,,,,,,,,,,,{},{},{} -6105,Morning_Dew,Morning Dew,3,20,,10,,,,,,,,,,,,,{},{},{} -6106,Well_Ripened_Berry,Well Ripened Berry,3,20,,10,,,,,,,,,,,,,{},{},{} -6107,Sunset_On_The_Rock,Sunset On The Rock,3,1000,,10,,,,,,,,,,,,,{},{},{} -6108,Apple_Pudding,Apple Pudding,3,1000,,10,,,,,,,,,,,,,{},{},{} -6109,Plant_Neutrient,Plant Neutrient,3,20,,10,,,,,,,,,,,,,{},{},{} -6110,Vital_Flower,Vital Flower,3,1000,,10,,,,,,,,,,,,,{},{},{} -6111,Mystic_Stone,Mystic Stone,3,1000,,10,,,,,,,,,,,,,{},{},{} -6112,Fresh_Plant,Fresh Plant,3,1000,,10,,,,,,,,,,,,,{},{},{} -6113,Vital_Flower_,Vital Flower,3,1000,,10,,,,,,,,,,,,,{},{},{} -6114,Flame_Gemstone,Flame Gemstone,3,1000,,10,,,,,,,,,,,,,{},{},{} -6115,Bun_,Bun,3,1000,,10,,,,,,,,,,,,,{},{},{} -6116,Succu_Pet_Coupon,Succubus Pet Exchange Coupon,3,0,,0,,,,,,,,,,,,,{},{},{} -6117,Imp_Pet_Coupon,Imp Pet Exchange Coupon,3,0,,0,,,,,,,,,,,,,{},{},{} -6118,Chung_E_Pet_Coupon,Chung E Exchange Coupon,3,0,,0,,,,,,,,,,,,,{},{},{} -6119,Natural_Leather,Cow Leather,3,0,,0,,,,,,,,,,,,,{},{},{} -6120,Face_Paint,Face Paint,3,120,,20,,,,,,,,,,,,,{},{},{} -6121,Makeover_Brush,Makeover Brush,3,10,,0,,,,,,,,,,,,,{},{},{} -6122,Paint_Brush,Paint Brush,3,10,,0,,,,,,,,,,,,,{},{},{} -6123,Surface_Paint,Surface Paint,3,200,,30,,,,,,,,,,,,,{},{},{} -6124,Wolf's_Flute,Wolf Flute,3,10,,0,,,,,,,,,,,,,{},{},{} -6125,Lucky_Box,Spring Time Box,3,10,,0,,,,,,,,,,,,,{},{},{} -6126,Happy_Box,Summer Happy Box,3,10,,0,,,,,,,,,,,,,{},{},{} -6127,Purification_Stone,Purification Stone,3,0,,0,,,,,,,,,,,,,{},{},{} -6128,Guillotine_Antidote,Antidote,3,0,,0,,,,,,,,,,,,,{},{},{} -6129,Ticket_Nightmare,Nightmare Terror Exchange Coupon,3,0,,10,,,,,,,,,,,,,{},{},{} -6130,Ticket_Loli_Ruri,Loli Ruri Exchange Coupon,3,0,,10,,,,,,,,,,,,,{},{},{} -6131,Ticket_Goblin_Leader,Goblin Leader Exchange Coupon,3,0,,10,,,,,,,,,,,,,{},{},{} -6132,Ticket_Incubus,Incubus Exchange Coupon,3,0,,10,,,,,,,,,,,,,{},{},{} -6133,Ticket_Miyabi_Ningyo,Miyabi Ningyo Exchange Coupon,3,0,,10,,,,,,,,,,,,,{},{},{} -6134,Ticket_Whisper,Giant Whisper Exchange Coupon,3,0,,10,,,,,,,,,,,,,{},{},{} -6135,Ticket_Wicked_Nymph,Evil Nymph Exchange Coupon,3,0,,10,,,,,,,,,,,,,{},{},{} -6136,Ticket_Medusa,Medusa Exchange Coupon,3,0,,10,,,,,,,,,,,,,{},{},{} -6137,Ticket_Stoneshooter,Stone Shooter Exchange Coupon,3,0,,10,,,,,,,,,,,,,{},{},{} -6138,Ticket_Marionette,Marionette Exchange Coupon,3,0,,10,,,,,,,,,,,,,{},{},{} -6139,Ticket_Leafcat,Leaf Cat Exchange Coupon,3,0,,10,,,,,,,,,,,,,{},{},{} -6140,Ticket_Dullahan,Dullahan Exchange Coupon,3,0,,10,,,,,,,,,,,,,{},{},{} -6141,Ticket_Shinobi,Shinobi Exchange Coupon,3,0,,10,,,,,,,,,,,,,{},{},{} -6142,Ticket_Golem,Golem Exchange Coupon,3,0,,10,,,,,,,,,,,,,{},{},{} -6143,Ticket_Civil_Servant,Civil Servant Exchange Coupon,3,0,,10,,,,,,,,,,,,,{},{},{} -6144,Heartbroken_Tears,Regrettable Tears,3,1000,,2,,,,,,,,,,,,,{},{},{} -6145,Vulcan_Bullet,Vulcan Bullet,3,10,,2,,,,,,,,,,,,,{},{},{} -6146,Magic_Gear_Fuel,Magic Gear Fuel,3,300,,30,,,,,,,,,,,,,{},{},{} -6147,Liquid_Condensed_Bullet,Liquid Condensed Bullet,3,100,,3,,,,,,,,,,,,,{},{},{} -6148,Chocolate_Of_Eternity,Eternity Of Chocolate,3,0,,0,,,,,,,,,,,,,{},{},{} -6149,Plain_Chocolate,Simple Chocolate,3,0,,0,,,,,,,,,,,,,{},{},{} -6150,Key_Of_The_Mansion,Key of The Mansion,3,0,,0,,,,,,,,,,,,,{},{},{} -6151,Peice_Of_Great_Bradium,Giant Bradium Fragment,3,0,,0,,,,,,,,,,,,,{},{},{} -6152,Glittering_Crystal,Glittering Crystal,3,0,,0,,,,,,,,,,,,,{},{},{} -6153,Special_Exchange_Coupon,Special Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6154,Broken_Horn_Pipe,Broken Horn Pipe,3,0,,10,,,,,,,,,,,,,{},{},{} -6155,Coke_Membership_Card,Member Card,3,0,,0,,,,,,,,,,,,,{},{},{} -6156,Approval_Report,Approval Report,3,0,,10,,,,,,,,,,,,,{},{},{} -6157,Poring_Ticket,Poring Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6158,Drops_Ticket,Drops Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6159,Poporing_Ticket,Poporing Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6160,Lunatic_Ticket,Lunatic Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6161,Picky_Ticket,Picky Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6162,Pecopeco_Ticket,Peco Peco Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6163,Savage_Baby_Ticket,Savage Babe Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6164,Spore_Ticket,Spore Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6165,Poison_Spore_Ticket,Poison Spore Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6166,Chonchon_Ticket,Chonchon Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6167,Steel_Chonchon_Ticket,Steel Chonchon Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6168,Petit_Ticket,Sky Petite Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6169,Deviruchi_Ticket,Deviruchi Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6170,Isis_Ticket,Isis Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6171,Smokie_Ticket,Smokie Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6172,Dokebi_Ticket,Dokebi Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6173,Desert_Wolf_B_Ticket,Baby Desert Wolf Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6174,Yoyo_Ticket,Yoyo Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6175,Sohee_Ticket,Sohee Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6176,Rocker_Ticket,Rocker Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6177,Hunter_Fly_Ticket,Hunter Fly Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6178,Orc_Warrior_Ticket,Orc Warrior Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6179,Bapho_Jr_Ticket,Bapho Jr. Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6180,Munak_Ticket,Munak Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6181,Bongun_Ticket,Bongun Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6182,Goblin_Ticket,Christmas Goblin Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6183,Hardtack_Ticket,Rice Cake Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6184,Zherlthsh_Ticket,Zherlthsh Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6185,Alice_Ticket,Alice Exchange Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6186,Monkey_Wrench,Monkey Wrench,3,500,,10,,,,,,,,,,,,,{},{},{} -6187,Blank_Card,Blank Card,3,20,,10,,,,,,,,,,,,,{},{},{} -6188,Slot_Coupon,Slotting Advertisement,3,20,,10,,,,,,,,,,,,,{},{},{} -6189,Magic_Book_FB,Old Spell Book (Fire Bolt),3,0,,0,,,,,,,,,,,,,{},{},{} -6190,Magic_Book_CB,Old Spell Book (Cold Bolt),3,0,,0,,,,,,,,,,,,,{},{},{} -6191,Magic_Book_LB,Old Spell Book (Lightening Bolt),3,0,,0,,,,,,,,,,,,,{},{},{} -6192,Magic_Book_SG,Old Spell Book (Storm Gust),3,0,,0,,,,,,,,,,,,,{},{},{} -6193,Magic_Book_LOV,Old Spell Book (Lord Of Vermilion),3,0,,0,,,,,,,,,,,,,{},{},{} -6194,Magic_Book_MS,Old Spell Book (Meteor Storm),3,0,,0,,,,,,,,,,,,,{},{},{} -6195,Magic_Book_CM,Old Spell Book (Comet),3,0,,0,,,,,,,,,,,,,{},{},{} -6196,Magic_Book_TV,Old Spell Book (Tetra Vortex),3,0,,0,,,,,,,,,,,,,{},{},{} -6197,Magic_Book_TS,Old Spell Book (Thunder Storm),3,0,,0,,,,,,,,,,,,,{},{},{} -6198,Magic_Book_JT,Old Spell Book (Jupitel Thunder),3,0,,0,,,,,,,,,,,,,{},{},{} -6199,Magic_Book_WB,Old Spell Book (Water Ball),3,0,,0,,,,,,,,,,,,,{},{},{} -6200,Magic_Book_HD,Old Spell Book (Heaven's Drive),3,0,,0,,,,,,,,,,,,,{},{},{} -6201,Magic_Book_ES,Old Spell Book (Earth Spike),3,0,,0,,,,,,,,,,,,,{},{},{} -6202,Magic_Book_ES_,Old Spell Book (Earth Strain),3,0,,0,,,,,,,,,,,,,{},{},{} -6203,Magic_Book_CL,Old Spell Book (Chain Lightning),3,0,,0,,,,,,,,,,,,,{},{},{} -6204,Magic_Book_CR,Old Spell Book (Crimson Rock),3,0,,0,,,,,,,,,,,,,{},{},{} -6205,Magic_Book_DL,Old Spell Book (Drain Life),3,0,,0,,,,,,,,,,,,,{},{},{} -6206,I_Love_You,I Love You,3,0,,0,,,,,,,,,,,,,{},{},{} -6207,Thank_You,Thank You,3,0,,0,,,,,,,,,,,,,{},{},{} -6208,I_Respect_You,I Respect You,3,0,,0,,,,,,,,,,,,,{},{},{} -6209,Glory_Of_Knights,Knight's Honor,3,0,,0,,,,,,,,,,,,,{},{},{} -6210,Seed_Of_Horny_Plant,Seed Of Thorny Plant,3,600,,1,,,,,,,,,,,,,{},{},{} -6211,Bloodsuck_Plant_Seed,Bloodsuck Plant Seed,3,800,,1,,,,,,,,,,,,,{},{},{} -6212,Bomb_Mushroom_Spore,Bomb Mushroom Spore,3,1000,,1,,,,,,,,,,,,,{},{},{} -6213,Explosive_Powder,Explosive Powder,3,500,,1,,,,,,,,,,,,,{},{},{} -6214,Smoke_Powder,Smoke Powder,3,500,,1,,,,,,,,,,,,,{},{},{} -6215,Tear_Gas,Tear Gas,3,500,,1,,,,,,,,,,,,,{},{},{} -6216,Oil_Bottle,Oil Bottle,3,1000,,1,,,,,,,,,,,,,{},{},{} -6217,Mandragora_Flowerpot,Mandragora Flowerpot,3,2000,,1,,,,,,,,,,,,,{},{},{} -6218,Disin_Delivery_Box,Delivery Daishin Box,3,0,,0,,,,,,,,,,,,,{},{},{} -6219,Para_Team_Mark,Eden Group Mark,3,0,,0,,,,,,,,,,,,,{},{},{} -6220,Mysterious_Dyestuff,Mysterious Dyestuff,3,0,,10,,,,,,,,,,,,,{},{},{} -6221,Mystic_Leaf_Cat_Ball,Mystic Leaf Cat Ball,3,0,,0,,,,,,,,,,,,,{},{},{} -6222,Shining_Beads,Shining Beads,3,20,,0,,,,,,,,,,,,,{},{},{} -6223,Carnium,Carnium,3,2000,,150,,,,,,,,,,,,,{},{},{} -6224,Bradium,Bradium,3,2000,,150,,,,,,,,,,,,,{},{},{} -6225,HD_Carnium,HD Carnium,3,0,,10,,,,,,,,,,,,,{},{},{} -6226,HD_Bradium,HD Bradium,3,0,,10,,,,,,,,,,,,,{},{},{} -6228,Guarantee_Weapon_9Up,+9 Weapon Refine Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6229,Guarantee_Weapon_8Up,+8 Weapon Refine Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6230,Guarantee_Weapon_7Up,+7 Weapon Refine Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6231,Guarantee_Weapon_6Up,+6 Weapon Refine Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6232,Guarantee_Armor_9Up,+9 Armor Refine Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6233,Guarantee_Armor_8Up,+8 Armor Refine Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6234,Guarantee_Armor_7Up,+7 Armor Refine Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6235,Guarantee_Armor_6Up,+6 Armor Refine Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6236,Blue_Card_7,Blue Card 7,3,0,,0,,,,,,,,,,,,,{},{},{} -6237,Guarana_Fruit,Guarana Fruit,3,0,,0,,,,,,,,,,,,,{},{},{} -6238,Guarantee_Weapon_11Up,+11 Weapon Refine Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6239,Guarantee_Armor_11Up,+11 Armor Refine Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6240,HD_Oridecon,HD Oridecon,3,20,,10,,,,,,,,,,,,,{},{},{} -6241,HD_Elunium,HD Elunium,3,20,,10,,,,,,,,,,,,,{},{},{} -6242,Midgard_Coin,Midgard Coin,3,20,,10,,,,,,,,,,,,,{},{},{} -6243,Exchange_Coupon,Exchange Coupon,3,0,,0,,,,,,,,,,,,,{},{},{} -6244,Gun_Powder,Gun Powder,3,10,,1,,,,,,,,,,,,,{},{},{} -6245,Black_Powder,Black Powder,3,100,,1,,,,,,,,,,,,,{},{},{} -6246,Yellow_Powder,Yellow Powder,3,100,,1,,,,,,,,,,,,,{},{},{} -6247,White_Powder,White Powder,3,100,,1,,,,,,,,,,,,,{},{},{} -6248,Melange_Pot,Melange Pot,3,600,,10,,,,,,,,,,,,,{},{},{} -6249,Savage_Meat,Savage Meat,3,100,,10,,,,,,,,,,,,,{},{},{} -6250,Cooking_Skewer,Cooking Skewer,3,300,,10,,,,,,,,,,,,,{},{},{} -6251,Black_Charcoal,Black Charcoal,3,300,,10,,,,,,,,,,,,,{},{},{} -6252,Wolf_Blood,Blood Of Wolf,3,100,,10,,,,,,,,,,,,,{},{},{} -6253,Cold_Ice,Cold Ice,3,100,,10,,,,,,,,,,,,,{},{},{} -6254,Beef_Head_Meat,Beef Head,3,100,,10,,,,,,,,,,,,,{},{},{} -6255,Large_Cookpot,Large Cookpot,3,500,,10,,,,,,,,,,,,,{},{},{} -6256,Ice_Fragment,Ice Piece,3,100,,10,,,,,,,,,,,,,{},{},{} -6257,Ice_Crystal,Ice Crystal,3,100,,10,,,,,,,,,,,,,{},{},{} -6258,Comodo_Tropic_Fruit,Comodo Tropical Fruit,3,800,,10,,,,,,,,,,,,,{},{},{} -6259,Drocera_Tentacle,Drosera Tentacle,3,100,,10,,,,,,,,,,,,,{},{},{} -6260,Petti_Tail,Petite's Tail,3,100,,10,,,,,,,,,,,,,{},{},{} -6261,Fine_Noodle,Fine Noodles,3,500,,10,,,,,,,,,,,,,{},{},{} -6262,Cool_Gravy,Cool Gravy,3,400,,10,,,,,,,,,,,,,{},{},{} -6263,Coconut_Fruit,Coconut Fruit,3,100,,10,,,,,,,,,,,,,{},{},{} -6264,Melon,Melon,3,100,,10,,,,,,,,,,,,,{},{},{} -6265,Pineapple,Pineapple,3,100,,10,,,,,,,,,,,,,{},{},{} -6266,Cheat_Key,Key Of Deception,3,0,,0,,,,,,,,,,,,,{},{},{} -6267,Virtual_Key,Key Of Illusion,3,0,,0,,,,,,,,,,,,,{},{},{} -6268,Mirth_Key,Key Of Gaiety,3,0,,0,,,,,,,,,,,,,{},{},{} -6269,Master_Brush,A Master's Blush,3,0,,0,,,,,,,,,,,,,{},{},{} -6270,Mins_Picture,A Picture Of Minstrel Song,3,0,,0,,,,,,,,,,,,,{},{},{} -6271,Mins_Receipt,Receipt,3,0,,0,,,,,,,,,,,,,{},{},{} -6272,Experiment_Seed,Experiment Seed,3,0,,0,,,,,,,,,,,,,{},{},{} -6273,Altered_Seed,Seed For Experiment,3,0,,0,,,,,,,,,,,,,{},{},{} -6274,Saint_Cloth_Piece,A Piece Of Cloth Of A Saint,3,0,,0,,,,,,,,,,,,,{},{},{} -6275,King_Shield,Shield Of King,3,0,,0,,,,,,,,,,,,,{},{},{} -6276,Clear_Reagent,Clear Reagent,3,0,,0,,,,,,,,,,,,,{},{},{} -6277,Red_Reagent,Red Reagent,3,0,,0,,,,,,,,,,,,,{},{},{} -6278,Black_Reagent,Black Reagent,3,0,,0,,,,,,,,,,,,,{},{},{} -6279,Apple_Bomb_CB,Apple Bomb Guidebook,3,1000,,10,,,,,,,,,,,,,{},{},{} -6280,Pinepple_Bomb_CB,Pineapple Bomb Guidebook,3,1000,,10,,,,,,,,,,,,,{},{},{} -6281,Coconut_Bomb_CB,Coconut Fruit Bomb Guidebook,3,1000,,10,,,,,,,,,,,,,{},{},{} -6282,Melon_Bomb_CB,Melon Bomb Guidebook,3,1000,,10,,,,,,,,,,,,,{},{},{} -6283,Banana_Bomb_CB,Banana Bomb Guidebook,3,1000,,10,,,,,,,,,,,,,{},{},{} -6284,Plant_Genetic_Grow,How To Grow Plant Genes,3,1000,,10,,,,,,,,,,,,,{},{},{} -6285,Quality_Potion_Book,Manual: How To Make High Quality Potion,3,1000,,10,,,,,,,,,,,,,{},{},{} -6286,F_Max_Weight_Up_Scroll,F Max Weight Up Scroll,3,0,,10,,,,,,,,,,,,,{},{},{} -6287,F_Clothing_Dye_Coupon,Omni Clothing Dye,3,0,,0,,,,,,,,,,,,,{},{},{} -6288,F_Happy_Box,F Happy Box,3,10,,0,,,,,,,,,,,,,{},{},{} -6289,F_Mysterious_Dyestuff,F Mysterious Dyestuff,3,0,,10,,,,,,,,,,,,,{},{},{} -6290,F_New_Style_Coupon,F New Style Coupon,3,0,,10,,,,,,,,,,,,,{},{},{} -6291,F_Enriched_Elunium,F Enriched Elunium,3,2,,10,,,,,,,,,,,,,{},{},{} -6292,F_Enriched_Oridecon,F Enriched Oridecon,3,2,,10,,,,,,,,,,,,,{},{},{} -6293,F_Token_Of_Siegfried,F Token Of Siegfried,3,2,,10,,,,,,,,,,,,,{},{},{} -6294,F_Marriage_Covenant,F Marriage Covenant,3,0,,10,,,,,,,,,,,,,{},{},{} -6295,F_Clothing_Dye_Coupon2,F Clothing Dye Coupon2,3,0,,0,,,,,,,,,,,,,{},{},{} -6296,RF_Taining_Notice,Training Notice,3,20,,10,,,,,,,,,,,,,{},{},{} -6297,Bottle_To_Throw,Throwing Bottle,3,300,,10,,,,,,,,,,,,,{},{},{} -6298,Pumpkin_Head_Crushed,Pumpkin Head Crushed,3,20,,0,,,,,,,,,,,,,{},{},{} -6299,Worn_Cloth_Piece,Worn Cloth Piece,3,20,,0,,,,,,,,,,,,,{},{},{} -6300,J_7Draw,event,3,20,,10,,,,,,,,,,,,,{},{},{} -6301,J_Semi_Draw,event,3,20,,10,,,,,,,,,,,,,{},{},{} -6302,GM_Handwriting,GM Handwriting,3,20004,,0,,,,,,,,,,,,,{},{},{} -6303,Changed_Hydra_Ball,Changed Hydra Ball,3,0,,0,,,,,,,,,,,,,{},{},{} -6304,Sapa_Feat_Cert,Proof Of Sapha's Honor,3,0,,0,,,,,,,,,,,,,{},{},{} -6305,Frozen_Skin_Piece,Frozen Piece Of Skin,3,0,,0,,,,,,,,,,,,,{},{},{} -6306,Solid_Bloodstain,Hard Bloodstain,3,0,,0,,,,,,,,,,,,,{},{},{} -6307,Suspicious_Magic_Stone,Cursed Magical Stone,3,0,,0,,,,,,,,,,,,,{},{},{} -6308,Unidentified_Relic,Unidentified Relic,3,0,,0,,,,,,,,,,,,,{},{},{} -6309,E_Max_Weight_Up_Scroll,E Max Weight Up Scroll,3,0,,10,,,,,,,,,,,,,{},{},{} -6310,E_Cloth_Dye_Coupon,E Cloth Dye Coupon,3,0,,0,,,,,,,,,,,,,{},{},{} -6311,E_Happy_Box,E Happy Box,3,10,,0,,,,,,,,,,,,,{},{},{} -6312,E_Mysterious_Dyestuff,E Mysterious Dyestuff,3,0,,10,,,,,,,,,,,,,{},{},{} -6313,E_New_Style_Coupon,E New Style Coupon,3,0,,10,,,,,,,,,,,,,{},{},{} -6314,E_Enriched_Elunium,E Enriched Elunium,3,2,,10,,,,,,,,,,,,,{},{},{} -6315,E_Enriched_Oridecon,E Enriched Oridecon,3,2,,10,,,,,,,,,,,,,{},{},{} -6316,E_Token_Of_Siegfried,E Token Of Siegfried,3,2,,10,,,,,,,,,,,,,{},{},{} -6317,E_Marriage_Covenant,E Marriage Covenant,3,0,,10,,,,,,,,,,,,,{},{},{} -6318,E_Cloth_Dye_Coupon2,E Cloth Dye Coupon2,3,0,,0,,,,,,,,,,,,,{},{},{} -6319,Small_Bradium,Small Bradium,3,324,,10,,,,,,,,,,,,,{},{},{} -6320,Premium_Reset_Stone,Premium Reset Stone,3,20,,0,,,,,,,,,,,,,{},{},{} -6321,Rakehorn_Helm,Rakehorn Helm,3,822,,10,,,,,,,,,,,,,{},{},{} -6322,Antler_Helm,Antler Helmet,3,800,,10,,,,,,,,,,,,,{},{},{} -6323,Twinhorn_Helm,Two-Horned Helmet,3,728,,10,,,,,,,,,,,,,{},{},{} -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,,,,,,,,,,,,,{},{},{} -6331,Calender_April,Calender April,3,20,,0,,,,,,,,,,,,,{},{},{} -6332,Calender_May,Calender May,3,20,,0,,,,,,,,,,,,,{},{},{} -6333,Calender_June,Calender June,3,20,,0,,,,,,,,,,,,,{},{},{} -6334,Calender_July,Calender July,3,20,,0,,,,,,,,,,,,,{},{},{} -6335,Calender_August,Calender August,3,20,,0,,,,,,,,,,,,,{},{},{} -6336,Calender_September,Calender September,3,20,,0,,,,,,,,,,,,,{},{},{} -6337,Calender_October,Calender October,3,20,,0,,,,,,,,,,,,,{},{},{} -6338,Calender_November,Calender November,3,20,,0,,,,,,,,,,,,,{},{},{} -6339,Calender_December,Calender December,3,20,,0,,,,,,,,,,,,,{},{},{} -6340,Fade_Notation_Green,Fade Notation Green,3,0,,10,,,,,,,,,,,,,{},{},{} -6341,Fade_Notation_Red,Fade Notation Red,3,0,,10,,,,,,,,,,,,,{},{},{} -6342,Fade_Notation_Purple,Fade Notation Purple,3,0,,10,,,,,,,,,,,,,{},{},{} -6343,Fade_Notation_Blue,Fade Notation Blue,3,0,,10,,,,,,,,,,,,,{},{},{} -6344,Muscle_Story,Muscle Story,3,0,,0,,,,,,,,,,,,,{},{},{} -6345,Love_Ball,Love Lump,3,0,,0,,,,,,,,,,,,,{},{},{} -6346,Seagate_Mark,Seagate Mark,3,0,,0,,,,,,,,,,,,,{},{},{} -6347,Bless_Word_Paper1,Bless Word Paper,3,4020,,0,,,,,,,,,,,,,{},{},{} -6348,Bless_Word_Paper2,Bless Word Paper,3,4020,,0,,,,,,,,,,,,,{},{},{} -6349,Bless_Word_Paper3,Bless Word Paper,3,4020,,0,,,,,,,,,,,,,{},{},{} -6350,Bless_Word_Paper4,Bless Word Paper,3,4020,,0,,,,,,,,,,,,,{},{},{} -6351,Bless_Word_Paper5,Bless Word Paper,3,4020,,0,,,,,,,,,,,,,{},{},{} -6352,Bless_Word_Paper6,Bless Word Paper,3,4020,,0,,,,,,,,,,,,,{},{},{} -6353,Bless_Word_Paper7,Bless Word Paper,3,4020,,0,,,,,,,,,,,,,{},{},{} -6354,Bless_Word_Paper8,Bless Word Paper,3,4020,,0,,,,,,,,,,,,,{},{},{} -6355,Bless_Word_Paper9,Bless Word Paper,3,4020,,0,,,,,,,,,,,,,{},{},{} -6356,Bless_Word_Paper10,Bless Word Paper,3,4020,,0,,,,,,,,,,,,,{},{},{} -6357,Fortune_Cookie_Fail,Fortune Cookie Fail,3,4020,,10,,,,,,,,,,,,,{},{},{} -6358,Free_Cash_Coupon,Free Cash Coupon,3,0,,0,,,,,,,,,,,,,{},{},{} -6359,Guidebook_Exchange,Guidebook Exchange,3,0,,0,,,,,,,,,,,,,{},{},{} -6360,Scarlet_Pts,Scarlet Point,3,100,,5,,,,,,,,,,,,,{},{},{} -6361,Indigo_Pts,Indigo Point,3,100,,5,,,,,,,,,,,,,{},{},{} -6362,Yellow_Wish_Pts,Yellow Wish Point,3,100,,5,,,,,,,,,,,,,{},{},{} -6363,Lime_Green_Pts,Lime Green Point,3,100,,5,,,,,,,,,,,,,{},{},{} -6364,Woe_Coin,GvG Coin,3,0,,0,,,,,,,,,,,,,{},{},{} -6365,Arena_Coin,Arena Coin,3,0,,0,,,,,,,,,,,,,{},{},{} -6366,Turbo_Track_Coin,Turbo Track Coin,3,0,,0,,,,,,,,,,,,,{},{},{} -6367,Kafra_Coin,Kafra Coin,3,0,,0,,,,,,,,,,,,,{},{},{} -6368,Endless_Coin,Endless Tower Coin,3,0,,0,,,,,,,,,,,,,{},{},{} -6369,Amatsu_Bead_A,Amatsu Bead A,3,0,,0,,,,,,,,,,,,,{},{},{} -6370,Amatsu_Bead_Ma,Amatsu Bead Ma,3,0,,0,,,,,,,,,,,,,{},{},{} -6371,Amatsu_Bead_Tsu,Amatsu Bead Tsu,3,0,,0,,,,,,,,,,,,,{},{},{} -6372,Amatsu_Bead_Jam,Amatsu Bead Jam,3,0,,0,,,,,,,,,,,,,{},{},{} -6373,Amatsu_Bead_Bo,Amatsu Bead Bo,3,0,,0,,,,,,,,,,,,,{},{},{} -6374,Amatsu_Bead_Ree,Amatsu Bead Ree,3,0,,0,,,,,,,,,,,,,{},{},{} -6375,Amatsu_Bead_!,Amatsu Bead !,3,0,,0,,,,,,,,,,,,,{},{},{} -6376,KVM_Badge,KVM Badge,3,0,,0,,,,,,,,,,,,,{},{},{} -6377,Buy_Market_Permit,Buy Market Permit,3,20,,10,,,,,,,,,,,,,{},{},{} -6378,Winning_Mark,Winning Mark,3,0,,0,,,,,,,,,,,,,{},{},{} -6379,Card_Coin,Card Coin,3,20,,10,,,,,,,,,,,,,{},{},{} -6380,Mora_Coin,Mora Coin,3,20,,0,,,,,,,,,,,,,{},{},{} -6381,Field_Shovel,Field Shovel,3,20,,10,,,,,,,,,,,,,{},{},{} -6382,Urn,Urn,3,20,,10,,,,,,,,,,,,,{},{},{} -6383,Clue_Of_Lope,Lope's Clue,3,20,,10,,,,,,,,,,,,,{},{},{} -6384,Ring_Of_Lope,Lope's Ring,3,0,,0,,,,,,,,,,,,,{},{},{} -6385,Research_Tool_Bag,Research Tool Bag,3,0,,0,,,,,,,,,,,,,{},{},{} -6386,Bathtub_R_Sample,Bath Water Sample,3,20,,0,,,,,,,,,,,,,{},{},{} -6387,Teeth_Sample,Teeth Sample,3,20,,0,,,,,,,,,,,,,{},{},{} -6388,Scale_Sample,Scale Sample,3,20,,0,,,,,,,,,,,,,{},{},{} -6389,Puddle_R_Sample,Sample Of Puddle Research,3,20,,0,,,,,,,,,,,,,{},{},{} -6390,Small_Pocket,Small Pocket,3,20,,0,,,,,,,,,,,,,{},{},{} -6391,Splendid_Supply_Kit,Splendid Supply Kit,3,20,,2000,,,,,,,,,,,,,{},{},{} -6392,Bradium_Box,Bradium Box,3,20,,10,,,,,,,,,,,,,{},{},{} -6393,Round_Feather,Round Feather,3,525,,10,,,,,,,,,,,,,{},{},{} -6394,Golden_Feather,Golden Feather,3,487,,10,,,,,,,,,,,,,{},{},{} -6395,Angel_Magic_Power,Angel Magic Powder,3,615,,10,,,,,,,,,,,,,{},{},{} -6396,Auger_Of_Spirit,Auger Of Spirit,3,0,,10,,,,,,,,,,,,,{},{},{} -6397,PR_Team_Ticket,PR Team Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6398,Develop_Team_Ticket,Develop Team Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6399,Marketing_Team_Ticket,Marketing Team Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6400,Operating_Team_Ticket,Operating Team Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6401,Palm_O,Palm Oil,3,0,,500,,,,,,,,,,,,,{},{},{} -6402,Oil_Palm_F,Palm Oil Fruit,3,0,,50,,,,,,,,,,,,,{},{},{} -6403,Comodo_L,Comodo Leather,3,5,,10,,,,,,,,,,,,,{},{},{} -6404,Caress_H,Keris Hilt,3,0,,100,,,,,,,,,,,,,{},{},{} -6405,Cendrawasih_F,Cendrawasih Feather,3,3,,10,,,,,,,,,,,,,{},{},{} -6406,Cendrawasih_SF,Shining Cendrawasih Feather,3,10,,100,,,,,,,,,,,,,{},{},{} -6407,Sang_Stone_Fragment,Raw Crystal Stone Fragment,3,10,,10,,,,,,,,,,,,,{},{},{} -6408,Sang_Stone,Raw Crystal Stone,3,10,,10,,,,,,,,,,,,,{},{},{} -6409,Sang_Stone_Mass,Raw Crystal Stone Mass,3,20,,10,,,,,,,,,,,,,{},{},{} -6410,Idul_Fitri_Card,Idul Fitri Card,3,10,,10,,,,,,,,,,,,,{},{},{} -6411,Ripe_Watermelon,Ripe Watermelon,3,20,,10,,,,,,,,,,,,,{},{},{} -6412,Special_Medal,Special Medal,3,0,,0,,,,,,,,,,,,,{},{},{} -6413,New_Insurance,New Insurance,3,2,,10,,,,,,,,,,,,,{},{},{} -6414,Raganta_Card,Ragunta Card,3,20,,10,,,,,,,,,,,,,{},{},{} -6415,Strange_Embryo,Strange Embryo,3,0,,0,,,,,,,,,,,,,{},{},{} -6416,Pet_Exchange,Pet Exchange,3,0,,0,,,,,,,,,,,,,{},{},{} -6417,Silvervine,Silvervine Fruit,3,20,,0,,,,,,,,,,,,,{},{},{} -6418,Agrade_Coin,A Grade Coin,3,20,,0,,,,,,,,,,,,,{},{},{} -6419,Bgrade_Coin,B Grade Coin,3,20,,0,,,,,,,,,,,,,{},{},{} -6420,Cgrade_Coin,C Grade Coin,3,20,,0,,,,,,,,,,,,,{},{},{} -6421,Dgrade_Coin,D Grade Coin,3,20,,0,,,,,,,,,,,,,{},{},{} -6422,Egrade_Coin,E Grade Coin,3,20,,0,,,,,,,,,,,,,{},{},{} -6423,Anger_Seagod,Sea God's Wrath,3,20,,0,,,,,,,,,,,,,{},{},{} -6424,Halloween_Fragment,Spirit Piece,3,20,,0,,,,,,,,,,,,,{},{},{} -6425,Halloween_Certificate,Halloween Certificate,3,20,,0,,,,,,,,,,,,,{},{},{} -6426,Bad_Can,Bad Canned Food,3,20,,10,,,,,,,,,,,,,{},{},{} -6427,Bad_Can_Sack,Bad Canned Food Sack,3,0,,0,,,,,,,,,,,,,{},{},{} -6428,Bravery_Card_A,Adventure Card A,3,0,,0,,,,,,,,,,,,,{},{},{} -6429,Bravery_Card_B,Adventure Card B,3,0,,0,,,,,,,,,,,,,{},{},{} -6430,Picture_Piece,Picture Fragment,3,0,,0,,,,,,,,,,,,,{},{},{} -6431,Bucket,Pail,3,0,,100,,,,,,,,,,,,,{},{},{} -6432,Full_Bucket,Full Pail,3,0,,3000,,,,,,,,,,,,,{},{},{} -6433,Clean_Brush,Cleaning Brush,3,0,,300,,,,,,,,,,,,,{},{},{} -6434,Fix_Kit,Fix Kit,3,0,,1000,,,,,,,,,,,,,{},{},{} -6435,Fresh_Fruit,Fresh Fruit,3,0,,100,,,,,,,,,,,,,{},{},{} -6436,Ptotection_Seagod,Sea God's Call,3,20,,0,,,,,,,,,,,,,{},{},{} -6437,Scaraba_Perfume,Scaraba Perfume,3,0,,0,,,,,,,,,,,,,{},{},{} -6438,Unbreakable_Weap,Unbreakable Weapon,3,0,,10,,,,,,,,,,,,,{},{},{} -6439,Unbreakable_Def,Unbreakable Armor,3,0,,10,,,,,,,,,,,,,{},{},{} -6440,General_Lubricant,General Lubrication,3,20,,0,,,,,,,,,,,,,{},{},{} -6441,High_RankLubricant,Advanced Lubrication,3,20,,0,,,,,,,,,,,,,{},{},{} -6442,Octopus_Hunt_Stick,Octopus Hunting Skewer,3,0,,0,,,,,,,,,,,,,{},{},{} -6443,Sillit_Pong_Bottle,Sillit Pong Bottle,3,20,,0,,,,,,,,,,,,,{},{},{} -6444,Emperium_G,Emperium G,3,2,,1000,,,,,,,,,,,,,{},{},{} -6445,Blue_Card_X,Blue Card X,3,0,,10,,,,,,,,,,,,,{},{},{} -6446,Green_Paper,Green Paper,3,0,,0,,,,,,,,,,,,,{},{},{} -6447,Red_Paper,Red Paper,3,0,,0,,,,,,,,,,,,,{},{},{} -6448,White_Paper,White Paper,3,0,,0,,,,,,,,,,,,,{},{},{} -6449,Casual_Diary,Casual Diary,3,0,,0,,,,,,,,,,,,,{},{},{} -6450,Honest_Diary,Honest Diary,3,0,,0,,,,,,,,,,,,,{},{},{} -6451,Unknown_Fish,Unknown Fish,3,20,,0,,,,,,,,,,,,,{},{},{} -6452,Etoile_Ring,Etoile Ring,3,0,,0,,,,,,,,,,,,,{},{},{} -6453,Undelivered_Gift,Undelivered Gift,3,2,,10,,,,,,,,,,,,,{},{},{} -6454,Santa_Bag,Santa Bag,3,2,,10,,,,,,,,,,,,,{},{},{} -6455,Tiny_Ticket,Tiny Ticket,3,20,,0,,,,,,,,,,,,,{},{},{} -6456,Guarantee_Weapon_5Up,+5 Weapon Refine Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6457,Guarantee_Armor_5Up,+5 Armor Refine Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6459,Jae_Sinho_Unpo,Jae Sinho Unpo,3,0,,0,,,,,,,,,,,,,{},{},{} -6460,Jae_Sinho_Undo,Jae Sinho Undo,3,0,,0,,,,,,,,,,,,,{},{},{} -6461,Mimong_Sungjin,Mimong Sungjin,3,0,,0,,,,,,,,,,,,,{},{},{} -6462,Gilsang_Yeoui,Gilsang Yeoui,3,0,,0,,,,,,,,,,,,,{},{},{} -6463,Sin_Sun_Jeonsul,Sin Sun Jeonsul,3,0,,0,,,,,,,,,,,,,{},{},{} -6464,Hate_Bundle,Hate Crate,3,0,,0,,,,,,,,,,,,,{},{},{} -6465,Guard_Coin,Guard Coin,3,0,,10,,,,,,,,,,,,,{},{},{} -6466,Clean_Water,Clean Water,3,20,,10,,,,,,,,,,,,,{},{},{} -6467,Perfume,Perfume,3,20,,10,,,,,,,,,,,,,{},{},{} -6468,Thai_Perfume,Thai Perfume,3,20,,10,,,,,,,,,,,,,{},{},{} -6469,Will_Of_Warrior,Warrior's Will,3,1000,,10,,,,,,,,,,,,,{},{},{} -6470,Blood_Thirst,Blood Thirst,3,1200,,10,,,,,,,,,,,,,{},{},{} -6471,Goast_Chill,Chills Of Death,3,1600,,10,,,,,,,,,,,,,{},{},{} -6472,Holy_Mom_Blaze,Holy Mom Blaze,3,0,,0,,,,,,,,,,,,,{},{},{} -6473,Amatsu_Orb01,Amatsu Orb01,3,0,,0,,,,,,,,,,,,,{},{},{} -6474,Amatsu_Orb02,Amatsu Orb02,3,0,,0,,,,,,,,,,,,,{},{},{} -6475,Amatsu_Orb03,Amatsu Orb03,3,0,,0,,,,,,,,,,,,,{},{},{} -6476,Amatsu_Orb04,Amatsu Orb04,3,0,,0,,,,,,,,,,,,,{},{},{} -6477,Amatsu_Orb05,Amatsu Orb05,3,0,,0,,,,,,,,,,,,,{},{},{} -6478,Amatsu_Orb06,Amatsu Orb06,3,0,,0,,,,,,,,,,,,,{},{},{} -6479,Amatsu_Orb07,Amatsu Orb07,3,0,,0,,,,,,,,,,,,,{},{},{} -6480,Event_coin,Poring Coin,3,0,,0,,,,,,,,,,,,,{},{},{} -6481,Holy_Rock_Piece,Holy Rock Piece,3,0,,0,,,,,,,,,,,,,{},{},{} -6482,Ancient_City_Key,Ancient City Key,3,0,,0,,,,,,,,,,,,,{},{},{} -6483,Dream_Scroll,Dream Scroll,3,0,,0,,,,,,,,,,,,,{},{},{} -6484,Enchant_Book,Enchant Book,3,0,,10,,,,,,,,,,,,,{},{},{} -6485,BlueCard_2,Blue 2 Card,3,0,,10,,,,,,,,,,,,,{},{},{} -6486,BlueCard_0,Blue 0 Card,3,0,,10,,,,,,,,,,,,,{},{},{} -6487,BlueCard_1,Blue 1 Card,3,0,,10,,,,,,,,,,,,,{},{},{} -6488,Thanks_Invest_Ticket,Thanks Invest Ticket,3,0,,10,,,,,,,,,,,,,{},{},{} -6489,Cats_Invest_Certif,Cats Invest Certificate,3,0,,10,,,,,,,,,,,,,{},{},{} -6490,Magic_Clay_Fragment,Magic Clay Fragment,3,0,,10,,,,,,,,,,,,,{},{},{} -6491,Magic_Clay,Magic Clay,3,0,,10,,,,,,,,,,,,,{},{},{} -6492,Magic_Clay_Lump,Magic Clay Lump,3,0,,10,,,,,,,,,,,,,{},{},{} -6493,Makibishi,Makibishi,3,30,,1,,,,,,,,,,,,,{},{},{} -6494,Kafra_Coin2,Kafra Coin,3,0,,0,,,,,,,,,,,,,{},{},{} -6495,Para_Logro_Badge,Eden Merit Badge,3,0,,0,,,,,,,,,,,,,{},{},{} -6496,Tikbalang_Thick_Spine,Tikbalang's Thick Spine,3,300,,10,,,,,,,,,,,,,{},{},{} -6497,Lesser_Agimat,Lesser Agimat,3,20,,50,,,,,,,,,,,,,{},{},{} -6498,Jejellopy,Jejellopy,3,200,,10,,,,,,,,,,,,,{},{},{} -6499,Ancient_Grudge,Ancient Grudge,3,500,,10,,,,,,,,,,,,,{},{},{} -6500,Sharp_Bamboo,Sharpened Bamboo,3,0,,0,,,,,,,,,,,,,{},{},{} -6501,Salt_Bag,Salt Bag,3,0,,0,,,,,,,,,,,,,{},{},{} -6502,Silver_Cross,The Cross,3,0,,0,,,,,,,,,,,,,{},{},{} -6503,Soul_Protection,Spiritual Protection,3,0,,0,,,,,,,,,,,,,{},{},{} -6504,Cast_Iron_Caldron,Cast-Iron Caldron,3,0,,0,,,,,,,,,,,,,{},{},{} -6505,Purified_Bone,Purified Spirit Bone,3,0,,0,,,,,,,,,,,,,{},{},{} -6506,Memorial_Bouquet,Offering Bouquet,3,0,,0,,,,,,,,,,,,,{},{},{} -6507,Evil_Bone,Evil Spirit Bone,3,0,,0,,,,,,,,,,,,,{},{},{} -6508,Silver_Bracelet,Silver Bracelet,3,300,,10,,,,,,,,,,,,,{},{},{} -6509,Mysterious_Flower,Mysterious Flower,3,500,,10,,,,,,,,,,,,,{},{},{} -6510,Elegant_Flower,Elegant Flower,3,300,,10,,,,,,,,,,,,,{},{},{} -6511,Beautiful_Flower,Beautiful Flower,3,300,,10,,,,,,,,,,,,,{},{},{} -6512,Charm_Fire,Fire Amulet,3,100,,1,,,,,,,,,,,,,{},{},{} -6513,Charm_Ice,Ice Amulet,3,100,,1,,,,,,,,,,,,,{},{},{} -6514,Charm_Wind,Wind Amulet,3,100,,1,,,,,,,,,,,,,{},{},{} -6515,Charm_Earth,Earth Amulet,3,100,,1,,,,,,,,,,,,,{},{},{} -6516,Bakonawa_Doll,Bakonawa Doll,3,3000,,10,,,,,,,,,,,,,{},{},{} -6517,Bangungot_Doll,Bangungot Doll,3,3000,,10,,,,,,,,,,,,,{},{},{} -6518,Buwaya_Doll,Buwaya Doll,3,3000,,10,,,,,,,,,,,,,{},{},{} -6519,Collected_Samples,Collected Sample,3,0,,0,,,,,,,,,,,,,{},{},{} -6520,Lost_Belongings,Lost Belongings,3,0,,0,,,,,,,,,,,,,{},{},{} -6521,Royal_Certificate,Royal Certificate,3,0,,0,,,,,,,,,,,,,{},{},{} -6522,Royal_Certificate_,Royal Certificate,3,0,,0,,,,,,,,,,,,,{},{},{} -6523,Bakonawa_Spirit_Piece,Piece of Bakonawa's Spirit,3,3000,,10,,,,,,,,,,,,,{},{},{} -6524,Bangungot_Spirit_Piece,Piece of Bangungot's Spirit,3,3000,,10,,,,,,,,,,,,,{},{},{} -6525,Buwaya_Spirit_Piece,Piece of Buwaya's Spirit,3,3000,,10,,,,,,,,,,,,,{},{},{} -6526,BlueCard_Happy,BlueCard Happy,3,0,,10,,,,,,,,,,,,,{},{},{} -6527,BlueCard_Enjoy,BlueCard Enjoy,3,0,,10,,,,,,,,,,,,,{},{},{} -6528,BlueCard_Light,BlueCard Light,3,0,,10,,,,,,,,,,,,,{},{},{} -6529,BlueCard_Mid,BlueCard Mid,3,0,,10,,,,,,,,,,,,,{},{},{} -6530,BlueCard_Fall,BlueCard Fall,3,0,,10,,,,,,,,,,,,,{},{},{} -6531,Royal_Certificate__,Royal Certificate,3,0,,0,,,,,,,,,,,,,{},{},{} -6532,Honey_Songpyun,Honey Songpyun,3,0,,10,,,,,,,,,,,,,{},{},{} -6533,Torn_Document,Torn Document,3,2,,500,,,,,,,,,,,,,{},{},{} -6534,Fruit_Sundae,Fruit Sundae,3,2,,50,,,,,,,,,,,,,{},{},{} -6535,Red_Cloth,Red Cloth,3,0,,10,,,,,,,,,,,,,{},{},{} -6536,Star_Decor,Star Decor,3,0,,10,,,,,,,,,,,,,{},{},{} -6537,Sky_Medal,Sky Medal,3,20,,0,,,,,,,,,,,,,{},{},{} -6538,Real_Blank_Card,Real Blank Card,3,20,,0,,,,,,,,,,,,,{},{},{} -6539,Old_Left_Lapine,Old Left Lapine,3,0,,0,,,,,,,,,,,,,{},{},{} -6540,Golden_Leaf,Golden Leaf,3,0,,0,,,,,,,,,,,,,{},{},{} -6541,Avant_Research_Data,Avant Research Data,3,0,,0,,,,,,,,,,,,,{},{},{} -6542,Star_Shape_Mushroom,Star Shape Mushroom,3,20,,100,,,,,,,,,,,,,{},{},{} -6543,Lv110_Achieved_Coin,Lv110 Achieved Coin,3,0,,0,,,,,,,,,,,,,{},{},{} -6544,Lv120_Achieved_Coin,Lv120 Achieved Coin,3,0,,0,,,,,,,,,,,,,{},{},{} -6545,Firm_Hair,Firm Hair,3,0,,0,,,,,,,,,,,,,{},{},{} -6546,Younger_Bro_Letter,Younger Bro Letter,3,0,,0,,,,,,,,,,,,,{},{},{} -6547,Stained_Research_Book,Stained Research Book,3,0,,0,,,,,,,,,,,,,{},{},{} -6548,Piece_Of_Lapine_Wing,Piece Of Lapine Wing,3,0,,0,,,,,,,,,,,,,{},{},{} -6549,Courtesy_Ticket,Courtesy Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -6550,Brownie_Ticket,Brownie Ticket,3,20,,0,,,,,,,,,,,,,{},{},{} -6551,RWC_Spirit_Auger,RWC Spirit Auger,3,0,,10,,,,,,,,,,,,,{},{},{} -6552,Mail_Package,Mail Package,3,0,,0,,,,,,,,,,,,,{},{},{} -6553,Leaf_Made_Wood,Leaf Made Wood,3,0,,0,,,,,,,,,,,,,{},{},{} -6554,Seed_Box,Seed Box,3,0,,0,,,,,,,,,,,,,{},{},{} -6555,Birthday_Candle,Birthday Candle,3,0,,0,,,,,,,,,,,,,{},{},{} -6556,Nespresso_Ticket,Nespresso Ticket,3,0,,10,,,,,,,,,,,,,{},{},{} -6557,Fancy_Fairy_Wing,Fancy Fairy Wing,3,2350,,10,,,,,,,,,,,,,{},{},{} -6558,Pile_Of_Acorn,Pile Of Acorn,3,1500,,10,,,,,,,,,,,,,{},{},{} -6559,Eye_Drops,Eye Drops,3,1780,,10,,,,,,,,,,,,,{},{},{} -6560,Leaf_Bookmark,Leaf Bookmark,3,3000,,10,,,,,,,,,,,,,{},{},{} -6561,Dustball,Dustball,3,2000,,10,,,,,,,,,,,,,{},{},{} -6562,Tiny_Mouse_Tail,Tiny Mouse Tail,3,0,,0,,,,,,,,,,,,,{},{},{} -6563,Weeds,Weeds,3,0,,0,,,,,,,,,,,,,{},{},{} -6564,Captive_Hatchling,Captive Hatchling,3,0,,10,,,,,,,,,,,,,{},{},{} -6565,Racy_Spice,Racy Spice,3,20,,10,,,,,,,,,,,,,{},{},{} -6566,Cacao99_Recipe,Cacao99 Recipe,3,0,,0,,,,,,,,,,,,,{},{},{} -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,Cute Cart Remodel Coupon,3,0,,10,,,,,,,,,,,,,{},{},{} -6607,Temporal_Crystal,Temporal Crystal,3,20,,10,,,,,,,,,,,,,{},{},{} -6608,Coagulated_Spell,Coagulated Spell,3,20,,10,,,,,,,,,,,,,{},{},{} -6609,Glast_Decayed_Nail,Glast Decayed Nail,3,2800,,10,,,,,,,,,,,,,{},{},{} -6610,Glast_Horrendous_Mouth,Glast Horrendous Mouth,3,3200,,10,,,,,,,,,,,,,{},{},{} -6611,Colorful_Key,Colorful Key,3,50000,,10,,,,,,,,,,,,,{},{},{} -6612,Gold_Coin_Basket,Gold Coin Basket,3,300000,,200,,,,,,,,,,,,,{},{},{} -6613,Colorful_Brooch,Colorful Brooch,3,100000,,10,,,,,,,,,,,,,{},{},{} -6615,Siege_Guild_Coin,Siege Guild Coin,3,0,,10,,,,,,,,,,,,,{},{},{} -6616,Lmtd_Manny_Card,Limited Manny Card,3,20,,10,,,,,,,,,,,,,{},{},{} -6617,Lmtd_Sid_Card,Limited Sid Card,3,20,,10,,,,,,,,,,,,,{},{},{} -6618,Lmtd_Diego_Card,Limited Diego Card,3,20,,10,,,,,,,,,,,,,{},{},{} -6619,Lmtd_Scrat_Card,Limited Scrat Card,3,20,,10,,,,,,,,,,,,,{},{},{} -6623,Rough_Energy_Crystal,Rough Energy Crystal,3,0,,10,,,,,,,,,,,,,{},{},{} -6624,Purified_Energy_Crystal,Purified Energy Crystal,3,0,,10,,,,,,,,,,,,,{},{},{} -6625,High_Purity_Energy_Xtal,High Energy Crystal,3,0,,10,,,,,,,,,,,,,{},{},{} - -6635,Blacksmith_Blessing,Blacksmith Blessing,3,20,,0,,,,,,,,,,,,,{},{},{} -6636,STRStone_Top,STR Stone (Upper),3,10,,100,,,,,,,,,,,,,{},{},{} -6637,INTStone_Top,INT Stone (Upper),3,10,,100,,,,,,,,,,,,,{},{},{} -6638,AGIStone_Top,AGI Stone (Upper),3,10,,100,,,,,,,,,,,,,{},{},{} -6639,DEXStone_Top,DEX Stone (Upper),3,10,,100,,,,,,,,,,,,,{},{},{} -6640,VITStone_Top,VIT Stone (Upper),3,10,,100,,,,,,,,,,,,,{},{},{} -6641,LUKStone_Top,LUK Stone (Upper),3,10,,100,,,,,,,,,,,,,{},{},{} -6642,ATKStone_Middle,ATK Stone (Middle),3,10,,100,,,,,,,,,,,,,{},{},{} -6643,MATKStone_Middle,MATK Stone (Middle),3,10,,100,,,,,,,,,,,,,{},{},{} -6644,HITStone_Bottom,HIT Stone (Lower),3,10,,100,,,,,,,,,,,,,{},{},{} -6645,FLEEStone_Bottom,FLEE Stone (Lower),3,10,,100,,,,,,,,,,,,,{},{},{} - -6669,Jade_Leaf,Emerald Leaf,3,0,,10,,,,,,,,,,,,,{},{},{} - -6697,Costumes_Exchange_Coupons,Costumes Exchange Coupons,3,10,,10,,,,,,,,,,,,,{},{},{} -6646,Poring_Badge,Poring Badge,3,0,,0,,,,,,,,,,,,,{},{},{} -6648,Shabby_Crown,Old Crown,3,10,,10,,,,0,,,,,,,,,{},{},{} -6649,Broken_Horn,Broken Horn,3,10,,10,,,,0,,,,,,,,,{},{},{} -6650,Shabby_Ring,Old Ring,3,10,,10,,,,0,,,,,,,,,{},{},{} -6651,Rusty_Bracelet,Rusty Bracalet,3,10,,10,,,,0,,,,,,,,,{},{},{} -6652,Old_Photo_Album,Old Photo Album,3,10,,10,,,,0,,,,,,,,,{},{},{} -6653,Shabby_Pill,Old Pill,3,10,,10,,,,0,,,,,,,,,{},{},{} -6654,Needle_And_Thread,Needle And Thread,3,0,,0,,,,,,,,,,,,,{},{},{} -6655,Firm_Pumpkin,Firm Pumpkin,3,0,,0,,,,,,,,,,,,,{},{},{} -6656,Goast_Free_Charm,Goast Free Charm,3,0,,0,,,,,,,,,,,,,{},{},{} -6657,Memory_Of_Jack,Memory Of Jack,3,0,,0,,,,,,,,,,,,,{},{},{} -6658,Halloween_Coin,Halloween Coin,3,0,,0,,,,,,,,,,,,,{},{},{} -6665,RWC_Inicializer,RWC Inicializer,3,0,,10,,,,,,,,,,,,,{},{},{} -6671,Geffen_Coin_Magic_Tournament,Geffen Coin Magic Tournament,3,10,,0,,,,,,,,,,,,,{},{},{} -6672,Shard_of_Gray,Shard of Gray,3,10,,0,,,,,,,,,,,,,{},{},{} -6673,Bossnia_Tickets,Bossnia Tickets,3,10,,0,,,,,,,,,,,,,{},{},{} -6674,GM_Coin,GM Coin,3,0,,10,,,,,,,,,,,,,{},{},{} -6681,XMAS_Cookie,Christmas Cookie,3,20,,10,,,,,,,,,,,,,{},{},{} -6682,Bag_Of_Selling_Goods,Bag Of Selling Goods,3,20,,10,,,,,,,,,,,,,{},{},{} -6683,Dried_Flower,Dried Flower,3,10,,10,,,,,,,,,,,,,{},{},{} -6684,TokenOfHero,Token Of Hero,3,10,,0,,,,,,,,,,,,,{},{},{} -6685,Morocc_Certification,Morocc Certification,3,10,,0,,,,,,,,,,,,,{},{},{} -6686,Brick,Brick,3,10,,2000,,,,,,,,,,,,,{},{},{} -6687,Rope__,Rope,3,10,,2000,,,,,,,,,,,,,{},{},{} -6688,Wood_,Wood,3,10,,2000,,,,,,,,,,,,,{},{},{} -6689,BurningSkin,Burning Bug Skin,3,10,,0,,,,,,,,,,,,,{},{},{} -6690,YummyStem,Yummy Stem,3,10,,0,,,,,,,,,,,,,{},{},{} -6691,BurningFeather,Burning Feather,3,10,,0,,,,,,,,,,,,,{},{},{} -6692,PatrolLog,Patrol Log,3,10,,1,,,,,,,,,,,,,{},{},{} -6693,Stone_Of_Blessing,Stone Of Blessing,3,10,,10,,,,,,,,,,,,,{},{},{} -6694,Monster_Blood,Monster Blood,3,10,,10,,,,,,,,,,,,,{},{},{} -6695,ToothOfFlameGolem,Golem's Fiery Stone Tooth,3,10,,100,,,,,,,,,,,,,{},{},{} -6696,ToothOfFlameFrilldora,Frilldora's Fiery Nape,3,10,,10,,,,,,,,,,,,,{},{},{} -6698,Wooden_Axe,Wooden Axe,3,10,,1000,,,,,,,,,,,,,{},{},{} -6699,Faith_Silence,Faith Silence,3,10,,0,,,,,,,,,,,,,{},{},{} -6700,White_Snake_Scale,White Snake Scale,3,10,,0,,,,,,,,,,,,,{},{},{} -6701,Treasure_Dwarf,Treasure Dwarf,3,10,,0,,,,,,,,,,,,,{},{},{} -6702,Sweat_Dwarf,Sweat Dwarf,3,10,,0,,,,,,,,,,,,,{},{},{} -6703,Warrior_Tears,Warrior Tears,3,10,,0,,,,,,,,,,,,,{},{},{} -6704,Warrior_Anger,Warrior Anger,3,10,,0,,,,,,,,,,,,,{},{},{} -6705,Warrior_Certificate,Warrior Certificate,3,10,,0,,,,,,,,,,,,,{},{},{} -6706,Guardian_Flowers,Guardian Flowers,3,10,,0,,,,,,,,,,,,,{},{},{} -6707,Jeremy_Beauty_Coupon,Jeremy Beauty Coupon,3,10,,10,,,,,,,,,,,,,{},{},{} -6708,Mana_crystal,Mana Crystal,3,10,,,,,,,,,,,,,,,{},{},{} -6709,Crisp_Silk,Crisp Silk,3,10,,0,,,,,,,,,,,,,{},{},{} -6710,Tied_Snake,Tied Snake,3,10,,0,,,,,,,,,,,,,{},{},{} -6712,Lovely_Stick,Lovely Stick,3,0,,0,,,,,,,,,,,,,{},{},{} -6713,Heart_of_Soul,Heart of Soul,3,0,,0,,,,,,,,,,,,,{},{},{} -6714,Sheenas_Soul,Sheena's Soul,3,20,,0,,,,,,,,,,,,,{},{},{} -6715,P_Of_Evil_Soul,Darklord Soulpiece,3,20,,0,,,,,,,,,,,,,{},{},{} -6716,Cri_Stone,CRI Stone (Upper),6,10,,100,,,,,,,,,,,,,{},{},{} -6717,MaxHP_Stone,Stamina Stone (Middle),6,10,,100,,,,,,,,,,,,,{},{},{} -6718,MaxSP_Stone,Magic Stone (Lower),6,10,,100,,,,,,,,,,,,,{},{},{} -6719,Jitterbug's_Tooth,Jitterbug's Tooth,3,10,,100,,,,,,,,,,,,,{},{},{} -6720,Status_Reset_Coupon,Status Reset Coupon,18,10,,0,,,,0,0xFFFFFFFF,63,2,,,1,,,{ resetstatus; },{},{} -6721,Status_Reset_Coupon_,Status Reset Coupon,18,10,,0,,,,0,0xFFFFFFFF,63,2,,,1,,,{ resetstatus; },{},{} -6722,Delicious_Clam_Flesh,Delicious Clam Flesh,3,10,,0,,,,,,,,,,,,,{},{},{} -6723,Delicious_Canned_Food,Delicious Canned Food,3,10,,0,,,,,,,,,,,,,{},{},{} -6724,Savage_Box,Savage Box,3,10,,0,,,,,,,,,,,,,{},{},{} -6725,Grand_Peco_Box,Grand Peco Box,3,10,,0,,,,,,,,,,,,,{},{},{} -6726,Desert_Wolf_Box,Desert Wolf Box,3,10,,0,,,,,,,,,,,,,{},{},{} -6727,Arranged_Photo_Album,Arranged Photo Album,3,10,,0,,,,,,,,,,,,,{},{},{} -6732,Monster_Coin,Monster Coin,3,10,,0,,,,,,,,,,,,,{},{},{} -6733,Tingly_Feather,Tingly Feather,3,10,,0,,,,,,,,,,,,,{},{},{} -6734,Unknown_Meal,Unknown Meal,3,0,,0,,,,,,,,,,,,,{},{},{} -6735,Special_Condiment,Special Condiment,3,0,,20,,,,,,,,,,,,,{},{},{} -6736,Minced_Meat,Minced Meat,3,0,,20,,,,,,,,,,,,,{},{},{} -6737,Fermented_Wheat_Flour,Fermented Wheat Flour,3,0,,20,,,,,,,,,,,,,{},{},{} -6738,Rissole,Rissole,3,0,,0,,,,,,,,,,,,,{},{},{} -6739,Recipe,Recipe,3,0,,0,,,,,,,,,,,,,{},{},{} -6740,HealStone_Top,Recovery Stone (Upper),6,10,,100,,,,,,,,,,,,,{},{},{} -6741,HealStone2_Top,Recovery Skill Stone (Upper),6,10,,100,,,,,,,,,,,,,{},{},{} -6742,HealStone_Middle,Recovery Stone (Middle),6,10,,100,,,,,,,,,,,,,{},{},{} -6743,HPStone_Middle,HP Stone (Middle),6,10,,100,,,,,,,,,,,,,{},{},{} -6744,SPStone_Middle,SP Stone (Middle),6,10,,100,,,,,,,,,,,,,{},{},{} -6745,HealStone_Bottom,Recovery Stone (Low),6,20,,10,,,,,,,,,,,,,{},{},{} -6746,Iron_Artifacts,Steel Artifact,3,10,,0,,,,,,,,,,,,,{},{},{} -6747,Iron_Artifacts_,Steel Artifact,3,10,,0,,,,,,,,,,,,,{},{},{} -6748,Excavator_Repoet,Daily Report He And His Team,3,10,,0,,,,,,,,,,,,,{},{},{} -6749,Power_Control_Device,Operation Control Device,3,10,,0,,,,,,,,,,,,,{},{},{} -6750,Failed_Engine,Failed Engine,3,10,,10,,,,,,,,,,,,,{},{},{} -6751,Crushed_Can_Iron_Plate,Crushed Can Iron Plate,3,10,,10,,,,,,,,,,,,,{},{},{} -6752,Charleston_Parts,Charleston Parts,3,10,,10,,,,,,,,,,,,,{},{},{} -6753,Sign_Of_Destruction,Token Of Destruction,3,10,,0,,,,,,,,,,,,,{},{},{} -6754,Collected_Herb,Collected Medicinal Herbs,3,10,,0,,,,,,,,,,,,,{},{},{} -6755,Contaminated_Magic,Contaminated Magic,3,20,,10,,,,,,,,,,,,,{},{},{} -6756,Condensed_Energy,Cohesive Energy,3,20,,0,,,,,,,,,,,,,{},{},{} -6757,Memory_Record,The Memory Recorder,3,20,,0,,,,,,,,,,,,,{},{},{} - -6762,Banana_Can,Banana Can,3,0,,10,,,,,,,,,,,,,{},{},{} -6763,Spicy_Rice_Cake,Spicy Rice Cake,3,0,,10,,,,,,,,,,,,,{},{},{} -6764,Hotdog,Hot Dog,3,0,,10,,,,,,,,,,,,,{},{},{} -6765,Big_Wheel_Cracker,Ferris Wheel Biscuit,3,0,,10,,,,,,,,,,,,,{},{},{} -6766,Ice_World_Ticket,Tickets Ice Kingdom,3,0,,0,,,,,,,,,,,,,{},{},{} -6767,Summer_Fes_Coin,Summer Festival Coins,3,0,,0,,,,,,,,,,,,,{},{},{} -6768,Red_Beans_Of_Ice,Shaved Ice For Red Beans,3,0,,0,,,,,,,,,,,,,{},{},{} -6769,Sweet_Rice_Cake,Sweet Bread,3,0,,0,,,,,,,,,,,,,{},{},{} -6770,Shark,Shark,3,1,,10,,,,,,,,,,,,,{},{},{} -6771,Bluefin_Tuna,Bonito,3,1,,10,,,,,,,,,,,,,{},{},{} -6772,Octopus,Octopus,3,1,,10,,,,,,,,,,,,,{},{},{} -6773,Snapper,Sea Bream,3,1,,10,,,,,,,,,,,,,{},{},{} -6774,Piranha,Piranha,3,1,,10,,,,,,,,,,,,,{},{},{} -6775,Salmon,Salmon,3,1,,10,,,,,,,,,,,,,{},{},{} -6776,Eels,Eel,3,1,,10,,,,,,,,,,,,,{},{},{} -6777,Carp,Carp,3,1,,10,,,,,,,,,,,,,{},{},{} -6778,Squid_2,Squid,3,1,,10,,,,,,,,,,,,,{},{},{} -6779,Mackerel,Mackerel,3,1,,10,,,,,,,,,,,,,{},{},{} -6780,Crucian_Carp,Crucian Carp,3,1,,10,,,,,,,,,,,,,{},{},{} -6781,Living_Earthworm,Earthworms Alive,3,1,,10,,,,,,,,,,,,,{},{},{} -6782,Fresh_Lobster,Fresh Shrimp,3,1,,10,,,,,,,,,,,,,{},{},{} -6784,Squid_Skewer,Squid Skewer,3,0,,0,,,,,,,,,,,,,{},{},{} -6785,Fantastic_Sauce,Source Of Fantasy,3,0,,0,,,,,,,,,,,,,{},{},{} -6786,Squid_Of_Bbq,Squid Barbecue,3,0,,0,,,,,,,,,,,,,{},{},{} -6787,Good_Firewood,Long Firewood,3,0,,0,,,,,,,,,,,,,{},{},{} -6788,Rose_Knife,Rose Knife,3,0,,0,,,,,,,,,,,,,{},{},{} -6789,Custom_Pan,Customized Plates,3,0,,0,,,,,,,,,,,,,{},{},{} -6790,BigStone_Top,Large Stone (Upper),6,10,,100,,,,,,,,,,,,,{},{},{} -6791,MediumStone_Top,Medium Stone (Upper),6,10,,100,,,,,,,,,,,,,{},{},{} -6792,SmallStone_Top,Small Stone (Upper),6,10,,100,,,,,,,,,,,,,{},{},{} -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,,,,,,,,,,,,,{},{},{} -6813,Kafra_Ticket,Kafra Ticket,3,10,,10,,,,,,,,,,,,,{},{},{} -6814,Swordman_Soul,Swordman Soul,3,10,,10,,,,,,,,,,,,,{},{},{} -6815,Merchant_Soul,Merchant Soul,3,10,,10,,,,,,,,,,,,,{},{},{} -6816,Thief_Soul,Thief Soul,3,10,,10,,,,,,,,,,,,,{},{},{} -6817,Mage_Soul,Mage Soul,3,10,,10,,,,,,,,,,,,,{},{},{} -6818,Archer_Soul,Archer Soul,3,10,,10,,,,,,,,,,,,,{},{},{} -6819,Acolyte_Soul,Acolyte Soul,3,10,,10,,,,,,,,,,,,,{},{},{} -6820,Particles_Of_Energy,Energy Fragment,3,0,,10,,,,,,,,,,,,,{},{},{} -6821,Solo_Troops_Badge,Single Union Badge,3,0,,0,,,,,,,,,,,,,{},{},{} -6824,Lab_Memory_Record,Experimental Dong Memory Record,3,10,,10,,,,,,,,,,,,,{},{},{} -6825,Air_Cleaner_Box,Air Cleaner Box,3,10,,10000,,,,,,,,,,,,,{},{},{} -6826,Fresh_Grapes,Fresh Grapes,3,10,,100,,,,,,,,,,,,,{},{},{} -6827,Normal_Parts,Complete Machine Parts,3,10,,0,,,,,,,,,,,,,{},{},{} -6828,Gravity_Parts,Gravity Safety Device,3,10,,100,,,,,,,,,,,,,{},{},{} -6832,Questioned_Parts,Questioned Parts,3,10,,10,,,,,,,,,,,,,{},{},{} -6833,Limited_Token_of_Ziegfried,(Limited) Token of Ziegfried,3,10,,10,,,,,,,,,,,,,{},{},{} -6834,Legendary_Fur,Legendary Fur,3,10,,10,,,,,,,,,,,,,{},{},{} -6835,Legendary_Mane,Legendary Mane,3,10,,10,,,,,,,,,,,,,{},{},{} -6836,Talisman_Of_Soul,Talisman Of Soul,3,10,,0,,,,,,,,,,,,,{},{},{} -6837,Piece_Of_Soul_Mouse,Piece Of Soul Mouse,3,10,,0,,,,,,,,,,,,,{},{},{} -6838,Secret_Orders_Of_Prophet_K,Secret Orders Of Prophet K,3,10,,0,,,,,,,,,,,,,{},{},{} -6839,Gold_Choco_Coin,Gold Choco Coin,3,10,,0,,,,,,,,,,,,,{},{},{} -6840,Silver_Choco_Coin,Silver Choco Coin,3,10,,0,,,,,,,,,,,,,{},{},{} -6841,Bronze_Choco_Coin,Bronze Choco Coin,3,10,,0,,,,,,,,,,,,,{},{},{} -6842,Huge_Jewery,Huge Jewery,3,10,,0,,,,,,,,,,,,,{},{},{} -6843,Thin_Ring,Thin Ring,3,10,,0,,,,,,,,,,,,,{},{},{} -6844,Mild_Stone,Mild Stone,3,10,,0,,,,,,,,,,,,,{},{},{} -6845,That_Thing,That Thing,3,10,,0,,,,,,,,,,,,,{},{},{} -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,,,,,,,,,,,,,{},{},{} -6864,Safe_to_19_Weapon_Certificate,Safe to 19 Weapon Certificate,3,10,,0,,,,,,,,,,,,,{},{},{} -6865,Safe_to_19_Armor_Certificate,Safe to 19 Armor Certificate,3,10,,0,,,,,,,,,,,,,{},{},{} -6866,Piece_Of_Soul_Rabbit,Piece Of Soul Rabbit,3,0,,0,,,,,,,,,,,,,{},{},{} -6867,Large_Insect_Barrel,Large Insect Barrel,3,0,,0,,,,,,,,,,,,,{},{},{} -6868,Medium_Insect_Barrel,Medium Insect Barrel,3,0,,0,,,,,,,,,,,,,{},{},{} -6869,Dust,Dust,3,0,,0,,,,,,,,,,,,,{},{},{} -6870,Safe_to_13_Weapon_Certificate,Safe to 13 Weapon Certificate,3,10,,0,,,,,,,,,,,,,{},{},{} -6871,Safe_to_14_Weapon_Certificate,Safe to 14 Weapon Certificate,3,10,,0,,,,,,,,,,,,,{},{},{} -6872,Safe_to_15_Weapon_Certificate,Safe to 15 Weapon Certificate,3,10,,0,,,,,,,,,,,,,{},{},{} -6873,Safe_to_16_Weapon_Certificate,Safe to 16 Weapon Certificate,3,10,,0,,,,,,,,,,,,,{},{},{} -6874,Safe_to_17_Weapon_Certificate,Safe to 17 Weapon Certificate,3,10,,0,,,,,,,,,,,,,{},{},{} -6875,Safe_to_18_Weapon_Certificate,Safe to 18 Weapon Certificate,3,10,,0,,,,,,,,,,,,,{},{},{} -6876,Safe_to_13_Armor_Certificate,Safe to 13 Armor Certificate,3,10,,0,,,,,,,,,,,,,{},{},{} -6877,Safe_to_14_Armor_Certificate,Safe to 14 Armor Certificate,3,10,,0,,,,,,,,,,,,,{},{},{} -6878,Safe_to_15_Armor_Certificate,Safe to 15 Armor Certificate,3,10,,0,,,,,,,,,,,,,{},{},{} -6879,Safe_to_16_Armor_Certificate,Safe to 16 Armor Certificate,3,10,,0,,,,,,,,,,,,,{},{},{} -6880,Safe_to_17_Armor_Certificate,Safe to 17 Armor Certificate,3,10,,0,,,,,,,,,,,,,{},{},{} -6881,Safe_to_18_Armor_Certificate,Safe to 18 Armor Certificate,3,10,,0,,,,,,,,,,,,,{},{},{} -6882,Advanced_Bait,Advanced Bait,3,10,,0,,,,,,,,,,,,,{},{},{} -6883,Pet_Snow_Bunny_Exchange_Ticket,Pet Snow Bunny Exchange Ticket,3,10,,10,,,,,,,,,,,,,{},{},{} -6884,Pet_Tikbalang_Exchange_Ticket,Pet Tikbalang Exchange Ticket,3,10,,10,,,,,,,,,,,,,{},{},{} -6885,Piece_Of_Soul_Dragon,Piece Of Soul Dragon,3,10,,0,,,,,,,,,,,,,{},{},{} -6886,Strong_Piece_Of_Soul_Dragon,Strong Piece Of Soul Dragon,3,10,,0,,,,,,,,,,,,,{},{},{} -6892,Invasion_Plan,Invasion Plan,3,10,,10,,,,,,,,,,,,,{},{},{} -6893,Human's_Cookbook,Human's Cookbook,3,10,,10,,,,,,,,,,,,,{},{},{} -6894,Champion_Badge,Champion Badge,3,10,,10,,,,,,,,,,,,,{},{},{} -6895,Processed_Ancient_Rune,Processed Ancient Rune,3,10,,0,,,,,,,,,,,,,{},{},{} -6896,Processed_Mystic_Rune,Processed Mystic Rune,3,10,,0,,,,,,,,,,,,,{},{},{} -6897,Blue_Whale,Blue Whale,3,10,,0,,,,,,,,,,,,,{},{},{} -6898,Whale,Whale,3,10,,0,,,,,,,,,,,,,{},{},{} -6899,Giant_Octopus,Giant Octopus,3,10,,0,,,,,,,,,,,,,{},{},{} -6900,Giant_Squid,Giant Squid,3,10,,0,,,,,,,,,,,,,{},{},{} -6901,Sturgeon,Sturgeon,3,10,,0,,,,,,,,,,,,,{},{},{} -6902,King_Lobster,King Lobster,3,10,,0,,,,,,,,,,,,,{},{},{} -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,ASPDStone_Robe,Stone ASPD (Garment),6,20,,100,,,,,,,,,,,,,{ bonus bAspd,1; },{},{} -6909,Actinidia_Cat_Fruit,Actinidia Cat Fruit,3,10,,0,,,,,,,,,,,,,{},{},{} -6910,Limited_Purified_Oridecon,(Limited) Purified Oridecon,3,10,,10,,,,,,,,,,,,,{},{},{} -6911,Limited_Purified_Eluminium,(Limited) Purified Eluminium,3,10,,10,,,,,,,,,,,,,{},{},{} -6912,Piece_Of_Soul_Sheep,Piece Of Soul Sheep,3,10,,0,,,,,,,,,,,,,{},{},{} -6913,Holy_Rosary,Holy Rosary,3,10,,0,,,,,,,,,,,,,{},{},{} -6914,Black_Horn,Black Horn,3,10,,0,,,,,,,,,,,,,{},{},{} -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,TokenOfHonor,Honor Token,3,10,,0,,,,,,,,,,,,,{},{},{} -6920,Rune_Magic_Powder,Rune Magic Powder,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,Midgards_Histories,Rune-Midgarts 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,,0,,,,,,,,,,,,,{},{},{} -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,Worn-Out Belt,3,10,,10,,,,,,,,,,,,,{},{},{} -6940,Moving_Dark_Matter,Moving Black Material,3,10,,10,,,,,,,,,,,,,{},{},{} -6941,Fragments_Valkyrie_Power,Fragments Valkyrie Power,3,10,,10,,,,,,,,,,,,,{},{},{} -6942,Will_Master,Will Master,3,10,,10,,,,,,,,,,,,,{},{},{} -6943,ATKStone_Top,ATK Stone (Upper),6,10,,100,,,,,,,,,,,,,{},{},{} -6944,MATKStone_Top,MATK Stone (Upper),6,10,,100,,,,,,,,,,,,,{},{},{} -6945,STRStone_Middle,STR Stone (Middle),6,10,,100,,,,,,,,,,,,,{},{},{} -6946,INTStone_Middle,INT Stone (Middle),6,10,,100,,,,,,,,,,,,,{},{},{} -6947,AGIStone_Middle,AGI Stone (Middle),6,10,,100,,,,,,,,,,,,,{},{},{} -6948,DEXStone_Middle,DEX Stone (Middle),6,10,,100,,,,,,,,,,,,,{},{},{} -6949,VITStone_Middle,VIT Stone (Middle),6,10,,100,,,,,,,,,,,,,{},{},{} -6950,LUKStone_Middle,LUK Stone (Middle),6,10,,100,,,,,,,,,,,,,{},{},{} -6951,HPStone_Bottom,HP Stone (Lower),6,10,,100,,,,,,,,,,,,,{},{},{} -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,,,,,,,,,,,,,{},{},{} -6960,Air_Stronghold_Key,Sky Fortress Key,3,10,,10,,,,,,,,,,,,,{},{},{} -6961,LargeScrap,Huge Metal Scrap,3,10,0,1000,,,,,,,,,,,,,{},{},{} -6962,OldTank,Old Fuel,3,10,0,100,,,,,,,,,,,,,{},{},{} -6963,HPdrainStone_Robe,HP Absorption Stone (Garment),3,10,,100,,,,,,,,,,,,,{},{},{} -6964,SPdrainStone_Robe,SP Absorption Stone (Garment),3,10,,100,,,,,,,,,,,,,{},{},{} -6965,Reactor_P_FIRE_,Fire Property Reactor Blueprint,3,0,,10,,,,,,,,,,,,,{},{},{} -6966,Reactor_P_WATER_,Water Property Reactor Blueprint,3,0,,10,,,,,,,,,,,,,{},{},{} -6967,Reactor_P_GROUND_,Earth Property Reactor Blueprint,3,0,,10,,,,,,,,,,,,,{},{},{} -6968,Reactor_P_WIND_,Wind Property Reactor Blueprint,3,0,,10,,,,,,,,,,,,,{},{},{} -6969,Reactor_T_FIRE_,Fire Resistance Reactor Blueprint,3,0,,10,,,,,,,,,,,,,{},{},{} -6970,Reactor_T_WATER_,Water Resistance Reactor Blueprint,3,0,,10,,,,,,,,,,,,,{},{},{} -6971,Reactor_T_GROUND_,Earth Resistance Reactor Blueprint,3,0,,10,,,,,,,,,,,,,{},{},{} -6972,Reactor_T_WIND_,Wind Resistance Reactor Blueprint,3,0,,10,,,,,,,,,,,,,{},{},{} -6973,Reactor_Cure_101_,Recovery101 Reactor Blueprint,3,0,,10,,,,,,,,,,,,,{},{},{} -6974,Reactor_Cure_102_,Recovery102 Reactor Blueprint,3,0,,10,,,,,,,,,,,,,{},{},{} -6975,Reactor_Cure_201_,Recovery201 Reactor Blueprint,3,0,,10,,,,,,,,,,,,,{},{},{} -6976,Reactor_Cure_202_,Recovery202 Reactor Blueprint,3,0,,10,,,,,,,,,,,,,{},{},{} -6977,Reactor_A_STR_,STR Reactor Blueprint,3,0,,10,,,,,,,,,,,,,{},{},{} -6978,Reactor_A_INT_,INT Reactor Blueprint,3,0,,10,,,,,,,,,,,,,{},{},{} -6979,Reactor_A_DEF_,DEF Reactor Blueprint,3,0,,10,,,,,,,,,,,,,{},{},{} -6980,Reactor_A_AVOI_,Perfect Dodge Reactor Blueprint,3,0,,10,,,,,,,,,,,,,{},{},{} -6981,Reactor_A_ATK_,Attack Reactor Blueprint,3,0,,10,,,,,,,,,,,,,{},{},{} -6982,Reactor_A_MATK_,Magical Reactor Blueprint,3,0,,10,,,,,,,,,,,,,{},{},{} -6983,Reactor_A_MHP_,HP Reactor Blueprint,3,0,,10,,,,,,,,,,,,,{},{},{} -6984,Reactor_A_MSP_,SP Reactor Blueprint,3,0,,10,,,,,,,,,,,,,{},{},{} -6985,Reactor_A_FROZ_,Frozen Reactor Blueprint,3,0,,10,,,,,,,,,,,,,{},{},{} -6986,Reactor_A_ASPD_,ASPD Reactor Blueprint,3,0,,10,,,,,,,,,,,,,{},{},{} -6999,HPdrainStone_Top,HP Absorption Stone (Upper),3,10,,100,,,,,,,,,,,,,{},{},{} - -// -7001,Mould_Powder,Mould Powder,3,466,,10,,,,,,,,,,,,,{},{},{} -7002,Ogre_Tooth,Ogre Tooth,3,658,,10,,,,,,,,,,,,,{},{},{} -7003,Anolian_Skin,Anolian Skin,3,968,,10,,,,,,,,,,,,,{},{},{} -7004,Mud_Lump,Mud Lump,3,876,,10,,,,,,,,,,,,,{},{},{} -7005,Skull,Skull,3,1044,,10,,,,,,,,,,,,,{},{},{} -7006,Wing_Of_Red_Bat,Wing of Red Bat,3,168,,10,,,,,,,,,,,,,{},{},{} -7007,Claw_Of_Rat,Claw of Rat,3,748,,10,,,,,,,,,,,,,{},{},{} -7008,Stiff_Horn,Stiff Horn,3,636,,10,,,,,,,,,,,,,{},{},{} -7009,Glitter_Shell,Glitter Shell,3,528,,10,,,,,,,,,,,,,{},{},{} -7010,Tail_Of_Steel_Scorpion,Tail of Steel Scorpion,3,548,,10,,,,,,,,,,,,,{},{},{} -7011,Claw_Of_Monkey,Claw of Monkey,3,466,,10,,,,,,,,,,,,,{},{},{} -7012,Tough_Scalelike_Stem,Tough Scalelike Stem,3,412,,10,,,,,,,,,,,,,{},{},{} -7013,Coral_Reef,Coral Reef,3,772,,10,,,,,,,,,,,,,{},{},{} -7014,Old_Portrait,Old Portrait,3,1500,,100,,,,,,,,,,,,,{},{},{} -7015,Bookclip_In_Memory,Bookclip in Memory,3,3000,,20,,,,,,,,,,,,,{},{},{} -7016,Spoon_Stub,Spoon Stub,3,2500,,20,,,,,,,,,,,,,{},{},{} -7017,Executioner's_Mitten,Executioner's Mitten,3,4500,,30,,,,,,,,,,,,,{},{},{} -7018,Young_Twig,Young Twig,3,50,,10,,,,,,,,,,,,,{},{},{} -7019,Loki's_Whispers,Loki's Whispers,3,20,,10,,,,,,,,,,,,,{},{},{} -7020,Mother's_Nightmare,Mother's Nightmare,3,20,,10,,,,,,,,,,,,,{},{},{} -7021,Foolishness_Of_Blind,Foolishness of the Blind,3,20,,10,,,,,,,,,,,,,{},{},{} -7022,Old_Hilt,Old Hilt,3,150,,30,,,,,,,,,,,,,{},{},{} -7023,Blade_Lost_In_Darkness,Blade Lost in Darkness,3,12000,,40,,,,,,,,,,,,,{},{},{} -7024,Bloody_Edge,Bloody Edge,3,10000,,40,,,,,,,,,,,,,{},{},{} -7025,Lucifer's_Lament,Lucifer's Lament,3,30000,,50,,,,,,,,,,,,,{},{},{} -7026,Key_Of_Clock_Tower,Key of Clock Tower,3,100,,30,,,,,,,,,,,,,{},{},{} -7027,Underground_Key,Key of Underground,3,100,,30,,,,,,,,,,,,,{},{},{} -7028,Invite_For_Duel,Invite for Duel,3,0,,0,,,,,,,,,,,,,{},{},{} -7029,Admission_For_Duel,Admission for Duel,3,0,,0,,,,,,,,,,,,,{},{},{} -7030,Claw_Of_Desert_Wolf,Claw of Desert Wolf,3,208,,10,,,,,,,,,,,,,{},{},{} -7031,Old_Frying_Pan,Old Frying Pan,3,196,,10,,,,,,,,,,,,,{},{},{} -7032,Piece_Of_Egg_Shell,Piece of Egg Shell,3,168,,10,,,,,,,,,,,,,{},{},{} -7033,Poison_Spore,Poison Spore,3,114,,10,,,,,,,,,,,,,{},{},{} -7034,Red_Socks_With_Holes,Red Stocking,3,100,,10,,,,,,,,,,,,,{},{},{} -7035,Matchstick,Matchstick,3,100,,10,,,,,,,,,,,,,{},{},{} -7036,Fang_Of_Garm,Fang of Hatii,3,100,,10,,,,,,,,,,,,,{},{},{} -7037,Trade_Coupon,Coupon,2,100,,0,,,,,,,,,,,,,{ /*set pcroom,(gettimetick(2)+7200);*/ },{},{} -7038,Yarn,Yarn,3,100,,10,,,,,,,,,,,,,{},{},{} -7039,Novice_Nametag,Newbie Tag,3,0,,10,,,,,,,,,,,,,{},{},{} -7040,Megaphone,Megaphone,3,1,,10,,,,,,,,,,,,,{},{},{} -7041,Fine_Grit,Fine Grit,3,120,,10,,,,,,,,,,,,,{},{},{} -7042,Leather_Bag_Of_Infinity,Leather Bag of Infinity,3,1,,10,,,,,,,,,,,,,{},{},{} -7043,Fine_Sand,Fine Sand,3,100,,10,,,,,,,,,,,,,{},{},{} -7044,Vigorgra,Vigorgra,3,1,,10,,,,,,,,,,,,,{},{},{} -7045,Magic_Paint,Magic Paint,3,1,,10,,,,,,,,,,,,,{},{},{} -7046,Cart_Parts,Cart Parts,3,1,,10,,,,,,,,,,,,,{},{},{} -7047,Alice's_Apron,Alice's Apron,3,2424,,10,,,,,,,,,,,,,{},{},{} -7048,Talon_Of_Griffin,Talon of Griffon,3,5418,,10,,,,,,,,,,,,,{},{},{} -7049,Stone,Stone,3,0,,30,,,,,,,,,,,,,{},{},{} -7050,Cotton_Mat,Cotton Mat,3,100,,10,,,,,,,,,,,,,{},{},{} -7051,Silk_Mat,Silk Mat,3,100,,10,,,,,,,,,,,,,{},{},{} -7052,Old_Magazine,Old Papers,3,100,,10,,,,,,,,,,,,,{},{},{} -7053,Cyfar,Cyfar,3,772,,10,,,,,,,,,,,,,{},{},{} -7054,Brigan,Brigan,3,746,,10,,,,,,,,,,,,,{},{},{} -7055,Animal_Pooopoo,Animal Poop,3,100,,50,,,,,,,,,,,,,{},{},{} -7056,Payroll_Of_Kafra,Payment Statement for Kafra Employee,3,1,,50,,,,,,,,,,,,,{},{},{} -7057,Gallar_Horn,Gjallar,3,1,,500,,,,,,,,,,,,,{},{},{} -7058,Gullraifnir,Gleipnir,3,1,,500,,,,,,,,,,,,,{},{},{} -7059,Cargo_Free_Ticket,Free Ticket for Kafra Storage,3,1,,0,,,,,,,,,,,,,{},{},{} -7060,Warp_Free_Ticket,Free Ticket for Kafra Transportation,3,1,,0,,,,,,,,,,,,,{},{},{} -7061,Cart_Free_Ticket,Free Ticket for the Cart Service,3,1,,0,,,,,,,,,,,,,{},{},{} -7062,Broken_Turtle_Shell,Broken Turtle Shell,3,280,,10,,,,,,,,,,,,,{},{},{} -7063,Soft_Feather,Soft Feather,3,280,,10,,,,,,,,,,,,,{},{},{} -7064,Dragon_Fly_Wing,Wing of Dragonfly,3,520,,10,,,,,,,,,,,,,{},{},{} -7065,Sea_Otter_Leather,Sea-Otter Fur,3,820,,10,,,,,,,,,,,,,{},{},{} -7066,Ice_Piece,Ice Cubic,3,660,,10,,,,,,,,,,,,,{},{},{} -7067,Stone_Piece,Stone Fragment,3,640,,10,,,,,,,,,,,,,{},{},{} -7068,Burn_Tree,Burnt Tree,3,722,,10,,,,,,,,,,,,,{},{},{} -7069,Broken_Armor_Piece,Destroyed Armor,3,1042,,10,,,,,,,,,,,,,{},{},{} -7070,Broken_Shell,Broken Shell,3,900,,10,,,,,,,,,,,,,{},{},{} -7071,Tatters_Clothes,Tattered Clothes,3,1280,,10,,,,,,,,,,,,,{},{},{} -7072,Rust_Suriken,Old Shuriken,3,1780,,10,,,,,,,,,,,,,{},{},{} -7073,Jewel_Of_Prayer,Freya's Jewel,3,1,,500,,,,,,,,,,,,,{},{},{} -7074,Iron_Glove,Thor's Gauntlets,3,1,,500,,,,,,,,,,,,,{},{},{} -7075,Iron_Maiden,Iron Maiden,3,1,,500,,,,,,,,,,,,,{},{},{} -7076,Mystery_Wheel,Wheel of the Unknown,3,1,,500,,,,,,,,,,,,,{},{},{} -7077,Silver_Fancy,Silver Ornament,3,1,,500,,,,,,,,,,,,,{},{},{} -7078,Anger_Of_Valkurye,Wrath of Valkyrie,3,1,,500,,,,,,,,,,,,,{},{},{} -7079,Feather_Of_Angel,Feather of Angel Wing,3,1,,500,,,,,,,,,,,,,{},{},{} -7080,Foot_Step_Of_Cat,Cat Tread,3,1,,500,,,,,,,,,,,,,{},{},{} -7081,Beard_Of_Women,Woman's Moustache,3,1,,500,,,,,,,,,,,,,{},{},{} -7082,Root_Of_Stone,Root of Stone,3,1,,500,,,,,,,,,,,,,{},{},{} -7083,Soul_Of_Fish,Spirit of Fish,3,1,,500,,,,,,,,,,,,,{},{},{} -7084,Saliva_Of_Bird,Sputum of Bird,3,1,,500,,,,,,,,,,,,,{},{},{} -7085,Tendon_Of_Bear,Sinew of Bear,3,1,,500,,,,,,,,,,,,,{},{},{} -7086,Symbol_Of_Sun,Emblem of the Sun God,3,1,,500,,,,,,,,,,,,,{},{},{} -7087,Breath_Of_Soul,Breath of Spirit,3,1,,500,,,,,,,,,,,,,{},{},{} -7088,Crystal_Of_Snow,Snow Crystal,3,1,,500,,,,,,,,,,,,,{},{},{} -7089,Indication_Of_Tempest,Omen of Tempest,3,1,,500,,,,,,,,,,,,,{},{},{} -7090,Slilince_Wave,Ripple,3,1,,500,,,,,,,,,,,,,{},{},{} -7091,Rough_Billows,Billow,3,1,,500,,,,,,,,,,,,,{},{},{} -7092,Air_Stream,Drifting Air,3,1,,500,,,,,,,,,,,,,{},{},{} -7093,Wheel,Cogwheel,3,1512,,10,,,,,,,,,,,,,{},{},{} -7094,Mystery_Piece,Fragment,3,1344,,10,,,,,,,,,,,,,{},{},{} -7095,Broken_Steel_Piece,Metal Fragment,3,1075,,10,,,,,,,,,,,,,{},{},{} -7096,Cold_Magma,Lava,3,1109,,10,,,,,,,,,,,,,{},{},{} -7097,Burning_Heart,Burning Heart,3,924,,10,,,,,,,,,,,,,{},{},{} -7098,Live_Coal,Live Coal,3,638,,10,,,,,,,,,,,,,{},{},{} -7099,Old_Magic_Circle,Worn-out Magic Scroll,3,773,,10,,,,,,,,,,,,,{},{},{} -7100,Sharp_Leaf,Sharp Leaf,3,806,,10,,,,,,,,,,,,,{},{},{} -7101,Peco_Wing_Feather,Peco Peco Feather,3,454,,10,,,,,,,,,,,,,{},{},{} -7102,Hideous_Dream,Nightmare,3,1075,,10,,,,,,,,,,,,,{},{},{} -7103,Unknown_Liquid_Bottle,Unknown Liquid Bottle,3,10,,10,,,,,,,,,,,,,{},{},{} -7104,Fake_Angel_Wing,False Angel Wing,3,756,,10,,,,,,,,,,,,,{},{},{} -7105,Fake_Angel_Loop,False Heaven Ring,3,924,,10,,,,,,,,,,,,,{},{},{} -7106,Goat's_Horn,Antelope Horn,3,672,,10,,,,,,,,,,,,,{},{},{} -7107,Gaoat's_Skin,Antelope Skin,3,756,,10,,,,,,,,,,,,,{},{},{} -7108,Boroken_Shiled_Piece,Piece of Shield,3,1680,,10,,,,,,,,,,,,,{},{},{} -7109,Shine_Spear_Blade,Shining Spear Blade,3,840,,10,,,,,,,,,,,,,{},{},{} -7110,Vroken_Sword,Broken Sword,3,588,,10,,,,,,,,,,,,,{},{},{} -7111,Smooth_Paper,Slick Paper,3,706,,10,,,,,,,,,,,,,{},{},{} -7112,Fright_Paper_Blade,Sharp Paper,3,907,,10,,,,,,,,,,,,,{},{},{} -7113,Broken_Pharaoh_Symbol,Broken Pharaoh Emblem,3,2016,,10,,,,,,,,,,,,,{},{},{} -7114,Tutankhamen's_Mask,Masque of Tutankhamen,3,10,,10,,,,,,,,,,,,,{},{},{} -7115,Harpy's_Feather,Harpy Feather,3,1142,,10,,,,,,,,,,,,,{},{},{} -7116,Harpy's_Claw,Harpy Talon,3,1210,,10,,,,,,,,,,,,,{},{},{} -7117,Rent_Spell_Book,Torn Magic Book,3,1142,,10,,,,,,,,,,,,,{},{},{} -7118,Rent_Scroll,Torn Scroll,3,1361,,10,,,,,,,,,,,,,{},{},{} -7119,Spawns,Bacillus,3,1025,,10,,,,,,,,,,,,,{},{},{} -7120,Burning_Horse_Shoe,Burning Horseshoe,3,823,,10,,,,,,,,,,,,,{},{},{} -7121,Honey_Jar,Honey Pot,3,622,,10,,,,,,,,,,,,,{},{},{} -7122,Hot_Hair,Burning Hair,3,974,,10,,,,,,,,,,,,,{},{},{} -7123,Dragon's_Skin,Dragon Skin,3,1025,,10,,,,,,,,,,,,,{},{},{} -7124,Sand_Lump,Sand Clump,3,706,,10,,,,,,,,,,,,,{},{},{} -7125,Scropion's_Nipper,Scorpion Claw,3,706,,10,,,,,,,,,,,,,{},{},{} -7126,Large_Jellopy,Large Jellopy,3,840,,10,,,,,,,,,,,,,{},{},{} -7127,Alcol_Create_Book,Alcohol Creation Guide,3,100000,,10,,,,,,,,,,,,,{},{},{} -7128,FireBottle_Create_Book,Bottle Grenade Creation Guide,3,100000,,10,,,,,,,,,,,,,{},{},{} -7129,Acid_Create_Book,Acid Bottle Creation Guide,3,100000,,10,,,,,,,,,,,,,{},{},{} -7130,Plant_Create_Book,Plant Bottle Creation Guide,3,100000,,10,,,,,,,,,,,,,{},{},{} -7131,Mine_Create_Book,Marine Sphere Creation Guide,3,100000,,10,,,,,,,,,,,,,{},{},{} -7132,Coating_Create_Book,Glistening Coat Creation Guide,3,100000,,10,,,,,,,,,,,,,{},{},{} -7133,Slim_Potion_Create_Book,Condensed Potion Creation Guide,3,240000,,10,,,,,,,,,,,,,{},{},{} -7134,Medicine_Bowl,Medicine Bowl,3,8,,10,,,,,,,,,,,,,{},{},{} -7135,Fire_Bottle,Bottle Grenade,3,200,,10,,,,,,,,,,,,,{},{},{} -7136,Acid_Bottle,Acid Bottle,3,200,,10,,,,,,,,,,,,,{},{},{} -7137,MenEater_Plant_Bottle,Plant Bottle,3,200,,10,,,,,,,,,,,,,{},{},{} -7138,Mini_Bottle,Marine Sphere Bottle,3,200,,10,,,,,,,,,,,,,{},{},{} -7139,Coating_Bottle,Glistening Coat,3,200,,10,,,,,,,,,,,,,{},{},{} -7140,Seed_Of_Life,Seed of Life,3,60000,,10,,,,,,,,,,,,,{},{},{} -7141,Yggdrasilberry_Dew,Morning Dew of Yggdrasil,3,20000,,10,,,,,,,,,,,,,{},{},{} -7142,Germination_Breed,Embryo,3,10,,10,,,,,,,,,,,,,{},{},{} -7143,Life_Force_Pot,Glass Tube,3,5000,,10,,,,,,,,,,,,,{},{},{} -7144,Normal_Potion_Book,Potion Creation Guide,3,100000,,10,,,,,,,,,,,,,{},{},{} -7145,Rag_T_Shirts,Ragnarok T-shirt,3,1,,10,,,,,,,,,,,,,{},{},{} -7146,Vacance_Ticket,Vacation Ticket,3,1,,10,,,,,,,,,,,,,{},{},{} -7147,Jasmin,Jasmine,3,1,,10,,,,,,,,,,,,,{},{},{} -7148,Mother_Letter,Mother's Letter,3,1,,10,,,,,,,,,,,,,{},{},{} -7149,Yellow_Plate,Yellow Plate,3,220,,10,,,,,,,,,,,,,{},{},{} -7150,Bamboo_Cut,Piece of Bamboo,3,310,,10,,,,,,,,,,,,,{},{},{} -7151,Oil_Paper,Oil Paper,3,210,,10,,,,,,,,,,,,,{},{},{} -7152,Glossy_Hair,Glossy Hair,3,340,,10,,,,,,,,,,,,,{},{},{} -7153,Old_Japaness_Clothes,Worn-out Kimono,3,590,,10,,,,,,,,,,,,,{},{},{} -7154,Poison_Powder,Poisonous Powder,3,160,,10,,,,,,,,,,,,,{},{},{} -7155,Poison_Toad's_Skin,Poisonous Toad Skin,3,280,,10,,,,,,,,,,,,,{},{},{} -7156,Broken_Shuriken,Broken Shuriken,3,470,,10,,,,,,,,,,,,,{},{},{} -7157,Black_Mask,Dark Mask,3,315,,10,,,,,,,,,,,,,{},{},{} -7158,Broken_Wine_Vessel,Broken Liquor Jar,3,160,,10,,,,,,,,,,,,,{},{},{} -7159,Tengu's_Nose,Tengu Nose,3,400,,10,,,,,,,,,,,,,{},{},{} -7160,Lord's_Passable_Ticket,Feudal Lord Permit,3,1,,10,,,,,,,,,,,,,{},{},{} -7161,Black_Bear's_Skin,Black Bear Skin,3,384,,10,,,,,,,,,,,,,{},{},{} -7162,Cloud_Piece,Cloud Crumb,3,390,,10,,,,,,,,,,,,,{},{},{} -7163,Sharp_Feeler,Hard Feeler,3,570,,10,,,,,,,,,,,,,{},{},{} -7164,Hard_Peach,Solid Peach,3,400,,10,,,,,,,,,,,,,{},{},{} -7165,Limpid_Celestial_Robe,Transparent Celestial Robe,3,650,,10,,,,,,,,,,,,,{},{},{} -7166,Soft_Silk_Cloth,Soft Silk,3,1200,,10,,,,,,,,,,,,,{},{},{} -7167,Mystery_Iron_Bit,Strange Steel Piece,3,430,,10,,,,,,,,,,,,,{},{},{} -7168,Great_Wing,Giant Butterfly Wing,3,614,,10,,,,,,,,,,,,,{},{},{} -7169,Taegeuk_Plate,Ba Gua,3,2800,,10,,,,,,,,,,,,,{},{},{} -7170,Tuxedo,Tuxedo,3,43000,,10,,,,,,,,,,,,,{},{},{} -7171,Leopard_Skin,Leopard Skin,3,282,,10,,,,,,,,,,,,,{},{},{} -7172,Leopard_Talon,Leopard Claw,3,290,,10,,,,,,,,,,,,,{},{},{} -7173,BurnBuster_Bag,iROGM02's Backpack,3,0,,10,,,,,,,,,,,,,{},{},{} -7174,Packing_Ribbon,Wrapping Lace,3,0,,10,,,,,,,,,,,,,{},{},{} -7175,Packing_Paper,Wrapping Paper,3,0,,10,,,,,,,,,,,,,{},{},{} -7176,XMAS_Coupon,Royal Certificate,3,0,,10,,,,,,,,,,,,,{},{},{} -7177,Part_Of_Star's_Sob,Crumb of Sobbing Starlight,3,0,,0,,,,,,,,,,,,,{},{},{} -7178,Star's_Sob,Sobbing Starlight,3,0,,0,,,,,,,,,,,,,{},{},{} -7179,Donation_Card,Proof of Donation,3,0,,10,,,,,,,,,,,,,{},{},{} -7180,Introduction_Of_Mr.Han,Hahn Sukbong's Recommendation,3,0,,10,,,,,,,,,,,,,{},{},{} -7181,Receipt_01,Receipt,3,0,,10,,,,,,,,,,,,,{},{},{} -7182,Cacao,Cacao,3,200,,20,,,,,,,,,,,,,{},{},{} -7183,Sister_Letter,Letter from Sister,3,0,,10,,,,,,,,,,,,,{},{},{} -7184,Piano_Keyboard,Piano Key,3,0,,10,,,,,,,,,,,,,{},{},{} -7185,Quiz_Ticket,Quiz Entry,3,0,,10,,,,,,,,,,,,,{},{},{} -7186,Thin_Stem,Thin Trunk,3,380,,10,,,,,,,,,,,,,{},{},{} -7187,Festival_Mask,Festival Mask,3,100,,10,,,,,,,,,,,,,{},{},{} -7188,Browny_Root,Brown Root,3,560,,10,,,,,,,,,,,,,{},{},{} -7189,Heart_Of_Tree,Wooden Heart,3,680,,10,,,,,,,,,,,,,{},{},{} -7190,Solid_Peeling,Solid Husk,3,140,,10,,,,,,,,,,,,,{},{},{} -7191,Lamplight,Lamp,3,0,,10,,,,,,,,,,,,,{},{},{} -7192,Blade_Of_Pinwheel,Vane,3,160,,10,,,,,,,,,,,,,{},{},{} -7193,Germinating_Sprout,Sprout,3,230,,10,,,,,,,,,,,,,{},{},{} -7194,Soft_Leaf,Soft Blade of Grass,3,400,,10,,,,,,,,,,,,,{},{},{} -7195,Air_Rifle,Slingshot,3,210,,10,,,,,,,,,,,,,{},{},{} -7196,Shoulder_Protection,Shoulder Protector,3,230,,10,,,,,,,,,,,,,{},{},{} -7197,Tough_Vines,Tough Vines,3,500,,10,,,,,,,,,,,,,{},{},{} -7198,Great_Leaf,Huge Leaf,3,610,,10,,,,,,,,,,,,,{},{},{} -7199,Coupon,Coupon,3,0,,10,,,,,,,,,,,,,{},{},{} -7200,Flexible_String,Elastic Band,3,380,,10,,,,,,,,,,,,,{},{},{} -7201,Log,Log,3,250,,10,,,,,,,,,,,,,{},{},{} -7202,Beetle_Nipper,Pincher of Beetle,3,290,,10,,,,,,,,,,,,,{},{},{} -7203,Solid_Twig,Strong Branch,3,190,,10,,,,,,,,,,,,,{},{},{} -7204,Gunpowder,Gunpowder,3,320,,10,,,,,,,,,,,,,{},{},{} -7205,Piece_Of_Black_Cloth,Piece of Black Cloth,3,526,,10,,,,,,,,,,,,,{},{},{} -7206,Black_Kitty_Doll,Black Cat Doll,3,1440,,10,,,,,,,,,,,,,{},{},{} -7207,Old_Manteau,Old Manteau,3,1050,,10,,,,,,,,,,,,,{},{},{} -7208,Rusty_Cleaver,Rusty Kitchen Knife,3,1780,,10,,,,,,,,,,,,,{},{},{} -7209,Dullahan's_Helm,Helm of Dullahan,3,1350,,10,,,,,,,,,,,,,{},{},{} -7210,Dullahan_Armor,Armor Piece of Dullahan,3,790,,10,,,,,,,,,,,,,{},{},{} -7211,Rojerta_Piece,Fragment of Rossata Stone,3,2600,,10,,,,,,,,,,,,,{},{},{} -7212,Hanging_Doll,Hung Doll,3,1020,,10,,,,,,,,,,,,,{},{},{} -7213,Needle_Pouch,Needle Packet,3,832,,10,,,,,,,,,,,,,{},{},{} -7214,Bat_Cage,Bat Cage,3,880,,10,,,,,,,,,,,,,{},{},{} -7215,Broken_Needle,Broken Needle,3,690,,10,,,,,,,,,,,,,{},{},{} -7216,Red_Scarf,Red Muffler,3,660,,10,,,,,,,,,,,,,{},{},{} -7217,Spool,Spool,3,424,,10,,,,,,,,,,,,,{},{},{} -7218,Rotten_Rope,Decomposed Rope,3,390,,10,,,,,,,,,,,,,{},{},{} -7219,Striped_Socks,Striped Sock,3,920,,10,,,,,,,,,,,,,{},{},{} -7220,Ectoplasm,Ectoplasm,3,322,,10,,,,,,,,,,,,,{},{},{} -7221,Tangled_Chain,Tangled Chains,3,740,,10,,,,,,,,,,,,,{},{},{} -7222,Tree_Knot,Wooden Gnarl,3,468,,10,,,,,,,,,,,,,{},{},{} -7223,Distorted_Portrait,Contorted Self-Portrait,3,2032,,10,,,,,,,,,,,,,{},{},{} -7224,Stone_Of_Intelligence,Stone of Sage,3,0,,10,,,,,,,,,,,,,{},{},{} -7225,Pumpkin_Bucket,Pumpkin Lantern,3,486,,10,,,,,,,,,,,,,{},{},{} -7226,Pill,Pellet,3,2,,10,,,,,,,,,,,,,{},{},{} -7227,TCG_Card,TCG Card,3,0,,10,,,,,,,,,,,,,{},{},{} -7228,Gold_Bullion,Gold Bullion,3,100000,,300,,,,,,,,,,,,,{},{},{} -7229,Silver_Bullion,Silver Bullion,3,50000,,300,,,,,,,,,,,,,{},{},{} -7230,White_Gold_Bullion,Platinum Bullion,3,200000,,300,,,,,,,,,,,,,{},{},{} -7231,Gold_Ore,Gold Ore,3,20,,150,,,,,,,,,,,,,{},{},{} -7232,Silver_Ore,Silver Ore,3,20,,150,,,,,,,,,,,,,{},{},{} -7233,Mithril_Ore,Mithril Ore,3,20,,150,,,,,,,,,,,,,{},{},{} -7234,Soul_Of_Guild,Spirit of Guild,3,0,,10,,,,,,,,,,,,,{},{},{} -7235,Soul_Of_Courage,Spirit of Charge,3,0,,10,,,,,,,,,,,,,{},{},{} -7236,Soul_Of_Guard,Spirit of Protection,3,0,,10,,,,,,,,,,,,,{},{},{} -7237,Soul_Of_Partnership,Spirit of Association,3,0,,10,,,,,,,,,,,,,{},{},{} -7238,Soul_Of_Correspondence,Spirit of Coordination,3,0,,10,,,,,,,,,,,,,{},{},{} -7239,Soul_Of_Proceeding,Spirit of Advance,3,0,,10,,,,,,,,,,,,,{},{},{} -7240,Soul_Of_Confidence,Spirit of Trust,3,0,,10,,,,,,,,,,,,,{},{},{} -7241,Soul_Of_Agreement,Spirit of Union,3,0,,10,,,,,,,,,,,,,{},{},{} -7242,Soul_Of_Harmony,Spirit of Combination,3,0,,10,,,,,,,,,,,,,{},{},{} -7243,Soul_Of_Cooperate,Spirit of Cooperation,3,0,,10,,,,,,,,,,,,,{},{},{} -7244,Soul_Of_Unity,Spirit of Solidarity,3,0,,10,,,,,,,,,,,,,{},{},{} -7245,Soul_Of_Friendship,Spirit of Friendship,3,0,,10,,,,,,,,,,,,,{},{},{} -7246,Soul_Of_Peace,Spirit of Peace,3,0,,10,,,,,,,,,,,,,{},{},{} -7247,Soul_Of_Spirit,Spirit of Determination,3,0,,10,,,,,,,,,,,,,{},{},{} -7248,Soul_Of_Honor,Spirit of Honor,3,0,,10,,,,,,,,,,,,,{},{},{} -7249,Soul_Of_Service,Spirit of Service,3,0,,10,,,,,,,,,,,,,{},{},{} -7250,Soul_Of_Glory,Spirit of Glory,3,0,,10,,,,,,,,,,,,,{},{},{} -7251,Soul_Of_Victory,Spirit of Victory,3,0,,10,,,,,,,,,,,,,{},{},{} -7252,Herb_Medicine,Herbal Medicine,3,0,,10,,,,,,,,,,,,,{},{},{} -7253,Taeguk_Flag,Golden Korean Flag,3,0,,10,,,,,,,,,,,,,{},{},{} -7254,Digital_Print_Ticket,Digital Picture Printing Coupon,3,0,,10,,,,,,,,,,,,,{},{},{} -7255,China_Marble01,Mystic Orb,3,0,,100,,,,,,,,,,,,,{},{},{} -7256,China_Marble02,Mystic Orb,3,0,,100,,,,,,,,,,,,,{},{},{} -7257,China_Marble03,Mystic Orb,3,0,,100,,,,,,,,,,,,,{},{},{} -7258,China_Marble04,Mystic Orb,3,0,,100,,,,,,,,,,,,,{},{},{} -7259,China_Marble05,Mystic Orb,3,0,,100,,,,,,,,,,,,,{},{},{} -7260,China_Marble06,Mystic Orb,3,0,,100,,,,,,,,,,,,,{},{},{} -7261,China_Marble07,Mystic Orb,3,0,,100,,,,,,,,,,,,,{},{},{} -7262,Fan,Folding Fan of Cat Ghost,3,466,,10,,,,,,,,,,,,,{},{},{} -7263,Cat_Eyed_Stone,Cat's Eye,3,954,,10,,,,,,,,,,,,,{},{},{} -7264,Dried_Sand,Dry Sand,3,322,,10,,,,,,,,,,,,,{},{},{} -7265,Dragon_Horn,Dragon Horn,3,544,,10,,,,,,,,,,,,,{},{},{} -7266,Dragon_Fang,Denture from Dragon Mask,3,436,,10,,,,,,,,,,,,,{},{},{} -7267,Tiger_Skin_Panties,Tiger Panty,3,298,,10,,,,,,,,,,,,,{},{},{} -7268,Little_Blacky_Ghost,Little Ghost Doll,3,1210,,10,,,,,,,,,,,,,{},{},{} -7269,Bib,Pinafore,3,960,,10,,,,,,,,,,,,,{},{},{} -7270,Milk_Bottle,Nursing Bottle,3,1100,,10,,,,,,,,,,,,,{},{},{} -7271,Figure,Novice Figure,3,10000,,10,,,,,,,,,,,,,{},{},{} -7272,Meat_Dumpling_Doll,Rice Ball Doll,3,500,,10,,,,,,,,,,,,,{},{},{} -7273,Golden_Necklace,RWC Necklace,3,2,,10,,,,,,,,,,,,,{},{},{} -7274,Ancient_Translator,Translated Ancient Language,3,0,,10,,,,,,,,,,,,,{},{},{} -7275,Ancient_Document,Record of Ancient Language,3,0,,10,,,,,,,,,,,,,{},{},{} -7276,Picture_Letter,Doodled Message,3,0,,0,,,,,,,,,,,,,{},{},{} -7277,Munak_Doll,Munak Doll,3,8900,,10,,,,,,,,,,,,,{},{},{} -7278,Wellbeing_Letter,Letter to Wife,3,0,,10,,,,,,,,,,,,,{},{},{} -7279,Vita500_Lid,Vita500 Lid,3,10,,10,,,,,,,,,,,,,{},{},{} -7280,Quiz_Ticket01,1st Quiz Entry,3,0,,10,,,,,,,,,,,,,{},{},{} -7281,Quiz_Ticket02,2nd Quiz Entry,3,0,,10,,,,,,,,,,,,,{},{},{} -7282,Quiz_Ticket03,3rd Quiz Entry,3,0,,10,,,,,,,,,,,,,{},{},{} -7283,Quiz_Ticket04,4th Quiz Entry,3,0,,10,,,,,,,,,,,,,{},{},{} -7284,Quiz_Ticket05,5th Quiz Entry,3,0,,10,,,,,,,,,,,,,{},{},{} -7285,Thread_Skein,Holy Threads,3,2,,10,,,,,,,,,,,,,{},{},{} -7286,Chilli,Red Chile,3,20,,10,,,,,,,,,,,,,{},{},{} -7287,Thread_Skein_,Holier Threads,3,2,,10,,,,,,,,,,,,,{},{},{} -7288,Thai_Ring,Engagement Ring,3,2,,10,,,,,,,,,,,,,{},{},{} -7289,Olivine,Peridot,3,3000,,100,,,,,,,,,,,,,{},{},{} -7290,Phlogopite,Phlogopite,3,3000,,100,,,,,,,,,,,,,{},{},{} -7291,Agate,Agate,3,3000,,100,,,,,,,,,,,,,{},{},{} -7292,Muscovite,Muscovite,3,3000,,100,,,,,,,,,,,,,{},{},{} -7293,Rose_Quartz,Rose Quartz,3,3000,,100,,,,,,,,,,,,,{},{},{} -7294,Turquoise,Turquoise,3,3000,,100,,,,,,,,,,,,,{},{},{} -7295,Citrine,Citrin,3,3000,,100,,,,,,,,,,,,,{},{},{} -7296,Pyroxene,Pyroxene,3,3000,,100,,,,,,,,,,,,,{},{},{} -7297,Biotite,Biotite,3,3000,,100,,,,,,,,,,,,,{},{},{} -7298,Leaf_Clothes,Fig Leaf,3,538,,10,,,,,,,,,,,,,{},{},{} -7299,Bamboo_Basket,Straw Basket,3,632,,10,,,,,,,,,,,,,{},{},{} -7300,Gemstone,Gemstone,3,1420,,10,,,,,,,,,,,,,{},{},{} -7301,Sword_Accessory,Tassel,3,798,,10,,,,,,,,,,,,,{},{},{} -7302,KRATHONG,Krathong,3,2,,10,,,,,,,,,,,,,{},{},{} -7303,Bag_Of_Rice,Straw Rice Bag,3,0,,800,,,,,,,,,,,,,{},{},{} -7304,Witch's_Spell_Book,Witch's Spell Scroll,3,0,,0,,,,,,,,,,,,,{},{},{} -7305,Authority_Of_Nine_World,Symbol of the Nine Realms,3,0,,0,,,,,,,,,,,,,{},{},{} -7306,Fragment_Of_Soul,Piece of Spirit,3,0,,0,,,,,,,,,,,,,{},{},{} -7307,Whisper_Of_Soul,Spiritual Whispers,3,0,,0,,,,,,,,,,,,,{},{},{} -7308,Witch's_Potion,Witch's Tonic,3,0,,0,,,,,,,,,,,,,{},{},{} -7309,Wing_Of_Crow,Crow Wing,3,0,,0,,,,,,,,,,,,,{},{},{} -7310,Free_Peco_Ticket,Free Ticket for Peco Ride,3,20,,10,,,,,,,,,,,,,{},{},{} -7311,Free_Flying_Ship_Ticket,Free Ticket for Flyship,3,20,,0,,,,,,,,,,,,,{},{},{} -7312,Jubilee,Jubilee,3,32,,10,,,,,,,,,,,,,{},{},{} -7313,Seal_Of_Witch,Witch's Medal,3,2,,0,,,,,,,,,,,,,{},{},{} -7314,The_Sign,The Sign,3,2,,0,,,,,,,,,,,,,{},{},{} -7315,Dark_Crystal_Fragment,Dark Crystal Fragment,3,422,,10,,,,,,,,,,,,,{},{},{} -7316,Long_Limb,Insect Leg,3,658,,10,,,,,,,,,,,,,{},{},{} -7317,Screw,Rusty Screw,3,534,,10,,,,,,,,,,,,,{},{},{} -7318,Old_Pick,Old Pick,3,512,,10,,,,,,,,,,,,,{},{},{} -7319,Old_Steel_Plate,Used Iron Plate,3,1024,,10,,,,,,,,,,,,,{},{},{} -7320,Air_Pollutant,Dust Pollutant,3,256,,10,,,,,,,,,,,,,{},{},{} -7321,Fragment_Of_Crystal,Crystal Fragment,3,552,,10,,,,,,,,,,,,,{},{},{} -7322,Poisonous_Gas,Toxic Gas,3,666,,10,,,,,,,,,,,,,{},{},{} -7323,Battered_Kettle,Battered Kettle,3,256,,10,,,,,,,,,,,,,{},{},{} -7325,Tube,Flexible Tube,3,102,,10,,,,,,,,,,,,,{},{},{} -7326,Fluorescent_Liquid,Fluorescent Liquid,3,712,,10,,,,,,,,,,,,,{},{},{} -7327,Headlamp,Flashlight,3,1024,,10,,,,,,,,,,,,,{},{},{} -7328,Legendary_Scroll,Legend of Songkran,3,0,,10,,,,,,,,,,,,,{},{},{} -7329,Old_Copper_Key,Old Bronze Key,3,0,,10,,,,,,,,,,,,,{},{},{} -7330,2anny,Mystic Orb,3,0,,100,,,,,,,,,,,,,{},{},{} -7331,Flower_Of_Heaven,Heaven Flower,3,500,,10,,,,,,,,,,,,,{},{},{} -7332,Slate,Complete Tablet,3,0,,0,,,,,,,,,,,,,{},{},{} -7333,Piece_Of_Slate_1,Prontera Tablet,3,0,,0,,,,,,,,,,,,,{},{},{} -7334,Piece_Of_Slate_2,Payon Tablet,3,0,,0,,,,,,,,,,,,,{},{},{} -7335,Piece_Of_Slate_3,Morocc Tablet,3,0,,0,,,,,,,,,,,,,{},{},{} -7336,Piece_Of_Slate_4,Geffen Tablet,3,0,,0,,,,,,,,,,,,,{},{},{} -7337,Eye_Of_Hellion,Eye of Hellion,3,0,,0,,,,,,,,,,,,,{},{},{} -7338,RO_Transportation_Card,One-way Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -7339,RO_Transportation_Card_,Commemorative Travel Card,3,0,,0,,,,,,,,,,,,,{},{},{} -7340,Will_Of_Darkness,Will of the Darkness,3,734,,50,,,,,,,,,,,,,{},{},{} -7341,Worn_Out_Pendant,Old Pendant,3,20,,0,,,,,,,,,,,,,{},{},{} -7342,File01,File Folder,3,20,,0,,,,,,,,,,,,,{},{},{} -7343,File02,Sealed File Folder,3,20,,0,,,,,,,,,,,,,{},{},{} -7344,File03,Shinokas Case File,3,20,,0,,,,,,,,,,,,,{},{},{} -7345,Armlet_Of_Prisoner,Handcuffs,3,724,,10,,,,,,,,,,,,,{},{},{} -7346,Pile_Of_Ymir_Heart,Ymir's Heart Piece,3,20,,0,,,,,,,,,,,,,{},{},{} -7347,Lab_Staff_Record,Research Chart,3,840,,10,,,,,,,,,,,,,{},{},{} -7348,Indication_Of_Member01,Membership Card,3,20,,10,,,,,,,,,,,,,{},{},{} -7349,Indication_Of_Member02,Archive Permit,3,20,,0,,,,,,,,,,,,,{},{},{} -7350,Pass,Pass,3,20,,10,,,,,,,,,,,,,{},{},{} -7351,Friend's_Diary,Friend's Diary,3,20,,0,,,,,,,,,,,,,{},{},{} -7352,Transparent_Plate01,Transparent Plate,3,20,,10,,,,,,,,,,,,,{},{},{} -7353,Transparent_Plate02,Transparent Plate,3,20,,10,,,,,,,,,,,,,{},{},{} -7354,Transparent_Plate03,Transparent Plate,3,20,,10,,,,,,,,,,,,,{},{},{} -7355,Transparent_Plate04,Transparent Plate,3,20,,10,,,,,,,,,,,,,{},{},{} -7356,Piece_Of_Crest1,Crest Piece,3,5000,,10,,,,,,,,,,,,,{},{},{} -7357,Piece_Of_Crest2,Crest Piece,3,5000,,10,,,,,,,,,,,,,{},{},{} -7358,Piece_Of_Crest3,Crest Piece,3,5000,,10,,,,,,,,,,,,,{},{},{} -7359,Piece_Of_Crest4,Crest Piece,3,5000,,10,,,,,,,,,,,,,{},{},{} -7360,RO_Festival_Ticket,RO Festival Invitation,3,0,,10,,,,,,,,,,,,,{},{},{} -7361,Lotto01,Lotto Ball 01,3,0,,10,,,,,,,,,,,,,{},{},{} -7362,Lotto02,Lotto Ball 02,3,0,,10,,,,,,,,,,,,,{},{},{} -7363,Lotto03,Lotto Ball 03,3,0,,10,,,,,,,,,,,,,{},{},{} -7364,Lotto04,Lotto Ball 04,3,0,,10,,,,,,,,,,,,,{},{},{} -7365,Lotto05,Lotto Ball 05,3,0,,10,,,,,,,,,,,,,{},{},{} -7366,Lotto06,Lotto Ball 06,3,0,,10,,,,,,,,,,,,,{},{},{} -7367,Lotto07,Lotto Ball 07,3,0,,10,,,,,,,,,,,,,{},{},{} -7368,Lotto08,Lotto Ball 08,3,0,,10,,,,,,,,,,,,,{},{},{} -7369,Lotto09,Lotto Ball 09,3,0,,10,,,,,,,,,,,,,{},{},{} -7370,Lotto10,Lotto Ball 10,3,0,,10,,,,,,,,,,,,,{},{},{} -7371,Lotto11,Lotto Ball 11,3,0,,10,,,,,,,,,,,,,{},{},{} -7372,Lotto12,Lotto Ball 12,3,0,,10,,,,,,,,,,,,,{},{},{} -7373,Lotto13,Lotto Ball 13,3,0,,10,,,,,,,,,,,,,{},{},{} -7374,Lotto14,Lotto Ball 14,3,0,,10,,,,,,,,,,,,,{},{},{} -7375,Lotto15,Lotto Ball 15,3,0,,10,,,,,,,,,,,,,{},{},{} -7376,Lotto16,Lotto Ball 16,3,0,,10,,,,,,,,,,,,,{},{},{} -7377,Lotto17,Lotto Ball 17,3,0,,10,,,,,,,,,,,,,{},{},{} -7378,Lotto18,Lotto Ball 18,3,0,,10,,,,,,,,,,,,,{},{},{} -7379,Lotto19,Lotto Ball 19,3,0,,10,,,,,,,,,,,,,{},{},{} -7380,Lotto20,Lotto Ball 20,3,0,,10,,,,,,,,,,,,,{},{},{} -7381,Lotto21,Lotto Ball 21,3,0,,10,,,,,,,,,,,,,{},{},{} -7382,Lotto22,Lotto Ball 22,3,0,,10,,,,,,,,,,,,,{},{},{} -7383,Lotto23,Lotto Ball 23,3,0,,10,,,,,,,,,,,,,{},{},{} -7384,Lotto24,Lotto Ball 24,3,0,,10,,,,,,,,,,,,,{},{},{} -7385,Lotto25,Lotto Ball 25,3,0,,10,,,,,,,,,,,,,{},{},{} -7386,Lotto26,Lotto Ball 26,3,0,,10,,,,,,,,,,,,,{},{},{} -7387,Lotto27,Lotto Ball 27,3,0,,10,,,,,,,,,,,,,{},{},{} -7388,Lotto28,Lotto Ball 28,3,0,,10,,,,,,,,,,,,,{},{},{} -7389,Lotto29,Lotto Ball 29,3,0,,10,,,,,,,,,,,,,{},{},{} -7390,Lotto30,Lotto Ball 30,3,0,,10,,,,,,,,,,,,,{},{},{} -7391,Lotto31,Lotto Ball 31,3,0,,10,,,,,,,,,,,,,{},{},{} -7392,Lotto32,Lotto Ball 32,3,0,,10,,,,,,,,,,,,,{},{},{} -7393,Lotto33,Lotto Ball 33,3,0,,10,,,,,,,,,,,,,{},{},{} -7394,Lotto34,Lotto Ball 34,3,0,,10,,,,,,,,,,,,,{},{},{} -7395,Lotto35,Lotto Ball 35,3,0,,10,,,,,,,,,,,,,{},{},{} -7396,Lotto36,Lotto Ball 36,3,0,,10,,,,,,,,,,,,,{},{},{} -7397,Lotto37,Lotto Ball 37,3,0,,10,,,,,,,,,,,,,{},{},{} -7398,Lotto38,Lotto Ball 38,3,0,,10,,,,,,,,,,,,,{},{},{} -7399,Word_Card01,Selamat,3,2,,10,,,,,,,,,,,,,{},{},{} -7400,Word_Card02,Hari,3,2,,10,,,,,,,,,,,,,{},{},{} -7401,Word_Card03,Kemerdekaan,3,2,,10,,,,,,,,,,,,,{},{},{} -7402,Word_Card04,Republik,3,2,,10,,,,,,,,,,,,,{},{},{} -7403,Word_Card05,Indonesia,3,2,,10,,,,,,,,,,,,,{},{},{} -7404,Word_Card06,Ke-60,3,2,,10,,,,,,,,,,,,,{},{},{} -7405,Crushed_Can,Crushed Can,3,2,,10,,,,,,,,,,,,,{},{},{} -7406,Moon_Cake1,Yuebing,3,2,,10,,,,,,,,,,,,,{},{},{} -7407,Moon_Cake2,Yuebing,3,2,,10,,,,,,,,,,,,,{},{},{} -7408,Moon_Cake3,Yuebing,3,2,,10,,,,,,,,,,,,,{},{},{} -7409,Moon_Cake4,Yuebing,3,2,,10,,,,,,,,,,,,,{},{},{} -7410,Moon_Cake5,Yuebing,3,2,,10,,,,,,,,,,,,,{},{},{} -7411,Moon_Cake6,Yuebing,3,2,,10,,,,,,,,,,,,,{},{},{} -7412,Moon_Cake7,Yuebing,3,2,,10,,,,,,,,,,,,,{},{},{} -7413,Moon_Cake8,Yuebing,3,2,,10,,,,,,,,,,,,,{},{},{} -7414,Moon_Cake9,Yuebing,3,2,,10,,,,,,,,,,,,,{},{},{} -7415,Stone_Of_Summons,Summoning Stone,3,2,,10,,,,,,,,,,,,,{},{},{} -7416,Letter_Of_Recommend,Letter of Recommendation,3,0,,0,,,,,,,,,,,,,{},{},{} -7417,Mission_ScrollA,Written Request(A),3,0,,0,,,,,,,,,,,,,{},{},{} -7418,Mission_ScrollB,Written Request(B),3,0,,0,,,,,,,,,,,,,{},{},{} -7419,Embryo_HandBook,Embryo Creation Guide,3,48000,,10,,,,,,,,,,,,,{},{},{} -7420,Skull_,Skull,3,0,,0,,,,,,,,,,,,,{},{},{} -7421,Key_Red,Red Key,3,0,,0,,,,,,,,,,,,,{},{},{} -7422,Key_Yellow,Yellow Key,3,0,,0,,,,,,,,,,,,,{},{},{} -7423,Key_Blue,Blue Key,3,0,,0,,,,,,,,,,,,,{},{},{} -7424,Key_Green,Green Key,3,0,,0,,,,,,,,,,,,,{},{},{} -7425,Key_Black,Black Key,3,0,,0,,,,,,,,,,,,,{},{},{} -7426,Magic_Gem_Red,Red Charm Stone,3,0,,0,,,,,,,,,,,,,{},{},{} -7427,Magic_Gem_Yellow,Yellow Charm Stone,3,0,,0,,,,,,,,,,,,,{},{},{} -7428,Magic_Gem_Blue,Blue Charm Stone,3,0,,0,,,,,,,,,,,,,{},{},{} -7429,Magic_Gem_Green,Green Charm Stone,3,0,,0,,,,,,,,,,,,,{},{},{} -7430,Magic_Gem_Black,Black Charm Stone,3,0,,0,,,,,,,,,,,,,{},{},{} -7431,Several_Books,Pile of Books,3,0,,0,,,,,,,,,,,,,{},{},{} -7432,Leather_Pouch,Leather Pouch,3,0,,0,,,,,,,,,,,,,{},{},{} -7433,Scroll,Blank Scroll,3,4000,,10,,,,,,,,,,,,,{},{},{} -7434,Elemental_Potion_Book,Elemental Potion Creation Guide,3,100000,,10,,,,,,,,,,,,,{},{},{} -7435,Golden_Bracelet,Golden Ornament,3,1907,,10,,,,,,,,,,,,,{},{},{} -7436,Piece_Of_Memory_Green,Fragment of Agony,3,1506,,10,,,,,,,,,,,,,{},{},{} -7437,Piece_Of_Memory_Purple,Fragment of Misery,3,1506,,10,,,,,,,,,,,,,{},{},{} -7438,Piece_Of_Memory_Blue,Fragment of Hatred,3,1506,,10,,,,,,,,,,,,,{},{},{} -7439,Piece_Of_Memory_Red,Fragment of Despair,3,1506,,10,,,,,,,,,,,,,{},{},{} -7440,Red_Feather,Red Feather,3,1335,,10,,,,,,,,,,,,,{},{},{} -7441,Blue_Feather,Blue Feather,3,1408,,10,,,,,,,,,,,,,{},{},{} -7442,Cursed_Seal,Cursed Seal,3,1332,,10,,,,,,,,,,,,,{},{},{} -7443,Tri_Headed_Dragon_Head,Three-Headed Dragon's Head,3,956,,10,,,,,,,,,,,,,{},{},{} -7444,Treasure_Box,Treasure Box,3,300000,,10,,,,,,,,,,,,,{},{},{} -7445,Dragonball_Green,Green Bijou,3,887,,10,,,,,,,,,,,,,{},{},{} -7446,Dragonball_Blue,Blue Bijou,3,887,,10,,,,,,,,,,,,,{},{},{} -7447,Dragonball_Red,Red Bijou,3,887,,10,,,,,,,,,,,,,{},{},{} -7448,Dragonball_Yellow,Yellow Bijou,3,887,,10,,,,,,,,,,,,,{},{},{} -7449,Bloody_Page,Bloody Page,3,681,,10,,,,,,,,,,,,,{},{},{} -7450,Piece_Of_Bone_Armor,Skeletal Armor Piece,3,2050,,10,,,,,,,,,,,,,{},{},{} -7451,Scale_Of_Red_Dragon,Fire Dragon Scale,3,1852,,10,,,,,,,,,,,,,{},{},{} -7452,Yellow_Spice,Yellow Spice,3,750,,10,,,,,,,,,,,,,{},{},{} -7453,Sweet_Sauce,Sweet Sauce,3,525,,10,,,,,,,,,,,,,{},{},{} -7454,Plain_Sauce,Savory Sauce,3,525,,10,,,,,,,,,,,,,{},{},{} -7455,Hot_Sauce,Spicy Sauce,3,525,,10,,,,,,,,,,,,,{},{},{} -7456,Red_Spice,Red Spice,3,750,,10,,,,,,,,,,,,,{},{},{} -7457,Cooking_Oil,Cooking Oil,3,375,,10,,,,,,,,,,,,,{},{},{} -7458,Baphomet's_Horn,Fortune Horn,3,2,,10,,,,,,,,,,,,,{},{},{} -7459,RAMADAN_,Idul Fitri Card,3,2,,10,,,,,,,,,,,,,{},{},{} -7460,Niflheim_Ticket,Niflheim Express Ticket,3,2,,10,,,,,,,,,,,,,{},{},{} -7461,BlueCard_A,Blue A Card,3,0,,10,,,,,,,,,,,,,{},{},{} -7462,BlueCard_E,Blue E Card,3,0,,10,,,,,,,,,,,,,{},{},{} -7463,BlueCard_F,Blue F Card,3,0,,10,,,,,,,,,,,,,{},{},{} -7464,BlueCard_H,Blue H Card,3,0,,10,,,,,,,,,,,,,{},{},{} -7465,BlueCard_L,Blue L Card,3,0,,10,,,,,,,,,,,,,{},{},{} -7466,BlueCard_N,Blue N Card,3,0,,10,,,,,,,,,,,,,{},{},{} -7467,BlueCard_O,Blue O Card,3,0,,10,,,,,,,,,,,,,{},{},{} -7468,BlueCard_P,Blue P Card,3,0,,10,,,,,,,,,,,,,{},{},{} -7469,BlueCard_U,Blue U Card,3,0,,10,,,,,,,,,,,,,{},{},{} -7470,BlueCard_W,Blue W Card,3,0,,10,,,,,,,,,,,,,{},{},{} -7471,BlueCard_Y,Blue Y Card,3,0,,10,,,,,,,,,,,,,{},{},{} -7472,Cookbook01,Level 1 Cookbook,3,1000,,10,,,,,,,,,,,,,{},{},{} -7473,Cookbook02,Level 2 Cookbook,3,1000,,10,,,,,,,,,,,,,{},{},{} -7474,Cookbook03,Level 3 Cookbook,3,1000,,10,,,,,,,,,,,,,{},{},{} -7475,Cookbook04,Level 4 Cookbook,3,1000,,10,,,,,,,,,,,,,{},{},{} -7476,Cookbook05,Level 5 Cookbook,3,1000,,10,,,,,,,,,,,,,{},{},{} -7477,Cookbook06,Level 6 Cookbook,3,1000,,10,,,,,,,,,,,,,{},{},{} -7478,Cookbook07,Level 7 Cookbook,3,1000,,10,,,,,,,,,,,,,{},{},{} -7479,Cookbook08,Level 8 Cookbook,3,1000,,10,,,,,,,,,,,,,{},{},{} -7480,Cookbook09,Level 9 Cookbook,3,1000,,10,,,,,,,,,,,,,{},{},{} -7481,Cookbook10,Level 10 Cookbook,3,1000,,10,,,,,,,,,,,,,{},{},{} -7482,Pot,Pot,3,150,,10,,,,,,,,,,,,,{},{},{} -7483,Key_Of_Seal,Key of the Seal,3,0,,0,,,,,,,,,,,,,{},{},{} -7484,Warrior_Symbol,Symbol of a Brave Warrior,3,0,,10,,,,,,,,,,,,,{},{},{} -7485,2nd_Floor_Pass,Cloud General,3,0,,10,,,,,,,,,,,,,{},{},{} -7486,3rd_Floor_Pass,Wind General,3,0,,10,,,,,,,,,,,,,{},{},{} -7487,Tavern_Wine,Culinary Wine,3,0,,0,,,,,,,,,,,,,{},{},{} -7488,Delivery_Box,Delivery Package,3,0,,0,,,,,,,,,,,,,{},{},{} -7489,Villa_Spare_Key,Cottage Key,3,0,,0,,,,,,,,,,,,,{},{},{} -7490,Kyll_Hire_Letter,Letter to Elly,3,0,,0,,,,,,,,,,,,,{},{},{} -7491,Iron_Box,Steel Box,3,0,,0,,,,,,,,,,,,,{},{},{} -7492,Yellow_Key_Card,Yellow Keycard,3,0,,0,,,,,,,,,,,,,{},{},{} -7493,Golden_Key,Golden Key,3,0,,0,,,,,,,,,,,,,{},{},{} -7494,Kiel_Button,Luxurious Button,3,0,,0,,,,,,,,,,,,,{},{},{} -7495,Blue_Key_Card,Blue Keycard,3,0,,0,,,,,,,,,,,,,{},{},{} -7496,Red_Key_Card,Red Keycard,3,0,,0,,,,,,,,,,,,,{},{},{} -7497,Steel_Piece,Metal Fragment,3,0,,0,,,,,,,,,,,,,{},{},{} -7498,Rosimier_Key,Rosimier Mansion Keys,3,0,,0,,,,,,,,,,,,,{},{},{} -7499,Family_Portrait,Family Portrait,3,0,,0,,,,,,,,,,,,,{},{},{} -7500,Elysia_Portrait,Woman's Portrait,3,0,,0,,,,,,,,,,,,,{},{},{} -7501,Kyll_Hire_Letter2,K.H's Letter,3,0,,0,,,,,,,,,,,,,{},{},{} -7502,Piece_Memo_Of_James,James's Note,3,0,,0,,,,,,,,,,,,,{},{},{} -7503,Man_Portrait,Man's Portrait,3,0,,0,,,,,,,,,,,,,{},{},{} -7504,Toy_Motor,Power Device,3,0,,0,,,,,,,,,,,,,{},{},{} -7505,Toy_Key,Toy Key,3,0,,0,,,,,,,,,,,,,{},{},{} -7506,Black_Key_Card,Black Keycard,3,0,,0,,,,,,,,,,,,,{},{},{} -7507,Sturdy_Iron_Piece,Solid Iron Piece,3,842,,10,,,,,,,,,,,,,{},{},{} -7508,Elysia_Ring,Allysia's Ring,3,0,,0,,,,,,,,,,,,,{},{},{} -7509,Fancy_Key_Card,Luxurious Keycard,3,0,,0,,,,,,,,,,,,,{},{},{} -7510,Valhalla_Flower,Valhalla's Flower,3,200000,,10,,,,,,,,,,,,,{},{},{} -7511,Rune_Of_Darkness,Rune of Darkness,3,2526,,10,,,,,,,,,,,,,{},{},{} -7512,Burnt_Parts,Burnt Part,3,1600,,10,,,,,,,,,,,,,{},{},{} -7513,Pocket_Watch__,Pocket Watch,3,3420,,10,,,,,,,,,,,,,{},{},{} -7514,Monster_Ticket,Monster Ticket,3,2,,0,,,,,,,,,,,,,{},{},{} -7515,Marvelous_Medal,Prize Medal,3,2,,0,,,,,,,,,,,,,{},{},{} -7516,Green_Key_Card,Green Keycard,3,0,,0,,,,,,,,,,,,,{},{},{} -7517,Gold_Coin_,Gold Coin,3,1000,,100,,,,,,,,,,,,,{},{},{} -7518,Women's_Medal,Women's Medal,3,0,,10,,,,,,,,,,,,,{},{},{} -7519,Money_Envelope,Handsel,3,0,,10,,,,,,,,,,,,,{},{},{} -7520,Chinese_Scroll,Please Be Rich,3,0,,10,,,,,,,,,,,,,{},{},{} -7521,Flame_Stone,Flame Stone,3,150,,10,,,,,,,,,,,,,{},{},{} -7522,Ice_Stone,Ice Stone,3,150,,10,,,,,,,,,,,,,{},{},{} -7523,Wind_Stone,Wind Stone,3,150,,10,,,,,,,,,,,,,{},{},{} -7524,Shadow_Orb,Shadow Orb,3,300,,20,,,,,,,,,,,,,{},{},{} -7525,Summer_Feast_Ticket,Summer Festival Ticket,3,10,,10,,,,,,,,,,,,,{},{},{} -7526,Manuscript_Paper,Manuscript Paper,3,2,,0,,,,,,,,,,,,,{},{},{} -7527,Life_Book,Book About True Life,3,0,,100,,,,,,,,,,,,,{},{},{} -7528,Id_Lottery_Ticket,Lottery Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -7529,Stolen_Sandals,Stolen Sandal,3,0,,0,,,,,,,,,,,,,{},{},{} -7530,Travel_Brochure_01,Travel Brochure [Amatsu],3,0,,0,,,,,,,,,,,,,{},{},{} -7531,Travel_Brochure_02,Travel Brochure [Kunlun],3,0,,0,,,,,,,,,,,,,{},{},{} -7532,Travel_Brochure_03,Travel Brochure [Luoyang],3,0,,0,,,,,,,,,,,,,{},{},{} -7533,Travel_Brochure_04,Travel Brochure [Ayothaya],3,0,,0,,,,,,,,,,,,,{},{},{} -7534,Photo_Album_01,Amatsu Completed Photo Album,3,0,,0,,,,,,,,,,,,,{},{},{} -7535,Photo_Album_02,Kunlun Completed Photo Album,3,0,,0,,,,,,,,,,,,,{},{},{} -7536,Photo_Album_03,Luoyang Completed Photo Album,3,0,,0,,,,,,,,,,,,,{},{},{} -7537,Photo_Album_04,Ayothaya Completed Photo Album,3,0,,0,,,,,,,,,,,,,{},{},{} -7538,Sifted_Sand,Sand for Work,3,0,,0,,,,,,,,,,,,,{},{},{} -7539,Poring_Coin,Poring Coin,3,0,,0,,,,,,,,,,,,,{},{},{} -7540,Lotto39,Lotto Ball 39,3,0,,10,,,,,,,,,,,,,{},{},{} -7541,Lotto40,Lotto Ball 40,3,0,,10,,,,,,,,,,,,,{},{},{} -7542,Lotto41,Lotto Ball 41,3,0,,10,,,,,,,,,,,,,{},{},{} -7543,Lotto42,Lotto Ball 42,3,0,,10,,,,,,,,,,,,,{},{},{} -7544,Lotto43,Lotto Ball 43,3,0,,10,,,,,,,,,,,,,{},{},{} -7545,Lotto44,Lotto Ball 44,3,0,,10,,,,,,,,,,,,,{},{},{} -7546,Lotto45,Lotto Ball 45,3,0,,10,,,,,,,,,,,,,{},{},{} -7547,Soccer_Ball,Soccer Ball,3,20,,10,,,,,,,,,,,,,{},{},{} -7548,Soccer_Shoes,Soccer Shoes,3,20,,10,,,,,,,,,,,,,{},{},{} -7549,Brazilian_Flag,Brazilian Flag,3,20,,10,,,,,,,,,,,,,{},{},{} -7550,Ticket01,6.13 Ticket,3,20,,10,,,,,,,,,,,,,{},{},{} -7551,Ticket02,6.18 Ticket,3,20,,10,,,,,,,,,,,,,{},{},{} -7552,Ticket03,6.22 Ticket,3,20,,10,,,,,,,,,,,,,{},{},{} -7553,Lotus_Flower,Lotus Flower,3,0,,0,,,,,,,,,,,,,{},{},{} -7554,Striped_Candle,Striped Candle,3,0,,0,,,,,,,,,,,,,{},{},{} -7555,Green_Incense,Green Incense,3,0,,0,,,,,,,,,,,,,{},{},{} -7556,Longing_Heart,Longing Heart,3,0,,0,,,,,,,,,,,,,{},{},{} -7557,Invitation_Letter,Invitation Letter,3,0,,0,,,,,,,,,,,,,{},{},{} -7558,Invitation_Ticket,Invitation Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -7559,Key_Of_Flower_Garden,Key to the Secret Garden,3,0,,0,,,,,,,,,,,,,{},{},{} -7560,Longing_Heart2,Longing Heart,3,0,,0,,,,,,,,,,,,,{},{},{} -7561,Ice_Heart,Glacial Heart,3,606,,10,,,,,,,,,,,,,{},{},{} -7562,Ice_Scale,Ice Scale,3,3020,,10,,,,,,,,,,,,,{},{},{} -7563,Bloody_Rune,Bloody Rune,3,2016,,10,,,,,,,,,,,,,{},{},{} -7564,Rotten_Meat,Rotten Meat,3,102,,10,,,,,,,,,,,,,{},{},{} -7565,Sticky_Poison,Sticky Poison,3,350,,10,,,,,,,,,,,,,{},{},{} -7566,Will_Of_Darkness_,Will of Red Darkness,3,1530,,10,,,,,,,,,,,,,{},{},{} -7567,Suspicious_Hat,Suspicious Hat,3,1290,,10,,,,,,,,,,,,,{},{},{} -7568,White_Mask,White Mask,3,1060,,10,,,,,,,,,,,,,{},{},{} -7569,Hammer_Of_Wind,Wind Hammer,3,0,,0,,,,,,,,,,,,,{},{},{} -7570,Temple_Lottery_Ticket,Temple Lottery Ticket,3,0,,10,,,,,,,,,,,,,{},{},{} -7571,Diary_Of_Blue,Bruspetti's Diary,3,0,,0,,,,,,,,,,,,,{},{},{} -7572,Magic_Necklace,Ashy Necklace,3,0,,0,,,,,,,,,,,,,{},{},{} -7573,Magic_Necklace_,Sparkling Necklace,3,0,,0,,,,,,,,,,,,,{},{},{} -7574,Ice_Particle,Freezing Snow Powder,3,0,,0,,,,,,,,,,,,,{},{},{} -7575,Red_Jewel_,Red Jewel,3,20,,0,,,,,,,,,,,,,{},{},{} -7576,Blue_Jewel_,Blue Jewel,3,20,,0,,,,,,,,,,,,,{},{},{} -7577,Golden_Jewel_,Yellow Jewel,3,20,,50,,,,,,,,,,,,,{},{},{} -7578,Anti_Spell_Bead,Countermagic Crystal,3,20,,10,,,,,,,,,,,,,{},{},{} -7579,Silk_Handkerchief,Silk Handkerchief of Zhi Nu,3,20,,10,,,,,,,,,,,,,{},{},{} -7580,Black_Bead,Black Marble,3,20,,10,,,,,,,,,,,,,{},{},{} -7581,Anniversary_Ticket,Celebration Document,3,20,,10,,,,,,,,,,,,,{},{},{} -7582,Gem_Of_Ruin,Jewel of Destruction,3,10,,10,,,,,,,,,,,,,{},{},{} -7583,Evil_Mind,Evil Mind,3,10,,10,,,,,,,,,,,,,{},{},{} -7584,Proof_Of_Guard1,Guard's First Proof,3,10,,10,,,,,,,,,,,,,{},{},{} -7585,Proof_Of_Guard2,Guard's Second Proof,3,10,,10,,,,,,,,,,,,,{},{},{} -7586,Proof_Of_Guard3,Guard's Third Proof,3,10,,10,,,,,,,,,,,,,{},{},{} -7587,Proof_Of_Guard4,Guard's Fourth Proof,3,10,,10,,,,,,,,,,,,,{},{},{} -7588,IPOD_Ticker,IPOD Coupon,3,10,,10,,,,,,,,,,,,,{},{},{} -7589,Moon_Cake10,Lettered Moon Snack 01,3,20,,10,,,,,,,,,,,,,{},{},{} -7590,Moon_Cake11,Lettered Moon Snack 02,3,20,,10,,,,,,,,,,,,,{},{},{} -7591,Moon_Cake12,Lettered Moon Snack 03,3,20,,10,,,,,,,,,,,,,{},{},{} -7592,Moon_Cake13,Lettered Moon Snack 04,3,20,,10,,,,,,,,,,,,,{},{},{} -7593,Moon_Cake14,Lettered Moon Snack 05,3,20,,10,,,,,,,,,,,,,{},{},{} -7594,Sonia's_Letter,Sonia's Letter,3,20,,10,,,,,,,,,,,,,{},{},{} -7595,Unique_Sword,Special Sword,3,20,,10,,,,,,,,,,,,,{},{},{} -7596,Unique_Shield,Special Shield,3,20,,10,,,,,,,,,,,,,{},{},{} -7597,Magic_Stone,Magic Stone,3,20,,10,,,,,,,,,,,,,{},{},{} -7598,BlueCard_I,Blue I Card,3,0,,10,,,,,,,,,,,,,{},{},{} -7599,BlueCard_D,Blue D Card,3,0,,10,,,,,,,,,,,,,{},{},{} -7600,BlueCard_K,Blue K Card,3,0,,10,,,,,,,,,,,,,{},{},{} -7601,BlueCard_S,Blue S Card,3,0,,10,,,,,,,,,,,,,{},{},{} -7602,BlueCard_R,Blue R Card,3,0,,10,,,,,,,,,,,,,{},{},{} -7603,RO_Party_Ticket,RO Party Invitation Ticket,3,0,,10,,,,,,,,,,,,,{},{},{} -7604,Flour,Flour,3,0,,10,,,,,,,,,,,,,{},{},{} -7605,Chicken_Egg,Chicken Egg,3,0,,10,,,,,,,,,,,,,{},{},{} -7606,Coin,Token of the Ox,3,0,,10,,,,,,,,,,,,,{},{},{} -7607,Evil_Dragon_Head,Neck of Demon Dragon,3,10,,10,,,,,,,,,,,,,{},{},{} -7608,Premium_Ticket,Premium Ticket,3,20,,10,,,,,,,,,,,,,{},{},{} -7609,Pumpkin_Mojo,Pumpkin Mojo,3,0,,10,,,,,,,,,,,,,{},{},{} -7610,Food_Ticket,Food Exchange Ticket,3,1000,,10,,,,,,,,,,,,,{},{},{} -7611,Fox_Symbol,Symbol of Fox,3,20,,10,,,,,,,,,,,,,{},{},{} -7612,Heart_Of_Fox_Queen,Heart of Queen Fox,3,2,,10,,,,,,,,,,,,,{},{},{} -7613,Small_Rice_Dough,Small Rice Cake Dough,3,0,,0,,,,,,,,,,,,,{},{},{} -7614,Special_Packing_Paper,Wrapping Paper,3,10,,10,,,,,,,,,,,,,{},{},{} -7615,MVP_Ticket,MVP Voucher,3,10,,10,,,,,,,,,,,,,{},{},{} -7616,Mini_Boss_Ticket,Miniboss Voucher,3,10,,10,,,,,,,,,,,,,{},{},{} -7617,Monster_Ticket_,Monster Voucher,3,10,,10,,,,,,,,,,,,,{},{},{} -7618,Monster_Crystal,Monster Crystal,3,2,,100,,,,,,,,,,,,,{},{},{} -7619,Enriched_Elunium,Enriched Elunium,3,2,,10,,,,,,,,,,,,,{},{},{} -7620,Enriched_Oridecon,Enriched Oridecon,3,2,,10,,,,,,,,,,,,,{},{},{} -7621,Token_Of_Siegfried,Token Of Siegfried,3,2,,10,,,,,,,,,,,,,{},{},{} -7622,New_Style_Coupon,Hairstyle Coupon,3,0,,10,,,,,,,,,,,,,{},{},{} -7623,Name_Change_Coupon,Ticket Of Identification,3,2,,0,,,,,,,,,,,,,{},{},{} -7624,Spring_Stanza23,Spring Stanza23,3,2,,10,,,,,,,,,,,,,{},{},{} -7625,Registration_Ticket,Registration Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -7626,Bubble_Gum_Token,Bubble Gum Token,3,10,,10,,,,,,,,,,,,,{},{},{} -7627,Sage_Key,Sage Key,3,0,,0,,,,,,,,,,,,,{},{},{} -7628,Idiot_Key,Idiot Key,3,0,,0,,,,,,,,,,,,,{},{},{} -7629,Pink_Gift_Box,Pink Gift Box,3,0,,0,,,,,,,,,,,,,{},{},{} -7630,Clean_Beach_Brush,Clean Beach Brush,3,0,,0,,,,,,,,,,,,,{},{},{} -7631,Trash_Debris,Trash Debris,3,0,,0,,,,,,,,,,,,,{},{},{} -7632,To_Afterworld_Record,Terrible Report Card,3,0,,0,,,,,,,,,,,,,{},{},{} -7633,To_Heaven_Record,Heavensent Report Card,3,0,,0,,,,,,,,,,,,,{},{},{} -7634,Rose_Of_Father,Father Rose,3,0,,0,,,,,,,,,,,,,{},{},{} -7635,Perfume_Pouch,Incense Bag,3,100,,0,,,,,,,,,,,,,{},{},{} -7636,Magic_Potion_Bottle,Magic Potion Bottle,3,0,,0,,,,,,,,,,,,,{},{},{} -7637,Father_Giftbox,Father Giftbox,3,0,,10,,,,,,,,,,,,,{},{},{} -7638,TW_Green_Box,TW Green Box,3,0,,10,,,,,,,,,,,,,{},{},{} -7639,TW_Red_Box,TW Red Box,3,0,,10,,,,,,,,,,,,,{},{},{} -7640,Butterfly_Hair_Decoration,Butterfly Hair Decoration,3,10,,10,,,,,,,,,,,,,{},{},{} -7641,Medical_Cure_Box,Medical Cure Box,3,10,,0,,,,,,,,,,,,,{},{},{} -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,,,,,,,,,,,,,{},{},{} -7649,Big_Luk_Bookmark,Big Luk Bookmark,3,20,,10,,,,,,,,,,,,,{},{},{} -7651,Mystery_Egg,Mystery Egg,3,10,,10,,,,,,,,,,,,,{},{},{} -7663,Full_Metal_Jacket,Full Metal Jacket,3,200,,2,10,,,,,,,,,,,,{},{},{} -7664,Shooting_Mine,Grenade Launcher,3,450,,3,10,,,,,,,,,,,,{},{},{} -7665,Dragon_Tail_Missile,Dragon Tail Missile,3,1500,,100,10,,,,,,,,,,,,{},{},{} -7666,TimeTravel_Scroll,Time Travel Scroll,3,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -7667,Abandoned_Machine,Abandoned Machine,3,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -7668,Clean_Bandage,Clean Bandage,3,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -7669,Rubbing_Alchohol,Rubbing Alchohol,3,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -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,,,,,,,,,,,,,{},{},{} -7704,Broken_Thermometer,Broken Thermometer,3,2,,0,,,,,,,,,,,,,{},{},{} -7705,Note_Of_Geologist,Note of Geologist,3,2,,0,,,,,,,,,,,,,{},{},{} -7706,Spoiled_Carrot_Juice,Broken Carrot Juice,3,20,,40,,,,,,,,,,,,,{},{},{} -7707,Spoiled_Banana_Juice,Broken Banana Juice,3,20,,40,,,,,,,,,,,,,{},{},{} -7708,Spoiled_Apple_Juice,Broken Apple Juice,3,20,,40,,,,,,,,,,,,,{},{},{} -7709,Spoiled_Grape_Juice,Broken Grape Juice,3,20,,40,,,,,,,,,,,,,{},{},{} -7710,Black_Gemstone,Black Gemstone,3,600,,30,,,,,,,,,,,,,{},{},{} -7711,Update_Ticket,Event Ticket,3,0,,10,,,,,,,,,,,,,{},{},{} -7712,Nokia5500,Nokia 5500,3,0,,10,,,,,,,,,,,,,{},{},{} -7713,BlueCard_A_,Blue A(2) Card,3,0,,10,,,,,,,,,,,,,{},{},{} -7714,BlueCard_R_,Blue R(2) Card,3,0,,10,,,,,,,,,,,,,{},{},{} -7715,Handmade_Choco_Recipe,Handmade Chocolate Recipe,3,0,,0,,,,,,,,,,,,,{},{},{} -7716,Strawberry_Choco_Recipe,Chocolate Strawberry Recipe,3,0,,0,,,,,,,,,,,,,{},{},{} -7717,Choco_Tart_Recipe,Chocolate Tart Recipe,3,0,,0,,,,,,,,,,,,,{},{},{} -7718,Cacao_Bean,Cacao Bean,3,0,,10,,,,,,,,,,,,,{},{},{} -7719,BlueCard_G,Blue G Card,3,0,,10,,,,,,,,,,,,,{},{},{} -7720,Gold_Coin_US,Gold Coin,3,100,,10,,,,,,,,,,,,,{},{},{} -7721,Treasure_Box_,Treasure Box,3,100,,500,,,,,,,,,,,,,{},{},{} -7722,Debt_Note,Debt Note,3,20,,0,,,,,,,,,,,,,{},{},{} -7723,Diamond_Of_Ruin,Diamond of Ruin,3,20,,0,,,,,,,,,,,,,{},{},{} -7724,Forbidden_Secret_Art,Forbidden Secret Art,3,20,,0,,,,,,,,,,,,,{},{},{} -7725,Unlucky_Emerald,Unlucky Emerald,3,20,,0,,,,,,,,,,,,,{},{},{} -7726,Token_Of_King,Token of King,3,20,,0,,,,,,,,,,,,,{},{},{} -7727,HP_Doctor_Ticket,HP Doctor Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -7728,SP_Doctor_Ticket,SP Doctor Ticket,3,0,,0,,,,,,,,,,,,,{},{},{} -7729,Rok_Star_Badge,Rok Star Badge,3,20,,100,,,,,,,,,,,,,{},{},{} -7730,Mission_Certificate1,Mission Ticket 1,3,0,,10,,,,,,,,,,,,,{},{},{} -7731,Mission_Certificate2,Mission Ticket 2,3,0,,10,,,,,,,,,,,,,{},{},{} -7732,Mission_Certificate3,Mission Ticket 3,3,0,,10,,,,,,,,,,,,,{},{},{} -7733,Mission_Certificate4,Mission Ticket 4,3,0,,10,,,,,,,,,,,,,{},{},{} -7734,Mission_Certificate5,Mission Ticket 5,3,0,,10,,,,,,,,,,,,,{},{},{} -7735,Mission_Certificate6,Mission Ticket 6,3,0,,10,,,,,,,,,,,,,{},{},{} -7736,Mission_Certificate7,Mission Ticket 7,3,0,,10,,,,,,,,,,,,,{},{},{} -7737,Mission_Certificate8,Mission Ticket 8,3,0,,10,,,,,,,,,,,,,{},{},{} -7738,Mission_Certificate9,Mission Ticket 9,3,0,,10,,,,,,,,,,,,,{},{},{} -7739,Mission_Certificate10,Mission Ticket 10,3,0,,10,,,,,,,,,,,,,{},{},{} -7740,Mission_Certificate11,Mission Ticket 11,3,0,,10,,,,,,,,,,,,,{},{},{} -7741,Mission_Certificate12,Mission Ticket 12,3,0,,10,,,,,,,,,,,,,{},{},{} -7742,Kaong,Kaong,3,2,,10,,,,,,,,,,,,,{},{},{} -7743,Gulaman,Gulaman,3,2,,10,,,,,,,,,,,,,{},{},{} -7744,Leche_Flan,Leche Flan,3,2,,10,,,,,,,,,,,,,{},{},{} -7745,Ube_Jam,Ube Jam,3,2,,10,,,,,,,,,,,,,{},{},{} -7746,Sago,Sago,3,2,,10,,,,,,,,,,,,,{},{},{} -7747,Langka,Langka,3,2,,10,,,,,,,,,,,,,{},{},{} -7748,Sweet_Bean,Sweet Beans,3,2,,10,,,,,,,,,,,,,{},{},{} -7749,Sweet_Banana,Sweet Bananas,3,2,,10,,,,,,,,,,,,,{},{},{} -7750,Macapuno,Macapuno,3,2,,10,,,,,,,,,,,,,{},{},{} -7751,Old_White_Cloth,Old White Cloth,3,550,,10,,,,,,,,,,,,,{},{},{} -7752,Clattering_Skull,Clattering Skull,3,840,,10,,,,,,,,,,,,,{},{},{} -7753,Broken_Farming_Utensil,Broken Farming Utensil,3,330,,10,,,,,,,,,,,,,{},{},{} -7754,Broken_Crown,Broken Crown,3,3000,,10,,,,,,,,,,,,,{},{},{} -7755,Research_Note,Research Note,3,20,,0,,,,,,,,,,,,,{},{},{} -7756,Sealed_Book,Sealed Book,3,2000,,10,,,,,,,,,,,,,{},{},{} -7757,Mithril,Mithril,3,20,,100,,,,,,,,,,,,,{},{},{} -7758,Star_Crystal,Star Crystal,3,20,,100,,,,,,,,,,,,,{},{},{} -7759,Geology_Report,Geologist's Report,3,20,,0,,,,,,,,,,,,,{},{},{} -7760,Yaga_Magic_Book,Yaga's Magic Book,3,20,,10,,,,,,,,,,,,,{},{},{} -7761,Magic_Gourd_Bottle,Magic Gourd Bottle,3,20,,10,,,,,,,,,,,,,{},{},{} -7762,Yaga_Pestle,Yaga's Pestle,3,20,,10,,,,,,,,,,,,,{},{},{} -7763,Sticky_Herb,Sticky Herb,3,20,,10,,,,,,,,,,,,,{},{},{} -7764,High_Strength_Adhesive,High Strength Adhesive,3,20,,10,,,,,,,,,,,,,{},{},{} -7765,Yaga_Secret_Medicine,Baba Yaga's Secret Medicine,3,20,,10,,,,,,,,,,,,,{},{},{} -7766,Bok_Choy,Bok Choy,3,20,,10,,,,,,,,,,,,,{},{},{} -7767,Chung_E_Cake,Green Maiden's Cake,3,20,,10,,,,,,,,,,,,,{},{},{} -7768,Squid,Squid,3,0,,10,,,,,,,,,,,,,{},{},{} -7769,Egg_Yolk,Egg Yolk,3,0,,10,,,,,,,,,,,,,{},{},{} -7770,Sweet_Rice,Sweet Rice,3,0,,10,,,,,,,,,,,,,{},{},{} -7771,Lotus_Leaf,Lotus Leaf,3,0,,10,,,,,,,,,,,,,{},{},{} -7772,String,String,3,0,,10,,,,,,,,,,,,,{},{},{} -7773,War_Badge,Wat Badge,3,0,,0,,,,,,,,,,,,,{},{},{} -7774,Chung_E_Ticket,Green Maiden Ticket,3,0,,10,,,,,,,,,,,,,{},{},{} -7775,Spring_Rabbit_Ticket,Spring Rabbit Ticket,3,0,,10,,,,,,,,,,,,,{},{},{} -7776,Max_Weight_Up_Scroll,Gym Pass,3,0,,10,,,,,,,,,,,,,{},{},{} -7777,Gold_Box,Sealed Golden Box,3,0,,10,,,,,,,,,,,,,{},{},{} -7778,Silver_Box,Sealed Silver Box,3,0,,10,,,,,,,,,,,,,{},{},{} -7779,Gold_Key_TW,Golden Key,3,0,,10,,,,,,,,,,,,,{},{},{} -7780,Silver_Key,Silver Key,3,0,,10,,,,,,,,,,,,,{},{},{} -7781,Heart_Box,Engrave Treasure Box,3,0,,10,,,,,,,,,,,,,{},{},{} -7782,Gold_Key77,Episode 13.1 Poporing Key,3,0,,10,,,,,,,,,,,,,{},{},{} -7783,Silver_Key77,Episode 13.2 Poring Key,3,0,,10,,,,,,,,,,,,,{},{},{} -7784,Fawner_Coupon1,Free Coupon 1,3,0,,10,,,,,,,,,,,,,{},{},{} -7785,Fawner_Coupon2,Free Coupon 2,3,0,,10,,,,,,,,,,,,,{},{},{} -7786,Fawner_Coupon3,Free Coupon 3,3,0,,10,,,,,,,,,,,,,{},{},{} -7787,Fawner_Coupon4,Free Coupon 4,3,0,,10,,,,,,,,,,,,,{},{},{} -7788,Fawner_Coupon5,Free Coupon 5,3,0,,10,,,,,,,,,,,,,{},{},{} -7789,Fawner_Coupon6,Free Coupon 6,3,0,,10,,,,,,,,,,,,,{},{},{} -7790,Fawner_Coupon7,Free Coupon 7,3,0,,10,,,,,,,,,,,,,{},{},{} -7791,Fawner_Coupon8,Free Coupon 8,3,0,,10,,,,,,,,,,,,,{},{},{} -7792,Guyak,Guyak,3,0,,10,,,,,,,,,,,,,{},{},{} -7793,Golden_Apple,Golden Apple,3,0,,0,,,,,,,,,,,,,{},{},{} -7794,Fate_Of_Crow,The Crow of Destiny,3,0,,0,,,,,,,,,,,,,{},{},{} -7795,Mami_Photo_Album,Mammi's Photo Album,3,2,,10,,,,,,,,,,,,,{},{},{} -7796,Author_Autograph,Author's Autograph,3,2,,10,,,,,,,,,,,,,{},{},{} -7797,Author_Memo,Author's Memo,3,2,,10,,,,,,,,,,,,,{},{},{} -7798,Dark_Debris,Fragment of Darkness,3,500,,10,,,,,,,,,,,,,{},{},{} -7799,Dark_Crystal,Crystal of Darkness,3,10,,10,,,,,,,,,,,,,{},{},{} -7800,Golden_Apple_,Golden Charm Apple,3,0,,0,,,,,,,,,,,,,{},{},{} -7801,Girl_Fan_Letter,Girl's Letter,3,0,,0,,,,,,,,,,,,,{},{},{} -7802,Autograph_Book,Signature Notebook,3,0,,0,,,,,,,,,,,,,{},{},{} -7803,Battle_Manual_TW,Beginner's Field Manual,3,0,,10,,,,,,,,,,,,,{},{},{} -//7804,????_???,????_???,3,,,10,,,,,,,,,,,,,{},{},{} -7805,Brown_Ring,Brown Jenoss's Family Ring,3,0,,10,,,,,,,,,,,,,{},{},{} -7806,Black_Anvil,God Anvil,3,0,,10,,,,,,,,,,,,,{},{},{} -7807,Ore,God Mineral,3,0,,10,,,,,,,,,,,,,{},{},{} -7808,Gold_Hammer,God Hammer,3,0,,10,,,,,,,,,,,,,{},{},{} -7809,Gold_Furnace,God Furnace,3,0,,10,,,,,,,,,,,,,{},{},{} -7810,Yellow_Cat_Eyed_Stone,Symbol of Richness,3,0,,10,,,,,,,,,,,,,{},{},{} -7811,Gold_Anvil,Anvil,3,0,,10,,,,,,,,,,,,,{},{},{} -7812,Red_Cat_Eyed_Stone,Symbol of Bravery,3,0,,10,,,,,,,,,,,,,{},{},{} -7813,Th_Red_Ring,Red Jenoss's Family Ring,3,0,,10,,,,,,,,,,,,,{},{},{} -7814,Green_Ring,Green Jenoss's Family Ring,3,0,,10,,,,,,,,,,,,,{},{},{} -7815,Blue_Ring,Blue Jenoss's Family Ring,3,0,,10,,,,,,,,,,,,,{},{},{} -7816,Blue_Cat_Eyed_Stone,Symbol of Faith,3,0,,10,,,,,,,,,,,,,{},{},{} -7817,White_Cat_Eyed_Stone,Symbol of Peace,3,0,,10,,,,,,,,,,,,,{},{},{} -7818,RJC_Golden_Necklace,Jessur's Necklace,3,0,,10,,,,,,,,,,,,,{},{},{} -7819,Nokia5300,Nokia 5300,3,0,,10,,,,,,,,,,,,,{},{},{} -7820,Morroc_Skin,Piece of Morocc Skin,3,0,,0,,,,,,,,,,,,,{},{},{} -7821,Green_Apple,Green Apple,3,20,,10,,,,,,,,,,,,,{},{},{} -7822,Whole_Barbecue,Whole Barbecue,3,20,,10,,,,,,,,,,,,,{},{},{} -7823,Meat_Veg_Skewer,Meat Veg Skewer,3,20,,10,,,,,,,,,,,,,{},{},{} -7824,Spirit_Liquor,Spirit Liquor,3,1000,,10,,,,,,,,,,,,,{},{},{} -7825,Heroic_Stone,Heroic Stone,3,20,,10,,,,,,,,,,,,,{},{},{} -7826,Continental_Guard_Paper,Continental Guard Paper,3,0,,0,,,,,,,,,,,,,{},{},{} -7827,Mineral_Report,Mineral Evals,3,0,,0,,,,,,,,,,,,,{},{},{} -7828,BF_Badge1,Bravery Badge,3,0,,0,,,,,,,,,,,,,{},{},{} -7829,BF_Badge2,Valor Badge,3,0,,0,,,,,,,,,,,,,{},{},{} -7830,Goddess_Tear,Goddess Tear,3,1,,500,,,,,,,,,,,,,{},{},{} -7831,Valkyrie_Token,Valkyrie's Token,3,1,,500,,,,,,,,,,,,,{},{},{} -7832,Brynhild_Armor_Piece,Brynhild Armor Piece,3,1,,500,,,,,,,,,,,,,{},{},{} -7833,Hero_Remains,Hero's Remains,3,1,,500,,,,,,,,,,,,,{},{},{} -7834,Andvari_Ring,Andvari's Ring,3,1,,500,,,,,,,,,,,,,{},{},{} -7835,Dusk_Glow,Dusk Glow,3,1,,500,,,,,,,,,,,,,{},{},{} -7836,Dawn_Essence,Dawn Essence,3,1,,500,,,,,,,,,,,,,{},{},{} -7837,Cold_Moonlight,Cold Moonlight,3,1,,500,,,,,,,,,,,,,{},{},{} -7838,Hazy_Starlight,Hazy Starlight,3,1,,500,,,,,,,,,,,,,{},{},{} -7839,Crystal_Key,Crystal Key,3,0,,0,,,,,,,,,,,,,{},{},{} -7840,Valkyrie_Gift,Valkyrie's Gift,3,0,,0,,,,,,,,,,,,,{},{},{} -7841,Spotted_Paper,Stained Piece Of Paper,3,0,,0,,,,,,,,,,,,,{},{},{} -7842,Torn_Paper,Torn Piece Of Paper,3,0,,0,,,,,,,,,,,,,{},{},{} -7843,Old_Paper,Old Piece Of Paper,3,0,,0,,,,,,,,,,,,,{},{},{} -7844,Burnt_Paper,Burnt Pieces Of Paper,3,0,,0,,,,,,,,,,,,,{},{},{} -7845,Copy_Of_Spotted_Paper,Copy Of Spotted Paper,3,0,,10,,,,,,,,,,,,,{},{},{} -7846,Copy_Of_Torn_Paper,Copy Of Torn Paper,3,0,,10,,,,,,,,,,,,,{},{},{} -7847,Copy_Of_Old_Paper,Copy Of Old Paper,3,0,,10,,,,,,,,,,,,,{},{},{} -7848,Copy_Of_Burnt_Paper,Copy Of Burnt Paper,3,0,,10,,,,,,,,,,,,,{},{},{} -7849,Soul_Crystal,Soul Crystal,3,0,,10,,,,,,,,,,,,,{},{},{} -7850,Wooden_Block_,Wooden Block,3,20,,100,,,,,,,,,,,,,{},{},{} -7851,Pass_F1,Wii Raffle Ticket,3,20,,10,,,,,,,,,,,,,{},{},{} -7852,Pass_F2,Divx Player Raffle Ticket,3,20,,10,,,,,,,,,,,,,{},{},{} -7853,Pass_F3,iPod nano Raffle Ticket,3,20,,10,,,,,,,,,,,,,{},{},{} -7854,Pass_CF,Comodo Festival Ticket,3,20,,10,,,,,,,,,,,,,{},{},{} -7855,Heart,Heart,3,20,,10,,,,,,,,,,,,,{},{},{} -7856,Girl_Bunch_Of_Flower_,Girl's Bouquet,3,20,,50,,,,,,,,,,,,,{},{},{} -7857,Handmade_Kitty_Doll,Hand-made Kitty Doll,3,20,,30,,,,,,,,,,,,,{},{},{} -7858,Dragonball_Yellow_,Dragonball Yellow,3,20,,10,,,,,,,,,,,,,{},{},{} -7859,Game_Ticket,Game Ticket,3,20,,100,,,,,,,,,,,,,{},{},{} -7860,Peeps,Peeps,3,0,,50,,,,,,,,,,,,,{},{},{} -7861,Jelly_Bean,Jelly Bean,3,0,,50,,,,,,,,,,,,,{},{},{} -7862,Marshmallow,Marshmallow,3,0,,50,,,,,,,,,,,,,{},{},{} -7863,GOLD_ID4,Special Gold,3,20,,200,,,,,,,,,,,,,{},{},{} -7864,Love_Flower,Love Flower,3,20,,10,,,,,,,,,,,,,{},{},{} -7865,Gold_Pouch,Gold Pouch,3,10,,0,,,,,,,,,,,,,{},{},{} -7866,Certificate,Certificate,3,10,,0,,,,,,,,,,,,,{},{},{} -7867,SesamePouch,Sesame Bag,3,10,,100,,,,,,,,,,,,,{},{},{} -7868,Water,Fresh Water,3,10,,100,,,,,,,,,,,,,{},{},{} -7869,RicePouch,Rice Pouch,3,10,,100,,,,,,,,,,,,,{},{},{} -7870,Corn,Corn,3,5,,20,,,,,,,,,,,,,{},{},{} -7871,BeanPouch,Bean Bag,3,10,,20,,,,,,,,,,,,,{},{},{} -7872,Grass,Herb,3,10,,30,,,,,,,,,,,,,{},{},{} -7873,MVP_Monster_Scroll,MVP Monster Scroll,3,10,,10,,,,,,,,,,,,,{},{},{} -7874,Monster_Scroll,Create Monster Scroll,3,10,,10,,,,,,,,,,,,,{},{},{} -7875,Pirate_Box,Pirate Treasure,3,300000,,0,,,,,,,,,,,,,{},{},{} -7876,Gold_Key,Golden Key,3,0,,50,,,,,,,,,,,,,{},{},{} -7877,Red_Ring,Red Ring,3,0,,100,,,,,,,,,,,,,{},{},{} -7878,Lusalka_Hair,Lusalka's Hair,3,0,,10,,,,,,,,,,,,,{},{},{} -7879,Golden_Thread,Golden Thread,3,0,,10,,,,,,,,,,,,,{},{},{} -7880,Babayaga_Silver_Spoon,Baba Yaga's Silver Spoon,3,0,,10,,,,,,,,,,,,,{},{},{} -7881,Book_Of_Magic,Mystery Magic Book,3,0,,50,,,,,,,,,,,,,{},{},{} -7882,Pointed_Branch,Sharp Branch,3,0,,0,,,,,,,,,,,,,{},{},{} -7883,Pointed_Wooden_Flute,Wooden Flute,3,0,,0,,,,,,,,,,,,,{},{},{} -7884,Jade_Plate,Jade Plate,3,0,,0,,,,,,,,,,,,,{},{},{} -7885,Sacred_Arrow,Sacred Arrow,3,0,,0,,,,,,,,,,,,,{},{},{} -7886,Bean_Paste,Bean Paste,3,0,,10,,,,,,,,,,,,,{},{},{} -7887,Dried_Fruit_Box,Dried Fruit Box,3,0,,30,,,,,,,,,,,,,{},{},{} -7888,Bag_Of_Nuts,Bag of Nuts,3,0,,30,,,,,,,,,,,,,{},{},{} -7889,Chicken_Feed,Chicken Feed,3,0,,20,,,,,,,,,,,,,{},{},{} -7891,Mug,Mug,3,2,,100,,,,,,,,,,,,,{},{},{} -7892,Charcoal,Charcoal,3,10,,10,,,,,,,,,,,,,{},{},{} -7893,Sulfur,Sulphur,3,10,,10,,,,,,,,,,,,,{},{},{} -7894,Nitrate,Nitrogen Acid,3,10,,10,,,,,,,,,,,,,{},{},{} -7895,TRO_Memory_Book01,Rama5 Book,3,0,,0,,,,,,,,,,,,,{},{},{} -7896,TRO_Memory_Book02,Loykrathong Book,3,0,,0,,,,,,,,,,,,,{},{},{} -7897,TRO_Memory_Book03,Constitution Book,3,0,,0,,,,,,,,,,,,,{},{},{} -7898,VVS_Balmung,VV Strong Balmung,3,0,,0,,,,,,,,,,,,,{},{},{} -7899,Spiritualist_Dagger,Dagger Of Psychic,3,0,,0,,,,,,,,,,,,,{},{},{} -7900,Jenoss_Ring1,Jonathan Family Ring,3,0,,0,,,,,,,,,,,,,{},{},{} -7901,Jenoss_Ring2,Jillberriel Family Ring,3,0,,0,,,,,,,,,,,,,{},{},{} -7902,Jenoss_Ring3,Jessur Family Ring,3,0,,0,,,,,,,,,,,,,{},{},{} -7903,Jenoss_Ring4,Jenoss Family Ring,3,0,,0,,,,,,,,,,,,,{},{},{} -7904,Piano_Key,Piano Key,3,0,,0,,,,,,,,,,,,,{},{},{} -7905,Rok_Star_Badge_,Rok Star Badge,3,20,,100,,,,,,,,,,,,,{},{},{} -7906,Poppy_Wreath,Poppy Wreath,3,0,,0,,,,,,,,,,,,,{},{},{} -7907,Bobbin_Of_Goddess,Bobbin Of Goddess,3,20,,10,,,,,,,,,,,,,{},{},{} -7908,Louis_Hair_Coupon,Louise's Beauty Coupon,3,0,,10,,,,,,,,,,,,,{},{},{} -7909,Stolen_Cookie,Stolen Cookie,3,0,,10,,,,,,,,,,,,,{},{},{} -7910,Stolen_Candy,Stolen Candy,3,0,,10,,,,,,,,,,,,,{},{},{} -7911,Yulia_Hat,Yulia's Hat,3,0,,10,,,,,,,,,,,,,{},{},{} -7912,Portable_Snowman,Portable Snowman Machine,3,0,,0,,,,,,,,,,,,,{},{},{} -7913,Test_Certificate,Battle Test Certificate,3,0,,0,,,,,,,,,,,,,{},{},{} -7914,Ancient_Document_TW,Ancient Language Document,3,10,,0,,,,,,,,,,,,,{},{},{} -7915,Copper_Coin_,Bronze Coin,3,0,,10,,,,,,,,,,,,,{},{},{} -7916,Silver_Coin_,Silver Coin,3,0,,10,,,,,,,,,,,,,{},{},{} -7917,Magic_Potion,Magic Potion,3,0,,0,,,,,,,,,,,,,{},{},{} -7918,Particle_Of_Memory,Fragment Of Memory,3,2000,,100,,,,,,,,,,,,,{},{},{} -7919,Festival_Ticket,Festival Ticket,3,10,,10,,,,,,,,,,,,,{},{},{} -7920,Hero's_Arsenal,He's Arsenal,3,0,,0,,,,,,,,,,,,,{},{},{} -7921,Essence_Of_Dragon,Essence Of Dragon,3,1000,,10,,,,,,,,,,,,,{},{},{} -7922,RWC_Ticket,RWC Voucher Items,3,2,,10,,,,,,,,,,,,,{},{},{} -7923,KRATHONG_,Krathong,3,0,,0,,,,,,,,,,,,,{},{},{} -7924,Gold_Paper,Gold Paper,3,20,,10,,,,,,,,,,,,,{},{},{} -7925,Silver_Paper,Silver Paper,3,20,,10,,,,,,,,,,,,,{},{},{} -7926,Incense,Incense,3,20,,10,,,,,,,,,,,,,{},{},{} -7927,Candle_TW,Candle TW,3,20,,10,,,,,,,,,,,,,{},{},{} -7928,Brazilian_Flag_,Brazil National Flag,3,10,,10,,,,,,,,,,,,,{},{},{} -7929,Golden_Coin_,Gold Coin,3,10,,10,,,,,,,,,,,,,{},{},{} -7930,Cowking's_Nose_Ring,Devil's Cattle Ring,3,0,,1000,,,,,,,,,,,,,{},{},{} -7931,Poison_Kit,Poison Kit,3,1,,10,,,,,,,,,,,,,{},{},{} -7932,Poison_Herb_Nerium,Poison Herb Nerium,3,1,,10,,,,,,,,,,,,,{},{},{} -7933,Poison_Herb_Rantana,Poison Herb Rantana,3,1,,10,,,,,,,,,,,,,{},{},{} -7934,Poison_Herb_Makulata,Poison Herb Makulata,3,1,,10,,,,,,,,,,,,,{},{},{} -7935,Poison_Herb_Seratum,Poison Herb Seratum,3,1,,10,,,,,,,,,,,,,{},{},{} -7936,Poison_Herb_Scopolia,Poison Herb Scoporia,3,1,,10,,,,,,,,,,,,,{},{},{} -7937,Poison_Herb_Amoena,Poison Herb Amoena,3,1,,10,,,,,,,,,,,,,{},{},{} -7938,Light_Granule,Light Granule,3,1500,,10,,,,,,,,,,,,,{},{},{} -7939,Elder_Branch,Elder Branch,3,1500,,10,,,,,,,,,,,,,{},{},{} -7940,Special_Alloy_Trap,Special Alloy Trap,3,300,,2,,,,,,,,,,,,,{},{},{} -7941,Halloween_Ticket,Halloween Ticket,3,10,,0,,,,,,,,,,,,,{},{},{} -7942,Letter_From_Chico,Chico Cesar Letter,3,0,,0,,,,,,,,,,,,,{},{},{} -7943,Caskinya,Caskinya,3,0,,0,,,,,,,,,,,,,{},{},{} -7944,Sealed_Box,Sealed Box,3,10,,10,,,,,,,,,,,,,{},{},{} -7945,Almighty_Charm,Universal Amulet,3,0,,10,,,,,,,,,,,,,{},{},{} -7946,Valentine_Gold_Ring,Gold Ring Of Valentine,3,10,,0,,,,,,,,,,,,,{},{},{} -7947,Valentine_Silver_Ring,Silver Ring Of Valentine,3,10,,0,,,,,,,,,,,,,{},{},{} -7948,Box,Box,3,10,,10,,,,,,,,,,,,,{},{},{} -7949,Woven_Wool,Woven Wool,3,10,,0,,,,,,,,,,,,,{},{},{} -7950,Ayothaya_Ticket,Ayothaya Fest Ticket,3,10,,0,,,,,,,,,,,,,{},{},{} -7951,Gold_Tulip,Golden Tulip Flower,3,10,,0,,,,,,,,,,,,,{},{},{} -7952,Gift_From_Romiros,Gift Of Lomi Ross,3,0,,0,,,,,,,,,,,,,{},{},{} -7953,Gift_From_Juliedge,Gift Of Juliet,3,0,,0,,,,,,,,,,,,,{},{},{} -7954,Festival_Ticket_,Summer Festival Ticket,3,10,,10,,,,,,,,,,,,,{},{},{} -7955,Lost_Card1,Lost Card1,3,10,,0,,,,,,,,,,,,,{},{},{} -7956,Lost_Card2,Lost Card2,3,10,,0,,,,,,,,,,,,,{},{},{} -7957,Lost_Card3,Lost Card3,3,10,,0,,,,,,,,,,,,,{},{},{} -7958,Lost_Card4,Lost Card4,3,10,,0,,,,,,,,,,,,,{},{},{} -7959,Ancient_Gold_Coin,Ancient Gold Coin,3,0,,0,,,,,,,,,,,,,{},{},{} -7960,Ancient_Silver_Coin,Ancient Silver Coin,3,0,,0,,,,,,,,,,,,,{},{},{} -7961,Weapon_Exchange,Weapon Exchange,3,0,,0,,,,,,,,,,,,,{},{},{} -7962,Treasure_Map1,Treasure Map1,3,10,,0,,,,,,,,,,,,,{},{},{} -7963,Treasure_Map2,Treasure Map2,3,10,,0,,,,,,,,,,,,,{},{},{} -7964,Treasure_Map3,Treasure Map3,3,10,,0,,,,,,,,,,,,,{},{},{} -7965,Treasure_Map4,Treasure Map4,3,10,,0,,,,,,,,,,,,,{},{},{} -7966,Weird_Parchment1,Weird Parchment1,3,10,,0,,,,,,,,,,,,,{},{},{} -7967,Weird_Parchment2,Weird Parchment2,3,10,,0,,,,,,,,,,,,,{},{},{} -7968,Weird_Parchment3,Weird Parchment3,3,10,,0,,,,,,,,,,,,,{},{},{} -7969,Weird_Parchment4,Weird Parchment4,3,10,,0,,,,,,,,,,,,,{},{},{} -7970,Unwritten_Letter1,Unwritten Letter1,3,0,,0,,,,,,,,,,,,,{},{},{} -7971,Unwritten_Letter2,Unwritten Letter2,3,0,,0,,,,,,,,,,,,,{},{},{} -7972,Oath_Day_Letter,Oath Day Letter,3,0,,0,,,,,,,,,,,,,{},{},{} -7973,Immortality_Egg,Immortality Egg,3,20,,0,,,,,,,,,,,,,{},{},{} -7974,Illusion_Piece,Illusion Piece,3,20,,0,,,,,,,,,,,,,{},{},{} -7975,Cupid_Choco,Cupid Choco,3,0,,0,,,,,,,,,,,,,{},{},{} -7976,Gf_Magic_Coin,Gf Magic Coin,3,20,,0,,,,,,,,,,,,,{},{},{} -7977,Hunting_Medal_Badge,Hunting Medal Badge,3,0,,0,,,,,,,,,,,,,{},{},{} -7978,Spring_Stanza1,Spring Stanza1,3,2,,10,,,,,,,,,,,,,{},{},{} -7979,Spring_Stanza2,Spring Stanza2,3,2,,10,,,,,,,,,,,,,{},{},{} -7980,Spring_Stanza3,Spring Stanza3,3,2,,10,,,,,,,,,,,,,{},{},{} -7981,Spring_Stanza4,Spring Stanza4,3,2,,10,,,,,,,,,,,,,{},{},{} -7982,Spring_Stanza5,Spring Stanza5,3,2,,10,,,,,,,,,,,,,{},{},{} -7983,Spring_Stanza6,Spring Stanza6,3,2,,10,,,,,,,,,,,,,{},{},{} -7984,Spring_Stanza7,Spring Stanza7,3,2,,10,,,,,,,,,,,,,{},{},{} -7985,Spring_Stanza8,Spring Stanza8,3,2,,10,,,,,,,,,,,,,{},{},{} -7986,Spring_Stanza9,Spring Stanza9,3,2,,10,,,,,,,,,,,,,{},{},{} -7987,Spring_Stanza10,Spring Stanza10,3,2,,10,,,,,,,,,,,,,{},{},{} -7988,Spring_Stanza11,Spring Stanza11,3,2,,10,,,,,,,,,,,,,{},{},{} -7989,Spring_Stanza12,Spring Stanza12,3,2,,10,,,,,,,,,,,,,{},{},{} -7990,Spring_Stanza13,Spring Stanza13,3,2,,10,,,,,,,,,,,,,{},{},{} -7991,Spring_Stanza14,Spring Stanza14,3,2,,10,,,,,,,,,,,,,{},{},{} -7992,Spring_Stanza15,Spring Stanza15,3,2,,10,,,,,,,,,,,,,{},{},{} -7993,Spring_Stanza16,Spring Stanza16,3,2,,10,,,,,,,,,,,,,{},{},{} -7994,Spring_Stanza17,Spring Stanza17,3,2,,10,,,,,,,,,,,,,{},{},{} -7995,Spring_Stanza18,Spring Stanza18,3,2,,10,,,,,,,,,,,,,{},{},{} -7996,Spring_Stanza19,Spring Stanza19,3,2,,10,,,,,,,,,,,,,{},{},{} -7997,Spring_Stanza20,Spring Stanza20,3,2,,10,,,,,,,,,,,,,{},{},{} -7998,Spring_Stanza21,Spring Stanza21,3,2,,10,,,,,,,,,,,,,{},{},{} -7999,Spring_Stanza22,Spring Stanza22,3,2,,10,,,,,,,,,,,,,{},{},{} -// Pet Eggs -//=================================================================== -9001,Poring_Egg,Poring Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9002,Drops_Egg,Drops Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9003,Poporing_Egg,Poporing Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9004,Lunatic_Egg,Lunatic Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9005,Picky_Egg,Picky Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9006,Chonchon_Egg,Chonchon Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9007,Steel_Chonchon_Egg,Steel Chonchon Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9008,Hunter_Fly_Egg,Hunter Fly Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9009,Savage_Bebe_Egg,Savage Babe Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9010,Baby_Desert_Wolf_Egg,Baby Desert Wolf Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9011,Rocker_Egg,Rocker Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9012,Spore_Egg,Spore Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9013,Poison_Spore_Egg,Poison Spore Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9014,PecoPeco_Egg,Peco Peco Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9015,Smokie_Egg,Smokie Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9016,Yoyo_Egg,Yoyo Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9017,Orc_Warrior_Egg,Orc Warrior Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9018,Munak_Egg,Munak Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9019,Dokkaebi_Egg,Dokebi Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9020,Sohee_Egg,Sohee Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9021,Isis_Egg,Isis Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9022,Green_Petite_Egg,Green Petite Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9023,Deviruchi_Egg,Deviruchi Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9024,Bapho_Jr._Egg,Bapho Jr. Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9025,Bongun_Egg,Bongun Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9026,Zherlthsh_Egg,Zealotus Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9027,Alice_Egg,Alice Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9028,Rice_Cake_Egg,Hard Rice Cake,7,20,,0,,,,,,,,,,,,,{},{},{} -9029,Santa_Goblin_Egg,Christmas Goblin's Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9030,Chung_E_Egg,Green Maiden Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9031,Spring_Rabbit_Egg,Spring Rabbit Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9032,Knife_Goblin_Egg,Knife Goblin Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9033,Flail_Goblin_Egg,Flail Goblin Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9034,Hammer_Goblin_Egg,Hammer Goblin Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9035,Red_Deleter_Egg,Red Deleter Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9036,Diabolic_Egg,Diabolic Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9037,Wanderer_Egg,Wanderer Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9038,New_Year_Doll_Egg,New Year Doll Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9039,Bacsojin_Egg,Bacsojin Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9040,Civil_Servant_Egg,Civil Servant Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9041,Leaf_Cat_Egg,Leaf Cat Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9042,Loli_Ruri_Egg,Loli Ruri Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9043,Marionette_Egg,Marionette Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9044,Shinobi_Egg,Shinobi Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9045,Whisper_Egg,Whisper Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9046,Goblin_Leader_Egg,Goblin Leader Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9047,Wicked_Nymph_Egg,Wicked Nymph Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9048,Miyabi_Ningyo_Egg,Miyabi Ningyo Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9049,Dullahan_Egg,Dullahan Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9050,Medusa_Egg,Medusa Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9051,Stone_Shooter_Egg,Stone Shooter Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9052,Incubus_Egg,Incubus Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9053,Golem_Egg,Golem Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9054,Nightmare_Terror_Egg,Nightmare Terror Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9055,Succubus_Egg,Succubus Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9056,Imp_Egg,Imp Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9057,Egg_Of_Tiny,Egg Of Tiny,7,20,,0,,,,,,,,,,,,,{},{},{} -9058,Snow_Rabbit_Egg,Christmas Snow Rabbit Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9059,Tikbalang_Pet,Tikbalang Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9060,Brownie_Egg,Domovoi Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9061,Marin_Egg,Marin Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9062,Novice_Poring_Egg,Novice Poring Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9063,Woodie_Egg,Woodie Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9064,Elephant_Egg,Elephant Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9065,Gorilla_Egg,Gorilla Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9066,Lion_Egg,Lion Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9067,Rhino_Egg,Rhino Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9068,Blue_Unicorn_Egg,Blue Unicorn Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9069,Mastering_Egg,Mastering Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9070,Savage_Egg,Savage Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9071,Grand_Peco_Peco_Egg,Grand Peco Peco Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9072,Orc_Hero_Egg,Orc Hero Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9073,Orc_Lord_Egg,Orc Lord Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9074,Rubylit_Egg,Rubylit Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9075,Sapphilit_Egg,Sapphilit Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9076,Emelit_Egg,Emelit Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9077,Topalit_Egg,Topalit Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9078,Amelit_Egg,Amelit Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9079,Mythlit_Egg,Mythlit Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9080,Tamadora_Egg,Tamadora Egg,7,20,,0,,,,,,,,,,,,,{},{},{} - -9087,High_Orc_Egg,High Orc Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9088,Angeling_Egg,Angeling Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9089,Am_Mut_Egg,Am Mut Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9090,Little_Isis_Egg,Little Isis Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9091,Choco_Egg,Choco Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9092,Eggring_Egg,Eggring Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9093,Hyegun_Egg,Hyegun Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9094,Dr_Lunatic_Egg,Leaf Lunatic Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9095,Nine_Tail_Egg,Nine Tail Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9096,Cat_o_Nine_Tail_Egg,Cat o Nine Tail Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9097,Diabolic_2_Egg,Diabolic Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9098,Fire_Deleter_Egg,Fire Deleter Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9099,Teddy_Bear_Egg,Teddy Bear Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9100,Gremlin_Egg,Gremlin Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9101,Scatletoncarrier,Scatleton's Cage,7,20,,0,,,,,,,,,,,,,{},{},{} -9102,Mummy_Egg,Mummy Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9103,Willow_Egg,Willow Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9104,Roween_Egg,Roween Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9105,Hodremlin_Egg,Hodremlin Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9106,Metaller_Egg,Metaller Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9107,Ancient_Mummy_Egg,Ancient Mummy Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9108,Xm_Teddy_Bear_Egg,Xmas Teddy Bear Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9109,Sweet_Drops_Egg,Sweet Drops Egg,7,20,,0,,,,,,,,,,,,,{},{},{} - -9111,Phreeoni_Egg,Phreeoni Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9112,Moonlight_Egg,Moonlight Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9113,Roost_Of_Skelion,Roost Of Skelion,7,20,,0,,,,,,,,,,,,,{},{},{} -9114,Pouring_Egg,Pouring Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9115,Bacsojin2_Egg_,Bacsojin Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9116,Rigid_Nightmare_Terror_Egg,Rigid Nightmare Terror Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9117,Contaminated_Wanderer_Egg,Contaminated Wanderer Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9118,Aliot_Egg,Aliot Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9119,Alicel_Egg,Alicel Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9120,Aliza_Egg,Aliza Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9121,Orc_Hero_Egg_,Orc Hero Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9122,Gloom_Under_Egg,Gloom Under Night Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9123,Ep_17_2_C_Admin1_Egg,Child Admin Beta Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -9124,Ep_17_2_C_Admin2_Egg,Child Admin Alpha Egg,7,20,,0,,,,,,,,,,,,,{},{},{} -//=================================================================== -// Pet Accessories -//=================================================================== -10001,Skull_Helm,Skull Helm,8,20,,0,,,,,,,,,,,,,{},{},{} -10002,Monster_Oxygen_Mask,Monster Oxygen Mask,8,20,,0,,,,,,,,,,,,,{},{},{} -10003,Transparent_Headgear,Transparent Head Protector,8,20,,0,,,,,,,,,,,,,{},{},{} -10004,Pacifier,Pacifier,8,20,,0,,,,,,,,,,,,,{},{},{} -10005,Wig,Wig,8,20,,0,,,,,,,,,,,,,{},{},{} -10006,Queen's_Hair_Ornament,Queen's Hair Ornament,8,20,,0,,,,,,,,,,,,,{},{},{} -10007,Silk_Ribbon,Silk Ribbon,8,20,,0,,,,,,,,,,,,,{},{},{} -10008,Punisher,Punisher,8,20,,0,,,,,,,,,,,,,{},{},{} -10009,Wild_Flower,Wild Flower,8,20,,0,,,,,,,,,,,,,{},{},{} -10010,Battered_Pot,Battered Pot,8,20,,0,,,,,,,,,,,,,{},{},{} -10011,Stellar_Hairpin,Stellar Hairpin,8,20,,0,,,,,,,,,,,,,{},{},{} -10012,Tiny_Egg_Shell,Tiny Egg Shell,8,20,,0,,,,,,,,,,,,,{},{},{} -10013,Backpack,Backpack,8,1500,,0,,,,,,,,,,,,,{},{},{} -10014,Rocker_Glasses,Rocker Glasses,8,2000,,0,,,,,,,,,,,,,{},{},{} -10015,Green_Lace,Green Lace,8,20,,0,,,,,,,,,,,,,{},{},{} -10016,Golden_Bell,Golden Bell,8,20,,0,,,,,,,,,,,,,{},{},{} -10017,Bark_Shorts,Bark Shorts,8,20,,0,,,,,,,,,,,,,{},{},{} -10018,Monkey_Circlet,Monkey Circlet,8,20,,0,,,,,,,,,,,,,{},{},{} -10019,Red_Muffler,Red Scarf,8,20,,0,,,,,,,,,,,,,{},{},{} -10020,Sword_Of_Grave_Keeper,Grave Keeper's Sword,8,20,,0,,,,,,,,,,,,,{},{},{} -10021,Round_Hair_Ornament,Circular Headgear,8,20,,0,,,,,,,,,,,,,{},{},{} -10022,Golden_Earing,Gold Earring,8,20,,0,,,,,,,,,,,,,{},{},{} -10023,Green_Lucky_Bag,Green Jewel Bag,8,20,,0,,,,,,,,,,,,,{},{},{} -10024,Fashionable_Glasses,Fashion Glasses,8,20,,0,,,,,,,,,,,,,{},{},{} -10025,Star_Hairband,Hairband Of Stars,8,20,,0,,,,,,,,,,,,,{},{},{} -10026,Wine_On_Sleeve,Tassel for Durumagi,8,20,,0,,,,,,,,,,,,,{},{},{} -10027,Spirit_Chain_,Pet Soul Ring,8,20,,0,,,,,,,,,,,,,{},{},{} -10028,Nice_Badge,Beautiful Badges,8,20,,0,,,,,,,,,,,,,{},{},{} -10029,Jade_Trinket,Jade Trinket,8,20,,0,,,,,,,,,,,,,{},{},{} -10030,Summer_Fan,Summer Fan,8,20,,0,,,,,,,,,,,,,{},{},{} -10031,Death_Coil,Ring Of Death,8,20,,0,,,,,,,,,,,,,{},{},{} -10032,Queen's_Coronet,Queen's Coronet,8,20,,0,,,,,,,,,,,,,{},{},{} -10033,Apro_Hair,Afro,8,20,,0,,,,,,,,,,,,,{},{},{} -10034,Ball_Mask,Masked Ball,8,20,,0,,,,,,,,,,,,,{},{},{} -10035,Windup_Spring,Spring,8,20,,0,,,,,,,,,,,,,{},{},{} -10036,Hell_Horn,Horn Of Hell,8,20,,0,,,,,,,,,,,,,{},{},{} -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,,,,,,,,,,,,,{},{},{} -10040,Red_Bell_Necklace,Red Bell Necklace,8,20,,0,,,,,,,,,,,,,{},{},{} -10041,Shiny_Star_Button,Shiny Star Button,8,20,,0,,,,,,,,,,,,,{},{},{} -10042,Dark_Mane,Dark Mane,8,20,,0,,,,,,,,,,,,,{},{},{} -//=================================================================== -// Misc "Etc" Books -//=================================================================== -11000,Prontera_Book_01,History book of Prontera,3,8000,,10,,,,,,,,,,,,,{},{},{} -11001,Adventure_Story01,Adventure Story Vol.1,3,8000,,10,,,,,,,,,,,,,{},{},{} -11002,Great_Chef_Orleans01,Chef King Orleans Vol.1,3,8000,,10,,,,,,,,,,,,,{},{},{} -11003,Legend_Of_Kafra01,Kafra Legend Vol.1,3,8000,,10,,,,,,,,,,,,,{},{},{} -11004,Mercenary_Rebellion,Old Book,3,10000,,10,,,,,,,,,,,,,{},{},{} -11005,Tyrant_Schmidt,Rune Royal Family Book,3,10000,,10,,,,,,,,,,,,,{},{},{} -11006,Blood_Flower01,Blood Flower Vol.1,3,8000,,10,,,,,,,,,,,,,{},{},{} -11007,Blood_Flower02,Blood Flower Vol.2,3,8000,,10,,,,,,,,,,,,,{},{},{} -11008,Barmund,Biographical Dictionary Copy Edition,3,10000,,10,,,,,,,,,,,,,{},{},{} -11009,Adventure_Story02,Adventure Story Vol.2,3,8000,,10,,,,,,,,,,,,,{},{},{} -11010,Reward_List_Book,Battlegrounds Catalog,3,0,,10,,,,,,,,,,,,,{},{},{} -11011,Barmund_Note,Varmunt's Note,3,0,,0,,,,,,,,,,,,,{},{},{} -11012,Expedition_Report,Expedition Report,3,0,,0,,,,,,,,,,,,,{},{},{} -11013,Expedition_Report_Vol1,Expedition Report Vol1,3,0,,0,,,,,,,,,,,,,{},{},{} -11014,Expedition_Report_Vol2,Expedition Report Vol2,3,0,,0,,,,,,,,,,,,,{},{},{} -11015,Expedition_Report_Vol3,Expedition Report Vol3,3,0,,0,,,,,,,,,,,,,{},{},{} -11016,Expedition_Report_Vol4,Expedition Report Vol4,3,0,,0,,,,,,,,,,,,,{},{},{} -11017,Reward_List_Book2,KVM Reward Items Catalog,3,0,,10,,,,,,,,,,,,,{},{},{} -11018,Splendide_Selling_Item,Splendide Selling Item,3,0,,10,,,,,,,,,,,,,{},{},{} -11019,Manuk_Selling_Item,Manuk Selling Item,3,0,,10,,,,,,,,,,,,,{},{},{} -11020,Japan_Book1,Japan Book1,3,20,,10,,,,,,,,,,,,,{},{},{} -11021,Japan_Book2,Japan Book2,3,20,,10,,,,,,,,,,,,,{},{},{} -11022,Mix_Cook_Book,Mix Cook Book,3,10,,10,,,,,,,,,,,,,{},{},{} -11023,Increase_Stamina_Study,Increase Stamina Study,3,10,,50,,,,,,,,,,,,,{},{},{} -11024,Vital_Drink_CB,Vital Drink CB,3,10,,50,,,,,,,,,,,,,{},{},{} -11025,Swordman_Book_Basic,Swordman Book Basic,3,20,,10,,,,,,,,,,,,,{},{},{} -11026,Swordman_Book_Practice,Swordman Book Practice,3,20,,10,,,,,,,,,,,,,{},{},{} -11027,Swrodman_Book_Misc,Swrodman Book Misc,3,20,,10,,,,,,,,,,,,,{},{},{} -11028,Thief_Book_Basic,Thief Book Basic,3,20,,10,,,,,,,,,,,,,{},{},{} -11029,Thief_Book_Practice,Thief Book Practice,3,20,,10,,,,,,,,,,,,,{},{},{} -11030,Thief_Book_Misc,Thief Book Misc,3,20,,10,,,,,,,,,,,,,{},{},{} -11031,Archer_Book_Basic,Archer Book Basic,3,20,,10,,,,,,,,,,,,,{},{},{} -11032,Archer_Book_Practice,Archer Book Practice,3,20,,10,,,,,,,,,,,,,{},{},{} -11033,Archer_Book_Misc,Archer Book Misc,3,20,,10,,,,,,,,,,,,,{},{},{} -11034,Acol_Book_Basic,Acol Book Basic,3,20,,10,,,,,,,,,,,,,{},{},{} -11035,Acol_Book_Practice,Acol Book Practice,3,20,,10,,,,,,,,,,,,,{},{},{} -11036,Acol_Book_Misc,Acol Book Misc,3,20,,10,,,,,,,,,,,,,{},{},{} -11037,Mage_Book_Basic,Mage Book Basic,3,20,,10,,,,,,,,,,,,,{},{},{} -11038,Mage_Book_Practice,Mage Book Practice,3,20,,10,,,,,,,,,,,,,{},{},{} -11039,Mage_Book_Misc,Mage Book Misc,3,20,,10,,,,,,,,,,,,,{},{},{} -11040,Mer_Book_Basic,Mer Book Basic,3,20,,10,,,,,,,,,,,,,{},{},{} -11041,Mer_Book_Practice,Mer Book Practice,3,20,,10,,,,,,,,,,,,,{},{},{} -11042,Mer_Book_Misc,Mer Book Misc,3,20,,10,,,,,,,,,,,,,{},{},{} -11043,TK_Book_Basic,TK Book Basic,3,20,,10,,,,,,,,,,,,,{},{},{} -11044,TK_Book_Practice,TK Book Practice,3,20,,10,,,,,,,,,,,,,{},{},{} -11045,TK_Book_Misc,TK Book Misc,3,20,,10,,,,,,,,,,,,,{},{},{} -11046,Ninja_Book_Basic,Ninja Book Basic,3,20,,10,,,,,,,,,,,,,{},{},{} -11047,Ninja_Book_Practice,Ninja Book Practice,3,20,,10,,,,,,,,,,,,,{},{},{} -11048,Ninja_Book_Misc,Ninja Book Misc,3,20,,10,,,,,,,,,,,,,{},{},{} -11049,Gun_Book_Basic,Gun Book Basic,3,20,,10,,,,,,,,,,,,,{},{},{} -11050,Gun_Book_Practice,Gun Book Practice,3,20,,10,,,,,,,,,,,,,{},{},{} -11051,Gun_Book_Misc,Gun Book Misc,3,20,,10,,,,,,,,,,,,,{},{},{} -11052,SN_Book_Basic,SN Book Basic,3,20,,10,,,,,,,,,,,,,{},{},{} -11053,SN_Book_Practice,SN Book Practice,3,20,,10,,,,,,,,,,,,,{},{},{} -11054,SN_Book_Misc,SN Book Misc,3,20,,10,,,,,,,,,,,,,{},{},{} -11055,Basic_Adventure,Basic Adventure,3,20,,10,,,,,,,,,,,,,{},{},{} -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,,,,,,,,,,,,,{},{},{} -11059,WoE_TE_Rental_List,WoE TE Rental List,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; },{},{} -11501,Light_White_Pot,Light White Potion,0,1200,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(325,405),0; },{},{} -11502,Light_Blue_Pot,Light Blue Potion,0,5000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 0,rand(40,60); },{},{} -11503,Siege_White_Potion,WoE White Potion,0,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(400,500),0; },{},{} -11504,Siege_Blue_Potion,WoE Blue Potion,0,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 0,rand(50,70); },{},{} -11505,Iris,Iris,0,0,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 0,150; },{},{} -11506,Fanta_Orange,Fanta Orange,0,800,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(50,70),rand(10,12); },{},{} -11507,Fanta_Grape,Fanta Grape,0,800,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(50,70),rand(10,12); },{},{} -11508,Karada_Meguri_Tea,Karada Meguricha,0,800,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(50,70),rand(10,12); },{},{} -11509,Royal_Milk_Tea,Black Tea Kochakaden,0,800,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(50,70),rand(10,12); },{},{} -11510,Coke_Zero,Coca Cola Zero,0,800,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(50,70),rand(10,12); },{},{} -11511,Coke_No_Cal,Diet Coca Cola,0,800,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(50,70),rand(10,12); },{},{} -11512,Coca_Cola,Coca Cola,0,800,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(50,70),rand(10,12); },{},{} -11513,Protect_Neck_Candy,Protect Neck Candy,0,200,,1,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(5,25),0; },{},{} -11514,Enriched_Slim_Pot,Enriched Slim Pot,0,0,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(335,415),0; },{},{} -11515,Coconut,Coconut,0,1500,,120,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(300,400),0; },{},{} -11516,Asai_Fruit,Asai Fruit,0,15,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(16,22),0; },{},{} -11517,Puri_Potion,Puri Potion,0,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(400,600),0; },{},{} -11518,N_Blue_Potion,Blue Potion,0,0,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 0,5; },{},{} -11519,Beef_Toast,Beef Toast,0,1200,,40,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(170,250),0; },{},{} -11520,Mora_Mandarin,Mora Mandar,0,500,,20,,,,,0xFFFFFFFF,63,2,,,100,,,{ itemheal 0,rand(50,80); },{},{} -11521,Pingui_Berry_Juice,Pingui Berry Juice,0,500,,50,,,,,0xFFFFFFFF,63,2,,,100,,,{ itemheal rand(400,800),rand(50,80); },{},{} -11522,Red_Raffle_Sap,Red Raffle Sap,0,2500,,100,,,,,0xFFFFFFFF,63,2,,,100,,,{ itemheal rand(400,800),0; },{},{} -11523,Yellow_Raffle_Sap,Yellow Raffle Sap,0,3000,,120,,,,,0xFFFFFFFF,63,2,,,110,,,{ itemheal rand(600,1000),0; },{},{} -11524,White_Raffle_Sap,White Raffle Sap,0,3500,,140,,,,,0xFFFFFFFF,63,2,,,120,,,{ itemheal rand(800,1200),0; },{},{} -11525,Mora_Hip_Tea,Mora Hip Tea,0,20,,150,,,,,0xFFFFFFFF,63,2,,,120,,,{ itemheal rand(1500,2000),0; },{},{} -11526,Rafflecino,Rafflecino,0,20,,100,,,,,0xFFFFFFFF,63,2,,,120,,,{ itemheal 0,rand(120,160); },{},{} -11527,Baklava,Baklava,0,3500,,600,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 1200,440; },{},{} -11528,Kanafeh,Kanafeh,0,1500,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 300,240; },{},{} -11529,MAAMOUL_,Maamoul,0,500,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 120,60; },{},{} -11530,Jujube,Jujube,0,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 30,0; },{},{} -11531,Coffee,Coffee,0,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 0,10; },{},{} -11532,Nasi_Goreng,Nasi Goreng,0,15,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(17,23),0; },{},{} -11533,Satay,Satay,0,15,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(17,23),0; },{},{} -11534,Coco_Juice,Coconut Juice,0,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(17,23),0; },{},{} -11535,Almond_Chocolate,Almond Chocolate,0,190,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 0,rand(8,16); },{},{} -11536,Cat_Hard_Biscuit,Cat Biscuit,0,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(70,110),0; callfunc "F_Cat_Hard_Biscuit"; },{},{} -11537,Rice_weevil_Bug,Rice Weevil Bug,0,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(100,150),0; callfunc "F_Rice_Weevil_Bug"; },{},{} -11538,Octupus_Leg,Fresh Octopus Legs,0,20,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(35,60),rand(5,10); },{},{} -11539,Athale_Choco,Athale Choco,0,1,,80,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 50,50; },{},{} -11540,Shyai_Choco,Shyai Choco,0,1,,80,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 50,50; },{},{} -11541,Mid_Choco,Mid Choco,0,1,,80,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 50,50; },{},{} -11542,Zonda_Choco,Zonda Choco,0,1,,80,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 50,50; },{},{} -11543,Goedo_Choco,Goedo Choco,0,1,,80,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 50,50; },{},{} -11544,Huike_Choco,Huike Choco,0,1,,80,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 50,50; },{},{} -11545,Rune_Choco,Rune Choco,0,1,,80,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 50,50; },{},{} -11546,Pope_Choco,Pope Choco,0,1,,80,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 50,50; },{},{} -11547,Woe_Violet_Potion,Siege Purple Potion,0,0,,120,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(500,700),rand(60,85); },{},{} -11548,Woe_White_Potion,Siege White Potion,0,0,,80,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 10,0; },{},{} -11549,Woe_Blue_Potion,Siege Blue Potion,0,0,,80,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 0,10; },{},{} -11550,Pumpkin_Cake,Pumpkin Cake,0,10,,80,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 5,5; },{},{} -11551,Savory_Herb_Salad,Savory Herb Salad,0,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(20,30),0; sc_start SC_STRFOOD,180000,1; },{},{} -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,0,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_Tee,Hot Tea,2,10,,20,,,,0,0xFFFFFFFF,63,2,,,,,,{ itemheal 0,100; },{},{} -11564,Sweet_Canape,Sweet Canape,2,10,,20,,,,0,0xFFFFFFFF,63,2,,,,,,{ itemheal 1000,0; },{},{} -11565,White_Potion_B,White Potion,0,10,,150,,,,0,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(325,405),0; },{},{} -11566,Yellow_Potion_,Yellow Potion,0,10,,130,,,,0,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(175,235),0; },{},{} -11567,Novice_Potion_B,Novice Potion,0,10,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(44,66),0; },{},{} -11568,Red_Slim_Potion_B,Red Slim Potion,0,10,,20,,,,0,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(45,65),0; },{},{} -11569,Orange_Potion_,Orange Potion,0,10,,100,,,,0,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(105,145),0; },{},{} -11570,Red_Potion_,Red Potion,0,10,,70,,,,0,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(45,65),0; },{},{} -11571,Green_Potion_,Green Potion,0,10,,70,,,,0,0xFFFFFFFF,63,2,,,,,,{ sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; },{},{} -11572,Blue_Potion_B,Blue Potion,0,10,,150,,,,0,0xFFFFFFFF,63,2,,,,,,{ itemheal 0,rand(40,60); },{},{} -11573,White_Slim_Potion_B,White Slim Potion,0,10,,50,,,,0,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(325,405),0; },{},{} -11574,Yellow_Slim_Potion_,Yellow Slim Potion,0,10,,30,,,,0,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(175,235),0; },{},{} -11575,Lucky_Cookie_B,Lucky Cookie,3,10,,30,,,,,,,,,,,,,{},{},{} -11576,Lucky_Candy_Cane_B,Lucky Lollipop,3,10,,30,,,,,,,,,,,,,{},{},{} -11577,Rice_Ball_B,Rice Ball,0,10,,30,,,,0,0xFFFFFFFF,63,2,,,,,,{ itemheal 200,0; },{},{} -11578,Candy_Striper_B,Candy Bar,0,10,,40,,,,0,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(105,145),0; },{},{} -11579,Lucky_Candy_B,Lucky Candy,3,10,,30,,,,,,,,,,,,,{},{},{} -11580,Candy_B,Candy,0,10,,30,,,,0,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(45,65),0; },{},{} -11581,Piece_Of_Cake_B,Piece of Cake,0,10,,100,,,,0,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(270,330),0; },{},{} -11582,Well_Baked_Cookie_B,Well-baked Cookie,0,10,,30,,,,0,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(160,200),0; },{},{} -11583,Chocolate_Drink_B,Chocolate Drink,0,10,,150,,,,0,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(330,410),rand(45,65); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination; },{},{} -11584,White_Chocolate_B,White Chocolate,0,10,,80,,,,0,0xFFFFFFFF,63,2,,,,,,{ itemheal 50,50; },{},{} -11585,HandMade_Chocolate_B,Hand-made Chocolate,0,10,,80,,,,0,0xFFFFFFFF,63,2,,,,,,{ itemheal 50,50; },{},{} -11586,HandMade_Chocolate_B_,Hand-made White Chocolate,0,10,,80,,,,0,0xFFFFFFFF,63,2,,,,,,{ itemheal 50,50; },{},{} -11587,Chocolate_B,Chocolate,0,10,,20,,,,0,0xFFFFFFFF,63,2,,,,,,{ itemheal 1,1; },{},{} -11588,Fresh_Strawberries,Fresh Strawberries,0,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(32,56),rand(16,28); },{},{} -11589,Iceflake,Cold Snow Cone,0,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 5,5; },{},{} -11590,Meat_Skewer5,Skewer No.5,0,5000,,300,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(760,810),10; },{},{} -11592,Trance_Candy_R,Trans Candy Red,0,20,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 45,0; transform 1507,600000,SC_MTF_MHP,1000; },{},{} -11593,Trance_Candy_B,Trans Candy Blue,0,20,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 45,0; transform 1102,600000,SC_MTF_MSP,100; },{},{} -11594,Trance_Candy_Y,Trans Candy Yellow,0,20,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 45,0; transform 1130,600000,SC_MTF_PUMPKIN,2000; },{},{} -11595,Trance_Candy_G,Trans Candy Green,0,20,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 45,0; transform 1508,600000,SC_MTF_HITFLEE,10,20; },{},{} -11596,Blood_In_Skull,Blood In Skull,0,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(600,800),0; },{},{} -11597,Iron_Bug,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; } },{},{} -11602,Catnip_Fruit,Catnip Fruit,0,15,,1,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(10,40),0; },{},{} -11601,Delicious_Anchovy,Delicious Anchovy,0,20,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(30,46),0; },{},{} -11605,Cookies_Bat,Cookie Bat,0,0,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(50,100),0; /*TODO*/ },{},{} - -11616,Yummy_Meat,Delicious Meat,0,1400,700,50,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(100,150),0; },{},{} - -11621,Red_Syrup,Red Syrup,0,800,400,7,,,,,0xFFFFFFFF,63,2,,,60,,,{ itemheal 325,0; },{},{} -11622,Yellow_Syrup,Yellow Syrup,0,1200,600,10,,,,,0xFFFFFFFF,63,2,,,60,,,{ itemheal 900,0; },{},{} -11623,White_Syrup,White Syrup,0,1500,750,14,,,,,0xFFFFFFFF,63,2,,,60,,,{ itemheal 1800,0; },{},{} -11624,Blue_Syrup,Blue Syrup,0,7000,3500,10,,,,,0xFFFFFFFF,63,2,,,60,,,{ itemheal 0,180; },{},{} -// -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,,,,,,{},{},{} -11703,Mysterious_Blood,Mystery Blood,0,0,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 0,rand(25,35); },{},{} -11704,KETUPAT_F,Ketupat,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(70,90),0; },{},{} -11705,Special_White_Potion,Children's Potion,0,1,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(425,425),0; },{},{} -11706,Steak,Steak,0,1,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(700,1000),0; },{},{} -11707,Roasted_Beef,Roast Beef,0,1,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 0,rand(100,200); },{},{} -11708,Fore_Flank_Sirloin,Fore Flank Sirloin,0,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(30,50),rand(1,5); },{},{} -11709,Fanta_Zero_Lemon,Fanta Zero Lemon,0,800,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(50,70),rand(10,12); },{},{} -11710,Sakura_Mist,Sakura Mist,0,800,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(50,70),rand(10,12); },{},{} -11711,Sakura_Milk_Tea,Sakura Milk Tea,0,800,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(50,70),rand(10,12); },{},{} -11712,First_Leaf_Tea,Flower,0,800,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(50,70),rand(10,12); },{},{} -11713,Julia's_Candy,Julia's Candy,0,0,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(40,45),0; },{},{} -// -12000,Cold_Scroll_2_5,Level 5 Frost Diver,11,2000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "MG_FROSTDIVER",5; },{},{} -12001,Holy_Scroll_1_3,Level 3 Heal,11,2000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "AL_HEAL",3; },{},{} -12002,Holy_Scroll_1_5,Level 5 Heal,11,2000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "AL_HEAL",5; },{},{} -12003,Holy_Scroll_2_1,Level 1 Teleport,11,1000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "AL_TELEPORT",1; },{},{} -12004,Arrow_Container,Quiver,2,2,,250,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1750,500; },{},{} -12005,Iron_Arrow_Container,Iron Arrow Quiver,2,2,,250,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1770,500; },{},{} -12006,Steel_Arrow_Container,Steel Arrow Quiver,2,2,,250,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1753,500; },{},{} -12007,Ori_Arrow_Container,Oridecon Arrow Quiver,2,2,,250,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1765,500; },{},{} -12008,Fire_Arrow_Container,Fire Arrow Quiver,2,2,,250,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1752,500; },{},{} -12009,Silver_Arrow_Container,Silver Arrow Quiver,2,2,,250,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1751,500; },{},{} -12010,Wind_Arrow_Container,Wind Arrow Quiver,2,2,,250,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1755,500; },{},{} -12011,Stone_Arrow_Container,Stone Arrow Quiver,2,2,,250,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1756,500; },{},{} -12012,Crystal_Arrow_Container,Crystal Arrow Quiver,2,2,,250,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1754,500; },{},{} -12013,Shadow_Arrow_Container,Shadow Arrow Quiver,2,2,,250,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1767,500; },{},{} -12014,Imma_Arrow_Container,Immaterial Arrow Quiver,2,2,,250,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1757,500; },{},{} -12015,Rusty_Arrow_Container,Rusty Arrow Quiver,2,2,,250,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1762,500; },{},{} -12016,Speed_Up_Potion,Speed Potion,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_SPEEDUP1,5000,50; },{},{} -12017,Slow_Down_Potion,Slow Potion,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_SLOWDOWN,5000,100; },{},{} -12018,Fire_Cracker,Firecracker,2,2,,20,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12019,Holy_Egg,Holy Egg,11,2,,150,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "ALL_RESURRECTION",2; },{},{} -12020,Water_Of_Darkness,Cursed Water,11,2,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "ITEM_ENCHANTARMS",8; },{},{} -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--",-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; },{},{} -12028,Box_Of_Thunder,Box of Thunder,2,1000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_SPEEDUP0,20000,25; },{},{} -12029,Gloomy_Box,Box of Gloom,11,1000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "AC_CONCENTRATION",1; },{},{} -12030,Box_Of_Grudge,Box of Resentment,2,1000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ATKPOTION,60000,20; },{},{} -12031,Sleepy_Box,Box of Drowsiness,2,1000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_MATKPOTION,60000,20; },{},{} -12032,Box_Of_Storm,Box of Storms,11,1000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "ITEM_ENCHANTARMS",2; },{},{} -12033,Box_Of_Sunlight,Box of Sunlight,2,1000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_Intravision,30000,0; },{},{} -12034,Painting_Box,Box of Panting,2,1000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 0,9; sc_start SC_SILENCE,30000,0,3000,0; },{},{} -12035,Lotto_Box01,Lotto Box 01,2,0,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_LottoBox1,1); },{},{} -12036,Lotto_Box02,Lotto Box 02,2,0,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_LottoBox2,1); },{},{} -12037,Lotto_Box03,Lotto Box 03,2,0,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_LottoBox3,1); },{},{} -12038,Lotto_Box04,Lotto Box 04,2,0,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_LottoBox4,1); },{},{} -12039,Lotto_Box05,Lotto Box 05,2,0,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_LottoBox5,1); },{},{} -12040,Stone_Of_Intelligence_,Stone of Sage,2,100000,,300,,,,,0xFFFFFFFF,63,2,,,,,,{ homevolution; },{},{} -12041,Str_Dish01,Fried Grasshopper Legs,0,2000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_STRFOOD,1200000,1; percentheal 5,0; },{},{} -12042,Str_Dish02,Seasoned Sticky Webfoot,0,4000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_STRFOOD,1200000,2; percentheal 5,0; },{},{} -12043,Str_Dish03,Bomber Steak,0,6000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_STRFOOD,1200000,3; percentheal 5,0; },{},{} -12044,Str_Dish04,Herb Marinade Beef,0,8000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_STRFOOD,1200000,4; percentheal 5,0; },{},{} -12045,Str_Dish05,Lutie Lady's Pancake,0,10000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_STRFOOD,1200000,5; percentheal 10,0; },{},{} -12046,Int_Dish01,Grape Juice Herbal Tea,0,2000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INTFOOD,1200000,1; percentheal 0,5; },{},{} -12047,Int_Dish02,Autumn Red Tea,0,4000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INTFOOD,1200000,2; percentheal 0,5; },{},{} -12048,Int_Dish03,Honey Herbal Tea,0,6000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INTFOOD,1200000,3; percentheal 0,5; },{},{} -12049,Int_Dish04,Morocc Fruit Wine,0,8000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INTFOOD,1200000,4; percentheal 0,5; },{},{} -12050,Int_Dish05,Mastela Fruit Wine,0,10000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INTFOOD,1200000,5; percentheal 0,10; },{},{} -12051,Vit_Dish01,Steamed Crab Nippers,0,2000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_VITFOOD,1200000,1; percentheal 5,0; },{},{} -12052,Vit_Dish02,Assorted Seafood,0,4000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_VITFOOD,1200000,2; percentheal 5,0; },{},{} -12053,Vit_Dish03,Clam Soup,0,6000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_VITFOOD,1200000,3; percentheal 5,0; },{},{} -12054,Vit_Dish04,Seasoned Jellyfish,0,8000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_VITFOOD,1200000,4; percentheal 5,0; },{},{} -12055,Vit_Dish05,Spicy Fried Bao,0,10000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_VITFOOD,1200000,5; percentheal 10,0; },{},{} -12056,Agi_Dish01,Frog Egg Squid Ink Soup,0,2000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_AGIFOOD,1200000,1; percentheal 3,1; },{},{} -12057,Agi_Dish02,Smooth Noodle,0,4000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_AGIFOOD,1200000,2; percentheal 3,1; },{},{} -12058,Agi_Dish03,Tentacle Cheese Gratin,0,6000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_AGIFOOD,1200000,3; percentheal 3,1; },{},{} -12059,Agi_Dish04,Lutie Cold Noodle,0,8000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_AGIFOOD,1200000,4; percentheal 3,1; },{},{} -12060,Agi_Dish05,Steamed Bat Wing in Pumpkin,0,10000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_AGIFOOD,1200000,5; percentheal 6,2; },{},{} -12061,Dex_Dish01,Honey Grape Juice,0,2000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_DEXFOOD,1200000,1; percentheal 2,2; },{},{} -12062,Dex_Dish02,Chocolate Mousse Cake,0,4000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_DEXFOOD,1200000,2; percentheal 2,2; },{},{} -12063,Dex_Dish03,Fruit Mix,0,6000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_DEXFOOD,1200000,3; percentheal 2,2; },{},{} -12064,Dex_Dish04,Cream Sandwich,0,8000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_DEXFOOD,1200000,4; percentheal 2,2; },{},{} -12065,Dex_Dish05,Green Salad,0,10000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_DEXFOOD,1200000,5; percentheal 5,5; },{},{} -12066,Luk_Dish01,Fried Monkey Tails,0,2000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_LUKFOOD,1200000,1; percentheal 3,2; },{},{} -12067,Luk_Dish02,Mixed Juice,0,4000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_LUKFOOD,1200000,2; percentheal 3,2; },{},{} -12068,Luk_Dish03,Fried Sweet Potato,0,6000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_LUKFOOD,1200000,3; percentheal 4,2; },{},{} -12069,Luk_Dish04,Steamed Ancient Lips,0,8000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_LUKFOOD,1200000,4; percentheal 4,2; },{},{} -12070,Luk_Dish05,Fried Scorpion Tails,0,10000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_LUKFOOD,1200000,5; percentheal 5,2; },{},{} -12071,Str_Dish06,Shiny Marinade Beef,0,20000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_STRFOOD,1200000,6; percentheal 10,2; },{},{} -12072,Str_Dish07,Whole Roast,0,40000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_STRFOOD,1200000,7; percentheal 10,4; },{},{} -12073,Str_Dish08,Bearfoot Special,0,60000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_STRFOOD,1200000,8; percentheal 15,6; },{},{} -12074,Str_Dish09,Tendon Satay,0,80000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_STRFOOD,1200000,9; percentheal 15,8; },{},{} -12075,Str_Dish10,Steamed Tongue,0,100000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_STRFOOD,1200000,10; percentheal 20,20; },{},{} -12076,Int_Dish06,Red Mushroom Wine,0,20000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INTFOOD,1200000,6; percentheal 2,10; },{},{} -12077,Int_Dish07,Special Royal Jelly Herbal Tea,0,40000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INTFOOD,1200000,7; percentheal 4,10; },{},{} -12078,Int_Dish08,Royal Family Tea,0,60000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INTFOOD,1200000,8; percentheal 6,10; },{},{} -12079,Int_Dish09,Tristan XII,0,80000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INTFOOD,1200000,9; percentheal 8,15; },{},{} -12080,Int_Dish10,Dragon Breath Cocktail,0,100000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INTFOOD,1200000,10; percentheal 10,20; },{},{} -12081,Vit_Dish06,Awfully Bitter Bracer,0,20000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_VITFOOD,1200000,6; percentheal 13,0; },{},{} -12082,Vit_Dish07,Sumptuous Feast,0,40000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_VITFOOD,1200000,7; percentheal 16,0; },{},{} -12083,Vit_Dish08,Giant Burito,0,60000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_VITFOOD,1200000,8; percentheal 19,0; },{},{} -12084,Vit_Dish09,Ascending Dragon Soup,0,80000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_VITFOOD,1200000,9; percentheal 22,0; },{},{} -12085,Vit_Dish10,Immortal Stew,0,100000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_VITFOOD,1200000,10; percentheal 25,0; },{},{} -12086,Agi_Dish06,Chile Shrimp Gratin,0,20000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_AGIFOOD,1200000,6; percentheal 7,2; },{},{} -12087,Agi_Dish07,Steamed Alligator with Vegetable,0,40000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_AGIFOOD,1200000,7; percentheal 8,2; },{},{} -12088,Agi_Dish08,Incredibly Spicy Curry,0,60000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_AGIFOOD,1200000,8; percentheal 9,2; },{},{} -12089,Agi_Dish09,Special Meat Stew,0,80000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_AGIFOOD,1200000,9; percentheal 10,2; },{},{} -12090,Agi_Dish10,Steamed Desert Scorpions,0,100000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_AGIFOOD,1200000,10; percentheal 15,5; },{},{} -12091,Dex_Dish06,Peach Cake,0,20000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_DEXFOOD,1200000,6; percentheal 5,6; },{},{} -12092,Dex_Dish07,Soul Haunted Bread,0,40000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_DEXFOOD,1200000,7; percentheal 5,7; },{},{} -12093,Dex_Dish08,Special Toast,0,60000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_DEXFOOD,1200000,8; percentheal 5,8; },{},{} -12094,Dex_Dish09,Heavenly Fruit Juice,0,80000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_DEXFOOD,1200000,9; percentheal 5,9; },{},{} -12095,Dex_Dish10,Hwergelmir's Tonic,0,100000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_DEXFOOD,1200000,10; percentheal 10,10; },{},{} -12096,Luk_Dish06,Lucky Soup,0,20000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_LUKFOOD,1200000,6; percentheal 6,3; },{},{} -12097,Luk_Dish07,Assorted Shish Kebob,0,40000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_LUKFOOD,1200000,7; percentheal 7,3; },{},{} -12098,Luk_Dish08,Strawberry Flavored Rice Ball,0,60000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_LUKFOOD,1200000,8; percentheal 9,3; },{},{} -12099,Luk_Dish09,Blood Flavored Soda,0,80000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_LUKFOOD,1200000,9; percentheal 10,4; },{},{} -12100,Luk_Dish10,Cooked Nine Tail's Tails,0,100000,,50,,,,,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--",-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--",-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; },{},{} -12113,Vermilion_The_Beach,Vermilion on the Beach,2,1000,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_STUN,10000,1; },{},{} -12114,Elemental_Fire,Elemental Converter,11,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "ITEM_ENCHANTARMS",4; },{},{} -12115,Elemental_Water,Elemental Converter,11,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "ITEM_ENCHANTARMS",2; },{},{} -12116,Elemental_Earth,Elemental Converter,11,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "ITEM_ENCHANTARMS",3; },{},{} -12117,Elemental_Wind,Elemental Converter,11,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "ITEM_ENCHANTARMS",5; },{},{} -12118,Resist_Fire,Fireproof Potion,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start4 SC_ARMOR_ELEMENT_FIRE,1200000,-15,0,20,0; },{},{} -12119,Resist_Water,Coldproof Potion,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start4 SC_ARMOR_ELEMENT_WATER,1200000,20,0,0,-15; },{},{} -12120,Resist_Earth,Earthproof Potion,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start4 SC_ARMOR_ELEMENT_EARTH,1200000,0,20,-15,0; },{},{} -12121,Resist_Wind,Thunderproof Potion,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start4 SC_ARMOR_ELEMENT_WIND,1200000,0,-15,0,20; },{},{} -12122,Sesame_Pastry,Sesame Pastry,2,2,,70,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_HITFOOD,180000,30; },{},{} -12123,Honey_Pastry,Honey Pastry,2,2,,70,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_FLEEFOOD,180000,30; },{},{} -12124,Rainbow_Cake,Rainbow Cake,2,2,,70,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_BATKFOOD,60000,10; sc_start SC_MATKFOOD,60000,10; },{},{} -12125,Outdoor_Cooking_Kits,Outdoor Cooking Kit,2,500,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ cooking 11; },{},{} -12126,Indoor_Cooking_Kits,Home Cooking Kit,2,1000,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ cooking 12; },{},{} -12127,High_end_Cooking_Kits,Professional Cooking Kit,2,2000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ cooking 13; },{},{} -12128,Imperial_Cooking_Kits,Royal Cooking Kit,2,5000,,70,,,,,0xFFFFFFFF,63,2,,,,,,{ cooking 14; },{},{} -12129,Fantastic_Cooking_Kits,Fantastic Cooking Kit,2,10000,,70,,,,,0xFFFFFFFF,63,2,,,,,,{ cooking 15; },{},{} -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(DT_DAYOFMONTH)!=MDiceCone) { MDiceCone = gettime(DT_DAYOFMONTH); 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,,,,,,{},{},{} -12138,2nd_Stage_Prize,Second Stage Prize,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12139,3rd_Stage_Prize,Third Stage Prize,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12140,4th_Stage_Prize,Fourth Stage Prize,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12141,5th_Stage_Prize,Fifth Stage Prize,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12142,Magic_Book,Book of Magic,2,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_AGIFOOD,1800000,10; },{},{} -12143,Red_Can,Red Can,2,50000,,300,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 25,25; },{},{} -12144,Sphere_Case_Wind,Lightning Sphere Pack,2,2,,350,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13204,500; },{},{} -12145,Sphere_Case_Darkness,Blind Sphere Pack,2,2,,350,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13206,500; },{},{} -12146,Sphere_Case_Poison,Poison Sphere Pack,2,2,,350,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13205,500; },{},{} -12147,Sphere_Case_Water,Freezing Sphere Pack,2,2,,350,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13207,500; },{},{} -12148,Sphere_Case_Fire,Flare Sphere Pack,2,2,,350,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13203,500; },{},{} -12149,Bullet_Case,Cartridge,2,2,,250,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13200,500; },{},{} -12150,Bullet_Case_Blood,Blood Cartridge,2,2,,250,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13202,500; },{},{} -12151,Bullet_Case_Silver,Silver Cartridge,2,2,,250,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13201,500; },{},{} -12152,Special_Box,Special Present,2,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Special_Box); },{},{} -12153,Bow_Mercenary_Scroll1,Bowman Scroll 1,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6017,1800000; },{},{} -12154,Bow_Mercenary_Scroll2,Bowman Scroll 2,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6018,1800000; },{},{} -12155,Bow_Mercenary_Scroll3,Bowman Scroll 3,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6019,1800000; },{},{} -12156,Bow_Mercenary_Scroll4,Bowman Scroll 4,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6020,1800000; },{},{} -12157,Bow_Mercenary_Scroll5,Bowman Scroll 5,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6021,1800000; },{},{} -12158,Bow_Mercenary_Scroll6,Bowman Scroll 6,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6022,1800000; },{},{} -12159,Bow_Mercenary_Scroll7,Bowman Scroll 7,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6023,1800000; },{},{} -12160,Bow_Mercenary_Scroll8,Bowman Scroll 8,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6024,1800000; },{},{} -12161,Bow_Mercenary_Scroll9,Bowman Scroll 9,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6025,1800000; },{},{} -12162,Bow_Mercenary_Scroll10,Bowman Scroll 10,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6026,1800000; },{},{} -12163,SwordMercenary_Scroll1,Fencer Scroll 1,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6037,1800000; },{},{} -12164,SwordMercenary_Scroll2,Fencer Scroll 2,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6038,1800000; },{},{} -12165,SwordMercenary_Scroll3,Fencer Scroll 3,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6039,1800000; },{},{} -12166,SwordMercenary_Scroll4,Fencer Scroll 4,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6040,1800000; },{},{} -12167,SwordMercenary_Scroll5,Fencer Scroll 5,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6041,1800000; },{},{} -12168,SwordMercenary_Scroll6,Fencer Scroll 6,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6042,1800000; },{},{} -12169,SwordMercenary_Scroll7,Fencer Scroll 7,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6043,1800000; },{},{} -12170,SwordMercenary_Scroll8,Fencer Scroll 8,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6044,1800000; },{},{} -12171,SwordMercenary_Scroll9,Fencer Scroll 9,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6045,1800000; },{},{} -12172,SwordMercenary_Scroll10,Fencer Scroll 10,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6046,1800000; },{},{} -12173,SpearMercenary_Scroll1,Spearman Scroll 1,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6027,1800000; },{},{} -12174,SpearMercenary_Scroll2,Spearman Scroll 2,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6028,1800000; },{},{} -12175,SpearMercenary_Scroll3,Spearman Scroll 3,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6029,1800000; },{},{} -12176,SpearMercenary_Scroll4,Spearman Scroll 4,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6030,1800000; },{},{} -12177,SpearMercenary_Scroll5,Spearman Scroll 5,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6031,1800000; },{},{} -12178,SpearMercenary_Scroll6,Spearman Scroll 6,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6032,1800000; },{},{} -12179,SpearMercenary_Scroll7,Spearman Scroll 7,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6033,1800000; },{},{} -12180,SpearMercenary_Scroll8,Spearman Scroll 8,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6034,1800000; },{},{} -12181,SpearMercenary_Scroll9,Spearman Scroll 9,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6035,1800000; },{},{} -12182,SpearMercenary_Scroll10,Spearman Scroll 10,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 6036,1800000; },{},{} -12183,Holy_Arrow_Quiver,Holy Arrow Quiver,2,2,,250,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1772,500; },{},{} -12184,Mercenary_Red_Potion,Mercenary Red Potion,2,500,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_heal 1000,0; },{},{} -12185,Mercenary_Blue_Potion,Mercenary Blue Potion,2,1000,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_heal 0,100; },{},{} -12186,Red_Box,Old Red Box,2,50000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_RedBox,1); },{},{} -12187,Green_Box,Old Green Box,2,50000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_GreenBox,1); },{},{} -12188,Magical_Moon_Cake,Grace Moon Cake,0,20,,300,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 50,50; },{},{} -12189,Red_Box_,Old Red Box,2,50000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_RedBox_2,1); },{},{} -12190,Moon_Cake,Moon Cake,2,2,,300,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_SPEEDUP0,180000,25; },{},{} -12191,Special_Moon_Cake,Special Moon Cake,2,2,,500,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ASPDPOTION0,600000,4; sc_start SC_SPEEDUP0,600000,25; },{},{} -12192,Pumpkin_Pie,Pumpkin Pie,0,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 5,5; },{},{} -12193,Brezel,Pretzel,2,20,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 5,5; },{},{} -12194,Hometown_Gift,Hometown Gift,2,20,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_HometownGift,1); getrandgroupitem(IG_HometownGift,1); getrandgroupitem(IG_HometownGift,1); },{},{} -12195,Plain_Rice_Cake,Plain Rice Cake,0,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 0,20; },{},{} -12196,Hearty_Rice_Cake,Hearty Rice Cake,0,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 50,0; },{},{} -12197,Salty_Rice_Cake,Salty Rice Cake,0,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 10,10; },{},{} -12198,Lucky_Rice_Cake,Lucky Rice Cake,2,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INCLUK,1200000,21; },{},{} -12199,Rice_Scroll,Scroll of Magic,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12200,Event_Cake,X-mas Cake,11,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 5,0; 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; },{},{} -12205,Dex_Dish10_,Hwergelmir's Tonic,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_FOOD_DEX_CASH,1800000,10; percentheal 15,5; },{},{} -12206,Luk_Dish10_,Cooked Nine Tail's Tails,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_FOOD_LUK_CASH,1800000,10; percentheal 15,5; },{},{} -12207,Vit_Dish10_,Stew Of Immortality,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_FOOD_VIT_CASH,1800000,10; percentheal 15,5; },{},{} -12208,Battle_Manual,Battle Manual,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_EXPBOOST,1800000,50; },{},{} -12209,Insurance,Life Insurance,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_LIFEINSURANCE,1800000,0; },{},{} -12210,Bubble_Gum,Bubble Gum,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ITEMBOOST,1800000,200; },{},{} -12211,Kafra_Card,Kafra Card,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashStore"; },{},{} -12212,Giant_Fly_Wing,Giant Fly Wing,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashPartyCall"; },{},{} -12213,Neuralizer,Neuralizer,11,2,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashReset"; },{},{} -12214,Convex_Mirror,Convex Mirror,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_BOSSMAPINFO,600000,0; },{},{} -12215,Blessing_10_Scroll,LV10 Blessing Scroll,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,240000,10; },{},{} -12216,Inc_Agi_10_Scroll,LV10 Agil Scroll,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ if(Hp>15) { skilleffect "AL_INCAGI",0; sc_start SC_INCREASEAGI,240000,10; heal -15,0; } },{},{} -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,,,,,,{ .@type = getiteminfo(getequipid(EQI_HAND_R),11); if (.@type==W_1HAXE||.@type==W_2HAXE||.@type==W_MACE) { 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; },{},{} -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; },{},{} -12227,Examination2,Examination 2,0,20,,50,,,,,0xFFFFFFFF,63,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,63,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,63,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,63,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,63,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,63,2,,,,,,{ sc_start SC_ASPDPOTION1,900000,0; sc_start SC_SPEEDUP0,900000,25; },{},{} -12233,Kvass,Kvass,0,20,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 100,100; },{},{} -12234,Cacao99,Fierce Cacao 99%,0,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 25,0; },{},{} -12235,Strawberry_Choco,Chocolate Strawberry,2,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 0,5; skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,240000,10; },{},{} -12236,Choco_Tart,Chocolate Tart,11,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 5,0; itemskill "AL_ANGELUS",5; },{},{} -12237,Choco_Lump,Junky Chocolate,2,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 0,5; sc_start SC_POISON,18000,0; sc_start SC_BLEEDING,18000,0; },{},{} -12238,New_Year_Rice_Cake_1,New Year Rice Cake,2,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_DPOISON,10000,0,1000,0; sc_start SC_POISON,50000,0; },{},{} -12239,New_Year_Rice_Cake_2,New Year Rice Cake,2,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_DPOISON,10000,0,1000,0; sc_start SC_POISON,50000,0; },{},{} -12240,Old_Yellow_Box,Old Yellow Box,2,20,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_YellowBox,1); },{},{} -12241,M_Center_Potion,Mercenary Concentration Potion,2,800,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_sc_start SC_ASPDPOTION0,1800000,0; },{},{} -12242,M_Awakening_Potion,Mercenary Awakening Potion,2,1500,,150,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_sc_start SC_ASPDPOTION1,1800000,0; },{},{} -12243,M_Berserk_Potion,Mercenary Berserk Potion,2,3000,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_sc_start SC_ASPDPOTION2,1800000,0; },{},{} -12244,Old_Gift_Box,Old Gift Box,2,20,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_OldGiftBox,1); },{},{} -12245,Green_Ale_US,Green Ale,0,5000,,500,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 100,0; },{},{} -12246,Magic_Card_Album,Mystical Card Album,2,10000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_MagicCardAlbum,1); },{},{} -12247,Halohalo,Halo-Halo,2,2,,100,,,,,0xFFFFFFFF,63,2,,,20,,,{ sc_start SC_INCALLSTATUS,600000,3; },{},{} -12248,Masquerade_Ball_Box,Fancy Ball Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_Masquerade,1); },{},{} -12249,Payroll_Of_Kafra_,Payment Statement for Kafra Employee,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12250,Str_Dish10_M,Steamed Tongue,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_STRFOOD,3600000,10; percentheal 20,20; },{},{} -12251,Agi_Dish10_M,Steamed Desert Scorpions,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_AGIFOOD,3600000,10; percentheal 15,5; },{},{} -12252,Int_Dish10_M,Dragon Breath Cocktail,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INTFOOD,3600000,10; percentheal 10,20; },{},{} -12253,Dex_Dish10_M,Hwergelmir's Tonic,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_DEXFOOD,3600000,10; percentheal 10,10; },{},{} -12254,Luk_Dish10_M,Cooked Nine Tail,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_LUKFOOD,3600000,10; percentheal 14,8; },{},{} -12255,Vit_Dish10_M,Immortal Stew,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_VITFOOD,3600000,10; percentheal 25,0; },{},{} -12256,PRO_Gift_Box,PRO Gift Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12257,Cold_Medicine,Cold Medicine,0,20,,100,,,,,0xFFFFFFFF,63,2,,,50,,,{ percentheal 25,25; },{},{} -12258,Bombring_Box,Bomb Poring Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ if(strcharinfo(3)=="job3_rang02") { monster "this",-1,-1,"--ja--",1904,1,""; } },{},{} -12259,Miracle_Medicine,Miracle Tonic,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getexp2(3000000,1500000); },{},{} -12260,Cool_Summer_Outfit,Cool Summer Outfit,2,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_SUMMER,600000,0; },{},{} -12261,Secret_Medicine,Leap of Fantasy,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getexp2(2000000,1000000); },{},{} -12262,Inspector_Certificate_,Authoritative Badge,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_SPEEDUP0,540000,25; },{},{} -12263,Comp_Battle_Manual,Field Manual,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_EXPBOOST,1800000,200; },{},{} -12264,Comp_Bubble_Gum,Bubble Gum,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ITEMBOOST,1800000,200; },{},{} -12265,Comp_Insurance,Life Insurrance,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_LIFEINSURANCE,1800000,0; },{},{} -12266,Sesame_Pastry_,Sesame Pastry,2,2,,70,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_HITFOOD,180000,30; },{},{} -12267,Honey_Pastry_,Honey Pastry,2,2,,70,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_FLEEFOOD,180000,30; },{},{} -12268,Rainbow_Cake_,Rainbow Cake,2,2,,70,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ATKPOTION,60000,10; sc_start SC_MATKFOOD,60000,10; },{},{} -12269,Tasty_Colonel,Tasty Pink Ration,2,2,,70,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ATKPOTION,600000,15; },{},{} -12270,Tasty_Major,Tasty White Ration,2,2,,70,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_MATKPOTION,600000,15; },{},{} -12271,Mre_A,Military Ration A,0,2,,70,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 5,0; },{},{} -12272,Mre_B,Military Ration B,2,2,,70,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_HITFOOD,600000,33; },{},{} -12273,Mre_C,Military Ration C,2,2,,70,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_FLEEFOOD,600000,33; },{},{} -12274,Gold_Pill_1,Daehwandan,0,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start2 SC_INCREASE_MAXHP,3600000,5,10; percentheal 10,0; },{},{} -12275,Gold_Pill_2,Taecheongdan,0,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start2 SC_INCREASE_MAXSP,3600000,5,10; percentheal 0,10; },{},{} -12276,Mimic_Scroll,Mimic Scroll,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 2058,1800000; },{},{} -12277,Disguise_Scroll,Disguise Scroll,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 2059,1800000; },{},{} -12278,Alice_Scroll,Alice Scroll,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 2060,1800000; },{},{} -12279,Undead_Element_Scroll,Undead Elemental Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start4 SC_ARMOR_RESIST,300000,20,20,20,20; },{},{} -12280,Holy_Element_Scroll,Holy Elemental Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_BENEDICTIO; sc_start SC_BENEDICTIO,300000,1; },{},{} -12281,Tresure_Box_WoE,Event Treasure Box,2,20,,150,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Tresure_Box_WoE_); },{},{} -12282,Internet_Cafe1,Internet Cafe1,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INCALLSTATUS,5400000,3; sc_start SC_ATKPOTION,5400000,15; sc_start SC_MATKPOTION,5400000,15; },{},{} -12283,Internet_Cafe2,Internet Cafe2,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INCSTR,5400000,8; sc_start SC_INCDEX,5400000,4; sc_start SC_INCAGI,5400000,6; sc_start SC_ATKPOTION,5400000,32; sc_start SC_INCFLEE,5400000,5; },{},{} -12284,Internet_Cafe3,Internet Cafe3,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INCINT,5400000,8; sc_start SC_INCVIT,5400000,4; sc_start SC_INCDEX,5400000,6; sc_start SC_MATKPOTION,5400000,40; },{},{} -12285,Internet_Cafe4,Internet Cafe4,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INCDEX,5400000,8; sc_start SC_INCLUK,5400000,4; sc_start SC_INCAGI,5400000,6; sc_start SC_ATKPOTION,5400000,24; sc_start SC_MATKPOTION,5400000,24; },{},{} -12286,Masquerade_Ball_Box2,Masquerade Ball Box2,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_Masquerade_2,1); },{},{} -12287,Love_Angel,Love Angel Magic Powder,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ setfont 1; },{},{ setfont 0; } -12288,Squirrel,Squirrel Magic Powder,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ setfont 2; },{},{ setfont 0; } -12289,Gogo,Gogo Magic Powder,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ setfont 3; },{},{ setfont 0; } -12290,Mysterious_Can,Mysterious Can Magic Powder,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 5,0; skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,120000,5; },{},{} -12291,Mysterious_PET_Bottle,Mysterious PET Bottle,2,10,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 5,0; skilleffect "AL_INCAGI",0; sc_start SC_INCREASEAGI,120000,5; },{},{} -12292,Unripe_Fruit,Unripe Yggdrasilberry,0,500,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 20,0; },{},{} -12293,Dried_Yggdrasilberry,Dried Yggdrasilberry,0,500,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 0,20; },{},{} -12294,PC_Bang_Coin_Box1,PC-Room Coin Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2740,1; },{},{} -12295,PC_Bang_Coin_Box2,PC-Room Coin Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2739,1; },{},{} -12296,PC_Bang_Coin_Box3,PC-Room Coin Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2738,1; },{},{} -12297,PC_Bang_Coin_Box4,PC-Room Coin Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2738,2; },{},{} -12298,SP_Potion,SP Consumption Reduction Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_SPCOST_RATE,3600000,15; },{},{} -12299,Mega_Resist_Potion,Mega Resist Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_COMMONSC_RESIST,3600000,10; },{},{} -12300,Wild_Rose_Scroll,Wild Rose Contract,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 1965,1800000; },{},{} -12301,Doppelganger_Scroll,Doppelganger Contract,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 1966,1800000; },{},{} -12302,Ygnizem_Scroll,Egnigem Cenia Contract,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 1967,1800000; },{},{} -12303,Water_Of_Blessing,Blessing Of Water,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12304,Picture_Diary,Diary Magic Powder,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ setfont 4; },{},{ setfont 0; } -12305,Mini_Heart,Mini Heart Magic Powder,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ setfont 5; },{},{ setfont 0; } -12306,Newcomer,Freshman Magic Powder,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ setfont 6; },{},{ setfont 0; } -12307,Kid,Kid Magic Powder,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ setfont 7; },{},{ setfont 0; } -12308,Magic_Castle,Magic Magic Powder,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ setfont 8; },{},{ setfont 0; } -12309,Bulging_Head,JJangu Magic Powder,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ setfont 9; },{},{ setfont 0; } -12310,Spray_Of_Flowers,Spray Of Flowers,2,0,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_FLEEFOOD,300000,5; },{},{} -12311,Large_Spray_Of_Flowers,Huge Spray Of Flowers,11,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "ALL_PARTYFLEE",5; },{},{} -12312,Thick_Manual50,Thick Battle Manual,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_EXPBOOST,3600000,50; },{},{} -12313,Protection_Of_Angel,Guardian Angel,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ /* itemskill "ALL_ANGEL_PROTECT",1; */ },{},{} -12314,Noive_Box,Adventurer Returns Support Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Noive_Box); },{},{} -12315,Goddess_Bless,Goddess Of Blessing,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12316,Angel_Bless,Angel Of Blessing,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12317,Powder_Snow,Snow Powder,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12318,Little_Heart,Small Hearts,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12319,Strawberry_Cake,Rune Strawberry Cake,2,0,,300,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ATKPOTION,600000,5; sc_start SC_MATKPOTION,600000,5; },{},{} -12320,Pineapple_Juice,Schwarzwald Pine Jubilee,2,0,,300,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_HITFOOD,600000,10; sc_start SC_FLEEFOOD,600000,20; },{},{} -12321,Spicy_Sandwich,Arunafeltz Desert Sandwich,2,0,,300,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INCCRI,600000,7; },{},{} -12322,Chocolate_Pie,Chocolate Pie,0,0,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 5,5; },{},{} -12323,N_Fly_Wing,Novice Fly Wing,11,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "AL_TELEPORT",1; },{},{} -12324,N_Butterfly_Wing,Novice Butterfly Wing,11,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "AL_TELEPORT",3; },{},{} -12325,N_Magnifier,Novice Magnifier,11,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "MC_IDENTIFY",1; },{},{} -12326,J_Firecracker,Large Firecracker,2,2,,20,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12327,Charm_Of_Luck,Charm Of Luck,2,1000,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INCLUK,3600000,20; },{},{} -12328,Charm_Of_Happiness,Charm Of Happiness,2,1800,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INCLUK,3600000,20; },{},{} -12329,Recall_MaleGM,Summon Male GameMaster Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 2000,1800000; },{},{} -12330,Recall_FemaleGM,Summon Female GameMaster Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 2001,1800000; },{},{} -12331,Ginseng,Ginseng,0,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 6,0; },{},{} -12332,Fruit_Juice,Fruit Juice,0,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 0,6; },{},{} -12333,Ansila,Ancilla,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 0,15; sc_start SC_ANCILLA,60000,1; },{},{} -12334,Cherish_Box,Treasure Edition Helm Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_Cherish_Box,1); },{},{} -12335,Yummy_Skewered_Dish,Grilled Delicious Skewer,0,1000,,350,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 60,60; },{},{} -12336,Baked_Mushroom,Grilled Mushroom,0,500,,300,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 30,30; },{},{} -12337,Grilled_Sausage,Grilled Sausages,0,300,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 20,20; },{},{} -12338,Grilled_Corn,Grilled Corn,2,100,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INCSTR,180000,2; sc_start SC_INCINT,180000,2; sc_start SC_INCAGI,180000,2; },{},{} -12339,Cherish_Box_Ori,Treasure Edition Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_Cherish_Box_Ori,1); },{},{} -12340,Mysterious_Rice_Powder,Chewy Rice Powder,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1815; },{},{} -12341,Special_Alloy_Trap_Box,Special Alloy Trap Box,2,30000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7940,100; },{},{} -12342,Manuk's_Opportunity,Manuk's Opportunity,2,0,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_POTION_BERSERK; sc_start SC_MANU_ATK,600000,10; },{},{} -12343,Manuk's_Courage,Manuk's Courage,2,0,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_GUARD; sc_start SC_MANU_DEF,600000,10; },{},{} -12344,Pinguicula's_fruit_Jam,Pinguicula's Fruit Jam,2,0,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_POTION_BERSERK; sc_start SC_SPL_ATK,600000,10; },{},{} -12345,Luciola's_Honey_Jam,Luciola's Honey Jam,2,0,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_GUARD; sc_start SC_SPL_DEF,600000,10; },{},{} -12346,Unripe_Acorn,Unripe Acorn,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ heal -100,0; },{},{} -12347,Acorn_Jelly,Acorn Jelly,11,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "ALL_REVERSEORCISH",1; },{},{} -12348,Manuk's_Faith,Manuk's Faith,2,0,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_POTION_BERSERK; sc_start SC_MANU_MATK,600000,10; },{},{} -12349,Cornus'_Tears,Cornus' Tears,2,0,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_POTION_BERSERK; sc_start SC_SPL_MATK,600000,10; },{},{} -12350,Angeling_Potion,Angeling Potion,11,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,120000,5; itemskill "AL_ANGELUS",5; },{},{} -12351,Shout_Megaphone,Scream Megaphone,11,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "MC_LOUD",1; },{},{} -12352,Dun_Tele_Scroll3,Dungeon Teleport Scroll 3,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashDungeon",3; },{},{} -12353,Tiny_Waterbottle,Small Bottle,2,800,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_WATERWEAPON,90000,1; },{},{} -12354,Buche_De_Noel,Buche De Noel,2,2,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_ANGELUS; bonus_script "{ bonus bHPrecovRate,3; bonus bSPrecovRate,3; bonus bHit,3; bonus bCritical,7; }",600,0,0,EFST_BUCHEDENOEL; },{},{} -12355,Xmas_Gift,Xmas Gift,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_Xmas_Gift,1); },{},{} -12356,Louise_Costume_Box,Louise Costume Box,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_Louise_Costume_Box,1); },{},{} -12357,Shiny_Wing_Gown,Shiny Wing Gown,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1630; },{},{} -12358,Fan_Of_Wind,Fan Of Wind,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1513; },{},{} -12359,Very_Soft_Plant,Very Soft Plant,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1586; },{},{} -12360,Very_Red_Juice,Very Red Juice,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1505; },{},{} -12361,Delicious_Shaved_Ice,Delicious Shaved Ice,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1143; },{},{} -12362,Kuloren,Kuloren,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1401; },{},{} -12363,Fit_Pipe,Fit Pipe,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1179; },{},{} -12364,Staff_Of_Leader,Staff Of Leader,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1299; },{},{} -12365,Charming_Lotus,Charming Lotus,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1416; },{},{} -12366,Gril_Doll,Girl's Doll,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1404; },{},{} -12367,Luxury_Whisky_Bottle,Luxury Whisky Bottle,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1504; },{},{} -12368,Splendid_Mirror,Splendid Mirror,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1148; },{},{} -12369,Oilpalm_Coconut,Oilpalm Coconut,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1495; },{},{} -12370,Gril's_Naivety,Girl's Naivety,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1374; },{},{} -12371,Magical_Lithography,Magical Lithography,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1040; },{},{} -12372,Hell_Contract,Hell Contract,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1379; },{},{} -12373,Boy's_Naivety,Boy's Pure Heart,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1370; },{},{} -12374,Flaming_Ice,Ice Fireworks,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1837; },{},{} -12375,Acaraje,Akaraje,2,0,,80,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_STEAL; bonus_script "{ bonus bHit,5; bonus bAspdRate,10; }",1200,0,0,EFST_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; },{},{} -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; } },{},{} -12382,ValkyrieB_Scroll,Ancient Languages Scroll,2,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ if(strcharinfo(3)=="job3_arch02") { mercenary_create 2038,1800000; } },{},{} -12383,Vulcan_Bullet_Magazine,Vulcan Bullet Magazine,2,11000,,500,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6145,1000; },{},{} -12384,Rainbow_Ruby_Water,Rainbow Ruby,11,0,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ if(strcharinfo(3)=="job3_war02") { itemskill "WL_FROSTMISTY",5; } },{},{} -12385,Rainbow_Ruby_Fire,Rainbow Ruby,11,0,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ if(strcharinfo(3)=="job3_war02") { itemskill "WL_CRIMSONROCK",5; } },{},{} -12386,Rainbow_Ruby_Wind,Rainbow Ruby,11,0,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ if(strcharinfo(3)=="job3_war02") { itemskill "WL_CHAINLIGHTNING",5; } },{},{} -12387,Rainbow_Ruby_Earth,Rainbow Ruby,11,0,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ if(strcharinfo(3)=="job3_war02") { itemskill "WL_EARTHSTRAIN",5; } },{},{} -12388,Runstone_Crush,Rhydo Runestone For Apprentice,11,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ if(strcharinfo(3)=="job3_rune02") { itemskill "RK_CRUSHSTRIKE",1; } },{},{} -12389,Runstone_Storm,Pertz Runestone For Apprentice,11,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ if(strcharinfo(3)=="job3_rune02") { itemskill "RK_STORMBLAST",1; } },{},{} -12390,Runstone_Millennium,Verkana Runestone For Apprentice,11,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ if(strcharinfo(3)=="job3_rune02") { itemskill "RK_MILLENNIUMSHIELD",1; } },{},{} -12391,Lucky_Egg_C,Lucky Egg C,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Lucky_Egg_C); },{},{} -12392,RepairA,Repair A,2,220,,100,,,,,0x00000400,56,2,,,,,,{ if ( checkmadogear() ) { itemheal rand(200,300),0; } },{},{} -12393,RepairB,Repair B,2,500,,140,,,,,0x00000400,56,2,,,,,,{ if ( checkmadogear() ) { itemheal rand(300,400),0; } },{},{} -12394,RepairC,Repair C,2,1100,,180,,,,,0x00000400,56,2,,,,,,{ if ( checkmadogear() ) { itemheal rand(400,500),0; } },{},{} -12395,Tantanmen,Tantan Noodle,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1519; },{},{} -12396,Fools_Day_Box,Gift Box?,11,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ .@rnd = rand(1,10); if(.@rnd==1) itemskill "AL_TELEPORT",1; else if(.@rnd==2) itemskill "AL_TELEPORT",3; else if(.@rnd==3) percentheal 50,0; else if(.@rnd==4) percentheal 0,50; else if(.@rnd==5) end; else if(.@rnd==6) getitem 512,1; else if(.@rnd==7) itemskill "ALL_REVERSEORCISH",1; else if(.@rnd==8) specialeffect2 EF_MAPPILLAR2; else if(.@rnd==9) specialeffect2 EF_ANGEL2; else specialeffect2 EF_COIN; },{},{} -12397,Fools_Day_Box2,Gift Box?,11,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ .@rnd = rand(1,10); if(.@rnd==1) itemskill "TF_DETOXIFY",1; else if(.@rnd==2) itemskill "TF_PICKSTONE",1; else if(.@rnd==3) itemskill "BA_FROSTJOKER",1; else if(.@rnd==4) itemskill "DC_SCREAM",1; else if(.@rnd==5) end; else if(.@rnd==6) getitem 909,1; else if(.@rnd==7) itemskill "AL_RUWACH",1; else if(.@rnd==8) specialeffect2 EF_BEGINASURA; else if(.@rnd==9) specialeffect2 EF_MVP; else specialeffect2 EF_CURSEATTACK; },{},{} -12398,PCBang_Gift_Box,PCRoom Gift Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12399,Castle_Treasure_Box,Castle Treasure Box,2,20,,1000,,,,,0xFFFFFFFF,63,2,,,,,,{ Zeny += 1000000; },{},{} -12400,Water_Of_Blessing_,Water Of Blessing,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12401,Rune_Kn_Test_Int,Rune Kn Test Int,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INCINT,300000,40; },{},{} -12402,29Fruit,29Fruit,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 5,5; },{},{} -12403,Lucky_Egg_C2,Lucky Egg C2,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Lucky_Egg_C2); },{},{} -12404,Acti_Potion,Acti Potion,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_STEAL; bonus_script "{ bonus2 bAddClass,Class_All,3; bonus bMatkRate,3; bonus2 bSubEle,Ele_All,3; }",120,0,0,EFST_POPECOOKIE; },{},{} -12405,Underripe_Yggseed,Underripe Yggseed,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 30,30; skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,140000,5; },{},{} -12406,Psychic_ArmorS,Psychic ArmorS,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_ENERGYCOAT; sc_start4 SC_ELEMENTALCHANGE,10000,1,Ele_Ghost,1,0; },{},{} -12407,PCBang_Coupon_Box,PC Cafe Coupon Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12408,Leaf_Cat_Ball,Hydra Ball,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 2081; },{},{} -12409,Pork_Belly_H,1st Class Pork Belly,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12410,Spareribs_H,Thick Pork Belly,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12411,HE_Battle_Manual,HE Battle Manual,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_EXPBOOST,900000,200; },{},{} -12412,HE_Bubble_Gum,HE Bubble Gum,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ITEMBOOST,900000,300; },{},{} -12413,PCBang_Coupon_Box2,PC Cafe Coupon Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12414,Guarana_Candy,Guarana Candy,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ASPDPOTION0,1800000,0; sc_start SC_INCREASEAGI,140000,5; skilleffect "AL_INCAGI",0; },{},{} -12415,Siege_Teleport_Scroll2,Siege Teleport Scroll Silver,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12416,Lucky_Egg_C3,Lucky Egg C3,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Lucky_Egg_C3); },{},{} -12417,Boost500,Boost500,2,100,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_BOOST500,500000,10; },{},{} -12418,Full_SwingK,Full SwingK,2,100,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_FULL_SWING_K,500000,50; },{},{} -12419,Mana_Plus,Mana Plus,2,100,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_MANA_PLUS,500000,50; },{},{} -12420,Stamina_Up_M,Stamina Up M,2,100,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_MUSTLE_M,500000,5; },{},{} -12421,Digestive_F,Falmons F,2,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_LIFE_FORCE_F,500000,5; },{},{} -12422,HP_Increase_PotionS,HP Increase Potion (Small),2,100,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,1; percentheal 1,0; },{},{} -12423,HP_Increase_PotionM,HP Increase Potion (Medium),2,100,,40,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,2; percentheal 2,0; },{},{} -12424,HP_Increase_PotionL,HP Increase Potion (Large),2,100,,80,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,3; percentheal 5,0; },{},{} -12425,SP_Increase_PotionS,SP Increase Potion (Small),2,100,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start2 SC_ENERGY_DRINK_RESERCH,500000,1,1; percentheal 0,2; },{},{} -12426,SP_Increase_PotionM,SP Increase Potion (Medium),2,100,,40,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start2 SC_ENERGY_DRINK_RESERCH,500000,1,2; percentheal 0,4; },{},{} -12427,SP_Increase_PotionL,SP Increase Potion (Large),2,100,,80,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start2 SC_ENERGY_DRINK_RESERCH,500000,1,3; percentheal 0,8; },{},{} -12428,Enrich_White_PotionZ,Concentrated White Potion Z,0,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_EXTRACT_WHITE_POTION_Z,500000,20; heal 1000,0; },{},{} -12429,Savage_BBQ,Savage Full Roast,2,,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_SAVAGE_STEAK,300000,20; },{},{} -12430,Wug_Blood_Cocktail,Cocktail Warg Blood,2,,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_COCKTAIL_WARG_BLOOD,300000,20; },{},{} -12431,Minor_Brisket,Minor Stew,2,,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_MINOR_BBQ,300000,20; },{},{} -12432,Siroma_Icetea,Siroma Iced Tea,2,,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_SIROMA_ICE_TEA,300000,20; },{},{} -12433,Drocera_Herb_Stew,Drosera Herb Salad,2,,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_DROCERA_HERB_STEAMED,300000,20; },{},{} -12434,Petti_Tail_Noodle,Petite Tail Noodles,2,,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_PUTTI_TAILS_NOODLES,300000,20; },{},{} -12435,Black_Thing,Black Mass,2,,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_STOMACHACHE,60000,rand(5,10); },{},{} -12436,Vitata500,Vitata 500,0,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start2 SC_VITATA_500,500000,20,5; itemheal 0,200; },{},{} -12437,Enrich_Celermine_Juice,Concentrated Ceromain Soup,2,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_EXTRACT_SALAMINE_JUICE,500000,10; },{},{} -12438,F_Giant_Fly_Wing,F Giant Fly Wing,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12439,F_Battle_Manual,F Old Battle Manual,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12440,F_Insurance,F Insurance,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -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_CashSiegeTele"; },{},{} -12445,F_Str_Dish10_,F Str Dish10,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_STRFOOD,1800000,10; },{},{} -12446,F_Agi_Dish10_,F Agi Dish10,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_AGIFOOD,1800000,10; },{},{} -12447,F_Int_Dish10_,F Int Dish10,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INTFOOD,1800000,10; },{},{} -12448,F_Dex_Dish10_,F Dex Dish10,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_DEXFOOD,1800000,10; },{},{} -12449,F_Luk_Dish10_,F Luk Dish10,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_LUKFOOD,1800000,10; },{},{} -12450,F_Vit_Dish10_,F Vit Dish10,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_VITFOOD,1800000,10; },{},{} -12451,F_WOB_Rune,F WOB Rune,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12452,F_WOB_Schwaltz,F WOB Schwarz,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12453,F_WOB_Rachel,F WOB Rachel,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12454,F_WOB_Local,F WOB Local,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12456,F_Greed_Scroll,F Greed Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12457,F_Glass_Of_Illusion,F Glass Of Illusion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12458,F_Abrasive,F Abrasive,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12459,F_Med_Life_Potion,F Med Life Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_HEAL3; sc_start2 SC_L_LIFEPOTION,600000,-7,4; },{},{} -12460,F_Small_Life_Potion,F Small Life Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_HEAL3; sc_start2 SC_S_LIFEPOTION,600000,-5,5; },{},{} -12461,F_Regeneration_Potion,F Regeneration Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12462,F_B_Mdef_Potion,F B Mdef Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect EF_SPELLBREAKER; bonus_script "{ bonus3 bSubEle,Ele_All,3,BF_MAGIC; }",180,0,0,EFST_PROTECT_MDEF; },{},{} -12463,F_S_Mdef_Potion,F S Mdef Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect EF_SPELLBREAKER; bonus_script "{ bonus3 bSubEle,Ele_All,3,BF_MAGIC; }",60,0,0,EFST_PROTECT_MDEF; },{},{} -12464,F_B_Def_Potion,F B Def Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect EF_GUARD; bonus_script "{ bonus3 bSubEle,Ele_All,3,BF_SHORT; }",180,0,0,EFST_PROTECT_DEF; },{},{} -12465,F_S_Def_Potion,F S Def Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect EF_GUARD; bonus_script "{ bonus3 bSubEle,Ele_All,3,BF_SHORT; }",60,0,0,EFST_PROTECT_DEF; },{},{} -12466,F_Blessing_10_Scroll,F Blessing 10 Scroll,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12467,F_Inc_Agi_10_Scroll,F Inc Agi 10 Scroll,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12468,F_Aspersio_5_Scroll,F Aspersio 5 Scroll,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12470,F_Wind_Walk_10_Scroll,F Wind Walk 10 Scroll,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12471,F_Adrenaline_Scroll,F Adrenaline Scroll,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12472,F_Convex_Mirror,F Convex Mirror,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12473,RWC_Parti_Box,RWC Parti Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_RWC_Parti_Box); },{},{} -12474,RWC_Final_Comp_Box,RWC Final Comp Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_RWC_Final_Comp_Box); },{},{} -12475,Cure_Free,Cure Free,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_end SC_SILENCE; sc_end SC_BLEEDING; sc_end SC_POISON; sc_end SC_CURSE; sc_end SC_ORCISH; sc_end SC_CHANGEUNDEAD; itemheal 500,0; },{},{} -12476,PCBang_Coupon_Box3,PCBang Coupon Box3,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12477,Gift_Bundle,Gift Bundle,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Gift_Bundle);*/ getitem 547,30; getitem 608,2; getitem 6302,1; },{},{} -12478,Chance_Box,Chance Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12479,Caracas_Ring_Box,Caracas Ring Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Caracas_Ring_Box);*/ rentitem 2841,270000; },{},{} -12480,Attend_3Day_Box,Attend 3Day Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12481,Attend_7Day_Box,Attend 7Day Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12482,Attend_10Day_Box,Attend 10Day Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12483,Attend_15Day_Box,Attend 15Day Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12484,Attend_20Day_Box,Attend 20Day Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12485,Attend_25Day_Box,Attend 25Day Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12486,GoldPC_First_Box,GoldPC First Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12487,PC_4Leaf_Clover_Box,PC 4Leaf Clover Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12488,Ticket_Gift_Box,Ticket Gift Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12489,Ticket_Gift_Box2,Ticket Gift Box2,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12490,Vivid_Notation,Christmas Music Box,2,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ playbgm rand(53,58)+".mp3"; },{},{} -12491,Curious_Snowball,Curious Snowball,2,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_Snowball"; },{},{} -12492,Crumpled_Paper,Crumpled Paper,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_Crumpled_Paper,1); },{},{} -12493,Lucky_Egg_C4,Lucky Egg C4,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Lucky_Egg_C4); },{},{} -12494,E_Giant_Fly_Wing,E Giant Fly Wing,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12495,E_Battle_Manual,E Battle Manual,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12496,E_Insurance,E Insurance,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12497,E_Bubble_Gum,E Bubble Gum,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ITEMBOOST,1800000,100; },{},{} -12498,E_Kafra_Card,E Kafra Card,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12499,E_Neuralizer,E Neuralizer,2,2,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12500,E_Dun_Tele_Scroll1,E Dun Tele Scroll1,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12501,E_Str_Dish10_,Steamed Tongue,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_STRFOOD,1800000,10; },{},{} -12502,E_Agi_Dish10_,Steamed Desert Scorpions,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_AGIFOOD,1800000,10; },{},{} -12503,E_Int_Dish10_,Dragon Breath Cocktail,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INTFOOD,1800000,10; },{},{} -12504,E_Dex_Dish10_,Hwergelmir's Tonic,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_DEXFOOD,1800000,10; },{},{} -12505,E_Luk_Dish10_,Cooked Nine Tail,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_LUKFOOD,1800000,10; },{},{} -12506,E_Vit_Dish10_,Immortal Stew,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_VITFOOD,1800000,10; },{},{} -12507,E_WOB_Rune,Yellow Butterfly Wing,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashCity",1; },{},{} -12508,E_WOB_Schwaltz,Green Butterfly Wing,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashCity",2; },{},{} -12509,E_WOB_Rachel,Red Butterfly Wing,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashCity",3; },{},{} -12510,E_WOB_Local,Blue Butterfly Wing,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashCity",5; },{},{} -12511,E_Siege_Teleport_Scroll,E Siege Teleport Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12512,E_Greed_Scroll,E Greed Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12513,E_Glass_Of_Illusion,E Glass Of Illusion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12514,E_Abrasive,E Abrasive,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_MAGICALATTHIT; sc_start SC_INCCRI,300000,30; },{},{} -12515,E_Med_Life_Potion,E Med Life Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_HEAL3; sc_start2 SC_L_LIFEPOTION,600000,-7,4; },{},{} -12516,E_Small_Life_Potion,E Small Life Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_HEAL3; sc_start2 SC_S_LIFEPOTION,600000,-5,5; },{},{} -12517,E_Regeneration_Potion,E Regeneration Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12518,E_B_Mdef_Potion,E B Mdef Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12519,E_S_Mdef_Potion,E S Mdef Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12520,E_B_Def_Potion,E B Def Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12521,E_S_Def_Potion,E S Def Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12522,E_Blessing_10_Scroll,Blessing Scroll Lv 10,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "AL_BLESSING",10; },{},{} -12523,E_Inc_Agi_10_Scroll,Increase Agility Scroll Lv 10,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "AL_INCAGI",10; },{},{} -12524,E_Aspersio_5_Scroll,Aspersio Scroll Lv 5,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "PR_ASPERSIO",5; },{},{} -12525,E_Assumptio_5_Scroll,Assumptio Scroll Lv 5,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "HP_ASSUMPTIO",5; },{},{} -12526,E_Wind_Walk_10_Scroll,Wind Walk Scroll Lv 10,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "SN_WINDWALK",10; },{},{} -12527,E_Adrenaline_Scroll,Adrenaline Scroll,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "BS_ADRENALINE",5; },{},{} -12528,E_Convex_Mirror,Convex Mirror,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_BOSSMAPINFO,600000,0; },{},{} -12529,White_Slim_Potion_Box,White Slim Potion Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 547,200; },{},{} -12530,Mastela_Fruit_Box,Mastela Fruit Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 522,200; },{},{} -12531,White_Potion_Box,White Potion Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 504,100; },{},{} -12532,Royal_Jelly_Box2,Royal Jelly Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 526,100; },{},{} -12533,Blue_Herb_Box2,Blue Herb Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 510,100; },{},{} -12534,Yggdrasil_Seed_Box,Yggdrasil Seed Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 608,30; },{},{} -12535,Iggdrasilberry_Box,Iggdrasilberry Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 607,15; },{},{} -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,,,,,,{ 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); },{},{} -12543,Fortune_Cookie3,Fortune Cookie3,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Fortune_Cookie3); },{},{} -12544,Mystic_Tree_Branch,Mystic Tree Branch,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12545,Lucky_Egg_C5,Lucky Egg C5,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Lucky_Egg_C5); },{},{} -12546,Suspicious_Dish,Suspicious Dish,2,100,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_POISON,50000,0; },{},{} -12547,Chalcenodny_Box,Chalcenodny Box,2,0,,200,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12548,Buy_Market_Permit2,Shabby Purchase Street Stall License,2,500,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ buyingstore 2; },{},{} -12549,White_Slim_Pot_Box2,White Slim Pot Box2,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 547,100; },{},{} -12550,Poison_Bottle_Box2,Deadly Poison Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 678,30; },{},{} -12551,MVP_Tele_Scroll,MVP Tele Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12552,Quest_Tele_Scroll,Quest Tele Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12553,Brysinggamen_Piece_Box,Brysinggamen Piece Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12554,Asprika_Piece_Box,Asprika Piece Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12555,Brynhild_Piece_Box,Brynhild Piece Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12556,Sleipnir_Piece_Box,Sleipnir Piece Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12557,Mjolnir_Piece_Box,Mjolnir Piece Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12558,Magingiorde_Piece_Box,Magingiorde Piece Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12559,Tenkaippin_Strong,Tenkaippin Strong,2,650,,200,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12560,Tenkaippin_Clean,Tenkaippin Clean,2,650,,200,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12561,Mysterious_Seed,Mysterious Seed,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ warp "bif_fild01",32,382; },{},{} -12562,Bubble_Gum_Plus,Bubble Gum Plus,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12563,BM75,BM75,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12564,3D_Glasses_Box,3D Glasses Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12565,Cheer_Scarf_Box,Cheer Scarf Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12566,Cheer_Scarf2_Box,Cheer Scarf2 Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12567,Cheer_Scarf3_Box,Cheer Scarf3 Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12568,Cheer_Scarf4_Box,Cheer Scarf4 Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12569,Cheer_Scarf6_Box,Cheer Scarf6 Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12570,Cheer_Scarf8_Box,Cheer Scarf8 Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12571,Cheer_Scarf10_Box,Cheer Scarf10 Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12572,Cheer_Scarf10_Box2,Cheer Scarf10 Box2,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12573,Fruit_Basket,Fruit Basket,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_Fruit_Basket,1); getrandgroupitem(IG_Fruit_Basket,1); getrandgroupitem(IG_Fruit_Basket,1); },{},{} -12574,Mora_Berry,Mora Berry,2,0,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal 0,rand(50,65); specialeffect2 EF_GUARD; bonus_script "{ bonus2 bAddDefMonster,2137,50; bonus2 bAddDefMonster,2136,50; bonus2 bAddDefMonster,2134,50; bonus2 bAddDefMonster,2133,50; bonus2 bAddDefMonster,2132,50; }",120; },{},{} -12575,Arrow_Of_Elf_Cntr,Arrow Of Elf Cntr,2,500,,250,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1773,500; },{},{} -12576,Hunting_Arrow_Cntr,Hunting Arrow Cntr,2,500,,250,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1774,500; },{},{} -12577,Lucky_Egg_C6,Lucky Egg C6,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Lucky_Egg_C6); },{},{} -12578,Rapid_Life_Water,Rapid Life Water,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_HEAL3; bonus_script "{ bonus2 bHPRegenRate,(MaxHp/100*6),3000; }",600; },{},{} -12579,Ring_Of_Valkyrie_Box,Ring Of Valkyrie Box,2,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12580,Vending_Search_Scroll,Universal Catalog Silver,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ searchstores 10,0; },{},{} -12581,Vending_Search_Scroll2,Universal Catalog Gold,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ searchstores 10,1; },{},{} -12582,Siege_Supply_Box,WoE Supply Box,11,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12583,PR_Team_Box,Public Relations box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6397,1; },{},{} -12584,Develop_Team_box,Development Team box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6398,1; },{},{} -12585,Marketing_Team_Box,Marketing Team box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6399,1; },{},{} -12586,Operating_Team_Box,Operation Team box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6400,1; },{},{} -12587,Summer_Night_box,A Summer Night's Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12246,1; },{},{} -12588,Summer_Night_box2,A Summer Night's Box2,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12103,1; },{},{} -12589,Summer_Night_box3,A Summer Night's Box3,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12106,1; },{},{} -12591,Uni_Catalog_Bz,Universal Catalog Bronze,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ searchstores 10,1; },{},{} -12592,Cyclops_Box1,Cyclops Box1,11,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12593,Cyclops_Box2,Cyclops Box2,11,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12594,Cyclops_Box3,Cyclops Box3,11,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12595,Lucky_Egg_C7,Lucky Egg C7,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Lucky_Egg_C7); },{},{} -12596,Magic_Candy,Magic Candy,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_HASTEUP; bonus_script "{ bonus bMatk,30; bonus bFixedCastrate,-70; bonus bNoCastCancel; bonus2 bSPLossRate,90,10000; }",60,0,0,EFST_MAGIC_CANDY; },{},{} -12597,Opor_Ayam,Opor Ayam,11,20,,150,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12598,Dendeng_Balado,Dendeng Balado,11,20,,150,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12599,Kurma,Kurma,11,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12600,Treasure_Box_Scroll,Treasure Chest Summoned,11,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12601,Cold_Watermelon_Juice,Fresh Watermelon Juice,0,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 5,5; },{},{} -12602,Special_Box1,Special Box I,11,100,,100,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12603,Special_Box2,Special Box II,11,100,,100,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12604,Special_Box3,Special Box III,11,100,,100,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12605,Special_Box4,Special Box IV,11,100,,100,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12606,Special_Box5,Special Box V,11,100,,100,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -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); },{},{} -12610,Mysterious_Egg,Mysterious Egg,2,,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem callfunc("F_Rand",12545,12493,12577,12391,12403,12416),1; },{},{} -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); },{},{} -12615,Low_Coin_Pocket,Minor Coin Bag,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Low_Coin_Pocket); },{},{} -12616,Sgrade_Pocket,S Grade Coin Bag,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Sgrade_Pocket); },{},{} -12617,Agrade_Pocket,A Grade Coin Bag,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Agrade_Pocket); },{},{} -12618,Bgrade_Pocket,B Grade Coin Bag,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Bgrade_Pocket); },{},{} -12619,Cgrade_Pocket,C Grade Coin Bag,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Cgrade_Pocket); },{},{} -12620,Dgrade_Pocket,D Grade Coin Bag,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Dgrade_Pocket); },{},{} -12621,Egrade_Pocket,E Grade Coin Bag,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Egrade_Pocket); },{},{} -12622,Boarding_Halter,Reins Of Mount,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ setmounting(); },{},{ if (ismounting()) setmounting(); } -12623,High_Weapon_Box,Advanced Weapons Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_Advanced_Weapons_Box,1); },{},{} -12624,Delicious_Jelly,Delicious Jelly,0,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 3,3; },{},{} -12625,Sapa_Feat_Cert_Pack,Sapa Feat Cert Pack,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12626,Wander_Man_Scroll,Wander Man Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 2213,1800000; },{},{} -12627,Wicked_Nymph_Scroll,Wicked Nymph Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 2214,1800000; },{},{} -12628,Kasa_Scroll,Kasa Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 2215,1800000; },{},{} -12629,Salamander_Scroll,Salamander Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 2216,1800000; },{},{} -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 bExpAddRace,RC_All,10; bonus2 bDropAddRace,RC_All,20; }",1200,1,0,EFST_OVERLAPEXPUP; },{},{} -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; },{},{} -12637,Gong_Bug_Pocket,Sow Bug Pocket,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13208,200; },{},{} -12638,Dried_Squid_Box,Dried Squid Box,2,20,,2000,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13292,200; },{},{} -12639,Flying_Fish_Box,Flying Fish Box,2,20,,2000,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13293,200; },{},{} -12640,Starfish_Box,Starfish Box,2,20,,500,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13291,200; },{},{} -12641,Lucky_Egg_C8,Lucky Egg C8,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Lucky_Egg_C8); },{},{} -12642,Fruit_Of_Mastela_Box2,Fruit Of Mastela 100 Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 522,100; },{},{} -12643,E_Coin_Pack50,E Coin Pack50,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6422,50; },{},{} -12644,PCBang_Coupon_Box4,PCBang Coupon Box4,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12645,J_Aspersio_5_Scroll_C,J Aspersio 5 Scroll C,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ASPERSIO,180000,1; },{},{} -12646,Takoyaki,Fried Octopus Legs,2,20,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 5,5; sc_start SC_LUKFOOD,600000,9; sc_start SC_ATKPOTION,600000,20; sc_start SC_MATKPOTION,600000,20; },{},{} -12647,Ink_Ball,Sea Ink,2,20,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Ink_Ball); },{},{} -12648,Special_Potion_Set,Comprehensive Set Of Potions,2,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 501,10; getitem 502,10; getitem 503,10; getitem 504,10; getitem 505,10; },{},{} -12649,Lv70_Imperial_Gift,Level 70 Bounty,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12073,5; getitem 12088,5; getitem 12078,5; getitem 12083,5; getitem 12093,5; getitem 12098,5; },{},{} -12650,Lv90_Imperial_Gift,Level 90 Bounty,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12263,5; },{},{} -12651,Lv110_Imperial_Gift,Level 110 Bounty,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12623,1; getitem 16765,1; getitem 16765,1; getitem 16765,1; },{},{} -12652,Lv130_Imperial_Gift,Level 130 Bounty,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12613,10; },{},{} -12653,Lv150_Imperial_Gift,Level 150 Bounty,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 16740,1; getitem 16740,1; getitem 16740,1; getitem 5364,1; },{},{} -12654,Lucky_Egg_C9,Lucky Egg C9,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Lucky_Egg_C9); },{},{} -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; 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,EFST_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,EFST_SKF_ATK; },{},{} -12668,Thai_Perfume_ASPD,Thai Perfume ASPD,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_MAGICALATTHIT; bonus_script "{ bonus bAspdRate,3; }",600,0,0,EFST_SKF_ASPD; },{},{} -12669,Thai_Perfume_CAST,Thai Perfume CAST,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_MAGICALATTHIT; bonus_script "{ bonus bVariableCastrate,-5; }",600,0,0,EFST_SKF_CAST; },{},{} -12670,Beast_Powder,Beast Powder,2,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12671,99lv_Battle_Manual,99lv Battle Manual,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12672,Start_New_Box,Start New Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 617,2; getitem 12263,2; getitem 12329,3; getitem 12330,2; },{},{} -12673,Lucky_Egg_C10,Lucky Egg C10,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Lucky_Egg_C10); },{},{} -12674,God_Material_Box,God Material Box,2,20,,500,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_God_Material_Box); },{},{} -12675,Sg_Weapon_Supply_Box,WoE Weapon Supply Box,2,20,,500,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Sg_Weapon_Supply_Box); },{},{} -12676,Sg_Violet_Potion_Box,Siege Violet Potion Box,2,20,,500,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 11547,50; },{},{} -12677,Siege_Arrow_Quiver_S,Siege Arrow Quiver S,2,2,,100,,,,,0xFFFFFFFF,63,2,,,130,,,{ getitem 1775,200; },{},{} -12678,Siege_Arrow_Quiver_A,Siege Arrow Quiver A,2,2,,100,,,,,0xFFFFFFFF,63,2,,,95,,,{ getitem 1776,200; },{},{} -12679,Sg_White_Potion_Box,Siege White Potion Box,2,20,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 11548,30; },{},{} -12680,Sg_Blue_Potion_Box,Siege Blue Potion Box,2,20,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 11549,10; },{},{} -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,,,,,,{ sc_start SC_ATTHASTE_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,,,,,,{},{},{} -12688,Vit_Dish20,Vit Dish20,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12689,Dex_Dish20,Dex Dish20,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12690,Old_C_Album_Helm,Headgear Card Album,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_CardAlbum_Helm,1); },{},{} -12691,Old_C_Album_Armor,Armor Card Album,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_CardAlbum_Armor,1); },{},{} -12692,Old_C_Album_Shield,Shield Card Album,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_CardAlbum_Shield,1); },{},{} -12693,Old_C_Album_Garment,Garment Card Album,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_CardAlbum_Garment,1); },{},{} -12694,Old_C_Album_Shoes,Shoes Card Album,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_CardAlbum_Shoes,1); },{},{} -12695,Old_C_Album_Acc,Accessory Card Album,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_CardAlbum_Acc,1); },{},{} -12696,RWC_Cele_Fire,RWC Celebration Firecracker,2,0,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ bonus_script "{ bonus bAllStats,3; bonus2 bAddClass,Class_All,5; bonus2 bMagicAddClass,Class_All,5; bonus bMatkRate,5; }",10,0,0,EFST_2011RWC; },{},{} -12697,RWC_Cele_Fire2,RWC Celebration Firecracker,2,0,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ bonus_script "{ bonus bAllStats,3; bonus2 bAddClass,Class_All,5; bonus2 bMagicAddClass,Class_All,5; bonus bMatkRate,5; }",10,0,0,EFST_2011RWC; },{},{} -12698,Old_C_Album_Weapon,Weapon Card Album,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_CardAlbum_Weapon,1); },{},{} -12699,Tikbalang_Belt,Tikbalang Harness,2,20,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 2313; },{},{} -12700,Insideout_Shirt,Inside-out Shirt,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ warp "malaya",242,211; },{},{} -12701,Old_Blue_Box_F,Old Blue Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12702,Old_Bleu_Box,Old Navy Box,2,0,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_BleuBox,1); getrandgroupitem(IG_BleuBox,1); },{},{} -12703,Holy_Egg_2,Holy Egg,2,0,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_Holy_Egg_2,1); },{},{} -12704,Elixir_Of_Life,Elixir of Life,0,0,,10,,,,,0xFFFFFFFF,63,2,,,85,,,{ percentheal 100,0; },{},{} -12705,Noble_Nameplate,Noble Nameplate,2,0,,100,,,,,0xFFFFFFFF,63,2,,,90,,,{ sc_start SC_EXPBOOST,1800000,100; },{},{} -12706,Lucky_Cookie01,Lucky Cookie,11,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "PR_GLORIA",5; },{},{} -12707,Lucky_Cookie02,Lucky Cookie,11,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "PR_MAGNIFICAT",1; },{},{} -12708,Lucky_Cookie03,Lucky Cookie,11,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "PR_IMPOSITIO",3; },{},{} -12709,Guyak_Candy,Guyak Candy,0,0,,150,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 30,30; },{},{} -12710,Guyak_Pudding,Guyak Pudding,2,0,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_SPEEDUP1,300000,50; },{},{} -12711,Pretzel,Pretzel,0,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ itemheal rand(50,90),0; },{},{} -12712,Green_Beer,Green Beer,2,2,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 0,50; },{},{} -12713,Monster_Extract,Monster Extract,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -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,2,2,,20,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12718,Poison_Leech,Leech End,2,2,,20,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12719,Poison_Oblivion,Oblivion Curse,2,2,,20,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12720,Poison_Contamination,Disheart,2,2,,20,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12721,Poison_Numb,Toxin,2,2,,20,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12722,Poison_Fever,Pyrexia,2,2,,20,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12723,Poison_Laughing,Magic Mushroom,2,2,,20,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12724,Poison_Fatigue,Venom Bleed,2,2,,20,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -//=================================================================== -// Rune Knight's Rune Stones -//=================================================================== -12725,Runstone_Nosiege,Nauthiz Rune,2,100,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_REFRESH",1; },{},{} -12726,Runstone_Rhydo,Raido Rune,2,100,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_CRUSHSTRIKE",1; },{},{} -12727,Runstone_Verkana,Berkana Rune,2,100,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_MILLENNIUMSHIELD",1; },{},{} -12728,Runstone_Isia,Isa Rune,2,100,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_VITALITYACTIVATION",1; },{},{} -12729,Runstone_Asir,Othila Rune,2,100,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_FIGHTINGSPIRIT",1; },{},{} -12730,Runstone_Urj,Uruz Rune,2,100,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_ABUNDANCE",1; },{},{} -12731,Runstone_Turisus,Thurisaz Rune,2,100,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_GIANTGROWTH",1; },{},{} -12732,Runstone_Pertz,Wyrd Rune,2,100,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_STORMBLAST",1; },{},{} -12733,Runstone_Hagalas,Hagalaz Rune,2,100,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_STONEHARDSKIN",1; },{},{} -//=================================================================== -// Rune Knight Rune Ores -//=================================================================== -12734,Runstone_Quality,Luxurious Rune,0,2,,100,,,,,0x00000080,56,2,,,,,,{ makerune 8; },{},{} -12735,Runstone_Ancient,Ancient Rune,0,2,,100,,,,,0x00000080,56,2,,,,,,{ makerune 30; },{},{} -12736,Runstone_Mystic,Mystic Rune,0,2,,100,,,,,0x00000080,56,2,,,,,,{ makerune 60; },{},{} -12737,Runstone_Ordinary,General Rune,0,2,,100,,,,,0x00000080,56,2,,,,,,{ makerune 4; },{},{} -12738,Runstone_Rare,Rare Rune,0,2,,100,,,,,0x00000080,56,2,,,,,,{ makerune 15; },{},{} -//=================================================================== -// 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 "{ bonus bStr,20; }",60,0,0,EFST_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,EFST_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; },{},{} -12745,Skull_Scroll,Skull Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12746,Destruction_Scroll,Destruction Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12747,Royal_Scroll,Royal Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12748,Immune_Scroll,Immune Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12749,Mystic_Scroll,Mystic Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12750,Battle_Scroll,Battle Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12751,Armor_Scroll,Armor Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12752,Prayer_Scroll,Prayer Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12753,Soul_Scroll,Soul Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12754,New_Year_Bun,Chinese Pastel,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 50,50; },{},{} -12755,Traditional_Firecrack,Chinese Fireworks,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_POK_JAP; /* itemskill "MO_CALLSPIRITS",3; itemskill "MO_FINGEROFFENSIVE",5; */ },{},{} -12756,New_Gift_Envelope,Chinese New Year Envelope,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_New_Gift_Envelope);*/ getrandgroupitem(IG_New_Gift_Envelope,0); },{},{} -12757,Loyal_Ring1_Box,Loyal Ring1 Box,2,10,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12758,Loyal_Ring2_Box,Loyal Ring2 Box,2,10,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12759,Loyal_Ring3_Box,Loyal Ring3 Box,2,10,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12760,Bubble_Gum_Green,Bubble Gum Green,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INCSTR,1200000,10; },{},{} -12761,Bubble_Gum_Yellow,Bubble Gum Yellow,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INCINT,1200000,10; },{},{} -12762,Bubble_Gum_Orange,Bubble Gum Orange,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INCDEX,1200000,10; },{},{} -12763,Bubble_Gum_Red,Bubble Gum Red,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INCAGI,1200000,10; },{},{} -12764,Fools_Day_Box_Tw,Fools Day Box Tw,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12765,Summer_Knight_Box,Summer Knight Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12766,Reward_Job_BM25,Reward Job BM25,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12767,Passion_FB_Hat_Box,Passion FB Hat Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Passion_FB_Hat_Box);*/ rentitem 5856,3600; },{},{} -12768,Cool_FB_Hat_Box,Cool FB Hat Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Cool_FB_Hat_Box);*/ rentitem 5857,3600; },{},{} -12769,Victory_FB_Hat_Box,Victory FB Hat Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Victory_FB_Hat_Box);*/ rentitem 5858,3600; },{},{} -12770,Glory_FB_Hat_Box,Glory FB Hat Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Glory_FB_Hat_Box);*/ rentitem 5859,86400; },{},{} -12771,Passion_Hat_Box2,Passion Hat Box2,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Passion_Hat_Box2);*/ rentitem 5856,21600; },{},{} -12772,Cool_Hat_Box2,Cool Hat Box2,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Cool_Hat_Box2);*/ rentitem 5857,21600; },{},{} -12773,Victory_Hat_Box2,Victory Hat Box2,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Victory_Hat_Box2);*/ rentitem 5858,21600; },{},{} -12774,Empty_Potion_Bottle,Empty Potion Bottle,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12775,Ancient_Spirit_Agimat,Greater Agimat of Ancient Spirit,2,20,,600,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_PROVIDENCE; bonus_script "{ bonus2 bAddRace,RC_Demon,10; bonus2 bMagicAddRace,RC_Demon,10; }",1200; },{},{} -12776,Agi_Dish20,Agi Dish20,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12777,Luk_Dish20,Luk Dish20,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12778,Bapho_Jr_Scroll,Bapho Jr Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 2325,1800000; },{},{} -12779,Galapago_Scroll,Galapago Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 2326,1800000; },{},{} -12780,10M_Zeny_Check,10M Zeny Check,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12781,1M_Zeny_Check,1M Zeny Check,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12782,100T_Zeny_Check,100T Zeny Check,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -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,,,,,,{ 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,,,,,,{ CharRename++; },{},{} -12791,Combat_Pill,Combat Pill,2,20,,150,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_POTION_BERSERK; bonus_script "{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bMaxHPrate,3; bonus bMaxSPrate,3; }",60,0,0,EFST_GM_BATTLE; /* showscript */ },{},{} -12792,P_Combat_Pill,P Combat Pill,2,20,,150,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_POTION_BERSERK; bonus_script "{ bonus2 bAddClass,Class_All,10; bonus bMatkRate,10; bonus bMaxHPrate,5; bonus bMaxSPrate,5; }",60,0,0,EFST_GM_BATTLE; },{},{} -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",max(getskilllv("AC_CONCENTRATION"),3); 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,,,,,,{},{},{} -12800,Ktullanux_Scroll,Ktullanux Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 2346,1800000; },{},{} -12801,Eddga_Scroll,Eddga Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 2347,1800000; },{},{} -12802,Time_Guardian_Box,Time Guardian Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12803,Beginner_Kit_Box,Beginner Kit Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12804,Cru_Scroll,Cru Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12805,Mystic_Powder,Mystic Powder,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12806,Scaraba_Scroll,Scaraba Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 2378,1800000; },{},{} -12807,Mercenary_Casting_,Mercenary Casting,2,0,,0,,,,,0xFFFFFFFF,63,2,,,20,,,{ getitem 12160,5; getitem 12170,5; getitem 12180,5; getitem 12808,1; },{},{} -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,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; },{},{} -12815,Yggdrasil_Dust,Yggdrasil Dust,11,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "ECL_SEQUOIADUST",1; },{},{} -12816,Old_Ore_Box_,Old Ore Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,60,,,{},{},{} -12817,Old_Card_Album_,Old Card Album,2,0,,0,,,,,0xFFFFFFFF,63,2,,,80,,,{ getrandgroupitem(IG_CardAlbum,1); getitem 12818,1; },{},{} -12818,High_Weapon_Box_,High Weapon Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,100,,,{ getrandgroupitem(IG_Advanced_Weapons_Box,1); getitem 12809,1; },{},{} -12819,Zherlthsh_Tck_Box_,Zherlthsh Tck Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,150,,,{ getitem 6184,1; },{},{} -12820,Mao_Guai_Scroll,Mao Guai Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 2348,1800000; },{},{} -12821,Loli_Ruri_Scroll,Loli Ruri Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 2349,1800000; },{},{} -12822,Songpyun_Box50,Songpyun Box50,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 663,50; },{},{} -12823,Sedora_Scroll,Sedora Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 2350,1800000; },{},{} -12824,Chepet_Scroll,Chepet Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ mercenary_create 2351,1800000; },{},{} -12826,Wind_Type_Scroll,Wind Type Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Wind_Type_Scroll); },{},{} -12827,Water_Type_Scroll,Water Type Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Water_Type_Scroll); },{},{} -12828,Fire_Type_Scroll,Fire Type Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Fire_Type_Scroll); },{},{} -12829,Earth_Type_Scroll,Earth Type Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Earth_Type_Scroll); },{},{} -12831,Potion_Box,Potion Box,2,0,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 545,100; getitem 546,100; getitem 547,100; getitem 505,100; },{},{} -12834,Undead_Egg,Undead Egg,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12835,Girls_Heart,Girls Heart,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12837,Wooden_Treasure_Box,Wooden Treasure Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12838,Iron_Treasure_Box,Iron Treasure Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,10,,,{},{},{} -12839,bronze_Treasure_Box,bronze Treasure Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,20,,,{},{},{} -12840,Silver_Treasure_Box,Silver Treasure Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,30,,,{},{},{} -12841,Golden_Treasure_Box,Golden Treasure Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,40,,,{},{},{} -12842,Platinum_Treasure_Box,Platinum Treasure Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,50,,,{},{},{} -12843,Pearl_Treasure_Box,Pearl Treasure Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,60,,,{},{},{} -12844,Diamond_Treasure_Box,Diamond Treasure Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,70,,,{},{},{} -12845,WOB_Amatsu,Amatsu_Butterfly_Wing,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -12846,Unripe_Apple2,Little Unripe Apple,2,10,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 2398; },{},{} -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)) setfalcon (!checkfalcon()); } },{},{} -12849,Combination_Kit,Combination Kit,2,40,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ cooking 30; },{},{} -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); },{},{} -12852,Wisdom_Scroll,Wisdom Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Wisdom_Scroll); },{},{} -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,2,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,,,,,,{ specialeffect2 EF_POTION_CON; sc_start4 SC_GVG_GIANT,10000,3000,0,100,100; },{},{} -12875,Golem_Stone,Golem Stone,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_POTION_CON; sc_start4 SC_GVG_GOLEM,10000,0,200,50,50; },{},{} -12876,Elf_Tear_Stun,Elf Tear Stun,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start2 SC_GVG_STUN,10000,3000,0; },{},{} -12877,Elf_Tear_Stone_Curse,Elf Tear Stone Curse,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start2 SC_GVG_STONE,10000,3000,0; },{},{} -12878,Elf_Tear_Freezing,Elf Tear Freezing,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start2 SC_GVG_FREEZ,10000,3000,0; },{},{} -12879,Elf_Tear_Sleep,Elf Tear Sleep,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start2 SC_GVG_SLEEP,10000,3000,0; },{},{} -12880,Elf_Tear_Curse,Elf Tear Curse,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start2 SC_GVG_CURSE,10000,3000,0; },{},{} -12881,Elf_Tear_Silence,Elf Tear Silence,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start2 SC_GVG_SILENCE,10000,3000,0; },{},{} -12882,Elf_Tear_Blind,Elf Tear Blind,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start2 SC_GVG_BLIND,10000,3000,0; },{},{} -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,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "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,,,,,,{},{},{} -12892,Weapon_Box_Axe,Weapon Box(Axe),2,10,,200,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{} -12893,Weapon_Box_Bow,Weapon Box(Bow),2,10,,200,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{} -12894,Weapon_Box_Sword,Weapon Box(Sword),2,10,,200,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{} -12895,Weapon_Box_Knuckle,Weapon Box(Knuckle),2,10,,200,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{} -12896,Weapon_Box_Book,Weapon Box(Book),2,10,,200,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{} -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; },{},{} -12903,Str_Dish_Box,Steamed Tongue Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12202,10; },{},{} -12904,Agi_Dish_Box,Steamed Scorpion Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12203,10; },{},{} -12905,Int_Dish_Box,Dragon Breath Cocktail Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12204,10; },{},{} -12906,Dex_Dish_Box,Hwergelmir's Tonic Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12205,10; },{},{} -12907,Luk_Dish_Box,Nine Tail Dish Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12206,10; },{},{} -12908,Vit_Dish_Box,Stew Of Immortality Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12207,10; },{},{} -12909,Kafra_Card_Box,Kafra Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12211,10; },{},{} -12910,Giant_Fly_Wing_Box,Giant Fly Wing Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12212,10; },{},{} -12911,Neuralizer_Box,Neuralizer Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12213,1; },{},{} -12912,Convex_Mirror_Box,Convex Mirror Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12214,10; },{},{} -12913,Blessing_10_Scroll_Box,Blessing 10 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12215,10; },{},{} -12914,Inc_Agi_10_Scroll_Box,Increase AGI 10 scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12216,10; },{},{} -12915,Aspersio_5_Scroll_Box,Aspersio 5 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Aspersio_5_Scroll_Box); },{},{} -12916,Assumptio_5_Scroll_Box,Assumptio 5 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12218,10; },{},{} -12917,Wind_Walk_10_Scroll_Box,Wind Walk 10 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12219,10; },{},{} -12918,Adrenaline_Scroll_Box,Adrenaline 5 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12220,10; },{},{} -12919,Megaphone_Box,Megaphone Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12221,10; },{},{} -12920,Enriched_Elunium_Box,Enriched Elunium Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7619,10; },{},{} -12921,Enriched_Oridecon_Box,Enriched Oridecon Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7620,10; },{},{} -12922,Token_Of_Siegfried_Box,Token of Siegfried Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7621,10; },{},{} -12923,Pet_Egg_Scroll_Box1,December Lucky Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll_Box1); },{},{} -12924,Pet_Egg_Scroll_Box2,Pet Egg Box 2,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll_Box2); },{},{} -12925,Pet_Egg_Scroll1,Kafra Item Mall Prize Package,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll1); },{},{} -12926,Pet_Egg_Scroll2,December Lucky Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll2); },{},{} -12927,J_Aspersio_5_Scroll_Box,Aspersio Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12928,10; },{},{} -12928,J_Aspersio_5_Scroll,Sacred Scroll,11,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "PR_ASPERSIO",5; },{},{} -12929,Pet_Egg_Scroll_Box3,Pet Egg Box 3,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll_Box3); },{},{} -12930,Pet_Egg_Scroll_Box4,Pet Egg Box 4,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll_Box4); },{},{} -12931,Pet_Egg_Scroll_Box5,Pet Egg Box 5,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll_Box5); },{},{} -12932,Pet_Egg_Scroll3,Episode 13.2 Key Package,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll3); },{},{} -12933,Pet_Egg_Scroll4,Summer Hat Pack,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll4); },{},{} -12934,Pet_Egg_Scroll5,Pet Egg Scroll5,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll5); },{},{} -12935,Infiltrator_Box,Infiltrator Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Infiltrator_Box); },{},{} -12936,Muramasa_Box,Muramasa Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Muramasa_Box); },{},{} -12937,Excalibur_Box,Excalibur Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Excalibur_Box); },{},{} -12938,Combat_Knife_Box,Combat Knife Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Combat_Knife_Box); },{},{} -12939,Counter_Dagger_Box,Dagger of Counter Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Counter_Dagger_Box); },{},{} -12940,Kaiser_Knuckle_Box,Kaiser Knuckle Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Kaiser_Knuckle_Box); },{},{} -12941,Pole_Axe_Box,Poll Axe Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pole_Axe_Box); },{},{} -12942,Mighty_Staff_Box,Mighty Staff Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Mighty_Staff_Box); },{},{} -12943,Right_Epsilon_Box,Light Epsilon Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Right_Epsilon_Box); },{},{} -12944,Balistar_Box,Ballista Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Balistar_Box); },{},{} -12945,Diary_Of_Great_Sage_Box,Sage's Diary Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Diary_Of_Great_Sage_Box); },{},{} -12946,Asura_Box,Asura Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Asura_Box); },{},{} -12947,Apple_Of_Archer_Box,Apple of Archer Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Apple_Of_Archer_Box); },{},{} -12948,Bunny_Band_Box,Bunny Band Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Bunny_Band_Box); },{},{} -12949,Sahkkat_Box,Sakkat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Sahkkat_Box); },{},{} -12950,Lord_Circlet_Box,Grand Circlet Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Lord_Circlet_Box); },{},{} -12951,Elven_Ears_Box,Elven Ears Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Elven_Ears_Box); },{},{} -12952,Steel_Flower_Box,Steel Flower Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Steel_Flower_Box); },{},{} -12953,Critical_Ring_Box,Critical Ring Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Critical_Ring_Box); },{},{} -12954,Earring_Box,Earring Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Earring_Box); },{},{} -12955,Ring_Box,Ring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Ring_Box); },{},{} -12956,Necklace_Box,Necklace Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Necklace_Box); },{},{} -12957,Glove_Box,Glove Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Glove_Box); },{},{} -12958,Brooch_Box,Brooch Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Brooch_Box); },{},{} -12959,Rosary_Box,Rosary Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Rosary_Box); },{},{} -12960,Safety_Ring_Box,Safety Ring Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Safety_Ring_Box); },{},{} -12961,Vesper_Core01_Box,Vesper Core 01 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Vesper_Core01_Box); },{},{} -12962,Vesper_Core02_Box,Vesper Core 02 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Vesper_Core02_Box); },{},{} -12963,Vesper_Core03_Box,Vesper Core 03 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Vesper_Core03_Box); },{},{} -12964,Vesper_Core04_Box,Vesper Core 04 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Vesper_Core04_Box); },{},{} -12965,Emergency_Box1,Emergency Level 1 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12968,1; },{},{} -12966,Emergency_Box2,Emergency Level 2 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12969,1; },{},{} -12967,Emergency_Box3,Emergency Level 3 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12970,1; },{},{} -12968,Emergency_Scroll1,Emergency Level 1 Scroll,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ unitskilluseid getcharid(3),"GD_ITEMEMERGENCYCALL",1; },{},{} -12969,Emergency_Scroll2,Emergency Level 2 Scroll,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ unitskilluseid getcharid(3),"GD_ITEMEMERGENCYCALL",2; },{},{} -12970,Emergency_Scroll3,Emergency Level 3 Scroll,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ unitskilluseid getcharid(3),"GD_ITEMEMERGENCYCALL",3; },{},{} -12971,Teleport_Box1,Teleport Scroll Box 1,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12977,10; },{},{} -12972,Teleport_Box2,Teleport Scroll Box 2,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12978,10; },{},{} -12973,Teleport_Box3,Teleport Scroll Box 3,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12979,10; },{},{} -12974,Teleport_Box4,Teleport Scroll Box 4,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12980,10; },{},{} -12975,Teleport_Box5,Teleport Scroll Box 5,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12981,10; },{},{} -12976,Teleport_Box6,Teleport Scroll Box 6,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12982,10; },{},{} -12977,Teleport_Scroll1,Teleport Scroll 1,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashTele",1; },{},{} -12978,Teleport_Scroll2,Teleport Scroll 2,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashTele",2; },{},{} -12979,Teleport_Scroll3,Teleport Scroll 3,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashTele",3; },{},{} -12980,Teleport_Scroll4,Teleport Scroll 4,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashTele",4; },{},{} -12981,Teleport_Scroll5,Teleport Scroll 5,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashTele",5; },{},{} -12982,Teleport_Scroll6,Teleport Scroll 6,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashTele",6; },{},{} -12983,Pet_Egg_Scroll_Box6,Pet Egg Scroll Box 6,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll_Box6); },{},{} -12984,Pet_Egg_Scroll_Box7,Pet Egg Scroll Box 7,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll_Box7); },{},{} -12985,Pet_Egg_Scroll_Box8,Pet Egg Scroll Box 8,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll_Box8); },{},{} -12986,Pet_Egg_Scroll_Box9,Adventurer Pack Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll_Box9); },{},{} -12987,Pet_Egg_Scroll_Box10,Pet Egg Scroll Box 10,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll_Box10); },{},{} -12988,Pet_Egg_Scroll_Box11,Pet Egg Scroll Box 11,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll_Box11); },{},{} -12989,Pet_Egg_Scroll6,Pet Egg Scroll 6,18,,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll6); },{},{} -12990,Pet_Egg_Scroll7,Pet Egg Scroll 7,18,,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll7); },{},{} -12991,Pet_Egg_Scroll8,Party Hard Pack,18,,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll8); },{},{} -12992,Pet_Egg_Scroll9,Adventurer Pack,18,,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll9); },{},{} -12993,Pet_Egg_Scroll10,Pet Egg Scroll 10,18,,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll10); },{},{} -12994,Pet_Egg_Scroll11,Pet Egg Scroll 11,18,,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll11); },{},{} -12995,White_Herb_Box,White Herb Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 509,15; },{},{} -12996,Blue_Herb_Box,Blue Herb Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 510,15; },{},{} -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; },{},{} -13003,Coward,Cowardice Blade,5,52000,,700,80,,1,1,0x02021040,63,2,2,3,55,1,1,{ bonus bDef,5; },{},{} -13004,Coward_,Cowardice Blade,5,52000,,700,80,,1,2,0x02021040,63,2,2,3,55,1,1,{ bonus bDef,5; },{},{} -13005,Angelwing_Short_Sword,Angelic Wing Dagger,5,20,,600,120,,1,1,0x00000001,63,2,2,4,50,1,1,{},{},{} -13006,Khukri,Khukri,5,240000,,600,150,,1,0,0x02000000,63,2,2,3,65,1,1,{ bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Curse,1000; },{},{} -13007,Jitte,Jitte,5,20000,,400,70,,1,0,0x02000000,63,2,2,2,35,1,1,{ bonus bBreakWeaponRate,200; },{},{} -13008,Jitte_,Jitte,5,20000,,400,70,,1,1,0x02000000,63,2,2,2,35,1,1,{ bonus bBreakWeaponRate,200; },{},{} -13009,Kamaitachi,Kamaitachi,5,48000,,900,125,,2,0,0x02000000,63,2,2,4,70,1,1,{ bonus bAtkEle,Ele_Wind; bonus bCritical,3; bonus bAspdRate,3; },{},{} -13010,Asura,Asura,5,3000,,600,50:50,,1,2,0x02000000,63,2,2,1,12,1,1,{},{},{} -13011,Asura_,Asura,5,3000,,600,50:50,,1,3,0x02000000,63,2,2,1,12,1,1,{},{},{} -13012,Murasame,Murasame,5,20,,700,95,,1,1,0x02000000,63,2,2,2,24,1,1,{ bonus bAtkEle,Ele_Water; bonus2 bCriticalAddRace,RC_DemiHuman,10; bonus2 bCriticalAddRace,RC_Player_Human,10; },{},{} -13013,Murasame_,Murasame,5,20,,700,95,,1,2,0x02000000,63,2,2,2,24,1,1,{ bonus bAtkEle,Ele_Water; bonus2 bCriticalAddRace,RC_DemiHuman,10; bonus2 bCriticalAddRace,RC_Player_Human,10; },{},{} -13014,Hakujin,Hakujin,5,20,,800,120,,1,0,0x02000000,63,2,2,3,42,1,1,{ bonus bInt,2; bonus3 bAutoSpell,"AL_HEAL",1,10; },{},{} -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; },{},{} -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,0xFFFFFFFF,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_Human; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Demon,-10; bonus bMaxSPrate,10; bonus bSPDrainValue,3; /*Gold PC Room: bonus bBaseAtk,10; bonus bMatk,10;*/},{},{} -13022,Counter_Dagger_C,Dagger of Counter,5,1,,0,209,,1,0,0x00810204,63,2,2,4,1,0,1,{ bonus bCriticalRate,90; /*Gold PC Room: bonus bBaseAtk,10; bonus bMatk,10;*/ },{},{} -13023,Asura_C,Ashura,5,1,,0,120:98,,1,0,0x02000000,63,2,2,1,1,0,1,{ /*Gold PC Room: bonus bBaseAtk,10; bonus bMatk,10; */ },{},{} -13024,Sword_Breaker_C,Refined Swordbreaker,5,2,,0,105,,1,0,0x028F5EEE,63,2,2,4,0,0,1,{ bonus bBreakWeaponRate,500; },{},{} -13025,Mail_Breaker_C,Refined Mailbreaker,5,2,,0,105,,1,0,0x028F5EEE,63,2,2,4,0,0,1,{ bonus bBreakArmorRate,500; },{},{} -13026,Moonlight_Sword_C,Moonlight Dagger,5,2,,0,85,,1,0,0x028F5EEE,63,2,2,4,0,0,1,{ bonus bMaxSPrate,10; bonus bSPDrainValue,3; },{},{} -13027,Scalpel,Scalpel,5,20,,500,120,,1,3,0x028F5EEE,18,2,2,4,55,1,1,{ bonus2 bAddEff,Eff_Bleeding,500; },{},{} -13028,Tooth_Blade,Tooth Blade,5,20,,700,130,,1,1,0x028F5EEE,18,2,2,4,55,1,1,{ if(getrefine()>=9){ bonus3 bAutoSpell,"NPC_SLOWCAST",2,70; } else bonus3 bAutoSpell,"NPC_SLOWCAST",1,50; },{},{} -13029,Prinsence_Knife,Prinsense Knife,5,20,,0,120,,1,0,0x028F5EEE,63,2,2,1,0,0,1,{ bonus2 bAddClass,Class_All,50; },{},{} -13030,Dragon_Killer_,Dragon Killer,5,20,,900,110,,1,2,0x3E9F7EEF,63,2,2,4,60,1,1,{ bonus bIgnoreDefRace,RC_Dragon; bonus2 bExpAddRace,RC_Dragon,10; },{},{} -13031,Sword_Breaker_,Swordbreaker,5,20,,1000,70,,1,3,0x028F5EEE,63,2,2,4,36,1,1,{ bonus bBreakWeaponRate,500; },{},{} -13032,Mail_Breaker_,Mailbreaker,5,20,,1000,70,,1,3,0x028F5EEE,63,2,2,4,36,1,1,{ bonus bBreakArmorRate,500; },{},{} -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,,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_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(Class==Job_Ninja||Class==Job_Rogue||Class==Job_Stalker) bonus bMatk,90; },{},{} -13037,BF_Dagger2,Valorous Assassin's Damascus,5,20,,0,120,,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_Human,75; bonus bUnbreakableWeapon; autobonus "{ bonus bDefRatioAtkClass,Class_All; }",10,6000,BF_WEAPON,"{ specialeffect2 EF_HASTEUP; }"; if(Class==Job_Ninja||Class==Job_Rogue||Class==Job_Stalker) bonus bMatk,90; },{},{} -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_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus3 bAutoSpell,"PR_LEXDIVINA",1,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,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 bFlee2,20; bonus bLuk,5; },{},{} -13044,House_Auger_I,Ice Pick,5,0,,0,105,,1,0,0x028F5EEE,63,2,2,4,0,0,1,{ bonus bDefRatioAtkClass,Class_All; autobonus "{ bonus bFlee,20; }",10,10000,BF_WEAPON|BF_MISC; },{},{} -13045,Kamaitachi_I,Kamaitachi,5,0,,0,155,,2,0,0x02000000,63,2,2,4,0,0,1,{ bonus bUnbreakableWeapon; bonus bCritical,10; bonus bAspdRate,5; bonus bAtkEle,Ele_Wind; },{},{} -13046,Krieg,Krierg,5,20,,500,110,,1,3,0x00021040,18,2,2,2,50,1,1,{ bonus3 bAddEffOnSkill,"RG_BACKSTAP",Eff_Bleeding,1000; bonus2 bSkillAtk,"RG_BACKSTAP",15; },{},{} -13047,Weihna,Weihna,5,20,,500,135,,1,2,0x00021040,18,2,2,3,50,1,1,{ bonus3 bAddEffOnSkill,"RG_RAID",Eff_Poison,100; autobonus "{ bonus2 bAddClass,Class_All,10; }",5,5000,BF_WEAPON|BF_SHORT,"{ specialeffect2 EF_POTION_BERSERK; }"; },{},{} -13048,Damascus_C,Damascus,5,0,,0,153,,1,0,0x028F5EEE,63,2,2,3,1,0,1,{ bonus2 bAddSize,Size_All,40; },{},{} -13049,Lacma,Lacma,5,20,,650,45,,1,1,0x3E9F7EEF,63,2,2,3,1,1,1,{ .@r = getrefine(); if (.@r>=3) { bonus bBaseAtk,40; bonus bMatk,40; } if(.@r>=6){ bonus2 bAddSize,Size_Medium,8; bonus2 bMagicAddSize,Size_Medium,8; autobonus "{ bonus bNoSizeFix; }",10,5000; } if(.@r>=9){ bonus2 bAddSize,Size_Medium,20; bonus2 bMagicAddSize,Size_Medium,20; } if(.@r>12){ bonus bNoSizeFix; } },{},{} -13050,P_Dagger1,Eden Dagger I,5,0,,0,124:60,,1,0,0x3E9F7EEF,63,2,2,2,26,0,1,{},{},{} -13051,P_Dagger2,Eden Dagger II,5,0,,0,158:70,,1,0,0x3E9F7EEF,63,2,2,2,40,0,1,{},{},{} -13052,Tourist_Dagger,Tourist Dagger,5,0,,500,51,,1,0,0x3E9F7EEF,63,2,2,1,1,0,1,{ bonus bAgi,2; },{},{} -13053,F_Moonlight_Sword_C,Moonlight Sword,5,2,,0,85,,1,0,0x028F5EEE,63,2,2,4,0,0,1,{ bonus bSPDrainValue,3; bonus bMaxSPrate,10; },{},{} -13054,F_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_Human; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus bSPDrainValue,3; bonus bMaxSPrate,10; },{},{} -13055,F_Asura_C,Asura,5,1,,0,120,,1,0,0x02000000,63,2,2,1,1,0,1,{ bonus bMatkRate,15; },{},{} -13056,F_Counter_Dagger_C,Counter Dagger,5,1,,0,209,,1,0,0x00810204,63,2,2,4,1,0,1,{ bonus bCriticalRate,90; },{},{} -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,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; if(.@r>=6){ bonus2 bSkillAtk,"SC_FATALMENACE",.@r*2; bonus bMatkRate,(.@r*3); } },{},{} -13062,Ancient_Dagger,Ancient Dagger,5,20,,600,107:120,,0,0,0x028F5EEE,18,2,2,4,120,1,1,{ bonus bMaxSP,100; bonus bSPrecovRate,5; bonus2 bAddEff2,Eff_Curse,20; bonus3 bAddEff,Eff_Curse,20,ATF_SELF; },{},{} -13063,Adventure_Knife,Adventure Knife,5,0,,0,60,,1,0,0x02021040,63,2,2,1,1,0,1,{ bonus bUnbreakableWeapon; },{},{} -13064,Academy_Knife,Academy Knife,5,0,,700,110,,1,1,0x02021040,63,2,2,1,1,1,1,{ bonus bUnbreakableWeapon; },{},{} -13065,Academy_Eti_Knife,Academy Eti Knife,5,0,,1200,120,,1,1,0x00000001,63,2,2,1,1,1,1,{ bonus bUnbreakableWeapon; },{},{} -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 bAgi,3; bonus bUnbreakableWeapon; 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); },{},{} -13072,Velum_Damascus,Vellum Damascus,5,20,,1000,180,,1,0,0x3E9F7EEF,63,2,2,4,95,1,1,{ bonus4 bSetDefRace,RC_Player_Human,10000,5000,1; bonus4 bSetMDefRace,RC_Player_Human,10000,5000,1; bonus bAspdRate,getrefine(); },{},{} -13073,Counter_Dagger_,Counter Dagger,5,120000,,550,140,,1,1,0x00810204,63,2,2,4,55,1,1,{ bonus bCritical,90; },{},{} -13074,Ninja_Cutter,Ninja Sword Prototype,5,0,,0,0,,1,0,0x02000000,63,2,2,4,99,1,1,{},{},{} -13075,Kurenai,Kurenai,5,5000,,700,130,,1,0,0x02000000,63,2,2,3,99,1,1,{ bonus bInt,3; },{},{} -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,0x02000000,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,0x02821269,63,2,2,3,1,1,1,{ .@r = getrefine(); bonus bBaseAtk,(.@r*5); bonus bMatk,(.@r*2); .@i = min(BaseLevel/10,12); 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,{ .@r = getrefine(); bonus bHit,.@r; },{},{} -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_Human,40; bonus2 bAddEff,Eff_Silence,3000; },{},{} -13085,Volcano_Knife,Volcano Knife,5,10,,200,80,,,0,0x280002E,63,2,2,4,60,,1,{ bonus bAtkEle,Ele_Fire; bonus bAgi,2; bonus bMaxHPrate,-2; bonus2 bSubEle,Ele_Fire,2; bonus2 bSubEle,Ele_Water,-5; .@r = getrefine(); if(.@r>=7){ bonus bMaxHPrate,.@r-6; bonus2 bSubEle,Ele_Fire,3; } },{},{} -13086,Goldsmithing_Dagger,Goldsmithing Dagger,5,20,,500,35:25,,1,0,0x028756E6,63,2,2,1,1,1,1,{},{},{} -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,40; if (.@r >= 9) bonus bMatk,50; },{},{} -13089,FaceWorm_Leg,Faceworm Leg,5,20,,500,110:50,,1,1,0x028F5EEF,63,2,2,3,24,1,1,{ bonus bAtkEle,Ele_Poison; autobonus "{}",30,5000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; active_transform 2528,5000; }"; },{},{} -13090,FaceWormQueen_Leg,Faceworm Queen Leg,5,20,,500,180:120,,1,2,0x028F5EEF,63,2,2,4,100,1,1,{ bonus bInt,3; autobonus "{ bonus3 bAutoSpell,\"NPC_EARTHQUAKE\",1,200; }",8,5000,BF_NORMAL,"{ specialeffect2 EF_POTION_BERSERK; active_transform 2529,5000; }"; },{},{} -13092,RWC_Memory_Knife,RWC Memory Knife,5,20,,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,Thanos_Dagger,Thanos Dagger,5,10,,800,100:130,,1,1,0x000E5CEA,56,2,2,4,120,1,1,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000; },{},{ heal -1000,0; } -13094,Devil_Pierced_Dagger,Evil Slayer Stabber Dagger,5,0,,900,120,,1,1,0x3E9F7EEF,63,2,2,3,100,1,1,{ bonus2 bAddRace,RC_Undead,10; bonus2 bAddRace,RC_Demon,10; .@r = getrefine(); if(.@r>=9) { .@dmg = 5; if(.@r>=12) { .@dmg += 7; } bonus2 bAddClass,Class_All,.@dmg; } },{},{} -13096,Half_BF_Dagger2,Half BF Dagger2,5,20,,0,120,,1,0,0x3E9F7EEF,63,2,2,3,1,1,1,{ bonus bStr,1; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon; 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,Ru_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,Ru_Blue_Ashura,Blue Ashura,5,10,,1000,150:150,,1,1,0x02000000,7,2,2,3,100,1,1,{},{},{} -13099,Ru_Blue_Knife,Blue Knife,5,10,,500,160,,1,1,0x00010000,56,2,2,3,100,1,1,{ bonus bVit,5; bonus bInt,5; },{},{} -//=================================================================== -// Guns -//=================================================================== -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; },{},{} -13103,Crimson_Bolt_,Crimson Bolt,5,20000,,450,45,,7,2,0x41000000,63,2,34,2,35,1,17,{ bonus bHit,-10; },{},{} -13104,The_Garrison,Garrison,5,48000,,500,70,,7,1,0x41000000,63,2,34,2,55,1,17,{ bonus bHit,-10; },{},{} -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_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; autobonus "{ bonus bAspdRate,100; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; bonus bUnbreakableWeapon; },{},{} -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_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5){ bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,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_Human,40; bonus2 bAddEff,Eff_Curse,3000; },{},{} -13118,Tiny_Flame,Fading Flame,5,1,,100,0,,7,0,0x41000000,63,2,34,1,1,1,17,{},{},{} -13119,Freedom_Flame,Freedom Flame,5,1,,100,100,,7,2,0x41000000,63,2,34,3,99,1,17,{},{},{} -13120,H_FEATHER_H_FIRE,Heaven's Feather & Hell's Fire,5,1200000,,800,150,,9,1,0x41000000,63,2,34,3,99,1,17,{ bonus2 bSkillAtk,"GS_DESPERADO",20; bonus2 bAddEff,Eff_Burning,200; },{},{} -13122,ALTAIR_ARES,Altair & Ares,5,1450000,,1000,200,,9,0,0x40000000,63,2,34,3,140,1,17,{ bonus bHit,5; bonus bAspdRate,10; bonus bLongAtkRate,30; },{},{} -13124,ALTAIR_ARES_,Altair & Ares,5,1450000,,1000,200,,9,1,0x40000000,63,2,34,3,140,1,17,{ bonus bHit,5; bonus bAspdRate,10; bonus bLongAtkRate,30; },{},{} -13125,Metal_Revolver,Metal Revolver,5,0,,0,30,,7,1,0x41000000,63,2,34,3,1,1,17,{ .@r = getrefine(); bonus bBaseAtk,3*.@r; bonus bLongAtkRate,1; if (BaseLevel >= 20) { bonus bBaseAtk,3*(min(BaseLevel,120)/10); } },{},{} -13126,Infinity_Pistol,Infinity Pistol,5,10,,500,175,,7,1,0x40000000,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,(.@r<=15?pow(.@r,2):225); if(BaseLevel>=70){ bonus bBaseAtk,(BaseLevel/10)*5; } },{},{} -13128,Revolver_of_Vicious_Mind,Revolver of Vicious Mind,5,20,,1500,150,,7,1,0x41000000,63,2,34,4,160,1,17,{ bonus bAtk,pow(min(getrefine(),15),2); },{},{} -13129,Unity_Revolver,Unity Revolver,5,20,,500,95,,7,1,0x41000000,63,2,34,3,1,1,17,{ bonus bBaseAtk,pow(getrefine(),2)*125/100; },{},{} -13138,Dark_Rose,Dark Rose,5,20,,1800,150,,7,2,0x40000000,63,2,34,3,120,1,17,{ .@r = getrefine(); bonus bAspdRate,10; if (.@r >= 7) { bonus bLongAtkRate,15; if (.@r >= 9) { bonus bAspd,1; } } },{},{} -13146,Calf_Deathadder,Calf Deathadder,5,0,0,1400,170,,7,2,0x40000000,63,2,34,4,150,1,17,{ .@r = getrefine(); bonus bAspdRate,10; bonus bLongAtkRate,(.@r/2)*5 + (.@r > 11 ? 5 : 0); if(.@r > 6){ bonus bAspdRate,5; } if(.@r > 8){ bonus2 bSkillAtk,"RL_FIREDANCE",25; } },{},{} -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; },{},{} -13153,Dusk,Dusk,5,23500,,750,150,,9,1,0x41000000,63,2,34,2,56,1,18,{ bonus bHit,10; bonus bCritical,10; },{},{} -13154,Rolling_Stone,Rolling Stone,5,12000,,900,135,,9,1,0x41000000,63,2,34,1,14,1,20,{ bonus bSplashRange,1; },{},{} -13155,Black_Rose,Black Rose,5,32000,,900,180,,9,1,0x41000000,63,2,34,2,35,1,20,{ bonus bSplashRange,1; },{},{} -13156,Gate_Keeper,Gate Keeper,5,56000,,1000,210,,9,0,0x41000000,63,2,34,2,24,1,20,{ bonus bSplashRange,1; bonus3 bAutoSpell,"GS_SPREADATTACK",6,50; },{},{} -13157,Drifter,Drifter,5,80000,,2300,50,,9,1,0x41000000,63,2,34,2,55,1,19,{},{},{} -13158,Butcher,Butcher,5,130000,,2500,75,,9,0,0x41000000,63,2,34,3,68,1,19,{ bonus2 bCriticalAddRace,RC_Brute,10; bonus2 bCriticalAddRace,RC_Player_Doram,10; },{},{} -13159,Butcher_,Butcher,5,130000,,2500,75,,9,1,0x41000000,63,2,34,3,68,1,19,{ bonus2 bCriticalAddRace,RC_Brute,10; bonus2 bCriticalAddRace,RC_Player_Doram,10; },{},{} -13160,Destroyer,Destroyer,5,110000,,1200,220,,9,0,0x41000000,63,2,34,2,52,1,21,{ bonus bBreakArmorRate,200; },{},{} -13161,Destroyer_,Destroyer,5,110000,,1200,220,,9,1,0x41000000,63,2,34,2,52,1,21,{ bonus bBreakArmorRate,200; },{},{} -13162,Inferno,Inferno,5,230000,,1250,280,,9,1,0x41000000,63,2,34,2,65,1,21,{},{},{} -13163,Long_Barrel,Long Barrel,5,40000,,1000,150,,9,0,0x41000000,63,2,34,3,70,1,18,{ bonus bHit,10; bonus bCritical,20; bonus bAspdRate,-3; bonus3 bAutoSpell,"GS_TRACKING",5,20; },{},{} -13164,Long_Barrel_,Long Barrel,5,40000,,1000,150,,9,1,0x41000000,63,2,34,3,70,1,18,{ bonus bHit,10; bonus bCritical,20; bonus bAspdRate,-3; bonus3 bAutoSpell,"GS_TRACKING",5,20; },{},{} -13165,Jungle_Carbine,Jungle Carbine,5,56000,,700,170,,9,0,0x41000000,63,2,34,3,70,1,18,{ bonus bHit,10; bonus bCritical,4; bonus bAspdRate,10; bonus bHit,-readparam(bDex)/3; },{},{} -13166,Jungle_Carbine_,Jungle Carbine,5,56000,,700,170,,9,1,0x41000000,63,2,34,3,70,1,18,{ bonus bHit,10; bonus bCritical,4; bonus bAspdRate,10; bonus bHit,-readparam(bDex)/3; },{},{} -13167,Gate_KeeperDD,Gate Keeper-DD,5,72000,,1300,200,,9,0,0x41000000,63,2,34,4,70,1,20,{ bonus bSplashRange,1; bonus3 bAutoSpell,"GS_SPREADATTACK",6,50; bonus bDef,getrefine(); bonus bDex,1; },{},{} -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_Human,75; bonus2 bVariableCastrate,"GS_TRACKING",-25; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; },{},{} -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_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; autobonus "{ bonus bBaseAtk,80; bonus2 bHPLossRate,120,1000; }",10,6000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; bonus bUnbreakableWeapon; },{},{} -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_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; autobonus "{ bonus bBaseAtk,80; bonus2 bHPLossRate,100,1000; }",30,6000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; bonus bUnbreakableWeapon; },{},{} -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_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; autobonus "{ bonus bBaseAtk,300; bonus2 bHPLossRate,120,1000; }",30,9000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; bonus bUnbreakableWeapon; },{},{} -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_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,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_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(.@r,14)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(.@r,14)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,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_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bSplashRange,1; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(.@r,14)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(.@r,14)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,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_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(.@r,14)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(.@r,14)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,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,1,1,0,18,{},{},{} -13181,Novice_Shotgun,Novice Shotgun,5,0,,1000,80,,9,0,0x41000000,1,2,34,1,1,0,20,{},{},{} -13182,Novice_Gatling,Novice Gatling,5,0,,1500,40,,9,0,0x41000000,1,2,34,1,1,0,19,{},{},{} -13183,Novice_Grenade_Launcher,Novice Grenade Launcher,5,0,,1500,40,,9,0,0x41000000,1,2,34,1,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_Human,40; bonus2 bAddEff,Eff_Silence,1000; },{},{} -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_Human,40; bonus2 bAddEff,Eff_Stun,1000; },{},{} -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_Human,40; bonus2 bAddEff,Eff_Poison,1000; },{},{} -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_Human,40; bonus2 bAddEff,Eff_Blind,1000; },{},{} -13189,COLORSCOPE,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,30,1; },{},{} -13192,DEATHFIRE,Death Fire,5,1250000,,2000,400,,9,1,0x40000000,63,2,34,3,108,1,20,{ bonus bSplashRange,1; bonus bAtkRange,5; bonus bHit,-50; bonus bAspdRate,-10; },{},{} -13193,R_THUNDER,Rolling Thunder,5,1350000,,1800,280,,9,1,0x40000000,63,2,34,3,120,1,20,{ bonus bSplashRange,1; bonus bHit,-10; bonus bAspdRate,-10; bonus3 bAutoSpell,"MG_THUNDERSTORM",5,30; },{},{} -13194,P_BREAKER,Peace Breaker,5,1950000,,1400,250,,9,0,0x41000000,63,2,34,3,140,1,20,{ bonus bHit,-25; bonus bAspdRate,25; },{},{} -13195,RAG203,RAG203,5,1800000,,1300,260,,9,0,0x40000000,63,2,34,3,140,1,18,{ bonus bHit,10; bonus bCriticalRate,15; bonus4 bAutoSpell,"AL_DECAGI",1,30,1; },{},{} -13196,P_BREAKER_,Peace Breaker,5,1950000,,1400,250,,9,1,0x41000000,63,2,34,3,140,1,20,{ bonus bHit,-25; bonus bAspdRate,25; },{},{} -13197,MINIMAY,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,4,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,4,140,1,19,{ bonus bHit,-25; bonus bCritical,10; bonus bLongAtkRate,20; },{},{} -//=================================================================== -// Bullets -//=================================================================== -13200,Bullet,Bullet,10,1,,1,25,,,,0x41000000,63,2,32768,,1,,3,{},{},{} -13201,Silver_Bullet,Surplus Silver Bullet,10,15,,2,15,,,,0x41000000,63,2,32768,,1,,3,{ bonus bAtkEle,Ele_Holy; },{},{} -13202,Shell_Of_Blood,Surplus Bloody Shell,10,30,,2,30,,,,0x41000000,63,2,32768,,1,,3,{ bonus2 bAddEff,Eff_Bleeding,100; },{},{} -13203,Flare_Sphere,Surplus Flare Sphere,10,80,,5,50,,,,,,,32768,,,,5,{ bonus bAtkEle,Ele_Fire; },{},{} -13204,Lighting_Sphere,Surplus Lightning Sphere,10,80,,5,50,,,,,,,32768,,,,5,{ bonus bAtkEle,Ele_Wind; },{},{} -13205,Poison_Sphere,Surplus Poison Sphere,10,80,,5,50,,,,,,,32768,,,,5,{ bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,500; },{},{} -13206,Blind_Sphere,Surplus Blind Sphere,10,80,,5,50,,,,,,,32768,,,,5,{ bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Blind,500; },{},{} -13207,Freezing_Sphere,Surplus Freezing Sphere,10,80,,5,50,,,,,,,32768,,,,5,{ bonus bAtkEle,Ele_Water; },{},{} -13208,Gong_Bug,Sow Bug,10,0,,5,50,,,,0x41000000,63,2,32768,,50,,3,{ bonus2 bAddEff,Eff_Stun,1000; },{},{} -13210,Slug_Bullet_1,Slug Ammunition L,10,250,,250,30,,,,,,,32768,,,,3,{},{},{} -13211,Slug_Bullet_2,Slug Ammunition M,10,500,,500,30,,,,,,,32768,,,,3,{},{},{} -13212,Slug_Bullet_3,Slug Ammunition H,10,750,,750,30,,,,,,,32768,,,,3,{},{},{} -13213,Slug_Bullet_4,Slug Ammunition SH,10,1000,,1000,30,,,,,,,32768,,,,3,{},{},{} -13214,Slug_Bullet_5,Slug Ammunition XH,10,1200,,1200,30,,,,,,,32768,,,,3,{},{},{} -13215,AP_Ammo,Armor-Piercing Bullet,10,15,,2,50,,,0,0x41000000,63,2,32768,,100,,3,{ bonus bAtkEle,Ele_Neutral; },{},{} -13216,Blaze_Bullet,Blazing Bullet,10,10,,2,40,,,,0x41000000,63,2,32768,,100,,3,{ bonus bAtkEle,Ele_Fire; },{},{} -13217,Freezing_Bullet,Freezing Bullet,10,10,,2,40,,,,0x41000000,63,2,32768,,100,,3,{ bonus bAtkEle,Ele_Water; },{},{} -13218,Electric_Shock_Bullet,Lightning Bullet,10,10,,2,40,,,,0x41000000,63,2,32768,,100,,3,{ bonus bAtkEle,Ele_Wind; },{},{} -13219,Magical_Stone_Bullet,Magic Stone Bullet,10,10,,2,40,,,,0x41000000,63,2,32768,,100,,3,{ bonus bAtkEle,Ele_Earth; },{},{} -13220,Sanctified_Bullet,Purifying Bullet,10,10,,2,40,,,,0x41000000,63,2,32768,,100,,3,{ bonus bAtkEle,Ele_Holy; },{},{} -13221,Silver_Bullet_,Silver Bullet,10,5,,2,15,,,,0x41000000,63,2,32768,,1,,3,{ bonus bAtkEle,Ele_Holy; },{},{} -13222,Shell_Of_Blood_,Bloody Shell,10,10,,2,30,,,,0x41000000,63,2,32768,,1,,3,{ bonus2 bAddEff,Eff_Bleeding,100; },{},{} -13223,Flare_Sphere_,Flare Sphere,10,15,,5,50,,,,,,,32768,,,,5,{ bonus bAtkEle,Ele_Fire; },{},{} -13224,Lighting_Sphere_,Lightning Sphere,10,15,,5,50,,,,,,,32768,,,,5,{ bonus bAtkEle,Ele_Wind; },{},{} -13225,Poison_Sphere_,Poison Sphere,10,15,,5,50,,,,,,,32768,,,,5,{ bonus bAtkEle,Ele_Poison; },{},{} -13226,Blind_Sphere_,Blind Sphere,10,15,,5,50,,,,,,,32768,,,,5,{ bonus bAtkEle,Ele_Dark; },{},{} -13227,Freezing_Sphere_,Freezing Sphere,10,15,,5,50,,,,,,,32768,,,,5,{ bonus bAtkEle,Ele_Water; },{},{} -13228,Flare_Bullet,Flare Bullet,10,10,,2,20,,,,0x41000000,63,2,32768,,1,,3,{ bonus bAtkEle,Ele_Fire; },{},{} -13229,Lightning_Bullet,Lightning Bullet,10,10,,2,20,,,,0x41000000,63,2,32768,,1,,3,{ bonus bAtkEle,Ele_Wind; },{},{} -13230,Ice_Bullet,Ice Bullet,10,10,,2,20,,,,0x41000000,63,2,32768,,1,,3,{ bonus bAtkEle,Ele_Water; },{},{} -13231,Poison_Bullet,Poison Bullet,10,10,,2,20,,,,0x41000000,63,2,32768,,1,,3,{ bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,500; },{},{} -13232,Blind_Bullet,Blind Bullet,10,10,,2,20,,,,0x41000000,63,2,32768,,1,,3,{ bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Blind,500; },{},{} -//=================================================================== -// Shurikens & Kunais -//=================================================================== -13250,Shuriken,Shuriken,10,4,,1,10,,,,0x02000000,63,2,32768,,1,,6,{},{},{} -13251,Nimbus_Shuriken,Nimbus Shuriken,10,10,,1,30,,,,0x02000000,63,2,32768,,20,,6,{},{},{} -13252,Flash_Shuriken,Flash Shuriken,10,20,,1,45,,,,0x02000000,63,2,32768,,40,,6,{},{},{} -13253,Sharp_Leaf_Shuriken,Sharp Leaf Shuriken,10,40,,1,70,,,,0x02000000,63,2,32768,,60,,6,{},{},{} -13254,Thorn_Needle_Shuriken,Thorn Needle Shuriken,10,100,,1,100,,,,0x02000000,63,2,32768,,80,,6,{},{},{} -13255,Kunai_Of_Icicle,Icicle Kunai,10,10,,1,30,,,,0x02000000,63,2,32768,,1,,7,{ bonus bAtkEle,Ele_Water; },{},{} -13256,Kunai_Of_Black_Soil,Black Earth Kunai,10,10,,1,30,,,,0x02000000,63,2,32768,,1,,7,{ bonus bAtkEle,Ele_Earth; },{},{} -13257,Kunai_Of_Furious_Wind,High Wind Kunai,10,10,,1,30,,,,0x02000000,63,2,32768,,1,,7,{ bonus bAtkEle,Ele_Wind; },{},{} -13258,Kunai_Of_Fierce_Flame,Heat Wave Kunai,10,10,,1,30,,,,0x02000000,63,2,32768,,1,,7,{ bonus bAtkEle,Ele_Fire; },{},{} -13259,Kunai_Of_Deadly_Poison,Fell Poison Kunai,10,10,,1,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,{},{},{} -13263,Pineapple_Bomb,Pineapple Bomb,10,100,,1,0,,,,0x00040000,56,2,32768,,99,,9,{},{},{} -13264,Banana_Bomb,Banana Bomb,10,100,,1,0,,,,0x00040000,56,2,32768,,99,,9,{},{},{} -13265,Black_Lump,Black Lump,10,100,,50,0,,,,0x00040000,56,2,32768,,99,,9,{},{},{} -13266,Black_Hard_Lump,Hard Black Lump,10,100,,50,0,,,,0x00040000,56,2,32768,,99,,9,{},{},{} -13267,Very_Hard_Lump,Extremely Hard Black Lump,10,100,,50,0,,,,0x00040000,56,2,32768,,99,,9,{},{},{} -13268,Mysterious_Powder,Mysterious Powder,10,100,,10,0,,,,0x00040000,56,2,32768,,99,,9,{ sc_start SC_MYSTERIOUS_POWDER,10000,2; },{},{} -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; 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,{ /* Item bonus in source because of BaseLevel check */ },{},{} -13276,HP_Inc_PotM_To_Throw,Throwing Increase HP Potion (Medium),10,100,,40,0,,,,0x00040000,56,2,32768,,99,,9,{ /* Item bonus in source because of BaseLevel check */ },{},{} -13277,HP_Inc_PotL_To_Throw,Throwing Increase HP Potion (Large),10,100,,80,0,,,,0x00040000,56,2,32768,,99,,9,{ /* Item bonus in source because of BaseLevel check */ },{},{} -13278,SP_Inc_PotS_To_Throw,Throwing Increase SP Potion (Small),10,100,,20,0,,,,0x00040000,56,2,32768,,99,,9,{ /* Item bonus in source because of BaseLevel check */ },{},{} -13279,SP_Inc_PotM_To_Throw,Throwing Increase SP Potion (Medium),10,100,,40,0,,,,0x00040000,56,2,32768,,99,,9,{ /* Item bonus in source because of BaseLevel check */ },{},{} -13280,SP_Inc_PotL_To_Throw,Throwing Increase SP Potion (Large),10,100,,80,0,,,,0x00040000,56,2,32768,,99,,9,{ /* Item bonus in source because of BaseLevel check */ },{},{} -13281,En_White_PotZ_To_Throw,Throwing Concentrated White Potion Z,10,100,,70,0,,,,0x00040000,56,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,56,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,56,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,56,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,56,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,56,2,32768,,99,,9,{ sc_start SC_MINOR_BBQ,300000,20; },{},{} -13287,Siroma_Icetea_To_Throw,Throwing Siroma Iced Tea,10,100,,50,0,,,,0x00040000,56,2,32768,,99,,9,{ sc_start SC_SIROMA_ICE_TEA,300000,20; },{},{} -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,,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,,7,{ bonus bAtkEle,Ele_Neutral; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,3; },{},{} -13294,Explosive_Kunai,Explosive Kunai,10,100,,1,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 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,{ 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,{ 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 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,{ bonus2 bSkillAtk,"NJ_HUUMA",30; bonus bNoCastCancel; },{},{} -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_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; },{},{} -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_Human,95; autobonus "{ bonus2 bSkillAtk,\"NJ_HUUMA\",100; bonus2 bSkillAtk,\"NJ_ISSEN\",100; }",50,10000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; bonus bUnbreakableWeapon; },{},{} -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_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; autobonus "{ bonus2 bSkillAtk,\"NJ_HUUMA\",100; bonus2 bSkillAtk,\"NJ_ISSEN\",100; }",50,10000; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-3,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-3,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,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 bAtkEle,Ele_Fire; bonus3 bAutoSpell,"MG_FIREBALL",5,30; 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 bAddEff,Eff_Bleeding,100; bonus2 bAddSize,Size_All,80; },{},{} -13310,P_Huuma_Shuriken1,P.Huuma Suriken I,5,0,,0,150:50,,1,0,0x02000000,63,2,34,3,60,0,22,{},{},{} -13311,Huuma_Shadow,Sword Huuma Shuriken,5,5000,,1500,170,,1,0,0x02000000,63,2,34,3,99,1,22,{ bonus bStr,3; },{},{} -13312,Huuma_Job_Test,Prototype Huuma Shuriken,5,0,,3000,0,,1,0,0x02000000,63,2,34,4,99,1,22,{},{},{} -13313,Huuma_Swirling_Petal,Flower Huuma Shuriken,5,100000,,1500,150:50,,1,2,0x02000000,63,2,34,3,110,1,22,{ bonus2 bSkillAtk,"KO_HUUMARANKA",20; },{},{} -13314,Huuma_Fluttering_Snow,Wave Huuma Shuriken,5,100000,,1500,200:50,,1,0,0x02000000,63,2,34,4,110,1,22,{ bonus bAtkEle,Ele_Water; bonus3 bAutoSpell,"NJ_HYOUSYOURAKU",max(getskilllv("NJ_HYOUSYOURAKU"),1),30; },{},{} -13315,Huuma_Thunderstorm,Thunderstorm Huuma Shuriken,5,100000,,1500,200:50,,1,0,0x02000000,63,2,34,4,110,1,22,{ bonus bAtkEle,Ele_Wind; bonus3 bAutoSpell,"NJ_RAIGEKISAI",max(getskilllv("NJ_RAIGEKISAI"),1),30; bonus2 bAddEff,Eff_Blind,500; },{},{} -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); bonus bUnbreakableWeapon; },{},{} -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_Human,40; bonus2 bAddEff,Eff_Bleeding,1000; bonus bUnbreakableWeapon; },{},{} -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_Human,40; autobonus "{ bonus2 bSkillAtk,\"NJ_HUUMA\",100; bonus2 bSkillAtk,\"NJ_ISSEN\",100; }",50,10000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; bonus bUnbreakableWeapon; },{},{} -13322,Huuma_Metal_Shuriken,Huuma Metal Shuriken,5,20,,0,50,,1,1,0x02000000,63,2,34,3,1,1,22,{ bonus bUnbreakableWeapon; .@r = getrefine(); bonus bBaseAtk,.@r*5; bonus bMatk,.@r*3; bonus bLongAtkRate,.@r; if (BaseLevel >= 20 && BaseLevel <= 120) bonus bBaseAtk,3*.@r/10; },{},{} -13323,Infinity_Shuriken,Infinity Shuriken,5,0,,500,150:40,,1,1,0x20000000,63,2,34,4,100,1,22,{ bonus bUnbreakableWeapon; },{},{} -13327,Crimson_Huuma_Shuriken,Crimson Huuma Shuriken,5,20,,1000,100,,1,2,0x22000000,63,2,34,3,70,1,22,{ bonus bUnbreakableWeapon; .@r = getrefine(); bonus bBaseAtk,(.@r<=15?pow(.@r,2):225); bonus bMatk,(.@r<=15?(pow(.@r,2)/2):225); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*5); },{},{} -13328,Huuma_Shuriken_of_Vicious_Mind,Huuma Shuriken of Vicious Mind,5,20,,1500,150:50,,1,1,0x22000000,63,2,34,4,160,1,22,{ bonus bAtk,pow(min(getrefine(),15),2); bonus bMatk,pow(min(getrefine(),15),2)/2; bonus bUnbreakableWeapon; },{},{} -13329,Unity_Huuma_Shuriken,Unity Huuma Shuriken,5,20,,500,95,,1,1,0x22000000,63,2,34,3,1,1,22,{ bonus bBaseAtk,pow(getrefine(),2)*125/100; },{},{} -13332,Huuma_Shuriken_of_Dancing_Petals,Huuma Shuriken of Dancing Petals,5,0,,2000,250,,1,2,0x20000000,63,2,34,4,100,1,22,{ .@r = getrefine(); .@bonus = 20; if (.@r>=7) { bonus bLongAtkRate,10; } if (.@r>=9) { .@bonus += 20; } bonus2 bSkillAtk,"KO_HUUMARANKA",.@bonus; },{},{} -13337,Illusion_Huuma_Fluttering_Snow,Illusion Huuma Fluttering Snow,5,0,,1500,250:50,,1,2,0x02000000,63,2,34,4,120,1,22,{ .@r = getrefine(); bonus bBaseAtk,(30*(.@r/3)); bonus bLongAtkRate,(3*.@r); },{},{} -13338,Illusion_Wing_Shuriken,Illusion Wing Shuriken,5,0,,1500,300,,1,2,0x02000000,63,2,34,4,120,1,22,{ bonus bDex,2; bonus2 bSkillAtk,"KO_HAPPOKUNAI",(9*getrefine()); },{},{} -13345,Huuma_Shuriken_Clearness,Huuma Shuriken Clearness,5,20,,1300,230,,1,2,0x22000000,63,2,34,4,100,1,22,{ .@r = getrefine(); bonus bLongAtkRate,2*(.@r/3); bonus bBaseAtk,10*(.@r/2); if (.@r >= 7) { bonus2 bSkillAtk,"KO_HUUMARANKA",30; if (.@r >= 9) { bonus2 bSkillCooldown,"KO_HUUMARANKA",-1000; if (.@r >= 11) { bonus2 bAddEle,Ele_Fire,15; bonus2 bAddEle,Ele_Dark,15; bonus2 bAddRace,RC_Undead,30; bonus2 bAddRace,RC_Demon,30; } } } },{},{} -//=================================================================== -// 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,10000; bonus2 bHPDrainRate,1000,1; },{},{} -13404,Platinum_Shotel,Platinum Shotel,5,20,,1500,130,,1,1,0x000654E2,58,2,2,4,55,1,2,{ bonus bCritical,50; },{},{} -13405,Curved_Sword,Curved Sword,5,20,,800,125,,1,2,0x000654E2,58,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_Human,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; bonus3 bSPVanishRate,80,45,BF_WEAPON|BF_MAGIC|BF_MISC; bonus bUnbreakableWeapon; },{},{} -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_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; },{},{} -13411,BF_Sword2,Brave Gladiator Blade,5,20,,0,115:74,,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_Human,75; bonus bUnbreakableWeapon; },{},{} -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,1000; bonus4 bAutoSpellOnSkill,"MG_LIGHTNINGBOLT","WZ_EARTHSPIKE",3,1000; },{},{} -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_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,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,6; bonus bInt,.@r-5; bonus bUnbreakableWeapon; 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,6; bonus bInt,.@r-5; bonus bUnbreakableWeapon; 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 bAddEle,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 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,{ 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; },{},{} -13426,F_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; },{},{} -13427,F_Solar_Sword_C,Solar Sword,5,2,,0,120,,1,0,0x000654E2,63,2,2,4,0,0,2,{ bonus bAtkEle,Ele_Fire; bonus bHPDrainValue,1; bonus2 bSPLossRate,15,10000; },{},{} -13428,Priest_Sword,Priest Sword,5,20,,1200,170,,1,3,0x000654E2,63,2,2,4,50,1,2,{},{},{} -13429,E_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; },{},{} -13430,E_Solar_Sword_C,Solar Sword,5,2,,0,120,,1,0,0x000654E2,63,2,2,4,0,0,2,{ bonus bAtkEle,Ele_Fire; },{},{} -13431,Chrome_Sword,Chrome Sword,5,20,,2200,180,,1,0,0x000444A2,18,2,2,3,110,1,2,{ bonus bAgi,1; bonus bMaxHPrate,-5; bonus bUnbreakableWeapon; },{},{} -13432,Adventure_Sword,Adventure Sword,5,0,,0,80,,1,0,0x00004082,63,2,2,1,1,0,2,{},{},{} -13433,Academy_Sword,Academy Sword,5,0,,1200,120,,1,1,0x00004082,63,2,2,1,30,1,2,{ bonus bMaxHP,200; bonus bMaxSP,100; .@b = BaseLevel/10; bonus bMaxHP,-40*.@b; bonus bMaxSP,-20*.@b; },{},{} -13434,P_Saber3,Eden Saber III,5,0,,0,185,,1,0,0x000654E2,63,2,2,3,60,0,2,{},{},{} -13435,Fire_Brand_,Fireblend,5,20,,500,100:108,,1,3,0x000654E2,63,2,2,4,40,1,2,{ bonus bAtkEle,Ele_Fire; skill "MG_FIREBOLT",3; bonus3 bAutoSpell,"MG_FIREBOLT",3,100; },{},{} -13436,Ice_Falchon_,Ice Falchion,5,20,,600,100:108,,1,3,0x000654E2,63,2,2,4,40,1,2,{ bonus bAtkEle,Ele_Water; skill "MG_COLDBOLT",3; bonus3 bAutoSpell,"MG_COLDBOLT",3,100; },{},{} -13437,Orcish_Sword_,Orcish Sword,5,20,,800,90,,1,4,0x000654E3,63,2,2,3,5,1,2,{ bonus bUnbreakableWeapon; },{},{} -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_Human,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,Thanos_Sword,Thanos Sword,5,10,,700,150:100,,1,1,0x00004082,56,2,2,4,120,1,2,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000; },{},{ heal -1000,0; } -13442,Old_Parasol,Old Parasol,5,10,,500,120:80,,,3,0x000654E2,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_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon; },{},{} -13446,Star_Dust_Blade_,Star Dust Blade,5,1,,1000,140,,1,3,0x00000001,63,2,2,4,45,1,2,{ bonus2 bAddEff,Eff_Stun,500; bonus bUnbreakableWeapon; },{},{} -13447,Byeorrun_Gum_,Byeollungum,5,1,,900,150,,1,2,0x000654E2,63,2,2,4,40,1,2,{ bonus2 bSubClass,Class_Normal,-10; bonus2 bAddClass,Class_Boss,50; bonus bAllStats,2; },{},{} -13448,Magical_Blade_,Magical Blade,5,1,,2000,165:110,,1,3,0x000654E3,63,2,2,4,105,1,2,{},{},{} -13449,Gladius_Daemonicus,Gladius Daemonicus,5,20,,1200,130,,,2,0x000654E2,63,2,2,4,80,1,2,{ bonus bAspdRate,10; .@r = getrefine(); if(.@r>=9){ autobonus "{ bonus bAspd,3; }",30,5000; } },{},{} -13450,Saber__,Saber,5,10,,1000,115,,,2,0x000654E2,63,2,2,3,27,1,0,{},{},{} -13451,Ru_Blue_Sword,Ru Blue Sword,5,1,,1200,200,,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; },{},{} -13453,Mysteltainn__,Mysteltainn,5,20,,1000,170,,1,3,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; },{},{} -13454,Crimson_Saber,Crimson Saber,5,20,,850,85,,1,2,0x000654E3,63,2,2,3,70,1,2,{ .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); },{},{} -13455,Saber_of_Vicious_Mind,Saber of Vicious Mind,5,20,,1350,135,,1,1,0x000654E3,63,2,2,4,160,1,2,{ bonus bAtk,pow(min(getrefine(),15),2); },{},{} -13456,Unity_Sword,Unity Sword,5,20,,420,80,,1,1,0x000654E3,56,2,2,3,1,1,2,{ bonus bBaseAtk,pow(getrefine(),2)*125/100; },{},{} -13457,Unity_Dagger,Unity Dagger,5,20,,270,52,,1,1,0x028F5EEF,63,2,2,3,1,1,1,{ bonus bBaseAtk,pow(getrefine(),2)*125/100; },{},{} -13460,Sealed_Magic_Sword,Sealed Magic Sword,5,0,,1500,100,,1,2,0x00065480,58,2,2,4,100,1,2,{ .@r = getrefine(); .@sp = -100; bonus3 bAutoSpell,"MG_FIREBOLT",5,100; if (.@r >= 7) { .@sp += 50; .@matk = 85; if (.@r >= 10) { bonus bAspd,1; .@sp += 50; .@matk += 45; } bonus bMatk,.@matk; } bonus bMaxSP,.@sp; },{},{} -13461,Sealed_Evil_Sword,Sealed Evil Sword,5,0,,1500,100,,1,2,0x00065480,58,2,2,4,100,1,2,{ .@r = getrefine(); .@def = -50; .@mdef = -10; bonus3 bAutoSpell,"WZ_FROSTNOVA",5,100; if (.@r >= 7) { .@crit = 30; .@mdef += 10; if (.@r >= 10) { bonus bAspd,1; .@crit += 20; .@def += 50; } bonus bCritical,.@crit; } bonus bDef,.@def; bonus bMdef,.@mdef; },{},{} -13462,Sealed_Max_Sword,Sealed Maximum Sword,5,0,,1500,100,,1,2,0x00065480,58,2,2,4,100,1,2,{ .@r = getrefine(); .@hp = -1000; bonus3 bAutoSpell,"MG_COLDBOLT",5,100; if (.@r >= 7) { .@atk = 65; .@hp += 500; if (.@r >= 10) { bonus bAspd,1; .@atk += 45; .@hp += 500; } bonus bBaseAtk,.@atk; } if (.@hp) { bonus bMaxHP,.@hp; } },{},{} -13469,Illusion_Immaterial_Sword,Illusion Immaterial Sword,5,0,,900,180,,1,2,0x000654E2,63,2,2,4,120,1,2,{ .@r = getrefine(); bonus bSPDrainValue,-1; bonus bUnbreakableWeapon; if (.@r >= 12) { .@val = 20; } bonus2 bSPVanishRate,(80+(20*.@r)),(30+.@val); bonus bAtkEle,Ele_Ghost; },{},{} -13473,God's_Sword,God's Sword,5,,,1300,150,,1,2,0x000654E3,56,2,2,4,120,1,2,{ bonus bAgi,5; bonus bCritical,50; bonus bFlee2,20; bonus2 bAddRace,RC_Demon,30; .@r = getrefine(); .@rate = 1+.@r; .@s = getskilllv("ASC_BREAKER"); .@slv = 3; if(.@s>3) { .@slv = .@s; } bonus3 bAutoSpell,"ASC_BREAKER",.@slv,.@rate; if(.@r>=8){ skill "ASC_BREAKER",3; } },{},{} -13474,Sword___,Sword,5,1,,500,25,,1,4,0x000654E3,63,2,2,1,2,1,2,{},{},{} -13475,Falchion___,Falchion,5,1,,600,39,,1,4,0x000654E3,63,2,2,1,2,1,2,{},{},{} -13476,Blade___,Blade,5,1,,700,53,,1,4,0x000654E3,63,2,2,1,2,1,2,{},{},{} -13477,Lapier___,Rapier,5,10,,500,70,,1,3,0x000654E3,63,2,2,2,14,1,2,{},{},{} -13478,Scimiter___,Scimitar,5,10,,700,85,,1,3,0x000654E3,63,2,2,2,14,1,2,{},{},{} -13479,Tsurugi___,Tsurugi,5,1,,1200,130,,1,2,0x000654E2,63,2,2,3,27,1,2,{},{},{} -13480,Ring_Pommel_Saber__,Ring Pommel Saber,5,1,,900,100,,1,3,0x000654E2,63,2,2,2,14,1,2,{},{},{} -13481,Saber___,Saber,5,1,,1000,115,,,3,0x000654E2,63,2,2,3,27,1,0,{},{},{} -13482,Orcish_Blade,Orcish Blade,5,1,,1200,120,,1,1,0x000654E2,63,2,2,3,50,1,2,{ bonus2 bSkillAtk,"SM_BASH",5; bonus bMaxHP,150; bonus bHealPower2,5; bonus bUseSPrate,-50; .@r = getrefine(); if(.@r>=7){ bonus2 bSkillAtk,"SM_BASH",5; bonus bHealPower2,5; } if(.@r>=9){ bonus2 bSkillAtk,"SM_BASH",5; } },{},{} -13483,Beginner_Genetic's_Sword,Beginner Genetic's Sword,5,1,,0,140,,1,1,0x00040000,56,2,2,3,100,1,2,{ .@r = getrefine(); bonus bVariableCastrate,-10; if(.@r>=7){ bonus2 bSkillAtk,"GN_CARTCANNON",15; } },{},{} -13485,Honglyun's_Sword_,Honglyun's Sword,5,1,,800,180,,1,2,0x00040000,56,2,2,4,100,1,2,{ .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bLongAtkRate,4*(.@r/3); if(.@r>=9){ bonus2 bSkillUseSPrate,"GN_CARTCANNON",10; } if(.@r>=11){ bonus2 bSkillAtk,"GN_CARTCANNON",15; } },{},{} -13492,Abyss_Blade,Abyss Blade,5,1,,1200,150:130,,1,1,0x00065480,56,2,2,4,165,1,2,{ .@r = getrefine(); bonus bUnbreakableWeapon; if(.@r>=7){ bonus2 bAddClass,Class_All,5; bonus2 bSubRace,RC_Player_Human,5; } if(.@r>=9){ bonus2 bAddClass,Class_All,5; bonus2 bSubRace,RC_Player_Human,5; } },{},{} -13493,Cannon_Rapier-OS,Cannon Rapier-OS,5,20,,800,160:150,,1,2,0x000654E3,63,2,2,4,130,1,2,{ .@r = getrefine(); bonus3 bAutoSpell,"MG_FIREBALL",min(.@r,10),100; if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus2 bSkillAtk,"MG_FIREBALL",30; if (.@r >= 11) { bonus3 bAutoSpell,"WL_HELLINFERNO",3,100; } } } },{},{} -//=================================================================== -// More Cash Shop Items -//=================================================================== -13495,Sealed_Red_Lotus_Sword,Sealed Red Lotus Sword,5,1,,0,180,,1,2,0x00040000,56,2,2,4,99,1,2,{ .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bLongAtkRate,4*(.@r/3); if(.@r>=7){ bonus2 bSkillUseSPrate,"GN_CARTCANNON",10; } if(.@r>=9){ bonus2 bSkillAtk,"GN_CARTCANNON",15; } },{},{} -13497,Edge_,Edge,5,1,,1200,60,,1,1,0x000654E2,63,2,2,4,60,1,2,{ bonus bHit,-40; bonus3 bAddEffOnSkill,"RG_RAID",Eff_Bleeding,100; bonus2 bSkillAtk,"RG_RAID",50; .@s = getskilllv("SM_SWORD"); bonus bHit,3*.@s; bonus2 bAddClass,Class_All,2; .@r = getrefine(); if(.@r>=9){ bonus bHit,2*.@s; bonus2 bAddClass,Class_All,2; } },{},{} -13498,Nagan_,Nagan,5,1,,500,120,,1,1,0x000654E2,63,2,2,4,60,1,2,{ .@b = readparam(bStr); bonus bCritical,1*(.@b/10); bonus bCritAtkRate,2; skill "TF_DOUBLE",5; .@r = getrefine(); if(.@r>=1){ bonus bCritAtkRate,1*(.@b/10); } },{},{} -13499,Kladenets,Kladenets,5,1,,1500,180:160,,1,1,0x000654E2,56,2,2,4,130,1,2,{ .@r = getrefine(); .@rate = 1+.@r; bonus3 bAutoSpellWhenHit,"SO_PSYCHIC_WAVE",3,.@rate; if(.@r>=10){ bonus bFixedCastrate,-70; } },{},{} -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; },{},{} -13503,Magestic_Goat_Box,Baphomet Horns Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5280,604800; },{},{} -13504,Deviruchi_Cap_Box,Refined Deviruchi Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5281,604800; },{},{} -13505,Executioner_Box,Executioner Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1174,604800; },{},{} -13506,Brood_Axe_Box,Refined Bloody Axe Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1373,604800; },{},{} -13507,Tomahawk_Box,Tomahawk Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1374,604800; },{},{} -13508,Bow_Of_Rudra_Box,Rudra Bow Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1729,604800; },{},{} -13509,Cutlas_Box,Cutlus Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13402,604800; },{},{} -13510,Solar_Sword_Box,Solar Sword Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13403,604800; },{},{} -13511,Sword_Breaker_Box,Refined Swordbreaker Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13024,604800; },{},{} -13512,Mail_Breaker_Box,Refined Mailbreaker Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13025,604800; },{},{} -13513,Moonlight_Sword_Box,Moonlight Dagger Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13026,604800; },{},{} -13514,Spanner_Box,Wrench Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1534,604800; },{},{} -13515,Grape_Box,Grape Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 514,10; },{},{} -13516,Royal_Jelly_Box,Royal Jelly Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 526,5; },{},{} -13517,Yggdrasilberry_Box,Yggdrasil Berry Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 607,3; },{},{} -13518,Weapon_Card_Scroll_Box,Weapon Card Pet Egg Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13558,1; },{},{} -13519,Armor_Card_Scroll_Box,Armor Card Pet Egg Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13559,1; },{},{} -13520,Helmet_Card_Scroll_Box,Helmet Card Pet Egg Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13560,1; },{},{} -13521,Hood_Card_Scroll_Box,Garment Card Pet Egg Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13561,1; },{},{} -13522,Hood_Card_Scroll_Box2,Shield Card Pet Egg Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13562,1; },{},{} -13523,Shoes_Card_Scroll_Box,Shoes Card Pet Egg Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13563,1; },{},{} -13524,Accy_Card_Scroll_Box,Accessory Card Pet Egg Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13564,1; },{},{} -13525,Zeny_Scroll_Box,Zeny Pet Egg Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14508,1; },{},{} -13526,Pet_Egg_Scroll_Box1_,Pet Egg Scroll Box 12,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12925,30; },{},{} -13527,Pet_Egg_Scroll_Box2_,Pet Egg Scroll Box 13,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12926,30; },{},{} -13528,Pet_Egg_Scroll_Box3_,Pet Egg Scroll Box 14,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12932,30; },{},{} -13529,Pet_Egg_Scroll_Box4_,Pet Egg Scroll Box 15,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12933,30; },{},{} -13530,Pet_Egg_Scroll_Box5_,Pet Egg Scroll Box 16,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12934,30; },{},{} -13531,Light_Red_Pot_Box,Light Red Potion Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 598,50; },{},{} -13532,Light_Orange_Pot_Box,Light Orange Potion Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 599,50; },{},{} -13533,Light_Yellow_Pot_Box,Light Yellow Potion Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 11500,50; },{},{} -13534,Light_White_Pot_Box,Light White Potion Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 11501,50; },{},{} -13535,Light_Center_Pot_Box,Light Concentration Potion Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14509,20; },{},{} -13536,Light_Awakening_Pot_Box,Light Awakening Potion Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14510,20; },{},{} -13537,Light_Berserk_Pot_Box,Light Berserk Potion Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14511,20; },{},{} -13538,Meteor_10_Scroll_Box,Meteor Storm Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14512,10; },{},{} -13539,Storm_10_Scroll_Box,Storm Gust Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14513,10; },{},{} -13540,Vermilion_10_Scroll_Box,Lord of Vermilion Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14514,10; },{},{} -13541,Lex_Aeterna_Scroll_Box,Lex Aeterna Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14515,10; },{},{} -13542,Magnificat_5_Scroll_Box,Magnificat Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14516,10; },{},{} -13543,CP_Helm_Scroll_Box,Chemical Protection Helm Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_CP_Helm_Scroll_Box); },{},{} -13544,CP_Shield_Scroll_Box,Chemical Protection Shield Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_CP_Shield_Scroll_Box); },{},{} -13545,CP_Armor_Scroll_Box,Chemical Protection Armor Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_CP_Armor_Scroll_Box); },{},{} -13546,CP_Weapon_Scroll_Box,Chemical Protection Weapon Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_CP_Weapon_Scroll_Box); },{},{} -13547,Repair_Scroll_Box,Repair Weapon Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Repair_Scroll_Box); },{},{} -13548,Big_Bun_Box,Big Bun Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14522,10; },{},{} -13549,Pill__Box,Pill Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14523,10; },{},{} -13550,Superb_Fish_Slice_Box,Fish Slice Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14524,10; },{},{} -13551,Chewy_Ricecake_Box,Chewy Ricecake Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14525,10; },{},{} -13552,Oriental_Pastry_Box,Pastry Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14526,10; },{},{} -13553,Dun_Tele_Scroll1_Box,Dungeon Teleport Scroll 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14527,5; },{},{} -13554,Weapon_Card_Scroll_Box2,Weapon Card Pet Egg Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13565,1; },{},{} -13555,Weapon_Card_Scroll_Box3,Weapon Card Pet Egg Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13566,1; },{},{} -13556,Armor_Card_Scroll_Box2,Armor Card Pet Egg Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13567,1; },{},{} -13557,Accy_Card_Scroll_Box2,Accessory Card Pet Egg Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13568,1; },{},{} -13558,Weapon_Card_Scroll,Weapon Card Pet Egg Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -13559,Armor_Card_Scroll,Armor Card Pet Egg Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -13560,Helmet_Card_Scroll,Helmet Card Pet Egg Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -13561,Hood_Card_Scroll,Garment Card Pet Egg Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -13562,Hood_Card_Scroll2,Shield Card Pet Egg Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -13563,Shoes_Card_Scroll,Shoes Card Pet Egg Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -13564,Accy_Card_Scroll,Accessory Card Pet Egg Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -13565,Weapon_Card_Scroll2,Weapon Card Pet Egg Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -13566,Weapon_Card_Scroll3,Weapon Card Pet Egg Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -13567,Armor_Card_Scroll2,Armor Card Pet Egg Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -13568,Accy_Card_Scroll2,Accessory Card Pet Egg Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -13569,PVP_Tele_Scroll_Box,PVP Teleport Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14528,10; },{},{} -13570,Giant_Fly_Wing_Box50,Giant Fly Wing 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12212,50; },{},{} -13571,Giant_Fly_Wing_Box100,Giant Fly Wing 100 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12212,100; },{},{} -13572,Dex_Dish_Box30,Hwergelmir's Tonic 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12205,30; },{},{} -13573,Dex_Dish_Box50,Hwergelmir's Tonic 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12205,50; },{},{} -13574,Luk_Dish_Box30,Nine Tail Dish 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12206,30; },{},{} -13575,Luk_Dish_Box50,Nine Tail Dish 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12206,50; },{},{} -13576,Inc_Agi_10_Box30,Increase Agility Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12216,30; },{},{} -13577,Inc_Agi_10_Box50,Increase Agility Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12216,50; },{},{} -13578,Vit_Dish_Box30,Stew of Immortality 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12207,30; },{},{} -13579,Vit_Dish_Box50,Stew of Immortality 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12207,50; },{},{} -13580,Insurance_Package30,Life Insurrance 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12209,30; },{},{} -13581,Insurance_Package50,Life Insurrance 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12209,50; },{},{} -13582,Convex_Mirror_Box5,Convex Mirror 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12214,5; },{},{} -13583,Convex_Mirror_Box30,Convex Mirror 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12214,30; },{},{} -13584,Blessing10_Box30,Blessing Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12215,30; },{},{} -13585,Blessing10_Box50,Blessing Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12215,50; },{},{} -13586,Adrenaline10_Box30,Adrenaline Rush Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12220,30; },{},{} -13587,Adrenaline10_Box50,Adrenaline Rush Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12220,50; },{},{} -13588,Assumptio_5_Box30,Assumptio Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12218,30; },{},{} -13589,Assumptio_5_Box50,Assumptio Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12218,50; },{},{} -13590,Aspersio_5_Box30,Aspersio Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12217,30; },{},{} -13591,Aspersio_5_Box50,Aspersio Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12217,50; },{},{} -13592,Agi_Dish_Box30,Steamed Scorpion 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12203,30; },{},{} -13593,Agi_Dish_Box50,Steamed Scorpion 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12203,50; },{},{} -13594,Wind_Walk10_Box30,Wind Walk Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12219,30; },{},{} -13595,Wind_Walk10_Box50,Wind Walk Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12219,50; },{},{} -13596,Int_Dish_Box30,Dragon Breath Cocktail 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12204,30; },{},{} -13597,Int_Dish_Box50,Dragon Breath Cocktail 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12204,50; },{},{} -13598,Battle_Manual_Box1,Field Manual Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12208,1; },{},{} -13599,Battle_Manual_Box5,Field Manual 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12208,5; },{},{} -13600,Siegfried_Box5,Token of Siegfried 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7621,5; },{},{} -13601,Siegfried_Box20,Token of Siegfried 20 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7621,20; },{},{} -13602,Kafra_Card_Box30,Kafra Card 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12211,30; },{},{} -13603,Kafra_Card_Box50,Kafra Card 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12211,50; },{},{} -13604,Str_Dish_Box30,Steamed Tongue 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12202,30; },{},{} -13605,Str_Dish_Box50,Steamed Tongue 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12202,50; },{},{} -13606,Bubble_Gum_Box1,Bubble Gum Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12210,1; },{},{} -13607,Bubble_Gum_Box5,Bubble Gum 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12210,5; },{},{} -13608,Megaphone_Box1,Megaphone Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12221,1; },{},{} -13609,Megaphone_Box5,Megaphone 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12221,5; },{},{} -13610,Enriched_Elunium_Box5,Enriched Elunium 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7619,5; },{},{} -13611,Enriched_Oridecon_Box5,Enriched Oridecon 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7620,5; },{},{} -13612,Handcuff_Box,Arrest Handcuffs Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2706,1; },{},{} -13613,Super_Pet_Egg_Box1,Super Pet Egg Box 1,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13617,1; },{},{} -13614,Super_Pet_Egg_Box2,Super Pet Egg Box 2,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13618,1; },{},{} -13615,Super_Pet_Egg_Box3,Super Pet Egg Box 3,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13619,1; },{},{} -13616,Super_Pet_Egg_Box4,Super Pet Egg Box 4,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13620,1; },{},{} -13617,Super_Pet_Egg1,Super Pet Egg 1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Super_Pet_Egg1); },{},{} -13618,Super_Pet_Egg2,Super Pet Egg 2,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Super_Pet_Egg2); },{},{} -13619,Super_Pet_Egg3,Super Pet Egg 3,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Super_Pet_Egg3); },{},{} -13620,Super_Pet_Egg4,Super Pet Egg 4,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Super_Pet_Egg4); },{},{} -13621,Greed_Box30,Greed Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14529,30; },{},{} -13622,Greed_Box50,Greed Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14529,50; },{},{} -13623,Greed_Box100,Greed Scroll 100 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14529,100; },{},{} -13624,Flee_30_Scroll_Box,Evasion Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14530,1; },{},{} -13625,Accuracy_30_Scroll_Box,Concentration Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14531,1; },{},{} -13626,Super_Card_Pet_Egg_Box1,Super Card Pet Egg Box 1,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13630,1; },{},{} -13627,Super_Card_Pet_Egg_Box2,Super Card Pet Egg Box 2,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13631,1; },{},{} -13628,Super_Card_Pet_Egg_Box3,Super Card Pet Egg Box 3,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13632,1; },{},{} -13629,Super_Card_Pet_Egg_Box4,Super Card Pet Egg Box 4,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13633,1; },{},{} -13630,Super_Card_Pet_Egg1,Super Card Pet Egg 1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Super_Card_Pet_Egg1); },{},{} -13631,Super_Card_Pet_Egg2,Super Card Pet Egg 2,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Super_Card_Pet_Egg2); },{},{} -13632,Super_Card_Pet_Egg3,Super Card Pet Egg 3,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Super_Card_Pet_Egg3); },{},{} -13633,Super_Card_Pet_Egg4,Super Card Pet Egg 4,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Super_Card_Pet_Egg4); },{},{} -13634,Vigorgra_Package1,1 Hour Package Vol. 1,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Vigorgra_Package1); },{},{} -13635,Vigorgra_Package2,1 Hour Package Vol. 2,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Vigorgra_Package2); },{},{} -13636,Vigorgra_Package3,1 Hour Package Vol. 3,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Vigorgra_Package3); },{},{} -13637,Vigorgra_Package4,1 Hour Package Vol. 4,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Vigorgra_Package4); },{},{} -13638,Vigorgra_Package5,1 Hour Package Vol. 5,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Vigorgra_Package5); },{},{} -13639,Vigorgra_Package6,1 Hour Package Vol. 6,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Vigorgra_Package6); },{},{} -13640,Vigorgra_Package7,2 Hour Package Vol. 1,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Vigorgra_Package7); },{},{} -13641,Vigorgra_Package8,2 Hour Package Vol. 2,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Vigorgra_Package8); },{},{} -13642,Vigorgra_Package9,2 Hour Package Vol. 3,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Vigorgra_Package9); },{},{} -13643,Vigorgra_Package10,2 Hour Package Vol. 4,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Vigorgra_Package10); },{},{} -13644,Vigorgra_Package11,2 Hour Package Vol. 5,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Vigorgra_Package11); },{},{} -13645,Vigorgra_Package12,2 Hour Package Vol. 6,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Vigorgra_Package12); },{},{} -13646,Infiltrator_Box1,Refined Infiltrator Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1267,604800; },{},{} -13647,Muramasa_Box1,Refined Muramasa Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1173,604800; },{},{} -13648,Excalibur_Box1,Refined Excalibur Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13401,604800; },{},{} -13649,Combat_Knife_Box1,Refined Combat Knife Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13021,604800; },{},{} -13650,Counter_Dagger_Box1,Refined Dagger of Counter Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13022,604800; },{},{} -13651,Kaiser_Knuckle_Box1,Refined Kaiser Knuckle Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1817,604800; },{},{} -13652,Pole_Axe_Box1,Refined Pole Axe Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1419,604800; },{},{} -13653,Mighty_Staff_Box1,Refined Mighty Staff Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1623,604800; },{},{} -13654,Right_Epsilon_Box1,Refined Light Epsilon Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1372,604800; },{},{} -13655,Balistar_Box1,Refined Ballista Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1728,604800; },{},{} -13656,Diary_Of_Sage_Box1,Refined Sage's Diary Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1563,604800; },{},{} -13657,Asura_Box1,Refined Ashura Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13023,604800; },{},{} -13658,Apple_Of_Archer_Box1,Refined Apple of Archer Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5265,1209600; },{},{} -13659,Bunny_Band_Box1,Refined Bunny Band Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5266,1209600; },{},{} -13660,Sahkkat_Box1,Refined Sakkat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5267,1209600; },{},{} -13661,Lord_Circlet_Box1,Refined Grand Circlet Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5268,1209600; },{},{} -13662,Elven_Ears_Box1,Refined Elven Ears Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2686,1209600; },{},{} -13663,Steel_Flower_Box1,Refined Romantic Flower Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2687,1209600; },{},{} -13664,Critical_Ring_Box1,Refined Critical Ring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2688,604800; },{},{} -13665,Earring_Box1,Refined Earring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2689,604800; },{},{} -13666,Ring_Box1,Refined Ring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2690,604800; },{},{} -13667,Necklace_Box1,Refined Necklace Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2691,604800; },{},{} -13668,Glove_Box1,Refined Glove Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2692,604800; },{},{} -13669,Brooch_Box1,Refined Brooch Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2693,604800; },{},{} -13670,Rosary_Box1,Refined Rosary Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2694,604800; },{},{} -13671,Safety_Ring_Box1,Refined Safety Ring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2695,604800; },{},{} -13672,Vesper_Core01_Box1,Refined Vesper Core 01 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2696,604800; },{},{} -13673,Vesper_Core02_Box1,Refined Vesper Core 02 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2697,604800; },{},{} -13674,Vesper_Core03_Box1,Refined Vesper Core 03 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2698,604800; },{},{} -13675,Vesper_Core04_Box1,Refined Vesper Core 04 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2699,604800; },{},{} -13676,Drooping_Kitty_Box1,Refined Drooping Cat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5279,1209600; },{},{} -13677,Magestic_Goat_Box1,Refined Majestic Goat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5280,1209600; },{},{} -13678,Deviruchi_Cap_Box1,Refined Deviruchi Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5281,1209600; },{},{} -13679,Executioner_Box1,Refined Executioner Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1174,604800; },{},{} -13680,Brood_Axe_Box1,Refined Bloody Axe Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1373,604800; },{},{} -13681,Tomahawk_Box1,Refined Tomahawk Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1374,604800; },{},{} -13682,Bow_Of_Rudra_Box1,Refined Rudra Bow Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1729,604800; },{},{} -13683,Cutlas_Box1,Refined Cutlus Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13402,604800; },{},{} -13684,Solar_Sword_Box1,Refined Solar Sword Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13403,604800; },{},{} -13685,Sword_Breaker_Box1,Refined Swordbreaker Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13024,604800; },{},{} -13686,Mail_Breaker_Box1,Refined Mailbreaker Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13025,604800; },{},{} -13687,Moonlight_Sword_Box1,Refined Moonlight Dagger Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13026,604800; },{},{} -13688,Spanner_Box1,Refined Wrench Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1534,604800; },{},{} -13689,Bok_Choy_Box,Bok Choy Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7766,100; },{},{} -13690,Chung_E_Cake_Box,Green Maiden Cake Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7767,100; },{},{} -13691,Freyja_Overcoat_Box,Freya's Clothes Box,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2369,604800; },{},{} -13692,Freyja_Boots_Box,Freya's Boots Box,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2428,604800; },{},{} -13693,Freyja_Cape_Box,Freya's Manteau Box,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2533,604800; },{},{} -13694,Freyja_Crown_Box,Freya's Crown Box,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5306,604800; },{},{} -13695,Battle_Manual25_Box,Field Manual 25% Box,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14532,10; },{},{} -13696,Battle_Manual100_Box,Field Manual 100% Box,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14533,10; },{},{} -13697,J_Blessing10_Box,Blessing Scroll 10 Box,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12215,10; },{},{} -13698,J_Inc_Agi10_Box,Increase Agility Scroll 10 Box,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12216,10; },{},{} -13699,J_Wind_Walk10_Box,Wind Walk Scroll 10 Box,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12219,10; },{},{} -13700,J_Adrenaline10_Box,Adrenaline Rush Scroll 10 Box,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12220,10; },{},{} -13701,Pet_Egg_Scroll12,Pet Egg Scroll 12,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll12); },{},{} -13702,Pet_Egg_Scroll13,Pet Egg Scroll 13,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll13); },{},{} -13703,Pet_Egg_Scroll14,Pet Egg Scroll 14,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll14); },{},{} -13704,Super_Pet_Egg5,Super Pet Egg 5,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Super_Pet_Egg5); },{},{} -13705,Super_Pet_Egg6,Super Pet Egg 6,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Super_Pet_Egg6); },{},{} -13706,Super_Pet_Egg7,Super Pet Egg 7,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Super_Pet_Egg7); },{},{} -13707,Super_Pet_Egg8,Super Pet Egg 8,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Super_Pet_Egg8); },{},{} -13708,Pet_Egg_Scroll_E,Pet Egg Scroll E,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pet_Egg_Scroll_E); },{},{} -13709,BRO_Package_1,BRO Package Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -13710,Max_Weight_Up_Box,Gym Pass Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7776,10; },{},{} -13711,Small_Life_Potion_Box,Small Life Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14534,10; },{},{} -13712,Small_Life_Potion_Box30,Small Life Potion 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14534,30; },{},{} -13713,Small_Life_Potion_Box50,Small Life Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14534,50; },{},{} -13714,Med_Life_Potion_Box,Medium Life Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14535,10; },{},{} -13715,Med_Life_Potion_Box30,Medium Life Potion 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14535,30; },{},{} -13716,Med_Life_Potion_Box50,Medium Life Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14535,50; },{},{} -13717,Abrasive_Box5,Abrasive 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14536,5; },{},{} -13718,Abrasive_Box10,Abrasive 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14536,10; },{},{} -13719,Regeneration_Box5,Regeneration Potion 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14537,5; },{},{} -13720,Regeneration_Box10,Regeneration 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14537,10; },{},{} -13721,Dun_Tele_Scroll_Box10,Dungeon Teleport Scroll 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14527,10; },{},{} -13722,Pecopeco_Hairband_Box,Peco Peco Hairband Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5286,1; },{},{} -13723,Red_Glasses_Box,Red Glasses Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5288,1; },{},{} -13724,Whisper_Mask_Box,Whisper Mask Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5294,1; },{},{} -13725,Ramen_Hat_Box,Ramen Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Ramen_Hat_Box); },{},{} -13726,Gold_Box_,Golden Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7777,1; },{},{} -13727,Silver_Box_,Silver Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7778,1; },{},{} -13728,Gold_Key1_Box,Golden Key 1 Box,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7779,1; },{},{} -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; },{},{} -13737,Ramen_Hat_Box1,Ramen Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5293,1; },{},{} -13738,Glass_Of_Illusion_Box5,Glass of Illusion 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14538,5; },{},{} -13739,Glass_Of_Illusion_Box10,Glass of Illusion 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14538,10; },{},{} -13740,Shadow_Armor_S_Box5,Shadow Armor Scroll 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14539,5; },{},{} -13741,Shadow_Armor_S_Box10,Shadow Armor Scroll 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14539,10; },{},{} -13742,Shadow_Armor_S_Box30,Shadow Armor Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14539,30; },{},{} -13743,Holy_Armor_S_Box5,Holy Armor Scroll 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14540,5; },{},{} -13744,Holy_Armor_S_Box10,Holy Armor Scroll 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14540,10; },{},{} -13745,Holy_Armor_S_Box30,Holy Armor Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14540,30; },{},{} -13746,S_Def_Potion_Box10,Small Defense Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14541,10; },{},{} -13747,S_Def_Potion_Box30,Small Defense Potion 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14541,30; },{},{} -13748,S_Def_Potion_Box50,Small Defense Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14541,50; },{},{} -13749,B_Def_Potion_Box10,Big Defense Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14542,10; },{},{} -13750,B_Def_Potion_Box30,Big Defense Potion 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14542,30; },{},{} -13751,B_Def_Potion_Box50,Big Defense Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14542,50; },{},{} -13752,S_Mdef_Potion_Box10,Small Magic Defense Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14543,10; },{},{} -13753,S_Mdef_Potion_Box30,Small Magic Defense Potion 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14543,30; },{},{} -13754,S_Mdef_Potion_Box50,Small Magic Defense Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14543,50; },{},{} -13755,B_Mdef_Potion_Box10,Big Magic Defense Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14544,10; },{},{} -13756,B_Mdef_Potion_Box30,Big Magic Defense Potion 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14544,30; },{},{} -13757,B_Mdef_Potion_Box50,Big Magic Defense Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14544,50; },{},{} -13758,Battle_Manual_X3_Box,Field Manual 300% Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14545,20; },{},{} -13759,In_Blue_Herb_Box,Blue Herb Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 510,50; },{},{} -13760,Honey_Box,Honey Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 518,100; },{},{} -13761,Empty_Bottle_Box,Empty Bottle Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 713,500; },{},{} -13762,In_Royal_Jelly_Box,Royal Jelly Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 526,70; },{},{} -13763,5_Anniversary_Coin_Box,Coin Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2709,1; },{},{} -13764,Battle_Manual_Box_TW,Beginner's Field Manual 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7803,5; },{},{} -13765,Certificate_TW_Box,Certificate Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getitem 7804,1;*/ },{},{} -13766,Nagan_Box,Refined Nagan Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13407,604800; },{},{} -13767,Skewer_Box,Refined Brocca Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1424,604800; },{},{} -13768,Survival_Rod_Box,Refined Survivor's Rod Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1628,604800; },{},{} -13769,Quadrille_Box,Refined Quadrille Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1537,604800; },{},{} -13770,Great_Axe_Box,Refined Great Axe Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1378,604800; },{},{} -13771,Bloody_Roar_Box,Refined Bloody Roar Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1273,604800; },{},{} -13772,Hardback_Box,Refined Hardcover Book Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1567,604800; },{},{} -13773,Fire_Brand_Box,Refined Fireblend Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Fire_Brand_Box); /*rentitem 13408,604800;*/ },{},{} -13774,Immaterial_Sword_Box,Refined Immaterial Sword Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13409,604800; },{},{} -13775,Unholy_Touch_Box,Refined Unholy Touch Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1274,604800; },{},{} -13776,Cloak_Of_Survival_Box,Refined Survivor's Manteau Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2535,1209600; },{},{} -13777,Masquerade_Box,Refined Masquerade Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5326,1209600; },{},{} -13778,Orc_Hero_Helm_Box,Refined Helmet of Orc Hero Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5327,1209600; },{},{} -13779,Evil_Wing_Ears_Box,Refined Wing of Diablo Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5328,1209600; },{},{} -13780,Dark_Blindfold_Box,Refined Dark Blinder Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5329,1209600; },{},{} -13781,kRO_Drooping_Kitty_Box,Refined Drooping Cat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5330,1209600; },{},{} -13782,Corsair_Box,Refined Corsair Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5331,1209600; },{},{} -13783,Bloody_Iron_Ball_Box,Refined Bloodied Shackle Ball Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2710,604800; },{},{} -13784,Spiritual_Ring_Box,Refined Spiritual Ring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2711,604800; },{},{} -13785,Nagan_Box1,Refined Nagan Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13407,86400; },{},{} -13786,Skewer_Box1,Refined Brocca Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1424,86400; },{},{} -13787,Survival_Rod_Box1,Refined Survivor's Rod Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1628,86400; },{},{} -13788,Quadrille_Box1,Refined Quadrille Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1537,86400; },{},{} -13789,Great_Axe_Box1,Refined Great Axe Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1378,86400; },{},{} -13790,Bloody_Roar_Box1,Refined Bloody Roar Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1273,86400; },{},{} -13791,Hardback_Box1,Refined Hardcover Book Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1567,86400; },{},{} -13792,Fire_Brand_Box1,Refined Fireblend Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13408,86400; },{},{} -13793,Immaterial_Sword_Box1,Refined Immaterial Sword Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13409,86400; },{},{} -13794,Unholy_Touch_Box1,Refined Unholy Touch Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1274,86400; },{},{} -13795,Cloak_Of_Survival_Box1,Refined Survivor's Manteau Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2535,86400; },{},{} -13796,Masquerade_Box1,Refined Masquerade Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5326,86400; },{},{} -13797,Orc_Hero_Helm_Box1,Refined Helmet of Orc Hero Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5327,86400; },{},{} -13798,Evil_Wing_Ears_Box1,Refined Wing of Diablo Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5328,86400; },{},{} -13799,Dark_Blindfold_Box1,Refined Dark Blinder Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5329,86400; },{},{} -13800,kRO_Drooping_Kitty_Box1,Refined Drooping Cat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5330,86400; },{},{} -13801,Corsair_Box1,Refined Corsair Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5331,86400; },{},{} -13802,Bloody_Iron_Ball_Box1,Refined Bloodied Shackle Ball Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2710,86400; },{},{} -13803,Spiritual_Ring_Box1,Refined Spiritual Ring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2711,86400; },{},{} -13804,Fire_Cracker_Love_Box,I Love You Firecracker Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14546,10; },{},{} -13805,Fire_Cracker_Wday_Box,Whiteday Firecracker Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14547,10; },{},{} -13806,Fire_Cracker_Vday_Box,Valentine's Day Firecracker Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14548,10; },{},{} -13807,Fire_Cracker_Bday_Box,Birthday Firecracker Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14549,10; },{},{} -13808,Fire_Cracker_Xmas_Box,Xmas Firecracker Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14550,10; },{},{} -13809,Blue_Gemstone_Box,Blue Gemstone Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 717,100; },{},{} -13810,Blue_Potion_Box,Light Blue Potion Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 11502,25; },{},{} -13811,Food_Box_Lv1,Food Box Vol 1,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14551,1; getitem 14554,1; getitem 14557,1; getitem 14560,1; getitem 14563,1; getitem 14566,1; },{},{} -13812,Food_Box_Lv2,Food Box Vol 2,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14552,1; getitem 14555,1; getitem 14558,1; getitem 14561,1; getitem 14564,1; getitem 14567,1; },{},{} -13813,Food_Box_Lv3,Food Box Vol 3,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14553,1; getitem 14556,1; getitem 14559,1; getitem 14562,1; getitem 14565,1; getitem 14568,1; },{},{} -13814,Indonesia_Box,Healing Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 503,100; getitem 12684,10; getitem 607,5; },{},{} -13815,Knife_Goblin_Box,Knife Goblin Taming Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14569,10; },{},{} -13816,Flail_Goblin_Box,Flail Goblin Taming Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14570,10; },{},{} -13817,Hammer_Goblin_Box,Hammer Goblin Taming Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14571,10; },{},{} -13818,Red_Deleter_Box,Red Deleter Taming Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14572,10; },{},{} -13819,Diabolic_Box,Diabolic Taming Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14573,10; },{},{} -13820,Wanderer_Box,Wanderer Taming Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14574,10; },{},{} -13821,Green_Apple_Box,Green Apple Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7821,10; },{},{} -13822,Whole_Barbecue_Box,Barbeque Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7822,10; },{},{} -13823,Meat_Veg_Skewer_Box,Meat Skewer Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7823,10; },{},{} -13824,Spirit_Liquor_Box,Spirit Liquor Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7824,10; },{},{} -13825,Green_Box_,Old Green Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -13826,Power_Box1,Power Box 1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 682,1; getitem 12123,1; getitem 12122,1; },{},{} -13827,Power_Box2,Power Box 2,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 683,1; getitem 12123,1; getitem 12122,1; },{},{} -13828,Resist_Box1,Resist Box 1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12118,1; getitem 12119,1; },{},{} -13829,Resist_Box2,Resist Box 2,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12120,1; getitem 12121,1; },{},{} -13830,Stat_Boost1,Stat Boost 1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INCSTR,60000,5; sc_start SC_INCAGI,60000,5; sc_start SC_INCVIT,60000,5; },{},{} -13831,Stat_Boost2,Stat Boost 2,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INCINT,60000,5; sc_start SC_INCLUK,60000,5; sc_start SC_INCDEX,60000,5; },{},{} -13832,Stat_Boost3,Stat Boost 3,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INCAGI,60000,5; sc_start SC_INCVIT,60000,5; sc_start SC_INCDEX,60000,5; },{},{} -13833,Stat_Boost4,Stat Boost 4,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INCINT,60000,5; sc_start SC_INCVIT,60000,5; sc_start SC_INCDEX,60000,5; },{},{} -13834,Dun_Tele_Scroll2_Box5,Dungeon Teleport Scroll II 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14581,5; },{},{} -13835,Dun_Tele_Scroll2_Box10,Dungeon Teleport Scroll II 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14581,10; },{},{} -13836,Mbl_Str_Dish_Box,Steamed Tongue Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12250,1; },{},{} -13837,Mbl_Agi_Dish_Box,Steamed Desert Scorpions Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12251,1; },{},{} -13838,Mbl_Int_Dish_Box,Dragon Breath Cocktail Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12252,1; },{},{} -13839,Mbl_Dex_Dish_Box,Hwergelmir's Tonic Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12253,1; },{},{} -13840,Mbl_Luk_Dish_Box,Cooked Nine Tail Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12254,1; },{},{} -13841,Mbl_Vit_Dish_Box,Immortal Stew Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12255,1; },{},{} -13842,Mbl_Kafra_Card_Box,Payment Statement for Kafra Employee Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12249,1; },{},{} -13843,Mbl_Battle_Manual_Box,Field Manual Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14532,1; },{},{} -13844,Heroic_Stone_Box,Heroic Stone Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7825,1; },{},{} -13845,Mysterious_Travel_Sack1,Mystery Travel Sack A,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Mysterious_Travel_Sack1); },{},{} -13846,Mysterious_Travel_Sack2,Mystery Travel Sack B,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Mysterious_Travel_Sack2); },{},{} -13847,Mysterious_Travel_Sack3,Mystery Travel Sack C,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Mysterious_Travel_Sack3); },{},{} -13848,Mysterious_Travel_Sack4,Mystery Travel Sack D,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Mysterious_Travel_Sack4); },{},{} -13849,WOB_Box_Rune5,Yellow Butterfly Wing 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14582,5; },{},{} -13850,WOB_Box_Rune10,Yellow Butterfly Wing Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14582,10; },{},{} -13851,WOB_Box_Schawaltz5,Green Butterfly Wing 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14583,5; },{},{} -13852,WOB_Box_Schawaltz10,Green Butterfly Wing Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14583,10; },{},{} -13853,WOB_Box_Rachel5,Red Butterfly Wing 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14584,5; },{},{} -13854,WOB_Box_Rachel10,Red Butterfly Wing Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14584,10; },{},{} -13855,WOB_Box_Local5,Blue Butterfly Wing 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14585,5; },{},{} -13856,WOB_Box_Local10,Blue Butterfly Wing Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14585,10; },{},{} -13857,Spark_Candy_Box5,Candy 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14586,5; },{},{} -13858,Spark_Candy_Box10,Candy 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14586,10; },{},{} -13859,Directive_A_Envelope,Directive Envelope A,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2734,1; },{},{} -13860,Directive_B_Envelope,Directive Envelope B,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2735,1; },{},{} -13861,Mini_Battle_Manual_Box,Small Field Manual Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12208,4; },{},{} -13862,Trial_Box,Trial Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12208,2; getitem 12215,15; getitem 12216,15; },{},{} -13863,Repair_Scroll_Box10,Repair Weapon Scroll 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14521,10; getitem 1002,10; getitem 998,10; getitem 756,10; getitem 999,10; },{},{} -13864,Hockey_Mask_Box,Hockey Mask Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5314,604800; },{},{} -13865,Observer_Box,Observer Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5315,604800; },{},{} -13866,Flying_Angel_Box,Flying Angel Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5210,1; },{},{} -13867,Neko_Mimi_Box,Neko Mimi Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5099,1; },{},{} -13868,MFH_Box,Moonlight Flower Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5214,1; },{},{} -13869,Chick_Hat_Box,Baby Chick Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5283,1; },{},{} -13870,New_Style_Box,Beauty Gift Certificate Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7622,1; },{},{} -13871,Magician_Card_Box,Mage Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Magician_Card_Box); /*getitem 4327,1; getitem 4309,1; getitem 4325,1; getitem 4208,1; getitem 4258,1; getitem 4191,1;*/ },{},{} -13872,Acolyte_Card_Box,Acolyte Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Acolyte_Card_Box); /*getitem 4185,1; getitem 4312,1; getitem 4217,1; getitem 4280,1; getitem 4293,1;*/ },{},{} -13873,Archer_Card_Box,Archer Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Archer_Card_Box); /*getitem 4297,1; getitem 4234,1; getitem 4199,1; getitem 4178,1; getitem 4252,1;*/ },{},{} -13874,Swordman_Card_Box,Swordman Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Swordman_Card_Box); /*getitem 4319,1; getitem 4331,1; getitem 4220,1; getitem 4311,1; getitem 4246,1;*/ },{},{} -13875,Thief_Card_Box,Thief Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Thief_Card_Box); /*getitem 4230,1; getitem 4210,1; getitem 4257,1; getitem 4172,1; getitem 4272,1;*/ },{},{} -13876,Merchant_Card_Box,Merchant Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Merchant_Card_Box); /*getitem 4206,1; getitem 4281,1; getitem 4186,1; getitem 4233,1; getitem 4321,1;*/ },{},{} -13877,Clock_Tower_Card_Box,Clock Tower Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 4244,1; getitem 4299,1; getitem 4313,1; getitem 4229,1; },{},{} -13878,Geffenia_Card_Box,Geffenia Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 4218,1; getitem 4269,1; },{},{} -13879,Owl_Card_Box,Owl Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 4237,1; getitem 4238,1; },{},{} -13880,Ghost_Card_Box,Ghost Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 4193,1; getitem 4294,1; },{},{} -13881,Nightmare_Card_Box,Nightmare Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 4127,1; getitem 4166,1; },{},{} -13882,Curse_Card_Box,Curse Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 4076,4; },{},{} -13883,Sleep_Card_Box,Sleep Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 4024,4; },{},{} -13884,Freeze_Card_Box,Freeze Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 4055,4; },{},{} -13885,Stun_Card_Box,Stun Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 4017,4; },{},{} -13886,Silence_Card_Box,Silence Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 4057,4; },{},{} -13887,Blind_Card_Box,Blind Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 4020,4; },{},{} -13888,Chaos_Card_Box,Chaos Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 4104,4; },{},{} -13889,Elunium_Box_,Elunium Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 985,10; },{},{} -13890,Oridecon_Box_,Oridecon Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 984,10; },{},{} -13891,Fire_Converter_Box,Fire Converter Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12114,10; },{},{} -13892,Water_Converter_Box,Water Converter Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12115,10; },{},{} -13893,Wind_Converter_Box,Wind Converter Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12117,10; },{},{} -13894,Earth_Converter_Box,Earth Converter Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12116,10; },{},{} -13895,Starter_Pack,Starter Pack,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7229,2; getitem 569,300; getitem 504,20; getitem 505,20; getitem 7060,30; getitem 2403,1; getitem 5039,1; getitem 2503,1; getitem 2307,1; getitem 616,1; getitem 603,1; getitem 617,1; getitem 610,5; getitem 604,5; },{},{} -13896,Mimic_Summon_Box5,Mimic Summoning 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12276,5; },{},{} -13897,Disguise_Summon_Box5,Disguise Summoning 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12277,5; },{},{} -13898,Alice_Summon_Box5,Alice Summoning 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12278,5; },{},{} -13899,Mimic_Summon_Box10,Mimic Summoning 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12276,10; },{},{} -13900,Disguise_Summon_Box10,Disguise Summoning 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12277,10; },{},{} -13901,Alice_Summon_Box10,Alice Summoning 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12278,10; },{},{} -13902,Fish_Head_Hat_Box,Fish Head Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5380,1; },{},{} -13903,Santa_Poring_Hat_Box,Santa Poring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5381,1; },{},{} -13904,Bell_Ribbon_Box,Bell Ribbon Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5382,1; },{},{} -13905,Hard_Core_Set_Box,XM Hardcore Set Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Hard_Core_Set_Box); /*getitem 12208,10; getitem 12209,10; getitem 12210,10;*/ },{},{} -13906,Kitty_Set_Box,XM Kitty Set Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Kitty_Set_Box); /*getitem 5230,1; getitem 5231,1; getitem 5232,1; getitem 5233,1; getitem 5234,1;*/ },{},{} -13907,Soft_Core_Set_Box,XM Softcore Set Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Soft_Core_Set_Box); /*getitem 12208,5; getitem 12209,5; getitem 12210,5;*/ },{},{} -13908,Deviruchi_Set_Box,XM Deviruchi Set Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Deviruchi_Set_Box); /*getitem 5227,1; getitem 5228,1; getitem 5229,1;*/ },{},{} -13909,MVP_Hunt_Box,MVP Hunting Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_MVP_Hunt_Box); /*getitem 7621,1; getitem 12210,1; getitem 12221,1; getitem 12214,3;*/ },{},{} -13910,Brewing_Box,XM Brewing Set Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Brewing_Box); /*getitem 12204,10; getitem 12205,10; getitem 12206,10;*/ },{},{} -13911,Xmas_Pet_Scroll,Christmas Pet Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Xmas_Pet_Scroll); },{},{} -13912,Party_Blessing_Box,Party Blessing 10 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14588,10; },{},{} -13913,Party_Inc_Agi_Box,Party Increase Agi 10 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14589,10; },{},{} -13914,Party_Assumptio_Box,Party Assumptio 5 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14590,10; },{},{} -13915,Love_Angel_Box,Love Angel Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12287,604800; },{},{} -13916,Squirrel_Box,Squirrel Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12288,604800; },{},{} -13917,Gogo_Box,Gogo Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12289,604800; },{},{} -13918,Drooping_W_Kitty_Box,Koneko Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5372,1; },{},{} -13919,L_Magestic_Goat_Box,Baphomet Horns Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5374,1; },{},{} -13920,Satanic_Chain_P_Box,Flying Evil Wing Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5376,1; },{},{} -13921,Antique_Pipe_Box,Gentleman's Pipe Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5377,1; },{},{} -13922,Rabbit_Ear_Hat_Box,Bunny Top Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5378,1; },{},{} -13923,Darkness_Helm_Box,Dark Randgris Helm Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5373,1; },{},{} -13924,L_Orc_Hero_Helm_Box,Orc Hero Headdress Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5375,1; },{},{} -13925,Lucky_Scroll08,Lucky Scroll08,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Lucky_Scroll08); },{},{} -13926,Crusader_Card_Box,Crusader Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 4371,1; getitem 4311,1; getitem 4319,1; getitem 4331,1; },{},{} -13927,Alchemist_Card_Box,Alchemist Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 4281,1; getitem 4233,1; getitem 4343,1; getitem 4186,1; getitem 4036,1; },{},{} -13928,Rogue_Card_Box,Rogue Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 4039,1; getitem 4210,1; getitem 4257,1; getitem 4230,1; getitem 4348,1; },{},{} -13929,Bard_Dancer_Card_Box,Bard Dancer Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 4297,1; getitem 4234,1; getitem 4178,1; getitem 4381,1; getitem 4252,1; },{},{} -13930,Sage_Card_Box,Sage card box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 4382,1; getitem 4258,1; getitem 4325,1; getitem 4208,1; getitem 4327,1; },{},{} -13931,Monk_Card_Box,Monk Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 4312,1; getitem 4332,1; getitem 4185,1; getitem 4293,1; },{},{} -13932,Sylph_Box,Sylph Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 4345,4; },{},{} -13933,Undine_Box,Undine Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 4350,4; },{},{} -13934,Salamander_Box,Salamander Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 4380,4; },{},{} -13935,Soul_Box,Soul Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 4388,4; },{},{} -13936,Noum_Bpx,Gnome Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 4335,4; },{},{} -13937,Robo_Eye_Box,Robo Eye Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5325,1; },{},{} -13938,Twin_Ribbon_Box,Maiden's Twin Ribbon Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5187,1; },{},{} -13939,Diadem_Box,Diadem Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5313,1; },{},{} -13940,Siege_Tele_Scroll_Box,WoE Teleport Scroll 100 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14591,100; },{},{} -13941,Valentine_Scroll_TW,Taiwan Valentine Scroll,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -13942,Love_Angel_Box_1m,Love Angel Magic Powder Box 30 Days,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14009,1; },{},{} -13943,Squirrel_Box_1m,Squirrel Magic Powder Box 30 Days,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14010,1; },{},{} -13944,Gogo_Box_1m,Gogo Magic Powder Box 30 Days,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14011,1; },{},{} -13945,Br_SwordPackage,Swordman Package,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Br_SwordPackage); },{},{} -13946,Br_MagePackage,Magician Package,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Br_MagePackage); },{},{} -13947,Br_AcolPackage,Acolyte Package,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Br_AcolPackage); },{},{} -13948,Br_ArcherPackage,Archer Package,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Br_ArcherPackage); },{},{} -13949,Br_MerPackage,Merchant Package,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Br_MerPackage); },{},{} -13950,Br_ThiefPackage,Thief Package,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Br_ThiefPackage); },{},{} -13951,Wasteland_Outlaw_Box,Western Outlaw Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13109,604800; },{},{} -13952,Lever_Action_Rifle_Box,Lever Action Rifle Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13170,604800; },{},{} -13953,All_In_One_Ring_Box,All In One Ring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_All_In_One_Ring_Box); /*rentitem All_In_One_Ring,604800;*/ },{},{} -13954,Spiritual_Tunic_Box,Spiritual Tunic Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2384,604800; },{},{} -13955,Recuperative_Armor_Box,Recuvative Armor Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2385,604800; },{},{} -13956,Shelter_Resistance_Box,Shell Of Resistance Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2132,604800; },{},{} -13957,Sylphid_Manteau_Box,Silf Manteau Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2543,604800; },{},{} -13958,Refresh_Shoes_Box,Refresh Shoes Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2439,604800; },{},{} -13959,Toast_Box,Crunch Toast Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5391,604800; },{},{} -13960,Name_Change_Coupon_Box,Identification Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7623,1; },{},{} -13961,Mojji_Box,Mochi Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 554,5; },{},{} -13962,Deprotai_Doll_Hat_Box,Defolty Doll Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5340,1; },{},{} -13963,Claris_Doll_Hat_Box,Glaris Doll Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5341,1; },{},{} -13964,Sorin_Doll_Hat_Box,Sorin Doll Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5342,1; },{},{} -13965,Tayelin_Doll_Hat_Box,Tailring Doll Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5343,1; },{},{} -13966,Binit_Doll_Hat_Box,Vinit Doll Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5344,1; },{},{} -13967,Debril_Doll_Hat_Box,W Doll Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5345,1; },{},{} -13968,Bubblegum_Lower_Box,Bubble Gum Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5394,86400; },{},{} -13969,Lucky_Clip_Box,Lucky Clip Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2742,86400; },{},{} -13970,Iron_10_Box,Iron Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 998,10; },{},{} -13971,Steel_10_Box,Steel Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 999,10; },{},{} -13972,Coal_10_Box,Coal Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1003,10; },{},{} -13973,Poison_Bottle_30_Box,Poison Bottle Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 678,30; },{},{} -13974,TW_Scroll01,Fisherman Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -13975,Picture_Diary_Box,Diary Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12304,604800; },{},{} -13976,Mini_Heart_Box,Mini Heart Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12305,604800; },{},{} -13977,Newcomer_Box,Freshman Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12306,604800; },{},{} -13978,Kid_Box,Kid Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12307,604800; },{},{} -13979,Magic_Castle_Box,Magic Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12308,604800; },{},{} -13980,Bulging_Head_Box,JJangu Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12309,604800; },{},{} -13981,Picture_Diary_Box_1m,Diary Magic Powder Box 30 Days,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12304,2592000; },{},{} -13982,Mini_Heart_Box_1m,Mini Heart Magic Powder Box 30 Days,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12305,2592000; },{},{} -13983,Newcomer_Box_1m,Freshman Magic Powder Box 30 Days,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12306,2592000; },{},{} -13984,Kid_Box_1m,Kid Magic Powder Box 30 Days,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12307,2592000; },{},{} -13985,Magic_Castle_Box_1m,Magic Magic Powder Box 30 Days,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12308,2592000; },{},{} -13986,Bulging_Head_Box_1m,JJangu Magic Powder Box 30 Days,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12309,2592000; },{},{} -13987,Ori_Stone_5_Box,Rough Oridecon 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 756,5; },{},{} -13988,Ori_Stone_50_Box,Rough Oridecon 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 756,50; },{},{} -13989,Acidbomb_10_Box,Acid Bomb 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Acidbomb_10_Box); /*getitem 7135,10; getitem 7136,10;*/ },{},{} -13990,Job_Manual50_Box,JOB Battle Manual Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14592,10; },{},{} -13991,Tiger_Mask_Box,Tiger Mask Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5098,1; },{},{} -13992,Cat_Hat_Box,Pussy Cat Bell Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5099,1; },{},{} -13993,Alice_Doll_Box,Alice Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5137,1; },{},{} -13994,Speed_Up_Potion_Box5,Speed Potion 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12016,5; },{},{} -13995,Speed_Up_Potion_Box10,Speed Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12016,10; },{},{} -13996,Big_Bun_Box100,Big Bun 100 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14522,100; },{},{} -13997,Big_Bun_Box500,Big Bun 500 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14522,500; },{},{} -13998,Giant_Fly_Wing_Box500,Giant Fly Wing 500 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12212,500; },{},{} -13999,Pill__Box100,Pill 100 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14523,100; },{},{} -14000,Pill__Box500,Pill 500 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14523,500; },{},{} -14001,Basic_Siege_Supply_Box,Recruit Siege Supply Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Basic_Siege_Supply_Box); /*getitem 11503,25; getitem 11504,10;*/ },{},{} -14002,Adv_Siege_Supply_Box,Veteran Siege Supply Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Adv_Siege_Supply_Box); /*getitem 11503,50; getitem 11504,20;*/ },{},{} -14003,Elite_Siege_Supply_Box,Elite Siege Supply Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Elite_Siege_Supply_Box); /*getitem 11503,100; getitem 11504,50;*/ },{},{} -14004,Poison_Bottle_10_Box,Poison Bottle 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 678,10; },{},{} -14005,Poison_Bottle_5_Box,Poison Bottle 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 678,5; },{},{} -14006,F_Drooping_W_Kitty_Box,Evolved Drooping Cat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5372,1; },{},{} -14007,F_Rabbit_Ear_Hat_Box,Evolved Rabbits Headband Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5378,1; },{},{} -14008,F_L_Orc_Hero_Helm_Box,Evolved Helmet Of Orc Hero Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5375,1; },{},{} -14009,F_Love_Angel_Box,Love Angel Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12287,604800; },{},{} -14010,F_Squirrel_Box,Squillroll Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12288,604800; },{},{} -14011,F_Gogo_Box,Gogo Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12289,604800; },{},{} -14012,F_Love_Angel_Box_1m,Love Angel Magic Powder Box 30 Days,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13915,2592000; },{},{} -14013,F_Squirrel_Box_1m,Squillroll Magic Powder Box 30 Days,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13916,2592000; },{},{} -14014,F_Gogo_Box_1m,Gogo Magic Powder Box 30 Days,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13917,2592000; },{},{} -14015,F_Wasteland_Outlaw_Box,Western Outlaw Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13107,604800; },{},{} -14016,F_Lever_Action_Rifle_Box,Lever Action Rifle Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13170,604800; },{},{} -14017,F_All_In_One_Ring_Box,All In One Ring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2741,604800; },{},{} -14018,F_Spritual_Tunic_Box,Spiritual Tunic Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2384,604800; },{},{} -14019,F_Recuperative_Box,Recuvative Armor Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2385,604800; },{},{} -14020,F_Shelter_Resist_Box,Shell Of Resistance Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2132,604800; },{},{} -14021,F_Sylphid_Manteau_Box,Silf Manteau Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2543,604800; },{},{} -14022,F_Refresh_Shoes_Box,Refresh Shoes Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2439,604800; },{},{} -14023,F_Toast_Box,Crunch Toast Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5391,604800; },{},{} -14024,F_Robo_Eye_Box,Robo Eye Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5325,1; },{},{} -14025,F_Twin_Ribbon_Box,Maiden's Twin Ribbon Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5187,1; },{},{} -14026,F_Diadem_Box,Diadem Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5313,1; },{},{} -14027,F_Fish_Head_Hat_Box,Fish Head Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5380,1; },{},{} -14028,F_Santa_Poring_Hat_Box,SantaPoring Cap Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5381,1; },{},{} -14029,F_Bell_Ribbon_Box,Bell Ribbon Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5382,1; },{},{} -14030,F_Mimic_Scroll_Box5,Mimic Summoning 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12276,5; },{},{} -14031,F_Disguise_Scroll_Box5,Disguise Summoning 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12277,5; },{},{} -14032,F_Alice_Scroll_Box5,Alice Summoning 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12278,5; },{},{} -14033,F_Mimic_Scroll_Box10,Mimic Summoning 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12276,10; },{},{} -14034,F_Disguise_Scroll_Box10,Disguise Summoning 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12277,10; },{},{} -14035,F_Alice_Scroll_Box10,Alice Summoning 10 Box),18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12278,10; },{},{} -14036,F_New_Style_Coupon_Box,New Style Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7622,1; },{},{} -14037,F_Repair_Scroll_Box,Repair Weapon Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14521,5; getitem 1002,5; getitem 998,5; getitem 756,5; getitem 999,5; },{},{} -14038,F_Repair_Scroll_Box10,Repair Weapon Scroll 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14521,10; getitem 1002,10; getitem 998,10; getitem 756,10; getitem 999,10; },{},{} -14039,F_Hockey_Mask_Box,Hockey Mask Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5314,604800; },{},{} -14040,F_Observer_Box,Observer Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5315,604800; },{},{} -14041,F_WOB_Rune_Box5,Yellow Butterfly Wing 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14582,5; },{},{} -14042,F_WOB_Rune_Box10,Yellow Butterfly Wing Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14582,10; },{},{} -14043,F_WOB_Schwaltz_Box5,Green Butterfly Wing 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14583,5; },{},{} -14044,F_WOB_Schwaltz_Box10,Green Butterfly Wing Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14583,10; },{},{} -14045,F_WOB_Rachel_Box5,Red Butterfly Wing 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14584,5; },{},{} -14046,F_WOB_Rachel_Box10,Red Butterfly Wing Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14584,10; },{},{} -14047,F_WOB_Local_Box5,Blue Butterfly Wing 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14585,5; },{},{} -14048,F_WOB_Local_Box10,Blue Butterfly Wing Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14585,10; },{},{} -14049,F_Spark_Candy_Box5,Candy 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14586,5; },{},{} -14050,F_Spark_Candy_Box10,Candy 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14586,10; },{},{} -14051,F_Dun_Tel_Scroll2_Box5,Dungeon Teleport Scroll II 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14581,5; },{},{} -14052,F_Dun_Tel_Scroll2_Box10,Dungeon Teleport Scroll II 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14581,10; },{},{} -14053,F_Little_Angel_Doll_Box,Little Angel Doll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5324,1; },{},{} -14054,F_Triple_Poring_Hat_Box,Poring 3 Hats Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5255,1; },{},{} -14055,F_Nagan_Box,Refined Nagan Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13407,604800; },{},{} -14056,F_Skewer_Box,Refined Brocca Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1424,604800; },{},{} -14057,F_Survival_Rod_Box,Refined Survivor's Rod Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1628,604800; },{},{} -14058,F_Quadrille_Box,Refined Quadrille Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1537,604800; },{},{} -14059,F_Great_Axe_Box,Refined Great Axe Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1378,604800; },{},{} -14060,F_Bloody_Roar_Box,Refined Bloody Roar Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1273,604800; },{},{} -14061,F_Hardback_Box,Refined Hardcover Book Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1567,604800; },{},{} -14062,F_Fire_Brand_Box,Refined Fireblend Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13408,604800; },{},{} -14063,F_Immaterial_Sword_Box,Refined Immaterial Sword Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13409,604800; },{},{} -14064,F_Unholy_Touch_Box,Refined Unholy Touch Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1274,604800; },{},{} -14065,F_Clack_Of_Servival_Box,Refined Survivor's Manteau Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2535,1209600; },{},{} -14066,F_Masquerade_Box,Refined Masquerade Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5326,1209600; },{},{} -14067,F_Orc_Hero_Helm_Box,Refined Helmet of Orc Hero Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5327,1209600; },{},{} -14068,F_Ear_Of_Devil_Wing_Box,Refined Wing of Diablo Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5328,1209600; },{},{} -14069,F_Dark_Blindfold_Box,Refined Dark Blinder Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5329,1209600; },{},{} -14070,F_K_Drooping_Kitty_Box,Refined Drooping Cat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5330,1209600; },{},{} -14071,F_Corsair_Box,Refined Corsair Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5331,1209600; },{},{} -14072,F_Bloody_Iron_Ball_Box,Refined Bloodied Shackle Ball Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2710,604800; },{},{} -14073,F_Spiritual_Ring_Box,Refined Spiritual Ring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2711,604800; },{},{} -14074,F_G_O_I_Box5,Wine Glass of Illusion 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14538,5; },{},{} -14075,F_G_O_I_Box10,Glass Of Illusion 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14538,10; },{},{} -14076,F_Shadow_Armor_S_Box5,Scroll of Shadow Armor 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14539,5; },{},{} -14077,F_Shadow_Armor_S_Box10,Scroll of Shadow Armor 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14539,10; },{},{} -14078,F_Shadow_Armor_S_Box30,Scroll of Shadow Armor 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14539,30; },{},{} -14079,F_Holy_Armor_S_Box5,Scroll of Holy Armor 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14540,5; },{},{} -14080,F_Holy_Armor_S_Box10,Scroll of Holy Armor 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14540,10; },{},{} -14081,F_Holy_Armor_S_Box30,Scroll of Holy Armor 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14540,30; },{},{} -14082,FS_Def_Potion_Box10,Small Defense Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14541,10; },{},{} -14083,FS_Def_Potion_Box30,Small Physical Defense Potion 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14541,30; },{},{} -14084,FS_Def_Potion_Box50,Small Physical Defense Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14541,50; },{},{} -14085,FB_Def_Potion_Box10,Big Defense Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14542,10; },{},{} -14086,FB_Def_Potion_Box30,Large Physical Defense Potion 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14542,30; },{},{} -14087,FB_Def_Potion_Box50,Large Physical Defense Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14542,50; },{},{} -14088,FS_Mdef_Potion_Box10,Small Magic Defense Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14543,10; },{},{} -14089,FS_Mdef_Potion_Box30,Small Magical Defense Potion 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14543,30; },{},{} -14090,FS_Mdef_Potion_Box50,Small Magical Defense Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14543,50; },{},{} -14091,FB_Mdef_Potion_Box10,Big Magic Defense Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14544,10; },{},{} -14092,FB_Mdef_Potion_Box30,Large Magical Defense Potion 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14544,30; },{},{} -14093,FB_Mdef_Potion_Box50,Large Magical Defense Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14544,50; },{},{} -14094,F_Flying_Angel_Box,Flying Angel Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5210,1; },{},{} -14095,F_Cat_Hat_Box,Neko Mimi Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5099,1; },{},{} -14096,F_M_F_H_Box,Moonlight Flower Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5214,1; },{},{} -14097,F_Chick_Hat_Box,Baby Chick Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5283,1; },{},{} -14098,F_Pecopeco_Hairband_Box,Peco Peco Hairband Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5286,1209600; },{},{} -14099,F_Red_Glasses_Box,Red Glasses Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5288,1209600; },{},{} -14100,F_Whisper_Mask_Box,Whisper Mask Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5294,1209600; },{},{} -14101,F_Ramen_Hat_Box,Ramen Hat Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5293,1209600; },{},{} -14102,F_Dun_Tele_Scroll1_Box,Dungeon Teleport Scroll 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14527,5; },{},{} -14103,F_Max_Weight_Up_Box,Gym Membership Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7776,1; },{},{} -14104,F_S_Life_Potion_Box,Small Life Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14534,10; },{},{} -14105,F_S_Life_Potion_Box30,Small Life Potion 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14534,30; },{},{} -14106,F_S_Life_Potion_Box50,Small Life Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14534,50; },{},{} -14107,F_M_Life_Potion_Box,Medium Life Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14535,10; },{},{} -14108,F_M_Life_Potion_Box30,Large Life Potion 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14535,30; },{},{} -14109,F_M_Life_Potion_Box50,Large Life Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14535,50; },{},{} -14110,F_Abrasive_Box5,Abrasive 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14536,5; },{},{} -14111,F_Abrasive_Box10,Abrasive 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14536,10; },{},{} -14112,F_Regeneration_Box5,Regeneration Potion 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14537,5; },{},{} -14113,F_Regeneration_Box10,Regeneration Potion 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14537,10; },{},{} -14114,F_Dun_Tele_Scroll_Box10,Dungeon Teleport Scroll 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14527,10; },{},{} -14115,F_Infiltrator_Box,Refined Infiltrator Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1267,604800; },{},{} -14116,F_Muramasa_Box,Refined Muramasa Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1173,604800; },{},{} -14117,F_Excalibur_Box,Refined Excalibur Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13401,604800; },{},{} -14118,F_Combat_Knife_Box,Combat Knife Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13021,604800; },{},{} -14119,F_Counter_Dagger_Box,Counter Dagger Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13022,604800; },{},{} -14120,F_Kaiser_Knuckle_Box,Refined Kaiser Knuckle Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1817,604800; },{},{} -14121,F_Mighty_Staff_Box,Refined Mighty Staff Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1623,604800; },{},{} -14122,F_Right_Epsilon_Box,Light Epsilon Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1372,604800; },{},{} -14123,F_Balistar_Box,Refined Ballista Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1728,604800; },{},{} -14124,F_Diary_Of_Great_Sage,Sage's Diary Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1563,604800; },{},{} -14125,F_Asura_Box,Asura Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13023,604800; },{},{} -14126,F_Apple_Of_Archer_Box,Apple of Archer Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5265,1209600; },{},{} -14127,F_Bunny_Band_Box,Bunny Band Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5266,1209600; },{},{} -14128,F_Sahkkat_Box,Refined Sakkat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5267,1209600; },{},{} -14129,F_Lord_Circlet_Box,Refined Grand Circlet Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5268,1209600; },{},{} -14130,F_Elven_Ears_Box,Elven Ears Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2686,1209600; },{},{} -14131,F_Steel_Flower_Box,Steel Flower Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2687,1209600; },{},{} -14132,F_Critical_Ring_Box,Critical Ring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2688,604800; },{},{} -14133,F_Earring_Box,Earring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2689,604800; },{},{} -14134,F_Ring_Box,Ring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2690,604800; },{},{} -14135,F_Necklace_Box,Necklace Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2691,604800; },{},{} -14136,F_Glove_Box,Glove Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2692,604800; },{},{} -14137,F_Brooch_Box,Brooch Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2693,604800; },{},{} -14138,F_Rosary_Box,Rosary Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2694,604800; },{},{} -14139,F_Safety_Ring_Box,Safety Ring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2695,604800; },{},{} -14140,F_Vesper_Core_Box01,Refined Vesper Core 01 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2696,604800; },{},{} -14141,F_Vesper_Core_Box02,Refined Vesper Core 02 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2697,604800; },{},{} -14142,F_Vesper_Core_Box03,Refined Vesper Core 03 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2698,604800; },{},{} -14143,F_Vesper_Core_Box04,Refined Vesper Core 04 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2699,604800; },{},{} -14144,F_Vigorgra_Package1,Vigorgra Box1,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12250,2; getitem 12251,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; },{},{} -14145,F_Vigorgra_Package2,Vigorgra Box2,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12250,2; getitem 12255,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; },{},{} -14146,F_Vigorgra_Package3,Vigorgra Box3,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12252,2; getitem 12253,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; },{},{} -14147,F_Vigorgra_Package4,Vigorgra Box4,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12252,2; getitem 12255,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; },{},{} -14148,F_Vigorgra_Package5,Vigorgra Box5,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12252,2; getitem 12250,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; },{},{} -14149,F_Vigorgra_Package6,Vigorgra Box6,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12250,2; getitem 12251,2; getitem 12208,2; getitem 12215,15; getitem 12217,20; getitem 12211,1; getitem 7621,1; },{},{} -14150,F_Vigorgra_Package7,Vigorgra Box7,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12250,4; getitem 12251,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; },{},{} -14151,F_Vigorgra_Package8,Vigorgra Box8,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12250,4; getitem 12255,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; },{},{} -14152,F_Vigorgra_Package9,Start your Journey Pack,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12252,4; getitem 12253,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; },{},{} -14153,F_Vigorgra_Package10,Siege Mode Pack,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12252,4; getitem 12255,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; },{},{} -14154,F_Vigorgra_Package11,1 Hour Survival Pack,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12252,4; getitem 12250,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; },{},{} -14155,F_Vigorgra_Package12,Weekend Hunting Pack,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12250,4; getitem 12251,4; getitem 12208,4; getitem 12215,30; getitem 12217,40; getitem 12211,2; getitem 7621,2; },{},{} -14156,F_Battle_Manual_Box,Battle Manual Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12208,10; },{},{} -14157,F_Insurance_Package,Insurance Package,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12209,10; },{},{} -14158,F_Bubble_Gum_Box,Bubble Gum Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12210,10; },{},{} -14159,F_Str_Dish_Box,Steamed Tongue Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12202,10; },{},{} -14160,F_Agi_Dish_Box,Steamed Scorpion Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12203,10; },{},{} -14161,F_Int_Dish_Box,Dragon Breath Cocktail Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12204,10; },{},{} -14162,F_Dex_Dish_Box,Hwergelmir's Tonic Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12205,10; },{},{} -14163,F_Luk_Dish_Box,Nine Tail Dish Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12206,10; },{},{} -14164,F_Vit_Dish_Box,Stew Of Immortality Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12207,10; },{},{} -14165,F_Kafra_Card_Box,Kafra Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12211,10; },{},{} -14166,F_Giant_Fly_Wing_Box,Giant Fly Wing Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12212,10; },{},{} -14167,F_Neuralizer_Box,Neuralizer Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12213,1; },{},{} -14168,F_Convex_Mirror_Box,Convex Mirror Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12214,10; },{},{} -14169,F_Blessing_10_Scroll_Box,Blessing 10 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12215,10; },{},{} -14170,F_Inc_Agi_10_Scroll_Box,Increase AGI 10 scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12216,10; },{},{} -14171,F_Aspersio_5_Scroll_Box,Aspersio 5 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12217,10; getitem 523,10; },{},{} -14172,F_Assumptio_5_Scroll_Box,Assumptio 5 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12218,10; },{},{} -14173,F_Wind_Walk_10_Scroll_Box,Wind Walk 10 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12219,10; },{},{} -14174,F_Adrenaline_Scroll_Box,Adrenaline 5 Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12220,10; },{},{} -14175,F_Megaphone_Box,Megaphone 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12221,10; },{},{} -14176,F_Enriched_Elunium_Box,Enriched Elunium Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7619,10; },{},{} -14177,F_Enriched_Oridecon_Box,Enriched Oridecon Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7620,10; },{},{} -14178,F_Token_Of_Siegfried_Box,Token of Siegfried Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7621,10; },{},{} -14179,F_Giant_Fly_Wing_Box50,Giant Fly Wing 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12212,50; },{},{} -14180,F_Giant_Fly_Wing_Box100,Giant Fly Wing 100 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12212,100; },{},{} -14181,F_Dex_Dish_Box30,Hwergelmir's Tonic 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12205,30; },{},{} -14182,F_Dex_Dish_Box50,Hwergelmir's Tonic 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12205,50; },{},{} -14183,F_Luk_Dish_Box30,Nine Tail Dish 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12206,30; },{},{} -14184,F_Luk_Dish_Box50,Nine Tail Dish 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12206,50; },{},{} -14185,F_Inc_Agi_10_Box30,Increase Agility Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12216,30; },{},{} -14186,F_Inc_Agi_10_Box50,Increase Agility Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12216,50; },{},{} -14187,F_Vit_Dish_Box30,Stew of Immortality 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12207,30; },{},{} -14188,F_Vit_Dish_Box50,Stew of Immortality 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12207,50; },{},{} -14189,F_Insurance_Package30,Life Insurrance 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12209,30; },{},{} -14190,F_Insurance_Package50,Life Insurrance 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12209,50; },{},{} -14191,F_Convex_Mirror_Box5,Convex Mirror 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12214,5; },{},{} -14192,F_Convex_Mirror_Box30,Convex Mirror 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12214,30; },{},{} -14193,F_Blessing10_Box30,Blessing Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12215,30; },{},{} -14194,F_Blessing10_Box50,Lv10 Blessing Scroll Box 50,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12215,50; },{},{} -14195,F_Adrenaline10_Box30,Adrenaline Rush Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12220,30; },{},{} -14196,F_Adrenaline10_Box50,Adrenaline Rush Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12220,50; },{},{} -14197,F_Assumptio_5_Box30,Assumptio Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12218,30; },{},{} -14198,F_Assumptio_5_Box50,Lv5 Assumptio Scroll Box 50,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12218,50; },{},{} -14199,F_Aspersio_5_Box30,Aspersio Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12217,30; getitem 523,30; },{},{} -14200,F_Aspersio_5_Box50,Aspersio Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12217,50; getitem 523,50; },{},{} -14201,F_Agi_Dish_Box30,Steamed Scorpion 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12203,30; },{},{} -14202,F_Agi_Dish_Box50,Steamed Scorpion 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12203,50; },{},{} -14203,F_Wind_Walk10_Box30,Wind Walk Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12219,30; },{},{} -14204,F_Wind_Walk10_Box50,Wind Walk Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12219,50; },{},{} -14205,F_Int_Dish_Box30,Dragon Breath Cocktail 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12204,30; },{},{} -14206,F_Int_Dish_Box50,Dragon Breath Cocktail 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12204,50; },{},{} -14207,F_Battle_Manual_Box1,Field Manual Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12208,1; },{},{} -14208,F_Battle_Manual_Box5,Battle Manual 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12208,5; },{},{} -14209,F_Siegfried_Box5,Token of Siegfried 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7621,5; },{},{} -14210,F_Siegfried_Box20,Token of Siegfried 20 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7621,20; },{},{} -14211,F_Kafra_Card_Box30,Kafra Card 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12211,30; },{},{} -14212,F_Kafra_Card_Box50,Kafra Card 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12211,50; },{},{} -14213,F_Str_Dish_Box30,Steamed Tongue 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12202,30; },{},{} -14214,F_Str_Dish_Box50,Steamed Tongue 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12202,50; },{},{} -14215,F_Bubble_Gum_Box1,Bubble Gum Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12210,1; },{},{} -14216,F_Bubble_Gum_Box5,Bubble Gum 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12210,5; },{},{} -14217,F_Megaphone_Box1,Megaphone Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12221,1; },{},{} -14218,F_Megaphone_Box5,Megaphone 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12221,5; },{},{} -14219,F_Enriched_Elunium_Box5,Enriched Elunium 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7619,5; },{},{} -14220,F_Enriched_Oridecon_Box5,Enriched Oridecon 5 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7620,5; },{},{} -14221,MP_Scroll_Box,Mystical Amplification Scroll 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14593,10; },{},{} -14222,MP_Scroll_Box30,Mystical Amplification Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14593,30; },{},{} -14223,MP_Scroll_Box50,Mystical Amplification Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14593,50; },{},{} -14224,Quagmire_Scroll_Box,Quagmire Scroll 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14594,10; },{},{} -14225,Quagmire_Scroll_Box30,Quagmire Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14594,30; },{},{} -14226,Quagmire_Scroll_Box50,Quagmire Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14594,50; },{},{} -14227,Healing_Staff_Box,Healing Staff Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1638,604800; },{},{} -14228,Praxinus_Box,Praccsinos Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2752,604800; },{},{} -14229,Cherry_Blossom_Scroll,Cherry Blossom Scroll,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Sakura_Scroll); },{},{} -14230,Note_Headphones_Box,Note Headphones Box,18,,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5151,1; },{},{} -14231,Novice_Breastplate_Boxes,Novice Breastplate Boxes,18,,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -14232,Yggdrasilberry_Box_,Yggdrasil Berry 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 607,10; },{},{} -14233,Dead_Tree_Branch_Box1,Dead Branch 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 604,10; },{},{} -14234,Dead_Tree_Branch_Box2,Dead Branch 25 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 604,25; },{},{} -14235,Field_Manual_Box_2,Field Manual 2 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12208,2; },{},{} -14236,Steamed_Tongue_Box_20,Steamed Tongue 20 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12202,20; },{},{} -14237,Steamed_Desert_Scorpions_Box_20,Steamed Desert Scorpions Box(20),18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12203,20; },{},{} -14238,Stew_Of_Immortality_Box_20,Immortal Stew 20 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12207,20; },{},{} -14239,Dragon_Breath_Cocktail_Box_20,Dragon Breath Cocktail 20 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12204,20; },{},{} -14240,Hwergelmir's_Tonic_Box_20,Hwergelmir's Tonic 20 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12205,20; },{},{} -14241,Nine_Tail_Dish_Box_20,Nine Tail Dish 20 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12206,20; },{},{} -14242,Beholder_Ring_Box,Beholder Ring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Beholder_Ring_Box); /*rentitem 2753,604800;*/ },{},{} -14243,Hallow_Ring_Box,Hallow Ring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Hallow_Ring_Box); /*rentitem 2754,604800;*/ },{},{} -14244,Clamorous_Ring_Box,Clamorous Ring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Clamorous_Ring_Box); /*rentitem 2755,604800;*/ },{},{} -14245,Chemical_Ring_Box,Chemical Ring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Chemical_Ring_Box); /*rentitem 2756,604800;*/ },{},{} -14246,Insecticide_Ring_Box,Insecticide Ring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Insecticide_Ring_Box); /*rentitem 2757,604800;*/ },{},{} -14247,Fisher_Ring_Box,Fisher Ring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Fisher_Ring_Box); /*rentitem 2758,604800;*/ },{},{} -14248,Decussate_Ring_Box,Decussate Ring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Decussate_Ring_Box); /*rentitem 2759,604800;*/ },{},{} -14249,Bloody_Ring_Box,Bloody Ring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Bloody_Ring_Box); /*rentitem 2760,604800;*/ },{},{} -14250,Satanic_Ring_Box,Satanic Ring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Satanic_Ring_Box); /*rentitem 2761,604800;*/ },{},{} -14251,Dragoon_Ring_Box,Dragon Ring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Dragoon_Ring_Box); /*rentitem 2762,604800;*/ },{},{} -14252,Beholder_Ring_Box2,Beholder Ring Box II,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2753,1; },{},{} -14253,Hallow_Ring_Box2,Hallow Ring Box II,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2754,1; },{},{} -14254,Clamorous_Ring_Box2,Clamorous Ring Box II,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2755,1; },{},{} -14255,Chemical_Ring_Box2,Chemical Ring Box II,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2756,1; },{},{} -14256,Insecticide_Ring_Box2,Insecticide Ring Box II,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2757,1; },{},{} -14257,Fisher_Ring_Box2,Fisher Ring Box II,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2758,1; },{},{} -14258,Decussate_Ring_Box2,Decussate Ring Box II,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2759,1; },{},{} -14259,Bloody_Ring_Box2,Bloody Ring Box II,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2760,1; },{},{} -14260,Satanic_Ring_Box2,Satanic Ring Box II,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2761,1; },{},{} -14261,Dragoon_Ring_Box2,Dragon Ring Box II,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2762,1; },{},{} -14262,Diary_Magic_Powder_Box,Diary Magic Powder Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12304,604800; },{},{} -14263,Mini_Heart_Magic_Powder_Box,Mini Heart Magic Powder Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12305,604800; },{},{} -14264,Freshman_Magic_Powder_Box,Freshman Magic Powder Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12306,604800; },{},{} -14265,Kid_Magic_Powder_Box,Kid Magic Powder Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12307,604800; },{},{} -14266,Magic_Magic_Powder_Box,Magic Magic Powder Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12308,604800; },{},{} -14267,JJangu_Magic_Powder_Box,JJangu Magic Powder Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12309,604800; },{},{} -14268,Diary_Magic_Powder_Box4,Diary Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -14269,Mini_Heart_Magic_Powder_Box4,Mini Heart Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -14270,Freshman_Magic_Powder_Box4,Freshman Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -14271,Kid_Magic_Powder_Box4,Kid Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -14272,Magic_Magic_Powder_Box4,Magic Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -14273,JJangu_Magic_Powder_Box4,JJangu Magic Powder Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -14274,Amplification_10_Scroll_Box2,Mystical Amplification Scroll 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14593,10; },{},{} -14275,Amplification_30_Scroll_Box2,Mystical Amplification Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14593,30; },{},{} -14276,Amplification_50_Scroll_Box2,Mystical Amplification Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14593,50; },{},{} -14277,Quagmire_10_Scroll_Box2,Quagmire Scroll 10 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14594,10; },{},{} -14278,Quagmire_30_Scroll_Box2,Quagmire Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14594,30; },{},{} -14279,Quagmire_50_Scroll_Box2,Quagmire Scroll 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14594,50; },{},{} -14280,Healing_Staff_Box2,Healing Staff Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1638,1; },{},{} -14281,Praccsinos_Box,Praccsinos Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2752,1; },{},{} -14282,Emperium_Box,Emperium Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 714,1; },{},{} -14283,Marriage_Certificate_Box,Written Oath Of Marriage Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6026,1; },{},{} -14284,Muffler_Box,Muffler Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2548,1; },{},{} -14285,Balkiriah_Shield_Box,Balkiriah Shield Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2137,1; },{},{} -14286,Skull_Ring_Box,Skull Ring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2763,1; },{},{} -14287,Baricade_Repair_Kit,Barricade Repair Kit,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1019,30; getitem 999,10; getitem 1011,10; getitem 984,5; },{},{} -14288,Guardian_Stone_Repair_Kit,Guardian Stone Repair Kit,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 984,1; getitem 985,1; getitem 7049,30; getitem 717,5; getitem 716,5; getitem 715,5; },{},{} -14289,Cloth_Dye_Coupon_Box,New Clothing Dye Coupon Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6046,1; },{},{} -14290,Cloth_Dye_Coupon2_Box,Original Clothing Dye Coupon Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6047,1; },{},{} -14291,Cloth_Dye_Coupon3_Box,Clothing Dye Coupon Box,2,,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6046,1; },{},{} -14292,Cloth_Dye_Coupon4_Box,Clothing Dye Coupon Box II,2,,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6047,1; },{},{} -14293,Mercenary_Contract_Box,Mercenary Contract Box,2,,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6050,1; },{},{} -14294,Mercenary_Contract_Box5,Mercenary Contract Box 5ea,2,,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6050,5; },{},{} -14295,Mercenary_Contract_Box10,Mercenary Contract Box 10ea,2,,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6050,10; },{},{} -14296,Angel_Scroll,Angel Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Angel_Scroll); },{},{} -14297,Devil_Scroll,Devil Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Devil_Scroll); },{},{} -14298,Surprise_Scroll,Surprise Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Surprise_Scroll); },{},{} -14300,Mask_Of_Ifrit_Box,Mask Of Ifrit Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5420,1; },{},{} -14301,Ifrit's_Ear_Box,Ears Of Ifrit Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5421,1; },{},{} -14304,Scuba_Mask_Box,Scuba Mask Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5397,1; },{},{} -14306,RWC_Special_Scroll,RWC Special Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_RWC_Special_Scroll); },{},{} -14307,RWC_Limited_Scroll,RWC Limited Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_RWC_Limited_Scroll); },{},{} -14308,Ardor_Scroll,Ardor Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -14314,PhreeoniS_Box,Phreeoni Scroll Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14597,10; },{},{} -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,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); },{},{} -14349,Mental_Potion20_Box,Mental Potion 20 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14600,20; },{},{} -14350,Mental_Potion50_Box,Mental Potion 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14600,50; },{},{} -14351,Tyr's_Blessing20_Box,Tyr's Blessing 20 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14601,20; },{},{} -14352,Tyr's_Blessing50_Box,Tyr's Blessing 50 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14601,50; },{},{} -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; },{},{} -14377,Shout_Megaphone_Box,Scream Megaphone Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12351,1; },{},{} -14379,Love_Daddy_Box,Love Daddy Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5489,1; },{},{} -14380,Anubis_Helm_Box,Anubis Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5490,1; },{},{} -14381,Piercing_Box_M,Piercing Box M,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1644,1; },{},{} -14382,Lich_Bone_Box_M,Lich Bone Box M,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1645,1; },{},{} -14383,Long_Horn_Box_M,Long Horn Box M,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1428,1; },{},{} -14384,Hunting_Spear_Box_M,Hunting Spear Box M,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1429,1; },{},{} -14385,Death_Note_Box_M,Death Note Box M,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 1579,1; },{},{} -14386,Destruction_Box_M,Destruction Box M,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2003,1; },{},{} -14387,Rider_Insignia_Box_M,Rider Insignia Box M,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2551,1; },{},{} -14388,Mithril_Cape_Box_M,Mithril Cape Box M,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2552,1; },{},{} -14389,Sniping_Box_M,Sniping Box M,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2398,1; },{},{} -14390,Orleans_Box_M,Orleans Box M,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2785,1; },{},{} -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); },{},{} -// -14426,Fortune_Sword_Box,Neo Fortune Sword Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13043,86400; },{},{} -14427,House_Auger_Box,Neo House Auger,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13044,86400; },{},{} -14428,Kamaitachi_Box,Neo Kamaitachi Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13045,86400; },{},{} -14429,Berserk_Guitar_Box,Neo Berserk Guitar Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1928,86400; },{},{} -14430,Doom_Slayer_Box,Neo Doom Slayer Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1386,86400; },{},{} -14431,Huuma_Blaze_Shuriken_Box,Neo Huuma Blaze Shuriken Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13308,86400; },{},{} -14432,Odin's_Blessing_Box,Neo Odin's Blessing Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 15001,86400; },{},{} -14433,Ring_Of_Flame_Lord_Box,Neo Ring of Flame Lord Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2792,86400; },{},{} -14434,Ring_Of_Resonance_Box,Neo Ring of Resonance Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2793,86400; },{},{} -14435,Boys_Cap_Box,Neo Boys Cap Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5492,86400; },{},{} -14436,Ulle's_Cap_Box,Neo Ulle's Cap Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5493,86400; },{},{} -14437,Sphinx_Helm_Box,Neo Sphinx Helm Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5494,86400; },{},{} -14438,Honglyun's_Sword_Box,Honglyun's Sword Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13420,1; },{},{} -14439,Power_Of_Thor_Box,Power Of Thor Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5495,1; },{},{} -14440,Dice_Hat_Box,Dice Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5496,1; },{},{} -14441,King_Tiger_Doll_Hat_Box,King Tiger Doll Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5497,1; },{},{} -14442,Wondering_Wolf_Helm_Box,Wondering Wolf Helm Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5498,1; },{},{} -14443,Pizza_Hat_Box,Pizza Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5499,1; },{},{} -14444,Icecream_Hat_Box,Icecream Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5500,1; },{},{} -14447,Pirate's_Pride_Box,Pirate's Pride Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5501,1; },{},{} -14448,Necromencer's_Hood_Box,Necromancer's Hood Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5502,1; },{},{} -14459,Rabbit_Magic_Hat_Box,Magic Rabbit Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5503,1; },{},{} -14460,China_Wedding_Veil_Box,RO 5th Wedding Anniversary Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5504,1; },{},{} -14461,Asara_Fairy_Hat_Box,Ashura Fairy Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5505,1; },{},{} -14466,Valentine_Pledge_Box,Valentine's Emblem Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Valentine_Pledge_Box); /*rentitem 5817,525600;*/ },{},{} -14469,Ox_Tail_Scroll,Ox Tail Egg,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Ox_Tail_Scroll); },{},{} -//14470,,,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -//14471,,,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -//14472,,,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -//14473,,,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -//14474,,,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -//14475,,,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -//14476,,,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -//14477,,,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -//14478,,,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -//14479,,,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -//14480,,,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -//14481,,,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -//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; },{},{} -14488,Blue_Pajamas_Hat_Box,Blue Pajamas Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5506,1; },{},{} -14489,Pink_Pajamas_Hat_Box,Pink Pajamas Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5507,1; },{},{} -14490,Shark_Hat_Box,Shark Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5508,1; },{},{} -14494,Samambaia_Box,Samambaia Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5511,1; },{},{} -14495,Aquarius_Diadem_Box,Aquarius Diadem Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5512,1; },{},{} -14496,Aquarius_Crown_Box,Aquarius Crown Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5513,1; },{},{} -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,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,,,,,,{ 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,4; },{},{} -14510,Light_Awakening_Pot,Light Awakening Potion,2,1500,,20,,,,,0xFFF7FEEF,63,2,,,40,,,{ sc_start SC_ASPDPOTION1,1800000,6; },{},{} -14511,Light_Berserk_Pot,Light Berserk Potion,2,3000,,20,,,,,0x41E646A6,63,2,,,85,,,{ sc_start SC_ASPDPOTION2,1800000,9; },{},{} -14512,Meteor_10_Scroll,Meteor Storm Scroll,11,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "WZ_METEOR",10; },{},{} -14513,Storm_10_Scroll,Storm Gust Scroll,11,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "WZ_STORMGUST",10; },{},{} -14514,Vermilion_10_Scroll,Lord of Vermilion Scroll,11,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "WZ_VERMILION",10; },{},{} -14515,Lex_Aeterna_Scroll,Lex Aeterna Scroll,11,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "PR_LEXAETERNA",1; },{},{} -14516,Magnificat_5_Scroll,Magnificat Scroll,11,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "PR_MAGNIFICAT",5; },{},{} -14517,CP_Helm_Scroll,Chemical Protection Helm Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ unitskilluseid getcharid(3),"AM_CP_HELM",5; },{},{} -14518,CP_Shield_Scroll,Chemical Protection Shield Scrol,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ unitskilluseid getcharid(3),"AM_CP_SHIELD",5; },{},{} -14519,CP_Armor_Scroll,Chemical Protection Armor Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ unitskilluseid getcharid(3),"AM_CP_ARMOR",5; },{},{} -14520,CP_Weapon_Scroll,Chemical Protection Weapon Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ unitskilluseid getcharid(3),"AM_CP_WEAPON",5; },{},{} -14521,Repair_Scroll,Repair Weapon Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ unitskilluseid getcharid(3),"BS_REPAIRWEAPON",1; },{},{} -14522,Big_Bun,Big Bun,0,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 100,0; },{},{} -14523,Pill_,Pill,0,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 0,100; },{},{} -14524,Superb_Fish_Slice,Superb Fish Slice,0,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 100,100; },{},{} -14525,Chewy_Ricecake,Chewy Ricecake,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ATKPOTION,1800000,10; },{},{} -14526,Oriental_Pastry,Oriental Pastry,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_MATKPOTION,1800000,10; },{},{} -14527,Dun_Tele_Scroll1,Dungeon Teleport Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashDungeon",1; },{},{} -14528,PVP_Tele_Scroll,PVP Teleport Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ warp "pvp_n_room",52,25; },{},{} -14529,Greed_Scroll,Greed Scroll,11,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "BS_GREED",1; },{},{} -14530,Flee_30_Scroll,Evasion Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_FLEEFOOD,1800000,30; },{},{} -14531,Accuracy_30_Scroll,Concentration Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_HITFOOD,1800000,30; },{},{} -14532,Battle_Manual25,Field Manual 25%,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_EXPBOOST,1800000,25; },{},{} -14533,Battle_Manual100,Field Manual 100%,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_EXPBOOST,1800000,100; },{},{} -14534,Small_Life_Potion,Small Life Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_HEAL3; sc_start4 SC_S_LIFEPOTION,600000,-5,5,0,0; },{},{} -14535,Med_Life_Potion,Medium Life Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_HEAL3; sc_start4 SC_L_LIFEPOTION,600000,-7,4,0,0; },{},{} -14536,Abrasive,Abrasive,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_MAGICALATTHIT; sc_start SC_INCCRI,300000,30; },{},{} -14537,Regeneration_Potion,Regeneration Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_LIGHTSPHERE; sc_start SC_INCHEALRATE,1800000,20; },{},{} -14538,Glass_Of_Illusion,Glass of Illusion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_STEAL; sc_start SC_INCFLEE2,60000,20; },{},{} -14539,Shadow_Armor_S,Shadow Armor Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_CLOAKING; sc_start4 SC_ELEMENTALCHANGE,1800000,1,Ele_Dark,1,0; },{},{} -14540,Holy_Armor_S,Holy Armor Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_BENEDICTIO; sc_start4 SC_ELEMENTALCHANGE,1800000,1,Ele_Holy,1,0; },{},{} -14541,S_Def_Potion,Small Defense Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_GUARD; sc_start SC_DEF_RATE,60000,3; },{},{} -14542,B_Def_Potion,Big Defense Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_GUARD; sc_start SC_DEF_RATE,180000,3; },{},{} -14543,S_Mdef_Potion,Small Magic Defense Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_SPELLBREAKER; sc_start SC_MDEF_RATE,60000,3; },{},{} -14544,B_Mdef_Potion,Big Magic Defense Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_SPELLBREAKER; sc_start SC_MDEF_RATE,180000,3; },{},{} -14545,Battle_Manual_X3,Field Manual 300%,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_EXPBOOST,1800000,300; },{},{} -14546,Fire_Cracker_Love,I Love You Firecracker,2,2,,20,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -14547,Fire_Cracker_Wday,Whiteday Firecracker,2,2,,20,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -14548,Fire_Cracker_Vday,Valentine's Day Firecracker,2,2,,20,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -14549,Fire_Cracker_Bday,Birthday Firecracker,2,2,,20,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -14550,Fire_Cracker_Xmas,Xmas Firecracker,2,2,,20,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -14551,Str_Dish01_,Fried Grasshopper Legs,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_STRFOOD,1200000,1; percentheal 5,0; },{},{} -14552,Str_Dish02_,Seasoned Sticky Webfoot,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_STRFOOD,1200000,2; percentheal 5,0; },{},{} -14553,Str_Dish03_,Bomber Steak,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_STRFOOD,1200000,3; percentheal 5,0; },{},{} -14554,Int_Dish01_,Grape Juice Herbal Tea,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INTFOOD,1200000,1; percentheal 0,5; },{},{} -14555,Int_Dish02_,Autumn Red Tea,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INTFOOD,1200000,2; percentheal 0,5; },{},{} -14556,Int_Dish03_,Honey Herbal Tea,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INTFOOD,1200000,3; percentheal 0,5; },{},{} -14557,Vit_Dish01_,Steamed Crab Nippers,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_VITFOOD,1200000,1; percentheal 5,0; },{},{} -14558,Vit_Dish02_,Assorted Seafood,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_VITFOOD,1200000,2; percentheal 5,0; },{},{} -14559,Vit_Dish03_,Clam Soup,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_VITFOOD,1200000,3; percentheal 5,0; },{},{} -14560,Agi_Dish01_,Frog Egg Squid Ink Soup,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_AGIFOOD,1200000,1; percentheal 3,1; },{},{} -14561,Agi_Dish02_,Smooth Noodle,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_AGIFOOD,1200000,2; percentheal 3,1; },{},{} -14562,Agi_Dish03_,Tentacle Cheese Gratin,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_AGIFOOD,1200000,3; percentheal 3,1; },{},{} -14563,Dex_Dish01_,Honey Grape Juice,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_DEXFOOD,1200000,1; percentheal 2,2; },{},{} -14564,Dex_Dish02_,Chocolate Mousse Cake,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_DEXFOOD,1200000,2; percentheal 2,2; },{},{} -14565,Dex_Dish03_,Fruit Mix,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_DEXFOOD,1200000,3; percentheal 2,2; },{},{} -14566,Luk_Dish01_,Fried Monkey Tails,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_LUKFOOD,1200000,1; percentheal 3,2; },{},{} -14567,Luk_Dish02_,Mixed Juice,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_LUKFOOD,1200000,2; percentheal 3,2; },{},{} -14568,Luk_Dish03_,Fried Sweet Potato,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_LUKFOOD,1200000,3; percentheal 4,2; },{},{} -14569,Knife_Goblin_Ring,Knife Goblin Ring,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1122; },{},{} -14570,Flail_Goblin_Ring,Flail Goblin Ring,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1123; },{},{} -14571,Hammer_Goblin_Ring,Hammer Goblin Ring,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1125; },{},{} -14572,Holy_Marble,Holy Marble,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1385; },{},{} -14573,Red_Burning_Stone,Red Burning Stone,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1382; },{},{} -14574,Skull_Of_Vagabond,Vagabond's Skull,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1208; },{},{} -14575,Str_Dish05_,Lutie Lady's Pancake,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_STRFOOD,1200000,5; percentheal 10,0; },{},{} -14576,Int_Dish05_,Mastela Fruit Wine,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INTFOOD,1200000,5; percentheal 0,10; },{},{} -14577,Vit_Dish05_,Spicy Fried Bao,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_VITFOOD,1200000,5; percentheal 10,0; },{},{} -14578,Agi_Dish05_,Steamed Bat Wing in Pumpkin,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_AGIFOOD,1200000,5; percentheal 6,2; },{},{} -14579,Dex_Dish05_,Green Salad,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_DEXFOOD,1200000,5; percentheal 5,5; },{},{} -14580,Luk_Dish05_,Fried Scorpion Tails,0,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_LUKFOOD,1200000,5; percentheal 5,2; },{},{} -14581,Dun_Tele_Scroll2,Dungeon Teleport Scroll II,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashDungeon",2; },{},{} -14582,WOB_Rune,Yellow Butterfly Wing,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashCity",1; },{},{} -14583,WOB_Schwaltz,Green Butterfly Wing,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashCity",2; },{},{} -14584,WOB_Rachel,Red Butterfly Wing,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashCity",3; },{},{} -14585,WOB_Local,Blue Butterfly Wing,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashCity",4; },{},{} -14586,Spark_Candy,Jumping Candy,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_HASTEUP; bonus_script "{ bonus2 bHPLossRate,100,10000; bonus bBaseAtk,20; bonus bAspdRate,25; bonus bNoWalkDelay; }",60,0,0,EFST_STEAMPACK; },{},{} -14587,Repair_Scroll_,Equipment Repair Spell Book,11,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "BS_REPAIRWEAPON",1; },{},{} -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_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; },{},{} -14595,Unsealed_Magic_Spell,Unsealed Magic Spell,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ warp "yuno_fild09",255,127; },{},{} -14596,Pierre_Treasurebox,Pierre's Treasure Box,2,0,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_Pierre_Treasurebox,1); getrandgroupitem(IG_Pierre_Treasurebox,1); getrandgroupitem(IG_Pierre_Treasurebox,1); getrandgroupitem(IG_Pierre_Treasurebox,1); getrandgroupitem(IG_Pierre_Treasurebox,1); getrandgroupitem(IG_Pierre_Treasurebox,1); },{},{} -14597,PhreeoniS,Phreeoni Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start2 SC_ITEMSCRIPT,180000,4121,EFST_FOOD_BASICHIT; },{},{} -14598,GhostringS,Ghostring Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start2 SC_ITEMSCRIPT,60000,4047,EFST_ARMOR_PROPERTY; },{},{} -14599,Greed_Scroll_C,Greed Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "BS_GREED",1; },{},{} -14600,Mental_Potion,Mental Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_SPELLBREAKER; bonus_script "{ bonus bUseSPrate,-10; bonus bMaxSPrate,10; }",1800; },{},{} -14601,Tyr's_Blessing,Tyr's Blessing,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_FLEEFOOD,300000,30; sc_start SC_HITFOOD,300000,30; sc_start SC_ATKPOTION,300000,20; sc_start SC_MATKPOTION,300000,20; },{},{} -14602,TaogunkaS,Tao Gunka Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_LIGHTSPHERE; bonus_script "{ bonus bMaxHPrate,100; bonus bDefRate,-50; bonus bMdefRate,-50; }",180,0,0,EFST_MVPCARD_TAOGUNKA; },{},{} -14603,MistressS,Mistress Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_SPELLBREAKER; bonus_script "{ bonus bNoGemStone; bonus bUseSPrate,25; }",180,0,0,EFST_MVPCARD_MISTRESS; },{},{} -14604,Orc_HeroS,Orc Hero Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_LIGHTSPHERE; bonus_script "{ bonus2 bResEff,Eff_Stun,10000; }",180,0,0,EFST_MVPCARD_ORCHERO; },{},{} -14605,Orc_LoadS,Orc Lord Scroll,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_LIGHTSPHERE; bonus_script "{ bonus bShortWeaponDamageReturn,30; }",180,0,0,EFST_MVPCARD_ORCLORD; },{},{} -14606,Job_Manual25,JOB Battle Manual,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -14607,Luxurious_Dinner_W,Luxurious Western Food,2,10000,,600,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INCALLSTATUS,3600000,3; },{},{} -14608,Luxurious_Dinner_E,Manchu-Han Imperial Feast,2,20000,,1200,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INCALLSTATUS,3600000,6; },{},{} -14609,Spoiled_Cuisine,Spoiled Cuisine,2,5000,,300,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 10,10; },{},{} -14611,M_Def_Potion,M Def Potion,11,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_GUARD; sc_start SC_DEF_RATE,120000,3; },{},{} -14612,M_Mdef_Potion,M Mdef Potion,11,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_SPELLBREAKER; sc_start SC_MDEF_RATE,120000,3; },{},{} -14613,RWC_Scroll_2012,RWC Scroll 2012,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_RWC_Scroll_2012); },{},{} -14614,Ex_Def_Potion,Ex Def Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_GUARD; sc_start SC_DEF_RATE,1800000,3; sc_start SC_MDEF_RATE,1800000,3; },{},{} -14616,STR_Biscuit_Stick,Bar Cookie Of Strength,2,1,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_FOOD_STR_CASH,1800000,15; sc_start SC_ATKPOTION,600000,rand(11,111); },{},{} -14617,VIT_Biscuit_Stick,Bar Cookie Of Vitality,2,1,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_FOOD_VIT_CASH,1800000,15; bonus_script "{ bonus bHPRecovRate,rand(11,33); }",1800,1; },{},{} -14618,AGI_Biscuit_Stick,Bar Cookie Of Agility,2,1,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_FOOD_AGI_CASH,1800000,15; sc_start SC_FLEEFOOD,600000,rand(11,33); },{},{} -14619,INT_Biscuit_Stick,Bar Cookie Of Intelligence,2,1,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_FOOD_INT_CASH,1800000,15; sc_start SC_MATKPOTION,600000,rand(11,111); },{},{} -14620,DEX_Biscuit_Stick,Bar Cookie Of Dexterity,2,1,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_FOOD_DEX_CASH,1800000,15; sc_start SC_HITFOOD,600000,rand(11,33); },{},{} -14621,LUK_Biscuit_Stick,Bar Cookie Of Lucky,2,1,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_FOOD_LUK_CASH,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,,,,,,{},{},{} -14628,Costume_Festival_Box,Costume Festival Box,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{} -14629,Costume_Enchantment_Stone_Box,Costume Enchantment Stone Box,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem callfunc("F_Rand",6636,6637,6638,6639,6640,6641,6642,6643,6644,6645),1; },{},{} -// -14643,Violet_Scroll,Violet Scroll,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Violet_Scroll); },{},{} -14663,Scroll_Sealed_Dark_Lord,Scroll Sealed Dark Lord,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ /*TODO: Confirm the rates*/ getitem callfunc("F_Rand",6228,6232,4488,4169,19739,24032,24033,24031,24030,24028,24029,24028,24027),1; },{},{} -14664,Bi_Hwang_Scroll,Bi Hwang Scroll,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Bi_Hwang_Scroll); },{},{} -14665,Jung_Bi_Scroll,Jung Bi Scroll,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Jung_Bi_Scroll); },{},{} -14666,Je_Un_Scroll,Je Un Scroll,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Je_Un_Scroll); },{},{} -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,63,2,,,,,,{},{},{} -14673,Steel_Fighter_Scroll_Lv25,Steel Fighter Scroll (Lv25),0,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -14674,Cup_Of_Boza,Cup Of Boza,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ 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,,,,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,Garuda_Scroll,Memorial Garuda Lucky Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Garuda_Scroll); },{},{} -14701,TW_13y_Lucky_Egg_06,Midgard Immortal Lucky Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_TW_13y_Lucky_Egg_06); },{},{} -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,,,,,,{ /* 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,2,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"; },{},{} -14724,Limited_Neuralizer_II,(Limited)Neuralizer II,11,2,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashReset"; },{},{} -14725,Sealed_Bacsojin_Scroll,Sealed Bacsojin Scroll,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ /*TODO: Confirm the rates*/ getitem callfunc("F_Rand",4372,6228,6232,19750,14730,17474),1; },{},{} -14726,Grid_Shadow_Box,Grid Shadow Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 24114,1; getitem 24115,1; getitem 24116,1; getitem 24117,1; getitem 24118,1; getitem 24119,1; },{},{} -14727,Heal_Shadow_Box,Heal Shadow Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 24120,1; getitem 24121,1; getitem 24122,1; getitem 24123,1; getitem 24124,1; getitem 24125,1; },{},{} -14728,Hiding_Shadow_Box,Hiding Shadow Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 24126,1; getitem 24127,1; getitem 24128,1; getitem 24129,1; getitem 24130,1; getitem 24131,1; },{},{} -14729,Cloaking_Shadow_Box,Cloaking Shadow Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 24132,1; getitem 24133,1; getitem 24134,1; getitem 24135,1; getitem 24136,1; getitem 24137,1; },{},{} -14730,Costume_Festival_Box_II,Costume Festival Box II,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ /*TODO: No clue yet*/ },{},{} -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; },{},{} -14735,Costama_Egg22,Shapeshifter Costume,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Shapeshifter_Costume); },{},{} -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,Imortal_Midgard_Scroll,Midgard Celebration Lucky Egg,18,0,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Imortal_Midgard_Scroll); },{},{} -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; bonus2 bAddClass,Class_All,1; bonus bMatkRate,1; bonus bHit,30; bonus bFlee,30; bonus bAspd,1; bonus bUseSPrate,-5; bonus bFixedCastrate,-30; }",1800,1,1; },{},{} -14805,July_Lucky_Scroll,Almighty Lucky Egg,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_July_Lucky_Scroll); },{},{} -//=================================================================== -// 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_Human,10; bonus2 bIgnoreDefRaceRate,RC_Brute,10; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,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 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; bonus bDefEle,Ele_Fire; bonus2 bSubDefEle,Ele_Earth,4; },{},{} -15009,Para_Team_Uniform1,Eden Team Uniform I,4,0,,0,,35,,0,0xFFFFFFFF,63,2,16,,7,0,0,{ bonus bMaxHP,100; bonus bMaxSP,10; },{},{} -15010,Para_Team_Uniform2,Eden Team Uniform II,4,0,,0,,46,,0,0xFFFFFFFF,63,2,16,,26,0,0,{ bonus bMaxHP,200; bonus bMaxSP,20; },{},{} -15011,Para_Team_Uniform3,Eden Team Uniform III,4,0,,0,,58,,0,0xFFFFFFFF,63,2,16,,40,0,0,{ bonus bMaxHP,300; bonus bMaxSP,30; bonus bMdef,5; },{},{} -15012,Puente_Robe,Puente Robe,4,12000,,400,,42,,1,0xFFFFFFFF,63,2,16,,22,1,0,{ bonus bFixedCastrate,-3; bonus bHealPower,5; },{},{} -15013,Claire_Suits,Claire Suits,4,28000,,2800,,58,,1,0xFFFFFFFE,18,2,16,,22,1,0,{},{},{} -15014,Ebone_Armor,Ebon Armor,4,40000,,4500,,93,,1,0x00004080,56,2,16,,100,1,0,{},{},{} -15015,Upg_Adv_Suit,Upg Adv Suit,4,20,,150,,25,,1,0xFFFFFFFF,63,2,16,,1,1,0,{ bonus bMaxHPrate,3; },{},{} -15016,Upg_Coat,Upg Coat,4,20,,600,,47,,1,0xFFFFFFFE,63,2,16,,1,1,0,{ bonus bMaxHPrate,3; },{},{} -15017,Upg_Saint_Robe,Upg Saint Robe,4,20,,300,,55,,1,0x00048530,63,2,16,,1,1,0,{ bonus bMdef,5; bonus bMaxHPrate,3; },{},{} -15018,Upg_Tights,Upg Tights,4,20,,250,,32,,1,0x00080808,63,2,16,,1,1,0,{ bonus bDex,1; bonus bMaxHPrate,3; },{},{} -15019,Upg_Thief_Cloth,Upg Thief Cloth,4,20,,100,,45,,1,0x02021040,63,2,16,,1,1,0,{ bonus bAgi,1; bonus bMaxHPrate,3; },{},{} -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; bonus bNoKnockback; },{},{} -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; } },{},{} -15027,Crimson_Robe,Crimson Robe,4,20,,500,,40,,0,0x00000200,63,2,16,,100,1,0,{ bonus bDefEle,Ele_Fire; bonus bMdef,10; bonus bInt,1; bonus2 bSkillVariableCast,"WZ_METEOR",-3000; if(readparam(bInt)>=120){ bonus bInt,1; } },{},{} -15028,Forest_Robe,Forest Robe,4,20,,500,,40,,0,0x00000200,63,2,16,,100,1,0,{ bonus bDefEle,Ele_Earth; bonus bMdef,10; bonus bInt,1; bonus2 bSkillVariableCast,"WZ_HEAVENDRIVE",-3000; if(readparam(bInt)>=120){ bonus bInt,1; } },{},{} -15029,Robe_Of_Affection,Robe Of Affection,4,20,,300,,22,,0,0x00000100,56,2,16,,100,1,0,{ bonus bDefEle,Ele_Holy; bonus bMdef,10; bonus bInt,1; bonus2 bSkillUseSP,"AB_CLEMENTIA",50; },{},{} -15030,Robe_Of_Judgement,Robe Of Judgement,4,20,,300,,22,,0,0x00000100,56,2,16,,100,1,0,{ bonus bDefEle,Ele_Dark; bonus bMdef,10; bonus bStr,2; bonus bInt,1; bonus2 bSubRace,RC_All,-10; bonus2 bSubRace,RC_Undead,20; bonus2 bSubRace,RC_Demon,20; },{},{} -15031,Para_Team_Armor,Paradise Uniform IV,4,0,,0,,70,,0,0xFFFFFFFF,63,2,16,,60,0,0,{ bonus bMdef,5; bonus bMaxHP,500; bonus bMaxSP,50; bonus bStr,1; bonus bInt,1; bonus bDex,1; },{},{} -15032,Tidung,Tidung,4,10,,500,,2,,1,0xFFFFFFFE,63,2,16,,0,1,0,{ bonus bMdef,10; bonus2 bResEff,Eff_Stun,1500; bonus2 bResEff,Eff_Freeze,1500; bonus2 bSubClass,Class_All,5; },{},{} -15033,Tutorial_Mattle,Tutorial Mantle,4,0,,600,,37,,0,0x00000000,63,2,16,,1,0,0,{},{},{} -15034,Tutorial_Mattle_,Tutorial Mantle,4,0,,600,,37,,1,0x00000000,63,2,16,,1,0,0,{},{},{} -15035,2010_Love_Daddy,2010 Love Dad,4,10,,100,,6,,1,0xFFFFFFFF,63,2,16,,0,1,0,{ bonus bAllStats,1; bonus bMaxHP,150; bonus bMaxSP,150; bonus2 bResEff,Eff_Stone,9000; bonus2 bResEff,Eff_Freeze,9000; bonus2 bResEff,Eff_Stun,9000; bonus2 bResEff,Eff_Sleep,9000; bonus2 bResEff,Eff_Silence,9000; bonus2 bResEff,Eff_Curse,9000; bonus2 bResEff,Eff_Confusion,9000; bonus2 bResEff,Eff_Blind,9000; bonus2 bResEff,Eff_Poison,9000; bonus2 bResEff,Eff_Bleeding,9000; },{},{} -15036,Ur_Plate,Ur's Plate,4,20,,3000,,110,,0,0x00000080,56,2,16,,100,1,0,{ bonus bMdef,10; bonus bMaxHPrate,getrefine(); bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubEle,Ele_Neutral,5; },{},{} -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",max(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(); bonus bHit,.@r; bonus bFlee,.@r; },{},{} -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; },{},{} -15044,Green_Operation_Coat,Green Surgical Gown,4,56000,,660,,66,,1,0x00040000,63,2,16,,100,1,0,{ bonus bDex,1; bonus bMaxSP,30; },{},{} -15045,Armor_Of_Valor,Armor Of Valor,4,0,,0,,4,,0,0xFFFFFFFF,63,2,16,,0,0,0,{ bonus bHPrecovRate,10; },{},{} -15046,Siege_Plate,Siege Plate,4,0,,3300,,85,,1,0x006444A2,63,2,16,,95,1,0,{ bonus bMdef,5; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; .@r = getrefine(); if(.@r>5) { bonus bHealpower2,12; bonus bAddItemHealRate,12; } if(.@r>8) { bonus bMaxHPrate,25; } },{},{} -15047,Siege_Suits,Siege Suit,4,0,,750,,50,,1,0x636E5CEA,63,2,16,,95,1,0,{ bonus bMdef,10; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; .@r = getrefine(); if(.@r>5) { bonus bFlee2,5; bonus bLongAtkDef,20; } if(.@r>8) { bonus bMaxHPrate,15; } },{},{} -15048,Siege_Robe,Siege Robe,4,0,,500,,40,,1,0x00818315,63,2,16,,95,1,0,{ bonus bMdef,20; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; .@r = getrefine(); if(.@r>5) { bonus bFlee,5; bonus bLongAtkDef,15; } if(.@r>8) { bonus bMaxHP,1000; bonus bMaxSP,100; } },{},{} -15049,Armor_Of_Faith,Armor Of Faith,4,20,,1000,,0,,0,0xFFFFFFFF,63,2,16,,50,1,0,{ bonus bStr,4; bonus bInt,4; bonus bVit,4; bonus bDex,4; bonus bAgi,4; bonus bLuk,4; },{},{} -15050,Armor_Of_Sanctity,Armor Of Sanctity,4,20,,1000,,0,,0,0xFFFFFFFF,63,2,16,,50,1,0,{ bonus bStr,4; bonus bInt,4; bonus bVit,4; bonus bDex,4; bonus bAgi,4; bonus bLuk,4; },{},{} -15051,Bakonawa_Armor,Bakunawa Scale Armor,4,20,,500,,55,,0,0xFFFFFFFF,63,2,16,,1,1,0,{ bonus2 bSubClass,Class_Boss,getrefine()/2; bonus bAllStats,1; },{},{} -15052,Bayani_Bakonawa_Armor,Bayani Bakunawa Scale Armor,4,20,,500,,55,,1,0xFFFFFFFF,63,2,16,,1,1,0,{ bonus2 bSubClass,Class_Boss,getrefine()/2; bonus bAllStats,2; },{},{} -15053,Special_Ninja_Suit,Special Ninja Suit,4,10000,,1200,,70,,0,0x02000000,63,2,16,,100,1,0,{ bonus bAgi,1+(getrefine()/3); },{},{} -15054,Ninja_Scale_Armor,Ninja Scale Armor,4,10000,,1800,,90,,1,0x02000000,63,2,16,,100,1,0,{ bonus bMaxHPrate,15; bonus bMaxSPrate,-30; },{},{} -15055,Tenebris_Latitantes,Armor of Nothingness,4,10000,,1500,,60,,1,0x02000000,63,2,16,,100,1,0,{ bonus bAgi,1; bonus4 bAutoSpellWhenHit,"KO_ZANZOU",1,50,1; },{},{} -15056,Special_Ninja_Suit_,Special Ninja Suit,4,10000,,1200,,70,,1,0x02000000,63,2,16,,100,1,0,{ bonus bAgi,1+(getrefine()/3); },{},{} -15057,Pure_White_Apron,Pure White Apron,4,20,,600,0,50,0,1,0xFFFFFFFF,63,2,16,,0,1,0,{},{},{} -15058,Rider_Suit,Rider Suit,4,20,,1000,0,40,0,1,75,7,2,16,,1,1,0,{ bonus bAgi,1+(getrefine()/2); },{},{} -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,{ bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; if(BaseLevel<80) { bonus bHealPower,5; } },{},{} -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,,40,1,,{ bonus bMdef,15; bonus bMaxHP,250; bonus bMaxSP,250; bonus2 bSubRace,RC_Player_Human,10; bonus2 bResEff,Eff_Freeze,25; },{},{} -15063,TE_Woe_Chain_Mail,TE Woe Chain Mail,4,0,,0,,25,,0,0x000444A2,63,2,16,,40,1,,{ bonus bMdef,5; bonus bMaxHP,450; bonus bMaxSP,50; bonus2 bSubRace,RC_Player_Human,15; bonus2 bResEff,Eff_Freeze,25; },{},{} -15064,TE_Woe_Mage_Coat,TE Woe Mage Coat,4,0,,0,,5,,0,0x00818315,63,2,16,,40,1,,{ bonus bMdef,25; bonus bMaxHP,200; bonus bMaxSP,200; bonus2 bSubRace,RC_Player_Human,5; bonus2 bResEff,Eff_Freeze,25; },{},{} -15066,Engraved_Armor,Engraved Plate Armor,4,100000,,3000,,120,,1,0x00004082,63,2,16,,150,1,,{ bonus bMdef,25; },{},{} -15067,Rune_Suit,Rune Suit,4,0,,0,,,,0,0xFFFFFFFF,63,2,16,,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(); },{},{} -15071,Valkyrian_Robe,Valkyrian Robe,4,20,,2800,,55,,1,0x000FFF80,58,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; },{},{} -15072,Nectar_Suit,Nectar Suit,4,20,,300,,35,,1,0xFFFFFFFF,63,2,16,,1,1,0,{ bonus bVit,3; bonus bMdef,5; bonus bMaxHPrate,(getrefine()/2); bonus bMaxSPrate,(getrefine()/2); },{},{} -15073,Anti_Magic_Suit,Anti-Magic Suits,4,10,,1500,,50,,1,0xFFFFFFFF,63,2,16,,99,1,0,{ .@r = getrefine(); bonus bMaxHPrate,5+((.@r >= 9) ? 2 : 0); bonus bMdef,10+((.@r >= 7) ? 5 : 0); },{},{} -15074,Geffen_Mage_Robe,Geffen Magic Robe,4,10,,1000,,40,,1,0xFFFFFFFF,63,2,16,,99,1,0,{ .@r = getrefine(); bonus bUseSPrate,-10-((.@r>=7) ? 5: 0); bonus bVariableCastrate,15-((.@r>=9) ? 5: 0); bonus bNoCastCancel2; },{},{} -15087,Azure_Dragon_Armor,Azure Dragon Armor,4,20,,500,,55,,1,0xFFFFFFFF,63,2,16,,70,1,0,{ bonus bDefEle,Ele_Water; bonus bMdef,5; bonus2 bAddEle,Ele_Water,10; },{},{} -15088,School_Uniform,School Uniform,4,20,,500,,25,,1,0xFFFFFFFF,63,2,16,,0,1,0,{ bonus bAgi,1; bonus bLuk,1; bonus bMaxHP,BaseLevel*3; bonus bMaxSP,BaseLevel/2; },{},{} -15089,Menswear,Menswear,4,10,,300,,40,,0,0xFFFFFFFE,63,2,16,,80,1,,{ .@r = getrefine(); bonus bAspdRate,3+((.@r>=7)?2:0); bonus bDelayrate,-3-((.@r>=7)?2:0); bonus bVariableCastrate,-3-((.@r>=7)?2:0); },{},{} -15090,Armor_Of_Gray,Armor of Gray,4,10,,2400,,90,,1,0x000654E2,56,2,16,,120,1,0,{ bonus bMdef,10; bonus2 bSubEle,Ele_Holy,10+getrefine()*2; },{},{} -15091,Gray_Robe,Gray Robe,4,20,,1300,,55,,1,0x00018314,56,2,16,,120,1,0,{ bonus2 bSubEle,Ele_Holy,10+getrefine()*2; },{},{} -15093,Hero_Plate,Hero Plate,4,10,,4000,,120,,1,0x00004082,63,2,16,,160,1,,{ bonus bMdef,5; bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bMatk,10; bonus bBaseAtk,10; bonus bHit,10; bonus bFlee,10; bonus2 bSkillAtk,"LG_BANISHINGPOINT",10; bonus2 bSkillAtk,"RK_HUNDREDSPEAR",10; .@r = getrefine(); bonus5 bAutoSpell,"AL_HEAL",10,50+.@r,BF_SHORT,0; bonus5 bAutoSpell,"WZ_STORMGUST",10,50+.@r,BF_SHORT,1; },{},{} -15094,Hero_Magic_Coat,Hero Magic Coat,4,10,,800,,50,,1,0x00010204,63,2,16,,160,1,,{ bonus bMatk,10; bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bFlee,10; bonus2 bSkillAtk,"WL_CRIMSONROCK",10; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",10; .@r = getrefine(); if (.@r) { bonus bFixedCastrate,21-.@r/2; bonus bNoCastCancel2; bonus bMdef,.@r/2; } },{},{} -15095,Hero_Judgement_Shawl,Hero Judgement Shawl,4,10,,500,,77,,1,0x00008110,63,2,16,,160,1,,{ bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bMatk,10; bonus bBaseAtk,10; bonus bHit,10; bonus bFlee,10; bonus2 bSkillAtk,"AB_JUDEX",10; bonus2 bSkillAtk,"AB_ADORAMUS",10; bonus2 bSkillAtk,"SR_DRAGONCOMBO",10; bonus2 bSkillAtk,"SR_SKYNETBLOW",10; bonus2 bSkillAtk,"SR_EARTHSHAKER",10; .@r = getrefine(); bonus5 bAutoSpell,"PR_KYRIE",10,50+.@r,BF_SHORT,0; bonus5 bAutoSpell,"PR_LEXAETERNA",1,50+.@r,BF_MAGIC,1; },{},{} -15096,Hero_Trade_Mail,Hero Trade Mail,4,10,,500,,100,,1,0x00040420,56,2,16,,160,1,,{ bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bMatk,10; bonus bBaseAtk,10; .@r = getrefine(); if(readparam(bStr) >= 90) bonus bStr,.@r/2; if(readparam(bInt) >= 90) bonus bInt,.@r/2; if(readparam(bAgi) >= 90) bonus bAgi,.@r/2; if(readparam(bVit) >= 90) bonus bVit,.@r/2; if(readparam(bDex) >= 90) bonus bDex,.@r/2; if(readparam(bLuk) >= 90) bonus bLuk,.@r/2; },{},{} -15097,Hero_Hidden_Cloth,Hero Hidden Cloth,4,10,,200,,70,,1,0x00021040,63,2,16,,160,1,0,{ bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus2 bSkillAtk,"SC_FATALMENACE",10; bonus2 bSkillAtk,"SC_TRIANGLESHOT",10; bonus2 bSkillAtk,"GC_CROSSIMPACT",10; bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",10; autobonus "{ bonus bCritical,20; bonus bFlee,20; bonus2 bAddClass,Class_All,10; bonus bMatkRate,10; }",(5+getrefine())*10,10000,BF_WEAPON; },{},{} -15098,Hero_Taget_Suits,Hero 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,BF_WEAPON,0; bonus5 bAutoSpell,"AC_DOUBLE",10,(5+.@r)*5,BF_WEAPON,1; },{},{} -15100,Frozen_Breastplate,Frozen Breastplate,4,20,,1500,,20,,1,0xFFFFFFFF,63,2,16,,130,1,0,{ bonus bDefEle,Ele_Water; },{},{} -15101,Harden_Breastplate,Hardened Breastplate,4,20,,1500,,20,,1,0xFFFFFFFF,63,2,16,,130,1,0,{ bonus bDefEle,Ele_Earth; },{},{} -15102,Hunter_Mail,Hunter Mail,4,20,,500,,30,,1,0xFFFFFFFF,63,2,16,,50,1,0,{ .@r = getrefine(); if (.@r>5) .@a = (.@r-5); else .@a = 0; bonus2 bAddRace,RC_Brute,3+.@a; bonus2 bMagicAddRace,RC_Brute,3+.@a; bonus2 bAddRace,RC_Player_Doram,3+.@a; bonus2 bMagicAddRace,RC_Player_Doram,3+.@a; },{},{} -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; },{},{} -15106,Engineer_Mail,Engineer Mail,4,20,,500,,30,,1,0xFFFFFFFF,63,2,16,,50,1,0,{ .@r = getrefine(); bonus2 bAddRace,RC_Formless,3; bonus2 bMagicAddRace,RC_Formless,3; if (.@r>5) { bonus2 bAddRace,RC_Formless,.@r-5; bonus2 bMagicAddRace,RC_Formless,.@r-5; } },{},{} -15108,Venomous_Insect_Armor,Venomous Insect Armor,4,20,,500,,55,,1,0xFFFFFFFF,63,2,16,,70,1,0,{ bonus bDefEle,Ele_Poison; bonus bMdef,5; bonus2 bAddEle,Ele_Poison,10; },{},{} -15110,Supplement_Part_Str,Supplement Part Str,4,25000,,2000,,80,,,0x00000400,56,2,16,,100,1,0,{ bonus2 bAddClass,Class_All,5+getrefine()/4; },{},{} -15111,Upgrade_Part_Plate,Reinforced Parts - Gloves,4,10,,3000,,110,,,0x00000400,56,2,16,,100,1,,{ bonus bUnbreakableArmor; 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,Airship_Armor,Airship's Armor,4,10,,700,,100,,0,0xFFFFFFFF,63,2,16,,125,0,,{ bonus bMaxHP,1000; bonus bMaxSP,100; bonus bMdef,10; bonus bAllStats,1; },{},{} -15117,Felock_Armor,Felrock'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,Robe_Of_Sarah,Sarah's Battle Robe,4,10,,800,,35,,1,0xFFFFFFFF,63,2,16,,145,1,,{ autobonus "{ bonus bMatk,getrefine()*8; }",3,10000,BF_MAGIC; },{},{} -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 */ },{},{} -15125,Female_Diver_Suit,Female Diver's Suit,4,20,,300,,20,,1,0xFFFFFFFF,63,2,16,,80,1,0,{ bonus2 bAddMonsterDropItem,579,500+(getrefine()*100); if (getrefine()>=7) { bonus bHPrecovRate,-100; bonus bHPGainValue,100; } },{},{} -15126,Female_Poring_Balloon,Private Doram Suits,4,20,,700,,80,,1,0x80000000,7,2,16,,100,1,,{ bonus bMaxHP,500; bonus bMaxSP,100; .@r = getrefine()/3; bonus bDex,.@r; bonus bInt,.@r; },{},{} -15128,Excelion_Suit,Excelion Suit,4,20,,1000,,100,,0,0xFFFFFFFF,63,2,16,,99,1,,{ bonus bVit,6 + (BaseLevel > 129 ? 4 : 0); bonus bMaxHPrate,(getrefine() / 3) * 4; bonus bUnbreakableArmor; },{},{} -15129,Blue_Bellflower_Hat,Luxury Doram Suit,4,20,,800,,100,,1,0x80000000,7,2,16,,140,1,,{ bonus bMaxHPrate,10; bonus bMaxSPrate,10; .@r = getrefine()/2; bonus bDex,.@r; bonus bInt,.@r; },{},{} -15138,Aegir_Armor,Aegir Armor,4,10,,1600,,25,,1,0xFFFFFFFF,63,2,16,,40,1,,{ bonus bMaxHP,500; bonus bMaxSP,50; bonus bUnbreakableArmor; },{},{} -15141,Rift_Ancient_Armor,Rift Ancient Armor,4,10,,500,,30,,1,0xFFFFFFFF,63,2,16,,100,1,,{ .@r = getrefine(); bonus bMaxHP,(.@r >= 9 ? 1500 : .@r >= 7 ? 900 : 500); bonus bMaxSP,-100; },{},{} -15143,Vermin_Cloth,Vermin Cloth,4,10,,1200,,30,,1,0xFFFFFFFF,63,2,16,,70,1,0,{ .@r = getrefine(); bonus bMdef,5+.@r; bonus2 bSubRace,RC_Plant,(5+.@r); },{},{} -15144,Agriculture_Clothes,Agriculture Clothes,4,10,,1200,,30,,1,0xFFFFFFFF,63,2,16,,70,1,0,{ .@r = getrefine(); bonus bMdef,5+.@r; bonus2 bSubRace,RC_Insect,5+.@r; },{},{} -15145,EvilDragon_Armor,Evil Dragon Armor,4,0,,4000,,60,,1,0xFFFFFFFF,63,2,16,,99,1,,{ .@r = getrefine(); if(.@r>=10){ bonus2 bHPDrainRate,60,6; bonus2 bSPDrainRate,50,5; } else if(.@r>=9){ bonus2 bHPDrainRate,40,4; bonus2 bSPDrainRate,30,3; } else if(.@r>=8){ bonus2 bHPDrainRate,30,3; bonus2 bSPDrainRate,20,2; } },{},{} -15146,Flattery_Robe,Flattery Robe,4,20,,100,,0,,1,0xFFFFFFFF,63,2,16,,100,1,,{ skill "SM_ENDURE",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; .@i = getrefine()*4; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,.@i; bonus2 bIgnoreDefRaceRate,RC_Demon,.@i; bonus2 bIgnoreDefRaceRate,RC_Undead,.@i; },{},{} -15150,White_Shirt,White Shirt,4,20,,50,,25,,1,0x80000000,7,2,16,,6,1,,{ bonus bMaxHP,70; bonus bFlee,5; },{},{} -15151,White_Eco-Shirt,White Eco-Shirt,4,20,,100,,40,,1,0x80000000,7,2,16,,15,1,,{ bonus bMaxHP,150; bonus bFlee,10; },{},{} -15152,Unity_Mail,Unity Mail,4,10,,300,,45,,1,0xFFFFFFFF,63,2,16,,1,1,0,{ .@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bStr,2; bonus bMaxHPrate,2*(.@r/2); } },{},{} -15153,Unity_Mantle,Unity Mantle,4,10,,300,,45,,1,0xFFFFFFFF,63,2,16,,1,1,0,{ .@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bAgi,2; bonus bFlee,3*(.@r/2); } },{},{} -15154,Unity_Suit,Unity Suit,4,10,,300,,45,,1,0xFFFFFFFF,63,2,16,,1,1,0,{ .@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bDex,2; bonus bCritical,2*(.@r/2); } },{},{} -15155,Unity_Robe,Unity Robe,4,10,,300,,45,,1,0xFFFFFFFF,63,2,16,,1,1,0,{ .@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bInt,2; bonus bUseSPrate,-(.@r/2); } },{},{} -15156,Elegant_Doram_Suit,Elegant Doram Suit,4,20,,900,,120,,1,0x80000000,7,2,16,,175,1,,{ bonus bMaxHPrate,15; bonus bMaxSPrate,15; .@r = getrefine(); bonus bDex,.@r; bonus bInt,.@r; if(.@r > 9) bonus bUseSPrate,-5; },{},{} -15162,Lounge_Suit,Lounge Suit,4,20,,300,,40,,1,0xFFFFFFFE,63,2,16,,80,1,,{ bonus bAspdRate,3; bonus bCastrate,-3; bonus bDelayrate,-3; if(getrefine() > 6) { bonus bAspdRate,2; bonus bCastrate,-2; bonus bDelayrate,-2; } },{},{} -15163,Agenda_Robe,Agenda Robe,4,20,,100,,0,,1,0xFFFFFFFF,63,2,16,,100,1,,{ skill "SA_SPELLBREAKER",1; if (BaseLevel >= 140) { .@val = 14; } else if (BaseLevel >= 120) { .@val = 9; } else { .@val = 5; } bonus bMatkRate,.@val; },{},{} -15164,Consultative_Robe,Consultation Robe,4,20,,100,,0,,1,0xFFFFFFFF,63,2,16,,100,1,,{ .@r = getrefine(); bonus bVit,5; skill "PA_SACRIFICE",1; bonus2 bSubEle,Ele_Dark,.@r*3; bonus2 bSubEle,Ele_Fire,.@r*3; },{},{} -15165,Pure_White_Marching_Hat,Pure White Marching Hat,4,20,,300,,0,,1,0xFFFFFFFF,63,2,256,,60,1,1470,{ .@r = getrefine(); bonus bStr,2; autobonus "{ bonus bAtkEle,Ele_Ghost; }",5+.@r,60000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; /* Unknow Rates */ },{},{} -15166,Rosary_Necklace,Rosary Necklace,4,20,,300,,0,,0,0xFFFFFFFF,63,2,1,,60,0,1471,{ bonus bFlee2,2; bonus bHealPower,3; },{},{} -15169,Kardui_Robe,Kardui Robe,4,20,,800,,60,,1,0xFFFFFFFF,63,2,16,,90,1,0,{ .@r = getrefine(); bonus bMatk,10; bonus bMdef,5; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; if(.@r>=7) { bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; } if(.@r>=8) { bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; bonus bUnbreakableArmor; } if(.@r>=9) { bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; } },{},{} -15174,Surfer_Swimsuit,Surfer Swimsuit,4,20,,100,,1,,1,0xFFFFFFFF,63,2,16,,40,1,,{ bonus bMaxHPrate,(getrefine()/3)+5; bonus bMaxSPrate,(getrefine()/3)+5; },{},{} -15175,Flame_Dragon_Armor,Flame Dragon Armor,4,20,,400,,100,,1,0xFFFFFFFF,63,2,16,,90,1,0,{ .@r = getrefine(); if (.@r>=9) .@val = 20; else if (.@r>=7) .@val = 10; bonus bAllStats,1; bonus bHit,10+.@val; bonus2 bAddClass,Class_Boss,.@val; },{},{} -15176,Vigilante_Suit,Vigilante Suit,4,0,,500,,50,,0,0x00020000,56,2,16,,100,1,0,{ .@r = getrefine(); bonus bDex,5; bonus bLongAtkRate,3*(.@r/2); if (.@r>=9) bonus2 bSkillAtk,"SC_TRIANGLESHOT",20; },{},{} -15177,Elemental_Robe,Elemental Robe,4,0,,500,,40,,0,0x00010000,56,2,16,,100,1,0,{ .@r = getrefine(); bonus bAspdRate,10; bonus bMatk,5*(.@r/2); if (.@r>=9) bonus3 bAutoSpell,"MG_THUNDERSTORM",max(5,getskilllv("MG_THUNDERSTORM")),50; },{},{} -15178,Golden_Ninja_Suit,Golden Ninja Suit,4,0,,500,,50,,0,0x20000000,63,2,16,,100,1,0,{ .@r = getrefine(); bonus bflee,5*(.@r/2); if (.@r>=9) bonus2 bSkillAtk,"KO_HAPPOKUNAI",20; },{},{} -15179,Mine_Worker's_Vest,Mine Worker's Vest,4,0,,1500,,80,,0,0x00000400,56,2,16,,100,1,0,{ .@r = getrefine(); bonus bFlee,(10+4*(.@r/2)); if (.@r>=9) bonus bCritical,5; },{},{} -15180,Hippie_Clothes,Hippie Clothes,4,,,50,,50,,,0x00080000,56,2,16,,100,1,,{ .@r = getrefine(); bonus bBaseAtk,20; if (.@r >= 9) bonus3 bAutoSpell,"AC_DOUBLE",max(3,getskilllv("AC_DOUBLE")),10; },{},{} -15181,Para_Team_Uniform100,Awakened Eden Group Uniform I,4,20,,0,,80,,0,0xFFFFFFFF,63,2,16,,100,,,{ bonus bAllStats,1; bonus bMaxHP,700; bonus bMaxSP,100; bonus bMdef,7; },{},{} -15182,Para_Team_Uniform115,Awakened Eden Group Uniform II,4,20,,0,,85,,0,0xFFFFFFFF,63,2,16,,115,,,{ bonus bAllStats,1; bonus bMaxHP,1100; bonus bMaxSP,120; bonus bMdef,11; },{},{} -15183,Para_Team_Uniform130,Awakened Eden Group Uniform III,4,20,,0,,90,,0,0xFFFFFFFF,63,2,16,,130,,,{ bonus bAllStats,2; bonus bMaxHP,1100; bonus bMaxSP,120; bonus bMdef,11; },{},{} -15184,Para_Team_Uniform145,Awakened Eden Group Uniform IV,4,20,,0,,100,,0,0xFFFFFFFF,63,2,16,,145,,,{ bonus bAllStats,2; bonus bMaxHP,1500; bonus bMaxSP,150; bonus bMdef,15; },{},{} -15185,Para_Team_Uniform160,Awakened Eden Group Uniform V,4,20,,0,,100,,0,0xFFFFFFFF,63,2,16,,160,,,{ bonus bAllStats,2; bonus bMaxHP,1500; bonus bMaxSP,150; bonus bMdef,15; bonus2 bSubEle,Ele_All,5; bonus2 bSubEle,Ele_Neutral,-5; },{},{} -15186,Kafra_Uniform,Kafra Uniform,4,20,,500,,40,,1,0xFFFFFFFF,63,2,16,,1,1,,{ bonus2 bExpAddClass,Class_All,5; bonus2 bDropAddClass,Class_All,5; .@r = getrefine(); bonus bMaxHP,100*.@r; bonus bMaxSP,20*.@r; bonus bMaxHPrate,(3*(.@r>=7)+5*(.@r>=9)); bonus bMaxSPrate,(3*(.@r>=7)+5*(.@r>=9)); if(.@r>=12){ bonus bHPrecovRate,100; bonus bSPrecovRate,100; } },{},{} -15189,Einherjar_Armor,Einherjar Armor,4,20,,800,,60,,1,0xFFFFFFFF,63,2,16,,90,1,,{ bonus bMdef,5; bonus bBaseAtk,10; .@r = getrefine(); if(.@r>=7){ bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; } if(.@r>=8){ bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; } if(.@r>=9){ bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; } },{},{} -15191,Khalitzburg_Knight_Armor,Khalitzburg Knight Armor,4,20,,100,,45,,1,0xFFFFFFFF,63,2,16,,100,1,0,{ bonus bLongAtkRate,2*getrefine(); bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; },{},{} -15195,Illusion_Puente_Robe,Illusion Puente Robe,4,20,,400,,52,,1,0xFFFFFFFF,63,2,16,,99,1,0,{ bonus bFixedCastrate,-3; .@r = getrefine(); bonus bHealPower2,(5+.@r); bonus bAddItemHealRate,(5+.@r); },{},{} -15204,Abyss_Dress,Abyss Dress,4,10,,400,,120,,0,0xFFFFFFFF,63,2,16,,90,1,0,{ .@r = getrefine(); bonus bNoKnockback; bonus bUnbreakableArmor; bonus bDefEle,Ele_dark; if (.@r>=5) { .@val = 10; if (.@r>=7) { .@val += 15; if (.@r>=9) { .@val += 15; } } bonus2 bAddEle,Ele_Dark,.@val; bonus2 bAddEle,Ele_Undead,.@val; bonus2 bMagicAddEle,Ele_Dark,.@val; bonus2 bMagicAddEle,Ele_Undead,.@val; bonus2 bAddRace,RC_Undead,.@val; bonus2 bAddRace,RC_Demon,.@val; bonus2 bMagicAddRace,RC_Undead,.@val; bonus2 bMagicAddRace,RC_Demon,.@val; } },{},{} -15205,Medical_Scrubs,Medical Scrubs,4,20,,1000,,50,,1,0xFFFFFFFF,63,2,16,,100,1,,{ .@r = getrefine(); bonus bMdef,10; bonus bDelayrate,-10; .@val = 1; if (.@r >= 7) { .@def = 50; bonus bUnbreakableArmor,1; .@val += 2; if (.@r >= 8) { .@def += 100; .@val += 3; bonus2 bSubRace,RC_DemiHuman,7; bonus2 bSubRace,RC_Player_Human,7; if (.@r >= 9) { .@def += 150; .@val += 4; bonus2 bResEff,Eff_Stone,5000; } } bonus bDef,.@def; } bonus bHealPower,2*.@val; bonus bHealPower2,.@val; bonus bAddItemHealRate,.@val; },{},{} -15209,Drake_Coat,Drake Coat,4,20,,1200,,60,,1,0xFFFFFFFF,63,2,16,,100,1,0,{ .@r = getrefine(); bonus bMaxHP,500; bonus bMaxSP,50; bonus bMdef,10; bonus2 bAddClass,Class_All,3; if (.@r>=7) { bonus bMaxHP,1000; bonus bMaxSP,100; bonus2 bAddClass,Class_All,3; } if (.@r>=9) { bonus bMaxHP,1500; bonus bMaxSP,150; bonus2 bAddClass,Class_All,4; bonus bNoSizeFix; } },{},{} -15212,YSF01_Plate,YSF01 Plate,4,0,,2100,,78,,1,0xFFFFFFFF,63,2,16,,170,1,0,{ .@r = getrefine(); if (.@r >= 13) { .@val = 11; } else if (.@r >= 11) { .@val = 7; } else if (.@r >= 8) { .@val = 5; } if (readparam(bStr) >= 125) { .@val += .@r; } if (.@val) { bonus2 bAddClass,Class_All,.@val; } },{},{} -15250,Beginner's_Suit,Beginner's Suit,4,0,,0,,40,,1,0xFFFFFFFF,63,2,16,,100,0,0,{ bonus bAllStats,1; bonus bMaxHP,400; bonus bMaxSP,100; bonus2 bAddClass,Class_All,2; bonus2 bMagicAddClass,Class_All,2; },{},{} -15280,S_Cri_Hit_Armor,Critical Hit Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); .@val = 7; bonus bBaseAtk,15; if (.@r > 1) { bonus bCritAtkRate,(.@r/2); if (.@r >= 7) { .@val += 7; } } bonus bCritical,.@val; },{},{} -15283,Mighty_Black_Threaded_Armor,Mighty Black Threaded Armor,4,20,,800,,60,,1,0xFFFFFFFF,63,2,16,,100,1,0,{ .@r = getrefine(); bonus bBaseAtk,10; bonus2 bIgnoreDefClassRate,Class_All,10; if (.@r>=7) { bonus bBaseAtk,20; bonus2 bIgnoreDefClassRate,Class_All,20; } if (.@r>=8) { bonus bBaseAtk,20; bonus2 bIgnoreDefClassRate,Class_All,20; bonus bUnbreakableArmor; } if (.@r>=9) { bonus bBaseAtk,30; bonus2 bIgnoreDefClassRate,Class_All,20; } },{},{} -15348,Illusion_Goibne_Armor,Illusion Goibne Armor,4,0,,3500,,158,,1,0xFFFFFFFE,63,2,16,,130,1,0,{ bonus bMaxHPrate,10; .@r = getrefine(); if (.@r >= 9) { bonus bDef,150; } else if (.@r >= 7) { bonus bDef,50; } },{},{} -15352,Nature_Dress,Nature Dress,4,10,,400,,120,,0,0xFFFFFFFF,63,2,16,,90,1,0,{ .@r = getrefine(); bonus bNoKnockback; bonus bUnbreakableArmor; bonus bDefEle,Ele_Earth; if (.@r>8) .@a = 40; else if (.@r>6) .@a = 25; else if (.@r>=5) .@a = 10; bonus2 bAddEle,Ele_Earth,.@a; bonus2 bAddEle,Ele_Wind,.@a; bonus2 bMagicAddEle,Ele_Earth,.@a; bonus2 bMagicAddEle,Ele_Wind,.@a; bonus2 bAddRace,RC_Demihuman,.@a; bonus2 bAddRace,RC_Brute,.@a; bonus2 bAddRace,RC_Player_Doram,.@a; bonus2 bMagicAddRace,RC_Demihuman,.@a; bonus2 bMagicAddRace,RC_Brute,.@a; bonus2 bMagicAddRace,RC_Player_Doram,.@a; bonus2 bAddRace,RC_Player_Human,.@a; bonus2 bMagicAddRace,RC_Player_Human,.@a; },{},{} -15376,Illusion_Armor_A-type,Illusion Armor A-type,4,0,,1000,,105,,1,0xFFFFFFFF,63,2,16,,130,1,0,{ .@r = getrefine(); bonus bBaseAtk,(100+10*(.@r/2)); if (.@r >= 7) { bonus bAspdRate,10; } },{},{} -15377,Illusion_Armor_B-type,Illusion Armor B-type,4,0,,1000,,105,,1,0xFFFFFFFF,63,2,16,,130,1,0,{ .@r = getrefine(); bonus bMatk,(100+10*(.@r/2)); if (.@r >= 7) { bonus bVariableCastrate,-10; } },{},{} -15378,Lava_Leather_Armor,Lava Leather Armor,4,20,,1500,,85,,1,0xFFFFFFFF,63,2,16,,175,1,0,{ .@r = getrefine(); bonus bBaseAtk,100; if (.@r>=7) bonus bDef,100; if (.@r>=9) bonus bDef,50; },{},{} -15379,Lava_Leather_Suit,Lava Leather Suit,4,20,,1000,,70,,1,0xFFFFFFFF,63,2,16,,175,1,0,{ .@r = getrefine(); bonus bBaseAtk,100; if (.@r>=7) bonus bBaseAtk,50; if (.@r>=9) bonus bCritAtkRate,10; },{},{} -15380,Lava_Leather_Robe,Lava Leather Robe,4,20,,750,,55,,1,0xFFFFFFFF,63,2,16,,175,1,0,{ .@r = getrefine(); bonus bMatk,100; if (.@r>=7) bonus bMatk,50; if (.@r>=9) bonus bMatk,25; },{},{} -15384,Ritual_Robes,Ritual Robes,4,10,,400,,0,,1,0xFFFFFFFF,63,2,16,,100,1,0,{ .@r = getrefine(); bonus bHealPower,5; bonus bDelayrate,-10; bonus bMaxHPrate,5; if (.@r>=7) { bonus bMaxHPrate,5; bonus bHealPower,5; } if (.@r>=8) { bonus bMaxHPrate,5; bonus bHealPower,10; bonus bUseSPrate,-10; bonus2 bResEff,Eff_Sleep,10000; } if (.@r>=9) { bonus bMaxHPrate,5; bonus bHealPower,10; } },{},{} -15405,Fafnir_Scale,Fafnir Scale,4,20,,1500,,120,,0,0xFFFFFFFF,63,2,16,,100,1,0,{ .@r = getrefine(); bonus bMdef,15; bonus bUnbreakableArmor; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bSkillAtk,"RK_DRAGONBREATH",50; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",50; bonus bDelayrate,-2*getskilllv("RK_DRAGONBREATH_WATER"); bonus bLongAtkRate,2*getskilllv("RK_DRAGONBREATH"); if (.@r>=5) { bonus bMaxHPrate,20; bonus bMaxSPrate,20; bonus bDelayrate,-5; } if (.@r>=7) { bonus bMaxHPrate,20; bonus bMaxSPrate,20; bonus bDelayrate,-5; } },{},{} -15409,Bloody_Doll's_Dress,Bloody Doll's Dress,4,10,,500,,40,,1,0xFFFFFFFF,63,2,16,,90,1,0,{ .@r = getrefine(); bonus bMdef,5; bonus bMatk,10; bonus bDex,3; bonus2 bSubRace,RC_Player_Human,7; if (.@r>=7) { bonus bAspdRate,10; bonus bDelayrate,-10; } if (.@r>=8) bonus bUnbreakableArmor; },{},{} -15417,Armor_of_Purple_Thread,Armor of Purple Thread,4,20,,800,,60,,1,0xFFFFFFFF,63,2,16,,100,1,0,{ .@r = getrefine(); bonus bBaseAtk,10; bonus bPerfectHitAddRate,5; if (.@r>=7) { bonus bBaseAtk,20; bonus bPerfectHitAddRate,5; } if (.@r>=8) { bonus bBaseAtk,20; bonus bPerfectHitAddRate,10; } if (.@r>=9) { bonus bBaseAtk,30; bonus bPerfectHitAddRate,10; } },{},{} -15419,Mighty_White_Threaded_Armor,Mighty White Threaded Armor,4,20,,800,,60,,1,0xFFFFFFFF,63,2,16,,100,1,0,{ .@r = getrefine(); bonus bMatk,10; bonus2 bIgnoreMdefRaceRate,RC_All,10; if (.@r>=7) { bonus bMatk,20; bonus2 bIgnoreMdefRaceRate,RC_All,20; } if (.@r>=8) { bonus bMatk,20; bonus2 bIgnoreMdefRaceRate,RC_All,20; bonus bUnbreakableArmor; } if (.@r>=9) { bonus bMatk,30; bonus2 bIgnoreMdefRaceRate,RC_All,20; } },{},{} -15420,Ice_Prison_Dress,Ice Prison Dress,4,10,,400,,120,,0,0xFFFFFFFF,63,2,16,,90,1,0,{ .@r = getrefine(); bonus bNoKnockback; bonus bUnbreakableArmor; bonus bDefEle,Ele_Water; if (.@r>8) .@a = 40; else if (.@r>6) .@a = 25; else if (.@r>=5) .@a = 10; bonus2 bAddEle,Ele_Fire,.@a; bonus2 bAddEle,Ele_Water,.@a; bonus2 bMagicAddEle,Ele_Fire,.@a; bonus2 bMagicAddEle,Ele_Water,.@a; bonus2 bAddRace,RC_Demihuman,.@a; bonus2 bAddRace,RC_Formless,.@a; bonus2 bMagicAddRace,RC_Demihuman,.@a; bonus2 bMagicAddRace,RC_Formless,.@a; bonus2 bAddRace,RC_Player_Human,.@a; bonus2 bMagicAddRace,RC_Player_Human,.@a; },{},{} -//=================================================================== -// More Maces -//=================================================================== -15388,King_Schmidt_Suit,King Schmidt's Suit,4,0,0,900,,150,,1,0xFFFFFFFF,63,2,16,,130,1,,{ .@r = getrefine(); bonus2 bAddSize,Size_Medium,10; bonus2 bAddSize,Size_Large,10; bonus2 bMagicAddSize,Size_Medium,10; bonus2 bMagicAddSize,Size_Large,10; if(.@r > 6){ bonus2 bAddEle,Ele_Fire,10; bonus2 bAddEle,Ele_Dark,10; bonus2 bMagicAddEle,Ele_Fire,10; bonus2 bMagicAddEle,Ele_Dark,10; } if(.@r > 8){ bonus2 bSubRace,RC_Dragon,15; bonus2 bSubRace,RC_Formless,15; } if(.@r > 10){ bonus2 bSubSize,Size_Medium,10; bonus2 bSubSize,Size_Large,10; } },{},{} -15389,King_Schmidt_Manteau,King Schmidt's Manteau,4,0,0,600,,70,,1,0xFFFFFFFF,63,2,4,,130,1,,{ .@r = getrefine(); bonus2 bAddEle,Ele_Fire,(.@r/3)*2; bonus2 bAddEle,Ele_Dark,(.@r/3)*2; bonus2 bMagicAddEle,Ele_Fire,(.@r/3)*2; bonus2 bMagicAddEle,Ele_Dark,(.@r/3)*2; if(.@r > 6){ bonus2 bSubRace,RC_Dragon,5; bonus2 bSubRace,RC_Formless,5; } if(.@r > 10){ bonus2 bAddRace,RC_Dragon,15; bonus2 bAddRace,RC_Formless,15; bonus2 bMagicAddRace,RC_Dragon,15; bonus2 bMagicAddRace,RC_Formless,15; } },{},{} -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; },{},{} -16003,Carga_Mace,Carga Mace,5,20,,1500,175,,1,2,0x0004C5B2,63,2,2,3,100,1,8,{},{},{} -16004,P_Mace1,Eden Mace I,5,0,,0,142,,1,0,0x0004C5B2,63,2,2,2,26,0,8,{},{},{} -16005,P_Mace2,Eden Mace II,5,0,,0,163,,1,0,0x0004C5B2,63,2,2,2,40,0,8,{},{},{} -16006,Tourist_Mace,Tourist Mace,5,0,,500,45,,1,0,0x0004C5B3,63,2,2,1,1,0,8,{ bonus bInt,1; bonus bAgi,1; },{},{} -16007,Mjolnir_C,Mjolnir,5,20,,0,250,,1,0,0x000444A2,63,2,2,4,95,0,8,{ bonus bAtkEle,Ele_Wind; bonus bStr,15; bonus bDex,40; },{},{} -16008,F_Spanner_C,Spanner,5,2,,0,150,,1,0,0x00008110,63,2,2,3,0,0,8,{},{},{} -16009,E_Spanner_C,Spanner,5,2,,0,150,,1,0,0x00008110,63,2,2,3,0,0,8,{},{},{} -16010,Red_Ether_Bag,Red Ether Bag,5,20,,1000,15:100,,1,1,0x0004C5B2,63,2,2,3,102,1,8,{ .@r = getrefine(); if(.@r>=6){ bonus2 bSkillAtk,"GN_CRAZYWEED",20+((.@r-5)*2); bonus2 bSkillAtk,"GN_DEMONIC_FIRE",20+((.@r-5)*2); } else { bonus2 bSkillAtk,"GN_CRAZYWEED",20; bonus2 bSkillAtk,"GN_DEMONIC_FIRE",20; } },{},{} -16011,Adventure_Mace,Adventure Mace,5,0,,0,60,,1,0,0x00008110,63,2,2,1,1,0,8,{},{},{} -16012,Academy_Mace,Academy Mace,5,0,,1000,110,,1,1,0x00008110,63,2,2,1,1,1,8,{},{},{} -16013,Mace_Of_Judgement,Mace Of Judgement,5,20,,1200,140:180,,1,2,0x00000100,56,2,2,3,100,1,8,{ bonus bAtkEle,Ele_Holy; 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; bonus2 bAddRace,RC_Player_Doram,15; },{},{} -16016,Tuna,Tuna,5,0,,0,180,,1,0,0x0004C5B3,63,2,2,1,50,0,8,{ bonus bUnbreakableWeapon; bonus2 bAddEff,Eff_Stun,1500; bonus3 bAutoSpell,"SM_BASH",max(getskilllv("SM_BASH"),5),20; bonus2 bAddEff2,Eff_Freeze,100; 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 bAtkEle,Ele_Holy; 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; .@r = getrefine(); bonus2 bAddEff,Eff_Stun,1000+.@r; bonus4 bSetDefRace,RC_Player_Human,10000,5000,1; bonus4 bSetMDefRace,RC_Player_Human,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; bonus3 bStateNoRecoverRace,RC_Player_Human,10000,10000; .@r = getrefine(); bonus bHit,.@r/2; bonus bCritical,.@r; },{},{} -16022,Nemesis_,Nemesis,5,20,,900,120,,1,2,0x00008110,63,2,2,4,60,1,8,{ bonus bUnbreakableWeapon; 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; bonus bBaseAtk,(getrefine()*5); .@i = min(BaseLevel/10,12); if(.@i>2) bonus bBaseAtk,((.@i-2)*5); },{},{} -16024,Quadrille_,Quadrille,5,10,,900,165,,,2,0x00008110,63,2,2,4,40,1,8,{ bonus2 bAddRace,RC_Undead,10; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus2 bAddEle,Ele_Earth,10; },{},{} -16025,TE_Woe_Mace,TE Woe Mace,5,0,,0,120,,1,0,0x0004C5B3,63,2,2,3,40,1,8,{ bonus bUnbreakableWeapon; bonus2 bAddRace,RC_Player_Human,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; .@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,Evil Slayer Destroyer Hammer,5,10,,1350,125,,1,1,0x0004C5B3,63,2,2,3,100,1,8,{ bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; .@r = getrefine(); bonus2 bAddClass,Class_All,(.@r>=12?12:(.@r>=9?5:0)); },{},{} -16028,Thanos_Hammer,Thanos Hammer,5,10,,3000,180:120,,1,1,0x0004C5B2,56,2,2,4,120,1,8,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000; },{},{ heal -1000,0; } -16029,Noble_Cross,Noble Cross,5,10,,1500,195:150,,,1,0x00000010,58,2,2,4,40,1,8,{ bonus bAtkEle,Ele_Holy; bonus3 bAutoSpell,"PR_TURNUNDEAD",6,50; bonus2 bSPDrainValueRace,RC_Undead,1; bonus2 bSPGainRace,RC_Undead,12; },{},{} -16030,Pilebuncker_S,Pile Bunker S,5,20,,3000,400,,1,1,0x00000400,56,2,2,4,130,1,8,{ bonus bAspdRate,getrefine()/2; },{},{} -16031,Pilebuncker_P,Pile Bunker P,5,20,,4000,450,,1,,0x00000400,56,2,2,4,130,1,8,{ bonus bBaseAtk,getrefine()*5; },{},{} -16032,Pilebuncker_T,Pile Bunker T,5,20,,3500,400,,1,1,0x00000400,56,2,2,4,130,1,8,{ bonus bUseSPrate,getrefine()*-1; },{},{} -16033,Robot's_Arm,Robot's Arm,5,30000,,3000,195,,1,2,0x0004C5B2,56,2,2,4,130,1,8,{ bonus bUnbreakableWeapon; 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_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon; },{},{} -16036,Ru_Blue_Mace,Blue Mace,5,10,,1500,170,,1,1,0x00008000,56,2,2,3,100,1,8,{ bonus bVit,5; bonus bInt,5; },{},{} -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,0x0004C780,56,2,2,4,100,1,8,{},{},{} -16039,Spoon,Spoon,5,10,,1000,80,,1,1,0x0004C5B3,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,0x0004C5B3,63,2,2,3,70,1,8,{ .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); },{},{} -16041,Mace_of_Vicious_Mind,Mace of Vicious Mind,5,20,,1300,130,,1,1,0x0004C5B3,63,2,2,4,160,1,8,{ bonus bAtk,pow(min(getrefine(),15),2); bonus bUnbreakableWeapon; },{},{} -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; },{},{} -16048,Unity_Mace,Unity Mace,5,20,,400,76,,1,1,0x0004C5B3,63,2,2,3,1,1,8,{ bonus bBaseAtk,pow(getrefine(),2)*125/100; },{},{} -16051,Valkyrie_Hammer_,Valkyrie Hammer,5,0,,100,50,,1,4,0x0004C5B3,63,2,2,4,70,1,8,{ .@r = getrefine(); bonus bMatk,50; if (BaseJob==Job_Novice) { bonus bBaseAtk,150; bonus bMatk,200; bonus bUseSPrate,-5; bonus bHit,10; bonus bMaxHP,500+(200*.@r); bonus bMaxSP,400; bonus bVit,.@r; bonus bFlee2,.@r; bonus bAspdRate,.@r; bonus bVariableCastrate,-.@r/2; } if (BaseClass==Job_Swordman) { bonus bVit,.@r; bonus bMaxHP,500; bonus bMaxSP,100; } if (BaseJob==Job_Priest) { bonus bBaseAtk,50; bonus bMatk,100; bonus bAspdRate,.@r; } if (BaseJob==Job_Monk) { bonus bMaxSP,200; bonus bUseSPrate,-5; bonus bFlee2,.@r; } if (BaseClass==Job_Merchant) { bonus bBaseAtk,100; bonus bHit,10; bonus bVariableCastrate,-.@r/2; } },{},{} -16060,Liquor_Bottle,Liquor Bottle,5,0,,700,120,,1,3,0x0004C5B3,63,2,2,3,100,1,8,{ bonus bUnbreakableWeapon; bonus2 bAddEff,Eff_Stun,(300*getrefine()); },{},{} -16063,Illusion_Long_Mace,Illusion Long Mace,5,20,,800,185,,3,2,0x00008110,63,2,2,4,99,1,8,{ bonus bLongAtkDef,(10+3*(getrefine()/2)); },{},{} -16065,Illusion_Iron_Driver,Illusion Iron Driver,5,0,,2000,210,,2,2,0x00000100,56,2,2,4,120,1,8,{ .@r = getrefine(); bonus bAspd,(.@r/2); bonus2 bSkillAtk,"AB_DUPLELIGHT",(3*.@r); },{},{} -16088,Sapphire_Mace-OS,Sapphire Mace-OS,5,20,,800,185,,1,2,0x00040000,56,2,2,4,130,1,8,{ .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bAddClass,Class_All,3; if (.@r >= 7) { bonus bVariableCastrate,-7; if (.@r >= 9) { bonus2 bSkillAtk,"GN_CARTCANNON",20; if (.@r >= 11) { bonus bLongAtkRate,15; } } } },{},{} -16089,Ultio-OS,Ultio-OS,5,20,,1200,150:170,,1,2,0x00000100,56,2,2,4,130,1,8,{ .@r = getrefine(); bonus bMatkRate,3; if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus2 bSkillAtk,"AB_ADORAMUS",20; if (.@r >= 11) { bonus2 bMagicAtkEle,Ele_Holy,15; } } } },{},{} -16092,Engine_Pilebuncker,Engine Pilebuncker,5,0,,3200,450,,1,2,0x00000400,56,2,2,4,170,1,8,{ .@r = getrefine(); bonus bUnbreakableWeapon; bonus bAspdRate,.@r; bonus2 bSkillAtk,"NC_VULCANARM",10; if (.@r>=9) { bonus2 bSkillAtk,"NC_ARMSCANNON",15; bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",15; } if (.@r>=11) bonus2 bSkillAtk,"NC_VULCANARM",15; },{},{} -16093,Coolant_Injection,Coolant Injection,5,0,,1400,210,,1,2,0x00040000,56,2,2,4,170,1,8,{ .@r = getrefine(); bonus bUnbreakableWeapon; bonus bLongAtkRate,10; bonus2 bAddClass,Class_All,.@r; if (.@r>=9) bonus2 bSkillAtk,"GN_CARTCANNON",25; if (.@r>=11) bonus bLongAtkRate,15; },{},{} -16094,Gene_Rod,Gene Rod,5,0,,1400,195,,1,2,0x00040000,56,2,2,4,170,1,8,{ .@r = getrefine(); bonus bUnbreakableWeapon; bonus bBaseAtk,4*.@r; bonus2 bSkillAtk,"GN_CRAZYWEED",20; if (.@r>=9) bonus2 bSkillAtk,"GN_CRAZYWEED",30; if (.@r>=11) bonus2 bSkillCooldown,"GN_CRAZYWEED",-2000; },{},{} -16095,Lucis_Flail,Lucis Flail,5,,,1000,180:160,,1,2,0x00000100,56,2,2,4,170,1,8,{ .@r = getrefine(); bonus bUnbreakableWeapon; bonus bAspd,1; bonus bMatk,4*.@r; if (.@r>=9) { bonus2 bSkillAtk,"AB_DUPLELIGHT",40; } if (.@r>=11) bonus3 bAutoSpell,"AB_JUDEX",max(2,getskilllv("AB_JUDEX")),50; /* Unknow Rates */ },{},{} -16096,Bright_Pendulum,Bright Pendulum,5,0,,1300,210,,1,2,0x00008000,56,2,2,4,170,1,8,{ .@r = getrefine(); bonus bUnbreakableWeapon; bonus bBaseAtk,4*.@r; bonus bVariableCastrate,-10; if (.@r>=9) { bonus2 bSkillAtk,"MO_FINGEROFFENSIVE",50; bonus2 bSkillAtk,"MO_INVESTIGATE",50; } if (.@r>=11) bonus2 bAddClass,Class_All,10; },{},{} -//=================================================================== -// 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; },{},{} -16134,King_Frog_Hat_Box,Frog King Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5528,1; },{},{} -16135,Evil's_Bone_Hat_Box,Satanic Bone Helm Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5529,1; },{},{} -16185,Raven_Cap_Box,Raven Cap Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5530,1; },{},{} -16186,B_Dragon_Hat_Box,Baby Dragon Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5531,1; },{},{} -16192,Quati_Hat_Box,Kwati Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5537,1; },{},{} -16193,Tucan_Hat_Box,Tucan Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5538,1; },{},{} -16194,Jaguar_Hat_Box,Jaguar Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5539,1; },{},{} -16195,Tw_March_Scroll,Tw March Scroll,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -16226,Aries_Diadem_Box,Aries Diadem Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5545,1; },{},{} -16227,Aries_Crown_Box,Aries Crown Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5546,1; },{},{} -16228,RJC_Katusa_Box,RJC Katusa Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5547,1; },{},{} -16229,Scarlet_Rose_Box,Scarlet Rose Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5548,1; },{},{} -16230,Taurus_Diadem_Box,Taurus Diadem Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5549,1; },{},{} -16231,Taurus_Crown_Box,Taurus Crown Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5550,1; },{},{} -16232,Reginleif_Box,Reginleif Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5471,1; },{},{} -16235,Octopus_Hat_Box,Octopus Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5554,1; },{},{} -16236,Leaf_Cat_Hat_Box,Leaf Cat Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5555,1; },{},{} -16237,Fur_Seal_Hat_Box,Fur Seal Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5556,1; },{},{} -16238,Wild_Rose_Hat_Box,Wild Rose Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5557,1; },{},{} -16239,Saci_Hat_Box,Saci Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5558,1; },{},{} -16244,Dolor_Hat_Box,Dolor Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5563,1; },{},{} -16245,Tw_April_Scroll,Tw April Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Tw_April_Scroll); },{},{} -16246,Crown_Of_Deceit_Box,Crown Of Deceit Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5564,1; },{},{} -16247,Dragon_Arhat_Mask_Box,Dragon Arhat Mask Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5565,1; },{},{} -16248,Tiger_Arhat_Mask_Box,Tiger Arhat Mask Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5566,1; },{},{} -16249,Knight_Gift_Box,Knight Gift Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -16250,Valkyrie's_Gift_Box,Valkyrie's Gift Box,18,10,,0,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getitem 5826,1; },{},{} -16251,Gemini_Diadem_Box,Gemini Diadem Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5569,1; },{},{} -16252,Gemini_Crown_Box,Gemini Crown Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5570,1; },{},{} -16253,Rabbit_Scroll,Rabbit Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -16254,Energizing_Potion_Box,Energizing Potion Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -16257,Buddah_Scroll,Buddah Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Buddah_Scroll); },{},{} -16258,HD_Bradium_Box5,HD Bradium 5 Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6226,5; },{},{} -16259,HD_Carnium_Box5,HD Carnium 5 Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6225,5; },{},{} -16260,HD_Bradium_Box10,HD Bradium 10 Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6226,10; },{},{} -16261,HD_Carnium_Box10,HD Carnium 10 Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6225,10; },{},{} -16262,F_HD_Bradium_Box5,HD Bradium 5 Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6226,5; },{},{} -16263,F_HD_Carnium_Box5,HD Carnium 5 Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6225,5; },{},{} -16264,HD_Bradium_10_Box2,HD Bradium 10 Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6226,10; },{},{} -16265,HD_Carnium_10_Box2,HD Carnium 10 Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6225,10; },{},{} -16266,Indonesia_Beret_Box,Indonesia Beret Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getitem 5580,1; },{},{} -16267,HE_Battle_Manual_Box,HE Battle Manual Box,2,20,10,1,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12411,10; },{},{} -16268,HE_Bubble_Gum_Box,HE Bubble Gum Box,2,20,10,1,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12412,10; },{},{} -16269,Cancer_Diadem_Box,Cancer Diadem Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5581,1; },{},{} -16270,Cancer_Crown_Box,Cancer Crown Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5582,1; },{},{} -16304,Evil_Incarnation_Disable,Evil Incarnation,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Evil_Incarnation); },{},{} -16305,Upg_Guard_Box,Upg Guard Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2149,1; },{},{} -16306,F_Upg_Guard_Box,F Upg Guard Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2149,1; },{},{} -16307,Upg_Buckler_Box,Upg Buckler Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2150,1; },{},{} -16308,F_Upg_Buckler_Box,F Upg Buckler Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2150,1; },{},{} -16309,Upg_Shield_Box,Upg Shield Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2151,1; },{},{} -16310,F_Upg_Shield_Box,F Upg Shield Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2151,1; },{},{} -16311,Upg_Shoes_Box,Upg Shoes Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2459,1; },{},{} -16312,F_Upg_Shoes_Box,F Upg Shoes Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2459,1; },{},{} -16313,Upg_Boots_Box,Upg Boots Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2460,1; },{},{} -16314,F_Upg_Boots_Box,F Upg Boots Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2460,1; },{},{} -16315,Upg_Greave_Box,Upg Greave Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2461,1; },{},{} -16316,F_Upg_Greave_Box,F Upg Greave Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2461,1; },{},{} -16317,Upg_Hood_Box,Upg Hood Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2561,1; },{},{} -16318,F_Upg_Hood_Box,F Upg Hood Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2561,1; },{},{} -16319,Upg_Muffler_Box,Upg Muffler Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2562,1; },{},{} -16320,F_Upg_Muffler_Box,F Upg Muffler Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2562,1; },{},{} -16321,Upg_Manteau_Box,Upg Manteau Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2563,1; },{},{} -16322,F_Upg_Manteau_Box,F Upg Manteau Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2563,1; },{},{} -16323,Upg_Clip_Box,Upg Clip Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2828,1; },{},{} -16324,F_Upg_Clip_Box,F Upg Clip Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2828,1; },{},{} -16327,Upg_Adv_Suit_Box,Upg Adv Suit Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 15015,1; },{},{} -16328,F_Upg_Adv_Suit_Box,F Upg Adv Suit Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 15015,1; },{},{} -16329,Upg_Coat_Box,Upg Coat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 15016,1; },{},{} -16330,F_Upg_Coat_Box,F Upg Coat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 15016,1; },{},{} -16331,Upg_Saint_Robe_Box,Upg Saint Robe Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 15017,1; },{},{} -16332,F_Upg_Saint_Robe_Box,F Upg Saint Robe Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 15017,1; },{},{} -16333,Upg_Tights_Box,Upg Tights Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 15018,1; },{},{} -16334,F_Upg_Tights_Box,F Upg Tights Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 15018,1; },{},{} -16335,Upg_Thief_Cloth_Box,Upg Thief Cloth Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 15019,1; },{},{} -16336,F_Upg_Thief_Cloth_Box,F Upg Thief Cloth Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 15019,1; },{},{} -16337,Upg_Mail_Box,Upg Mail Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 15020,1; },{},{} -16338,F_Upg_Mail_Box,F Upg Mail Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 15020,1; },{},{} -16339,Upg_Formal_Dress_Box,Upg Formal Dress Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 15021,1; },{},{} -16340,F_Upg_Formal_Dress_Box,F Upg Formal Dress Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 15021,1; },{},{} -16341,Greed_Clip_Box,Greed Clip Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2829,1; },{},{} -16342,F_Greed_Clip_Box,F Greed Clip Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2829,1; },{},{} -16343,Leo_Crown_Box,Leo Crown Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5588,1; },{},{} -16344,Leo_Diadem_Box,Leo Diadem Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5589,1; },{},{} -16345,F_Leo_Crown_Box,F Leo Crown Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5588,1; },{},{} -16346,F_Leo_Diadem_Box,F Leo Diadem Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5589,1; },{},{} -16360,Desert_Prince_Box,Desert Prince Box,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5591,1; },{},{} -16361,FDesert_Prince_Box,FDesert Prince Box,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5591,1; },{},{} -16362,Sigrun's_Wing_Box,Sigrun's Wing Box,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5592,1; },{},{} -16363,FSigrun's_Wing_Box,FSigrun's Wing Box,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5592,1; },{},{} -16368,Virgo_Crown_Box,Virgo Crown Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5598,1; },{},{} -16371,Tw_Aug_Scroll,Tw Aug Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Tw_Aug_Scroll); },{},{} -16372,F_Clover_Box_Mouth,F Clover Box Mouth,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_F_Clover_Box_Mouth); /*rentitem 4Leaf_Clover_In_Mouth,3600;*/ },{},{} -16374,Mouth_Bubble_Gum_Box,Mouth Bubble Gum Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Mouth_Bubble_Gum_Box); /*rentitem Bubble_Gum_In_Mouth,3600;*/ },{},{} -16378,Siege_Tele_Scroll_Box_30,Siege Teleport Scroll 30 Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14591,30; },{},{} -16379,Siege_Teleport_Scroll_Silver_10Box,Siege Teleport Scroll Silver 10Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getitem 12415,10; },{},{} -16380,Siege_Teleport_Scroll_Silver_30Box,Siege Teleport Scroll Silver 30Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getitem 12415,30; },{},{} -16381,WoE_Teleport_Scroll_100_Box,WoE Teleport Scroll 100 Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12444,100; },{},{} -16382,WoE_Teleport_Scroll_30_Box,WoE Teleport Scroll 30 Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12444,30; },{},{} -16385,F_Clover_Box_Mouth2,F Clover Box Mouth2,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_F_Clover_Box_Mouth2); /*rentitem 4Leaf_Clover_In_Mouth,7200;*/ },{},{} -16386,F_Clover_Box_Mouth4,F Clover Box Mouth4,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_F_Clover_Box_Mouth4); /*rentitem 4Leaf_Clover_In_Mouth,14400;*/ },{},{} -16389,BGum_Box_In_Mouth2,BGum Box In Mouth2,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_BGum_Box_In_Mouth2); /*rentitem Bubble_Gum_In_Mouth,7200;*/ },{},{} -16390,BGum_Box_In_Mouth4,BGum Box In Mouth4,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_BGum_Box_In_Mouth4); /*rentitem Bubble_Gum_In_Mouth,14400;*/ },{},{} -16393,HD_Ori_Box5,HD Oridecon 5 Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6240,5; },{},{} -16394,HD_Ori_Box10,HD Oridecon 10 Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6240,10; },{},{} -16395,HD_Elu_Box5,HD Elunium 5 Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6241,5; },{},{} -16396,HD_Elu_Box10,HD Elunium 10 Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6241,10; },{},{} -16397,Virgo_Diadem_Box,Virgo Diadem Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5599,1; },{},{} -16398,Virgo_Crown_Box_,Virgo Crown Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5598,1; },{},{} -16399,Virgo_Diadem_Box_,Virgo Diadem Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5599,1; },{},{} -16405,Midgard_Coin_Box_,Midgard Coin Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6242,1; },{},{} -16406,FMidgard_Coin_Box,FMidgard Coin Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6242,1; },{},{} -16409,Tw_Sep_Scroll,Tw Sep Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Tw_Sep_Scroll); },{},{} -16410,Chung_Hairband_Box,Chung Hairband Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5609,1; },{},{} -16411,FChung_Hairband_Box,FChung Hairband Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5609,1; },{},{} -16412,Ice_Wing_Ear_Box,Ice Wing Ear Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5610,1; },{},{} -16413,FIce_Wing_Ear_Box,FIce Wing Ear Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5610,1; },{},{} -16414,Turtle_Hat_Box,Turtle Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5611,1; },{},{} -16415,FTurtle_Hat_Box,FTurtle Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5611,1; },{},{} -16418,Giant_Fly_Wing_Box_500,Giant Fly Wing Box 500,2,20,10,1,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12212,500; },{},{} -16419,Greed_Scroll_Box_30,Greed Scroll Box 30,2,20,10,1,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14529,30; },{},{} -16420,Adventurer_Pack,Adventurer Pack,2,20,10,1,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12208,10; getitem 12210,10; getitem 12216,20; getitem 12215,20; getitem 7621,10; getitem 12209,10; getitem 12211,5; getitem 12445,10; getitem 12446,10; getitem 12447,10; getitem 12448,10; getitem 12449,10; getitem 12450,10;},{},{} -16421,Written_Oath_Of_Marriage_Box,Written Oath Of Marriage Box,2,20,10,1,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6026,1; },{},{} -16422,Magestic_Goat_Box_,Magestic Goat Box,2,20,10,1,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5280,604800; },{},{} -16423,Episode_13.1_Key_Package,Episode 13.1 Key Package,2,20,10,1,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7782,1; getitem 12208,2; getitem 14582,10; },{},{} -16424,Executioner_Box_,Executioner Box,2,20,10,1,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1174,604800; },{},{} -16425,Cutlus_Box,Cutlus Box,2,20,10,1,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13402,604800; },{},{} -16426,Moonlight_Dagger_Box,Moonlight Dagger Box,2,20,10,1,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13026,604800; },{},{} -16427,Wrench_Box,Wrench Box,2,20,10,1,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1534,604800; },{},{} -16428,Solar_Sword_Box_,Solar Sword Box,2,20,10,1,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13403,604800; },{},{} -16429,Tomahawk_Box_,Tomahawk Box,2,20,10,1,,,,,0xFFFFFFFF,63,2,,,,,,{rentitem 1374,604800;},{},{} -16430,Rudra_Bow_Box,Rudra Bow Box,2,20,10,1,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1729,604800; },{},{} -16431,Pole_Axe_Box_,Pole Axe Box,2,20,10,1,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1419,604800; },{},{} -16436,Libra_Crown_Box,Libra Crown Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5662,1; },{},{} -16437,Libra_Crown_Box_,Libra Crown Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5662,1; },{},{} -16438,Libra_Diadem_Box,Libra Diadem Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5663,1; },{},{} -16439,Libra_Diadem_Box_,Libra Diadem Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5663,1; },{},{} -16440,Filir_Wing_Box,Filir Wing Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5664,1; },{},{} -16446,Tw_October_Scroll,Tw October Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Tw_October_Scroll); },{},{} -16447,Scorpio_Crown_Box,Scorpio Crown Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5676,1; },{},{} -16448,Scorpio_Diadem_Box,Scorpio Diadem Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5677,1; },{},{} -16449,Scorpio_Crown_Box_,Scorpio Crown Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5676,1; },{},{} -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); },{},{} -// -16481,Small_Life_Potion_Box_10,Small Life Potion Box (10),2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12516,10; },{},{} -16483,Abrasive_Box_10,Abrasive Box (10),2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12514,10; },{},{} -// -16503,E_Insurance_Package,E Insurance Package,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12209,10; },{},{} -16504,Bubble_Gum_Box_10,Bubble Gum Box(10),18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 12210,10; },{},{} -16505,Steamed_Tongue_Box_10,Steamed Tongue Box (10),18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12501,10; },{},{} -16506,Steamed_Desert_Scorpions_Box_10,Steamed Desert Scorpions Box (10),18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12502,10; },{},{} -16507,Dragon_Breath_Cocktail_Box_10,Dragon Breath Cocktail Box (10),18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12503,10; },{},{} -16508,Hwergelmir's_Tonic_Box_10,Hwergelmir's Tonic Box (10),18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12504,10; },{},{} -16509,Cooked_Nine_Tail_Box_10,Cooked Nine Tail Box (10),18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12505,10; },{},{} -16510,Immortal_Stew_Box_10,Immortal Stew Box (10),18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12506,10; },{},{} -16514,Blessing_Scroll_Box_10,Blessing Scroll Box (10),18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12522,10; },{},{} -16515,Increase_Agility_Scroll_Box_10,Increase Agility Scroll Box (10),18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12523,10; },{},{} -// -16542,Xmas_Bless,Xmas Bless,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Xmas_Bless); },{},{} -16543,Snowman_Hat_Box,Snowman Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5738,1; },{},{} -16544,FSnowman_Hat_Box,FSnowman Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5738,1; },{},{} -16548,Sagittarius_Crown_Box,Sagittarius Crown Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5739,1; },{},{} -16549,Sagittarius_Diadem_Box,Sagittarius Diadem Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5740,1; },{},{} -16550,Sagittarius_Crown_Box_,Sagittarius Crown Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5739,1; },{},{} -16551,Sagittarius_Diadem_Box_,Sagittarius Diadem Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5740,1; },{},{} -16554,Elven_Sunglasses_Box,Elven Sunglasses Box,2,20,,1,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5245,1; },{},{} -16555,Pr_Reset_Stone_Box,Pr Reset Stone Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Pr_Reset_Stone_Box);*/ getitem 6320,1; },{},{} -16556,FPremium_Reset_Stone_Box,Reset Stone Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_FPr_Reset_Stone_Box);*/ getitem 6320,1; },{},{} -16557,CP_Helm_Scroll10,CP Helm Scroll10,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14517,10; },{},{} -16558,CP_Shield_Scroll10,CP Shield Scroll10,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14518,10; },{},{} -16559,CP_Armor_Scroll10,CP Armor Scroll10,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14519,10; },{},{} -16560,CP_Weapon_Scroll10,CP Weapon Scroll10,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14520,10; },{},{} -16561,CP_Scroll_Package,CP Scroll Package,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -16562,Majestic_Devil_Scroll,Majestic Devil Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Majestic_Devil_Scroll); },{},{} -16563,BM100_Box_5,BM100 Box 5,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14533,5; },{},{} -16565,Capricorn_Crown_Box,Capricorn Crown Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5744,1; },{},{} -16566,Capricorn_Crown_Box_,Capricorn Crown Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5744,1; },{},{} -16567,Capricorn_Diadem_Box,Capricorn Diadem Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5745,1; },{},{} -16568,FCapricorn_Diadem_Box,FCapricorn Diadem Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5745,1; },{},{} -16569,Summer_Scroll,Summer Scroll,2,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -16570,Muscles_Story_J_Box,Muscle Knights Summertime Guide Box,3,0,,0,,,,,,,,,,,,,{},{},{} -16571,Rice_Ball_Hat_Box,Rice Ball Hat Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getitem 5575,1; },{},{} -16576,Illusion_Nothing,Illusion Nothing,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Illusion_Nothing); },{},{} -16577,Dragon_Captain,Dragon Captain,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -16582,Red_Bunny_Band_Box,Red Bunny Band Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5763,1; },{},{} -16584,Sloth_Hat_Box,Sloth Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5761,1; },{},{} -16585,F_Sloth_Hat_Box,F Sloth Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5761,1; },{},{} -16586,Duneyrr_Helm_Box,Duneyrr Helm Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5762,1; },{},{} -16587,F_Duneyrr_Helm_Box,F Duneyrr Helm Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5762,1; },{},{} -16588,Thoughtful_Hat_Box,Thoughtful Hat Box,2,20,10,1,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem callfunc("F_Rand",5336,5337,5338,5346,5339,5474),1; },{},{} -16589,Thoughtful_Hat_Box_,Thoughtful Hat Box,2,20,10,1,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem callfunc("F_Rand",5336,5337,5338,5346,5339,5474),1; },{},{} -16590,Thoughtful_Hat_Box__,Thoughtful Hat Box,2,20,10,1,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem callfunc("F_Rand",5336,5337,5338,5346,5339,5474),1; },{},{} -16598,Activation_Potion_Box_II,Activation Potion Box II,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{} -// -16659,Zodiac_Diadem_Pack,Zodiac Diadem Box,2,20,,1,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem callfunc("F_Rand",5545,5549,5569,5581,5589,5599,5663,5677,5740,5745,5512,5514),1; },{},{} -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,,,,,,{ /* 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; },{},{} -16623,Green_Bunny_Band_Box,Green Bunny Band Box,18,10,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 5785,1; },{},{} -16625,Half_Asprika_box7,Half Asprika Box7,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 2566,604800; },{},{} -16628,Brynhild_Box,Half Brynhild Box,2,20,,0,,,,,0xFFFFFFFF,63,2,,,47,,,{ rentitem 15023,604800; },{},{} -16631,Aributa_Scroll,Aributa Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -16638,Ribbon_Of_Life_Box,Life Ribbon Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Life_Ribbon_Box); },{},{} -16639,Ribbon_Of_Life_Box2,Life Ribbon Box2,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Life_Ribbon_Box2); },{},{} -16640,Ribbon_Of_Life_Box3,Life Ribbon Box3,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Life_Ribbon_Box3); },{},{} -// -16652,Flame_Light,Flame Light,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Flame_Light); },{},{} -16653,BM75_10Box,BM75 10Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12563,10; },{},{} -16654,Valiant_Will,Valiant Will,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -16655,Rapid_Life_Potion_10_Box,Rapid Life Potion 10 Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getitem 12578,10; },{},{} -16658,Rapid_Water_Box_10,Rapid Water Box(10),18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 12578,10; },{},{} -16664,Leo_Scroll,Leo Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -16665,Virgo_Scroll,Virgo Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -16666,Magic_Candy_Box10,Magic Candy Box10,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Magic_Candy_Box10); /*getitem Magic_Candy,10;*/ },{},{} -16668,Kotak_Ketupat_Warna_Warni,Kotak Ketupat Warna Warni,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ rentitem 2869,20160000; },{},{} -16670,Field_Manual_Box_A,Field Manual Box A,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14532,10; if (!rand(10)) getitem callfunc("F_Rand",603,617),1; },{},{} -16673,Libra_Scroll,Libra Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Libra_Scroll); },{},{} -16675,Splash_Scroll,Splash Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Splash_Scroll); },{},{} -16676,Zodiac_Crown_Pack,Zodiac Crown Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem callfunc("F_Rand",5546,5550,5570,5582,5588,5598,5662,5676,5739,5744,5513,5515),1; },{},{} -16677,Universal_Catalog_Gold_Box10,Universal Catalog Gold 10 Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12581,10; },{},{} -16678,Universal_Catalog_Gold_Box50,Universal Catalog Gold 50 Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12581,50; },{},{} -16679,Universal_Catalog_Gold_Box10_,Universal Catalog Gold 10 Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12581,10; },{},{} -16680,Universal_Catalog_Gold_Box50_,Universal Catalog Gold 50 Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12581,50; },{},{} -16681,BR_Independence_Scroll,BR Independence Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_BR_Independence_Scroll); },{},{} -16682,Boarding_Halter_Box,Boarding Halter Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Boarding_Halter_Box); /*rentitem 12622,604800;*/ },{},{} -16683,B_Halter_Box_30Days,B Halter Box 30Days,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12622,2592000; },{},{} -16684,Wing_Of_Fly_Box10,Wing Of Fly Box10,2,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 601,10; },{},{} -16685,Wing_Of_Fly_Box50,Wing Of Fly Box50,2,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 601,50; },{},{} -16686,Wing_Of_Fly_Box100,Wing Of Fly Box100,2,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 601,100; },{},{} -16687,RWC2010_SuitcaseA,RWC2010 SuitcaseA,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_RWC2010_SuitcaseA); },{},{} -16688,RWC2010_SuitcaseB,RWC2010 SuitcaseB,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_RWC2010_SuitcaseB); },{},{} -16691,Scorpius_Scroll,Scorpius Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -16692,Alice_Hat_Box,Alice Hat Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5137,1; },{},{} -16693,Crescent_Helm_Box,Crescent Helm Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5142,1; },{},{} -16694,Crescent_Helm_Box_,Crescent Helm Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5142,1; },{},{} -16695,Dragon_Skull_Box,Dragon Skull Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5292,1; },{},{} -16696,Dragon_Skull_Box_,Dragon Skull Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5292,1; },{},{} -16697,Drooping_Bunny_Box,Drooping Bunny Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5290,1; },{},{} -16698,Drooping_Bunny_Box_,Drooping Bunny Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5290,1; },{},{} -16699,Evolved_Blue_Fish_Box,Evolved Blue Fish Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5222,1; },{},{} -16701,Evolved_Pair_of_Red_Ribbon_Box,Evolved Pair of Red Ribbon Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5221,1; },{},{} -16702,Evolved_Pair_of_Red_Ribbon_Box_,Evolved Pair of Red Ribbon Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5221,1; },{},{} -16703,Evolved_Pipe_Box,Evolved Pipe Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5220,1; },{},{} -16704,Evolved_Pipe_Box_,Evolved Pipe Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5220,1; },{},{} -16705,Hibiscus_Box,Hibiscus Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5139,1; },{},{} -16706,Hibiscus_Box_,Hibiscus Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5139,1; },{},{} -16707,Jumping_Poring_Box,Jumping Poring Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5335,1; },{},{} -16708,Jumping_Poring_Box_,Jumping Poring Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5335,1; },{},{} -16709,Kettle_Hat_Box,Kettle Hat Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5291,1; },{},{} -16710,Kettle_Hat_Box_,Kettle Hat Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5291,1; },{},{} -16711,Magic_Eyes_Box,Magic Eyes Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5138,1; },{},{} -16712,Magic_Eyes_Box_,Magic Eyes Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5138,1; },{},{} -16713,Mini_Propeller_Box,Mini Propeller Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5226,1; },{},{} -16714,Mini_Propeller_Box_,Mini Propeller Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5226,1; },{},{} -16715,Puppy_Hat_Box,Puppy Hat Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5182,1; },{},{} -16716,Puppy_Hat_Box_,Puppy Hat Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5182,1; },{},{} -16717,Sheep_Hat_Box,Sheep Hat Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5133,1; },{},{} -16718,Sheep_Hat_Box_,Sheep Hat Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5133,1; },{},{} -16719,Tiger_Mask_Box_,Tiger Mask Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5098,1; },{},{} -16720,Tiger_Mask_Box__,Tiger Mask Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5098,1; },{},{} -16721,Vaccation_Hat_Box,Vacation Hat Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5629,1; },{},{} -16722,Vane_Hairpin_Box,Vane Hairpin Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5285,1; },{},{} -16723,Vane_Hairpin_Box_,Vane Hairpin Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5285,1; },{},{} -16724,Vanilmirth_Hat_Box,Vanilmirth Hat Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5289,1; },{},{} -16725,Vanilmirth_Hat_Box_,Vanilmirth Hat Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5289,1; },{},{} -16726,Water_Lily_Crown_Box,Water Lily Crown Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5284,1; },{},{} -16727,Water_Lily_Crown_Box_,Water Lily Crown Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5284,1; },{},{} -16728,Pink_Beanie_Hat_Box,Pink Beanie Hat Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5237,1; },{},{} -16729,Pink_Beanie_Hat_Box_,Pink Beanie Hat Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5237,1; },{},{} -16730,Green_Ribbon_Box,Green Ribbon Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5193,1; },{},{} -16731,Green_Ribbon_Box_,Green Ribbon Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5193,1; },{},{} -16732,Gray_Deviruchi_Hat_Box,Gray Deviruchi Hat Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5229,1; },{},{} -16733,Gray_Deviruchi_Hat_Box_,Gray Deviruchi Hat Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5229,1; },{},{} -16734,Blue_Drooping_Cat_Box,Blue Drooping Cat Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5233,1; },{},{} -16735,Blue_Drooping_Cat_Box_,Blue Drooping Cat Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5233,1; },{},{} -16736,Fantastic_Wig_Box,Fantastic Wig Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5276,1; },{},{} -16737,Fantastic_Wig_Box_,Fantastic Wig Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5276,1; },{},{} -16738,Yellow_Mage_Hat_Box,Yellow Mage Hat Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5242,1; },{},{} -16739,Yellow_Mage_Hat_Box_,Yellow Mage Hat Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 5242,1; },{},{} -16740,Ptotection_Seagod_Box,The Sea God's Call 23 Hour Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 6436,86400; },{},{} -16741,Hairtail_Box1,Cutlass 1 Hour Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Hairtail_Box1);*/ rentitem 1198,3600; },{},{} -16742,Hairtail_Box2,Cutlass 7 Day Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Hairtail_Box2);*/ rentitem 1198,604800; },{},{} -16743,Spearfish_Box1,Marlin 1 Hour Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Spearfish_Box1);*/ rentitem 1489,3600; },{},{} -16744,Spearfish_Box2,Marlin 7 Day Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Spearfish_Box2);*/ rentitem 1489,604800; },{},{} -16745,Saurel_Box1,Pompano 1 Hour Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Saurel_Box1);*/ rentitem 13068,3600; },{},{} -16746,Saurel_Box2,Pompano 7 Day Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Saurel_Box2);*/ rentitem 13068,604800; },{},{} -16747,Tuna_Box1,Tuna 1 Hour Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Tuna_Box1);*/ rentitem 16016,3600; },{},{} -16748,Tuna_Box2,Tuna 7 Day Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Tuna_Box2);*/ rentitem 16016,604800; },{},{} -16749,Malang_Crab_Box1,Malangdo Crab 1 Hour Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Malang_Crab_Box1);*/ rentitem 18107,3600; },{},{} -16750,Malang_Crab_Box2,Malangdo Crab 7 Day Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Malang_Crab_Box2);*/ rentitem 18107,604800; },{},{} -16751,Brindle_Eel_Box1,Zebra Eel 1 Hour Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Brindle_Eel_Box1);*/ rentitem 18108,3600; },{},{} -16752,Brindle_Eel_Box2,Zebra Eel 7 Day Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Brindle_Eel_Box2);*/ rentitem 18108,604800; },{},{} -16753,Unbreak_Weap_Box,Unbreakable Weapon Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6438,1; },{},{} -16754,F_Unbreak_Weap_Box,Unbreakable Weapon Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6438,1; },{},{} -16755,Unbreak_Def_Box,Unbreakable Armor Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6439,1; },{},{} -16756,F_Unbreak_Def_Box,Unbreakable Armor Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6439,1; },{},{} -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; },{},{} -16777,Universal_Catalog_Gold_Box50__,Universal Catalog Gold 50 Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12581,50; },{},{} -// -16821,Dungeon_Teleport_Scroll_Box_5,Dungeon Teleport Scroll Box(5),2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -16822,Dungeon_Teleport_Scroll_Box_10,Dungeon Teleport Scroll Box(10),2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -16826,Sagittarius_Scr_Box,Sagittarius Scr Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Sagittarius_Scr_Box); },{},{} -16837,Dungeon_Teleport_Scroll_II_Box_5,Dungeon Teleport Scroll II Box(5),2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -16838,Dungeon_Teleport_Scroll_II_Box_10,Dungeon Teleport Scroll II Box(10),2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -16864,Siege_Map_Teleport_Scroll_Box_10,Siege Map Teleport Scroll Box(10),18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14591,10; },{},{} -16865,Siege_Map_Teleport_Scroll_Box_30,Siege Map Teleport Scroll Box(30),18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14591,30; },{},{} -16866,Siege_Map_Teleport_Scroll_II_Box_10,Siege Map Teleport Scroll II Box(10),18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14591,10; },{},{} -16867,Siege_Map_Teleport_Scroll_II_Box_30,Siege Map Teleport Scroll II Box(30),18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14591,30; },{},{} -// -16972,Weather_Report_Box,Weather Report Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Weather_Report_Box);*/ getitem 19507,1; getitem 19518,1; getitem 19520,1; getitem 19519,1; },{},{} -16973,Yellow_Hat_Box,Yellow Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 19515,1; },{},{} -16974,Comin_Actor_Box,Comin Actor Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Comin_Actor_Box);*/ getitem 19514,1; getitem 19521,1; },{},{} -16975,Singing_Bird_Box,Singing Bird Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 19516,1; },{},{} -16976,Hen_Set_Box,Hen Set Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Hen_Set_Box);*/ getitem 19513,1; getitem 19517,1; },{},{} -16977,Red_Minicrown_Box,Red Minicrown Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 19522,1; },{},{} -16979,Silvervine_Fruit_Box4,Silvervine 4 Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Silvervine_Fruit_Box4);*/ getitem 6417,4; getitem 12636,12; },{},{} -// -16990,Sagittar_Diadem_Scroll,Sagittar Diadem Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Sagittar_Diadem_Scroll); },{},{} -16991,Sagittar_Di_Scroll_Box,Sagittar Di Scroll Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Sagittar_Di_Scroll_Box); },{},{} -16992,Butterfly_Wing_Box20,Butterfly Wing Box20,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 602,20; },{},{} -16993,Butterfly_Wing_Box50,Butterfly Wing Box50,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 602,50; },{},{} -16995,Old_Hat_Box,Old Hat Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,0,{},{},{} -16996,Capri_Crown_Scroll,Capri Crown Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Capri_Crown_Scroll); },{},{} -16997,Capri_Crown_Scroll_Box,Capri Crown Scroll Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Capri_Crown_Scroll_Box); },{},{} -16998,Archangel_Wing_Box,Archangel Wings Box,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2573,1; },{},{} -16999,Bravery_Bag_Box,Bravery Bag Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2576,1; },{},{} -17000,Wander_Man_Box5,Wander Man Box5,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12626,5; },{},{} -17001,Wander_Man_Box10,Wander Man Box10,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12626,10; },{},{} -17002,Wicked_Nymph_Box5,Wicked Nymph Box5,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12627,5; },{},{} -17003,Wicked_Nymph_Box10,Wicked Nymph Box10,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12627,10; },{},{} -17004,Kasa_Scroll_Box5,Kasa Scroll Box5,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12628,5; },{},{} -17005,Kasa_Scroll_Box10,Kasa Scroll Box10,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12628,10; },{},{} -17006,Salamander_Box5,Salamander Box5,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12629,5; },{},{} -17007,Salamander_Box10,Salamander Box10,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12629,10; },{},{} -17008,Teddy_Bear_Box5,Teddy Bear Box5,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12630,5; },{},{} -17009,Teddy_Bear_Box10,Teddy Bear Box10,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12630,10; },{},{} -17011,Capricon_Di_Scroll,Capricon Di Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Capricon_Di_Scroll); },{},{} -17012,Capricon_Di_Scroll_Box,Capricon Di Scroll Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Capricon_Di_Scroll_Box); },{},{} -17013,Malang_Woe_Encard_Box,Malang Woe Encard Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*getgroupitem(IG_Malang_Woe_Encard_Box);*/ getitem 16740,1; getitem 16765,1; },{},{} -17014,Butterfly_ear_Box,Butterfly ear Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 19509,1; },{},{} -17015,Stuckhead_Screw_Box,Stuckhead Screw Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 19510,1; },{},{} -17016,Aquarius_Diadem_Scroll,Aquarius Diadem Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Aquarius_Diadem_Scroll); },{},{} -17017,Aquarius_Di_Scroll_Box,Aquarius Di Scroll Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Aquarius_Di_Scroll_Box); },{},{} -17018,Libra_Scroll2,Libra Scroll2,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -17019,Scorpio_Scroll2,Scorpio Scroll2,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -17020,Tw_Nov_Scroll2,Tw Nov Scroll2,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Tw_Nov_Scroll2); },{},{} -17021,Summer_Scroll3,Summer Scroll3,2,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Summer_Scroll3); },{},{} -17022,Super_Pet_Egg1_2,Super Pet Egg1 2,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Super_Pet_Egg1_2); },{},{} -17023,Super_Pet_Egg4_2,Super Pet Egg4 2,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Super_Pet_Egg4_2); },{},{} -17024,Lovely_Aquarius_Scroll,Lovely Aquarius Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Lovely_Aquarius_Scroll); },{},{} -17025,Lovely_Aquarius_Box,Lovely Aquarius Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Lovely_Aquarius_Box); },{},{} -17026,Boitata_Scroll,Boitata Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Boitata_Scroll); },{},{} -17028,Pisces_Diadem_Scroll,Pisces Diadem Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pisces_Diadem_Scroll); },{},{} -17029,Pisces_Diadem_Box_,Pisces Diadem Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Pisces_Diadem_Box); },{},{} -17030,St_Pat_Hat_box,St Pat Hat box,18,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 18565,1; },{},{} -17035,Energetic_Pisces_Scroll,Energetic Pisces Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Energetic_Pisces_Scroll); },{},{} -17036,Energetic_Pisces_Box,Energetic Pisces Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Energetic_Pisces_Box); },{},{} -17037,Trans_Box_Devi,Trans Box Devi,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12658,10; },{},{} -17038,Trans_Box_Ray_Arch,Trans Box Ray Arch,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12659,10; },{},{} -17039,Trans_Box_Mavka,Trans Box Mavka,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12660,10; },{},{} -17040,Trans_Box_Marduk,Trans Box Marduk,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12661,10; },{},{} -17041,Trans_Box_Banshee,Trans Box Banshee,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12662,10; },{},{} -17042,Trans_Box_Poring,Trans Box Poring,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12663,10; },{},{} -17043,Trans_Box_Golem,Trans Box Golem,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12664,10; },{},{} -17050,Aries_Scroll_,Aries Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Aries_Scroll); },{},{} -17051,Aries_Scroll_Box,Aries Scroll Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Aries_Scroll_Box); },{},{} -17052,Holy_Mom_Blaze_Box,Holy Mom Blaze Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6472,1; },{},{} -17056,Wiz_Card_Album,Wiz Card Album,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -17057,Swordman_Card_Album,Swordman Card Album,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -17058,Thief_Card_Album,Thief Card Album,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -17059,Acolyte_Card_Album,Acolyte Card Album,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -17060,Merchant_Card_Album,Merchant Card Album,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -17061,Archer_Card_Album,Archer Card Album,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -17062,Taurus_Diadem_Scroll,Taurus Diadem Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Taurus_Diadem_Scroll); },{},{} -17063,Taurus_Di_Scroll_Box,Taurus Di Scroll Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Taurus_Di_Scroll_Box); },{},{} -17064,Tw_Sagitt_Scroll,Tw Sagitt Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -17066,Poison_Bottle_Box50,Poison Bottle Box50,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 678,50; },{},{} -17067,Poison_Bottle_Box100,Poison Bottle Box100,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 678,100; },{},{} -17068,Acidbomb_Box50,Acidbomb Box50,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7135,50; getitem 7136,50; },{},{} -17069,Acidbomb_Box100,Acidbomb Box100,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7135,100; getitem 7136,100; },{},{} -17070,Acidbomb_Box500,Acidbomb Box500,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 7135,500; getitem 7136,500; },{},{} -17071,Superb_Fish_Box50,Superb Fish Box50,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14524,50; },{},{} -17072,Superb_Fish_Box100,Superb Fish Box100,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14524,100; },{},{} -17073,Superb_Fish_Box500,Superb Fish Box500,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14524,500; },{},{} -17074,Empty_Bottle_Box10,Empty Bottle Box10,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 713,10; },{},{} -17075,Empty_Bottle_Box100,Empty Bottle Box100,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 713,100; },{},{} -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,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,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,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,,,,,,{},{},{} -17114,Horn_Of_Ancient_Box,Horn Of Ancient Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 18595,1; },{},{} -17115,Sprout_Hat_Box,Sprout Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 18596,1; },{},{} -17116,Mercury_Helm_Box,Mercury Helm Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 18597,1; },{},{} -17117,Aries_Scroll,Aries Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -17118,ASPD_Potion_Box10,ASPD Enhanced Potion Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12684,10; },{},{} -17120,Taurus_Scroll,Taurus Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -17121,Starry_Scroll,Starry Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -17122,Immuned_Shield_Box,Immuned Shield Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2168,1; },{},{} -17123,Black_Devil_Mask_Box,Black Devil Mask Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 18599,1; },{},{} -17124,Cat_Ears_Beret_Box,Cat Ears Beret Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 18600,1; },{},{} -17125,Red_Bread_Hat_Box,Red Bread Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 18601,1; },{},{} -17126,ASPD_Potion_Box10_2,ASPD Enhanced Potion Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,0,{ getitem 12684,10; },{},{} -17127,Leo_Scroll2,Leo Scroll2,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -17134,RWC_Scroll,RWC Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -17138,Ms_Cancer_Scroll,Ms Cancer Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Ms_Cancer_Scroll); },{},{} -17139,RWC_Super_Scroll,RWC Super Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_RWC_Super_Scroll); },{},{} -17140,Leo_Scroll_,Leo Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Leo_Scroll); },{},{} -17141,Ms_Virgo_Scroll,Ms Virgo Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Ms_Virgo_Scroll); },{},{} -17143,Ms_Scorpio_Scroll,Ms Scorpio Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Ms_Scorpio_Scroll); },{},{} -17146,Dep_Alice_Hat_Box,Dep Alice Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 18630,1; },{},{} -17147,Ribbon_Chef_Hat_Box,Ribbon Chef Hat Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 18631,1; },{},{} -17152,Bridal_Ribbon_Box,Bridal Ribbon Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 18636,1; },{},{} -17155,Upg_Huuma_Shuriken_Box,Upg Huuma Shuriken Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13316,86400; },{},{} -17156,TCG_Card_Scroll,Bossnia Ticket Scroll,2,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_TCG_Card_Scroll); },{},{} -17157,Vital_Flower_Box,Vital Flower Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6113,10; },{},{} -17158,Flame_Gemstone_Box,Flame Gemstone Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6114,10; },{},{} -17159,Change_Name_Card_Box,Name Change Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -17160,Character_Name_Change_Card_Box,Character Name Change Card Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -17162,Boarding_Halter_Box7,Boarding Halter Box7,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 12622,604800; },{},{} -17165,Challenge_Kit,Challenge Kit,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Challenge_Kit); /*getitem Blessing_10_Scroll,20; getitem Inc_Agi_10_Scroll,20;*/ },{},{} -17176,Boarding_Halter_Box3,Halter Lead Box[Trial],18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,0,{},{},{} -17181,Jan_Groove_Box,Jan Groove Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -17184,3rd_Test_Pass_Box,3rd Test Pass Box,18,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 6583,1; },{},{} -17203,Free_Pass_Box,Free Pass Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -17204,Shining_Egg,Shining Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Shining_Egg); },{},{} -17207,Idn_Heart_Scroll,Idn Heart Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Idn_Heart_Scroll); },{},{} -17209,Tw_Rainbow_Scroll,Tw Rainbow Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Tw_Rainbow_Scroll); },{},{} -17210,Tw_Red_Scroll,Tw Red Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Tw_Red_Scroll); },{},{} -17211,Tw_Orange_Scroll,Tw Orange Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Tw_Orange_Scroll); },{},{} -17212,Tw_Yellow_Scroll,Tw Yellow Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Tw_Yellow_Scroll); },{},{} -17226,Infinite_Concentration_Potion_,Infinite Concentration Potion,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ rentitem 12884,604800; },{},{} -17227,Infinite_Awakening_Potion_,Infinite Awakening Potion,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ rentitem 12885,604800; },{},{} -17228,Infinite_Berserk_Potion_,Infinite Berserk Potion,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ rentitem 12886,604800; },{},{} -17229,Infinite_Flywing_Box,Infinite Flywing Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ rentitem 12887,604800; },{},{} -17230,Valerian_Scroll,Valerian Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Valerian_Scroll); },{},{} -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,,,,,,{ 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); },{},{} -17236,Scroll_Of_Thews,Scroll Of Thews,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Scroll_Of_Thews); },{},{} -17237,Scroll_Of_Darkness,Scroll Of Darkness,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Scroll_Of_Darkness); },{},{} -17238,Scroll_Of_Holiness,Scroll Of Holiness,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Scroll_Of_Holiness); },{},{} -17239,Horned_Scroll,Horned Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Horned_Scroll); },{},{} -17240,Mercury_Scroll,Mercury Scroll,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Mercury_Scroll); },{},{} -17241,Amistr_Cap_Box,Amistir Cap Box,2,10,,10,,4,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 5766,1; },{},{} -17244,Event_Almighty_Box,Event Almighty Box,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 12883,10; },{},{} -17242,Immortal_Egg,Immortal Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Immortal_Egg); },{},{} -17245,Idn_Independ_Scroll,Idn Independ Scroll,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -17246,HD_Elunium_Box_30,HD Elunium Box(30),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 6241,30; },{},{} -17247,HD_Oridecon_Box_30,HD Oridecon Box(30),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 6240,30; },{},{} -17251,C_Wing_Of_Fly_3Day_Box,C Wing Of Fly 3Day Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_C_Wing_Of_Fly_3Day_Box); },{},{} -17252,RWC_2012_Set_Box,RWC 2012 Set Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_RWC_2012_Set_Box); },{},{} -17253,RWC_2012_Ring_Box,RWC 2012 Ring Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2966,1; },{},{} -17254,RWC_2012_Pendant_Box,RWC 2012 Pendant Box,18,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 2968,1; },{},{} -17255,Sapphire_Egg,Sapphire Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Sapphire_Egg); },{},{} -17256,Good_Student_Gift_Box,Good Student Gift Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Good_Student_Gift_Box); },{},{} -17257,Bad_Student_Gift_Box,Bad Student Gift Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Bad_Student_Gift_Box); },{},{} -17262,Ex_Def_Potion_Box,Special Defense Potion Box,18,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Ex_Def_Potion_Box); /*getitem Ex_Def_Potion,5; getitem RWC_Scroll_2012,1;*/ },{},{} -17263,Infinite_Concentration_Potion_3rd_Box,Infinite Concentration Potion 3rd Box,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ rentitem 12884,259200; },{},{} -17264,Infinite_Awakening_Potion_3rd_Box,Infinite Awakening Potion 3rd Box,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ rentitem 12885,259200; },{},{} -17265,Infinite_Berserk_Potion_3rd_Box,Infinite Berserk Potion 3rd Box,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ rentitem 12886,259200; },{},{} -17266,Limited_Battle_Manual_Package,Limited Battle Manual Package,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 17263,1; getitem 17264,1; getitem 17265,1; },{},{} -17270,STR_Biscuit_Stick_Box,Bar Cookie Of Strength Box,18,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14616,20; },{},{} -17271,VIT_Biscuit_Stick_Box,Bar Cookie Of Vitality Box,18,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14617,20; },{},{} -17272,AGI_Biscuit_Stick_Box,Bar Cookie Of Agility Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 14618,20; },{},{} -17273,INT_Biscuit_Stick_Box,Bar Cookie Of Intellgence Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 14619,20; },{},{} -17274,DEX_Biscuit_Stick_Box,Bar Cookie Of Dexterity Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 14620,20; },{},{} -17275,LUK_Biscuit_Stick_Box,Bar Cookie Of Luck Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 14621,20; },{},{} -17277,Unlimited_Box,Unlimited Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Unlimited_Box); },{},{} -17278,Unlimited_Box_10,Unlimited Box(10),18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Unlimited_Box_10); },{},{} -17281,Refinement_Ore_Box_IV,Refinement Ore Box IV,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 7619,5; getitem 7620,5; getitem 14627,1; },{},{} -17282,Refinement_Ore_Box_IV_10,Refinement Ore Box IV(10),18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 7619,50; getitem 7620,50; getitem 14627,11; },{},{} -17283,Refinement_Ore_Box_IV_20,Refinement Ore Box IV(20),18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 7619,100; getitem 7620,100; getitem 14627,23; },{},{} -17285,Events_Beauty_Gift_Box,Events Beauty Gift Box,18,10,,10,,,,,,,,,,,,,{ /*TODO*/ },{},{} -17292,Shadow_Box,Shadow Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem callfunc("F_Rand",24018,24019,24020,24021,24022,24023,24024,24025,24026),1; },{},{} -17293,Shadow_Physical_Package,Shadow Physical Package,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem callfunc("F_Rand",24018,24019,24020,24024,24025,24026),1; },{},{} -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_Package_10); },{},{} -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_Scroll,Midgard Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Midgard_Scroll); },{},{} -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_Scroll,Sweet Midgard Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Sweet_Midgard_Scroll); },{},{} -17320,IdRO10th_Scroll,Birthday IdRO10th Scroll,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_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_Scroll,Requiem Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Requiem_Scroll); },{},{} -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_Box_100); },{},{} -17337,Holy_Spirit_Scroll,Holy Spirit Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Holy_Spirit_Scroll); },{},{} -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 */ },{},{} -17396,Half_L_Magestic_Goat_Box1,Half L Magestic Goat Box1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5887,86400; },{},{} -17397,Half_L_Magestic_Goat_Box7,Half L Magestic Goat Box7,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 5887,604800; },{},{} -17398,Half_BF_Spear1_Box1,Half BF Spear1 Box1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1439,86400; },{},{} -17399,Half_BF_Spear1_Box7,Half BF Spear1 Box7,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1439,604800; },{},{} -17400,Half_BF_Book2_Box1,Half BF Book2 Box1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1597,86400; },{},{} -17401,Half_BF_Book2_Box7,Half BF Book2 Box7,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1597,604800; },{},{} -17402,Half_BF_Staff4_Box1,Half BF Staff4 Box1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1673,86400; },{},{} -17403,Half_BF_Staff4_Box7,Half BF Staff4 Box7,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1673,604800; },{},{} -17404,Half_BF_Staff2_Box1,Half BF Staff2 Box1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1674,86400; },{},{} -17405,Half_BF_Staff2_Box7,Half BF Staff2 Box7,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1674,604800; },{},{} -17406,Half_BF_Knuckle1_Box1,Half BF Knuckle1 Box1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1838,86400; },{},{} -17407,Half_BF_Knuckle1_Box7,Half BF Knuckle1 Box7,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 1838,604800; },{},{} -17408,Half_BF_Dagger2_Box1,Half BF Dagger2 Box1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13096,86400; },{},{} -17409,Half_BF_Dagger2_Box7,Half BF Dagger2 Box1s,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13096,604800; },{},{} -17410,Half_BF_Huuma_Shuriken2_Box1,Half BF Huuma Shuriken2 Box1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13321,86400; },{},{} -17411,Half_BF_Huuma_Shuriken2_Box7,Half BF Huuma Shuriken2 Box7,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13321,604800; },{},{} -17412,Half_BF_Sword1_Box1,Half BF Sword1 Box1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13445,86400; },{},{} -17413,Half_BF_Sword1_Box7,Half BF Sword1 Box7,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 13445,604800; },{},{} -17414,Half_Mjolnir_Box1,Half Mjolnir Box1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 16034,86400; },{},{} -17415,Half_Mjolnir_Box7,Half Mjolnir Box7,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 16034,604800; },{},{} -17416,Half_BF_Morning_Star1_Box1,Half BF Morning Star1 Box1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 16035,86400; },{},{} -17417,Half_BF_Morning_Star1_Box7,Half BF Morning Star1 Box1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 16035,604800; },{},{} -17418,Half_BF_Bow1_Box1,Half BF Bow1 Box1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 18124,86400; },{},{} -17419,Half_BF_Bow1_Box7,Half BF Bow1 Box7,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 18124,604800; },{},{} -17420,Half_BF_Katar2_Box1,Half BF Katar2 Box1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 28002,86400; },{},{} -17421,Half_BF_Katar2_Box7,Half BF Katar2 Box7,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 28002,604800; },{},{} -17422,Half_BF_Two_Handed_Axe1Box1,Half BF Two Handed Axe1Box1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 28102,86400; },{},{} -17423,Half_BF_Two_Handed_Axe1Box7,Half BF Two Handed Axe1Box7,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 28102,604800; },{},{} -17424,Half_BF_Rifle1_Box1,Half BF Rifle1 Box1,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ rentitem 28203,86400; },{},{} -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,,,,,,{ /* 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,Thanks_Giving_Scroll,Miracle Lucky Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Thanks_Giving_Scroll); },{},{} -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,Idn_Legend_Hero_Scroll,Legend Hero Lucky Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Idn_Legend_Hero_Scroll); },{},{} -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_Scroll,Blessing Midgard Lucky Egg,18,10,,0,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Blessing_Midgard_Scroll); },{},{} -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_II_10); },{},{} -17461,Costama_Egg18,Frozen Egg Costume,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Costama_Egg18); },{},{} -17464,Winter_Midgard_Scroll,Winter Midgard Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Winter_Midgard_Scroll); },{},{} -17465,Refinement_Ore_Box_VI,Refinement Ore Box VI,18,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),18,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;},{},{} -17470,Costama_Egg19,Headgear Costume Scroll,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Costama_Egg19); },{},{} -17471,Spring_Festival_Scroll,Spring Festival Lucky Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Spring_Festival_Scroll); },{},{} -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_III_10); },{},{} -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_II_10); },{},{} -17479,Midgard_Fes_Scroll,Midgard Festival Egg,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Midgard_Fes_Scroll); },{},{} -17481,Costama_Egg21,Flower Blossom Scroll,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Costama_Egg21); },{},{} -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,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Three_Master_Package_III); },{},{} -17484,Three_Master_Package_III_10,Three Master Package III(10),18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Three_Master_Package_III_10); },{},{} -17490,Time_Travel_Scroll,Time Travel Lucky Egg,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Time_Travel_Scroll); },{},{} -17491,Refinement_Ore_Box_VII,Refinement Ore Box VII,18,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),18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 7619,50; getitem 7620,50; getitem 4482,11; },{},{} -17493,Costama_Egg23,Burning Feather Costume Scroll,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Costama_Egg23); },{},{} -17494,Happy_Time_Scroll,Rise Midgard Lucky Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Happy_Time_Scroll); },{},{} -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); },{},{} -17497,Costama_Egg24,Seaside Costume Scroll,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Costama_Egg24); },{},{} -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; },{},{} -17502,Support_Package_IV_10,Support Package IV(10),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 12208,20; getitem 12210,20; getitem 12883,20; getitem 14600,20; /*getitem Mysterious Water of Life,60;*/ if(!rand(100)) getitem 22823,11; },{},{} -17507,Nyangvine_Box4,Actinidia Cat Fruit Box(4),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 6909,4; },{},{} -17508,Nyangvine_Box10,Actinidia Cat Fruit Box(10),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 6909,10; },{},{} -17509,Nyangvine_Box40,Actinidia Cat Fruit Box(40),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 6909,40; },{},{} -17510,Smelting_Ore_Box_VIII,Smelting Ore Box VIII,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 7619,5; getitem 7620,5; getitem 22828,1; },{},{} -17511,Smelting_Ore_Box_VIII_10,Smelting Ore Box VIII(10),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 7619,50; getitem 7620,50; getitem 22828,11; },{},{} -17512,Limited_Purified_Eluminium_Box_30,(Limited) Purified Eluminium Box(30),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 6911,30; getitem 6635,1; },{},{} -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; },{},{} -17517,Costama_Egg28,Animal Costume Scroll,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Costama_Egg28); },{},{} -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; },{},{} -17523,Costama_Egg29,Mystical Costume Scroll,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Costama_Egg29); },{},{} -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_Scroll,Majestic Lucky Egg,18,0,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Majestic_Lucky_Scroll); },{},{} -17527,Nyangvine_Box200,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_Scroll,Blessing Lucky Egg,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Blessing_Lucky_Scroll); },{},{} -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_Scroll,Garnet Lucky Egg,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Garnet_Lucky_Scroll); },{},{} -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; },{},{} -17569,Dungeon_1_hour_Ticket_Box,Dungeon 1 Hour Ticket Box,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 14505,1; },{},{} -17572,Erzulie_Lucky_Scroll,Erzulie Lucky Egg,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Erzulie_Lucky_Scroll); },{},{} -17584,Venus_Lucky_Scroll,Venus Lucky Egg,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Venus_Lucky_Scroll); },{},{} -17588,Amora_Lucky_Scroll,Amora Lucky Egg,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Amora_Lucky_Scroll); },{},{} -17598,Sograt_Lucky_Scroll,Sograt Lucky Scroll,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Sograt_Lucky_Scroll); },{},{} -17607,Sanctuary_Lucky_Scroll,Sanctuary Lucky Egg,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Sanctuary_Lucky_Scroll); },{},{} -17613,Chronosian_Lucky_Scroll,Chronosian Lucky Egg,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Chronosian_Lucky_Scroll); },{},{} -17628,Cyborg_Lucky_Scroll,Cyborg Lucky Egg,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Cyborg_Lucky_Scroll); },{},{} -17633,Undine_Lucky_Scroll,Undine Lucky Egg,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Undine_Lucky_Scroll); },{},{} -17648,Smithy_Lucky_Scroll,Smithy Lucky Egg,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Smithy_Lucky_Scroll); },{},{} -17659,Ganymede_Lucky_Scroll,Ganymede Lucky Egg,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Ganymede_Lucky_Scroll); },{},{} -17665,LastAngel_LuckyScroll,LastAngel LuckyScroll,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_LastAngel_LuckyScroll); },{},{} -17671,Valkyrie_Lucky_Scroll,Valkyrie Lucky Egg,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Valkyrie_Lucky_Scroll); },{},{} -17674,Rainbow_Lucky_Scroll,Splash Rainbow Lucky Egg,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Splash_Rainbow_Lucky_Scroll); },{},{} -17681,Midgard_Lucky_Scroll,Midgard Lucky Scroll,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Midgard_Lucky_Scroll); },{},{} -17692,June_Lucky_Scroll,Blessing Scarlet Egg,18,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getgroupitem(IG_Blessing_Scarlet_Scroll); },{},{} -//=================================================================== -// 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:100,,5,0,0x00080800,56,2,34,3,105,1,11,{ 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; },{},{} -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; 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; 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; },{},{} -18112,Upg_Bow,Upg Bow,5,20,,600,60,,5,1,0x000A0848,63,2,34,3,1,1,11,{ .@r = getrefine(); bonus bBaseAtk,(.@r*7); bonus bLongAtkRate,(.@r*2); if(BaseJob==Job_Hunter) bonus bBaseAtk,20; if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*10); },{},{} -18113,Velum_Arbalest,Vellum Arbalest,5,20,,1100,50,,5,0,0x000A0848,63,2,34,4,95,1,11,{ bonus3 bSPVanishRaceRate,RC_Player_Human,1000,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_Human,30+getrefine(); bonus2 bIgnoreDefRaceRate,RC_Player_Human,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; .@i = min(BaseLevel/10,12); 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_Human,40; bonus2 bAddEff,Eff_Curse,3000; },{},{} -18119,Thanos_Bow,Thanos Bow,5,10,,1300,180:110,,5,1,0x00080808,56,2,34,4,120,1,11,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000; },{},{ heal -1000,0; } -18120,Bow_Of_Evil_Slayer,Evil Slayer Piercer Bow,5,10,,1350,115,,5,1,0x000A0808,63,2,34,3,100,1,11,{ bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; .@r = getrefine(); bonus2 bAddClass,Class_All,(.@r>=12?12:(.@r>=9?5:0)); },{},{} -18121,Bow_of_Vicious_Mind,Bow of Vicious Mind,5,20,,1700,170,,5,1,0x000A0808,63,2,34,4,160,1,11,{ bonus bAtk,pow(min(getrefine(),15),2); },{},{} -18122,Gigantic_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_Storm,Bow of Storms,5,20,,1500,160,,5,1,0x00080800,63,2,34,4,130,1,11,{ bonus bLongAtkRate,30; bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; bonus2 bSkillUseSP,"WM_SEVERE_RAINSTORM",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_Human,30; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon; },{},{} -18125,Arcus_Daemonicus,Arcus Daemonicus,5,20,,1000,130,,5,2,0x00020008,63,2,34,4,80,1,11,{ /*Fix me: bonus2 bAddClass,Class_All,50; when equipped with shadow arrows*/ if(getrefine()>9){ bonus bAspd,1; bonus bUseSPrate,-20; } },{},{} -18126,Ru_Blue_Bow,Blue Bow,5,10,,1200,150,,5,1,0x00000800,56,2,34,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,0x00020800,56,2,34,4,100,1,11,{},{},{} -18130,Crimson_Bow,Crimson Bow,5,20,,1200,120,,5,2,0x000A0848,63,2,34,3,70,1,11,{ .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); },{},{} -18132,Unity_Bow,Unity Bow,5,20,,600,114,,5,2,0x000A0848,63,2,34,3,1,1,11,{ bonus bBaseAtk,pow(getrefine(),2)*125/100; },{},{} -18137,Burning_Bow_,Burning Bow,5,20,,1400,95,,5,2,0x000A0808,63,2,34,3,55,1,11,{ bonus2 bSubEle,Ele_Fire,10; },{},{} -18138,Frozen_Bow_,Frozen Bow,5,20,,1400,100,,5,2,0x000A0808,63,2,34,3,55,1,11,{ bonus2 bAddEff,Eff_Freeze,1000; },{},{} -18139,Earth_Bow_,Earth Bow,5,20,,1400,105,,5,2,0x000A0808,63,2,34,3,55,1,11,{},{},{} -18140,Gust_Bow_,Gust Bow,5,20,,1400,95,,5,2,0x000A0808,63,2,34,3,55,1,11,{},{},{} -18145,Vigilante_Bow,Vigilante Bow,5,0,,1000,140,,5,2,0x00020000,56,2,34,3,100,1,11,{ .@r = getrefine(); .@bonus = 5*(readparam(bDex)/20); if (.@r>=7) { .@bonus += 10; } if (.@r>=9) { bonus2 bSkillAtk,"AC_DOUBLE",50; } bonus bLongAtkRate,.@bonus; },{},{} -18149,Illusion_Ballista,Illusion Ballista,5,0,,3500,200,,5,2,0x00080800,58,2,34,4,100,1,11,{ bonus bLongAtkRate,getrefine(); },{},{} -18174,Illusion_Hunter_Bow,Illusion Hunter Bow,5,0,,1500,165,,5,2,0x00000800,56,2,34,4,120,1,11,{ .@r = getrefine(); bonus bCritical,.@r; if (.@r >= 7) { bonus bAspdRate,10; if (.@r >= 9) { bonus bCritAtkRate,15; if (.@r >= 11) { bonus2 bAddRace,RC_Insect,30; bonus2 bAddRace,RC_Brute,30; bonus2 bAddRace,RC_Player_Doram,30; } } } },{},{} -18178,Virtual_Bow-OS,Virtual Bow-OS,5,20,,1200,200,,5,2,0x00000800,56,2,34,4,130,1,11,{ .@r = getrefine(); bonus2 bAddClass,Class_All,3; if (.@r >= 7) { bonus bLongAtkRate,7; if (.@r >= 9) { .@dmg = 30; if (.@r >= 11) { .@dmg += 20; } bonus2 bSkillAtk,"RA_ARROWSTORM",.@dmg; } } },{},{} -18179,MH-P89-OS,MH-P89-OS,5,20,,1200,170,,5,2,0x00080000,56,2,34,4,130,1,11,{ .@r = getrefine(); bonus2 bAddClass,Class_All,3; if (.@r >= 7) { bonus bLongAtkRate,7; if (.@r >= 9) { bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; if (.@r >= 11) { bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15; } } } },{},{} -18180,AC-B44-OS,AC-B44-OS,5,20,,600,190:135,,5,2,0x00020000,56,2,34,4,130,1,11,{ .@r = getrefine(); .@dmg = 5; if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus2 bSkillAtk,"SC_TRIANGLESHOT",15; if (.@r >= 11) { .@dmg += 10; } } } bonus2 bWeaponDamageRate,W_BOW,.@dmg; },{},{} -18184,Rapid_Fire,Rapid Fire,5,20,,1500,185,,5,2,0x00020000,56,2,34,4,170,1,11,{ .@r = getrefine(); bonus bLongAtkRate,10; bonus bBaseAtk,4*.@r; if (.@r>=11) .@val = 35; else if (.@r>=9) .@val = 20; bonus2 bSkillAtk,"SC_TRIANGLESHOT",.@val; },{},{} -18185,Sharp_Star_Bow,Sharp Star Bow,5,20,,1500,150,,5,2,0x00000800,56,2,34,4,170,1,11,{ .@r = getrefine(); bonus bCritical,5; bonus bCritAtkRate,.@r; if (.@r>=9) bonus bLongAtkRate,7; if (.@r>=11) bonus2 bSkillAtk,"SN_SHARPSHOOTING",10; },{},{} -18186,Aiming_Bow,Aiming Bow,5,20,,1000,210,,5,2,0x00000800,56,2,34,4,170,1,11,{ .@r = getrefine(); bonus bDelayrate,-1*(5+.@r); if (.@r>=9) bonus2 bSkillAtk,"RA_AIMEDBOLT",30; if (.@r>=11) { bonus2 bSkillAtk,"RA_AIMEDBOLT",15; bonus2 bSkillCooldown,"RA_AIMEDBOLT",-1000; } },{},{} -18187,Falken_Shooter,Falken Shooter,5,20,,1000,210,,5,2,0x00000800,56,2,34,4,170,1,11,{ .@r = getrefine(); bonus bLongAtkRate,10; bonus bBaseAtk,4*.@r; if (.@r>=9) bonus2 bSkillAtk,"RA_ARROWSTORM",25; if (.@r>=11) bonus2 bSkillCooldown,"RA_ARROWSTORM",-700; },{},{} -18188,Wind_Gale,Wind Gale,5,20,,1000,200,,5,2,0x00080000,56,2,34,4,170,1,11,{ .@r = getrefine(); bonus bLongAtkRate,10+.@r; if (.@r>=9) bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",30; if (.@r>=11) bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; },{},{} -//=================================================================== -// 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; },{},{} -18503,Small_Horn_Of_Devil,Small Devil Horns,4,20,,100,,2,,0,0xFFFFFFFF,63,2,512,,1,0,562,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bMaxHPrate,10; bonus bMaxSPrate,10; },{},{} -18504,Anubis_Helm_J,Anubis Helm J,4,20,,1000,,0,,0,0xFFFFFFFF,63,2,769,,70,0,485,{ bonus bMdefRate,-50; bonus bDefRate,-50; bonus5 bAutoSpellWhenHit,"NPC_WIDESTONE",2,10,BF_WEAPON|BF_MAGIC,0; },{},{} -18505,Umbala_Spirit,Umbala Spirit,4,0,,0,,1,,0,0xFFFFFFFF,63,2,1,,30,0,675,{ bonus bMaxHPrate,1; bonus2 bAddMonsterDropItem,517,500; bonus2 bAddItemHealRate,517,25; /*Gold PC Room: bonus bAllStats,1;*/},{},{} -18506,Hattah_Black,Hattah Black,4,12000,,4000,,2,,1,0xFFFFFFFF,63,2,769,,1,1,676,{ bonus bMaxHPrate,10; bonus bMaxSPrate,10; },{},{} -18507,Elven_Ears_,Elven Ears,4,20,,100,,0,,1,0xFFFFFFFE,63,2,512,,70,0,73,{},{},{} -18508,Garuda_Hat,Garuda Hat,4,20,,100,,4,,1,0xFFFFFFFE,63,2,256,,30,1,677,{ bonus bLuk,5; bonus bMdef,3; bonus2 bSubEle,Ele_All,5; bonus bHit,10; bonus bDelayRate,-5; .@r = getrefine(); if(.@r>=7) bonus2 bAddMonsterDropItem,522,100*(.@r-6); },{},{} -18509,RWC2010_Indonesia,RWC2010 Indonesia,4,20,,100,,6,,1,0xFFFFFFFE,63,2,256,,15,1,678,{ bonus bLuk,5; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bAddItemHealRate,501,100; bonus2 bAddItemHealRate,504,100; bonus bCritical,10; bonus bAspd,1; bonus2 bAddClass,Class_All,3; bonus bMatkRate,3; },{},{} -18510,Blood_Angel_Hair_Band,Blood Angel Hair Band,4,0,,0,,1,,0,0xFFFFFFFF,63,2,256,,60,0,679,{ bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_DemiHuman,10; },{},{} -18511,Blood_Angel_Wing_Ear,Blood Angel Wing Ear,4,0,,0,,1,,0,0xFFFFFFFF,63,2,512,,60,0,680,{},{},{} -18512,Juho_Necktie,Juho Necktie,4,0,,0,,1,,1,0xFFFFFFFF,63,2,256,,20,1,443,{},{},{} -18513,Shining_Sunflower,Shining Sunflower,4,20,,300,,0,,0,0xFFFFFFFE,63,2,256,,0,0,681,{ bonus bLuk,2; bonus3 bAutoSpellWhenHit,"SM_ENDURE",1,10; },{},{} -18514,Para_Team_Hat2,Eden Team Hat II,4,0,,0,,5,,1,0xFFFFFFFF,63,2,256,,60,1,682,{ autobonus "{ bonus bBaseAtk,10; }",70,5000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; autobonus "{ bonus bMatk,10; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_SPELLBREAKER; }"; },{},{} -18515,RTC_Winner_Headgear,RTC Winner Hat,4,20,,100,,2,,1,0xFFFFFFFF,63,2,512,,1,0,683,{ bonus bAllStats,5; bonus bIntravision; bonus2 bSubRace,RC_DemiHuman,15; bonus2 bSubRace,RC_Player_Human,15; bonus2 bAddEff,Eff_Curse,50; },{},{} -18516,RTC_2nd_Headgear,RTC 2nd Winner Hat,4,20,,100,,2,,1,0xFFFFFFFF,63,2,512,,1,0,684,{ bonus bAllStats,3; bonus bIntravision; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bAddEff,Eff_Curse,50; },{},{} -18517,RTC_3rd_Headgear,RTC 3rd Winner Hat,4,20,,100,,2,,1,0xFFFFFFFF,63,2,512,,1,0,685,{ bonus bAllStats,1; bonus bIntravision; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bAddEff,Eff_Curse,50;},{},{} -18518,Ear_Of_Angel's_Wing_,Angel Wing Ears,4,20,,100,,3,,1,0xFFFFFFFF,63,2,512,,70,0,158,{ bonus bStr,1; },{},{} -18519,Ear_Of_Devil's_Wing_,Evil Wing Ears,4,20,,100,,3,,1,0xFFFFFFFF,63,2,512,,70,0,152,{ bonus bStr,1; },{},{} -18520,Jaty_C,Jaty Crown,4,20,,100,,1,,0,0xFFFFFFFF,63,2,256,,1,1,686,{ bonus2 bSubRace,RC_Plant,5; bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Brute,5; bonus2 bAddRace,RC_Plant,5; bonus2 bAddRace,RC_Player_Doram,5; bonus2 bAddRace,RC_Player_Doram,5; },{},{} -18521,Lucky_Clover,Lucky Clover,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,50,0,571,{ bonus bLuk,1; bonus bMaxSP,20; },{},{} -18522,Evil_Marcher_Hat,Evil Marcher Hat,4,20,,500,,10,,1,0xFFFFFFFF,63,2,256,,0,1,687,{ bonus bStr,2; bonus bMdef,1; .@r = getrefine(); if(.@r>=7) { bonus bCritAtkRate,10; }; bonus2 bAddClass,Class_All,(.@r>=9?7:2); if(.@r>=9) { bonus bLongAtkRate,5; }; },{},{} -18523,Super_Scell,Thunderstorm Cloud,4,20,,100,,2,,0,0xFFFFFFFF,63,2,256,,1,0,688,{ bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",max(getskilllv("MG_LIGHTNINGBOLT"),5),50+(getskilllv("MG_LIGHTNINGBOLT")*5); bonus3 bAutoSpell,"MG_THUNDERSTORM",max(getskilllv("MG_THUNDERSTORM"),5),50+(getskilllv("MG_THUNDERSTORM")*5); },{},{} -18524,Dokkebi_Mask,Dokkebi Mask,4,20,,700,,1,,0,0xFFFFFFFF,63,2,513,,50,0,689,{ bonus bStr,2; },{},{} -18525,Watermelon_Hat,Watermelon Cap,4,20,,100,,4,,1,0xFFFFFFFF,63,2,256,,30,1,690,{ bonus bVit,1; bonus bLuk,1; bonus bMdef,4; bonus2 bAddEle,Ele_Fire,3; },{},{} -18526,Yummy_Lollipop,Candy Cane In Mouth,4,20,,100,,2,,0,0xFFFFFFFF,63,2,1,,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; },{},{} -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; 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; },{},{} -18534,Fancy_Phantom_Mask,Fancy Phantom Mask,4,20,,1000,,5,,1,0xFFFFFFFF,63,2,768,,20,1,710,{ bonus bStr,1; bonus2 bAddClass,Class_All,5; bonus bDelayRate,-1; bonus bMaxHP,getrefine()*100; bonus2 bSkillAtk,"MC_MAMMONITE",20; bonus2 bSkillAtk,"NJ_ZENYNAGE",20; },{},{} -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; bonus bFixedCast,-100; },{},{} -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; 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,,1,0xFFFFFFFF,63,2,256,,20,1,717,{ bonus bMdef,5; bonus bVariableCastrate,(getrefine()>6?10:5); },{},{} -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,{},{},{} -18547,Campus_Festival,Campus Festival,4,20,,100,,0,,0,0xFFFFFFFF,63,2,256,,0,1,721,{},{},{} -18548,Tiny_Hat,Tiny Hat,4,20,,30,,0,,0,0xFFFFFFFF,63,2,256,,0,1,722,{ bonus bInt,1; bonus bAgi,1; },{},{} -18549,Nabi_Hair_Pin,Butterfly Hairpin,4,20,,200,,3,,1,0xFFFFFFFF,63,2,256,,20,1,723,{ bonus bInt,1; bonus bAgi,1; bonus bMdef,3; bonus2 bAddRace,RC_Plant,5; bonus2 bMagicAddRace,RC_Plant,5; bonus2 bSubRace,RC_Plant,5; bonus3 bAddMonsterDropItem,709,RC_Plant,30; },{},{} -18550,Asgard_Blessing,Asgard Blessing,4,20,,300,,3,,1,0xFFFFFFFF,63,2,256,,30,1,724,{ bonus bAllStats,2; bonus2 bSubEle,Ele_All,5; bonus2 bRegenPercentHP,2,10000; bonus2 bRegenPercentSP,1,10000; },{},{} -18551,Galaxy_Circlet,Galaxy Circlet,4,20,,1000,,5,,1,0xFFFFFFFF,63,2,256,,50,1,725,{ .@r = getrefine(); .@a = .@r*10; .@b = .@r/2; bonus bMdef,5; bonus bMaxHP,.@a; bonus bMaxSP,.@a; bonus2 bSubEle,Ele_Earth,.@b; bonus2 bSubEle,Ele_Fire,.@b; bonus2 bSubEle,Ele_Water,.@b; },{},{} -18552,Proba_Angel_Blessing,Proba Angel Blessing,4,20,,1200,,0,,1,0xFFFFFFFF,63,2,256,,10,1,444,{ bonus bLuk,2; },{},{} -18553,Mini_Tree,Mini Tree,4,20,,50,,5,,0,0xFFFFFFFF,63,2,256,,0,1,727,{ bonus2 bResEff,Eff_Stun,20; bonus2 bResEff,Eff_Curse,20; bonus2 bResEff,Eff_Blind,20; bonus2 bResEff,Eff_Confusion,20; bonus2 bAddMonsterDropItem,529,300; bonus2 bAddMonsterDropItem,529,644; },{},{} -18554,King_Prawn_Hat,King Prawn Hat,4,20,,1000,,8,,0,0xFFFFFFFF,63,2,256,,0,0,728,{ bonus2 bAddItemGroupHealRate,IG_Fish,100; },{},{} -18555,General_Helmet,General Helmet,4,20,,200,,3,,1,0xFFFFFFFF,63,2,256,,10,1,729,{ bonus bMdef,3; bonus2 bAddRace,RC_Dragon,5; bonus2 bMagicAddRace,RC_Dragon,5; bonus2 bSubRace,RC_Dragon,5; bonus3 bAddMonsterDropItem,7444,RC_Dragon,2; },{},{} -18556,Angel_Helmet,Angel Helmet,4,0,,0,,0,,0,0xFFFFFFFF,63,2,512,,0,0,3,{ bonus3 bAddMonsterIdDropItem,6464,2220,310; },{},{} -18557,Devil_Helmet,Devil Helmet,4,0,,0,,0,,0,0xFFFFFFFF,63,2,512,,0,0,12,{ bonus3 bAddMonsterIdDropItem,6345,1812,310; },{},{} -18558,Sinsuncho_Hat,Sinsuncho Hat,4,20,,1000,,0,,0,0xFFFFFFFF,63,2,256,,10,0,730,{ bonus2 bExpAddRace,RC_Plant,5; bonus2 bSubRace,RC_Plant,-10; },{},{} -18559,Fafnir_Skin,Fafnir Skin,4,20,,100,,3,,0,0xFFFFFFFF,63,2,512,,50,0,152,{ bonus bCritical,3; bonus bHPrecovRate,-100; },{},{} -18560,Fafnir_Mask,Fafnir Mask,4,20,,300,,2,,0,0xFFFFFFFF,63,2,1,,50,0,180,{ bonus bCritical,2; },{},{} -18561,B_Feather_Beret,B Feather Beret,4,20,,300,,5,,1,0xFFFFFFFF,63,2,256,,40,1,731,{ bonus bVit,2; bonus bMdef,3; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; },{},{} -18562,Bone_Hat,Bone Hat,4,20,,200,,3,,1,0xFFFFFFFF,63,2,256,,10,1,732,{ bonus bMdef,3; },{},{} -18563,Heart_Wing_Hairband,Heart Wing Hairband,4,20,,300,,0,,1,0xFFFFFFFF,63,2,256,,50,1,733,{ .@r = getrefine()/3; bonus bUseSPrate,-(10+.@r*3); bonus bDelayrate,-(5+.@r*3); },{},{} -18564,Love_Piece,Love Piece,4,20,,200,,0,,0,0xFFFFFFFF,63,2,1,,50,0,734,{ bonus bNoCastCancel; bonus bUseSPrate,15; },{},{} -18565,Leprechaun_Hat,St Patrick's Hat,4,20,,300,,8,,1,0xFFFFFFFF,63,2,256,,40,1,735,{ bonus bStr,1; bonus bInt,1; bonus bMdef,4; if(getrefine()>7){ bonus2 bAddMonsterDropItem,12135,50; } },{},{} -18566,Nut_Donut_In_Mouth,Nut Donut In Mouth,4,20,,0,,1,,0,0xFFFFFFFF,63,2,1,,0,0,736,{ bonus bBaseAtk,5; bonus bMatk,5; },{},{} -18567,Stretched_Nose,Stretched Nose,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,0,0,737,{},{},{} -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,1,738,{ bonus bMaxHPrate,1+getrefine(); if(getrefine()>9) { bonus2 bExpAddClass,Class_All,5; }; },{},{} -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 bMatkRate,8; bonus bHealPower,7; } if(BaseClass==Job_Archer){ bonus bDex,3; bonus bLongAtkRate,10; } },{},{} -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_Human,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_Boss,(.@r>5?.@r+5:10); bonus2 bMagicAddClass,Class_Boss,(.@r>5?.@r+5:10); bonus2 bSubClass,Class_Normal,-5; },{},{} -18575,Wunderkammer,Wunderkammer,4,20,,500,,10,,1,0xFFFFFFFF,63,2,769,,20,0,743,{ bonus bMdef,10; bonus3 bAutoSpell,"AS_SONICBLOW",1,30; bonus3 bAutoSpell,"CR_SHIELDCHARGE",5,20; bonus3 bAutoSpellWhenHit,"AL_PNEUMA",1,20; bonus3 bAutoSpellWhenHit,"CR_GRANDCROSS",5,5; bonus3 bAutoSpellWhenHit,"ASC_METEORASSAULT",5,5; bonus3 bAutoSpellWhenHit,"MO_CALLSPIRITS",5,10; bonus3 bAutoSpellWhenHit,"MO_EXPLOSIONSPIRITS",5,10; bonus3 bAutoSpellWhenHit,"PR_KYRIE",5,10; bonus3 bAutoSpellWhenHit,"AC_CONCENTRATION",5,5; bonus3 bAutoSpellWhenHit,"WZ_QUAGMIRE",3,5; },{},{} -18576,YinYang_Earring,YinYang Earring,4,20,,100,,0,,0,0xFFFFFFFF,63,2,512,,50,0,744,{ bonus2 bSkillAtk,"MO_CHAINCOMBO",10; bonus2 bSkillAtk,"MO_TRIPLEATTACK",5; bonus2 bSkillAtk,"MO_COMBOFINISH",5; bonus2 bSkillUseSP,"MO_CHAINCOMBO",1; bonus2 bSkillUseSP,"MO_COMBOFINISH",1; },{},{} -18577,24_Bolt,24 Bolt,4,20,,200,,0,,0,0xFFFFFFFF,63,2,512,,10,0,696,{},{},{} -18578,Helm_Of_Valor,Helm Of Valor,4,0,,0,,4,,0,0xFFFFFFFF,63,2,256,,0,0,258,{ bonus2 bAddRace,RC_All,3; },{},{} -18579,9th_Anni_Hat,9th Anni Hat,4,0,,90,,0,,0,0xFFFFFFFF,63,2,256,,0,1,745,{ bonus bMdef,9; },{},{} -18580,Yggdrasil_Crown,Yggdrasil Crown,4,20,,200,,3,,1,0xFFFFFFFF,63,2,256,,1,1,746,{ bonus bMdef,3; bonus bHealPower,2; .@r = getrefine(); bonus bHealpower2,10; if(.@r >= 7){ bonus bHealPower,5; } if(.@r >= 9){ bonus bHealPower,3; } },{},{} -18581,Red_Tiger_Mask,Red Tiger Mask,4,20,,400,,2,,0,0xFFFFFFFF,63,2,768,,50,0,747,{ bonus bStr,3; bonus bMaxHP,100; },{},{} -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,,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,{ .@r = getrefine(); bonus2 bAddMonsterDropItem,578,(.@r>10?200:100+(.@r*10)); },{},{} -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,,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 bUseSPrate,-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,{ 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_Helm,Mercury Riser,4,40,,200,,10,,1,0xFFFFFFFF,63,2,256,,0,1,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_Ears_Beret,Cat Ear Beret,4,20,,100,,5,,1,0xFFFFFFFF,63,2,256,,0,1,761,{ bonus2 bAddClass,Class_All,5; .@r = getrefine(); if(.@r < 5) .@r = 5; bonus2 bSubRace,RC_DemiHuman,(.@r - 5); bonus2 bAddRace,RC_DemiHuman,(.@r - 5); bonus2 bSubRace,RC_Player_Human,(.@r - 5); bonus2 bAddRace,RC_Player_Human,(.@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_Slice,Watermelon Bite,4,20,,100,,4,,0,0xFFFFFFFF,63,2,1,,30,0,763,{},{},{} -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,,0,0xFFFFFFFF,63,2,513,,50,0,782,{ bonus2 bAddEle,Ele_Water,5; },{},{} -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_,Blush,4,20,,100,,0,,1,0xFFFFFFFF,63,2,512,,0,0,125,{},{},{} -18608,Pair_Of_Red_Ribbon2,Small Ribbons,4,20,,100,,2,,1,0xFFFFFFFF,63,2,512,,45,0,169,{},{},{} -18609,Dark_Blindfold_,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; },{},{} -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; },{},{} -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,{},{},{} -18617,Onigiri_In_Mouth,Onigiri In Mouth,4,20,,200,,0,,0,0xFFFFFFFE,63,2,1,,20,0,774,{},{},{} -18618,Airplane_Hat,Airplane Hat,4,20,,200,,8,,1,0xFFFFFFFE,63,2,256,,20,1,775,{},{},{} -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_Eyepatch,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_Helm1,Rocket Helm 1,4,20,,1000,,20,,1,0xFFFFFFFF,63,2,256,,95,1,764,{ bonus bAllStats,5; bonus bMdef,5; bonus bUnbreakableHelm; },{},{} -18623,Rocket_Helm2,Rocket Helm 2,4,20,,1000,,20,,1,0xFFFFFFFF,63,2,256,,95,1,765,{ bonus bAllStats,4; bonus bMdef,5; bonus bUnbreakableHelm; },{},{} -18624,Rocket_Helm3,Rocket Helm 3,4,20,,1000,,20,,1,0xFFFFFFFF,63,2,256,,95,1,768,{ bonus bAllStats,3; bonus bMdef,5; bonus bUnbreakableHelm; },{},{} -18625,Rocket_Helm_RWC,Rocket Helm RWC,4,10000,,1000,,20,,1,0xFFFFFFFF,63,2,256,,95,1,769,{ bonus bAllStats,2; bonus bMdef,5; bonus bUnbreakableHelm; bonus bSpeedRate,25; },{},{} -18626,Gelato_Hat,Gelato Hat,4,20,,200,,2,,0,0xFFFFFFFF,63,2,256,,40,1,777,{},{},{} -18627,Dried_Leaf,Dried Leaf,4,20,,50,,0,,0,0xFFFFFFFF,63,2,1,,10,0,711,{ bonus bUnbreakableHelm; },{},{} -18628,Tare_Brownie,Tare Brownie,4,20,,500,,5,,1,0xFFFFFFFF,63,2,256,,50,0,781,{ bonus bMdef,5; },{},{} -18629,B_Desert_Wolf_Hat,Baby Desert Wolf Hat,4,10,,300,,0,,1,0xFFFFFFFF,63,2,256,,1,1,783,{ bonus bMdef,5; bonus bLongAtkDef,5; },{},{} -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_Human,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; 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,hand_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,,1,0xFFFFFFFF,63,2,256,,1,1,798,{ bonus bInt,1; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,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,{ 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,Vanargand_Helm,Vanargandr Helm,4,20,,1500,,10,,1,0xFFFFFFFF,63,2,256,,80,1,804,{ .@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,Devi_Headphone,Deviruchi Headphone,4,20,,200,,8,,1,0xFFFFFFFF,63,2,256,,30,1,805,{ bonus bMdef,4; },{},{} -18655,Lupin_One_Eyed_Glasses,Goedo Monocle,4,20,,100,,0,,0,0xFFFFFFFF,63,2,512,,50,0,807,{ bonus bAgi,2; },{},{} -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; .@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,{ 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_Helmet,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; },{},{} -18663,Sunglasses_Bball_Hat,Sunglasses Baseball Hat,4,20,,200,,2,,1,0xFFFFFFFE,63,2,256,,20,1,812,{ bonus bInt,3; },{},{} -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,{ bonus3 bAutoSpell,"MG_COLDBOLT",3,30; bonus3 bAutoSpell,"MG_SOULSTRIKE",3,30; bonus3 bAutoSpell,"WZ_EARTHSPIKE",3,30; bonus3 bAutoSpell,"MG_FIREBOLT",3,30; bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",3,30; },{},{} -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,{ bonus bDex,3; bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3; },{},{} -18671,Rudolf_Hairband,Rudolf Hairband,4,20,,200,,5,,0,0xFFFFFFFF,63,2,256,,30,1,836,{},{},{} -18672,Tare_Pope,Drooping Pope,4,20,,300,,0,,0,0xFFFFFFFF,63,2,256,,1,0,817,{ bonus bMdef,1; bonus bSPrecovRate,2; bonus bUnbreakableHelm; },{},{} -18673,Tare_Pope_,Drooping Pope,4,20,,300,,0,,1,0xFFFFFFFF,63,2,256,,1,1,817,{ bonus bUnbreakableHelm; bonus bMdef,7; .@r = getrefine(); bonus bHealPower,(.@r>=7?5+(.@r-6):5); if (.@r>=9) { bonus bMatkRate, ( .@r >= 12 ? 12 : 7 ); } },{},{} -18674,Planewing_Hat,Planewing Hat,4,20,,200,,3,,1,0xFFFFFFFE,63,2,256,,1,1,820,{ bonus bAgi,3; bonus bAspdRate,1; bonus2 bSPLossRate,5,10000; },{},{} -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,,200,,0,,0,0xFFFFFFFE,63,2,512,,10,0,822,{ bonus2 bMagicAddRace,RC_Insect,4; bonus2 bSubRace,RC_Insect,5; bonus bUnbreakableHelm; },{},{} -18677,Cherry_Twig_In_Mouth,Cherry Twig In Mouth,4,20,,200,,0,,0,0xFFFFFFFE,63,2,1,,20,0,823,{ bonus2 bAddRace,RC_Plant,2; },{},{} -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,,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; bonus bAllStats,5; },{},{} -18687,2011_RMSC_2,2011 RMSC 2,4,20,,2500,,20,,1,0xFFFFFFFF,63,2,256,,1,0,832,{ bonus bUnbreakableHelm; bonus bAllStats,3; },{},{} -18688,2011_RMSC_3,2011 RMSC 3,4,20,,2500,,20,,1,0xFFFFFFFF,63,2,256,,1,0,832,{ bonus bUnbreakableHelm; bonus bAllStats,1; },{},{} -18689,2011_RMSC_4,2011 RMSC 4,4,20,,10,,0,,0,0xFFFFFFFF,63,2,256,,1,0,832,{ bonus bUnbreakableHelm; },{},{} -18690,Sirt_Evil_Eye,Sirt Evil Eye,4,20,,400,,0,,0,0xFFFFFFFF,63,2,512,,50,0,345,{ bonus bUnbreakableHelm; 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; bonus2 bAddRace,RC_Player_Doram,2; },{},{} -18694,Red_Hood,Red Hood,4,20,,200,,3,,1,0xFFFFFFFE,63,2,256,,20,1,839,{ bonus bCritical,10; },{},{} -18695,Phoenix_Crown,Phoenix Crown,4,20,,400,,3,,1,0xFFFFFFFE,63,2,256,,20,1,840,{ bonus bInt,2; },{},{} -18696,Orange_Hat,Orange Hat,4,20,,200,,3,,0,0xFFFFFFFE,63,2,256,,20,1,841,{ skill "MC_MAMMONITE",2; },{},{} -18697,Syringe_In_Mouth,Syringe In Mouth,4,20,,200,,0,,0,0xFFFFFFFE,63,2,1,,20,0,842,{},{},{} -18698,Cheesy_Snack_In_Mouth,Cheesy Snack In Mouth,4,20,,200,,0,,0,0xFFFFFFFE,63,2,1,,20,0,843,{},{},{} -18699,Starving_Fish_Hat,Starving Fish Hat,4,20,,1200,,3,,0,0xFFFFFFFF,63,2,256,,1,0,844,{},{},{} -18700,Rabbit_Ribbon,Rabbit Ribbon,4,20,,500,,3,,1,0xFFFFFFFF,63,2,256,,50,1,845,{ bonus bInt,1; },{},{} -18701,Ancient_Civil_Man,Ancient Civil Man,4,20,,500,,2,,0,0xFFFFFFFE,63,2,256,,70,0,846,{ bonus bInt,3; bonus bDex,2; bonus bLuk,1; if(getiteminfo(getequipid(EQI_HAND_R),11)==W_BOOK) bonus bVariableCastrate,-3; },{},{} -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; },{},{} -18709,Black_Knitted_Hat,Black Knitted Hat,4,20,,200,,3,,1,0xFFFFFFFE,63,2,256,,0,1,854,{ bonus bMaxSP,100; },{},{} -18710,Sugared_Fruit_Stick,Sugared Fruit Stick,4,20,,200,,0,,0,0xFFFFFFFE,63,2,1,,20,0,855,{},{},{} -18711,Electric_Sunglass,Electric Sunglass,4,20,,400,,3,,0,0xFFFFFFFE,63,2,512,,20,0,856,{},{},{} -18712,Fan_In_Mouth,Fan In Mouth,4,20,,200,,0,,0,0xFFFFFFFE,63,2,1,,20,0,857,{},{},{} -18713,Monkey_On_Fur_Hat,Monkey On Fur Hat,4,20,,300,,6,,1,0xFFFFFFFF,63,2,256,,20,1,858,{ bonus bDex,1; bonus bAgi,1; bonus bFlee,10; },{},{} -18714,Hippo_Hat,Hippo Hat,4,20,,500,,5,,1,0xFFFFFFFF,63,2,256,,10,1,859,{ bonus2 bSubEle,Ele_Water,10; bonus5 bAutoSpellWhenHit,"WZ_FROSTNOVA",1,1,BF_WEAPON|BF_MAGIC,0; },{},{} -18715,Helm_Of_Thoth,Helm Of Thoth,4,20,,2500,,2,,1,0xFFFFFFFE,63,2,768,,80,0,860,{ bonus bInt,2; bonus bMdef,5; bonus bMaxSP,100; },{},{} -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; },{},{} -18724,L_Magestic_Goat_,Gigantic Majestic Goat,4,20,,800,,5,,1,0xFFFFFFFF,63,2,256,,0,1,380,{ bonus2 bAddRace,RC_DemiHuman,12; bonus2 bAddRace,RC_Player_Human,12; bonus bBaseAtk,(JobLevel*2)/7; },{},{} -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 bMdef,5; bonus bUnbreakableHelm; },{},{} -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_Human,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; },{},{} -18732,TE_Woe_Cap,TE Woe Cap,4,0,,0,,5,,0,0xFFFFFFFF,63,2,256,,40,1,14,{ bonus bMdef,5; bonus bBaseAtk,5; bonus bMatk,5; bonus2 bAddRace,RC_Player_Human,10; bonus2 bMagicAddRace,RC_Player_Human,10; bonus2 bResEff,Eff_Freeze,25; },{},{} -18733,TE_Woe_Bone_Helm,TE Woe Bone Helm,4,0,,0,,10,,0,0x000444A2,63,2,256,,40,1,103,{ bonus bBaseAtk,10; bonus2 bAddRace,RC_Player_Human,20; bonus2 bResEff,Eff_Freeze,25; },{},{} -18734,TE_Woe_Magic_Eyes,TE Woe Magic Eyes,4,0,,0,,5,,0,0x00818315,63,2,256,,40,1,209,{ bonus bMdef,5; bonus bMatk,10; bonus2 bMagicAddRace,RC_Player_Human,20; bonus2 bResEff,Eff_Freeze,25; },{},{} -18736,Censor_Bar_,Censor Bar,4,0,,100,,,,0,0xFFFFFFFF,63,2,512,,1,0,229,{},{},{} -18737,Fortier_Mask,Fortier Masque,4,20,,200,,0,,0,0xFFFFFFFF,63,2,512,,10,0,876,{ bonus bUnbreakableHelm; 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,C_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,INFINITE_TICK,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,INFINITE_TICK,0; },{ sc_end SC_MOONSTAR; } -18743,C_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,INFINITE_TICK,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; },{},{} -18747,Eyes_Of_Ifrit,Eyes Of Ifrit,4,20,,100,,1,,1,0xFFFFFFFF,63,2,512,,0,0,886,{ bonus bDex,1; bonus2 bResEff,Eff_Curse,2500; },{},{} -18748,Gold_Ingot_Poring_Hat,Gold Ingot Poring Hat,4,20,,200,,3,,1,0xFFFFFFFF,63,2,256,,0,1,887,{ bonus bDex,2; bonus bLuk,2; },{},{} -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; bonus2 bAddRace,RC_Player_Human,2; },{},{} -18752,Cursed_Book,Cursed Book,4,20,,300,,3,,1,0xFFFFFFFE,63,2,256,,99,1,890,{ .@r = getrefine(); bonus2 bHPLossRate,.@r,5000; bonus2 bHPDrainRate,40,4+(.@r/2); bonus2 bSPDrainRate,10,1+(.@r/3); },{},{} -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; 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,224,{ bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,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; bonus2 bAddRace,RC_Player_Doram,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; 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) .@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,1,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,1,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; },{},{} -18772,Improved_Binoculars,Advanced Binoculars,4,20,,100,,2,,0,0x00080808,63,2,512,,50,0,83,{ bonus bDex,1; bonus bLongAtkRate,1; },{},{} -18773,Improved_Fin_Helm,Advanced Fin Helm,4,20,,300,,5,,0,0x00004082,63,2,512,,65,0,100,{ bonus bMaxHP,300+BaseLevel; /* unconfirmed */ },{},{} -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_Red,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; bonus bAllStats,7; bonus bMdef,5; },{},{} -18780,RWC_Champ_Crown_Blue,RWC Champ Crown Second Place,4,20,,500,,12,,1,0xFFFFFFFF,63,2,256,,1,,903,{ bonus2 bResEff,Eff_Curse,10000; bonus bUnbreakableHelm; bonus bAllStats,7; bonus bMdef,5; },{},{} -18781,RWC_Champ_Crown_Black,RWC Champ Crown Third Place,4,20,,500,,12,,1,0xFFFFFFFF,63,2,256,,1,,904,{ bonus2 bResEff,Eff_Curse,10000; bonus bUnbreakableHelm; 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; },{},{} -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; bonus2 bMagicAtkEle,Ele_Wind,4; },{},{} -18787,Goal_Tender_Mask,Goal Tender Mask,4,20,,200,,5,,0,0xFFFFFFFF,63,2,513,,50,0,336,{ bonus2 bAddRace,RC_DemiHuman,8; bonus2 bAddRace,RC_Player_Human,8; },{},{} -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,,1,0xFFFFFFFF,63,2,256,,,,908,{},{},{} -18792,Idn_Sakkat,Indonesian Independence Sakkat,4,10,,400,,,,0,0xFFFFFFFE,63,2,256,,45,1,901,{ bonus bVit,10; bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus2 bSubRace,RC_DemiHuman,10; },{},{} -18793,Sorc_Night_Cap,Sorcerer's Night Cap,4,20,,200,,25,,1,0x00010000,56,2,256,,100,1,911,{ .@r = getrefine(); bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",50; bonus2 bSkillAtk,"MG_FIREBOLT",50; bonus2 bSkillAtk,"MG_COLDBOLT",50; bonus bMdef,10; if(.@r>6) bonus2 bSkillAtk,"SC_SPELLFIST",25; if(.@r>8) bonus bAspd,5; },{},{} -18796,RWC_Champ_Crown_QF,RWC Champ Crown Fourth Place,4,20,,500,,12,,1,0xFFFFFFFF,63,2,256,,1,,914,{ bonus2 bResEff,Eff_Curse,10000; bonus bUnbreakableHelm; 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,512,,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,RC_Demon,5; bonus2 bSubRace,RC_Undead,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,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; 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; bonus bHit,3; },{},{} -18820,Gray_Helmet,Gray Helmet,4,20,,450,,35,,1,0xFFFFFFFF,56,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,{ bonus2 bAddClass,Class_All,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)>107){ bonus bAspd,1; bonus bAspdRate,1; } },{},{} -18827,Valkyrie_Circlet,Valkyrie Circlet,4,0,,300,,10,,1,0xFFFFFFFF,63,2,256,,,1,940,{ bonus bStr,3; 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; },{},{} -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; },{},{} -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; },{},{} -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,{ .@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; bonus bFlee,20; },{},{} -18845,Banshee_Master_Kiss,Banshee Master Kiss,4,20,,200,,5,,0,0xFFFFFFFF,63,2,1,,0,0,959,{ bonus bUnbreakableHelm; bonus bMaxSPrate,3; autobonus2 "{ bonus2 bSubRace,RC_DemiHuman,100; bonus2 bSubRace,RC_Player_Human,100; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; },{},{} -18846,Seagod_Protector,Seagod Protector,4,20,,100,,0,,0,0xFFFFFFFF,63,2,512,,10,0,960,{ bonus2 bSubDefEle,Ele_Water,5; },{},{} -18847,Jolly_Roger,Jolly Roger,4,20,,500,,10,,1,0xFFFFFFFF,63,2,256,,1,1,962,{ bonus bVit,1; bonus2 bSubDefEle,Ele_Water,2; bonus2 bAddEle,Ele_Water,2; .@r = getrefine(); if(.@r>6) { bonus2 bAddEle,Ele_Water,3; } if(.@r>8) { bonus2 bSubDefEle,Ele_Water,3; } },{},{} -18848,Lush_Rose,Lush Rose,4,10,,200,0:20,0,,1,0xFFFFFFFF,63,2,256,,1,1,963,{ bonus bMagicHPGainValue,100; bonus bMagicSPGainValue,100; },{},{} -18849,Celines_Ribbon,Celines 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; 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,ValentineHeart,Valentine Heart,4,20,,0,,,,0,0xFFFFFFFF,63,2,256,,1,1,397,{ bonus bMaxHPrate,5+(getrefine()/2); bonus bAllStats,7; },{},{} -18852,Berry_Hat_Decoration,Tasty Strawberry Hat,4,20,,150,,4,,,0xFFFFFFFF,63,2,256,,30,1,968,{ bonus bAllStats,1; if(getrefine()>11) bonus bAspd,2; },{},{} -18853,Berry_Hat_Decoration_,Tasty Strawberry Hat,4,20,,150,,4,,,0xFFFFFFFF,63,2,256,,30,1,968,{ bonus bAllStats,1; if(getrefine()>11) bonus bAspd,2; },{},{} -18854,ValentineYellowHeart,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; bonus2 bAddRace,RC_Player_Doram,10; .@r = getrefine(); autobonus "{ bonus2 bSPLossRate,5,1000; bonus bBaseAtk,25*getrefine(); }",3*.@r,3000,BF_NORMAL,"{ active_transform 1115,3000; specialeffect2 EF_POTION_BERSERK; showscript \"Traaaansformation-!! Eddga form!!\"; }"; autobonus2 "{ bonus2 bSPLossRate,5,1000; bonus bBaseAtk,25*getrefine(); }",.@r,3000,BF_NORMAL,"{ active_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; },{},{} -18858,Pink_Angeling_Bubble,Pink Angeling Bubble,4,10,,50,,5,,0,0xFFFFFFFF,63,2,1,,1,,975,{ bonus bMaxHP,200; bonus bAspdRate,1; },{},{} -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; },{},{} -18860,Red_Flower_Hat,Red Flower Hat,4,10,,200,,10,,1,0xFFFFFFFF,63,2,256,,50,1,1033,{ bonus bDex,5; bonus2 bSubDefEle,Ele_Earth,3; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; if (getrefine() >= 12) { bonus bShortWeaponDamageReturn,5; } },{},{} -18861,Zaha_Doll_Hat_J,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_J,Earth Goddess Flower,4,10,,250,,6,,0,0xFFFFFFFF,63,2,256,,1,1,864,{ bonus bVit,2; skill "WZ_EARTHSPIKE",5; bonus2 bSubEle,Ele_Earth,15; .@r = getrefine(); if(.@r>=8){ bonus2 bSubEle,Ele_Earth,5; } },{},{} -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; },{},{} -18867,Vajra,Vajra,4,0,,300,,,,0,0xFFFFFFFF,63,2,1,,48,0,983,{ bonus bDex,1; bonus bLongAtkRate,2; },{},{} -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; },{},{} -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,One_Eyed_Glass_,Cyclops Glasses,4,10,,100,,,,1,0xFFFFFFFF,63,2,512,,1,,23,{},{},{} -18877,Baron_Evil_Eye,Baron's Evil Eye,4,10,,300,,,,0,0xFFFFFFFF,63,2,512,,30,,989,{ bonus bDelayrate,-5; bonus bUseSPrate,5; },{},{} -18878,Palace_Guard_Cap,Palace Guard Cap,4,10,,1000,,15,,1,0xFFFFFFFF,63,2,256,,50,1,991,{ .@r = max(5,getrefine()); bonus2 bSubEle,Ele_Neutral,.@r; bonus bLongAtkDef,.@r; bonus bUnbreakableHelm; },{},{} -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_Human,11; bonus2 bAddItemHealRate,522,70; },{},{} -18887,Aqua_Bunny_Band,Aqua Bunny Band,4,0,,100,,2,,1,0xFFFFFFFF,63,2,256,,0,1,1012,{ bonus bVit,3; .@r = getrefine(); bonus bMdef,(.@r>8?10:5); bonus bMatkRate,(.@r>8?6:2); if(.@r>11) bonus bFixedCastrate,-10; },{},{} -18888,Maroon_Bunny_Band,Maroon Bunny Band,4,0,,100,,2,,1,0xFFFFFFFF,63,2,256,,0,1,1013,{ bonus bInt,5; bonus bLuk,5; .@r = getrefine(); bonus2 bAddClass,Class_All,(.@r>8?6:2); bonus bMatkRate,(.@r>8?9:5); if(.@r>11) bonus bFixedCastrate,-10; },{},{} -18889,Golden_Bunny_Band,Golden Bunny Band,4,0,,100,,2,,1,0xFFFFFFFF,63,2,256,,0,1,1014,{ bonus bAgi,5; bonus bLuk,5; .@r = getrefine(); bonus2 bAddClass,Class_All,(.@r>8?7:2); if(.@r>8) bonus bMatkRate,5; if(.@r>11) bonus bFixedCastrate,-10; },{},{} -18890,Gray_Bunny_Band,Gray Bunny Band,4,0,,0,,2,,1,0xFFFFFFFF,63,2,256,,0,1,1015,{ bonus bInt,5; bonus bLuk,5; .@r = getrefine(); bonus2 bAddClass,Class_All,(.@r>8?6:2); bonus bMatkRate,(.@r>8?9:5); if(.@r>11) bonus bFixedCastrate,-10; },{},{} -18891,Husky_Hat,Husky Hat,4,0,,500,,5,,1,0xFFFFFFFF,63,2,256,,70,1,1016,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus3 bAutoSpell,"SN_WINDWALK",5,10+(getrefine()*3); },{},{} -18892,Ufo_Poring_Hat,Ufo Poring Hat,4,0,,1000,,5,,1,0xFFFFFFFF,63,2,256,,10,1,1017,{ bonus bMdef,5; bonus bCritical,5; bonus bFlee,5; bonus bHit,5; bonus bFlee2,5; .@r = getrefine(); if(.@r>8){ bonus bDelayRate,-5; bonus bAspdRate,5; } else if(.@r>6) bonus bVariableCastrate,-5; },{},{} -18893,Dragon_Claw_Helm,Dragon Claw Helm,4,0,,1000,,5,,1,0xFFFFFFFF,63,2,256,,10,1,1018,{ bonus2 bSubRace,RC_DemiHuman,8; bonus2 bSubRace,RC_Player_Human,8; bonus2 bSubRace,RC_Dragon,8; bonus2 bAddItemGroupHealRate,IG_Meat,200; if(getrefine()>11){ bonus bMaxHPrate,7; bonus bMaxSPrate,3; } },{},{} -18894,Rainbow_Star,Rainbow Star,4,0,,500,,5,,0,0xFFFFFFFF,63,2,512,,70,0,1019,{ bonus2 bSubRace,RC_Player_Human,5; },{},{} -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,997,{ bonus bAllStats,5; bonus bMaxHP,100; bonus bMaxSP,50; .@r = getrefine(); .@rate = max(.@r,7)-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,,1,0xFFFFFFFF,63,2,256,,1,1,1030,{ bonus bStr,5; bonus bMaxHPrate,5; bonus2 bSubDefEle,Ele_Fire,10; .@r = getrefine(); if(.@r>=9) bonus bAspd,1+(.@r-9)/2; },{},{} -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_Human,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; },{},{} -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; },{},{} -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,1,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; },{},{} -18933,Mechanical_Plant_Hat,Mechanical Plant Hat,4,20,,500,,10,,1,0xFFFFFFFF,63,2,256,,45,1,1069,{ .@r = getrefine()/2; bonus bDex,2; bonus bMdef,7; bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",5+(5*.@r); },{},{} -18934,Fox_Ears_Bell_Ribbon,Fox Ears Bell Ribbon,4,0,,400,,4,,1,0xFFFFFFFF,63,2,256,,50,1,1070,{ bonus bAgi,2; bonus bAspdRate,10; .@r = getrefine(); autobonus "{ bonus bCritical,100; bonus bLongAtkRate,5+max(0,getrefine()-6); }",50+(.@r*2),5000,BF_NORMAL,"{ active_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,,70,1,1073,{ bonus bInt,1; .@r = getrefine(); if(.@r>6){ .@t = ((.@r-6)*2); } bonus2 bSubSkill,"WZ_METEOR",20+.@t; bonus2 bSubSkill,"WL_CRIMSONROCK",20+.@t; bonus2 bSubSkill,"WL_COMET",5; bonus2 bSkillAtk,"WZ_METEOR",(.@r/3)*5; bonus2 bSkillAtk,"WL_CRIMSONROCK",(.@r/3)*5; },{},{} -18940,10_Gallon_Hat_Of_Flame,10 Gallon Hat Of Flame,4,10,,1000,,0,,0,0xFFFFFFFF,63,2,256,,90,1,1075,{},{},{} -18947,Pipe_Of_Jiraiya,Jiraiya's Pipe,4,10,,100,,1,,0,0xFFFFFFFF,63,2,1,,70,,1088,{ bonus2 bSkillUseSP,"NJ_KOUENKA",-5; bonus2 bVariableCastrate,"NJ_KAENSIN",-10; bonus2 bSkillAtk,"NJ_BAKUENRYU",20; },{},{} -18948,Mask_Of_Orochimaru,Orochimaru's Mask,4,10,,100,,1,,0,0xFFFFFFFF,63,2,1,,70,,1089,{ bonus2 bSkillUseSP,"NJ_HYOUSENSOU",-5; bonus2 bVariableCastrate,"NJ_SUITON",-10; bonus2 bSkillAtk,"NJ_HYOUSYOURAKU",20; },{},{} -18949,Scroll_Of_Tsunade,Tsunade's Scroll,4,10,,100,,1,,0,0xFFFFFFFF,63,2,1,,70,,1090,{ bonus2 bSkillUseSP,"NJ_HUUJIN",-5; bonus2 bVariableCastrate,"NJ_RAIGEKISAI",-10; bonus2 bSkillAtk,"NJ_KAMAITACHI",20; },{},{} -// -18960,Love_Daddy_2013,Love Daddy 2013,4,10,,10,,10,,1,0xFFFFFFFF,63,2,256,,,1,1104,{ .@r = getrefine(); bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; if(readparam(bStr) >= 90){ bonus bAtk,15; if(.@r >= 9) bonus bAtk,15; } if(readparam(bInt) >= 90){ bonus bMatk,15; if(.@r >= 9) bonus bMatk,15; } if(readparam(bVit) >= 90){ bonus bMaxHP,500; if(.@r >= 9) bonus bMaxHP,500; } if(readparam(bAgi) >= 90){ bonus bAspdRate,2; if(.@r >= 9) bonus bAspdRate,3; } if(readparam(bDex) >= 90){ bonus bLongAtkRate,3; if(.@r >= 9) bonus bLongAtkRate,3; } if(readparam(bLuk) >= 90){ bonus bCritical,5; if(.@r >= 9) bonus bCritical,5; } },{},{} -18970,Magical_Moon_Cat,Magical Moon Cat,4,20,,50,,5,,1,0xFFFFFFFF,63,2,256,,1,1,1308,{ skill "ALL_CATCRY",1; bonus bAllStats,3; bonus bDelayrate,-5-(getrefine()/2); 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_R,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; },{},{} -18974,Old_Driver_Band_Y,Old Driver Band(Yellow),4,10,,100,,10,,1,0x00000400,56,2,256,,170,1,637,{ bonus bAllStats,1; .@r = getrefine(); bonus bBaseAtk,4*.@r; bonus bAspd,.@r/5; bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus2 bSkillAtk,"NC_ARMSCANNON",5*(.@r/2); bonus2 bSkillCooldown,"NC_SELFDESTRUCTION",-10000*(.@r/4); },{},{} -18975,Old_Shadow_Handicraft,Old Shadow Handicraft,4,10,,100,,10,,1,0x00020000,56,2,256,,170,1,627,{ bonus bAllStats,1; .@r = getrefine(); bonus bBaseAtk,4*.@r; bonus bMatk,4*.@r; bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus2 bSkillAtk,"SC_TRIANGLESHOT",25*.@r/2; if (.@r>=6) { bonus2 bSkillCooldown,"SC_ENERVATION",-1000; bonus2 bSkillCooldown,"SC_UNLUCKY",-1000; } if (.@r>=8) { bonus2 bSkillCooldown,"SC_LAZINESS",-1000; bonus2 bSkillCooldown,"SC_WEAKNESS",-1000; } if (.@r>=10) { bonus2 bSkillCooldown,"SC_IGNORANCE",-1000; bonus2 bSkillCooldown,"SC_GROOMY",-1000; } },{},{} -18976,Old_Minstrel_Song_Hat,Old Minstrel Song's Hat,4,10,,100,,10,,1,0x00080000,56,1,256,,170,1,628,{ bonus bAllStats,1; .@r = getrefine(); bonus bLongAtkRate,.@r; bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus2 bSkillAtk,"CG_ARROWVULCAN",20*.@r/2; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",5*.@r/2; },{},{} -18977,Old_Midas_Whisper,Old Midas Whisper,4,10,,100,,10,,1,0x00040000,56,2,256,,170,1,629,{ bonus bAllStats,1; .@r = getrefine(); bonus bBaseAtk,4*.@r; bonus bLongAtkRate,.@r; bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus2 bSkillAtk,"GN_CARTCANNON",15*.@r/2; },{},{} -18978,Old_Magic_Stone_Hat,Old Magic Stone Hat,4,10,,100,,10,,1,0x00000200,56,2,256,,170,1,630,{ bonus bAllStats,1; .@r = getrefine(); bonus bMdef,5; bonus bMatkRate,.@r; bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus2 bSkillAtk,"WL_SOULEXPANSION",5*.@r/2; bonus2 bSkillCooldown,"WL_CRIMSONROCK",-1000-(.@r*100); },{},{} -18979,Old_Blazing_Soul,Old Blazing Soul,4,10,,100,,10,,1,0x00008000,56,2,256,,170,1,631,{ bonus bAllStats,1; .@r = getrefine(); bonus bBaseAtk,4*.@r; bonus bCritical,2*.@r; bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",15*.@r/2; bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",20*.@r/2; },{},{} -18980,Old_Wind_Whisper,Old Wind Whisper,4,10,,100,,10,,1,0x10000,56,2,256,,170,1,633,{ bonus bAllStats,1; .@r = getrefine(); bonus bAtk2,4*.@r; bonus bMatkRate,.@r; bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus bMdef,5; bonus2 bSkillAtk,"SO_POISON_BUSTER",15*(.@r/2); bonus2 bSkillAtk,"SO_VARETYR_SPEAR",20*(.@r/2); },{},{} -18981,Old_Dying_Swan,Old Dying Swan,4,10,,100,,10,,1,0x00080000,56,0,256,,170,1,635,{ bonus bAllStats,1; .@r = getrefine(); bonus bLongAtkRate,.@r; bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus2 bSkillAtk,"CG_ARROWVULCAN",20*.@r/2; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",5*.@r/2; },{},{} -18982,Old_Circlet_Of_Bone,Old Circlet Of Bones,4,10,,100,,10,,1,0x00001000,56,2,256,,170,1,1141,{ bonus bAllStats,1; .@r = getrefine(); bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus bCriticalRate,.@r; bonus bAspdRate,1; bonus2 bSkillAtk,"GC_CROSSIMPACT",10*.@r/2; bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",20*.@r/2; },{},{} -18983,Old_Protect_Of_Crown,Old Protect Of Crown,4,10,,100,,10,,1,0x00004000,56,2,256,,170,1,1140,{ bonus bAllStats,1; .@r = getrefine(); bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus bMdef,5; bonus bBaseAtk,4*.@r; bonus bAspd,.@r/5; bonus2 bSkillAtk,"LG_CANNONSPEAR",20*.@r/2; bonus2 bSkillAtk,"LG_OVERBRAND",5*.@r/2; },{},{} -18984,Old_Camo_RabbitHood,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; },{},{} -18985,Falconer_Flute,Falconer Flute,4,0,,100,,,,0,0x0000800,63,2,1,,75,0,1143,{ set .@bblvl,max(getskilllv("HT_BLITZBEAT"),1); set .@luk,min(readparam(bLuk),120); bonus3 bAutoSpell,"HT_BLITZBEAT",.@i,((.@bblvl / 3) * 10) + (.@luk * 10) + (((.@bblvl / 5) * .@bblvl) * 2); },{},{} -18987,RWC13_Jormungandr_Hat,RWC13 Jormungandr Hat,4,20,,2500,,7,,1,0xFFFFFFFF,63,2,256,,1,1,1149,{ bonus bAllStats,2; bonus bVariableCastrate,-5; bonus bDelayrate,-5; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,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,Riot_Chip,Runaway Chip,4,10,,300,,,,1,0xFFFFFFFF,63,2,256,,100,1,1201,{ bonus bHit,50; bonus bFlee,50; bonus bMaxSPrate,-50; },{},{} -19019,Elemental_Crown,Elemental Crown,4,0,,500,,10,,1,0xFFFFFFFF,63,2,256,,50,1,1219,{ .@r = getrefine(); bonus bLongAtkRate,4; bonus bDex,(3+(BaseLevel>99?.@r:.@r/2)); },{},{} -19020,Survive_Circlet,Survive Circlet,4,0,,500,,10,,1,0xFFFFFFFF,63,2,256,,50,1,1220,{ .@r = getrefine(); bonus bInt,(3 + (BaseLevel > 99 ? .@r : .@r/2)); bonus bMatkRate,4; },{},{} -19021,Gigant_Helm,Gigant Helm,4,0,,500,,10,,1,0xFFFFFFFF,63,2,256,,50,1,1221,{ .@r = getrefine(); bonus bStr,(3 + (BaseLevel > 99 ? .@r : .@r/2)); bonus2 bAddClass,Class_All,4; },{},{} -19022,Floating_Stone_Of_Int,Floating Stone Of Intelligence,4,,,,,,,,0xFFFFFFFF,63,2,256,,,,1230,{},{ sc_start SC_FSTONE,INFINITE_TICK,0; },{ sc_end SC_FSTONE; } // jRO Item -19024,Protect_Feathers,Protect Feathers,4,0,,500,,,,0,0xFFFFFFFF,63,2,512,,70,0,1232,{ bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; bonus bAspdRate,-5; .@vit = readparam(bVit); if (.@vit >= 108) { bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,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,,10,1,1250,{ bonus2 bAddRace,RC_Angel,5; bonus2 bSubRace,RC_Angel,5; },{},{} -19033,Rift_Ancient_Decoration,Rift Ancient Decoration,4,20,,200,,2,,1,0xFFFFFFFF,63,2,256,,100,1,376,{ .@r = getrefine(); bonus bMaxHP,1000+(.@r >= 9 ? 1000 : .@r >=7 ? 400 : 0); },{},{} -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_Human,-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_Clothe,Elemental Clothes,4,0,,500,,45,,1,0xFFFFFFFF,63,2,16,,80,1,,{ .@r = getrefine(); bonus bLongAtkRate,2+((.@r >= 9) ? 3 : 0)+((.@r >= 8) ? 2 : 0); if (.@r >= 7) bonus bUnbreakableArmor; },{},{} -19050,Loki_Nidhogg_Hat,Loki & Nidhoggur's Hat,4,0,,100,,0,,1,0xFFFFFFFF,63,2,256,,1,1,1304,{},{},{} -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); },{},{} -19079,Celestial_Woman's_Flower,Celestial Woman's Flower,4,20,,300,,5,,1,0xFFFFFFFF,63,2,256,,20,1,438,{ bonus bHPGainValue,100; bonus bMdef,5; bonus2 bSPGainRace,RC_Undead,5; if (getrefine()>=5) { bonus2 bSubRace,RC_Undead,5; } if (getrefine()>=7) { bonus2 bSubRace,RC_Undead,5; } },{},{} -19081,Faceworm_Egg_Shell,Faceworm Egg Shell,4,20,,500,,2,,1,0xFFFFFFFF,63,2,256,,30,1,1356,{ bonus bHit,20; bonus2 bAddRace2,RC2_FACEWORM,5; bonus2 bMagicAddRace2,RC2_FACEWORM,5; bonus2 bSubRace2,RC2_FACEWORM,5; .@r = getrefine(); if (.@r>=5) { bonus2 bAddRace2,RC2_FACEWORM,10; bonus2 bMagicAddRace2,RC2_FACEWORM,10; bonus2 bSubRace2,RC2_FACEWORM,10; } if (.@r>=7) { bonus2 bAddRace2,RC2_FACEWORM,15; bonus2 bMagicAddRace2,RC2_FACEWORM,15; bonus2 bSubRace2,RC2_FACEWORM,15; } if (.@r>=9) { bonus2 bAddRace2,RC2_FACEWORM,20; bonus2 bMagicAddRace2,RC2_FACEWORM,20; bonus2 bSubRace2,RC2_FACEWORM,20; } },{},{} -19082,Bio_Protector,Bio Protector,4,0,,500,,3,,0,0xFFFFFFFF,63,2,512,,50,1,1366,{ bonus bHit,10; bonus bVariableCastrate,-5; bonus bPerfectHitRate,5; },{},{} -19083,Mask_of_Hero,Mask of Hero,4,20,,200,,0,,0,0xFFFFFFFF,63,2,512,,70,0,1367,{ bonus bVit,10; bonus bMdef,10; bonus bShortWeaponDamageReturn,1; },{},{} -19084,Parfaille_Vigilante_Hat,Parfaille Vigilante Hat,4,0,,100,,2,,0,0x80000000,63,2,256,,20,1,1368,{ bonus bLuk,1; bonus3 bAutoSpell,"AL_BLESSING",3,100; },{},{} -19085,Sigrun's_Wings_,Sigrun's Wings,4,20,,100,,2,,1,0xFFFFFFFF,63,2,512,,1,0,568,{ if(BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Thief||(BaseJob==Job_Taekwon&&Class!=Job_Soul_Linker)) { bonus bAspd,1; bonus bAgi,-2; } else if(BaseClass==Job_Mage||BaseClass==Job_Acolyte||Class==Job_Ninja||Class==Job_Soul_Linker){ bonus bMatk,3; bonus bHealPower,2; } else if(BaseClass==Job_Archer||BaseClass==Job_Gunslinger) bonus bLongAtkRate,1; else if(BaseJob==Job_Novice||BaseJob==Job_SuperNovice) { bonus bMaxHP,60; bonus bMaxSP,30; } },{},{} -19086,Robo_Eye_,Robo Eye,4,20,,200,,2,,1,0xFFFFFFFF,63,2,512,,10,0,345,{ bonus2 bAddClass,Class_All,1; bonus bMatkRate,1; bonus bDex,1; },{},{} -19087,Angel_Spirit_,Angel Spirit,4,20,,200,,0,,1,0xFFFFFFFF,63,2,512,,0,0,394,{ bonus bStr,1; bonus bHit,8; },{},{} -19088,Binoculars_,Binoculars,4,20,,100,,2,,1,0x00080808,63,2,512,,50,0,83,{ bonus bDex,1; },{},{} -19089,Blinker_,Blinker,4,1500,,100,,0,,1,0xFFFFFFFE,63,2,512,,0,0,82,{ bonus2 bResEff,Eff_Blind,5000; },{},{} -19090,Alarm_Mask_,Alarm Mask,4,20,,100,,2,,1,0xFFFFFFFE,63,2,513,,0,0,170,{ bonus2 bResEff,Eff_Blind,2500; },{},{} -19091,Opera_Ghost_Mask_,Opera Phantom Mask,4,20,,200,,2,,1,0xFFFFFFFE,63,2,512,,20,0,128,{},{},{} -19092,Machoman_Glasses_,Machoman's Glasses,4,36000,,100,,1,,1,0xFFFFFFFE,63,2,512,,0,0,92,{},{},{} -19093,Spinning_Eyes_,Geek Glasses,4,20000,,100,,1,,1,0xFFFFFFFF,63,2,512,,0,0,27,{ bonus2 bResEff,Eff_Blind,800; },{},{} -19094,Mr_Smile_,Mr. Smile,4,60,,100,,1,,1,0xFFFFFFFF,63,2,513,,0,0,65,{},{},{} -19095,Happy_Balloon_K,Happy Balloon,4,0,,10,,0,,0,0xFFFFFFFF,63,2,1,,1,0,1289,{ bonus2 bDropAddRace,RC_All,10; bonus2 bExpAddRace,RC_All,5; },{},{} -19101,Glastheim_Observer,Glastheim Observer,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,80,1,1041,{ bonus2 bAddClass,Class_All,2; bonus bDelayrate,-5; },{},{} -19102,Pale_Moon_Hat,Pale Moon Hat,4,20,,500,,2,,1,0xFFFFFFFF,63,2,256,,30,1,913,{ bonus bFlee,20; bonus2 bAddRace2,RC2_THANATOS,5; bonus2 bSubRace2,RC2_THANATOS,5; bonus2 bMagicAddRace2,RC2_THANATOS,5; if(getrefine()>4) { bonus2 bAddRace2,RC2_THANATOS,10; bonus2 bSubRace2,RC2_THANATOS,10; bonus2 bMagicAddRace2,RC2_THANATOS,10; } if(getrefine()>6) { bonus2 bAddRace2,RC2_THANATOS,15; bonus2 bSubRace2,RC2_THANATOS,15; bonus2 bMagicAddRace2,RC2_THANATOS,15; } if(getrefine()>8) { bonus2 bAddRace2,RC2_THANATOS,20; bonus2 bSubRace2,RC2_THANATOS,20; bonus2 bMagicAddRace2,RC2_THANATOS,20; } /* skill 3044,1; */ },{},{} -19109,Valhalla_Idol,Valhalla Idol,4,0,,300,,2,,0,0xFFFFFFFF,63,2,512,,70,0,1423,{ bonus bMaxSP,50; bonus4 bAutoSpellWhenHit,"MG_SAFETYWALL",10,50,0; hateffect(HAT_EF_VALHALLA_IDOL,true); },{},{ hateffect(HAT_EF_VALHALLA_IDOL,false); } -19111,Laser_Of_Eagle,Laser of Eagle,4,0,,400,,5,,1,0xFFFFFFFF,63,2,256,,100,1,1424,{ bonus bDex,2; bonus bLongAtkRate,10; bonus5 bAutoSpell,"PR_LEXAETERNA",1,50,BF_LONG,1; /*TODO: Chance to transform become Shechil while attacking.*/ },{},{} -19112,Tengu_Scroll,Tengu Scroll,4,20,,300,,0,,0,0xFFFFFFFF,63,2,1,,40,0,1445,{ bonus2 bHPDrainRate,30,5; },{},{} -19114,Sting_Silk_Ribbon,Sting Silk Ribbon,4,20,,300,,15,,1,0xFFFFFFFF,63,2,256,,70,1,1457,{ bonus bUnbreakableHelm; bonus2 bSubEle,Ele_Earth,20; if(getrefine()>4) { bonus2 bSubSize,Size_All,2; } if(getrefine()>6) { bonus2 bSubSize,Size_All,3; } },{},{} -19115,Republic_Hat,Republic Hat,4,0,,400,,3,,1,0xFFFFFFFF,63,2,256,,100,1,1458,{ .@r = getrefine(); .@val = 6; if (.@r >= 7) { .@val += 2; } if (.@r >= 9) { .@val += 4; } bonus bLongAtkRate,.@val; },{},{} -19116,Red_Baby_Dragon,Red Baby Dragon,4,0,,700,,,1,1,0xFFFFFFFF,63,2,256,,90,1,1463,{ .@r=getrefine(); bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus2 bSkillAtk,"RK_DRAGONBREATH",(.@r>=8?45:(.@r>=6?30:15)); bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",(.@r>=8?45:(.@r>=6?30:15)); },{},{} -19117,Poring_Sunglasses_,Poring Sunglasses,4,0,,10,,0,,0,0xFFFFFFFF,63,2,512,,1,0,954,{ bonus2 bDropAddRace,RC_All,5; bonus2 bExpAddRace,RC_All,5; },{},{} -19118,Poring_Sunglasses__,Poring Sunglasses,4,0,,10,,0,,1,0xFFFFFFFF,63,2,512,,1,0,954,{ bonus2 bDropAddRace,RC_All,4; bonus2 bExpAddRace,RC_All,4; },{},{} -19125,Cylinder_Hairband,Cylinder Hairband,4,20,,300,,12,,1,0xFFFFFFFF,63,2,256,,90,1,1477,{ bonus bStr,5; bonus bInt,5; bonus2 bVariableCastrate,"GN_CARTCANNON",-100; bonus2 bSkillUseSP,"GN_CARTCANNON",30; bonus2 bSkillUseSP,"GN_CART_TORNADO",5; bonus2 bSkillAtk,"GN_CARTCANNON",10; bonus2 bSkillAtk,"GN_CART_TORNADO",5; if (getrefine()>=5) { bonus2 bSkillAtk,"GN_CARTCANNON",20; bonus2 bSkillAtk,"GN_CART_TORNADO",10; } if (getrefine()>=8) { bonus2 bSkillAtk,"GN_CARTCANNON",30; bonus2 bSkillAtk,"GN_CART_TORNADO",20; } },{},{} -19126,Shadow_Booster_,Magical Booster,4,10,,300,,,,1,0xFFFFFFFF,63,2,512,,1,1,873,{ bonus bAspd,1; bonus bDelayrate,-1; },{},{} -19128,Ifrit's_Ear_,Ears Of Ifrit,4,20,,300,,0,,1,0xFFFFFFFE,63,2,512,,50,0,422,{ bonus bStr,1; bonus bMdef,3; bonus bInt,1; bonus2 bSkillAtk,"MG_FIREBOLT",3; bonus2 bSkillAtk,"WZ_FIREPILLAR",3; bonus2 bSkillAtk,"WZ_METEOR",3; bonus2 bSkillAtk,"SM_BASH",4; bonus2 bSkillAtk,"SM_MAGNUM",4; bonus2 bSkillAtk,"KN_PIERCE",3; bonus2 bSubEle,Ele_Fire,3; bonus2 bSubEle,Ele_Water,-3; },{},{} -19129,Chick_Hat_,Chick Hat,4,20,,100,,2,,1,0xFFFFFFFF,63,2,256,,10,0,311,{ bonus bLuk,2; bonus bMaxHP,50; bonus bMaxSP,50; skill "TF_DOUBLE",2; bonus bDoubleRate,10; bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3; },{},{} -19130,Magic_Eyes_,Magic Eyes,4,20,,300,,3,,1,0x00810204,63,2,256,,54,1,209,{ bonus bMdef,5; bonus bVariableCastrate,-10; bonus bUseSPrate,20; },{},{} -19131,Radio_Antenna_,Radio Antenna,4,0,,1500,,2,,1,0xFFFFFFFF,63,2,256,,1,1,347,{ bonus bMdef,5; bonus bCritical,5; bonus bFlee,5; skill "MG_LIGHTNINGBOLT",1; bonus4 bAutoSpellWhenHit,"MG_THUNDERSTORM",5,30,1; },{},{} -19132,Masquerade_,Masquerade,4,20,,100,,0,,1,0xFFFFFFFE,63,2,512,,0,0,78,{ bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player_Human,3; },{},{} -19133,Odin_Mask_,Odin's Mask,4,20,,100,,1,,1,0xFFFFFFFF,63,2,513,,1,0,480,{ bonus2 bSubClass,Class_Boss,2; },{},{} -19134,Wickebines_Black_Cat_Ears,Wickebine's Black Cat Ears,4,20,,200,,4,,1,0xFFFFFFFE,63,2,256,,45,1,368,{ bonus bFlee,10; bonus bCritAtkRate,10; autobonus "{ bonus2 bIgnoreMdefClassRate,Class_Normal,100; bonus2 bIgnoreMdefClassRate,Class_Boss,100; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_STEAL; }"; },{},{} -19137,Strawberry_Mouth_Guard,Strawberry Mouth Guard,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,80,0,861,{ bonus bVit,2; bonus bLongAtkDef,5; bonus bShortWeaponDamageReturn,5; if (Baselevel>=100) { bonus bMaxHP,2000; } else { bonus bMaxHP,200; } },{},{} -19138,Seraphim_Coronet,Seraphim Coronet,4,20,,300,,0,,0,0xFFFFFFFF,63,2,512,,70,0,1487,{ bonus bStr,2; .@int = readparam(bInt); bonus bBaseAtk,(.@int/8)*5; bonus bHealPower,.@int/8; bonus bVariableCastrate,.@int/8; if ((.@int>=108)) { bonus bBaseAtk,50; bonus bHealPower,5; bonus bVariableCastrate,4; } if ((.@int>=120)) { bonus bBaseAtk,125; bonus bHealPower,10; bonus bVariableCastrate,6; } },{},{} -19139,SurviveOrb,Survive Orb,4,0,,300,,,,0,0xFFFFFFFF,63,2,1,,50,0,1488,{ skill "TF_HIDING",1; bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; bonus bVariableCastrate,-3; },{},{} -19140,Squirrel_Ear_Hat,Squirrel Ear Hat,4,0,,200,,10,,1,0xFFFFFFFF,63,2,256,,100,1,1486,{ .@r = getrefine(); bonus bAspd,1; bonus bCriticalLong,5; bonus bCritAtkRate,10; bonus2 bIgnoreDefRaceRate,RC_All,10; if (.@r > 4) { bonus bAspd,1; bonus bCriticalLong,10; bonus bCritAtkRate,2; bonus2 bIgnoreDefRaceRate,RC_All,20; } if (.@r > 6) { bonus bAspd,1; bonus bCriticalLong,15; bonus bCritAtkRate,6; bonus2 bIgnoreDefRaceRate,RC_All,30; } if (.@r > 8) { bonus bAspd,1; bonus bCriticalLong,20; bonus bCritAtkRate,12; bonus2 bIgnoreDefRaceRate,RC_All,40; autobonus "{ bonus bCritAtkRate,100; }",70,5000; } },{},{} -19141,Dolor_Thanatos_Mask,Dolor Thanatos Mask,4,20,,200,,6,,0,0xFFFFFFFF,63,2,513,,100,0,666,{ bonus bMdef,8; bonus bAllStats,1; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,1; bonus2 bSubEle,Ele_Fire,5; bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Wind,5; bonus2 bSubEle,Ele_Earth,5; },{},{} -19142,Drooping_Rebellion,Drooping Rebellion,4,20,,500,,1,,1,0xFFFFFFFF,63,2,256,,1,0,1444,{ bonus bLongAtkRate,10; },{},{} -19143,Poring_Balloon,Poring Balloon,4,20,,10,,0,,0,0xFFFFFFFF,63,2,1,,1,0,1426,{ bonus2 bAddMonsterDropItem,909,2000; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; },{},{} -19144,Ferlock's_Hat,Ferlock's Hat,4,20,,1000,,1,,1,0xFFFFFFFF,63,2,256,,50,0,1489,{},{},{} -19145,Whistle,Whistle,4,20,,10,,0,,0,0xFFFFFFFF,63,2,1,,1,0,1478,{ bonus bBaseAtk,10; bonus bMatk,10; bonus bHPGainValue,10; bonus bSPGainValue,3; },{},{} -19146,Marin_Balloon,Marin Balloon,4,20,,10,,0,,0,0xFFFFFFFF,63,2,1,,1,0,1430,{ bonus4 bAutoSpellWhenHit,"WZ_QUAGMIRE",1,50,0; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; },{},{} -19147,Drops_Balloon,Drops Balloon,4,20,,10,,0,,0,0xFFFFFFFF,63,2,1,,1,0,1427,{ bonus bLuk,2; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; },{},{} -19148,Santa_Poring_Balloon,Santa Poring Balloon,4,20,,10,,0,,0,0xFFFFFFFF,63,2,1,,1,0,1428,{ bonus2 bAddItemGroupHealRate,IG_Candy,200; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; },{},{} -19149,Poporing_Balloon,Poporing Balloon,4,20,,10,,0,,0,0xFFFFFFFF,63,2,1,,1,0,1429,{ bonus2 bAddEff,Eff_Poison,500; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; },{},{} -19150,Metalring_Balloon,Metalring Balloon,4,20,,10,,0,,0,0xFFFFFFFF,63,2,1,,1,0,1431,{ bonus3 bAutoSpell,"RG_STRIPWEAPON",1,50; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; },{},{} -19151,Devilring_Balloon,Devilring Balloon,4,20,,10,,0,,0,0xFFFFFFFF,63,2,1,,1,0,1434,{ bonus2 bAddEff,Eff_Curse,500; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; },{},{} -19152,Angelring_Balloon,Angelring Balloon,4,20,,10,,0,,0,0xFFFFFFFF,63,2,1,,1,0,1435,{ bonus2 bAddItemHealRate,504,100; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; },{},{} -19153,Ghostring_Balloon,Ghostring Balloon,4,20,,10,,0,,0,0xFFFFFFFF,63,2,1,,1,0,1436,{ bonus3 bAutoSpell,"MG_SOULSTRIKE",5,10; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; },{},{} -19154,Arch_Angelring_Balloon,Arch Angelring Balloon,4,20,,10,,0,,0,0xFFFFFFFF,63,2,1,,1,0,1437,{ skill "ALL_RESURRECTION",1; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; },{},{} -19155,Demons_Eyes,Demon's Eyes,4,20,,10,,0,,0,0xFFFFFFFF,63,2,512,,60,0,1490,{ bonus2 bSubRace,RC_Player_Human,3; bonus bFlee2,2; },{},{} -19156,Lunar_Rainbow,Lunar Rainbow,4,20,,200,,10,,1,0xFFFFFFFF,63,2,256,,80,1,704,{ bonus bAgi,3; bonus bMdef,10; bonus bMatk,(10*getrefine()); },{},{} -19157,Drooping_Rebellion_,Drooping Rebellion,4,20,,200,,1,,1,0xFFFFFFFF,63,2,256,,1,1,1444,{ bonus bAllStats,1; bonus bUseSPrate,-10; .@r = getrefine(); if (.@r >= 9) { bonus bAspd,1; } if (.@r >= 12) { bonus bSpeedRate,25; } bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; },{},{} -19158,C_Gemini_Eyes,Costume GeminiS58 Eyes Blue,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,0,0,1456,{},{},{} -19159,Barrel_Helm,Barrel Helm,4,20,,420,,59,,1,0xFFFFFFFF,63,2,769,,60,1,1498,{ bonus bVit,5; bonus bHPrecovRate,-10; .@r = getrefine(); if (.@r >= 7) { bonus bDef,100; skill "CR_AUTOGUARD",1; } if (.@r >= 8) { bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; if(BaseJob==Job_SuperNovice) { skill "CR_AUTOGUARD",5; } } },{},{} -19162,Scuba_Mask_,Scuba Mask,4,20,,100,,0,,1,0xFFFFFFFF,63,2,512,,40,1,400,{ bonus bBaseAtk,5; bonus bMatk,5; },{},{} -19164,Para_Team_Hat100,Awakened Eden Group Hat I,4,20,,0,,10,,1,0xFFFFFFFF,63,2,256,,100,1,1529,{ autobonus "{ bonus bBaseAtk,15; }",70,5000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; autobonus "{ bonus bMatk,15; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_SPELLBREAKER; }"; .@r = getrefine(); if(.@r >= 7){ bonus bAtk,10; bonus bMatk,10; if(.@r >= 9){ bonus bAllStats,1; if(.@r >= 12){ bonus2 bRegenPercentSP,1,10000; } } } },{},{} -19165,Para_Team_Hat160,Awakened Eden Group Hat II,4,20,,0,,10,,1,0xFFFFFFFF,63,2,256,,160,1,1530,{ autobonus "{ bonus bBaseAtk,30; }",70,5000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; autobonus "{ bonus bMatk,30; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_SPELLBREAKER; }"; .@r = getrefine(); if(.@r >= 7){ bonus bAtk,15; bonus bMatk,15; if(.@r >= 9){ bonus bAllStats,2; if(.@r >= 12){ bonus2 bRegenPercentHP,2,10000; bonus2 bRegenPercentSP,1,10000; } } } },{},{} -19166,RO_Celebration_Hat,RO Celebration Hat,4,20,,140,,14,,1,0xFFFFFFFF,63,2,256,,14,1,1541,{ bonus bMaxSP,140; bonus2 bSPRegenRate,6,4000; },{},{} -19168,Band_Of_Kafra_,Kafra Staff Headband,4,20,,500,,0,,1,0xFFFFFFFF,63,2,256,,,1,106,{ bonus2 bSubClass,Class_All,5; .@r = getrefine()*10; bonus2 bAddMonsterDropItem,23177,10+.@r; bonus2 bAddMonsterDropItem,7059,10+.@r; bonus2 bAddMonsterDropItem,7060,10+.@r; },{},{} -19171,Magician_Knit_Hat,Magician Knit Hat,4,20,,500,,10,,1,0xFFFFFFFF,63,2,256,,10,1,854,{ .@r = getrefine(); bonus bMdef,10; bonus2 bAddRace,RC_Undead,5; bonus2 bMagicAddRace,RC_Undead,5; bonus2 bSubRace,RC_Undead,2; bonus bSPGainValue,5; bonus bLongSPGainValue,5; bonus bMagicSPGainValue,5; if (.@r>=7) { bonus bMdef,5; bonus2 bAddRace,RC_Undead,10; bonus2 bMagicAddRace,RC_Undead,10; bonus2 bSubRace,RC_Undead,3; bonus bSPGainValue,10; bonus bLongSPGainValue,10; bonus bMagicSPGainValue,10; } if (.@r>=9) { bonus bMdef,5; bonus2 bAddRace,RC_Undead,10; bonus2 bMagicAddRace,RC_Undead,10; bonus2 bSubRace,RC_Undead,5; bonus bSPGainValue,10; bonus bLongSPGainValue,10; bonus bMagicSPGainValue,10; } },{},{} -19172,Sitting_Pope_Casual,Sitting Pope Casual,4,1000,,400,,5,,1,0xFFFFFFFF,63,2,256,,100,1,1553,{ bonus bInt,2; bonus bDelayrate,-10; .@r = getrefine(); if (.@r>=7) bonus bDelayrate,-10; if (.@r>=9) bonus bDelayrate,-10; },{},{} -19173,Floating_Ice,Floating Ice,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,90,0,1562,{ bonus2 bAddItemHealRate,536,100; },{},{} -19176,Fallen_Angel_Blessing_,Fallen Angel Blessing,4,20,,200,,1,,1,0xFFFFFFFF,63,2,512,,10,0,1250,{ bonus2 bAddRace,RC_Angel,5; bonus2 bSubRace,RC_Angel,5; },{},{} -19177,Elemental_Crown_,Elemental Crown,4,0,,500,,10,,0,0xFFFFFFFF,63,2,256,,50,1,1219,{ .@r = getrefine(); bonus bDex,3 + (.@r/2); bonus bLongAtkRate,4; },{},{} -19178,Elemental_Crown__,Elemental Crown,4,0,,500,,10,,1,0xFFFFFFFF,63,2,256,,50,1,1219,{ .@r = getrefine(); bonus bDex,3 + (.@r/2); bonus bLongAtkRate,4; },{},{} -19179,Rabbit_Magic_Hat_,Magic Rabit Hat,4,0,,800,,4,,1,0xFFFFFFFF,63,2,256,,0,1,497,{ bonus bDex,1; bonus bAgi,1; bonus bMdef,1; bonus bAspdRate,5; bonus bDelayRate,-4; },{},{} -19180,Anubis_Helm_,Anubis Helm,4,20,,0,,8,,1,0xFFFFFFFF,63,2,768,,65,0,485,{ bonus bMdef,5; bonus2 bSubClass,Class_Boss,10; bonus bHealpower2,10; bonus bAddItemHealRate,10; },{},{} -19181,New_Wave_Sunglasses_,New Wave Sunglasses,4,20,,100,,1,,1,0xFFFFFFFF,63,2,512,,30,0,856,{ bonus bDelayRate,-5; },{},{} -// -19189,Racing_Cap_MC,Racing Cap (Mechanic),4,20,,0,,10,,1,0x00000400,56,2,256,,100,1,1134,{ .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*((.@r/3)); if (.@r>=8) bonus bCritAtkRate,5*getskilllv("BS_OVERTHRUST"); if (.@r>=11) { skill "TF_DOUBLE",5; bonus bDoubleRate,25; } },{},{} -19190,Racing_Cap_GN,Racing Cap (Geneticist),4,20,,0,,10,,1,0x00040000,56,2,256,,100,1,1134,{ .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus2 bSkillAtk,"GN_CART_TORNADO",5*getskilllv("AM_AXEMASTERY"); if (.@r>=11) bonus3 bAutoSpell,"GN_CART_TORNADO",max(2,getskilllv("GN_CART_TORNADO")),50; /* Unknow Rates */ },{},{} -19191,Racing_Cap_GC,Racing Cap (Guillotine Cross),4,20,,0,,10,,1,0x00001000,56,2,256,,100,1,1134,{ .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus bCritAtkRate,5*getskilllv("AS_LEFT"); if (.@r>=11) autobonus "{ bonus bCritAtkRate,20; }",50,5000,BF_WEAPON; /* Unknow Rate and Effect */ },{},{} -19192,Racing_Cap_SC,Racing Cap (Shadow Chaser),4,20,,0,,10,,1,0x00020000,56,2,256,,100,1,1134,{ .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus bMatk,5*getskilllv("RG_PLAGIARISM"); if (.@r>=11) bonus3 bAutoSpell,"HW_MAGICPOWER",5,30; /* Unknow Rates */ },{},{} -19193,Racing_Cap_WL,Racing Cap (Warlock),4,20,,0,,10,,1,0x00000200,56,2,256,,100,1,1134,{ .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus2 bSkillCooldown,"WL_TETRAVORTEX",-500*(getskilllv("WZ_METEOR")+getskilllv("WZ_VERMILION")); if (.@r>=11) bonus2 bFixedCastrate,"HW_MAGICPOWER",-50; },{},{} -19194,Racing_Cap_SO,Racing Cap (Sorcerer),4,20,,0,,10,,1,0x00010000,56,2,256,,100,1,1134,{ .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) { bonus2 bSkillAtk,"MG_THUNDERSTORM",5*getskilllv("SA_AUTOSPELL"); bonus2 bSkillAtk,"MG_FIREBALL",5*getskilllv("SA_AUTOSPELL"); } if (.@r>=11) { bonus2 bSkillAtk,"MG_FIREBOLT",50; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",50; } },{},{} -19195,Racing_Cap_RK,Racing Cap (Rune Knight),4,20,,0,,10,,1,0x00000080,56,2,256,,100,1,1134,{ .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus bCritAtkRate,5*getskilllv("KN_TWOHANDQUICKEN"); if (.@r>=11) { bonus bUnbreakableWeapon; skill "TF_DOUBLE",5; bonus bDoubleRate,25; } },{},{} -19196,Racing_Cap_RG,Racing Cap (Royal Guard),4,20,,0,,10,,1,0x00004000,56,2,256,,100,1,1134,{ .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus2 bSkillAtk,"LG_RAGEBURST",10*getskilllv("KN_SPEARMASTERY"); if (.@r>=11) bonus2 bSkillCooldown,"LG_EARTHDRIVE",-1000; },{},{} -19197,Racing_Cap_AB,Racing Cap (Archbishop),4,20,,0,,10,,1,0x00000100,56,2,256,,100,1,1134,{ .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus2 bSkillAtk,"AB_DUPLELIGHT",10*getskilllv("PR_MACEMASTERY"); /*if (.@r>=11) bonus3 bAutoSpell,"AB_ADORAMUS",max(5,getskilllv("AB_ADORAMUS")),50; Unknow Rate and Blue Gemstone consume mechanic */ },{},{} -19198,Racing_Cap_SR,Racing Cap (Sura),4,20,,0,,10,,1,0x00008000,56,2,256,,100,1,1134,{ .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus2 bSkillUseSP,"SR_KNUCKLEARROW",getskilllv("MO_COMBOFINISH"); if (.@r>=11) bonus2 bSkillAtk,"SR_KNUCKLEARROW",50; },{},{} -19199,Racing_Cap_RA,Racing Cap (Ranger),4,20,,0,,10,,1,0x00000800,56,2,256,,100,1,1134,{ .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus2 bSkillAtk,"RA_AIMEDBOLT",3*getskilllv("HT_STEELCROW"); if (.@r>=11) bonus bDelayrate,-15; },{},{} -19200,Racing_Cap_MI,Racing Cap (Minstrel),4,20,,0,,10,,1,0x00080000,56,1,256,,100,1,1134,{ .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus bBaseAtk,5*getskilllv("BA_MUSICALLESSON"); if (.@r>=11) bonus3 bAutoSpell,"WM_REVERBERATION",max(2,getskilllv("WM_REVERBERATION")),50; /* Unknow rates*/ },{},{} -19201,Racing_Cap_WA,Racing Cap (Wanderer),4,20,,0,,10,,1,0x00080000,56,0,256,,100,1,1134,{ .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus bBaseAtk,5*getskilllv("DC_DANCINGLESSON"); if (.@r>=11) bonus3 bAutoSpell,"WM_REVERBERATION",max(2,getskilllv("WM_REVERBERATION")),50; /* Unknow rates*/ },{},{} -19202,Racing_Cap_GS,Racing Cap (Gunslinger),4,20,,0,,10,,1,0x40000000,63,2,256,,100,1,1134,{ .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) { bonus2 bSkillCooldown,"RL_HAMMER_OF_GOD",-2000*getskilllv("GS_PIERCINGSHOT"); bonus2 bSkillCooldown,"RL_D_TAIL",-200*getskilllv("GS_GROUNDDRIFT"); } if (.@r>=11) bonus2 bSkillCooldown,"RL_C_MARKER",-1000; },{},{} -19203,Racing_Cap_NJ,Racing Cap (Ninja),4,20,,0,,10,,1,0x20000000,63,2,256,,100,1,1134,{ .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus bLongAtkRate,getskilllv("NJ_HUUMA"); if (.@r>=11) bonus2 bSkillAtk,"KO_HUUMARANKA",30; },{},{} -19204,Racing_Cap_SN,Racing Cap (Super Novice),4,20,,0,,10,,1,0x00000001,63,2,256,,100,1,1134,{ .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus bCritAtkRate,10*getskilllv("TF_DOUBLE"); if (.@r>=11) { bonus bAspd,1; bonus bBaseAtk,20; } },{},{} -19205,Racing_Cap_SU,Racing Cap (Summoner),4,20,,0,,10,,1,0x80000000,63,2,256,,100,1,1134,{ .@r = getrefine(); bonus bBaseAtk,5*(.@r/2); bonus bMatk,5*.@r/2; bonus bAspdRate,2*(.@r/3); if (.@r>=8) { bonus2 bSkillCooldown,"SU_SVG_SPIRIT",-4000*getskilllv("SU_LUNATICCARROTBEAT"); bonus2 bSkillCooldown,"SU_NYANGGRASS",-8000*getskilllv("SU_CN_METEOR"); bonus2 bSkillCooldown,"SU_BUNCHOFSHRIMP",-4000*getskilllv("SU_FRESHSHRIMP"); } if (.@r>=11) bonus bDelayrate,-15; },{},{} -19209,Illusion_Nurse_Cap,Illusion Nurse Cap,4,20,,200,,1,,1,0x00008110,63,2,256,,99,1,64,{ .@r = getrefine(); bonus bInt,(1+(.@r/2)); bonus bHealPower,(3*(.@r/2)); },{},{} -19210,Illusion_Apple_of_Archer,Illusion Apple of Archer,4,20,,200,,1,,1,0xFFFFFFFE,63,2,256,,99,1,72,{ bonus bDex,(3+(getrefine()/2)); },{},{} -19223,Illusion_Cap,Illusion Cap,4,0,,400,,15,,1,0x000654E3,63,2,256,,120,1,14,{ bonus2 bAddClass,Class_All,1; bonus bBaseAtk,(2*getrefine()); },{},{} -19247,Illusion_Fancy_Flower,Illusion Fancy Flower,4,0,,100,,0,,1,0xFFFFFFFF,63,2,256,,120,0,4,{ bonus bMatkRate,1; bonus bMatk,(2*getrefine()); },{},{} -// -19246,Royal_Guard_Necklace,Royal Guard Necklace,4,20,,300,,0,,0,0xFFFFFFFF,63,2,1,,80,0,1629,{ bonus bAspd,1; },{},{} -19266,Survive_Circlet_,Survivor's Circlet,4,0,,500,,10,,1,0xFFFFFFFF,63,2,256,,1,1,1220,{ .@r = getrefine(); bonus bInt,3; bonus bMatk,10*(.@r/2)+(BaseLevel > 129 ? 50 : 0); if (.@r >= 10) {bonus bMatkRate,5;} },{},{} -19269,Happy_Flapping_Wings,Happy Flapping Angel Wings,4,20,,500,,2,,1,0xFFFFFFFF,63,2,256,,30,1,1251,{ .@r = getrefine(); .@a = 15; if (.@r >= 7) .@a += 15; if (.@r>=8) bonus2 bResEff,Eff_Stone,10000; if (.@r>=9) .@a += 20; bonus2 bAddRace2,RC2_CLOCKTOWER,.@a; bonus2 bMagicAddRace2,RC2_CLOCKTOWER,.@a; bonus2 bSubRace2,RC2_CLOCKTOWER,.@a; bonus2 bAddMonsterDropItem,1061,500; /* Unofficial rates, info get from bRO itemdescription */ },{},{} -19272,Garden_of_Eden,Garden of Eden,4,20,,400,,5,,1,0xFFFFFFFF,63,2,256,,100,1,1653,{ .@r = getrefine(); bonus bInt,5; bonus bDex,5; bonus2 bIgnoreMdefRaceRate,RC_All,20; bonus2 bMagicAtkEle,Ele_All,10; if (.@r>=7) { bonus2 bIgnoreMdefRaceRate,RC_All,30; bonus2 bMagicAtkEle,Ele_All,15; } if (.@r>=9) { bonus2 bIgnoreMdefRaceRate,RC_All,50; bonus bVariableCastrate,-15; } },{},{ sc_end SC_TELEKINESIS_INTENSE; } -19273,Gemini_Red_Eyes,Gemini Red Eyes,4,20,,100,,0,,0,0xFFFFFFFF,63,2,512,,100,0,1654,{ .@val = 100*(readparam(bVit)>89?50:10); bonus2 bResEff,Eff_Sleep,.@val; bonus2 bResEff,Eff_Stone,.@val; },{},{} -19274,Open_Air_Headset,Open Air Headset,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,90,0,1655,{ bonus bDelayrate,-5; bonus bUseSPrate,-5; bonus bSPGainValue,5; bonus bMagicSPGainValue,5; bonus bLongSPGainValue,5; },{},{} -19285,Siegfried's_Helmet,Siegfried's Helmet,4,20,,500,,0,,1,0xFFFFFFFF,63,2,256,,100,1,1055,{ .@r = getrefine(); bonus2 bSubClass,Class_Boss,5; bonus bUnbreakableHelm; if (.@r>=6) { bonus bFlee2,5; bonus2 bSubClass,Class_Boss,5; } if (.@r>=8) { bonus bFlee2,5; bonus2 bSubClass,Class_Boss,10; bonus bNoKnockback; } },{},{} -19289,C_Moon_Eyepatch,Costume Moon Eyepatch,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1370,{},{},{} -19291,C_Shiba_Inu,Costume Shiba Inu,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1669,{},{},{} -19294,C_CatEars_Cyber_HeadP_R,Costume Cyber Cat Ear Headphones (Red),4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1668,{},{},{} -19299,Tree_Sprout,Tree Sprout,4,20,,300,,0,,0,0xFFFFFFFF,63,2,1,,80,0,848,{ bonus bVariableCastrate,-5; },{},{} -19306,Gambler_Card,Heart Card in Mouth,4,20,,300,,0,,0,0xFFFFFFFF,63,2,1,,80,0,1679,{ bonus bCritAtkRate,5; },{},{} -19310,Beginner's_Cap,Beginner's Cap,4,20,,0,,10,,0,0xFFFFFFFF,63,2,256,,100,0,102,{ bonus bAllStats,1; bonus MaxHp,200; },{},{} -19326,Book_of_Soyga,Book of Soyga,4,20,,1000,,0,,1,0xFFFFFFFF,63,2,256,,90,1,423,{},{},{} -19327,Seraphim_Feather,Seraphim Feather,4,20,,300,,0,,0,0xFFFFFFFF,63,2,1,,80,0,1704,{ bonus bHealPower,5; },{},{} -19329,Devil's_Hand,Devil's Hand,4,10,,1000,,18,,0,0xFFFFFFFF,63,2,256,,100,1,1018,{ .@r = getrefine(); .@a = getskilllv("SR_RIDEINLIGHTNING"); .@b = getskilllv("SR_EARTHSHAKER"); .@c = getskilllv("SR_RAMPAGEBLASTER"); bonus bNoCastCancel; bonus bAspdRate,10; bonus2 bFixedCastrate,"SR_HOWLINGOFLION",-100; bonus2 bSkillAtk,"SR_HOWLINGOFLION",20; if (.@r>=7) { bonus2 bSkillAtk,"SR_HOWLINGOFLION",30; bonus bAspdRate,5; } if (.@r>=9) { bonus2 bSkillAtk,"SR_HOWLINGOFLION",50; bonus bAspdRate,5; } if (.@r>=10) bonus bIgnoreDefClass,Class_All; if (.@r>=10 && .@a==5) { bonus2 bVariableCastrate,"SR_HOWLINGOFLION",-50; bonus2 bVariableCastrate,"MO_STEELBODY",-50; bonus2 bVariableCastrate,"MO_CALLSPIRITS",-50; } if (.@r>=10 && .@b==5) bonus2 bSkillCooldown,"SR_HOWLINGOFLION",-9500; if (.@r>=10 && .@c==5) bonus2 bAddClass,Class_Boss,50; },{},{} -19337,Safety_Glasses,Safety Glasses,4,20,,500,,2,,1,0xFFFFFFFF,63,2,256,,40,1,1721,{ .@r = getrefine(); bonus2 bSubEle,Ele_Poison,10; if (.@r<7) .@a = 15; else if (.@r<9) .@a = 30; else if (.@r>=9) .@a = 50; if (.@r>=8) bonus2 bSubEle,Ele_Poison,15; /* bonus2 bAddRace2,RC2_HEARTHUNTER,.@a; bonus2 bMagicAddRace2,RC2_HEARTHUNTER,.@a; bonus2 bSubRace2,RC2_HEARTHUNTER,.@a; Hearthunter Warbase is not implemented yet */ },{},{} -19342,Bull_Hat,Bull Hat,4,20,,500,,2,,1,0xFFFFFFFF,63,2,256,,130,1,819,{ .@r = getrefine(); bonus2 bSubEle,Ele_Wind,10; if (.@r<7) .@a = 15; if (.@r>=7 && .@r<9) .@a = 30; if (.@r>=8) bonus2 bSubEle,Ele_Wind,15; if (.@r>=9) .@a = 50; bonus2 bAddRace2,RC2_ROCKRIDGE,.@a; bonus2 bMagicAddRace2,RC2_ROCKRIDGE,.@a; bonus2 bSubRace2,RC2_ROCKRIDGE,.@a; },{},{} -19343,Circlet_Of_Phoenix,Circlet Of Phoenix,4,0,,1000,,18,,0,0xFFFFFFFF,63,2,256,,100,1,1056,{ .@r = getrefine(); .@mdef = 15; .@hp = 10; .@dmg = 10; .@cast = -10; bonus2 bFixedCastrate,"LG_OVERBRAND",-100; if (.@r>=7) { .@cast -= 5; .@dmg += 15; if (.@r>=9) { .@cast -= 5; .@dmg += 25; if (.@r>=10) { bonus2 bIgnoreDefClassRate,Class_All,100; } } } if (getskilllv("LG_KINGS_GRACE")>=5) { bonus2 bSkillCooldown,"LG_INSPIRATION",-10000; bonus2 bSkillVariableCast,"LG_INSPIRATION",-2000; } if (getskilllv("LG_MOONSLASHER")>=5) { bonus2 bSkillVariableCast,"LG_OVERBRAND",-1000; } if (getskilllv("LG_FORCEOFVANGUARD")>=5) { .@hp += 10; .@mdef += 15; bonus bMaxSPrate,10; bonus bDef,150; } bonus bMdef,.@mdef; bonus bMaxHPrate,.@hp; bonus2 bSkillAtk,"LG_OVERBRAND",.@dmg; bonus bVariableCastrate,.@cast; },{},{} -19344,Illusion_Hot_blooded_Headband,Illusion Hot-blooded Headband,4,0,,100,,3,,1,0xFFFFFFFE,63,2,256,,120,1,154,{ .@r = getrefine(); bonus bStr,2; bonus bBaseAtk,(10*(.@r/2)); if (.@r >= 7) { bonus2 bAddEle,Ele_Water,10; bonus2 bAddEle,Ele_Wind,10; bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Neutral,10; if (.@r >= 9) { bonus2 bAddSize,Size_Small,15; bonus2 bAddSize,Size_Large,15; } } },{},{} -19366,Illusion_Goibne_Helm,Illusion Goibne Helm,4,0,,1000,,25,,1,0xFFFFFFFE,63,2,256,,130,1,258,{ .@r = getrefine(); .@vit = 3; if (.@r >= 7) { .@vit += 5; if (.@r >= 9) { bonus bDelayrate,-12; } } bonus bVit,.@vit; bonus bMdef,3; },{},{} -19379,Striking_Hat,Striking Hat,4,20,,400,,5,,1,0xFFFFFFFF,63,2,256,,100,1,1759,{ .@r = getrefine(); bonus bDex,5; bonus bAgi,5; bonus bLongAtkRate,5; bonus bAspdRate,10; bonus bPerfectHitAddRate,10; bonus bHit,2*.@r; bonus bDelayrate,-2*.@r; if (.@r>=7) { bonus bPerfectHitAddRate,20; bonus bLongAtkRate,10; } if (.@r>=9) { bonus bPerfectHitAddRate,20; bonus bLongAtkRate,10; } },{},{} -19380,Floating_Ball,Floating Ball,4,10,,200,,,,0,0xFFFFFFFF,63,2,512,,100,,1760,{ bonus bMatk,35; bonus2 bMagicAddClass,Class_Boss,2; if (readparam(bDex)>=90) { bonus bMatk,70; bonus2 bMagicAddClass,Class_Boss,3; } if (readparam(bDex)>=125) { bonus bMatk,140; bonus2 bMagicAddClass,Class_Boss,5; } },{},{} -19381,Protect_Cloth,Protect Cloth,4,20,,300,,0,,0,0xFFFFFFFF,63,2,1,,90,0,1761,{ bonus bMdef,5; bonus bMaxHPrate,5; },{},{} -19387,Experimental_Goat_Cap,Experimental Goat Cap,4,20,,500,,2,,1,0xFFFFFFFF,63,2,256,,40,1,1768,{ .@r = getrefine(); .@sub = 10; .@dmg = 15; if (.@r >= 7) { .@dmg += 15; if (.@r >= 8) { .@sub += 15; if (.@r >= 9) { .@dmg += 20; } } } bonus2 bSubEle,Ele_Earth,.@sub; /*bonus2 bAddRace2,RC2_WERNER_LAB,.@dmg; bonus2 bMagicAddRace2,RC2_WERNER_LAB,.@dmg; bonus2 bSubRace2,RC2_WERNER_LAB,.@dmg; Werner's Central lab is not implemented yet */ },{},{} -19391,Eyes_Of_Illusion,Eyes Of Illusion,4,20,,500,,2,,0,0xFFFFFFFF,63,2,512,,100,0,1779,{ bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bSubRace,RC_Player_Human,5; bonus2 bResEff,Eff_Blind,10000; if (getskilllv("GN_ILLUSIONDOPING")==5) skill "SA_DISPELL",5; if (getskilllv("GN_MANDRAGORA")==5) bonus2 bFixedCastrate,"GN_MANDRAGORA",-70; },{},{} -19396,Racing_Cap_SG,Racing Cap (Star Gladiator),4,20,,0,,10,,1,0x00400000,63,2,256,,100,1,1134,{ .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus bBaseatk,5*getskilllv("TK_HPTIME"); if (.@r>=11) autobonus3 "{ bonus2 bSkillAtk,\"SJ_SOLARBURST\",30; }",1000,10000,"SJ_PROMINENCEKICK"; },{},{} -19397,Racing_Cap_SL,Racing Cap (Soul Linker),4,20,,0,,10,,1,0x00800000,63,2,256,,100,1,1134,{ .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus bMaxSP,100*getskilllv("TK_SPTIME"); if (.@r>=11) autobonus3 "{ bonus2 bSkillAtk,\"SP_SPA\",30; bonus2 bSkillAtk,\"SP_SWHOO\",30; }",1000,10000,"SL_SMA"; },{},{} -19407,Work_Cap,Work Cap,4,200,,1000,,18,,0,0xFFFFFFFF,63,2,256,,100,1,1793,{ .@r = getrefine(); bonus bMdef,15; bonus bVit,10; bonus2 bSkillAtk,"NC_AXETORNADO",20; bonus2 bVariableCastrate,"BS_GREED",-100; if (getskilllv("NC_MAGICDECOY") >= 5) bonus2 bAddClass,Class_Boss,50; if (getskilllv("NC_AXEBOOMERANG") >= 5) bonus bBaseAtk,100; if (getskilllv("NC_MAGMA_ERUPTION") >= 5) bonus2 bAddMonsterDropItem,732,10; if (.@r>=7) bonus2 bSkillAtk,"NC_AXETORNADO",30; if (.@r>=9) bonus2 bSkillAtk,"NC_AXETORNADO",50; if (.@r>=10) bonus bIgnoreDefClass,Class_All; },{},{} -19409,Black_Feather_Hat,Black Feather Hat,4,20,,1000,,18,,0,0xFFFFFFFF,63,2,256,,100,1,731,{ .@r = getrefine(); bonus bSPGainValue,50; bonus bLongSPGainValue,50; bonus bMagicSPGainValue,50; bonus bMdef,15; bonus bDex,10; bonus2 bSkillAtk,"SC_FEINTBOMB",10; if (getskilllv("SC_INVISIBILITY") >= 5) bonus2 bAddClass,Class_Boss,50; if (getskilllv("SC_MAELSTROM") >= 3) skill "TK_JUMPKICK",7; if (getskilllv("SC_REPRODUCE") >= 10) bonus bUseSPrate,-30; if (.@r>=7) { bonus2 bSkillAtk,"SC_FEINTBOMB",15; bonus bHit,30; } if (.@r>=9) { bonus2 bSkillAtk,"SC_FEINTBOMB",25; bonus bHit,20; } if (.@r>=10) bonus bIgnoreDefClass,Class_All; },{},{} -19426,Spirit_King's_Crown,Spirit King's Crown,4,20,,600,,12,,0,0xFFFFFFFF,63,2,256,,100,1,1118,{ .@r = getrefine(); bonus bMdef,15; bonus bFixedCastrate,-7*.@r; bonus bDelayrate,-10; bonus2 bSkillAtk,"SO_EARTHGRAVE",10; bonus2 bSkillAtk,"SO_DIAMONDDUST",10; bonus bVariableCastrate,-6*getskilllv("SO_EL_SYMPATHY"); if (getskilllv("SO_WARMER") >= 5) { bonus2 bSkillCooldown,"SO_EARTHGRAVE",-1000; bonus2 bSkillCooldown,"SO_DIAMONDDUST",-1000; bonus2 bSkillCooldown,"SO_VARETYR_SPEAR",-1000; } if (getskilllv("SO_ELEMENTAL_SHIELD") >= 5) bonus2 bMagicAddClass,Class_Boss,25; if (.@r>=7) { bonus2 bSkillAtk,"SO_EARTHGRAVE",15; bonus2 bSkillAtk,"SO_DIAMONDDUST",15; bonus bDelayrate,-5; } if (.@r>=9) { bonus bDelayrate,-5; bonus2 bSkillAtk,"SO_EARTHGRAVE",25; bonus2 bSkillAtk,"SO_DIAMONDDUST",25; } if (.@r>=10) bonus2 bIgnoreMdefClassRate,Class_All,100; },{},{} -19428,Illusion_Morpheus's_Hood,Illusion Morpheus's Hood,4,20,,200,,15,,1,0xFFFFFFFF,63,2,256,,130,1,256,{ .@r = getrefine(); bonus bInt,10; bonus bMdef,15; bonus bMaxSPrate,20; bonus bVariableCastrate,-(3*(.@r/2)); if (.@r >= 7) { bonus bMatk,30; if (.@r >= 9) { bonus bNoCastCancel; } } },{},{} -19451,Heavenly_Order,Heavenly Order,4,20,,0,,0,,0,0xFFFFFFFF,63,2,512,,100,0,1093,{ skill "MC_IDENTIFY",1,0; .@a = readparam(bStr); .@b = readparam(bAgi); .@c = readparam(bVit); .@d = readparam(bInt); .@e = readparam(bDex); .@f = readparam(bLuk); bonus bHit,2*(.@a/18); bonus bMaxHPrate,2*(.@a/18); bonus bFlee,2*(.@b/18); bonus bDelayrate,-2*(.@b/18); bonus bMdef,2*(.@c/18); bonus bVariableCastrate,-2*(.@c/18); bonus bMaxSPrate,2*(.@d/18); bonus bUseSPrate,-2*(.@d/18); bonus bCritical,2*(.@e/18); bonus bAspdRate,2*(.@e/18); bonus bBaseAtk,15*(.@f/18); bonus bMatk,15*(.@f/18); bonus bDef,20*(.@f/18); },{},{} -19453,Jeje_Cap,Jeje Cap,4,20,,1000,,18,,0,0xFFFFFFFF,63,2,256,,100,1,1011,{ .@r = getrefine(); .@dmg = 10; .@delay = -15-6*getskilllv("GN_CRAZYWEED"); bonus bMdef,15; bonus bNoCastCancel; bonus2 bVariableCastrate,"GN_CRAZYWEED",-50; bonus2 bVariableCastrate,"CR_ACIDDEMONSTRATION",-50; bonus2 bVariableCastrate,"CR_FULLPROTECTION",-50; if (.@r>=7) { .@dmg += 15; if (.@r>=9) { .@dmg += 25; if (.@r>=10) { bonus bIgnoreDefClass,Class_All; } } } if (getskilllv("GN_FIRE_EXPANSION") == 5) bonus2 bAddClass,Class_Boss,50; if (getskilllv("GN_CRAZYWEED") == 5) { .@delay -= 25; bonus2 bSkillCooldown,"GN_CRAZYWEED",-4500; } bonus2 bSkillAtk,"CR_ACIDDEMONSTRATION",.@dmg; bonus2 bSkillAtk,"GN_CRAZYWEED",.@dmg; bonus bDelayrate,.@delay; },{},{} -19469,Saint_Crown,Saint Crown,4,20,,600,,12,,0,0xFFFFFFFF,63,2,256,,100,1,1117,{ .@r = getrefine(); .@a = 5*(getskilllv("AB_LAUDAAGNUS")+getskilllv("AB_LAUDARAMUS")); .@dmg = 20; .@aspd = 10; bonus bMdef,15; bonus2 bSkillUseSP,"AB_JUDEX",15; bonus2 bSkillUseSP,"AB_ADORAMUS",15; bonus2 bVariableCastrate,"AB_JUDEX",-5*getskilllv("AB_ORATIO"); bonus2 bVariableCastrate,"AB_ADORAMUS",-5*getskilllv("AB_ORATIO"); if (getskilllv("AB_CLEARANCE") >= 5) { bonus2 bMagicAddClass,Class_Boss,25; } bonus2 bMagicAddEle,Ele_Undead,.@a; bonus2 bMagicAddEle,Ele_Ghost,.@a; bonus2 bMagicAddEle,Ele_Earth,.@a; bonus2 bMagicAddEle,Ele_Neutral,.@a; bonus2 bMagicAddRace,RC_DemiHuman,2*.@r; bonus2 bMagicAddRace,RC_Player_Human,2*.@r; if (.@r >= 7) { .@dmg += 30; .@aspd += 5; if (.@r >= 9) { .@dmg += 50; .@aspd += 5; if (.@r >= 10) { bonus bNoGemStone; } } } bonus bAspdRate,.@aspd; bonus2 bSkillAtk,"AB_JUDEX",.@dmg; bonus2 bSkillAtk,"AB_ADORAMUS",.@dmg; },{},{} -//=================================================================== -// Costume System -//=================================================================== -19433,C_Resonate_Taego,Costume Resonate Taego,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1823,{ hateffect(HAT_EF_RESONATETAEGO,true); },{},{ hateffect(HAT_EF_RESONATETAEGO,false); } -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,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,0,300,{},{},{} -19507,Fine_Sun,Clear Sun,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,654,{ bonus bUnbreakableHelm; },{},{} -19508,T_Gemmed_Sallet,T Gemmed Sallet,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,0,{ bonus bUnbreakableHelm; },{},{} -19509,Butterfly_Wing_Ear,Butterfly Wing Ears,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,695,{ bonus bUnbreakableHelm; },{},{} -19510,Nut_On_Head,Screw Stuck in Head,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,696,{ bonus bUnbreakableHelm; },{},{} -19511,Heart_Eye_Patch1,Heart Eye Patch 1,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,697,{ bonus bUnbreakableHelm; },{},{} -19512,Heart_Eye_Patch2,Heart Eye Patch 2,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,698,{ bonus bUnbreakableHelm; },{},{} -19513,Chicken_Beak,Chicken Bill,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,699,{ bonus bUnbreakableHelm; },{},{} -19514,Charlie_Beard,Charlies Beard,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,700,{ bonus bUnbreakableHelm; },{},{} -19515,Yellow_Hat,Yellow Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,701,{ bonus bUnbreakableHelm; },{},{} -19516,Singing_Bird,Singing Bird,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,702,{ bonus bUnbreakableHelm; },{},{} -19517,Cocks_Comb,Chicken Crest,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,703,{ bonus bUnbreakableHelm; },{},{} -19518,Rainbow,Rainbow,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,704,{ bonus bUnbreakableHelm; },{},{} -19519,Lightning_Cloud,Thunderstorm Cloud,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,688,{ bonus bUnbreakableHelm; },{},{} -19520,Rain_Cloud,Rain Cloud,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,705,{ bonus bUnbreakableHelm; },{},{} -19521,Charlie_Hat,Charlies Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,706,{ bonus bUnbreakableHelm; },{},{} -19522,Mini_Crown1,Mini Crown,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,707,{ bonus bUnbreakableHelm; },{},{} -19523,Donation_Ribbon,Green Ribbon,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,244,{ bonus bUnbreakableHelm; },{},{} -19524,C_Green_Feeler,Costume Green Feeler,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,85,{ bonus bUnbreakableHelm; },{},{} -19525,C_Jack_A_Dandy,Costume Jack A Dandy,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,58,{ bonus bUnbreakableHelm; },{},{} -19526,C_Helm,Costume Helm,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,40,{ bonus bUnbreakableHelm; },{},{} -19527,C_Sharp_Gear,Costume Spiky Band,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,43,{ bonus bUnbreakableHelm; },{},{} -19528,C_Iron_Cane,Costume Iron Cain,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,53,{ bonus bUnbreakableHelm; },{},{} -19529,C_Angelic_Chain,Costume Angel Wing,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,38,{ bonus bUnbreakableHelm; 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; 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; 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; bonus bDex,1; },{},{} -19533,C_Spore_Hat,Costume Spore Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,114,{ bonus bUnbreakableHelm; 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,6144,,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; 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; bonus bInt,1; },{},{} -19537,C_Gryphon_Hat,Costume Gryphon Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,591,{ bonus bUnbreakableHelm; },{},{} -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; },{},{} -19542,C_Devil_Whisper,Costume Devil Whisper,4,20,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,712,{ bonus bUnbreakableHelm; bonus2 bSubRace,RC_Angel,1; bonus2 bSubRace,RC_Demon,1; bonus3 bAddMonsterDropItem,523,RC_Angel,400; bonus3 bAddMonsterDropItem,12020,RC_Demon,400; },{},{} -19543,Oliver_Wolf_Hood,Oliver Wolf Hood,4,20,,300,,0,,0,0xFFFFFFFF,63,2,1024,,70,0,849,{ bonus bUnbreakableHelm; },{},{} -19544,C_Tare_Neko_Cru,Costume Tare Neko Cru,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,692,{ bonus bUnbreakableHelm; },{},{} -19545,C_Boys_Cap,Costume Boy's Cap,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1024,,100,0,102,{ bonus bUnbreakableHelm; },{},{} -19546,C_Valkyrie_Helm,Costume Valkyrie Helm,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1024,,100,0,225,{ bonus bUnbreakableHelm; },{},{} -19547,C_Deviruchi_Cap,Costume Deviruchi Cap,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1024,,100,0,123,{ bonus bUnbreakableHelm; },{},{} -19548,C_Frog_Cap,Costume Frog Cap,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1024,,100,0,448,{},{ bonus bUnbreakableHelm; },{} -19549,C_Magestic_Goat,Costume Magestic Goat,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1024,,100,0,41,{ bonus bUnbreakableHelm; },{},{} -19550,C_Blush,Costume Blush,4,20,,100,,0,,0,0xFFFFFFFF,63,2,2048,,100,0,125,{ bonus bUnbreakableHelm; },{},{} -19551,C_Elven_Ears,Costume Elven Ears,4,20,,100,,0,,0,0xFFFFFFFF,63,2,2048,,100,0,73,{ bonus bUnbreakableHelm; },{},{} -19552,C_Centimental_Flower,Costume Centimental Flower,4,20,,100,,0,,0,0xFFFFFFFF,63,2,4096,,100,0,56,{ bonus bUnbreakableHelm; },{},{} -19553,C_Assassin_Mask_,Costume Assassin Mask,4,20,,100,,0,,0,0xFFFFFFFF,63,2,4096,,100,0,180,{ bonus bUnbreakableHelm; },{},{} -19554,C_Hahoe_Mask,Costume Hahoe Mask,4,20,,100,,0,,0,0xFFFFFFFF,63,2,6144,,100,0,230,{ bonus bUnbreakableHelm; },{},{} -19555,C_Crescent_Helm,Costume Crescent Moon Helm,4,0,,0,,0,,0,0xFFFFFFFF,63,2,3072,,1,0,213,{ bonus bVit,1; },{},{} -19556,C_Kabuki_Mask,Costume Kabuki Mask,4,0,,0,,0,,0,0xFFFFFFFF,63,2,7168,,1,0,214,{ bonus bInt,1; },{},{} -19557,C_Ayothaya_Hat,Costume Ayothaya Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,334,{ bonus bStr,1; },{},{} -19558,C_Crow_Hat,Costume Crow Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,524,{ bonus bVit,1; },{},{} -19559,C_Baby_Dragon_Hat,Costume Baby Dragon Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,525,{ bonus bAgi,1; },{},{} -19560,C_Coati_Hat,Costume Coati Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,527,{ bonus bDex,1; },{},{} -19561,C_Tucan_Hat,Costume Tucan Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,528,{ bonus bDex,1; },{},{} -19562,C_Jaguar_Hat,Costume Jaguar Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,7168,,1,0,530,{ bonus bStr,1; },{},{} -19563,C_Dragon_Arhat_Mask,Costume Dragon Arhat Mask,4,0,,0,,0,,0,0xFFFFFFFF,63,2,6144,,1,0,545,{},{},{} -19564,C_Tiger_Arhat_Mask,Costume Tiger Arhat Mask,4,0,,0,,0,,0,0xFFFFFFFF,63,2,6144,,1,0,546,{},{},{} -19565,C_Chung_Hairband,Costume Chung Hairpin,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,583,{ bonus bInt,1; },{},{} -19566,C_Samurai_Mask,Costume Samurai Mask,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,644,{},{},{} -19567,C_Hatta_Black,Costume Hatta Black,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,676,{ bonus bVit,1; },{},{} -19568,C_Ancient_Horns,Costume Ancient Horns,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,757,{ bonus bStr,1; },{},{} -19569,C_Sprout_Hat,Costume Sprout Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,758,{ bonus bInt,1; },{},{} -19570,C_Mercury_Riser,Costume Mercury Riser,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,759,{ bonus bLuk,1; },{},{} -19571,C_White_Musang_Hat,Costume White Musang Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,770,{ bonus bStr,1; },{},{} -19572,C_Black_Musang_Hat,Costume Black Musang Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,771,{ bonus bInt,1; },{},{} -19573,C_Heart_Wing_Hairband,Costume Heart Wing Hairband,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,733,{},{},{} -19574,C_Lord_of_Death,Costume Lord of Death,4,0,,0,,0,,0,0xFFFFFFFF,63,2,3072,,0,0,742,{ bonus bUnbreakableHelm; },{},{} -19575,C_Ascension_Black_Dragon,Costume Ascension Black Dragon,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,863,{},{},{} -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,0,874,{},{},{} -19578,C_Goggle,Costume Googles,4,0,,0,,0,,0,0xFFFFFFFF,63,2,3072,,1,0,1,{},{},{} -19579,C_Red_Wind_Hat,Costume Red Wind Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,613,{ bonus bHPrecovRate,20; bonus bSPrecovRate,20; },{},{} -19580,C_Sphinx_Helm,Costume Sphinx Helm,4,0,,0,,0,,0,0xFFFFFFFF,63,2,5120,,1,0,137,{},{},{} -19581,C_Adventurers_Hat,Costume Adventurer's Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,891,{},{},{} -19582,C_Cowboy_Hat,Costume Cowboy Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,411,{},{},{} -19583,C_Zorro_Mask,Costume Zorro Mask,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,50,{},{},{} -19584,C_Pirate_Dagger,Costume Dagger In Mouth,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,327,{},{},{} -19585,C_Feather_Beret,Costume Feather Beret,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,224,{},{},{} -19586,C_Pink_Bunny_Band_J,Costume Pink Bunny Hair Band,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,898,{},{},{} -19587,C_King_Poring_Hat,Costume King Poring Hat,4,0,,100,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,905,{ bonus bUnbreakableHelm; },{},{} -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_Ribbon_J,Costume Maiden's Twin Ribbon,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,239,{},{},{} -19591,C_Ribbon_Red,Costume Red Ribbon,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,246,{},{},{} -19592,C_Hibiscus,Costume Hibiscus,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,210,{},{},{} -19593,C_Laurel_Wreath,Costume Laurel Wreath,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,237,{},{},{} -19594,C_Decorative_Geographer,Costume Decorative Geographer,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,238,{},{},{} -19595,C_Dress_Hat_J,Costume April's Fool Day,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,265,{},{},{} -19596,C_Flapping_Angel_Wing,Costume Flapping Angel Wing,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,264,{},{},{} -19597,C_Magic_Eyes,Costume Magic Eyes,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,209,{},{},{} -19598,C_Wondering_Wolf_Helm,Costume Wandering Wolf Hat,4,20,,0,,0,,0,0xFFFFFFFE,63,2,3072,,0,0,490,{},{},{} -19599,C_Imp_Hat,Costume Imp Hat,4,20,,400,,1,,0,0xFFFFFFFF,63,2,1024,,1,0,589,{ bonus3 bAutoSpell,"SA_FLAMELAUNCHER",1,5; },{},{} -19600,Drooping_Kiehl,Costume Drooping Kiehl,4,0,,40,,,,,0xFFFFFFFF,63,2,1024,,30,,909,{},{},{} -19601,Drooping_Aliot,Costume Drooping Aliot,4,0,,10,,,,,0xFFFFFFFF,63,2,1024,,1,,910,{},{},{} -19602,C_Invisible_Cap,Costume Invisible Cap,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,0,{},{},{} -19603,C_Invisible_Sunglasses,Costume Invisible Sunglasses,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,0,{},{},{} -19604,C_Invisible_Mask,Costume Invisible Flu Mask,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,0,{},{},{} -19605,C_Gang_Scarf,Costume Gang Scarf,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,369,{},{},{} -19606,C_Ninja_Scroll,Costume Ninja Scroll,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,370,{},{},{} -19607,C_Love_Chick_Hat,Costume Love Chick Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,500,{},{},{} -19608,C_Chick_Hat,Costume Baby Chick,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,311,{},{},{} -19609,C_Red_Glasses,Costume Red Glasses,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,316,{},{},{} -19610,C_Whisper_Mask,Costume Whisper Mask,4,0,,0,,0,,0,0xFFFFFFFF,63,2,7168,,1,0,321,{},{},{} -19611,C_Peco_Ears,Costume Peco Ears,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,366,{},{},{} -19612,C_Note_Headphone,Costume Note Headphone,4,0,,0,,0,,0,0xFFFFFFFF,63,2,3072,,1,0,220,{},{},{} -19613,C_Valkyrie_Feather_Band,Costume Valkyrie Feather Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,300,{},{},{} -19614,C_Super_Novice_Hat,Costume Super Novice Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,193,{},{},{} -19615,C_Loki_Mask,Costume Loki Mask,4,0,,0,,0,,0,0xFFFFFFFF,63,2,6144,,1,0,346,{},{},{} -19616,C_Wickebines_Black_Cat_Ears,Costume Wickebine's Black Cat Ears,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,368,{},{},{} -19617,C_Puppy_Headband,Costume Puppy Headband,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,,,199,{},{},{} -19618,C_Mask_Of_Fox,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,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,2048,,,,185,{},{},{} -19625,C_Bunny_Band,Costume Bunny Band,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,,,15,{},{},{} -19627,C_Satellite_Hairband,Costume Satellite Hairband,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,266,{},{},{} -19628,C_Headset,Costume Headset,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,97,{},{},{} -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,0,45,{},{},{} -19631,C_Poring_Fedora_Hat,Costume Poring Fedora Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,919,{},{},{} -19632,C_Hat,Costume Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,16,{},{},{} -19633,C_Flower_Hairband,Costume Flower Band,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,5,{},{},{} -19634,C_Flu_Mask,Costume Flu Mask,4,10,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,8,{},{},{} -19635,C_Mini_Propeller,Costume Mini Propeller,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,46,{},{},{} -19636,C_Pierrot_Nose,Costume Clown Nose,4,10,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,49,{},{},{} -19637,C_Nurse_Cap,Costume Nurse Cap,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,64,{},{},{} -19638,C_Mr_Smile,Costume Mr. Smile,4,10,,0,,,,0,0xFFFFFFFF,63,2,6144,,1,0,65,{},{},{} -19639,C_Sahkkat,Costume Sakkat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,67,{},{},{} -19640,C_Charming_Ribbon,Costume Charming Ribbon,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,211,{},{},{} -19641,C_Helm_of_Darkness,Costume Helm of Darkness,4,0,,0,,0,,0,0xFFFFFFFF,63,2,3072,,1,0,233,{},{},{} -19642,C_Moonlight_Flower_Hat,Costume Moonlight Flower Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,3072,,1,0,268,{},{},{} -19643,C_Whikebain_Ears,Costume Wickebine Ears,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,368,{},{},{} -19644,C_Takius_Blindfold,Costume Takius Blindfold,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,184,{},{},{} -19645,C_Phoenix_Crown,Costume Phoenix Crown,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,221,{},{},{} -19646,C_Ramen_Hat,Costume Ramen Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,320,{},{},{} -19647,C_Red_Deviruchi_Hat,Costume Red Deviruchi Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,271,{},{},{} -19648,C_Autumn_Leaves,Costume Autumn Leaves,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,241,{},{},{} -19649,C_White_Baby_Cat_Ears,Costume White Baby Cat Ears,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,926,{},{},{} -19650,C_Rainbow_Feather_Deco,Costume Rainbow Feather Deco,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,934,{},{},{} -19651,C_RWC_Shouting_Mouth,Costume RWC Shouting Mouth,4,10,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,194,{},{},{} -19652,C_Rabbit_Magic_Hat,Costume Rabbit Magic Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,497,{},{},{} -19653,C_Marcher_Hat,Costume Marcher Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,269,{},{},{} -19654,C_J_Captain_Hat,Costume Ship Captain Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,367,{},{},{} -19655,C_Tiraya_Bonnet,Costume Tiraya Bonnet,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,398,{},{},{} -19656,C_Minstrel_Hat,Wandering Minstrel Hat,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,240,{},{},{} -19657,C_Captain_Hat,Costume Captain Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,236,{},{},{} -19658,C_Vacation_Hat,Costume Vacation Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,315,{},{},{} -19659,C_Brown_Beanie,Costume Brown Beanie,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,279,{},{},{} -19660,C_Coppola,Costume Coppola,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,252,{},{},{} -19661,C_Sweet_Bonnet,Costume Sweet Bonnet,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,938,{},{},{} -19662,C_Magician_Hat,Costume Magician Hat,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,130,{},{},{} -19663,Wishing_Sky_Lantern,Costume Wish Lamp,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,947,{},{},{} -19664,C_Campus_Festival,Costume Campus Festival,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,721,{},{},{} -19665,C_Poring_Cake_Hat,Costume Poring Cake Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,417,{},{},{} -19666,C_Cookie_Hat,Costume Cookie Hat,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,217,{ bonus2 bAddItemHealRate,513,1100; },{},{} -19667,C_Dragon_Helm,Costume Dragon Helm,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,464,{},{},{} -19668,C_Wind_Milestone,Costume Wind Milestone,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,463,{},{},{} -19669,C_Reginleif_Hairband_,Costume Reginleif Hairband,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,214,{},{},{} -19670,C_Southern_Cross,Costume Southern Cross,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,601,{},{},{} -19671,C_Piggie_Bank,Costume Piggie Bank,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,603,{},{},{} -19672,C_Poring_Letter,Costume Poring Letter,4,20,,0,,0,,0,0xFFFFFFFF,63,2,4096,,0,0,604,{},{},{} -19676,C_Rainbow_Poring_Hat,Costume Rainbow Poring Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,900,{},{},{} -19677,C_Soulless_Wing,Costume Soulless Wing,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,,301,{},{},{} -19678,C_Bell_Ribbon,Costume Bell Ribbon,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,388,{},{},{} -19682,C_Santa_Poring_Hat,Costume SantaPoring Cap,4,10,,100,,,,0,0xFFFFFFFF,63,2,1024,,1,0,387,{},{},{} -19684,C_Happy_Wig,Costume Happy Wig,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,305,{},{},{} -19685,C_ShineSantaPoring,Costume Shining Santa Poring,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,961,{},{},{} -19686,C_SantaHairband,Costume Santa Hairband,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,964,{},{},{} -19687,C_Lush_Rose,Costume Lush Rose,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,963,{},{},{} -19689,C_Ati_Atihan_Hat,Costume Ati Atihan,4,10,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,0,303,{},{},{} -19690,C_Dark_Snake_Lord_Hat_J,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,{},{},{} -19694,C_Vane_Hairpin,Costume Vane Hairpin,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,313,{},{},{} -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,,,0,619,{},{},{} -19701,C_Red_Bonnet,Costume Red Bonnet,4,10,,100,,,,0,0xFFFFFFFF,63,2,1024,,1,0,190,{},{},{} -19702,C_Santa_Hat_1,Costume Twin Pompom By JB,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,390,{},{},{} -19706,C_Red_Dress_Hat,Costume Red Dress Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,670,{},{},{} -19707,C_Polar_Bear_Cap,Costume Polar Bear Cap,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,966,{ bonus bUnbreakableHelm; },{},{} -19708,C_White_Snake_Hat,Costume White Snake Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,256,,1,0,413,{},{},{} -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,3072,,1,0,365,{},{},{} -19712,C_Little_Angel_Doll,Costume Little Angel Doll,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,344,{},{},{} -19713,C_Lucky_Clover,Costume Lucky Clover,4,10,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,571,{},{},{} -19714,C_Lady_Tanee_Doll,Costume Lady Tanee Doll,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,520,{},{},{} -19715,C_Scarf,Costume Scarf,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,343,{},{},{} -19716,C_Alice_Doll,Costume Alice Doll,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,208,{},{},{} -19717,C_Pink_Ribbon,Costume Pink Ribbon,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,245,{},{},{} -19718,C_Gothic_Head_Dress,Costume Gothic Headdress,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,978,{},{},{} -19719,C_Coronet,Costume Coronet,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,33,{},{},{} -19720,C_Romantic_Gent,Costume Romantic Gent,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,31,{},{},{} -19721,C_Darkness_Helm,Costume Darkness Helm,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,586,{},{},{} -19722,C_Black_Glasses,Costume Black Glasses,4,10,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,404,{},{},{} -19723,C_Sacred_Torch_Coronet,Costume Sacred Torch Coronet,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,431,{},{},{} -19724,C_Deprotai_Doll_Hat,Costume Deprote Doll Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,354,{},{},{} -19725,C_Bread_Bag,Costume Bread Bag,4,10,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,0,412,{},{},{} -19726,C_Scarlet_Rose,Costume Scarlet Rose,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,534,{},{},{} -19727,C_Devilring_Hat,Costume Devilring Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,298,{},{},{} -19728,C_Tare_Zonda,Costume Tare Zonda,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,985,{},{},{} -19729,C_Neko_Mimi_Kafra,Costume Neko Mimi Kafra,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,392,{},{},{} -19730,C_Snake_Hat,Costume Snake Hat,4,20,,10,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,986,{},{},{} -19731,C_Satanic_Chain,Costume Evolved Evil Wing,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,39,{ bonus bStr,1; bonus bAgi,1; bonus bFlee,3; bonus2 bSubRace,RC_Angel,3; },{},{} -19732,C_Goblin_Mask_04,Costume Goblin Leader Mask,4,10,,0,,,,0,0xFFFFFFFF,63,2,6144,,1,0,174,{},{},{} -19733,C_Panda_Cap,Costume Panda Cap,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,115,{ bonus bAllStats,1; bonus2 bExpAddClass,Class_All,10; },{},{} -19734,C_Binoculars,Costume Binoculars,4,10,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,83,{ bonus bDex,1; },{},{} -19735,C_Fin_Helm,Costume Fin Helm,4,10,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,100,{},{},{} -19736,C_Gas_Mask,Costume Gas Mask,4,10,,0,,,,0,0xFFFFFFFF,63,2,6144,,1,0,91,{ bonus2 bResEff,Eff_Poison,3000; },{},{} -19737,C_Corsair_K,Costume Refined Corsair,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,105,{ bonus bVit,3; bonus bInt,3; },{},{} -19738,C_Detective_Hat_K,Costume Renown Detective's Cap,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,189,{},{},{} -19739,C_Sleeping_Kitty_Cat,Costume Sleeping Kitty Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,838,{ bonus2 bAddRace,RC_Brute,2; bonus2 bAddRace,RC_Player_Doram,2; },{},{} -19741,C_Majestic_Devil_Horns,Costume Majestic Devil Horns,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,562,{},{},{} -19742,C_Small_Golden_Wings,Costume Small Golden Wings,4,10,,0,,,,0,0xFFFFFFFF,63,2,2048,,,,724,{ bonus2 bExpAddRace,RC_All,1; },{},{} -19743,C_Anubis_Helm,Costume Anubis Helm,4,10,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,0,485,{},{},{} -19744,C_Black_Tail_Ribbon,Costume Black Tail Ribbon,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,642,{},{},{} -19745,C_Holy_Marching_Hat_J,Costume Holy Marching Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,587,{},{},{} -19746,C_Cap_Of_Blindness,Costume Executioner Hood,4,0,,0,,0,,0,0xFFFFFFFF,63,2,7168,,1,0,326,{},{},{} -19747,C_Tha_Despero_Mask_,Costume Tha Despero Mask,4,20,,0,,0,,0,0xFFFFFFFF,63,2,6144,,1,0,693,{},{},{} -19748,C_Diadem,Costume Diadem,4,20,,0,,0,,0,0xFFFFFFFF,63,2,3072,,1,0,335,{},{},{} -19749,C_Gold_Spirit_Chain,Costume Gold Spirit Chain,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,260,{},{},{} -19750,C_Saint_Frill_Ribbon,Costume Saint Frill Ribbon,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,987,{},{},{} -19751,C_Light_Darkness_Crown,Costume Light Darkness Crown,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,988,{},{},{} -19752,C_Shelter_Wing_Ears,Costume Shelter Wing Ears,4,10,,300,,3,,0,0xFFFFFFFF,63,2,2048,,1,0,990,{},{},{} -19753,C_Celestial_Hat,Costume Celestial Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,462,{},{},{} -19754,C_Good_Wedding_Veil,Costume Good Wedding Veil,4,20,,0,,0,,0,0xFFFFFFFF,63,2,3072,,1,0,489,{},{},{} -19755,C_YinYang_Earring,Costume YinYang Earring,4,10,,300,,3,,0,0xFFFFFFFF,63,2,2048,,1,0,744,{},{},{} -19756,C_Holy_Mom_Love,Costume Holy Mom Love,4,20,,0,,0,,0,0xFFFFFFFF,63,2,3072,,1,0,610,{},{},{} -19757,C_Water_Lily_Crown,Costume Water Lily Crown,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,312,{},{},{} -19758,C_Frog_King_Hat,Costume Frog King Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,522,{},{},{} -19759,C_Umbrella_Hat,Costume Umbrella Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,338,{},{},{} -19760,C_Rainbow_Veil,Costume Rainbow Veil,4,20,,0,,0,,0,0xFFFFFFFF,63,2,3072,,1,0,992,{},{},{} -19761,C_White_Lily,Costume White Lily,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,993,{},{},{} -19762,C_Happy_Peace_Proof,Costume Happy Peace Proof,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,994,{},{},{} -19763,C_Leaf_Cat_Hat,Costume Leaf Cat Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,539,{},{},{} -19764,C_Monster_Card,Costume Monster Card,4,10,,0,,,,0,0xFFFFFFFF,63,2,4096,,,,526,{ bonus2 bExpAddRace,RC_All,10; },{},{} -19765,C_Wing_Angels_Ears,Costume Wing Angels Ears,4,10,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,158,{ bonus2 bExpAddRace,RC_All,10; },{},{} -19767,C_Home_Cherry_Blossom,Costume Home Cherry Blossom,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,602,{},{},{} -19768,C_Sakura_Coronet,Costume Sakura Coronet,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,645,{},{},{} -19769,C_Elf_Ears,Costume Elf Ears,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,405,{},{},{} -19770,C_Sake,Costume Sake,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,,,557,{},{},{} -19771,C_Butterfly_Hairpin,Costume Buterfly Hairpin,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,723,{},{},{} -19772,C_Honeybee_Hat,Costume Honeybee Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,709,{},{},{} -19773,C_Angeling_Pin,Costume Angeling Pin,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,222,{},{},{} -19774,C_Laurel,Costume Laurel,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,261,{},{},{} -19775,C_Marvelous_Wig,Costume Dokebi Hat,4,20,,10,,0,,0,0xFFFFFFFF,63,2,3072,,1,0,307,{},{},{} -19776,C_Tomboy_Fairy,Costume Tomboy Fairy,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,998,{},{},{} -19777,C_Twinkle_Little_Star,Costume Shiny Small Star,4,20,,10,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1005,{},{},{} -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_Rabbit_Ear_Knit_Hat,Costume Knit Rabbit Ears,4,20,,10,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,867,{ bonus bMaxHPrate,3; bonus bMaxSPrate,3; },{},{} -19781,C_Ear_Of_Angel's_Wing_,Costume Angel Wing Ears,4,10,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,158,{},{},{} -19782,C_Drooping_Kitty,Costume Refined Drooping Cat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,142,{},{},{} -19783,C_Granpa_Beard,Costume Grampa Beard,4,10,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,25,{},{},{} -19784,C_Morrigane's_Helm,Costume Morrigane's Helm,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,257,{},{},{} -19785,C_Well_Baked_Toast,Costume Crunch Toast,4,10,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,188,{},{},{} -19786,C_Mistress_Crown,Costume Crown of Mistress,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,165,{},{},{} -19787,C_Devoted_Eyes,Costume Devoted Eyes,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1021,{},{},{} -19788,C_Heart_Eyebandage,Costume Heart Eyebandage,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,779,{},{},{} -19789,C_Sweet_Gents,Costume Sweet Gent,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,29,{},{},{} -19790,C_Wedding_Veil,Costume Wedding Veil,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,44,{},{},{} -19791,C_Alarm_Mask,Costume Alarm Mask,4,0,,0,,,,0,0xFFFFFFFF,63,2,6144,,1,0,170,{},{},{} -19792,C_Goblin_Mask_01,Costume Poker Face,4,0,,0,,,,0,0xFFFFFFFF,63,2,6144,,1,0,171,{},{},{} -19793,C_Goblin_Mask_02,Costume Surprised Mask,4,0,,0,,,,0,0xFFFFFFFF,63,2,6144,,1,0,172,{},{},{} -19794,C_Goblin_Mask_03,Costume Annoyed Mask,4,0,,0,,,,0,0xFFFFFFFF,63,2,6144,,1,0,173,{},{},{} -19795,C_Lord_Circlet,Costume Grand Circlet,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,93,{},{},{} -19796,C_Bone_Helm,Costume Bone Helm,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,103,{},{},{} -19797,C_Apple_Of_Archer,Costume Apple of Archer,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,72,{},{},{} -19798,C_Angry_Mouth,Costume Angry Snarl,4,10,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,194,{},{},{} -19799,C_Golden_Gear,Costume Golden Gear,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,30,{},{},{} -19800,C_Carnation_Hairband,Costume Carnation Headband,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,878,{},{},{} -19801,C_Foxhat,Costume Foxhat,4,0,,0,,,,0,0xFFFFFFFF,63,2,6144,,1,0,403,{},{},{} -19802,C_Lazy_Ninetail,Costume Lazy Ninetail,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,296,{},{},{} -19803,C_Windtoy_Hat,Costume Windtoy Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,456,{},{},{} -19804,C_Red_Vane_Hairpin,Costume Red Vane Hairpin,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1044,{},{},{} -19805,C_Taboo_Curse_Scroll,Costume Curse Scroll,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1045,{},{},{} -19806,C_Full_Bloom_Hairpin,Costume Bloom Hairpin,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1046,{},{},{} -19807,C_Majestihelm,Costume Majestihelm,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1047,{},{},{} -19808,C_Blazing_Sun,Costume Blazing Sun,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,654,{},{},{} -19810,C_Ifrit_Ear,Costume Ifrit Ear,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,422,{},{},{} -19811,C_Beer_Hat,Costume Beer Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,418,{},{},{} -19812,C_Big_Hibiscus,Costume Big Hibiscus,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,333,{},{},{} -19813,C_Icecream_Hat,Costume Icecream Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,488,{},{},{} -19814,C_Bright_Wig,Costume Bright Wig,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,306,{},{},{} -19815,C_Lolita_Ten_Gallon_Hat,Costume Lolita Ten Gallon Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1048,{},{},{} -19816,C_Pecopeco_Cap,Costume Pecopeco Cap,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1049,{},{},{} -19817,C_Ifrits_Breath,Costume Ifrits Breath,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1050,{},{},{} -19818,C_Drooping_Morooc_Minion,Costume Drooping Morooc Minion,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,600,{},{},{} -19819,C_Gang_Doogun,Costume Gang Doogun,4,0,,0,,,,0,0xFFFFFFFF,63,2,3072,,1,0,491,{},{},{} -19821,C_Hyegun_Hat,Costume Yao Jun,4,20,,0,,0,,0,0xFFFFFFFF,63,2,7168,,1,0,375,{},{},{} -19822,C_Yellow_Doogun,Costume Yellow Doogun,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,309,{},{},{} -19823,C_White_Cat_Hood,Costume White Cat Hood,4,20,,10,,0,,0,0xFFFFFFFF,63,2,3072,,1,0,1052,{},{},{} -19824,C_Evil_Druid_Hat,Costume Evil Druid Hat,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,1,,1053,{},{},{} -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_Cap,Costume Amistr,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,643,{},{},{} -19828,C_Fedora,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,{},{},{} -19832,C_Poring_Hat,Costume Poring Hat,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,120,{},{},{} -19833,C_Fillet,Costume Fillet,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,34,{},{},{} -19834,C_Baseball_Cap,Costume Baseball Cap,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,216,{},{},{} -19835,C_Lif_Doll_Hat,Costume Lif Doll Hat,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,297,{},{},{} -19836,C_L_Magestic_Goat,Costume Majestic Goat,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,380,{},{},{} -19837,C_Asara_Fairy,Costume Asara Fairy Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,3072,,1,0,492,{},{},{} -19839,C_Vanilmirth_Hat,Costume Vanilmirth Hat,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,317,{},{},{} -19841,C_Dragonhelm_Copper,Costume Dragon Helm Copper,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,454,{},{},{} -19842,C_Puppy_Hat,Costume Puppy Hat,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,234,{},{},{} -19843,C_Cat_Hairband,Costume Kitty Band,4,20,,10,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,2,{},{},{} -19844,C_Turban,Costume Turban,4,20,,10,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,7,{},{},{} -19845,C_Hair_Protector,Costume Bao Bao,4,20,,10,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,127,{},{},{} -19846,C_Opera_Ghost_Mask,Costume Opera Masque,4,20,,10,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,128,{},{},{} -19847,C_Big_Sis_Ribbon,Costume Big Ribbon,4,20,,10,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,28,{},{},{} -19848,C_Angeling_Hat,Costume Angeling Hat,4,20,,10,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,204,{},{},{} -19849,C_Munak_Turban,Costume Munak Hat,4,20,,10,,0,,0,0xFFFFFFFF,63,2,7168,,1,0,51,{},{},{} -19850,C_Bongun_Hat,Costume Bongun Hat,4,20,,10,,0,,0,0xFFFFFFFF,63,2,7168,,1,0,139,{},{},{} -19851,C_Brown_Bear_Cap,Costume Teddybear Hat,4,20,,10,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,143,{},{},{} -19852,C_Galapago_Cap,Costume Galapago Cap,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,192,{},{},{} -19853,C_Filir_Wing_Ears,Costume Filir Wings,4,20,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,595,{ bonus2 bExpAddClass,Class_All,5; },{},{} -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_Leaf_Headgear,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_Cryptura_Hair_Cap,Costume School Criatura Hat,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,872,{},{},{} -19861,C_Heart_Hair_Pin,Costume Heart Hairpin,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,126,{},{},{} -19862,C_Horn_Of_Succubus,Costume Succubus Horn,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,150,{},{},{} -19863,C_Inccubus_Horn,Costume Incubus Horn,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,156,{},{},{} -19864,C_Dokebi's_Wig,Costume Dokebi's Wig,4,20,,0,,0,,0,0xFFFFFFFF,63,2,3072,,0,0,302,{},{},{} -19865,C_Joker_Jester,Costume Joker Jester,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,89,{},{},{} -19866,C_Blue_Pajamas_Hat,Costume Blue Pajamas,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,501,{},{},{} -19871,C_Music_Decoration,Costume Decoration of Music,4,20,,0,,0,,0,0xFFFFFFFF,63,2,2048,,0,0,1074,{},{ sc_start SC_DECORATION_OF_MUSIC,INFINITE_TICK,0; },{ sc_end SC_DECORATION_OF_MUSIC; } -19874,C_Carnival_Circlet,Costume Carnival Circlet,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,0,0,506,{},{},{} -19876,C_Rabbit_Ear_Hat,Costume Bunny Top Hat,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,1,,384,{},{},{} -19878,C_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,6144,,1,,1086,{},{},{} -19883,C_Piamette_Hood,Costume Piamette Hood,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,1,,1087,{},{},{} -19884,C_Vanargandr_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_Luxury_Sunglasses,Costume Purple Glasses,4,10,,0,,,,,0xFFFFFFFF,63,2,2048,,1,,26,{},{},{} -19887,C_One_Eyed_Glass,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_Pair_Of_Red_Ribbon,Costume Small Ribbons,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,,,169,{},{},{} -19902,C_Cigar,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,{},{},{} -19912,C_Cat_Eye,Costume: Cat eye,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1100,{},{},{} -19913,C_Poo_Poo_Hat,Costume Poo Poo Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,,1,76,{},{},{} -19914,Felock_Cap,Felrock's Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1101,{},{},{} -19916,C_Black_Cat_Hat,Costume Black Cat Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1105,{},{},{} -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_Hat,Costume Noah's Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,7168,,1,0,636,{},{},{} -19925,C_One_Eyed_Glasses,Costume Monocle,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,807,{},{},{} -19928,C_Gothic_Heart_Wing,Costume Gothic Heart Wing,4,0,,0,,,,0,0xFFFFFFFF,63,2,3072,,1,0,1111,{},{},{} -19929,C_Classical_Ribbon,Costume Classical Ribbon,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,,0,1112,{},{},{} -19930,C_Angel_Mini_Silk_Hat,Costume Angel Mini Silk Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1113,{},{},{} -19931,C_Lazy_Raccoon,Costume Lazy Smokie,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,,0,168,{},{},{} -19932,C_Cap_Of_Concentration,Costume Model Training Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,,0,157,{},{},{} -19934,C_10Gallon_Hat_Of_Flame,Costume Alive Ten Gallon Hat Of Flame,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1075,{},{},{} -19935,C_Hunting_Cap_Of_Gust,Costume Hunting Cap Of Gust,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,1,0,1076,{},{},{} -19936,C_Knit_Cap_Of_Water,Costume Knit Cap Of Water,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,1,0,1077,{},{},{} -19937,C_Silk_Hat_Of_Earth,Costume Silk Hat of Earth,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,1,0,1078,{},{},{} -19938,C_Love_Rabbit_Hood,Costume Love Rabbit Hood,4,0,,0,,0,,0,0xFFFFFFFF,63,2,7168,,1,0,549,{},{},{} -19939,C_Antler,Costume Antlers,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,71,{},{},{} -19941,C_Ear_Mufs,Costume Ear Muffs,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,70,{},{},{} -19949,C_RWC2013_Japan_Hat,Costume RWC2013 Japan Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1136,{},{},{} -19952,C_Bubble_Gum_in_Mouth,Costume Bubble Gum in Mouth,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,572,{},{},{} -19953,C_Parade_Cap,Costume Parade Cap,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,465,{},{},{} -19954,C_3D_Glasses,Costume 3D Glasses,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,661,{},{},{} -19955,C_Mini_Tree_J,Costume Mini Tree J,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,,0,727,{},{},{} -19956,C_Soldier_Hat,Costume Soldier Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,420,{},{},{} -19957,C_Scooter_Hat,Costume Scooter Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,588,{},{},{} -19958,C_Choir_Hat,Costume Choir Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1137,{},{},{} -19959,C_Drooping_Argiope,Costume Drooping Argiope,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1138,{},{},{} -19960,C_Chain_Puppet,Costume Chain Puppet,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1139,{},{},{} -19961,C_Rune_Circlet,Costume Rune Circlet,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,623,{},{},{} -19962,C_Mitra,Costume Mitra,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,624,{},{},{} -19963,C_Driver_Band_R,Costume Driver Band(Red),4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,626,{},{},{} -19964,C_Driver_Band_Y,Costume Driver Band(Yellow),4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,637,{},{},{} -19965,C_Shadow_Handicraft,Costume Shadow Handicraft,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,627,{},{},{} -19966,C_Minstrel_Song_Hat,Costume Minstrel Song's Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,628,{},{},{} -19967,C_Midas_Whisper,Costume Midas Whisper,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,629,{},{},{} -19968,C_Magic_Stone_Hat,Costume Magic Stone Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,630,{},{},{} -19969,C_Blazing_Soul,Costume Blazing Soul,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,631,{},{},{} -19970,C_Wind_Whisper,Costume Wind Whisper,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,633,{},{},{} -19971,C_Dying_Swan,Costume Dying Swan,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,635,{},{},{} -19972,C_Protect_Of_Crown,Costume Protect Of Crown,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1140,{},{},{} -19973,C_Circlet_Of_Bone,Costume Circlet Of Bones,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1141,{},{},{} -19974,C_Camouflage_RabbitHood,Costume Camouflage Rabbit Hood,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1142,{},{},{} -19976,C_Cat_Santa_Hat,Cat Santa Hat,4,20,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1144,{ bonus bAspdRate,10; bonus bSpeedRate,25; },{},{} -19977,C_Golden_Exclamation,Costume Golden Exclamation Mark,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1145,{},{},{} -19978,C_Silver_Exclamation,Costume Silver Exclamation Mark,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1146,{},{},{} -19979,C_Golden_Question,Costume Golden Question Mark,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1147,{},{},{} -19980,C_Silver_Question,Costume Silver Question Mark,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1148,{},{},{} -19982,C_Santa's_Hat,Costume Santa Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,,0,20,{},{},{} -19983,C_Flower_Hairpin,Costume Flower Hairpin,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,145,{},{},{} -19984,C_Winter_Hat,Costume Fashion Winter Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,196,{},{},{} -19985,C_Aura_Quartz_Crown,Costume Aura Quartz,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,866,{},{},{} -19986,C_Lunatic_Hat,Costume Lunatic Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,521,{},{},{} -19987,C_Blue_Fur_Hat,Costume Blue Fur Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,280,{},{},{} -19988,C_Elder_Crown,Costume Elder Crown,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,933,{},{},{} -19989,C_Mouton_Life,Costume Mouton Life,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1156,{},{},{} -19990,C_Snow_Rabbit_Knit_Hat,Costume Rabbit Knit Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1157,{},{},{} -19991,C_Galanthus_Guard,Costume Galanthus Guard,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1158,{},{},{} -19992,C_Chilly_Breath,Costume Chilly Breath,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,885,{},{},{} -19994,C_saLUsalo_Hat,Costume saLUsalo Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1171,{},{},{} -19997,C_Bomb_Hat,Costume Bomb Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1191,{},{},{} -19998,C_Dragon_Turtle_Hat,Costume Dragon Turtle Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1192,{},{},{} -19996,Horse_King,Horse King,4,10,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,,1189,{},{},{} -19999,C_Mouse_Hat1,Costume Mouse Hat 1,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1193,{},{},{} -20000,C_Mouse_Hat2,Costume Mouse Hat 2,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1194,{},{},{} -20001,C_Mouse_Hat3,Costume Mouse Hat 3,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1195,{},{},{} -20002,C_Mouse_Hat4,Costume Mouse Hat 4,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1196,{},{},{} -20003,C_Mouse_Hat5,Costume Mouse Hat 5,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1197,{},{},{} -20004,C_Big_Golden_Bell,Costume Big Golden Bell,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,175,{},{},{} -20005,C_Pegasus_Wing_Ears,Costume Sigrun Wing,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,568,{},{},{} -20006,C_Dark_Knight_Mask,Costume Dark Knight Mask,4,0,,0,,,,0,0xFFFFFFFF,63,2,3072,,1,0,479,{},{},{} -20007,C_Bullock_Helm_J,Costume Horned Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,322,{},{},{} -20008,C_General_Helmet,Costume Dragon General Helm,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,729,{},{},{} -20009,C_Dragon_Skull,Costume Dragon Skull Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,319,{},{},{} -20010,C_Rainbow_Wing_Ears,Costume Rainbow Ears Feather,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1198,{},{},{} -20011,C_Lightning_Speed,Costume Lightning Speed,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1199,{},{},{} -20012,C_Double_Horn_Helm,Costume Double Horn Helm,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1200,{},{},{} -20013,C_Chef_Hat,Costume Chef Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,111,{},{},{} -20014,Lincoln_Hat,Costume Lincoln Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,,0,1204,{},{},{} -20015,Lincoln_Beard,Costume Lincoln Beard,4,10,,0,,,,0,0xFFFFFFFF,63,2,4096,,,0,1205,{},{},{} -20016,Lobster_Hat,Costume Cool Dinner Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,,0,1206,{},{},{} -20017,C_Marionette_Doll,Costume Marionette Doll,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,,0,212,{},{},{} -20018,C_Holo_Ear,Costume Holo Ear,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,,0,1208,{},{},{} -20019,Beret_Of_Artist,Costume Beret Of Artist,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,,0,1209,{},{},{} -20020,C_Zaha_Doll_Hat,Costume Zaha Doll Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,461,{},{},{} -20021,C_Heart_Ribbon_Hairband,Costume Heart Ribbon Hairband,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,708,{},{},{} -20022,C_Love_Piece,Costume Love Fragment,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,734,{},{},{} -20023,C_Red_Beret,Costume Red Beret,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,559,{},{},{} -20024,C_Orange_Ribbon,Costume Orange Ribbon,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,247,{},{},{} -20025,C_Cow_Hat1,Costume Cow Hat 1,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,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,0,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,0,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,0,1214,{ bonus bDex,2; bonus2 bAddMonsterDropItem,519,100; },{},{} -20029,C_Donut_in_Mouth,Costume Donut in Mouth,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,569,{},{},{} -20030,C_Choco_Donut_in_Mouth,Costume Choco Donut in Mouth,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,653,{},{},{} -20031,C_Bunny_Head_Dress,Costume Bunny Headress,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1215,{},{},{} -20032,C_Firinto_Scarf,Costume Firinto Scarf,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1216,{},{},{} -20033,C_Buddhist_Priest_Crown,Costume Monk Crown,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1217,{},{},{} -20034,C_Jack_Castle_Bat,Costume Jack Castle Bat,4,10,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1041,{},{},{} -20035,C_Miracle_Blue_Rose,Costume Miracle Blue Rose,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1064,{},{},{} -20036,C_Sword_Master_Crown,Costume Sword Master Crown,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,981,{},{},{} -20037,C_Owlduke_Silk_Hat,Costume Owlduke Silk Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,982,{},{},{} -20038,C_Alphonse_Helmet,Costume Alphonse Helmet,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,,0,1214,{},{},{} -20039,C_Butterfly_Wing_Ear_J,Costume Butterfly Wing Ears,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,695,{},{},{} -20040,C_Rose_Crown,Costume Chung Hairpin,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,583,{},{},{} -20041,C_Earth_Goddess_Flower,Costume Rose Headband,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,864,{},{},{} -20042,C_Hermose_Cap,Costume Hermos Cap,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,478,{},{},{} -20043,C_Red_Cherry_Blossom,Costume Cherryblossom in Mouth,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,823,{},{},{} -20044,C_Carmen_Miranda_Hat,Costume Carmen Miranda's Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,329,{},{},{} -20045,C_Samambaia,Costume Samambaia,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,508,{},{},{} -20046,C_Decoration_bluerose,Costume Blue Ribbon Band,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1222,{},{},{} -20047,C_Pray_Cherry_Blossom,Costume Prayer Cherry Blossom,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1223,{},{},{} -20048,C_Wind_Of_The_Prairie,Costume Wind Prairie,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1224,{},{},{} -20049,C_Plaster,Costume Giant Band Aid,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,1,,147,{},{},{} -20050,C_Ph.D_Hat,Costume Ph.D Hat,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,1,,98,{},{},{} -20051,C_Stop_Post,Costume Stop Post,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,59,{},{},{} -20052,C_AFK_Hat,Costume AFK Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,471,{},{},{} -20053,C_W_King_Tiger_Doll_Hat,Costume White King Tiger Doll Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,973,{},{},{} -20054,C_Baby_Pacifier,Costume Baby Pacifier,4,0,,0,,,,,0xFFFFFFFF,63,2,4096,,1,,191,{},{},{} -20055,C_Ghost_Bandana,Costume Ghost Bandana,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,61,{},{},{} -20056,C_Bride_Corolla,Costume Bride's Corolla,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,437,{},{},{} -20057,C_Feather_Bonnet,Costume Feather Bonnet,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,1,,104,{},{},{} -20058,C_Hot_Blood_Headband,Costume Hot Blood Headband,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,154,{},{},{} -20059,C_Welding_Mask,Costume Welding Mask,4,0,,0,,,,0,0xFFFFFFFF,63,2,6144,,1,0,79,{},{},{} -20060,C_Construction_Helmet,Costume Construction Helmet,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,95,{},{},{} -20061,C_Demo_Mask,Costume Demo Mask,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,52,{},{},{} -20062,C_Angel_Stair,Costume Angel Stair,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,,{},{ sc_start SC_HAT_EFFECT,INFINITE_TICK,0; },{ sc_end SC_HAT_EFFECT; } -20063,C_Yellow_Brain_Hat,Costume Yellow Brain Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1228,{},{},{} -20064,C_Blue_Brain_Hat,Costume Blue Brain Hat,4,10,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1229,{},{},{} -20065,C_Hairband_Of_Grandpeco,Costume Grand Peco Hairband,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,473,{},{},{} -20066,C_Pecopeco_Hairband,Costume Pecopeco Hairband,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,314,{},{},{} -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,{},{},{} -20069,C_Gryphon_Hairband,Costume Gryphon Hairband,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1233,{},{},{} -20070,C_Alpaca_Hood,Costume Alpaca Hood,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1234,{},{},{} -20071,C_Worg_In_Mouth,Costume Worg In Mouth,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1235,{},{},{} -20073,C_Hair_Band,Costume Hair Band,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,1,,9,{},{},{} -20074,C_Biretta,Costume Biretta,4,0,,0,,,,,0xFFFFFFFF,63,2,1024,,1,,11,{},{},{} -20075,C_Little_Fhat,Costume Little Feather Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,715,{},{},{} -20076,C_Idun_Wing_Ears,Costume Idun Feather Ears,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,724,{},{},{} -20077,C_Wing_Form_Spectacle,Costume Wing Frame Sunglasses,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,925,{},{},{} -20078,C_White_Feather,Costume White Feather,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,741,{},{},{} -20079,C_Love_Daddy_2013,Costume Forgotten Angel Wing,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1104,{},{},{} -20080,C_Shaman's_Hair_Orna,Costume Shaman Hair Ornament,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,476,{},{},{} -20081,C_Metal_Dragon_Helm,Costume Metal Dragon Helm,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1242,{},{},{} -20082,C_Metal_Dragon_Hat,Costume Metal Dragon Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1243,{},{},{} -20083,C_Mythlit_Hat,Costume Mythlit Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1244,{},{},{} -20084,C_Clover_Coronet,Costume Ceremonial Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,325,{},{},{} -20085,C_Clover_Silkhat,Costume St Patrick's Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,735,{},{},{} -20086,C_Dragon_Cintamani_Hat1,Costume Dragon Cintamani Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1245,{},{},{} -20087,C_Dragon_Cintamani_Hat2,Costume Dragon Cintamani Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1246,{},{},{} -20088,C_Dragon_Cintamani_Hat3,Costume Dragon Cintamani Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1247,{},{},{} -20089,C_Dragon_Cintamani_Hat4,Costume Dragon Cintamani Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1248,{},{},{} -20090,C_Egg_Shell,Costume Egg Shell,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,101,{},{},{} -20091,C_Smoking_Pipe,Costume Pipe,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,55,{},{},{} -20092,C_Sales_Signboard,Costume Sales Banner,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,183,{},{},{} -20093,C_Star_Sparkling,Costume Wizard Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,36,{},{},{} -20094,C_Fillet_Green,Costume Green Ribbon,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,439,{},{},{} -20095,C_Fillet_Red,Costume Red Ribbon,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,440,{},{},{} -20096,C_Fillet_Blue,Costume Blue Ribbon,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,441,{},{},{} -20097,C_Fillet_White,Costume White Ribbon,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,442,{},{},{} -20098,C_Vampire_Hairband,Costume Vampire Hairband,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1238,{},{},{} -20099,C_Ljosalfar,Flying Ljosalfar,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1239,{},{ sc_start SC_LJOSALFAR,INFINITE_TICK,0; },{ sc_end SC_LJOSALFAR; } -20100,C_Volume_Fhat,Costume Volume Fhat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1240,{},{},{} -20101,C_Bragi_Wing_Ears,Costume Bragi Wing Ears,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1241,{},{},{} -20102,C_Horse_King_J,Costume Horse King J,4,0,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,0,1189,{},{},{} -20103,C_Drooping_Panda,Costume Drooping Panda,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1029,{},{},{} -20104,C_Picky_Egg_Shell,Costume Picky Egg Shell,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1001,{},{},{} -20105,C_Fish_Head_Hat,Costume Fish Head,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,386,{},{},{} -20106,C_Classic_Hat,Costume Classic Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,475,{},{},{} -20107,C_Fish_In_Mouth,Costume Fish In Mouth,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,406,{},{},{} -20108,C_Blind_Glasses,Costume Blind Glasses,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,813,{},{},{} -20109,C_Jolly_Roger,Costume Jolly Roger Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,962,{},{},{} -20110,C_Coiledup_Snake,Costume Coiledup Snake,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1258,{},{},{} -20111,C_Coiledup_Snake_Hat2,Costume Coiledup Snake Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1259,{},{},{} -20112,C_Aqua_Ten_Gallon_Hat,Costume Aqua Ten Gallon Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1256,{},{},{} -20113,C_Star_Reading_Hat,Costume Star Reading Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1253,{},{},{} -20114,C_Funeral_Costume,Costume Funeral Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,77,{},{},{} -20115,C_Under_Rim_Glasses,Under Rim Glasses,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1255,{},{},{} -20116,C_Mermaid_Headphone,Mermaid Headphone,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1254,{},{},{} -20117,C_Raspberry_Mousse_Hat,Raspberry Mousse Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1257,{},{},{} -20118,C_Hat_Of_Cake,Costume Cake Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,109,{},{},{} -20119,C_Fur_Hat,Costume Beanie,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,160,{},{},{} -20120,C_Antenna,Costume Aerial,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,97,{},{},{} -20121,C_Lotus_Flower_Hat,Costume Flower Lily,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,324,{},{},{} -20122,Happy_Summer_Ribbon,Costume Happy Summer Ribbon,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1260,{},{},{} -20123,C_Eagle_Eyes,Costume Eagle Eyes,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,63,{},{},{} -20124,C_Masquerade,Costume Masquerade,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,78,{},{},{} -20125,C_Mini_Glasses,Costume Mini Glasses,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,47,{},{},{} -20126,C_Odium_Thanatos_Mask,Costume Odium Thanatos Mask,4,0,,0,,,,0,0xFFFFFFFF,63,2,6144,,1,0,667,{},{},{} -20127,C_Abysmal_Knight_Helm,Costume Abysmal Knight Helm,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,371,{},{},{} -20128,C_Remover_Hat,Costume Remover Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,655,{},{},{} -20129,C_Poporing_Cap,Costume Poporing Cap,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,361,{},{},{} -20130,C_Whisper_Tall_Hat,Costume Whisper Tall Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1265,{},{},{} -20131,C_C_Tower_Manager_Incom,Costume Clock Tower Manager,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1266,{},{},{} -20132,C_Subject_Aura,Costume Aura Vicious Mind,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1267,{},{},{} -20133,C_Poring_Mascot_Costume,Costume Poring Mascot,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1268,{},{},{} -20134,C_Helm_Of_Abyss_White,Costume White Helm Of Abyss,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1269,{},{},{} -20135,C_12_Anniversary_Crown_Of_Saint,Costume 12 Anniversary Crown of Saint,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1117,{},{},{} -20136,C_12_Anniversary_Elf_Ears,Costume 12 Anniversary Elf Ears,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,875,{},{},{} -20137,C_Bomb_Wick,Costume Bomb Wick,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,66,{},{},{} -20138,C_Sea_Otter_Hat,Costume Sea Otter Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,162,{},{},{} -20139,C_Horse_Hairpin,Costume Horse Hairpin,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1271,{},{},{} -20140,C_Horse_Hairpin_,Costume Horse Hairpin,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1272,{},{},{} -20141,C_Observer,Costume Observer,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,337,{},{},{} -20142,C_Machoman_Glasses,Costume Machoman Glasses,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,92,{},{},{} -20143,C_Candy_Cane_In_Mouth,Costume Candy Cane In Mouth,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,665,{},{},{} -20144,C_Ancient_Elven_Ear,Costume Ancient Elven Ear,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,665,{},{},{} -20145,C_Robo_Eye,Costume Robo Eye,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,345,{},{},{} -20146,C_Angel_Spirit,Costume Angel of Ghost,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,394,{},{},{} -20147,C_Bell_Pigeon,Costume Bell of Piegon,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1034,{},{},{} -20148,C_Musketeer_Hat,Costume Musketeer Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,466,{},{},{} -20149,C_Hexagon_Spectacles,Costume Hexagon Glasses,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,822,{},{},{} -20150,C_Wind_Fan,Costume Wind Fan,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1051,{},{},{} -20151,C_Poison_Spore_Hat,Costume Poison Spore Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,899,{},{},{} -20152,C_Straw_Rice_Bag,Costume Straw Rice Bag,4,0,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,0,1273,{},{},{} -20153,C_Monochrome_Cap,Costume Monochrome Cap,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1274,{},{},{} -20154,C_Maple_Which_Falls,Costume Maple Which Falls,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1275,{},{ sc_start SC_MAPLE_FALLS,INFINITE_TICK,0; },{ sc_end SC_MAPLE_FALLS; } -20155,C_Ladys_Feather_Hat,Costume Lady's Feather Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,,0,1276,{},{},{} -20156,C_Fan_in_Mouth,Costume Fan in Mouth,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,857,{},{},{} -20157,C_Fish_On_Head,Costume Evolved Blue Fish,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,149,{},{},{} -20158,C_Circlet,Costume Circlet,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,18,{},{},{} -20159,C_Blue_Hair_Band,Costume Blue Hairband,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,136,{},{},{} -20160,C_Fried_Egg,Costume Magnolia Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,373,{},{},{} -20161,C_Prontera_Army_Cap,Costume Army Cap,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,48,{},{},{} -20162,C_Fleece_Hat,Costume Fleece Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,0,1277,{},{},{} -20163,C_Fleece_Hat_,Costume Fleece Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,0,1278,{},{},{} -20164,C_Duneyrr_Hat,Costume Duneyrr Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,639,{},{},{} -20165,C_Tendrilion_Hat,Costume Tendrilion Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,658,{},{},{} -20166,C_Hockey_Mask,Costume Hockey Mask,4,0,,0,,,,0,0xFFFFFFFF,63,2,6144,,1,0,336,{},{},{} -20167,C_Deviruchi_Headphone,Costume Deviruchi Headphone,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,805,{},{},{} -20168,C_Skull_Hood,Costume Skull Hood,4,0,,0,,,,0,0xFFFFFFFF,63,2,3072,,1,0,598,{},{},{} -20169,C_Long_Tongue,Costume Long Tongue,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,773,{},{},{} -20170,C_Brown_Deviruchi_Cap,Costume Brown Deviruchi Cap,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,273,{},{},{} -20171,C_Sepia_Cap,Costume Sepia Cap,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1280,{},{},{} -20172,C_Pumpkin_Head,Costume Pumpkin Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1281,{},{},{} -20173,C_Lude_Hood,Costume Lude Hood,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1282,{},{},{} -20174,C_Halloween_Hat_Orange,Costume Orange Halloween Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1283,{},{},{} -20175,C_Diabolic_Headphone,Costume Diabolic Headphone,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1284,{},{},{} -20176,Happy_Pierrot_Mask,Costume Happy Pierrot Mask,4,0,,0,,,,0,0xFFFFFFFF,63,2,6144,,1,0,1288,{},{},{} -20177,C_Drooping_Dorasuke,Costume Drooping Dorasuke,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1290,{},{},{} -20178,C_Puppy_Love,Costume Puppy Love,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,94,{},{},{} -20179,C_Monkey_On_Fur_Hat,Costume Monkey Coat Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,858,{},{},{} -20180,C_Westren_Grace,Costume Western Grace,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,32,{},{},{} -20181,C_Mistic_Rose,Costume Mystic Rose,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,198,{},{},{} -20182,C_Mottled_Egg_Shell,Costume Rainbow Eggshell,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,124,{},{},{} -20183,C_There_Is_Something,Costume There's..Something..,4,0,,0,,,,0,0xFFFFFFFF,63,2,3072,,1,0,1091,{},{},{} -20184,C_Party_Hat,Costume Party Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,144,{},{},{} -20185,C_Fashionable_Glasses,Costume Fashionable Glasses,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,131,{},{},{} -20186,C_Magni_Cap,Costume Magni's Cap,4,20,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,250,{},{},{} -20187,C_Fricca's_Circlet,Costume Fricca's Circlet,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,251,{},{},{} -20188,C_Morpheus's_Hood,Costume Morpheus's Hood,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,256,{},{},{} -20189,C_Goibne's_Helm,Costume Goibne's Helm,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,258,{},{},{} -20190,C_Chick_Hat_J,Costume Chick Hat J,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,432,{},{},{} -20191,C_Black_Cat_Ears_Beret,Costume Black Cat Ears Beret,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1071,{},{},{} -20192,C_Green_Foxtail,Costume Green Foxtail,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1058,{},{},{} -20193,C_Foxtail,Costume Foxtail,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,711,{},{},{} -20194,C_Lion_Mask,Costume Lion Mask,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,202,{},{},{} -20195,C_Scratching_Cat,Costume Scratching Cat,4,0,,0,,,,0,0xFFFFFFFF,63,2,6144,,1,0,1292,{},{},{} -20196,C_Leopard_Ear_Hat,Costume Leopard Ear Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1293,{},{},{} -20197,C_Amistr_Beret,Costume Amistr Beret,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1294,{},{},{} -20198,C_Misty_Ears,Costume Misty Ears,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1295,{},{},{} -20199,C_Evil_Marcher_Hat,Costume Evil Marcher Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,687,{},{},{} -20200,C_Rabbit_Head_Dress,Costume Rabbit Head Dress,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1095,{},{},{} -20201,C_Banshee_Master_Kiss,Costume Banshee Master Kiss,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,959,{},{},{} -20202,C_Deviruchi_Balloon,Costume Deviruchi Balloon,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1082,{},{},{} -20203,C_Bandana,Costume Bandana,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,6,{},{},{} -20204,C_Hunting_Cap,Costume Hunter Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,389,{},{},{} -20205,C_Fancy_Flower,Costume Fancy Flower,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,4,{},{},{} -20206,C_Chicken_Hat,Costume Chicken Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,0,1296,{},{},{} -20207,C_Stripe_Band,Costume Striped Hairband,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,133,{},{},{} -20208,C_Necktie,Costume Neck Tie,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,443,{},{},{} -20209,C_Mermaid_Longing,Costume Mermaid Bubbles,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1299,{},{ sc_start SC_MERMAID_LONGING,INFINITE_TICK,0; },{ sc_end SC_MERMAID_LONGING; } -20210,C_Chicken_Hat_,Costume Chicken Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,0,1297,{},{},{} -20211,C_Chicken_Hat__,Costume Chicken Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,0,1298,{},{},{} -20212,C_Loki_Nidhogg_Hat,Costume Loki & Nidhoggur's Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1304,{},{},{} -20213,C_Sirt_Evil_Eye,Costume Robot Eyes,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,345,{},{},{} -20214,C_Evil_Marcher_Hat_J,Costume Evil Marcher Hat J,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1002,{},{},{} -20215,C_Black_Devil_Mask,Costume Black Devil Mask,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,760,{},{},{} -20216,C_Rideword_Hat,Costume Rideword Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,890,{},{},{} -20217,C_Arabian_Veil,Costume Arabian Veil,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1300,{},{},{} -20218,C_Spell_Circuit,Costume Spell Circuit,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1301,{},{},{} -20219,C_Angel_Marcher_Hat,Costume Angel Marcher Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1302,{},{},{} -20220,C_Dark_Night_Veil,Costume Dark Night Veil,4,0,,0,,,,0,0xFFFFFFFF,63,2,3072,,1,0,1303,{},{},{} -20221,C_Eyes_Of_Ifrit,C Eyes Of Ifrit,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,886,{},{},{} -20222,C_Santa_Hat_2,Costume Blue Pigtail Santa Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,,0,395,{},{},{} -20223,C_Centimental_Leaf,Costume Romantic Leaf,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,57,{},{},{} -20224,C_Red_Tailed_Ribbon,Costume Red Tailed Ribbon,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,167,{},{},{} -20225,C_Pumpkin_Hat,Costume Pumpkin-Head,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,206,{},{},{} -20226,C_Hair_Brush,Costume Red Comb,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,445,{},{},{} -20227,C_Husky_Hat,Costume Husky Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1016,{},{},{} -20228,C_Pig_MoneyBox,Costume Pig MoneyBox,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,603,{},{},{} -20230,C_Mask_Of_Bankrupt,Costume Bankruptcy Mask,4,0,,0,,,,0,0xFFFFFFFF,63,2,6144,,1,0,936,{},{},{} -20231,C_Snowman_Hat,Costume Snowman Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,616,{},{},{} -20232,C_Celines_Ribbon,Costume Celine Ribbon,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,967,{},{},{} -20233,C_Gold_Angel_Sculpture,Costume Golden Angel,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,646,{},{},{} -20234,C_Baphomet_Hat,Costume Baphomet Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,0,1311,{ bonus bMaxHPrate,15; bonus bMaxSPrate,15; bonus2 bAddRace,RC_All,15; bonus2 bMagicAddRace,RC_All,15; bonus2 bAddItemHealRate,519,2015; },{},{} -20235,C_Frozen_Land_Rose,Costume Frozen Rose,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1025,{},{},{} -20236,C_Hellomother_Hat,Costume Arc Angeling Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,241,{},{},{} -20237,C_Pink_Fur_Hat,Costume Pink Beanie,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,281,{},{},{} -20238,C_Blue_Drooping_Kitty,Costume Drooping Blue Cat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,277,{},{},{} -20239,C_Large_Ribbon_Muffler,Costume Large Ribbon Muffler,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1312,{},{},{} -20240,C_Gift_Of_Snow,Costume Gift of Snow,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,,{/*TODO: ViewID*/},{},{} -20241,C_Eclipse_Hat,Costume Eclipse Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,922,{},{},{} -20242,C_Snownow_Hat,Costume Snownow Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1313,{},{},{} -20243,C_Choco_Mint_Bonnet,Costume Choco Mint Bonnet,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1314,{},{},{} -20244,C_Zealotus_Mask,Costume Zealotus Mask,4,0,,0,,,,0,0xFFFFFFFF,63,2,3072,,1,0,200,{},{},{} -20245,C_Cat_Paw_Hairpin,Costume Cat Paw Hairpin,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,447,{},{},{} -20246,C_Decoration_Time,Costume Decoration Time,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1309,{},{ sc_start SC_TIME_ACCESSORY,INFINITE_TICK,0; },{ sc_end SC_TIME_ACCESSORY; } -20247,C_Fate_Of_Black_Hand,Costume Fate Of Black Hand,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1310,{},{},{} -20248,C_Black_Strong_Hair,Costume Black Strong Hair,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1315,{},{},{} -20249,C_Red_Strong_Hair,Costume Red Strong Hair,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1316,{},{},{} -20250,C_White_Strong_Hair,Costume White Strong Hair,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1317,{},{},{} -20251,C_Rose_Cascade,Costume Rose Cascade,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,920,{},{},{} -20252,C_Accessory_of_Ascetic,Costume Mage Decoration,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1150,{},{},{} -20253,C_Droopy_Alice_Doll,Costume Drooping Alicel,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,784,{},{},{} -20254,C_Ribbon_Yellow,Costume Yellow Ribbonn,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,243,{},{},{} -20255,C_Love_Cheek,Costume Love Cheeks,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1318,{},{},{} -20256,C_Honey_Pancakes,Costume Honey Pancake,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1319,{},{},{} -20257,C_Black_Rabbit_Bonnet,Costume Black Rabbit Bonnet,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1320,{},{},{} -20258,C_Blue_Head_Dress,Costume Blue Headdress,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1321,{},{},{} -20259,C_Pink_Clover,Costume Pink Clover,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1322,{},{},{} -20260,C_Stardust,Costume Stardust,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,81,{},{},{} -20262,C_Fox_Ears_Bell_Ribbon,Costume Fox Ears Drop Ribbon,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1070,{},{},{} -20263,C_Hat_Of_Drowsy_Cat,Costume Sleeping Cat Hat J,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,838,{},{},{} -20264,C_Blood_Sucker,Costume Blood Sucker,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,893,{},{},{} -20265,C_Bird_Nest_Hat,Costume Bird Nest Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,235,{},{},{} -20266,C_Secret_Zipper,Costume Secret Zipper,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1324,{},{},{} -20267,C_Penguin_Cap,Costume Penguin Cap,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1325,{},{},{} -20268,C_Sleep_Eclipse_Family,Costume Sleep Eclipse Family,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1326,{},{},{} -20269,C_White_Fox_Ear_Ribbon,Costume White Fox Ear Ribbon,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1327,{},{},{} -20270,C_Gryphon_Wing_Ears,Costume Gryphon Wing Ears,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1328,{},{},{} -20271,C_Sunflower,Costume Sunflower,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,37,{},{},{} -20272,C_Snowy_Horn,Costume Unicorn Horn,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,42,{},{},{} -20273,C_Soft_Sheep_Hat,Costume Soft Sheep Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,738,{},{},{} -20274,C_Polar_Bear_Cap_J,Costume Polar Bear Cap J,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,966,{},{},{} -20277,C_Balloon_Hat,Costume Balloon Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,385,{},{},{} -20278,C_Man_Medal,Costume Man's Medal,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,775,{},{},{} -20279,C_Cheering_Whistle,Costume Cheering Whistle,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,952,{},{},{} -20280,C_Well-Chewed_Pencil,Costume Well-Chewed Pencil,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,555,{},{},{} -20281,C_Kindergarten_Hat,Costume Kindergarten Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,977,{},{},{} -20282,C_White_Student_Cap,Costume White Student Cap,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,877,{},{},{} -20283,C_Over_Protector,Costume Over Protector,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1329,{},{},{} -20284,C_Cherry_Blossom_Hat,Costume Sakura Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1330,{},{},{} -20285,C_Blossom_Fluttering,Costume Dancing Fallen Sakura,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1331,{ hateffect HAT_EF_BLOSSOM_FLUTTERING,true; },{},{ hateffect HAT_EF_BLOSSOM_FLUTTERING,false; } -20286,C_Under_Rim_Glasses_Red,Costume Under Rim Glasses Red,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1332,{},{},{} -20287,C_Mans_Medal_Gold,Costume Man's Medal(Gold),4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1333,{},{},{} -20288,C_Bijou_Hat,Costume Bijou Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1334,{},{},{} -20291,C_Helm_of_Thoth,Costume Helm of Thoth,4,0,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,0,860,{},{},{} -20292,C_Black_Ramen_Hat,Costume Black Ramen Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1338,{},{},{} -20293,C_Sleeper_Hat,Costume Sleeper Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,590,{},{},{} -20294,C_Savage_Babe_Hat,Costume Savage Babe Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,553,{},{},{} -20295,C_Poring_Sunglasses,Costume Poring Sunglasses,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,954,{},{},{} -20296,C_Yoyo_Hat,Costume Yoyo Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,391,{},{},{} -20297,C_Cactus_Hat,Costume Cactus Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,615,{},{},{} -20298,C_Happy_Lunatic_Ear,Costume Happy Lunatic Hanging Ear,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1340,{},{},{} -20299,C_Face_Crusher,Costume Face Crusher,4,0,,0,,,,0,0xFFFFFFFF,63,2,6144,,1,0,1341,{},{},{} -20300,C_Hill_Wind_Mask,Costume Hill Wind Mask,4,0,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,0,1342,{},{},{} -20301,C_Golden_Savage_Hat,Costume Golden Savage Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,648,{},{},{} -20302,C_Beelzebub_Crown,Costume Beelzebub Crown,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1343,{},{},{} -20303,C_Mandragora_Cap,Costume Mandragora Cap,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,402,{},{},{} -20304,C_Raccoon_Hat,Costume Raccoon Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,118,{},{},{} -20305,C_NettyHeart_BalloonGum,Costume Nettie Heart Bubble Gum,4,20,,0,,0,,0,0xFFFFFFFF,63,2,4096,,0,0,720,{},{},{} -20307,C_Beginner_Cap,Costume Beginner Cap,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1348,{},{},{} -20311,C_Magical_Booster,Costume Magical Booster,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,873,{},{},{} -20312,C_Barons_Evil_Eye,Costume Baron's Evil Eye,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,989,{},{},{} -20313,C_CD_in_Mouth,Costume CD in Mouth,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,815,{},{},{} -20314,C_New_Wave_Sunglasses,Costume New Wave Sunglasses,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,856,{},{},{} -20315,C_Analyze_Eye,Costume Analyze Eye,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1351,{},{},{} -20316,C_Seraph_Wing_Helm,Costume Seraph Wing Helm,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1352,{},{},{} -20317,C_Nekomimi_Cyber_Headphone,Costume Nekomimi Cyber Headphone,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1353,{},{},{} -20318,C_Charleston_Antenna,Costume Charleston Antenna,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1354,{},{},{} -20319,C_Crimson_Booster,Costume Crimson Booster,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1355,{},{},{} -20320,C_Red_Bandana,Costume Red Bandana,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,62,{},{},{} -20321,C_Pterios_Fins,Costume Pterios Fins,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1009,{},{},{} -20322,C_Seal_Hat,Costume Seal Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,540,{},{},{} -20323,C_Sparkling_Sound,Costume Sparkling Sound,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1074,{},{ sc_start SC_DECORATION_OF_MUSIC,INFINITE_TICK,0; },{ sc_end SC_DECORATION_OF_MUSIC; } -20324,C_Pigeon_Hat,Costume Pigeon Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1362,{},{},{} -20325,C_Little_Aquarium,Costume Little Aquarium,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1363,{},{},{} -20326,C_Sailor_Collar,Costume Sailor Collar,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1364,{},{},{} -20327,C_Marine_Cap,Costume Marine Cap,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1365,{},{},{} -20328,C_Mackerel_Pike,Costume Mackerel Pike,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1081,{},{},{} -20329,C_Tare_HSchool_Doll_Hat,Costume Very Cute Doll Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1084,{},{},{} -20330,C_Sombrero,Costume Sombrero,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,151,{},{},{} -20331,C_Desert_Prince,Costume Desert Prince,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,567,{},{},{} -20332,C_Pure_White_Ribbon,Costume Pure White Ribbon,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1175,{},{},{} -20333,C_Family_Hat,Costume Family Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,650,{},{},{} -20334,C_Joystick_Hat,Costume Joystick Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1305,{},{},{} -20335,C_Watery_Eyes,Costume Watery Eyes,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,828,{},{},{} -20338,C_Colorful_Dancing_Octopus,Costume Colorful Dancing Octopus,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1007,{},{},{} -20339,C_Flower_Summer_Hat,Costume Flower Summer Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1369,{},{},{} -20340,C_Straight_Pony_Black,Costume Straight Pony Black,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1371,{},{},{} -20341,C_Bouncing_Hair_Black,Costume Bouncing Hair Black,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1372,{},{},{} -20342,C_Loose_Wave_Twin,Costume Loose Wave Twin,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1373,{},{},{} -20344,C_Happy_Balloon_J,Costume: Happy Balloon,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1289,{},{},{} -20345,C_Seagod_Protector,Costume Seagod Protector,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,960,{},{},{} -20346,C_Drooping_Permeter,Costume Drooping Permeter,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,694,{},{},{} -20347,C_Poring_Pirate_Hat,Costume Poring Pirate Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,726,{},{},{} -20348,C_Sunday_Hat,Costume Sunday Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,117,{},{},{} -20349,C_FlyingGalapago,Costume Flying Galapago,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1358,{},{},{} -20350,C_Cowlick_YL,Costume Bouncing Hair Yellow,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1382,{},{},{} -20351,C_Cowlick_GN,Costume Bouncing Hair Green,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1383,{},{},{} -20352,C_Cowlick_PP,Costume Bouncing Hair Purple,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1384,{},{},{} -20353,C_Cowlick_RD,Costume Bouncing Hair Red,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1385,{},{},{} -20354,C_Cowlick_OM,Costume Bouncing Hair Crimson,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1386,{},{},{} -20355,C_Cowlick_BU,Costume Bouncing Hair Blue,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1387,{},{},{} -20356,C_Cowlick_WH,Costume Bouncing Hair White,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1388,{},{},{} -20357,C_Straight_Pony_YL,Costume Straight Pony Yellow,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1389,{},{},{} -20358,C_Straight_Pony_GN,Costume Straight Pony Green,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1390,{},{},{} -20359,C_Straight_Pony_PP,Costume Straight Pony Purple,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1391,{},{},{} -20360,C_Straight_Pony_RD,Costume Straight Pony Red,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1392,{},{},{} -20361,C_Straight_Pony_OM,Costume Straight Pony Crimson,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1393,{},{},{} -20362,C_Straight_Pony_BU,Costume Straight Pony Blue,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1394,{},{},{} -20363,C_Straight_Pony_WH,Costume Straight Pony White,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1395,{},{},{} -20364,C_Loose_Wave_Twin_YL,Costume Loose Wave Twin Yellow,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1396,{},{},{} -20365,C_Loose_Wave_Twin_GN,Costume Loose Wave Twin Green,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1397,{},{},{} -20366,C_Loose_Wave_Twin_PP,Costume Loose Wave Twin Purple,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1398,{},{},{} -20367,C_Loose_Wave_Twin_RD,Costume Loose Wave Twin Red,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1399,{},{},{} -20368,C_Loose_Wave_Twin_OM,Costume Loose Wave Twin Crimson,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1400,{},{},{} -20369,C_Loose_Wave_Twin_BU,Costume Loose Wave Twin Blue,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1401,{},{},{} -20370,C_Loose_Wave_Twin_WH,Costume Loose Wave Twin White,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1402,{},{},{} -20371,C_Special_Kafra_Hat,Costume Special Kafra Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,581,{},{},{} -20372,C_Ribbon_Hat,Costume Ribbon Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,956,{},{},{} -20373,C_Watermelon_Hat,Costume Watermelon Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,690,{},{},{} -20374,C_Mechanical_Plant_Hat,Costume Mechanical Plant Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1069,{},{},{} -20375,C_Ignis_Cap,Costume Ignis Cap,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,803,{},{},{} -20376,C_Memories_Of_Lovers,Costume Memory of Lovers,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1072,{},{},{} -20377,C_Flight_Cap,Costume Flight Cap,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,820,{},{},{} -20378,C_Skymet,Costume Sky Met,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,868,{},{},{} -20379,C_Pocketwatch_Hair_Ornament,Costume Pocketwatch Hair Ornament,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1404,{},{},{} -20380,C_Mechanical_Feather_Hairband,Costume Mechanical Feather Hairband,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1405,{},{},{} -20381,C_Steampunk_Hat,Costume Steampunk Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1406,{},{},{} -20382,C_Silver_Sniper_Doll,Costume Silver Sniper Doll,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1407,{},{},{} -20383,C_Magicdecoy_Doll,Costume Magic Decoy Doll,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1408,{},{},{} -20384,C_Douce_Tiara,Costume Douce Tiara,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1410,{},{},{} -20386,C_Victory_Wing_Helm,Costume Victory Wing Helm,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,677,{},{},{} -20391,C_Silent_Executor,Costume Silent Executor,4,0,,0,,,,0,0xFFFFFFFF,63,2,3072,,1,0,632,{},{},{} -20392,C_Sniper_Google,Costume Sniper Google,4,0,,0,,,,0,0xFFFFFFFF,63,2,3072,,1,0,625,{},{},{} -20393,C_Schmitz_Helm,Costume Schmitz Helm,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,634,{},{},{} -20394,C_Pumpkin_Toque,Costume Pumpkin Toque,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1411,{},{},{} -20395,C_BlackWitchHat,Costume Black Witch Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1006,{},{},{} -20396,C_Woodie_Hat,Costume: Woodie Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,939,{},{},{} -20397,C_Jakk,Costume Jack,4,0,,0,,,,0,0xFFFFFFFF,63,2,6144,,1,0,1415,{ autobonus2 "{}",31,10000,BF_WEAPON|BF_MAGIC,"{ active_transform 1130,10000; specialeffect2 372; /*Confirm Special Effect*/ }"; },{},{} -20398,C_Niflheim_Bunny_Hat,Costume Niffleheim Bunny Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1285,{},{},{} -20399,C_Crow_Tengu_Mask,Costume Crow Tengu Mask,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1287,{},{},{} -20400,C_Ichthys_Rosario,Costume Ichthys Rosario,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1028,{},{},{} -20401,C_Angel_Guidance,Costume Angel Guidance,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1188,{},{},{} -20402,C_Holy_Klobuk,Costume Holy Klobuk,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,895,{},{},{} -20403,C_Dolor_Thanatos,Costume Dolor Thanatos,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,547,{},{},{} -20404,C_Blessing_Of_Angels,Costume Blessing of Angel,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1425,{ hateffect(HAT_EF_BLESSING_OF_ANGELS,true); },{},{ hateffect(HAT_EF_BLESSING_OF_ANGELS,false); } -20405,C_Eremes_Scarf,Costume Eremes Scarf,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1416,{},{},{} -20406,C_Commandments_Of_Chain,Costume Chain of Commandments,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1417,{},{},{} -20407,C_Subject_Aura_Red,Costume Vicious Mind Aura Crimson,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1418,{},{},{} -20408,C_Requiem_Crown_of_Light_and_Dark,Costume Requiem Crown of Light and Dark,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1419,{},{},{} -20409,C_There_is_Something_,Costume There is Something,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1091,{},{},{} -20416,C_1Grade_Balloon,Costume Grade 1 Balloon,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1426,{},{},{} -20417,C_2Grade_Balloon,Costume Grade 2 Balloon,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1427,{},{},{} -20418,C_3Grade_Balloon,Costume Grade 3 Balloon,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1428,{},{},{} -20419,C_4Grade_Balloon,Costume Grade 4 Balloon,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1429,{},{},{} -20420,C_5Grade_Balloon,Costume Grade 5 Balloon,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1430,{},{},{} -20421,C_6Grade_Balloon,Costume Grade 6 Balloon,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1431,{},{},{} -20422,C_7Grade_Balloon,Costume Grade 7 Balloon,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1432,{},{},{} -20423,C_8Grade_Balloon,Costume Grade 8 Balloon,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1433,{},{},{} -20424,C_9Grade_Balloon,Costume Grade 9 Balloon,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1434,{},{},{} -20425,C_10Grade_Balloon,Costume Grade 10 Balloon,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1435,{},{},{} -20426,C_11Grade_Balloon,Costume Grade 11 Balloon,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1436,{},{},{} -20427,C_12Grade_Balloon,Costume Grade 12 Balloon,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1437,{},{},{} -20428,C_13Grade_Balloon,Costume Grade 13 Balloon,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1438,{},{},{} -20429,C_Piamette_Bowtie,Costume Piamette Bowtie,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1439,{},{},{} -20430,C_Morocc_Kid_Servant,Costume Loyal Servant of Devil Morocc,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1440,{},{},{} -20431,C_Magician_Headdress,Costume Magician Headdress,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1441,{},{},{} -20432,C_Khalitzburg_KN_Helm,Costume Khalitzburg Knight Helm,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1442,{},{},{} -20433,C_Louise_Red_Hat,Costume Louise Red Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1443,{},{},{} -20434,C_Drooping_Gunslinger,Costume Drooping Gunslinger,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1444,{},{},{} -20435,C_Camellia_Hair_Pin,Costume Camellia Hair Pin,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1203,{ hateffect(HAT_EF_CAMELLIA_HAIR_PIN,true); },{},{ hateffect(HAT_EF_CAMELLIA_HAIR_PIN,false); } -20436,C_Angelring_Furhat,Costume Angelring Furhat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,953,{},{},{} -20437,C_Sakura_Hairband,Costume Sakura Hairband,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,949,{},{},{} -20438,C_Abacus_In_Mouth,Costume Abacus In Mouth,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,825,{},{},{} -20439,C_New_Year_Shine,Costume New Year Shine,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,0,{ hateffect(HAT_EF_GLOW_OF_NEW_YEAR,true); },{},{ hateffect(HAT_EF_GLOW_OF_NEW_YEAR,false); } -20440,C_Tone_of_Gold,Costume Tone of Gold,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1447,{},{},{} -20441,C_Large_Ribbon_Muffler_Red,Costume Large Ribbon Muffler Red,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1448,{},{},{} -20442,C_Red_and_White_Mochiring_Hat,Costume Red and White Mochiring Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1449,{},{},{} -20446,C_Bunny_Eggshell,Costume Bunny Eggshell,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1339,{},{},{} -20447,C_Small_Poring_Band,Costume Small Porings Headband,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,955,{},{},{} -20448,C_Cons_Of_Water,Costume Water Spellcaster,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1451,{},{},{} -20449,C_White_Black_Temp,Costume White and Black Temptation,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1452,{},{},{} -20450,C_Gram_Peony,Costume Gram Peony,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1453,{},{},{} -20451,C_Sky_of_Memory,Costume Sky of Memory,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1454,{},{},{} -20452,C_Crown_of_Strawberry_Prince,Costume Crown of Strawberry Prince,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1455,{},{},{} -20455,C_Republic_Hat,Costume Republic Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1458,{},{},{} -20456,C_Combat_Vestige,Costume Combat Vestige,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1460,{},{},{} -20457,C_Feather_Fluttering,Costume Fluttering Feathers,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1461,{ hateffect(HAT_EF_FEATHER_FLUTTERING,true); },{},{ hateffect(HAT_EF_FEATHER_FLUTTERING,false); } -20458,C_Wild_Poring_Rider,Costume Wild Poring Rider,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1422,{},{},{} -20459,C_Valhalla_Idol,Costume Valhalla Idol,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1423,{ hateffect(HAT_EF_VALHALLA_IDOL,true); },{},{ hateffect(HAT_EF_VALHALLA_IDOL,false); } -20460,C_Thorny_Hairband,Costume Thorny Hairband,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,921,{},{},{} -20461,C_93_Style_Bloody_Wings,Costume 93 Style Bloody Wings,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1037,{},{},{} -20462,C_Cat_Ears_Cape,Costume Cat Ears Cape,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1464,{},{},{} -20463,C_Two_Tone_Beret,Costume Two Tone Beret,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1465,{},{},{} -20464,C_Monochrome_RibbonHat,Costume Monochrome Ribbon Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1466,{},{},{} -20465,C_Glasses_Without_Lens,Costume Glasses Without Lens,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1467,{},{},{} -20466,C_Crimson_Ribbon,Costume Crimson Ribbon,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1468,{},{},{} -20467,C_Elemental_Crown,Costume Elemental Crown,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1219,{},{},{} -20468,C_Youinone_Mask,You in ONE,4,0,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,0,1462,{},{},{} -20470,C_SweetChocolate_Hat,Costume Sweet Chocolate Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1469,{},{},{} -20481,C_Mask_of_Ifrit,Costume Mask of Ifrit,4,20,,0,,0,,0,0xFFFFFFFF,63,2,7168,,0,0,421,{},{},{} -20482,C_Heaven_Cage,Costume Heaven Cage,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1286,{},{},{} -20483,C_Butterfly_Barrettes,Costume Butterfly Barrettes,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1027,{},{},{} -20486,C_Twin_Margaret,Costume Twin Margaret,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1472,{},{},{} -20487,C_Floral_Waltz,Costume Waltz of Flowers,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1473,{ hateffect(HAT_EF_FLORAL_WALTZ,true); },{},{ hateffect(HAT_EF_FLORAL_WALTZ,false); } -20488,C_Pope_Ribbon,Costume Pope Ribbon,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1474,{},{},{} -20489,C_Pope_Crown,C Pope Crown,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1475,{},{},{} -20490,C_Full_Bloom_Hp_Blue,Costume: Full Bloom HP(Blue),4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1476,{},{},{} -20491,C_Laser_of_Eagle,Costume Laser of Eagle,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1424,{},{},{} -20492,C_Unidentified_Flying_Poring,Costume Unidentified Flying Poring,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1017,{},{},{} -20493,C_Wing_Headphone,Costume Wing Headphone,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1347,{},{},{} -20495,C_Quati_Hat_J,Costume Quati Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,527,{},{},{} -20496,C_Black_Shiba_Inu_Hat,Costume Black Shiba Inu Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,894,{},{},{} -20497,C_Umbala_Spirit,Costume Umbala Spirit,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,675,{},{},{} -20498,C_Elephant_Hat,Costume Elephant Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,215,{},{},{} -20499,C_Cat_Ears_Hat,Costume Cat Ears Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1479,{},{},{} -//=================================================================== -// New Garments -//=================================================================== -20500,T_Archangel_Wing,Archangel Wing,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,1,{},{},{} -20502,C_Devil_Wing,Costume Little Devil Wings,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,12,{},{},{} -20504,C_Cupid_Wing_Pink,Costume Cupid's Pink Wings,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,14,{},{},{} -20506,Invisible_Manteau,Invisible Manteau,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,0,{},{},{} -20507,C_Poring_Bag,Costume Poring Bag,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,16,{},{},{} -20508,C_Poster_Girl_Hat,Costume Poster Girl Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1446,{},{},{} -20509,C_Wings_of_Uriel,Costume Wings of Uriel,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,17,{},{},{} -20510,C_SwordWing,Costume Sword Wing,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,19,{},{},{} -20511,C_Blue_Fairy_Wing,Blue Wings of Fairy,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,21,{},{},{} -20512,C_Bag_of_Adventurer_j,Costume Adventurer's Backpack,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,2,{},{},{} -20514,C_Thanatos_Sword,Costume Thanatos Sword,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,23,{},{},{} -20515,C_Magic_Circle,Costume Magic Circle,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,0,{ hateffect(HAT_EF_MAGICCIRCLE,true); },{},{ hateffect(HAT_EF_MAGICCIRCLE,false); } -20516,C_Wings_of_Michael,Costume Wings of Michael,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,24,{},{},{} -20517,C_GiantCatBag_TW,Costume Giant Cat Backpack,4,0,,0,,,,0,0xFFFFFFFF,63,2,8192,,1,0,25,{},{},{} -20519,C_Full_BloomCherry_Tree,Costume Full Bloom Cherry Tree,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,0,{ hateffect(HAT_EF_FULL_BLOOMCHERRY_TREE,true); },{},{ hateffect(HAT_EF_FULL_BLOOMCHERRY_TREE,false); } -20522,C_Blessings_Of_Soul,Costume Blessings Of Soul,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,0,{ hateffect(HAT_EF_C_BLESSINGS_OF_SOUL,true); },{},{ hateffect(HAT_EF_C_BLESSINGS_OF_SOUL,false); } -20524,C_Shining_Angel_Wings,Costume Shining Angel Wings,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,0,{ hateffect(HAT_EF_C_SHINING_ANGEL_WING,true); },{},{ hateffect(HAT_EF_C_SHINING_ANGEL_WING,false); } -20530,C_Wings_of_Gabriel,Costume Wings of Gabriel,4,0,,0,,,,0,0xFFFFFFFF,63,2,8192,,1,0,37,{},{},{} -20533,C_PinkButterfly_Wing_T,Costume Fly Like a Butterfly (Pink),4,0,,0,,,,0,0xFFFFFFFF,63,2,8192,,1,0,38,{},{},{} -20535,C_Digital_Space,Costume Digital Space,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,0,{ hateffect(HAT_EF_DIGITAL_SPACE,true); },{},{ hateffect(HAT_EF_DIGITAL_SPACE,false); } -20537,C_Falling_Red_Foliage,Costume Falling Red Foliage,4,0,,0,,,,0,0xFFFFFFFF,63,2,8192,,1,0,0,{ hateffect(HAT_EF_C_MAPLE_WHICH_FALLS_RD,true); },{},{ hateffect(HAT_EF_C_MAPLE_WHICH_FALLS_RD,false); } -20538,Costume_Magic_Circle_Rainbow,Costume Magic Circle Rainbow,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,0,{ hateffect(HAT_EF_MAGICCIRCLERAINBOW,true); },{},{ hateffect(HAT_EF_MAGICCIRCLERAINBOW,false); } -20543,C_Halloween_Poring_Bag,Costume Halloween Poring Bag,4,0,,0,,,,0,0xFFFFFFFF,63,2,8192,,1,0,44,{},{},{} -20546,C_Backside_Ribbon_Bell,Costume Giant Ribbon Bell,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,46,{},{},{} -20547,C_Ghost_Effect,Costume Ghost Effect,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,0,{ hateffect(HAT_EF_C_GHOST_EFFECT,true); },{},{ hateffect(HAT_EF_C_GHOST_EFFECT,false); } -20548,Costume_Popping_Poring_Aura,Costume Popping Poring Aura,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,0,{ hateffect(HAT_EF_C_POPPING_PORING_AURA,true); },{},{ hateffect(HAT_EF_C_POPPING_PORING_AURA,false); } -20570,C_HeartChocoBag,Costume HeartChocoBag,4,0,,0,,,,0,0xFFFFFFFF,63,2,8192,,1,0,47,{},{},{} -20572,C_WingOfHeart,Costume WingOfHeart,4,0,,0,,,,0,0xFFFFFFFF,63,2,8192,,1,0,50,{},{},{} -20576,C_Cat_Fork,Costume Cat Fork,4,0,,0,,,,0,0xFFFFFFFF,63,2,8192,,1,0,53,{},{},{} -20582,C_T_Bear_Bag,Costume Bear Backpack,4,0,,0,,,,0,0xFFFFFFFF,63,2,8192,,1,0,60,{},{},{} -20584,C_Big_Foxtail,Costume Fox Tail,4,0,,0,,,,0,0xFFFFFFFF,63,2,8192,,1,0,62,{},{},{} -20588,C_Nifl_Bloom,Costume Broom of Witch,4,0,,0,,,,0,0xFFFFFFFF,63,2,8192,,1,0,65,{},{},{} -20592,C_Santa_Backpack,Costume Santa's Pocket,4,0,,0,,,,0,0xFFFFFFFF,63,2,8192,,1,0,70,{},{},{} -20600,Fantastic_Aura,Fantastic Aura,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,0,{ /*TODO: View ID*/ bonus bUnbreakableHelm; },{},{} -20700,Egir_Manteau,Egir Manteau,4,200000,,300,,10,,1,0xFFFFFFFF,63,2,4,,110,1,0,{ bonus bUnbreakableGarment; .@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); } },{},{} -20701,Sol_Manteau,Sol Manteau,4,0,,700,,20,,1,0xFFFFFFFF,63,2,4,,65,1,0,{ bonus2 bSubDefEle,Ele_Earth,5; bonus2 bMagicSubDefEle,Ele_Earth,5; bonus2 bSubRace,RC_Fish,-5; },{},{} -20702,TE_Woe_Muffler,TE Woe Muffler,4,0,,0,,5,,0,0xFFFFFFFF,63,2,4,,40,1,,{ bonus bMdef,5; bonus2 bAddRace,RC_Player_Human,5; bonus2 bMagicAddRace,RC_Player_Human,5; bonus2 bResEff,Eff_Freeze,25; },{},{} -20703,TE_Woe_Manteau,TE Woe Manteau,4,0,,0,,10,,0,0x000444A2,63,2,4,,40,1,,{ bonus2 bAddRace,RC_Player_Human,10; bonus2 bResEff,Eff_Freeze,25; },{},{} -20704,TE_Woe_Magic_Manteau,TE Woe Magic Manteau,4,0,,0,,5,,0,0x00818315,63,2,4,,40,1,,{ bonus2 bMagicAddRace,RC_Player_Human,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_Human,5; },{},{} -20709,Mana_Manteau,Mana Manteau,4,0,,0,,,,0,0xFFFFFFFF,63,2,4,,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; },{},{} -20712,Valkyrie_Cape,Valkyrie Cape,4,10,,500,,10,,1,0x6007DFFE,58,2,4,,1,1,0,{ .@val = 2 * (min(10,getrefine())/2); if (BaseClass == Job_Mage || BaseClass == Job_Archer || BaseClass == Job_Acolyte) bonus bFlee2,(5+.@val); else if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief) bonus bShortWeaponDamageReturn,(5+.@val); },{},{} -20714,Assassin's_Muffler,Assassin's Muffler,4,20,,100,,16,,1,0xFFFFFFFF,63,2,4,,50,1,0,{ .@r = getrefine(); if (.@r>5) { bonus bAgi,(.@r-5)*2; } },{},{} -20716,Spirit_Manteau,Spirit Manteau,4,20,,700,,20,,1,0xFFFFFFFF,63,2,4,,65,1,0,{ bonus2 bSubEle,Ele_Ghost,5; bonus2 bSubRace,RC_Angel,-5; },{},{} -20717,FaceWorm_Skin,Gigant Snake Skin,4,10,,400,,38,,0,0xFFFFFFFF,63,2,4,,1,1,0,{ bonus bMdef,10; },{},{} -20718,FaceWorm_Skin_,Gigant Snake Skin,4,10,,400,,38,,1,0xFFFFFFFF,63,2,4,,1,1,0,{ bonus bMdef,10; },{},{} -20721,Cloak_Of_Gray,Cloak of Gray,4,20,,600,,45,,1,0xFFFFFFFF,56,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(); if ((readparam(bStr)>89)) { bonus bAllStats,1; bonus bStr,.@r; bonus bMaxHPRate,1; bonus bMaxSPRate,1; } if ((readparam(bAgi)>89)) { bonus bAllStats,1; bonus bAgi,.@r; bonus bMaxHPRate,1; bonus bMaxSPRate,1; } if ((readparam(bVit)>89)) { bonus bAllStats,1; bonus bVit,.@r; bonus bMaxHPRate,1; bonus bMaxSPRate,1; } if ((readparam(bInt)>89)) { bonus bAllStats,1; bonus bInt,.@r; bonus bMaxHPRate,1; bonus bMaxSPRate,1; } if ((readparam(bDex)>89)) { bonus bAllStats,1; bonus bDex,.@r; bonus bMaxHPRate,1; bonus bMaxSPRate,1; } if ((readparam(bLuk)>89)) { bonus bAllStats,1; 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; },{},{} -20726,Fire_Dragon's_Coat,Fire Dragon's Coat,4,20,,300,,0,,1,0xFFFFFFFF,63,2,4,,30,1,0,{ bonus bMaxHPrate,5; bonus2 bMagicAtkEle,Ele_Fire,2; if (getrefine()>=7) { bonus2 bMagicAtkEle,Ele_Fire,3; } bonus2 bMagicAtkEle,Ele_Water,-10; },{},{} -20727,Brilliant_Golden_Wings,Brilliant Golden Wings,4,10,,0,,,,0,0xFFFFFFFF,63,2,8192,,1,1,5,{},{},{} -20728,Water_Dragon_Coat,Water Dragon Coat,4,10,,300,,0,,1,0xFFFFFFFF,63,2,4,,30,1,0,{ bonus bMaxHPrate,5; bonus2 bMagicAtkEle,Ele_Water,2; if (getrefine()>=7) { bonus2 bMagicAtkEle,Ele_Water,3; } bonus2 bMagicAtkEle,Ele_Wind,-10; },{},{} -20730,Loyalists_Hood,Loyalists Hood,4,10,,200,,30,,1,0xFFFFFFFF,63,2,8192,,80,,,{ bonus bStr,2; bonus bMaxHPrate,10; bonus bNoKnockback; bonus2 bSubEle,Ele_All,-20; },{},{} -20732,Supplement_Part_Con,Supplement Part Con,4,25000,,500,,20,,1,0x00000400,56,2,4,,100,1,,{ .@r = getrefine(); bonus bMaxHPrate,6+(.@r/2); if(.@r>=9){bonus bHPrecovRate,50;} },{},{} -20733,Upgrade_Part_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,{},{},{} -20743,Airship_Cape,Airship's Cloak,4,10,,0,,25,,1,0xFFFFFFFF,63,2,4,,125,0,,{ bonus2 bSubEle,Ele_Neutral,10; bonus bFlee,20; bonus bVariableCastrate,-20; },{},{} -20744,Felock_Cape,Felrock's Cloak,4,10,,400,,12,,1,0xFFFFFFFF,63,2,4,,125,1,,{ bonus2 bSubEle,Ele_Neutral,10; bonus bFlee,20; bonus bVariableCastrate,-10; .@r = getrefine(); if(.@r>=7) { bonus bVariableCastrate,-10; } if(.@r>=9) { bonus bVariableCastrate,-10;} if(.@r>=12) { bonus bVariableCastrate,-5; } },{},{} -20746,C_Rudra_Wing,Costume Rudra Wings,4,10,,0,,,,0,0xFFFFFFFF,63,2,8192,,1,0,8,{},{},{} -20748,Manteau_Of_Fallen,Fallen Warrior Manteau,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,Manteau_Of_Fallen_,Fallen Warrior Manteau,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; },{},{} -20753,Lian_Robe,Lian Robe,4,0,,700,,20,1,1,0xFFFFFFFF,63,2,4,,65,1,,{ bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubRace,RC_Formless,-5; },{},{} -20756,Aegir_Cloak,Aegir Cloak,4,10,,300,,10,,1,0xFFFFFFFF,63,2,4,,40,1,,{ bonus bUnbreakableGarment; bonus bMaxHP,500; bonus bMaxSP,50; },{},{} -20761,C_Wing_Of_Happiness,Costume Happiness Wings,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,9,{},{},{} -20762,C_GreatDevilWing,Costume Great Devil Wings,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,10,{},{},{} -20763,C_Amistr_Bag,Costume Amistr Bag,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,4,{},{},{} -20764,C_Fallen_Angel_Wing,Costume Fallen Angel Wing,4,0,,0,,0,,0,0xFFFFFFFF,63,2,8192,,1,0,3,{},{},{} -20765,C_Archangel_Wing,Costume Archangel Wing,4,0,,0,,,,0,0xFFFFFFFF,63,2,8192,,1,0,1,{},{},{} -20773,Excelion_Wing,Excelion Wing,4,20,,900,,40,,0,0xFFFFFFFF,63,2,4,,99,1,,{ bonus bFlee,getrefine() * 2; bonus bFlee2,8 + (BaseLevel > 129 ? 2 : 0); },{},{} -20778,Red_Lotus_Stole,Red Lotus Stole,4,20,,700,,8,,1,0xFFFFFFFF,63,2,4,,1,1,0,{ .@r = getrefine(); bonus bMaxSPrate,10; bonus bMdef,3; bonus bUseSPrate,-1*(1+(2*.@r/3)); if (.@r>=10) { bonus bSPGainValue,20; } },{},{} -20779,Rift_Manteau,Rift Manteau,4,20,,500,,16,,1,0xFFFFFFFF,63,2,4,,100,1,,{ .@r = getrefine(); bonus bMaxHP,(.@r >= 9 ? 1300 : .@r >= 7 ? 700 : 300); bonus bMaxSP,-50; },{},{} -20780,Unity_STR_Manteau,Unity STR Manteau,4,32000,,300,,20,,1,0xFFFFFFFF,63,2,4,,1,1,0,{ .@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bMaxHPrate,2*(.@r/2); } },{},{} -20781,Unity_AGI_Manteau,Unity AGI Manteau,4,32000,,300,,20,,1,0xFFFFFFFF,63,2,4,,1,1,0,{ .@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bFlee,3*(.@r/2); } },{},{} -20782,Unity_INT_Muffler,Unity INT Muffler,4,32000,,300,,20,,1,0xFFFFFFFF,63,2,4,,1,1,0,{ .@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bUseSPrate,-(.@r/2); } },{},{} -20783,Hero_Cape,Hero Cape,4,0,,100,,,,1,0xFFFFFFFF,63,2,4,,10,1,,{ .@r = getrefine(); bonus2 bSubEle,Ele_Neutral,1+(.@r/3); bonus bFlee,1+(.@r/3); if (.@r > 9) { bonus2 bSubEle,Ele_Neutral,20; bonus bFlee,20; } },{},{} -20787,Unity_Exquisite_Muffler,Unity Exquisite Muffler,4,32000,,300,,20,,1,0xFFFFFFFF,63,2,4,,1,1,0,{ .@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bCritical,2*(.@r/2); } },{},{} -20788,Private_Doram_Manteau,Private Doram Manteau,4,20,,300,,20,,1,0x80000000,7,2,4,,100,1,,{ bonus bFlee,5; bonus2 bSubEle,Ele_Neutral,2; bonus bFlee2,getrefine()/3; },{},{} -20789,Luxury_Doram_Manteau,Luxury Doram Manteau,4,20,,400,,25,,1,0x80000000,7,2,4,,140,1,,{ bonus bFlee,7; bonus2 bSubEle,Ele_Neutral,3; .@r = getrefine()/3; bonus bFlee2,.@r; bonus bLuk,.@r; },{},{} -20790,Elegant_Doram_Manteau,Elegant Doram Manteau,4,20,,500,,30,,1,0x80000000,7,2,4,,175,1,,{ bonus bFlee,10; bonus2 bSubEle,Ele_Neutral,5; .@r = getrefine()/2; bonus bFlee2,.@r; bonus bInt,.@r; bonus bDex,.@r; bonus bLuk,.@r; },{},{} -20797,Etran_Shirt,Etran Shirt,4,0,,150,,,,1,0xFFFFFFFF,63,2,4,,1,1,,{ bonus bMdef,10; bonus bMaxHPrate,2; .@r = getrefine(); if (.@r >= 6) bonus bMaxHPrate,4; if (.@r >= 7) bonus bMaxHPrate,6; if (.@r >= 8) bonus bMaxHPrate,8; if (.@r >= 9) bonus bNoKnockback; },{},{} -20798,GrimReaper_Protection,Costume Grim Reaper Protection,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1450,{},{},{} -20799,Elemental_Towel,Elemental Towel,4,20,,400,,13,,1,0xFFFFFFFF,63,2,4,,100,1,0,{ bonus bLongAtkRate,2; if(getrefine()>=7) { bonus2 bSkillUseSP,"RA_ARROWSTORM",20; bonus2 bSkillUseSP,"WM_SEVERE_RAINSTORM",60; } if(getrefine()>=8) { bonus bLongAtkRate,2; } if(getrefine()>=9) { bonus bLongAtkRate,3; } },{},{} -20800,Enforcer_Cape,Enforcer Cape,4,20,,300,,18,,1,0xFFFFFFFF,63,2,4,,100,1,0,{ .@r = getrefine(); bonus bMdef,10; if (getskilllv("AS_GRIMTOOTH")==5) { bonus2 bSkillAtk,"AS_GRIMTOOTH",50; } if (getskilllv("GC_CROSSIMPACT") == 5) { bonus2 bSkillAtk,"GC_CROSSIMPACT",5; } if (getskilllv("ASC_BREAKER") == 10) { bonus2 bSkillAtk,"ASC_BREAKER",50; } if (.@r>=7) { .@delay += 3; bonus2 bSkillAtk,"AS_GRIMTOOTH",Baselevel; bonus2 bSkillAtk,"ASC_BREAKER",Baselevel/3; bonus2 bSkillAtk,"GC_CROSSIMPACT",Baselevel/30; } if (.@r>=9) { .@delay += 3; bonus bMaxSPrate,5; } bonus bDelayrate,-.@delay; if(eaclass()&EAJL_THIRD && BaseJob == Job_Assassin) { if (.@r >= 7) { bonus bMaxHPrate,20; bonus bLongAtkDef,35; } else { bonus bMaxHPrate,15; bonus bLongAtkDef,20; } } },{},{} -20813,Coak_of_Survival,Cloak of Survival,4,1000,,550,,10,,1,0x00810204,63,2,4,,75,1,0,{ bonus bMdef,5; bonus bVit,10; },{},{} -20814,Wakwak_Manteau,Wakwak Manteau,4,20,,400,,40,,1,0xFFFFFFFF,63,2,4,,100,1,0,{ bonus2 bAddClass,Class_All,5; .@s = readparam(bStr); .@r = getrefine(); if (.@r>=5) { bonus bBaseAtk,2*(.@s/10); } if (.@r>=7) { bonus bBaseAtk,3*(.@s/10); } },{},{} -20815,SeraphimRobe,Seraphim Robe,4,0,,300,,18,,1,0xFFFFFFFF,63,2,4,,1,1,,{ bonus bMaxHPrate,10; bonus2 bMagicAtkEle,Ele_Neutral,5; .@r = getrefine(); if (.@r > 6) { bonus2 bSubEle,Ele_Dark,20; bonus2 bSubEle,Ele_Holy,20; bonus bMatkRate,10; } if (.@r > 8) { bonus2 bSubEle,Ele_Dark,10; bonus2 bSubEle,Ele_Holy,10; bonus bVariableCastrate,-5; } if (getskilllv("CR_TRUST") > 0) { bonus2 bSubEle,Ele_Holy,.@r*3; } },{},{} -20819,Oxygen_Bottle,Oxygen Bottle,4,0,,500,,0,,1,0xFFFFFFFF,63,2,4,,40,1,0,{ bonus bFlee,12+getrefine(); bonus bHit,getrefine(); },{},{} -20820,Elemental_Cape,Elemental Cape,4,0,,500,,12,,0,0x00010000,56,2,4,,100,1,0,{ .@r = getrefine(); bonus bFlee,(10+5*(.@r/3)); bonus2 bSubEle,Ele_Neutral,10; if (.@r>=9) bonus bAspdRate,5; },{},{} -20821,Golden_Scarf,Golden Scarf,4,0,,500,,12,,0,0x20000000,63,2,4,,100,1,0,{ .@r = getrefine(); bonus bFlee,20; if (.@r>=9) { bonus bLongAtkRate,10; } else if (.@r>=7) { bonus bLongAtkRate,5; } },{},{} -20822,Mine_Worker's_Backpack,Mine Worker's Backpack,4,0,,600,,16,,0,0x00000400,56,2,4,,100,1,0,{ .@r = getrefine(); bonus bAspdRate,(5+(.@r/2)); if (.@r>=9) bonus bBaseAtk,20; },{},{} -20823,Para_Team_Manteau100,Awakened Eden Group Manteau I,4,0,,0,,20,,0,0xFFFFFFFF,63,2,4,,100,1,0,{ bonus2 bSubEle,Ele_Neutral,10; bonus bFlee,12; .@r = getrefine(); if(.@r >= 7){ bonus bMaxHP,500; bonus bFlee2,2; if(.@r >= 9){ bonus bMaxHP,500; bonus2 bSubEle,Ele_All,10; bonus2 bSubEle,Ele_Neutral,-10; } } },{},{} -20824,Para_Team_Manteau130,Awakened Eden Group Manteau II,4,0,,0,,25,,0,0xFFFFFFFF,63,2,4,,130,1,0,{ bonus2 bSubEle,Ele_Neutral,10; bonus bFlee,12; bonus bMaxHP,500; bonus bFlee2,2; .@r = getrefine(); if(.@r >= 7){ bonus bMaxHP,500; bonus2 bSubEle,Ele_All,10; bonus2 bSubEle,Ele_Neutral,-10; if(.@r >= 9){ bonus2 bSubEle,Ele_Neutral,5; } } },{},{} -20825,Para_Team_Manteau160,Awakened Eden Group Manteau III,4,0,,0,,30,,0,0xFFFFFFFF,63,2,4,,160,1,0,{ bonus2 bSubEle,Ele_All,10; bonus bFlee,12; bonus bMaxHP,1000; bonus bFlee2,2; .@r = getrefine(); if(.@r >= 7){ bonus2 bSubEle,Ele_Neutral,5; if(.@r >= 9){ skill "BS_GREED",1; } } },{},{} -20826,Angel_Feather,Angel Feather,4,0,,200,,18,,1,0xFFFFFFFF,63,2,4,,1,1,18,{},{},{} -20830,Wings_of_Seraph,Wings of Seraph,4,0,,200,,18,,1,0xFFFFFFFF,63,2,4,,1,1,8,{},{},{} -20831,Adventurer's_Spirit,Adventurer's Spirit,4,1000,,400,,40,,1,0xFFFFFFFF,63,2,4,,100,1,0,{ .@r = getrefine(); bonus bInt,5; if (.@r>=5) bonus bMatk,5*(readparam(bInt)/60); if (.@r>=7) bonus bMatk,5*(readparam(bInt)/10); },{},{} -20834,Drifter's_Cape,Drifter's Cape,4,0,,400,,0,,0,0xFFFFFFFF,63,2,4,,100,1,0,{ .@r = getrefine(); .@bonus = 20; if (.@r>=7) { .@bonus += 5; } if (.@r>=9) { .@bonus += 5; } bonus2 bSubEle,Ele_Neutral,.@bonus; },{},{} -20836,Skin_of_Lindwyrm,Skin of Lindwyrm,4,1000,,600,,15,,1,0xFFFFFFFF,63,2,4,,100,1,0,{ bonus bAgi,5; bonus bVit,5; bonus bMdef,10; bonus2 bSubEle,Ele_Fire,5; bonus2 bSubEle,Ele_Water,5; bonus2 bSubRace,RC_Dragon,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; .@r = getrefine(); .@val = (readparam(bAgi)+readparam(bVit))/20; if (.@r>=7) { skill "TF_HIDING",1; if (.@r>=8) { bonus bMaxHPrate,.@val; bonus bVariableCastrate,-1*.@val; if (.@r>=9) { skill "AS_CLOAKING",1; } } } },{},{} -20837,Skin_of_Gwiber,Skin of Gwiber,4,20,,600,,15,,1,0xFFFFFFFF,63,2,4,,100,1,0,{ bonus bInt,5; bonus bDex,5; bonus bMdef,10; bonus2 bSubEle,Ele_Dark,5; bonus2 bSubEle,Ele_Undead,5; bonus2 bSubRace,RC_Demon,5; bonus2 bSubRace,RC_Undead,5; .@r = getrefine(); .@val = (readparam(bInt)+readparam(bDex))/20; if (.@r>=7) { bonus bSPGainValue,10; if (.@r>=8) { bonus bBaseAtk,5*.@val; bonus bDelayrate,-2*.@val; if (.@r>=9) { bonus bSPGainValue,10; } } } },{},{} -20838,Illusion_Muffler,Illusion Muffler,4,20,,400,,8,,1,0xFFFFFFFE,63,2,4,,99,1,0,{ .@r = getrefine(); bonus bMaxHP,(100+(100*.@r)); bonus bMaxSP,(10+(5*.@r)); },{},{} -20840,Illusion_Ancient_Cape,Illusion Ancient Cape,4,0,,600,,18,,1,0xFFFFFFFE,63,2,4,,100,1,0,{ .@val = min(getrefine(),10)/2; bonus bAgi,(2+.@val); },{},{} -20845,Maracco_Skin,Malach's Skin,4,20,,600,,15,,1,0xFFFFFFFF,63,2,4,,100,1,0,{ bonus bStr,5; bonus bLuk,5; bonus bMdef,10; bonus2 bSubEle,Ele_Ghost,5; bonus2 bSubEle,Ele_Holy,5; bonus2 bSubRace,RC_Angel,5; bonus2 bSubRace,RC_Formless,5; .@r = getrefine(); .@s = (readparam(bStr)+readparam(bLuk))/20; if (.@r>=7) { bonus bCritAtkRate,5; if (.@r>=8) { bonus bAspdRate,.@s; bonus bCritical,.@s; if (.@r>=9) { bonus bCritAtkRate,5; } } } },{},{} -20846,Temporal_Manteau,Temporal Manteau,4,20,,400,,38,,1,0xFFFFFFFF,63,2,4,,100,1,0,{ bonus bMdef,10; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; },{},{} -20847,Illusion_Survivor_Manteau,Illusion Survivor Manteau,4,0,,550,,30,,1,0x00810204,63,2,4,,130,1,0,{ bonus bVit,15; },{},{} -20856,YSF01_Manteau,YSF01 Manteau,4,0,,750,,32,,1,0xFFFFFFFF,63,2,4,,170,1,0,{ .@r = getrefine(); if (.@r >= 8) { bonus bBaseAtk,20; if (.@r >= 11) { .@val = -3; if (.@r >= 13) { .@val += -4; } } } if (readparam(bVit) >= 125) { .@val += -10; } if (.@val) { bonus bDelayrate,.@val; } },{},{} -20859,Phreeoni_Wings,Phreeoni Wings,4,20,,300,,10,,1,0xFFFFFFFF,63,2,4,,100,1,0,{ .@r = getrefine(); bonus bMaxHPrate,10; bonus bHit,10; if (.@r>=7) bonus bHit,20; if (.@r>=8) bonus bHit,30; if (.@r>=9) bonus bHit,40; if (.@r>=10) bonus bHit,100; },{},{} -20860,Battle_Surcoat,Battle Surcoat,4,20,,300,,10,,1,0xFFFFFFFF,63,2,4,,70,1,0,{ .@r = getrefine(); if (.@r>=9) { bonus bAspdRate,9; bonus bFlee,30; skill "TF_DOUBLE",10; skill "MO_TRIPLEATTACK",10; bonus bDoubleRate,50; } else if (.@r>=7) { bonus bAspdRate,6; bonus bFlee,20; skill "TF_DOUBLE",5; skill "MO_TRIPLEATTACK",5; bonus bDoubleRate,25; } else { bonus bAspdRate,3; bonus bFlee,10; skill "TF_DOUBLE",3; skill "MO_TRIPLEATTACK",3; bonus bDoubleRate,15; } },{},{} -20863,Menblatt's_Wings,Menblatt's Wings,4,20,,400,,40,,1,0xFFFFFFFF,63,2,4,,100,1,0,{ .@r = getrefine(); bonus bBaseAtk,30; if (.@r>=5) bonus bLongAtkRate,readparam(bDex)/60; if (.@r>=7) bonus bLongAtkRate,readparam(bDex)/10; },{},{} -20906,Beginner's_Cloak,Beginner's Cloak,4,20,,0,,10,,0,0xFFFFFFFF,63,2,4,,100,0,0,{ bonus2 bSubEle,Ele_Neutral,20; bonus bVariableCastrate,-5; },{},{} -20922,Leviathan_Muffler,Leviathan Muffler,4,20,,200,,18,,1,0xFFFFFFFF,63,2,4,,100,1,0,{ .@r = getrefine(); bonus bMdef,5; bonus2 bAddEle,Ele_Water,15+.@r; bonus2 bMagicAddEle,Ele_Water,15+.@r; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bAspdRate,.@r; if (.@r>=10) bonus2 bSubEle,Ele_Water,100; },{},{} -20923,Illusion_Goibne_Spaulders,Illusion Goibne Spaulders,4,0,,1000,,47,,1,0xFFFFFFFE,63,2,4,,130,1,0,{ .@r = getrefine(); bonus bMdef,2; bonus bVit,1; if (.@r >= 7) { .@val = 5; if (.@r >= 9) { .@val += 10; } } if (.@val) { bonus2 bAddEle,Ele_Water,.@val; bonus2 bAddEle,Ele_Wind,.@val; bonus2 bAddEle,Ele_Earth,.@val; bonus2 bAddEle,Ele_Fire,.@val; } },{},{} -20925,Commander_Manteau2,Commander Manteau,4,20,,300,,20,,1,0xFFFFFFFF,63,2,4,,100,1,0,{ .@r = getrefine(); bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bMdef,10; bonus bBaseAtk,10; bonus bMatk,10; bonus2 bSubRace,RC_Player_Human,3; if (.@r>=5) { bonus bBaseAtk,20; bonus bMatk,20; bonus bMaxHPrate,7; bonus bMaxSPrate,7; } if (.@r>=7) { bonus bBaseAtk,30; bonus bMatk,30; bonus bMaxHPrate,10; bonus bMaxSPrate,10; } },{},{} -20931,Prism_Rangers_Scarf,Prism Rangers Scarf,4,20,,300,,12,,0,0xFFFFFFFF,63,2,4,,100,1,0,{ .@r = getrefine(); bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; if (.@r >= 7) { .@val = 10; } else if (.@r >= 5) { .@val = 5; } else { .@val = 2; } bonus bMaxHPrate,.@val; bonus bMaxSPrate,.@val; bonus bLongAtkRate,.@val+2*getskilllv("RA_AIMEDBOLT"); if (getskilllv("RA_WUGRIDER") == 3) { bonus2 bSkillCooldown,"RA_UNLIMIT",-180000; } if (getskilllv("RA_CAMOUFLAGE") == 5) { bonus bDelayrate,-10; } bonus2 bSkillCooldown,"RA_ARROWSTORM",-200; bonus2 bSkillAtk,"RA_ARROWSTORM",1; },{},{ sc_end SC_UNLIMIT; } -20932,Old_Morroc_Shawl,Old Morocc Shawl,4,20,,300,,10,,1,0xFFFFFFFF,63,2,4,,100,1,0,{ .@r= getrefine(); bonus bMaxHPrate,5; bonus bFlee,10; if (.@r>=7) bonus bFlee,20; if (.@r>=8) { bonus bFlee,30; bonus bRestartFullRecover; } if (.@r>=9) bonus bFlee,40; if (.@r>=10) bonus bFlee2,25; },{},{} -20933,Illusion_Engine_wing_A-type,Illusion Engine wing A-type,4,0,,900,,50,,1,0xFFFFFFFF,63,2,4,,130,1,,{ .@r = getrefine(); bonus bMaxHP,1000+(100*(.@r/2)); if (.@r >= 7) { bonus bAspdRate,5; } },{},{} -20934,Illusion_Engine_wing_B-type,Illusion Engine wing B-type,4,0,,900,,50,,1,0xFFFFFFFF,63,2,4,,130,1,,{ .@r = getrefine(); bonus bMaxHP,1000+(100*(.@r/2)); if (.@r >= 7) { bonus bVariableCastrate,-5; } },{},{} -20935,Lava_Leather_Manteau,Lava Leather Manteau,4,20,,400,,50,,1,0xFFFFFFFF,63,2,4,,175,1,0,{ bonus bHit,10; .@r = getrefine(); if (.@r>=7) bonus bHit,5; if (.@r>=9) bonus bHit,5; if (.@r>=11) bonus bDelayrate,-3; },{},{} -20936,Lava_Leather_Muffler,Lava Leather Muffler,4,20,,350,,35,,1,0xFFFFFFFF,63,2,4,,175,1,0,{ bonus bCritical,5; .@r = getrefine(); if (.@r>=7) bonus bCritical,5; if (.@r>=9) bonus bCritAtkRate,5; if (.@r>=11) bonus2 bAddClass,Class_All,3; },{},{} -20937,Lava_Leather_Hood,Lava Leather Hood,4,20,,300,,25,,1,0xFFFFFFFF,63,2,4,,175,1,0,{ bonus bVariableCastrate,-10; .@r = getrefine(); if (.@r>=7) bonus bVariableCastrate,-10; if (.@r>=9) bonus bVariableCastrate,-10; if (.@r>=11) bonus2 bMagicAtkEle,Ele_Fire,5; },{},{} -20941,Phoenix_Muffler,Phoenix Muffler,4,20,,200,,18,,1,0xFFFFFFFF,63,2,4,,100,1,0,{ .@r = getrefine(); bonus bMdef,5; bonus2 bAddEle,Ele_Fire,15+.@r; bonus2 bMagicAddEle,Ele_Fire,15+.@r; bonus2 bSubRace,RC_Player_Human,5; bonus bAspdRate,.@r; if (.@r>=10) bonus2 bSubEle,Ele_Fire,100; },{},{} -20942,Manteau_Of_Guardsman,Manteau Of Guardsman,4,20,,500,,15,,1,0xFFFFFFFF,63,2,4,,100,1,0,{ .@r = getrefine(); bonus bMdef,15; bonus bMaxHPrate,5+3*(.@r/3); bonus bMaxSPrate,5+3*(.@r/3); bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; },{},{} -20943,Geffen_Magic_Muffler,Geffen Magic Muffler,4,20,,550,,20,,1,0xFFFFFFFE,63,2,4,,99,1,0,{ .@r = getrefine(); .@val = -10; bonus bMatk,(10*(.@r/2)); bonus bMatkRate,(.@r/3); if (.@r >= 7) { bonus2 bMagicAtkEle,Ele_All,5; } if (.@r >= 9) { .@val -= 10; } bonus bVariableCastrate,.@val; },{},{} -20944,Anti_Magic_Manteau,Anti Magic Manteau,4,20,,750,,23,,1,0xFFFFFFFE,63,2,4,,99,1,0,{ .@r = getrefine(); bonus bMaxHP,(300+(100*(.@r/2))); bonus bMaxHPRate,(2*(.@r/3)); if (.@r >= 7) { bonus2 bAddClass,Class_All,7; } if (.@r >= 9) { bonus bVariableCastrate,-10; } },{},{} -20948,Illusion_Morpheus's_Shawl,Illusion Morpheus's Shawl,4,20,,600,,8,,1,0xFFFFFFFF,63,2,4,,130,1,0,{ bonus bMaxSPrate,10; bonus bMdef,5; .@r = getrefine(); if (.@r >= 7) { .@bonus = -10; if (.@r >= 9) { .@bonus -= 10; } bonus bVariableCastrate,.@bonus; } },{},{} -20949,Ladon_Skin,Ladon's Skin,4,20,,600,,15,,1,0xFFFFFFFF,63,2,4,,100,1,0,{ bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5; bonus2 bSubEle,Ele_Wind,5; bonus2 bSubEle,Ele_Earth,5; bonus bAgi,5; bonus bVit,5; bonus bMdef,10; .@r = getrefine(); if (.@r>=7) { .@val = 10; bonus bSPGainValue,10; bonus bLongSPGainValue,10; if (.@r>=8) { .@s = (readparam(bAgi)+readparam(bVit))/20; bonus bBaseAtk,15*.@s; bonus bHit,5*.@s; if (.@r>=9) { .@val += 10; } } bonus bSPGainValue,.@val; bonus bLongSPGainValue,.@val; } },{},{} -20952,Nameless_Assassin_Muffler,Nameless Assassin's Muffler,4,20,,100,,10,,1,0xFFFFFFFF,63,2,4,,100,1,0,{ .@r= getrefine(); bonus bMdef,5; bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus2 bSubRace,RC_Player_Human,5; if (.@r>=7) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bAspd,1; bonus bHPGainValue,5; bonus bLongHPGainValue,5; } if (.@r>=8) bonus bSpeedRate,40; if (.@r>=9) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bAspd,1; bonus bHPGainValue,5; bonus bLongHPGainValue,5; } if (.@r>=10) skill "AS_CLOAKING",3; },{},{} -20962,Typhon_Skin,Typhon's Skin,4,20,,600,,15,,1,0xFFFFFFFF,63,2,4,,100,1,0,{ bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Fish,5; bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubEle,Ele_Poison,5; bonus bAgi,5; bonus bVit,5; bonus bMdef,10; .@r = getrefine(); if (.@r>=7) { .@sp = 10; if (.@r>=8) { .@s = (readparam(bAgi)+readparam(bVit))/20; bonus bMatk,15*.@s; bonus bDef,20*.@s; if (.@r>=9) { .@sp += 10; } } bonus bMagicSPGainValue,.@sp; } },{},{} -20969,Rainbow_Muffler,Rainbow Muffler,4,20,,300,,12,,0,0xFFFFFFFF,63,2,4,,100,1,0,{ .@r = getrefine(); .@lvl = getskilllv("WM_GLOOMYDAY"); if (.@r >= 7) { .@val = 10; } else if (.@r >= 5) { .@val = 5; } else { .@val = 2; } bonus bMaxHPrate,.@val; bonus bMaxSPrate,.@val; bonus bMatkRate,.@val+(4*.@lvl); bonus2 bSubRace,RC_Player_Human,5; bonus2 bSkillAtk,"WM_METALICSOUND",4*.@lvl; if (getskilllv("WM_FRIGG_SONG") == 5) { bonus2 bSkillCooldown,"WM_METALICSOUND",-200; bonus bAspdRate,10; } if (getskilllv("WM_LULLABY_DEEPSLEEP") == 5) { skill "AL_HEAL",10; bonus bMagicHPGainValue,200; bonus bMagicSPGainValue,20; } },{},{} -//=================================================================== -// 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_Human,80; bonus2 bIgnoreDefRaceRate,RC_Player_Human,30; .@r = getrefine(); if(.@r>=6) { bonus2 bAddRace,RC_Player_Human,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_Human,1000,8; },{},{} -21003,Muramasa_,Muramasa,5,20,,1000,155,,1,2,0x00004082,63,2,34,4,48,1,3,{ bonus bCritical,30; bonus bAspdRate,8; bonus2 bAddEff2,Eff_Curse,10; },{},{} -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); .@i = min(BaseLevel/10,12); 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_Human,40; bonus2 bAddEff,Eff_Bleeding,3000; },{},{} -21007,Heavy_Sword,Heavy Greatsword,5,20,,2500,330,,1,1,0x00004082,63,2,34,1,150,1,3,{ bonus bStr,20; },{},{} -21008,Small_Karasuma,Small Karasuma,5,20,,1000,170,,1,2,0x00004082,63,2,34,4,50,1,3,{ bonus bCritAtkRate,getrefine()*2; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,50; },{},{} -21009,Thanos_Great_Sword,Thanos Great Sword,5,10,,1300,280:120,,1,1,0x00004082,56,2,34,4,120,1,3,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000; },{},{ heal -1000,0; } -21010,Tw_Sword_Of_Evil_Slayer,Evil Slayer Slaher Sword,5,0,,2000,225,,1,1,0x00004082,63,2,34,3,100,1,3,{ bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; .@r = getrefine(); if(.@r>=9) { .@dmg = 5; if(.@r>=12) { .@dmg += 7; } bonus2 bAddClass,Class_All,.@dmg; } },{},{} -21011,Giant_Blade,Gigantic Blade,5,30000,,5000,300,,1,1,0x00004082,56,2,34,4,130,1,3,{ bonus bUnbreakableWeapon; bonus bAspdRate,-5; bonus bCritAtkRate,getrefine(); if(readparam(bStr)<=110){ bonus bAtk,-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,0x00004082,56,2,34,4,100,1,3,{},{},{} -21015,Crimson_Two-Handed_Sword,Crimson Two-Handed Sword,5,20,,1700,170,,1,2,0x00004082,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); },{},{} -21016,Two_Handed_Sword_of_Vicious_Mind,Two-Handed Sword of Vicious Mind,5,20,,2200,220,,1,1,0x00004082,63,2,34,4,160,1,3,{ bonus bAtk,pow(min(getrefine(),15),2); },{},{} -21018,Lindy_Hop,Lindy Hop,5,20,,3400,340,,1,2,0x00004082,56,2,34,4,170,1,3,{ .@r = getrefine(); bonus2 bAddClass,Class_All,.@r/2; bonus bAspdRate,.@r; bonus bUnbreakableWeapon; },{},{} -21019,Onimaru,Onimaru,5,0,,4200,75,,1,2,0x00000080,56,2,34,4,130,1,3,{ .@bStr = readparam(bStr); .@r = getrefine(); bonus bBaseAtk,(min(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; bonus4 bAutoSpell,"NPC_WIDECURSE",4,100,0; if (.@r > 8) bonus4 bAutoSpellOnSkill,"LK_BERSERK","BS_OVERTHRUST",5,100; },{},{} -21039,Royal_Knight's_Broadsword,Royal Knight's Broadsword,5,20,,4000,280,,1,2,0x00004082,56,2,34,4,175,1,3,{ .@r = getrefine(); bonus bBaseAtk,20*(.@r/2); if (.@r>=7) bonus bCritAtkRate,10; if (.@r>=9) bonus bUnbreakableWeapon; },{},{} -21047,Beam_Claymor-OS,Beam Claymor-OS,5,20,,1800,250,,1,2,0x00004082,56,2,34,4,130,1,3,{ .@r = getrefine(); bonus bUnbreakableWeapon; bonus bCritical,5; if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus bCritAtkRate,15; if (.@r >= 11) { bonus2 bAddSize,Size_Small,20; bonus2 bAddSize,Size_Medium,20; } } } },{},{} -21050,Illusion_Tae_Goo_Lyeon,Illusion Tae Goo Lyeon,5,20,,2000,250,,1,2,0x00004082,56,2,34,4,120,1,3,{ .@r = getrefine(); bonus bFlee2,10; bonus bLongAtkRate,.@r*2; if (.@r >= 7) { bonus bUseSPrate,-20; if (.@r >= 9) { bonus bDelayrate,-20; if (.@r >= 11) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; } } } },{},{} -21051,Volar,Volar,5,20,,2800,280,,1,2,0x00000080,56,2,34,4,170,1,3,{ .@r = getrefine(); bonus2 bSkillAtk,"KN_BOWLINGBASH",30; bonus bBaseAtk,4*.@r; if (.@r>=9) { bonus2 bSkillCooldown,"KN_BOWLINGBASH",-1000; bonus2 bSkillCooldown,"RK_IGNITIONBREAK",-1000; } if (.@r>=11) { bonus bUnbreakableWeapon; bonus2 bSkillAtk,"KN_BOWLINGBASH",20; } },{},{} -21052,Vernan,Vernan,5,20,,6500,300,,1,2,0x00000080,56,2,34,4,170,1,3,{ .@r = getrefine(); bonus bLongAtkRate,.@r; bonus2 bAddClass,Class_All,5; if (.@r>=9) { bonus2 bSkillAtk,"LK_SPIRALPIERCE",30; bonus2 bSkillAtk,"RK_SONICWAVE",30; } if (.@r>=11) { bonus2 bSkillCooldown,"RK_SONICWAVE",-1500; } },{},{} -21058,Up_Dragonic_Slayer,Patent Dragonic Slayer,5,,,2000,200,,1,2,0x00000080,56,2,34,4,150,1,2,{ .@r = getrefine(); bonus bMaxHPrate,.@r/2*5; bonus bMaxSPrate,.@r/2*5; bonus2 bSkillAtk,"RK_DRAGONBREATH",.@r/3*5; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",.@r/3*5; if (.@r>=7){ bonus bDelayRate,-10; bonus bVariableCastrate,-10; } if (.@r>=9){ bonus bLongAtkRate,10; } if (.@r>=11){ bonus bDelayRate,-7; bonus bMaxSPrate,5; } },{},{} -//=================================================================== -// New Shoes -//=================================================================== -22000,Temporal_Str_Boots,Temporal Boots Of Strength,4,20,,600,,25,,0,0xFFFFFFFE,56,2,64,,99,1,,{ .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAtk,7*(.@r/3); if(readparam(bStr)>=120) bonus bAtk,50; },{},{} -22001,Temporal_Int_Boots,Temporal Boots Of Intelligence,4,20,,600,,20,,0,0xFFFFFFFE,56,2,64,,99,1,,{ .@r = getrefine(); bonus bMdef,5; bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMatk,10*(.@r/3); if(readparam(bInt)>=120) bonus bMatk,60; },{},{} -22002,Temporal_Agi_Boots,Temporal Boots Of Agility,4,20,,600,,25,,0,0xFFFFFFFE,56,2,64,,99,1,,{ .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAspdRate,3*(.@r/3); if(readparam(bAgi)>=120) bonus bAspd,1; },{},{} -22003,Temporal_Vit_Boots,Temporal Boots Of Vitality,4,20,,600,,25,,0,0xFFFFFFFE,56,2,64,,99,1,,{ .@r = getrefine(); bonus bMaxHP,300+(300*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); if(readparam(bVit)>=120) bonus bMaxHPrate,8; },{},{} -22004,Temporal_Dex_Boots,Temporal Boots Of Dexterity,4,20,,600,,25,,0,0xFFFFFFFE,56,2,64,,99,1,,{ .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bDex,3*(.@r/3); if(readparam(bDex)>=120){ bonus bLongAtkRate,5; bonus bFixedCast,-500; } },{},{} -22005,Temporal_Luk_Boots,Temporal Boots Of Luck,4,20,,600,,20,,0,0xFFFFFFFE,56,2,64,,99,1,,{ .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMdef,5; bonus bCritAtkRate,2*(.@r/3); if(readparam(bLuk)>=120) bonus bCritAtkRate,30; },{},{} -22006,Temporal_Str_Boots_,Temporal Boots Of Strength,4,20,,600,,25,,1,0xFFFFFFFE,56,2,64,,99,1,,{ .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAtk,7*(.@r/3); if(readparam(bStr)>=120) bonus bAtk,50; },{},{} -22007,Temporal_Vit_Boots_,Temporal Boots Of Vitality,4,20,,600,,25,,1,0xFFFFFFFE,56,2,64,,99,1,,{ .@r = getrefine(); bonus bMaxHP,300+(300*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); if(readparam(bVit)>=120) bonus bMaxHPrate,8; },{},{} -22008,Temporal_Dex_Boots_,Temporal Boots Of Dexterity,4,20,,600,,25,,1,0xFFFFFFFE,56,2,64,,99,1,,{ .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bDex,3*(.@r/3); if(readparam(bDex)>=120){ bonus bLongAtkRate,5; bonus bFixedCast,-500; } },{},{} -22009,Temporal_Int_Boots_,Temporal Boots Of Intelligence,4,20,,600,,20,,1,0xFFFFFFFE,56,2,64,,99,1,,{ .@r = getrefine(); bonus bMdef,5; bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMatk,10*(.@r/3); if(readparam(bInt)>=120) bonus bMatk,60; },{},{} -22010,Temporal_Agi_Boots_,Temporal Boots Of Agility,4,20,,600,,25,,1,0xFFFFFFFE,56,2,64,,99,1,,{ .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAspdRate,3*(.@r/3); if(readparam(bAgi)>=120) bonus bAspd,1; },{},{} -22011,Temporal_Luk_Boots_,Temporal Boots Of Luck,4,20,,600,,20,,1,0xFFFFFFFE,56,2,64,,99,1,,{ .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMdef,5; bonus bCritAtkRate,2*(.@r/3); if(readparam(bLuk)>=120) bonus bCritAtkRate,30; },{},{} -22012,Mana_Boots,Mana Boots,4,0,,0,,,,0,0xFFFFFFFF,63,2,64,,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; },{},{} -22016,Assassin's_Shoes,Assassin's Shoes,4,20,,300,,10,,0,0xFFFFFFFF,63,2,64,,30,1,0,{ bonus2 bExpAddRace,RC_DemiHuman,5+getrefine(); },{},{} -22017,Fisherman_Shoes,Fisherman's Shoes,4,20,,300,,10,,0,0xFFFFFFFF,63,2,64,,30,1,0,{ bonus2 bExpAddRace,RC_Fish,5+getrefine(); },{},{} -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); } },{},{} -22032,Exorcist_Shoes,Exorcist's Shoes,4,20,,300,,10,,0,0xFFFFFFFF,63,2,64,,30,1,0,{ bonus2 bExpAddRace,RC_Demon,5+getrefine(); },{},{} -22033,Boots_Of_Gray,Boots of Gray,4,20,,400,,25,,1,0xFFFFFFFF,56,2,64,,120,1,0,{ bonus2 bSubEle,Ele_Holy,2+getrefine()/3; },{},{} -22034,Crimson_Gaiter,Crimson Gaiter,4,0,,500,,10,,0,0xFFFFFFFF,63,2,64,,50,1,,{ bonus bCritical,2; bonus bCritAtkRate,2; if(getrefine()>=7){ bonus bCritical,3; bonus bCritAtkRate,3; } },{},{} -22035,Vet_Nepen_Heel,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,Vet_SliverFox_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,Vet_Ungo_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,,1,0xFFFFFFFF,63,2,64,,50,1,,{ bonus bAgi,2; bonus bAspd,1; bonus bMdef,5; },{},{} -22043,Supplement_Part_Agi,Supplement Part Agi,4,25000,,350,,25,,1,0x00000400,56,2,64,,100,1,,{ bonus bAspdRate,5+(getrefine()/4); },{},{} -22044,Upgrade_Part_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,Airship_Boots,Airship's Boots,4,10,,0,,26,,0,0xFFFFFFFF,63,2,64,,125,0,,{ bonus bAgi,1; bonus bAspdRate,10; },{},{} -22047,Felock_Boots,Felrock'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,,1,0xFFFFFFFF,63,2,64,,40,1,,{ bonus bUnbreakableShoes; bonus bMaxHP,500; bonus bMaxSP,50; },{},{} -22064,Thorny_Shoes,Thorny Shoes,4,0,,1000,,25,,1,0xFFFFFFFF,63,2,64,,70,1,,{ bonus bShortWeaponDamageReturn,getrefine()/2; },{},{} -22066,Spirit_Shoes,Spirit Shoes,4,10,,250,,12,,1,0xFFFFFFFE,63,2,64,,90,1,,{ bonus bMdef,3; bonus2 bSubEle,Ele_All,5; .@r = getrefine(); bonus bMaxHPrate,.@r*1; bonus bMaxSPrate,.@r*1; },{},{} -22067,Witch_Shoes,Shoe of Witch,4,10,,400,,10,,0,0xFFFFFFFE,63,2,64,,1,1,,{ skill "ALL_CATCRY",1; },{},{} -22069,Lian_Shoes,Lian Shoes,4,0,,250,,12,,1,0xFFFFFFFF,63,2,64,,90,1,,{ bonus bMdef,3; bonus2 bSubEle,Ele_Neutral,5; .@r = getrefine(); bonus bMaxHPrate,.@r; bonus bMaxSPrate,.@r; },{},{} -22072,Hikingboots,Hikingboots,4,0,,500,,10,,1,0xFFFFFFFF,63,2,64,,100,1,,{ .@r = getrefine(); bonus bMaxHPRate,4+(.@r/3); bonus bMaxSPRate,4+(.@r/3); if (.@r > 9) bonus bSpeedRate,25; },{},{} -22075,Rift_Shoes,Rift Shoes,4,20,,250,,12,,1,0xFFFFFFFF,63,2,64,,100,1,,{ .@r = getrefine(); bonus bMaxHP,(.@r >= 9 ? 1300 : .@r >= 7 ? 700 : 300); bonus bMaxSP,-50; },{},{} -22076,Wooden_Slipper,Wooden Slipper,4,20,,50,,10,,1,0x80000000,7,2,64,,9,1,,{ bonus2 bHPRegenRate,2,10000; },{},{} -22077,Red_Eco-Friendly_Shoes,Red Eco-Friendly Shoes,4,20,,100,,20,,1,0x80000000,7,2,64,,18,1,,{ bonus bCritical,5; bonus2 bHPRegenRate,4,10000; bonus2 bSPRegenRate,1,10000; },{},{} -22078,Unity_STR_Boots,Unity STR Boots,4,10,,300,,20,,1,0xFFFFFFFF,63,2,64,,1,1,,{ .@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bStr,.@r/2; } },{},{} -22079,Unity_AGI_Boots,Unity AGI Boots,4,10,,300,,20,,1,0xFFFFFFFF,63,2,64,,1,1,,{ .@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bAgi,.@r/2; } },{},{} -22080,Unity_DEX_Boots,Unity DEX Boots,4,10,,300,,20,,1,0xFFFFFFFF,63,2,64,,1,1,,{ .@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bDex,.@r/2; } },{},{} -22081,Unity_INT_Boots,Unity INT Boots,4,10,,300,,20,,1,0xFFFFFFFF,63,2,64,,1,1,,{ .@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bInt,.@r/2; } },{},{} -22082,Polyhedron_Shoes,Polyhedron Shoes,4,0,,500,,12,,1,0xFFFFFFFF,63,2,64,,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; } },{},{} -22083,Private_Doram_Shoes,Private Doram Shoes,4,20,,500,,25,,1,0x80000000,7,2,64,,100,1,,{ bonus bMaxHP,100; bonus bMaxSP,50; .@r = getrefine()/3; bonus bHPrecovRate,.@r*10; bonus bSPrecovRate,.@r*10; },{},{} -22084,Luxury_Doram_Shoes,Luxury Doram Shoes,4,20,,600,,30,,1,0x80000000,7,2,64,,140,1,,{ bonus bMaxHP,300; bonus bMaxSP,100; .@r = getrefine()/3; bonus bHPrecovRate,20*.@r; bonus bSPrecovRate,20*.@r; },{},{} -22085,Elegant_Doram_Shoes,Elegant Doram Shoes,4,20,,700,,35,,1,0x80000000,7,2,64,,175,1,,{ bonus bMaxHPrate,10; bonus bMaxSPrate,5; .@r = getrefine()/2; bonus bMaxHP,100*.@r; bonus bMaxSP,20*.@r; if(.@r >= 4) bonus2 bSkillUseSP,"SU_LOPE",5; },{},{} -22089,Crimson_Gaiter_,Crimson Gaiter,4,0,,500,,10,,1,0xFFFFFFFF,63,2,64,,50,1,,{ bonus bCritical,2; bonus bCritAtkRate,2; if(getrefine()>=7){ bonus bCritical,3; bonus bCritAtkRate,3; } },{},{} -22101,Angel_Poring_Boots,Angel Poring Boots,4,10,,300,,15,,1,0xFFFFFFFF,63,2,64,,1,1,,{ bonus bAllStats,1; skill "AL_HEAL",1; },{},{} -22103,Excelion_Leg,Excelion Leg,4,0,,500,,13,,0,0xFFFFFFFF,63,2,64,,100,1,,{ .@r = getrefine(); bonus bMaxHP,5+((BaseLevel > 129) ? 4 : 0)+(.@r/3)*3; bonus bMaxSP,5+((BaseLevel > 129) ? 4 : 0)+(.@r/3)*3; },{},{} -22104,Pororoca_Shoes,Pororoca Shoes,4,20,,500,,15,,0,0xFFFFFFFF,63,2,64,,100,1,0,{ bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bMdef,15; bonus bMatkRate,2; bonus2 bMagicAtkEle,Ele_Water,2; skill "SA_DELUGE",5; if (getrefine()>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bMatkRate,3; bonus2 bMagicAtkEle,Ele_Water,3; } if (getrefine()>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bMatkRate,5; bonus2 bMagicAtkEle,Ele_Water,5; } },{},{} -22106,Giant_Boots,Giant Boots,4,0,,500,,13,,1,0xFFFFFFFF,63,2,64,,85,1,,{ bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; bonus bMaxHPrate,2; bonus bMaxSPrate,2; .@r = getrefine(); if (.@r > 4) { bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; bonus bMaxHPrate,4; bonus bMaxSPrate,4; } if (.@r > 6) { bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; bonus bMaxHPrate,4; bonus bMaxSPrate,4; } },{},{} -22107,Modified_Str_Boots,Modified Str Boots,4,20,,600,,25,,0,0x60000000,63,2,64,,99,1,,{ .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAtk,7*(.@r/3); if(readparam(bStr)>=120) bonus bBaseAtk,50; },{},{} -22108,Modified_Int_Boots,Modified Int Boots,4,20,,600,,25,,0,0x60000000,63,2,64,,99,1,,{ .@r = getrefine(); bonus bMdef,5; bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMatk,10*(.@r/3); if(readparam(bInt)>=120) bonus bMatk,60; },{},{} -22109,Modified_Agi_Boots,Modified Agi Boots,4,20,,600,,25,,0,0x60000000,63,2,64,,99,1,,{ .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAspdRate,3*(.@r/3); if(readparam(bAgi)>=120) bonus bAspd,1; },{},{} -22110,Modified_Vit_Boots,Modified Vit Boots,4,20,,600,,25,,0,0x60000000,63,2,64,,99,1,,{ .@r = getrefine(); bonus bMaxHP,300+(300*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); if(readparam(bVit)>=120) bonus bMaxHPrate,8; },{},{} -22111,Modified_Dex_Boots,Modified Dex Boots,4,20,,600,,25,,0,0x60000000,63,2,64,,99,1,,{ .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bDex,3*(.@r/3); if(readparam(bDex)>=120){ bonus bLongAtkRate,5; bonus bFixedCast,-500; } },{},{} -22112,Modified_Luk_Boots,Modified Luk Boots,4,20,,600,,25,,0,0x60000000,63,2,64,,99,1,,{ .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMdef,5; bonus bCritAtkRate,2*(.@r/3); if(readparam(bLuk)>=120) bonus bCritAtkRate,30; },{},{} -22113,Modified_Str_Boots_,Modified Str Boots,4,20,,600,,25,,1,0x60000000,63,2,64,,99,1,,{ .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAtk,7*(.@r/3); if(readparam(bStr)>=120) bonus bBaseAtk,50; },{},{} -22114,Modified_Int_Boots_,Modified Int Boots,4,20,,600,,25,,1,0x60000000,63,2,64,,99,1,,{ .@r = getrefine(); bonus bMdef,5; bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMatk,10*(.@r/3); if(readparam(bInt)>=120) bonus bMatk,60; },{},{} -22115,Modified_Agi_Boots_,Modified Agi Boots,4,20,,600,,25,,1,0x60000000,63,2,64,,99,1,,{ .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAspdRate,3*(.@r/3); if(readparam(bAgi)>=120) bonus bAspd,1; },{},{} -22116,Modified_Vit_Boots_,Modified Vit Boots,4,20,,600,,25,,1,0x60000000,63,2,64,,99,1,,{ .@r = getrefine(); bonus bMaxHP,300+(300*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); if(readparam(bVit)>=120) bonus bMaxHPrate,8; },{},{} -22117,Modified_Dex_Boots_,Modified Dex Boots,4,20,,600,,25,,1,0x60000000,63,2,64,,99,1,,{ .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bDex,3*(.@r/3); if(readparam(bDex)>=120){ bonus bLongAtkRate,5; bonus bFixedCast,-500; } },{},{} -22118,Modified_Luk_Boots_,Modified Luk Boots,4,20,,600,,25,,1,0x60000000,63,2,64,,99,1,,{ .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMdef,5; bonus bCritAtkRate,2*(.@r/3); if(readparam(bLuk)>=120) bonus bCritAtkRate,30; },{},{} -22120,Shoes_of_Punishment,Shoes of Punishment,4,20,,500,,15,,0,0xFFFFFFFF,63,2,64,,100,1,0,{ bonus bMdef,15; bonus bMatkRate,2; bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus2 bSkillAtk,"AB_JUDEX",30; bonus2 bMagicAddEle,Ele_Holy,2; .@r = getrefine(); if (.@r>=5) { bonus bMatkRate,3; bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus2 bMagicAddEle,Ele_Holy,3; } if (.@r>=7) { bonus bMatkRate,5; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bMagicAddEle,Ele_Holy,5; } },{},{} -22122,Para_Team_Boots100,Awakened Eden Group Boots I,4,0,,0,,22,,0,0xFFFFFFFF,63,2,64,,100,1,,{ bonus bAllStats,1; bonus bHPrecovRate,30; bonus bSPrecovRate,14; },{},{} -22123,Para_Team_Boots115,Awakened Eden Group Boots II,4,0,,0,,25,,0,0xFFFFFFFF,63,2,64,,115,1,,{ bonus bAllStats,1; bonus bHPrecovRate,36; bonus bSPrecovRate,18; },{},{} -22124,Para_Team_Boots130,Awakened Eden Group Boots III,4,0,,0,,27,,0,0xFFFFFFFF,63,2,64,,130,1,,{ bonus bAllStats,2; bonus bHPrecovRate,36; bonus bSPrecovRate,18; },{},{} -22125,Para_Team_Boots145,Awakened Eden Group Boots IV,4,0,,0,,30,,0,0xFFFFFFFF,63,2,64,,145,1,,{ bonus bAllStats,2; bonus bHPrecovRate,40; bonus bSPrecovRate,20; },{},{} -22126,Para_Team_Boots160,Awakened Eden Group Boots V,4,0,,0,,30,,0,0xFFFFFFFF,63,2,64,,160,1,,{ bonus bAllStats,2; bonus bHPrecovRate,40; bonus bSPrecovRate,20; bonus bUseSPrate,-5; },{},{} -22131,Spurred_Boots,Spurred Boots,4,0,,500,,0,,1,0xFFFFFFFF,63,2,64,,100,1,0,{ .@r = getrefine(); .@bonus = 5; if (.@r >=7) { .@bonus += 5; } if (.@r >=9) { .@bonus += 5; } bonus bMaxSPrate,.@bonus; bonus bSpeedRate,25; /* fix me: unknown speed value */ },{},{} -22133,Illusion_Shoes,Illusion Shoes,4,20,,400,,10,,1,0xFFFFFFFE,63,2,64,,99,1,0,{ .@r = getrefine(); bonus bMaxHP,(100+(100*.@r)); bonus bMaxSP,(10+(5*.@r)); },{},{} -22134,Enforcer_Shoes,Enforcer Shoes,4,20,,400,,12,,0,0xFFFFFFFF,63,2,64,,100,1,0,{ .@r = getrefine(); .@hpsp = 3; .@a = getskilllv("GC_WEAPONCRUSH"); .@b = getskilllv("GC_WEAPONBLOCKING"); .@c = getskilllv("GC_COUNTERSLASH"); if (.@r >= 5) { .@hpsp += 7; .@dmg = BaseLevel; if (.@r >= 7) { .@hpsp += 10; .@dmg += BaseLevel + 30*getskilllv("AS_POISONREACT"); } bonus2 bSkillAtk,"ASC_METEORASSAULT",.@dmg; } bonus bMaxHPrate,.@hpsp; bonus bMaxSPrate,.@hpsp; bonus bMdef,10; skill "BS_MAXIMIZE",1; bonus2 bSkillUseSP,"ASC_METEORASSAULT",8; bonus2 bAddClass,Class_All,4*.@a; bonus2 bSkillCooldown,"GC_HALLUCINATIONWALK",-5000*.@b; bonus2 bIgnoreDefClassRate,Class_All,20*.@c; bonus2 bVariableCastrate,"ASC_METEORASSAULT",-7*(.@a+.@b+.@c); },{},{} -22138,Devil_Worshipper_Shoes,Devil Worshipper Shoes,4,20,,500,,15,,0,0xFFFFFFFF,63,2,64,,100,1,0,{ bonus bMdef,15; bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bMatkRate,2; bonus2 bMagicAtkEle,Ele_Neutral,2; bonus2 bMagicAtkEle,Ele_Fire,2; .@r = getrefine(); if (.@r>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bMatkRate,3; bonus2 bMagicAtkEle,Ele_Neutral,3; bonus2 bMagicAtkEle,Ele_Fire,3; } if (.@r>=5) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bMatkRate,5; bonus2 bMagicAtkEle,Ele_Neutral,5; bonus2 bMagicAtkEle,Ele_Fire,5; } },{},{} -22141,YSF01_Greave,YSF01 Greave,4,0,,1300,,25,,1,0xFFFFFFFF,63,2,64,,170,1,0,{ .@r = getrefine(); if (.@r >= 8) { bonus bAspdRate,8; if (.@r >= 11) { bonus bAspd,1; if (.@r >= 13) { .@val = 10; } } } if (readparam(bLuk) >= 125) { .@val += 30; } if (.@val) { bonus bCritAtkRate,.@val; } },{},{} -22145,Tengu's_Shoes,Tengu's Shoes,4,20,,400,,12,,0,0xFFFFFFFF,63,2,64,,100,1,0,{ .@r = getrefine(); .@a = getskilllv("SR_GENTLETOUCH_REVITALIZE"); .@b = getskilllv("SR_GENTLETOUCH_CURE"); .@c = getskilllv("SR_GENTLETOUCH_ENERGYGAIN"); .@hpsp = 3; if (.@r >= 5) { .@hpsp += 7; .@red = 5; if (.@r >= 7) { .@hpsp += 10; .@red += 5; } bonus2 bSkillUseSP,"MO_BODYRELOCATION",.@red; } bonus bMdef,10; bonus bMaxHPrate,.@hpsp+(2*.@b); bonus bMaxSPrate,.@hpsp; skill "SA_CASTCANCEL",1; bonus2 bSkillUseSP,"MO_BODYRELOCATION",5; bonus bDef,30*.@a; bonus2 bSubRace,RC_DemiHuman,.@a; bonus2 bSubRace,RC_Player_Human,.@a; bonus2 bVariableCastrate,"MO_CALLSPIRITS",-.@c*10; bonus2 bVariableCastrate,"MO_STEELBODY",-.@c*10; bonus2 bFixedCastrate,"CH_SOULCOLLECT",-.@c*10; bonus bAspdRate,2*getskilllv("SR_GENTLETOUCH_CHANGE"); bonus2 bAddClass,Class_All,4*getskilllv("SR_GENTLETOUCH_QUIET"); },{},{} -22170,Survivor's_Shoes,Survivor's Shoes,4,10,,500,,15,,0,0xFFFFFFFF,63,2,64,,100,1,0,{ .@r = getrefine(); if (.@r >= 7) { .@hpsp = 20; .@dmg = 10; } else if (.@r >= 5) { .@hpsp = 10; .@dmg = 5; } else { .@hpsp = 3; .@dmg = 2; } bonus bMdef,15; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bMaxHPrate,.@hpsp; bonus bMaxSPrate,.@hpsp; bonus bMatkRate,.@dmg; bonus2 bMagicAtkEle,Ele_Wind,.@dmg; bonus2 bMagicAtkEle,Ele_Earth,.@dmg; },{},{} -22171,Ancient_Hero_Boots,Ancient Hero Boots,4,20,,600,,15,,1,0xFFFFFFFF,63,2,64,,100,1,0,{ .@r = getrefine(); bonus bMaxHP,500; bonus bMaxSP,50; bonus bMaxHPrate,2*(.@r/3); bonus bMaxSPrate,.@r/3; if (.@r >= 9) { .@val = -300; if (.@r >= 12) { .@val -= 200; if (.@r >= 14) { bonus bDelayRate,-5; } } bonus bFixedCast,.@val; } },{},{} -22172,Gray_Wing_Boots,Gray Wing Boots,4,20,,500,,15,,0,0xFFFFFFFF,63,2,64,,100,1,0,{ .@r = getrefine(); bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bMdef,15; bonus bLongAtkRate,2; bonus bCritAtkRate,2; skill "TF_HIDING",1; if (.@r>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bLongAtkRate,3; bonus bCritAtkRate,3; } if (.@r>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bLongAtkRate,5; bonus bCritAtkRate,5; } },{},{} -22173,Beginner's_Boots,Beginner's Boots,4,20,,0,,10,,1,0xFFFFFFFF,63,2,64,,100,0,0,{ bonus bMaxHP,300; bonus bMaxSP,50; bonus bFlee,15; bonus bHPrecovRate,10; bonus bSPrecovRate,10; },{},{} -22189,Pilgrim_Shoes,Pilgrim Shoes,4,20,,500,,15,,0,0xFFFFFFFF,63,2,64,,100,1,0,{ .@r = getrefine(); bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bDef,50*getskilllv("AB_SECRAMENT"); bonus bMdef,15; bonus bAspdRate,4*getskilllv("AB_CANTO"); bonus2 bSkillCooldown,"AB_PRAEFATIO",-1000; bonus bDelayrate,-6*getskilllv("AB_PRAEFATIO"); bonus2 bSubRace,RC_DemiHuman,2*getskilllv("AB_SECRAMENT"); bonus2 bSubRace,RC_Player_Human,2*getskilllv("AB_SECRAMENT"); bonus bHealPower,5*getskilllv("AB_HIGHNESSHEAL"); if (.@r>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bUseSPrate,-3; } if (.@r>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bUseSPrate,-5; } },{},{} -22190,Illusion_Boots,Illusion Boots,4,0,,600,,16,,1,0x416E5CEA,63,2,64,,100,1,0,{ .@r = getrefine(); bonus bCritical,(5*(.@r/3)); bonus bAspdRate,.@r; },{},{} -22192,Illusion_Goibne's_Greaves,Illusion Goibne's Greaves,4,0,,1200,,42,,1,0xFFFFFFFE,63,2,64,,130,1,0,{ .@r = getrefine(); bonus bMaxHPrate,5; bonus bMaxSPrate,5; if (.@r >= 7) { bonus bVariableCastrate,-5; if (.@r >= 9) { bonus bLongAtkRate,10; } } },{},{} -22195,Booster_Shoes,Booster Shoes,4,20,,800,,30,,1,0xFFFFFFFF,63,2,64,,100,1,,{ .@r = getrefine(); bonus bMdef,10; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bSubRace,RC_Player_Human,5; if (.@r>=7) { if (readparam(bStr)>=125) bonus bBaseAtk,90; if (readparam(bAgi)>=125) bonus bAspd,2; if (readparam(bVit)>=125) bonus bMaxHPrate,12; if (readparam(bInt)>=125) bonus bMatk,120; if (readparam(bDex)>=125) bonus bLongAtkRate,10; if (readparam(bLuk)>=125) bonus bCritAtkRate,20; } if (.@r>=9) { if (readparam(bStr)>=125) bonus bBaseAtk,90; if (readparam(bAgi)>=125) bonus bAspd,2; if (readparam(bVit)>=125) bonus bMaxHPrate,12; if (readparam(bInt)>=125) bonus bMatk,120; if (readparam(bDex)>=125) bonus bLongAtkRate,10; if (readparam(bLuk)>=125) bonus bCritAtkRate,20; } },{},{} -22196,Illusion_Leg_A-type,Illusion Leg A-type,4,20,,500,,20,,1,0xFFFFFFFF,63,2,64,,130,1,,{ .@r = getrefine(); bonus bMaxSP,200+(20*(.@r/2)); if (.@r >= 7) { bonus bLongAtkRate,5; } },{},{} -22197,Illusion_Leg_B-type,Illusion Leg B-type,4,20,,500,,20,,1,0xFFFFFFFF,63,2,64,,130,1,,{ .@r = getrefine(); bonus bMaxSP,200+(20*(.@r/2)); if (.@r >= 7) { bonus2 bMagicAtkEle,Ele_All,5; } },{},{} -22198,Traveler_Shoes,Traveler Shoes,4,20,,500,,15,,0,0xFFFFFFFF,63,2,64,,100,1,0,{ bonus bMdef,15; bonus bMaxHPrate,3+(2*getskilllv("WM_FRIGG_SONG")); bonus bMaxSPrate,3; bonus bMatkRate,2; bonus2 bMagicAtkEle,Ele_Neutral,5; bonus bAllStats,getskilllv("WA_SWING_DANCE"); bonus bAspdRate,4*getskilllv("MI_HARMONIZE"); bonus2 bSkillAtk,"WM_METALICSOUND",10*getskilllv("WM_GLOOMYDAY"); bonus2 bVariableCastrate,"WM_METALICSOUND",-10*getskilllv("WM_GLOOMYDAY"); bonus3 bAddEff,Eff_Sleep,2*getskilllv("WM_LULLABY_DEEPSLEEP"),ATF_MAGIC; .@r = getrefine(); if (.@r>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bMatkRate,3; bonus2 bMagicAtkEle,Ele_Neutral,3; } if (.@r>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bMatkRate,5; bonus2 bMagicAtkEle,Ele_Neutral,5; } },{},{} -22199,Lava_Leather_Boots,Lava Leather Boots,4,20,,600,,50,,1,0xFFFFFFFF,63,2,64,,175,1,0,{ .@r = getrefine(); bonus2 bAddClass,Class_All,2; if (.@r>=7) bonus bBaseAtk,25; if (.@r>=9) bonus bBaseAtk,15; },{},{} -22200,Lava_Leather_Shoes,Lava Leather Shoes,4,20,,600,,50,,1,0xFFFFFFFF,63,2,64,,175,1,0,{ .@r = getrefine(); bonus bCritical,5; if (.@r>=7) bonus2 bAddSize,Size_All,5; if (.@r>=9) bonus bCritAtkRate,5; },{},{} -22201,Lava_Leather_Sandals,Lava Leather Sandals,4,20,,500,,25,,1,0xFFFFFFFF,63,2,64,,175,1,0,{ .@r = getrefine(); bonus2 bMagicAtkEle,Ele_Fire,3; if (.@r>=7) bonus bMatk,25; if (.@r>=9) bonus bMatk,15; },{},{} -22207,Imperial_Boots,Imperial Boots,4,20,,400,,12,,0,0xFFFFFFFF,63,2,64,,100,1,0,{ .@r = getrefine(); bonus bMdef,10; bonus bMaxHPrate,3; bonus bMaxSPrate,3; skill "AL_INCAGI",1; bonus2 bSkillAtk,"LG_BANISHINGPOINT",10*getskilllv("LG_CANNONSPEAR"); bonus2 bAddClass,Class_All,4*getskilllv("CR_DEVOTION"); if (getskilllv("LG_INSPIRATION")>=5) bonus2 bSkillCooldown,"LG_SHIELDSPELL",-2000; bonus2 bIgnoreDefClassRate,Class_All,20*getskilllv("LG_PINPOINTATTACK"); if (.@r>=5) { bonus bMaxSPrate,7; bonus bMaxHPrate,7; bonus bLongAtkRate,5; } if (.@r>=7) { bonus bMaxSPrate,10; bonus bMaxHPrate,10; bonus bLongAtkRate,5; } },{},{} -22210,Fluffy_Fish_Shoes,Fluffy Fish Shoes,4,20,,100,,12,,0,0xFFFFFFFF,63,2,64,,100,1,0,{ .@r = getrefine(); .@hpsp = 3; .@val = -10 * getskilllv("SU_SHRIMPARTY"); if (.@r>=5) { .@hpsp += 7; .@delay = -10; if (.@r>=7) { .@hpsp += 10; .@delay -= 10; } bonus bDelayrate,.@delay; } if (getskilllv("SU_SPIRITOFSEA") == 1) { autobonus3 "{ bonus2 bResEff,Eff_Stun,10000; bonus2 bResEff,Eff_Sleep,10000; bonus2 bResEff,EFF_Stone,10000; }",1000,30000,"SU_GROOMING"; } if (getskilllv("SU_GROOMING") == 5) { bonus bFixedCastrate,-50; bonus bNoKnockback; } bonus bMaxHPrate,.@hpsp; bonus bMaxSPrate,.@hpsp; bonus bMdef,10; bonus2 bVariableCastrate,"SU_FRESHSHRIMP",.@val; bonus2 bVariableCastrate,"SU_BUNCHOFSHRIMP",.@val; bonus2 bVariableCastrate,"SU_TUNABELLY",.@val; bonus2 bVariableCastrate,"SU_TUNAPARTY",.@val; bonus2 bVariableCastrate,"SU_SHRIMPARTY",.@val; bonus bHealPower,10*getskilllv("SU_PURRING"); },{},{} -22214,Authority_Sandals,Authority Sandals,4,20,,500,,10,,0,0xFFFFFFFF,63,2,64,,100,1,0,{ .@r = getrefine(); bonus bMdef,10; bonus bAllStats,10; bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; if (.@r>=7) bonus bAllStats,10; if (.@r>=9) bonus bAllStats,10; },{},{} -22238,Great_Hero_Boots,Great Hero Boots,4,20,,600,,15,,1,0xFFFFFFFF,63,2,64,,150,1,0,{ .@r = getrefine(); bonus bMaxHP,1500; bonus bMaxSP,150; bonus bMaxHPrate,.@r/3; bonus bMaxSPrate,.@r/3; if (.@r >= 7) { bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; } if (.@r >= 9) { .@val = -500; if (.@r >= 11) { .@val -= 200; if (.@r >= 13) { bonus bDelayRate,-5; bonus bVariableCastrate,-5; } } bonus bFixedCast,.@val; } },{},{} -//=================================================================== -// New Usable items -//=================================================================== -22508,Para_Team_Mark_,Eden Group Mark,2,0,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{ warp "moc_para01",171,115; },{},{} -22507,ShabbyOldScroll,Old Scroll,2,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_22507"; },{},{} -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; },{},{} -22511,Fenrir_Card__,Fenrir's Power Scroll,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ bonus_script "{ bonus bMatk,25; bonus bFixedCastRate,-50; }",300,1025; },{},{} -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; },{},{} -22514,Candy_Holder,Candy Holder,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_Candy_Holder,1); getrandgroupitem(IG_Candy_Holder,1); getrandgroupitem(IG_Candy_Holder,1); },{},{} -22515,Twisted_Key_of_Time,Twisted Key of Time,3,10,,300,,,,,,,,,,,,,{},{},{} -22516,Dark_Red_Clot,Black As Night Piece,3,10,,0,,,,,,,,,,,,,{},{},{} -22517,Loki_Summon_Scroll,Rocker Summoning Scroll,3,10,,0,,,,,,,,,,,,,{},{},{} -22518,Idn_Wisdom_Egg,Egg Of Wisdom,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Idn_Wisdom_Egg); },{},{} -22519,Pc_Stop_Cancel,Stops Buff,3,10,,0,,,,,,,,,,,,,{},{},{} -22520,Stops_Buff_Reset,Stops Buff Reset,3,10,,0,,,,,,,,,,,,,{},{},{} -22521,Level_Up_Box_,Level Up Box,18,10,,0,,,,0,0xFFFFFFFF,63,2,,,80,,,{ /*TODO*/ },{},{} -22522,Level_Up_Box100,Level Up Box(100),18,10,,0,,,,0,0xFFFFFFFF,63,2,,,100,,,{ getgroupitem(IG_Level_Up_Box100); },{},{} -22523,Level_Up_Box120,Level Up Box(120),18,10,,0,,,,0,0xFFFFFFFF,63,2,,,120,,,{ getgroupitem(IG_Level_Up_Box120); },{},{} -22524,Level_Up_Box130,Level Up Box(130),18,10,,0,,,,0,0xFFFFFFFF,63,2,,,130,,,{ getgroupitem(IG_Level_Up_Box130); },{},{} -22525,Level_Up_Box140,Level Up Box(140),18,10,,0,,,,0,0xFFFFFFFF,63,2,,,140,,,{ getgroupitem(IG_Level_Up_Box140); },{},{} -22526,Level_Up_Box150,Level Up Box(150),18,10,,0,,,,0,0xFFFFFFFF,63,2,,,150,,,{ getgroupitem(IG_Level_Up_Box150); },{},{} -22527,Level_Up_Box160,Level Up Box(160),18,10,,0,,,,0,0xFFFFFFFF,63,2,,,160,,,{ getgroupitem(IG_Level_Up_Box160); },{},{} -22528,Pet_Exchange_Ticket_Box,Pet Exchange Ticket Box,18,10,,20,,,,,,,,,,,,,{ /*TODO*/ },{},{} -22530,Christmas_Box,Christmas Box,18,10,,200,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Christmas_Box); },{},{} -22531,Special_Christmas_Box,Special Christmas Box,18,10,,200,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Special_Christmas_Box); },{},{} -22532,Santa_Gift,Santa Gift,18,10,,200,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Santa_Gift); },{},{} -22533,New_Year_Gift_Box,New Year Gift Box,18,10,,200,,,,0,0xFFFFFFFF,63,2,,,1,,,{ /*TODO*/ },{},{} -22534,Closedmind_Box,Closed Mind Box,18,10,,1000,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Sealed_Mind_Box); },{},{} -22535,WorkerScroll_A,Scroll Summoning Workers(Male),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{} -22536,WorkerScroll_B,Scroll Summoning Workers(Female),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{} -22537,PrizeOfHero,Prize Of Hero,2,0,,100,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getrandgroupitem(IG_PrizeOfHero,1); },{},{} -22538,Hanbok_bag,Hanbok bag,2,0,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_HANBOK,600000,0; },{},{} -22540,Runstone_Lux,Lux Anima Runestone,11,2,,10,,,,,0xFFFFFFFF,56,2,,,,,,{ itemskill "RK_LUXANIMA",1; },{},{} -22541,PC_Room_Coupon_Box_VI,PC Room Coupon Box VI,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{} -22542,Center_Potion_B,Concentration Potion,2,10,,100,,,,0,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ASPDPOTION0,1800000,4; },{},{} -22543,Berserk_Potion_B,Berserk Potion,2,10,,200,,,,0,0x6,63,2,,,,,,{ sc_start SC_ASPDPOTION2,1800000,9; },{},{} -22544,Awakening_Potion_B,Awakening Potion,2,10,,150,,,,0,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ASPDPOTION1,1800000,6; },{},{} -22545,Speed_Potion,Speed Potion,2,10,,100,,,,0,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_SPEEDUP1,5000,50; },{},{} -22546,Slow_Potion,Slow Potion,2,10,,100,,,,0,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_SLOWDOWN,5000,100; },{},{} -22547,Anti-Payne_Moment,Anti-Payne Moment,2,10,,100,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{} -22548,Wed_Cursed,Wed Cursed,2,10,,30,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{} -22549,Poison_Bottle_,Poison Bottle,2,10,,100,,,,0,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; },{},{} -22550,Cookie_Bag_B,Sweets Pocket,2,10,,70,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{} -22551,Sesame_Pastry_B,Teacake,2,10,,70,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{} -22552,Honey_Pastry_B,Fried Pastry,2,10,,70,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{} -22553,Rainbow_Cake_B,Rainbow Bread,2,10,,70,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{} -22554,First_Aid_Box,First Aid Box,18,10,,200,,,,0,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_FirstAid,1); getrandgroupitem(IG_FirstAid,1); getrandgroupitem(IG_FirstAid,1); getrandgroupitem(IG_FirstAid,1); getrandgroupitem(IG_FirstAid,1); },{},{} -22555,Gourmet_Chocolate,Gourmet Chocolate,0,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{} -22556,Luxury_Chocolate,Luxury Chocolate,0,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{} -22557,Masterpieces_of_Artisan_Chocolate,Masterpieces of Artisan Chocolate,0,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{} -22558,Lucky_Bag,Lucky Bag,2,20,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getrandgroupitem(IG_Lucky_Bag,1); },{},{} -22559,Mock_Strawberry,Mock Strawberry,11,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 50,50; itemskill "SM_ENDURE",3; },{},{} -22563,Lucky_Bag_Of_New_Era,Lucky Bag Of New Era,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ /* TODO */ },{},{} -22566,Frost_Crystal,Last Year's Frost,3,20,,0,,,,,,,,,,,,,{},{},{} -22567,Squad_Prize,Expedition Award Box,0,20,,100,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -22568,Nyd_Summon_Scroll,Nidhoggur Summon Scroll,0,20,,100,,,,,0xFFFFFFFF,63,,2,,,,,{},{},{} -22569,Gift_New_start,Gift New start,18,10,,100,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{} -22571,Easter_Egg,Easter Egg,11,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{},{},{} -22589,Savage_Ora,Savage Ora Ora,3,10,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{} -22590,Grand_Peco_Ora,Grand Peco Ora Ora,3,10,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{} -22591,Dest_Wolf_Ora,Desert Wolf Ora Ora,3,10,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{} -22592,Happy_Call_Box,Happy Call Box,18,10,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{} -22605,Gingerbread2,Ginger Bread,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{} -22610,New_Beginnings_Box,New Beginnings Box,2,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 12803,1; getitem 12802,1; getitem 12809,1; },{},{} -22611,Packing_Envelope,Packed Envelope,11,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /* TODO */ },{},{} -22612,Corrupt_Reagents,Corrupt Reagents,11,10,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ /* TODO */ },{},{} -22613,Contaminated_Reagents,Contaminated Reagents,11,10,,50,,,,,0xFFFFFFFF,63,2,,,,,,{ /* TODO */ },{},{} -22614,Premium_Manual,Premium Manual,2,2,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_EXPBOOST,8640000,50; sc_start SC_ITEMBOOST,8640000,200; },{},{} -22617,Clear_Box_S,Clear Box S,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{} -22618,Clear_Box_A,Clear Box A,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{},{},{} -22619,Ghost_Summon_Scroll,Ghost Scroll,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ /* mercenary_create M_E_DEVILING,1800000; */ },{},{} -22620,Memorial_Box,Box Of Memories,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ /* TODO */ },{},{} -22621,Squid_Bbq,Barbecued Squid,2,5000,,250,,,,,0xFFFFFFFF,63,2,,,,,,{ specialeffect2 EF_EXIT; sc_start SC_JP_EVENT04,300000,25; percentheal 5,5; },{},{} -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 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 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 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,,,,,,,,,,,,,{},{},{} -22657,Honey_Songpyun_,Honey Songpyun,0,20,,200,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 20,0; },{},{} -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,,,,,,{ .@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,Chest_Of_Death,Death's Chest,2,0,,0,,,,0,0xFFFFFFFF,63,2,,,170,,,{ getitem rand(6814,6819),1; },{},{} -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,Pieces_Of_Sentiment,Sentimental Fragment,11,0,,1,,,,0,0xFFFFFFFF,63,2,,,100,,,{ callfunc("F_Pieces_Of_Sentiment"); },{},{} -22691,Piece_Of_Record1,Record Fragment,0,,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ warp "un_bk_q",98,143; },{},{} -22692,Piece_Of_Record2,Record Fragment,0,,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ warp "un_bk_q",45,276; },{},{} -22693,Piece_Of_Record3,Record Fragment,0,,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ warp "un_bk_q",217,346; },{},{} -22694,Piece_Of_Record4,Record Fragment,0,,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ warp "un_bk_q",273,235; },{},{} -22695,Piece_Of_Record5,Record Fragment,0,,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ warp "un_bk_q",275,290; },{},{} -22699,Test_Reagent,Test Reagent,2,,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ bonus_script "bonus bFlee,100;",5,9; sc_start SC_BLIND,5000,0,10000,0; },{},{} -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*/ },{},{} -22702,STR_Soul_Potion,STR Reduction Potion,11,10,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashReduceStat",bStr,-1,22702; },{},{} -22703,AGI_Soul_Potion,STR Reduction Potion,11,10,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashReduceStat",bAgi,-1,22703; },{},{} -22704,VIT_Soul_Potion,STR Reduction Potion,11,10,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashReduceStat",bVit,-1,22704; },{},{} -22705,INT_Soul_Potion,STR Reduction Potion,11,10,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashReduceStat",bInt,-1,22705; },{},{} -22706,DEX_Soul_Potion,STR Reduction Potion,11,10,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashReduceStat",bDex,-1,22706; },{},{} -22707,LUK_Soul_Potion,STR Reduction Potion,11,10,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashReduceStat",bLuk,-1,22707; },{},{} -22708,Pitapat_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,Bullet_Case_Blood_,Bloody Cartridge,2,10,,250,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 13222,500; },{},{} -22738,Bullet_Case_Silver_,Silver Cartridge,2,10,,250,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 13221,500; },{},{} -22739,Sphere_Case_Wind_,Lightning Sphere Pack,2,10,,350,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 13224,500; },{},{} -22740,Sphere_Case_Darkness_,Blind Sphere Pack,2,10,,350,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 13226,500; },{},{} -22741,Sphere_Case_Poison_,Poison Sphere Pack,2,10,,350,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 13225,500; },{},{} -22742,Sphere_Case_Water_,Freezing Sphere Pack,2,10,,350,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 13227,500; },{},{} -22743,Sphere_Case_Fire_,Flare Sphere Pack,2,10,,350,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 13223,500; },{},{} -22744,Bullet_Case_AP,Armor-Piercing Cartridge,2,10,,250,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 13215,500; },{},{} -22745,Bullet_Case_Blaze,Incandescence Shot Cartridge,2,10,,250,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 13216,500; },{},{} -22746,Bullet_Case_Fleeze,Glaciation Shot Cartridge,2,10,,250,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 13217,500; },{},{} -22747,Bullet_Case_Electric,Dengeki Shot Cartridge,2,10,,250,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 13218,500; },{},{} -22748,Bullet_Case_Stone,Hearthstone Shot Cartridge,2,10,,250,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 13219,500; },{},{} -22749,Sanctified_Bullet_Case,Purification Shot Cartridge,2,10,,250,,,,0,0xFFFFFFFF,63,2,,,,,,{ getitem 13220,500; },{},{} -22750,Trans_Scroll_Horn_Scaraba,Transformation Scroll(Horn Scaraba),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ transform 2161,1200000,SC_MTF_ASPD2,2,10; },{},{} -22751,Trans_Scroll_Wanderer,Transformation Scroll(Wanderer),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ transform 1208,1200000,SC_MTF_ASPD2,2,10; },{},{} -22752,Trans_Scroll_Gazeti,Transformation Scroll(Gazeti),2,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{ transform 1778,1200000,SC_MTF_RANGEATK2,30; },{},{} -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; },{},{} -22760,Argiope_Transportin,Argiope Transportin,2,10,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{/*No Info*/},{},{} -22761,Luciola_Vespa_Transportin,Luciola Vespa Transportin,2,10,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{/*No Info*/},{},{} -22762,Centipede_Transportin,Centipede Transportin,2,10,,0,,,,0,0xFFFFFFFF,63,2,,,,,,{/*No Info*/},{},{} -22764,Pet_Exchange_Ticket_Box_,Pet Exchange Ticket Box,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ /*TODO: Confirm the allowed pet_id and chance*/ getitem callfunc("F_Rand",6116,6117,6118,6129,6130,6130,6132,6133,6134,6135,6136,6137,6138,6139,6140,6141,6142,6143),1; },{},{} -22770,Shark_Skewer,Shark Skewer,0,10,,10,,,,0,0xFFFFFFFF,63,2,,,,,,{/*No Info*/},{},{} -22771,Bluefin_Tuna_Skewer,Bluefin Tuna Skewer,0,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INCATKRATE,5000,30; },{},{} -22772,Sea_Bream_Skewer,Sea Bream Skewer,0,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_INCMATKRATE,5000,30; },{},{} -22773,Piranha_Skewer,Piranha Skewer,0,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ASPDPOTION0,5000,5; },{},{} -22774,Salmon_Skewer,Salmon Skewer,0,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_SPEEDUP0,5000,25; },{},{} -22775,Eels_Skewer,Eels Skewer,0,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_DEF_RATE,5000,30; },{},{} -22776,Carp_Skewer,Carp Skewer,0,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_MDEF_RATE,5000,30; },{},{} -22777,Gift_Buff_Set,Gift Buff Set,2,10,,100,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Gift_Buff_Set); },{},{} -22781,PC_Bang_Normal_Box,PC Bang Normal Box,2,10,,200,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getitem 547,20; /*No Info*/},{},{} -22782,PC_Bang_Wooden_Box,PC Bang Wooden Box,2,10,,200,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getitem 547,30; /*No Info*/},{},{} -22783,PC_Bang_Golden_Box,PC Bang Golden Box,2,10,,200,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getitem 547,1; getitem 985,10; /*No Info*/},{},{} -22784,PC_Bang_Platinum_Box,PC Bang Platinum Box,2,10,,200,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getitem 547,1; getitem 12017,10; getitem 678,12; /*No Info*/},{},{} -22979,C_Battle_Gum_2,[Sale] Battle Manual and Bubble Gum,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_EXPBOOST,1800000,50; sc_start SC_ITEMBOOST,1800000,100; },{},{} -22802,Safe_to_6_Equipment_Certificate,Safe to 6 Equipment Certificate,3,10,,10,,,,,,,,,,,,,{},{},{} -22808,Special_Gift_Box,Special Gift Box,2,10,,100,,,,,,,,,,,,,{},{},{} -22812,Sealed_Dracula_Scroll,Sealed Dracula Scroll,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getitem callfunc("F_Rand",6228,6232,22813,19937,17314, 6635),1; },{},{} -22813,Bearer's_Shadow_Box,Bearer's Shadow Box,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getitem callfunc("F_Rand",24180,24181,24182,24183,24184,24185),1; },{},{} -22814,Cat_Hand_Ticket,Cat Hand Ticket,3,10,,0,,,,,,,,,,,,,{},{},{} -22822,Summer_Vacation_Costumes,Summer Vacation Costumes,2,,,100,,,,0,0xFFFFFFFF,63,2,,,1,,,{ sc_start SC_DRESSUP,600000,1; },{},{} -22823,Sealed_Sniper_Scroll,Sealed Sniper Scroll,2,10,,10,,,,,,,,,,,,,{ /*getitem callfunc("F_Rand",4491,6228,6232,24196, Hasty Shadow Armor, 19882, 17474, 6635),1;*/ },{},{} -22826,Enchant_Stone_Box4,Costume Enchantment Stone Box 4,2,10,,100,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getitem callfunc("F_Rand",6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6740,6741,6742,6743,6744,6745,6790,6791,6792,6908),1; },{},{} -22827,Shadow_Cube,Shadow Cube,2,10,,10,,,,,,,,,,,,,{/*No Info*/},{},{} -22828,Sealed_Album_Scroll,Sealed Album Scroll,2,10,,100,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getitem callfunc("F_Rand",22829,6232,6228,24208,24209,17474/*,Enchanted Letter*/),1; },{},{} -22829,Sealed_Card_Album,Sealed Card Album,2,10,,100,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getitem callfunc("F_Rand",4488,4497,4486,4480,4485,4539,4487,4494,4538,4489,4490,4482,4503,4483,4491),1; },{},{} -22837,Integer_Time,Integer Time,2,10,,50,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getitem 673,5; },{},{} -22838,Something_Candy_Holder,Something Candy Holders,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Something_Candy_Holder); },{},{} -22842,Sealed_Dracula_Scroll_II,Sealed Dracula Scroll II,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getitem callfunc("F_Rand",22846,6228,6232,24223,24227,17474/*, Enchant Letter*/),1; },{},{} -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,,,,0,0xFFFFFFFF,63,2,,,1,,,{ 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 "{ bonus2 bSPDrainRate,50,5; }",300; },{},{} -22847,Prontera_Medal,Prontera Medal,2,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ warp "prontera",159,192; /*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_q",155,27; },{},{} -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,Enchant_Stone_Box5,Costume Enchantment Stone Box 5,2,20,,10,,,,,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Enchant_Stone_Box5); },{},{} -22869,Lucky_Roulette_Tickets,Lucky Roulette Ticket,2,10,,100,,,,,0xFFFFFFFF,63,2,,,50,,,{ RouletteBronze++; },{},{} -22870,Xmas_Package_14,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,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ Zeny += rand(500,550); },{},{} -22881,Binding_Rope,Rope Gallows,2,10,,0,,,,,0xFFFFFFFF,63,2,,,,,,{/*Used to catch a Lost Sheep*/},{},{} -22882,Choco_Tteokguk,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*/ },{},{} -22899,Parchment_City,Parchment City,2,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "AL_INCAGI",1; heal -15,0; },{},{} -22901,Question_Old_Blue_Box,Mysterious Blue Box,2,20,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc("F_Mysterious_box"); },{},{} -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; },{},{} -22905,Enchant_Stone_Box6,Costume Enchantment Stone Box 6,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Enchant_Stone_Box6); },{},{} -22953,Enchant_Stone_Box7,Costume Enchantment Stone Box 7,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Enchant_Stone_Box7); },{},{} -22984,Kahluna_Milk,Kahluna Milk,0,6,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_DORAM_BUF_01, 180000, 0; },{},{} -22985,Basil,Basil,0,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_DORAM_BUF_02, 180000, 0; },{},{} -// -23001,Enchant_Stone_Box8,Costume Enchantment Stone Box 8,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Enchant_Stone_Box8); },{},{} -23012,S_Small_Mana_Potion,[Sale] Small Mana Potion,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ bonus_script "bonus2 bRegenPercentSP,5,5000;",600,9; /* fix me: unknown flag and specialeffect ; disabled when LK_BERSERK */ },{},{} -23016,Cursed_Fragment,Cursed Fragment,2,1,,1,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc("F_Cursed_Fragment"); },{},{} -23038,S_Slim_White_Box,[Sale] Slim White Potion Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 11573,200; },{},{} -23042,S_Seed_Of_Yggdrasil,[NotForSale]Yggdrasil Seed,0,0,,300,,,,,0xFFFFFFFF,63,2,,,,,,{ percentheal 50,50; },{},{} -23043,S_Seed_Of_Yggdrasil_Box,[Sale] Yggdrasil Seed Box,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 23042,30; },{},{} -23046,S_Mystic_Powder,[Sale] Mystic Powder,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ bonus_script "{ bonus bFlee,20; bonus bLuk,10; }",300,9; /* fix me: unknown flag and specialeffect */ },{},{} -23047,S_Blessing_Tyr,[Sale] Blessing of Tyr,2,0,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_FLEEFOOD,300000,30; sc_start SC_HITFOOD,300000,30; sc_start SC_ATKPOTION,300000,20; sc_start SC_MATKPOTION,300000,20; },{},{} -23048,S_Resilience_Potion,[Sale] Resilience Enhancement Potion,2,,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ bonus_script "bonus bAddItemHealRate,20;",1800,9; /* fix me: unknown flag and specialeffect */ },{},{} -23058,Enchant_Stone_Box9,Costume Enchantment Stone Box 9,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Enchant_Stone_Box9); },{},{} -23076,Build_Up_Potion_SS,Build Up Potion SS,2,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ if (strcharinfo(3) == "slabw01") { sc_start SC_EP16_2_BUFF_SS,10000,0; } },{},{} -23077,Build_Up_Potion_SC,Build Up Potion SC,2,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ if (strcharinfo(3) == "slabw01") { sc_start SC_EP16_2_BUFF_SC,10000,0; } },{},{} -23078,Build_Up_Potion_AC,Build Up Potion AC,2,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ if (strcharinfo(3) == "slabw01") { sc_start SC_EP16_2_BUFF_AC,10000,0; } },{},{} -23080,Cursed_Crystal,Cursed Crystal,2,1,,500,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc("F_Cursed_Crystal"); },{},{} -23086,Enchant_Stone_Box10,Costume Enchantment Stone Box 10,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Enchant_Stone_Box10); },{},{} -23087,Small_Leather_Bag,Small Leather Bag,2,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 25180,1; getitem 25181,1; getitem 25182,1; getitem 25183,1; getitem 25184,1; getitem 25185,1; },{},{} -23123,Bullet_Case_Flare,Flare Bullet Cartridge,2,10,,250,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13228,500; },{},{} -23124,Bullet_Case_Lighting,Lightning Bullet Cartridge,2,10,,250,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13229,500; },{},{} -23125,Bullet_Case_Ice,Ice Bullet Cartridge,2,10,,250,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13230,500; },{},{} -23126,Bullet_Case_Poison,Poison Bullet Cartridge,2,10,,250,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13231,500; },{},{} -23127,Bullet_Case_Blind,Blind Bullet Cartridge,2,10,,250,,,,,0xFFFFFFFF,63,2,,,,,,{ getitem 13232,500; },{},{} -23174,Enchant_Stone_Box11,Costume Enchantment Stone Box 11,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Enchant_Stone_Box11); },{},{} -23177,Kafra_Card_,Kafra Card,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashStore"; },{},{} -23188,Unprocessed_Parts,Unprocessed Parts,2,10,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1632; },{},{} -23189,Small_Needle_Kit,Small Needle Kit,2,10,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1622; },{},{} -23187,Sap_Liquid,Sap Liquid,2,10,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1180; },{},{} -23191,Varetyr_Spear_Scroll_1_5,Level 5 Varetyr Spear,11,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "SO_VARETYR_SPEAR",5; },{},{} -23192,Diamond_Dust_Scroll_1_5,Level 5 Diamond Dust,11,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "SO_DIAMONDDUST",5; },{},{} -23193,Crimson_Rock_Scroll_1_5,Level 5 Crimson Rock,11,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "WL_CRIMSONROCK",5; },{},{} -23194,Sienna_Execrate_Scroll_1_5,Level 5 Sienna Execrate,11,10,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "WL_SIENNAEXECRATE",5,true; },{},{} -23196,Agust_Lucky_Scroll,Shining Blue Lucky Egg,18,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Agust_Lucky_Scroll); },{},{} -// -23228,Hazy_Mooncake,Hazy Mooncake,0,768,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /* unknown */ },{},{} -// -23256,Elixir_Bandages,Elixir Bandages,2,10,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ pet 1041; },{},{} -23277,Mado_Box,Emergency Magic Gear,2,10000,,3000,,,,,0x00000400,56,2,,,100,,,{ setmadogear 1; },{},{} -23280,N_Fly_Wing_,Novice Fly Wing,11,10,,0,,,,,0xFFFFFFFF,63,2,,,1:98,,,{ itemskill "AL_TELEPORT",1; },{},{} -23288,Compressed_Wing_Of_Fly,Compressed Fly Wing,11,1000,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "AL_TELEPORT",1; },{},{} -// -23299,Enchant_Stone_Box12,Costume Enchantment Stone Box 12,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Enchant_Stone_Box12); },{},{} -23307,S_Shining_Def_Scroll,[Sale] Shining Defense Scroll,2,,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ bonus_script "{ bonus bDef,500; bonus bMdef,200; }",600; /* fix me: unknown flag and specialeffect */ },{},{} -23340,S_Megaphone,[Sale] Megaphone,2,,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ input .@megaphone$; announce strcharinfo(0) + ": " + .@megaphone$,bc_all,0xFF0000; },{},{} -23524,Enchant_Stone_Box13,Costume Enchantment Stone Box 13,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Enchant_Stone_Box13); },{},{} -23629,Enchant_Stone_Box14,Costume Enchantment Stone Box 14,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Enchant_Stone_Box14); },{},{} -23682,Enchant_Stone_Box15,Costume Enchantment Stone Box 15,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Enchant_Stone_Box15); },{},{} -//=================================================================== -// Shadow Equipments -//=================================================================== -24000,T1_Shadow_Armor,Shadow Armor (Tier 1),12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ bonus bStr,1; },{},{} -24001,T1_Shadow_Weapon,Shadow Gauntlets (Tier 1),12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus bDex,1; },{},{} -24002,T1_Shadow_Shield,Shadow Shield (Tier 1),12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ bonus bLuk,1; },{},{} -24003,T1_Shadow_Shoes,Shadow Shoes (Tier 1),12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ bonus bAgi,1; },{},{} -24004,T1_Shadow_R_Accessory,Shadow Ring (Tier 1),12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ bonus bVit,1; },{},{} -24005,T1_Shadow_L_Accessory,Shadow Pendant (Tier 1),12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ bonus bInt,1; },{},{} -24006,T2_Shadow_Armor,Shadow Armor (Tier 2),12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,30,1,,{ bonus bStr,2; },{},{} -24007,T2_Shadow_Weapon,Shadow Gauntlets (Tier 2),12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,30,1,,{ bonus bDex,2; },{},{} -24008,T2_Shadow_Shield,Shadow Shield (Tier 2),12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,60,1,,{ bonus bLuk,2; },{},{} -24009,T2_Shadow_Shoes,Shadow Shoes (Tier 2),12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,90,1,,{ bonus bAgi,2; },{},{} -24010,T2_Shadow_R_Accessory,Shadow Ring (Tier 2),12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,120,1,,{ bonus bVit,2; },{},{} -24011,T2_Shadow_L_Accessory,Shadow Pendant (Tier 2),12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,150,1,,{ bonus bInt,2; },{},{} -24012,S_Promotion_Weapon,Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus bDex,1; },{},{} -24013,S_Promotion_Armor,Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ bonus bLuk,1; },{},{} -24014,S_Promotion_Shoes,Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ bonus bAgi,1; },{},{} -24015,S_Promotion_Shield,Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ bonus bVit,1; },{},{} -24016,S_Promotion_Earring,Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ bonus bInt,1; },{},{} -24017,S_Promotion_Pendant,Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ bonus bStr,1; },{},{} -24018,S_Physical_Earring,Physical Earring (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,1048576,,1,1,0,{ bonus bAspdRate,(getrefine()>=7)?2:1; },{},{} -24019,S_Physical_Weapon,Physical Weapon (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,131072,,1,1,0,{ bonus bBaseAtk,10; if(getrefine()>=7) { bonus2 bAddClass,Class_All,1; } },{},{} -24020,S_Physical_Pendant,Physical Pendant (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,2097152,,1,1,0,{ bonus bMaxHP,100; if(getrefine()>=7) { bonus bMaxHPrate,1; } },{},{} -24021,S_Magical_Earring,Magical Earring (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,1048576,,1,1,0,{ bonus bVariableCastrate,-(getrefine()>=7)?2:1; },{},{} -24022,S_Magical_Weapon,Magical Weapon (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,131072,,1,1,0,{ bonus bMatk,10; if(getrefine()>=7) { bonus bMatkRate,1; } },{},{} -24023,S_Magical_Pendant,Magical Pencil (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,2097152,,1,1,0,{ bonus bMaxSP,50; if(getrefine()>=7) { bonus bMaxSPrate,1; } },{},{} -24024,S_Breezy_Armor,Breeze Armor (Shadow),12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,0,{ bonus bFlee,5+(getrefine()>=7 ? 10 : 0); },{},{} -24025,S_Champion_Shoes,Champion Shoes (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,524288,,1,1,0,{ bonus bMaxHP,20; bonus bMaxSP,20; if(getrefine()>=7) { bonus bMaxHP,1; bonus bMaxSP,1; } },{},{} -24026,S_Athena_Shield,Athena Shield (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,262144,,1,1,0,{ bonus bDef,(getrefine()>=7)?20:10; },{},{} -24027,S_Immune_Armor,Immune Shadow Armor,12,0,,0,,0,,0,0xFFFFFFFF,63,2,65536,,1,1,0,{ bonus2 bSubEle,0,1; },{},{} -24028,S_Hard_Armor,Hard Shadow Armor,12,0,,0,,0,,0,0xFFFFFFFF,63,2,65536,,1,1,0,{ bonus bMaxHP,50; if(getrefine()>=7) { bonus bMaxHPrate,1; } },{},{} -24029,S_Ancient_Armor,Ancient Shadow Armor,12,0,,0,,0,,0,0xFFFFFFFF,63,2,65536,,1,1,0,{ bonus bHit,(getrefine()>=7)?20:10; },{},{} -24030,S_Critical_Armor,Critital Shadow Armor,12,0,,0,,0,,0,0xFFFFFFFF,63,2,65536,,1,1,0,{ bonus bCritical,(getrefine()>=7)?10:5; },{},{} -24031,S_Kingbird_Weapon,Kingbird's Shadow Weapon,12,0,,0,,0,,0,0xFFFFFFFF,63,2,131072,,1,1,0,{ bonus bBaseAtk,10; if(getrefine()>=7) { bonus bLongAtkRate,1; } },{},{} -24032,S_Cri_Hit_Weapon,Critical Hit Shadow Weapon,12,0,,0,,0,,0,0xFFFFFFFF,63,2,131072,,1,1,0,{ bonus bBaseAtk,10; if(getrefine()>=7) { bonus bCritAtkRate,1; } },{},{} -24033,S_Healing_Weapon,Healing Shadow Weapon,12,0,,0,0:10,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ if (getrefine()>=7) bonus bHealPower2,5; },{},{} -24034,S_Lucky_Weapon,Lucky Shadow Weapon,12,0,,0,,0,,0,0xFFFFFFFF,63,2,131072,,1,1,0,{ bonus bLuk,1; if(getrefine()>=7) { bonus bLuk,1; } if(getrefine()>=9) { bonus bLuk,1; } },{},{} -24035,S_Power_Earring,Power Shadow Earring,12,0,,0,,0,,0,0xFFFFFFFF,63,2,1048576,,1,1,0,{ bonus bStr,1; .@r = getrefine(); if(.@r>=7) { bonus bStr,1; } if(.@r>=9) { bonus bStr,1; } },{},{} -24036,S_Int_Pendant,Intelligent Shadow Pendant,12,0,,0,,0,,0,0xFFFFFFFF,63,2,2097152,,1,1,0,{ bonus bInt,1; .@r = getrefine(); if(.@r>=7) { bonus bInt,1; } if(.@r>=9) { bonus bInt,1; } },{},{} -24037,S_Dexterous_Armor,Dexterous Shadow Armor,12,0,,0,,0,,0,0xFFFFFFFF,63,2,65536,,1,1,0,{ bonus bDex,1; .@r = getrefine(); if(.@r>=7) { bonus bDex,1; } if(.@r>=9) { bonus bDex,1; } },{},{} -24038,S_Vital_Shoes,Vital Shadow Shoes,12,0,,0,,0,,0,0xFFFFFFFF,63,2,524288,,1,1,0,{ bonus bVit,1; .@r = getrefine(); if(.@r>=7) { bonus bVit,1; } if(.@r>=9) { bonus bVit,1; } },{},{} -24039,S_Athletic_Shield,Athletic Shadow Shield,12,0,,0,,0,,0,0xFFFFFFFF,63,2,262144,,1,1,0,{ bonus bAgi,1; .@r = getrefine(); if(.@r>=7) { bonus bAgi,1; } if(.@r>=9) { bonus bAgi,1; } },{},{} -24040,S_Lucky_Armor,Lucky Shadow Armor,12,0,,0,,0,,0,0xFFFFFFFF,63,2,65536,,1,1,0,{ bonus bLuk,1; bonus bCritical,(getrefine()/2); },{},{} -24041,S_Power_Pendant,Power Shadow Pendant,12,0,,0,,0,,0,0xFFFFFFFF,63,2,2097152,,1,1,0,{ bonus bStr,1; bonus bBaseAtk,getrefine(); },{},{} -24042,S_Int_Earring,Intelligent Shadow Earring,12,0,,0,,0,,0,0xFFFFFFFF,63,2,1048576,,1,1,0,{ bonus bInt,1; bonus bMatk,getrefine(); },{},{} -24043,S_Dexterous_Weapon,Dexterous Shadow Weapon,12,0,,0,,0,,0,0xFFFFFFFF,63,2,131072,,1,1,0,{ bonus bDex,1; bonus bHit,getrefine(); },{},{} -24044,S_Vital_Shield,Vital Shadow Shield,12,0,,0,,0,,0,0xFFFFFFFF,63,2,262144,,1,1,0,{ bonus bVit,1; bonus bDef,getrefine(); },{},{} -24045,S_Athletic_Shoes,Athletic Shadow Shoes,12,0,,0,,0,,0,0xFFFFFFFF,63,2,524288,,1,1,0,{ bonus bAgi,1; bonus bFlee,getrefine(); },{},{} -24046,S_Resist_Spell_Pendant,Resist Spell Power Pendant (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,2097152,,1,1,0,{ bonus bMdef,(getrefine()>=7)?6:3; },{},{} -24047,S_Rapid_Pendant,Rapid Pendant (Shadow),12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ .@r = getrefine(); bonus bAspdRate,1+((.@r>=9)?2:(.@r>=7)?1:0); },{},{} -24048,S_Caster_Pendant,Caster Pendant (Shadow),12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ .@r = getrefine(); bonus bVariableCastrate,1+((.@r>=9)?2:(.@r>=7)?1:0); },{},{} -24049,S_Hard_Earring,Hard Earring (Shadow),12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ bonus bMaxHP,100; .@r = getrefine(); bonus bMaxHPRate,((.@r>=9)?2:(.@r>=7)?1:0); },{},{} -24050,S_Wise_Earring,Wise Earring (Shadow),12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ bonus bMaxSP,50; .@r = getrefine(); bonus bMaxSPRate,((.@r>=9)?2:(.@r>=7)?1:0); },{},{} -24051,S_Athena_Earring,Athena Earring (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,1048576,,1,1,0,{ bonus bDef,(getrefine()>=7)?20:10; },{},{} -24052,S_Cranial_Shield,Cranial Shield (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,262144,,1,1,0,{ bonus2 bSubRace,7,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,7,1; } if(.@r>=9) { bonus2 bSubRace,7,1; } },{},{} -24053,S_Safeguard_Shield,Safeguard Shield (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,262144,,1,1,0,{ bonus2 bSubRace,10,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,10,1; } if(.@r>=9) { bonus2 bSubRace,10,1; } },{},{} -24054,S_Brutal_Shield,Brutal Shield (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,262144,,1,1,0,{ bonus2 bSubRace,2,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,2,1; } if(.@r>=9) { bonus2 bSubRace,2,1; } },{},{} -24055,S_Gargantua_Shield,Gargantua Shield (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,262144,,1,1,0,{ bonus2 bSubRace,4,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,4,1; } if(.@r>=9) { bonus2 bSubRace,4,1; } },{},{} -24056,S_Homers_Shield,Homers Shield (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,262144,,1,1,0,{ bonus2 bSubRace,5,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,5,1; } if(.@r>=9) { bonus2 bSubRace,5,1; } },{},{} -24057,S_Dragoon_Shield,Dragoon Shield (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,262144,,1,1,0,{ bonus2 bSubRace,9,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,9,1; } if(.@r>=9) { bonus2 bSubRace,9,1; } },{},{} -24058,S_Satanic_Shield,Satanic Shield (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,262144,,1,1,0,{ bonus2 bSubRace,8,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,8,1; } if(.@r>=9) { bonus2 bSubRace,8,1; } },{},{} -24059,S_Flameguard_Shield,Flameguard Shield (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,262144,,1,1,0,{ bonus2 bSubRace,0,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,0,1; } if(.@r>=9) { bonus2 bSubRace,0,1; } },{},{} -24060,S_Requiem_Shield,Requiem Shield (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,262144,,1,1,0,{ bonus2 bSubRace,1,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,1,1; } if(.@r>=9) { bonus2 bSubRace,1,1; } },{},{} -24061,S_Cadi_Shield,Cadi Shield (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,262144,,1,1,0,{ bonus2 bSubRace,3,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,3,1; } if(.@r>=9) { bonus2 bSubRace,3,1; } },{},{} -24062,S_Bloody_Shoes,Bloody Shoes (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,524288,,1,1,0,{ bonus2 bAddRace,7,2; bonus2 bMagicAddRace,7,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,7,1; bonus2 bMagicAddRace,7,1; } if(.@r>=9) { bonus2 bAddRace,7,2; bonus2 bMagicAddRace,7,2; } },{},{} -24063,S_Liberation_Shoes,Liberation Shoes (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,524288,,1,1,0,{ bonus2 bAddRace,10,2; bonus2 bMagicAddRace,10,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,10,1; bonus2 bMagicAddRace,10,1; } if(.@r>=9) { bonus2 bAddRace,10,2; bonus2 bMagicAddRace,10,2; } },{},{} -24064,S_Chemical_Shoes,Chemical Shoes (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,524288,,1,1,0,{ bonus2 bAddRace,3,2; bonus2 bMagicAddRace,3,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,3,1; bonus2 bMagicAddRace,3,1; } if(.@r>=9) { bonus2 bAddRace,3,2; bonus2 bMagicAddRace,3,2; } },{},{} -24065,S_Clamorous_Shoes,Clamorous Shoes (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,524288,,1,1,0,{ bonus2 bAddRace,2,2; bonus2 bMagicAddRace,2,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,2,1; bonus2 bMagicAddRace,2,1; } if(.@r>=9) { bonus2 bAddRace,2,2; bonus2 bMagicAddRace,2,2; } },{},{} -24066,S_Insecticide_Shoes,Insecticide Shoes (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,524288,,1,1,0,{ bonus2 bAddRace,4,2; bonus2 bMagicAddRace,4,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,4,1; bonus2 bMagicAddRace,4,1; } if(.@r>=9) { bonus2 bAddRace,4,2; bonus2 bMagicAddRace,4,2; } },{},{} -24067,S_Fisher_Shoes,Fisher Shoes (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,524288,,1,1,0,{ bonus2 bAddRace,5,2; bonus2 bMagicAddRace,5,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,5,1; bonus2 bMagicAddRace,5,1; } if(.@r>=9) { bonus2 bAddRace,5,2; bonus2 bMagicAddRace,5,2; } },{},{} -24068,S_Seraphim_Shoes,Seraphim Shoes (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,524288,,1,1,0,{ bonus2 bAddRace,8,2; bonus2 bMagicAddRace,8,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,8,1; bonus2 bMagicAddRace,8,1; } if(.@r>=9) { bonus2 bAddRace,8,2; bonus2 bMagicAddRace,8,2; } },{},{} -24069,S_Beholder_Shoes,Beholder Shoes (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,524288,,1,1,0,{ bonus2 bAddRace,0,2; bonus2 bMagicAddRace,0,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,0,1; bonus2 bMagicAddRace,0,1; } if(.@r>=9) { bonus2 bAddRace,0,2; bonus2 bMagicAddRace,0,2; } },{},{} -24070,S_Divine_Shoes,Divine Shoes (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,524288,,1,1,0,{ bonus2 bAddRace,1,2; bonus2 bMagicAddRace,1,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,1,1; bonus2 bMagicAddRace,1,1; } if(.@r>=9) { bonus2 bAddRace,1,2; bonus2 bMagicAddRace,1,2; } },{},{} -24071,S_Dragoon_Shoes,Dragoon Shoes (Shadow),12,0,,0,,0,,0,0xFFFFFFFF,63,2,524288,,1,1,0,{ bonus2 bAddRace,9,2; bonus2 bMagicAddRace,9,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,9,1; bonus2 bMagicAddRace,9,1; } if(.@r>=9) { bonus2 bAddRace,9,2; bonus2 bMagicAddRace,9,2; } },{},{} -24072,S_Big_Armor,Large Shadow Armor,12,0,,0,,0,,0,0xFFFFFFFF,63,2,65536,,1,1,0,{ bonus2 bSubSize,2,2; .@r = getrefine(); if(.@r>=7) { bonus2 bSubSize,2,1; } if(.@r>=9) { bonus2 bSubSize,2,2; } },{},{} -24073,S_Medium_Armor,Medium Shadow Armor,12,0,,0,,0,,0,0xFFFFFFFF,63,2,65536,,1,1,0,{ bonus2 bSubSize,1,2; .@r = getrefine(); if(.@r>=7) { bonus2 bSubSize,1,1; } if(.@r>=9) { bonus2 bSubSize,1,2; } },{},{} -24074,S_Small_Armor,Small Shadow Armor,12,0,,0,,0,,0,0xFFFFFFFF,63,2,65536,,1,1,0,{ bonus2 bSubSize,0,2; .@r = getrefine(); if(.@r>=7) { bonus2 bSubSize,0,1; } if(.@r>=9) { bonus2 bSubSize,0,2; } },{},{} -24075,S_Big_Weapon,Large Shadow Weapon,12,0,,0,,0,,0,0xFFFFFFFF,63,2,131072,,1,1,0,{ bonus2 bAddSize,2,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddSize,2,1; } if(.@r>=9) { bonus2 bAddSize,2,2; } },{},{} -24076,S_Medium_Weapon,Medium Shadow Weapon,12,0,,0,,0,,0,0xFFFFFFFF,63,2,131072,,1,1,0,{ bonus2 bAddSize,1,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddSize,1,1; } if(.@r>=9) { bonus2 bAddSize,1,2; } },{},{} -24077,S_Small_Weapon,Small Shadow Weapon,12,0,,0,,0,,0,0xFFFFFFFF,63,2,131072,,1,1,0,{ bonus2 bAddSize,0,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddSize,0,1; } if(.@r>=9) { bonus2 bAddSize,0,2; } },{},{} -24078,S_Spiritual_Weapon,Spiritual Shadow Weapon,12,0,,0,,,,,0xFFFFFFFF,63,2,131072,,1,1,0,{ bonus bUseSPrate,-5; if(getrefine()>=7){bonus bSPrecovRate,5;} },{},{} -24079,S_Spiritual_Earring,Spiritual Shadow Earring,12,0,,0,,,,,0xFFFFFFFF,63,2,1048576,,1,1,,{ bonus bMaxSP,50; },{},{} -24080,S_Spiritual_Pendent,Spiritual Shadow Pendant,12,0,,0,,,,,0xFFFFFFFF,63,2,2097152,,1,1,,{ bonus bMaxSPrate,(getrefine()>=7?2:1); },{},{} -24081,S_Malicious_Armor,Malicious Shas Shadow Armor,12,0,,0,,,,,0xFFFFFFFF,63,2,65536,,1,1,,{ bonus bMaxHP,100; if(getrefine()>=7){bonus bMaxHPrate,1;} },{},{} -24082,S_Malicious_Shoes,Malicious Shas Shadow Shoes,12,0,,0,,,,,0xFFFFFFFF,63,2,524288,,1,1,,{ bonus bMaxHPrate,(getrefine()>=7?2:1); },{},{} -24083,S_Malicious_Shield,Malicious Shas Shadow Shield,12,0,,0,,,,,0xFFFFFFFF,63,2,262144,,1,1,,{ bonus bHPrecovRate,(getrefine()>=7?10:5); },{},{} -24084,S_Gemstone_Armor,Gemstone Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ bonus bCritical,5+(getrefine()/2); },{},{} -24085,S_Gemstone_Shoes,Gemstone Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ bonus bFlee,5+(getrefine()/2); },{},{} -24086,S_Gemstone_Shield,Gemstone Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ bonus bDef,5+(getrefine()/2); },{},{} -24087,S_Gemstone_Weapon,Gemstone Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus bHit,5+(getrefine()/2); },{},{} -24088,S_Gemstone_Earring,Gemstone Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ bonus bMatk,5+(getrefine()/2); },{},{} -24089,S_Gemstone_Pendent,Gemstone Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ bonus bBaseAtk,5+(getrefine()/2); },{},{} -24090,S_Stability_Shield,Stability Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ bonus bDef,3; .@r = getrefine(); bonus2 bResEff,Eff_Stun,.@r/2; bonus2 bResEff,Eff_Freeze,.@r/2; bonus2 bResEff,Eff_Curse,.@r/2; bonus2 bResEff,Eff_Bleeding,.@r/2; bonus2 bResEff,Eff_Stone,.@r; bonus2 bResEff,Eff_Sleep,.@r; bonus2 bResEff,Eff_Silence,.@r; bonus2 bResEff,Eff_Blind,.@r; },{},{} -24091,S_Plasterer's_Armor,Harrods Plaster Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Stone,getrefine(); },{},{} -24092,S_Plasterer's_Shoes,Harrods Plaster Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Stone,getrefine(); },{},{} -24093,S_Insomniac_Armor,Insomnia Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Sleep,getrefine(); },{},{} -24094,S_Insomniac_Shoes,Insomnia Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Sleep,getrefine(); },{},{} -24095,S_Peerless_Armor,Peerless Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Silence,getrefine(); },{},{} -24096,S_Peerless_Shoes,Peerless Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Silence,getrefine(); },{},{} -24097,S_Adurate_Armor,Andre Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Blind,getrefine(); },{},{} -24098,S_Adurate_Shoes,Andre Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Blind,getrefine(); },{},{} -24099,Unfreez_Weapon_S,Unfreezing Shadow Weapon,12,10,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Freeze,getrefine(); },{},{} -24100,Unfreeze_Earing_S,Unfreezing Shadow Earring,12,10,,0,,,,,0xFFFFFFFF,63,2,1048576,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Freeze,getrefine(); },{},{} -24101,Unfreeze_Pendent_S,Unfreezing Shadow Pendant,12,10,,0,,,,,0xFFFFFFFF,63,2,2097152,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Freeze,getrefine(); },{},{} -24102,Vitality_Earing_S,Vitality Shadow Earring,12,10,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Bleeding,getrefine(); },{},{} -24103,Vitality_Pendant_S,Vitality Shadow Pendant,12,10,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Bleeding,getrefine(); },{},{} -24104,S_Neutral_Weapon,Neutral Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Stun,getrefine()/2; },{},{} -24105,S_Neutral_Earring,Neutral Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Stun,getrefine(); },{},{} -24106,S_Neutral_Pendent,Neutral Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Stun,getrefine(); },{},{} -24107,S_Curse_Lift_Earring,Frozen Curse Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Curse,getrefine(); },{},{} -24108,S_Curse_Lift_Pendent,Frozen Curse Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Curse,getrefine(); },{},{} -24109,S_Caster_earring,Caster Shadow Earrings,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ bonus bVariableCastrate,-1-((getrefine()>=7)?1:0); },{},{} -24110,S_Caster_Weapon,Caster Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ .@r = getrefine(); bonus bVariableCastrate,-1-((.@r>=7)?1:0)-((.@r>=9)?2:0); },{},{} -24111,S_Spell_Flow_Shoes,Spellflow Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ bonus bUseSPrate,1; if(getrefine()>=7) bonus bSPrecovRate,5; },{},{} -24112,S_Spell_Flow_Armor,Spellflow Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ bonus bUseSPrate,1+((getrefine()>=7)?1:0)+((getrefine()>=9)?1:0); },{},{} -24113,S_Spell_Flow_Shield,Spellflow Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ bonus bUseSPrate,1; if(getrefine()>=7) bonus bMaxSPrate,1; },{},{} -24114,S_Greed_Armor,Grid Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ skill "BS_GREED",1; bonus2 bSkillUseSP,"BS_GREED",100-(getrefine()*10); },{},{} -24115,S_Greed_Shoes,Grid Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ skill "BS_GREED",1; bonus2 bSkillUseSP,"BS_GREED",-100+(getrefine()*10); },{},{} -24116,S_Greed_Shield,Grid Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ skill "BS_GREED",1; bonus2 bSkillUseSP,"BS_GREED",-100+(getrefine()*10); },{},{} -24117,S_Greed_Weapon,Grid Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ skill "BS_GREED",1; bonus2 bSkillUseSP,"BS_GREED",-100+(getrefine()*10); },{},{} -24118,S_Greed_Earring,Grid Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ skill "BS_GREED",1; bonus2 bSkillUseSP,"BS_GREED",-100+(getrefine()*10); },{},{} -24119,S_Greed_Pendant,Grid Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ skill "BS_GREED",1; bonus2 bSkillUseSP,"BS_GREED",-100+(getrefine()*10); },{},{} -24120,S_Heal_Armor,Heal Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ skill "AL_HEAL",1; bonus2 bSkillUseSP,"AL_HEAL",-50+(getrefine()*5); },{},{} -24121,S_Heal_Shoes,Heal Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ skill "AL_HEAL",1; bonus2 bSkillUseSP,"AL_HEAL",-50+(getrefine()*5); },{},{} -24122,S_Heal_Shield,Heal Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ skill "AL_HEAL",1; bonus2 bSkillUseSP,"AL_HEAL",-50+(getrefine()*5); },{},{} -24123,S_Heal_Weapon,Heal Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ skill "AL_HEAL",1; bonus2 bSkillUseSP,"AL_HEAL",-50+(getrefine()*5); },{},{} -24124,S_Heal_Earring,Heal Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ skill "AL_HEAL",1; bonus2 bSkillUseSP,"AL_HEAL",-50+(getrefine()*5); },{},{} -24125,S_Heal_Pendant,Heal Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ skill "AL_HEAL",1; bonus2 bSkillUseSP,"AL_HEAL",-50+(getrefine()*5); },{},{} -24126,S_Hiding_Armor,Hiding Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ skill "TF_HIDING",1; bonus2 bSkillUseSP,"TF_HIDING",-50+(getrefine()*5); },{},{ sc_end SC_HIDING; } -24127,S_Hiding_Shoes,Hiding Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ skill "TF_HIDING",1; bonus2 bSkillUseSP,"TF_HIDING",-50+(getrefine()*5); },{},{ sc_end SC_HIDING; } -24128,S_Hiding_Shield,Hiding Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ skill "TF_HIDING",1; bonus2 bSkillUseSP,"TF_HIDING",-50+(getrefine()*5); },{},{ sc_end SC_HIDING; } -24129,S_Hiding_Weapon,Hiding Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ skill "TF_HIDING",1; bonus2 bSkillUseSP,"TF_HIDING",-50+(getrefine()*5); },{},{ sc_end SC_HIDING; } -24130,S_Hiding_Earring,Hiding Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ skill "TF_HIDING",1; bonus2 bSkillUseSP,"TF_HIDING",-50+(getrefine()*5); },{},{ sc_end SC_HIDING; } -24131,S_Hiding_Pendant,Hiding Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ skill "TF_HIDING",1; bonus2 bSkillUseSP,"TF_HIDING",-50+(getrefine()*5); },{},{ sc_end SC_HIDING; } -24132,S_Cloaking_Armor,Cloaking Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ skill "AS_CLOAKING",1; bonus2 bSkillUseSP,"AS_CLOAKING",-50+(getrefine()*5); },{},{ sc_end SC_CLOAKING; } -24133,S_Cloaking_Shoes,Cloaking Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ skill "AS_CLOAKING",1; bonus2 bSkillUseSP,"AS_CLOAKING",-50+(getrefine()*5); },{},{ sc_end SC_CLOAKING; } -24134,S_Cloaking_Shield,Cloaking Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ skill "AS_CLOAKING",1; bonus2 bSkillUseSP,"AS_CLOAKING",-50+(getrefine()*5); },{},{ sc_end SC_CLOAKING; } -24135,S_Cloaking_Weapon,Cloaking Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ skill "AS_CLOAKING",1; bonus2 bSkillUseSP,"AS_CLOAKING",-50+(getrefine()*5); },{},{ sc_end SC_CLOAKING; } -24136,S_Cloaking_Earring,Cloaking Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ skill "AS_CLOAKING",1; bonus2 bSkillUseSP,"AS_CLOAKING",-50+(getrefine()*5); },{},{ sc_end SC_CLOAKING; } -24137,S_Cloaking_Pendant,Cloaking Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ skill "AS_CLOAKING",1; bonus2 bSkillUseSP,"AS_CLOAKING",-50+(getrefine()*5); },{},{ sc_end SC_CLOAKING; } -24138,S_Teleport_Armor,Teleport Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ skill "AL_TELEPORT",1; bonus2 bSkillUseSP,"AL_TELEPORT",-50+(getrefine()*5); },{},{} -24139,S_Teleport_Shoes,Teleport Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ skill "AL_TELEPORT",1; bonus2 bSkillUseSP,"AL_TELEPORT",-50+(getrefine()*5); },{},{} -24140,S_Teleport_Shield,Teleport Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ skill "AL_TELEPORT",1; bonus2 bSkillUseSP,"AL_TELEPORT",-50+(getrefine()*5); },{},{} -24141,S_Teleport_Weapon,Teleport Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ skill "AL_TELEPORT",1; bonus2 bSkillUseSP,"AL_TELEPORT",-50+(getrefine()*5); },{},{} -24142,S_Teleport_Earring,Teleport Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ skill "AL_TELEPORT",1; bonus2 bSkillUseSP,"AL_TELEPORT",-50+(getrefine()*5); },{},{} -24143,S_Teleport_Pendant,Teleport Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ skill "AL_TELEPORT",1; bonus2 bSkillUseSP,"AL_TELEPORT",-50+(getrefine()*5); },{},{} -24144,S_Steal_Armor,Steal Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ skill "TF_STEAL",1; bonus2 bSkillUseSP,"TF_STEAL",-50+(getrefine()*5); },{},{} -24145,S_Steal_Shoes,Steal Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ skill "TF_STEAL",1; bonus2 bSkillUseSP,"TF_STEAL",-50+(getrefine()*5); },{},{} -24146,S_Steal_Shield,Steal Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ skill "TF_STEAL",1; bonus2 bSkillUseSP,"TF_STEAL",-50+(getrefine()*5); },{},{} -24147,S_Steal_Weapon,Steal Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ skill "TF_STEAL",1; bonus2 bSkillUseSP,"TF_STEAL",-50+(getrefine()*5); },{},{} -24148,S_Steal_Earring,Steal Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ skill "TF_STEAL",1; bonus2 bSkillUseSP,"TF_STEAL",-50+(getrefine()*5); },{},{} -24149,S_Steal_Pendant,Steal Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ skill "TF_STEAL",1; bonus2 bSkillUseSP,"TF_STEAL",-50+(getrefine()*5); },{},{} -24150,S_Infinity_Earring,Infinity Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ .@r = getrefine(); bonus2 bSubSize,Size_All,1+((.@r >= 9) ? 2 : (.@r >= 7) ? 1 : 0); },{},{} -24151,S_Infinity_Pendant,Infinity Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ .@r = getrefine(); bonus2 bSubSize,Size_All,1+((.@r >= 9) ? 2 : (.@r >= 7) ? 1 : 0); },{},{} -24152,S_Solid_Weapon,Solid Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus bBaseAtk,5+(getrefine()/2); },{},{} -24153,S_Solid_Earring,Solid Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ bonus bHit,5+(getrefine()/2); },{},{} -24154,S_Immortal_Armor,Solid Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ bonus bDef,5+(getrefine()/2); },{},{} -24155,S_Immortal_Pendant,Solid Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ bonus bMdef,(getrefine()/2); },{},{} -24156,S_Executioner_Weapon,Demi-Human Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5+(getrefine()/2); },{},{} -24157,S_Exorcist_Weapon,Exorcist Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus2 bIgnoreDefRaceRate,RC_Demon,5+(getrefine()/2); },{},{} -24158,S_Hunting_Weapon,Hunting Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus2 bIgnoreDefRaceRate,RC_Brute,5+(getrefine()/2); bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5+(getrefine()/2); },{},{} -24159,S_Insect_Net_Weapon,Insect Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus2 bIgnoreDefRaceRate,RC_Insect,5+(getrefine()/2); },{},{} -24160,S_Fishing_Weapon,Fishing Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus2 bIgnoreDefRaceRate,RC_Fish,5+(getrefine()/2); },{},{} -24161,S_Dragon_Killer_Weapon,Dragon Killer Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus2 bIgnoreDefRaceRate,RC_Dragon,5+(getrefine()/2); },{},{} -24162,S_Corrupt_Weapon,Angelus Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus2 bIgnoreDefRaceRate,RC_Angel,5+(getrefine()/2); },{},{} -24163,S_Vibration_Weapon,Formless Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus2 bIgnoreDefRaceRate,RC_Formless,5+(getrefine()/2); },{},{} -24164,S_Holy_Water_Weapon,Holy Water Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus2 bIgnoreDefRaceRate,RC_Undead,5+(getrefine()/2); },{},{} -24165,S_Scissors_Weapon,Plant Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus2 bIgnoreDefRaceRate,RC_Plant,5+(getrefine()/2); },{},{} -24166,S_Penetration_Earring,Penetration Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ .@r = getrefine(); bonus2 bIgnoreDefRaceRate,RC_All,5+(.@r/2); bonus2 bIgnoreDefRaceRate,RC_Player_Human,-5-(.@r/2); },{},{} -24167,S_Penetration_Pendent,Penetration Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ .@r = getrefine(); bonus2 bIgnoreDefRaceRate,RC_All,5+(.@r/2); bonus2 bIgnoreDefRaceRate,RC_Player_Human,-5-(.@r/2); },{},{} -24168,S_Tempest_Earring,Tempest Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ bonus2 bIgnoreMdefClassRate,Class_Normal,5+(getrefine()/2); },{},{} -24169,S_Tempest_Pendent,Tempest Pendant Shadow,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ bonus2 bIgnoreMdefClassRate,Class_Normal,5+(getrefine()/2); },{},{} -24170,S_M_Executioner_Weapon,Magic Demi-Human Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5+(getrefine()/2); },{},{} -24171,S_M_Exorcist_Weapon,Magic Exorcist Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus2 bIgnoreMdefRaceRate,RC_Demon,5+(getrefine()/2); },{},{} -24172,S_M_Hunting_Weapon,Magic Hunting Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus2 bIgnoreMdefRaceRate,RC_Brute,5+(getrefine()/2); bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,5+(getrefine()/2); },{},{} -24173,S_M_Insect_Net_Weapon,Magic Insect Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus2 bIgnoreMdefRaceRate,RC_Insect,5+(getrefine()/2); },{},{} -24174,S_M_Fishing_Weapon,Magic Fishing Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus2 bIgnoreMdefRaceRate,RC_Fish,5+(getrefine()/2); },{},{} -24175,S_M_Dragon_K_Weapon,Magic Dragon Killer Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus2 bIgnoreMdefRaceRate,RC_Dragon,5+(getrefine()/2); },{},{} -24176,S_M_Corrupt_Weapon,Magic Angelus Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus2 bIgnoreMdefRaceRate,RC_Angel,5+(getrefine()/2); },{},{} -24177,S_M_Vibration_Weapon,Magic Formless Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus2 bIgnoreMdefRaceRate,RC_Formless,5+(getrefine()/2); },{},{} -24178,S_M_Holy_Water_Weapon,Magic Holy Water Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus2 bIgnoreMdefRaceRate,RC_Undead,5+(getrefine()/2); },{},{} -24179,S_M_Scissors_Weapon,Magic Caesars Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus2 bIgnoreMdefRaceRate,RC_Plant,5+(getrefine()/2); },{},{} -24180,S_Bearers_Armor,Bearer's Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ bonus bMdef,1+(getrefine()/2); },{},{} -24181,S_Bearers_Shoes,Bearer's Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ bonus bMaxSP,50+(5*(getrefine()/2)); },{},{} -24182,S_Bearers_Shield,Bearer's Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ bonus bDef,5+(getrefine()/2); },{},{} -24183,S_Bearers_Weapon,Bearer's Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus bMaxHP,100+(10*(getrefine()/2)); },{},{} -24184,S_Bearers_Earring,Bearer's Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ bonus bMatk,5+(getrefine()/2); },{},{} -24185,S_Bearers_Pendent,Bearer's Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ bonus bBaseAtk,5+(getrefine()/2); },{},{} -24186,S_Basis_Armor,Basis Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); bonus2 bAddEle,Ele_Neutral,1+(.@r/2); bonus2 bMagicAddEle,Ele_Neutral,1+(.@r/2); },{},{} -24187,S_Hallowed_Armor,Hallowed Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); bonus2 bAddEle,Ele_Dark,1+(.@r/2); bonus2 bMagicAddEle,Ele_Dark,1+(.@r/2); },{},{} -24188,S_Saharic_Armor,Underneith Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); bonus2 bAddEle,Ele_Water,1+(.@r/2); bonus2 bMagicAddEle,Ele_Water,1+(.@r/2); },{},{} -24189,S_Underneath_Armor,Underneath Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); bonus2 bAddEle,Ele_Earth,1+(.@r/2); bonus2 bMagicAddEle,Ele_Earth,1+(.@r/2); },{},{} -24190,S_Flam_Armor,Flame Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); bonus2 bAddEle,Ele_Fire,1+(.@r/2); bonus2 bMagicAddEle,Ele_Fire,1+(.@r/2); },{},{} -24191,S_Windy_Armor,Windy Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); bonus2 bAddEle,Ele_Wind,1+(.@r/2); bonus2 bMagicAddEle,Ele_Wind,1+(.@r/2); },{},{} -24192,S_Envenom_Armor,Envenom Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); bonus2 bAddEle,Ele_Poison,1+(.@r/2); bonus2 bMagicAddEle,Ele_Poison,1+(.@r/2); },{},{} -24193,S_Damned_Armor,Damned Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); bonus2 bAddEle,Ele_Holy,1+(.@r/2); bonus2 bMagicAddEle,Ele_Holy,1+(.@r/2); },{},{} -24194,S_Geist_Armor,Exorcism Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); bonus2 bAddEle,Ele_Ghost,1+(.@r/2); bonus2 bMagicAddEle,Ele_Ghost,1+(.@r/2); },{},{} -24195,S_Divine_Armor,Divine Shadow Armor,12,0,,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,S_Hasty_Shoes,Hasty Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ bonus bFlee,5+(getrefine()/2); },{},{} -24197,S_Hasty_Armor,Hasty Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ bonus bFlee,5+(getrefine()/2); },{},{} -24198,S_Basis_Shield,Basis Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Neutral,.@i; bonus2 bMagicSubDefEle,Ele_Neutral,.@i; },{},{} -24199,S_Hallowed_Shield,Hallowed Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Dark,.@i; bonus2 bMagicSubDefEle,Ele_Dark,.@i; },{},{} -24200,S_Saharic_Shield,Saharic Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Water,.@i; bonus2 bMagicSubDefEle,Ele_Water,.@i; },{},{} -24201,S_Underneath_Shield,Underneath Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Earth,.@i; bonus2 bMagicSubDefEle,Ele_Earth,.@i; },{},{} -24202,S_Flam_Shield,Flame Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Fire,.@i; bonus2 bMagicSubDefEle,Ele_Fire,.@i; },{},{} -24203,S_Windy_Shield,Windy Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Wind,.@i; bonus2 bMagicSubDefEle,Ele_Wind,.@i; },{},{} -24204,S_Envenom_Shield,Envenom Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Poison,.@i; bonus2 bMagicSubDefEle,Ele_Poison,.@i; },{},{} -24205,S_Damned_Shield,Damned Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Holy,.@i; bonus2 bMagicSubDefEle,Ele_Holy,.@i; },{},{} -24206,S_Geist_Shield,Exorcism Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Ghost,.@i; bonus2 bMagicSubDefEle,Ele_Ghost,.@i; },{},{} -24207,S_Divine_Shield,Divine Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Undead,.@i; bonus2 bMagicSubDefEle,Ele_Undead,.@i; },{},{} -24208,S_Expert_Shoes,Expert Shadow Shoes,12,20,,100,,,,0,0xFFFFFFFF,63,2,524288,,150:175,1,,{ bonus2 bExpAddRace,RC_All,1; },{},{} -24209,S_Expert_Shield,Expert Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,150:175,1,,{ bonus2 bExpAddRace,RC_All,(getrefine()/4); },{},{} -24210,S_Beginner_Shoes,Beginner Shadow Shoes,12,20,,0,,,,0,0xFFFFFFFF,63,2,524288,,1:49,1,,{ bonus2 bExpAddRace,RC_All,getrefine(); },{},{} -24211,S_Beginner_Shield,Beginner Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1:49,1,,{ bonus2 bExpAddRace,RC_All,getrefine(); },{},{} -24212,S_Rookie_Shoes,Rookie Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,50:99,1,,{ bonus2 bExpAddRace,RC_All,(getrefine()/2); },{},{} -24213,S_Rookie_Shield,Rookie Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,50:99,1,,{ bonus2 bExpAddRace,RC_All,(getrefine()/2); },{},{} -24214,S_Advanced_Shoes,Advanced Shadow Shoes,12,20,,0,,,,0,0xFFFFFFFF,63,2,524288,,100:149,1,,{ bonus2 bExpAddRace,RC_All,(getrefine()/3); },{},{} -24215,S_Advanced_Shield,Advanced Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,100:149,1,,{ bonus2 bExpAddRace,RC_All,(getrefine()/3); },{},{} -24216,S_Attack_Armor,Attack Shadow Armor,12,10,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); autobonus "{ bonus bBaseAtk,("+.@r+"*5); }",(.@r*2)+10,3000,BF_NORMAL; },{},{} -24217,S_Blitz_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,S_Blitz_Pendent,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,S_ColdBolt_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,S_FireBolt_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,S_LightingBolt_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,S_EarthSpike_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,S_Enhance_Force_Weapon,Enhanced Force Shadow Weapon,12,10,,0,,,,0,0xFFFFFFFF,56,2,131072,,100,1,,{ bonus bAtk2,10; bonus2 bAddClass,Class_All,(getrefine()/2); },{},{} -24224,S_Force_Weapon,Force Shadow Weapon,12,10,,0,,,,0,0xFFFFFFFF,63,2,131072,,70,1,,{ .@r = getrefine(); bonus2 bAddClass,Class_All,(.@r<7)?1:((.@r<9)?2:3); },{},{} -24225,S_Force_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,S_Force_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,S_Enhance_Spirit_Weapon,Enhanced Soul Shadow Weapon,12,10,,0,,,,0,0xFFFFFFFF,56,2,131072,,100,1,,{ bonus bMatk,10; bonus bMatkRate,(getrefine()/2); },{},{} -24228,S_Spirit_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,S_Spirit_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,S_Spirit_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,S_Blitz_Shoes,Blitz Shadow Shoes,12,0,,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,S_Blitz_Shield,Blitz Shadow Shield,12,0,,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,S_Exceed_Weapon,Exceeding Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,100,1,,{ .@r = getrefine()/2; bonus bBaseAtk,5; bonus bMatk,5; bonus2 bAddClass,Class_All,.@r; bonus bMatkRate,.@r; },{},{} -24234,S_Titan_Earring,Titan Shadow Earring,12,0,,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,S_Titan_Pendant,Titan Shadow Pendant,12,0,,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,S_Boned_Earring,Boned Shadow Earring,12,0,,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,S_Boned_Pendant,Boned Shadow Pendant,12,0,,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,S_Gigantic_Earring,Gigantic Shadow Earring,12,0,,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,S_Gigantic_Pendant,Gigantic Shadow Pendant,12,0,,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; },{},{} -24240,S_Caster_Shoes,Caster Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ bonus bMatk,5; bonus bUseSPrate,-1-(getrefine()/2); },{},{} -24241,S_Caster_Shield,Caster Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ bonus bMatk,5; bonus bUseSPrate,-1-(getrefine()/2); },{},{} -24242,S_Caster_Armor,Caster Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ bonus bMatk,5; bonus bUseSPrate,-1-(getrefine()/2); },{},{} -24243,S_Reload_Shoes,Reload Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ .@r = getrefine(); bonus bDelayrate,(.@r<7)?-1:((.@r<9)?-2:-3); },{},{} -24244,S_Reload_Shield,Reload Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); bonus bDelayrate,(.@r<7)?-1:((.@r<9)?-2:-3); },{},{} -24245,S_Reload_Armor,Reload Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); bonus bDelayrate,(.@r<7)?-1:((.@r<9)?-2:-3); },{},{} -24246,S_Swordman_Earring,Swordman Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ .@r = getrefine(); bonus2 bSkillUseSPrate,"SM_BASH",20+(3*.@r); },{},{} -24247,S_Merchant_Earring,Merchant Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ .@r = getrefine(); bonus2 bSkillUseSPrate,"MC_MAMMONITE",20+(3*.@r); },{},{} -24248,S_Acolyte_Earring,Acolyte Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ .@r = getrefine(); bonus2 bSkillUseSPrate,"AL_HEAL",20+(3*.@r); },{},{} -24249,S_Magician_Earring,Magician Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ .@r = getrefine(); bonus2 bSkillUseSPrate,"MG_COLDBOLT",20+(3*.@r); bonus2 bSkillUseSPrate,"MG_FIREBOLT",20+(3*.@r); bonus2 bSkillUseSPrate,"MG_LIGHTNINGBOLT",20+(3*.@r); },{},{} -24250,S_Swordman_Pendant,Swordman Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"SM_MAGNUM",20+(5*.@r); },{},{} -24251,S_Merchant_Pendant,Merchant Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"MC_CARTREVOLUTION",20+(5*.@r); },{},{} -24252,S_Acolyte_Pendant,Acolyte Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"AL_HOLYLIGHT",20+(5*.@r); },{},{} -24253,S_Thief_Pendant,Thief Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"TF_POISON",20+(5*.@r); },{},{} -24254,S_Magician_Pendant,Magician Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"MG_FIREWALL",20+5*.@r; },{},{} -24255,S_Archer_Pendant,Archer Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"AC_SHOWER",20+(5*.@r); },{},{} -24256,Knight_Shadow_Shoes,Knight Shadow Shoes,12,,,0,,,,,0xFFFFFFFF,63,2,524288,,1,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"KN_PIERCE",20+.@r*5; },{},{} -24257,Crusader_Shadow_Shoes,Crusader Shadow Shoes,12,,,0,,,,,0xFFFFFFFF,63,2,524288,,1,1,,{ .@r = getrefine(); bonus2 bSkillUseSPrate,"CR_HOLYCROSS",(20+(3*.@r)); },{},{} -24258,Blacksmith_Shadow_Shoes,Blacksmith Shadow Shoes,12,,,0,,,,,0xFFFFFFFF,63,2,524288,,1,1,,{ .@r = getrefine(); .@val = 20+(5*.@r); bonus2 bSkillUseSPrate,"BS_HAMMERFALL",.@val; bonus2 bSkillUseSPrate,"BS_ADRENALINE",.@val; },{},{} -24259,Alchemist_Shadow_Shoes,Alchemist Shadow Shoes,12,,,0,,,,,0xFFFFFFFF,63,2,524288,,1,1,,{ .@r = getrefine(); if (BaseJob==Job_Alchemist) bonus bHealPower,30+7*.@r; },{},{} -24260,Priest_Shadow_Shoes,Priest Shadow Shoes,12,,,0,,,,,0xFFFFFFFF,63,2,524288,,1,1,,{ .@r = getrefine(); .@val = 20+(3*.@r); bonus2 bSkillUseSPrate,"PR_KYRIE",.@val; bonus2 bSkillUseSPrate,"PR_LEXAETERNA",.@val; },{},{} -24261,Monk_Shadow_Shoes,Monk Shadow Shoes,12,,,0,,,,,0xFFFFFFFF,63,2,524288,,1,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"MO_CHAINCOMBO",20+.@r*5; },{},{} -24262,Assassin_Shadow_Shoes,Assassin Shadow Shoes,12,,,0,,,,,0xFFFFFFFF,63,2,524288,,1,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"AS_GRIMTOOTH",20+.@r*5; },{},{} -24263,Rogue_Shadow_Shoes,Rogue Shadow Shoes,12,,,0,,,,,0xFFFFFFFF,63,2,524288,,1,1,,{ .@a = getskilllv("SM_SWORD"); .@r = max(getrefine(),6); bonus bBaseAtk,.@a+((.@r-6)*.@a); },{},{} -24264,Wizard_Shadow_Shoes,Wizard Shadow Shoes,12,,,0,,,,,0xFFFFFFFF,63,2,524288,,1,1,,{ .@r = getrefine(); bonus2 bVariableCastrate,"WZ_STORMGUST",-1*(20+(3*.@r)); bonus2 bVariableCastrate,"WZ_VERMILION",-1*(20+(3*.@r)); bonus2 bVariableCastrate,"WZ_METEOR",-1*(20+(3*.@r)); },{},{} -24265,Sage_Shadow_Shoes,Sage Shadow Shoes,12,,,0,,,,,0xFFFFFFFF,63,2,524288,,1,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"WZ_HEAVENDRIVE",20+.@r*5; },{},{} -24266,Hunter_Shadow_Shoes,Hunter Shadow Shoes,12,,,0,,,,,0xFFFFFFFF,63,2,524288,,1,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"HT_BLITZBEAT",20+.@r*5; },{},{} -24267,Bard_Shadow_Shoes,Bard Shadow Shoes,12,,,0,,,,,0xFFFFFFFF,63,2,524288,,1,1,,{ .@a = getskilllv("BA_MUSICALLESSON"); .@r = max(getrefine(),6); bonus bBaseAtk,.@a+((.@r-6)*.@a); },{},{} -24268,Dancer_Shadow_Shoes,Dancer Shadow Shoes,12,,,0,,,,,0xFFFFFFFF,63,2,524288,,1,1,,{ .@a = getskilllv("DC_DANCINGLESSON"); .@r = max(getrefine(),6); bonus bBaseAtk,.@a+((.@r-6)*.@a); },{},{} -24269,Knight_Shadow_Armor,Knight Shadow Armor,12,10,,0,,,,,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); bonus2 bSkillUseSPrate,"KN_BOWLINGBASH",(20+(.@r*3)); },{},{} -24270,Crusader_Shadow_Armor,Crusader Shadow Armor,12,10,,0,,,,,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"CR_GRANDCROSS",20+.@r*5; },{},{} -24271,Blacksmith_Shadow_Armor,Blacksmith Shadow Armor,12,10,,0,,,,,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); .@val = 5; if (.@r > 6) { .@val += .@r-6; } autobonus3 "{ bonus2 bAddSize,Size_All,"+.@val+"; bonus2 bMagicAddSize,Size_All,"+.@val+"; }",1000,50000,"BS_WEAPONPERFECT"; },{},{} -24272,Alchemist_Shadow_Armor,Alchemist Shadow Armor,12,10,,0,,,,,0xFFFFFFFF,63,2,65536,,1,1,,{ .@a = getskilllv("AM_LEARNINGPOTION"); .@r = max(getrefine(),6); bonus bBaseAtk,.@a+((.@r-6)*.@a); },{},{} -24273,Priest_Shadow_Armor,Priest Shadow Armor,12,10,,0,,,,,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"PR_MAGNUS",20+.@r*5; },{},{} -24274,Monk_Shadow_Armor,Monk Shadow Armor,12,10,,0,,,,,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"MO_FINGEROFFENSIVE",20+.@r*5; bonus2 bSkillAtk,"MO_INVESTIGATE",20+.@r*5; },{},{} -24275,Assassin_Shadow_Armor,Assassin Shadow Armor,12,10,,0,,,,,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); bonus2 bSkillUseSPrate,"AS_SONICBLOW",(20+(.@r*3)); },{},{} -24276,Rogue_Shadow_Armor,Rogue Shadow Armor,12,10,,0,,,,,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"RG_BACKSTAP",20+.@r*5; },{},{} -24277,Wizard_Shadow_Armor,Wizard Shadow Armor,12,10,,0,,,,,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"WZ_JUPITEL",20+.@r*5; },{},{} -24278,Sage_Shadow_Armor,Sage Shadow Armor,12,10,,0,,,,,0xFFFFFFFF,63,2,65536,,1,1,,{ autobonus3 "{ .@r = getrefine(); if (.@r>=9) { bonus bAspd,2; } else if (.@r>=7) { bonus bAspd,1; } bonus bAspdRate,.@r; }",1000,50000,"SA_AUTOSPELL"; /* Unknow Specialeffect */ },{},{} -24279,Hunter_Shadow_Armor,Hunter Shadow Armor,12,10,,0,,,,,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"HT_CLAYMORETRAP",20+.@r*5; bonus2 bSkillAtk,"HT_LANDMINE",20+.@r*5; },{},{} -24280,Bard_Shadow_Armor,Bard Shadow Armor,12,10,,0,,,,,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine()+5; autobonus3 "{ bonus2 bSPRegenRate,"+.@r+",5000; }",1000,30000,"BA_POEMBRAGI"; autobonus3 "{ bonus2 bSPRegenRate,"+.@r+",5000; }",1000,30000,"BA_ASSASSINCROSS"; autobonus3 "{ bonus2 bSPRegenRate,"+.@r+",5000; }",1000,30000,"BA_APPLEIDUN"; autobonus3 "{ bonus2 bSPRegenRate,"+.@r+",5000; }",1000,30000,"BA_WHISTLE"; /* Unknow Specialeffect */ },{},{} -24281,Dancer_Shadow_Armor,Dancer Shadow Armor,12,10,,0,,,,,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine()+5; autobonus3 "{ bonus2 bSPRegenRate,"+.@r+",5000; }",1000,30000,"DC_FORTUNEKISS"; autobonus3 "{ bonus2 bSPRegenRate,"+.@r+",5000; }",1000,30000,"DC_SERVICEFORYOU"; autobonus3 "{ bonus2 bSPRegenRate,"+.@r+",5000; }",1000,30000,"DC_DONTFORGETME"; autobonus3 "{ bonus2 bSPRegenRate,"+.@r+",5000; }",1000,30000,"DC_HUMMING"; /* Unknow Special Effect */ },{},{} -24282,Super_Novice_Shadow_Weapon,Super Novice Shadow Weapon,12,0,,0,,0,,0,0x00000001,63,2,131072,,1,1,0,{ .@r = getrefine(); bonus bMaxHP,1000; bonus bMaxSP,200; bonus2 bIgnoreDefClassRate,Class_Normal,3*(getskilllv("SM_SWORD")+.@r); bonus2 bIgnoreMDefClassRate,Class_Normal,3*(getskilllv("MG_SRECOVERY")+.@r); if (.@r>=7) { bonus bMaxHPrate,5; bonus bMaxSPrate,5; } if (.@r>=9) { bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bSPrecovRate,100; } },{},{} -24283,Gunslinger_Shadow_Weapon,Gunslinger Shadow Weapon,12,0,,0,,0,,0,0x41000000,63,2,131072,,1,1,0,{ .@r = getrefine(); bonus2 bIgnoreDefClassRate,Class_Normal,3*(getskilllv("GS_SNAKEEYE")+.@r); .@aspd = 1; if (.@r>=7) { .@aspd += 1; bonus bLongAtkRate,3; } if (.@r>=9) { .@aspd += 1; bonus bLongAtkRate,5; bonus bAspd,.@aspd; } },{},{} -24284,Taekwondo_Shadow_Weapon,Taekwondo Shadow Weapon,12,0,,0,,0,,0,0x00E00000,63,2,131072,,1,1,0,{ .@r = getrefine(); bonus bAspd,1; bonus2 bAddClass,Class_All,.@r; bonus bMatkRate,.@r; if (.@r>=7) { bonus bMaxHP,1000; bonus bMaxSP,200; bonus bAspd,1; } if (.@r>=9) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bAspd,1; } },{},{} -24285,Ninja_Shadow_Weapon,Ninja Shadow Weapon,12,0,,0,,0,,0,0x22000000,63,2,131072,,1,1,,{ .@r = getrefine(); .@val = 3; bonus2 bSkillCooldown,"KO_BAKURETSU",-2000; bonus bMatk,(3*getskilllv("NJ_NINPOU")); if (.@r >= 7) { .@val += 3; if (.@r >= 9) { .@val += 4; } } bonus2 bAddClass,Class_Normal,.@val; bonus bMatkRate,.@val; },{},{} -24286,Doram_Magical_Shadow_Weapon,Doram Magical Shadow Weapon,12,0,,0,,0,,0,0x80000000,7,2,131072,,1,1,0,{ .@r = getrefine(); bonus bVariableCastrate,-(5+.@r); if (getskilllv("SU_POWEROFLAND")==1) bonus bFixedCast,-100; if (getskilllv("SU_POWEROFSEA")==1) { bonus bUseSPrate,-3; } if (.@r>=7) bonus bMatkRate,5; if (.@r>=9) bonus bMatkRate,5; },{},{} -24287,Doram_Physical_Shadow_Weapon,Doram Physical Shadow Weapon,12,0,,0,,0,,0,0x80000000,7,2,131072,,1,1,0,{ .@r = getrefine(); bonus bLongAtkRate,.@r; if (getskilllv("SU_POWEROFLIFE")==1) bonus bAspd,1; if (.@r>=7) bonus bFlee2,2; if (.@r>=9) bonus bFlee2,3; },{},{} -24288,Rune_Knight_Shadow_Weapon,Rune Knight Shadow Weapon,12,10,,0,,0,,0,0x00000080,56,2,131072,,99,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"RK_SONICWAVE",20+.@r*5; },{},{} -24289,Royal_Guard_Shadow_Weapon,Royal Guard Shadow Weapon,12,10,,0,,0,,0,0x00004000,56,2,131072,,99,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"LG_CANNONSPEAR",20+.@r*5; },{},{} -24290,Mechanic_Shadow_Weapon,Mechanic Shadow Weapon,12,10,,0,,0,,0,0x00000400,56,2,131072,,99,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"NC_VULCANARM",20+.@r*5; },{},{} -24291,Genetic_Shadow_Weapon,Genetic Shadow Weapon,12,10,,0,,0,,0,0x00040000,56,2,131072,,99,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"GN_CART_TORNADO",20+.@r*5; },{},{} -24292,Arcbishop_Shadow_Weapon,Arcbishop Shadow Weapon,12,10,,0,,0,,0,0x00000100,56,2,131072,,99,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"AB_DUPLELIGHT",20+.@r*5; },{},{} -24293,Sura_Shadow_Weapon,Sura Shadow Weapon,12,10,,0,,0,,0,0x00008000,56,2,131072,,99,1,,{ .@r = getrefine(); bonus2 bSkillCooldown,"SR_RAMPAGEBLASTER",-1*(2000+500*.@r); },{},{} -24294,Guillotine_Cross_Shadow_Weapon,Guillotine Cross Shadow Weapon,12,10,,0,,0,,0,0x00001000,56,2,131072,,99,1,,{ .@r = getrefine(); bonus2 bSkillUseSPrate,"GC_DARKILLUSION",(20+(.@r*3)); },{},{} -24295,Shadow_Chaser_Shadow_Weapon,Shadow Chaser Shadow Weapon,12,10,,0,,0,,0,0x00020000,56,2,131072,,99,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"SC_TRIANGLESHOT",20+.@r*5; },{},{} -24296,Warlock_Shadow_Weapon,Warlock Shadow Weapon,12,10,,0,,0,,0,0x00000200,56,2,131072,,99,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"WL_DRAINLIFE",20+.@r*5; },{},{} -24297,Sorcerer_Shadow_Weapon,Sorcerer Shadow Weapon,12,10,,0,,0,,0,0x00010000,56,2,131072,,99,1,,{ .@r = getrefine(); bonus2 bSkillCooldown,"SO_DIAMONDDUST",-1*((300*.@r)+1000); },{},{} -24298,Ranger_Shadow_Weapon,Ranger Shadow Weapon,12,10,,0,,0,,0,0x00000800,56,2,131072,,99,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"RA_CLUSTERBOMB",20+.@r*5; },{},{} -24299,Minstrel_Shadow_Weapon,Maestro Shadow Weapon,12,10,,0,,0,,0,0x00080000,56,1,131072,,99,1,,{ .@r = getrefine(); bonus bMaxHPrate,3; bonus bDef,.@r*(getskilllv("MI_HARMONIZE")+getskilllv("MI_RUSH_WINDMILL")+getskilllv("MI_ECHOSONG")); },{},{} -24300,Wanderer_Shadow_Weapon,Wanderer Shadow Weapon,12,10,,0,,0,,0,0x00080000,56,0,131072,,99,1,,{ .@r = getrefine(); bonus bMaxHPrate,3; bonus bDef,.@r*(getskilllv("WA_SWING_DANCE")+getskilllv("WA_SYMPHONY_OF_LOVER")+getskilllv("WA_MOONLIT_SERENADE")); },{},{} -24301,Rune_Knight_Shadow_Shield,Rune Knight Shadow Shield,12,0,,0,,,,0,0x00000080,56,2,262144,,99,1,,{ autobonus3 "{ .@r = getrefine(); if (.@r>=9) { bonus bAspd,2; } else if (.@r>=7) { bonus bAspd,1; } bonus bAspdRate,.@r; }",1000,50000,"RK_ENCHANTBLADE"; },{},{} -24302,Royal_Guard_Shadow_Shield,Royal Guard Shadow Shield,12,10,,0,,0,,0,0x00004000,56,2,262144,,99,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"LG_EARTHDRIVE",20+.@r*5; },{},{} -24303,Mechanic_Shadow_Shield,Mechanic Shadow Shield,12,10,,0,,0,,0,0x00000400,56,2,262144,,99,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"NC_FLAMELAUNCHER",20+.@r*5; },{},{} -24304,Genetic_Shadow_Shield,Genetic Shadow Shield,12,10,,0,,0,,0,0x00040000,56,2,262144,,99,1,,{ .@r = getrefine(); bonus bMaxHPrate,3; bonus bDef,.@r*(getskilllv("GN_CART_TORNADO")+getskilllv("GN_CARTBOOST")+getskilllv("GN_CARTCANNON")); },{},{} -24305,Archbishop_Shadow_Shield,Archbishop Shadow Shield,12,10,,0,,0,,0,0x00000100,56,2,262144,,99,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"AB_ADORAMUS",20+.@r*5; },{},{} -24306,Sura_Shadow_Shield,Sura Shadow Shield,12,10,,0,,0,,0,0x00008000,56,2,262144,,99,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"SR_SKYNETBLOW",20+.@r*5; },{},{} -24307,Guillotine_Cross_Shadow_Shield,Guillotine Cross Shadow Shield,12,10,,0,,0,,0,0x00001000,56,2,262144,,99,1,,{ .@r = getrefine(); bonus2 bSkillCooldown,"GC_DARKCROW",-(10000+(2000*.@r)); },{},{} -24308,Shadow_Chaser_Shadow_Shield,Shadow Chaser Shadow Shield,12,10,,0,,0,,0,0x00020000,56,2,262144,,99,1,,{ autobonus3 "{ .@r = getrefine(); if (.@r>=9) { bonus bAspd,2; } else if (.@r>=7) { bonus bAspd,1; } bonus bAspdRate,.@r; }",1000,50000,"SC_AUTOSHADOWSPELL"; },{},{} -24309,Warlock_Shadow_Shield,Warlock Shadow Shield,12,10,,0,,0,,0,0x00000200,56,2,262144,,99,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"WL_EARTHSTRAIN",20+.@r*5; },{},{} -24310,Sorcerer_Shadow_Shield,Sorcerer Shadow Shield,12,10,,0,,0,,0,0x00010000,56,2,262144,,99,1,,{ .@r = getrefine(); bonus2 bSkillCooldown,"SO_EARTHGRAVE",-1*((300*.@r)+1000); },{},{} -24311,Ranger_Shadow_Shield,Ranger Shadow Shield,12,10,,0,,0,,0,0x00000800,56,2,262144,,99,1,,{ .@r = getrefine(); bonus2 bSkillUseSPrate,"RA_AIMEDBOLT",(20+(5*.@r)); },{},{} -24312,Minstrel_Shadow_Shield,Minstrel Shadow Shield,12,10,,0,,0,,0,0x00080000,56,1,262144,,99,1,,{ .@r = getrefine(); bonus bMaxSPrate,3; bonus bMdef,.@r*(getskilllv("MI_HARMONIZE")+getskilllv("MI_RUSH_WINDMILL")+getskilllv("MI_ECHOSONG"))/5; },{},{} -24313,Wanderer_Shadow_Shield,Wanderer Shadow Shield,12,10,,0,,0,,0,0x00080000,56,0,262144,,99,1,,{ .@r = getrefine(); bonus bMaxSPrate,3; bonus bMdef,.@r*(getskilllv("WA_SWING_DANCE")+getskilllv("WA_SYMPHONY_OF_LOVER")+getskilllv("WA_MOONLIT_SERENADE"))/5; },{},{} -24314,Ninja_Shadow_Shield,Ninja Shadow Shield,12,10,,0,,0,,0,0x02000000,63,2,262144,,1,1,,{ .@r = getrefine(); bonus bAspd,1; bonus bBaseAtk,(3*getskilllv("NJ_TOBIDOUGU")); autobonus3 "{ bonus bAspd,1; }",1000,50000,"NJ_NEN"; .@val = 4 * .@r; if (.@r >= 7) { .@val += 10; if (.@r >= 9) { .@val += 10; } } bonus2 bIgnoreDefClassRate,Class_Normal,.@val; bonus2 bIgnoreMdefClassRate,Class_Normal,.@val; },{},{} -24315,Taekwon_Shadow_Shield,Taekwon Shadow Shield,12,10,,0,,0,,0,0x00E00000,63,2,262144,,1,1,,{ .@r = getrefine(); .@val = 3; if (.@r >= 7) { .@val += 2; if (.@r >= 9) { .@val += 3; } } bonus2 bIgnoreDefClassRate,Class_Normal,(3*(getskilllv("TK_HPTIME")+.@r)); bonus2 bIgnoreMdefClassRate,Class_Normal,(3*(getskilllv("TK_SPTIME")+.@r)); bonus2 bAddClass,Class_All,.@val; bonus bMatkRate,.@val; },{},{} -24316,Doram_Physical_Shadow_Shield,Doram Physical Shadow Shield,12,10,,0,,0,,0,0x80000000,7,2,262144,,1,1,,{ .@r = getrefine(); bonus2 bAddClass,Class_All,3; autobonus3 "{ bonus bAspd,1; }",1000,50000,"SU_ARCLOUSEDASH"; bonus2 bSkillCooldown,"SU_LUNATICCARROTBEAT",-(.@r*200); if (.@r>=7) bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",5; if (.@r>=9) bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",5; },{},{} -24317,Doram_Magical_Shadow_Shield,Doram Magical Shadow Shield,12,10,,0,,0,,0,0x80000000,7,2,262144,,1,1,,{ .@r = getrefine(); bonus bMatkRate,3; autobonus3 "{ bonus2 bSPRegenRate,5,5000; }",1000,30000,"SU_BUNCHOFSHRIMP"; bonus2 bSkillCooldown,"SU_CN_METEOR",-(.@r*100); if (.@r>=7) bonus2 bSkillAtk,"SU_CN_METEOR",5; if (.@r>=9) bonus2 bSkillAtk,"SU_CN_METEOR",5; },{},{} -24318,Super_Novice_Shadow_Shield,Super Novice Shadow Shield,12,10,,0,,0,,0,0x00000001,63,2,262144,,1,1,,{ .@r = getrefine(); bonus bMaxHP,1000; bonus bMaxSP,200; bonus bAspdRate,(2*getskilllv("TF_DOUBLE")+.@r); bonus bVariableCastrate,-(2*getskilllv("AC_OWL")+.@r); if (.@r>=7) { bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; } if (.@r>=9) { bonus2 bAddClass,Class_All,3; bonus bMatkRate,3; } },{},{} -24319,Gunslinger_Shadow_Shield,Gunslinger Shadow Shield,12,10,,0,,0,,0,0x41000000,63,2,262144,,1,1,,{ .@r = getrefine(); bonus bCritAtkRate,5; bonus bCritical,(getskilllv("GS_SINGLEACTION")*2)+.@r; if (.@r>=7) bonus bCritAtkRate,2; if (.@r>=9) bonus bCritAtkRate,3; },{},{} -24320,S_Hasty_Shoes_II,Hasty Shadow Shoes II,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ .@val = 1; if (getrefine() >= 7) { .@val += 1; } bonus bFlee,5; bonus2 bAddClass,Class_All,.@val; bonus bMatkRate,.@val; },{},{} -24321,S_Bearer's_Pendant_II,Bearer's Shadow Pendant II,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ bonus bBaseAtk,5; if (getrefine() >= 7) { .@val = 3; } else { .@val = 1; } bonus bMaxHPrate,.@val; },{},{} -24322,S_Gemstone_Earring_II,Gemstone Shadow Earring II,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ if (getrefine() >= 7) { .@val = 3; } else { .@val = 2; } bonus bMatk,5; bonus bUseSPrate,-.@val; },{},{} -24323,S_Spellflow_Shield_II,Spellflow Shadow Shield II,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ bonus bMatkRate,1 + (getrefine() >= 7); bonus bUseSPrate,-1; },{},{} -24324,S_Spiritual_Weapon_II,Spiritual Shadow Weapon II,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus bSPrecovRate,5; bonus2 bAddClass,Class_All,1 + (getrefine() >= 7); },{},{} -24325,S_Malicious_Armor_II,Malicious Shadow Armor II,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ bonus bMaxHP,100; bonus2 bAddClass,Class_All,1 + (getrefine() >= 7); },{},{} -24326,S_Sigrun_Armor,Sigrun Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); bonus bLuk,1; bonus bHit,.@r; if (BaseClass == Job_Swordman || BaseClass == Job_Thief || (BaseClass == Job_Taekwon && BaseJob != Job_Soul_Linker)) { bonus bBaseAtk,15; } else if (BaseClass == Job_Merchant || BaseClass == Job_Archer || BaseClass == Job_Gunslinger) { bonus bLongAtkRate,3; } else if (BaseClass == Job_Mage || BaseClass == Job_Acolyte || BaseClass == Job_Ninja || BaseJob == Job_Soul_Linker) { bonus bMatk,15; } else if (BaseClass == Job_Novice || BaseJob == Job_Summoner) { bonus bAspdRate,5; bonus bMaxHP,1000; } },{},{} -24327,S_Sigrun_Shield,Sigrun Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); bonus bVit,1; bonus bDef,5*.@r; if (BaseClass == Job_Swordman || BaseClass == Job_Thief || (BaseClass == Job_Taekwon && BaseJob != Job_Soul_Linker)) { bonus bAspd,1; } else if (BaseClass == Job_Merchant || BaseClass == Job_Archer || BaseClass == Job_Gunslinger) { bonus bFlee,15; } else if (BaseClass == Job_Mage || BaseClass == Job_Acolyte || BaseClass == Job_Ninja || BaseJob == Job_Soul_Linker) { bonus bMaxSPrate,2; bonus bHealPower,3; } else if (BaseClass == Job_Novice || BaseJob == Job_Summoner) { bonus bVariableCastrate,-5; bonus bMaxSP,300; } },{},{} -24328,S_Force_Executioner_Weapon,Force Executioner Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ .@r = getrefine(); bonus bBaseAtk,5+.@r; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,.@r/2; },{},{} -24329,S_Spirit_Magic_Executioner_Weapon,Spirit Magic Executioner Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ .@r = getrefine(); bonus bMatk,5+.@r; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,.@r/2; },{},{} -24330,S_Caster_Armor_II,Caster Shadow Armor II,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ bonus bInt,3; bonus bSPrecovRate,20; bonus bVariableCastrate,-getrefine()/2; },{},{} -24331,S_Reload_Armor_II,Reload Shadow Armor II,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ bonus bHPrecovRate,20; bonus bVit,3; bonus bDelayrate,-(getrefine()/3); },{},{} -24332,S_Critical_Shield,Critical Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); bonus bCritical,5+.@r/2; if (.@r >= 9) { bonus bCritAtkRate,2; } else if (.@r >= 7) { bonus bCritAtkRate,1; } },{},{} -24333,S_Critical_Shoes,Critical Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ .@r = getrefine(); bonus bFlee,5+.@r/2; if (.@r >= 9) { bonus bCritical,4; } else if (.@r >= 7) { bonus bCritical,2; } },{},{} -24334,S_Magic_Compose_Armor,Magic Compose Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); if (.@r > 1) { .@val = .@r/2; bonus3 bAutoSpell,"MG_COLDBOLT",.@val,(5+.@r); bonus4 bAutoSpellOnSkill,"MG_COLDBOLT","MG_FIREBOLT",.@val,1000; bonus4 bAutoSpellOnSkill,"MG_FIREBOLT","MG_LIGHTNINGBOLT",.@val,1000; bonus4 bAutoSpellOnSkill,"MG_LIGHTNINGBOLT","WZ_EARTHSPIKE",.@val,1000; } },{},{} -24335,S_Gemstone_Weapon_II,Gemstone Shadow Weapon II,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus bHit,5; if (getrefine() >= 7) { bonus bUseSPrate,3; } else { bonus bUseSPrate,2; } },{},{} -24336,S_Gemstone_Shield_II,Gemstone Shadow Shield II,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ bonus bDef,5; if (getrefine() >= 7) { bonus bUseSPrate,3; } else { bonus bUseSPrate,2; } },{},{} -24337,S_Bearer's_Armor_II,Bearer's Shadow Armor II,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ bonus bMDef,1; if (getrefine() >= 7) { bonus bMaxHPrate,3; } else { bonus bMaxHPrate,1; } },{},{} -24338,S_Bearer's_Shoes_II,Bearer's Shadow Shoes II,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ bonus bMaxSP,50; if (getrefine() >= 7) { bonus bMaxHPrate,3; } else { bonus bMaxHPrate,1; } },{},{} -24339,S_Almighty_Earring,Almighty Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ bonus bAllStats,getrefine(); },{},{} -24340,S_Almighty_Pendant,Almighty Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ bonus bAllStats,getrefine(); },{},{} -24341,S_All_Race_Shoes,All Race Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ .@r = getrefine(); if (.@r >= 9) { .@val = 5; } else if (.@r >= 7) { .@val = 3; } else { .@val = 2; } bonus2 bAddRace,RC_All,.@val; bonus2 bMagicAddRace,RC_All,.@val; },{},{} -24342,S_All_Race_Shield,All Race Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); if (.@r >= 9) { .@val = 3; } else if (.@r >= 7) { .@val = 2; } else { .@val = 1; } bonus2 bSubRace,RC_All,.@val; },{},{} -24343,S_Blitz_Weapon,Blitz Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ .@r = getrefine(); bonus bAspdRate,5+.@r/2; if (.@r >= 7) { bonus bAspd,1; if (.@r >= 9) { bonus bDelayrate,-1; } } },{},{} -24344,S_Blitz_Armor,Blitz Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); bonus bDef,25+5*(.@r/2); if (.@r >= 7) { bonus bAspd,1; if (.@r >= 9) { bonus bDelayrate,-1; } } },{},{} -24345,S_Tempest_Shield,Tempest Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ bonus2 bIgnoreMdefClassRate,Class_Normal,5+(getrefine()/2); },{},{} -24346,S_Tempest_Shoes,Tempest Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ bonus2 bIgnoreMdefClassRate,Class_Normal,5+(getrefine()/2); },{},{} -24347,S_Magic_Executioner_Holy_Water_Armor,Magic Executioner Holy Water Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@val = 5 + (getrefine()/2); bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,.@val; bonus2 bIgnoreMdefRaceRate,RC_Undead,.@val; },{},{} -24348,S_Magic_Exorcist_Corrupted_Armor,Magic Exorcist Corrupted Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@val = 5 + (getrefine()/2); bonus2 bIgnoreMdefRaceRate,RC_Demon,.@val; bonus2 bIgnoreMdefRaceRate,RC_Angel,.@val; },{},{} -24349,S_Magic_Vibration_Dragon_Killer_Armor,Magic Vibration Dragon Killer Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@val = 5 + (getrefine()/2); bonus2 bIgnoreMdefRaceRate,RC_Formless,.@val; bonus2 bIgnoreMdefRaceRate,RC_Dragon,.@val; },{},{} -24350,S_Magic_Scissor_Hunting_Armor,Magic Scissor Hunting Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@val = 5 + (getrefine()/2); bonus2 bIgnoreMdefRaceRate,RC_Plant,.@val; bonus2 bIgnoreMdefRaceRate,RC_Brute,.@val; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,.@val; },{},{} -24351,S_Magic_Fishing_Insect_Net_Armor,Magic Fishing Insect Net Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@val = 5 + (getrefine()/2); bonus2 bIgnoreMdefRaceRate,RC_Fish,.@val; bonus2 bIgnoreMdefRaceRate,RC_Insect,.@val; },{},{} -24352,S_Plasterer's_Armor_II,Plasterer's Shadow Armor II,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Stone,100*getrefine(); },{},{} -24353,S_Insomniac_Shoes_II,Insomniac Shadow Shoes II,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Sleep,100*getrefine(); },{},{} -24354,S_Peerless_Armor_II,Peerless Shadow Armor II,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Silence,100*getrefine(); },{},{} -24355,S_Adulate_Shoes_II,Adulate Shadow Shoes II,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Blind,100*getrefine(); },{},{} -24356,S_Unfreezing_Weapon_II,Unfreezing Shadow Weapon II,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Freeze,100*getrefine(); },{},{} -24357,S_Vitality_Earring_II,Vitality Shadow Earring II,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Bleeding,100*getrefine(); },{},{} -24358,S_Neutral_Weapon_II,Neutral Shadow Weapon II,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Stun,100*(getrefine()/2); },{},{} -24359,S_Uncursed_Pendant_II,Uncursed Shadow Pendant II,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ bonus bDef,1; bonus2 bResEff,Eff_Curse,100*getrefine(); },{},{} -24360,S_Tension_Weapon,Tension Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus bMaxHP,100 + 150*(getrefine()/2); },{},{} -24361,S_Tension_Earring,Tension Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ bonus bMaxHPrate,1; bonus bBaseAtk,5; bonus bMaxHP,50*(getrefine()/2); },{},{} -24362,S_Tension_Pendant,Tension Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ .@val = 2 + (getrefine()/3); bonus bBaseAtk,5; bonus bHealPower2,.@val; bonus bAddItemHealRate,.@val; },{},{} -24363,S_Elegant_Weapon,Elegant Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus bMaxHP,100 + 150*(getrefine()/2); },{},{} -24364,S_Elegant_Earring,Elegant Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ bonus bMaxHPrate,1; bonus bMatk,5; bonus bMaxHP,50*(getrefine()/2); },{},{} -24365,S_Elegant_Pendant,Elegant Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ .@val = 2 + (getrefine()/3); bonus bMatk,5; bonus bHealPower2,.@val; bonus bAddItemHealRate,.@val; },{},{} -24366,S_Healing_Shield,Healing Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); bonus bMatk,10; if (.@r >= 7) { .@val = 3; if (.@r >= 9) { .@val += 5; } bonus bHealPower,.@val; } },{},{} -24367,S_Healing_Shoes,Healing Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ .@r = getrefine(); bonus bMatk,10; if (.@r >= 7) { .@val = 3; if (.@r >= 9) { .@val += 5; } bonus bHealPower,.@val; } },{},{} -24368,S_Restore_Earring,Restore Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ .@r = getrefine(); if (.@r >= 9) { .@val = 50; } else if (.@r >= 7) { .@val = 30; } else { .@val = 20; } bonus bHPrecovRate,.@val; },{},{} -24369,S_Restore_Pendant,Restore Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ .@r = getrefine(); if (.@r >= 9) { .@val = 50; } else if (.@r >= 7) { .@val = 30; } else { .@val = 20; } bonus bSPrecovRate,.@val; },{},{} -24370,S_Mortal_Blow_Weapon,Mortal Blow Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ .@r = getrefine(); if (.@r >= 9) { .@val = 7; } else if (.@r >= 7) { .@val = 4; } else { .@val = 2; } bonus bCritAtkRate,.@val; },{},{} -24371,S_Mortal_Blow_Earring,Mortal Blow Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ .@r = getrefine(); if (.@r >= 9) { .@val = 3; } else if (.@r >= 7) { .@val = 2; } else { .@val = 1; } bonus bCritAtkRate,.@val; },{},{} -24372,S_Mortal_Blow_Pendant,Mortal Blow Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ .@r = getrefine(); if (.@r >= 9) { .@val = 3; } else if (.@r >= 7) { .@val = 2; } else { .@val = 1; } bonus bCritAtkRate,.@val; },{},{} -24373,S_Penetration_Shoes,Penetration Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ bonus2 bIgnoreDefClassRate,Class_Normal,5+(getrefine()/2); },{},{} -24374,S_Penetration_Shield,Penetration Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ bonus2 bIgnoreDefClassRate,Class_Normal,5+(getrefine()/2); },{},{} -24375,S_Executioner_Holy_Water_Armor,Executioner Holy Water Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@val = 5 + (getrefine()/2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,.@val; bonus2 bIgnoreDefRaceRate,RC_Undead,.@val; },{},{} -24376,S_Exorcist_Corrupted_Armor,Exorcist Corrupted Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@val = 5 + (getrefine()/2); bonus2 bIgnoreDefRaceRate,RC_Demon,.@val; bonus2 bIgnoreDefRaceRate,RC_Angel,.@val; },{},{} -24377,S_Vibration_Dragon_Killer_Armor,Vibration Dragon Killer Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@val = 5 + (getrefine()/2); bonus2 bIgnoreDefRaceRate,RC_Formless,.@val; bonus2 bIgnoreDefRaceRate,RC_Dragon,.@val; },{},{} -24378,S_Scissor_Hunting_Armor,Scissor Hunting Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@val = 5 + (getrefine()/2); bonus2 bIgnoreDefRaceRate,RC_Plant,.@val; bonus2 bIgnoreDefRaceRate,RC_Brute,.@val; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,.@val; },{},{} -24379,S_Fishing_Insect_Net_Armor,Fishing Insect Net Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@val = 5 + (getrefine()/2); bonus2 bIgnoreDefRaceRate,RC_Fish,.@val; bonus2 bIgnoreDefRaceRate,RC_Insect,.@val; },{},{} -24380,S_Sentimental_Weapon,Sentimental Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus MaxSP,10+15*(getrefine()/2); },{},{} -24381,S_Sentimental_Earring,Sentimental Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ bonus bBaseAtk,5; bonus bMaxSPrate,1; bonus bMaxSP,5*(getrefine()/2); },{},{} -24382,S_Sentimental_Pendant,Sentimental Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ bonus bBaseAtk,5; bonus bSPrecovRate,2+(getrefine()/3); },{},{} -24383,S_Enchanting_Weapon,Enchanting Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus bMaxSP,10+15*(getrefine()/2); },{},{} -24384,S_Enchanting_Earring,Enchanting Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ bonus bMatk,5; bonus bMaxSPrate,1; bonus bMaxSP,5*(getrefine()/2); },{},{} -24385,S_Enchanting_Pendant,Enchanting Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ bonus bMatk,5; bonus bSPrecovRate,2+(getrefine()/3); },{},{} -24386,S_Infinity_Weapon,Infinity Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ .@r = getrefine(); .@val = .@r/3; if (.@val) { bonus2 bAddSize,Size_All,.@val; bonus2 bMagicAddSize,Size_All,.@val; bonus2 bSubSize,Size_All,.@val; if (.@r >= 10) { bonus bNoSizeFix; } } },{},{} -24387,S_Beginner's_Armor,Beginner's Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,100,1,,{ bonus bInt,2; },{},{} -24388,S_Beginner's_Shield,Beginner's Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,100,1,,{ bonus bVit,2; },{},{} -24389,S_Beginner's_Shoes,Beginner's Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,100,1,,{ bonus bAgi,2; },{},{} -24390,S_Beginner's_Weapon,Beginner's Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,100,1,,{ bonus bStr,2; },{},{} -24391,S_Beginner's_Earring,Beginner's Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,100,1,,{ bonus bDex,2; },{},{} -24392,S_Beginner's_Pendant,Beginner's Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,100,1,,{ bonus bLuk,2; },{},{} -24393,S_Physical_Shoes,Physical Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ .@r = getrefine(); if (.@r >= 9) { bonus bAspdRate,8; } else if (.@r >= 7) { bonus bAspdRate,5; } else { bonus bAspdRate,2; } },{},{} -24394,S_Physical_Shield,Physical Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); bonus bMaxHP,200; if (.@r >= 9) { bonus bMaxHPrate,5; } else if (.@r >= 7) { bonus bMaxHPrate,2; } },{},{} -24395,S_Physical_Armor,Physical Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); bonus bBaseAtk,20; if (.@r >= 9) { bonus2 bAddClass,Class_All,5; } else if (.@r >= 7) { bonus2 bAddClass,Class_All,2; } },{},{} -24396,S_Magical_Shoes,Magical Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ .@r = getrefine(); if (.@r >= 9) { bonus bVariableCastrate,8; } else if (.@r >= 7) { bonus bVariableCastrate,5; } else { bonus bVariableCastrate,2; } },{},{} -24397,S_Magical_Shield,Magical Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ .@r = getrefine(); bonus bMaxSP,100; if (.@r >= 9) { bonus bMaxSPrate,5; } else if (.@r >= 7) { bonus bMaxSPrate,2; } },{},{} -24398,S_Magical_Armor,Magical Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); bonus bMatk,20; if (.@r >= 9) { bonus bMatkRate,5; } else if (.@r >= 7) { bonus bMatkRate,2; } },{},{} -24399,S_Immune_Athena_Shield,Immune Athena Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ bonus bDef,50+20*(getrefine()/2); },{},{} -24400,S_Hard_Champion_Shoes,Hard Champion Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ .@val = getrefine()/2; bonus bMaxHP,200; bonus bMaxSP,100; bonus bMaxHPrate,.@val; bonus bMaxSPrate,.@val; },{},{} -24401,S_Kingbird_Ancient_Armor,Kingbird Ancient Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ .@r = getrefine(); bonus bBaseAtk,15; bonus bLongAtkRate,.@r/2; if (.@r >= 7) { bonus bHit,30; } else { bonus bHit,15; } },{},{} -24402,Rebellion_Shadow_Armor,Rebellion Shadow Armor,12,10,,0,,,,,0x40000000,63,2,65536,,100,1,,{ .@r = getrefine(); bonus2 bSkillCooldown,"RL_HEAT_BARREL",-1000*(1+.@r/2); },{},{} -24403,Kagerou_Shadow_Armor,Kagerou Shadow Armor,12,10,,0,,,,,0x20000000,63,1,65536,,100,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"KO_HUUMARANKA",20+.@r*5; },{},{} -24404,Oboro_Shadow_Armor,Oboro Shadow Armor,12,10,,0,,,,,0x20000000,63,0,65536,,100,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"NJ_KOUENKA",20+.@r*5; bonus2 bSkillAtk,"NJ_HYOUSENSOU",20+.@r*5; bonus2 bSkillAtk,"NJ_HUUJIN",20+.@r*5; },{},{} -24405,Rebellion_Shadow_Shoes,Rebellion Shadow Shoes,12,10,,0,,,,,0x40000000,63,2,524288,,100,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",20+.@r*5; },{},{} -24406,Kagerou_Shadow_Shoes,Kagerou Shadow Shoes,12,10,,0,,,,,0x20000000,63,1,524288,,100,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"KO_HAPPOKUNAI",20+.@r*5; },{},{} -24407,Oboro_Shadow_Shoes,Oboro Shadow Shoes,12,10,,0,,,,,0x20000000,63,0,524288,,100,1,,{ .@r = getrefine(); bonus2 bSkillCooldown,"KO_ZANZOU",-1000*(1+.@r/2); },{},{} -24408,Doram_Physical_Shadow_Armor,Doram Physical Shadow Armor,12,10,,0,,,,,0x80000000,7,2,65536,,100,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"SU_PICKYPECK",20; bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",.@r*3; },{},{} -24409,Doram_Physical_Shadow_Shoes,Doram Physical Shadow Shoes,12,10,,0,,,,,0x80000000,7,2,524288,,100,1,,{ .@r = getrefine(); bonus2 bSkillCooldown,"SU_HISS",-3000*(1+.@r/2); },{},{} -24410,Doram_Magical_Shadow_Armor,Doram Magical Shadow Armor,12,10,,0,,,,,0x80000000,7,2,65536,,100,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"SU_CN_METEOR",20; bonus2 bSkillAtk,"SU_SV_STEMSPEAR",.@r*3; },{},{} -24411,Doram_Magical_Shadow_Shoes,Doram Magical Shadow Shoes,12,10,,0,,,,,0x80000000,7,2,524288,,100,1,,{ .@r = getrefine(); bonus2 bSkillCooldown,"SU_CHATTERING",-3000*(1+.@r/2); },{},{} -24412,Star_Emperor_Shadow_Armor,Star Emperor Shadow Armor,12,10,,0,,,,,0x00400000,63,2,65536,,100,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"SJ_NEWMOONKICK",20; bonus2 bSkillAtk,"SJ_FULLMOONKICK",.@r*3; },{},{} -24413,Star_Emperor_Shadow_Shoes,Star Emperor Shadow Shoes,12,10,,0,,,,,0x00400000,63,2,524288,,100,1,,{ .@r = getrefine(); bonus2 bSkillCooldown,"SJ_DOCUMENT",-3000*(1+.@r/2); },{},{} -24414,Soul_Reaper_Shadow_Armor,Soul Reaper Shadow Armor,12,10,,0,,,,,0x00800000,63,2,65536,,100,1,,{ .@r = getrefine(); bonus2 bSkillAtk,"SP_SWHOO",20; bonus2 bSkillAtk,"SP_SPA",.@r*3; },{},{} -24415,Soul_Reaper_Shadow_Shoes,Soul Reaper Shadow Shoes,12,10,,0,,,,,0x00800000,63,2,524288,,100,1,,{ .@r = getrefine(); bonus2 bSkillCooldown,"SP_SOULREAPER",-3000-1000*(.@r/2); },{},{} -24416,S_Temporal_Transcendent_Weapon,Temporal Transcendent Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus bCritAtkRate,7; },{},{} -24417,S_Temporal_Transcendent_Armor,Temporal Transcendent Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ bonus bAspd,1; },{},{} -24418,S_Temporal_Transcendent_Shield,Temporal Transcendent Shadow Shield,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ bonus bVariableCastrate,-10; },{},{} -24419,S_Temporal_Transcendent_Shoes,Temporal Transcendent Shadow Shoes,12,0,,0,,,,0,0xFFFFFFFF,63,2,524288,,1,1,,{ bonus bAspdRate,7; },{},{} -24420,S_Temporal_Transcendent_Earring,Temporal Transcendent Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ bonus bMatk,15; },{},{} -24421,S_Temporal_Transcendent_Pendant,Temporal Transcendent Shadow Pendant,12,0,,0,,,,0,0xFFFFFFFF,63,2,2097152,,1,1,,{ bonus bBaseAtk,15; },{},{} -24423,S_Tempest_Weapon,Tempest Shadow Weapon,12,0,,0,,,,0,0xFFFFFFFF,63,2,131072,,1,1,,{ bonus2 bIgnoreDefClassRate,Class_Normal,5+(getrefine()/2); },{},{} -24424,S_Tempest_Armor,Tempest Shadow Armor,12,0,,0,,,,0,0xFFFFFFFF,63,2,65536,,1,1,,{ bonus2 bIgnoreDefClassRate,Class_Normal,5+(getrefine()/2); },{},{} - -25000,SPdrainStone_Top,SP Absorption Stone (Upper),3,10,,100,,,,,,,,,,,,,{},{},{} -25001,DEFStone_Middle,Def Stone(Middle),6,10,,100,,,,,,,,,,,,,{},{},{} -25002,ChangeLUK_Middle,LUK Exchange Stone(Middle),3,10,,100,,,,,,,,,,,,,{},{},{} -25003,ChangeSTR_Middle,STR Exchange Stone(Middle),3,10,,100,,,,,,,,,,,,,{},{},{} -25004,ChangeAGI_Middle,AGI Exchange Stone(Middle),3,10,,100,,,,,,,,,,,,,{},{},{} -25005,ChangeINT_Middle,INT Exchange Stone(Middle),3,10,,100,,,,,,,,,,,,,{},{},{} -25006,ChangeVIT_Middle,VIT Exchange Stone(Middle),3,10,,100,,,,,,,,,,,,,{},{},{} -25007,ChangeDEX_Middle,DEX Exchange Stone(Middle),3,10,,100,,,,,,,,,,,,,{},{},{} -25008,ChangeVIT_Bottom,VIT Exchange Stone(Lower),3,10,,100,,,,,,,,,,,,,{},{},{} -25009,ChangeAGI_Bottom,AGI Exchange Stone(Lower),3,10,,100,,,,,,,,,,,,,{},{},{} -25010,ChangeDEX_Bottom,DEX Exchange Stone(Lower),3,10,,100,,,,,,,,,,,,,{},{},{} -25011,ChangeLUK_Bottom,LUK Exchange Stone(Lower),3,10,,100,,,,,,,,,,,,,{},{},{} -25012,ChangeSTR_Bottom,STR Exchange Stone(Lower),3,10,,100,,,,,,,,,,,,,{},{},{} -25013,ChangeINT_Bottom,INT Exchange Stone(Lower),3,10,,100,,,,,,,,,,,,,{},{},{} -25014,MDEFStone_Bottom,Mdef Stone(Lower),6,10,,100,,,,,,,,,,,,,{},{},{} -25015,EXPStone_Bottom,EXP Stone(Lower),6,10,,100,,,,,,,,,,,,,{},{},{} -25016,ATKStone_Bottom,ATK Stone (Lower),3,10,,100,,,,,,,,,,,,,{},{},{} -25017,MATKStone_Bottom,MATK Stone (Lower),3,10,,100,,,,,,,,,,,,,{},{},{} -//=================================================================== -// New etc. -//=================================================================== -25043,Thorny_Vine_Flute,Thorny Vine Flute,3,0,,0,,,,,,,,,,,,,{},{},{} -25044,Hard_Thorny_Vine,Hard Thorny Vine,3,0,,10,,,,,,,,,,,,,{},{},{} -25045,Luxurious_Cloth,Luxurious Cloth,3,0,,0,,,,,,,,,,,,,{},{},{} -25046,Boarding_Pass,Boarding Pass,3,0,,0,,,,,,,,,,,,,{},{},{} -25047,Kahlunac,Kahlunac,3,0,,0,,,,,,,,,,,,,{},{},{} -25048,Hearty_Lunchbox,Hearty Lunchbox,3,0,,0,,,,,,,,,,,,,{},{},{} -25049,Basilac_Clam,Basilac Clam,3,0,,0,,,,,,,,,,,,,{},{},{} - -25058,TwinkleEffect_Top,Twinkle Effect (Upper),3,10,,100,,,,,,,,,,,,,{},{},{} -25059,GhostEffect_Middle,Ghost Effect (Middle),3,10,,100,,,,,,,,,,,,,{},{},{} -25060,Critical_Stone,Critical Stone (Middle),3,10,,100,,,,,,,,,,,,,{},{},{} -25061,Range_Stone,Range Stone (Middle),3,10,,100,,,,,,,,,,,,,{},{},{} -25062,Greed_Stone,Greed Stone (Lower),3,10,,100,,,,,,,,,,,,,{},{},{} -25063,MaxHP2_Stone,Health Stone (Lower),3,10,,100,,,,,,,,,,,,,{},{},{} -25064,MaxSP2_Stone,Magic Stone (Lower),3,10,,100,,,,,,,,,,,,,{},{},{} -25065,Detoxify_Stone,Detoxify Stone (Lower),3,10,,100,,,,,,,,,,,,,{},{},{} -25066,Recovery_Stone,Recovery Stone (Lower),6,20,,100,,,,,,,,,,,,,{},{},{} -25067,CastingStone_Robe,Casting Stone (Garment),3,10,,100,,,,,,,,,,,,,{},{},{} -25068,ASPDStone_Top,ASPD Stone (Upper),3,10,,100,,,,,,,,,,,,,{},{},{} -25069,ReloadStone_Top,Reload Stone (Upper),3,10,,100,,,,,,,,,,,,,{},{},{} -25070,ReloadStone_Middle,Reload Stone (Middle),3,10,,100,,,,,,,,,,,,,{},{},{} -25071,ReloadStone_Bottom,Reload Stone (Lower),3,10,,100,,,,,,,,,,,,,{},{},{} -25072,Kyrie_Stone,Kyrie Stone (Lower),3,10,,100,,,,,,,,,,,,,{},{},{} - -25127,Silent_Energy_Particle,Silent Energy Particle,3,0,,0,,,,,,,,,,,,,{},{},{} -25128,Weak_Energy_Particle,Weak Energy Particle,3,0,,0,,,,,,,,,,,,,{},{},{} -25129,Unstable_Energy_Particle,Unstable Energy Particle,3,0,,0,,,,,,,,,,,,,{},{},{} -25130,Sinister_Energy_Particle,Sinister Energy Particle,3,0,,0,,,,,,,,,,,,,{},{},{} -25131,Fallen_Energy_Particle,Fallen Energy Particle,3,0,,0,,,,,,,,,,,,,{},{},{} -25132,Pumpkin_Deco,Pumpkin Deco,3,0,,0,,,,,,,,,,,,,{},{},{} -25133,Dried_White_Stem,Dried White Stem,3,0,,0,,,,,,,,,,,,,{},{},{} -25136,ElectricEffect_Middle,Electric Effect (Middle),3,20,,100,,,,,,,,,,,,,{},{},{} -25137,GreenFloor_Bottom,Green Floor Effect (Lower),3,20,,100,,,,,,,,,,,,,{},{},{} -25138,ShrinkEffect_Middle,Shrink Effect (Middle),3,20,,100,,,,,,,,,,,,,{},{},{} -25139,Identify_Stone,Identify Stone (Lower),3,20,,100,,,,,,,,,,,,,{},{},{} -25141,EXPStone_Middle,Experience Stone (Middle),3,20,,100,,,,,,,,,,,,,{},{},{} -25142,Doram_Token,Doram Token,3,,0,0,,,,,,,,,,,,,{},{},{} -25143,Gift_Stuffed_Doll,Gift Stuffed Doll,3,0,,0,,,,,,,,,,,,,{},{},{} -25144,Bridge_Postured_Doll,Bridge Postured Doll,3,0,,0,,,,,,,,,,,,,{},{},{} -25145,Burnt_Spector_Doll,Burnt Spector Doll,3,0,,0,,,,,,,,,,,,,{},{},{} -25146,Cold_Blooded_Queen_Doll,Cold Blooded Queen Doll,3,0,,0,,,,,,,,,,,,,{},{},{} -25147,Well_Eatenl_Rabbit_Doll,Well Eatenl Rabbit Doll,3,0,,0,,,,,,,,,,,,,{},{},{} -25148,Cute_Starved_Demon_Doll,Cute Starved Demon Doll,3,0,,0,,,,,,,,,,,,,{},{},{} -25149,Doll_With_Warm_Scarf,Doll With Warm Scarf,3,0,,0,,,,,,,,,,,,,{},{},{} -25150,Hugging_Alice_Pilow,Hugging Alice Pilow,3,0,,0,,,,,,,,,,,,,{},{},{} -25151,Rachels_Revolver,Rachel's Revolver,3,0,,0,,,,,,,,,,,,,{},{},{} -25152,Cherish_Bouquet,Cherished Bouquet,3,0,,0,,,,,,,,,,,,,{},{},{} -25153,Broken_Gun_Wreck,Broken Gun Wreck,3,0,,0,,,,,,,,,,,,,{},{},{} -25154,Antique_Powder,Antique Gunpowder,3,0,,10,,,,,,,,,,,,,{},{},{} -25155,Swz_Honor_Token,Schwarz's Honor Token,3,0,,0,,,,,,,,,,,,,{},{},{} -25156,Piece_Of_Chimera,Piece of Chimera,3,0,,10,,,,,,,,,,,,,{},{},{} -25157,Fallen_Leaves_Branch,Fallen Leaves Branch,3,0,,10,,,,,,,,,,,,,{},{},{} -25158,Core_Jelly,Core Jelly,3,0,,10,,,,,,,,,,,,,{},{},{} -25159,Heart_Hunter_Seal,Heart Hunter's Seal,3,0,,10,,,,,,,,,,,,,{},{},{} -25160,Borrow_Book,Borrowed Book,3,0,,0,,,,,,,,,,,,,{},{},{} -25161,Handmade_cookie2,Delicious Handmade Cookie,3,0,,0,,,,,,,,,,,,,{},{},{} -25162,Anchovy_cookie,Crispy Anchovy,3,0,,0,,,,,,,,,,,,,{},{},{} -25163,Arms_Shop_AD,Arms Shop Ad,3,0,,0,,,,,,,,,,,,,{},{},{} -25164,Fresh_Tea_Leaves,Fresh Tea Leaves,3,0,,0,,,,,,,,,,,,,{},{},{} -25165,High_Class_Tea,High Class Tea,3,0,,0,,,,,,,,,,,,,{},{},{} -25166,Very_Shining_Ring,Very Shining Ring,3,0,,0,,,,,,,,,,,,,{},{},{} -25167,Old_Letter,Old Letter,3,0,,0,,,,,,,,,,,,,{},{},{} -25170,MinorCastingStone_Robe,Minor Casting Stone (Garment),3,20,,100,,,,,,,,,,,,,{},{},{} -25171,EXPStone_Top,Experience Stone (Upper),3,20,,100,,,,,,,,,,,,,{},{},{} -25172,CastingStone_Top,Variable Casting Stone (Upper),3,20,,100,,,,,,,,,,,,,{},{},{} -25173,CastingStone_Middle,Variable Casting Stone (Middle),3,20,,100,,,,,,,,,,,,,{},{},{} -25174,CastingStone_Bottom,Variable Casting Stone (Lower),3,20,,100,,,,,,,,,,,,,{},{},{} -25175,LexAeternaStone_Middle,Lex Aeterna Stone (Middle),3,20,,100,,,,,,,,,,,,,{},{},{} -25176,BlueAuraEffect_Middle,Blue Aura Effect (Middle),3,20,,100,,,,,,,,,,,,,{},{},{} -25177,ShadowEffect_Middle,Shadow Effect (Middle),3,20,,100,,,,,,,,,,,,,{},{},{} -25178,PinkGlowEffect_Middle,Pink Glow Effect (Middle),3,20,,100,,,,,,,,,,,,,{},{},{} -25179,Blessing_Star,Blessing Star,3,0,,0,,,,,,,,,,,,,{},{},{} -25180,Old_Couple_Ring,Old Rings,3,0,,0,,,,,,,,,,,,,{},{},{} -25181,Wood_Rosary,Wood Rosary,3,0,,0,,,,,,,,,,,,,{},{},{} -25182,Assassin_PT_Dagger,Assassin's Mark Dagger,3,0,,0,,,,,,,,,,,,,{},{},{} -25183,Deco_Thimble_Archer,Decorated Archer's Thimble,3,0,,0,,,,,,,,,,,,,{},{},{} -25184,Portable_Sewingbox,Portable Sewingbox,3,0,,0,,,,,,,,,,,,,{},{},{} -25185,Locket_Pendant,Locket Pendant,3,0,,0,,,,,,,,,,,,,{},{},{} -25187,Slug_Bullet,Slug Bullet,3,1200,,1200,,,,,,,,,,,,,{},{},{} -25205,ShrinkEffect_Bottom,Shrink Effect (Lower),3,20,,100,,,,,,,,,,,,,{},{},{} -25206,ElectricEffect_Top,Electric Effect (Upper),3,20,,100,,,,,,,,,,,,,{},{},{} -25223,Para_Team_Coin,Eden Group Coin,3,0,,0,,,,,,,,,,,,,{},{},{} -25224,WhiteBodyEffect_Middle,White Body Effect (Middle),3,20,,100,,,,,,,,,,,,,{},{},{} -25225,ExplodingEffect_Middle,Crimson Wave Effect (Middle),3,20,,100,,,,,,,,,,,,,{},{},{} -25226,WaterFieldEffect_Bottom,Water Field Effect (Lower),3,20,,100,,,,,,,,,,,,,{},{},{} -25227,Heal_Stone,Heal Stone (Lower),3,20,,100,,,,,,,,,,,,,{},{},{} -25228,Teleport_Stone,Teleport Stone (Lower),3,20,,100,,,,,,,,,,,,,{},{},{} -25229,Steal_Stone,Steal Stone (Lower),3,20,,100,,,,,,,,,,,,,{},{},{} -25231,Suspicious_Bottle,Suspicious Bottle,3,1000,,10,,,,,,,,,,,,,{},{},{} -25232,Cheap_Lubricant,Cheap Lubricant,3,1000,,10,,,,,,,,,,,,,{},{},{} -25233,Cotton_Tufts,Cotton Tufts,3,1000,,10,,,,,,,,,,,,,{},{},{} -25238,New_Normal_Lubricant,New Normal Lubricant,3,0,,0,,,,,,,,,,,,,{},{},{} -25239,New_Advanced_Lubricant,New Advanced Lubricant,3,0,,0,,,,,,,,,,,,,{},{},{} -25246,Juice_Mix_Package,Juice Mix Package,3,0,,0,,,,,,,,,,,,,{},{},{} -25247,Purple_Ore,Purple Ore,3,0,,0,,,,,,,,,,,,,{},{},{} -25248,Purple_Ore_Crate,Purple Ore Crate,3,0,,0,,,,,,,,,,,,,{},{},{} -25249,Buffalo_Bandit_Mane,Buffalo Bandit Mane,3,0,,0,,,,,,,,,,,,,{},{},{} -25250,Rock_Ridge_Coin,Rock Ridge Coin,3,0,,0,,,,,,,,,,,,,{},{},{} -25256,Hazy_Dream_Fragment,Hazy Dream Fragment,3,0,,10,,,,,,,,,,,,,{},{},{} -25257,Bloody_Love_Letter,Bloody Love Letter,3,780,,10,,,,,,,,,,,,,{},{},{} -25258,Broken_Arrow,Broken Arrow,3,550,,10,,,,,,,,,,,,,{},{},{} -25260,Fragment_of_Purple_Ore,Fragment of Purple Ore,3,0,,0,,,,,,,,,,,,,{},{},{} -25271,Illusion_Stone,Illusion Stone,3,10,,0,,,,,,,,,,,,,{},{},{} -25272,Illusion_Gemstone,Illusion Gemstone,3,0,,10,,,,,,,,,,,,,{},{},{} -25276,Clean_Bone,Clean Bone,3,348,,10,,,,,,,,,,,,,{},{},{} -25277,Deadly_Poison_Powder,Deadly Poison Powder,3,644,,10,,,,,,,,,,,,,{},{},{} -25278,Bandits_Scarf,Bandit's Scarf,3,330,,10,,,,,,,,,,,,,{},{},{} -25279,Crude_Ammo,Crude Ammo,3,300,,10,,,,,,,,,,,,,{},{},{} -25280,Broken_Shotgun,Broken Shotgun,3,910,,10,,,,,,,,,,,,,{},{},{} -25281,Crude_Scimitar,Crude Scimitar,3,970,,10,,,,,,,,,,,,,{},{},{} -25282,Worn_Revolver,Worn Revolver,3,820,,10,,,,,,,,,,,,,{},{},{} -25283,Brown_Muffler,Brown Muffler,3,420,,10,,,,,,,,,,,,,{},{},{} -25284,Swamp_Bug_Shell,Swamp Bug Shell,3,230,,10,,,,,,,,,,,,,{},{},{} -25285,Brown_Rat_Tail,Brown Rat Tail,3,210,,10,,,,,,,,,,,,,{},{},{} -25290,Sweets_Festival_Coin,Sweets Festival Coin,3,0,,0,,,,,,,,,,,,,{},{},{} -25302,DoubleAttack_Stone,Double Attack Stone (Garment),3,20,,100,,,,,,,,,,,,,{},{},{} -25303,Critical_Stone_Robe,Critical Stone (Garment),3,20,,100,,,,,,,,,,,,,{},{},{} -25304,Critical_Stone_Top,Critical Stone (Upper),3,20,,100,,,,,,,,,,,,,{},{},{} -25305,Critical_Stone_Bottom,Critical Stone (Lower),3,20,,100,,,,,,,,,,,,,{},{},{} -25306,CastStone_Robe,Variable Casting Stone (Garment),3,20,,100,,,,,,,,,,,,,{},{},{} -25375,Powerful_Soul_Essence,Powerful Soul Essence,3,0,,0,,,,,,,,,,,,,{},{},{} -25377,Luxurious_Pet_Food,Luxurious Pet Food,3,0,,10,,,,,,,,,,,,,{},{},{} -25409,SuraStone_Top,Champion Stone (Upper),3,20,,100,,,,,,,,,,,,,{},{},{} -25410,SuraStone_Middle,Champion Stone (Middle),3,20,,100,,,,,,,,,,,,,{},{},{} -25411,SuraStone_Lower,Champion Stone (Lower),3,20,,100,,,,,,,,,,,,,{},{},{} -25412,SuraStone_Robe,Sura Stone (Garment),3,20,,100,,,,,,,,,,,,,{},{},{} -25413,RangerStone_Top,Sniper Stone (Upper),3,20,,100,,,,,,,,,,,,,{},{},{} -25414,RangerStone_Middle,Sniper Stone (Middle),3,20,,100,,,,,,,,,,,,,{},{},{} -25415,RangerStone_Lower,Sniper Stone (Lower),3,20,,100,,,,,,,,,,,,,{},{},{} -25416,RangerStone_Robe,Ranger Stone (Garment),3,20,,100,,,,,,,,,,,,,{},{},{} -25417,SorcererStone_Top,Scholar Stone (Upper),3,20,,100,,,,,,,,,,,,,{},{},{} -25418,SorcererStone_Middle,Scholar Stone (Middle),3,20,,100,,,,,,,,,,,,,{},{},{} -25419,SorcererStone_Lower,Scholar Stone (Lower),3,20,,100,,,,,,,,,,,,,{},{},{} -25420,SorcererStone_Robe,Sorcerer Stone (Garment),3,20,,100,,,,,,,,,,,,,{},{},{} -25445,RuneknightStone_Top,Lord Knight Stone (Upper),3,20,,100,,,,,,,,,,,,,{},{},{} -25446,RuneknightStone_Middle,Lord Knight Stone (Middle),3,20,,100,,,,,,,,,,,,,{},{},{} -25447,RuneknightStone_Lower,Lord Knight Stone (Lower),3,20,,100,,,,,,,,,,,,,{},{},{} -25448,RuneknightStone_Robe,Rune Knight Stone (Garment),3,20,,100,,,,,,,,,,,,,{},{},{} -25449,GeneticStone_Robe,Genetic Stone (Garment),3,20,,100,,,,,,,,,,,,,{},{},{} -25450,GeneticStone_Top,Creator Stone (Upper),3,20,,100,,,,,,,,,,,,,{},{},{} -25451,GeneticStone_Middle,Creator Stone (Middle),3,20,,100,,,,,,,,,,,,,{},{},{} -25452,GeneticStone_Lower,Creator Stone (Lower),3,20,,100,,,,,,,,,,,,,{},{},{} -25453,WarlockStone_Top,High Wizard Stone (Upper),3,20,,100,,,,,,,,,,,,,{},{},{} -25454,WarlockStone_Middle,High Wizard Stone (Middle),3,20,,100,,,,,,,,,,,,,{},{},{} -25455,WarlockStone_Lower,High Wizard Stone (Lower),3,20,,100,,,,,,,,,,,,,{},{},{} -25456,WarlockStone_Robe,Warlock Stone (Garment),3,20,,100,,,,,,,,,,,,,{},{},{} -// -25464,World_Moving_Rights,World Moving Rights,3,20,,0,,,,,,,,,,,,,{},{},{} -// -25490,ShadowchaserStone_Top,Stalker Stone (Upper),3,20,,100,,,,,,,,,,,,,{},{},{} -25491,ShadowchaserStone_Middle,Stalker Stone (Middle),3,20,,100,,,,,,,,,,,,,{},{},{} -25492,ShadowchaserStone_Lower,Stalker Stone (Lower),3,20,,100,,,,,,,,,,,,,{},{},{} -25493,ShadowchaserStone_Robe,Shadow Chaser Stone (Garment),3,20,,100,,,,,,,,,,,,,{},{},{} -25494,MechanicStone_Top,Mastersmith Stone (Upper),3,20,,100,,,,,,,,,,,,,{},{},{} -25495,MechanicStone_Middle,Mastersmith Stone (Middle),3,20,,100,,,,,,,,,,,,,{},{},{} -25496,MechanicStone_Lower,Mastersmith Stone (Lower),3,20,,100,,,,,,,,,,,,,{},{},{} -25497,MechanicStone_Robe,Mechanic Stone (Garment),3,20,,100,,,,,,,,,,,,,{},{},{} -25498,WanderMinstrelStone_Top,Clown Gypsy Stone (Upper),3,20,,100,,,,,,,,,,,,,{},{},{} -25499,WanderMinstrelStone_Middle,Clown Gypsy Stone (Middle),3,20,,100,,,,,,,,,,,,,{},{},{} -25500,WanderMinstrelStone_Lower,Clown Gypsy Stone (Lower),3,20,,100,,,,,,,,,,,,,{},{},{} -25501,WanderMinstrelStone_Robe,Wanderer Minstrel Stone (Garment),3,20,,100,,,,,,,,,,,,,{},{},{} -25670,M_M_Defense,Modification Module (Defense),6,20,,10,,,,,,,,,,,,,{ .@r = getrefine(); .@def = 25; if (.@r >= 9) { .@def += 20; } else if (.@r >= 7) { .@def += 10; } bonus bDef,.@def; },{},{} -25671,M_M_Magic_Defense,Modification Module (Magic Defense),6,20,,10,,,,,,,,,,,,,{ .@r = getrefine(); .@mdef = 2; if (.@r >= 9) { .@mdef += 6; } else if (.@r >= 7) { .@mdef += 3; } bonus bMDef,.@mdef; },{},{} -25672,M_M_Vit,Modification Module (Vit),6,20,,10,,,,,,,,,,,,,{ bonus bVit,3; },{},{} -25673,M_M_Luk,Modification Module (Luk),6,20,,10,,,,,,,,,,,,,{ bonus bLuk,3; },{},{} -25674,M_M_Str,Modification Module (Str),6,20,,10,,,,,,,,,,,,,{ bonus bStr,3; },{},{} -25675,M_M_Agi,Modification Module (Agi),6,20,,10,,,,,,,,,,,,,{ bonus bAgi,3; },{},{} -25676,M_M_Int,Modification Module (Int),6,20,,10,,,,,,,,,,,,,{ bonus bInt,3; },{},{} -25677,M_M_Dex,Modification Module (Dex),6,20,,10,,,,,,,,,,,,,{ bonus bDex,3; },{},{} -25678,M_M_HP_recovery,Modification Module (HP recovery),6,20,,10,,,,,,,,,,,,,{ bonus bHPrecovRate,20; },{},{} -25679,M_M_SP_recovery,Modification Module (SP recovery),6,20,,10,,,,,,,,,,,,,{ bonus bSPrecovRate,20; },{},{} -25680,M_M_Spell5,Modification Module (Spell),6,20,,10,,,,,,,,,,,,,{ bonus bMatk,18; bonus bVariableCastrate,-10; },{},{} -25681,M_M_Attack_Delay_4,Modification Module (Attack Speed),6,20,,10,,,,,,,,,,,,,{ bonus bAspdRate,10; },{},{} -25682,M_M_Fatal4,Modification Module (Fatal),6,20,,10,,,,,,,,,,,,,{ bonus bCritAtkRate,10; bonus bCritical,4; },{},{} -25683,M_M_Expert_Archer5,Modification Module (Expert Archer),6,20,,10,,,,,,,,,,,,,{ bonus bLongAtkRate,10; },{},{} -25684,M_M_Vital,Modification Module (Vital),6,20,,10,,,,,,,,,,,,,{ .@r = getrefine(); bonus bMaxHPrate,5; if (.@r >= 9) { bonus bMaxHP,1250; } else if (.@r >= 7) { bonus bMaxHP,500; } },{},{} -25685,M_M_Mental,Modification Module (Mental),6,20,,10,,,,,,,,,,,,,{ .@r = getrefine(); bonus bMaxSPrate,5; if (.@r >= 9) { bonus bMaxSP,250; } else if (.@r >= 7) { bonus bMaxSP,100; } },{},{} -25686,M_M_Heal,Modification Module (Heal),6,20,,10,,,,,,,,,,,,,{ .@r = getrefine(); .@val = 5; if (.@r >= 9) { .@val += 10; } else if (.@r >= 7) { .@val += 5; } bonus bHealPower,.@val; },{},{} -25687,M_M_Power,Modification Module (Power),6,20,,10,,,,,,,,,,,,,{ .@r = getrefine(); bonus2 bAddClass,Class_All,5; if (.@r >= 9) { bonus bBaseAtk,50; } else if (.@r >= 7) { bonus bBaseAtk,25; } },{},{} -25688,M_M_Magic,Modification Module (Magic),6,20,,10,,,,,,,,,,,,,{ .@r = getrefine(); bonus bMatkRate,5; if (.@r >= 9) { bonus bMatk,50; } else if (.@r >= 7) { bonus bMatk,25; } },{},{} -25689,M_M_Shooter,Modification Module (Shooter),6,20,,10,,,,,,,,,,,,,{ .@r = getrefine(); .@val = 3; if (.@r >= 9) { .@val += 4; } else if (.@r >= 7) { .@val += 2; } bonus bLongAtkRate,.@val; },{},{} -25690,M_M_Fast,Modification Module (Fast),6,20,,10,,,,,,,,,,,,,{ .@r = getrefine(); bonus bAspd,1; if (.@r >= 9) { bonus bAspdRate,6; } else if (.@r >= 7) { bonus bAspdRate,3; } },{},{} -25691,M_M_Caster,Modification Module (Caster),6,20,,10,,,,,,,,,,,,,{ .@r = getrefine(); .@val = -5; if (.@r >= 9) { .@val -= 6; } else if (.@r >= 7) { .@val -= 3; } bonus bVariableCastrate,.@val; },{},{} -25692,M_M_Critical,Modification Module (Critical),6,20,,10,,,,,,,,,,,,,{ .@r = getrefine(); bonus bCritical,5; if (.@r >= 9) { bonus bCritAtkRate,10; } else if (.@r >= 7) { bonus bCritAtkRate,5; } },{},{} -25693,M_M_Delay_After_skill,Modification Module (Delay after skill),6,20,,10,,,,,,,,,,,,,{ .@r = getrefine(); .@val = -5; if (.@r >= 9) { .@val -= 10; } else if (.@r >= 7) { .@val -= 5; } bonus bDelayrate,.@val; },{},{} -25694,M_M_Fixed_Casting,Modification Module (Fixed Casting),6,20,,10,,,,,,,,,,,,,{ .@r = getrefine(); .@val = -300; if (.@r >= 9) { .@val -= 400; } else if (.@r >= 7) { .@val -= 200; } bonus bFixedCast,.@val; },{},{} -25695,M_M_Above_All,Modification Module (Above All),6,20,,10,,,,,,,,,,,,,{ .@r = getrefine(); bonus2 bSubEle,Ele_All,5; if (.@r >= 7) { bonus2 bSubSize,Size_All,5; if (.@r >= 9) { bonus2 bSubRace,RC_All,5; bonus2 bSubRace,RC_Player_Human,-5; } } },{},{} -25696,M_M_Drain_Life,Modification Module (Drain Life),6,20,,10,,,,,,,,,,,,,{ bonus2 bHPDrainRate,20,2; },{},{} -25697,M_M_Drain_Soul,Modification Module (Drain Soul),6,20,,10,,,,,,,,,,,,,{ bonus2 bSPDrainRate,10,1; },{},{} -25698,M_M_Magic_Healing,Modification Module (Magic Healing),6,20,,10,,,,,,,,,,,,,{ autobonus "{ bonus2 bHPRegenRate,400,500; }",20,10000,BF_MAGIC; },{},{} -25699,M_M_Magic_Soul,Modification Module (Magic Soul),6,20,,10,,,,,,,,,,,,,{ autobonus "{ bonus2 bSPRegenRate,80,500; }",10,10000,BF_MAGIC; },{},{} -25700,M_M_Unlimited_Vital,Modification Module (Unlimited Vital),6,20,,10,,,,,,,,,,,,,{ autobonus2 "{ bonus bVit,50; bonus2 bHPRegenRate,400,500; bonus2 bSPLossRate,20,1000; }",10,10000,BF_WEAPON|BF_MAGIC; /* unknown rate */ },{},{} -25701,M_M_Spell_Buster,Modification Module (Spell Buster),6,20,,10,,,,,,,,,,,,,{ autobonus "{ bonus bInt,50; bonus bMatkRate,15; bonus2 bAddClass,Class_All,-15; }",20,10000,BF_MAGIC; /* unknown rate */ },{},{} -25702,M_M_Firing_Shot,Modification Module (Firing Shot),6,20,,10,,,,,,,,,,,,,{ autobonus "{ bonus bDex,50; bonus bLongAtkRate,10; bonus2 bSPLossRate,20,1000; }",20,10000,BF_WEAPON; /* unknown rate */ },{},{} -25703,M_M_Overpower,Modification Module (Overpower),6,20,,10,,,,,,,,,,,,,{ autobonus "{ bonus bStr,50; bonus2 bAddClass,Class_All,15; bonus bMatkRate,-15; }",20,10000,BF_WEAPON; /* unknown rate */ },{},{} -25704,M_M_Fatal_Flash,Modification Module (Fatal Flash),6,20,,10,,,,,,,,,,,,,{ autobonus "{ bonus bStr,50; bonus bCritAtkRate,10; bonus2 bHPLossRate,300,1000; }",20,10000,BF_WEAPON; /* unknown rate */ },{},{} -25705,M_M_Lucky_Strike,Modification Module (Lucky Strike),6,20,,10,,,,,,,,,,,,,{ autobonus "{ bonus bLuk,50; bonus2 bMagicAtkEle,Ele_All,10; bonus2 bHPLossRate,300,1000; }",20,10000,BF_MAGIC; /* unknown rate */ },{},{} -//=================================================================== -// New Spears -//=================================================================== -26007,Illusion_Spectral_Spear,Illusion Spectral Spear,5,20,,2000,240,,3,1,0x00004082,63,2,34,4,99,1,5,{ .@r = getrefine(); .@val = 3*(.@r/2); bonus2 bAddEle,Ele_Dark,(20+.@val); bonus2 bAddRace,RC_Demon,(20+.@val); bonus2 bAddRace,RC_Undead,(20+.@val); bonus2 bSubRace,RC_Demon,(10+.@val); bonus2 bSubEle,Ele_Undead,(10+.@val); bonus2 bSubEle,Ele_Dark,(10+.@val); bonus bHPGainValue,50; bonus bSPGainValue,(.@r/2); bonus2 bAddEff2,Eff_Confusion,1000; },{},{} -26016,Royal_Knight's_Lance,Royal Knight's Lance,5,20,,1000,205,,1,2,0x00004082,63,2,34,3,175,1,5,{ .@r = getrefine(); bonus bLongAtkRate,3*(.@r/2); if (.@r>=7) bonus2 bAddClass,Class_All,5; if (.@r>=9) bonus2 bAddRace,RC_All,15; },{},{} -//=================================================================== -// New Staves -//=================================================================== -26100,Paradise_Foxtail_Staff_II,Eden Group Foxtail Staff II,5,20,,0,135:165,,1,0,0x80000000,7,2,2,2,40,0,10,{ bonus bDex,4; bonus bInt,4; bonus bLongAtkRate,6; },{},{} -26101,Paradise_Foxtail_Staff_III,Eden Group Foxtail Staff III,5,20,,0,150:195,,1,0,0x80000000,7,2,2,3,60,0,10,{ bonus bDex,5; bonus bInt,5; bonus bLongAtkRate,7; },{},{} -26107,Elder_Staff,Elder Staff,5,0,,500,60:150,,1,3,0x00008110,63,2,2,3,100,1,10,{ .@r = getrefine(); .@bonus = 10; if (.@r>=7) { .@bonus += 5; } if (.@r>=9) { .@bonus += 10; } bonus bHealPower,.@bonus; },{},{} -26109,Illusion_Staff_of_Bordeaux,Illusion Staff of Bordeaux,5,20,,500,60:180,,1,2,0x00010200,58,2,2,4,99,1,10,{ bonus bInt,3; bonus bDex,2; if (getskilllv("SA_DRAGONOLOGY") == 5) { .@val = getrefine()/3; bonus bMatkRate,(5+.@val); bonus bUseSPrate,(-15-(5*.@val)); } },{},{} -26110,CandyCaneRod,Candy Cane Rod,5,20,,500,10:140,,1,2,0x00818315,63,2,2,4,99,1,10,{ bonus bInt,2; bonus bFlee,2*getrefine(); if(getrefine()>= 10) { bonus bFlee2,10; } },{},{} -26138,Hellfire_Staff,Hellfire Staff,5,20,,800,110:180,,1,2,0x00818314,63,2,2,4,175,1,23,{ .@r = getrefine; bonus bInt,5; bonus bMatk,15*(.@r/2); bonus bUnbreakableWeapon; if (.@r>=9) .@val = 15; else if (.@r>=7) .@val = 5; bonus2 bMagicAtkEle,Ele_Fire,.@val; bonus2 bMagicAtkEle,Ele_Earth,.@val; },{},{} -26139,Icicle_Staff,Icicle Staff,5,20,,800,110:180,,1,2,0x00818314,63,2,2,4,175,1,23,{ .@r = getrefine; bonus bInt,5; bonus bMatk,15*(.@r/2); bonus bUnbreakableWeapon; if (.@r>=9) .@val = 15; else if (.@r>=7) .@val = 5; bonus2 bMagicAtkEle,Ele_Water,.@val; bonus2 bMagicAtkEle,Ele_Holy,.@val; },{},{} -26151,Rutilus_Stick-OS,Rutilus Stick-OS,5,20,,900,80:175,,1,2,0x00818315,63,2,2,4,130,1,10,{ .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bMagicAddEle,Ele_Neutral,5; bonus2 bMagicAddEle,Ele_Earth,5; if (.@r >= 7) { bonus bVariableCastrate,-7; if (.@r >= 9) { autobonus "{ bonus2 bMagicAtkEle,Ele_Fire,30; }",5,10000,BF_MAGIC; /* unknown rate */ if (.@r >= 11) { bonus bDelayrate,-10; } } } },{},{} -// 26154,Spirit_Plumb,Spirit Plumb,5,20,,1100,70:160,,1,2,0x00000000,63,2,2,4,100,1,10,{ .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus bMaxSPrate,2*(.@r/3); if (.@r >= 7) { bonus2 bSkillAtk,"SP_SPA",15; if (.@r >= 9) { bonus bVariableCastrate,-10; if (.@r >= 11) { bonus2 bSkillAtk,"SP_SWHOO",20; } } } },{},{} -26155,Meowmeow_Foxtail,Meowmeow Foxtail,5,20,,1100,300:300,,1,2,0x80000000,7,2,2,4,100,1,10,{ .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus bBaseAtk,10*(.@r/2); bonus2 bAddClass,Class_All,2*(.@r/3); bonus bMatkRate,2*(.@r/3); if (.@r >= 7) { bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",15; bonus2 bSkillAtk,"SU_SV_STEMSPEAR",15; if (.@r >= 9) { bonus bVariableCastrate,-10; bonus bAspdRate,10; if (.@r >= 11) { bonus2 bSkillAtk,"SU_PICKYPECK",15; bonus2 bSkillAtk,"SU_CN_METEOR",15; } } } },{},{} -26158,Crimson_Rose_Stick,Crimson Rose Stick,5,20,,700,100:180,,1,2,0x00000200,56,2,2,4,170,1,10,{ .@r = getrefine(); bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Fire,5; bonus2 bMagicAtkEle,Ele_Dark,5; if (.@r >= 9) { bonus2 bSkillAtk,"WL_HELLINFERNO",30; } if (.@r >= 11) { bonus2 bSkillCooldown,"WL_CRIMSONROCK",-1000; } },{},{} -26159,Psychic_Spear_Rod,Psychic Spear Rod,5,20,,800,120:180,,1,2,0x00010000,56,2,2,4,170,1,10,{ .@r = getrefine(); bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Wind,5; bonus2 bMagicAtkEle,Ele_Neutral,5; if (.@r >= 9) { bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",30; } if (.@r >= 11) { bonus2 bSkillCooldown,"SO_VARETYR_SPEAR",-2000; } },{},{} -26160,Dust_Grave,Dust Grave,5,20,,800,120:180,,1,2,0x00010000,56,2,2,4,170,1,10,{ .@r = getrefine(); if (.@r >= 11) .@val = 50; else if (.@r >= 9) .@val = 30; bonus2 bSkillAtk,"SO_DIAMONDDUST",.@val; bonus2 bSkillAtk,"SO_EARTHGRAVE",.@val; bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Water,5; bonus2 bMagicAtkEle,Ele_Earth,5; },{},{} -26161,Penitentia,Penitentia,5,20,,700,100:175,,1,2,0x00000100,56,2,2,4,170,1,10,{ .@r = getrefine(); bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Holy,5; if (.@r >= 9) { bonus2 bSkillAtk,"PR_MAGNUS",(.@r>=11) ? 50 : 30; bonus2 bSkillAtk,"AB_JUDEX",30; } },{},{} -//=================================================================== -// New Whips -//=================================================================== -26200,Hippie_Rope,Hippie Rope,5,0,,1000,140,,2,2,0x00080000,56,0,2,3,100,1,14,{ .@r = getrefine(); .@lvl = getskilllv("DC_DANCINGLESSON"); bonus bAspdRate,.@lvl; if (.@r>=7) bonus bBaseAtk,(5*.@lvl); if (.@r>=9) bonus bAspd,1; },{},{} -26212,Heart_Whip,Heart Whip,5,,,1200,100:190,,2,2,0x00080000,56,,2,4,170,1,14,{ .@r = getrefine(); bonus bMatk,4*.@r; bonus2 bMagicAtkEle,Ele_Neutral,10; if (.@r>=9) bonus2 bSkillAtk,"WM_METALICSOUND",30; if (.@r>=11) bonus2 bSkillCooldown,"WM_METALICSOUND",-2000; },{},{} -26213,Scarlet_Ribbon,Scarlet Ribbon,5,0,,1200,180,,2,2,0x00080000,56,0,2,4,170,1,14,{ .@r = getrefine(); bonus bVariableCastrate,-10; bonus bLongAtkRate,.@r; if (.@r>=9) bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-1000; if (.@r>=11) bonus2 bSkillUseSPrate,"WM_SEVERE_RAINSTORM",20; },{},{} -//=================================================================== -// More Cards -//=================================================================== -27012,Kick_Step_Card,Kick Step Card,6,20,,10,,,,,0xFFFFFFFF,63,2,16,,,,,{ bonus bMaxHPrate,8; if((eaclass()&EAJ_THIRDMASK) == EAJ_MECHANIC){ bonus bLongAtkDef,30; } },{},{} -27013,Kick_&_Kick_Card,Kick & Kick Card,6,20,,10,,,,,0xFFFFFFFF,63,2,2,,,,,{ bonus2 bSkillAtk,"NC_VULCANARM",10+((getrefine()>=10)*20); },{},{} -27014,Green_Cenere_Card,Green Cenere Card,6,20,,10,,,,,0xFFFFFFFF,63,2,64,,,,,{ bonus bMaxHPrate,2; autobonus2 "{ bonus2 bHPRegenRate,1000,1000; }",30,5000; },{},{} -27015,Repair_Robot_Turbo_Card,Repair Robot Turbo Card,6,20,,10,,,,,0xFFFFFFFF,63,2,769,,,,,{ bonus bHPrecovRate,25; bonus bSPrecovRate,25; .@r = getrefine(); bonus bHPGainValue,30+((.@r>=7)*10); bonus bSPGainValue,3+((.@r>=7)*3); },{},{} -27016,Exploration_Rover_Turbo_Card,Exploration Rover Turbo Card,6,20,,10,,,,,0xFFFFFFFF,63,2,2,,,,,{ bonus2 bCriticalAddRace,RC_Formless,30; },{},{} -27017,Scrap_Robots_Card,Scrap Robots Card,6,20,,10,,,,,0xFFFFFFFF,63,2,4,,,,,{ bonus2 bSubRace,RC_Formless,10*((getrefine()>=7)*5); /* TODO: Has a chance to gain accessories when a monster is killed. */ },{},{} -27018,GC109_Card,GC109 Card,6,20,,10,,,,,0xFFFFFFFF,63,2,136,,,,,{ bonus bDelayrate,-(1+(BaseLevel>=90)+(BaseLevel>=120)); },{},{} -27019,DR815_Card,DR815 Card,6,20,,10,,,,,0xFFFFFFFF,63,2,136,,,,,{ bonus bHit,1+(BaseLevel>=90)+(BaseLevel>=120); },{},{} -27020,T_W_O_Card,T W O Card,6,20,,10,,,,,0xFFFFFFFF,63,2,2,,,,,{ bonus2 bAddClass,Class_All,10; bonus3 bAutoSpell,"NPC_WIDESOULDRAIN",2,50+((getrefine()/3)*10); },{},{} -27025,Lich_Lord_Card,Lich Lord Card,6,20,,10,,,,,0xFFFFFFFF,63,2,136,,,,,{ bonus bDef,30; bonus bMdef,10; bonus2 bAddEff,Eff_Silence,900; if(getequipid() == 28483){ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; } /* TODO: Confirm Mob ID to transform */ autobonus "{ bonus bIgnoreDefClass,Class_All; bonus bIgnoreMdefRace,RC_All; }",20,7000,BF_WEAPON|BF_MAGIC,"{ active_transform 1875,7000; }"; },{},{} -27026,Fire_Condor_Card,Fire Condor Card,6,20,,10,,,,,0xFFFFFFFF,63,2,136,,,,,{ bonus2 bVariableCastRate,"MG_FIREBALL",-50; bonus2 bSkillAtk,"MG_FIREBALL",100; },{},{} -27027,Fire_Sandman_Card,Fire Sandman Card,6,20,,10,,,,,0xFFFFFFFF,63,2,16,,,,,{ bonus bDef,50; bonus2 bSubDefEle,Ele_Fire,10; },{},{} -27028,Fire_Frilldora_Card,Fire Frilldora Card,6,20,,10,,,,,0xFFFFFFFF,63,2,2,,,,,{ .@r = getrefine(); bonus2 bMagicAddEle,Ele_Earth,3+((.@r>=7)*5)+((.@r>=9)*7); },{},{} -27029,Fire_Golem_Card,Fire Golem Card,6,20,,10,,,,,0xFFFFFFFF,63,2,32,,,,,{ bonus2 bSubDefEle,Ele_Fire,20; bonus2 bAddEle,Ele_Fire,5; },{},{} -27030,Fulbuk_Card,Firebug Card,6,20,,10,,,,,0xFFFFFFFF,63,2,769,,,,,{ bonus3 bAddEff,Eff_Burning,700,ATF_WEAPON|ATF_MAGIC; },{},{} -27081,Angry_Moonlight_Flower_Card,Angry Moonlight Flower Card,6,20,,10,,,,,,,,16,,,,,{ skill "PA_PRESSURE",4; },{},{} -27082,Angry_Nine_Tail_Card,Angry Nine Tail Card,6,20,,10,,,,,,,,16,,,,,{ .@val = 5; bonus bCritAtkRate,10; if (getrefine() >= 10) { .@val += 10; } bonus bCritical,.@val; },{},{} -27083,Resentful_Bongun_Card,Resentful Bongun Card,6,20,,10,,,,,,,,16,,,,,{ bonus bBaseAtk,20; bonus bMatk,20; },{},{} -27084,Resentful_Sohee_Card,Resentful Sohee Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMatk,10; if (getrefine() >= 10) { bonus bMatkRate,2; } },{},{} -27085,Resentful_Munak_Card,Resentful Munak Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,15; bonus bMatk,15; },{},{} -27086,Resentful_Soldier_Card,Resentful Soldier Card,6,20,,10,,,,,,,,2,,,,,{ if (getiteminfo(getequipid(EQI_COMPOUND_ON),11) == W_BOW) { bonus3 bAutoSpell,"AC_DOUBLE",5,30; if (getrefine() >= 10) { bonus2 bWeaponDamageRate,W_BOW,20; } } },{},{} -27087,Truthful_Wizard_Card,Truthful Wizard Card,6,20,,10,,,,,,,,2,,,,,{ bonus bMatk,25; autobonus "{ bonus bNoCastCancel; }",5,5000,BF_MAGIC,"{ showscript \"This is the truth!\"; }"; },{},{} -27088,Fury_Hero_Card,Fury Hero Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bAddClass,Class_All,2; bonus5 bAutoSpell,"SM_ENDURE",1,5,BF_SHORT,0; },{},{} -27101,Sweet_Nightmare_Card,Sweet Nightmare Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMatk,20; bonus bNoCastCancel; },{},{} -27102,Matt_Drainliar_Card,Matt Drainliar Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bResEff,Eff_Burning,10000; },{},{} -27103,Living_Dead_Card,Living Dead Card,6,20,,10,,,,,,,,16,,,,,{ bonus bBaseAtk,20; bonus bUnbreakableWeapon; bonus bUnbreakableArmor; },{},{} -27104,Furious_Dracula_Card,Furious Dracula Card,6,20,,10,,,,,,,,4,,,,,{ skill "PF_HPCONVERSION",1; },{},{} -27105,Bomi_Card,Bomi Card,6,20,,10,,,,,,,,8,,,,,{ skill "HW_NAPALMVULCAN",4; },{},{} -27106,Awaken_Pere_Card,Awaken Pere Card,6,20,,10,,,,,,,,16,,,,,{ if (BaseJob == Job_Bard || BaseJob == Job_Dancer) { bonus bMatk,(15*getrefine()); } },{},{} -27107,Playing_Pere_Card,Playing Pere Card,6,20,,10,,,,,,,,8,,,,,{ bonus2 bAddEle,Ele_Neutral,20; },{},{} -27108,Singing_Pere_Card,Singing Pere Card,6,20,,10,,,,,,,,128,,,,,{ bonus2 bMagicAddEle,Ele_Neutral,20; },{},{} -27109,Jitterbug_Card,Jitterbug Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bSubDefEle,Ele_Neutral,10; bonus bMaxHP,500; },{},{} -27110,Furious_Gazeti_Card,Furious Gazeti Card,6,20,,10,,,,,,,,16,,,,,{ bonus bLongAtkDef,20; },{},{} -27111,Furious_Snowier_Card,Furious Snowier Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddItemHealRate,11522,50; bonus2 bAddItemHealRate,11523,50; bonus2 bAddItemHealRate,11524,50; },{},{} -27112,Furious_Ice Titan_Card,Furious Ice Titan Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDef,(5*(1+getrefine())); },{},{} -27113,Awaken_Ktullanux_Card,Awaken Ktullanux Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bMagicAtkEle,Ele_Water,(20+(3*getrefine())); },{},{} -27114,Ominous_Solider_Card,Ominous Solider Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxHPrate,(10+(getrefine()/3)); .@val = 50; if (BaseLevel >= 160) { .@val += 50; bonus bVit,3; } bonus bDef,.@val; },{},{} -27115,Ominous_Permeter_Card,Ominous Permeter Card,6,20,,10,,,,,,,,769,,,,,{ .@r = getrefine(); bonus bInt,1; bonus bMaxSP,(80+10*(.@r/2)); if (.@r >= 7) { bonus bSPrecovRate,30; } },{},{} -27116,Ominous_Heater_Card,Ominous Heater Card,6,20,,10,,,,,,,,136,,,,,{ bonus bCritical,3; bonus bCritAtkRate,5; },{},{} -27117,Ominous_Assaulter_Card,Ominous Assaulter Card,6,20,,10,,,,,,,,2,,,,,{ .@type = getiteminfo(getequipid(EQI_COMPOUND_ON),11); if (.@type == W_WHIP || .@type == W_MUSICAL || .@type == W_BOOK || .@type == W_2HSWORD || .@type == W_2HSPEAR) { .@r = getrefine(); bonus bCritical,5; bonus bBaseAtk,(3*.@r); } bonus bCritAtkRate,(10+.@r); },{},{} -27118,Ominous_Freezer_Card,Ominous Freezer Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMaxHPrate,10; bonus bStr,2; if (BaseLevel >= 160) { .@val = 10; } if (getrefine() >= 9) { .@val += 10; } if (.@val) { bonus2 bSkillAtk,"RK_HUNDREDSPEAR",.@val; bonus2 bSkillAtk,"LG_OVERBRAND",.@val; } },{},{} -27119,Ominous_Turtle_General_Card,Ominous Turtle General Card,6,20,,10,,,,,,,,32,,,,,{ bonus bDef,30; bonus bMdef,5; bonus2 bSubSize,Size_All,25; },{},{} -27120,Iara_Card,Iara Card,6,20,,10,,,,,,,,136,,,,,{ skill "PR_STRECOVERY",1; },{},{} -27121,Piranha_Card,Piranha Card,6,20,,10,,,,,,,,64,,,,,{ .@val = 10; if (getrefine() >= 9) { .@val += 5; } bonus2 bAddRace,RC_Fish,.@val; bonus2 bMagicAddRace,RC_Fish,.@val; },{},{} -27122,Curupira_Card,Curupira Card,6,20,,10,,,,,,,,2,,,,,{ .@val = 3; .@r = getrefine(); if (.@r>=7) { .@val += 5; } if (.@r>=9) { .@val += 7; } bonus2 bMagicAddEle,Ele_Water,.@val; },{},{} -27123,Tucan_Card,Toucan Card,6,20,,10,,,,,,,,769,,,,,{ .@val = 10; if (getrefine() >= 9) { .@val += 5; } bonus2 bMagicAddRace,RC_Insect,.@val; },{},{} -27124,Jaguar_Card,Jaguar Card,6,20,,10,,,,,,,,769,,,,,{ .@val = 10; if (getrefine() >= 9) { .@val += 5; } bonus2 bMagicAddRace,RC_Brute,.@val; bonus2 bMagicAddRace,RC_Player_Doram,.@val; },{},{} -27125,Headless_Mule_Card,Headless Mule Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bMagicAtkEle,Ele_Water,20; bonus2 bMagicAtkEle,Ele_Holy,20; },{},{} -27126,Boitata_Card,Boitata Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEle,Ele_Wind,40; bonus2 bAddEle,Ele_Earth,40; bonus2 bAddRace,RC_Brute,40; bonus2 bAddRace,RC_Player_Doram,40; bonus2 bAddRace,RC_Insect,40; },{},{} -27147,Humanoid_Chimera_Card,Humanoid Chimera Card,6,20,,10,,,,,,,,136,,,,,{ bonus bHit,(BaseLevel >= 90 ? 15 : 5); },{},{} -27148,Material_Chimera_Card,Material Chimera Card,6,20,,10,,,,,,,,136,,,,,{ bonus bFlee,(BaseLevel >= 90 ? 20 : 10); },{},{} -27149,Heart_Hunter_Card,Heart Hunter Card,6,20,,10,,,,,,,,2,,,,,{ .@type = getiteminfo(getequipid(EQI_COMPOUND_ON),11); .@r = getrefine(); if(.@type == 17 || .@type == 18 || .@type == 21){ bonus bLongAtkRate,5+.@r+(.@r >= 10 ? 5 : 0); } },{},{} -27150,Toxic_Enchanted_Chimera_Card,Toxic Enchanted Chimera Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMaxHP,1000; bonus bMaxSP,200; if(getrefine() >= 12){ bonus bMaxHPrate,15; bonus bMaxSPrate,15; } },{},{} -27151,Heart_Hunter_Evil_Card,Heart Hunter Evil Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEffWhenHit,Eff_Freeze,3000 + (readparam(bInt) >= 110 ? 1000 : 0); bonus bMdef,5; },{},{} -27152,Cutie_Card,Cutie Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMaxHPrate,10; .@r = getrefine()/2; bonus bAgi,.@r; bonus bAspdRate,.@r; },{},{} -27157,Wood_Goblin_Card,Wood Goblin Card,6,20,,10,,,,,,,,16,,,,,{ .@r = getrefine(); bonus2 bAddEle,Ele_Water,(.@r >= 9 ? 10 : 5); bonus2 bAddEle,Ele_Earth,(.@r >= 9 ? 10 : 5); bonus2 bSubDefEle,Ele_Water,-5; bonus2 bSubDefEle,Ele_Earth,-5; },{},{} -27158,Les_Card,Les Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubEle,Ele_Wind,30; },{},{} -27159,Uzhas_Card,Uzhas Card,6,20,,10,,,,,,,,769,,,,,{ bonus2 bMagicAddRace,RC_Demon,(getrefine() >= 9 ? 15 : 10); },{},{} -27160,Vavayaga_Card,Vavayaga Card,6,20,,10,,,,,,,,64,,,,,{ bonus bFlee,getrefine()*2; },{},{} -27161,Mavka_Card,Mavka Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bMagicAtkEle,Ele_Fire,20; bonus2 bMagicAtkEle,Ele_Earth,20; },{},{} -27162,Gopinich_Card,Gopinich Card,6,20,,10,,,,,,,,769,,,,,{ bonus bSPDrainValue,5; bonus bUseSPrate,50; },{},{} -27163,Faceworm_Card,Faceworm Card,6,20,,10,,,,,,,,136,,,,,{ bonus bAgi,-1; bonus bDex,-1; bonus bAspdRate,3; },{},{} -27164,Faceworm_Queen_Card,Faceworm Queen Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMaxHPrate,-10; .@r = getrefine(); bonus bCritical,15 + .@r; bonus bCritAtkRate,.@r; },{},{} -27165,Dark_Faceworm_Card,Dark Faceworm Card,6,20,,10,,,,,,,,136,,,,,{ bonus bVit,-1; bonus bInt,-1; bonus bDelayrate,-3; },{},{} -27166,Faceworm_Egg_Card,Faceworm Egg Card,6,20,,10,,,,,,,,64,,,,,{ .@r = getrefine(); .@sub = 2+(.@r >= 9 ? 3 : .@r >= 7 ? 1 : 0); bonus2 bSubEle,Ele_Fire,.@sub; },{},{} -27167,Faceworm_Larva_Card,Faceworm Larva Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Neutral,15; bonus2 bMagicAtkEle,Ele_Water,getrefine()*3; },{},{} -27168,Irene_High_Elder_Card,Irene High Elder Card,6,20,,10,,,,,,,,4,,,,,{ bonus bHit,10 + 5 * (getrefine()/3); },{},{} -27169,Payon_Soldier_Card,Payon Soldier Card,6,20,,10,,,,,,,,2,,,,,{ .@atk = 5; .@r = getrefine(); if(getiteminfo(getequipid(EQI_HAND_R),11) == W_SPEAR && .@r >= 10){ .@atk += 20; if(.@r >= 14){ .@atk += 20; } } bonus bAtk,.@atk; bonus bMatk,.@atk; },{},{} -27170,Shotgun_Buffalo_Bandit_Card,Shotgun Buffalo Bandit Card,6,20,,10,,,,,,,,128,,,,,{ bonus bAgi,7; bonus bHit,7; },{},{} -27171,Revolver_Buffalo_Bandit_Card,Revolver Buffalo Bandit Card,6,20,,10,,,,,,,,8,,,,,{ bonus bStr,4; bonus2 bAddClass,Class_All,4; },{},{} -27172,Scimitar_Buffalo_Bandit_Card,Scimitar Buffalo Bandit Card,6,20,,10,,,,,,,,2,,,,,{ .@bonus = 5; .@type = getiteminfo(getequipid(EQI_COMPOUND_ON),11); if (.@type == W_DAGGER) { .@r = getrefine(); if (.@r>=10) { .@bonus += 20; } if (.@r>=14) { .@bonus += 20; } } bonus bBaseAtk,.@bonus; bonus bMatk,.@bonus; },{},{} -27173,Elite_Shotgun_Buffalo_Bandit_Card,Elite Shotgun Buffalo Bandit Card,6,20,,10,,,,,,,,2,,,,,{ .@bonus = 10; .@r = getrefine(); if (.@r>=10) { .@bonus += 20; } if (.@r>=14) { .@bonus += 20; } bonus2 bSkillAtk,"GS_SPREADATTACK",.@bonus; },{},{} -27174,Elite_Revolver_Buffalo_Bandit_Card,Elite Revolver Buffalo Bandit Card,6,20,,10,,,,,,,,2,,,,,{ .@bonus = 10; .@r = getrefine(); if (.@r>=10) { .@bonus += 20; } if (.@r>=14) { .@bonus += 20; } bonus2 bSkillAtk,"GS_RAPIDSHOWER",.@bonus; },{},{} -27175,Elite_Scimitar_Buffalo_Bandit_Card,Elite Scimitar Buffalo Bandit Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddSize,Size_Small,10; bonus2 bMagicAddSize,Size_Small,10; },{},{} -27176,Brown_Rat_Card,Brown Rat Card,6,20,,10,,,,,,,,4,,,,,{ .@str = readparam(bStr); .@bonus = 3*(.@str/10); if (.@str>=120) { .@bonus += 40; } bonus bBaseAtk,.@bonus; bonus bAspdRate,(.@str/10); },{},{} -27177,Marsh_Arclouse_Card,Marsh Arclouse Card,6,20,,10,,,,,,,,4,,,,,{ .@int = readparam(bInt); .@bonus = 3*(.@int/10); if (.@int>=120) { .@bonus += 40; } bonus bMatk,.@bonus; bonus bAspdRate,(.@int/10); },{},{} -27178,Gaster_Card,Gaster Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubClass,Class_Normal,25; bonus2 bSubClass,Class_Boss,-50; },{},{} -27179,Coyote_Card,Coyote Card,6,20,,10,,,,,,,,64,,,,,{ bonus bNoCastCancel; .@hp = -12; .@sp = -6; if (getrefine() >= 10) { .@hp += 6; .@sp += 3; } bonus bMaxHPrate,.@hp; bonus bMaxSPrate,.@sp; },{},{} -27180,Mechaspider_Card,Mechaspider Card,6,20,,10,,,,,,,,128,,,,,{ bonus bBreakWeaponRate,500; bonus bBreakArmorRate,500; },{},{} -27181,Airship_Raid_Card,Airship Raid Card,6,20,,10,,,,,,,,2,,,,,{ .@r = getrefine(); bonus bLongAtkRate,1 + .@r/2; bonus bCritical,.@r/2; },{},{} -27182,Captain_Felock_Card,Captain Felock Card,6,20,,10,,,,,,,,2,,,,,{ bonus bAtk,30; .@r = getrefine(); bonus2 bSkillAtk,"RL_AM_BLAST",.@r >= 10 ? 60 : 30; bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",.@r >= 10 ? 60 : 30; },{},{} -27183,Gigantes_Card,Gigantes Card,6,20,,10,,,,,,,,128,,,,,{ bonus bAtk,20; if(readparam(bStr) >= 120) { bonus bAtk,20; bonus bAspdRate,3; } },{},{} -27184,Knight_Sakray_Card,Knight Sakray Card,6,20,,10,,,,,,,,2,,,,,{ bonus bAtk,20; bonus2 bAddRace,RC_Demon,30; bonus2 bAddRace,RC_Undead,30; },{},{} -27196,Nihil_M_Heine_Card,Nihil M. Heine Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bMagicAddSize,Size_Small,15; },{},{} -27197,Agnes_Lugenburg_Card,Agnes Lugenburg Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddSize,Size_Small,15; },{},{} -27198,Jurgen_Wigner_Card,Jurgen Wigner Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddRace,RC_Brute,15; bonus2 bAddRace,RC_Player_Doram,15; },{},{} -27199,Spica_Nerius_Card,Spica Nerius Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bMagicAddRace,RC_Brute,15; bonus2 bMagicAddRace,RC_Player_Doram,15; },{},{} -27249,Arhi_Card,Arhi Card,6,20,,10,,,,,,,,64,,,,,{ bonus bAtk,15; bonus bMatk,15; bonus bMaxHP,500; bonus bHit,15; bonus bFlee,15; },{},{} -27250,Dio_Anemos_Card,Dio Anemos Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMatkRate,3; bonus2 bMagicAtkEle,Ele_Neutral,5; bonus2 bMagicAtkEle,Ele_Earth,5; },{},{} -27251,Geffen_Gang_Member_Card,Geffen Gang Member Card,6,20,,10,,,,,,,,64,,,,,{ bonus bCritAtkRate,3; bonus bAspdRate,5; },{},{} -27252,Geffen_Bully_Card,Geffen Bully Card,6,20,,10,,,,,,,,64,,,,,{ bonus bCritAtkRate,5; bonus bAspdRate,3; },{},{} -27253,Geffen_Shoplifter_Card,Geffen Shoplifter Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMatkRate,3; bonus2 bMagicAtkEle,Ele_Fire,5; bonus2 bMagicAtkEle,Ele_Holy,5; },{},{} -27254,Faymont_Card,Faymont Card,6,20,,10,,,,,,,,64,,,,,{ bonus bSPrecovRate,10; bonus3 bAutoSpellWhenHit,"CH_SOULCOLLECT",1,10; },{},{} -27255,Ordre_Card,Ordre Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMatkRate,3; bonus2 bMagicAtkEle,Ele_Wind,5; bonus2 bMagicAtkEle,Ele_Water,5; },{},{} -27256,Blut_Hase_Card,Blut Hase Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bAddClass,Class_All,3; bonus bLongAtkRate,5; },{},{} -27257,Kuro_Akuma_Card,Kuro Akuma Card,6,20,,10,,,,,,,,64,,,,,{ bonus bCastrate,3; bonus bLongAtkRate,5; bonus2 bSkillAtk,"NJ_HUUJIN",5; bonus2 bSkillAtk,"NJ_HYOUSENSOU",5; bonus2 bSkillAtk,"NJ_KOUENKA",5; },{},{} -27258,Ifodes_Card,Ifodes Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bAddClass,Class_All,3; bonus bAspdRate,5; },{},{} -27259,Licheniyes_Card,Licheniyes Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMatkRate,3; bonus2 bMagicAtkEle,Ele_Holy,5; bonus bHealPower,5; },{},{} -27260,Odoric_Card,Odoric Card,6,20,,10,,,,,,,,64,,,,,{ bonus bAspdRate,3; bonus bLongAtkRate,5; },{},{} -27261,Ju_Card,Ju Card,6,20,,10,,,,,,,,2,,,,,{ .@rate = 10 + (getiteminfo(getequipid(EQI_HAND_R),11) == W_BOOK ? 20 : 0) + (getrefine() >= 14 ? 20 : 0); bonus2 bSkillAtk,"MG_FIREBOLT",.@rate; bonus2 bSkillAtk,"MG_COLDBOLT",.@rate; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",.@rate; },{},{} -27262,Dwigh_Card,Dwigh Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bMagicAtkEle,Ele_Dark,20; bonus2 bMagicAtkEle,Ele_Neutral,20; },{},{} -27263,Fay_Kanavian_Card,Fay Kanavian Card,6,20,,10,,,,,,,,64,,,,,{ autobonus "{ bonus bDef,300; }",100,10000,BF_WEAPON|BF_SHORT,"{ active_transform 1040,10000; }"; },{},{} -27264,Evil_Shadow_Card,Evil Shadow Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubEle,Ele_Dark,30; bonus2 bSubEle,Ele_Undead,30; bonus2 bSubEle,Ele_Holy,-30; bonus2 bSubEle,Ele_Fire,-30; },{},{} -27265,Evil_Fanatics_Card,Evil Fanatics Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddEle,Ele_Dark,30; bonus2 bAddEle,Ele_Undead,30; bonus2 bMagicAddEle,Ele_Dark,30; bonus2 bMagicAddEle,Ele_Undead,30; bonus2 bAddEle,Ele_Holy,-30; bonus2 bAddEle,Ele_Fire,-30; bonus2 bMagicAddEle,Ele_Holy,-30; bonus2 bMagicAddEle,Ele_Fire,-30; },{},{} -27286,Colorful_Teddy_Bear_Card,Colorful Teddy Bear Card,6,20,,10,,,,,,,,2,,,,,{ bonus bMatk,5; bonus2 bMagicAddSize,Size_Large,15; },{},{} -27287,Shiny_Teddy_Bear_Card,Shiny Teddy Bear Card,6,20,,10,,,,,,,,64,,,,,{ bonus bUseSPrate,10; bonus2 bMagicAtkEle,Ele_Holy,(3*getrefine()); },{},{} -27288,Hardworking_Pitman_Card,Hardworking Pitman Card,6,20,,10,,,,,,,,16,,,,,{ .@val = 10; bonus2 bAddClass,Class_All,5; if (getrefine() >= 10) { .@val += 5; } bonus bHit,.@val; },{},{} -27289,Soul_Fragment_Card,Soul Fragment Card,6,20,,10,,,,,,,,2,,,,,{ bonus bMatk,5; bonus2 bMagicAddSize,Size_Medium,15; },{},{} -27290,Haunted_Obsidian_Card,Haunted Obsidian Card,6,20,,10,,,,,,,,4,,,,,{ .@agi = readparam(bAgi); .@val = .@agi/10; if (.@val) { bonus bFlee,(3*.@val); bonus bAspdRate,.@val; if (.@agi >= 120) { bonus bAspd,1; } } },{},{} -27291,Ancient_Tri_Joint_Card,Ancient Tri Joint Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,30; bonus bMaxHPrate,-1; },{},{} -27292,Ancient_Stalactic_Golem_Card,Ancient Stalactic Golem Card,6,20,,10,,,,,,,,4,,,,,{ .@vit = readparam(bVit); .@val = .@vit/10; if (.@val) { bonus bAspdRate,.@val; bonus bMaxHP,(150*.@val); if (.@vit >= 120) { bonus bDelayrate,-3; } } },{},{} -27293,Ancient_Megalith_Card,Ancient Megalith Card,6,20,,10,,,,,,,,2,,,,,{ bonus bMatk,30; bonus bMaxSPrate,-1; },{},{} -27294,Ancient_Tao_Gunka_Card,Ancient Tao Gunka Card,6,20,,10,,,,,,,,769,,,,,{ .@val = 30; if (getrefine() >= 10) { .@val += 20; } bonus2 bIgnoreDefClassRate,Class_Boss,.@val; },{},{} -27295,Ancient_Stone_Shooter_Card,Ancient Stone Shooter Card,6,20,,10,,,,,,,,4,,,,,{ .@luk = readparam(bLuk); .@crit = .@luk/10; if (.@luk >= 120) { .@crit += 5; } bonus bAspdRate,1; bonus bCritAtkRate,.@crit; },{},{} -27296,Ancient_Wootan_Shooter_Card,Ancient Wootan Shooter Card,6,20,,10,,,,,,,,4,,,,,{ .@dex = readparam(bDex); .@val = .@dex/10; if (.@val) { bonus bAspdRate,.@val; bonus2 bWeaponDamageRate,W_BOW,.@val; if (.@dex >= 120) { bonus bBaseAtk,40; } } },{},{} -27297,Ancient_Wootan_Fighter_Card,Ancient Wootan Fighter Card,6,20,,10,,,,,,,,2,,,,,{ bonus bCritical,5; bonus bCritAtkRate,10; },{},{} -27298,Ancient_Wootan_Defender_Card,Ancient Wootan Defender Card,6,20,,10,,,,,,,,32,,,,,{ .@val = 30; if (getrefine() >= 10) { .@val += 20; } bonus2 bSubClass,Class_Boss,.@val; },{},{} -27301,Labyrinth_Doppelganger_Card,Labyrinth Doppelganger Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddClass,Class_All,10; },{},{} -27304,E_EA2S_Card,E EA2S Card,6,20,,10,,,,,,,,136,,,,,{ bonus bHPrecovRate,50; },{},{} -27305,EL_A17T_Card,EL A17T Card,6,20,,10,,,,,,,,136,,,,,{ bonus5 bAutoSpell,"WL_HELLINFERNO",3,1,ATF_SHORT|ATF_WEAPON,1; /* fix me: unknown rate */ },{},{} -27306,Bellare_Card,Bellare Card,6,20,,10,,,,,,,,2,,,,,{ if (getiteminfo(getequipid(EQI_COMPOUND_ON),11) == W_REVOLVER) { .@r = getrefine(); bonus bHit,20; bonus bLongAtkRate,(5+.@r); if (.@r >= 10) { bonus2 bSkillAtk,"RL_FIREDANCE",15; } } },{},{} -27307,Greater_Bellare_Card,Greater Bellare Card,6,20,,10,,,,,,,,2,,,,,{ if (getiteminfo(getequipid(EQI_COMPOUND_ON),11) == W_GATLING) { .@r = getrefine(); bonus bHit,20; bonus bLongAtkRate,(5+.@r); if (.@r >= 10) { bonus2 bSkillAtk,"RL_R_TRIP",15; } } },{},{} -27308,Sanare_Card,Sanare Card,6,20,,10,,,,,,,,2,,,,,{ .@r = getrefine(); .@val = 2; if (.@r >= 9) { .@val += 3; } if (.@r >= 11) { .@val += 5; } bonus bHealPower,.@val; },{},{} -27309,Greater_Sanare_Card,Greater Sanare Card,6,20,,10,,,,,,,,769,,,,,{ bonus bMatk,10; .@val = 5; if (getrefine() >= 9) { .@val += 5; } bonus2 bMagicAtkEle,Ele_Holy,.@val; },{},{} -27310,Plaga_Card,Plaga Card,6,20,,10,,,,,,,,769,,,,,{ bonus bMatk,10; .@val = 5; if (getrefine() >= 9) { .@val += 5; } bonus2 bMagicAtkEle,Ele_Neutral,.@val; },{},{} -27311,Mutant_Plaga_Card,Mutant Plaga Card,6,20,,10,,,,,,,,2,,,,,{ if (getiteminfo(getequipid(EQI_COMPOUND_ON),11) == W_KNUCKLE) { .@r = getrefine(); bonus bHit,20; bonus bBaseAtk,15; if (.@r >= 10) { .@val = 15; } bonus2 bAddSize,Size_Large,(.@r+.@val); } },{},{} -27312,Dolor_Card,Dolor Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddRace,RC_Demon,5; },{},{} -27313,Mutant_Dolor_Card,Mutant Dolor Card,6,20,,10,,,,,,,,2,,,,,{ if (getiteminfo(getequipid(EQI_COMPOUND_ON),11) == W_KATAR) { .@r = getrefine(); bonus bCritical,7; bonus bBaseAtk,15; bonus bCritAtkRate,(2*.@r); if (.@r >= 10) { bonus2 bAddSize,Size_Large,15; } } },{},{} -27314,Venenum_Card,Venenum Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bAddRace,RC_Brute,15; bonus2 bAddRace,RC_Player_Doram,15; },{},{} -27315,Mutant_Venenum_Card,Mutant Venenum Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bMagicAddRace,RC_Brute,15; bonus2 bMagicAddRace,RC_Player_Doram,15; },{},{} -27316,Twin_Caput_Card,Twin Caput Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDef,50; bonus2 bSubDefEle,Ele_Poison,10; },{},{} -27317,Mutant_Twin_Caput_Card,Mutant Twin Caput Card,6,20,,10,,,,,,,,136,,,,,{ bonus2 bAddRace,RC_Formless,5; },{},{} -27318,Miguel_Card,Miguel Card,6,20,,10,,,,,,,,64,,,,,{ bonus bCritAtkRate,20; bonus2 bSubRace,RC_All,-10; },{},{} -27319,R48_85_BESTIA_Card,R48-85-BESTIA Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddEle,Ele_Poison,40; },{},{} -27320,E_EA1L_card,E-EA1L card,6,20,,10,,,,,,,,2,,,,,{ .@r = getrefine(); .@val = 3; if (.@r >= 9) { .@val += 2; if (.@r >= 11) { .@val += 5; } } bonus2 bMagicAtkEle,Ele_Fire,.@val; },{},{} -27321,Despair_God_Morocc_Card,Despair God Morocc Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bAddClass,Class_All,10; bonus bMaxHPRate,-50; bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player_Human,30; bonus2 bAddRace,RC_Angel,30; autobonus3 "{ }",1000,5000,"NV_FIRSTAID","{ active_transform 3097,5000; }"; /* unknown transformation rates */ },{},{} -27322,Demon_God's_Apostle_Ahat_Card,Demon God's Apostle Ahat Card,6,20,,10,,,,,,,,136,,,,,{ bonus bMaxSPrate,5; },{},{} -27323,Demon_God's_Apostle_Shnaim_Card,Demon God's Apostle Shnaim Card,6,20,,10,,,,,,,,136,,,,,{ bonus bMaxHPrate,5; },{},{} -27324,Brinaranea_Card,Brinaranea Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bMagicAtkEle,Ele_Water,15; },{},{} -27325,Muspellskoll_Card,Muspellskoll Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubDefEle,Ele_Fire,30; },{},{} -27326,Morocc's_Minion_Card,Morocc's Minion Card,6,20,,10,,,,,,,,16,,,,,{ bonus bBaseAtk,100; bonus bAspdRate,25; bonus bMaxHPrate,-20; },{},{} -27327,Grim_Reaper_Ankou_Card,Grim Reaper Ankou Card,6,20,,10,,,,,,,,769,,,,,{ .@r = getrefine(); bonus3 bAutoSpellWhenHit,"NPC_WIDECURSE",3,(1+.@r); autobonus2 "{ bonus2 bAddClass,Class_All,25; bonus bMatkRate,25; }",(1+.@r),10000,BF_WEAPON|BF_MAGIC; autobonus3 "{ }",1000,5000,"NV_FIRSTAID","{ active_transform 3029,5000; }"; /* unknown rates */ },{},{} -27328,Corrupt_Life_Card,Corrupt Life Card,6,20,,10,,,,,,,,769,,,,,{ bonus bMaxHP,500; bonus bMaxSP,50; bonus2 bSubRace,RC_Angel,-50; },{},{} -27330,Kronecker_Card,Kronecker Card,6,20,,10,,,,,,,,8,,,,,{},{},{} -27331,Kronecker_G_Heine_Card,Kronecker G. Heine Card,6,20,,10,,,,,,,,8,,,,,{ bonus bVariableCastrate,-5; },{},{} -27332,Skia_Card,Skia Card,6,20,,10,,,,,,,,128,,,,,{},{},{} -27333,Skia_Nerius_Card,Skia Nerius Card,6,20,,10,,,,,,,,128,,,,,{ bonus bAspdRate,5; },{},{} -27334,Chaotic_Baphomet_Card,Chaotic Baphomet Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddClass,Class_All,25; bonus2 bSubRace,RC_Demon,-5; },{},{} -27335,Chaotic_Baphomet_Junior_Card,Chaotic Baphomet Junior Card,6,20,,10,,,,,,,,64,,,,,{ bonus bCritical,readparam(bAgi)/15; },{},{} -27336,Chaotic_Sidewinder_Card,Chaotic Sidewinder Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubDefEle,Ele_Poison,15; bonus2 bSubRace,RC_Brute,15; bonus2 bSubRace,RC_Player_Doram,15; },{},{} -27337,Chaotic_Hunter_Fly_Card,Chaotic Hunter Fly Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubDefEle,Ele_Wind,15; bonus2 bSubRace,RC_Insect,15; },{},{} -27338,Chaotic_Mantis_Card,Chaotic Mantis Card,6,20,,10,,,,,,,,136,,,,,{ bonus bStr,3; },{},{} -27339,Chaotic_Ghostring_Card,Chaotic Ghostring Card,6,20,,10,,,,,,,,2,,,,,{ bonus bBaseAtk,20; bonus2 bAddSize,Size_Small,25; bonus2 bAddSize,Size_Large,25; },{},{} -27340,Chaotic_Killer_Mantis_Card,Chaotic Killer Mantis Card,6,20,,10,,,,,,,,136,,,,,{ bonus bCritAtkRate,3; },{},{} -27341,Chaotic_Poporing_Card,Chaotic Poporing Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubDefEle,Ele_Water,15; bonus2 bSubRace,RC_Fish,15; },{},{} -27342,Chaotic_Stem_Worm_Card,Chaotic Stem Worm Card,6,20,,10,,,,,,,,4,,,,,{ bonus bHit,10; bonus2 bSubDefEle,Ele_Earth,20; bonus2 bSubDefEle,Ele_Neutral,10; },{},{} -27343,Chaotic_Acolyte_Card,Chaotic Acolyte Card,6,20,,10,,,,,,,,128,,,,,{ bonus bDelayrate,-4; },{},{} -27346,Rigid_Muspellskoll_Card,Rigid Muspellskoll Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_Dragon,30; bonus2 bSubRace,RC_Demon,30; bonus2 bSubRace,RC_Brute,30; bonus2 bSubRace,RC_Player_Doram,30; },{},{} -27347,Rigid_Kaho_Card,Rigid Kaho Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bMagicAddEle,Ele_Earth,10; },{},{} -27348,Rigid_Lava_Golem_Card,Rigid Lava Golem Card,6,20,,10,,,,,,63,2,2,,,,,{ .@r = getrefine(); bonus2 bMagicAddEle,Ele_Neutral,3+((.@r>=7)*5)+((.@r>=9)*7); },{},{} -27349,Rigid_Explosion_Card,Rigid Explosion Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_Dragon,15; bonus2 bSubDefEle,Ele_Fire,15; },{},{} -27350,Rigid_Earth_Deleter_Card,Rigid Earth Deleter Card,6,20,,10,,,,,,,,768,,,,,{ .@r = getrefine(); bonus bMaxSPrate,2+(.@r/2); },{},{} -27351,Rigid_Sky_Deleter_Card,Rigid Sky Deleter Card,6,20,,10,,,,,,,,768,,,,,{ bonus bMaxHPrate,5; },{},{} -27352,Rigid_Nightmare_Terror_Card,Rigid Nightmare Terror Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMaxSPrate,5; },{},{} -27353,Rigid_Blazer_Card,Rigid Blazer Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubRace,RC_Demon,15; bonus2 bSubDefEle,Ele_Neutral,15; },{},{} -27354,Contaminated_Raydric_Card,Contaminated Raydric Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bAddClass,Class_All,5; },{},{} -27355,Contaminated_Raydric_Archer_Card,Contaminated Raydric Archer Card,6,20,,10,,,,,,,,2,,,,,{ bonus bLongAtkRate,10; },{},{} -27356,Frozen_Gargoyle_Card,Frozen Gargoyle Card,6,20,,10,,,,,,,,32,,,,,{ bonus2 bSubSize,Size_Medium,25; bonus2 bSubSize,Size_Large,25; bonus2 bSubSize,Size_Small,-5; bonus bDef,20; },{},{} -27357,Contaminated_Sting_Card,Contaminated Sting Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDef,100+25*(getrefine()/3); },{},{} -27358,Prison_Breaker_Card,Prison Breaker Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_Wind,30; bonus2 bSubEle,Ele_Poison,30; bonus2 bSubEle,Ele_Dark,30; bonus2 bSubEle,Ele_Earth,30; bonus2 bSubEle,Ele_Undead,30; bonus2 bSubEle,Ele_Holy,-100; bonus2 bSubEle,Ele_Ghost,-100; bonus2 bSubEle,Ele_Fire,-100; },{},{} -27359,Ice_Ghost_Card,Ice Ghost Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bMagicAddEle,Ele_Water,15; },{},{} -27360,Flame_Ghost_Card,Flame Ghost Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bMagicAddEle,Ele_Fire,15; },{},{} -27361,Contaminated_Wanderer_Card,Contaminated Wanderer Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bAddSize,Size_Large,30; bonus2 bAddSize,Size_Medium,30; },{},{} -27362,Contaminated_Spider_Queen_Card,Contaminated Spider Queen Card,6,20,,10,,,,,,,,4,,,,,{ bonus2 bSubEle,Ele_All,-30; bonus2 bMagicAtkEle,Ele_Earth,100; bonus2 bMagicAtkEle,Ele_Water,100; },{},{} -27363,Contaminated_Dark_Lord_Card,Contaminated Dark Lord Card,6,20,,10,,,,,,,,8,,,,,{ bonus bAspd,1; },{},{} -//=================================================================== -// New Katars -//=================================================================== -28000,Thanos_Katar,Thanos Katar,5,10,,1800,220:80,,1,1,0x00001000,56,2,34,4,120,1,16,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000; },{},{ heal -1000,0; } -28001,Katar_Of_Evil_Slayer,Evil Slayer Ripper Katar,5,0,,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) { .@dmg = 5; if(.@r>=12) { .@dmg += 7; } bonus2 bAddClass,Class_All,.@dmg; } },{},{} -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_Human,35; bonus bCritAtkRate,10; bonus bAspdRate,3; bonus bUnbreakableWeapon; },{},{} -28005,Ru_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); },{},{} -28008,Katar_of_Vicious_Mind,Katar of Vicious Mind,5,20,,1800,180,,1,1,0x00001000,63,2,34,4,160,1,16,{ bonus bAtk,pow(min(getrefine(),15),2); },{},{} -28010,Juliette_D._Rachel,Juliette D. Rachel,5,20,,2500,300,,1,2,0x00001000,56,2,34,4,170,1,16,{ .@r = getrefine(); bonus2 bAddClass,Class_All,(.@r/2); bonus bAspdRate,.@r; bonus bUnbreakableWeapon; },{},{} -28011,Unity_Katar,Unity Katar,5,20,,650,123,,1,1,0x00001000,63,2,34,3,1,1,16,{ bonus bBaseAtk,pow(getrefine(),2)*125/100; },{},{} -28022,Illusion_Infiltrator,Illusion Infiltrator,5,0,,1500,200,,1,2,0x00001000,58,2,34,4,100,1,16,{ bonus2 bAddRace,RC_DemiHuman,60; bonus2 bAddRace,RC_Player_Human,60; bonus bDef,3; .@flee = 5; .@flee2 = 2; if (getrefine() >= 9) { .@flee += 5; .@flee2 += 2; bonus2 bAddClass,Class_All,5; } bonus bFlee,.@flee; bonus bFlee2,.@flee2; },{},{} -28023,Illusion_Sharpened_Legbone_of_Ghoul,Illusion Sharpened Legbone of Ghoul,5,0,,1700,220,,1,2,0x00001000,58,2,34,3,100,1,16,{ autobonus "{ bonus bDefEle,Ele_Undead; sc_start SC_ENDURE,6000,1; }",40,6000,BF_WEAPON|BF_SHORT,"{ active_transform 1036,6000; }"; },{},{} -28038,Meuchler-OS,Meuchler-OS,5,20,,1300,190,,1,2,0x00001000,63,2,34,4,130,1,16,{ .@r = getrefine(); bonus2 bAddClass,Class_All,3; if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",15; if (.@r >= 11) { bonus2 bAddSize,Size_Small,20; bonus2 bAddSize,Size_Medium,20; } } } },{},{} -28042,Ripper_Cross,Ripper Cross,5,20,,1500,250,,1,2,0x00001000,56,2,34,4,170,1,16,{ .@r = getrefine(); bonus2 bAddClass,Class_All,5; bonus bLongAtkRate,.@r; if (.@r>=9) bonus2 bSkillAtk,"GC_ROLLINGCUTTER",30; if (.@r>=11) bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",20; },{},{} -28044,Agudo_Filo,Agudo Filo,5,20,,2000,270,,1,2,0x00001000,56,2,34,4,170,1,16,{ .@r = getrefine(); bonus bCritAtkRate,5; bonus bBaseAtk,4*.@r; if (.@r>=9) bonus2 bAddSize,Size_All,15; if (.@r>=11) { bonus bUnbreakableWeapon; bonus2 bAddClass,Class_All,7; } },{},{} -//=================================================================== -// New Axes -//=================================================================== -28100,Thanos_Axe,Thanos Axe,5,10,,4000,300:80,,1,1,0x000444A2,56,2,34,4,120,1,7,{ bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000; },{},{ heal -1000,0; } -28101,Tornado_Axe,Tornado Axe,5,30000,,4000,320,,1,1,0x000444A2,56,2,34,4,100,1,7,{ bonus bAtkEle,Ele_Wind; 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_Human,30; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon; },{},{} -28103,Ru_Blue_Axe_M,Blue Twohand Axe,5,10,,3000,330,,1,1,0x00000400,56,2,34,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,0x000444A2,56,2,34,4,100,1,7,{},{},{} -28106,Crimson_Two-Handed_Axe,Crimson Two-Handed Axe,5,20,,2000,200,,1,2,0x000444A2,63,2,34,3,70,1,7,{ .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bUnbreakableWeapon; },{},{} -28107,Two_Handed_Axe_of_Vicious_Mind,Two Handed Axe of Vicious Mind,5,20,,2500,250,,1,1,0x000444A2,63,2,34,4,160,1,7,{ bonus bAtk,pow(min(getrefine(),15),2); bonus bUnbreakableWeapon; },{},{} -28110,Unity_Two-Handed_Axe,Unity Two-Handed Axe,5,20,,1000,190,,1,1,0x000444A2,63,2,34,3,1,1,7,{ bonus bBaseAtk,pow(getrefine(),2)*125/100; },{},{} -28116,Mine_Worker's_Pickaxe,Mine Worker's Pickaxe,5,10,,4000,300,,1,2,0x00000400,56,2,34,3,100,1,7,{ bonus bUnbreakableWeapon; autobonus "{ bonus bCritical,20; }",5,7000,BF_SHORT,"{ specialeffect2 EF_ENCHANCE; }"; .@r = getrefine(); if (.@r>=9) { bonus bCritAtkRate,15; } else if (.@r>=7) { bonus bCritAtkRate,5; } },{},{} -28136,Blasti-OS,Blasti-OS,5,20,,4500,400,,1,2,0x00000400,56,2,34,4,130,1,7,{ .@r = getrefine(); .@red = 10; bonus bUnbreakableWeapon; if (.@r >= 7) { .@red += 15; if (.@r >= 9) { bonus bLongAtkRate,15; if (.@r >= 11) { bonus bDelayrate,-10; } } } bonus2 bSubSize,Size_Medium,.@red; bonus2 bSubSize,Size_Large,.@red; },{},{} -28138,Maxi_Spanner,Maxi Spanner,5,0,,4500,340,,1,2,0x00000400,56,2,34,4,170,1,7,{ .@r = getrefine(); bonus bBaseAtk,4*.@r; bonus bUnbreakableWeapon; bonus2 bSubSize,Size_Small,10; bonus2 bSubSize,Size_Medium,10; if (.@r>=9) { bonus2 bSkillCooldown,"NC_AXETORNADO",-1000; bonus2 bSkillCooldown,"NC_MAGMA_ERUPTION",-1000; } if (.@r>=11) bonus2 bSkillAtk,"NC_AXETORNADO",15; },{},{} -//=================================================================== -// New Guns -//=================================================================== -28200,END_OF_HORIZO,End Of The Horizon,5,2700000,,2400,410,,9,1,0x40000000,63,2,34,4,110,1,21,{},{},{} -28201,Southern_Cross_R,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_R_,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_Human,30; bonus2 bVariableCastrate,"GS_TRACKING",-20; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon; },{},{} -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_Human,30; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; autobonus "{ bonus bBaseAtk,80; bonus2 bHPLossRate,100,1000; }",30,6000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; bonus bUnbreakableWeapon; },{},{} -28223,Just_Finish,Finisher,5,20,,2000,200,,9,2,0x40000000,63,2,34,3,120,1,18,{ .@r = getrefine(); bonus bLongAtkRate,15; if (.@r >= 7) { bonus2 bSkillAtk,"RL_AM_BLAST",30; bonus2 bSkillAtk,"RL_MASS_SPIRAL",30; if (.@r >= 9) { bonus2 bSkillCooldown,"RL_AM_BLAST",-1000; } } },{},{} -28224,Dust_Fire,Dustfire,5,20,,1300,300,,9,2,0x40000000,63,2,34,3,120,1,20,{ .@r = getrefine(); bonus bSplashRange,1; bonus2 bAddEff,Eff_Blind,50; if (.@r >= 7) { bonus2 bSkillAtk,"RL_S_STORM",15; if (.@r >= 9) { bonus2 bSkillAtk,"RL_BANISHING_BUSTER",15; } } },{},{} -28225,Burning_Rose,Burning Rose,5,20,,2500,200,,9,2,0x40000000,63,2,34,3,120,1,19,{ bonus bLongAtkRate,15; if (.@r >= 7) { bonus2 bSkillAtk,"RL_FIRE_RAIN",30; if (.@r >= 9) { bonus2 bSkillCooldown,"RL_FIRE_RAIN",-1000; } } },{},{} -28226,Revenger,Avenger,5,20,,1800,350,,9,2,0x40000000,63,2,34,3,120,1,21,{ bonus bLongAtkRate,20; if (.@r >= 7) { bonus2 bSkillAtk,"RL_D_TAIL",15; if (.@r >= 9) { bonus2 bSkillCooldown,"RL_H_MINE",-1000; } } },{},{} -28240,Calf_Kingcobra,Calf Kingcobra,5,0,0,900,230,,9,2,0x40000000,63,2,34,4,150,1,18,{ .@r = getrefine(); bonus bAspdRate,10 + (.@r > 6 ? 5 : 0); bonus bLongAtkRate,(.@r/2)*5 + (.@r > 11 ? 5 : 0); if(.@r > 8){ bonus bCritAtkRate,15; } },{},{} -28241,Calf_Diamondback,Calf Diamondback,5,0,,3000,220,,9,2,0x40000000,63,2,34,4,150,1,19,{ .@r = getrefine(); bonus bDex,2; bonus2 bAddClass,Class_All,2; bonus bLongAtkRate,(.@r/2)*5 + (.@r > 11 ? 5 : 0); if(.@r > 6){ bonus2 bSkillAtk,"RL_R_TRIP",20; } if(.@r > 8){ bonus2 bSkillUseSPrate,"RL_R_TRIP",5; } },{},{} -28242,Calf_Anaconda,Calf Anaconda,5,10,,1400,305,,9,2,0x40000000,63,2,34,4,150,1,20,{ .@r = getrefine(); bonus bSplashRange,1; bonus bMaxSPrate,2; bonus bLongAtkRate,(.@r/2)*5 + (.@r > 8 ? 5 : 0); if(.@r > 6){ bonus2 bSkillAtk,"RL_BANISHING_BUSTER",20; } if(.@r > 11){ bonus2 bSkillUseSPrate,"RL_BANISHING_BUSTER",15; } },{},{} -28243,Calf_Python,Calf Python,5,10,0,2000,360,,9,2,0x40000000,63,2,34,4,150,1,21,{ .@r = getrefine(); bonus bDex,2; bonus2 bAddClass,Class_All,2; bonus bLongAtkRate,(.@r/2)*5; if(.@r > 6){ bonus bAspdRate,5; } if(.@r > 8){ bonus2 bSkillAtk,"RL_D_TAIL",15 + (.@r > 11 ? 15 : 0); } },{},{} -28244,Illusion_Gate_Keeper_DD,Illusion Gate Keeper DD,5,0,,1300,240,,9,2,0x40000000,63,2,34,4,120,1,20,{ .@r = getrefine(); bonus bDex,1; bonus bSplashRange,1; .@val = 5*(.@r/2); if (.@r >= 7) { bonus bAspdRate,15; if (.@r >= 9) { .@val += 5; if (.@r >= 11) { bonus5 bAutoSpell,"GS_SPREADATTACK",max(6,getskilllv("GS_SPREADATTACK")),50,BF_LONG|BF_WEAPON,1; } } } bonus bLongAtkRate,.@val; },{},{} -28253,HR-S55-OS,HR-S55-OS,5,20,,1000,250,,9,2,0x41000000,63,2,34,4,130,1,18,{ .@r = getrefine(); bonus2 bAddClass,Class_All,3; if (.@r >= 7) { bonus bLongAtkRate,7; if (.@r >= 9) { bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",20; if (.@r >= 11) { bonus2 bSkillCooldown,"RL_HAMMER_OF_GOD",-5000; } } } },{},{} -28254,Illusion_Butcher,Illusion Butcher,5,20,,2500,210,,9,2,0x41000000,63,2,34,4,120,1,19,{ .@r = getrefine(); bonus bLongAtkRate,2*(readparam(bStr)/15); bonus bBaseAtk,10*.@r; if (.@r >= 7) { bonus2 bSkillAtk,"RL_FIRE_RAIN",20; if (.@r >= 9) { bonus2 bSkillAtk,"RL_R_TRIP",15; if (.@r >= 11) { bonus2 bAddRace,RC_Brute,30; bonus2 bAddRace,RC_Player_Doram,30; bonus2 bAddRace,RC_Demon,30; } } } },{},{} -28255,Master_Soul_Rifle,Master Soul Rifle,5,20,,1000,150:210,,9,2,0x40000000,63,2,34,4,100,1,18,{ .@r = getrefine(); bonus bMatk,10*(.@r/3); bonus bAspdRate,3*(.@r/3); if (.@r >= 7) { bonus bAspd,1; bonus bMatkRate,5; if (.@r >= 9) { .@chance = 1; /* unknown rate*/ if (.@r >= 11) { .@chance += 1; bonus5 bAutoSpell,"WL_SOULEXPANSION",3,1,BF_LONG,1; } bonus5 bAutoSpell,"MG_SOULSTRIKE",10,.@chance,BF_LONG,1; } } },{},{} -28256,Demon_Slayer_Shot,Demon Slayer Shot,5,20,,1400,275,,9,2,0x40000000,63,2,34,4,100,1,20,{ .@r = getrefine(); bonus bSplashRange,1; bonus bLongAtkRate,3*(.@r/2); bonus bMaxSPrate,2*(.@r/3); if (.@r >= 7) { bonus2 bAddClass,Class_Boss,10; if (.@r >= 9) { autobonus3 "{ bonus bBaseAtk,50; bonus bLongAtkRate,10; }",1000,90000,"RL_P_ALTER"; if (.@r >= 11) { bonus2 bAddRace,RC_Undead,15; bonus2 bAddRace,RC_Demon,15; } } } },{},{} -28257,Golden_Lord_Launcher,Golden Lord Launcher,5,20,,2100,320,,9,2,0x40000000,63,2,34,4,100,1,21,{ .@r = getrefine(); bonus bLongAtkRate,3*(.@r/2); bonus bBaseAtk,15*(.@r/3); if (.@r >= 7) { .@val = 15; if (.@r >= 9) { bonus2 bSkillCooldown,"RL_D_TAIL",-1000; if (.@r >= 11) { .@val += 15; } } bonus2 bSkillAtk,"RL_D_TAIL",.@val; } },{},{} -28258,The_Black,The Black,5,20,,2700,205,,9,2,0x40000000,63,2,34,4,100,1,19,{ .@r = getrefine(); bonus bLongAtkRate,2*(.@r/3); bonus bBaseAtk,10*(.@r/2); if (.@r >= 7) { .@val = 15; bonus2 bSkillUseSPrate,"RL_R_TRIP",-10; if (.@r >= 9) { autobonus3 "{ bonus bBaseAtk,50; bonus bLongAtkRate,10; }",1000,90000,"RL_P_ALTER"; if (.@r >= 11) { .@val += 15; } } bonus2 bSkillAtk,"RL_R_TRIP",.@val; } },{},{} -//=================================================================== -// New Accessories -//=================================================================== -28302,Vesper_Core01_,Vesper Core 01,4,20,,500,,1,,1,0x00CFFF80,18,2,136,,1,0,0,{ bonus bMdef,3; bonus bInt,2; bonus bMaxSPrate,5; },{},{} -28303,Vesper_Core02_,Vesper Core 02,4,20,,500,,1,,1,0x00CFFF80,18,2,136,,1,0,0,{ bonus bMdef,3; bonus bStr,3; bonus bBaseAtk,10; },{},{} -28304,Vesper_Core03_,Vesper Core 03,4,20,,500,,1,,1,0x00CFFF80,18,2,136,,1,0,0,{ bonus bMdef,3; bonus bAgi,3; bonus bFlee,5; },{},{} -28305,Vesper_Core04_,Vesper Core 04,4,20,,500,,1,,1,0x00CFFF80,18,2,136,,1,0,0,{ bonus bMdef,3; bonus bDex,3; bonus bHit,10; },{},{} -28306,Bless_Of_Moon,Luna's Blessing,4,20,,100,,5,,0,0xFFFFFFFF,63,2,136,,1,0,,{ bonus bAllStats,1; bonus bMdef,2; bonus3 bAutoSpell,"CG_TAROTCARD",5,100; },{},{} -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,Earring_Of_Sarah_L,Sarah's Left Earring,4,10,,100,,,,0,0xFFFFFFFF,63,2,136,,145,0,,{ skill "AL_HEAL",1; },{},{} -28311,Earring_Of_Sarah_R,Sarah's Right Earring,4,10,,100,,,,0,0xFFFFFFFF,63,2,136,,145,0,,{ skill "AL_TELEPORT",1; },{},{} -28320,Assassin's_Despair,Assassin's Despair,4,20,,100,,0,,1,0xFFFFFFFF,63,2,136,,50,0,0,{ bonus bAspd,1; },{},{} -28321,Falconer_Claw,Falconer Claw,4,0,,100,,5,,1,0x00000800,63,2,136,,80,0,,{ bonus bDex,1; bonus2 bSkillAtk,"HT_BLITZBEAT",getskilllv("HT_STEELCROW")*10; },{},{} -28322,Falconer_Glove,Falconer Glove,4,0,,100,,5,,1,0x00000800,63,2,136,,80,0,,{ bonus bDex,1; bonus bUseSPrate,-5; },{},{} -28326,Broken_Chip_1,Broken Chips 01,4,10,,100,,,,1,0xFFFFFFFF,63,2,136,,100,0,,{ bonus bStr,4; },{},{} -28327,Broken_Chip_2,Broken Chips 02,4,10,,100,,,,1,0xFFFFFFFF,63,2,136,,100,0,,{ bonus bInt,4; },{},{} -28332,Jewel_Ring,Jewerly Ring,4,10,,100,,,,0,0xFFFFFFFF,63,2,136,,1,0,,{ /* bonus bLuk,20; Event bonus */ autobonus "{ bonus bAspd,2; bonus bVariableCastrate,-30; }",50,5000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_ENCHANCE; }"; },{},{} -28333,Gold_PC_Room_Ring,Gold PC Room Ring,4,10,,0,,,,1,0xFFFFFFFF,63,2,136,,1,0,,{ bonus bMaxHPrate,3; bonus bMaxSPrate,3; },{},{} -28342,Critical_Anklet,Critical Anklet,4,0,,200,,3,,1,0xFFFFFFFF,63,2,136,,50,0,,{ bonus bCritical,5; bonus bMdef,3; },{},{} -28352,Vesper_Gear_01,Vesper Gear 01,4,20,,100,,1,,1,0xFFFFFFFF,63,2,136,,90,0,0,{ bonus bMdef,3; bonus bMatkRate,5; },{},{} -28353,Vesper_Gear_02,Vesper Gear 02,4,20,,100,,1,,1,0xFFFFFFFF,63,2,136,,90,0,0,{ bonus bMdef,3; bonus2 bAddClass,Class_All,5; },{},{} -28354,City_Map,City Map,4,0,,100,,0,,1,0xFFFFFFFF,63,2,136,,1,0,0,{ /* todo */ },{},{} -28355,Shining_Holy_Water_,Shining Holy Water,4,0,,100,,0,,1,0xFFFFFFFF,63,2,136,,1,0,0,{ /* todo */ },{},{} -28356,Prontera_Badge,Prontera Badge,4,0,,100,,0,,0,0xFFFFFFFF,63,2,136,,1,0,0,{ /*warp "prontera",159,192; 15 mins cooldown */ },{},{} -28357,Vesper_Gear_03,Vesper Gear 03,4,20,,100,,1,,1,0xFFFFFFFF,63,2,136,,90,0,0,{ bonus bMdef,3; bonus bFlee,10; },{},{} -28358,Cursed_Lucky_Clover,Cursed Lucky Clover,4,0,,100,,,,1,0xFFFFFFFF,63,2,136,,100,0,,{ bonus bLuk,2; bonus bFlee,3; bonus2 bAddEff2,Eff_Curse,5; },{},{ sc_end SC_CLOAKING; /*FIXME: Because the combo has Cloaking skill*/ } -28359,Vesper_Gear_04,Vesper Gear 04,4,20,,100,,1,,1,0xFFFFFFFF,63,2,136,,90,0,0,{ bonus bMdef,3; bonus bHit,10; },{},{} -28370,Broken_Chip_Green,Broken Chip (Green),4,0,,100,,1,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus2 bAddClass,Class_All,5; bonus bDelayrate,-5; },{},{} -28371,Broken_Chip_Red,Broken Chip (Red),4,0,,100,,1,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus2 bMagicAddClass,Class_All,5; bonus bVariableCastrate,-10; },{},{} -28372,Imperial_Ring,Imperial Ring,4,0,,500,,3,,1,0xFFFFFFFF,63,2,136,,50,0,,{ bonus bStr,1; bonus bInt,1; bonus bMaxHPRate,3; bonus bMaxSPRate,3; },{},{} -28374,Foxtail_Ring,Foxtail Ring,4,20,,100,,0,,0,0x80000000,7,2,136,,1,0,,{ bonus2 bExpAddRace,RC_All,5; .@lvl = min(BaseLevel/5,10); bonus bAtk,2*.@lvl; bonus bMatk,2*.@lvl; bonus bMaxHP,10*.@lvl; bonus bMaxSP,5*.@lvl; },{},{} -28377,Magical_Ring,Magical Ring,4,0,,100,,,,1,0xFFFFFFFF,63,2,136,,20,0,,{ bonus2 bMagicAtkEle,Ele_Fire,5; bonus2 bMagicAtkEle,Ele_Water,5; bonus2 bMagicAtkEle,Ele_Earth,5; bonus2 bMagicAtkEle,Ele_Wind,5; if (BaseLevel > 4) { bonus2 bSkillAtk,"MG_FIREBOLT",BaseLevel/5; bonus2 bSkillAtk,"MG_COLDBOLT",BaseLevel/5; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",BaseLevel/5; bonus2 bSkillAtk,"WZ_EARTHSPIKE",BaseLevel/5; } },{},{} -28379,Shadow_Ring,Shadow Ring,4,20,,100,,0,,1,0xFFFFFFFF,63,2,136,,20,0,0,{ .@s = getskilllv("RG_STEALCOIN"); .@r = getskilllv("RG_RAID"); if (.@s>=1) .@a = .@s; else .@a = 1; bonus3 bAutoSpell,"RG_STEALCOIN",.@a,50; bonus2 bSkillAtk,"RG_BACKSTAP",2*BaseLevel; bonus3 bAddEff,Eff_Stun,.@r*100,ATF_SHORT; autobonus3 "{ bonus2 bSkillAtk,\"SC_TRIANGLESHOT\",BaseLevel/3; }",1000,20000,5010,"{ specialeffect2 153; }"; /* Placeholder specialeffect */ },{},{} -28380,Fresh_Grass_Necklace,Fresh Grass Necklace,4,20,,100,,0,,1,0x80000000,7,2,136,,100,0,,{ bonus bFlee2,5; bonus2 bSkillCooldown,"SU_SCAROFTAROU",-5000; },{},{} -28381,Cute_Grass_Necklace,Cute Grass Necklace,4,20,,10,,0,,1,0x80000000,7,2,136,,100,0,,{ bonus bHealPower,5; bonus2 bSkillCooldown,"SU_TUNAPARTY",-7000; },{},{} -28382,Charm_Grass_Necklace,Charm Grass Necklace,4,20,,10,,0,,1,0x80000000,7,2,136,,100,0,,{ bonus bMdef,5; bonus2 bVariableCastrate,"SU_CN_METEOR",-1000; },{},{} -28386,Fallen_Monk_Rosary,Fallen Monk Rosary,4,0,,100,,,,1,0xFFFFFFFF,63,2,136,,20,0,,{ bonus bAspdRate,5; bonus bCritical,5; bonus2 bSkillUseSP,"CH_SOULCOLLECT",-5; if (BaseLevel > 14) bonus2 bSkillAtk,"SR_DRAGONCOMBO",BaseLevel/15; if (BaseLevel > 19) bonus2 bSkillAtk,"SR_KNUCKLEARROW",BaseLevel/20; if (BaseLevel > 29) bonus2 bSkillAtk,"SR_SKYNETBLOW",BaseLevel/30; },{},{} -28391,S_Thief_Earring,Thief Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ autobonus3 "{ .@val = 30+(getrefine()*10); bonus bBaseAtk,.@val; bonus bFlee,.@val; }",200,5000,"TF_THROWSTONE","{ specialeffect2 EF_ENHANCE; }"; },{},{} -28392,S_Archer_Earring,Archer Shadow Earring,12,0,,0,,,,0,0xFFFFFFFF,63,2,1048576,,1,1,,{ autobonus3 "{ .@val = 30+(getrefine()*10); bonus bBaseAtk,.@val; bonus bHit,.@val; }",200,5000,"AC_DOUBLE","{ specialeffect2 EF_ENHANCE; }"; },{},{} -28410,Sapphire_Wrist,Sapphire Wrist,4,0,,500,,3,,1,0xFFFFFFFF,63,2,136,,50,0,,{ bonus bDex,5; bonus bLuk,5; bonus bInt,5; bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",BaseLevel/5; bonus2 bVariableCastrate,"CR_ACIDDEMONSTRATION",-(BaseLevel/4); .@n = getskilllv("CR_SLIMPITCHER"); bonus bDex,.@n/2; bonus bLuk,.@n/2; bonus bInt,.@n/2; bonus bMatk,(.@n/2)*20; },{},{} -28411,Emerald_Earring,Emerald Earring,4,0,,500,,3,,1,0xFFFFFFFF,63,2,136,,50,0,,{ bonus bDex,5; bonus bAgi,5; bonus bInt,5; bonus2 bSkillAtk,"CG_ARROWVULCAN",BaseLevel; bonus2 bSkillAtk,"BA_MUSICALSTRIKE",BaseLevel; bonus2 bSkillAtk,"DC_THROWARROW",BaseLevel; bonus2 bSkillAtk,"WM_METALICSOUND",2*(BaseLevel/5); .@n = getskilllv("WM_METALICSOUND"); bonus2 bVariableCastrate,"WM_METALICSOUND",.@n/2; bonus bDex,.@n/2; bonus bAgi,.@n/2; bonus bInt,.@n/2; bonus bMatk,(.@n/2)*20; },{},{} -28413,Lesser_Mackerel_Talisman,Lesser Mackerel Talisman,4,0,,100,,1,,1,0x80000000,63,2,136,,100,,,{ bonus bVit,1; },{},{} -28414,Intermediate_Mackerel_Talisman,Intermediate Mackerel Talisman,4,0,,100,,1,,1,0x80000000,63,2,136,,140,,,{ bonus bVit,2; },{},{} -28415,Greater_Mackerel_Talisman,Greater Mackerel Talisman,4,0,,100,,1,,1,0x80000000,63,2,136,,175,,,{ bonus bVit,3; },{},{} -28416,Lesser_Leaf_Talisman,Lesser Leaf Talisman,4,0,,100,,1,,1,0x80000000,63,2,136,,100,,,{ bonus bInt,1; },{},{} -28417,Intermediate_Leaf_Talisman,Intermediate Leaf Talisman,4,0,,100,,1,,1,0x80000000,63,2,136,,140,,,{ bonus bInt,2; },{},{} -28418,Greater_Leaf_Talisman,Greater Leaf Talisman,4,0,,100,,1,,1,0x80000000,63,2,136,,175,,,{ bonus bInt,3; },{},{} -28419,Lesser_Rabbit_Talisman,Lesser Rabbit Talisman,4,0,,100,,1,,1,0x80000000,63,2,136,,100,,,{ bonus bDex,1; },{},{} -28420,Intermediate_Rabbit_Talisman,Intermediate Rabbit Talisman,4,0,,100,,1,,1,0x80000000,63,2,136,,140,,,{ bonus bDex,2; },{},{} -28421,Greater_Rabbit_Talisman,Greater Rabbit Talisman,4,0,,100,,1,,1,0x80000000,63,2,136,,175,,,{ bonus bDex,3; },{},{} -28422,Shiny_Branch_Talisman,Shiny Branch Talisman,4,0,,100,,1,,1,0x80000000,63,2,136,,100,,,{ bonus2 bVariableCastrate,"SU_SV_STEMSPEAR",-50; bonus2 bSkillAtk,"SU_SV_STEMSPEAR",(readparam(bInt)/2)+(20 * getskilllv("SU_SV_STEMSPEAR")); /* Need to confirm damage formula */ },{},{} -28423,Fresh_Tuna_Talisman,Fresh Tuna Talisman,4,0,,100,,1,,1,0x80000000,63,2,136,,100,,,{ bonus2 bSkillCooldown,"SU_TUNAPARTY",-5000; bonus3 bAutoSpellWhenHit,"SU_TUNAPARTY",max(1,getskilllv("SU_TUNAPARTY")),10; },{},{} -28424,Chubby_Worm_Talisman,Chubby Worm Talisman,4,0,,100,,1,,1,0x80000000,63,2,136,,100,,,{ bonus2 bVariableCastrate,"SU_PICKYPECK",-50; bonus2 bSkillAtk,"SU_PICKYPECK",(readparam(bDex)/2)+(20 * getskilllv("SU_PICKYPECK")); /* Need to confirm damage formula */ },{},{} -28425,Mercenary_Ring_A,Mercenary Ring Type A,4,20,,200,,0,,0,0xFFFFFFFF,63,2,136,,99,0,0,{ bonus bVit,3; if (BaseClass == Job_Gunslinger || BaseJob == Job_Novice || BaseJob == Job_SuperNovice || BaseClass == Job_Ninja || BaseClass == Job_Taekwon) { bonus bMaxHP,1000; bonus bMaxSP,200; } },{},{} -28426,Mercenary_Ring_B,Mercenary Ring Type B,4,20,,200,,0,,0,0xFFFFFFFF,63,2,136,,99,0,0,{ bonus bInt,3; if (BaseClass == Job_Gunslinger || BaseJob == Job_Novice || BaseJob == Job_SuperNovice || BaseClass == Job_Ninja || BaseClass == Job_Taekwon) { bonus bVariableCastrate,-30; } },{},{} -28429,Arquien's_Necklace,Arquien's Necklace,4,20,,100,,0,,1,0xFFFFFFFF,63,2,136,,20,0,0,{ bonus2 bSkillAtk,"MC_CARTREVOLUTION",Baselevel; bonus2 bSkillAtk,"NC_AXETORNADO",(Baselevel/3); bonus2 bSkillAtk,"NC_POWERSWING",(Baselevel/5); bonus2 bSkillUseSP,"NC_POWERSWING",2; bonus2 bAddMonsterDropItem,529,2000; bonus2 bAddMonsterDropItem,530,2000; bonus2 bAddMonsterDropItem,573,500; bonus2 bAddItemHealRate,529,100; bonus2 bAddItemHealRate,530,100; /* Unknow drop rates */ },{},{} -28430,Arch_Bishop_Ring,Arch Bishop Ring,4,20,,400,,0,,1,0xFFFFFFFF,63,2,136,,90,0,0,{ bonus bLuk,2; bonus bFlee2,5; bonus bUseSPrate,-5; bonus bHealPower,15; bonus bAddItemHealRate,15; },{},{} -28433,Luminous_Blue_Stone,Luminous Blue Stone,4,20,,400,,0,,1,0xFFFFFFFF,63,2,136,,90,0,0,{ bonus bAgi,2; bonus bCritical,5; bonus bAspdRate,5; bonus bCritAtkRate,2; skill "MG_SIGHT",1; if (readparam(bLuk)>=100) { bonus bCritical,10; bonus bCritAtkRate,10; } },{},{} -28434,Fist_Fighter_Glove,Fist Fighter's Glove,4,20,,400,,0,,1,0xFFFFFFFF,63,2,136,,90,0,0,{ bonus bStr,2; bonus bMaxSP,100; bonus2 bAddClass,Class_All,2; skill "MO_ABSORBSPIRITS",1; if (readparam(bStr)>99) bonus2 bAddClass,Class_All,5; },{},{} -28437,Hibram's_Gloves,Hibram's Gloves,4,20,,400,,0,,1,0xFFFFFFFF,63,2,136,,90,0,0,{ skill "AL_HEAL",3; bonus bInt,2; bonus bMatkRate,2; bonus bUseSPrate,-5; if (readparam(bInt)>=110) bonus bMatkRate,5; },{},{} -28438,Fairy_Leaf_Powder,Fairy Leaf Powder,4,20,,400,,0,,1,0xFFFFFFFF,63,2,136,,90,0,0,{ bonus bDex,2; bonus bDelayrate,-5; bonus bLongAtkRate,2; skill "SM_MAGNUM",3; if (readparam(bDex)>=100) bonus bLongAtkRate,5; },{},{} -28441,Vigilante_Badge,Vigilante Badge,4,0,,200,,0,,0,0x00020000,56,2,136,,100,0,0,{ bonus bFlee,10; bonus bLongAtkRate,5; },{},{} -28442,Hippie_Feather,Hippie Feather,4,0,,200,,0,,1,0x00080000,56,2,136,,100,0,0,{ bonus bHit,5; bonus bFlee,5; },{},{} -28443,Para_Team_Str_Ring100,Awakened Eden Group Ring of Strength I,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,100,,,{ bonus2 bAddClass,Class_All,2; },{},{} -28444,Para_Team_Str_Necklace100,Awakened Eden Group Necklace of Strength I,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,100,,,{ bonus bStr,1; },{},{} -28445,Para_Team_Str_Ring115,Awakened Eden Group Ring of Strength II,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,115,,,{ bonus2 bAddClass,Class_All,3; },{},{} -28446,Para_Team_Str_Necklace115,Awakened Eden Group Necklace of Strength II,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,115,,,{ bonus bStr,2; },{},{} -28447,Para_Team_Str_Ring130,Awakened Eden Group Ring of Strength III,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,130,,,{ bonus2 bAddClass,Class_All,4; },{},{} -28448,Para_Team_Str_Necklace130,Awakened Eden Group Necklace of Strength III,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,130,,,{ bonus bStr,3; },{},{} -28449,Para_Team_Str_Ring145,Awakened Eden Group Ring of Strength IV,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,145,,,{ bonus2 bAddClass,Class_All,5; },{},{} -28450,Para_Team_Str_Necklace145,Awakened Eden Group Necklace of Strength IV,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,145,,,{ bonus bStr,4; },{},{} -28451,Para_Team_Str_Ring160,Awakened Eden Group Ring of Strength V,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,160,,,{ bonus2 bAddClass,Class_All,5; skill "AL_HEAL",1; },{},{} -28452,Para_Team_Str_Necklace160,Awakened Eden Group Necklace of Strength V,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,160,,,{ bonus bStr,4; skill "AL_TELEPORT",1; },{},{} -28453,Para_Team_Magic_Ring100,Awakened Eden Group Ring of Magic I,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,100,,,{ bonus bMatkRate,2; },{},{} -28454,Para_Team_Magic_Necklace100,Awakened Eden Group Necklace of Magic I,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,100,,,{ bonus bInt,1; },{},{} -28455,Para_Team_Magic_Ring115,Awakened Eden Group Ring of Magic II,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,115,,,{ bonus bMatkRate,3; },{},{} -28456,Para_Team_Magic_Necklace115,Awakened Eden Group Necklace of Magic II,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,115,,,{ bonus bInt,2; },{},{} -28457,Para_Team_Magic_Ring130,Awakened Eden Group Ring of Magic III,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,130,,,{ bonus bMatkRate,4; },{},{} -28458,Para_Team_Magic_Necklace130,Awakened Eden Group Necklace of Magic III,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,130,,,{ bonus bInt,3; },{},{} -28459,Para_Team_Magic_Ring145,Awakened Eden Group Ring of Magic IV,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,145,,,{ bonus bMatkRate,5; },{},{} -28460,Para_Team_Magic_Necklace145,Awakened Eden Group Necklace of Magic IV,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,145,,,{ bonus bInt,4; },{},{} -28461,Para_Team_Magic_Ring160,Awakened Eden Group Ring of Magic V,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,160,,,{ bonus bMatkRate,5; skill "AL_HEAL",1; },{},{} -28462,Para_Team_Magic_Necklace160,Awakened Eden Group Necklace of Magic V,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,160,,,{ bonus bInt,4; skill "AL_TELEPORT",1; },{},{} -28463,Para_Team_Agi_Ring100,Awakened Eden Group Ring of Agility I,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,100,,,{ bonus bLongAtkRate,1; },{},{} -28464,Para_Team_Agi_Necklace100,Awakened Eden Group Necklace of Agility I,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,100,,,{ bonus bDex,1; },{},{} -28465,Para_Team_Agi_Ring115,Awakened Eden Group Ring of Agility II,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,115,,,{ bonus bLongAtkRate,2; },{},{} -28466,Para_Team_Agi_Necklace115,Awakened Eden Group Necklace of Agility II,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,115,,,{ bonus bDex,2; },{},{} -28467,Para_Team_Agi_Ring130,Awakened Eden Group Ring of Agility III,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,130,,,{ bonus bLongAtkRate,3; },{},{} -28468,Para_Team_Agi_Necklace130,Awakened Eden Group Necklace of Agility III,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,130,,,{ bonus bDex,3; },{},{} -28469,Para_Team_Agi_Ring145,Awakened Eden Group Ring of Agility IV,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,145,,,{ bonus bLongAtkRate,4; },{},{} -28470,Para_Team_Agi_Necklace145,Awakened Eden Group Necklace of Agility IV,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,145,,,{ bonus bDex,4; },{},{} -28471,Para_Team_Agi_Ring160,Awakened Eden Group Ring of Agility V,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,160,,,{ bonus bLongAtkRate,4; skill "AL_HEAL",1; },{},{} -28472,Para_Team_Agi_Necklace160,Awakened Eden Group Necklace of Agility V,4,0,,0,,0,,0,0xFFFFFFFF,63,2,136,,160,,,{ bonus bDex,4; skill "AL_TELEPORT",1; },{},{} -28483,Royal_Guardian_Ring,Royal Guardian Ring,4,0,,10,,1,,1,0xFFFFFFFF,63,2,136,,99,,,{ .@b = min(BaseLevel/25,7); bonus bMaxHPrate,.@b; bonus bMaxSPrate,.@b; },{},{} -28484,Rebel_Scarf,Rebel Scarf,4,20,,400,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ .@M = getskilllv("RL_MASS_SPIRAL"); .@F = getskilllv("RL_FIRE_RAIN"); .@H = getskilllv("RL_HEAT_BARREL"); .@S = getskilllv("RL_S_STORM"); .@D = getskilllv("RL_D_TAIL"); .@E = getskilllv("RL_E_CHAIN"); bonus2 bAddClass,Class_All,5; bonus bAspdRate,2*.@M; bonus bVariableCastrate,-10; bonus bDelayrate,-(.@F); bonus2 bSkillCooldown,"RL_HEAT_BARREL",-4000*.@S; bonus2 bSkillCooldown,"RL_S_STORM",-100*.@S; bonus bCritAtkRate,3*.@D; bonus2 bSkillAtk,"RL_FIRE_RAIN",5*.@F; bonus2 bSkillAtk,"RL_MASS_SPIRAL",5*.@M; bonus2 bSkillAtk,"RL_QD_SHOT",5*.@E; bonus2 bSkillAtk,"RL_S_STORM",5*.@S; bonus2 bSkillUseSP,"RL_FIREDANCE",10; bonus2 bSkillUseSP,"RL_FIRE_RAIN",4*.@F; bonus2 bSkillUseSP,"RL_MASS_SPIRAL",2*.@M; if(getiteminfo(getequipid(EQI_HAND_R),11) == W_GRENADE) { autobonus3 "{ bonus3 bAutoSpell,\"RL_D_TAIL\",max(1,getskilllv(\"RL_D_TAIL\")),10;}",1000,50000,"RL_C_MARKER","{specialeffect2 311;}"; } /* Placeholder Effect */ },{},{} -28485,Shinobi_Sash_H,Shinobi Sash H,4,20,,100,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus bMatkRate,5; bonus bAspdRate,5; bonus bDelayrate,-5; .@a = (getskilllv("KO_GENWAKU")+getskilllv("KO_JYUSATSU")+getskilllv("KO_KYOUGAKU")); bonus2 bMagicAddEle,Ele_Dark,4*.@a; bonus2 bSkillAtk,"NJ_BAKUENRYU",10*getskilllv("NJ_KOUENKA"); bonus2 bSkillAtk,"NJ_KAMAITACHI",10*getskilllv("NJ_HUUJIN"); bonus2 bSkillAtk,"NJ_HYOUSYOURAKU",20*getskilllv("NJ_HYOUSENSOU"); },{},{} -28491,Hunting_Knife,Hunting Knife,4,20,,400,,0,,1,0xFFFFFFFF,63,2,136,,90,0,0,{ bonus bLuk,2; bonus bHit,10; bonus bCriticalLong,5; skill "TF_HIDING",1; if (readparam(bLuk)>=100) { bonus bHit,5; bonus bCriticalLong,10; } },{},{} -28492,Thieve_Guide_V1,Thieve's Guide Vol.1,4,20,,10,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus bStr,5; bonus bAgi,5; bonus bInt,5; if (getskilllv(2292)==3) skill "SN_WINDWALK",5; if (getskilllv(2293)==3) skill "HP_ASSUMPTIO",5; if (getskilllv(2294)==3) skill "WS_OVERTHRUSTMAX",5; if (getskilllv(2295)==3) skill "ASC_METEORASSAULT",5; if (getskilllv(2296)==3) skill "LK_BERSERK",1; if (getskilllv(2297)==3) skill "HW_MAGICPOWER",5; if (getskilllv(220)==1) { bonus bStr,5; bonus bAgi,5; bonus bInt,5; } },{},{} -28495,Sheriffs_Left_Badge,Sheriff's Left Badge,4,0,,200,,0,,1,0xFFFFFFFF,63,2,128,,100,0,0,{ if (readparam(bStr) > 89) bonus2 bAddClass,Class_All,3; if (readparam(bVit) > 89) bonus bMaxHP,1000; if (readparam(bDex) > 89) bonus bLongAtkRate,3; },{},{} -28496,Sheriffs_Right_Badge,Sheriff's Right Badge,4,0,,200,,0,,1,0xFFFFFFFF,63,2,8,,100,0,0,{ if (readparam(bVit) > 89) bonus bMaxHP,1000; if (readparam(bInt) > 89) bonus bMatkRate,3; if (readparam(bDex) > 89) bonus bVariableCastrate,-5; },{},{} -28499,Proof_of_Glory,Proof of Glory,4,0,,100,,0,,0,0xFFFFFFFF,63,2,136,,100,,,{ bonus bAllStats,1; bonus2 bAddRace,RC_All,2; bonus2 bMagicAddRace,RC_All,2; if(BaseLevel>=150) { bonus bAllStats,1; bonus2 bAddRace,RC_All,2; bonus2 bMagicAddRace,RC_All,2; } },{},{} -28500,Zealous_Necklace,Zealous Necklace,4,20,,200,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{},{},{} -28501,Horn_of_Kirin,Horn of Kirin,4,20,,500,,3,,1,0xFFFFFFFF,63,2,136,,50,0,0,{ bonus bAgi,2; bonus bAspdRate,2; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Brute,1; bonus2 bSubRace,RC_Player_Doram,1; bonus2 bSubRace,RC_Fish,1; bonus2 bSubRace,RC_Player_Human,1; bonus2 bSubRace,RC_Demon,2; bonus2 bSubRace,RC_Undead,2; skill "AL_INCAGI",6; if (readparam(bAgi)>=100) { bonus bAspdRate,5; } },{},{} -28502,Mob_Scarf,Mob Scarf,4,20,,100,,0,,0,0xFFFFFFFF,63,2,1,,100,0,1568,{ skill "SA_SPELLBREAKER",2; },{},{} -28503,Keraunos,Keraunos,4,20,,100,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus bMaxHPrate,5; bonus2 bAddClass,Class_All,5; bonus bAspdRate,5; bonus2 bVariableCastrate,"SR_GATEOFHELL",-3*(BaseLevel/20); bonus2 bVariableCastrate,"SR_RIDEINLIGHTNING",-5*(BaseLevel/15); bonus2 bSkillCooldown,"SR_ASSIMILATEPOWER",-3000; bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",5; },{},{} -28506,Storm_Stone,Storm Stone,4,30000,,500,,0,,1,0xFFFFFFFF,63,2,136,,90,0,0,{ bonus bMaxSPrate,5; bonus bAspdRate,5; bonus2 bAddClass,Class_All,5; },{},{} -28507,Magician_Gloves,Magician's Gloves,4,20,,500,,0,,1,0xFFFFFFFF,63,2,136,,80,0,0,{ bonus bVariableCastrate,-10; bonus2 bMagicAtkEle,Ele_Earth,5; bonus2 bMagicAtkEle,Ele_Water,5; bonus2 bMagicAtkEle,Ele_Wind,5; bonus2 bMagicAtkEle,Ele_Fire,5; bonus2 bMagicAtkEle,Ele_Ghost,5; bonus2 bIgnoreMdefRaceRate,RC_All,50; },{},{} -28508,Illusion_Skull_Ring,Illusion Skull Ring,4,0,,100,,0,,1,0xFFFFFFFF,63,2,8,,100,0,0,{ bonus3 bAddEff,Eff_Curse,5000,ATF_SELF|ATF_TARGET|ATF_SHORT|ATF_WEAPON; },{},{} -28509,Illusion_Ring,Illusion Ring,4,0,,200,,0,,1,0xFFFFFFFE,63,2,136,,100,0,0,{ bonus bStr,3; if (readparam(bStr) >= 100) { bonus bBaseAtk,30; } },{},{} -28510,A_Vampire's_Servant,A Vampire's Servant,4,0,,100,,1,,1,0xFFFFFFFF,63,2,8,,100,0,,{ bonus2 bSPDrainRate,1000,1; },{},{} -28513,JRO_Celine_Brooch,Celine's Brooch,4,20,,500,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus bMaxHP,500; bonus bMaxSP,250; bonus bMatkRate,5; bonus bAspd,1; bonus bVariableCastrate,-10; },{},{} -28520,Egir_Ring,Egir Ring,4,20,,500,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus bMdef,5; bonus bAllStats,1; bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus2 bSubEle,Ele_Water,10; },{},{} -28521,Giant's_Protection,Giant's Protection,4,20,,500,,0,,1,0xFFFFFFFF,63,2,136,,1,0,0,{ bonus2 bAddClass,Class_All,5; if (readparam(bStr)>=120) { bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bBaseAtk,50; } },{},{} -28531,Blacksmith's_Gloves,Blacksmith's Gloves,4,20,,500,,,,1,0xFFFFFFFF,63,2,136,,80,0,,{ bonus bDelayrate,-10; bonus2 bAddClass,Class_Boss,5; bonus2 bIgnoreDefRaceRate,RC_All,50; },{},{} -28533,Chemical_Glove,Chemical Glove,4,20,,100,,0,,1,0xFFFFFFFF,63,2,136,,20,0,,{ .@s = getskilllv("GN_REMODELING_CART"); bonus bHit,20; bonus bAspdRate,5+.@s; bonus bBaseAtk,15*.@s; bonus bMaxHPrate,2*.@s; bonus2 bSkillUseSP,"GN_CART_TORNADO",.@s; bonus2 bAddItemHealRate,501,100; bonus2 bAddItemHealRate,502,100; bonus2 bAddItemHealRate,503,100; bonus2 bAddItemHealRate,504,100; bonus2 bSkillAtk,"MC_CARTREVOLUTION",Baselevel; bonus2 bSkillAtk,"GN_CARTCANNON",2*(Baselevel/20); bonus2 bSkillAtk,"GN_CART_TORNADO",2*(Baselevel/30); },{},{} -28551,Imperial_Glove,Imperial Glove,4,20,,400,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus2 bAddClass,Class_All,5; bonus bVariableCastrate,-10; bonus bNoCastCancel; },{},{} -//28560,Yin_Yang_Talisman,Yin Yang Talisman,4,20,,300,,0,,1,0xFFFFFFFF,63,2,136,,50,0,0,{ bonus bMatkRate,5; bonus bHit,20; bonus bAspdRate,5; },{},{} -28564,Valkyrie_Drop,Valkyrie Drop,4,20,,30,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ .@r = getskilllv("PR_IMPOSITIO"); bonus bSPrecovRate,50; bonus bVariableCastrate,-10; bonus bDelayrate,-5; bonus2 bVariableCastrate,"AB_ORATIO",-50; bonus2 bFixedCastrate,"AB_ORATIO",-100; bonus2 bMagicAddSize,Size_All,3*.@r; bonus2 bSkillAtk,"PR_MAGNUS",3*(Baselevel/2); if (.@r == 5) skill "ALL_ODINS_POWER",2; },{},{} -28565,Perverse_Demon_Mask,Perverse Demon Mask,4,20,,60,,0,,1,0xFFFFFFFF,63,2,128,,80,0,0,{ .@s = readparam(bStr); .@a = readparam(bAgi); .@d = readparam(bDex); .@v = readparam(bvit); .@l = readparam(bLuk); .@i = readparam(bInt); bonus bStr,3*(.@i/18); bonus bAgi,3*(.@l/18); bonus bVit,3*(.@d/18); bonus bInt,3*(.@s/18); bonus bDex,3*(.@v/18); bonus bLuk,3*(.@a/18); bonus bMaxHPrate,(.@d/18); bonus bFlee2,(.@a/18); bonus bMaxHPrate,(.@d/18); bonus bVariableCastrate,-(.@v/18); bonus bDelayrate,-(.@i/18); bonus2 bIgnoreDefClassRate,Class_All,15*(.@l/18); bonus2 bIgnoreMdefClassRate,Class_All,15*(.@s/18); },{},{} -28566,Beginner's_Ring,Beginner's Ring,4,20,,0,,0,,0,0xFFFFFFFF,63,2,128,,100,0,0,{ bonus bAspdRate,10; bonus bVariableCastrate,-10; },{},{} -28573,Emerald_Ring,Emerald Ring,4,20,,300,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ .@a = getskilllv("AC_DOUBLE")/2; bonus bAgi,5+(.@a); bonus bVit,5+(.@a); bonus bDex,5+(.@a); bonus bBaseAtk,(20*.@a); bonus2 bSkillAtk,"AC_DOUBLE",Baselevel; bonus2 bSkillAtk,"AC_SHOWER",Baselevel; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",2*(Baselevel/10); bonus2 bSkillUseSP,"WM_RANDOMIZESPELL",18; },{},{} -28575,Verus_Core,Verus Core,4,10,,500,,0,,1,0xFFFFFFFF,63,2,136,,80,0,0,{ bonus bAspdRate,10; bonus2 bAddEle,Ele_All,5; bonus bPerfectHitAddRate,20; },{},{} -28594,Temporal_Ring,Temporal Ring,4,20,,500,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bBaseAtk,50; bonus bMatk,50; },{},{} -28598,Powered_Chip,Powered Chip,4,20,,100,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus bStr,5; bonus bVit,5; bonus bDex,5; bonus2 bAddClass,Class_All,5; if (getskilllv("NC_ARMSCANNON") >= 3) bonus bDelayrate,-30; if (getskilllv("NC_NEUTRALBARRIER") >= 3) { bonus2 bVariableCastrate,"NC_ARMSCANNON",-50; bonus2 bVariableCastrate,"NC_FLAMELAUNCHER",-50; bonus2 bVariableCastrate,"NC_COLDSLOWER",-50; } if (getskilllv("NC_PILEBUNKER") >= 3) { bonus bStr,5; bonus bVit,5; bonus bDex,5; bonus bBaseAtk,100; } if (getskilllv("NC_RESEARCHFE") >= 5) bonus bNoMadoFuel; },{},{} -//=================================================================== -// More books -//=================================================================== -28600,Ru_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,0x00000100,56,2,2,3,110,1,15,{ bonus bInt,2; bonus bDex,2; .@b = readparam(bInt); bonus2 bSkillAtk,"PR_MAGNUS",30+min(.@b,120); bonus bHealPower,10; bonus bAddItemHealRate,10; .@r = (getrefine()*1000); autobonus2 "{ bonus bIgnoreMdefRace,RC_All; }",50,1000+.@r,BF_WEAPON,"{ specialeffect2 EF_FLOWERCAST;}"; bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Holy; },{},{} -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); },{},{} -28605,Book_of_Vicious_Mind,Book of Vicious Mind,5,20,,950,95,,1,1,0x00010100,63,2,2,4,160,1,15,{ bonus bAtk,pow(min(getrefine(),15),2); bonus bMatk,pow(min(getrefine(),15),2); bonus bUnbreakableWeapon; },{},{} -28606,Unity_Bible,Unity Bible,5,20,,220,42,,1,1,0x00410100,63,2,2,3,1,1,15,{ bonus bBaseAtk,pow(getrefine(),2)*125/100; },{},{} -28608,Elemental_Origin,Elemental Origin,5,20,,800,120:150,,1,2,0x00010000,56,2,2,3,100,1,15,{ .@r = getrefine(); bonus bInt,4; .@bonus = 10; if (.@r>=7) { .@bonus += 10; } if (.@r>=9) { .@bonus += 10; } bonus2 bSkillAtk,"MG_FIREBOLT",.@bonus; bonus2 bSkillAtk,"MG_COLDBOLT",.@bonus; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",.@bonus; },{},{} -28612,Illusion_Apocalypse,Illusion Apocalypse,5,0,,800,170,,1,2,0x00410100,63,2,2,4,100,1,15,{ .@val = 10 + 10*(min(getrefine(),10)/3); bonus2 bAddEle,Ele_Water,.@val; bonus2 bAddEle,Ele_Earth,.@val; bonus2 bAddEle,Ele_Fire,.@val; bonus2 bAddEle,Ele_Wind,.@val; bonus2 bSubDefEle,Ele_Holy,-30; },{},{} -28618,Book_of_the_Sun_God,Book of the Sun God,5,10,,500,180:170,,1,4,0x00010100,63,2,2,3,100,1,15,{ .@r = getrefine(); bonus bMaxHP,200*.@r; bonus bMaxSP,50*.@r; bonus bAspdRate,.@r; if (.@r>=10) bonus3 bAutoSpell,"WZ_METEOR",5,200; else if (.@r>=8) bonus3 bAutoSpell,"WZ_METEOR",4,150; else bonus3 bAutoSpell,"WZ_METEOR",3,100; },{},{} -28619,Prisoner_Diary,Prisoner's Diary,5,20,,800,210,,1,2,0x00410100,63,2,2,3,175,1,15,{ .@r = getrefine(); bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bBaseAtk,20*(.@r/2); if (.@r>=9) .@val = 25; else if (.@r>=7) .@val = 10; if (.@r>=11) { bonus2 bAddEle,Ele_Dark,15; bonus2 bMagicAddEle,Ele_Dark,15; bonus2 bAddEle,Ele_Undead,15; bonus2 bMagicAddEle,Ele_Undead,15; } bonus2 bAddRace,RC_Demon,.@val; bonus2 bAddRace,RC_Undead,.@val; bonus2 bMagicAddRace,RC_Demon,.@val; bonus2 bMagicAddRace,RC_Undead,.@val; },{},{} -28626,Illusion_Tablet,Illusion Tablet,5,0,,800,170,,1,2,0x00410100,63,2,2,4,100,1,15,{ .@val = 10 + 10*(min(getrefine(),10)/3); bonus2 bAddEle,Ele_Dark,.@val; bonus2 bAddEle,Ele_Undead,.@val; bonus2 bAddEle,Ele_Poison,.@val; bonus2 bAddEle,Ele_Ghost,.@val; bonus2 bSubDefEle,Ele_Dark,-30; },{},{} -28629,Circuit_Board-OS,Circuit Board-OS,5,20,,1200,180,,1,2,0x00410100,63,2,2,4,130,1,15,{ .@r = getrefine(); bonus2 bAddClass,Class_All,3; if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus2 bAddSize,Size_Small,20; bonus2 bAddSize,Size_Medium,20; if (.@r >= 11) { bonus bCritAtkRate,20; } } } },{},{} -// 28631,Thousand_Sun,Thousand Sun,5,20,,900,160,,1,2,0x00000000,63,2,2,4,100,1,15,{ .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bMaxSPrate,2*(.@r/3); if (.@r >= 7) { bonus2 bSkillAtk,"SJ_PROMINENCEKICK",15; if (.@r >= 9) { bonus bAspdRate,10; if (.@r >= 11) { bonus2 bSkillAtk,"SJ_SOLARBURST",20; } } } },{},{} -28633,Boltijin,Boltijin,5,20,,800,120:175,,1,2,0x00010000,56,2,2,4,170,1,15,{ .@r = getrefine(); bonus bMatk,4*.@r; if (.@r>=9) .@val = 30; if (.@r>=11) { bonus2 bSkillAtk,"WZ_EARTHSPIKE",50; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",50; } bonus2 bSkillAtk,"MG_FIREBOLT",20+.@val; bonus2 bSkillAtk,"MG_COLDBOLT",20+.@val; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",20+.@val; },{},{} -//=================================================================== -// More daggers -//=================================================================== -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:100,,1,1,0x028F5EEF,56,2,2,4,100,1,1,{},{},{} -28705,Crimson_Dagger,Crimson Dagger,5,20,,550,55,,1,2,0x028F5EEF,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); },{},{} -28706,Dagger_of_Vicious_Mind,Dagger of Vicious Mind,5,20,,1050,105:50,,1,1,0x028F5EEF,63,2,2,4,160,1,1,{ bonus bAtk,pow(min(getrefine(),15),2); bonus bMatk,pow(min(getrefine(),15),2)/2; },{},{} -28717,Valkyrie_Knife,Valkyrie Knife,5,50,,100,50:50,,1,4,0x228F5EEF,63,2,2,4,70,1,1,{ .@r = getrefine(); .@b = readparam(bDex)/10; if (BaseClass==Job_Novice) { bonus bMaxHP,300+(200*.@r); bonus bMaxSP,300+(20*.@r); bonus bBaseAtk,100; bonus bMatk,150+(15*.@r); bonus bUseSPrate,-5; bonus bUnbreakableWeapon; bonus bInt,2*.@r; bonus bDex,(2*.@r)-(.@r*.@b); bonus bCritical,7*.@r; bonus bAspdRate,10*.@r; bonus bCritAtkRate,1*.@r; } if (BaseClass==Job_Thief) { bonus bMaxSP,100; bonus bMatk,150; bonus bCritAtkRate,.@r; } if (BaseClass==Job_Mage) { bonus bMaxHP,200*.@r; bonus bMaxSP,20*.@r; } if (BaseJob==Job_Hunter) { bonus bMaxHP,200; bonus bUseSPrate,-5; bonus bInt,2*.@r; bonus bDex,2*.@r; } if (BaseJob==Job_Bard||BaseJob==Job_Dancer) { bonus bBaseAtk,100; bonus bAspdRate,10*.@r; bonus bUnbreakableWeapon; bonus bDex,-1*(.@r*.@b); } if (.@r>=7) { if (BaseClass==Job_Novice||BaseJob==Job_Mage) { bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; } }},{},{} -28721,Monokage,Monokage,5,10,,800,100,,1,2,0x20000000,63,2,2,3,100,1,1,{ .@r = getrefine(); bonus2 bSkillAtk,"KO_BAKURETSU",getskilllv("NJ_TOBIDOUGU"); if (.@r>=9) { bonus bLongAtkRate,5; } else if (.@r>=7) { bonus bLongAtkRate,2; } },{},{} -28725,Illusion_Moonlight_Dagger,Illusion Moonlight Dagger,5,20,,700,150,,1,1,0x028F5EEE,63,2,2,4,99,1,1,{ bonus bMaxSPrate,10; .@val = 3; if (getrefine() >= 10) { .@val += 4; } bonus bSPDrainValue,.@val; },{},{} -28745,Illusion_Counter_Dagger,Illusion Counter Dagger,5,0,,900,170,,1,2,0x00810204,63,2,2,4,120,0,1,{ .@r = getrefine(); bonus bCritical,90; bonus bCritAtkRate,(3*(.@r/2)); if (.@r >= 7) { bonus2 bAddClass,Class_All,5; if (.@r >= 9) { bonus2 bAddSize,Size_All,20; if (.@r >= 11) { bonus2 bAddEle,Ele_All,20; } } } },{},{} -28755,Kuroiro-OS,Kuroiro-OS,5,20,,900,150:150,,1,2,0x22000000,63,2,2,4,130,1,1,{ .@r = getrefine(); .@dmg = 5; if (.@r >= 7) { .@dmg += 10; if (.@r >= 9) { bonus2 bSkillAtk,"KO_HAPPOKUNAI",20; if (.@r >= 11) { bonus2 bAddRace,RC_Demon,10; bonus2 bMagicAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; bonus2 bMagicAddRace,RC_Undead,10; } } } bonus2 bAddEle,Ele_Undead,.@dmg; bonus2 bMagicAddEle,Ele_Undead,.@dmg; bonus2 bAddEle,Ele_Dark,.@dmg; bonus2 bMagicAddEle,Ele_Dark,.@dmg; },{},{} -28762,Illusion_Bazerald,Illusion Bazerald,5,20,,500,120:170,,1,2,0x228F5EEE,63,2,2,4,120,1,1,{ bonus bAtkEle,Ele_Fire; bonus bInt,5; .@r = getrefine(); bonus bMatkRate,(.@r/2); if (.@r >= 7) { bonus2 bMagicAtkEle,Ele_Fire,10; if (.@r >= 9) { bonus2 bSkillAtk,"MG_FIREBOLT",40; bonus2 bSkillAtk,"MG_FIREBALL",40; if (.@r >= 11) { bonus2 bSkillAtk,"WZ_METEOR",30; bonus2 bSkillAtk,"WL_CRIMSONROCK",30; } } } },{},{} -28763,Surudoi_Kaze,Surudoi Kaze,5,20,,1000,150,,1,2,0x22000000,63,2,2,4,100,1,1,{},{},{} -28764,Kiri_no_Tsuyu,Kiri no Tsuyu,5,20,,1000,150,,1,2,0x22000000,63,2,2,4,100,1,1,{},{},{} -28765,Judgement_Slasher,Judgement Slasher,5,20,,1100,195,,1,2,0x00001000,56,2,2,4,170,1,1,{},{},{} -28766,Repent_Slasher,Repent Slasher,5,20,,700,100,,1,3,0x00001000,56,2,2,4,170,1,1,{},{},{} -28767,Jack_The_Knife,Jack The Knife,5,20,,900,195,,1,2,0x00020000,56,2,2,4,170,1,1,{ .@r = getrefine(); bonus bBaseAtk,4*.@r; bonus2 bSkillAtk,"RG_BACKSTAP",40; if (.@r>=9) bonus2 bSkillAtk,"SC_FATALMENACE",30; if (.@r>=11) bonus2 bSkillUseSPrate,"SC_FATALMENACE",10; },{},{} -28768,Platinum_Dagger,Platinum Dagger,5,20,,1500,150:170,,1,2,0x00020000,56,2,2,4,170,1,1,{ .@r = getrefine(); bonus bMatk,4*.@r; bonus bMatkRate,5; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Fire,15; bonus2 bMagicAtkEle,Ele_Wind,15; bonus2 bMagicAtkEle,Ele_Water,15; bonus2 bMagicAtkEle,Ele_Earth,15; } if (.@r>=11) autobonus "{ bonus bMatk,100; bonus2 bMagicAddSize,Size_All,30; }",50,10000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; /* Unknow Rates and Specialeffect */ },{},{} -//=================================================================== -// More shields -//=================================================================== -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; bonus3 bAutoSpellWhenHit,"HP_ASSUMPTIO",3,(10+(.@r*10)); bonus bDef,(.@r*10); bonus bMdef,.@r; },{},{} -28901,Cursed_Mad_Bunny,Cursed Mad Bunny,4,20,,100,,0,,0,0xFFFFFFFF,63,2,32,,1,1,1,{ bonus bAspd,3; bonus2 bAddRace,RC_All,5; bonus2 bMagicAddRace,RC_All,5; bonus bShortWeaponDamageReturn,10; autobonus2 "{ bonus bMagicDamageReturn,60; }",10,2000,BF_MAGIC,"{ specialeffect2 EF_WIND; }"; .@r = getrefine(); if(.@r>=7) { bonus bBaseAtk,5; bonus bMatk,5; } if(.@r>=9) { bonus bBaseAtk,15; bonus bMatk,15; } if(.@r>=12) { bonus bCritical,10; bonus bNoCastCancel; } },{},{} -28902,Mad_Bunny_,Mad Bunny,4,20,,100,,0,,1,0xFFFFFFFF,63,2,32,,1,1,1,{ bonus2 bAddRace,RC_All,5; bonus2 bMagicAddRace,RC_All,5; bonus bShortWeaponDamageReturn,10; autobonus2 "{ bonus bMagicDamageReturn,60; }",10,2000,BF_MAGIC,"{ specialeffect2 EF_WIND; }"; .@r = getrefine(); if(.@r>=7) { bonus bBaseAtk,5; bonus bMatk,5; } if(.@r>=9) { bonus bBaseAtk,15; bonus bMatk,15; } if(.@r>=12) { bonus bCritical,10; bonus bNoCastCancel; } },{},{} -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; } },{},{} -28904,Unity_Guard,Unity Guard,4,20,,300,,60,,1,0xFFFFFFFF,63,2,32,,100,1,1,{ if(BaseLevel<100) { bonus bDef,12*getrefine(); } },{},{} -28905,Unity_Buckler,Unity Buckler,4,20,,300,,60,,1,0xFFFFFFFF,63,2,32,,100,1,1,{ if(BaseLevel<100) { bonus bMaxSPrate,2*getrefine(); } },{},{} -28906,Shield_Of_Flame,Shield Of Flame,4,0,,500,,80,,1,0xFFFFFFFF,63,2,32,,90,1,1,{ bonus2 bSubEle,Ele_Fire,25; .@r = getrefine(); if(.@r > 4) { bonus bAspd,1+((.@r > 6) ? 1 : 0); } },{},{} -28907,Shield_Of_Gust,Shield Of Gust,4,0,,500,,80,,1,0xFFFFFFFF,63,2,32,,90,1,1,{ bonus2 bSubEle,Ele_Wind,25; .@r = getrefine(); if(.@r > 4) { bonus bAspd,1+((.@r > 6) ? 1 : 0); } },{},{} -28908,Shield_Of_Water,Shield Of Water,4,0,,500,,80,,1,0xFFFFFFFF,63,2,32,,90,1,1,{ bonus2 bSubEle,Ele_Water,25; .@r = getrefine(); if(.@r > 4) { bonus bAspd,1+((.@r > 6) ? 1 : 0); } },{},{} -28909,Shield_Of_Earth,Shield Of Earth,4,0,,500,,80,,1,0xFFFFFFFF,63,2,32,,90,1,1,{ bonus2 bSubEle,Ele_Earth,25; .@r = getrefine(); if(.@r > 4) { bonus bAspd,1+((.@r > 6) ? 1 : 0); } },{},{} -28910,Rectangular_Large_Sleeve,Rectangular Large Sleeve,4,20,,800,,80,,1,0xFFFFFFFF,63,2,32,,100,1,1,{ bonus bLongAtkDef,5; .@r = getrefine(); if(.@r>=5) { bonus bLongAtkDef,5; } if(.@r>=7) { bonus bLongAtkDef,10; } if(.@r>=9) { bonus bLongAtkDef,15; } },{},{} -28913,Ultra_Light_MShield,Ultralight Magic Shield,4,0,,100,,50,,1,0xFFFFFFFF,63,2,32,,100,1,1,{ .@r = getrefine(); .@val = 5; bonus2 bIgnoreDefClassRate,Class_Normal,10; if (.@r >= 9) { .@val += 5; } else if (.@r >= 7) { .@val += 2; } bonus bAspdRate,.@val; bonus2 bSubEle,Ele_Neutral,.@val; },{},{} -28915,Bunker_Shield,Bunker Shield,4,20,,3500,,90,,1,0xFFFFFFFF,63,2,32,,50,1,1,{ .@r = getrefine(); if(.@r >= 5) { .@dmg = .@r - 4; } bonus2 bAddClass,Class_All,(4+.@dmg); bonus bAspdRate,-5; },{},{} -28916,Gaia_Shield,Gaia Shield,4,20,,2000,,150,,1,0xFFFFFFFF,63,2,32,,90,1,1,{ bonus bMdef,10; bonus2 bSubEle,Ele_Earth,10; bonus2 bAddEle,Ele_Earth,5; bonus2 bMagicAddEle,Ele_Earth,5; .@r = getrefine(); if(.@r>=6) { bonus2 bSubEle,Ele_Earth,15; bonus2 bAddEle,Ele_Earth,10; bonus2 bMagicAddEle,Ele_Earth,10; } if(.@r>=8) { if(readparam(bStr)>=90) { bonus bBaseAtk,50; } if(readparam(bAgi)>=90) { bonus bAspdRate,5; } if(readparam(bVit)>=90) { bonus bHealPower2,10; bonus bAddItemHealRate,10; } if(readparam(bInt)>=90) { bonus bMatk,30; } if(readparam(bDex)>=90) { bonus bVariableCastrate,-5; } if(readparam(bLuk)>=90) { bonus bCritAtkRate,5; } } },{},{} -28918,Shield_of_Chaos,Shield of Chaos,4,20,,500,,80,,1,0xFFFFFFFF,63,2,32,,90,1,1,{ .@r = getrefine(); bonus bMdef,5; bonus2 bSubEle,Ele_Dark,25; if (.@r>=5) bonus bAspd,1; if (.@r>=7) bonus bAspd,1; },{},{} -28920,Diamond_Shield,Diamond Shield,4,20,,1000,,50,,0,0xFFFFFFFF,63,2,32,,100,1,1,{ .@r = getrefine(); if(BaseLevel>=150) { bonus bDef,100+(20*(.@r/3)); } },{},{} -28921,Anemos_Shield,Anemos Shield,4,20,,3500,,150,,1,0xFFFFFFFF,63,2,32,,90,1,1,{ bonus bMdef,15; bonus2 bAddEle,Ele_Wind,5; bonus2 bMagicAddEle,Ele_wind,5; bonus2 bSubEle,Ele_Wind,10; bonus bUnbreakableShield; .@r = getrefine(); if (.@r>=6) { bonus2 bAddEle,Ele_Wind,10; bonus2 bMagicAddEle,Ele_wind,10; bonus2 bSubEle,Ele_Wind,15; } if (.@r>=8) { if (readparam(bStr)>=90) bonus bBaseAtk,50; if (readparam(bAgi)>=90) bonus bAspdRate,5; if (readparam(bVit)>=90) bonus bAddItemHealRate,10; if (readparam(bInt)>=90) bonus bMatk,30; if (readparam(bDex)>=90) bonus bVariableCastrate,-5; if (readparam(bLuk)>=90) bonus bCritAtkRate,5; } },{},{} -28922,Illusion_Sacred_Mission,Illusion Sacred Mission,4,0,,1600,,190,,1,0x00004000,56,2,32,,120,1,4,{ bonus bVit,3; bonus bInt,2; bonus bMdef,3; bonus bUnbreakableShield; bonus2 bSkillAtk,"LG_EARTHDRIVE",(7*getrefine()); },{},{} -28929,Happy_Shield,Happy Shield,4,10,,3500,,150,,1,0xFFFFFFFF,63,2,32,,90,1,1,{ bonus bMdef,10; },{},{} -28941,Excelion_Shield,Excelion Shield,4,20,,1200,,95,,1,0xFFFFFFFF,63,2,32,,100,1,1,{ .@r = getrefine(); bonus bMdef,5; bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bBaseAtk,30*(.@r/3); bonus bMatk,30*(.@r/3); if (readparam(Baselevel)>=130) { bonus bMaxHPrate,5; bonus bMaxSPrate,5; } },{},{} -28951,Nero_Shield,Nero Shield,4,20,,500,,80,,1,0xFFFFFFFF,63,2,32,,90,1,1,{ .@r = getrefine(); bonus bUnbreakableShield; bonus bMdef,5; bonus2 bSubEle,Ele_Water,10; bonus2 bAddEle,Ele_Water,5; bonus2 bMagicAddEle,Ele_Water,5; if (.@r>=6) { bonus2 bSubEle,Ele_Water,15; bonus2 bAddEle,Ele_Water,10; bonus2 bMagicAddEle,Ele_Water,10; } if (.@r>=8) { if (readparam(bStr)>=90) bonus bBaseAtk,50; if (readparam(bAgi)>=90) bonus bAspdRate,5; if (readparam(bInt)>=90) bonus bMatk,30; if (readparam(bVit)>=90) bonus bAddItemHealRate,10; if (readparam(bDex)>=90) bonus bVariableCastrate,-5; if (readparam(bLuk)>=90) bonus bCritAtkRate,5; } },{},{} -28955,Fotia_Shield,Fotia Shield,4,20,,1000,,120,,1,0xFFFFFFFF,63,2,32,,90,1,1,{ .@r = getrefine(); bonus bUnbreakableShield; bonus bMdef,5; bonus2 bSubEle,Ele_Fire,10; bonus2 bAddEle,Ele_Fire,5; bonus2 bMagicAddEle,Ele_Fire,5; if (.@r>=6) { bonus2 bSubEle,Ele_Fire,15; bonus2 bAddEle,Ele_Fire,10; bonus2 bMagicAddEle,Ele_Fire,10; } if (.@r>=8) { if (readparam(bStr)>=90) bonus bBaseAtk,50; if (readparam(bAgi)>=90) bonus bAspdRate,5; if (readparam(bInt)>=90) bonus bMatk,30; if (readparam(bVit)>=90) bonus bAddItemHealRate,10; if (readparam(bDex)>=90) bonus bVariableCastrate,-5; if (readparam(bLuk)>=90) bonus bCritAtkRate,5; } },{},{} -//=================================================================== -// Enchantment stones -//=================================================================== -29000,Rune_of_Intellect_Lv_1,Rune of Intellect Lv 1,6,20,,,,,,,,,,,,,,,{ .@r = getrefine(); if (.@r>=7) { bonus bInt,5; } if (.@r>=10) { bonus bMatkRate,5; } },{},{} -29001,Rune_of_Intellect_Lv_2,Rune of Intellect Lv 2,6,20,,,,,,,,,,,,,,,{ .@r = getrefine(); if (.@r>=7) { bonus bInt,6; } if (.@r>=11) { bonus bInt,1; bonus bMatkRate,7; } },{},{} -29002,Rune_of_Intellect_Lv_3,Rune of Intellect Lv 3,6,20,,,,,,,,,,,,,,,{ .@r = getrefine(); if (.@r>=7) { bonus bInt,7; } if (.@r>=12) { bonus bInt,1; bonus bMatkRate,8; } if (.@r>=13) { bonus bInt,1; bonus bMatkRate,2; } },{},{} -29003,Rune_of_Dexterity_Lv_1,Rune of Dexterity Lv 1,6,20,,,,,,,,,,,,,,,{ .@r = getrefine(); if (.@r>=7) { bonus bDex,5; } if (.@r>=10) { bonus bLongAtkRate,5; } },{},{} -29004,Rune_of_Dexterity_Lv_2,Rune of Dexterity Lv 2,6,20,,,,,,,,,,,,,,,{ .@r = getrefine(); if (.@r>=7) { bonus bDex,6; } if (.@r>=11) { bonus bDex,1; bonus bLongAtkRate,7; } },{},{} -29005,Rune_of_Dexterity_Lv_3,Rune of Dexterity Lv 3,6,20,,,,,,,,,,,,,,,{ .@r = getrefine(); if (.@r>=7) { bonus bDex,7; } if (.@r>=12) { bonus bDex,1; bonus bLongAtkRate,8; } if (.@r>=13) { bonus bDex,1; bonus bLongAtkRate,2; } },{},{} -29006,Rune_of_Luck_Lv_1,Rune of Luck Lv 1,6,20,,,,,,,,,,,,,,,{ .@r = getrefine(); if (.@r>=7) { bonus bLuk,5; } if (.@r>=10) { bonus bCritAtkRate,5; } },{},{} -29007,Rune_of_Luck_Lv_2,Rune of Luck Lv 2,6,20,,,,,,,,,,,,,,,{ .@r = getrefine(); if (.@r>=7) { bonus bLuk,6; } if (.@r>=11) { bonus bLuk,1; bonus bCritAtkRate,7; } },{},{} -29008,Rune_of_Luck_Lv_3,Rune of Luck Lv 3,6,20,,,,,,,,,,,,,,,{ .@r = getrefine(); if (.@r>=7) { bonus bLuk,7; } if (.@r>=12) { bonus bLuk,1; bonus bCritAtkRate,8; } if (.@r>=13) { bonus bLuk,1; bonus bCritAtkRate,6; } },{},{} -29009,Rune_of_Vitality_Lv_1,Rune of Vitality Lv 1,6,20,,,,,,,,,,,,,,,{ .@r = getrefine(); if (.@r>=7) { bonus bVit,5; } if (.@r>=10) { bonus bMaxHPrate,5; } },{},{} -29010,Rune_of_Vitality_Lv_2,Rune of Vitality Lv 2,6,20,,,,,,,,,,,,,,,{ .@r = getrefine(); if (.@r>=7) { bonus bVit,6; } if (.@r>=11) { bonus bVit,1; bonus bMaxHPrate,7; } },{},{} -29011,Rune_of_Vitality_Lv_3,Rune of Vitality Lv 3,6,20,,,,,,,,,,,,,,,{ .@r = getrefine(); if (.@r>=7) { bonus bVit,7; } if (.@r>=12) { bonus bVit,1; bonus bMaxHPrate,8; } if (.@r>=13) { bonus bVit,1; bonus bMaxHPrate,2; } },{},{} -29013,HPdrain3,HP Absorption 3,6,0,,0,,,,,,,,,,,,,{ bonus2 bHPDrainRate,10,3; },{},{} -29014,STR3INT,STR+3 INT-3,6,0,,0,,,,,,,,,,,,,{ bonus bStr,3; bonus bInt,-3; },{},{} -29015,STR3DEX,STR+3 DEX-3,6,0,,0,,,,,,,,,,,,,{ bonus bStr,3; bonus bDex,-3; },{},{} -29016,INT3DEX,INT+3 DEX-3,6,0,,0,,,,,,,,,,,,,{ bonus bInt,3; bonus bDex,-3; },{},{} -29017,INT3VIT,INT+3 VIT-3,6,0,,0,,,,,,,,,,,,,{ bonus bInt,3; bonus bVit,-3; },{},{} -29018,DEX3VIT,DEX+3 VIT-3,6,0,,0,,,,,,,,,,,,,{ bonus bDex,3; bonus bVit,-3; },{},{} -29019,DEX3AGI,DEX+3 AGI-3,6,0,,0,,,,,,,,,,,,,{ bonus bDex,3; bonus bAgi,-3; },{},{} -29020,VIT3AGI,VIT+3 AGI-3,6,0,,0,,,,,,,,,,,,,{ bonus bVit,3; bonus bAgi,-3; },{},{} -29021,VIT3LUK,VIT+3 LUK-3,6,0,,0,,,,,,,,,,,,,{ bonus bVit,3; bonus bLuk,-3; },{},{} -29022,AGI3LUK,AGI+3 LUK-3,6,0,,0,,,,,,,,,,,,,{ bonus bAgi,3; bonus bLuk,-3; },{},{} -29023,AGI3STR,AGI+3 STR-3,6,0,,0,,,,,,,,,,,,,{ bonus bAgi,3; bonus bStr,-3; },{},{} -29024,LUK3STR,LUK+3 STR-3,6,0,,0,,,,,,,,,,,,,{ bonus bLuk,3; bonus bStr,-3; },{},{} -29025,LUK3INT,LUK+3 INT-3,6,0,,0,,,,,,,,,,,,,{ bonus bLuk,3; bonus bInt,-3; },{},{} -29026,Def20,DEF+20,6,10,,,,,,,,,,,,,,,{ bonus bDef,20; },{},{} -29027,EXP2,EXP+2%,6,0,,0,,,,,,,,,,,,,{ bonus2 bExpAddClass,Class_All,2; },{},{} -29028,Atk1p_Top,ATK + 1%,6,0,,0,,,,,,,,,,,,,{ bonus2 bAddClass,Class_All,1; },{},{} -29029,Atk1p_Bottom,ATK+1%(Lower),6,0,,0,,,,,,,,,,,,,{ bonus2 bAddClass,Class_All,1; },{},{} -29030,Matk1p_Top,MATK+1%,6,0,,0,,,,,,,,,,,,,{ bonus bMatkRate,1; },{},{} -29031,Matk1p_Bottom,MATK+1%(Lower),6,0,,0,,,,,,,,,,,,,{ bonus bMatkRate,1; },{},{} -29032,SPdrain1_Top,SP Absorption 1,6,0,,0,,,,,,,,,,,,,{ bonus2 bSPDrainRate,10,1; },{},{} -29033,Mdef4_Bottom,MDEF+4,6,0,,0,,,,,,,,,,,,,{ bonus bMdef,4; },{},{} -29040,Ghost_Effect,Ghost Effect,6,0,,0,,,,,,,,,,,,,{ hateffect HAT_EF_C_GHOST_EFFECT,true; },{},{ hateffect HAT_EF_C_GHOST_EFFECT,false; } -29041,Twinkle_Effect,Twinkle Effect,6,0,,0,,,,,,,,,,,,,{ /* todo */ },{},{} -29046,Greed,Greed,6,0,,0,,,,,,,,,,,,,{ skill "BS_GREED",1; },{},{} -29047,Fatal0,Fatal,6,0,,0,,,,,,,,,,,,,{ bonus bCritAtkRate,3; },{},{} -29048,Expert_Archer0,Expert Archer,6,0,,0,,,,,,,,,,,,,{ bonus bLongAtkRate,3; },{},{} -29049,HP100_,HP+100,6,0,,0,,,,,,,,,,,,,{ bonus bMaxHP,100; if (BaseLevel >= 120) { bonus bMaxHPrate,2; } },{},{} -29050,SP50_,SP+50,6,0,,0,,,,,,,,,,,,,{ bonus bMaxSP,50; if (BaseLevel >= 120) { bonus bMaxSPrate,2; } },{},{} -29051,Detoxify,Detoxify,6,0,,0,,,,,,,,,,,,,{ skill "TF_DETOXIFY",1; },{},{} -29052,Recovery,Recovery,6,0,,0,,,,,,,,,,,,,{ skill "PR_STRECOVERY",1; },{},{} -29053,Skill_Delay1_Top,After Skill Delay1 Upper,6,0,,0,,,,,,,,,,,,,{ bonus bDelayrate,-1; },{},{} -29054,Skill_Delay1_Middle,After Skill Delay1 Middle,6,0,,0,,,,,,,,,,,,,{ bonus bDelayrate,-1; },{},{} -29055,Skill_Delay1_Bottom,After Skill Delay1 Lower,6,0,,0,,,,,,,,,,,,,{ bonus bDelayrate,-1; },{},{} -29056,FixedCasting05,Reduces Fixed Cast,6,0,,0,,,,,,,,,,,,,{ bonus bFixedCast,-500; },{},{} -29057,Kyrie,Kyrie,6,0,,0,,,,,,,,,,,,,{ skill "PR_KYRIE",1; },{},{} -29061,Ambition1Lv,Mettle Lv. 1,6,10,,0,,,,,,,,,,,,,{ bonus2 bAddClass,Class_All,3; bonus bHit,3; },{},{} -29062,Ambition2Lv,Mettle Lv. 2,6,10,,0,,,,,,,,,,,,,{ bonus2 bAddClass,Class_All,6; bonus bHit,6; },{},{} -29063,Ambition3Lv,Mettle Lv. 3,6,10,,0,,,,,,,,,,,,,{ bonus2 bAddClass,Class_All,9; bonus bHit,9; },{},{} -29064,Ambition4Lv,Mettle Lv. 4,6,10,,0,,,,,,,,,,,,,{ bonus2 bAddClass,Class_All,12; bonus bHit,12; },{},{} -29065,Ambition5Lv,Mettle Lv. 5,6,10,,0,,,,,,,,,,,,,{ bonus2 bAddClass,Class_All,15; bonus bHit,15; },{},{} -29066,Ambition6Lv,Mettle Lv. 6,6,10,,0,,,,,,,,,,,,,{ bonus2 bAddClass,Class_All,18; bonus bHit,18; },{},{} -29067,Ambition7Lv,Mettle Lv. 7,6,10,,0,,,,,,,,,,,,,{ bonus2 bAddClass,Class_All,21; bonus bHit,21; },{},{} -29068,Ambition8Lv,Mettle Lv. 8,6,10,,0,,,,,,,,,,,,,{ bonus2 bAddClass,Class_All,24; bonus bHit,24; },{},{} -29069,Ambition9Lv,Mettle Lv. 9,6,10,,0,,,,,,,,,,,,,{ bonus2 bAddClass,Class_All,27; bonus bHit,27; },{},{} -29070,Ambition10Lv,Mettle Lv. 10,6,10,,0,,,,,,,,,,,,,{ bonus2 bAddClass,Class_All,33; bonus bHit,30; },{},{} -29071,Tab1Lv,Magic Essence Lv. 1,6,10,,0,,,,,,,,,,,,,{ bonus bMatkRate,3; bonus bFixedCast,-100; },{},{} -29072,Tab2Lv,Magic Essence Lv. 2,6,10,,0,,,,,,,,,,,,,{ bonus bMatkRate,6; bonus bFixedCast,-200; },{},{} -29073,Tab3Lv,Magic Essence Lv. 3,6,10,,0,,,,,,,,,,,,,{ bonus bMatkRate,9; bonus bFixedCast,-300; },{},{} -29074,Tab4Lv,Magic Essence Lv. 4,6,10,,0,,,,,,,,,,,,,{ bonus bMatkRate,12; bonus bFixedCast,-400; },{},{} -29075,Tab5Lv,Magic Essence Lv. 5,6,10,,0,,,,,,,,,,,,,{ bonus bMatkRate,15; bonus bFixedCast,-500; },{},{} -29076,Tab6Lv,Magic Essence Lv. 6,6,10,,0,,,,,,,,,,,,,{ bonus bMatkRate,18; bonus bFixedCast,-600; },{},{} -29077,Tab7Lv,Magic Essence Lv. 7,6,10,,0,,,,,,,,,,,,,{ bonus bMatkRate,21; bonus bFixedCast,-700; },{},{} -29078,Tab8Lv,Magic Essence Lv. 8,6,10,,0,,,,,,,,,,,,,{ bonus bMatkRate,24; bonus bFixedCast,-800; },{},{} -29079,Tab9Lv,Magic Essence Lv. 9,6,10,,0,,,,,,,,,,,,,{ bonus bMatkRate,27; bonus bFixedCast,-900; },{},{} -29080,Tab10Lv,Magic Essence Lv. 10,6,10,,0,,,,,,,,,,,,,{ bonus bMatkRate,33; bonus bFixedCast,-1000; },{},{} -29081,Expect1Lv,Acute Lv. 1,6,10,,0,,,,,,,,,,,,,{ bonus bCritAtkRate,10; bonus bCritical,3; },{},{} -29082,Expect2Lv,Acute Lv. 2,6,10,,0,,,,,,,,,,,,,{ bonus bCritAtkRate,20; bonus bCritical,6; },{},{} -29083,Expect3Lv,Acute Lv. 3,6,10,,0,,,,,,,,,,,,,{ bonus bCritAtkRate,30; bonus bCritical,9; },{},{} -29084,Expect4Lv,Acute Lv. 4,6,10,,0,,,,,,,,,,,,,{ bonus bCritAtkRate,40; bonus bCritical,12; },{},{} -29085,Expect5Lv,Acute Lv. 5,6,10,,0,,,,,,,,,,,,,{ bonus bCritAtkRate,50; bonus bCritical,15; },{},{} -29086,Expect6Lv,Acute Lv. 6,6,10,,0,,,,,,,,,,,,,{ bonus bCritAtkRate,60; bonus bCritical,18; },{},{} -29087,Expect7Lv,Acute Lv. 7,6,10,,0,,,,,,,,,,,,,{ bonus bCritAtkRate,70; bonus bCritical,21; },{},{} -29088,Expect8Lv,Acute Lv. 8,6,10,,0,,,,,,,,,,,,,{ bonus bCritAtkRate,80; bonus bCritical,24; },{},{} -29089,Expect9Lv,Acute Lv. 9,6,10,,0,,,,,,,,,,,,,{ bonus bCritAtkRate,90; bonus bCritical,27; },{},{} -29090,Expect10Lv,Acute Lv. 10,6,10,,0,,,,,,,,,,,,,{ bonus bCritAtkRate,110; bonus bCritical,30; },{},{} -29091,ArchLine1Lv,Master Archer Lv. 1,6,10,,0,,,,,,,,,,,,,{ bonus bLongAtkRate,4; bonus bAspdRate,1; },{},{} -29092,ArchLine2Lv,Master Archer Lv. 2,6,10,,0,,,,,,,,,,,,,{ bonus bLongAtkRate,8; bonus bAspdRate,2; },{},{} -29093,ArchLine3Lv,Master Archer Lv. 3,6,10,,0,,,,,,,,,,,,,{ bonus bLongAtkRate,12; bonus bAspdRate,3; },{},{} -29094,ArchLine4Lv,Master Archer Lv. 4,6,10,,0,,,,,,,,,,,,,{ bonus bLongAtkRate,16; bonus bAspdRate,4; },{},{} -29095,ArchLine5Lv,Master Archer Lv. 5,6,10,,0,,,,,,,,,,,,,{ bonus bLongAtkRate,20; bonus bAspdRate,5; },{},{} -29096,ArchLine6Lv,Master Archer Lv. 6,6,10,,0,,,,,,,,,,,,,{ bonus bLongAtkRate,24; bonus bAspdRate,6; },{},{} -29097,ArchLine7Lv,Master Archer Lv. 7,6,10,,0,,,,,,,,,,,,,{ bonus bLongAtkRate,28; bonus bAspdRate,7; },{},{} -29098,ArchLine8Lv,Master Archer Lv. 8,6,10,,0,,,,,,,,,,,,,{ bonus bLongAtkRate,32; bonus bAspdRate,8; },{},{} -29099,ArchLine9Lv,Master Archer Lv. 9,6,10,,0,,,,,,,,,,,,,{ bonus bLongAtkRate,36; bonus bAspdRate,9; },{},{} -29100,ArchLine10Lv,Master Archer Lv. 10,6,10,,0,,,,,,,,,,,,,{ bonus bLongAtkRate,44; bonus bAspdRate,10; },{},{} -29101,Steel1Lv,Adamantine Lv. 1,6,10,,0,,,,,,,,,,,,,{ bonus bMaxHPrate,5; bonus bDef,15; },{},{} -29102,Steel2Lv,Adamantine Lv. 2,6,10,,0,,,,,,,,,,,,,{ bonus bMaxHPrate,10; bonus bDef,30; },{},{} -29103,Steel3Lv,Adamantine Lv. 3,6,10,,0,,,,,,,,,,,,,{ bonus bMaxHPrate,15; bonus bDef,45; },{},{} -29104,Steel4Lv,Adamantine Lv. 4,6,10,,0,,,,,,,,,,,,,{ bonus bMaxHPrate,20; bonus bDef,60; },{},{} -29105,Steel5Lv,Adamantine Lv. 5,6,10,,0,,,,,,,,,,,,,{ bonus bMaxHPrate,25; bonus bDef,75; },{},{} -29106,Steel6Lv,Adamantine Lv. 6,6,10,,0,,,,,,,,,,,,,{ bonus bMaxHPrate,30; bonus bDef,90; },{},{} -29107,Steel7Lv,Adamantine Lv. 7,6,10,,0,,,,,,,,,,,,,{ bonus bMaxHPrate,35; bonus bDef,105; },{},{} -29108,Steel8Lv,Adamantine Lv. 8,6,10,,0,,,,,,,,,,,,,{ bonus bMaxHPrate,40; bonus bDef,120; },{},{} -29109,Steel9Lv,Adamantine Lv. 9,6,10,,0,,,,,,,,,,,,,{ bonus bMaxHPrate,45; bonus bDef,135; },{},{} -29110,Steel10Lv,Adamantine Lv. 10,6,10,,0,,,,,,,,,,,,,{ bonus bMaxHPrate,55; bonus bDef,150; },{},{} -29111,Mercy1Lv,Affection Lv. 1,6,10,,0,,,,,,,,,,,,,{ bonus bHealPower,5; bonus bMdef,3; },{},{} -29112,Mercy2Lv,Affection Lv. 2,6,10,,0,,,,,,,,,,,,,{ bonus bHealPower,10; bonus bMdef,6; },{},{} -29113,Mercy3Lv,Affection Lv. 3,6,10,,0,,,,,,,,,,,,,{ bonus bHealPower,15; bonus bMdef,9; },{},{} -29114,Mercy4Lv,Affection Lv. 4,6,10,,0,,,,,,,,,,,,,{ bonus bHealPower,20; bonus bMdef,12; },{},{} -29115,Mercy5Lv,Affection Lv. 5,6,10,,0,,,,,,,,,,,,,{ bonus bHealPower,25; bonus bMdef,15; },{},{} -29116,Mercy6Lv,Affection Lv. 6,6,10,,0,,,,,,,,,,,,,{ bonus bHealPower,30; bonus bMdef,18; },{},{} -29117,Mercy7Lv,Affection Lv. 7,6,10,,0,,,,,,,,,,,,,{ bonus bHealPower,35; bonus bMdef,21; },{},{} -29118,Mercy8Lv,Affection Lv. 8,6,10,,0,,,,,,,,,,,,,{ bonus bHealPower,40; bonus bMdef,24; },{},{} -29119,Mercy9Lv,Affection Lv. 9,6,10,,0,,,,,,,,,,,,,{ bonus bHealPower,45; bonus bMdef,27; },{},{} -29120,Mercy10Lv,Affection Lv. 10,6,10,,0,,,,,,,,,,,,,{ bonus bHealPower,55; bonus bMdef,30; },{},{} -29121,Goddess_of_Justice_A,Goddess of Justice A,6,10,,0,,,,,,,,,,,,,{ bonus bAtk,20; bonus bHit,2; bonus bMaxHP,300; },{},{} -29122,Goddess_of_Justice_S,Goddess of Justice S,6,10,,0,,,,,,,,,,,,,{ bonus bAtk,40; bonus bHit,4; bonus bMaxHP,600; },{},{} -29123,Goddess_of_Mercy_A,Goddess of Mercy A,6,10,,0,,,,,,,,,,,,,{ bonus bMatk,20; bonus bHealPower,4; bonus bMaxSP,20; },{},{} -29124,Goddess_of_Mercy_S,Goddess of Mercy S,6,10,,0,,,,,,,,,,,,,{ bonus bMatk,40; bonus bHealPower,8; bonus bMaxSP,40; },{},{} -29125,Goddess_of_Insight_A,Goddess of Insight A,6,10,,0,,,,,,,,,,,,,{ bonus bLongAtkRate,5; bonus bCritical,5; },{},{} -29126,Goddess_of_Insight_S,Goddess of Insight S,6,10,,0,,,,,,,,,,,,,{ bonus bLongAtkRate,10; bonus bCritical,10; },{},{} -29142,Electric_Effect,Electric Effect,6,0,,0,,,,,,,,,,,,,{ hateffect HAT_EF_ELECTRIC,true; },{},{ hateffect HAT_EF_ELECTRIC,false; } -29143,Green_Floor_Effect,Green Flare Effect,6,0,,0,,,,,,,,,,,,,{ hateffect HAT_EF_GREEN_FLOOR,true; },{},{ hateffect HAT_EF_GREEN_FLOOR,false; } -29144,Shrink_Effect,Shrink Effect,6,0,,0,,,,,,,,,,,,,{ hateffect HAT_EF_SHRINK,true; },{},{ hateffect HAT_EF_SHRINK,false; } -29145,EXP2MIDDLE,Experience+2%,6,0,,0,,,,,,,,,,,,,{ bonus2 bExpAddRace,RC_All,2; },{},{} -29146,Identify,Identify,6,0,,0,,,,,,,,,,,,,{ skill "MC_IDENTIFY",1; },{},{} -29147,Resurrection,Resurrection,6,10,,0,,,,,,,,,,,,,{ skill "ALL_RESURRECTION",1; },{},{} -29148,Leo_Stone,Leo Stone,6,10,,0,,,,,0xFFFFFFFF,63,2,64,,,,,{ bonus bStr,1; },{},{} -29149,Pisces_Stone,Pisces Stone,6,10,,0,,,,,0xFFFFFFFF,63,2,64,,,,,{ bonus bInt,1; },{},{} -29150,Capricorn_Stone,Capricorn Stone,6,10,,0,,,,,0xFFFFFFFF,63,2,64,,,,,{ bonus bAgi,1; },{},{} -29151,Aquarius_Stone,Aquarius Stone,6,10,,0,,,,,0xFFFFFFFF,63,2,64,,,,,{ bonus bVit,1; },{},{} -29152,Scorpio_Stone,Scorpio Stone,6,10,,0,,,,,0xFFFFFFFF,63,2,64,,,,,{ bonus bDex,1; },{},{} -29153,Taurus_Stone,Taurus Stone,6,10,,0,,,,,0xFFFFFFFF,63,2,64,,,,,{ bonus bLuk,1; },{},{} -29154,FixedCasting03,Minor Fixed Cast Reduction,6,0,,0,,,,,,,,,,,,,{ bonus bFixedCast,-300; },{},{} -29155,LexAeterna,Lex Aeterna,6,0,,0,,,,,,,,,,,,,{ bonus3 bAutoSpell,"PR_LEXAETERNA",1,10; },{},{} -29156,Casting_Top,Variable Cast Reduction Upper,6,0,,0,,,,,,,,,,,,,{ bonus bVariableCastrate,-3; },{},{} -29157,Casting_Middle,Variable Cast Reduction Middle,6,0,,0,,,,,,,,,,,,,{ bonus bVariableCastrate,-3; },{},{} -29158,Casting_Bottom,Variable Cast Reduction Lower,6,0,,0,,,,,,,,,,,,,{ bonus bVariableCastrate,-3; },{},{} -29159,EXP2TOP,Experience + 2%,6,0,,0,,,,,,,,,,,,,{ bonus2 bExpAddRace,RC_All,2; },{},{} -29160,BlueAura_Effect,Blue Aura Effect,6,0,,0,,,,,,,,,,,,,{ /* todo */ },{},{} -29161,Pink_Glow_Effect,Pink Glow Effect,6,0,,0,,,,,,,,,,,,,{ /* todo */ },{},{} -29162,Shadow_Effect,Shadow Effect,6,0,,0,,,,,,,,,,,,,{ /* todo */ },{},{} -29166,A-Tolerance,A-Tolerance,6,0,,0,,,,,,,,,,,,,{ bonus2 bSubClass,Class_All,1; .@r = getrefine(); bonus2 bSubRace,RC_DemiHuman,.@r/3; bonus2 bSubRace,RC_Formless,.@r/3; },{},{} -29167,A-Hit,A-Hit,6,0,,0,,,,,,,,,,,,,{ bonus bHit,20; .@r = getrefine(); if(.@r>=7){ bonus bHit,10; } if(.@r>=8){ bonus bHit,10; } if(.@r>=9){ bonus bHit,10; } },{},{} -29168,A-Flee,A-Flee,6,0,,0,,,,,,,,,,,,,{ bonus bFlee,20; .@r = getrefine(); if(.@r>=7){ bonus bFlee,10; } if(.@r>=8){ bonus bFlee,10; } if(.@r>=9){ bonus bFlee,10; } },{},{} -29169,A-Mdef,A-Mdef,6,0,,0,,,,,,,,,,,,,{ bonus bMdef,2; .@r = getrefine(); if(.@r>=6){ bonus bMdef,4; } if(.@r>=8){ bonus bMdef,8; } },{},{} -29170,S-Atk,S-Atk,6,0,,0,,,,,,,,,,,,,{ bonus bBaseAtk,50; .@r = getrefine(); .@c = 100; .@t = 3000; if(.@r>=8){ .@t += 1000; } if(.@r>=9){ .@c += 100; .@t += 1000; } autobonus2 "{ bonus bBaseAtk,150; }",.@c,.@t; },{},{} -29171,S-Matk,S-Matk,6,0,,0,,,,,,,,,,,,,{ bonus bMatk,100; .@r = getrefine(); .@c = 100; .@t = 3000; if(.@r>=8){ .@t += 1000; } if(.@r>=9){ .@c += 100; .@t += 1000; } autobonus2 "{ bonus bMatk,150; }",.@c,.@t,BF_MAGIC; },{},{} -29172,S-Avoid,S-Avoid,6,0,,0,,,,,,,,,,,,,{ bonus bFlee2,5; .@r = getrefine(); .@c = 100; .@t = 3000; if(.@r>=8){ .@t += 1000; } if(.@r>=9){ .@c += 100; .@t += 1000; } autobonus2 "{ bonus bFlee2,100; }",.@c,.@t; },{},{} -29173,S-MaxHP,S-MaxHP,6,0,,0,,,,,,,,,,,,,{ bonus bMaxHP,2500; .@r = getrefine(); .@c = 100; .@t = 3000; if(.@r>=8){ .@t += 1000; } if(.@r>=9){ .@c += 100; .@t += 1000; } autobonus2 "{ bonus bMaxHP,7500; }",.@c,.@t; },{},{} -29174,S-Quick,S-Quick,6,0,,0,,,,,,,,,,,,,{ bonus bVariableCastrate,-10; .@r = getrefine(); .@c = 100; .@t = 3000; if(.@r>=8){ .@t += 1000; } if(.@r>=9){ .@c += 100; .@t += 1000; } autobonus2 "{ bonus bVariableCastrate,-100; bonus bDelayrate,-100; }",.@c,.@t,BF_MAGIC; },{},{} -29175,S-Cri,S-Cri,6,0,,0,,,,,,,,,,,,,{ bonus bCritical,10; .@r = getrefine(); .@c = 100; .@t = 3000; if(.@r>=8){ .@t += 1000; } if(.@r>=9){ .@c += 100; .@t += 1000; } autobonus2 "{ bonus bCritical,100; }",.@c,.@t; },{},{} -29176,Tenji,Tenji,6,10,,0,,,,,0xFFFFFFFF,63,2,64,,,,,{ bonus2 bAddRace,RC_Brute,15; bonus2 bAddRace,RC_Plant,15; bonus2 bMagicAddRace,RC_Brute,15; bonus2 bMagicAddRace,RC_Plant,15; bonus2 bAddEle,Ele_Wind,15; bonus2 bAddEle,Ele_Earth,15; bonus2 bMagicAddEle,Ele_Wind,15; bonus2 bMagicAddEle,Ele_Earth,15; autobonus2 "{ bonus bVariableCastrate,-70;bonus bDelayrate,-70; bonus bIgnoreDefRace,RC_All; bonus bIgnoreMDefRace,RC_All; }",1,10000; },{},{} -29224,WhiteBody_Effect,White Body Effect,6,0,,0,,,,,,,,,,,,,{ hateffect HAT_EF_WHITEBODY,true; },{},{ hateffect HAT_EF_WHITEBODY,false; } -29225,WaterField_Effect,Water Field Effect,6,0,,0,,,,,,,,,,,,,{ hateffect HAT_EF_WATER_BELOW2,true; },{},{ hateffect HAT_EF_WATER_BELOW2,false; } -29226,ExplodingWave_Effect,Crimson Wave Effect,6,0,,0,,,,,,,,,,,,,{ /* todo */ },{},{} -29227,Heal,Heal,6,0,,0,,,,,,,,,,,,,{ skill "AL_HEAL",1; },{},{} -29228,Steal,Steal,6,0,,0,,,,,,,,,,,,,{ skill "TF_STEAL",1; },{},{} -29229,Teleport,Teleport,6,0,,0,,,,,,,,,,,,,{ skill "AL_TELEPORT",1; },{},{} -29310,Racing_RK_1,Racing(Rune Knight) 1Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29311,Racing_RK_2,Racing(Rune Knight) 2Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29312,Racing_RK_3,Racing(Rune Knight) 3Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29313,Racing_RG_1,Racing(Royal Guard) 1Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29314,Racing_RG_2,Racing(Royal Guard) 2Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29315,Racing_RG_3,Racing(Royal Guard) 3Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29316,Racing_MC_1,Racing(Mechanic) 1Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29317,Racing_MC_2,Racing(Mechanic) 2Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29318,Racing_MC_3,Racing(Mechanic) 3Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29319,Racing_GN_1,Racing(Geneticist) 1Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29320,Racing_GN_2,Racing(Geneticist) 2Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29321,Racing_GN_3,Racing(Geneticist) 3Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29322,Racing_GC_1,Racing(Guillotine Cross) 1Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29323,Racing_GC_2,Racing(Guillotine Cross) 2Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29324,Racing_GC_3,Racing(Guillotine Cross) 3Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29325,Racing_SC_1,Racing(Shadow Chaser) 1Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29326,Racing_SC_2,Racing(Shadow Chaser) 2Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29327,Racing_SC_3,Racing(Shadow Chaser) 3Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29328,Racing_WL_1,Racing(Warlock) 1Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29329,Racing_WL_2,Racing(Warlock) 2Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29330,Racing_WL_3,Racing(Warlock) 3Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29331,Racing_SO_1,Racing(Sorcerer) 1Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29332,Racing_SO_2,Racing(Sorcerer) 2Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29333,Racing_SO_3,Racing(Sorcerer) 3Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29334,Racing_AB_1,Racing(Archbishop) 1Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29335,Racing_AB_2,Racing(Archbishop) 2Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29336,Racing_AB_3,Racing(Archbishop) 3Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29337,Racing_SR_1,Racing(Sura) 1Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29338,Racing_SR_2,Racing(Sura) 2Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29339,Racing_SR_3,Racing(Sura) 3Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29340,Racing_RA_1,Racing(Ranger) 1Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29341,Racing_RA_2,Racing(Ranger) 2Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29342,Racing_RA_3,Racing(Ranger) 3Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29343,Racing_WM_1,Racing(Wanderers & Minstrel) 1Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29344,Racing_WM_2,Racing(Wanderers & Minstrel) 2Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29345,Racing_WM_3,Racing(Wanderers & Minstrel) 3Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29346,Racing_GS_1,Racing(Gunslinger) 1Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29347,Racing_GS_2,Racing(Gunslinger) 2Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29348,Racing_GS_3,Racing(Gunslinger) 3Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29349,Racing_NJ_1,Racing(Ninja)1Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29350,Racing_NJ_2,Racing(Ninja)2Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29351,Racing_NJ_3,Racing(Ninja)3Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29352,Racing_SN_1,Racing(Super Novice) 1Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29353,Racing_SN_2,Racing(Super Novice) 2Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29354,Racing_SN_3,Racing(Super Novice) 3Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29355,Racing_SU_1,Racing(Summoner) 1Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29356,Racing_SU_2,Racing(Summoner) 2Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29357,Racing_SU_3,Racing(Summoner) 3Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29358,Casting_Robe,Variable Casting Garment,6,0,,0,,,,,,,,,,,,,{ bonus bVariableCastrate,-10; },{},{} -29359,Fatal_Top,Fatal (Upper),6,0,,0,,,,,,,,,,,,,{ bonus bCritAtkRate,3; },{},{} -29360,Fatal_Bottom,Fatal (Lower),6,0,,0,,,,,,,,,,,,,{ bonus bCritAtkRate,3; },{},{} -29361,Fatal_Robe,Fatal (Garment),6,0,,0,,,,,,,,,,,,,{ bonus bCritAtkRate,20; },{},{} -29362,DoubleAttack,Double Attack,6,0,,0,,,,,,,,,,,,,{ skill "TF_DOUBLE",3; bonus bDoubleRate,15; },{},{} -29438,Z-Knockback,Z-Knockback,6,0,,0,,,,,,,,,,,,,{ bonus bNoKnockback; },{},{} -29439,Z-Immortal,Z-Immortal,6,0,,0,,,,,,,,,,,,,{ bonus bUnbreakableHelm; /* fix me */ },{},{} -29440,Z-Killgain,Z-Killgain,6,0,,0,,,,,,,,,,,,,{ bonus bSPGainValue,2; .@r = getrefine(); if(.@r>=7){ bonus bSPGainValue,3; } if(.@r>=8){ bonus bSPGainValue,5; } if(.@r>=9){ bonus bSPGainValue,10; } },{},{} -29441,Z-Reincarnation,Z-Reincarnation,6,0,,0,,,,,,,,,,,,,{ bonus bRestartFullRecover; },{},{} -29442,Z-NoDispell,Z-NoDispell,6,0,,0,,,,,,,,,,,,,{ bonus bNoCastCancel2; },{},{} -29443,Z-Clairvoyance,Z-Clairvoyance,6,0,,0,,,,,,,,,,,,,{ bonus bIntravision; },{},{} -29444,Z-Cast_Fixed,Z-Cast Fixed,6,0,,0,,,,,,,,,,,,,{ bonus bFixedCastrate,-50; },{},{} -29579,Racing_SG_1,Racing (Star Gladiator) 1Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29580,Racing_SG_2,Racing (Star Gladiator) 2Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29581,Racing_SG_3,Racing (Star Gladiator) 3Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29582,Racing_SL_1,Racing (Soul Linker) 1Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29583,Racing_SL_2,Racing (Soul Linker) 2Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29584,Racing_SL_3,Racing (Soul Linker) 3Lv,6,20,,0,,,,,,,,,,,,,{},{},{} -29594,Seyren_Memory,Seyren's Memory,6,20,,0,,,,,,,,,,,,,{},{},{} -29595,Howard_Memory,Howard's Memory,6,20,,0,,,,,,,,,,,,,{},{},{} -29596,Eremes_Memory,Eremes's Memory,6,20,,0,,,,,,,,,,,,,{},{},{} -29598,Catherine_Memory,Catherine's Memory,6,20,,0,,,,,,,,,,,,,{},{},{} -29599,Margaretha_Memory,Margaretha's Memory,6,20,,0,,,,,,,,,,,,,{},{},{} -29600,Cecil_Memory,Cecil's Memory,6,20,,0,,,,,,,,,,,,,{},{},{} -29601,Randel_Memory,Randel's Memory,6,20,,0,,,,,,,,,,,,,{},{},{} -29602,Flamel_Memory,Flamel's Memory,6,20,,0,,,,,,,,,,,,,{},{},{} -29603,Gertie_Memory,Gertie's Memory,6,20,,0,,,,,,,,,,,,,{},{},{} -29604,Celia_Memory,Celia's Memory,6,20,,0,,,,,,,,,,,,,{},{},{} -29605,Chen_Memory,Chen's Memory,6,20,,0,,,,,,,,,,,,,{},{},{} -29606,Trentini_Memory,Trentini's Memory,6,20,,0,,,,,,,,,,,,,{},{},{} -29607,Alphoccio_Memory,Alphoccio's Memory,6,20,,0,,,,,,,,,,,,,{},{},{} -//=================================================================== -// New Cards -//=================================================================== -31006,LoVA_Hades_Card,LoVA Hades Card,6,20,,10,,,,,,,,16,,,,,{ bonus2 bSubRace,RC_Undead,10; },{},{} -31007,LoVA_Realization_Hades_Card,LoVA Realization Hades Card,6,20,,10,,,,,,,,16,,,,,{ bonus bDefEle,Ele_Undead; bonus2 bSubRace,RC_Undead,10; },{},{} -31008,LoVA_Lulu_Card,LoVA Lulu Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bHPRegenRate,BaseLevel,10000; if(getrefine()>=7) { bonus bAtk,6*(readparam(bStr)/60); bonus bMaxHPrate,readparam(bStr)/60; } },{},{} -31009,LoVA_Realization_Lulu_Card,LoVA Realization Lulu Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bHPRegenRate,BaseLevel,10000; if(getrefine()>=7) { bonus bAtk,6*(readparam(bStr)/20); bonus bMaxHPrate,readparam(bStr)/20; } },{},{} -31010,LoVA_Kima_Card,LoVA Kima Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bSPRegenRate,BaseLevel/6,10000; if(getrefine()>=7) { bonus bMatk,6*(readparam(bInt)/30); bonus bMaxSPrate,readparam(bInt)/30; } },{},{} -31011,LoVA_Realization_Kima_Card,LoVA Realization Kima Card,6,20,,10,,,,,,,,64,,,,,{ bonus2 bSPRegenRate,BaseLevel/2,10000; if(getrefine()>=7) { bonus bMatk,6*(readparam(bInt)/10); bonus bMaxSPrate,readparam(bInt)/10; } },{},{} -31012,LoVA_Bahamut_Card,LoVA Bahamut Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSkillAtk,"RK_DRAGONBREATH",5; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",5; if(getrefine()>=7) { bonus bDelayrate,-1; } },{},{} -31013,LoVA_Realization_Bahamut_Card,LoVA Realization Bahamut Card,6,20,,10,,,,,,,,2,,,,,{ bonus2 bSkillAtk,"RK_DRAGONBREATH",15; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",15; if(getrefine()>=7) { bonus bDelayrate,-3; } },{},{} -31014,LoVA_Ragnarok_Card,LoVA Ragnarok Card,6,20,,10,,,,,,,,4,,,,,{ bonus bMdef,7; bonus bMaxHPrate,6; if(getrefine()>=7) { bonus2 bSkillAtk,"HW_GRAVITATION",9; } },{},{} -31015,LoVA_Realization_Ragnarok_Card,LoVA Realization Ragnarok Card,6,20,,10,,,,,,,,4,,,,,{ bonus bMdef,10; bonus bMaxHPrate,10; if(getrefine()>=7) { bonus2 bSkillAtk,"HW_GRAVITATION",769; } },{},{} -31016,Decorated_Evil_Tree_Card,Decorated Evil Tree Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxHP,1000; bonus bMaxSP,150; bonus bFlee,-25; },{},{} -31017,Vicious_Cookie_Card,Vicious Cookie Card,6,20,,10,,,,,,,,64,,,,,{ .@r = getrefine(); bonus2 bAddClass,Class_All,1+.@r; bonus bMatkRate,1+.@r; bonus bMaxHPrate,-(2+(.@r*2)); },{},{} -31018,Evil_Dwelling_Box_Card,Evil Dwelling Box Card,6,20,,10,,,,,,,,2,,,,,{ bonus bMaxHP,-1225; bonus3 bAddEff,Eff_Curse,5000,ATF_MAGIC; },{},{} -31019,Creepy_Demon_Card,Creepy Demon Card,6,20,,10,,,,,,,,136,,,,,{ bonus bMaxHPrate,-13; bonus3 bAddEffWhenHit,Eff_Curse,4000,ATF_MAGIC; },{},{} -31020,Malicious_Baby_Ghost_Card,Malicious Baby Ghost Card,6,20,,10,,,,,,,,136,,,,,{ bonus bMaxHPrate,-13; bonus3 bAddEffWhenHit,Eff_Curse,4000,ATF_WEAPON; },{},{} -31021,Dancing_Marionette_Card,Dancing Marionette Card,6,20,,10,,,,,,,,2,,,,,{ bonus bAspdRate,10; bonus2 bAddClass,Class_All,-3; },{},{} -31022,Abandoned_Teddy_Bear_Card,Abandoned Teddy Bear Card,6,20,,10,,,,,,,,64,,,,,{ bonus bMaxSPRate,20; bonus2 bAddEff2,Eff_Curse,20; },{},{} -31023,Celine_Kimi_Card,Celine Kimi Card,6,20,,10,,,,,,,,2,,,,,{ bonus bMatkRate,10; bonus5 bAutoSpell,"NPC_CRITICALWOUND",3,5+(10*(getrefine()/3)),BF_MAGIC,1; },{},{} -//=================================================================== -// More Costumes -//=================================================================== -31027,C_Pretty_Bear,Costume Pretty Bear,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1480,{},{},{} -31028,C_Black_Cat_Hood,Costume Black Cat Hood,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1481,{},{},{} -31029,C_Pig_Nose,Costume Pig Nose,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1482,{},{},{} -31030,C_Tiger_Face,Costume Tiger Face,4,0,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,0,483,{},{},{} -31031,C_Tare_Pope_Casual,Costume Drooping Pope Casual,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1483,{},{},{} -31032,C_Tare_Luwmin,Costume: Sailing Lumin,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1484,{},{},{} -31033,C_BelieversCap,Costume Believer's Mask,4,0,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,0,1485,{},{},{} -31034,C_Pirates_Hood,Costume Pirates Hood,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,592,{},{},{} -31035,C_Bankruptcy_Of_Heart,Costume Bankruptcy of Heart,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,107,{},{},{} -31036,C_Satto_Hat,Costume Used Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,227,{},{},{} -31037,C_Beret,Costume Beret,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,226,{},{},{} -31038,C_Cheks_Bandana,Costume Cheks Bandana,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1174,{},{},{} -31039,C_Crown_of_Old_King_Red,Costume Crown of Old King Red,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1491,{},{},{} -31040,C_Magical_Feather,Costume Magical Feather,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1279,{ hateffect(HAT_EF_MAGICAL_FEATHER,true); },{},{ hateffect(HAT_EF_MAGICAL_FEATHER,false); } -31041,C_Cat_Lace_Hairband,Costume Cat Lace Hairband,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,816,{},{},{} -31042,C_Survival_Circlet,Costume Survival Circlet,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1220,{},{},{} -31043,C_Ribbon_White,Costume Ribbon White,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,248,{},{},{} -31044,C_Drooping_Kitty_Pink,Costume Drooping Kitty Pink,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,276,{},{},{} -31045,C_Blue_Rear_Ribbon,Costume Blue Rear Ribbon,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1492,{},{},{} -31046,C_White_Rose_Princess,Costume White Rose Princess,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1493,{},{},{} -31047,C_First_Love_Cheek,Costume First Love Cheek,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1494,{},{},{} -31048,C_White_Lily_Black_Ribbon,Costume White Lily Black Ribbon,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1495,{},{},{} -31049,C_Marin_Hat,Costume Marin Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,948,{},{},{} -31050,C_Golden_Poring_Hat,Costume Golden Poring Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1236,{},{},{} -31051,C_Poring_Sun_Visor,Costume Poring Sun Visor,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1496,{},{},{} -31052,C_Alchemist_Mask,Costume Alchemist Mask,4,0,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,0,1497,{},{},{} -31053,C_Drooping_Eddga,Costume Drooping Eddga,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,495,{},{},{} -31054,C_Sting_Hat,Costume Sting Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,504,{},{},{} -31055,C_Poring_Soap_Pipe,Costume Poring Soap Pipe,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1499,{},{},{} -31056,C_Furious_Wave,Costume Furious Wave,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,0,{ hateffect(HAT_EF_DOUBLEGUMGANG,true); /* Need to confirm this */ },{},{ hateffect(HAT_EF_DOUBLEGUMGANG,false); } -31057,C_Eremes_Scarf_Black,Costume: Eremes' Scarf (Black),4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1501,{},{},{} -31058,C_Gelato_Hat,Costume Gelato Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,777,{},{},{} -31059,C_Sailor_Hat,Costume Sailor Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,798,{},{},{} -31060,C_Starfish_Headband,Costume Starfish Headband,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,793,{},{},{} -31061,C_Nipper_Hairpin,Costume Nipper Hairpin,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,470,{},{},{} -31062,C_Eleanor_Wig,Costume Eleanor Wig,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1502,{},{},{} -31063,C_Hair_Bun_BU,Costume Hair in a Bun(Blue),4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1503,{},{},{} -31064,C_Hair_Bun_RD,Costume Hair in a Bun(Red),4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1504,{},{},{} -31065,C_Hair_Bun_YL,Costume Hair in a Bun(Yellow),4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1505,{},{},{} -31066,C_Hair_Bun_GN,Costume Hair in a Bun(Green),4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1506,{},{},{} -31067,C_Hair_Bun_BL,Costume Hair in a Bun(Black),4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1507,{},{},{} -31068,C_Hair_Bun_WH,Costume Hair in a Bun(White),4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1508,{},{},{} -31069,C_Hair_Bun_OM,Costume Hair in a Bun(Brown),4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1509,{},{},{} -31070,C_Hair_Bun_PP,Costume Hair in a Bun(Purple),4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1510,{},{},{} -31071,C_Roll_Twin_BU,Costume Roll Twin(Blue),4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1511,{},{},{} -31072,C_Roll_Twin_RD,Costume Roll Twin(Red),4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1512,{},{},{} -31073,C_Roll_Twin_YL,Costume Roll Twin(Yellow),4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1513,{},{},{} -31074,C_Roll_Twin_GN,Costume Roll Twin(Green),4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1514,{},{},{} -31075,C_Roll_Twin_BL,Costume Roll Twin(Black),4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1515,{},{},{} -31076,C_Roll_Twin_WH,Costume Roll Twin(White),4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1516,{},{},{} -31077,C_Roll_Twin_OM,Costume Roll Twin(Brown),4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1517,{},{},{} -31078,C_Roll_Twin_PP,Costume Roll Twin(Purple),4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1518,{},{},{} -31079,C_Long_Pony_BU,Costume Long Pony(Blue),4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1519,{},{},{} -31080,C_Long_Pony_RD,Costume Long Pony(Red),4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1520,{},{},{} -31081,C_Long_Pony_YL,Costume Long Pony(Yellow),4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1521,{},{},{} -31082,C_Long_Pony_GN,Costume Long Pony(Green),4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1522,{},{},{} -31083,C_Long_Pony_BL,Costume Long Pony(Black),4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1523,{},{},{} -31084,C_Long_Pony_WH,Costume Long Pony(White),4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1524,{},{},{} -31085,C_Long_Pony_OM,Costume Long Pony(Brown),4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1525,{},{},{} -31086,C_Long_Pony_PP,Costume Long Pony(Purple),4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1526,{},{},{} -31087,C_Dwarf_Beard,Costume Dwarf Beard,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1349,{},{},{} -31088,C_Mad_Hatter,Costume Mad Hatter,4,0,,0,,,,0,0xFFFFFFFF,63,2,5120,,1,0,1421,{},{},{} -31089,C_Exploding_Crimson_Flame,Costume Exploding Crimson Flame,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1500,{ hateffect(HAT_EF_BAKURETSU_HADOU,true); /* Need to confirm this */ },{},{ hateffect(HAT_EF_BAKURETSU_HADOU,false); } -31090,C_Angelring_Hat,Costume Angelring Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,348,{},{},{} -31091,C_Show_Me_The_Zeny,Costume Show Me The Zeny,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1528,{ hateffect(HAT_EF_GOLD_SHOWER,true); },{},{ hateffect(HAT_EF_GOLD_SHOWER,false); } -31092,C_Rabbit_Ribbon_Hat,Costume Bunny Ribbon Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,845,{},{},{} -31093,C_Under_Lamp,Costume Under Lamp,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1531,{},{},{} -31094,C_Dice_Hat,Costume Dice Hairband,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,494,{},{},{} -31095,C_JP_EV01,Costume Mythical Baphomet Horns,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1532,{},{},{} -31096,C_JP_EV02,Costume Dog Ears of Bau Alma,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1533,{},{},{} -31097,C_JP_EV03,Costume Bunny Ears of Minnie Doe Alma,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1534,{},{},{} -31098,C_JP_EV04,Costume Fox Ears of Tamamo Loa,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1535,{},{},{} -31099,C_JP_EV05,Costume Headdress of Ontama Aria,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1536,{},{},{} -31100,C_JP_EV06,Costume Hat of Dumpty Alma,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1537,{},{},{} -31101,C_JP_EV07,Costume Taini Hat Blue,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1538,{},{},{} -31102,C_JP_EV08,Costume Taini Hat Orange,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1539,{},{},{} -31103,C_JP_EV09,Costume Taini Hat Green,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1540,{},{},{} -31104,C_Taini_Hat,Costume Taini Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,722,{},{},{} -31105,C_RO_Celebration_Hat,Costume RO Celebration Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1541,{},{},{} -31106,C_Eyepatch_of_Peace,Costume Eyepatch of Peace,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,697,{},{},{} -31107,C_Eyepatch_of_Prosperity,Costume Eyepatch of Prosperity,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,698,{},{},{} -31113,C_Doctor_Headband,Costume Doctor headband,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,60,{},{},{} -31114,C_Theater_Prop,Costume Theater Prop,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,80,{},{},{} -31117,C_Hoplite_Helmet,Costume Hoplite Helmet,4,0,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,0,660,{},{},{} -31118,C_Assassin_Skull_Mask,Costume Scratch Mask,4,0,,0,,,,0,0xFFFFFFFF,63,2,6144,,1,0,984,{},{},{} -31119,C_Blue_Magicianhat,Costume Magician Hat Blue,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,285,{},{},{} -31120,C_Vampire_Familiar,Costume Vampire Familiar,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1548,{},{},{} -31121,C_Stall_Of_Bat,Costume Stall Of Bat,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1549,{},{},{} -31122,C_Bloody_Stop_Bandage,Costume Bloody Stop Bandage,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1550,{},{},{} -31123,C_Ghostring_Tall_Hat,Costume Ghostring Tall Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1551,{},{},{} -31124,C_Ribbon_Chef_Hat,Costume Ribbon Chief Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,785,{},{},{} -31125,C_QueenAnzRevenge,Costume Queen Anne's Revenge,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1360,{},{},{} -31126,C_Nestea_Hat,Costume Nestea Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,756,{},{},{} -31127,C_Flag_Cap,Costume Flag Cap,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,482,{},{},{} -31128,C_Bride_Mask,Costume Bride Mask,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,223,{},{},{} -31129,C_Munchs_Scream,Costume Scratch Mask,4,0,,0,,,,0,0xFFFFFFFF,63,2,6144,,1,0,75,{},{},{} -31130,C_Indian_Hairband,Costume Indian Hairband,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,96,{},{},{} -31131,C_Monk_Hat,Costume Monk Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,35,{},{},{} -31132,C_Christmas_Wreath,Costume Christmas Wreath,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1554,{},{},{} -31133,C_Gambler_Seal,Costume Gambler Seal,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1202,{},{},{} -31134,C_Happy_Parrot_J,Costume Talkactive Parrot,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1116,{},{},{} -31135,C_Mini_Crown1,Costume Luxury Mini Crown,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,707,{},{},{} -31136,C_Clock_Casket,Costume Clock Casket,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1555,{},{},{} -31137,C_Blue_Rose_Ornament,Costume Blue Rose Ornament,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1556,{},{},{} -31138,C_Piamette_Red_Hood,Costume Piamette's Red Hood,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1557,{},{},{} -31139,C_White_Rabbit_Ear,Costume White Rabbit Ears,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1558,{},{},{} -31140,C_Cowboy_Hat_,Costume Black Cowboy Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1569,{},{},{} -31141,C_Rose_Corsage_,Costume Cactus Flower Corsage,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1570,{},{},{} -31142,C_Time_Prison,Costume Prison of Time,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1309,{},{ sc_start SC_TIME_ACCESSORY,INFINITE_TICK,0; },{ sc_end SC_TIME_ACCESSORY; } -31144,C_Indi_Feather_Band,Costume Indian Feather Headband,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,809,{},{},{} -31145,C_AliceFriesinger_Hat_69,Costume AliceFriesinger Hat 69,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1249,{},{},{} -31146,C_KarduiEar,Costume Kardui Ears,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1357,{},{},{} -31147,C_Tare_Domovoi,Costume Drooping Domovoi,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,781,{},{},{} -31148,C_Tare_W_Doll,Costume Drooping W Doll,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,359,{},{},{} -31149,C_Nydhog_Wig,Costume Nydhoggur Wig,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1563,{},{},{} -31150,C_Shalosh_Head_Dress,Costume Shalosh Headdress,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1564,{},{},{} -31151,C_Chasher_Ear,Costume Cheshire's Cat Ears,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1565,{},{},{} -31152,C_Piamette_BowTie_Red,Costume Piamette's Red Bow Tie,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1566,{},{},{} -31153,C_Aniv_Star_Hat2,Costume Cactus Flower Corsage,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1567,{},{},{} -31154,C_Cap,C Cap,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,14,{},{},{} -31158,C_Squirrel_Ear_Hat,Costume Squirrel Ear Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1486,{},{},{} -31160,C_RuneHelm,Costume Rune Helm,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1361,{},{},{} -31161,C_Tiger_Mask,Costume Tiger Mask,4,0,,0,,0,,0,0xFFFFFFFF,63,2,3072,,1,0,181,{},{},{} -31162,C_Shaving_Foam,Costume Shaving Foam,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1129,{},{},{} -31163,C_Goat_Hat,Costume Sheep Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,205,{},{},{} -31164,C_Brown_Stall,Costume Brown Stole,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1572,{},{},{} -31165,C_Piggyback,Costume Piggyback,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1574,{},{},{} -31166,C_Teddy_Bear_Hood,Costume Teddy Bear Hood,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1571,{},{},{} -31167,C_Lunatic_Hanging_Ear_BL,Costume Hanging Black Lunatic Ears,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1575,{},{},{} -31168,C_Mouton_Life_BL,Costume Blue Mouton Life,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1573,{},{},{} -31169,C_Hat_Of_Outlaw,Costume Hilarious Bandit Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,486,{},{},{} -31170,C_Wind_Wings,Costume Wings of Wind,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,493,{},{},{} -31171,C_Nekomimi,Costume Nekomimi,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,182,{},{},{} -31172,C_Roast_Memory,Costume Roast Memory,4,0,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,0,1576,{},{},{} -31173,C_Oyster_Parakeet,Costume Oyster Parakeet,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,419,{},{},{} -31174,C_Suspicious_Bread_Bag,C Suspicious Bread Bag,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,429,{},{},{} -31175,C_Strawberry_Hat,Costume Strawberry Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,755,{},{},{} -31176,C_Looking,C Looking,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1577,{},{},{} -31177,C_Tail_Hat,C Tail Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1578,{},{},{} -31178,C_Flame_Muffler,C Fire Muffler,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1579,{},{},{} -31179,C_Wolf_Masquerade,C Wolf Masquerade,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1580,{},{},{} -31180,C_Shura_King_Pledge,C King Sura Headband,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1581,{},{},{} -31181,C_Necklace_Rosary,Costume Necklace Rosary,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1471,{},{},{} -31182,C_Side_Cap,Costume Side Cap,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,529,{},{},{} -31183,C_Fallen_Angel_Blessing,Costume Blessing of Fallen Angel,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1250,{},{},{} -31184,C_Hawkeye,Costume Hawkeye,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,609,{},{},{} -31185,C_Engineer_Cap,Costume Engineer Cap,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,608,{},{},{} -31186,C_Black_Cat,Costume Black Cat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1582,{},{},{} -31187,C_War_Princess_Ribbon,Costume War Princess Ribbon,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1583,{},{},{} -31188,C_Mono_Gothic_Bonnet,Costume Mono Gothic Bonnet,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1584,{},{},{} -31189,C_Cat_Ears_Cape_Red,Costume Red Cat Ears Cape,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1591,{},{},{} -31190,C_Angel_Mini_Silk_Hat_B,Costume Black Angel Mini Silk Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1586,{},{},{} -31191,C_Whikebain_Ears_Gold,Vibrant Cat Ears,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1588,{},{},{} -31192,C_Bluecat_Ear,Blue Cat Ears,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1589,{},{},{} -31193,C_Tare_Ahat,Costume Drooping Ahat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1590,{},{},{} -31194,C_Spinning_Propeller,Costume Spinning Propeller,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,270,{},{},{} -31195,C_Choco_Minihat,Costume Mini Chocolate Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1592,{},{},{} -31196,C_JP_EV12,C Drooping Chuni Penguin,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1596,{},{},{} -31197,C_Egg_Crispinette,Costume Egg Crispinette,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1598,{},{},{} -31198,C_Octopus_Hat,C Octopus Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,538,{},{},{} -31199,C_Weird_Beard,C Weird Beard,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,21,{},{},{} -31200,C_Wrapping_Ribbon,C Wrapping Ribbon,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1599,{},{},{} -31201,C_Royal_Rabbit_Crown,C Royal Rabbit Crown,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1600,{},{},{} -31202,C_Dog_Officer,C Dog Officer,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1601,{},{},{} -31203,C_Charcoal_Stove,C Charcoal Stove,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1602,{},{},{} -31204,C_Drooping_White_Cat,C Drooping White Cat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,378,{},{},{} -31205,C_Large_Orc_Hero_Helm,C Large Orc Hero Helm,4,0,,0,,0,,0,0xFFFFFFFF,63,2,3072,,1,0,381,{},{},{} -31206,C_Rune_Hairband,C Rune Hairband,4,0,,0,,0,,0,0xFFFFFFFF,63,2,3072,,1,0,564,{},{},{} -31207,C_Dokkebi_Mask,C Dokkebi Mask,4,0,,0,,0,,0,0xFFFFFFFF,63,2,6144,,1,0,689,{},{},{} -31208,C_Straight_Long_YL,C Straight_Long Yellow,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1603,{},{},{} -31209,C_Straight_Long_WH,C Straight Long White,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1604,{},{},{} -31210,C_Side_Pigtail_BU,C Side Pigtail Blue,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1605,{},{},{} -31211,C_Side_Pigtail_RD,C Side Pigtail Red,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1606,{},{},{} -31212,C_Side_Pigtail_YL,C Side Pigtail Yellow,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1607,{},{},{} -31213,C_Side_Pigtail_GN,C Side Pigtail Green,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1608,{},{},{} -31214,C_Side_Pigtail_BL,C Side Pigtail Black,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1609,{},{},{} -31215,C_Side_Pigtail_WH,C Side Pigtail White,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1610,{},{},{} -31216,C_Side_Pigtail_OM,C Side Pigtail Brown,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1611,{},{},{} -31217,C_Side_Pigtail_PP,C Side Pigtail Purple,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1612,{},{},{} -31218,C_Low_Pony_BU,C Low Pony Blue,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1613,{},{},{} -31219,C_Low_Pony_RD,C Low Pony Red,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1614,{},{},{} -31220,C_Low_Pony_YL,C Low Pony Yellow,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1615,{},{},{} -31221,C_Low_Pony_GN,C Low Pony Green,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1616,{},{},{} -31222,C_Low_Pony_BL,C Low Pony Black,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1617,{},{},{} -31223,C_Low_Pony_WH,C Low Pony White,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1618,{},{},{} -31224,C_Low_Pony_OM,C Low Pony Brown,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1619,{},{},{} -31225,C_Low_Pony_PP,C Low Pony Purple,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1620,{},{},{} -31226,C_Long_Twin_BU,C Long Twin Blue,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1621,{},{},{} -31227,C_Long_Twin_RD,C Long Twin Red,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1622,{},{},{} -31228,C_Long_Twin_YL,C Long Twin Yellow,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1623,{},{},{} -31229,C_Long_Twin_GN,C Long Twin Yellow,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1624,{},{},{} -31230,C_Long_Twin_BL,C Long Twin Yellow,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1625,{},{},{} -31231,C_Long_Twin_WH,C Long Twin Yellow,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1626,{},{},{} -31232,C_Long_Twin_OM,C Long Twin Yellow,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1627,{},{},{} -31233,C_Long_Twin_PP,C Long Twin Yellow,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1628,{},{},{} -31234,C_Persica,C Persica,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,659,{},{},{} -31235,C_Large_Ribbon_Muffler_Mid,C Large Ribbon Muffler Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1312,{},{},{} -31236,C_Vicious_Mind_Aura_Mid,C Vicious Mind Aura Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1267,{},{},{} -31237,C_Pale_Yellow_Ribbon_Lower,C Pale Yellow Ribbon Lower,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1474,{},{},{} -31238,C_True_Love_Upper,C True Love Upper,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,489,{},{},{} -31239,C_Love_Rabbit_Hood_Upper,C Love Rabbit Hood Upper,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,549,{},{},{} -31240,C_Whisper_Mask_,C Whisper Mask Upper,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,321,{},{},{} -31241,C_Burning_Sun_Lower,C Burning Sun Lower,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,654,{},{},{} -31242,C_Anubis_Helm_,C Anubis Hat Upper,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,485,{},{},{} -31243,C_Tongue_Mask_Mid,C Tongue Mask Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,253,{},{},{} -31244,C_Skymet_,C Skymet Upper,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,868,{},{},{} -31245,C_Cherry,C Cherry,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,602,{},{},{} -31246,C_Humming_Bird,C Humming Bird,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,702,{},{},{} -31247,C_Hippo_Hat,C Hippo Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,859,{},{},{} -31248,C_Isabella_Red_Ears,C Isabella Red Ears,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1030,{},{},{} -31249,C_Rabbit_Hopping,C Hopping Rabbit,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1635,{},{},{} -31250,C_Wonderful_Beast_Ear,C Wonderful Beast Ears,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1636,{},{},{} -31251,C_Cat_Mouth,C Cats Mouth,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1637,{},{},{} -31252,C_Cat_Ear_Hat_White,C White Cat Ears Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1638,{},{},{} -31253,C_Rinzu_Helmet,C Rinzu Helmet,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,548,{},{},{} -31254,C_Red_Hare_Hat,C Red Hare Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,7168,,1,0,1631,{},{},{} -31255,C_Sweet_Helmet,C Sweet Helmet,4,0,,0,,0,,0,0xFFFFFFFF,63,2,3072,,1,0,1374,{},{},{} -31256,C_Jaguar_Mask,C Jaguar Mask,4,0,,0,,0,,0,0xFFFFFFFF,63,2,6144,,1,0,530,{},{},{} -31260,C_Observer_J,C Observer,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1639,{},{},{} -31261,C_Soda_in_Mouth,C Soda in Mouth,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1643,{},{},{} -31262,C_Disposable_3D_Glasses,C Disposable 3D Glasses,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,661,{},{},{} -31263,C_Disposable_Popcorn_Hat,C Disposable Popcorn Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,415,{},{},{} -31264,C_Wings_of_Protector_Lower,C Wings of Protector Lower,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,990,{},{},{} -31265,C_Straight_Pony_Blue_Mid,C Straight Pony Blue Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1394,{},{},{} -31266,C_Straight_Pony_Red_Mid,C Straight Pony Red Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1392,{},{},{} -31267,C_Straight_Pony_Yellow_Mid,C Straight Pony Yellow Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1389,{},{},{} -31268,C_Straight_Pony_Green_Mid,C Straight_Pony Green Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1390,{},{},{} -31269,C_Straight_Pony_Black_Mid,C Straight Pony Black Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1371,{},{},{} -31270,C_Straight_Pony_White_Mid,C Straight Pony White Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1395,{},{},{} -31271,C_Straight_Pony_Crimson_Mid,C Straight Pony Crimson Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1393,{},{},{} -31272,C_Straight_Pony_Purple_Mid,C Straight Pony Purple Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1391,{},{},{} -31273,C_Cowlick_Blue_Mid,C Cowlick Blue Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1387,{},{},{} -31274,C_Cowlick_Red_Mid,C Cowlick Red Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1385,{},{},{} -31275,C_Cowlick_Yellow_Mid,C Cowlick Yellow Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1382,{},{},{} -31276,C_Cowlick_Green_Mid,C Cowlick Green Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1383,{},{},{} -31277,C_Cowlick_Black_Mid,C Cowlick Black Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1372,{},{},{} -31278,C_Cowlick_White_Mid,C Cowlick White Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1388,{},{},{} -31279,C_Cowlick_Crimson_Mid,C Cowlick Crimson Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1386,{},{},{} -31280,C_Cowlick_Purple_Mid,C Cowlick Purple Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1384,{},{},{} -31281,C_Loose_Wave_Twin_Blue_Mid,C Loose Wave Twin Blue Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1401,{},{},{} -31282,C_Loose_Wave_Twin_Red_Mid,C Loose Wave Twin Red Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1399,{},{},{} -31283,C_Loose_Wave_Twin_Yellow_Mid,C Loose Wave Twin Yellow Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1396,{},{},{} -31284,C_Loose_Wave_Twin_Green_Mid,C Loose Wave Twin Green Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1397,{},{},{} -31285,C_Loose_Wave_Twin_Black_Mid,C Loose Wave Twin Black Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1373,{},{},{} -31286,C_Loose_Wave_Twin_White_Mid,C Loose Wave Twin White Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1402,{},{},{} -31287,C_Loose_Wave_Twin_Crimson_Mid,C Loose Wave Twin Crimson Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1400,{},{},{} -31288,C_Loose_Wave_Twin_Purple_Mid,C Loose Wave Twin Purple Mid,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1398,{},{},{} -31289,C_Black_Wing_Ears_Lower,C Black Wing Ears Lower,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1336,{},{},{} -31290,C_Angels_Feather_Cap,C Angels Feather Cap,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,929,{},{},{} -31291,C_Devils_Feather_Cap,C Devils Feather Cap,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,930,{},{},{} -31293,C_Kings_Crown_Purple,C Crown of Ancient King Purple,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1651,{},{},{} -31294,C_Jirant_Circlet_Red,C Jirant Circlet Red,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1652,{},{},{} -31295,C_Red_Wing_Hat,C Red Wing Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,613,{},{},{} -31296,C_Strawberry_in_Mouth,C Strawberry in Mouth,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,861,{},{},{} -31297,C_Fruit_of_Love,C Fruit of Love,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,140,{},{},{} -31298,C_Sepia_Parade_Hat,C Sepia Parade Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,682,{},{},{} -31299,C_White_Rabbit,C White Rabbit,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1656,{},{},{} -31300,C_Warm_Cat_Muffler,C Warm Cat Muffler,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1657,{},{},{} -31301,C_Blinking_Eyes,C Blinking Eyes,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1658,{},{},{} -31302,C_Black_Magenta_Ribbon,C Black Magenta Ribbon,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1659,{},{},{} -31303,C_Black_Ramen_Hat_,C Black Ramen Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1338,{},{},{} -31304,C_Summer_Fan,C Summer Fan,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1051,{},{},{} -31306,C_Toucan_Hat,C Toucan Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,528,{},{},{} -31307,C_Violet_Macaw,C Violet Macaw,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,656,{},{},{} -31308,C_Protect_Feathers,C Protect Feathers,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1232,{},{},{} -31309,C_Pure_White_Marching_Hat,C Pure White Marching Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1470,{},{},{} -31310,C_666_Black_Elven_Ears,C 666 Black_ Elven Ears,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,498,{},{},{} -31311,C_Dolor_Thanatos_Mask,C Dolor Thanatos Mask,4,0,,0,,0,,0,0xFFFFFFFF,63,2,6144,,1,0,666,{},{},{} -31312,C_Hades_Helm,C Hades Helm,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,523,{},{},{} -31313,C_FallenAngelWingEar,C Fallen Angel Wing Ears,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1662,{},{},{} -31314,C_Ghost_Holiday,C Ghost Holiday,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1663,{},{},{} -31315,C_Stall_Of_Angel,C Stall of Angel,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1664,{},{},{} -31316,C_C_FlutterButterfly_BL,C Black Fluttering Butterfly,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1665,{ hateffect(HAT_EF_C_FLUTTERBUTTERFLY_BL,true); },{},{ hateffect(HAT_EF_C_FLUTTERBUTTERFLY_BL,false); } -31317,C_15th_Anniversary_Wing,C 15th Anniversary Wing,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1660,{},{},{} -31318,C_Gerhard_Von_Devi,Costume Gerhard Von Devi,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1092,{},{},{} -31319,C_Summer_Fan_,C Summer Fan,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1051,{},{},{} -31320,C_Pinwheel_Hat,C Pinwheel Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,456,{},{},{} -31321,C_Shining_Sunflower,C Shining Sunflower,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,681,{},{},{} -31322,C_Candy_Hat,C Candy Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,853,{},{},{} -31323,C_Yellow_Hunting_Cap,C Yellow Hunting Cap,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,484,{},{},{} -31325,C_Queen_Scarabas_Helmet,C Queen Scarabas Helmet,4,0,,0,,0,,0,0xFFFFFFFF,63,2,5120,,1,0,1231,{ hateffect(HAT_EF_QSCARABA,true); },{},{ hateffect(HAT_EF_QSCARABA,false); } -31326,C_Rolf_Von_Ziege_666_II,C Rolf Von Ziege 666 II,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,946,{},{},{} -31327,C_Stretched_Nose_M,C Wood Goblins Nose,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,737,{},{},{} -31328,C_Faceworm_Eggshell,C Faceworm Eggshell,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1356,{},{},{} -31329,C_Alice_Wig,Costume Alice Wig,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1673,{},{},{} -31330,C_Fallen_Angel_Valletta,Costume Fallen Angel Valletta,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1674,{},{},{} -31331,C_Chung_E_Shinyon_Cap,C Chung e Shinyon Cap,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1675,{},{},{} -31332,Khalitzburg_KN_Helm_BL,C Black Khalitzburg Knight Helm,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1676,{},{},{} -31368,C_Harvest_Festa_Hat,C Thanksgiving Memorial Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1677,{},{},{} -31369,C_Straight_Long_WH_,Costume Straight Long White,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1604,{},{},{} -31370,C_Straight_Long_YLK,Costume Straight Long Yellow,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1603,{},{},{} -31373,C_Crown_of_Ancient_king,C Crown of Ancient king,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1412,{},{},{} -31372,C_Binit_Doll_Hat,Costume: Binit Doll,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,358,{},{},{} -31374,C_Explosion_gum,C Explosion gum,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1414,{},{},{} -31375,C_Mystic_Eye,C Mystic Eye,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1490,{},{},{} -31376,C_Ancient_Dragon_Coronet_Purple,C Ancient Dragon Coronet Purple,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1680,{},{},{} -31377,C_Glastheim_Obeserver,C Glastheim Obeserver,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1041,{},{},{} -31378,C_Catharina_Von_Brad_60th,C Catharina Von Brad 60th,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1527,{},{},{} -31379,C_Wind-Up_Key,C Wind-Up Key,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1335,{},{},{} -31380,C_Crow,C Crow,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1035,{},{},{} -31381,C_Diabolic_Lapel,Costume Diabolic Lapel,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1681,{},{},{} -31382,C_Cat_Ears_Punkish,Costume Cat Ears Punkish,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1682,{},{},{} -31383,C_Volume_Low_Twin,Costume Volume Low Twin,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1683,{},{},{} -31384,C_False_Ears,Costume False Ears,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1684,{},{},{} -31385,C_Gothic_Pumpkin_Head,Costume Gothic Pumpkin Head,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1685,{},{},{} -31386,C_Survive_Orb,C Survive Orb,4,0,,,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1488,{},{},{} -31387,C_Jjakk,C Jjakk,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1687,{},{},{} -31389,C_White_Bird_Rose,C White Bird Rose,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1688,{},{},{} -31390,C_Let_It_Snow,C Let It Snow,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1690,{},{},{} -31391,C_Floating_Stone_Of_Int,C Floating Stone of Sage,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1230,{},{ sc_start SC_FSTONE,INFINITE_TICK,0; },{ sc_end SC_FSTONE; } -31392,C_Radio_Antenna,C Radio Antenna,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,347,{},{},{} -31393,C_Vajra,C Vajra,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,983,{},{},{} -31394,C_Magician_White_Hat,C Magician White Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,283,{},{},{} -31395,C_Book_Of_Magic,C Book of Magic,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1691,{},{},{} -31396,C_Sorcerer_Hood,C Sorcerer Hood,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1692,{},{},{} -31397,C_Pope_Sitting_Head,C Sitting Pope,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1553,{},{},{} -31398,C_Blinking_Thin_Eyes,C Blinking Thin Eyes,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1693,{},{},{} -31399,C_Darkness_Veil,C Darkness Veil,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1694,{},{},{} -31400,C_Ribbon,C Ribbon,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,17,{},{},{} -31401,C_Nuns_Veil,C Nuns Veil,4,0,,0,,0,,0,0xFFFFFFFF,63,2,3072,,1,0,176,{},{},{} -31402,C_Idun_Green_Apple,C Iduns Green Apple,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1698,{},{},{} -31403,C_Wall,C Wall,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1699,{},{},{} -31404,C_Poring_Traffic_Light,C Poring Traffic Light,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1700,{},{},{} -31405,C_Eleanor_Wig_YL,C Eleanor Wig Yellow,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1701,{},{},{} -31406,C_Nydhog_Wig_WH,C Nydhoggur Wig White,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1702,{},{},{} -31407,C_Alice_Wig_PK,C Alice Wig Peach,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1703,{},{},{} -31408,C_Ragnarok_Rush_Goat,C Ragnarok Rush Goat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,41,{},{},{} -31409,C_Barrel_Helm,C Barrel Helm,4,0,,0,,0,,0,0xFFFFFFFF,63,2,7168,,1,0,1498,{},{},{} -31410,C_GodsHelm,Costume God's Helm,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1678,{},{},{} -31411,C_Leo_Diadem,C Leo Diadem,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,566,{},{},{} -31412,C_Virgo_Crown,C Virgo Crown,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,573,{},{},{} -31413,C_Taurus_Crown,C_ Taurus Crown,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,536,{},{},{} -31414,C_Cancer_Diadem,C Cancer Diadem,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,560,{},{},{} -31415,C_Wanderer_Sakkat,Costume Wanderer's Sakkat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,3072,,1,0,558,{},{},{} -31417,C_Rice_Ball_Hat,C Rice Ball Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,556,{},{},{} -31418,C_Leek_In_Mouth,C Green Onion in Mouth,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,824,{},{},{} -31420,C_Shining_Santa_Poring,C Shining Santa Poring,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,961,{},{},{} -31430,C_Seppl_Hat_TW,Costume: Seppl Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1023,{},{},{} -31431,C_Curupira_Hat_TW,Costume: Curupira Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,974,{},{},{} -31432,C_Luwmin_Ice,C Floating Ice,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1562,{},{},{} -31433,C_Astro_Circle,Costume Astro Circle,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1073,{},{},{} -31434,C_Cloud_Burst,C Cloud Burst,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,705,{},{},{} -31435,C_Ghost_Magicians_Knit_Hat,C Ghost Magicians Knit Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,854,{},{},{} -31436,C_Lazy_Cat,C Lazy Cat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,274,{},{},{} -31437,C_Baby_Penguin,C Baby Penguin,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1705,{},{},{} -31438,C_Fluffy_Angel_Cape,C Fluffy Angel Cape,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1706,{},{},{} -31439,C_Fluffy_Heart_Earmuffs,C Fluffy Heart Earmuffs,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1707,{},{},{} -31440,C_Snow_Bear_Food,C Snow Bear Hood,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1708,{},{},{} -31441,C_Penguin_Cap_BU,C Penguin Cap Blue,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1709,{},{},{} -31442,C_Smile_Mask_Middle,C Smile Mask Middle,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,65,{},{},{} -31443,C_Munak_Hat_,C Munak Hat Upper,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,51,{},{},{} -31444,C_Bongun_Hat_,C Bongun Hat Upper,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,139,{},{},{} -31446,C_Toy_Syringe,C Toy Syringe,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,842,{},{},{} -31447,C_Light_Moonlight_Hat,C Light Moonlight_Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,913,{},{},{} -31448,C_Stings_Silk_Ribbon,C Stings Silk Ribbon,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1457,{},{},{} -31449,C_Blue_Rose_Eyepatch,C Blue Rose Eyepatch,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1712,{},{},{} -31450,C_Lolita_Two_Side_Up,C Lolita Two Side Up,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1713,{},{},{} -31451,C_Blue_Frill_Ribbon,C Blue Frill Ribbon,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1714,{},{},{} -31452,C_White_Cat,C White Cat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1715,{},{},{} -31453,C_L_RibbonMuff_Black,C Large Ribbon Muffler Black,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1716,{},{},{} -31454,C_Love_Feelings,C Love Feelings,4,0,,,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1717,{},{},{} -31455,C_Enchanted_Dog,C Super Cute Dog,4,0,,0,,0,,0,0xFFFFFFFF,63,2,6144,,1,0,1718,{},{},{} -31456,C_Baby_Leopard_Cat,C Baby Leopard Cat,4,0,,,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1719,{},{},{} -31457,C_Laughing_Wonderful_Wolf_Hat,C Laughing Wonderful Wolf Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1016,{},{},{} -31459,C_Sweet_Bonbon,Costume Sweets Bonbon,4,0,,,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,853,{},{},{} -31460,C_Blessing_Sky_Lantern,C Blessing Sky Lantern,4,0,,,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1720,{},{},{} -31463,C_Flying_Drone,C Flying Drone,4,0,,,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1561,{},{},{} -31464,C_Bloom_Afro,C Bloom Afro,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,837,{},{},{} -31465,C_Robin_Egg_Minihat,C Robin Egg Minihat,4,0,,,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1722,{},{},{} -31466,C_Holy_Eggshell,C Holy Egg Shell,4,0,,,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,537,{},{},{} -31467,C_Evil_Eggshell,C Evil Eggshell,4,0,,,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,999,{},{},{} -31468,C_Stripe_Hat,C Stripe Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1728,{},{},{} -31469,C_Eleanor_Wig_R,Rental C Eleanors Wig Lower,4,,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1502,{},{},{} -31470,C_Scroll_of_Tengu,C Scroll of Tengu,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1445,{},{},{} -31471,C_Celestial_Flower,C Celestial Flower,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,438,{},{},{} -31472,C_Fairy_Feathers,C Fairy Feathers,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1723,{},{},{} -31473,C_Tipsy,C Tipsy,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1724,{},{},{} -31474,C_Straight_Long_BL,C Straight Long Black,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1725,{},{},{} -31475,C_Black_Fox_Ear_Ribbon,C Black Fox Ears Ribbon,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1726,{},{},{} -31476,C_Cherry_Blossom_Hat_YL,C Yellow Cherry Blossom Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1727,{},{},{} -31477,C_Straight_Long_BL_,Rental C Straight Long Black,4,0,,,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1725,{},{},{} -31478,C_Eleanor_Wig_,C Eleanors Wig Lower,4,,,0,,,,,0xFFFFFFFF,63,2,4096,,1,0,1502,{},{},{} -31479,C_ManyStars_TW,Costume Group of Stars,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1729,{ hateffect(HAT_EF_MANYSTARS,true); },{},{ hateffect(HAT_EF_MANYSTARS,false); } -31481,C_CatCoffeeCup_TW,C TriColor CatCup,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1731,{},{},{} -31483,C_CatEarRibbon_TW,Costume Cat Ear Ribbon,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1733,{},{},{} -31484,C_JP_EV13,C BearCompanion Female,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1736,{},{},{} -31485,C_JP_EV14,C BearCompanion Male,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1737,{},{},{} -31486,C_Divers_Goggles,C Diver's Goggles,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,10,{},{},{} -31487,C_Eye_Bandage,C Eye Bandage,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,13,{},{},{} -31488,C_MVP,Costume MVP,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1738,{},{},{} -31489,C_Bouquet_Hat,Costume Bouquet Cap,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1739,{},{},{} -31490,C_Poring_Muffler,C Poring Muffler,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1740,{},{},{} -31491,C_Orange_Tabby_Cat,C Orange Tabby Cat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1741,{},{},{} -31492,C_Cat_Ears_Cape_Brown,C Brown Cat Ears Cape,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1742,{},{},{} -31493,C_Volume_Low_Twin_WH,C Volume Low Twin WH,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1743,{},{},{} -31494,C_Volume_Low_Twin_Upper,C Volume Low Twin,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1683,{},{},{} -31495,C_Lolita_Two_Side_Up_,C Lolita Two Side Up Upper,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1713,{},{},{} -31496,C_Yggdrasil_Crown,C Yggdrasil Crown,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,746,{},{},{} -//31497,C_Flowery_Vision,C Flowery Vision,4,0,,,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,0,{ /* To Do : Confirm View ID */ },{},{} -31498,C_Elephangel_TH,C Elephangel,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1745,{},{},{} -31499,C_Easter_Egg_Shell,C Easter Egg Shell,4,0,,,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,537,{},{},{} -31504,C_Starving_Fish_Hat,C Large Hungry Fish,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,844,{},{},{} -31505,C_Falcon_Mask,C Falcon Mask,4,0,,0,,0,,0,0xFFFFFFFF,63,2,6144,,1,0,782,{},{},{} -31506,C_Cat_Ear_Bandana,C Cat Ear Bandana,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1587,{},{},{} -31507,C_Drooping_Cat_Yellow,C Drooping Cat Yellow,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,278,{},{},{} -31508,C_Isabella_Blue_Ears,C Isabella Blue Ears,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1032,{},{},{} -31509,C_Fawn_Ear,C Fawn Ears,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1751,{},{},{} -31510,C_ShortHair_CatEar,C Short Haired Cat Ears,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1752,{},{},{} -31511,C_LongHair_CatEar,C Long Haired Cat Ears,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1753,{},{},{} -31512,C_Panda_Rabbit,C Panda Rabbit,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1754,{},{},{} -31513,C_Black_Rabbit_Ears,C Black Rabbit Ears,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1755,{},{},{} -31516,C_Mini_Melon,C Mini Melon,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1758,{},{},{} -31517,C_JP_EV15,C Fluffy Cat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1762,{},{},{} -31518,C_Popping_Popcorn_Hat,C Popping Popcorn Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1763,{},{},{} -31519,C_Noodles_Hat,C Noodles Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1764,{},{},{} -31520,C_Popcorn_Hat,C Popcorn Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,415,{},{},{} -31521,C_Yuzu_Helmet,C Yuzu Helmet,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,791,{},{},{} -31522,C_Orange_Helmet,C Orange Helmet,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,841,{},{},{} -31523,C_Pomelo_Helmet,C Pomelo Helmet,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,924,{},{},{} -31524,C_Bento_Hat,C Bento Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1766,{},{},{} -31526,C_Shaman_Hat,C Shaman Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,596,{},{},{} -31527,C_Radiant_Rainbow_Wings,C Radiant Rainbow Wings,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1186,{},{},{} -31528,C_Star_Dust_Hairband,C Star Dust Hairband,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,831,{},{},{} -31529,C_Happy_Rabbit_Ribbon,C Happy Rabbit Ribbon,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1769,{},{},{} -//31530,C_Large_Dracula_Helm,C Large Dracula Helm,4,0,,,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,0,{ /* To Do : Confirm View ID */ },{},{} -31531,C_Lovely_Heart_Cap,C Lovely Heart Cap,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1770,{},{},{} -31533,C_Warm_Cat_Muffler_BL,C Warm Cat Muffler Black,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1771,{},{},{} -//31536,C_Crown_Of_Demon,C Crown Of Demon,4,0,,,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,0,{ /* To Do : Confirm View ID */ },{},{} -31538,C_Lovely_Feeling,C Lovely Feeling,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1717,{},{},{} -31540,C_GeminiS58_Eyes_Red,C GeminiS58 Eyes Red,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1654,{},{},{} -31541,C_Drosera_Hairpin,C Drosera Hairpin,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,850,{},{},{} -31542,C_Clay_Poring_Jar,C Clay Poring Jar,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1634,{},{},{} -31543,C_Siorava_Hat,C Siorava Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1774,{},{},{} -31544,C_Piamette_Curls,Costume Piamette Curls,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1775,{},{},{} -31545,C_Eremes_Scarf_BU,C Eremes Scarf Blue,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1776,{},{},{} -31546,C_Clock_Casket_RD,C Clock Casket Red,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1777,{},{},{} -31547,C_Poporing_Mascot_Head,C Poporing Mascot Head,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1778,{},{},{} -31548,C_Love_Cheek_Lower,C Love Cheeks Lower,4,0,,,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1318,{},{},{} -31549,C_Little_Aquarium_Lower,C Little Aquarium Lower,4,0,,,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1363,{},{},{} -31550,C_Tone_of_Gold_Mid,C Tone of Gold Mid,4,0,,,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1447,{},{},{} -31551,C_Black_Glasses_Lower,C Black Glasses Lower,4,0,,,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,404,{},{},{} -31552,C_Blue_Ribbon_Mid,C Blue Ribbon Mid,4,0,,,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,407,{},{},{} -31553,C_Wings_Of_Victory_Mid,C Wings Of Victory Mid,4,0,,,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,365,{},{},{} -31554,C_Bread_Bag_Mid,C Bread Bag Mid,4,0,,,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,412,{},{},{} -31555,C_Hoplite_Helmet_Upper,C Hoplite Helmet Upper,4,0,,,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,660,{},{},{} -31556,C_Moonlight_Flower_Hat_Upper,C Moonlight Flower Hat Upper,4,0,,,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,268,{},{},{} -31559,C_Royalguard_Necklace,C Royal Guard Necklace,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1629,{},{},{} -31560,C_Clergy_Nurse_Cap,C Nurse Cap of Clergy,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1359,{},{},{} -31561,C_Heavenly_Dark_Flame,C Heavenly Dark Flame,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1008,{},{},{} -31562,C_Zealotus Doll,C Zealotus Doll,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1376,{},{},{} -31563,C_Blue_Eye_Shadow,C Blue Eye Shadow,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1020,{},{},{} -31564,C_Variant_Veil,C Variant Veil,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1785,{},{},{} -31565,C_Princess_Ribbon_Crown,C Princess Ribbon Crown,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1786,{},{},{} -31566,C_Stole_Of_Dominion,C Stole Of Dominion,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1784,{},{},{} -31567,C_Sheep_Horn,C Sheep Horns,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1783,{},{},{} -31568,C_Floating_Ball_TW,Costume Floating Ball,4,0,,0,,,,0,0xFFFFFFFF,63,2,2048,,1,0,1760,{},{},{} -31569,C_OpenAir_Headset,C Open Air Headset,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1655,{},{},{} -31570,C_Cyclops_Visor,C Cyclops Visor,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,207,{},{},{} -31571,C_Guardian_Processor,C Guardian Processor,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1552,{},{},{} -31572,C_Mobile_Pursuit_System,C Mobile Pursuit System,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1788,{},{},{} -31573,C_Mecha_Cat_Ears,C Mecha Cat Ears,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1789,{},{},{} -31574,C_Cyber_Income,C Cyber Income,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1790,{},{},{} -31575,C_Electro_Two_Sides_Up,C Electro Two Sides Up,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1791,{},{},{} -31576,C_Moon_Rabbit_Hat,C Moon Rabbit Hat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,455,{},{},{} -31577,C_Roast_Memory_Upper,C Roast Memory Upper,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1576,{},{},{} -31578,C_Alchemist_Mask_ML,C Alchemist Mask,4,0,,0,,0,,0,0xFFFFFFFF,63,2,6144,,1,0,1497,{},{},{} -31579,C_Love_Games,C I LOVE GAMES,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1306,{},{},{} -31580,C_Autumn_Flavor,C Autumn Flavor,4,0,,0,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1792,{},{},{} -31581,C_Jack_Upper,C Jack Upper,4,0,,,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1415,{},{},{} -31582,C_Jirant_Circlet,C Jirant Circlet,4,0,,,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1644,{},{},{} -31583,C_Will_O_Wisp_Lower,C Will O Wisp Lower,4,0,,,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,880,{},{ sc_start SC_STRANGELIGHTS,INFINITE_TICK,0; },{ sc_end SC_STRANGELIGHTS; } -31586,C_Poporing_Muffler,C Poporing Muffler,4,0,,,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1797,{},{},{} -31588,C_Snow_Flower,C Snow Flower,4,0,,,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1799,{ hateffect(HAT_EF_SNOWFLAKE_TIARA,true); },{},{ hateffect(HAT_EF_SNOWFLAKE_TIARA,false); } -31589,C_Golden_Majestic_Goat,C Golden Majestic Goat,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1800,{},{},{} -31590,C_Designer_Brush,C Designer's Brush,4,0,,,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1291,{},{},{} -31593,C_Yellow_Scarf,C Yellow Scarf,4,0,,,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1170,{},{},{} -31594,C_Red_Pencil_In_Mouth,C Red Pencil in Mouth,4,0,,,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,931,{},{},{} -31595,C_Book_File_Hat,C Book File Hat,4,0,,,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,423,{},{},{} -31596,C_Spider_Seduction,C Spider Seduction,4,0,,,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1711,{},{},{} -31597,C_Golden_Fish_Hat,C Golden Fish Hat,4,0,,,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1645,{},{},{} -31598,C_Forest_Guide,C Forest Guide,4,0,,,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1802,{},{},{} -31599,C_Medium_Wave,C Medium Wave,4,0,,,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1803,{},{},{} -31600,C_Kishu_Inu,C Kishu Dog,4,0,,,,0,,0,0xFFFFFFFF,63,2,2048,,1,0,1804,{},{},{} -31601,C_Under_Rim_Glasses_Blue,C Under Rim Glasses Blue,4,0,,,,0,,0,0xFFFFFFFF,63,2,2048,,1,,1805,{},{},{} -31602,C_Midgarts_Glory,C Rune-Midgarts Glory,4,0,,,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1807,{ hateffect(HAT_EF_MIDGARTS_GLORY,true); },{},{ hateffect(HAT_EF_MIDGARTS_GLORY,false); } -31606,C_Autumn_Headband,C Autumn Headband,4,0,,0,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1119,{},{},{} -31607,C_Cat_Ear_Witch_Hat,C Cat Ear Witch Hat,4,0,,,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1808,{},{},{} -31608,C_Magicstone_of_Grace,C Magic Stone of Grace,4,0,,,,0,,0,0xFFFFFFFF,63,2,7168,,1,0,1420,{},{},{} -31609,C_Noble_Mask,C Noble Mask,4,0,,,,0,,0,0xFFFFFFFF,63,2,2048,,1,,1409,{},{},{} -31610,C_Yellow_Wizardry_Hat,C Yellow Wizardry Hat,4,0,,,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,286,{},{},{} -31611,C_Dark_Snake_Lord_Stall,C Snake Lord Stole,4,0,,,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1810,{},{},{} -31612,C_Large_Sorcerer_Crown,C Large Sorcerer Crown,4,0,,,,0,,0,0xFFFFFFFF,63,2,1024,,1,0,1811,{},{},{} -31614,C_Fox,C Fox,4,0,,,,,,,0xFFFFFFFF,63,2,2048,,1,0,1812,{},{},{} -31615,Costume_Geisha_Make_Up,C Geisha Make Up,4,0,,,,,,,0xFFFFFFFF,63,2,2048,,1,0,1813,{},{},{} -31616,C_Sleep_Sheep_TW,C Sleep Sheep,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1814,{},{},{} -31624,C_HeartOfCat_TW,C Heart of Cat,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1822,{},{},{} -31625,C_Protect_Cloth,C Protection Cloth,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1761,{},{},{} -31628,C_Bogy_Cap_TW,C Dokebi,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,430,{},{},{} -31630,Costume_Baphomet_Balloon,C Baphomet Balloon,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1746,{},{},{} -31631,Costume_Drooping_Schmidt,C Drooping Schmidt,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1859,{},{},{} -31632,Costume_Drooping_Oscar,C Drooping Oscar,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1860,{},{},{} -31633,Costume_Drooping_Heinrich,C Drooping Heinrich,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1861,{},{},{} -31634,Costume_Reindeer_Hair_Band,C Reindeer Hair Band,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,836,{},{},{} -31635,Costume_Flowing_Long_BD,C Flowing Long Blonde,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1832,{},{},{} -31636,Costume_Flowing_Long_SV,C Flowing Long Silver,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1833,{},{},{} -31637,Costume_Straight_Long_BU,C Straight Long Blue,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1834,{},{},{} -31638,Costume_Straight_Long_RD,C Straight Long Red,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1835,{},{},{} -31639,Costume_Straight_Long_BD,C Straight Long Blonde,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1836,{},{},{} -31640,Costume_Straight_Long_GN,C Straight Long Green,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1837,{},{},{} -31641,Costume_Straight_Long_JBL,C Straight Long Jet Black,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1838,{},{},{} -31642,Costume_Straight_Long_LPP,C Straight Long Light Purple,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1839,{},{},{} -31643,Costume_Straight_Long_OM,C Straight Long Brown,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1840,{},{},{} -31644,Costume_Straight_Long_PP,C Straight Long Purple,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1841,{},{},{} -31645,Costume_Side_Pony_BU,C Side Pony Blue,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1842,{},{},{} -31646,Costume_Side_Pony_RD,C Side Pony Red,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1843,{},{},{} -31647,Costume_Side_Pony_BD,C Side Pony Blonde,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1844,{},{},{} -31648,Costume_Side_Pony_GN,C Side Pony Green,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1845,{},{},{} -31649,Costume_Side_Pony_BL,C Side Pony Black,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1846,{},{},{} -31650,Costume_Side_Pony_WH,C Side Pony White,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1847,{},{},{} -31651,Costume_Side_Pony_OM,C Side Pony Brown,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1848,{},{},{} -31652,Costume_Side_Pony_PP,C Side Pony Purple,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1849,{},{},{} -31653,Costume_Chignon_BU,C Chignon Blue,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1850,{},{},{} -31654,Costume_Chignon_RB,C Chignon Red,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1851,{},{},{} -31655,Costume_Chignon_BD,C Chignon Blonde,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1852,{},{},{} -31656,Costume_Chignon_GN,C Chignon Green,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1853,{},{},{} -31657,Costume_Chignon_BL,C Chignon Black,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1854,{},{},{} -31658,Costume_Chignon_WH,C Chignon White,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1855,{},{},{} -31659,Costume_Chignon_OM,C Chignon Brown,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1856,{},{},{} -31660,Costume_Chignon_PP,C Chignon Purple,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1857,{},{},{} -31664,Costume_Desert_Wolf_Hat,C Drooping Ernst Von Wolf 11th,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,783,{},{},{} -31667,Costume_Poring_Beret,C Poring Beret,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1825,{},{},{} -31668,Costume_Majorous_Horns,C Majorous Horns,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,888,{},{},{} -31669,C_Adv_Whisper_Mask_M,C Evolved Whisper Mask Mid,4,0,,,,,,,0xFFFFFFFF,63,2,2048,,1,0,458,{},{},{} -31670,C_Miyabi_Long_Hair,C Miyabi Long Hair,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1864,{},{},{} -31671,Costume_Twin_Cannon,C Twin Cannon,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1865,{},{},{} -31672,Costume_Mermaid_Wig,C Mermaid Wig,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1866,{},{},{} -31673,C_Picnic_Basket,C Picnic Basket,4,0,,,,,,,0xFFFFFFFF,63,2,2048,,1,0,1867,{},{},{} -31674,Costume_Jitterbug_Cap,C Jitterbug Cap,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1868,{},{},{} -31675,Costume_Orange_Hat,C Orange Hat,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,620,{},{},{} -31676,Costume_Orange_In_Mouth,C Orange In Mouth,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,814,{},{},{} -31682,Costume_Drooping_Elven_Ears,C Drooping Elven Ears,4,0,,,,,,,0xFFFFFFFF,63,2,2048,,1,0,875,{},{},{} -31684,Costume_Kururinpa_Tails,C Kururinpa Tails,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1873,{},{},{} -31685,Costume_Fluffy_Semi_Long,C Fluffy Semi Long,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1874,{},{},{} -31686,Costume_Desert_Wolf_Baby,C Desert Wolf Baby,4,0,,,,,,,0xFFFFFFFF,63,2,2048,,1,0,1875,{},{},{} -31687,Costume_Alchemist_Bag,C Alchemist Bag,4,0,,,,,,,0xFFFFFFFF,63,2,2048,,1,0,1876,{},{},{} -31688,C_Poring_On_Shoulder,C Poring On Shoulder,4,0,,,,,,,0xFFFFFFFF,63,2,2048,,1,0,1877,{},{},{} -31689,C_Piamette_Curls_,C Piamette Curls,4,0,,0,,0,,0,0xFFFFFFFF,63,2,4096,,1,0,1775,{},{},{} -31690,Costume_Flame_Bird,C Flame Bird,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,832,{},{},{} -31691,C_Bell_Pigeon_Low,Costume Bell of Pigeon Lower,4,0,,0,,,,0,0xFFFFFFFF,63,2,4096,,1,0,1034,{},{},{} -31692,Costume_Dragon_Emperor_Wings,C Dragon Emperor Wings,4,0,,,,,,,0xFFFFFFFF,63,2,2048,,1,0,1413,{},{},{} -31693,C_LunaticMuffler,C Lunatic Muffler,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1732,{},{},{} -31695,Costume_Stem_In_Mouth,C Stem in Mouth,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,848,{},{},{} -31696,Costume_Shark_Hat,C Shark Hat,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,503,{},{},{} -31697,Costume_Bird_Nest,C Bird Nest,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,201,{},{},{} -31698,C_Pigtail_Red_Hood,C Red Riding Hood,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1879,{},{},{} -31699,C_Smiling_Eyes,C Smiling Eyes,4,0,,,,,,,0xFFFFFFFF,63,2,2048,,1,0,1880,{},{},{} -31702,Costume_Moon_Cat_Hat,C Moon Cat Hat,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1308,{},{},{} -31703,Costume_Valentine_Hat,C Love Valentine's Hat,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,397,{},{},{} -31704,Costume_Sweet_Valentine_Out,C Sweet Valentine Out,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,865,{},{},{} -31705,Costume_Red_White_Hat,C Red Hat,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,469,{},{},{} -31706,Costume_Trident_Helmet,C Trident Helm,4,0,,,,,,,0xFFFFFFFF,63,2,2048,,1,0,810,{},{},{} -31707,Costume_Nine_Tail_Fox_Hair,C Nine Tail Fox Hair,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1884,{},{},{} -31708,Costume_Gothic_Skull_Ribbon,C Gothic Skull Ribbon,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1885,{},{},{} -31709,Costume_Golden_Violet,C Golden Violet,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1886,{},{},{} -31710,Costume_Lucky_Hat,C Lucky Hat,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,31710,{},{},{} -31711,Costume_Jewel_Crown,C Jewel Crown,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,88,{},{},{} -31712,Costume_Oxygen_Mask,C Oxygen Mask,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,90,{},{},{} -31713,Costume_Mystical_Fruit_Hat,Costume Mystical Fruit Hat,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,134,{},{},{} -31714,Costume_Indian_Headband,Costume Indian Headband,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,155,{},{},{} -31715,Costume_Orange_Rabbit,C Orange Rabbit,4,0,,,,,,,0xFFFFFFFF,63,2,2048,,1,0,1887,{},{},{} -31716,Costume_Twinkling_Red_Eyes,Costume Twinkling Red Eyes,4,0,,,,,,,0xFFFFFFFF,63,2,2048,,1,0,1888,{},{},{} -31717,Costume_Medium_Wave_BD,C Medium Wave Blonde,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1889,{},{},{} -31718,Costume_Sky_Lantern_Mid,C Blessing Sky Lantern Mid,4,0,,,,,,,0xFFFFFFFF,63,2,2048,,1,0,1720,{},{},{} -31719,Costume_Master_Of_Flames,C Master Of Flames,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1890,{},{},{} -31720,Costume_Vesper_Hat,C Vesper Hat,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1827,{},{},{} -31721,Costume_Resonating_Drums,C Resonating Drums,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1823,{},{},{} -31723,Costume_TW_Rice_Ball,C Tw Rice Ball,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,892,{},{},{} -31724,Costume_TW_Bulgogi,C Tw Bulgogi,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1773,{},{},{} -31729,Costume_Miracle_Plant,C Miracle Plant,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1893,{},{},{} -31730,Costume_Volume_Low_Twin_SK,C Volume Low Twin Sakura,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1894,{},{},{} -31731,Costume_Sweets_Party,C Sweets Party,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1896,{},{},{} -31732,Costume_Bear_Balloon,C Bear Balloon,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1734,{},{},{} -31733,Costume_Phantom_Masquerade,C Phantom Masquerade,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1899,{},{},{} -31734,Costume_Cirtrus_Ribbon,C Citrus Ribbon,4,0,,,,,,,0xFFFFFFFF,63,2,2048,,1,0,1900,{},{},{} -31735,Costume_Yawata_Seal,C Yawata Seal,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1901,{},{},{} -31736,Costume_Popcorn_Wig,C Popcorn Wig,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1895,{},{},{} -31762,Costume_Gambler_Card,C Heart Card in Mouth,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1679,{},{},{} -31763,Costume_Fortier_Mask,C Fortier Mask,4,0,,,,,,,0xFFFFFFFF,63,2,2048,,1,0,876,{},{},{} -31764,C_Rainbow_Veil_Mid,Costume Rainbow Veil Mid,4,0,,0,,,,,0xFFFFFFFF,63,2,2048,,1,0,992,{},{},{} -31765,C_Garnet_Tiara,C Garnet Tiara,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1906,{},{},{} -31766,C_Peony_Hair_Ornament,C Peony Hair Ornament,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1907,{},{},{} -31769,Costume_Orange_Bunny_Band,C Orange Bunny Band,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,751,{},{},{} -31770,Costume_Violet_Bunny_Band,C Violet Bunny Band,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,752,{},{},{} -31771,Costume_Blue_Bunny_Band,C Blue Bunny Band,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,753,{},{},{} -31772,Costume_Silver_Bunny_Band,C Silver Bunny Band,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,754,{},{},{} -31783,Costume_Doram_Balloon,C Doram Baloon,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1595,{},{},{} -31784,Costume_Experimental_Goat_Cap,C Experimental Goat Cap,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1768,{},{},{} -31785,Costume_Monster_Fish_Gill,C Monster Fish Gills,4,0,,,,,,,0xFFFFFFFF,63,2,2048,,1,0,1218,{},{},{} -31786,Costume_Red_Baby_Dragon_Hat,C Red Baby Dragon Hat,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1463,{},{},{} -31787,C_SavageB_On_Shoulder,C Savage Bebe On Shoulder,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1915,{},{},{} -31788,C_Piamette_Curls_SV,C Piamette Curls Silver,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1916,{},{},{} -31789,Costume_Turkey_Hat,C Turkey Hat,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,,{},{},{} -31791,Costume_Pig_Mask,C Pig Mask,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1869,{},{},{} -31793,Costume_Seraphim_Feather,C Seraphim Feather,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1704,{},{},{} -31794,Costume_Puppy_Ears_Hat,C Puppy_Ears_Hat,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,827,{},{},{} -31795,C_Elephangel_TH_Mid,C Elephangel Mid,4,0,,,,,,,0xFFFFFFFF,63,2,2048,,1,0,1745,{},{},{} -31796,Costume_Drooping_Boto,C Drooping Boto,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,657,{},{},{} -31797,Costume_Shih_Tzu_Hair,C Shih Tzu Hair,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1921,{},{},{} -31798,C_Baby_Panda,C Baby Panda,4,0,,,,,,,0xFFFFFFFF,63,2,2048,,1,0,1922,{},{},{} -31799,C_Pretty_Bear_WH,C Pretty White Bear,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1923,{},{},{} -31800,Costume_BR_Twin_Ribbon,C Brazil Twin Ribbon,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,575,{},{},{} -31801,Costume_Karada_Meguri_Tea_Hat,C Karada Meguri Tea Hat,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,427,{},{},{} -31802,Costume_Royal_Milk_Tea_Hat,C Black Tea Kochakaden Hat,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,428,{},{},{} -31803,Costume_Master_Of_Wind,C Master of Wind,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1924,{},{},{} -31813,Costume_Lunatic_On_Shoulder,C Lunatic On Shoulder,4,0,,,,,,,0xFFFFFFFF,63,2,2048,,1,0,1881,{},{},{} -31814,Costume_Lunatic_Family_Balloon,C Lunatic Family Balloon,4,0,,,,,,,0xFFFFFFFF,63,2,2048,,1,0,1809,{},{},{} -31815,Costume_Angola_Intention,C Angola Intention,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1925,{},{},{} -31816,Costume_Moon_Messenger_Robe,C Moon Messenger Robe,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1926,{},{},{} -31817,Costume_Rabbit_Two_Side_Up,C Rabbit Two Side Up,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1927,{},{},{} -31819,Costume_Dullahan_Mask,C Dullahan Mask,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1931,{},{},{} -31823,Costume_Nose_Glasses,C Nose Glasses,4,0,,,,,,,0xFFFFFFFF,63,2,2048,,1,0,1933,{},{},{} -31824,Costume_Cat_Mask,C Mask of Cat,4,0,,,,,,,0xFFFFFFFF,63,2,2048,,1,0,1934,{},{},{} -31826,Costume_Sunglass_Bear_Cap,C Sunglass Bear Cap,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1935,{},{},{} -31827,Costume_Durumagi,C Durumagi,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1936,{},{},{} -31831,Costume_Disguise_Mantle,C Disguise Mantle,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1937,{},{},{} -31832,C_Bicolor_Cat_Witch_Hat,C Bicolor Cat Witch Hat,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1938,{},{},{} -31833,C_Halloween_CatShort,C Halloween Short Haired Cat Ears,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1939,{},{},{} -31834,C_Halloween_Cat_Long,C Halloween Long Haired Cat Ears,4,0,,,,,,,0xFFFFFFFF,63,2,4096,,1,0,1940,{},{},{} -31837,Costume_Shark_Head,C Shark Head,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1919,{},{},{} -31840,Costume_BJ_Headset_A,C BJ Headset,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1942,{},{},{} -31841,Costume_BJ_Headset_B,C OnAir BJ Headset,4,0,,,,,,,0xFFFFFFFF,63,2,1024,,1,0,1943,{},{},{} -31884,C_Magic_Helm,Costume Magic Helm,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1917,{},{},{} -//=================================================================== -// More 1-Handed Spears -//=================================================================== -32005,Illusion_Pole_Axe,Illusion Pole Axe,5,0,,1500,190,,3,2,0x00004082,63,2,2,4,120,1,4,{ .@r = getrefine(); bonus bStr,3; bonus bInt,2; bonus bDex,2; if (.@r >= 13) { .@val = -2000; } else if (.@r >= 9) { .@val = -1000; } bonus2 bSkillCooldown,"RK_HUNDREDSPEAR",.@val; },{},{} -32013,Metal_Stick,Metal Stick,5,0,0,2000,180,,3,3,0x00004080,56,2,2,4,150,1,4,{ .@r = getrefine(); bonus2 bSkillAtk,"LG_CANNONSPEAR",10; if(.@r > 6){ bonus2 bSkillAtk,"LG_OVERBRAND",10 + (.@r > 8 ? 15 : 0); } if(.@r > 11){ bonus bDelayrate,-15; } },{},{} -32014,Brute_Spear,Brute Spear,5,0,0,,150,,3,0,0x00004080,56,2,2,4,100,1,4,{ .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bIgnoreDefRaceRate,RC_All,5*.@r; bonus2 bAddRace,RC_Player_Human,80 + (.@r > 8 ? 20 : 0) + (.@r > 7 ? 35 : 0); if(.@r > 9){ bonus bMaxHPrate,15; bonus bMaxSPrate,15; } },{},{} -32019,Boost_Lance-OS,Boost Lance-OS,5,20,,1000,190,,3,2,0x00004000,56,2,2,4,130,1,4,{ .@r = getrefine(); .@aspd = 3; if (.@r >= 7) { .@aspd += 7; if (.@r >= 9) { .@dmg = 20; if (.@r >= 11) { .@dmg += 15; } bonus2 bSkillAtk,"LG_BANISHINGPOINT",.@dmg; } } bonus bAspdRate,.@aspd; },{},{} -32023,Argen_Blanco,Argen Blanco,5,20,,1000,200,,3,2,0x00000080,56,2,2,4,170,1,4,{ .@r = getrefine(); bonus2 bSkillAtk,"KN_BRANDISHSPEAR",30; bonus bBaseAtk,4*.@r; if (.@r>=9) bonus2 bSkillCooldown,"RK_HUNDREDSPEAR",-1500; if (.@r>=11) bonus2 bSkillAtk,"KN_BRANDISHSPEAR",20; },{},{} -32024,Harve,Harve,5,20,,1500,210,,3,2,0x00004000,56,2,2,4,170,1,4,{ .@r = getrefine(); bonus2 bSkillAtk,"PA_SHIELDCHAIN",40; bonus bLongAtkRate,.@r; if (.@r>=9) bonus2 bSkillAtk,"LG_SHIELDPRESS",30; if (.@r>=11) { bonus2 bSkillAtk,"PA_SHIELDCHAIN",20; bonus2 bSkillAtk,"LG_SHIELDPRESS",20; } },{},{} -32025,Fortridge,Fortridge,5,20,,1700,205,,3,2,0x00004000,56,2,2,4,170,1,4,{ .@r = getrefine(); bonus bDelayrate,-.@r; bonus2 bAddClass,Class_All,5; if (.@r>=9) bonus2 bSkillAtk,"LG_CANNONSPEAR",20; if (.@r>=11) bonus2 bSkillAtk,"LG_OVERBRAND",20; },{},{} -//=================================================================== -// More Instruments -//=================================================================== -32107,Black_Circle,Black Circle,5,,,1200,100:190,,2,2,0x00080000,56,1,2,4,170,1,14,{ .@r = getrefine(); bonus bMatk,4*.@r; bonus2 bMagicAtkEle,Ele_Neutral,10; if (.@r>=9) bonus2 bSkillAtk,"WM_METALICSOUND",30; if (.@r>=11) bonus2 bSkillCooldown,"WM_METALICSOUND",-2000; },{},{} -32108,Antique_Cello,Antique Cello,5,0,,1200,180,,2,2,0x00080000,56,1,2,4,170,1,13,{ .@r = getrefine(); bonus bVariableCastrate,-10; bonus bLongAtkRate,.@r; if (.@r>=9) bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-1000; if (.@r>=11) bonus2 bSkillUseSPrate,"WM_SEVERE_RAINSTORM",20; },{},{} -//=================================================================== -// More Accessories -//=================================================================== -32203,Accelerator_Chip,Accelerator Chip,4,20,,100,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bAspdRate,5; },{},{} -32204,Immortal_Dog_Tag,Immortal Dog Tag,4,20,,100,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus bBaseAtk,50; bonus bMatk,50; bonus2 bSubRace,RC_Undead,4; },{},{} -32206,Prontera_Militia_Glove,Prontera Militia Glove,4,20,,100,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus bVit,5; bonus bMdef,5; bonus bAspdRate,5; bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3; bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Earth,5; bonus2 bSubEle,Ele_Wind,5; bonus2 bSubEle,Ele_Fire,5; },{},{} -32207,Illusion_Booster_R,Illusion Booster R,4,20,,100,,0,,1,0xFFFFFFFF,63,2,8,,130,0,0,{ bonus2 bAddClass,Class_All,5; },{},{} -32208,Illusion_Booster_L,Illusion Booster L,4,20,,100,,0,,1,0xFFFFFFFF,63,2,128,,130,0,0,{ bonus2 bAddClass,Class_All,5; },{},{} -32209,Illusion_Battle_chip_R,Illusion Battle chip R,4,20,,100,,0,,1,0xFFFFFFFF,63,2,8,,130,0,0,{ bonus bMatkRate,5; },{},{} -32210,Illusion_Battle_chip_L,Illusion Battle chip L,4,20,,100,,0,,1,0xFFFFFFFF,63,2,128,,130,0,0,{ bonus bMatkRate,5; },{},{} -32222,Brooch_of_Hero,Brooch of Hero,4,20,,400,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; if((eaclass()&EAJL_THIRD && BaseJob == Job_Knight) || ((eaclass()&EAJL_THIRD && BaseJob == Job_Crusader))) { bonus bMaxHPrate,10; bonus2 bAddRace,RC_All,5; } if((eaclass()&EAJL_THIRD && BaseJob == Job_Priest) || ((eaclass()&EAJL_THIRD && BaseJob == Job_Monk))) { bonus bAspdRate,10; bonus2 bAddRace,RC_All,5; } if((eaclass()&EAJL_THIRD && BaseJob == Job_Blacksmith) || ((eaclass()&EAJL_THIRD && BaseJob == Job_Alchemist))) { bonus bUseSPrate,-10; bonus2 bAddRace,RC_All,5; } },{},{} -32227,Hrodvitnir's_Chain,Hrodvitnir's Chain,4,20,,300,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus bAspdRate,5; bonus bDelayrate,-5; skill "AL_TELEPORT",1; },{},{} -32228,Schmidt_Insignia_Power,King Schmidt's Power Insignia,4,0,0,200,,10,,1,0xFFFFFFFF,63,2,128,,150,,,{ bonus2 bAddClass,Class_All,10; },{},{} -32229,Schmidt_Insignia_Divine_Power,King Schmidt's Divine Power Insignia,4,0,0,200,,10,,1,0xFFFFFFFF,63,2,128,,150,,,{ bonus bMatkRate,10; },{},{} -32230,Schmidt_Insignia_Hundred_Lucks,King Schmidt's Hundred Lucks Insignia,4,0,0,200,,10,,1,0xFFFFFFFF,63,2,128,,150,,,{ bonus bCritAtkRate,7; },{},{} -32231,Schmidt_Insignia_Rigid_Body,King Schmidt's Rigid Body Insignia,4,0,0,200,,10,,1,0xFFFFFFFF,63,2,128,,150,,,{ bonus bMaxHPrate,10; },{},{} -32232,Schmidt_Insignia_Flash,King Schmidt's Flash Insignia,4,0,0,200,,10,,1,0xFFFFFFFF,63,2,128,,150,,,{ bonus bAspdRate,5; },{},{} -32233,Schmidt_Insignia_Celestial,King Schmidt's Celestial Insignia,4,0,,200,,10,,1,0xFFFFFFFF,63,2,128,,150,,,{ bonus bLongAtkRate,7; },{},{} -32234,Warrior's_Ring,Warrior's Ring,4,0,,300,,0,,1,0xFFFFFFFF,63,2,136,,100,,,{ bonus2 bAddClass,Class_All,5; bonus2 bMagicAddClass,Class_All,5; bonus2 bAddEle,Ele_Wind,10; bonus2 bAddEle,Ele_Earth,10; bonus2 bMagicAddEle,Ele_Wind,10; bonus2 bMagicAddEle,Ele_Earth,10; bonus2 bSubEle,Ele_Wind,5; bonus2 bSubEle,Ele_Earth,5; },{},{} -32237,Celine's_Brooch,Celine's Brooch,4,10,,500,,0,,1,0xFFFFFFFE,63,2,136,,100,0,0,{ bonus bMatkRate,5; bonus bVariableCastrate,-10; },{},{} -32238,Illusion_Morpheus's_Ring,Illusion Morpheus's Ring,4,20,,100,,0,,1,0xFFFFFFFF,63,2,8,,130,0,0,{ bonus bInt,3; bonus bMaxSPrate,5; },{},{} -32239,Illusion_Morpheus's_Bracelet,Illusion Morpheus's Bracelet,4,20,,100,,0,,1,0xFFFFFFFF,63,2,128,,130,0,0,{ bonus bInt,3; bonus bMaxSPrate,5; },{},{} -32242,Old_Detachment_Ring,Old Detachment Ring,4,20,,0,,0,,0,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus bMdef,10; bonus2 bSubRace,RC_Player_Human,3; },{},{} -32258,Ring_of_Jupiter,Ring of Jupiter,4,20,,500,,2,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ skill "AL_BLESSING",5; if (getequipid(EQI_ACC_R) == 32258) { bonus bBaseAtk,15*(readparam(bLuk)/10); bonus bMatk,15*(readparam(bLuk)/10); if (readparam(bLuk) >= 125) { bonus2 bAddClass,Class_Boss,15; bonus2 bMagicAddClass,Class_Boss,15; } } if (getequipid(EQI_ACC_L) == 32258) { bonus bMaxHPRate,2*(readparam(bVit)/10); bonus bMaxSPRate,2*(readparam(bVit)/10); if (readparam(bVit) >= 125) { bonus bDef,300; bonus bMdef,50; bonus2 bSubRace,RC_Player_Human,3; } } },{},{} -32262,Rasen_Fuma_Orb,Rasen Fuma's Orb,4,20,,100,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus bStr,5; bonus bAgi,5; bonus bVit,5; bonus2 bAddClass,Class_All,5; if (getskilllv("KO_ZANZOU")>=5) { bonus2 bSkillAtk,"KO_HUUMARANKA",Baselevel/4; bonus2 bSkillAtk,"NJ_HUUMA",2*(Baselevel/4); } if (getskilllv("KO_KYOUGAKU")>=5) { bonus2 bSkillUseSP,"KO_HUUMARANKA",10; bonus2 bSkillCooldown,"KO_HUUMARANKA",-100; } if (getskilllv("KO_MUCHANAGE")==10) { bonus2 bHPDrainRate,50,1; } if (getskilllv("KO_MEIKYOUSISUI")>=5) { bonus bSPDrainValue,2; bonus2 bSkillCooldown,"KO_IZAYOI",-25000; } if (getskilllv("KO_SETSUDAN")>=5) { bonus2 bVariableCastrate,"KO_HUUMARANKA",-50; } },{},{} -32263,Shield_Ring,Shield Ring,4,20,,400,,0,,1,0xFFFFFFFF,63,2,136,,100,0,0,{ bonus bStr,5; bonus bInt,5; bonus bDex,5; bonus2 bAddClass,Class_All,5; if (getskilllv("LG_EARTHDRIVE")==5) bonus bDelayrate,-30; if (getskilllv("LG_INSPIRATION")==5) bonus2 bSkillCooldown,"LG_EARTHDRIVE",-1500; if (getskilllv("CR_DEVOTION")==5) { bonus bStr,5; bonus bInt,5; bonus bDex,5; bonus bBaseAtk,100; } if (getskilllv("LG_PINPOINTATTACK")==5) { bonus2 bSkillVariableCast,"LG_EARTHDRIVE",-500; bonus2 bSkillUseSP,"LG_EARTHDRIVE",25; } },{},{} -//=================================================================== -// More Guns -//=================================================================== -32301,Illusion_Gold_Lux,Illusion Gold Lux,5,20,,1800,160,,7,2,0x41000000,63,2,34,4,120,1,17,{ .@r = getrefine(); bonus bHit,10; bonus bLongAtkRate,3*(.@r/2); if (.@r >= 7) { bonus2 bSkillAtk,"GS_DESPERADO",40; if (.@r >= 9) { bonus2 bSkillCooldown,"RL_HEAT_BARREL",-2000; if (.@r >= 11) { bonus2 bSkillAtk,"RL_FIREDANCE",30; } } } },{},{} -32302,Crimson_Rose,Crimson Rose,5,20,,700,150,,7,2,0x40000000,63,2,34,4,100,1,17,{ .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,3*(.@r/3); if (.@r >= 7) { bonus bAspd,1; bonus2 bAddClass,Class_All,5; if (.@r >= 9) { bonus bCritAtkRate,20; if (.@r >= 11) { autobonus3 "{ bonus bCritical,20; bonus bLongAtkRate,15; }",1000,60000,"RL_HEAT_BARREL"; } } } },{},{} -//=================================================================== -// More 1-Handed Swords -//=================================================================== -32350,Farthezan,Farthezan,5,20,,1100,130:180,,1,2,0x00004000,56,2,2,4,170,1,2,{ .@r = getrefine(); bonus2 bSkillAtk,"PA_PRESSURE",40; bonus bVariableCastrate,-.@r; if (.@r>=9) bonus2 bSkillAtk,"LG_RAYOFGENESIS",30; if (.@r>=11) { bonus2 bSkillAtk,"LG_RAYOFGENESIS",20; bonus2 bSkillAtk,"PA_PRESSURE",20; } },{},{} -32351,Estal,Estal,5,20,,700,195,,1,2,0x00040000,56,2,2,4,170,1,2,{ .@r = getrefine(); bonus2 bSkillCooldown,"GN_SPORE_EXPLOSION",-1000; bonus bBaseAtk,4*.@r; if (.@r>=11) .@val = 50; else if (.@r>=9) .@val = 30; bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",.@val; },{},{} - -//100052,Enchant_Stone_Box19,Costume Enchantment Stone Box 19,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Enchant_Stone_Box19); },{},{} - -//=================================================================== -// New Warlock Spell Books -//=================================================================== -100065,WL_MB_SG,Spell Book (Storm Gust),11,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "WL_READING_SB_READING",1; },{},{} -100066,WL_MB_LOV,Spell Book (Lord of Vermilion),11,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "WL_READING_SB_READING",2; },{},{} -100067,WL_MB_MS,Spell Book (Meteor Storm),11,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "WL_READING_SB_READING",3; },{},{} -100068,WL_MB_DL,Spell Book (Drain Life),11,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "WL_READING_SB_READING",4; },{},{} -100069,WL_MB_JF,Spell Book (Jack Frost),11,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "WL_READING_SB_READING",5; },{},{} -100070,WL_MB_ES,Spell Book (Earth Strain),11,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "WL_READING_SB_READING",6; },{},{} -100071,WL_MB_CR,Spell Book (Crimson Rock),11,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "WL_READING_SB_READING",7; },{},{} -100072,WL_MB_CL,Spell Book (Chain Lightning),11,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "WL_READING_SB_READING",8; },{},{} -100073,WL_MB_CM,Spell Book (Comet),11,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "WL_READING_SB_READING",9; },{},{} -100074,WL_MB_TV,Spell Book (Tetra Vortex),11,0,,0,,,,,0xFFFFFFFF,63,2,,,,,,{ itemskill "WL_READING_SB_READING",10; },{},{} - -100128,Noblesses_Refine_Ticket,Noblesses Refine Ticket,11,20,,0,,,,,0xFFFFFFFF,63,2,,,100,,,{ /*upgradeui 100128;*/ },{},{} -100129,Imperial_Refine_Ticket,Imperial Refine Ticket,11,20,,0,,,,,0xFFFFFFFF,63,2,,,125,,,{ /*upgradeui 100129;*/ },{},{} -100130,Grace_Refine_Ticket,Grace Refine Ticket,11,20,,0,,,,,0xFFFFFFFF,63,2,,,150,,,{ /*upgradeui 100130;*/ },{},{} -100131,Imperial_P_Mo_Garment,Imperial Physical Modification Permit (Garment),11,20,,0,,,,,0xFFFFFFFF,63,2,,,125,,,{ /*upgradeui 100131;*/ },{},{} -100132,Imperial_M_Mo_Garment,Imperial Magical Modification Permit (Garment),11,20,,0,,,,,0xFFFFFFFF,63,2,,,125,,,{ /*upgradeui 100132;*/ },{},{} -100133,Grace_P_Mo_Garment,Grace Physical Modification Permit (Garment),11,20,,0,,,,,0xFFFFFFFF,63,2,,,150,,,{ /*upgradeui 100133;*/ },{},{} -100134,Grace_M_Mo_Garment,Grace Magical Modification Permit (Garment),11,20,,0,,,,,0xFFFFFFFF,63,2,,,150,,,{ /*upgradeui 100134;*/ },{},{} -100135,Imperial_P_Mo_Armor,Imperial Physical Modification Permit (Armor),11,20,,0,,,,,0xFFFFFFFF,63,2,,,125,,,{ /*upgradeui 100135;*/ },{},{} -100136,Imperial_M_Mo_Armor,Imperial Magical Modification Permit (Armor),11,20,,0,,,,,0xFFFFFFFF,63,2,,,125,,,{ /*upgradeui 100136;*/ },{},{} -100137,Grace_P_Mo_Armor,Grace Physical Modification Permit (Armor),11,20,,0,,,,,0xFFFFFFFF,63,2,,,150,,,{ /*upgradeui 100137;*/ },{},{} -100138,Grace_M_Mo_Armor,Grace Magical Modification Permit (Armor),11,20,,0,,,,,0xFFFFFFFF,63,2,,,150,,,{ /*upgradeui 100138;*/ },{},{} - -//100202,Enchant_Stone_Box20,Costume Enchantment Stone Box 20,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Enchant_Stone_Box20); },{},{} - -100231,Ref_T_Potion,Golden X,0,10,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_REF_T_POTION,30000,0; },{},{} -100232,Add_Atk_Potion,Red Herb Activator,0,10,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ADD_ATK_DAMAGE,500000,15; },{},{} -100233,Add_Matk_Potion,Blue Herb Activator,0,10,,30,,,,,0xFFFFFFFF,63,2,,,,,,{ sc_start SC_ADD_MATK_DAMAGE,500000,15; },{},{} - -//100314,Enchant_Stone_Box21,Costume Enchantment Stone Box 21,2,10,,10,,,,0,0xFFFFFFFF,63,2,,,1,,,{ getgroupitem(IG_Enchant_Stone_Box21); },{},{} - -100402,Thousand_Sun_Cube,Thousand Sun Modification Cube,11,,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*synthesisui 100402;*/ },{},{} -100403,Spirit_Pendulum_Cube,Spirit Pendulum Modification Cube,11,,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*synthesisui 100403;*/ },{},{} -100404,Crimson_Rose_Cube,Crimson Rose Modification Cube,11,,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*synthesisui 100404;*/ },{},{} -100405,Master_Soul_Rifle_Cube,Master Soul Rifle Modification Cube,11,,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*synthesisui 100405;*/ },{},{} -100406,Golden_Lord_Launcher_Cube,Golden Lord Launcher Modification Cube,11,,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*synthesisui 100406;*/ },{},{} -100407,The_Black_Cube,The Black Modification Cube,11,,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*synthesisui 100407;*/ },{},{} -100408,Demon_Slayer_Shot_Cube,Demon Slayer Shot Modification Cube,11,,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ /*synthesisui 100408;*/ },{},{} - -// Costumes -//400020,C_BeachBall,Costume Beachball,4,0,,0,,,,0,0xFFFFFFFF,63,2,1024,,1,0,1918,{},{},{} -//440000,C_SharkHead,Costume Shark Hat,4,0,,0,,,,0,0xFFFFFFFF,63,2,5120,,1,0,1919,{},{},{} -//440002,C_Happy_Cat_TW,Costume Happy Cat,4,0,,0,,,,0,0xFFFFFFFF,63,2,7168,,1,0,1980,{},{},{} -// New Armor -450018,Noblesse_Breath_Armor,Noblesse Breath Armor,4,20,,0,,100,,1,0x00000080,56,2,16,,100,1,,{ .@r = getrefine(); bonus bMaxHPrate,5; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus bMaxHPrate,5; },{},{} -450019,Noblesse_Knight_Armor,Noblesse Knight Armor,4,20,,0,,100,,1,0x00000080,56,2,16,,100,1,,{ .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bCritAtkRate,5; },{},{} -450020,Noblesse_Spear_Armor,Noblesse Spear Armor,4,20,,0,,100,,1,0x00004000,56,2,16,,100,1,,{ .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bLongAtkRate,5; },{},{} -450021,Noblesse_Genesis_Armor,Noblesse Genesis Armor,4,20,,0,,100,,1,0x00004000,56,2,16,,100,1,,{ .@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Holy,5; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Holy,5; },{},{} -450022,Noblesse_Sharp_Suit,Noblesse Sharp Suit,4,20,,0,,70,,1,0x00000800,56,2,16,,100,1,,{ .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bLongAtkRate,5; },{},{} -450023,Noblesse_Aimed_suit,Noblesse Aimed suit,4,20,,0,,70,,1,0x00000800,56,2,16,,100,1,,{ .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bLongAtkRate,5; },{},{} -450024,Noblesse_Severe_Suit,Noblesse Severe Suit,4,20,,0,,70,,1,0x00080000,56,2,16,,100,1,,{ .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus bLongAtkRate,5; },{},{} -450025,Noblesse_Reverb_Suit,Noblesse Reverb Suit,4,20,,0,,70,,1,0x00080000,56,2,16,,100,1,,{ .@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Neutral,5; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,5; },{},{} -450026,Noblesse_Adora_Robe,Noblesse Adora Robe,4,20,,0,,70,,1,0x00000100,56,2,16,,100,1,,{ .@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Holy,5; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Holy,5; },{},{} -450027,Noblesse_Duple_Robe,Noblesse Duple Robe,4,20,,0,,70,,1,0x00000100,56,2,16,,100,1,,{ .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bCritAtkRate,5; },{},{} -450028,Noblesse_Tornado_Armor,Noblesse Tornado Armor,4,20,,0,,70,,1,0x00000400,56,2,16,,100,1,,{ .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus2 bAddSize,Size_All,5; },{},{} -450029,Noblesse_Vulcan_Armor,Noblesse Vulcan Armor,4,20,,0,,70,,1,0x00000400,56,2,16,,100,1,,{ .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bLongAtkRate,5; },{},{} -450030,Noblesse_Cart_Cannon_Suit,Noblesse Cart Cannon Suit,4,20,,0,,70,,1,0x00040000,56,2,16,,100,1,,{ .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus bLongAtkRate,5; },{},{} -450031,Noblesse_Cart_Tornado_Suit,Noblesse Cart Tornado Suit,4,20,,0,,70,,1,0x00040000,56,2,16,,100,1,,{ .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus2 bAddSize,Size_All,5; },{},{} -450032,Noblesse_Rolling_Suit,Noblesse Rolling Suit,4,20,,0,,70,,1,0x00001000,56,2,16,,100,1,,{ .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bLongAtkRate,5; },{},{} -450033,Noblesse_Assassin_Suit,Noblesse Assassin Suit,4,20,,0,,70,,1,0x00001000,56,2,16,,100,1,,{ .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bCritAtkRate,5; },{},{} -450034,Noblesse_Fatal_Suit,Noblesse Fatal Suit,4,20,,0,,70,,1,0x00020000,56,2,16,,100,1,,{ .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus2 bAddSize,Size_All,5; },{},{} -450035,Noblesse_Stalker_Suit,Noblesse Stalker Suit,4,20,,0,,70,,1,0x00020000,56,2,16,,100,1,,{ .@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Fire,5; },{},{} -450036,Noblesse_Picky_Robe,Noblesse Picky Robe,4,20,,0,,70,,1,0x80000000,7,2,16,,100,1,,{ .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus bLongAtkRate,5; },{},{} -450037,Noblesse_Catnip_Robe,Noblesse Catnip Robe,4,20,,0,,70,,1,0x80000000,7,2,16,,100,1,,{ .@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,5; },{},{} -450038,Noblesse_Trip_Suit,Noblesse Trip Suit,4,20,,0,,70,,1,0x40000000,63,2,16,,100,0,,{ .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus2 bAddClass,Class_All,5; if(.@r>=9) bonus bLongAtkRate,5; },{},{} -450039,Noblesse_Fire_Rain_Suit,Noblesse Fire Rain Suit,4,20,,0,,70,,1,0x40000000,63,2,16,,100,1,,{ .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus2 bAddClass,Class_All,5; if(.@r>=9) bonus bLongAtkRate,5; },{},{} -450040,Noblesse_Crimson_Robe,Noblesse Crimson Robe,4,20,,0,,70,,1,0x00000200,56,2,16,,100,1,,{ .@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Fire,5; },{},{} -450041,Noblesse_Frost_Robe,Noblesse Frost Robe,4,20,,0,,70,,1,0x00000200,56,2,16,,100,1,,{ .@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Water,5; },{},{} -450042,Noblesse_Psychic_Robe,Noblesse Psychic Robe,4,20,,0,,70,,1,0x00010000,56,2,16,,100,1,,{ .@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,5; },{},{} -450043,Noblesse_Dust_Robe,Noblesse Dust Robe,4,20,,0,,70,,1,0x00010000,56,2,16,,100,1,,{ .@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Water,5; },{},{} -450044,Noblesse_Sun_Suit,Noblesse Sun Suit,4,20,,0,,70,,1,0x00400000,56,2,16,,100,1,,{ .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus2 bAddClass,Class_All,5; },{},{} -450045,Noblesse_Moon_Suit,Noblesse Moon Suit,4,20,,0,,70,,1,0x00400000,56,2,16,,100,1,,{ .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus2 bAddSize,Size_All,5; if(.@r>=9) bonus2 bAddClass,Class_All,5; },{},{} -450046,Noblesse_Ninja_Suit,Noblesse Ninja Suit,4,20,,0,,70,,1,0x20000000,63,2,16,,100,1,,{ .@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_All,5; },{},{} -450047,Noblesse_Kunai_Suit,Noblesse Kunai Suit,4,20,,0,,70,,1,0x20000000,63,2,16,,100,1,,{ .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus2 bAddClass,Class_All,5; if(.@r>=9) bonus bLongAtkRate,5; },{},{} -450048,Noblesse_Eswhoo_Robe,Noblesse Eswhoo Robe,4,20,,0,,70,,1,0x00800000,56,2,16,,100,1,,{ .@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Dark,5; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Dark,5; },{},{} -450049,Noblesse_Explosion_Robe,Noblesse Explosion Robe,4,20,,0,,70,,1,0x00800000,56,2,16,,100,1,,{ .@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Dark,5; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Dark,5; },{},{} -450050,Noblesse_Knuckle_Suit,Noblesse Knuckle Suit,4,20,,0,,70,,1,0x00008000,56,2,16,,100,1,,{ .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bMaxSPrate,10; if(.@r>=9) bonus2 bAddSize,Size_All,5; },{},{} -450051,Noblesse_Tiger_Suit,Noblesse Tiger Suit,4,20,,0,,70,,1,0x00008000,56,2,16,,100,1,,{ .@r = getrefine(); bonus bMaxSPrate,5; if(.@r>=7) bonus bMaxHPrate,3; if(.@r>=9) bonus bMaxHPrate,3; },{},{} -450052,Imperial_Breath_Armor,Imperial Breath Armor,4,20,,0,,120,,1,0x00000080,56,2,16,,125,1,,{ .@r = getrefine(); bonus bMaxHPrate,7; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus bMaxHPrate,7; },{},{} -450053,Imperial_Knight_Armor,Imperial Knight Armor,4,20,,0,,120,,1,0x00000080,56,2,16,,125,1,,{ .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bCritAtkRate,7; },{},{} -450054,Imperial_Spear_Armor,Imperial Spear Armor,4,20,,0,,120,,1,0x00004000,56,2,16,,125,1,,{ .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bLongAtkRate,7; },{},{} -450055,Imperial_Genesis_Armor,Imperial Genesis Armor,4,20,,0,,120,,1,0x00004000,56,2,16,,125,1,,{ .@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Holy,7; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Holy,7; },{},{} -450056,Imperial_Sharp_Suit,Imperial Sharp Suit,4,20,,0,,90,,1,0x00000800,56,2,16,,125,1,,{ .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bLongAtkRate,7; },{},{} -450057,Imperial_Aimed_Suit,Imperial Aimed Suit,4,20,,0,,90,,1,0x00000800,56,2,16,,125,1,,{ .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bLongAtkRate,7; },{},{} -450058,Imperial_Severe_Suit,Imperial Severe Suit,4,20,,0,,90,,1,0x00080000,56,2,16,,125,1,,{ .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus bLongAtkRate,7; },{},{} -450059,Imperial_Reverb_Suit,Imperial Reverb Suit,4,20,,0,,90,,1,0x00080000,56,2,16,,125,1,,{ .@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Neutral,7; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,7; },{},{} -450060,Imperial_Adora_Robe,Imperial Adora Robe,4,20,,0,,90,,1,0x00000100,56,2,16,,125,1,,{ .@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Holy,7; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Holy,7; },{},{} -450061,Imperial_Duple_Robe,Imperial Duple Robe,4,20,,0,,90,,1,0x00000100,56,2,16,,125,1,,{ .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bCritAtkRate,7; },{},{} -450062,Imperial_Knuckle_Suit,Imperial Knuckle Suit,4,20,,0,,90,,1,0x00008000,56,2,16,,125,1,,{ .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bMaxSPrate,15; if(.@r>=9) bonus2 bAddSize,Size_All,7; },{},{} -450063,Imperial_Tiger_Suit,Imperial Tiger Suit,4,20,,0,,90,,1,0x00008000,56,2,16,,125,1,,{ .@r = getrefine(); bonus bMaxSPrate,7; if(.@r>=7) bonus bMaxHPrate,4; if(.@r>=9) bonus bMaxHPrate,4; },{},{} -450064,Imperial_Tornado_Armor,Imperial Tornado Armor,4,20,,0,,90,,1,0x00000400,56,2,16,,125,1,,{ .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus2 bAddSize,Size_All,7; },{},{} -450065,Imperial_Vulcan_Armor,Imperial Vulcan Armor,4,20,,0,,90,,1,0x00000400,56,2,16,,125,1,,{ .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bLongAtkRate,7; },{},{} -450066,Imperial_Cart_Cannon_Suit,Imperial Cart Cannon Suit,4,20,,0,,90,,1,0x00040000,56,2,16,,125,1,,{ .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus bLongAtkRate,7; },{},{} -450067,Imperial_Cart_Tornado_Suit,Imperial Cart Tornado Suit,4,20,,0,,90,,1,0x00040000,56,2,16,,125,1,,{ .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus2 bAddSize,Size_All,7; },{},{} -450068,Imperial_Rolling_Suit,Imperial Rolling Suit,4,20,,0,,90,,1,0x00001000,56,2,16,,125,1,,{ .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bLongAtkRate,7; },{},{} -450069,Imperial_Assassin_Suit,Imperial Assassin Suit,4,20,,0,,90,,1,0x00001000,56,2,16,,125,1,,{ .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bCritAtkRate,7; },{},{} -450070,Imperial_Fatal_Suit,Imperial Fatal Suit,4,20,,0,,90,,1,0x00020000,56,2,16,,125,1,,{ .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus2 bAddSize,Size_All,7; },{},{} -450071,Imperial_Stalker_Suit,Imperial Stalker Suit,4,20,,0,,90,,1,0x00020000,56,2,16,,125,1,,{ .@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Fire,7; },{},{} -450072,Imperial_Picky_Robe,Imperial Picky Robe,4,20,,0,,90,,1,0x80000000,7,2,16,,125,1,,{ .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus bLongAtkRate,7; },{},{} -450073,Imperial_Catnip_Robe,Imperial Catnip Robe,4,20,,0,,90,,1,0x80000000,7,2,16,,125,1,,{ .@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,7; },{},{} -450074,Imperial_Trip_Suit,Imperial Trip Suit,4,20,,0,,90,,1,0x40000000,63,2,16,,125,1,,{ .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus2 bAddClass,Class_All,7; if(.@r>=9) bonus bLongAtkRate,7; },{},{} -450075,Imperial_Fire_Rain_Suit,Imperial Fire Rain Suit,4,20,,0,,90,,1,0x40000000,63,2,16,,125,1,,{ .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus2 bAddClass,Class_All,7; if(.@r>=9) bonus bLongAtkRate,7; },{},{} -450076,Imperial_Crimson_Robe,Imperial Crimson Robe,4,20,,0,,90,,1,0x00000200,56,2,16,,125,1,,{ .@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Fire,7; },{},{} -450077,Imperial_Frost_Robe,Imperial Frost Robe,4,20,,0,,90,,1,0x00000200,56,2,16,,125,1,,{ .@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Water,7; },{},{} -450078,Imperial_Psychic_Robe,Imperial Psychic Robe,4,20,,0,,90,,1,0x00010000,56,2,16,,125,1,,{ .@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,7; },{},{} -450079,Imperial_Dust_Robe,Imperial Dust Robe,4,20,,0,,90,,1,0x00010000,56,2,16,,125,1,,{ .@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Water,7; },{},{} -450080,Imperial_Sun_Suit,Imperial Sun Suit,4,20,,0,,90,,1,0x00400000,56,2,16,,125,1,,{ .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus2 bAddClass,Class_All,7; },{},{} -450081,Imperial_Moon_Suit,Imperial Moon Suit,4,20,,0,,90,,1,0x00400000,56,2,16,,125,1,,{ .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus2 bAddSize,Size_All,7; if(.@r>=9) bonus2 bAddClass,Class_All,7; },{},{} -450082,Imperial_Ninja_Suit,Imperial Ninja Suit,4,20,,0,,90,,1,0x20000000,63,2,16,,125,1,,{ .@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus2 bMagicAtkEle,Ele_All,7; },{},{} -450083,Imperial_Kunai_Suit,Imperial Kunai Suit,4,20,,0,,90,,1,0x20000000,63,2,16,,125,1,,{ .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus2 bAddClass,Class_All,7; if(.@r>=9) bonus bLongAtkRate,7; },{},{} -450084,Imperial_Eswhoo_Robe,Imperial Eswhoo Robe,4,20,,0,,90,,1,0x00800000,56,2,16,,125,1,,{ .@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Dark,7; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Dark,7; },{},{} -450085,Imperial_Explosion_Robe,Imperial Explosion Robe,4,20,,0,,90,,1,0x00800000,56,2,16,,125,1,,{ .@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Dark,7; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Dark,7; },{},{} -450086,Grace_Breath_Armor,Grace Breath Armor,4,20,,0,,130,,1,0x00000080,56,2,16,,150,1,,{ .@r = getrefine(); bonus bMaxHPrate,10; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus bMaxHPrate,10; },{},{} -450087,Grace_Knight_Armor,Grace Knight Armor,4,20,,0,,130,,1,0x00000080,56,2,16,,150,1,,{ .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bCritAtkRate,10; },{},{} -450088,Grace_Spear_Armor,Grace Spear Armor,4,20,,0,,130,,1,0x00004000,56,2,16,,150,1,,{ .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bLongAtkRate,10; },{},{} -450089,Grace_Genesis_Armor,Grace Genesis Armor,4,20,,0,,130,,1,0x00004000,56,2,16,,150,1,,{ .@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Holy,10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Holy,10; },{},{} -450090,Grace_Sharp_Suit,Grace Sharp Suit,4,20,,0,,100,,1,0x00000800,56,2,16,,150,1,,{ .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bLongAtkRate,10; },{},{} -450091,Grace_Aimed_Suit,Grace Aimed Suit,4,20,,0,,100,,1,0x00000800,56,2,16,,150,1,,{ .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bLongAtkRate,10; },{},{} -450092,Grace_Severe_Suit,Grace Severe Suit,4,20,,0,,100,,1,0x00080000,56,2,16,,150,1,,{ .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus bLongAtkRate,10; },{},{} -450093,Grace_Reverb_Suit,Grace Reverb Suit,4,20,,0,,100,,1,0x00080000,56,2,16,,150,1,,{ .@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Neutral,10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,10; },{},{} -450094,Grace_Adora_Robe,Grace Adora Robe,4,20,,0,,100,,1,0x00000100,56,2,16,,150,1,,{ .@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Holy,10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Holy,10; },{},{} -450095,Grace_Duple_Robe,Grace Duple Robe,4,20,,0,,100,,1,0x00000100,56,2,16,,150,1,,{ .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bCritAtkRate,10; },{},{} -450096,Grace_Knuckle_Suit,Grace Knuckle Suit,4,20,,0,,100,,1,0x00008000,56,2,16,,150,1,,{ .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bMaxSPrate,20; if(.@r>=9) bonus2 bAddSize,Size_All,10; },{},{} -450097,Grace_Tiger_Suit,Grace Tiger Suit,4,20,,0,,100,,1,0x00008000,56,2,16,,150,1,,{ .@r = getrefine(); bonus bMaxSPrate,10; if(.@r>=7) bonus bMaxHPrate,5; if(.@r>=9) bonus bMaxHPrate,5; },{},{} -450098,Grace_Tornado_Armor,Grace Tornado Armor,4,20,,0,,100,,1,0x00000400,56,2,16,,150,1,,{ .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus2 bAddSize,Size_All,10; },{},{} -450099,Grace_Vulcan_Armor,Grace Vulcan Armor,4,20,,0,,100,,1,0x00000400,56,2,16,,150,1,,{ .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bLongAtkRate,10; },{},{} -450100,Grace_Cart_Cannon_Suit,Grace Cart Cannon Suit,4,20,,0,,100,,1,0x00040000,56,2,16,,150,1,,{ .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus bLongAtkRate,10; },{},{} -450101,Grace_Cart_Tornado_Suit,Grace Cart Tornado Suit,4,20,,0,,100,,1,0x00040000,56,2,16,,150,1,,{ .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus2 bAddSize,Size_All,10; },{},{} -450102,Grace_Rolling_Suit,Grace Rolling Suit,4,20,,0,,100,,1,0x00001000,56,2,16,,150,1,,{ .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bLongAtkRate,10; },{},{} -450103,Grace_Assassin_Suit,Grace Assassin Suit,4,20,,0,,100,,1,0x00001000,56,2,16,,150,1,,{ .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bCritAtkRate,10; },{},{} -450104,Grace_Fatal_Suit,Grace Fatal Suit,4,20,,0,,100,,1,0x00020000,56,2,16,,150,1,,{ .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus2 bAddSize,Size_All,10; },{},{} -450105,Grace_Stalker_Suit,Grace Stalker Suit,4,20,,0,,100,,1,0x00020000,56,2,16,,150,1,,{ .@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Fire,10; },{},{} -450106,Grace_Picky_Robe,Grace Picky Robe,4,20,,0,,100,,1,0x80000000,7,2,16,,150,1,,{ .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus bLongAtkRate,10; },{},{} -450107,Grace_Catnip_Robe,Grace Catnip Robe,4,20,,0,,100,,1,0x80000000,7,2,16,,150,1,,{ .@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,10; },{},{} -450108,Grace_Trip_Suit,Grace Trip Suit,4,20,,0,,100,,1,0x40000000,63,2,16,,150,1,,{ .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus2 bAddClass,Class_All,10; if(.@r>=9) bonus bLongAtkRate,10; },{},{} -450109,Grace_Fire_Rain_Suit,Grace Fire Rain Suit,4,20,,0,,100,,1,0x40000000,63,2,16,,150,1,,{ .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus2 bAddClass,Class_All,10; if(.@r>=9) bonus bLongAtkRate,10; },{},{} -450110,Grace_Crimson_Robe,Grace Crimson Robe,4,20,,0,,100,,1,0x00000200,56,2,16,,150,1,,{ .@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Fire,10; },{},{} -450111,Grace_Frost_Robe,Grace Frost Robe,4,20,,0,,100,,1,0x00000200,56,2,16,,150,1,,{ .@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Water,10; },{},{} -450112,Grace_Psychic_Robe,Grace Psychic Robe,4,20,,0,,100,,1,0x00010000,56,2,16,,150,1,,{ .@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,10; },{},{} -450113,Grace_Dust_Robe,Grace Dust Robe,4,20,,0,,100,,1,0x00010000,56,2,16,,150,1,,{ .@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Water,10; },{},{} -450114,Grace_Sun_Suit,Grace Sun Suit,4,20,,0,,100,,1,0x00400000,56,2,16,,150,1,,{ .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus2 bAddClass,Class_All,10; },{},{} -450115,Grace_Moon_Suit,Grace Moon Suit,4,20,,0,,100,,1,0x00400000,56,2,16,,150,1,,{ .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus2 bAddSize,Size_All,10; if(.@r>=9) bonus2 bAddClass,Class_All,10; },{},{} -450116,Grace_Ninja_Suit,Grace Ninja Suit,4,20,,0,,100,,1,0x20000000,63,2,16,,150,1,,{ .@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus2 bMagicAtkEle,Ele_All,10; },{},{} -450117,Grace_Kunai_Suit,Grace Kunai Suit,4,20,,0,,100,,1,0x20000000,63,2,16,,150,1,,{ .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus2 bAddClass,Class_All,10; if(.@r>=9) bonus bLongAtkRate,10; },{},{} -450118,Grace_Eswhoo_Robe,Grace Eswhoo Robe,4,20,,0,,100,,1,0x00800000,56,2,16,,150,1,,{ .@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Dark,10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Dark,10; },{},{} -450119,Grace_Explosion_Robe,Grace Explosion Robe,4,20,,0,,100,,1,0x00800000,56,2,16,,150,1,,{ .@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Dark,10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Dark,10; },{},{} -450121,Noblesse_Super_Novice_Suit,Noblesse Super Novice Suit,4,20,,0,,70,,1,0x00000001,63,2,16,,100,1,,{ .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bMaxHPrate,5; },{},{} -450122,Noblesse_Super_Novice_Robe,Noblesse Super Novice Robe,4,20,,0,,70,,1,0x00000001,63,2,16,,100,1,,{ .@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bMaxHPrate,5; },{},{} -450123,Imperial_Super_Novice_Suit,Imperial Super Novice Suit,4,20,,0,,90,,1,0x00000001,63,2,16,,125,1,,{ .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bMaxHPrate,7; },{},{} -450124,Imperial_Super_Novice_Robe,Imperial Super Novice Robe,4,20,,0,,90,,1,0x00000001,63,2,16,,125,1,,{ .@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bMaxHPrate,7; },{},{} -450125,Grace_Super_Novice_Suit,Grace Super Novice Suit,4,20,,0,,100,,1,0x00000001,63,2,16,,150,1,,{ .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bMaxHPrate,10; },{},{} -450126,Grace_Super_Novice_Robe,Grace Super Novice Robe,4,20,,0,,100,,1,0x00000001,63,2,16,,150,1,,{ .@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bMaxHPrate,10; },{},{} -// New Shoes -470016,Noblesse_Attack_Boots,Noblesse Attack Boots,4,0,,0,,20,,1,0xFFFFFFFF,63,2,64,,100,1,0,{ .@r = getrefine(); bonus bBaseAtk,10; bonus bHit,10; if (.@r>=7) bonus bFixedCast,-500; if (.@r>=9) bonus bLongAtkRate,5; },{},{} -470017,Noblesse_Magic_Boots,Noblesse Magic Boots,4,0,,0,,20,,1,0xFFFFFFFF,63,2,64,,100,1,0,{ .@r = getrefine(); bonus bMatk,10; bonus bFlee,10; if (.@r>=7) bonus bFixedCast,-500; if (.@r>=9) bonus2 bMagicAtkEle,Ele_All,5; },{},{} -470018,Imperial_Attack_Boots,Imperial Attack Boots,4,0,,0,,25,,1,0xFFFFFFFF,63,2,64,,125,1,0,{ .@r = getrefine(); bonus bBaseAtk,15; bonus bHit,15; if (.@r>=7) bonus bFixedCast,-500; if (.@r>=9) bonus bLongAtkRate,7; },{},{} -470019,Imperial_Magic_Boots,Imperial Magic Boots,4,0,,0,,25,,1,0xFFFFFFFF,63,2,64,,125,1,0,{ .@r = getrefine(); bonus bMatk,15; bonus bFlee,15; if (.@r>=7) bonus bFixedCast,-500; if (.@r>=9) bonus2 bMagicAtkEle,Ele_All,7; },{},{} -470020,Grace_Attack_Boots,Grace Attack Boots,4,0,,0,,30,,1,0xFFFFFFFF,63,2,64,,150,1,0,{ .@r = getrefine(); bonus bBaseAtk,20; bonus bHit,20; if (.@r>=7) bonus bFixedCast,-500; if (.@r>=9) bonus bLongAtkRate,10; },{},{} -470021,Grace_Magic_Boots,Grace Magic Boots,4,0,,0,,30,,1,0xFFFFFFFF,63,2,64,,150,1,0,{ .@r = getrefine(); bonus bMatk,20; bonus bFlee,20; if (.@r>=7) bonus bFixedCast,-500; if (.@r>=9) bonus2 bMagicAtkEle,Ele_All,10; },{},{} -// New Garment -480012,Noblesse_Attack_Manteau,Noblesse Attack Manteau,4,,,0,,20,,1,0xFFFFFFFF,63,2,4,,100,1,,{ .@r = getrefine(); bonus bAspdRate,3; if (.@r>=7) bonus bDelayrate,-5; if (.@r>=9) bonus2 bAddSize,Size_All,5; },{},{} -480014,Noblesse_Magic_Manteau,Noblesse Magic Manteau,4,,,0,,20,,1,0xFFFFFFFF,63,2,4,,100,1,,{ .@r = getrefine(); bonus bVariableCastrate,-5; if (.@r>=7) bonus bDelayrate,-5; if (.@r>=9) bonus2 bMagicAtkEle,Ele_All,5; },{},{} -480016,Imperial_Attack_Manteau,Imperial Attack Manteau,4,,,0,,25,,1,0xFFFFFFFF,63,2,4,,125,1,,{ .@r = getrefine(); bonus bAspdRate,5; if (.@r>=7) bonus bDelayrate,-5; if (.@r>=9) bonus2 bAddSize,Size_All,7; },{},{} -480017,Imperial_Magic_Manteau,Imperial Magic Manteau,4,,,0,,25,,1,0xFFFFFFFF,63,2,4,,125,1,,{ .@r = getrefine(); bonus bVariableCastrate,-7; if (.@r>=7) bonus bDelayrate,-5; if (.@r>=9) bonus2 bMagicAtkEle,Ele_All,7; },{},{} -480018,Grace_Attack_Manteau,Grace Attack Manteau,4,,,0,,30,,1,0xFFFFFFFF,63,2,4,,150,1,,{ .@r = getrefine(); bonus bAspdRate,7; if (.@r>=7) bonus bDelayrate,-5; if (.@r>=9) bonus2 bAddSize,Size_All,10; },{},{} -480019,Grace_Magic_Manteau,Grace Magic Manteau,4,,,0,,30,,1,0xFFFFFFFF,63,2,4,,150,1,,{ .@r = getrefine(); bonus bVariableCastrate,-10; if (.@r>=7) bonus bDelayrate,-5; if (.@r>=9) bonus2 bMagicAtkEle,Ele_All,10; },{},{} -// New Accessory -490014,Noblesse_Attack_Ring,Noblesse Attack Ring,4,0,,0,,5,,1,0xFFFFFFFF,63,2,8,,100,0,0,{ bonus bAspdRate,3; bonus bVariableCastrate,-5; bonus bCritAtkRate,5; },{},{} -490015,Noblesse_Magic_Ring,Noblesse Magic Ring,4,0,,0,,5,,1,0xFFFFFFFF,63,2,8,,100,0,0,{ bonus bAspdRate,3; bonus bVariableCastrate,-5; bonus2 bMagicAddEle,Ele_All,5; },{},{} -490017,Imperial_Attack_Ring,Imperial Attack Ring,4,0,,50,,0,,1,0xFFFFFFFF,63,2,8,,125,0,0,{ bonus bAspdRate,5; bonus bVariableCastrate,-7; bonus bCritAtkRate,7; },{},{} -490018,Imperial_Magic_Ring,Imperial Magic Ring,4,0,,50,,0,,1,0xFFFFFFFF,63,2,8,,125,0,0,{ bonus bAspdRate,5; bonus bVariableCastrate,-7; bonus2 bMagicAddEle,Ele_All,7; },{},{} -490019,Grace_Attack_Ring,Grace Attack Ring,4,0,,50,,0,,1,0xFFFFFFFF,63,2,8,,150,0,0,{ bonus bAspdRate,7; bonus bVariableCastrate,-10; bonus bCritAtkRate,10; },{},{} -490020,Grace_Magic_Ring,Grace Magic Ring,4,0,,50,,0,,1,0xFFFFFFFF,63,2,8,,150,0,0,{ bonus bAspdRate,7; bonus bVariableCastrate,-10; bonus2 bMagicAddEle,Ele_All,10; },{},{} - -500013,Up_Sword_Of_Bluefire,Patent Red Lotus Sword,5,,,1000,200,,1,2,0x00040000,56,2,2,4,150,1,2,{ .@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bLongAtkRate,.@r/3*4; if (.@r>=7){ bonus2 bSkillUseSPrate,"GN_CARTCANNON",-10; bonus bVariableCastrate,-7; } if (.@r>=9){ bonus2 bSkillAtk,"GN_CARTCANNON",20; } if (.@r>=11){ bonus bVariableCastrate,-5; bonus2 bSkillAtk,"CR_ACIDDEMONSTRATION",10; } },{},{} -500014,Up_Slate_Sword,Patent Slate Sword,5,,,1200,205,,1,2,0x00040000,56,2,2,4,150,1,2,{ .@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus2 bSkillAtk,"GN_CART_TORNADO",.@r/3*10; bonus2 bSkillAtk,"GN_HELLS_PLANT",.@r/3*5; if (.@r>=7){ bonus2 bSkillAtk,"GN_CART_TORNADO",20; bonus2 bSkillAtk,"GN_HELLS_PLANT",10; } if (.@r>=9){ bonus bDelayRate,-10; } if (.@r>=11){ bonus bDelayRate,-5; bonus bMaxHPrate,10; } },{},{} -500017,Up_Light_Blade,Patent Light Blade,5,,,1200,130:195,,1,2,0x00004000,56,2,2,4,150,1,2,{ .@r = getrefine(); bonus bMatk,.@r/2*15; bonus2 bSkillAtk,"PA_PRESSURE",.@r/3*5; bonus2 bSkillAtk,"LG_RAYOFGENESIS",.@r/3*5; if (.@r>=7){ bonus bVariableCastrate,-10; } if (.@r>=9){ bonus2 bMagicAtkEle,Ele_Holy,15; } if (.@r>=11){ bonus2 bMagicAddSize,Size_All,15; bonus2 bSkillAtk,"PA_PRESSURE",15; bonus2 bSkillAtk,"LG_RAYOFGENESIS",15; } },{},{} -510006,Fatalist,Fatalist,5,,,900,165,,1,2,0x00020000,56,2,2,4,100,1,1,{ .@r = getrefine(); bonus bBaseAtk,.@r/2*10; bonus bAspdRate,(.@r*2/3); if (.@r>=9) { bonus2 bSkillAtk,"SC_FATALMENACE",20; } if (.@r>=11) { bonus bDelayRate,-7; } },{},{} -510019,Up_Magic_Sword,Patent Madogum,5,,,800,150:195,,1,2,0x00020000,56,2,2,4,150,1,1,{ .@r = getrefine(); bonus bMatk,.@r/2*15; bonus bAspdRate,(.@r/3*2); if (.@r>=7){ bonus5 bAutoSpell,"WZ_METEOR",7,100,BF_SHORT,1; } if (.@r>=9){ bonus2 bMagicAtkEle,Ele_All,15; } if (.@r>=11){ bonus5 bAutoSpell,"SO_PSYCHIC_WAVE",4,100,BF_SHORT,1; } },{},{} -510020,Up_Fatalist,Patent Fatalist,5,,,1200,205,,1,2,0x00020000,56,2,2,4,150,1,1,{ .@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bAspdRate,(.@r*2/3); if (.@r>=7){ bonus2 bSkillAtk,"SC_FATALMENACE",25; } if (.@r>=9){ bonus2 bSkillUseSPrate,"SC_FATALMENACE",-15; bonus bDelayRate,-7; } if (.@r>=11){ bonus bShortAtkRate,10; bonus bDelayRate,-7; } },{},{} -510022,Up_Fog_Dew_Sword,Patent Kiri no Tsuyu,5,20,,1200,190,,1,2,0x22000000,63,2,2,4,150,1,1,{/*Is combo set with 28763 Surudoi Kaze*/},{},{} -530006,Up_Undine_Spear_K,Patent Aquatic Spear,5,20,,1400,195,,3,2,0x00004000,56,2,2,4,150,1,4,{ .@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bLongAtkRate,.@r/3*4; if (.@r>=7){ bonus2 bSkillAtk,"LG_CANNONSPEAR",15; bonus2 bSkillAtk,"LG_BANISHINGPOINT",15; bonus bAspdRate,10; } if (.@r>=9){ bonus2 bSkillAtk,"LG_CANNONSPEAR",20; bonus2 bSkillAtk,"LG_BANISHINGPOINT",20; } if (.@r>=11){ bonus bPerfectHitAddRate,7; bonus bMaxSPrate,5; } },{},{} -540010,Up_Thousand_Sun,Patent One Sky One Sun,5,,,1100,200,,1,2,0x00400000,56,2,2,4,150,1,15,{ .@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bShortAtkRate,4*(.@r/3); if (.@r>=7){ bonus2 bSkillAtk,"SJ_PROMINENCEKICK",20; bonus bAspdRate,10; } if (.@r>=9){ bonus2 bSkillAtk,"SJ_SOLARBURST",25; } if (.@r>=11){ bonus2 bAddSize,Size_All,15; } },{},{} -540011,Up_Demon_Hunting_Bible,Patent Exorcist's Bible,5,20,,700,205:190,,1,2,0x00000100,56,2,2,4,150,1,15,{ .@r = getrefine(); bonus bBaseAtk,.@r/2*10; bonus bMatk,.@r/2*10; bonus2 bSkillAtk,"AB_DUPLELIGHT",25*(.@r/3); bonus2 bSkillAtk,"AB_JUDEX",25*(.@r/3); if (.@r>=7){ bonus bAspdRate,10; bonus2 bMagicAtkEle,Ele_Holy,15; } if (.@r>=9){ bonus2 bSkillAtk,"AB_DUPLELIGHT",30; bonus2 bSkillAtk,"AB_JUDEX",30; } if (.@r>=11){ .@i = getskilllv("AB_JUDEX"); bonus3 bAutoSpell,"AB_JUDEX",(.@i > 5 ? .@i : 5),100; } },{},{} -550007,Freezing_Rod,Chilling Cane,5,,,500,40:150,,1,2,0x00010000,56,2,2,4,100,1,10,{ bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,.@r/2*10; bonus2 bSkillAtk,"SO_DIAMONDDUST",.@r/3*8; if (.@r>=9) { bonus2 bMagicAddEle,Ele_Undead,10; } if (.@r>=11) { bonus2 bMagicAtkEle,Ele_Water,7; } },{},{} -550012,Up_Shadow_Staff_K,Patent Shadow Staff,5,20,,750,40:195,,1,2,0x00010000,16,2,2,4,150,1,10,{ bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,.@r/2*15; bonus2 bSkillAtk,"SO_EARTHGRAVE",12*(.@r/3); if (.@r>=7){ bonus2 bMagicAtkEle,Ele_Earth,15; bonus2 bMagicAtkEle,Ele_Neutral,15; } if (.@r>=9){ bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",25; bonus bVariableCastrate,-7; } if (.@r>=11){ bonus bVariableCastrate,-8; bonus2 bSkillCooldown,"SO_PSYCHIC_WAVE",-1000; } },{},{} -550013,Up_Freezing_Rod,Patent Chilling Cane,5,,,750,40:195,,1,2,0x00010000,56,2,2,4,150,1,10,{ bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,.@r/2*10; bonus2 bSkillAtk,"SO_DIAMONDDUST",.@r/3*12; if (.@r>=7){ bonus2 bMagicAddEle,Ele_All,15; bonus2 bSkillAtk,"SO_VARETYR_SPEAR",15; } if (.@r>=9){ bonus2 bSkillAtk,"SO_VARETYR_SPEAR",20; bonus bVariableCastrate,-7; } if (.@r>=11){ bonus bVariableCastrate,-8; bonus2 bSkillCooldown,"SO_VARETYR_SPEAR",-2000; } },{},{} -550014,Up_MeawFoxtail,Patent Meowmeow Foxtail,5,20,,1200,350:350,,1,2,0x80000000,7,2,2,4,150,1,10,{ bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,15*(.@r/2); bonus bBaseAtk,15*(.@r/2); bonus2 bAddClass,Class_All,2*(.@r/3); bonus bMatkRate,2*(.@r/3); if (.@r>=7){ bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",25; bonus2 bSkillAtk,"SU_SV_STEMSPEAR",25; } if (.@r>=9){ bonus bVariableCastrate,-10; bonus bAspdRate,10; } if (.@r>=11){ bonus2 bSkillAtk,"SU_PICKYPECK",25; bonus2 bSkillAtk,"SU_CN_METEOR",25; } },{},{} -550015,Up_Spirit_Pendulum_,Patent Spirit Pendulum,5,,,1200,70:190,,1,2,0x00800000,56,2,2,4,150,1,10,{ .@r = getrefine(); bonus bMatk,15*(.@r/2); bonus2 bMagicAddEle,Ele_All,2*(.@r/3); if (.@r>=7){ bonus2 bSkillAtk,"SP_SPA",15; bonus bVariableCastrate,-10; } if (.@r>=9){ bonus2 bSkillAtk,"SP_SWHOO",20; } if (.@r>=11){ autobonus "{ bonus2 bSPRegenRate,230,10000; }",70,10000,BF_MAGIC; } },{},{} -560002,Ray_Knuckle,Ray Knuckle,5,,,700,185,,1,2,0x00008000,56,2,2,4,100,1,12,{ .@r = getrefine(); bonus bBaseAtk,.@r/2*10; bonus2 bSkillAtk,"SR_TIGERCANNON",.@r/3*4; if (.@r>=9) { bonus2 bSkillAtk,"SR_TIGERCANNON",15; } if (.@r>=11) { bonus2 bSkillCooldown,"SR_TIGERCANNON",-1000; } },{},{} -560008,Up_Iron_Nail_K,Patent Iron Nail,5,,,1200,205,,1,2,0x00008000,56,2,2,4,150,1,12,{ .@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bLongAtkRate,.@r/3*4; if (.@r>=7){ bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",10; bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",10; } if (.@r>=9){ bonus2 bSkillCooldown,"SR_RAMPAGEBLASTER",-1000; bonus2 bSkillCooldown,"SR_EARTHSHAKER",-1000; } if (.@r>=11){ bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",15; bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",15; bonus2 bSkillUseSPrate,"SR_RAMPAGEBLASTER",-15; } },{},{} -560009,Up_Ray_Knuckle,Patent Ray Knuckle,5,,,800,205,,1,2,0x00008000,56,2,2,4,150,1,12,{ .@r = getrefine(); bonus bBaseAtk,15*(.@r/2); bonus2 bSkillAtk,"SR_TIGERCANNON",4*(.@r/3); if (.@r>=7){ bonus2 bSkillAtk,"SR_TIGERCANNON",15; bonus2 bSkillAtk,"SR_HELLGATE",20; } if (.@r>=9){ bonus2 bSkillCooldown,"SR_TIGERCANNON",-1000; } if (.@r>=11){ bonus bMaxHPrate,10; bonus2 bSkillAtk,"SR_HELLGATE",15; } },{},{} -570009,Up_Trumpet_Shell_K,Patent Trumpet Shell,5,,,1000,160:230,,1,2,0x00080000,56,1,2,4,150,1,13,{ .@r = getrefine(); bonus bMatk,.@r/2*15; bonus2 bMagicAtkEle,Ele_All,.@r/3*4; if (.@r>=7){ bonus2 bSkillAtk,"WM_REVERBERATION",10; bonus2 bSkillAtk,"WM_METALICSOUND",10; } if (.@r>=9){ bonus2 bSkillFixedCast,WM_REVERBERATION,-500; } if (.@r>=11){ bonus bMatkRate,7; bonus2 bSkillAtk,"WM_REVERBERATION",15; bonus2 bSkillAtk,"WM_METALICSOUND",15; } },{},{} -580009,Up_Barb_Wire_K,Patent Barbed Wire Whip,5,,,1000,160:230,,1,2,0x00080000,56,,2,4,150,1,14,{ .@r = getrefine(); bonus bMatk,.@r/2*15; bonus2 bMagicAtkEle,Ele_All,.@r/3*4; if (.@r>=7){ bonus2 bSkillAtk,"WM_REVERBERATION",10; bonus2 bSkillAtk,"WM_METALICSOUND",10; } if (.@r>=9){ bonus2 bSkillFixedCast,WM_REVERBERATION,-500; } if (.@r>=11){ bonus bMatkRate,7; bonus2 bSkillAtk,"WM_REVERBERATION",15; bonus2 bSkillAtk,"WM_METALICSOUND",15; } },{},{} -590003,Saint_Hall,Saint Mace,5,,,800,170:165,,1,2,0x00000100,56,2,2,4,100,1,8,{ bonus bUnbreakableWeapon; bonus bMatkRate,3; .@r = getrefine(); bonus2 bMagicAtkEle,Ele_Holy,.@r/2*1; bonus2 bSkillAtk,"AB_ADORAMUS",.@r/3*5; if (.@r>=9) { bonus bVariableCastrate,-10; } if (.@r>=11) { bonus2 bMagicAtkEle,Ele_Holy,10; } },{},{} -590011,Up_Meteor_Striker,Patent Meteor Striker,5,,,3500,320,,1,2,0x00000400,56,2,34,4,150,1,8,{ bonus bUnbreakableWeapon; .@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus2 bSkillAtk,"NC_VULCANARM",.@r/3*10; bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",.@r/3*10; if (.@r>=7){ bonus2 bSkillAtk,"NC_VULCANARM",15; bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",15; } if (.@r>=9){ bonus2 bSkillAtk,"NC_ARMSCANNON",25; } if (.@r>=11){ bonus bLongAtkRate,15; bonus bVariableCastrate,-15; } },{},{} -590012,Up_Saint_Hall,Patent Saint Mace,5,,,1000,170:200,,1,2,0x00000100,56,2,2,4,150,1,8,{ bonus bUnbreakableWeapon; bonus bMatkRate,3; .@r = getrefine(); bonus2 bMagicAtkEle,Ele_Holy,.@r/2*1; bonus2 bSkillAtk,"AB_ADORAMUS",.@r/3*5; if (.@r>=7){ bonus bVariableCastrate,-10; bonus2 bMagicAtkEle,Ele_Holy,10; } if (.@r>=9){ bonus2 bMagicAddRace,RC_All,15; } if (.@r>=11){ bonus2 bSkillAtk,"AB_ADORAMUS",15; } },{},{} - -600009,Up_Oriental_Sword,Patent Oriental Sword,5,,,2000,240,,1,2,0x00000080,56,2,34,4,150,1,3,{ .@r = getrefine(); .@i = max(2,getskilllv("RK_SONICWAVE")); bonus bBaseAtk,.@r/2*15; bonus2 bSkillAtk,"RK_SONICWAVE",.@r/3*10; if (.@r>=7){ bonus bUnbreakableWeapon; bonus bAspdRate,10; } if (.@r>=9){ bonus5 bAutoSpell,"RK_SONICWAVE",.@i,20,BF_SHORT,1; } if (.@r>=11){ bonus bCritical,15; bonus bCritAtkRate,15; } },{},{} -610003,Blade_Katar,Blade Katar,5,,,1000,185,,1,2,0x00001000,56,2,34,4,100,1,16,{ .@r = getrefine(); bonus bBaseAtk,.@r/2*10; bonus bAspdRate,(.@r*2/3); if (.@r>=2) { bonus2 bSkillAtk,"GC_ROLLINGCUTTER",20; } if (.@r>=11) { bonus bDelayRate,-7; } },{},{} -610008,Up_Shiver_Katar_K,Patent Shiver Katar,5,,,1400,255,,1,2,0x00001000,56,2,34,4,150,1,16,{ .@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus2 bSkillAtk,"GC_CROSSIMPACT",.@r/3*10; if (.@r>=7){ bonus bCritAtkRate,15; bonus bAspdRate,10; } if (.@r>=9){ bonus2 bAddRace,RC_Brute,25; bonus2 bAddRace,RC_DemiHuman,25; } if (.@r>=11){ bonus bCritical,15; bonus2 bSkillCooldown,"GC_DARKCROW",-10000; } },{},{} -610009,Up_Blade_Katar,Patent Blade Katar,5,,,1400,275,,1,2,0x00001000,56,2,34,4,150,1,16,{ .@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bAspdRate,(.@r*2/3); if (.@r>=7){ bonus2 bSkillAtk,"GC_ROLLINGCUTTER",25; bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",25; } if (.@r>=9){ bonus bDelayRate,-12; } if (.@r>=11){ bonus bShortAtkRate,10; bonus bLongAtkRate,10; } },{},{} -620004,Up_Avenger,Patent Avenger,5,,,7000,290,,1,2,0x00000400,56,2,34,4,150,1,7,{ .@r = getrefine(); bonus bUnbreakableWeapon; bonus bBaseAtk,.@r/2*15; bonus2 bSkillAtk,"NC_AXETORNADO",10*(.@r/3); if (.@r>=7){ bonus2 bSkillAtk,"NC_AXEBOOMERANG",40; bonus2 bSkillCooldown,"NC_AXEBOOMERANG",-1000; } if (.@r>=9){ bonus2 bAddSize,Size_All,15; } if (.@r>=11){ bonus2 bSubEle,Ele_All,20; } },{},{} -640004,Blue_Crystal_Staff,Blue Crystal Staff,5,,,800,100:200,,1,2,0x00000200,56,2,2,4,100,1,10,{ bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,.@r/2*10; bonus2 bSkillAtk,"WL_JACKFROST",.@r/3*12; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Water,7; } if (.@r>=11) { bonus2 bSkillCooldown,"WL_JACKFROST",-1000; bonus2 bMagicAddEle,Ele_Fire,7; } },{},{} -640011,Up_Iron_Staff,Patent Iron Staff,5,,,1000,100:235,,1,2,0x00000200,56,2,34,4,150,1,23,{ bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,.@r/2*15; bonus2 bSkillAtk,"WL_EARTHSTRAIN",.@r/3*12; if (.@r>=7){ bonus bVariableCastrate,-10; bonus2 bMagicAtkEle,Ele_Earth,15; bonus2 bMagicAtkEle,Ele_Fire,15; } if (.@r>=9){ bonus2 bSkillCooldown,"WL_EARTHSTRAIN",-1000; bonus bVariableCastrate,-5; } if (.@r>=11){ bonus2 bMagicAddSize,Size_All,15; bonus2 bSkillAtk,"WL_CRIMSONROCK",15; } },{},{} -640012,Up_Blue_Crystal_Staff,Patent Blue Crystal Staff,5,,,1000,100:235,,1,2,0x00000200,56,2,2,4,150,1,10,{ bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,.@r/2*15; bonus2 bSkillAtk,"WL_JACKFROST",.@r/3*12; if (.@r>=7){ bonus bVariableCastrate,-10; bonus2 bMagicAtkEle,Ele_Water,15; bonus2 bMagicAtkEle,Ele_Wind,15; } if (.@r>=9){ bonus2 bSkillCooldown,"WL_JACKFROST",-1000; bonus bDelayRate,-5; } if (.@r>=11){ bonus2 bMagicAddSize,Size_All,15; bonus2 bSkillAtk,"WL_CHAINLIGHTNING",15; } },{},{} -650004,Up_Humma_Clear,Patent Huuma Shuriken Clearness,5,20,,2300,290,,1,2,0x22000000,63,2,34,4,150,1,22,{ bonus bUnbreakableWeapon; .@r = getrefine(); bonus bBaseAtk,15*(.@r/2); bonus bLongAtkRate,.@r/3*2; if (.@r>=7){ bonus2 bSkillAtk,"KO_HUUMARANKA",30; bonus bVariableCastrate,-10; } if (.@r>=9){ bonus2 bSkillCooldown,"KO_HUUMARANKA",-1000; } if (.@r>=11){ bonus2 bAddEle,Ele_Fire,20; bonus2 bAddEle,Ele_Dark,20; bonus2 bAddEle,Ele_Holy,20; bonus2 bAddRace,RC_Undead,20; bonus2 bAddRace,RC_Demon,20; bonus2 bAddRace,RC_Angel,20; } },{},{} - -700003,Scalet_Dragon_L_Bow,Scarlet Dragon Leather Bow,5,,,800,170,,5,2,0x00000800,56,2,34,4,100,1,11,{ .@r = getrefine(); bonus bBaseAtk,.@r/2*10; bonus bDelayRate,-(.@r/3*4); if (.@r>=9) { bonus2 bSkillAtk,"RA_AIMEDBOLT",35; } if (.@r>=11) { bonus2 bSkillCooldown,"RA_AIMEDBOLT",-1000; } },{},{} -700013,Up_Narcis_Bow,Patent Narcissus Bow,5,,,1000,210,,5,2,0x000A0800,56,2,34,4,150,1,11,{ .@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bLongAtkRate,.@r/3*4; if (.@r>=7){ bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; } if (.@r>=9){ bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15; } if (.@r>=11){ bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",10; bonus2 bWeaponDamageRate,W_BOW,15; } },{},{} -700018,Up_Royal_Bow_K,Patent Royal Bow,5,,,1200,205,,5,2,0x000A0800,56,2,34,4,150,1,11,{ .@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus2 bSkillAtk,"RA_ARROWSTORM",12*(.@r/3); if (.@r>=7){ bonus bAspdRate,10; bonus2 bWeaponDamageRate,W_BOW,15; } if (.@r>=9){ bonus bLongAtkRate,12; bonus bCritAtkRate,10; } if (.@r>=11){ bonus2 bSkillAtk,"SN_SHARPSHOOTING",20; bonus bDelayRate,-10; } },{},{} -700019,Up_Scalet_Dragon_L_Bow,Patent Scarlet Dragon Leather Bow,5,,,900,200,,5,2,0x00000800,56,2,34,4,150,1,11,{ .@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bDelayRate,-(.@r/3*4); if (.@r>=7){ bonus bLongAtkRate,10; bonus2 bAddSize,Size_All,10; } if (.@r>=9){ bonus2 bSkillAtk,"RA_AIMEDBOLT",35; } if (.@r>=11){ bonus2 bSkillCooldown,"RA_AIMEDBOLT",-1000; bonus bVariableCastrate,-10; } },{},{} - -800002,Up_Crimson_Rose,Patent Crimson Rose,5,20,,1000,200,,7,2,0x40000000,63,2,34,4,150,1,17,{ .@r = getrefine(); bonus bBaseAtk,.@r/2*10; bonus2 bSkillAtk,"RL_FIREDANCE",.@r/3*2; if (.@r>=7){ bonus2 bAddClass,Class_All,5; bonus bLongAtkRate,10; } if (.@r>=9){ bonus2 bSkillAtk,"RL_FIREDANCE",25; autobonus3 "{ bonus bLongAtkRate,20; }",1000,60000,"RL_HEAT_BARREL"; } if (.@r>=11){ bonus bDelayRate,-10; } },{},{} -810001,Up_Master_Soul_Rifle,Patent Master Soul Rifle,5,20,,1000,200:250,,9,2,0x40000000,63,2,34,4,150,1,18,{ .@r = getrefine(); bonus bMatk,15*(.@r/2); bonus2 bSkillAtk,"MG_SOULSTRIKE",15*(.@r/3); bonus2 bSkillAtk,"HW_NAPALMVULCAN",15*(.@r/3); if (.@r>=7){ bonus2 bSkillAtk,"WL_SOULEXPANSION",20; bonus2 bMagicAddEle,Ele_Ghost,15; } if (.@r>=9){ bonus5 bAutoSpell,"MG_SOULSTRIKE",10,150,BF_LONG,1; } if (.@r>=11){ bonus5 bAutoSpell,"HW_NAPALMVULCAN",3,70,BF_LONG,1; bonus5 bAutoSpell,"WL_SOULEXPANSION",3,70,BF_LONG,1; } },{},{} -820001,Up_Demon_Slayer_Shot,Patent Demon Slayer Shot,5,,,2300,295,,9,2,0x40000000,63,2,34,4,150,1,20,{ .@r = getrefine(); bonus bSplashRange,1; bonus bLongAtkRate,3*(.@r/2); bonus bMaxSPrate,2*(.@r/3); if (.@r>=7){ bonus2 bAddClass,Class_Boss,15; bonus2 bAddRace,RC_Undead,15; bonus2 bAddRace,RC_Demon,15; } if (.@r>=9){ autobonus3 "{ bonus bBaseAtk,50; bonus bLongAtkRate,10; }",1000,90000,"RL_P_ALTER"; } if (.@r>=11){ bonus2 bSkillAtk,"RL_BANISHING_BUSTER",35; bonus2 bSkillAtk,"RL_S_STORM",35; } },{},{} -830002,Up_The_Black,Patent The Black,5,,,3000,225,,9,2,0x40000000,63,2,34,4,150,1,19,{ .@r = getrefine(); bonus bBaseAtk,15*(.@r/2); bonus bLongAtkRate,4*(.@r/3); if (.@r>=7){ bonus2 bSkillAtk,"RL_R_TRIP",20; bonus2 bSkillUseSPrate,"RL_R_TRIP",10; } if (.@r>=9){ bonus2 bSkillAtk,"RL_R_TRIP",15; autobonus3 "{ bonus bBaseAtk,50; bonus bLongAtkRate,10; }",1000,90000,"RL_P_ALTER"; } if (.@r>=11){ bonus2 bAddSize,Size_All,15; } },{},{} -840001,Up_Golden_Lord_Launcher,Patent Golden Lord Launcher,5,20,,2400,350,,9,2,0x40000000,63,2,34,4,150,1,21,{ .@r = getrefine(); bonus bLongAtkRate,3*(.@r/2); bonus bBaseAtk,20*(.@r/3); if (.@r>=7){ bonus2 bSkillAtk,"RL_D_TAIL",15; bonus2 bSkillCooldown,"RL_D_TAIL",-1000; } if (.@r>=9){ bonus2 bSkillAtk,"RL_D_TAIL",20; } if (.@r>=11){ bonus2 bAddEle,Ele_All,15; } },{},{} - -1100003,Concentrated_R_P,Concentrated Red Potion,0,10,,2,,,,,0xFFFFFFFF,63,2,,,120,,,{ itemheal rand(655,675),0; },{},{} -1100004,Concentrated_B_P,Concentrated Blue Potion,0,10,,2,,,,,0xFFFFFFFF,63,2,,,120,,,{ itemheal 0,rand(340,360); },{},{} -1100005,Concentrated_G_P,Concentrated Gold Potion,0,10,,2,,,,,0xFFFFFFFF,63,2,,,180,,,{ itemheal rand(2730,2750),0; },{},{} diff --git a/db/re/item_db.yml b/db/re/item_db.yml new file mode 100644 index 0000000000..9c821404af --- /dev/null +++ b/db/re/item_db.yml @@ -0,0 +1,93 @@ +# This file is a part of rAthena. +# Copyright(C) 2019 rAthena Development Team +# https://rathena.org - https://github.com/rathena +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# +########################################################################### +# Item Database +########################################################################### +# +# Item Settings +# +########################################################################### +# - Id Item ID. +# AegisName Server name to reference the item in scripts and lookups, should use no spaces. +# Name Name in English for displaying as output. +# Type Item type. (Default: Etc) +# SubType Weapon or Ammo type. (Default: 0) +# Buy Buying price. When not specified, becomes double the sell price. (Default: 0) +# Sell Selling price. When not specified, becomes half the buy price. (Default: 0) +# Weight Item weight. Each 10 is 1 weight. (Default: 0) +# Attack Weapon's attack. (Default: 0) +# MagicAttack Weapon's magic attack. (Default: 0) +# Defense Armor's defense. (Default: 0) +# Range Weapon's attack range. (Default: 0) +# Slots Available slots in item. (Default: 0) +# Jobs Jobs that can equip the item. (Map default is 'All: true') +# Classes Upper class types that can equip the item. (Map default is 'All: true') +# Gender Gender that can equip the item. (Default: Both) +# Locations Equipment's placement. (Default: None) +# WeaponLevel Weapon level. (Default: 0) +# EquipLevelMin Minimum required level to equip. (Default: 0) +# EquipLevelMax Maximum level that can equip. (Default: 0) +# Refineable If the item can be refined. (Default: false) +# View View sprite of an item. (Default: 0) +# AliasName Another item's AegisName that will be sent to the client instead of this item's AegisName. (Default: null) +# Flags: Item flags. (Default: null) +# BuyingStore If the item is available for Buyingstores. (Default: false) +# DeadBranch If the item is a Dead Branch. (Default: false) +# Container If the item is part of a container. (Default: false) +# UniqueId If the item is a unique stack. (Default: false) +# BindOnEquip If the item is bound to the character upon equipping. (Default: false) +# DropAnnounce If the item has a special announcement to self on drop. (Default: false) +# NoConsume If the item is consumed on use. (Default: false) +# DropEffect If the item has a special effect when on the ground. (Default: None) +# Delay: Item use delay. (Default: null) +# Duration Duration of delay in seconds. +# Status Status Change used to track delay. (Default: None) +# Stack: Item stack amount. (Default: null) +# Amount Maximum amount that can be stacked. +# Inventory If the stack is applied to player's inventory. (Default: true) +# Cart If the stack is applied to the player's cart. (Default: false) +# Storage If the stack is applied to the player's storage. (Default: false) +# GuildStorage If the stack is applied to the player's guild storage. (Default: false) +# NoUse: Conditions when the item is unusable. (Default: null) +# Override Group level to override these conditions. +# Sitting If the item can not be used while sitting. (Default: false) +# Trade: Trade restrictions. (Default: null) +# Override Group level to override these conditions. +# NoDrop If the item can not be dropped. (Default: false) +# NoTrade If the item can not be traded. (Default: false) +# TradePartner If the item can not be traded to the player's partner. (Default: false) +# NoSell If the item can not be sold. (Default: false) +# NoCart If the item can not be put in a cart. (Default: false) +# NoStorage If the item can not be put in a storage. (Default: false) +# NoGuildStorage If the item can not be put in a guild storage. (Default: false) +# NoMail If the item can not be put in a mail. (Default: false) +# NoAuction If the item can not be put in an auction. (Default: false) +# Script Script to execute when the item is used/equipped. (Default: null) +# EquipScript Script to execute when the item is equipped. (Default: null) +# UnEquipScript Script to execute when the item is unequipped or when a rental item expires. (Default: null) +########################################################################### + +Header: + Type: ITEM_DB + Version: 1 + +Footer: + Imports: + - Path: db/re/item_db_usable.yml + - Path: db/re/item_db_equip.yml + - Path: db/re/item_db_etc.yml diff --git a/db/re/item_db_equip.yml b/db/re/item_db_equip.yml new file mode 100644 index 0000000000..b89ca1a3af --- /dev/null +++ b/db/re/item_db_equip.yml @@ -0,0 +1,101770 @@ +# This file is a part of rAthena. +# Copyright(C) 2019 rAthena Development Team +# https://rathena.org - https://github.com/rathena +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# +########################################################################### +# Item Database +########################################################################### +# +# Item Settings +# +########################################################################### +# - Id Item ID. +# AegisName Server name to reference the item in scripts and lookups, should use no spaces. +# Name Name in English for displaying as output. +# Type Item type. (Default: Etc) +# SubType Weapon or Ammo type. (Default: 0) +# Buy Buying price. When not specified, becomes double the sell price. (Default: 0) +# Sell Selling price. When not specified, becomes half the buy price. (Default: 0) +# Weight Item weight. Each 10 is 1 weight. (Default: 0) +# Attack Weapon's attack. (Default: 0) +# MagicAttack Weapon's magic attack. (Default: 0) +# Defense Armor's defense. (Default: 0) +# Range Weapon's attack range. (Default: 0) +# Slots Available slots in item. (Default: 0) +# Jobs Jobs that can equip the item. (Map default is 'All: true') +# Classes Upper class types that can equip the item. (Map default is 'All: true') +# Gender Gender that can equip the item. (Default: Both) +# Locations Equipment's placement. (Default: None) +# WeaponLevel Weapon level. (Default: 0) +# EquipLevelMin Minimum required level to equip. (Default: 0) +# EquipLevelMax Maximum level that can equip. (Default: 0) +# Refineable If the item can be refined. (Default: false) +# View View sprite of an item. (Default: 0) +# AliasName Another item's AegisName that will be sent to the client instead of this item's AegisName. (Default: null) +# Flags: Item flags. (Default: null) +# BuyingStore If the item is available for Buyingstores. (Default: false) +# DeadBranch If the item is a Dead Branch. (Default: false) +# Container If the item is part of a container. (Default: false) +# UniqueId If the item is a unique stack. (Default: false) +# BindOnEquip If the item is bound to the character upon equipping. (Default: false) +# DropAnnounce If the item has a special announcement to self on drop. (Default: false) +# NoConsume If the item is consumed on use. (Default: false) +# DropEffect If the item has a special effect when on the ground. (Default: None) +# Delay: Item use delay. (Default: null) +# Duration Duration of delay in seconds. +# Status Status Change used to track delay. (Default: None) +# Stack: Item stack amount. (Default: null) +# Amount Maximum amount that can be stacked. +# Inventory If the stack is applied to player's inventory. (Default: true) +# Cart If the stack is applied to the player's cart. (Default: false) +# Storage If the stack is applied to the player's storage. (Default: false) +# GuildStorage If the stack is applied to the player's guild storage. (Default: false) +# NoUse: Conditions when the item is unusable. (Default: null) +# Override Group level to override these conditions. +# Sitting If the item can not be used while sitting. (Default: false) +# Trade: Trade restrictions. (Default: null) +# Override Group level to override these conditions. +# NoDrop If the item can not be dropped. (Default: false) +# NoTrade If the item can not be traded. (Default: false) +# TradePartner If the item can not be traded to the player's partner. (Default: false) +# NoSell If the item can not be sold. (Default: false) +# NoCart If the item can not be put in a cart. (Default: false) +# NoStorage If the item can not be put in a storage. (Default: false) +# NoGuildStorage If the item can not be put in a guild storage. (Default: false) +# NoMail If the item can not be put in a mail. (Default: false) +# NoAuction If the item can not be put in an auction. (Default: false) +# Script Script to execute when the item is used/equipped. (Default: null) +# EquipScript Script to execute when the item is equipped. (Default: null) +# UnEquipScript Script to execute when the item is unequipped or when a rental item expires. (Default: null) +########################################################################### + +Header: + Type: ITEM_DB + Version: 1 + +Body: + - Id: 1101 + AegisName: Sword + Name: Sword + Type: Weapon + SubType: 1hSword + Buy: 100 + Weight: 500 + Attack: 25 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 2 + Refineable: true + - Id: 1102 + AegisName: Sword_ + Name: Sword + Type: Weapon + SubType: 1hSword + Buy: 100 + Weight: 500 + Attack: 25 + Range: 1 + Slots: 4 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 2 + Refineable: true + - Id: 1103 + AegisName: Sword__ + Name: Sword + Type: Weapon + SubType: 1hSword + Buy: 100 + Weight: 500 + Attack: 25 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 2 + Refineable: true + - Id: 1104 + AegisName: Falchion + Name: Falchion + Type: Weapon + SubType: 1hSword + Buy: 1500 + Weight: 600 + Attack: 39 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 2 + Refineable: true + - Id: 1105 + AegisName: Falchion_ + Name: Falchion + Type: Weapon + SubType: 1hSword + Buy: 1500 + Weight: 600 + Attack: 39 + Range: 1 + Slots: 4 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 2 + Refineable: true + - Id: 1106 + AegisName: Falchion__ + Name: Falchion + Type: Weapon + SubType: 1hSword + Buy: 1500 + Weight: 600 + Attack: 39 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 2 + Refineable: true + - Id: 1107 + AegisName: Blade + Name: Blade + Type: Weapon + SubType: 1hSword + Buy: 2900 + Weight: 700 + Attack: 53 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 2 + Refineable: true + - Id: 1108 + AegisName: Blade_ + Name: Blade + Type: Weapon + SubType: 1hSword + Buy: 2900 + Weight: 700 + Attack: 53 + Range: 1 + Slots: 4 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 2 + Refineable: true + - Id: 1109 + AegisName: Blade__ + Name: Blade + Type: Weapon + SubType: 1hSword + Buy: 2900 + Weight: 700 + Attack: 53 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 2 + Refineable: true + - Id: 1110 + AegisName: Lapier + Name: Rapier + Type: Weapon + SubType: 1hSword + Buy: 10000 + Weight: 500 + Attack: 70 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 14 + Refineable: true + - Id: 1111 + AegisName: Lapier_ + Name: Rapier + Type: Weapon + SubType: 1hSword + Buy: 10000 + Weight: 500 + Attack: 70 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 14 + Refineable: true + - Id: 1112 + AegisName: Lapier__ + Name: Rapier + Type: Weapon + SubType: 1hSword + Buy: 10000 + Weight: 500 + Attack: 70 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 14 + Refineable: true + - Id: 1113 + AegisName: Scimiter + Name: Scimitar + Type: Weapon + SubType: 1hSword + Buy: 17000 + Weight: 700 + Attack: 85 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 14 + Refineable: true + - Id: 1114 + AegisName: Scimiter_ + Name: Scimitar + Type: Weapon + SubType: 1hSword + Buy: 17000 + Weight: 700 + Attack: 85 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 14 + Refineable: true + - Id: 1115 + AegisName: Scimiter__ + Name: Scimitar + Type: Weapon + SubType: 1hSword + Buy: 17000 + Weight: 700 + Attack: 85 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 14 + Refineable: true + - Id: 1116 + AegisName: Katana + Name: Katana + Type: Weapon + SubType: 2hSword + Buy: 2000 + Weight: 1000 + Attack: 60 + Range: 1 + Slots: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 4 + Refineable: true + - Id: 1117 + AegisName: Katana_ + Name: Katana + Type: Weapon + SubType: 2hSword + Buy: 2000 + Weight: 1000 + Attack: 60 + Range: 1 + Slots: 4 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 4 + Refineable: true + - Id: 1118 + AegisName: Katana__ + Name: Katana + Type: Weapon + SubType: 2hSword + Buy: 2000 + Weight: 1000 + Attack: 60 + Range: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 4 + Refineable: true + - Id: 1119 + AegisName: Tsurugi + Name: Tsurugi + Type: Weapon + SubType: 1hSword + Buy: 51000 + Weight: 1200 + Attack: 130 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + - Id: 1120 + AegisName: Tsurugi_ + Name: Tsurugi + Type: Weapon + SubType: 1hSword + Buy: 51000 + Weight: 1200 + Attack: 130 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + - Id: 1121 + AegisName: Tsurugi__ + Name: Tsurugi + Type: Weapon + SubType: 1hSword + Buy: 51000 + Weight: 1200 + Attack: 130 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + - Id: 1122 + AegisName: Ring_Pommel_Saber + Name: Ring Pommel Saber + Type: Weapon + SubType: 1hSword + Buy: 24000 + Weight: 900 + Attack: 100 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 14 + Refineable: true + - Id: 1123 + AegisName: Haedonggum + Name: Haedonggum + Type: Weapon + SubType: 1hSword + Buy: 50000 + Weight: 900 + Attack: 120 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + Script: | + bonus bInt,3; + - Id: 1124 + AegisName: Orcish_Sword + Name: Orcish Sword + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 800 + Attack: 90 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 5 + Refineable: true + Script: | + bonus bUnbreakableWeapon; + - Id: 1125 + AegisName: Ring_Pommel_Saber_ + Name: Ring Pommel Saber + Type: Weapon + SubType: 1hSword + Buy: 24000 + Weight: 900 + Attack: 100 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 14 + Refineable: true + - Id: 1126 + AegisName: Saber + Name: Saber + Type: Weapon + SubType: 1hSword + Buy: 49000 + Weight: 1000 + Attack: 115 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + - Id: 1127 + AegisName: Saber_ + Name: Saber + Type: Weapon + SubType: 1hSword + Buy: 49000 + Weight: 1000 + Attack: 115 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + - Id: 1128 + AegisName: Hae_Dong_Gum_ + Name: Haedonggum + Type: Weapon + SubType: 1hSword + Buy: 50000 + Weight: 900 + Attack: 120 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + Script: | + bonus bInt,3; + - Id: 1129 + AegisName: Flamberge + Name: Flamberge + Type: Weapon + SubType: 1hSword + Buy: 60000 + Weight: 1500 + Attack: 150 + Range: 1 + Jobs: + Crusader: true + Knight: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + - Id: 1130 + AegisName: Nagan + Name: Nagan + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 500 + Attack: 120 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + skill "TF_DOUBLE",5; bonus bDoubleRate,25; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; + - Id: 1131 + AegisName: Ice_Falchon + Name: Ice Falchion + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 600 + Attack: 100 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus bAtkEle,Ele_Water; bonus2 bAddEff,Eff_Freeze,500; bonus2 bAddEff2,Eff_Freeze,10; skill "MG_COLDBOLT",3; bonus3 bAutoSpell,"MG_COLDBOLT",3,100; + - Id: 1132 + AegisName: Edge + Name: Edge + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 700 + Attack: 115 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus2 bAddEff,Eff_Curse,30; bonus2 bComaClass,Class_All,10; + - Id: 1133 + AegisName: Fire_Brand + Name: Fireblend + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 500 + Attack: 100 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus bAtkEle,Ele_Fire; skill "MG_FIREBOLT",3; bonus3 bAutoSpell,"MG_FIREBOLT",3,100; + - Id: 1134 + AegisName: Scissores_Sword + Name: Caesar's Sword + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 700 + Attack: 140 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus2 bAddRace,RC_Plant,25; bonus bIgnoreDefRace,RC_Plant; + - Id: 1135 + AegisName: Cutlas + Name: Cutlus + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 900 + Attack: 150 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + skill "SM_BASH",5; bonus bStr,2; bonus bDef,1; + - Id: 1136 + AegisName: Solar_Sword + Name: Solar Sword + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 1200 + Attack: 85 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus bAtkEle,Ele_Fire; bonus2 bHPDrainRate,1000,1; bonus2 bSPLossRate,15,10000; + - Id: 1137 + AegisName: Excalibur + Name: Excalibur + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 1200 + Attack: 150 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus bInt,5; bonus bLuk,10; bonus bDex,-1; bonus bAtkEle,Ele_Holy; + - Id: 1138 + AegisName: Mysteltainn_ + Name: Mysteltainn + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 1000 + Attack: 170 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus bAtkEle,Ele_Dark; bonus2 bAddEle,Ele_Ghost,15; bonus3 bAutoSpell,"MG_STONECURSE",3,100; bonus2 bAddEff,Eff_Stone,10; bonus bDex,3; + - Id: 1139 + AegisName: Tale_Fing_ + Name: Tirfing + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 1000 + Attack: 200 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus bAtkEle,Ele_Dark; bonus2 bHPLossRate,35,10000; + - Id: 1140 + AegisName: Byeorrun_Gum + Name: Byeollungum + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 900 + Attack: 150 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus2 bSubClass,Class_Normal,-10; bonus2 bAddClass,Class_Boss,50; bonus bAllStats,2; + - Id: 1141 + AegisName: Immaterial_Sword + Name: Immaterial Sword + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 900 + Attack: 140 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus bAtkEle,Ele_Ghost; bonus3 bSPVanishRate,3,30,BF_WEAPON; bonus bSPDrainValue,-1; bonus bUnbreakableWeapon; + - Id: 1142 + AegisName: Jewel_Sword + Name: Jeweled Sword + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 2200 + Attack: 104 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 68 + Refineable: true + Script: | + bonus2 bAddMonsterDropItemGroup,IG_Jewel,100; + - Id: 1143 + AegisName: Gaia_Sword + Name: Gaia Sword + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 2500 + Attack: 140 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 74 + Refineable: true + Script: | + bonus2 bAddMonsterDropItemGroup,IG_Ore,30; + - Id: 1144 + AegisName: Sasimi + Name: Sashimi + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 1400 + Attack: 75 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus bAtkEle,Ele_Wind; bonus3 bAddMonsterDropItem,544,RC_Fish,4000; + - Id: 1145 + AegisName: Holy_Avenger + Name: Holy Avenger + Type: Weapon + SubType: 1hSword + Buy: 450000 + Weight: 1350 + Attack: 125 + Range: 1 + Jobs: + Crusader: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 75 + Refineable: true + Script: | + bonus bAtkEle,Ele_Holy; bonus bVit,2; + - Id: 1146 + AegisName: Town_Sword + Name: Town Sword + Type: Weapon + SubType: 1hSword + Buy: 42000 + Weight: 800 + Attack: 100 + Range: 1 + Slots: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 30 + Refineable: true + - Id: 1147 + AegisName: Town_Sword_ + Name: Town Sword + Type: Weapon + SubType: 1hSword + Buy: 42000 + Weight: 800 + Attack: 100 + Range: 1 + Slots: 2 + Jobs: + Novice: true + SuperNovice: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 30 + Refineable: true + - Id: 1148 + AegisName: Star_Dust_Blade + Name: Star Dust Blade + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 1000 + Attack: 140 + Range: 1 + Slots: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 45 + Refineable: true + Script: | + bonus2 bAddEff,Eff_Stun,500; bonus bUnbreakableWeapon; + - Id: 1149 + AegisName: Flamberge_ + Name: Flamberge + Type: Weapon + SubType: 1hSword + Buy: 60000 + Weight: 1500 + Attack: 150 + Range: 1 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + - Id: 1151 + AegisName: Slayer + Name: Slayer + Type: Weapon + SubType: 2hSword + Buy: 15000 + Weight: 1300 + Attack: 90 + Range: 1 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 18 + Refineable: true + - Id: 1152 + AegisName: Slayer_ + Name: Slayer + Type: Weapon + SubType: 2hSword + Buy: 15000 + Weight: 1300 + Attack: 90 + Range: 1 + Slots: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 18 + Refineable: true + - Id: 1153 + AegisName: Slayer__ + Name: Slayer + Type: Weapon + SubType: 2hSword + Buy: 15000 + Weight: 1300 + Attack: 90 + Range: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 18 + Refineable: true + - Id: 1154 + AegisName: Bastard_Sword + Name: Bastard Sword + Type: Weapon + SubType: 2hSword + Buy: 22500 + Weight: 1600 + Attack: 115 + Range: 1 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 18 + Refineable: true + - Id: 1155 + AegisName: Bastard_Sword_ + Name: Bastard Sword + Type: Weapon + SubType: 2hSword + Buy: 22500 + Weight: 1600 + Attack: 115 + Range: 1 + Slots: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 18 + Refineable: true + - Id: 1156 + AegisName: Bastard_Sword__ + Name: Bastard Sword + Type: Weapon + SubType: 2hSword + Buy: 22500 + Weight: 1600 + Attack: 115 + Range: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 18 + Refineable: true + - Id: 1157 + AegisName: Two_Hand_Sword + Name: Two-Handed Sword + Type: Weapon + SubType: 2hSword + Buy: 60000 + Weight: 2200 + Attack: 160 + Range: 1 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + - Id: 1158 + AegisName: Two_Hand_Sword_ + Name: Two-Handed Sword + Type: Weapon + SubType: 2hSword + Buy: 60000 + Weight: 2200 + Attack: 160 + Range: 1 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + - Id: 1159 + AegisName: Two_Hand_Sword__ + Name: Two-Handed Sword + Type: Weapon + SubType: 2hSword + Buy: 60000 + Weight: 2200 + Attack: 160 + Range: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + - Id: 1160 + AegisName: Broad_Sword + Name: Broad Sword + Type: Weapon + SubType: 2hSword + Buy: 65000 + Weight: 2000 + Attack: 140 + Range: 1 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + Script: | + bonus bDef,5; bonus bUnbreakableWeapon; + - Id: 1161 + AegisName: Balmung + Name: Balmung + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 1000 + Attack: 250 + Range: 1 + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus bInt,20; bonus bLuk,20; + - Id: 1162 + AegisName: Broad_Sword_ + Name: Broad Sword + Type: Weapon + SubType: 2hSword + Buy: 65000 + Weight: 2000 + Attack: 140 + Range: 1 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + Script: | + bonus bDef,5; bonus bUnbreakableWeapon; + - Id: 1163 + AegisName: Claymore + Name: Claymore + Type: Weapon + SubType: 2hSword + Buy: 74000 + Weight: 2500 + Attack: 180 + Range: 1 + Jobs: + Crusader: true + Knight: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + - Id: 1164 + AegisName: Muramasa + Name: Muramasa + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 1000 + Attack: 155 + Range: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus bCritical,30; bonus bAspdRate,8; bonus2 bAddEff2,Eff_Curse,10; + - Id: 1165 + AegisName: Masamune + Name: Masamune + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 1000 + Attack: 200 + Range: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus bFlee,30; bonus bStr,-5; bonus bAspd,2; bonus bDefRate,-66; bonus bDef2Rate,-66; + - Id: 1166 + AegisName: Dragon_Slayer + Name: Dragon Slayer + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 1300 + Attack: 150 + Range: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus bIgnoreDefRace,RC_Dragon; bonus2 bAddRace,RC_Dragon,15; + - Id: 1167 + AegisName: Schweizersabel + Name: Schweizersabel + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 1600 + Attack: 160 + Range: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus bAtkEle,Ele_Wind; bonus bDef,1; bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",3,100; + - Id: 1168 + AegisName: Zweihander + Name: Zweihander + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 2200 + Attack: 200 + Range: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus bUnbreakableWeapon; + - Id: 1169 + AegisName: Executioner_ + Name: Executioner + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 2200 + Attack: 155 + Range: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player_Human,-10; bonus bAtkEle,Ele_Dark; + - Id: 1170 + AegisName: Katzbalger + Name: Katzbalger + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 2000 + Attack: 175 + Range: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus bVit,5; bonus bDef,10; + - Id: 1171 + AegisName: Zweihander_ + Name: Zweihander + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 2200 + Attack: 200 + Range: 1 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus bUnbreakableWeapon; + - Id: 1172 + AegisName: Claymore_ + Name: Claymore + Type: Weapon + SubType: 2hSword + Buy: 74000 + Weight: 2500 + Attack: 180 + Range: 1 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + - Id: 1173 + AegisName: Muramasa_C + Name: Muramasa + Type: Weapon + SubType: 2hSword + Buy: 1 + Attack: 204 + Range: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bCritical,30; bonus bAspdRate,8; + - Id: 1174 + AegisName: Executioner_C + Name: Executioner + Type: Weapon + SubType: 2hSword + Buy: 2 + Attack: 190 + Range: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player_Human,-10; bonus bAtkEle,Ele_Dark; + - Id: 1175 + AegisName: Altas_Weapon + Name: Atlas Weapon + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 3500 + Attack: 200 + Range: 1 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bCritical,10; if(readparam(bStr)>=80) bonus bBreakArmorRate,500; + - Id: 1176 + AegisName: Muscle_Cutter + Name: Muscle Cutter + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 2200 + Attack: 160 + Range: 1 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus2 bAddEff,Eff_Bleeding,800; bonus3 bAutoSpell,"AL_DECAGI",1,30; + - Id: 1177 + AegisName: Muramash + Name: Muramash + Type: Weapon + SubType: 2hSword + Buy: 20 + Attack: 120 + Range: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,50; + - Id: 1178 + AegisName: Schweizersabel_ + Name: Schweizersabel + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 1600 + Attack: 160 + Range: 1 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus bAtkEle,Ele_Wind; bonus bDef,1; bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",3,100; + - Id: 1179 + AegisName: Executioner__ + Name: Executioner + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 2200 + Attack: 155 + Range: 1 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player_Human,-10; bonus bAtkEle,Ele_Dark; + - Id: 1180 + AegisName: Dragon_Slayer_ + Name: Dragon Slayer + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 1300 + Attack: 150 + Range: 1 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus bIgnoreDefRace,RC_Dragon; bonus2 bAddRace,RC_Dragon,15; + - Id: 1181 + AegisName: Tae_Goo_Lyeon + Name: Tae Goo Lyeon + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 2000 + Attack: 250 + Range: 1 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 90 + Refineable: true + Script: | + bonus bFlee2,10; if(JobLevel>=70 || (eaclass()&EAJL_THIRD && JobLevel>=50)) autobonus "{ bonus bBaseAtk,50; }",10,10000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; if(getrefine()>8) { bonus bDelayRate,-20; bonus bUseSPrate,-20; } + - Id: 1182 + AegisName: Bloody_Eater + Name: Bloody Eater + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 1200 + Attack: 200 + Range: 1 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 50 + Refineable: true + Script: | + bonus bAtkEle,Ele_Ghost; autobonus "{ bonus bCritical,100; bonus bBaseAtk,50; }",1,5000,0,"{ specialeffect2 EF_FIRESPLASHHIT; }"; bonus bHPGainValue,100; + - Id: 1183 + AegisName: BF_Two_Handed_Sword1 + Name: Brave Assaulter's Katzbalger + Type: Weapon + SubType: 2hSword + Buy: 20 + Attack: 200 + Range: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,2; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; + - Id: 1184 + AegisName: BF_Two_Handed_Sword2 + Name: Valorous Assaulter's Katzbalger + Type: Weapon + SubType: 2hSword + Buy: 20 + Attack: 200 + Range: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bCritical,20; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus bCritAtkRate,20; bonus bUnbreakableWeapon; + - Id: 1185 + AegisName: Violet_Fear + Name: Violet Fear + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 2200 + Attack: 275 + Range: 1 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Script: | + bonus3 bAutoSpell,"WZ_METEOR",3,30; bonus3 bAutoSpell,"WZ_FROSTNOVA",5,50; autobonus "{ bonus bIgnoreDefClass,Class_Normal; specialeffect2 EF_ENHANCE; }",50,5000; + - Id: 1186 + AegisName: Death_Guidance + Name: Death Guidance + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 2000 + Attack: 200 + Range: 1 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 70 + Refineable: true + Script: | + 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; + - Id: 1187 + AegisName: Krieger_Twohand_Sword1 + Name: Glorious Claymore + Type: Weapon + SubType: 2hSword + Buy: 20 + Attack: 220 + Range: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-3,1); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-3,1); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) { bonus3 bAutoSpell,"LK_CONCENTRATION",max(getskilllv("LK_CONCENTRATION"),1),30; bonus3 bAutoSpell,"LK_AURABLADE",max(getskilllv("LK_AURABLADE"),1),30; } + - Id: 1188 + AegisName: Veteran_Sword + Name: Veteran Sword + Type: Weapon + SubType: 2hSword + Buy: 10000 + Weight: 2000 + Attack: 180 + Range: 1 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Script: | + 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; + - Id: 1189 + AegisName: Krasnaya + Name: Krasnaya + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 3800 + Attack: 200 + Range: 2 + Slots: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 50 + Refineable: true + Script: | + if(readparam(bStr)>=95) { bonus bBaseAtk,20; } + - Id: 1190 + AegisName: Claymore_C + Name: Claymore + Type: Weapon + SubType: 2hSword + Attack: 220 + Range: 1 + Jobs: + Crusader: true + Knight: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddSize,Size_All,40; + - Id: 1191 + AegisName: Alca_Bringer + Name: Alca Bringer + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 3400 + Attack: 280 + Range: 2 + Jobs: + Knight: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bAspd,(getrefine()/2); + - Id: 1192 + AegisName: P_Slayer1 + Name: Eden Slayer I + Type: Weapon + SubType: 2hSword + Attack: 162 + Range: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 26 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1193 + AegisName: P_Slayer2 + Name: Eden Slayer II + Type: Weapon + SubType: 2hSword + Attack: 185 + Range: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 40 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1194 + AegisName: F_Executioner_C + Name: Executioner + Type: Weapon + SubType: 2hSword + Buy: 2 + Attack: 190 + Range: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + Script: | + bonus bAtkEle,Ele_Dark; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bSubRace,RC_DemiHuman,-10; bonus bIgnoreDefRace,RC_DemiHuman; bonus2 bAddRace,RC_Player_Human,20; bonus2 bSubRace,RC_Player_Human,-10; bonus bIgnoreDefRace,RC_Player_Human; + - Id: 1195 + AegisName: E_Executioner_C + Name: Executioner + Type: Weapon + SubType: 2hSword + Buy: 2 + Attack: 190 + Range: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + Script: | + bonus bAtkEle,Ele_Dark; + - Id: 1196 + AegisName: Chrome_Twohand_Sword + Name: Chrome Two-Handed Sword + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 400 + Attack: 280 + Range: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 110 + Refineable: true + Script: | + bonus bUnbreakableWeapon; bonus bAgi,3; bonus bMaxHPrate,-10; + - Id: 1197 + AegisName: P_Slayer3 + Name: Eden Slayer III + Type: Weapon + SubType: 2hSword + Attack: 200 + Range: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 60 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1198 + AegisName: Hairtail + Name: Cutlass + Type: Weapon + SubType: 2hSword + Attack: 220 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 50 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bCritical,20; bonus bCritAtkRate,50; bonus2 bAddEff,Eff_Crystalize,30; if(BaseLevel>99) { bonus bBaseAtk,50; } + - Id: 1199 + AegisName: Ebony_Toe_Nail + Name: Ebony Toe Nail + Type: Weapon + SubType: 2hSword + Buy: 56000 + Weight: 1000 + Attack: 250 + MagicAttack: 150 + Range: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 120 + Refineable: true + - Id: 1201 + AegisName: Knife + Name: Knife + Type: Weapon + SubType: Dagger + Buy: 50 + Weight: 400 + Attack: 17 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + - Id: 1202 + AegisName: Knife_ + Name: Knife + Type: Weapon + SubType: Dagger + Buy: 50 + Weight: 400 + Attack: 17 + Range: 1 + Slots: 4 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + - Id: 1203 + AegisName: Knife__ + Name: Knife + Type: Weapon + SubType: Dagger + Buy: 50 + Weight: 400 + Attack: 17 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + - Id: 1204 + AegisName: Cutter + Name: Cutter + Type: Weapon + SubType: Dagger + Buy: 1250 + Weight: 500 + Attack: 30 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + - Id: 1205 + AegisName: Cutter_ + Name: Cutter + Type: Weapon + SubType: Dagger + Buy: 1250 + Weight: 500 + Attack: 30 + Range: 1 + Slots: 4 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + - Id: 1206 + AegisName: Cutter__ + Name: Cutter + Type: Weapon + SubType: Dagger + Buy: 1250 + Weight: 500 + Attack: 30 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + - Id: 1207 + AegisName: Main_Gauche + Name: Main Gauche + Type: Weapon + SubType: Dagger + Buy: 2400 + Weight: 600 + Attack: 43 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + - Id: 1208 + AegisName: Main_Gauche_ + Name: Main Gauche + Type: Weapon + SubType: Dagger + Buy: 2400 + Weight: 600 + Attack: 43 + Range: 1 + Slots: 4 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + - Id: 1209 + AegisName: Main_Gauche__ + Name: Main Gauche + Type: Weapon + SubType: Dagger + Buy: 2400 + Weight: 600 + Attack: 43 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + - Id: 1210 + AegisName: Dirk + Name: Dirk + Type: Weapon + SubType: Dagger + Buy: 8500 + Weight: 500 + Attack: 59 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 12 + Refineable: true + - Id: 1211 + AegisName: Dirk_ + Name: Dirk + Type: Weapon + SubType: Dagger + Buy: 8500 + Weight: 500 + Attack: 59 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 12 + Refineable: true + - Id: 1212 + AegisName: Dirk__ + Name: Dirk + Type: Weapon + SubType: Dagger + Buy: 8500 + Weight: 500 + Attack: 59 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 12 + Refineable: true + - Id: 1213 + AegisName: Dagger + Name: Dagger + Type: Weapon + SubType: Dagger + Buy: 14000 + Weight: 600 + Attack: 73 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 12 + Refineable: true + - Id: 1214 + AegisName: Dagger_ + Name: Dagger + Type: Weapon + SubType: Dagger + Buy: 14000 + Weight: 600 + Attack: 73 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 12 + Refineable: true + - Id: 1215 + AegisName: Dagger__ + Name: Dagger + Type: Weapon + SubType: Dagger + Buy: 14000 + Weight: 600 + Attack: 73 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 12 + Refineable: true + - Id: 1216 + AegisName: Stiletto + Name: Stiletto + Type: Weapon + SubType: Dagger + Buy: 19500 + Weight: 700 + Attack: 87 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 12 + Refineable: true + - Id: 1217 + AegisName: Stiletto_ + Name: Stiletto + Type: Weapon + SubType: Dagger + Buy: 19500 + Weight: 700 + Attack: 87 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 12 + Refineable: true + - Id: 1218 + AegisName: Stiletto__ + Name: Stiletto + Type: Weapon + SubType: Dagger + Buy: 19500 + Weight: 700 + Attack: 87 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 12 + Refineable: true + - Id: 1219 + AegisName: Gladius + Name: Gladius + Type: Weapon + SubType: Dagger + Buy: 43000 + Weight: 700 + Attack: 105 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 24 + Refineable: true + - Id: 1220 + AegisName: Gladius_ + Name: Gladius + Type: Weapon + SubType: Dagger + Buy: 43000 + Weight: 700 + Attack: 105 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 24 + Refineable: true + - Id: 1221 + AegisName: Gladius__ + Name: Gladius + Type: Weapon + SubType: Dagger + Buy: 43000 + Weight: 700 + Attack: 105 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 24 + Refineable: true + - Id: 1222 + AegisName: Damascus + Name: Damascus + Type: Weapon + SubType: Dagger + Buy: 49000 + Weight: 800 + Attack: 118 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 24 + Refineable: true + Script: | + bonus bUnbreakableWeapon; + - Id: 1223 + AegisName: Forturn_Sword + Name: Fortune Sword + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 500 + Attack: 90 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 24 + Refineable: true + Script: | + bonus bLuk,5; bonus bFlee2,20; + - Id: 1224 + AegisName: Sword_Breaker + Name: Swordbreaker + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 1000 + Attack: 70 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 36 + Refineable: true + Script: | + bonus bBreakWeaponRate,500; + - Id: 1225 + AegisName: Mail_Breaker + Name: Mailbreaker + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 1000 + Attack: 70 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 36 + Refineable: true + Script: | + bonus bBreakArmorRate,500; + - Id: 1226 + AegisName: Damascus_ + Name: Damascus + Type: Weapon + SubType: Dagger + Buy: 49000 + Weight: 800 + Attack: 118 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 24 + Refineable: true + Script: | + bonus bUnbreakableWeapon; + - Id: 1227 + AegisName: Weeder_Knife + Name: Weeder Knife + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 400 + Attack: 80 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 36 + Refineable: true + Script: | + bonus bIgnoreDefRace,RC_Plant; bonus2 bAddRace,RC_Plant,15; bonus2 bSubRace,RC_Plant,15; + - Id: 1228 + AegisName: Combat_Knife + Name: Combat Knife + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 400 + Attack: 80 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 36 + Refineable: true + Script: | + bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Demon,-10; + - Id: 1229 + AegisName: Mama's_Knife + Name: Kitchen Knife + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 500 + Attack: 75 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 36 + Refineable: true + Script: | + bonus bCritical,30; bonus3 bAddMonsterDropItem,517,RC_Brute,5000; + - Id: 1230 + AegisName: House_Auger + Name: Ice Pick + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 600 + Attack: 80 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 36 + Refineable: true + Script: | + bonus bDefRatioAtkClass,Class_All; + - Id: 1231 + AegisName: Bazerald + Name: Bazerald + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 500 + Attack: 70 + MagicAttack: 105 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 36 + Refineable: true + Script: | + bonus bAtkEle,Ele_Fire; bonus bInt,5; + - Id: 1232 + AegisName: Assasin_Dagger + Name: Assassin Dagger + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 600 + Attack: 140 + Range: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 36 + Refineable: true + Script: | + bonus bMaxHPrate,20; bonus bMaxSPrate,15; bonus bAspdRate,2; bonus bAtkEle,Ele_Dark; + - Id: 1233 + AegisName: Exercise + Name: Exorciser + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 700 + Attack: 90 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 36 + Refineable: true + Script: | + bonus bIgnoreDefRace,RC_Demon; bonus2 bSubRace,RC_Demon,5; bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player_Human,-10; + - Id: 1234 + AegisName: Moonlight_Sword + Name: Moonlight Dagger + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 700 + Attack: 50 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 36 + Refineable: true + Script: | + bonus bMaxSPrate,10; bonus bSPDrainValue,3; + - Id: 1235 + AegisName: Azoth + Name: Azoth + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 700 + Attack: 110 + Range: 1 + Jobs: + Alchemist: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 36 + Refineable: true + Script: | + bonus bClassChange,300; + - Id: 1236 + AegisName: Sucsamad + Name: Sucsamad + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 800 + Attack: 140 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 36 + Refineable: true + Script: | + bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Wind,10; bonus bUnbreakableWeapon; + - Id: 1237 + AegisName: Grimtooth_ + Name: Grimtooth + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 800 + Attack: 180 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 36 + Refineable: true + Script: | + bonus bFlee,10; bonus bFlee2,5; bonus bDefRate,-50; bonus bDef2Rate,-50; + - Id: 1238 + AegisName: Zeny_Knife + Name: Zeny Knife + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 1200 + Attack: 64 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus2 bGetZenyNum,100,40; + - Id: 1239 + AegisName: Poison_Knife + Name: Poison Knife + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 800 + Attack: 64 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 65 + Refineable: true + Script: | + bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,3000; + - Id: 1240 + AegisName: Princess_Knife + Name: Princess Knife + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 400 + Attack: 84 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bAllStats,1; + - Id: 1241 + AegisName: Cursed_Dagger + Name: Cursed Dagger + Type: Weapon + SubType: Dagger + Buy: 80000 + Weight: 400 + Attack: 55 + Range: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 85 + Refineable: true + Script: | + bonus2 bAddEff,Eff_Curse,5000; + - Id: 1242 + AegisName: Counter_Dagger + Name: Dagger of Counter + Type: Weapon + SubType: Dagger + Buy: 120000 + Weight: 550 + Attack: 140 + Range: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bCritical,90; + - Id: 1243 + AegisName: Novice_Knife + Name: Novice Main-Gauche + Type: Weapon + SubType: Dagger + Weight: 1 + Attack: 45 + Range: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1244 + AegisName: Holy_Dagger + Name: Holy Dagger + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 800 + Attack: 100 + Range: 1 + Jobs: + Assassin: true + Ninja: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bAtkEle,Ele_Holy; bonus2 bAddRace,RC_Demon,5; + - Id: 1245 + AegisName: Cinquedea + Name: Cinquedea + Type: Weapon + SubType: Dagger + Buy: 40000 + Weight: 700 + Attack: 110 + Range: 1 + Slots: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 30 + Refineable: true + - Id: 1246 + AegisName: Cinquedea_ + Name: Cinquedea + Type: Weapon + SubType: Dagger + Buy: 40000 + Weight: 700 + Attack: 110 + Range: 1 + Slots: 2 + Jobs: + Novice: true + SuperNovice: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 30 + Refineable: true + - Id: 1247 + AegisName: Kindling_Dagger + Name: Kindle Dagger + Type: Weapon + SubType: Dagger + Buy: 10000 + Weight: 600 + Attack: 39 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bAtkEle,Ele_Fire; + - Id: 1248 + AegisName: Obsidian_Dagger + Name: Obsidian Dagger + Type: Weapon + SubType: Dagger + Buy: 10000 + Weight: 600 + Attack: 39 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bAtkEle,Ele_Earth; + - Id: 1249 + AegisName: Fisherman's_Dagger + Name: Fisherman's Dagger + Type: Weapon + SubType: Dagger + Buy: 10000 + Weight: 600 + Attack: 39 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bAtkEle,Ele_Water; + - Id: 1250 + AegisName: Jur + Name: Jur + Type: Weapon + SubType: Katar + Buy: 19500 + Weight: 800 + Attack: 125 + Range: 1 + Slots: 2 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 18 + Refineable: true + - Id: 1251 + AegisName: Jur_ + Name: Jur + Type: Weapon + SubType: Katar + Buy: 19500 + Weight: 800 + Attack: 125 + Range: 1 + Slots: 3 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 18 + Refineable: true + - Id: 1252 + AegisName: Katar + Name: Katar + Type: Weapon + SubType: Katar + Buy: 41000 + Weight: 1200 + Attack: 148 + Range: 1 + Slots: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + Script: | + bonus bDex,1; + - Id: 1253 + AegisName: Katar_ + Name: Katar + Type: Weapon + SubType: Katar + Buy: 41000 + Weight: 1200 + Attack: 148 + Range: 1 + Slots: 2 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + Script: | + bonus bDex,1; + - Id: 1254 + AegisName: Jamadhar + Name: Jamadhar + Type: Weapon + SubType: Katar + Buy: 37200 + Weight: 1500 + Attack: 165 + Range: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + - Id: 1255 + AegisName: Jamadhar_ + Name: Jamadhar + Type: Weapon + SubType: Katar + Buy: 37200 + Weight: 1500 + Attack: 165 + Range: 1 + Slots: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + - Id: 1256 + AegisName: Katar_Of_Cold_Icicle + Name: Katar of Frozen Icicle + Type: Weapon + SubType: Katar + Buy: 45000 + Weight: 1200 + Attack: 105 + Range: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bAtkEle,Ele_Water; bonus2 bAddEff,Eff_Freeze,500; + - Id: 1257 + AegisName: Katar_Of_Thornbush + Name: Katar of Quaking + Type: Weapon + SubType: Katar + Buy: 45000 + Weight: 1200 + Attack: 105 + Range: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bAtkEle,Ele_Earth; bonus2 bAddEff,Eff_Blind,500; + - Id: 1258 + AegisName: Katar_Of_Raging_Blaze + Name: Katar of Raging Blaze + Type: Weapon + SubType: Katar + Buy: 45000 + Weight: 1200 + Attack: 105 + Range: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bAtkEle,Ele_Fire; bonus2 bAddEff,Eff_Silence,500; + - Id: 1259 + AegisName: Katar_Of_Piercing_Wind + Name: Katar of Piercing Wind + Type: Weapon + SubType: Katar + Buy: 45000 + Weight: 1200 + Attack: 105 + Range: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Sleep,500; + - Id: 1260 + AegisName: Ghoul_Leg + Name: Sharpened Legbone of Ghoul + Type: Weapon + SubType: Katar + Buy: 52500 + Weight: 1700 + Attack: 150 + Range: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 65 + Refineable: true + Script: | + bonus bAtkEle,Ele_Undead; + - Id: 1261 + AegisName: Infiltrator + Name: Infiltrator + Type: Weapon + SubType: Katar + Buy: 57000 + Weight: 1500 + Attack: 140 + Range: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 75 + Refineable: true + Script: | + bonus2 bAddRace,RC_DemiHuman,50; bonus2 bAddRace,RC_Player_Human,50; bonus bDef,3; bonus bFlee,5; bonus bFlee2,2; + - Id: 1262 + AegisName: Nail_Of_Loki + Name: Loki's Nail + Type: Weapon + SubType: Katar + Buy: 20 + Weight: 1200 + Attack: 115 + Range: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus2 bAddEff,Eff_Bleeding,300; + - Id: 1263 + AegisName: Unholy_Touch + Name: Unholy Touch + Type: Weapon + SubType: Katar + Buy: 20 + Weight: 1250 + Attack: 151 + Range: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Curse,200; bonus bCritical,-1; bonus bUnbreakableWeapon; + - Id: 1264 + AegisName: Various_Jur + Name: Specialty Jur + Type: Weapon + SubType: Katar + Buy: 20 + Weight: 800 + Attack: 90 + Range: 1 + Slots: 4 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bAddEff2,Eff_Bleeding,10; + - Id: 1265 + AegisName: Bloody_Roar + Name: Bloody Roar + Type: Weapon + SubType: Katar + Buy: 20 + Weight: 1000 + Attack: 120 + Range: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 75 + Refineable: true + Script: | + bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus bFlee,-(readparam(bAgi)+BaseLevel); bonus bHPrecovRate,-100; bonus bSPrecovRate,-100; + - Id: 1266 + AegisName: Infiltrator_ + Name: Infiltrator + Type: Weapon + SubType: Katar + Buy: 57000 + Weight: 1500 + Attack: 140 + Range: 1 + Slots: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 75 + Refineable: true + Script: | + bonus2 bAddRace,RC_DemiHuman,50; bonus2 bAddRace,RC_Player_Human,50; bonus bDef,3; bonus bFlee,5; bonus bFlee2,2; + - Id: 1267 + AegisName: Infiltrator_C + Name: Infiltrator + Type: Weapon + SubType: Katar + Buy: 1 + Attack: 189 + Range: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus bDef,3; bonus bFlee,5; bonus bFlee2,2; bonus bAspdRate,8; + - Id: 1268 + AegisName: Wild_Beast_Claw + Name: Wild Beast Claw + Type: Weapon + SubType: Katar + Buy: 20 + Weight: 1450 + Attack: 160 + Range: 1 + Slots: 1 + Jobs: + Assassin: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus3 bAutoSpell,"NPC_CRITICALWOUND",(getrefine()>=9?2:1),100; + - Id: 1269 + AegisName: Inverse_Scale + Name: Inverse Scale + Type: Weapon + SubType: Katar + Buy: 20 + Weight: 1500 + Attack: 140 + Range: 1 + Jobs: + Assassin: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bAtkEle,Ele_Holy; bonus3 bAutoSpell,"NPC_DRAGONFEAR",1,30; + - Id: 1270 + AegisName: Drill_Katar + Name: Drill Katar + Type: Weapon + SubType: Katar + Buy: 20 + Weight: 1400 + Attack: 110 + Range: 1 + Slots: 1 + Jobs: + Assassin: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bHit,30; bonus3 bAutoSpell,"ST_FULLSTRIP",1,150; + - Id: 1271 + AegisName: Blood_Tears + Name: Blood Tears + Type: Weapon + SubType: Katar + Buy: 20 + Weight: 1700 + Attack: 120 + Range: 1 + Slots: 2 + Jobs: + Assassin: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus3 bAutoSpell,"NPC_WIDEBLEEDING",(getrefine()>=9?2:1),30; + - Id: 1272 + AegisName: Scratcher + Name: Scratcher + Type: Weapon + SubType: Katar + Buy: 20 + Attack: 120 + Range: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,50; + - Id: 1273 + AegisName: Bloody_Roar_C + Name: Refined Bloody Roar + Type: Weapon + SubType: Katar + Buy: 1 + Attack: 148 + Range: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bHPRegenRate,3,5000; + - Id: 1274 + AegisName: Unholy_Touch_C + Name: Refined Unholy Touch + Type: Weapon + SubType: Katar + Buy: 1 + Attack: 179 + Range: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Curse,5000; bonus bUnbreakableWeapon; + - Id: 1275 + AegisName: Katar_Of_Cold_Icicle_ + Name: Katar of Frozen Icicle + Type: Weapon + SubType: Katar + Buy: 45000 + Weight: 1200 + Attack: 105 + Range: 1 + Slots: 3 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bAtkEle,Ele_Water; bonus2 bAddEff,Eff_Freeze,500; + - Id: 1276 + AegisName: Katar_Of_Thornbush_ + Name: Katar of Quaking + Type: Weapon + SubType: Katar + Buy: 45000 + Weight: 1200 + Attack: 105 + Range: 1 + Slots: 3 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bAtkEle,Ele_Earth; bonus2 bAddEff,Eff_Blind,500; + - Id: 1277 + AegisName: Katar_Of_Raging_Blaze_ + Name: Katar of Raging Blaze + Type: Weapon + SubType: Katar + Buy: 45000 + Weight: 1200 + Attack: 105 + Range: 1 + Slots: 3 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bAtkEle,Ele_Fire; bonus2 bAddEff,Eff_Silence,500; + - Id: 1278 + AegisName: Katar_Of_Piercing_Wind_ + Name: Katar of Piercing Wind + Type: Weapon + SubType: Katar + Buy: 45000 + Weight: 1200 + Attack: 105 + Range: 1 + Slots: 3 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Sleep,500; + - Id: 1279 + AegisName: BF_Katar1 + Name: Brave Carnage Katar + Type: Weapon + SubType: Katar + Buy: 20 + Attack: 130 + Range: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,1; bonus bDex,1; bonus bLuk,1; bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; + - Id: 1280 + AegisName: BF_Katar2 + Name: Valorous Carnage Katar + Type: Weapon + SubType: Katar + Buy: 20 + Attack: 130 + Range: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,1; bonus bDex,1; bonus bLuk,1; bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus bCritAtkRate,20; bonus bAspdRate,5; bonus bUnbreakableWeapon; + - Id: 1281 + AegisName: Krieger_Katar1 + Name: Glorious Bloody Roar + Type: Weapon + SubType: Katar + Buy: 20 + Attack: 140 + Range: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) autobonus "{ bonus bAspdRate,100; }",70,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; + - Id: 1282 + AegisName: Krieger_Katar2 + Name: Glorious Jamadhar + Type: Weapon + SubType: Katar + Buy: 20 + Attack: 140 + Range: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus bCritAtkRate,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bCriticalAddRace,RC_DemiHuman,5; bonus2 bCriticalAddRace,RC_Player_Human,5; } if(.@r>8) autobonus "{ bonus bAspdRate,100; }",70,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; + - Id: 1283 + AegisName: Katar_Of_Speed + Name: Katar Of Speed + Type: Weapon + SubType: Katar + Buy: 20 + Attack: 175 + Range: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bSkillAtk,"AS_SONICBLOW",25; bonus bAspdRate,3; + - Id: 1284 + AegisName: Krishna + Name: Krishna + Type: Weapon + SubType: Katar + Buy: 20 + Weight: 1200 + Attack: 120 + Range: 1 + Slots: 2 + Jobs: + Assassin: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 50 + Refineable: true + Script: | + bonus2 bSkillAtk,"AS_GRIMTOOTH",10; bonus3 bAutoSpell,"AS_SONICBLOW",max(getskilllv("AS_SONICBLOW"),1),100; + - Id: 1285 + AegisName: Cakram + Name: Chakram + Type: Weapon + SubType: Katar + Buy: 20 + Weight: 1000 + Attack: 130 + Range: 1 + Slots: 2 + Jobs: + Assassin: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 50 + Refineable: true + Script: | + if(getskilllv("AS_KATAR")==10) { bonus bHit,10; } bonus2 bSkillAtk,"ASC_METEORASSAULT",20; + - Id: 1286 + AegisName: Jamadhar_C + Name: Jamadhar + Type: Weapon + SubType: Katar + Attack: 200 + Range: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bUnbreakableWeapon; bonus2 bAddSize,Size_All,40; + - Id: 1287 + AegisName: Durga + Name: Durga + Type: Weapon + SubType: Katar + Buy: 20 + Weight: 1200 + Attack: 190 + Range: 1 + Slots: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 100 + Refineable: true + - Id: 1288 + AegisName: Bloody_Fear_C + Name: Bloody Fear + Type: Weapon + SubType: Katar + Buy: 1 + Attack: 145 + Range: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bAddEff,Eff_Bleeding,100; + - Id: 1289 + AegisName: P_Katar1 + Name: Eden Katar I + Type: Weapon + SubType: Katar + Attack: 155 + Range: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 60 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1290 + AegisName: Agent_Katar + Name: Agent Katar + Type: Weapon + SubType: Katar + Buy: 41000 + Weight: 1200 + Attack: 170 + Range: 1 + Slots: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bHit,readparam(bLuk)/2; + - Id: 1291 + AegisName: Guillotine_Katar + Name: Guillotine Katar + Type: Weapon + SubType: Katar + Buy: 56000 + Weight: 1500 + Attack: 200 + Range: 1 + Slots: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 140 + Refineable: true + Script: | + bonus bDex,2; bonus bFlee,-30; bonus2 bAddRace,RC_DemiHuman,50; bonus2 bAddRace,RC_Player_Human,50; bonus2 bSkillAtk,"GC_CROSSIMPACT",30; + - Id: 1292 + AegisName: Upg_Katar + Name: Upg Katar + Type: Weapon + SubType: Katar + Buy: 20 + Weight: 1000 + Attack: 80 + Range: 1 + Slots: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + Script: | + .@r = getrefine(); bonus bBaseAtk,(.@r*10); bonus bCritAtkRate,(.@r*2); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*10); + - Id: 1293 + AegisName: Velum_Jamadhar + Name: Vellum Jamadhar + Type: Weapon + SubType: Katar + Buy: 20 + Weight: 1200 + Attack: 170 + Range: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 95 + Refineable: true + Script: | + bonus4 bSetDefRace,RC_Player_Human,10000,5000,1; bonus4 bSetMDefRace,RC_Player_Human,10000,5000,1; bonus bAspdRate,getrefine(); + - Id: 1294 + AegisName: Velum_Scare + Name: Vellum Scale + Type: Weapon + SubType: Katar + Buy: 20 + Weight: 1200 + Attack: 50 + Range: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 95 + Refineable: true + Script: | + bonus3 bSPVanishRaceRate,RC_Player_Human,1000,10; + - Id: 1295 + AegisName: Blood_Tears_ + Name: Blood Tears + Type: Weapon + SubType: Katar + Buy: 20 + Weight: 1700 + Attack: 120 + Range: 1 + Slots: 3 + Jobs: + Assassin: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus3 bAutoSpell,"NPC_WIDEBLEEDING",(getrefine()>=9?2:1),30; + - Id: 1296 + AegisName: Metal_Katar + Name: Metal Katar + Type: Weapon + SubType: Katar + Buy: 20 + Attack: 75 + Range: 1 + Slots: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,(.@r*5); bonus bCritAtkRate,.@r; .@i = min(BaseLevel/10,12); if(.@i>2) bonus bBaseAtk,((.@i-2)*5); + - Id: 1297 + AegisName: Inverse_Scale_ + Name: Inverse Scale + Type: Weapon + SubType: Katar + Buy: 20 + Weight: 1500 + Attack: 140 + Range: 1 + Slots: 2 + Jobs: + Assassin: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bAtkEle,Ele_Holy; bonus3 bAutoSpell,"NPC_DRAGONFEAR",1,30; + - Id: 1298 + AegisName: Shiver_Katar + Name: Katar Of Horror + Type: Weapon + SubType: Katar + Buy: 60000 + Weight: 2700 + Attack: 110 + Range: 1 + Slots: 2 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 105 + Refineable: true + Script: | + bonus bCritical,getrefine(); + - Id: 1299 + AegisName: TE_Woe_Katar + Name: TE Woe Katar + Type: Weapon + SubType: Katar + Attack: 120 + Range: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 40 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Bleeding,1000; + - Id: 1300 + AegisName: Cleaver_ + Name: Cleaver + Type: Weapon + SubType: 1hAxe + Buy: 20 + Weight: 1200 + Attack: 140 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 44 + Refineable: true + Script: | + bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus3 bAddMonsterDropItem,517,RC_Brute,3000; + - Id: 1301 + AegisName: Axe + Name: Axe + Type: Weapon + SubType: 1hAxe + Buy: 500 + Weight: 800 + Attack: 38 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 3 + Refineable: true + - Id: 1302 + AegisName: Axe_ + Name: Axe + Type: Weapon + SubType: 1hAxe + Buy: 500 + Weight: 800 + Attack: 38 + Range: 1 + Slots: 4 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 3 + Refineable: true + - Id: 1303 + AegisName: Axe__ + Name: Axe + Type: Weapon + SubType: 1hAxe + Buy: 500 + Weight: 800 + Attack: 38 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 3 + Refineable: true + - Id: 1304 + AegisName: Orcish_Axe + Name: Orcish Axe + Type: Weapon + SubType: 1hAxe + Buy: 20 + Weight: 1500 + Attack: 75 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 3 + Refineable: true + - Id: 1305 + AegisName: Cleaver + Name: Cleaver + Type: Weapon + SubType: 1hAxe + Buy: 20 + Weight: 1200 + Attack: 140 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 44 + Refineable: true + Script: | + bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus3 bAddMonsterDropItem,517,RC_Brute,3000; + - Id: 1306 + AegisName: War_Axe + Name: War Axe + Type: Weapon + SubType: 1hAxe + Buy: 20 + Weight: 4200 + Attack: 140 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 76 + Refineable: true + Script: | + bonus bDex,2; bonus bLuk,2; bonus bUnbreakableWeapon; + - Id: 1307 + AegisName: Windhawk + Name: Windhawk + Type: Weapon + SubType: 1hAxe + Buy: 18000 + Weight: 1500 + Attack: 115 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 14 + Refineable: true + Script: | + bonus bAtkEle,Ele_Wind; bonus bAspdRate,5; bonus bUnbreakableWeapon; + - Id: 1308 + AegisName: Golden_Axe + Name: Golden Axe + Type: Weapon + SubType: 1hAxe + Buy: 20 + Weight: 3000 + Attack: 170 + Range: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 45 + Refineable: true + - Id: 1309 + AegisName: Orcish_Axe_ + Name: Orcish Axe + Type: Weapon + SubType: 1hAxe + Buy: 20 + Weight: 1500 + Attack: 75 + Range: 1 + Slots: 4 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 3 + Refineable: true + - Id: 1310 + AegisName: Krieger_Onehand_Axe1 + Name: Glorious Cleaver + Type: Weapon + SubType: 1hAxe + Buy: 20 + Attack: 130 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus bAspdRate,5; } if(.@r>8) { bonus bAspdRate,5; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,50; bonus4 bAutoSpellOnSkill,"MC_MAMMONITE","NPC_CRITICALWOUND",2,200; } + - Id: 1311 + AegisName: Vecer_Axe + Name: Vecer Axe + Type: Weapon + SubType: 1hAxe + Buy: 20 + Weight: 1500 + Attack: 140 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 50 + Refineable: true + Script: | + 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; } + - Id: 1312 + AegisName: Orcish_Axe_C + Name: Orcish Axe + Type: Weapon + SubType: 1hAxe + Attack: 110 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddSize,Size_All,70; + - Id: 1313 + AegisName: Tourist_Axe + Name: Tourist Axe + Type: Weapon + SubType: 1hAxe + Weight: 500 + Attack: 77 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,2; + - Id: 1314 + AegisName: F_Tomahawk_C + Name: Tomahawk + Type: Weapon + SubType: 2hAxe + Buy: 2 + Attack: 200 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + Script: | + bonus bAtkEle,Ele_Wind; skill "ITM_TOMAHAWK",1; + - Id: 1315 + AegisName: F_Right_Epsilon_C + Name: Light Epsilon + Type: Weapon + SubType: 2hAxe + Buy: 1 + Attack: 229 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Holy; bonus bStr,10; bonus2 bAddRace,RC_Demon,3; skill "AL_HEAL",3; + - Id: 1316 + AegisName: Adventure_Axe + Name: Adventure Axe + Type: Weapon + SubType: 1hAxe + Attack: 100 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Merchant: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + - Id: 1317 + AegisName: Academy_Axe + Name: Academy Axe + Type: Weapon + SubType: 1hAxe + Weight: 1600 + Attack: 130 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Merchant: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 30 + Refineable: true + Script: | + bonus bUnbreakableWeapon; bonus bAspdRate,5-(BaseLevel/10); bonus bMaxHP,200-(40*(BaseLevel/10)); + - Id: 1318 + AegisName: Dofle_Axe + Name: Deflation Axe + Type: Weapon + SubType: 1hAxe + Buy: 50000 + Weight: 1800 + Attack: 180 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 105 + Refineable: true + Script: | + skill "ITM_TOMAHAWK",1; + - Id: 1319 + AegisName: TE_Woe_Axe + Name: TE Woe Axe + Type: Weapon + SubType: 1hAxe + Attack: 100 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 40 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bUnbreakableWeapon; bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Freeze,1000; + - Id: 1321 + AegisName: Dofle_Axe_ + Name: Deflation Axe + Type: Weapon + SubType: 1hAxe + Buy: 50000 + Weight: 1800 + Attack: 180 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 105 + Refineable: true + Script: | + skill "ITM_TOMAHAWK",1; + - Id: 1322 + AegisName: Ru_Blue_Axe + Name: Blue Axe + Type: Weapon + SubType: 1hAxe + Buy: 10 + Weight: 1800 + Attack: 180 + Range: 1 + Slots: 1 + Jobs: + Acolyte: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Gunslinger: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Monk: true + Ninja: true + Novice: true + Priest: true + Rebellion: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Summoner: true + SuperNovice: true + Swordman: true + Taekwon: true + Thief: true + Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bStr,5; bonus bInt,5; + - Id: 1323 + AegisName: Ru_Gold_Axe + Name: Ru Gold Axe + Type: Weapon + SubType: 1hAxe + Weight: 1800 + Attack: 180 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 120 + Refineable: true + Script: | + bonus bStr,8; bonus bInt,8; + - Id: 1324 + AegisName: War_Axe_ + Name: War Axe + Type: Weapon + SubType: 1hAxe + Buy: 20 + Weight: 4200 + Attack: 140 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Blacksmith: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 76 + Refineable: true + Script: | + bonus bDex,2; bonus bLuk,2; + - Id: 1326 + AegisName: Illusion_War_Axe + Name: Illusion War Axe + Type: Weapon + SubType: 1hAxe + Weight: 4200 + Attack: 180 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Blacksmith: true + Merchant: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 120 + Refineable: true + Script: | + bonus bStr,2; bonus bDex,2; bonus bLuk,2; .@r = getrefine(); if (.@r >= 9) { .@val = 40; } else if (.@r >= 7) { .@val = 20; } bonus2 bSkillAtk,"NC_AXETORNADO",(100+.@val); bonus2 bSkillAtk,"NC_AXEBOOMERANG",(100+.@val); bonus2 bSkillAtk,"GN_CART_TORNADO",(75+.@val); + - Id: 1333 + AegisName: Golden_Wrench + Name: Golden Wrench + Type: Weapon + SubType: 1hAxe + Weight: 5500 + Attack: 220 + Range: 1 + Slots: 2 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bAddClass,Class_all,5; bonus bBaseAtk,4*.@r; if (.@r>=11) .@val = 35; else if (.@r>=9) .@val = 20; bonus2 bSkillAtk,"NC_AXEBOOMERANG",.@val; bonus2 bSkillAtk,"NC_POWERSWING",.@val; + - Id: 1336 + AegisName: Guardian_Knight_Axe + Name: Guardian Knight Axe + Type: Weapon + SubType: 1hAxe + Weight: 1500 + Attack: 210 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Crusader: true + Gunslinger: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Monk: true + Ninja: true + Novice: true + Priest: true + Rebellion: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Summoner: true + SuperNovice: true + Swordman: true + Taekwon: true + Thief: true + Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + bonus bUnbreakableWeapon; bonus2 bAddClass,Class_All,5; .@r = getrefine(); bonus bLongAtkRate,.@r; if(.@r >= 9){ bonus2 bSkillAtk,"NC_POWERSWING",20; bonus2 bSkillAtk,"NC_AXEBOOMERANG",20; } if(.@r >= 11){ bonus2 bAddRace,RC_Undead,20; bonus2 bAddRace,RC_Angel,20; } + - Id: 1351 + AegisName: Battle_Axe + Name: Battle Axe + Type: Weapon + SubType: 2hAxe + Buy: 5400 + Weight: 1500 + Attack: 80 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 3 + Refineable: true + - Id: 1352 + AegisName: Battle_Axe_ + Name: Battle Axe + Type: Weapon + SubType: 2hAxe + Buy: 5400 + Weight: 1500 + Attack: 80 + Range: 1 + Slots: 4 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 3 + Refineable: true + - Id: 1353 + AegisName: Battle_Axe__ + Name: Battle Axe + Type: Weapon + SubType: 2hAxe + Buy: 5400 + Weight: 1500 + Attack: 80 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 3 + Refineable: true + - Id: 1354 + AegisName: Hammer + Name: Hammer + Type: Weapon + SubType: 2hAxe + Buy: 15500 + Weight: 2000 + Attack: 120 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 16 + Refineable: true + - Id: 1355 + AegisName: Hammer_ + Name: Hammer + Type: Weapon + SubType: 2hAxe + Buy: 15500 + Weight: 2000 + Attack: 120 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 16 + Refineable: true + - Id: 1356 + AegisName: Hammer__ + Name: Hammer + Type: Weapon + SubType: 2hAxe + Buy: 15500 + Weight: 2000 + Attack: 120 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 16 + Refineable: true + - Id: 1357 + AegisName: Buster + Name: Buster + Type: Weapon + SubType: 2hAxe + Buy: 34000 + Weight: 2200 + Attack: 155 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 30 + Refineable: true + - Id: 1358 + AegisName: Buster_ + Name: Buster + Type: Weapon + SubType: 2hAxe + Buy: 34000 + Weight: 2200 + Attack: 155 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 30 + Refineable: true + - Id: 1359 + AegisName: Buster__ + Name: Buster + Type: Weapon + SubType: 2hAxe + Buy: 34000 + Weight: 2200 + Attack: 155 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 30 + Refineable: true + - Id: 1360 + AegisName: Two_Handed_Axe + Name: Two-Handed Axe + Type: Weapon + SubType: 2hAxe + Buy: 55000 + Weight: 2500 + Attack: 185 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 30 + Refineable: true + - Id: 1361 + AegisName: Two_Handed_Axe_ + Name: Two-Handed Axe + Type: Weapon + SubType: 2hAxe + Buy: 55000 + Weight: 2500 + Attack: 185 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 30 + Refineable: true + - Id: 1362 + AegisName: Two_Handed_Axe__ + Name: Two-Handed Axe + Type: Weapon + SubType: 2hAxe + Buy: 55000 + Weight: 2500 + Attack: 185 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 30 + Refineable: true + - Id: 1363 + AegisName: Brood_Axe + Name: Bloody Axe + Type: Weapon + SubType: 2hAxe + Buy: 20 + Weight: 4000 + Attack: 170 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 44 + Refineable: true + Script: | + bonus bStr,10; bonus bSpeedRate,25; + - Id: 1364 + AegisName: Great_Axe + Name: Great Axe + Type: Weapon + SubType: 2hAxe + Buy: 20 + Weight: 1800 + Attack: 187 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 44 + Refineable: true + Script: | + bonus2 bAddSkillBlow,"MC_MAMMONITE",5; bonus2 bAddEff,Eff_Stun,1500; + - Id: 1365 + AegisName: Sabbath + Name: Sabbath + Type: Weapon + SubType: 2hAxe + Buy: 20 + Weight: 2300 + Attack: 120 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 44 + Refineable: true + Script: | + bonus bAtkEle,Ele_Dark; bonus2 bComaRace,RC_Demon,50; bonus2 bCriticalAddRace,RC_Undead,50; + - Id: 1366 + AegisName: Right_Epsilon + Name: Light Epsilon + Type: Weapon + SubType: 2hAxe + Buy: 20 + Weight: 2300 + Attack: 180 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 44 + Refineable: true + Script: | + bonus bAtkEle,Ele_Holy; skill "AL_HEAL",3; bonus2 bAddRace,RC_Demon,3; + - Id: 1367 + AegisName: Slaughter + Name: Slaughter + Type: Weapon + SubType: 2hAxe + Buy: 20 + Weight: 2500 + Attack: 120 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 44 + Refineable: true + Script: | + bonus bAtkEle,Ele_Earth; bonus bIgnoreDefRace,RC_Brute; bonus2 bComaRace,RC_Brute,40; bonus bIgnoreDefRace,RC_Player_Doram; bonus2 bComaRace,RC_Player_Doram,40; + - Id: 1368 + AegisName: Tomahawk + Name: Tomahawk + Type: Weapon + SubType: 2hAxe + Buy: 20 + Weight: 2500 + Attack: 165 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 44 + Refineable: true + Script: | + bonus bAtkEle,Ele_Wind; skill "ITM_TOMAHAWK",1; + - Id: 1369 + AegisName: Guillotine + Name: Guillotine + Type: Weapon + SubType: 2hAxe + Buy: 20 + Weight: 3000 + Attack: 215 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 44 + Refineable: true + Script: | + bonus2 bComaRace,RC_DemiHuman,30; bonus2 bComaRace,RC_Player_Human,30; bonus2 bSPDrainValueRace,RC_DemiHuman,2; bonus2 bSPDrainValueRace,RC_Player_Human,2; bonus2 bSPGainRace,RC_DemiHuman,20; bonus2 bSPGainRace,RC_Player_Human,20; + - Id: 1370 + AegisName: Doom_Slayer + Name: Doom Slayer + Type: Weapon + SubType: 2hAxe + Buy: 20 + Weight: 6000 + Attack: 10 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Script: | + bonus bAspdRate,-40; bonus bUseSPrate,100; if(readparam(bStr)>=95){ bonus bBaseAtk,340; bonus2 bAddEff,Eff_Stun,3000; bonus bBreakArmorRate,500; } + - Id: 1371 + AegisName: Doom_Slayer_ + Name: Doom Slayer + Type: Weapon + SubType: 2hAxe + Buy: 20 + Weight: 6000 + Attack: 10 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Script: | + bonus bAspdRate,-40; bonus bUseSPrate,100; if(readparam(bStr)>=95){ bonus bBaseAtk,340; bonus2 bAddEff,Eff_Stun,3000; bonus bBreakArmorRate,500; } + - Id: 1372 + AegisName: Right_Epsilon_C + Name: Light Epsilon + Type: Weapon + SubType: 2hAxe + Buy: 1 + Attack: 229 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + 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; */ + - Id: 1373 + AegisName: Brood_Axe_C + Name: Refined Bloody Axe + Type: Weapon + SubType: 2hAxe + Buy: 2 + Attack: 205 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,20; bonus bMatkRate,20; bonus bAspdRate,5; + - Id: 1374 + AegisName: Tomahawk_C + Name: Tomahawk + Type: Weapon + SubType: 2hAxe + Buy: 2 + Attack: 200 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAtkEle,Ele_Wind; skill "ITM_TOMAHAWK",1; + - Id: 1375 + AegisName: Berdysz + Name: Berdysz + Type: Weapon + SubType: 2hAxe + Buy: 20 + Weight: 2500 + Attack: 200 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus2 bSubSize,Size_Medium,13; bonus2 bSubSize,Size_Large,15; + - Id: 1376 + AegisName: Heart_Breaker + Name: Heart Breaker + Type: Weapon + SubType: 2hAxe + Buy: 20 + Weight: 2000 + Attack: 175 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 70 + Refineable: true + Script: | + 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; + - Id: 1377 + AegisName: Hurricane_Fury + Name: Hurricane's Fury + Type: Weapon + SubType: 2hAxe + Buy: 20 + Weight: 3500 + Attack: 332 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSubSize,Size_Medium,10+.@r; bonus bAspdRate,.@r; bonus3 bAutoSpell,"NPC_PULSESTRIKE",5,20; + - Id: 1378 + AegisName: Great_Axe_C + Name: Refined Great Axe + Type: Weapon + SubType: 2hAxe + Buy: 1 + Attack: 215 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,5; bonus bHit,20; bonus2 bSkillAtk,"MC_MAMMONITE",20; bonus2 bAddEff,Eff_Stun,2000; + - Id: 1379 + AegisName: BF_Two_Handed_Axe1 + Name: Valorous Insane Battle Axe + Type: Weapon + SubType: 2hAxe + Buy: 20 + Attack: 200 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,3; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; + - Id: 1380 + AegisName: BF_Two_Handed_Axe2 + Name: Brave Insane Battle Axe + Type: Weapon + SubType: 2hAxe + Buy: 20 + Attack: 200 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,3; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; autobonus "{ bonus bBreakArmorRate,10000; }",20,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; bonus bUnbreakableWeapon; + - Id: 1381 + AegisName: N_Battle_Axe + Name: Novice Battle Axe + Type: Weapon + SubType: 2hAxe + Attack: 100 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 3 + - Id: 1382 + AegisName: Krieger_Twohand_Axe1 + Name: Glorious Two-Handed Axe + Type: Weapon + SubType: 2hAxe + Buy: 20 + Attack: 220 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-3,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-3,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,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; } + - Id: 1383 + AegisName: Holy_Celestial_Axe + Name: Celestial Axe + Type: Weapon + SubType: 2hAxe + Buy: 20 + Weight: 1500 + Attack: 200 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Merchant: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 60 + Refineable: true + Script: | + bonus2 bAddRace,RC_Undead,10; bonus3 bAutoSpell,"AL_BLESSING",5,5; + - Id: 1384 + AegisName: Veteran_Axe + Name: Veteran Axe + Type: Weapon + SubType: 2hAxe + Buy: 10000 + Weight: 3000 + Attack: 250 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Script: | + 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; bonus4 bAutoSpellOnSkill,"BS_HAMMERFALL","SM_MAGNUM",3,50; + - Id: 1385 + AegisName: Bradium_Stonehammer + Name: Bradium Stone Hammer + Type: Weapon + SubType: 2hAxe + Buy: 20 + Weight: 2700 + Attack: 210 + Range: 1 + Jobs: + Blacksmith: true + Classes: + Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 75 + Refineable: true + Script: | + bonus3 bAddEffOnSkill,"BS_HAMMERFALL",Eff_Stun,500+(200*getrefine()); + - Id: 1386 + AegisName: Doom_Slayer_I + Name: Doom Slayer + Type: Weapon + SubType: 2hAxe + Attack: 20 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAspdRate,-25; bonus bUseSPrate,100; if(readparam(bStr)>=95){ bonus bBaseAtk,400; bonus2 bAddEff,Eff_Stun,3000; bonus bBreakArmorRate,500; } + - Id: 1387 + AegisName: Giant_Axe + Name: Giant Axe + Type: Weapon + SubType: 2hAxe + Buy: 20 + Weight: 4000 + Attack: 330 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 50 + Refineable: true + Script: | + bonus2 bSkillAtk,"WS_CARTTERMINATION",15; if(readparam(bStr)>=95) { bonus bHit,10; bonus bAspdRate,3; } + - Id: 1388 + AegisName: Two_Handed_Axe_C + Name: Two-Handed Axe + Type: Weapon + SubType: 2hAxe + Attack: 220 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddSize,Size_All,40; + - Id: 1389 + AegisName: E_Tomahawk_C + Name: Tomahawk + Type: Weapon + SubType: 2hAxe + Buy: 2 + Attack: 200 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + Script: | + bonus bAtkEle,Ele_Wind; + - Id: 1390 + AegisName: E_Right_Epsilon_C + Name: Light Epsilon + Type: Weapon + SubType: 2hAxe + Buy: 1 + Attack: 229 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Holy; bonus bStr,10; + - Id: 1391 + AegisName: P_Two_Handed_Axe1 + Name: Eden Two-Handed Axe I + Type: Weapon + SubType: 2hAxe + Attack: 195 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 60 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1392 + AegisName: Ygnus_Stale + Name: Ignus Steel + Type: Weapon + SubType: 2hAxe + Buy: 56000 + Weight: 1900 + Attack: 250 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Classes: + Upper: true + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 95 + Refineable: true + Script: | + bonus bAtkEle,Ele_Fire; bonus bUnbreakableWeapon; bonus2 bAddEff,Eff_Burning,200; bonus2 bAddEff2,Eff_Burning,100; + - Id: 1393 + AegisName: End_Sektura + Name: End Sectora + Type: Weapon + SubType: 2hAxe + Buy: 56000 + Weight: 1900 + Attack: 250 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Classes: + Upper: true + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 95 + Refineable: true + Script: | + bonus bAtkEle,Ele_Water; bonus bUnbreakableWeapon; bonus2 bAddEff,Eff_Freeze,300; bonus2 bAddEff2,Eff_Freeze,300; + - Id: 1394 + AegisName: Upg_Two_Handed_Axe + Name: Upg Two Handed Axe + Type: Weapon + SubType: 2hAxe + Buy: 20 + Weight: 2000 + Attack: 110 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bBaseAtk,(getrefine()*14); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*10); bonus bUnbreakableWeapon; + - Id: 1395 + AegisName: Velum_Buster + Name: Vellum Buster + Type: Weapon + SubType: 2hAxe + Buy: 20 + Weight: 2500 + Attack: 50 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 95 + Refineable: true + Script: | + bonus bUnbreakableWeapon; bonus3 bSPVanishRaceRate,RC_Player_Human,1000,10; + - Id: 1396 + AegisName: Velum_Guillotine + Name: Vellum Guillotine + Type: Weapon + SubType: 2hAxe + Buy: 20 + Weight: 5500 + Attack: 300 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 95 + Refineable: true + Script: | + bonus bUnbreakableWeapon; bonus2 bAddRace,RC_Player_Human,40; bonus2 bIgnoreDefRaceRate,RC_Player_Human,30; .@r = getrefine(); if(.@r>=6) { bonus2 bSkillAtk,"NC_AXEBOOMERANG",80; bonus2 bSkillAtk,"NC_POWERSWING",80; } if(.@r>=9) { bonus2 bAddRace,RC_Player_Human,60; } + - Id: 1397 + AegisName: Bradium_Stonehammer_ + Name: Bradium Stone Hammer + Type: Weapon + SubType: 2hAxe + Buy: 20 + Weight: 2700 + Attack: 210 + Range: 1 + Slots: 2 + Jobs: + Blacksmith: true + Classes: + Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 75 + Refineable: true + Script: | + bonus3 bAddEffOnSkill,"BS_HAMMERFALL",Eff_Stun,500+(200*getrefine()); + - Id: 1398 + AegisName: Metal_Two_Handed_Axe + Name: Metal Two Handed Axe + Type: Weapon + SubType: 2hAxe + Buy: 20 + Attack: 105 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bUnbreakableWeapon; bonus bBaseAtk,(getrefine()*7); .@i = min(BaseLevel/10,12); if(.@i>2) bonus bBaseAtk,((.@i-2)*5); + - Id: 1399 + AegisName: TE_Woe_Two_Handed_Axe + Name: TE Woe Two Handed Axe + Type: Weapon + SubType: 2hAxe + Attack: 150 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 40 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bUnbreakableWeapon; bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Stun,1000; + - Id: 1400 + AegisName: Spear_of_Vicious_Mind + Name: Spear of Vicious Mind + Type: Weapon + SubType: 1hSpear + Buy: 20 + Weight: 1400 + Attack: 140 + Range: 3 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 160 + Refineable: true + Script: | + bonus bAtk,pow(min(getrefine(),15),2); + - Id: 1401 + AegisName: Javelin + Name: Javelin + Type: Weapon + SubType: 1hSpear + Buy: 150 + Weight: 700 + Attack: 28 + Range: 3 + Slots: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 4 + Refineable: true + - Id: 1402 + AegisName: Javelin_ + Name: Javelin + Type: Weapon + SubType: 1hSpear + Buy: 150 + Weight: 700 + Attack: 28 + Range: 3 + Slots: 4 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 4 + Refineable: true + - Id: 1403 + AegisName: Javelin__ + Name: Javelin + Type: Weapon + SubType: 1hSpear + Buy: 150 + Weight: 700 + Attack: 28 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 4 + Refineable: true + - Id: 1404 + AegisName: Spear + Name: Spear + Type: Weapon + SubType: 1hSpear + Buy: 1700 + Weight: 850 + Attack: 44 + Range: 3 + Slots: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 4 + Refineable: true + - Id: 1405 + AegisName: Spear_ + Name: Spear + Type: Weapon + SubType: 1hSpear + Buy: 1700 + Weight: 850 + Attack: 44 + Range: 3 + Slots: 4 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 4 + Refineable: true + - Id: 1406 + AegisName: Spear__ + Name: Spear + Type: Weapon + SubType: 1hSpear + Buy: 1700 + Weight: 850 + Attack: 44 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 4 + Refineable: true + - Id: 1407 + AegisName: Pike + Name: Pike + Type: Weapon + SubType: 1hSpear + Buy: 3450 + Weight: 1000 + Attack: 60 + Range: 3 + Slots: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 4 + Refineable: true + - Id: 1408 + AegisName: Pike_ + Name: Pike + Type: Weapon + SubType: 1hSpear + Buy: 3450 + Weight: 1000 + Attack: 60 + Range: 3 + Slots: 4 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 4 + Refineable: true + - Id: 1409 + AegisName: Pike__ + Name: Pike + Type: Weapon + SubType: 1hSpear + Buy: 3450 + Weight: 1000 + Attack: 60 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 4 + Refineable: true + - Id: 1410 + AegisName: Lance + Name: Lance + Type: Weapon + SubType: 2hSpear + Buy: 60000 + Weight: 2500 + Attack: 185 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + - Id: 1411 + AegisName: Lance_ + Name: Lance + Type: Weapon + SubType: 2hSpear + Buy: 60000 + Weight: 2500 + Attack: 185 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + - Id: 1412 + AegisName: Lance__ + Name: Lance + Type: Weapon + SubType: 2hSpear + Buy: 60000 + Weight: 2500 + Attack: 185 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + - Id: 1413 + AegisName: Gungnir + Name: Gungnir + Type: Weapon + SubType: 1hSpear + Buy: 20 + Weight: 500 + Attack: 120 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 4 + Refineable: true + Script: | + bonus bAtkEle,Ele_Wind; bonus bPerfectHitRate,25; bonus bHit,30; + - Id: 1414 + AegisName: Gelerdria + Name: Gelerdria + Type: Weapon + SubType: 1hSpear + Buy: 20 + Weight: 700 + Attack: 145 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus bAtkEle,Ele_Earth; bonus bMaxHP,800; bonus bMaxSP,-50; + - Id: 1415 + AegisName: Skewer + Name: Brocca + Type: Weapon + SubType: 1hSpear + Buy: 20 + Weight: 850 + Attack: 100 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus bIgnoreDefClass,Class_Normal; bonus2 bAddEle,Ele_Neutral,25; + - Id: 1416 + AegisName: Tjungkuletti + Name: Tjungkuletti + Type: Weapon + SubType: 1hSpear + Buy: 20 + Weight: 1000 + Attack: 100 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus bSPDrainValue,1; bonus bSPGainValue,5; + - Id: 1417 + AegisName: Pole_Axe + Name: Pole Axe + Type: Weapon + SubType: 1hSpear + Buy: 20 + Weight: 3800 + Attack: 160 + Range: 3 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 71 + Refineable: true + Script: | + bonus bStr,1; bonus bInt,2; bonus bDex,1; + - Id: 1418 + AegisName: Gungnir_ + Name: Gungnir + Type: Weapon + SubType: 1hSpear + Buy: 20 + Weight: 500 + Attack: 120 + Range: 3 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 4 + Refineable: true + Script: | + bonus bAtkEle,Ele_Wind; bonus bPerfectHitRate,25; bonus bHit,30; + - Id: 1419 + AegisName: Pole_Axe_C + Name: Pole Axe + Type: Weapon + SubType: 1hSpear + Buy: 1 + Weight: 4800 + Attack: 195 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,1; bonus bInt,2; bonus bDex,1; + - Id: 1420 + AegisName: Long_Horn + Name: Long Horn + Type: Weapon + SubType: 1hSpear + Buy: 20 + Weight: 1000 + Attack: 150 + Range: 3 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 65 + Refineable: true + Script: | + bonus bAtkEle,Ele_Holy; bonus2 bAddEff,Eff_Bleeding,500; skill "TF_DETOXIFY",1; bonus bUnbreakableWeapon; + - Id: 1421 + AegisName: Battle_Hook + Name: Battle Hook + Type: Weapon + SubType: 1hSpear + Buy: 20 + Weight: 900 + Attack: 140 + Range: 3 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 65 + Refineable: true + Script: | + bonus2 bAddEff,Eff_Stun,500; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; skill "KN_PIERCE",3; + - Id: 1422 + AegisName: Hunting_Spear + Name: Hunting Spear + Type: Weapon + SubType: 1hSpear + Buy: 20 + Weight: 4200 + Attack: 180 + Range: 3 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 60 + Refineable: true + Script: | + bonus bIgnoreDefRace,RC_Brute; bonus bIgnoreDefRace,RC_Player_Doram; bonus3 bAddMonsterDropItem,517,RC_Brute,1000; bonus3 bAutoSpell,"LK_JOINTBEAT",3,100; + - Id: 1423 + AegisName: Pole_XO + Name: Pole XO + Type: Weapon + SubType: 1hSpear + Buy: 20 + Attack: 120 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,50; + - Id: 1424 + AegisName: Skewer_C + Name: Refined Brocca + Type: Weapon + SubType: 1hSpear + Buy: 1 + Attack: 149 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bIgnoreDefClass,Class_Normal; bonus2 bAddSize,Size_Medium,20; bonus2 bAddSize,Size_Large,20; + - Id: 1425 + AegisName: BF_Spear1 + Name: Assaulter Spear + Type: Weapon + SubType: 1hSpear + Buy: 20 + Attack: 60 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(BaseJob==Job_Crusader) bonus bAspdRate,20; + - Id: 1426 + AegisName: Krieger_Onehand_Spear1 + Name: Glorious Spear + Type: Weapon + SubType: 1hSpear + Buy: 20 + Attack: 130 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus bAspdRate,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,100; bonus bAspdRate,5; } + - Id: 1427 + AegisName: Spear_Of_Excellent + Name: Spear Of Excellent + Type: Weapon + SubType: 1hSpear + Buy: 20 + Attack: 160 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bSkillAtk,"SM_MAGNUM",25; bonus bStr,2; + - Id: 1428 + AegisName: Long_Horn_M + Name: Long Horn + Type: Weapon + SubType: 1hSpear + Buy: 20 + Weight: 1000 + Attack: 150 + Range: 3 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 65 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAtkEle,Ele_Holy; bonus2 bAddEff,Eff_Bleeding,500; skill "TF_DETOXIFY",1; bonus bUnbreakableWeapon; + - Id: 1429 + AegisName: Hunting_Spear_M + Name: Hunting Spear + Type: Weapon + SubType: 1hSpear + Buy: 20 + Weight: 4200 + Attack: 180 + Range: 3 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 60 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bIgnoreDefRace,RC_Brute; bonus bIgnoreDefRace,RC_Player_Doram; bonus3 bAddMonsterDropItem,517,RC_Brute,1000; bonus3 bAutoSpell,"LK_JOINTBEAT",3,100; + - Id: 1430 + AegisName: Pike_C + Name: Pike + Type: Weapon + SubType: 1hSpear + Attack: 74 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddSize,Size_All,70; + - Id: 1431 + AegisName: F_Pole_Axe_C + Name: Pole Axe + Type: Weapon + SubType: 1hSpear + Buy: 1 + Weight: 4800 + Attack: 195 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Script: | + bonus bStr,1; bonus bInt,2; bonus bDex,1; + - Id: 1432 + AegisName: E_Pole_Axe_C + Name: Pole Axe + Type: Weapon + SubType: 1hSpear + Buy: 1 + Weight: 4800 + Attack: 195 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Script: | + bonus bStr,1; bonus bInt,2; bonus bDex,1; + - Id: 1433 + AegisName: Imperial_Spear + Name: Imperial Spear + Type: Weapon + SubType: 1hSpear + Buy: 20 + Weight: 1800 + Attack: 180 + MagicAttack: 40 + Range: 3 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 102 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"LG_CANNONSPEAR",20+(.@r/2*3); bonus2 bSkillAtk,"LG_BANISHINGPOINT",20+(.@r/2*3); + - Id: 1434 + AegisName: P_Sphere1 + Name: Eden Spear I + Type: Weapon + SubType: 1hSpear + Attack: 165 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 60 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1435 + AegisName: Cannon_Spear + Name: Cannon Spear + Type: Weapon + SubType: 1hSpear + Buy: 56000 + Weight: 1600 + Attack: 180 + Range: 3 + Slots: 1 + Jobs: + Crusader: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bMaxSP,-100; bonus2 bSkillAtk,"LG_CANNONSPEAR",10; bonus2 bSkillAtk,"LG_CANNONSPEAR",(getrefine()/3); + - Id: 1436 + AegisName: Velum_Spear + Name: Vellum Spear + Type: Weapon + SubType: 1hSpear + Buy: 20 + Weight: 850 + Attack: 150 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 95 + Refineable: true + Script: | + bonus2 bAddRace,RC_Player_Human,60; .@r = getrefine(); if(.@r>=6) { bonus2 bSkillAtk,"RK_HUNDREDSPEAR",80; bonus2 bSkillAtk,"LG_PINPOINTATTACK",80; } if(.@r>=9) { bonus2 bAddRace,RC_Player_Human,30; } + - Id: 1437 + AegisName: TE_Woe_Pike + Name: TE Woe Pike + Type: Weapon + SubType: 1hSpear + Attack: 100 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 40 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Curse,1000; + - Id: 1438 + AegisName: Thanos_Spear + Name: Thanos Spear + Type: Weapon + SubType: 1hSpear + Buy: 10 + Weight: 3000 + Attack: 150 + MagicAttack: 100 + Range: 3 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 120 + Refineable: true + Script: | + bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000; + UnEquipScript: | + heal -1000,0; + - Id: 1439 + AegisName: Half_BF_Spear1 + Name: Half BF Spear1 + Type: Weapon + SubType: 1hSpear + Buy: 20 + Attack: 60 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Script: | + bonus bStr,2; bonus2 bAddRace,RC_DemiHuman,45; bonus2 bAddRace,RC_Player_Human,45; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon; if(BaseJob==Job_Crusader) bonus bAspdRate,20; + - Id: 1440 + AegisName: Battle_Hook_ + Name: Battle Hook + Type: Weapon + SubType: 1hSpear + Buy: 20 + Weight: 900 + Attack: 140 + Range: 3 + Slots: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 65 + Refineable: true + Script: | + bonus2 bAddEff,Eff_Stun,500; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; skill "KN_PIERCE",3; + - Id: 1441 + AegisName: Ru_Blue_Spear + Name: Blue Spear + Type: Weapon + SubType: 1hSpear + Buy: 10 + Weight: 1200 + Attack: 180 + Range: 3 + Slots: 1 + Jobs: + Crusader: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bStr,5; bonus bAgi,5; + - Id: 1442 + AegisName: Ru_Gold_Spear + Name: Ru Gold Spear + Type: Weapon + SubType: 1hSpear + Weight: 1200 + Attack: 180 + Range: 3 + Slots: 2 + Jobs: + Crusader: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 120 + Refineable: true + Script: | + bonus bStr,8; bonus bAgi,8; + - Id: 1443 + AegisName: Crimson_Spear + Name: Crimson Spear + Type: Weapon + SubType: 1hSpear + Buy: 20 + Weight: 900 + Attack: 90 + Range: 3 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,(.@r<=15?pow(.@r,2):225); bonus bBaseAtk,((max(0,BaseLevel-70)/10)*5); + - Id: 1445 + AegisName: "[Rental]_Hunting_Spear" + Name: "[Rental] Hunting Spear" + Type: Weapon + SubType: 1hSpear + Buy: 20 + Attack: 140 + Range: 3 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 50 + Refineable: true + Script: | + .@r = getrefine(); if(.@r >= 7){ bonus2 bAddRace,RC_Insect,10; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddEle,Ele_Water,10; bonus2 bAddEle,Ele_Earth,10; } if(.@r >= 9){ bonus2 bAddRace,RC_Insect,15; bonus2 bAddRace,RC_DemiHuman,15; bonus2 bAddEle,Ele_Water,15; bonus2 bAddEle,Ele_Earth,15; } bonus bAtkEle,Ele_Fire; + - Id: 1446 + AegisName: Requiem_Spear + Name: Requiem Spear + Type: Weapon + SubType: 1hSpear + Buy: 20 + Weight: 1000 + Attack: 130 + Range: 3 + Jobs: + Crusader: true + Knight: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); .@b = 40; bonus bUnbreakableWeapon; if(.@r>=5){ .@b += (.@r-5)*15+20; } bonus2 bAddRace2,RC2_BioLab,.@b; + - Id: 1447 + AegisName: Poison_Forged_Spear + Name: Poison Forged Spear + Type: Weapon + SubType: 1hSpear + Weight: 500 + Attack: 150 + Range: 3 + Slots: 3 + Jobs: + Crusader: true + Knight: true + Classes: + Upper: true + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bAtkEle,Ele_Poison; bonus bCritical,10; skill "TF_DOUBLE",5; bonus bDoubleRate,25; bonus2 bAddEff,Eff_Poison,1000; bonus2 bAddEff2,Eff_Poison,300; + - Id: 1448 + AegisName: Warrior's_Spear + Name: Warrior's Spear + Type: Weapon + SubType: 1hSpear + Weight: 2000 + Attack: 140 + Range: 3 + Slots: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 50 + Refineable: true + Script: | + .@r = getrefine(); if(.@r >= 7){ bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Plant,10; bonus2 bAddEle,Ele_Wind,10; bonus2 bAddEle,Ele_Earth,10; } if(.@r >= 9){ bonus2 bAddRace,RC_Brute,15; bonus2 bAddRace,RC_Plant,15; bonus2 bAddEle,Ele_Wind,15; bonus2 bAddEle,Ele_Earth,15; } + - Id: 1449 + AegisName: Gelerdria_ + Name: Gelerdria + Type: Weapon + SubType: 1hSpear + Buy: 20 + Weight: 700 + Attack: 145 + Range: 3 + Slots: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus bAtkEle,Ele_Earth; bonus bMaxHP,800; bonus bMaxSP,-50; + - Id: 1450 + AegisName: Lance_of_Vicious_Mind + Name: Lance of Vicious Mind + Type: Weapon + SubType: 2hSpear + Buy: 20 + Weight: 2250 + Attack: 225 + Range: 3 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 160 + Refineable: true + Script: | + bonus bAtk,pow(min(getrefine(),15),2); + - Id: 1451 + AegisName: Guisarme + Name: Guisarme + Type: Weapon + SubType: 2hSpear + Buy: 13000 + Weight: 1000 + Attack: 84 + Range: 3 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 18 + Refineable: true + - Id: 1452 + AegisName: Guisarme_ + Name: Guisarme + Type: Weapon + SubType: 2hSpear + Buy: 13000 + Weight: 1000 + Attack: 84 + Range: 3 + Slots: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 18 + Refineable: true + - Id: 1453 + AegisName: Guisarme__ + Name: Guisarme + Type: Weapon + SubType: 2hSpear + Buy: 13000 + Weight: 1000 + Attack: 84 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 18 + Refineable: true + - Id: 1454 + AegisName: Glaive + Name: Glaive + Type: Weapon + SubType: 2hSpear + Buy: 20000 + Weight: 1200 + Attack: 104 + Range: 3 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 18 + Refineable: true + - Id: 1455 + AegisName: Glaive_ + Name: Glaive + Type: Weapon + SubType: 2hSpear + Buy: 20000 + Weight: 1200 + Attack: 104 + Range: 3 + Slots: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 18 + Refineable: true + - Id: 1456 + AegisName: Glaive__ + Name: Glaive + Type: Weapon + SubType: 2hSpear + Buy: 20000 + Weight: 1200 + Attack: 104 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 18 + Refineable: true + - Id: 1457 + AegisName: Partizan + Name: Partizan + Type: Weapon + SubType: 2hSpear + Buy: 27000 + Weight: 2000 + Attack: 124 + Range: 3 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 18 + Refineable: true + - Id: 1458 + AegisName: Partizan_ + Name: Partizan + Type: Weapon + SubType: 2hSpear + Buy: 27000 + Weight: 2000 + Attack: 124 + Range: 3 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 18 + Refineable: true + - Id: 1459 + AegisName: Partizan__ + Name: Partizan + Type: Weapon + SubType: 2hSpear + Buy: 27000 + Weight: 2000 + Attack: 124 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 18 + Refineable: true + - Id: 1460 + AegisName: Trident + Name: Trident + Type: Weapon + SubType: 2hSpear + Buy: 51000 + Weight: 1200 + Attack: 150 + Range: 3 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + - Id: 1461 + AegisName: Trident_ + Name: Trident + Type: Weapon + SubType: 2hSpear + Buy: 51000 + Weight: 1200 + Attack: 150 + Range: 3 + Slots: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + - Id: 1462 + AegisName: Trident__ + Name: Trident + Type: Weapon + SubType: 2hSpear + Buy: 51000 + Weight: 1200 + Attack: 150 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + - Id: 1463 + AegisName: Halberd + Name: Halberd + Type: Weapon + SubType: 2hSpear + Buy: 54000 + Weight: 2500 + Attack: 165 + Range: 3 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + - Id: 1464 + AegisName: Halberd_ + Name: Halberd + Type: Weapon + SubType: 2hSpear + Buy: 54000 + Weight: 2500 + Attack: 165 + Range: 3 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + - Id: 1465 + AegisName: Halberd__ + Name: Halberd + Type: Weapon + SubType: 2hSpear + Buy: 54000 + Weight: 2500 + Attack: 165 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + - Id: 1466 + AegisName: Crescent_Scythe + Name: Crescent Scythe + Type: Weapon + SubType: 2hSpear + Buy: 20 + Weight: 2500 + Attack: 180 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus bCriticalRate,30; bonus bHit,10; + - Id: 1467 + AegisName: Bill_Guisarme + Name: Bill Guisarme + Type: Weapon + SubType: 2hSpear + Buy: 20 + Weight: 1000 + Attack: 183 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Player_Doram,10; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; + - Id: 1468 + AegisName: Zephyrus + Name: Zephyrus + Type: Weapon + SubType: 2hSpear + Buy: 20 + Weight: 2000 + Attack: 170 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Silence,200; bonus3 bAutoSpell,"MG_THUNDERSTORM",3,100; + - Id: 1469 + AegisName: Longinus's_Spear + Name: Longinus's Spear + Type: Weapon + SubType: 2hSpear + Buy: 20 + Weight: 2500 + Attack: 180 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus bAtkEle,Ele_Dark; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus2 bAddRace,RC_Angel,10; + - Id: 1470 + AegisName: Brionac + Name: Brionac + Type: Weapon + SubType: 2hSpear + Buy: 20 + Weight: 3000 + Attack: 190 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus bAtkEle,Ele_Holy; skill "AL_HEAL",5; bonus3 bAutoSpell,"MG_SOULSTRIKE",3,100; + - Id: 1471 + AegisName: Hell_Fire + Name: Hellfire + Type: Weapon + SubType: 2hSpear + Buy: 20 + Weight: 3500 + Attack: 200 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus bAtkEle,Ele_Fire; bonus3 bAutoSpell,"MG_FIREBALL",5,100; bonus bStr,3; + - Id: 1472 + AegisName: Staff_Of_Soul + Name: Soul Staff + Type: Weapon + SubType: 2hStaff + Buy: 20 + Weight: 1400 + Attack: 25 + MagicAttack: 200 + Range: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 73 + Refineable: true + Script: | + bonus bInt,5; bonus bAgi,2; + - Id: 1473 + AegisName: Wizardy_Staff + Name: Wizardry Staff + Type: Weapon + SubType: 2hStaff + Buy: 20 + Weight: 2400 + Attack: 120 + MagicAttack: 200 + Range: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 90 + Refineable: true + Script: | + bonus bInt,6; bonus bDex,2; + - Id: 1474 + AegisName: Gae_Bolg + Name: Gae Bolg + Type: Weapon + SubType: 2hSpear + Buy: 20 + Weight: 2000 + Attack: 160 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 60 + Refineable: true + Script: | + bonus bIgnoreDefRace,RC_Dragon; bonus2 bAddClass,Class_Boss,10; + - Id: 1475 + AegisName: Horseback_Lance + Name: Equestrian's Spear + Type: Weapon + SubType: 2hSpear + Buy: 20 + Weight: 3700 + Attack: 200 + Range: 4 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 75 + Refineable: true + - Id: 1476 + AegisName: Crescent_Scythe_ + Name: Crescent Scythe + Type: Weapon + SubType: 2hSpear + Buy: 20 + Weight: 2500 + Attack: 180 + Range: 3 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus bCriticalRate,30; bonus bHit,10; + - Id: 1477 + AegisName: Spectral_Spear + Name: Spectral Spear + Type: Weapon + SubType: 2hSpear + Buy: 20 + Weight: 2000 + Attack: 170 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 75 + Refineable: true + Script: | + bonus2 bAddEle,Ele_Dark,20; bonus2 bAddRace,RC_Demon,20; bonus2 bAddRace,RC_Undead,20; bonus2 bSubEle,Ele_Dark,10; bonus2 bSubEle,Ele_Undead,10; bonus2 bSubRace,RC_Demon,10; bonus2 bAddEff2,Eff_Confusion,1000; bonus bHPGainValue,50; + - Id: 1478 + AegisName: Ahlspiess + Name: Ahlspiess + Type: Weapon + SubType: 2hSpear + Buy: 20 + Weight: 1000 + Attack: 120 + Range: 3 + Jobs: + Crusader: true + Knight: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 65 + Refineable: true + Script: | + bonus bIgnoreDefClass,Class_Normal; bonus bIgnoreDefClass,Class_Boss; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus3 bAutoSpell,"KN_PIERCE",5,30; + - Id: 1479 + AegisName: Spectral_Spear_ + Name: Spectral Spear + Type: Weapon + SubType: 2hSpear + Buy: 20 + Weight: 2000 + Attack: 170 + Range: 3 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 75 + Refineable: true + Script: | + bonus2 bAddEle,Ele_Dark,20; bonus2 bAddRace,RC_Demon,20; bonus2 bAddRace,RC_Undead,20; bonus2 bSubEle,Ele_Dark,10; bonus2 bSubEle,Ele_Undead,10; bonus2 bSubRace,RC_Demon,10; bonus2 bAddEff2,Eff_Confusion,1000; bonus bHPGainValue,50; + - Id: 1480 + AegisName: Gae_Bolg_ + Name: Gae Bolg + Type: Weapon + SubType: 2hSpear + Buy: 20 + Weight: 2000 + Attack: 160 + Range: 3 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 60 + Refineable: true + Script: | + bonus bIgnoreDefRace,RC_Dragon; bonus2 bAddClass,Class_Boss,10; + - Id: 1481 + AegisName: Zephyrus_ + Name: Zephyrus + Type: Weapon + SubType: 2hSpear + Buy: 20 + Weight: 2000 + Attack: 170 + Range: 3 + Slots: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Silence,200; bonus3 bAutoSpell,"MG_THUNDERSTORM",3,100; + - Id: 1482 + AegisName: BF_Lance1 + Name: Assaulter Lance + Type: Weapon + SubType: 2hSpear + Buy: 20 + Attack: 160 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,2; bonus2 bAddRace,RC_DemiHuman,25; bonus2 bAddRace,RC_Player_Human,25; bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus bUnbreakableWeapon; + - Id: 1483 + AegisName: Ivory_Lance + Name: Ivory Lance + Type: Weapon + SubType: 2hSpear + Buy: 20 + Weight: 1000 + Attack: 160 + Range: 3 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 50 + Refineable: true + Script: | + bonus bAgi,2; bonus bAspdRate,3; bonus2 bAddEff,Eff_Bleeding,300; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,30; skill "KN_SPEARSTAB",5; + - Id: 1484 + AegisName: Cardo + Name: Cardo + Type: Weapon + SubType: 2hSpear + Buy: 20 + Weight: 5600 + Attack: 150 + Range: 3 + Slots: 1 + Jobs: + Knight: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bAspdRate,-10; bonus bDef,getrefine()/2; + - Id: 1485 + AegisName: Battle_Fork + Name: Battle Fork + Type: Weapon + SubType: 2hSpear + Buy: 20 + Weight: 700 + Attack: 112 + Range: 3 + Slots: 4 + Jobs: + Crusader: true + Knight: true + Swordman: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 50 + Refineable: true + - Id: 1486 + AegisName: Krieger_Twohand_Spear1 + Name: Glorious Lance + Type: Weapon + SubType: 2hSpear + Buy: 20 + Attack: 220 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,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; } + - Id: 1487 + AegisName: Lance_C + Name: Lance + Type: Weapon + SubType: 2hSpear + Attack: 220 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddSize,Size_All,50; + - Id: 1488 + AegisName: Ahlspiess_C + Name: Ahlspiess + Type: Weapon + SubType: 2hSpear + Buy: 20 + Attack: 135 + Range: 3 + Jobs: + Crusader: true + Knight: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bIgnoreDefClass,Class_Normal; bonus bIgnoreDefClass,Class_Boss; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; bonus3 bAutoSpell,"KN_PIERCE",5,30; + - Id: 1489 + AegisName: Spearfish_ + Name: Marlin + Type: Weapon + SubType: 2hSpear + Attack: 220 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 50 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + 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; } + - Id: 1490 + AegisName: Giant_Lance + Name: Gigantic Lance + Type: Weapon + SubType: 2hSpear + Buy: 20 + Weight: 20000 + Attack: 20 + Range: 3 + Jobs: + Knight: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 140 + Refineable: true + Script: | + bonus bAspd,-10; bonus2 bSkillCooldown,"LK_SPIRALPIERCE",20000; if(readparam(bStr)>=120){ bonus bBaseAtk,300; } + UnEquipScript: | + heal 0,-600; + - Id: 1491 + AegisName: Upg_Lance + Name: Upg Lance + Type: Weapon + SubType: 2hSpear + Buy: 20 + Weight: 1500 + Attack: 105 + Range: 3 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bBaseAtk,(getrefine()*12); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*10); + - Id: 1492 + AegisName: Velum_Glaive + Name: Vellum Glaive + Type: Weapon + SubType: 2hSpear + Buy: 20 + Weight: 4500 + Attack: 250 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 95 + Refineable: true + Script: | + bonus2 bAddRace,RC_Player_Human,80; bonus2 bAddRace,RC_Player_Doram,80; .@r = getrefine(); if(.@r>=6) { bonus2 bSkillAtk,"LK_SPIRALPIERCE",100; bonus2 bSkillAtk,"LG_OVERBRAND",50; } if(.@r>=9) { bonus bShortWeaponDamageReturn,20; bonus bMagicDamageReturn,20; bonus5 bAutoSpellWhenHit,"NPC_MAGICMIRROR",7,300,BF_MAGIC,0; } + - Id: 1493 + AegisName: Metal_Lance + Name: Metal Lance + Type: Weapon + SubType: 2hSpear + Buy: 20 + Attack: 100 + Range: 3 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bBaseAtk,(getrefine()*6); .@i = min(BaseLevel/10,12); if(.@i>2) bonus bBaseAtk,((.@i-2)*5); + - Id: 1494 + AegisName: Undine_Spear + Name: Spear Of Odin + Type: Weapon + SubType: 2hSpear + Buy: 50000 + Weight: 3800 + Attack: 190 + Range: 3 + Slots: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 105 + Refineable: true + Script: | + bonus bAtkEle,Ele_Water; bonus bMaxHPrate,getrefine(); + - Id: 1495 + AegisName: TE_Woe_Lance + Name: TE Woe Lance + Type: Weapon + SubType: 2hSpear + Attack: 150 + Range: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 40 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Blind,1000; + - Id: 1496 + AegisName: Thanos_Long_Spear + Name: Thanos Long Spear + Type: Weapon + SubType: 2hSpear + Buy: 10 + Weight: 3750 + Attack: 250 + MagicAttack: 50 + Range: 3 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 120 + Refineable: true + Script: | + bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000; + UnEquipScript: | + heal -1000,0; + - Id: 1497 + AegisName: Hell_Fire_ + Name: Hellfire + Type: Weapon + SubType: 2hSpear + Buy: 20 + Weight: 3500 + Attack: 200 + Range: 3 + Slots: 3 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus bAtkEle,Ele_Fire; bonus3 bAutoSpell,"MG_FIREBALL",5,100; bonus bStr,3; + - Id: 1498 + AegisName: Crimson_Lance + Name: Crimson Lance + Type: Weapon + SubType: 2hSpear + Buy: 20 + Weight: 1750 + Attack: 175 + Range: 1 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,pow(.@r,2); bonus bBaseAtk,(max(0,BaseLevel-70)/10)*5; + - Id: 1499 + AegisName: Requiem_Lance + Name: Requiem Lance + Type: Weapon + SubType: 2hSpear + Buy: 20 + Weight: 1500 + Attack: 220 + Range: 3 + Jobs: + Crusader: true + Knight: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); .@b = 40; .@c = 5; bonus bUnbreakableWeapon; if(.@r>=5){ .@b += (.@r-5)*15+30; .@c += (.@r-5); } bonus2 bAddRace2,RC2_BioLab,.@b; bonus2 bSubRace2,RC2_BioLab,.@c; + - Id: 1501 + AegisName: Club + Name: Club + Type: Weapon + SubType: Mace + Buy: 120 + Weight: 700 + Attack: 23 + Range: 1 + Slots: 3 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Novice: true + Priest: true + SuperNovice: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 2 + Refineable: true + - Id: 1502 + AegisName: Club_ + Name: Club + Type: Weapon + SubType: Mace + Buy: 120 + Weight: 700 + Attack: 23 + Range: 1 + Slots: 4 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Novice: true + Priest: true + SuperNovice: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 2 + Refineable: true + - Id: 1503 + AegisName: Club__ + Name: Club + Type: Weapon + SubType: Mace + Buy: 120 + Weight: 700 + Attack: 23 + Range: 1 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Novice: true + Priest: true + SuperNovice: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 2 + Refineable: true + - Id: 1504 + AegisName: Mace + Name: Mace + Type: Weapon + SubType: Mace + Buy: 1600 + Weight: 800 + Attack: 37 + Range: 1 + Slots: 3 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Novice: true + Priest: true + SuperNovice: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 2 + Refineable: true + - Id: 1505 + AegisName: Mace_ + Name: Mace + Type: Weapon + SubType: Mace + Buy: 1600 + Weight: 800 + Attack: 37 + Range: 1 + Slots: 4 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Novice: true + Priest: true + SuperNovice: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 2 + Refineable: true + - Id: 1506 + AegisName: Mace__ + Name: Mace + Type: Weapon + SubType: Mace + Buy: 1600 + Weight: 800 + Attack: 37 + Range: 1 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Novice: true + Priest: true + SuperNovice: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 2 + Refineable: true + - Id: 1507 + AegisName: Smasher + Name: Smasher + Type: Weapon + SubType: Mace + Buy: 9000 + Weight: 1000 + Attack: 54 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Novice: true + Priest: true + SuperNovice: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 14 + Refineable: true + - Id: 1508 + AegisName: Smasher_ + Name: Smasher + Type: Weapon + SubType: Mace + Buy: 9000 + Weight: 1000 + Attack: 54 + Range: 1 + Slots: 3 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Novice: true + Priest: true + SuperNovice: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 14 + Refineable: true + - Id: 1509 + AegisName: Smasher__ + Name: Smasher + Type: Weapon + SubType: Mace + Buy: 9000 + Weight: 1000 + Attack: 54 + Range: 1 + Slots: 3 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Novice: true + Priest: true + SuperNovice: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 14 + Refineable: true + - Id: 1510 + AegisName: Flail + Name: Flail + Type: Weapon + SubType: Mace + Buy: 16000 + Weight: 900 + Attack: 69 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 14 + Refineable: true + - Id: 1511 + AegisName: Flail_ + Name: Flail + Type: Weapon + SubType: Mace + Buy: 16000 + Weight: 900 + Attack: 69 + Range: 1 + Slots: 3 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 14 + Refineable: true + - Id: 1512 + AegisName: Flail__ + Name: Flail + Type: Weapon + SubType: Mace + Buy: 16000 + Weight: 900 + Attack: 69 + Range: 1 + Slots: 3 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 14 + Refineable: true + - Id: 1513 + AegisName: Morning_Star + Name: Morning Star + Type: Weapon + SubType: Mace + Buy: 41000 + Weight: 1500 + Attack: 110 + Range: 1 + Slots: 1 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + - Id: 1514 + AegisName: Morning_Star_ + Name: Morning Star + Type: Weapon + SubType: Mace + Buy: 41000 + Weight: 1500 + Attack: 110 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + - Id: 1515 + AegisName: Morning_Star__ + Name: Morning Star + Type: Weapon + SubType: Mace + Buy: 41000 + Weight: 1500 + Attack: 110 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + - Id: 1516 + AegisName: Sword_Mace + Name: Sword Mace + Type: Weapon + SubType: Mace + Buy: 50000 + Weight: 1200 + Attack: 130 + Range: 1 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + - Id: 1517 + AegisName: Sword_Mace_ + Name: Sword Mace + Type: Weapon + SubType: Mace + Buy: 50000 + Weight: 1200 + Attack: 130 + Range: 1 + Slots: 1 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + - Id: 1518 + AegisName: Sword_Mace__ + Name: Sword Mace + Type: Weapon + SubType: Mace + Buy: 50000 + Weight: 1200 + Attack: 130 + Range: 1 + Slots: 1 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + - Id: 1519 + AegisName: Chain + Name: Chain + Type: Weapon + SubType: Mace + Buy: 23000 + Weight: 800 + Attack: 84 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 14 + Refineable: true + - Id: 1520 + AegisName: Chain_ + Name: Chain + Type: Weapon + SubType: Mace + Buy: 23000 + Weight: 800 + Attack: 84 + Range: 1 + Slots: 3 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 14 + Refineable: true + - Id: 1521 + AegisName: Chain__ + Name: Chain + Type: Weapon + SubType: Mace + Buy: 23000 + Weight: 800 + Attack: 84 + Range: 1 + Slots: 3 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 14 + Refineable: true + - Id: 1522 + AegisName: Stunner + Name: Stunner + Type: Weapon + SubType: Mace + Buy: 60000 + Weight: 2000 + Attack: 140 + Range: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + Script: | + bonus2 bAddEff,Eff_Stun,1000; + - Id: 1523 + AegisName: Spike + Name: Spike + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 700 + Attack: 85 + Range: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus bCriticalRate,40; bonus bDefRate,-66; bonus bDef2Rate,-66; + - Id: 1524 + AegisName: Golden_Mace + Name: Golden Mace + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 800 + Attack: 110 + Range: 1 + Slots: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus2 bAddRace,RC_Undead,10; bonus bUnbreakableWeapon; + - Id: 1525 + AegisName: Long_Mace + Name: Long Mace + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 800 + Attack: 135 + Range: 3 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus bLongAtkDef,10; + - Id: 1526 + AegisName: Slash + Name: Slash + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 1000 + Attack: 145 + Range: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus2 bAddRace,RC_Undead,15; bonus2 bComaRace,RC_Undead,10; bonus2 bExpAddRace,RC_Undead,5; + - Id: 1527 + AegisName: Quadrille + Name: Quadrille + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 900 + Attack: 165 + Range: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus2 bAddRace,RC_Undead,10; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus2 bAddEle,Ele_Earth,10; + - Id: 1528 + AegisName: Grand_Cross + Name: Grand Cross + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 1500 + Attack: 140 + Range: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus bAtkEle,Ele_Holy; bonus3 bAutoSpell,"PR_TURNUNDEAD",3,100; bonus2 bSPDrainValueRace,RC_Undead,1; bonus2 bSPGainRace,RC_Undead,3; + - Id: 1529 + AegisName: Iron_Driver + Name: Iron Driver + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 3000 + Attack: 155 + Range: 2 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 78 + Refineable: true + - Id: 1530 + AegisName: Mjolnir + Name: Mjolnir + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 6000 + Attack: 350 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 95 + Script: | + 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; + - Id: 1531 + AegisName: Spanner + Name: Wrench + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 2500 + Attack: 115 + Range: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus2 bAddEff,Eff_Blind,100; bonus2 bAddEff,Eff_Stun,100; bonus2 bAddEff,Eff_Poison,100; bonus2 bAddEff,Eff_Freeze,100; + - Id: 1532 + AegisName: Stunner_ + Name: Stunner + Type: Weapon + SubType: Mace + Buy: 60000 + Weight: 2000 + Attack: 140 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + Script: | + bonus2 bAddEff,Eff_Stun,1000; + - Id: 1533 + AegisName: Warrior_Balmung + Name: Warrior's Balmung + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 1000 + Attack: 170 + Range: 1 + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,5; + - Id: 1534 + AegisName: Spanner_C + Name: Wrench + Type: Weapon + SubType: Mace + Buy: 2 + Attack: 150 + Range: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddEff,Eff_Blind,100; bonus2 bAddEff,Eff_Stun,100; bonus2 bAddEff,Eff_Poison,100; bonus2 bAddEff,Eff_Freeze,100; + - Id: 1535 + AegisName: Hollgrehenn_Hammer + Name: Hollgrehenn's Hammer + Type: Weapon + SubType: Mace + Buy: 4444 + Weight: 44 + Attack: 4 + Range: 1 + Slots: 1 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 44 + Refineable: true + Script: | + bonus bBreakArmorRate,100; bonus bBreakWeaponRate,100; if(readparam(bStr)>=44) { bonus bBaseAtk,44; } + - Id: 1536 + AegisName: Good_Morning_Star + Name: Good Morning Star + Type: Weapon + SubType: Mace + Buy: 20 + Attack: 120 + Range: 1 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,50; + - Id: 1537 + AegisName: Quadrille_C + Name: Refined Quadrille + Type: Weapon + SubType: Mace + Buy: 1 + Attack: 193 + Range: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player_Human,30; bonus2 bAddRace,RC_Demon,40; bonus2 bAddRace,RC_Undead,40; + - Id: 1538 + AegisName: Spike_ + Name: Spike + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 700 + Attack: 85 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus bCritical,40; bonus bDefRate,-67; bonus bDef2Rate,-67; + - Id: 1539 + AegisName: Golden_Mace_ + Name: Golden Mace + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 800 + Attack: 110 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus2 bAddRace,RC_Undead,10; bonus bUnbreakableWeapon; + - Id: 1540 + AegisName: Grand_Cross_ + Name: Grand Cross + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 1500 + Attack: 140 + Range: 1 + Slots: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus bAtkEle,Ele_Holy; bonus3 bAutoSpell,"PR_TURNUNDEAD",3,100; bonus2 bSPDrainValueRace,RC_Undead,1; bonus2 bSPGainRace,RC_Undead,3; + - Id: 1541 + AegisName: Nemesis + Name: Nemesis + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 900 + Attack: 120 + Range: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 60 + Refineable: true + Script: | + bonus bAtkEle,Ele_Holy; bonus2 bAddEle,Ele_Dark,10; bonus2 bAddRace,RC_Demon,10; bonus3 bAutoSpell,"AL_CRUCIS",1+getrefine(),100; autobonus "{ bonus bBaseAtk,50; }",10,20000,BF_WEAPON,"{ specialeffect2 EF_BLOODDRAIN; }"; + - Id: 1542 + AegisName: BF_Morning_Star1 + Name: Valorous Battlefield Morning Star + Type: Weapon + SubType: Mace + Buy: 20 + Attack: 105 + Range: 1 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Novice: true + Priest: true + SuperNovice: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; + - Id: 1543 + AegisName: BF_Morning_Star2 + Name: Brave Battlefield Morning Star + Type: Weapon + SubType: Mace + Buy: 20 + Attack: 105 + Range: 1 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Novice: true + Priest: true + SuperNovice: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus bUnbreakableWeapon; autobonus "{ bonus2 bAddEff,Eff_Stun,5000; }",10,6000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; + - Id: 1544 + AegisName: Lunakaligo + Name: Lunakaligo + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 700 + Attack: 110 + Range: 1 + Slots: 3 + Jobs: + Acolyte: true + Monk: true + Priest: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 50 + Refineable: true + Script: | + 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; } + - Id: 1545 + AegisName: N_Mace + Name: Novice Mace + Type: Weapon + SubType: Mace + Attack: 57 + Range: 1 + Slots: 3 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Novice: true + Priest: true + SuperNovice: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 2 + - Id: 1546 + AegisName: Krieger_Onehand_Mace1 + Name: Glorious Morning Star + Type: Weapon + SubType: Mace + Buy: 20 + Attack: 130 + Range: 1 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Novice: true + Priest: true + SuperNovice: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus bAspdRate,5; } if(.@r>8) { bonus2 bAddEff,Eff_Stun,2000; bonus bAspdRate,5; } + - Id: 1547 + AegisName: Mace_Of_Madness + Name: Mace Of Madness + Type: Weapon + SubType: Mace + Buy: 20 + Attack: 150 + Range: 1 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bSkillAtk,"MC_CARTREVOLUTION",25; bonus bStr,2; + - Id: 1548 + AegisName: Veteran_Hammer + Name: Veteran Hammer + Type: Weapon + SubType: Mace + Buy: 10000 + Weight: 1800 + Attack: 160 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Script: | + bonus bHealPower,getskilllv("AL_DP"); bonus bCriticalRate,getskilllv("PR_MACEMASTERY")*2; bonus bInt,1; bonus bLuk,1; + - Id: 1549 + AegisName: Pilebuncker + Name: Pile Bunker + Type: Weapon + SubType: Mace + Buy: 10000 + Weight: 3500 + Attack: 450 + Range: 1 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 99 + Refineable: true + - Id: 1550 + AegisName: Book + Name: Book + Type: Weapon + SubType: Book + Buy: 30000 + Weight: 600 + Attack: 85 + Range: 1 + Slots: 3 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 14 + Refineable: true + - Id: 1551 + AegisName: Bible + Name: Bible + Type: Weapon + SubType: Book + Buy: 60000 + Weight: 1000 + Attack: 115 + Range: 1 + Slots: 2 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + Script: | + bonus bInt,2; + - Id: 1552 + AegisName: Tablet + Name: Tablet + Type: Weapon + SubType: Book + Buy: 51000 + Weight: 800 + Attack: 125 + Range: 1 + Slots: 1 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + - Id: 1553 + AegisName: Book_Of_Billows + Name: Book of Billows + Type: Weapon + SubType: Book + Buy: 35000 + Weight: 750 + Attack: 90 + Range: 1 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + Script: | + bonus bAtkEle,Ele_Water; + - Id: 1554 + AegisName: Book_Of_Mother_Earth + Name: Book of Mother Earth + Type: Weapon + SubType: Book + Buy: 35000 + Weight: 750 + Attack: 90 + Range: 1 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + Script: | + bonus bAtkEle,Ele_Earth; + - Id: 1555 + AegisName: Book_Of_Blazing_Sun + Name: Book of the Blazing Sun + Type: Weapon + SubType: Book + Buy: 35000 + Weight: 750 + Attack: 90 + Range: 1 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + Script: | + bonus bAtkEle,Ele_Fire; + - Id: 1556 + AegisName: Book_Of_Gust_Of_Wind + Name: Book of Gust of Wind + Type: Weapon + SubType: Book + Buy: 35000 + Weight: 750 + Attack: 90 + Range: 1 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + Script: | + bonus bAtkEle,Ele_Wind; + - Id: 1557 + AegisName: Book_Of_The_Apocalypse + Name: Book of the Apocalypse + Type: Weapon + SubType: Book + Buy: 60000 + Weight: 800 + Attack: 120 + Range: 1 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus bAtkEle,Ele_Dark; bonus2 bSubDefEle,Ele_Holy,-5; bonus2 bAddEle,Ele_Water,7; bonus2 bAddEle,Ele_Earth,7; bonus2 bAddEle,Ele_Fire,7; bonus2 bAddEle,Ele_Wind,7; + - Id: 1558 + AegisName: Girl's_Diary + Name: Girl's Diary + Type: Weapon + SubType: Book + Buy: 1500 + Weight: 300 + Attack: 60 + Range: 1 + Slots: 1 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus2 bAddDamageClass,1188,150; + - Id: 1559 + AegisName: Legacy_Of_Dragon + Name: Legacy of Dragon + Type: Weapon + SubType: Book + Buy: 20 + Weight: 700 + Attack: 130 + Range: 1 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bInt,3; bonus bIgnoreDefRace,RC_Dragon; bonus2 bSPGainRace,RC_Dragon,10; + - Id: 1560 + AegisName: Diary_Of_Great_Sage + Name: Sage's Diary + Type: Weapon + SubType: Book + Buy: 20 + Weight: 1100 + Attack: 100 + MagicAttack: 120 + Range: 1 + Slots: 2 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 60 + Refineable: true + Script: | + if(readparam(bStr)>=50) bonus bAspdRate,5; if(readparam(bInt)>=70) bonus bMatkRate,5; + - Id: 1561 + AegisName: Hardback + Name: Hardcover Book + Type: Weapon + SubType: Book + Buy: 20 + Weight: 1500 + Attack: 140 + Range: 1 + Slots: 1 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bStr,3; bonus bDex,2; + - Id: 1562 + AegisName: Bible_Of_Battlefield + Name: Battlefield Textbook + Type: Weapon + SubType: Book + Buy: 20 + Weight: 700 + Attack: 110 + Range: 1 + Slots: 1 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Script: | + bonus bInt,3; bonus3 bAutoSpell,"AL_BLESSING",3+(getskilllv("AL_BLESSING")>3)*(getskilllv("AL_BLESSING")-3),20; + - Id: 1563 + AegisName: Diary_Of_Great_Sage_C + Name: Sage's Diary + Type: Weapon + SubType: Book + Buy: 1 + Attack: 135 + MagicAttack: 140 + Range: 1 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAspdRate,5; /*Gold PC Room: bonus bBaseAtk,10; bonus bMatk,10;*/ + - Id: 1564 + AegisName: Encyclopedia + Name: Encyclopedia + Type: Weapon + SubType: Book + Buy: 20 + Weight: 2000 + Attack: 110 + MagicAttack: 100 + Range: 1 + Slots: 2 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bInt,3; bonus bDex,2; bonus bCritical,20+((readparam(bLuk)*2)/10); + - Id: 1565 + AegisName: Death_Note + Name: Ledger of Death + Type: Weapon + SubType: Book + Buy: 20 + Weight: 1000 + Attack: 137 + MagicAttack: 100 + Range: 1 + Slots: 2 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 85 + Refineable: true + Script: | + bonus bStr,3; bonus bInt,3; bonus bLuk,-20; bonus2 bComaRace,RC_DemiHuman,10; bonus2 bComaRace,RC_Player_Human,10; bonus bAspdRate,getrefine(); if(BaseJob==Job_Sage) bonus3 bAutoSpell,"NPC_HELLJUDGEMENT",5,20; + - Id: 1566 + AegisName: Diary_Of_Great_Basil + Name: Diary Of Great Basil + Type: Weapon + SubType: Book + Buy: 20 + Attack: 120 + MagicAttack: 125 + Range: 1 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,50; + - Id: 1567 + AegisName: Hardback_C + Name: Refined Hardcover Book + Type: Weapon + SubType: Book + Buy: 1 + Attack: 168 + MagicAttack: 100 + Range: 1 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,5; bonus bDex,2; + - Id: 1568 + AegisName: Book_Of_Billows_ + Name: Book of Billows + Type: Weapon + SubType: Book + Buy: 35000 + Weight: 750 + Attack: 90 + Range: 1 + Slots: 3 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + Script: | + bonus bAtkEle,Ele_Water; + - Id: 1569 + AegisName: Book_Of_Mother_Earth_ + Name: Book of Mother Earth + Type: Weapon + SubType: Book + Buy: 35000 + Weight: 750 + Attack: 90 + Range: 1 + Slots: 3 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + Script: | + bonus bAtkEle,Ele_Earth; + - Id: 1570 + AegisName: Book_Of_Blazing_Sun_ + Name: Book of Blazing Sun + Type: Weapon + SubType: Book + Buy: 35000 + Weight: 750 + Attack: 90 + Range: 1 + Slots: 3 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + Script: | + bonus bAtkEle,Ele_Fire; + - Id: 1571 + AegisName: Book_Of_Gust_Of_Wind_ + Name: Book of Gust of Wind + Type: Weapon + SubType: Book + Buy: 35000 + Weight: 750 + Attack: 90 + Range: 1 + Slots: 3 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + Script: | + bonus bAtkEle,Ele_Wind; + - Id: 1572 + AegisName: Principles_Of_Magic + Name: Principles of Magic + Type: Weapon + SubType: Book + Buy: 20 + Weight: 300 + Attack: 60 + MagicAttack: 160 + Range: 1 + Slots: 2 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 60 + Refineable: true + Script: | + bonus bInt,3; bonus bSPrecovRate,5; + - Id: 1573 + AegisName: Ancient_Magic + Name: Ancient Magic + Type: Weapon + SubType: Book + Buy: 20 + Weight: 700 + Attack: 30 + MagicAttack: 140 + Range: 1 + Slots: 2 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bMdef,8; bonus bMaxSPrate,10; bonus bInt,4; + - Id: 1574 + AegisName: BF_Book1 + Name: Brave Battle Strategy Book + Type: Weapon + SubType: Book + Buy: 20 + Attack: 90 + MagicAttack: 125 + Range: 1 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,2; bonus bInt,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; + - Id: 1575 + AegisName: BF_Book2 + Name: Valorous Battle Strategy Book + Type: Weapon + SubType: Book + Buy: 20 + Attack: 90 + MagicAttack: 125 + Range: 1 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,1; bonus bInt,2; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; + - Id: 1576 + AegisName: Krieger_Book1 + Name: Glorious Tablet + Type: Weapon + SubType: Book + Buy: 20 + Attack: 90 + MagicAttack: 115 + Range: 1 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,80; bonus2 bAddRace,RC_Player_Human,80; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) autobonus "{ bonus bBaseAtk,200; }",30,3000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; + - Id: 1577 + AegisName: Krieger_Book2 + Name: Glorious Apocalypse + Type: Weapon + SubType: Book + Buy: 20 + Attack: 90 + MagicAttack: 115 + Range: 1 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,80; bonus2 bAddRace,RC_Player_Human,80; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5){ bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,5; } if(.@r>8) { bonus bMatkRate,5; bonus bVariableCastrate,-5; bonus bDelayRate,-5; } + - Id: 1578 + AegisName: Book_Of_Prayer + Name: Book Of Prayer + Type: Weapon + SubType: Book + Buy: 20 + Attack: 140 + Range: 1 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 3 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bVit,2; bonus bMdef,10; bonus bMaxSPrate,10; + - Id: 1579 + AegisName: Death_Note_M + Name: Book of the Dead + Type: Weapon + SubType: Book + Buy: 20 + Weight: 1000 + Attack: 137 + Range: 1 + Slots: 2 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 85 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMatkRate,15; bonus bStr,3; bonus bInt,3; bonus bLuk,-20; bonus2 bComaRace,RC_DemiHuman,10; bonus2 bComaRace,RC_Player_Human,10; bonus bAspdRate,getrefine(); if(BaseJob==Job_Sage) bonus3 bAutoSpell,"NPC_HELLJUDGEMENT",5,20; + - Id: 1580 + AegisName: Encyclopedia_C + Name: Giant Encyclopedia + Type: Weapon + SubType: Book + Attack: 145 + MagicAttack: 100 + Range: 1 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 3 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMatkRate,15; bonus bInt,3; bonus bDex,2; bonus bCritical,20+((readparam(bLuk)*2)/10); bonus2 bAddSize,Size_All,40; + - Id: 1581 + AegisName: F_Diary_Of_Great_Sage_C + Name: Diary Of Great Sage + Type: Weapon + SubType: Book + Buy: 1 + Attack: 135 + Range: 1 + Slots: 2 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Script: | + bonus bMatkRate,20; bonus bAspdRate,5; + - Id: 1582 + AegisName: E_Diary_Of_Great_Sage_C + Name: Diary Of Great Sage + Type: Weapon + SubType: Book + Buy: 1 + Attack: 135 + Range: 1 + Slots: 2 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + - Id: 1583 + AegisName: P_Dic1 + Name: Eden Book I + Type: Weapon + SubType: Book + Attack: 135 + MagicAttack: 110 + Range: 1 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 60 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1584 + AegisName: Chilly_Spell_Book + Name: Cold Magic Book + Type: Weapon + SubType: Book + Buy: 56000 + Weight: 1000 + Attack: 100 + MagicAttack: 160 + Range: 1 + Slots: 2 + Jobs: + Sage: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bAtkEle,Ele_Water; bonus bUnbreakableWeapon; 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); + - Id: 1585 + AegisName: Upg_Book + Name: Upg Book + Type: Weapon + SubType: Book + Buy: 20 + Weight: 600 + Attack: 45 + MagicAttack: 20 + Range: 1 + Slots: 1 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + Script: | + .@r = getrefine(); bonus bBaseAtk,(.@r*10); bonus bMatk,(.@r*5); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*5); + - Id: 1586 + AegisName: Velum_Bible + Name: Vellum Bible + Type: Weapon + SubType: Book + Buy: 20 + Weight: 600 + Attack: 110 + MagicAttack: 125 + Range: 1 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 95 + Refineable: true + Script: | + 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; } + - Id: 1587 + AegisName: Velum_Encyclopedia + Name: Vellum Great Encyclopedia + Type: Weapon + SubType: Book + Buy: 20 + Weight: 1000 + Attack: 130 + Range: 1 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 95 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bAddRace,RC_Player_Human,80+.@r; bonus2 bIgnoreDefRaceRate,RC_Player_Human,30; if(.@r>8) { autobonus "{ bonus bBaseAtk,200; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; } + - Id: 1588 + AegisName: Metal_Book + Name: Metal Book + Type: Weapon + SubType: Book + Buy: 20 + Attack: 45 + MagicAttack: 10 + Range: 1 + Slots: 1 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,(.@r*5); bonus bMatk,(.@r*2); .@i = min(BaseLevel/10,12); if (BaseLevel>20) { bonus bBaseAtk,((min(BaseLevel,120)-20)/10)*5; } + - Id: 1589 + AegisName: Legacy_Of_Dragon_ + Name: Legacy of Dragon + Type: Weapon + SubType: Book + Buy: 20 + Weight: 700 + Attack: 130 + Range: 1 + Slots: 2 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bInt,3; bonus bIgnoreDefRace,RC_Dragon; bonus2 bSPGainRace,RC_Dragon,10; + - Id: 1590 + AegisName: Snake_Encyclopedia + Name: Daizenshu Dakatsu + Type: Weapon + SubType: Book + Buy: 60000 + Weight: 1500 + Attack: 10 + MagicAttack: 110 + Range: 1 + Slots: 2 + Jobs: + Priest: true + Sage: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 105 + Refineable: true + Script: | + bonus bUnbreakableWeapon; .@r = getrefine(); bonus bBaseAtk,.@r*3; bonus bMatk,.@r*3; + - Id: 1591 + AegisName: TE_Woe_Book + Name: TE Woe Book + Type: Weapon + SubType: Book + Attack: 120 + Range: 1 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 40 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_Player_Human,40; bonus2 bMagicAddRace,RC_Player_Human,5; bonus2 bAddRace,RC_Player_Doram,40; bonus2 bMagicAddRace,RC_Player_Doram,5; bonus3 bAddEff,Eff_Blind,1000,ATF_MAGIC; bonus bHealPower,5; + - Id: 1592 + AegisName: Thor_Pedigree_Book + Name: Raijin's Lineage + Type: Weapon + SubType: Book + Buy: 10 + Weight: 400 + Attack: 90 + MagicAttack: 130 + Range: 1 + Slots: 2 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 27 + Refineable: true + Script: | + .@r = getrefine(); bonus bInt,3; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",5+.@r; bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Wind; + - Id: 1593 + AegisName: Book_of_Destiny + Name: Book of Destiny + Type: Weapon + SubType: Book + Buy: 10 + Weight: 400 + Attack: 90 + MagicAttack: 90 + Range: 1 + Slots: 1 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 24 + Refineable: true + Script: | + .@r = getrefine(); bonus bLuk,5; bonus bFlee2,15; if(.@r >= 7) bonus bFlee2,5; bonus bUnbreakableWeapon; + - Id: 1594 + AegisName: Fire_Pedigree_Book + Name: Fire Pedigree Book + Type: Weapon + SubType: Book + Buy: 10 + Weight: 400 + Attack: 90 + MagicAttack: 130 + Range: 1 + Slots: 2 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 27 + Refineable: true + Script: | + .@r = getrefine(); bonus bInt,3; bonus2 bSkillAtk,"MG_FIREBOLT",5+.@r; bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Fire; + - Id: 1595 + AegisName: Water_Pedigree_Book + Name: Water Pedigree Book + Type: Weapon + SubType: Book + Buy: 10 + Weight: 400 + Attack: 90 + MagicAttack: 130 + Range: 1 + Slots: 2 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 27 + Refineable: true + Script: | + .@r = getrefine(); bonus bInt,3; bonus2 bSkillAtk,"MG_COLDBOLT",5+.@r; bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Water; + - Id: 1596 + AegisName: Earth_Pedigree_Book + Name: Earth Pedigree Book + Type: Weapon + SubType: Book + Buy: 10 + Weight: 400 + Attack: 90 + MagicAttack: 130 + Range: 1 + Slots: 2 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 27 + Refineable: true + Script: | + .@r = getrefine(); bonus bInt,3; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",5+.@r; bonus2 bSkillAtk,"WZ_EARTHSPIKE",5+.@r; bonus bUnbreakableWeapon; + - Id: 1597 + AegisName: Half_BF_Book2 + Name: Half BF Book2 + Type: Weapon + SubType: Book + Buy: 20 + Attack: 90 + MagicAttack: 125 + Range: 1 + Jobs: + Priest: true + Sage: true + Taekwon: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Script: | + bonus bStr,1; bonus bInt,1; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,10; + - Id: 1598 + AegisName: Snake_Encyclopedia_ + Name: Daizenshu Dakatsu + Type: Weapon + SubType: Book + Buy: 60000 + Weight: 1500 + Attack: 10 + MagicAttack: 110 + Range: 1 + Slots: 3 + Jobs: + Priest: true + Sage: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 105 + Refineable: true + Script: | + bonus bUnbreakableWeapon; .@r = getrefine(); bonus bBaseAtk,.@r*3; bonus bMatk,.@r*3; + - Id: 1599 + AegisName: Angra_Manyu + Name: Angra Manyu + Type: Weapon + SubType: Mace + Buy: 1 + Weight: 10 + Attack: 10000 + MagicAttack: 10000 + Range: 2 + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + Script: | + 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; bonus bAspdRate,100; + - Id: 1600 + AegisName: Rod_of_Vicious_Mind + Name: Rod of Vicious Mind + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 600 + Attack: 60 + MagicAttack: 120 + Range: 1 + Slots: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Novice: true + Priest: true + Sage: true + SoulLinker: true + SuperNovice: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 160 + Refineable: true + Script: | + bonus bMatk,pow(min(getrefine(),15),2); bonus bInt,5; bonus bUnbreakableWeapon; + - Id: 1601 + AegisName: Rod + Name: Rod + Type: Weapon + SubType: Staff + Buy: 50 + Weight: 400 + Attack: 15 + MagicAttack: 30 + Range: 1 + Slots: 3 + Jobs: + Acolyte: true + Mage: true + Monk: true + Novice: true + Priest: true + Sage: true + SoulLinker: true + SuperNovice: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + - Id: 1602 + AegisName: Rod_ + Name: Rod + Type: Weapon + SubType: Staff + Buy: 50 + Weight: 400 + Attack: 15 + MagicAttack: 30 + Range: 1 + Slots: 4 + Jobs: + Acolyte: true + Mage: true + Monk: true + Novice: true + Priest: true + Sage: true + SoulLinker: true + SuperNovice: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + - Id: 1603 + AegisName: Rod__ + Name: Rod + Type: Weapon + SubType: Staff + Buy: 50 + Weight: 400 + Attack: 15 + MagicAttack: 30 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Novice: true + Priest: true + Sage: true + SoulLinker: true + SuperNovice: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + - Id: 1604 + AegisName: Wand + Name: Wand + Type: Weapon + SubType: Staff + Buy: 2500 + Weight: 400 + Attack: 25 + MagicAttack: 45 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Mage: true + Monk: true + Novice: true + Priest: true + Sage: true + SoulLinker: true + SuperNovice: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 12 + Refineable: true + Script: | + bonus bInt,1; + - Id: 1605 + AegisName: Wand_ + Name: Wand + Type: Weapon + SubType: Staff + Buy: 2500 + Weight: 400 + Attack: 25 + MagicAttack: 45 + Range: 1 + Slots: 3 + Jobs: + Acolyte: true + Mage: true + Monk: true + Novice: true + Priest: true + Sage: true + SoulLinker: true + SuperNovice: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 12 + Refineable: true + Script: | + bonus bInt,1; + - Id: 1606 + AegisName: Wand__ + Name: Wand + Type: Weapon + SubType: Staff + Buy: 2500 + Weight: 400 + Attack: 25 + MagicAttack: 45 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Novice: true + Priest: true + Sage: true + SoulLinker: true + SuperNovice: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 12 + Refineable: true + Script: | + bonus bInt,1; + - Id: 1607 + AegisName: Staff + Name: Staff + Type: Weapon + SubType: Staff + Buy: 9500 + Weight: 400 + Attack: 40 + MagicAttack: 70 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 12 + Refineable: true + Script: | + bonus bInt,2; + - Id: 1608 + AegisName: Staff_ + Name: Staff + Type: Weapon + SubType: Staff + Buy: 9500 + Weight: 400 + Attack: 40 + MagicAttack: 70 + Range: 1 + Slots: 3 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 12 + Refineable: true + Script: | + bonus bInt,2; + - Id: 1609 + AegisName: Staff__ + Name: Staff + Type: Weapon + SubType: Staff + Buy: 9500 + Weight: 400 + Attack: 40 + MagicAttack: 70 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 12 + Refineable: true + Script: | + bonus bInt,2; + - Id: 1610 + AegisName: Arc_Wand + Name: Arc Wand + Type: Weapon + SubType: Staff + Buy: 45000 + Weight: 400 + Attack: 60 + MagicAttack: 95 + Range: 1 + Slots: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 24 + Refineable: true + Script: | + bonus bInt,3; + - Id: 1611 + AegisName: Arc_Wand_ + Name: Arc Wand + Type: Weapon + SubType: Staff + Buy: 45000 + Weight: 400 + Attack: 60 + MagicAttack: 95 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 24 + Refineable: true + Script: | + bonus bInt,3; + - Id: 1612 + AegisName: Arc_Wand__ + Name: Arc Wand + Type: Weapon + SubType: Staff + Buy: 45000 + Weight: 400 + Attack: 60 + MagicAttack: 95 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 24 + Refineable: true + Script: | + bonus bInt,3; + - Id: 1613 + AegisName: Mighty_Staff + Name: Mighty Staff + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 700 + Attack: 130 + MagicAttack: 100 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 24 + Refineable: true + Script: | + bonus bStr,10; bonus bSPDrainValue,-2; + - Id: 1614 + AegisName: Blessed_Wand + Name: Wand of Occult + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 700 + Attack: 75 + MagicAttack: 105 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 24 + Refineable: true + Script: | + bonus bInt,3; + - Id: 1615 + AegisName: Bone_Wand + Name: Evil Bone Wand + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 700 + Attack: 40 + MagicAttack: 110 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 24 + Refineable: true + Script: | + bonus bInt,4; bonus bAtkEle,Ele_Undead; + - Id: 1616 + AegisName: Staff_Of_Wing + Name: Wing Staff + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 500 + Attack: 60 + MagicAttack: 115 + Range: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus bVariableCastrate,-5; + - Id: 1617 + AegisName: Survival_Rod + Name: Survivor's Rod + Type: Weapon + SubType: Staff + Buy: 85000 + Weight: 1000 + Attack: 50 + MagicAttack: 120 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 24 + Refineable: true + Script: | + bonus bDex,2; bonus bMaxHP,300; + - Id: 1618 + AegisName: Survival_Rod_ + Name: Survivor's Rod + Type: Weapon + SubType: Staff + Buy: 85000 + Weight: 1000 + Attack: 50 + MagicAttack: 120 + Range: 1 + Slots: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 24 + Refineable: true + Script: | + bonus bDex,3; bonus bMaxHP,400; + - Id: 1619 + AegisName: Survival_Rod2 + Name: Survivor's Rod + Type: Weapon + SubType: Staff + Buy: 85000 + Weight: 1000 + Attack: 50 + MagicAttack: 120 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 24 + Refineable: true + Script: | + bonus bInt,2; bonus bMaxHP,300; + - Id: 1620 + AegisName: Survival_Rod2_ + Name: Survivor's Rod + Type: Weapon + SubType: Staff + Buy: 85000 + Weight: 1000 + Attack: 50 + MagicAttack: 120 + Range: 1 + Slots: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 24 + Refineable: true + Script: | + bonus bInt,3; bonus bMaxHP,400; + - Id: 1621 + AegisName: Hypnotist's_Staff + Name: Hypnotist's Staff + Type: Weapon + SubType: Staff + Buy: 43000 + Weight: 500 + Attack: 70 + MagicAttack: 120 + Range: 1 + Slots: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 30 + Refineable: true + Script: | + bonus bInt,1; + - Id: 1622 + AegisName: Hypnotist's_Staff_ + Name: Hypnotist's Staff + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 500 + Attack: 70 + MagicAttack: 120 + Range: 1 + Slots: 2 + Jobs: + Novice: true + SuperNovice: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 30 + Refineable: true + Script: | + bonus bInt,1; + - Id: 1623 + AegisName: Mighty_Staff_C + Name: Mighty Staff + Type: Weapon + SubType: Staff + Buy: 1 + Attack: 165 + MagicAttack: 120 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,10; bonus bInt,4; bonus bSPDrainValue,-1; + - Id: 1624 + AegisName: Lich_Bone_Wand + Name: Lich's Bone Wand + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 800 + Attack: 60 + MagicAttack: 170 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bInt,1; bonus bDex,1; bonus bAtkEle,Ele_Undead; .@r = getrefine(); bonus3 bAutoSpellWhenHit,"NPC_WIDECURSE",5,10+.@r; if(.@r>=9){ bonus bMatkRate,3; bonus bMaxSP,300; } + - Id: 1625 + AegisName: Healing_Staff + Name: Healing Staff + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 400 + Attack: 10 + MagicAttack: 105 + Range: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bAtkEle,Ele_Holy; bonus bHealPower,(getrefine()*3/2); + - Id: 1626 + AegisName: Piercing_Staff + Name: Piercing Staff + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 500 + Attack: 80 + MagicAttack: 145 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + .@r = getrefine(); bonus bInt,4; bonus2 bIgnoreMdefClassRate,Class_Normal,10+.@r; bonus2 bIgnoreMdefClassRate,Class_Boss,10+.@r; + - Id: 1627 + AegisName: Staffy + Name: Staffy + Type: Weapon + SubType: Staff + Buy: 20 + Attack: 40 + MagicAttack: 120 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,4; bonus bMatkRate,15; bonus2 bAddClass,Class_All,50; + - Id: 1628 + AegisName: Survival_Rod_C + Name: Refined Survivor's Rod + Type: Weapon + SubType: Staff + Buy: 1 + Attack: 71 + MagicAttack: 145 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,4; bonus bMatkRate,20; bonus bMaxHP,500; + - Id: 1629 + AegisName: Walking_Stick + Name: Gentleman's Staff + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 500 + Attack: 40 + MagicAttack: 125 + Range: 1 + Slots: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 50 + Refineable: true + Script: | + bonus bDex,1; + - Id: 1630 + AegisName: Release_Of_Wish + Name: Release of Wish + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 500 + Attack: 30 + MagicAttack: 125 + Range: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 50 + Refineable: true + Script: | + bonus bInt,3; bonus bHealPower,5; autobonus "{ bonus2 bSPRegenRate,100,2000; bonus2 bHPRegenRate,50,2000; }",10,10000,BF_MAGIC,"{ specialeffect2 EF_HEAL; }"; + - Id: 1631 + AegisName: Holy_Stick + Name: Holy Stick + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 500 + Attack: 50 + MagicAttack: 140 + Range: 1 + Slots: 1 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bAtkEle,Ele_Holy; bonus bMatkRate,15; bonus2 bVariableCastrate,"AL_HOLYLIGHT",-25; bonus2 bVariableCastrate,"PR_TURNUNDEAD",-25; bonus2 bVariableCastrate,"PR_MAGNUS",-25; + - Id: 1632 + AegisName: BF_Staff1 + Name: Warlock's Magic Wand + Type: Weapon + SubType: Staff + Buy: 20 + Attack: 70 + MagicAttack: 125 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,4; bonus bDex,3; bonus bMatkRate,15; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; bonus3 bAddEff,Eff_Stun,500,ATF_MAGIC; bonus bUnbreakableWeapon; + - Id: 1633 + AegisName: BF_Staff2 + Name: Warlock's Battle Wand + Type: Weapon + SubType: Staff + Buy: 20 + Attack: 70 + MagicAttack: 125 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,3; bonus bDex,3; bonus bMatkRate,15; bonus2 bMagicAddRace,RC_DemiHuman,15; bonus2 bMagicAddRace,RC_Player_Human,15; bonus3 bAddEff,Eff_Stun,500,ATF_MAGIC; bonus bUnbreakableWeapon; + - Id: 1634 + AegisName: BF_Staff3 + Name: Strong Recovery Wand + Type: Weapon + SubType: Staff + Buy: 20 + Attack: 70 + MagicAttack: 125 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMatkRate,15; bonus bHealPower,14; bonus2 bSPRegenRate,5,10000; bonus bUnbreakableWeapon; + - Id: 1635 + AegisName: BF_Staff4 + Name: Speedy Recovery Wand + Type: Weapon + SubType: Staff + Buy: 20 + Attack: 70 + MagicAttack: 125 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,3; bonus bDex,2; bonus bMatkRate,15; bonus bDelayRate,-15; bonus2 bSPRegenRate,5,10000; bonus bUnbreakableWeapon; + - Id: 1636 + AegisName: Thorn_Staff + Name: Thorn Staff of Darkness + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 700 + Attack: 60 + MagicAttack: 160 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 75 + Refineable: true + Script: | + bonus bAtkEle,Ele_Dark; bonus bInt,3; bonus bDex,3; .@r = getrefine(); bonus2 bIgnoreMdefClassRate,Class_Normal,.@r; bonus2 bIgnoreMdefClassRate,Class_Boss,.@r; bonus bDelayRate,-(.@r*3/2); + - Id: 1637 + AegisName: Eraser + Name: Eraser + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 500 + Attack: 80 + MagicAttack: 170 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bInt,3; bonus bDex,2; bonus bSPrecovRate,8; bonus5 bAutoSpell,"NPC_WIDESOULDRAIN",(getrefine()>9?3:1),5,BF_MAGIC,0; + - Id: 1638 + AegisName: Healing_Staff_C + Name: Staff Of Healing + Type: Weapon + SubType: Staff + Buy: 20 + Attack: 10 + MagicAttack: 125 + Range: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAtkEle,Ele_Holy; bonus bMatkRate,15; bonus bHealPower,(getrefine()*3/2); + - Id: 1639 + AegisName: N_Rod + Name: Novice Rod + Type: Weapon + SubType: Staff + Attack: 15 + MagicAttack: 32 + Range: 1 + Slots: 3 + Jobs: + Acolyte: true + Mage: true + Monk: true + Novice: true + Priest: true + Sage: true + SoulLinker: true + SuperNovice: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + - Id: 1640 + AegisName: Krieger_Onehand_Staff1 + Name: Glorious Arc Wand + Type: Weapon + SubType: Staff + Buy: 20 + Attack: 70 + MagicAttack: 135 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bMagicAddRace,RC_DemiHuman,15; bonus2 bMagicAddRace,RC_Player_Human,15; .@r = getrefine(); bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25 + ((.@r > 5) ? 5 : 0); bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25 + ((.@r > 5) ? 5 : 0); bonus bUnbreakableWeapon; if(.@r > 8) { bonus bMatkRate,5; bonus bVariableCastrate,-5; bonus bDelayRate,-5; } + - Id: 1641 + AegisName: Krieger_Onehand_Staff2 + Name: Glorious Cure Wand + Type: Weapon + SubType: Staff + Buy: 20 + Attack: 70 + MagicAttack: 135 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bHealPower,14; bonus bDelayRate,-10; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r > 5) { bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,5; bonus bHealPower,5+(min(14,.@r)-5)*2; } if(.@r > 8) bonus5 bAutoSpellOnSkill,"AL_HEAL","AL_HEAL",10,100,1; if(.@r > 9) { bonus bHealPower,10; } + - Id: 1642 + AegisName: Staff_Of_Darkness + Name: Staff Of Darkness + Type: Weapon + SubType: Staff + Buy: 20 + Attack: 100 + MagicAttack: 120 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 2 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bVariableCastrate,-5; bonus bMatkRate,15; bonus bInt,2; + - Id: 1643 + AegisName: Dead_Tree_Cane + Name: Dead Tree Cane + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 100 + Attack: 100 + MagicAttack: 155 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bInt,4; .@r = getrefine(); if (.@r>5) { bonus bInt,.@r-5; bonus bMaxHP,-200; bonus bMaxSP,-100; } + - Id: 1644 + AegisName: Piercing_Staff_M + Name: Staff of Piercing + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 500 + Attack: 80 + MagicAttack: 145 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,4; bonus bMatkRate,15; .@r = getrefine(); bonus2 bIgnoreMdefClassRate,Class_Normal,10+.@r; bonus2 bIgnoreMdefClassRate,Class_Boss,10+.@r; + - Id: 1645 + AegisName: Lich_Bone_Wand_M + Name: Lich's Bone Wand + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 800 + Attack: 60 + MagicAttack: 170 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,1; bonus bDex,1; bonus bAtkEle,Ele_Undead; bonus bMatkRate,20; .@r = getrefine(); bonus3 bAutoSpellWhenHit,"NPC_WIDECURSE",5,10+.@r; if(.@r>=9){ bonus bMatkRate,3; bonus bMaxSP,300; } + - Id: 1646 + AegisName: La'cryma_Stick + Name: La'cryma Stick + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 500 + Attack: 30 + MagicAttack: 180 + Range: 1 + Slots: 2 + Jobs: + Mage: true + Sage: true + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 50 + Refineable: true + Script: | + .@r = getrefine(); bonus bInt,4; bonus bMdef,.@r; bonus2 bSkillAtk,"WZ_STORMGUST",.@r; if (.@r > 9) bonus2 bVariableCastrate,"WZ_STORMGUST",-8; + - Id: 1647 + AegisName: Croce_Staff + Name: Croce Staff + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 500 + Attack: 30 + MagicAttack: 175 + Range: 1 + Slots: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 50 + Refineable: true + Script: | + bonus bAtkEle,Ele_Holy; bonus bInt,4; bonus4 bAutoSpellOnSkill,"AL_HEAL","AL_BLESSING",max(getskilllv("AL_BLESSING"),1),20; + - Id: 1648 + AegisName: Staff_Of_Bordeaux + Name: Staff Of Bordeaux + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 500 + Attack: 30 + MagicAttack: 170 + Range: 1 + Jobs: + Sage: true + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 50 + Refineable: true + Script: | + bonus bInt,2; bonus bDex,1; if(getskilllv("SA_DRAGONOLOGY") == 5) { bonus bUseSPrate,-15; bonus bInt,3; } + - Id: 1649 + AegisName: Rafini_Staff + Name: Laphine Staff + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 500 + Attack: 30 + MagicAttack: 180 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Novice: true + Priest: true + Sage: true + SoulLinker: true + SuperNovice: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bFixedCastRate,-getrefine(); + - Id: 1650 + AegisName: P_Staff1 + Name: Eden Staff I + Type: Weapon + SubType: Staff + Attack: 60 + MagicAttack: 125 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 26 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,2; + - Id: 1651 + AegisName: P_Staff2 + Name: Eden Staff II + Type: Weapon + SubType: Staff + Attack: 60 + MagicAttack: 150 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 40 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,3; + - Id: 1652 + AegisName: Tourist_Staff + Name: Tourist Staff + Type: Weapon + SubType: Staff + Weight: 500 + Attack: 35 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Novice: true + Priest: true + Sage: true + SoulLinker: true + SuperNovice: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMatkRate,15; bonus bInt,2; bonus bAgi,1; + - Id: 1653 + AegisName: Staff_Of_Healing_C + Name: Staff of Healing + Type: Weapon + SubType: Staff + Buy: 20 + Attack: 10 + MagicAttack: 100 + Range: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAtkEle,Ele_Holy; bonus bHealPower,18; + - Id: 1654 + AegisName: Mental_Stick + Name: Mental Stick + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 500 + Attack: 40 + MagicAttack: 170 + Range: 1 + Slots: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Novice: true + Priest: true + Sage: true + SoulLinker: true + SuperNovice: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 102 + Refineable: true + Script: | + .@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; + UnEquipScript: | + itemheal 0,-100; + - Id: 1655 + AegisName: Adventure_Staff + Name: Adventure Staff + Type: Weapon + SubType: Staff + Attack: 60 + Range: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Script: | + bonus bUnbreakableWeapon; + - Id: 1656 + AegisName: Academy_Wand + Name: Academy Wand + Type: Weapon + SubType: Staff + Weight: 600 + Attack: 60 + Range: 1 + Slots: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bUnbreakableWeapon; + - Id: 1657 + AegisName: Wand_Of_Affection + Name: Wand Of Affection + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 500 + Attack: 30 + MagicAttack: 160 + Range: 1 + Slots: 2 + Jobs: + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bInt,2; bonus bAtkEle,Ele_Holy; bonus bHealPower,10; + - Id: 1658 + AegisName: P_Staff3 + Name: Eden Staff III + Type: Weapon + SubType: Staff + Attack: 60 + MagicAttack: 170 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 60 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,4; + - Id: 1659 + AegisName: Recovery_Light + Name: Light of Recovery + Type: Weapon + SubType: Staff + Buy: 56000 + Weight: 400 + Attack: 30 + MagicAttack: 160 + Range: 1 + Slots: 1 + Jobs: + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 110 + Refineable: true + Script: | + bonus bAtkEle,Ele_Holy; bonus bUnbreakableWeapon; .@r = getrefine(); bonus bHealPower,(.@r*6); bonus2 bSkillUseSP,"AL_HEAL",-(.@r*10); bonus2 bSkillUseSP,"AB_CHEAL",-(.@r*12); bonus2 bSkillUseSP,"AB_HIGHNESSHEAL",-(.@r*14); + - Id: 1660 + AegisName: Wand_Of_Affection2 + Name: Empowered Wand Of Affection + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 500 + Attack: 30 + MagicAttack: 180 + Range: 1 + Slots: 1 + Jobs: + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 130 + Refineable: true + Script: | + bonus bAtkEle,Ele_Holy; bonus bInt,4; bonus bHealPower,20; + - Id: 1661 + AegisName: Mental_Destroyer + Name: Mental Destroyer + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 1400 + Attack: 100 + MagicAttack: 50 + Range: 1 + Jobs: + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 95 + Refineable: true + Script: | + .@r = getrefine(); bonus bInt,10; bonus bUnbreakableWeapon; bonus bUseSPrate,100; bonus bMdef,20; bonus3 bSPVanishRate,1000,5+(.@r>5?3:0),BF_WEAPON|BF_MAGIC|BF_MISC; + - Id: 1662 + AegisName: Bone_Wand_ + Name: Evil Bone Wand + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 700 + Attack: 40 + MagicAttack: 110 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 24 + Refineable: true + Script: | + bonus bInt,4; bonus bAtkEle,Ele_Undead; + - Id: 1663 + AegisName: Staff_Of_Bordeaux_ + Name: Staff Of Bordeaux + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 500 + Attack: 30 + MagicAttack: 180 + Range: 1 + Slots: 2 + Jobs: + Sage: true + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 50 + Refineable: true + Script: | + bonus bInt,2; bonus bDex,1; if(getskilllv("SA_DRAGONOLOGY") == 5) { bonus bUseSPrate,-15; bonus bInt,3; } + - Id: 1664 + AegisName: Thorn_Staff_ + Name: Thorn Staff of Darkness + Type: Weapon + SubType: Mace + Buy: 10 + Weight: 700 + Attack: 60 + MagicAttack: 160 + Slots: 1 + Jobs: + Acolyte: true + Mage: true + Classes: + Upper: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 75 + Refineable: true + Script: | + bonus bInt,3; bonus bDex,3; .@r = getrefine(); bonus2 bIgnoreMdefClassRate,Class_Normal,.@r; bonus2 bIgnoreMdefClassRate,Class_Boss,.@r; bonus bDelayrate,-.@r*3/2; bonus bAtkEle,Ele_Dark; + - Id: 1665 + AegisName: Piercing_Staff_ + Name: Piercing Staff + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 500 + Attack: 80 + MagicAttack: 145 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + .@r = getrefine(); bonus bInt,4; bonus2 bIgnoreMdefClassRate,Class_Normal,10+.@r; bonus2 bIgnoreMdefClassRate,Class_Boss,10+.@r; + - Id: 1666 + AegisName: Healing_Staff_ + Name: Healing Staff + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 400 + Attack: 10 + MagicAttack: 105 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bAtkEle,Ele_Holy; bonus bHealPower,(getrefine()*3/2); + - Id: 1667 + AegisName: TE_Woe_Staff + Name: TE Woe Staff + Type: Weapon + SubType: Staff + Attack: 50 + MagicAttack: 100 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Novice: true + Priest: true + Sage: true + SoulLinker: true + SuperNovice: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 40 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bMagicAddRace,RC_Player_Human,10; bonus3 bAddEff,Eff_Blind,1000,ATF_MAGIC; bonus bHPRecovRate,5; bonus bSPRecovRate,5; + - Id: 1668 + AegisName: Sword_Stick + Name: Sword Stick + Type: Weapon + SubType: Staff + Buy: 10 + Weight: 500 + Attack: 120 + MagicAttack: 150 + Slots: 2 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Script: | + bonus bAspdRate,10; + - Id: 1669 + AegisName: Thanos_Staff + Name: Thanos Staff + Type: Weapon + SubType: Staff + Buy: 10 + Weight: 1000 + Attack: 100 + MagicAttack: 200 + Range: 1 + Slots: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 120 + Refineable: true + Script: | + bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus bHealPower,15; bonus bMagicHPGainValue,500; bonus bMagicSPGainValue,50; bonus2 bHPLossRate,100,10000; + UnEquipScript: | + heal -1000,0; + - Id: 1670 + AegisName: RWC_Memory_Staff + Name: RWC Memory Staff + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 500 + Attack: 25 + MagicAttack: 30 + Range: 1 + Slots: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Novice: true + Priest: true + Sage: true + SoulLinker: true + SuperNovice: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + Script: | + .@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; + - Id: 1671 + AegisName: Devil_Won_Staff + Name: Evil Slayer Vanquisher Staff + Type: Weapon + SubType: Staff + Weight: 800 + Attack: 30 + MagicAttack: 155 + Slots: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Novice: true + Priest: true + Sage: true + SoulLinker: true + SuperNovice: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 100 + Refineable: true + Script: | + bonus2 bAddRace,RC_Undead,10; bonus2 bAddRace,RC_Demon,10; bonus2 bMagicAddRace,RC_Undead,10; bonus2 bMagicAddRace,RC_Demon,10; .@r = getrefine(); if(.@r>=9) { .@dmg = 5; if(.@r>=12) { .@dmg += 7; } bonus bMatkRate,.@dmg; } + - Id: 1673 + AegisName: Half_BF_Staff4 + Name: Half BF Staff4 + Type: Weapon + SubType: Staff + Buy: 20 + Attack: 70 + MagicAttack: 125 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Script: | + bonus bInt,3; bonus bDex,2; bonus bDelayRate,-10; bonus2 bSPLossRate,5,12000; bonus bUnbreakableWeapon; + - Id: 1674 + AegisName: Half_BF_Staff2 + Name: Half BF Staff2 + Type: Weapon + SubType: Staff + Buy: 20 + Attack: 70 + MagicAttack: 125 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Script: | + bonus bInt,3; bonus bDex,3; bonus2 bMagicAddRace,RC_DemiHuman,10; bonus2 bMagicAddRace,RC_Player_Human,10; bonus3 bAddEff,Eff_Stun,200,ATF_SKILL; bonus bUnbreakableWeapon; + - Id: 1675 + AegisName: Walking_Stick_ + Name: Gentleman's Staff + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 500 + Attack: 40 + MagicAttack: 125 + Range: 1 + Slots: 3 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 50 + Refineable: true + Script: | + bonus bDex,1; + - Id: 1676 + AegisName: Baculum_Daemonicum + Name: Baculum Daemonicum + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 1200 + Attack: 60 + MagicAttack: 150 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Mage: true + Monk: true + Novice: true + Priest: true + Sage: true + SoulLinker: true + SuperNovice: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Script: | + bonus bAtkEle,Ele_Dark; bonus bUnbreakableWeapon; bonus bVariableCastrate,-10; if (BaseLevel > 99){ bonus bMatk,30; } if(getrefine() > 8){ bonus2 bResEff,Eff_Blind,3000; bonus bUseSPrate,-10; } + - Id: 1677 + AegisName: Ru_Blue_Wand + Name: Blue Wand + Type: Weapon + SubType: Staff + Buy: 10 + Attack: 50 + MagicAttack: 200 + Range: 1 + Slots: 1 + Jobs: + Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bDex,5; bonus bInt,5; + - Id: 1678 + AegisName: Ru_Gold_Wand + Name: Ru Gold Wand + Type: Weapon + SubType: Staff + Attack: 50 + Range: 1 + Slots: 2 + Jobs: + Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 120 + Refineable: true + Script: | + bonus bDex,8; bonus bInt,8; + - Id: 1679 + AegisName: Rafini_Staff_S + Name: Laphine Staff + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 500 + Attack: 30 + MagicAttack: 180 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Mage: true + Monk: true + Novice: true + Priest: true + Sage: true + SoulLinker: true + SuperNovice: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bFixedCastRate,-getrefine(); + - Id: 1680 + AegisName: Crimson_One-Handed_Staff + Name: Crimson One-Handed Staff + Type: Weapon + SubType: Staff + Buy: 10 + Weight: 600 + Attack: 60 + MagicAttack: 70 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Mage: true + Monk: true + Novice: true + Priest: true + Sage: true + SoulLinker: true + SuperNovice: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + .@r = getrefine(); bonus bInt,4; bonus bMatk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bUnbreakableWeapon; + - Id: 1681 + AegisName: Short_Foxtail_Staff + Name: Short Foxtail Staff + Type: Weapon + SubType: Staff + Buy: 20 + Attack: 30 + Range: 1 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1682 + AegisName: Shadow_Staff + Name: Shadow Staff + Type: Weapon + SubType: Staff + Weight: 600 + Attack: 70 + MagicAttack: 130 + Range: 1 + Slots: 2 + Jobs: + Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 90 + Refineable: true + Script: | + .@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; }"; + - Id: 1683 + AegisName: Enriched_Foxtail_Staff + Name: Enriched Foxtail Staff + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 200 + Attack: 50 + MagicAttack: 70 + Range: 1 + Slots: 1 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 12 + Refineable: true + Script: | + bonus bMaxSP,50; + - Id: 1684 + AegisName: Long_Foxtail_Staff + Name: Long Foxtail Staff + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 200 + Attack: 50 + Range: 2 + Slots: 1 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 12 + Refineable: true + Script: | + bonus bLongAtkRate,5; bonus bMaxHP,200; + - Id: 1685 + AegisName: Dragonfly_Sitting_Foxtail_Staff + Name: Dragonfly Sitting Foxtail Staff + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 300 + Attack: 70 + MagicAttack: 100 + Range: 1 + Slots: 1 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 20 + Refineable: true + Script: | + bonus bInt,1; bonus bMaxHP,100; bonus bMaxSP,150; + - Id: 1686 + AegisName: Large_Foxtail_Staff + Name: Large Foxtail Staff + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 300 + Attack: 70 + Range: 1 + Slots: 1 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 20 + Refineable: true + Script: | + bonus bLongAtkRate,8; bonus bDex,1; bonus bMaxHP,200; bonus bMaxSP,100; + - Id: 1687 + AegisName: Beginner_Foxtail_Staff + Name: Beginner Foxtail Staff + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 100 + Attack: 40 + MagicAttack: 15 + Range: 1 + Slots: 1 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 3 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,100; + - Id: 1690 + AegisName: Mysterious_Foxtail_Staff + Name: Mysterious Foxtail Staff + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 400 + Attack: 80 + MagicAttack: 180 + Range: 1 + Slots: 3 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 60 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxSP,10*(.@r/3)+50; bonus bMatk,10*(.@r/3); + - Id: 1691 + AegisName: Strange_God_Foxtail_Staff + Name: Strange God Foxtail Staff + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 500 + Attack: 100 + MagicAttack: 240 + Range: 1 + Slots: 2 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bMaxSP,100; .@r = getrefine(); bonus bMatkRate,2*(.@r/3); bonus bMaxSPrate,.@r/3; if(.@r>=7){ .@r = min(.@r,10)-7; bonus bWeaponAtkRate,(20*.@r)+40; bonus bWeaponMatkRate,(20*.@r)+40; } bonus bUnbreakableWeapon; + - Id: 1692 + AegisName: Magical_Foxtail_Staff + Name: Magical Foxtail Staff + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 600 + Attack: 120 + MagicAttack: 260 + Range: 1 + Slots: 2 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 140 + Refineable: true + Script: | + bonus bMaxSP,100; .@r = getrefine(); bonus bMatkRate,2*(.@r/3); bonus bMaxSPrate,.@r/3; if(.@r>=7){ .@r = min(.@r,10)-7; bonus bWeaponAtkRate,(20*.@r)+40; bonus bWeaponMatkRate,(20*.@r)+40; } + - Id: 1693 + AegisName: Magical_Yellow_Foxtail_Staff + Name: Magical Yellow Foxtail Staff + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 700 + Attack: 140 + MagicAttack: 280 + Range: 1 + Slots: 1 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 175 + Refineable: true + Script: | + .@r = getrefine(); bonus bMatkRate,3*(.@r/2); bonus4 bAutoSpellOnSkill,"SU_FRESHSHRIMP","SU_ARCLOUSEDASH",max(1,getskilllv("SU_ARCLOUSEDASH")),200; bonus4 bAutoSpellOnSkill,"SU_SV_STEMSPEAR","SU_FRESHSHRIMP",max(1,getskilllv("SU_FRESHSHRIMP")),200; if(.@r>=7){ .@r = min(.@r,10)-7; bonus bWeaponAtkRate,(20*.@r)+40; bonus bWeaponMatkRate,(20*.@r)+40; } + - Id: 1694 + AegisName: Foxtail_Model + Name: Foxtail Model + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 300 + Attack: 150 + Range: 1 + Slots: 3 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 60 + Refineable: true + Script: | + bonus bLongAtkRate,8; bonus bMaxHP,100; .@r = getrefine(); bonus bDex,(.@r/3)*2; bonus bMaxSP,(.@r/3)*10; + - Id: 1695 + AegisName: Delicate_Foxtail_Model + Name: Delicate Foxtail Model + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 300 + Attack: 195 + Range: 1 + Slots: 2 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bLongAtkRate,8; bonus bMaxHP,200; .@r = getrefine(); bonus bDex,(.@r/3)*3; bonus bMaxSP,(.@r/3)*15; if(.@r>=7){ .@r = min(.@r,10)-7; bonus bWeaponAtkRate,(20*.@r)+40; bonus bWeaponMatkRate,(20*.@r)+40; } + - Id: 1696 + AegisName: Exquisite_Foxtail_Model + Name: Exquisite Foxtail Model + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 300 + Attack: 240 + Range: 1 + Slots: 2 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 140 + Refineable: true + Script: | + bonus bLongAtkRate,8; bonus bMaxHPrate,5; .@r = getrefine(); bonus bDex,(.@r/2)*3; bonus bMaxSP,(.@r/2)*15; if(.@r>=7){ .@r = min(.@r,10)-7; bonus bWeaponAtkRate,(20*.@r)+40; bonus bWeaponMatkRate,(20*.@r)+40; } + - Id: 1697 + AegisName: Exquisite_Yellow_Foxtail_Model + Name: Exquisite Yellow Foxtail Model + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 300 + Attack: 270 + Range: 1 + Slots: 1 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 175 + Refineable: true + Script: | + bonus bLongAtkRate,9; bonus bMaxHPrate,7; .@r = getrefine(); bonus bLongAtkRate,.@r/2; bonus bMaxSP,(.@r/2)*20; bonus4 bAutoSpellOnSkill,"SU_PICKYPECK","SU_FRESHSHRIMP",max(1,getskilllv("SU_FRESHSHRIMP")),200; if(.@r>=7){ .@r = min(.@r,10)-7; bonus bWeaponAtkRate,(20*.@r)+40; bonus bWeaponMatkRate,(20*.@r)+40; } + - Id: 1698 + AegisName: Requiem_Arc_Wand + Name: Requiem Arc Wand + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 500 + Attack: 80 + MagicAttack: 145 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Novice: true + SuperNovice: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); .@b = 40; if(.@r>=5){ .@b += (.@r-5)*15+20; } bonus2 bMagicAddRace2,RC2_BioLab,.@b; + - Id: 1699 + AegisName: Paradise_Foxtail_Staff_I + Name: Eden Group Foxtail I + Type: Weapon + SubType: Staff + Buy: 20 + Attack: 120 + MagicAttack: 135 + Range: 1 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 26 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,3; bonus bInt,3; bonus bLongAtkRate,5; + - Id: 1701 + AegisName: Bow + Name: Bow + Type: Weapon + SubType: Bow + Buy: 1000 + Weight: 500 + Attack: 15 + Range: 5 + Slots: 3 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 4 + Refineable: true + - Id: 1702 + AegisName: Bow_ + Name: Bow + Type: Weapon + SubType: Bow + Buy: 1000 + Weight: 500 + Attack: 15 + Range: 5 + Slots: 4 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 4 + Refineable: true + - Id: 1703 + AegisName: Bow__ + Name: Bow + Type: Weapon + SubType: Bow + Buy: 1000 + Attack: 15 + Range: 5 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 4 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddDamageClass,1002,500; bonus2 bAddDamageClass,1113,500; bonus2 bAddDamageClass,1031,500; bonus2 bAddDamageClass,1242,500; + - Id: 1704 + AegisName: Composite_Bow + Name: Composite Bow + Type: Weapon + SubType: Bow + Buy: 2500 + Weight: 600 + Attack: 29 + Range: 5 + Slots: 3 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 4 + Refineable: true + - Id: 1705 + AegisName: Composite_Bow_ + Name: Composite Bow + Type: Weapon + SubType: Bow + Buy: 2500 + Weight: 600 + Attack: 29 + Range: 5 + Slots: 4 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 4 + Refineable: true + - Id: 1706 + AegisName: Composite_Bow__ + Name: Composite Bow + Type: Weapon + SubType: Bow + Buy: 2500 + Weight: 600 + Attack: 29 + Range: 5 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 4 + Refineable: true + - Id: 1707 + AegisName: Great_Bow + Name: Great Bow + Type: Weapon + SubType: Bow + Buy: 10000 + Weight: 1000 + Attack: 50 + Range: 5 + Slots: 2 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 18 + Refineable: true + - Id: 1708 + AegisName: Great_Bow_ + Name: Great Bow + Type: Weapon + SubType: Bow + Buy: 10000 + Weight: 1000 + Attack: 50 + Range: 5 + Slots: 3 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 18 + Refineable: true + - Id: 1709 + AegisName: Great_Bow__ + Name: Great Bow + Type: Weapon + SubType: Bow + Buy: 10000 + Weight: 1000 + Attack: 50 + Range: 5 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 18 + Refineable: true + - Id: 1710 + AegisName: CrossBow + Name: Crossbow + Type: Weapon + SubType: Bow + Buy: 17000 + Weight: 900 + Attack: 65 + Range: 5 + Slots: 2 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 18 + Refineable: true + - Id: 1711 + AegisName: CrossBow_ + Name: Crossbow + Type: Weapon + SubType: Bow + Buy: 17000 + Weight: 900 + Attack: 65 + Range: 5 + Slots: 3 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 18 + Refineable: true + - Id: 1712 + AegisName: CrossBow__ + Name: Crossbow + Type: Weapon + SubType: Bow + Buy: 17000 + Weight: 900 + Attack: 65 + Range: 5 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 18 + Refineable: true + - Id: 1713 + AegisName: Arbalest + Name: Arbalest + Type: Weapon + SubType: Bow + Buy: 48000 + Weight: 1000 + Attack: 90 + Range: 5 + Slots: 1 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + Script: | + bonus bDex,2; + - Id: 1714 + AegisName: Kakkung + Name: Gakkung Bow + Type: Weapon + SubType: Bow + Buy: 42000 + Weight: 1100 + Attack: 100 + Range: 5 + Slots: 1 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + - Id: 1715 + AegisName: Arbalest_ + Name: Arbalest + Type: Weapon + SubType: Bow + Buy: 48000 + Weight: 1000 + Attack: 90 + Range: 5 + Slots: 2 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + Script: | + bonus bDex,2; + - Id: 1716 + AegisName: Kakkung_ + Name: Gakkung Bow + Type: Weapon + SubType: Bow + Buy: 42000 + Weight: 1100 + Attack: 100 + Range: 5 + Slots: 2 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + - Id: 1718 + AegisName: Hunter_Bow + Name: Hunter Bow + Type: Weapon + SubType: Bow + Buy: 64000 + Weight: 1500 + Attack: 125 + Range: 5 + Jobs: + Hunter: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + - Id: 1719 + AegisName: Bow_Of_Roguemaster + Name: Roguemaster's Bow + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 500 + Attack: 75 + Range: 11 + Jobs: + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + - Id: 1720 + AegisName: Bow_Of_Rudra + Name: Rudra Bow + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 1200 + Attack: 150 + Range: 5 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + 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; + - Id: 1721 + AegisName: Repeting_CrossBow + Name: Repeating Crossbow + Type: Weapon + SubType: Bow + Buy: 89000 + Weight: 2000 + Attack: 95 + Range: 9 + Slots: 1 + Jobs: + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 65 + Refineable: true + - Id: 1722 + AegisName: Balistar + Name: Ballista + Type: Weapon + SubType: Bow + Buy: 124000 + Weight: 3500 + Attack: 145 + Range: 5 + Jobs: + BardDancer: true + Hunter: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 77 + Refineable: true + - Id: 1723 + AegisName: Luna_Bow + Name: Luna Bow + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 2000 + Attack: 100 + Range: 5 + Slots: 2 + Jobs: + Hunter: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 30 + Refineable: true + Script: | + .@r = getrefine(); bonus bDef,2+3*(.@r>5)+5*(.@r>8); + - Id: 1724 + AegisName: Dragon_Wing + Name: Dragon Wing + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 1200 + Attack: 100 + Range: 5 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 60 + Refineable: true + Script: | + bonus3 bAddMonsterDropItem,1765,RC_Dragon,300; bonus bIgnoreDefRace,RC_Dragon; + - Id: 1725 + AegisName: Bow_Of_Minstrel + Name: Minstrel Bow + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 1700 + Attack: 120 + Range: 5 + Slots: 1 + Jobs: + BardDancer: true + Hunter: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bInt,2; bonus bSPrecovRate,10; + - Id: 1726 + AegisName: Hunter_Bow_ + Name: Hunter Bow + Type: Weapon + SubType: Bow + Buy: 64000 + Weight: 1500 + Attack: 125 + Range: 5 + Slots: 1 + Jobs: + Hunter: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 33 + Refineable: true + - Id: 1727 + AegisName: Balistar_ + Name: Ballista + Type: Weapon + SubType: Bow + Buy: 124000 + Weight: 3500 + Attack: 145 + Range: 5 + Slots: 1 + Jobs: + BardDancer: true + Hunter: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 77 + Refineable: true + - Id: 1728 + AegisName: Balistar_C + Name: Ballista + Type: Weapon + SubType: Bow + Buy: 1 + Attack: 194 + Range: 5 + Jobs: + BardDancer: true + Hunter: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bLongAtkRate,20; + - Id: 1729 + AegisName: Bow_Of_Rudra_C + Name: Rudra Bow + Type: Weapon + SubType: Bow + Buy: 2 + Attack: 185 + Range: 5 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAtkEle,Ele_Holy; bonus bInt,5; 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; skill "AL_CURE",1; skill "AL_HEAL",1; bonus2 bAddRace,RC_Undead,20; bonus2 bAddRace,RC_Demon,20; + - Id: 1730 + AegisName: Burning_Bow + Name: Burning Bow + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 1400 + Attack: 95 + Range: 5 + Slots: 1 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus2 bSubEle,Ele_Fire,10; + - Id: 1731 + AegisName: Frozen_Bow + Name: Frozen Bow + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 1400 + Attack: 100 + Range: 5 + Slots: 1 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus2 bAddEff,Eff_Freeze,1000; + - Id: 1732 + AegisName: Earth_Bow + Name: Earth Bow + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 1400 + Attack: 105 + Range: 5 + Slots: 1 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 55 + Refineable: true + - Id: 1733 + AegisName: Gust_Bow + Name: Gust Bow + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 1400 + Attack: 95 + Range: 5 + Slots: 1 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 55 + Refineable: true + - Id: 1734 + AegisName: Orc_Archer_Bow + Name: Orc Archer Bow + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 1600 + Attack: 120 + Range: 5 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 65 + Refineable: true + Script: | + bonus2 bAddMonsterDropItem,1753,200; + - Id: 1735 + AegisName: Kkakkung + Name: Kkakkung + Type: Weapon + SubType: Bow + Buy: 20 + Attack: 120 + Range: 5 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,50; + - Id: 1736 + AegisName: Double_Bound + Name: Double Bound + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 900 + Attack: 70 + Range: 5 + Slots: 3 + Jobs: + Hunter: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus3 bAutoSpell,"AC_DOUBLE",GetSkillLv("AC_DOUBLE"),10; + - Id: 1737 + AegisName: Ixion_Wing + Name: Ixion Wings + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 300 + Attack: 135 + Range: 5 + Slots: 1 + Jobs: + Hunter: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 70 + Refineable: true + Script: | + autobonus "{ bonus bAspdRate,7; }",10+(getrefine()*2),7000,BF_WEAPON,"{ specialeffect2 EF_HASTEUP; }"; bonus2 bAddSkillBlow,"AC_CHARGEARROW",3; + - Id: 1738 + AegisName: BF_Bow1 + Name: Valorous Battle CrossBow + Type: Weapon + SubType: Bow + Buy: 20 + Attack: 100 + Range: 5 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; + - Id: 1739 + AegisName: BF_Bow2 + Name: Brave Battle CrossBow + Type: Weapon + SubType: Bow + Buy: 20 + Attack: 100 + Range: 5 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,2; bonus bInt,10; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus bUnbreakableWeapon; + - Id: 1740 + AegisName: Nepenthes_Bow + Name: Nepenthes Bow + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 1000 + Attack: 105 + Range: 5 + Slots: 2 + Jobs: + Hunter: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 60 + Refineable: true + Script: | + bonus4 bAutoSpellOnSkill,"AC_DOUBLE","AC_CHARGEARROW",1,20; + - Id: 1741 + AegisName: Cursed_Lyre + Name: Cursed Lyre + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 1250 + Attack: 125 + Range: 5 + Slots: 1 + Jobs: + BardDancer: true + Hunter: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Script: | + bonus bLuk,-2; bonus2 bAddEff,Eff_Curse,400; + - Id: 1742 + AegisName: N_Composite_Bow + Name: Novice Composite Bow + Type: Weapon + SubType: Bow + Buy: 1 + Attack: 49 + Range: 5 + Slots: 3 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 4 + - Id: 1743 + AegisName: Krieger_Bow1 + Name: Glorious Hunter Bow + Type: Weapon + SubType: Bow + Attack: 100 + Range: 5 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; .@r = getrefine(); bonus bCritAtkRate,min(10,.@r)*2; bonus bUnbreakableWeapon; if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) bonus2 bSkillAtk,"AC_DOUBLE",20; + - Id: 1744 + AegisName: Bow_Of_Evil + Name: Bow Of Evil + Type: Weapon + SubType: Bow + Buy: 20 + Attack: 170 + Range: 5 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bSkillAtk,"AC_DOUBLE",25; bonus bDex,2; + - Id: 1745 + AegisName: Falken_Blitz + Name: Falken Blitz + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 1000 + Attack: 100 + Range: 5 + Slots: 2 + Jobs: + Hunter: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 50 + Refineable: true + Script: | + bonus2 bSkillAtk,"SN_SHARPSHOOTING",10; bonus2 bSkillAtk,"AC_DOUBLE",10; bonus2 bSkillAtk,"AC_CHARGEARROW",10; + - Id: 1746 + AegisName: Elven_Bow + Name: Elven Bow + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 1500 + Attack: 160 + Range: 5 + Slots: 1 + Jobs: + BardDancer: true + Hunter: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bDex,2; + - Id: 1747 + AegisName: P_Bow1 + Name: Eden Bow I + Type: Weapon + SubType: Bow + Attack: 82 + Range: 5 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 26 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1748 + AegisName: P_Bow2 + Name: Eden Bow II + Type: Weapon + SubType: Bow + Attack: 120 + Range: 5 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 40 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1749 + AegisName: Tourist_Bow + Name: Tourist Bow + Type: Weapon + SubType: Bow + Weight: 500 + Attack: 40 + Range: 5 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,2; + - Id: 1800 + AegisName: Fist_of_Vicious_Mind + Name: Fist of Vicious Mind + Type: Weapon + SubType: Knuckle + Buy: 20 + Weight: 1500 + Attack: 150 + Range: 1 + Slots: 1 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 160 + Refineable: true + Script: | + bonus bAtk,pow(min(getrefine(),15),2); + - Id: 1801 + AegisName: Waghnakh + Name: Waghnak + Type: Weapon + SubType: Knuckle + Buy: 8000 + Weight: 400 + Attack: 30 + Range: 1 + Slots: 3 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + - Id: 1802 + AegisName: Waghnakh_ + Name: Waghnak + Type: Weapon + SubType: Knuckle + Buy: 8000 + Weight: 400 + Attack: 30 + Range: 1 + Slots: 4 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + - Id: 1803 + AegisName: Knuckle_Duster + Name: Knuckle Dusters + Type: Weapon + SubType: Knuckle + Buy: 25000 + Weight: 450 + Attack: 50 + Range: 1 + Slots: 2 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 12 + Refineable: true + - Id: 1804 + AegisName: Knuckle_Duster_ + Name: Knuckle Dusters + Type: Weapon + SubType: Knuckle + Buy: 25000 + Weight: 450 + Attack: 50 + Range: 1 + Slots: 3 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 12 + Refineable: true + - Id: 1805 + AegisName: Hora + Name: Studded Knuckles + Type: Weapon + SubType: Knuckle + Buy: 32000 + Weight: 450 + Attack: 65 + Range: 1 + Slots: 2 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 12 + Refineable: true + - Id: 1806 + AegisName: Hora_ + Name: Studded Knuckles + Type: Weapon + SubType: Knuckle + Buy: 32000 + Weight: 450 + Attack: 65 + Range: 1 + Slots: 3 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 12 + Refineable: true + - Id: 1807 + AegisName: Fist + Name: Fist + Type: Weapon + SubType: Knuckle + Buy: 53000 + Weight: 650 + Attack: 115 + Range: 1 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 24 + Refineable: true + - Id: 1808 + AegisName: Fist_ + Name: Fist + Type: Weapon + SubType: Knuckle + Buy: 53000 + Weight: 650 + Attack: 115 + Range: 1 + Slots: 1 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 24 + Refineable: true + - Id: 1809 + AegisName: Claw + Name: Claw + Type: Weapon + SubType: Knuckle + Buy: 67000 + Weight: 500 + Attack: 86 + Range: 1 + Slots: 1 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 24 + Refineable: true + Script: | + bonus bStr,2; + - Id: 1810 + AegisName: Claw_ + Name: Claw + Type: Weapon + SubType: Knuckle + Buy: 67000 + Weight: 500 + Attack: 86 + Range: 1 + Slots: 2 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 24 + Refineable: true + Script: | + bonus bStr,2; + - Id: 1811 + AegisName: Finger + Name: Finger + Type: Weapon + SubType: Knuckle + Buy: 58000 + Weight: 500 + Attack: 97 + Range: 1 + Slots: 1 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 24 + Refineable: true + - Id: 1812 + AegisName: Finger_ + Name: Finger + Type: Weapon + SubType: Knuckle + Buy: 58000 + Weight: 500 + Attack: 97 + Range: 1 + Slots: 2 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 24 + Refineable: true + - Id: 1813 + AegisName: Kaiser_Knuckle + Name: Kaiser Knuckle + Type: Weapon + SubType: Knuckle + Buy: 20 + Weight: 450 + Attack: 110 + Range: 1 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 36 + Refineable: true + Script: | + bonus bAtkEle,Ele_Wind; bonus2 bAddRace,RC_Undead,5; bonus2 bAddEle,Ele_Water,10; bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Fire,10; bonus2 bAddEle,Ele_Wind,10; + - Id: 1814 + AegisName: Berserk + Name: Berserk + Type: Weapon + SubType: Knuckle + Buy: 20 + Weight: 500 + Attack: 120 + Range: 1 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 36 + Refineable: true + Script: | + bonus bAspdRate,12; + - Id: 1815 + AegisName: Claw_Of_Garm + Name: Hatii Claw + Type: Weapon + SubType: Knuckle + Buy: 20 + Weight: 550 + Attack: 152 + Range: 1 + Slots: 1 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bAtkEle,Ele_Dark; bonus bMaxHPrate,-2; bonus2 bAddEff,Eff_Bleeding,200; + - Id: 1816 + AegisName: Berserk_ + Name: Berserk + Type: Weapon + SubType: Knuckle + Buy: 20 + Weight: 500 + Attack: 120 + Range: 1 + Slots: 1 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 36 + Refineable: true + Script: | + bonus bAspdRate,12; + - Id: 1817 + AegisName: Kaiser_Knuckle_C + Name: Kaiser Knuckle + Type: Weapon + SubType: Knuckle + Buy: 1 + Attack: 159 + Range: 1 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAtkEle,Ele_Wind; bonus2 bAddRace,RC_Undead,5; bonus2 bAddEle,Ele_Water,10; bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Fire,10; bonus2 bAddEle,Ele_Wind,10; bonus bAspdRate,5; + - Id: 1818 + AegisName: Magma_Fist + Name: Magma Fist + Type: Weapon + SubType: Knuckle + Buy: 20 + Weight: 650 + Attack: 80 + Range: 1 + Slots: 3 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 75 + Refineable: true + Script: | + bonus3 bAutoSpell,"SA_FLAMELAUNCHER",5,10; + - Id: 1819 + AegisName: Icicle_Fist + Name: Icicle Fist + Type: Weapon + SubType: Knuckle + Buy: 20 + Weight: 650 + Attack: 80 + Range: 1 + Slots: 3 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 75 + Refineable: true + Script: | + bonus3 bAutoSpell,"SA_FROSTWEAPON",5,10; + - Id: 1820 + AegisName: Electric_Fist + Name: Electric Fist + Type: Weapon + SubType: Knuckle + Buy: 20 + Weight: 650 + Attack: 80 + Range: 1 + Slots: 3 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 75 + Refineable: true + Script: | + bonus3 bAutoSpell,"SA_LIGHTNINGLOADER",5,10; + - Id: 1821 + AegisName: Seismic_Fist + Name: Seismic Fist + Type: Weapon + SubType: Knuckle + Buy: 20 + Weight: 650 + Attack: 80 + Range: 1 + Slots: 3 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 75 + Refineable: true + Script: | + bonus3 bAutoSpell,"SA_SEISMICWEAPON",5,10; + - Id: 1822 + AegisName: Combo_Battle_Glove + Name: Combo Battle Glove + Type: Weapon + SubType: Knuckle + Buy: 20 + Weight: 500 + Attack: 30 + Range: 1 + Slots: 4 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 60 + Refineable: true + Script: | + bonus2 bSkillAtk,"MO_TRIPLEATTACK",15; bonus2 bSkillAtk,"MO_CHAINCOMBO",15; bonus2 bSkillAtk,"MO_COMBOFINISH",20; + - Id: 1823 + AegisName: BF_Knuckle1 + Name: Valorous Battle Fist + Type: Weapon + SubType: Knuckle + Buy: 20 + Attack: 30 + Range: 1 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,2; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus4 bAutoSpell,"CH_SOULCOLLECT",1,5,0; bonus bUnbreakableWeapon; + - Id: 1824 + AegisName: BF_Knuckle2 + Name: Brave Battle Fist + Type: Weapon + SubType: Knuckle + Buy: 20 + Attack: 30 + Range: 1 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,2; bonus bInt,1; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bVariableCastrate,"MO_EXTREMITYFIST",-25; autobonus "{ bonus2 bVariableCastrate,\"MO_EXTREMITYFIST\",-100; }",50,6000,BF_WEAPON,"{ specialeffect2 EF_SUFFRAGIUM; }"; bonus bUnbreakableWeapon; + - Id: 1825 + AegisName: Horn_Of_Hilthrion + Name: Horn of Hillslion + Type: Weapon + SubType: Knuckle + Buy: 20 + Weight: 600 + Attack: 95 + Range: 1 + Slots: 3 + Jobs: + Monk: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 60 + Refineable: true + Script: | + bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,100; bonus4 bAutoSpellOnSkill,"CH_PALMSTRIKE","MO_INVESTIGATE",1,100; bonus3 bAutoSpell,"MO_CALLSPIRITS",5,100; + - Id: 1826 + AegisName: Krieger_Knuckle1 + Name: Glorious Claw + Type: Weapon + SubType: Knuckle + Buy: 20 + Attack: 30 + Range: 1 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) { bonus3 bAutoSpell,"MO_INVESTIGATE",5,(.@r*10-50); bonus3 bAutoSpell,"AL_DECAGI",1,(.@r*10-50); } + - Id: 1827 + AegisName: Krieger_Knuckle2 + Name: Glorious Fist + Type: Weapon + SubType: Knuckle + Buy: 20 + Attack: 30 + Range: 1 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) { bonus2 bVariableCastrate,"MO_EXTREMITYFIST",-100; bonus2 bFixedCastrate,"MO_EXTREMITYFIST",-100; bonus4 bautospellonskill,"MO_EXPLOSIONSPIRITS","CH_SOULCOLLECT",1,1000; } + - Id: 1828 + AegisName: Monk_Knuckle + Name: Monk Knuckle + Type: Weapon + SubType: Knuckle + Buy: 20 + Attack: 150 + Range: 1 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,2; bonus2 bSkillAtk,"MO_FINGEROFFENSIVE",25; + - Id: 1829 + AegisName: Fist_C + Name: Fist + Type: Weapon + SubType: Knuckle + Attack: 150 + Range: 1 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddSize,Size_All,40; + - Id: 1830 + AegisName: Sura_Rampage + Name: Sura Rampage + Type: Weapon + SubType: Knuckle + Buy: 20 + Weight: 500 + Attack: 142 + Range: 1 + Slots: 1 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 102 + Refineable: true + Script: | + bonus2 bSkillAtk,"SR_EARTHSHAKER",20; bonus2 bSkillAtk,"SR_SKYNETBLOW",20; bonus bUseSPrate,5; .@r = getrefine(); if(.@r>6) { bonus bUseSPrate,-1*(.@r-6); } + - Id: 1831 + AegisName: P_Knuckle1 + Name: Eden Knuckle I + Type: Weapon + SubType: Knuckle + Attack: 120 + Range: 1 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 60 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1832 + AegisName: Velum_Claw + Name: Vellum Claw + Type: Weapon + SubType: Knuckle + Buy: 20 + Weight: 650 + Attack: 160 + Range: 1 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 95 + Refineable: true + Script: | + bonus2 bAddRace,RC_Player_Human,100; .@r = getrefine(); if(.@r>7) { bonus2 bAddRace,RC_Player_Human,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; } + - Id: 1833 + AegisName: Claw_Of_Flash + Name: Claw of Flash + Type: Weapon + SubType: Knuckle + Buy: 60000 + Weight: 400 + Attack: 140 + Range: 1 + Slots: 2 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 105 + Refineable: true + Script: | + bonus bAspd,1; bonus bAspdRate,getrefine(); bonus2 bAddSize,Size_Medium,getrefine(); + - Id: 1834 + AegisName: TE_Woe_Fist + Name: TE Woe Fist + Type: Weapon + SubType: Knuckle + Attack: 150 + Range: 1 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 40 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Freeze,3000; + - Id: 1835 + AegisName: Spartacus + Name: Spartacus + Type: Weapon + SubType: Knuckle + Weight: 600 + Attack: 100 + Range: 1 + Slots: 2 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 50 + Refineable: true + Script: | + bonus bUnbreakableWeapon; .@r = getrefine(); bonus2 bAddClass,Class_All,.@r; if(.@r>9) { bonus bNoSizeFix; } + - Id: 1836 + AegisName: Thanos_Knuckle + Name: Thanos Knuckle + Type: Weapon + SubType: Knuckle + Buy: 10 + Weight: 600 + Attack: 160 + MagicAttack: 100 + Range: 1 + Slots: 1 + Jobs: + Monk: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 120 + Refineable: true + Script: | + bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000; + UnEquipScript: | + heal -1000,0; + - Id: 1837 + AegisName: Iron_nail + Name: Iron Nail + Type: Weapon + SubType: Knuckle + Buy: 10 + Weight: 1500 + Attack: 100 + Slots: 1 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 50 + Refineable: true + Script: | + bonus bUnbreakableWeapon; bonus bIgnoreDefClass,Class_All; .@r = (getrefine()/2); bonus bAspdRate,-5+.@r; if(getskilllv("MO_CHAINCOMBO")==5){ bonus bBaseAtk,20; } if(getskilllv("MO_COMBOFINISH")==5){ bonus bBaseAtk,20; } if(getskilllv("CH_TIGERFIST")==5){ bonus bBaseAtk,20; } if(getskilllv("CH_CHAINCRUSH")==10){ bonus bBaseAtk,40; } + - Id: 1838 + AegisName: Half_BF_Knuckle1 + Name: Half BF Knuckle1 + Type: Weapon + SubType: Knuckle + Buy: 20 + Attack: 30 + Range: 1 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Script: | + bonus bStr,2; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player_Human,30; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus4 bAutoSpell,"CH_SOULCOLLECT",1,5,0; bonus bUnbreakableWeapon; + - Id: 1839 + AegisName: Crimson_Knuckles + Name: Crimson Knuckles + Type: Weapon + SubType: Knuckle + Buy: 20 + Weight: 1000 + Attack: 100 + Range: 1 + Slots: 2 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bUnbreakableWeapon; + - Id: 1840 + AegisName: Requiem_Knuckle + Name: Requiem Knuckle + Type: Weapon + SubType: Knuckle + Buy: 20 + Weight: 500 + Attack: 150 + MagicAttack: 100 + Range: 1 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); .@b = 40; if(.@r>=5){ .@b += (.@r-5)*15+20; } bonus2 bAddRace2,RC2_BioLab,.@b; + - Id: 1841 + AegisName: Claw_Of_Flash_ + Name: Claw of Flash + Type: Weapon + SubType: Knuckle + Buy: 60000 + Weight: 400 + Attack: 140 + Range: 1 + Slots: 3 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 105 + Refineable: true + Script: | + bonus bAspd,1; bonus bAspdRate,getrefine(); bonus2 bAddSize,Size_Medium,getrefine(); + - Id: 1846 + AegisName: Illusion_Combo_Battle_Glove + Name: Illusion Combo Battle Glove + Type: Weapon + SubType: Knuckle + Weight: 500 + Attack: 250 + Range: 1 + Slots: 2 + Jobs: + Monk: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 120 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"SR_SKYNETBLOW",(10+5*(.@r/2)); bonus2 bSkillAtk,"SR_DRAGONCOMBO",(10+5*(.@r/2)); bonus2 bSkillAtk,"SR_TIGERCANNON",(5*(.@r/3)); + - Id: 1862 + AegisName: Burning_Knuckle-OS + Name: Burning Knuckle-OS + Type: Weapon + SubType: Knuckle + Buy: 20 + Weight: 900 + Attack: 175 + Range: 1 + Slots: 2 + Jobs: + Monk: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 130 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bAddClass,Class_All,3; if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",15; if (.@r >= 11) { bonus2 bAddSize,Size_Medium,20; bonus2 bAddSize,Size_Large,20; } } } + - Id: 1865 + AegisName: Raging_Dragon_Fist + Name: Raging Dragon Fist + Type: Weapon + SubType: Knuckle + Buy: 20 + Weight: 700 + Attack: 210 + Range: 1 + Slots: 2 + Jobs: + Monk: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,4*.@r; bonus2 bSkillAtk,"MO_CHAINCOMBO",30; if (.@r >= 9) { bonus2 bSkillAtk,"MO_COMBOFINISH",50; bonus2 bSkillAtk,"CH_CHAINCRUSH",50; } if (.@r >= 11) bonus2 bSkillAtk,"CH_CHAINCRUSH",30; + - Id: 1866 + AegisName: Dedicated_Bandage + Name: Dedicated Bandage + Type: Weapon + SubType: Knuckle + Buy: 20 + Weight: 800 + Attack: 220 + Range: 1 + Slots: 2 + Jobs: + Monk: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,4*.@r; bonus bLongAtkRate,10; if (.@r >= 9) bonus2 bSkillAtk,"SR_KNUCKLEARROW",40; if (.@r >= 11) bonus bDelayrate,-7; + - Id: 1900 + AegisName: Violin_of_Vicious_Mind + Name: Violin of Vicious Mind + Type: Weapon + SubType: Musical + Buy: 20 + Weight: 1300 + Attack: 130 + MagicAttack: 50 + Range: 1 + Slots: 1 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 160 + Refineable: true + Script: | + bonus bAtk,pow(min(getrefine(),15),2); bonus bMatk,pow(min(getrefine(),15),2)/2; + - Id: 1901 + AegisName: Violin + Name: Violin + Type: Weapon + SubType: Musical + Buy: 4000 + Weight: 700 + Attack: 50 + Range: 1 + Slots: 3 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 2 + Refineable: true + - Id: 1902 + AegisName: Violin_ + Name: Violin + Type: Weapon + SubType: Musical + Buy: 4000 + Weight: 700 + Attack: 50 + Range: 1 + Slots: 4 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 2 + Refineable: true + - Id: 1903 + AegisName: Mandolin + Name: Mandolin + Type: Weapon + SubType: Musical + Buy: 18000 + Weight: 400 + Attack: 90 + Range: 1 + Slots: 2 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 14 + Refineable: true + - Id: 1904 + AegisName: Mandolin_ + Name: Mandolin + Type: Weapon + SubType: Musical + Buy: 18000 + Weight: 400 + Attack: 90 + Range: 1 + Slots: 3 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 14 + Refineable: true + - Id: 1905 + AegisName: Lute + Name: Lute + Type: Weapon + SubType: Musical + Buy: 24500 + Weight: 500 + Attack: 105 + Range: 1 + Slots: 2 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 14 + Refineable: true + - Id: 1906 + AegisName: Lute_ + Name: Lute + Type: Weapon + SubType: Musical + Buy: 24500 + Weight: 500 + Attack: 105 + Range: 1 + Slots: 3 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 14 + Refineable: true + - Id: 1907 + AegisName: Guitar + Name: Guitar + Type: Weapon + SubType: Musical + Buy: 47000 + Weight: 900 + Attack: 142 + Range: 1 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + - Id: 1908 + AegisName: Guitar_ + Name: Guitar + Type: Weapon + SubType: Musical + Buy: 47000 + Weight: 900 + Attack: 142 + Range: 1 + Slots: 1 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + - Id: 1909 + AegisName: Harp + Name: Harp + Type: Weapon + SubType: Musical + Buy: 62000 + Weight: 900 + Attack: 114 + Range: 1 + Slots: 1 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + Script: | + bonus bInt,2; + - Id: 1910 + AegisName: Harp_ + Name: Harp + Type: Weapon + SubType: Musical + Buy: 62000 + Weight: 900 + Attack: 114 + Range: 1 + Slots: 2 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + Script: | + bonus bInt,2; + - Id: 1911 + AegisName: Guh_Moon_Goh + Name: Gumoongoh + Type: Weapon + SubType: Musical + Buy: 54000 + Weight: 1300 + Attack: 126 + Range: 1 + Slots: 1 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + - Id: 1912 + AegisName: Guh_Moon_Goh_ + Name: Gumoongoh + Type: Weapon + SubType: Musical + Buy: 54000 + Weight: 1300 + Attack: 126 + Range: 1 + Slots: 2 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + - Id: 1913 + AegisName: Electronic_Guitar + Name: Electric Guitar + Type: Weapon + SubType: Musical + Buy: 20 + Weight: 1800 + Attack: 110 + Range: 1 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 70 + Refineable: true + Script: | + skill "WZ_JUPITEL",1; bonus3 bAutoSpell,"WZ_JUPITEL",1,100; bonus bAtkEle,Ele_Wind; bonus bInt,2; bonus bAgi,1; + - Id: 1914 + AegisName: Guitar_Of_Passion + Name: Burning Passion Guitar + Type: Weapon + SubType: Musical + Buy: 20 + Weight: 900 + Attack: 110 + Range: 1 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + Script: | + bonus bAtkEle,Ele_Fire; + - Id: 1915 + AegisName: Guitar_Of_Blue_Solo + Name: Loner's Guitar + Type: Weapon + SubType: Musical + Buy: 20 + Weight: 900 + Attack: 110 + Range: 1 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + Script: | + bonus bAtkEle,Ele_Water; + - Id: 1916 + AegisName: Guitar_Of_Vast_Land + Name: Green Acre Guitar + Type: Weapon + SubType: Musical + Buy: 20 + Weight: 900 + Attack: 110 + Range: 1 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + Script: | + bonus bAtkEle,Ele_Earth; + - Id: 1917 + AegisName: Guitar_Of_Gentle_Breeze + Name: Gentle Breeze Guitar + Type: Weapon + SubType: Musical + Buy: 20 + Weight: 900 + Attack: 110 + Range: 1 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + Script: | + bonus bAtkEle,Ele_Wind; + - Id: 1918 + AegisName: Oriental_Lute + Name: Oriental Lute + Type: Weapon + SubType: Musical + Buy: 20 + Weight: 1200 + Attack: 150 + Range: 1 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 65 + Refineable: true + Script: | + bonus2 bSkillAtk,"CG_ARROWVULCAN",10; bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10; + - Id: 1919 + AegisName: Base_Guitar + Name: Bass Guitar + Type: Weapon + SubType: Musical + Buy: 20 + Weight: 1500 + Attack: 130 + Range: 1 + Slots: 1 + Jobs: + BardDancer: true + Classes: + Upper: true + Third_Upper: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bSPGainValue,3; bonus4 bAutoSpellWhenHit,"WZ_HEAVENDRIVE",3,30,1; bonus3 bAutoSpell,"NPC_WIDECONFUSE",2,100; + - Id: 1920 + AegisName: Berserk_Guitar + Name: Berserk Guitar + Type: Weapon + SubType: Musical + Buy: 20 + Weight: 1800 + Attack: 10 + Range: 1 + Jobs: + BardDancer: true + Classes: + Upper: true + Third_Upper: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bAspdRate,100; bonus bHPrecovRate,-100; bonus2 bHPLossRate,50,5000; bonus bDex,-readparam(bDex); + - Id: 1921 + AegisName: Guh_Moon_Gom + Name: Gun Moon Gom + Type: Weapon + SubType: Musical + Buy: 20 + Attack: 120 + Range: 1 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,50; + - Id: 1922 + AegisName: Oriental_Lute_ + Name: Oriental Lute + Type: Weapon + SubType: Musical + Buy: 20 + Weight: 1200 + Attack: 150 + Range: 1 + Slots: 2 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 65 + Refineable: true + Script: | + bonus2 bSkillAtk,"CG_ARROWVULCAN",10; bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10; + - Id: 1923 + AegisName: BF_Instrument1 + Name: Valorous Battlefield Guitar + Type: Weapon + SubType: Musical + Buy: 20 + Attack: 50 + Range: 1 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; + - Id: 1924 + AegisName: BF_Instrument2 + Name: Brave Battlefield Guitar + Type: Weapon + SubType: Musical + Buy: 20 + Attack: 50 + Range: 1 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bSkillAtk,"CG_ARROWVULCAN",20; bonus bUnbreakableWeapon; + - Id: 1925 + AegisName: Cello + Name: Cello + Type: Weapon + SubType: Musical + Buy: 20 + Weight: 700 + Attack: 110 + Range: 1 + Slots: 3 + Jobs: + BardDancer: true + Classes: + Upper: true + Third_Upper: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bAgi,2; bonus bDex,3; bonus2 bAddSkillBlow,"BA_MUSICALSTRIKE",2; bonus2 bAddSkillBlow,"CG_ARROWVULCAN",3; + - Id: 1926 + AegisName: Harp_Of_Nepenthes + Name: Harp of Nepenthes + Type: Weapon + SubType: Musical + Buy: 20 + Weight: 1000 + Attack: 120 + Range: 1 + Slots: 2 + Jobs: + BardDancer: true + Classes: + Upper: true + Third_Upper: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 60 + Refineable: true + Script: | + bonus bInt,2; bonus3 bAddEffOnSkill,"BA_MUSICALSTRIKE",Eff_Stun,(getrefine()>=9?2000:1000); + - Id: 1927 + AegisName: Krieger_Instrument1 + Name: Glorious Guitar + Type: Weapon + SubType: Musical + Buy: 20 + Attack: 50 + Range: 1 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) bonus4 bAutoSpellOnSkill,"CG_ARROWVULCAN","CG_TAROTCARD",5,100; + - Id: 1928 + AegisName: Berserk_Guitar_I + Name: Spirited Guitar + Type: Weapon + SubType: Musical + Attack: 40 + Range: 1 + Jobs: + BardDancer: true + Classes: + Upper: true + Third_Upper: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 4 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAspdRate,100; bonus bHPrecovRate,-100; bonus2 bHPLossRate,50,5000; bonus bDex,-readparam(bDex); + - Id: 1929 + AegisName: Guitar_C + Name: Guitar + Type: Weapon + SubType: Musical + Attack: 177 + Range: 1 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddSize,Size_All,40; + - Id: 1930 + AegisName: Green_Whistle + Name: Green Whistle + Type: Weapon + SubType: Musical + Buy: 20 + Weight: 800 + Attack: 170 + MagicAttack: 50 + Range: 1 + Slots: 1 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 102 + Refineable: true + Script: | + .@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; + - Id: 1931 + AegisName: P_String_Inst1 + Name: Eden Guitar I + Type: Weapon + SubType: Musical + Attack: 125 + Range: 1 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 60 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1932 + AegisName: TE_Woe_Guitar + Name: TE Woe Guitar + Type: Weapon + SubType: Musical + Attack: 100 + Range: 1 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 40 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Poison,3000; + - Id: 1933 + AegisName: Thanos_Violin + Name: Thanos Violin + Type: Weapon + SubType: Musical + Buy: 10 + Weight: 2000 + Attack: 200 + MagicAttack: 130 + Range: 1 + Slots: 1 + Jobs: + BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 120 + Refineable: true + Script: | + bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus bLongAtkRate,20; bonus2 bHPLossRate,100,10000; + UnEquipScript: | + heal -1000,0; + - Id: 1934 + AegisName: Contabass + Name: Contrabass + Type: Weapon + SubType: Musical + Buy: 20 + Weight: 250 + Attack: 180 + MagicAttack: 120 + Range: 1 + Slots: 2 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 130 + Refineable: true + Script: | + bonus2 bSkillCooldown,"WM_RANDOMIZESPELL",-20; + - Id: 1935 + AegisName: Ukulele_Of_Newoz + Name: Oz's New Ukulele + Type: Weapon + SubType: Musical + Buy: 20 + Weight: 2000 + Attack: 160 + Range: 1 + Slots: 2 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 130 + Refineable: true + Script: | + bonus2 bSkillUseSP,"MI_RUSH_WINDMILL",20; + - Id: 1936 + AegisName: Ru_Blue_Violin + Name: Blue Violin + Type: Weapon + SubType: Musical + Buy: 10 + Weight: 1500 + Attack: 180 + Range: 2 + Slots: 1 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bDex,5; bonus bVit,5; + - Id: 1937 + AegisName: Ru_Gold_Violin + Name: Ru Gold Violin + Type: Weapon + SubType: Musical + Weight: 1500 + Attack: 180 + Range: 1 + Slots: 2 + Jobs: + BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 120 + Refineable: true + Script: | + bonus bDex,8; bonus bVit,8; + - Id: 1938 + AegisName: Infinity_Violin + Name: Infinity Violin + Type: Weapon + SubType: Musical + Buy: 10 + Weight: 500 + Attack: 150 + Range: 2 + Slots: 1 + Jobs: + BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1939 + AegisName: Crimson_Violin + Name: Crimson Violin + Type: Weapon + SubType: Musical + Buy: 20 + Weight: 800 + Attack: 80 + Range: 2 + Slots: 2 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); + - Id: 1940 + AegisName: Trumpet_Shell + Name: Trumpet Shell + Type: Weapon + SubType: Musical + Weight: 600 + Attack: 125 + Range: 1 + Slots: 1 + Jobs: + BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 130 + Refineable: true + Script: | + .@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; + - Id: 1941 + AegisName: Unity_Violin + Name: Unity Violin + Type: Weapon + SubType: Musical + Buy: 20 + Weight: 400 + Attack: 76 + Range: 2 + Slots: 1 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bBaseAtk,pow(getrefine(),2)*125/100; + - Id: 1942 + AegisName: Requiem_Violin + Name: Requiem Violin + Type: Weapon + SubType: Musical + Buy: 20 + Weight: 500 + Attack: 160 + MagicAttack: 120 + Range: 1 + Jobs: + BardDancer: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); .@b = 40; bonus bUnbreakableWeapon; if(.@r>=5){ .@b += (.@r-5)*15+20; } if(.@r>=7) bonus2 bSkillAtk,"CG_ARROWVULCAN",200; bonus2 bAddRace2,RC2_BioLab,.@b; + - Id: 1944 + AegisName: Hippie_Guitar + Name: Hippie Guitar + Type: Weapon + SubType: Musical + Weight: 1000 + Attack: 140 + Range: 2 + Slots: 2 + Jobs: + BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); .@lvl = getskilllv("BA_MUSICALLESSON"); bonus bAspdRate,.@lvl; if (.@r>=7) bonus bBaseAtk,(5*.@lvl); if (.@r>=9) bonus bAspd,1; + - Id: 1950 + AegisName: Rope + Name: Rope + Type: Weapon + SubType: Whip + Buy: 2500 + Weight: 400 + Attack: 45 + Range: 2 + Slots: 3 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 3 + Refineable: true + - Id: 1951 + AegisName: Rope_ + Name: Rope + Type: Weapon + SubType: Whip + Buy: 2500 + Weight: 400 + Attack: 45 + Range: 2 + Slots: 4 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 3 + Refineable: true + - Id: 1952 + AegisName: Line + Name: Whip + Type: Weapon + SubType: Whip + Buy: 12000 + Weight: 300 + Attack: 80 + Range: 2 + Slots: 2 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 16 + Refineable: true + - Id: 1953 + AegisName: Line_ + Name: Whip + Type: Weapon + SubType: Whip + Buy: 12000 + Weight: 300 + Attack: 80 + Range: 2 + Slots: 3 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 16 + Refineable: true + - Id: 1954 + AegisName: Wire + Name: Wire Whip + Type: Weapon + SubType: Whip + Buy: 17500 + Weight: 1000 + Attack: 95 + Range: 2 + Slots: 2 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 16 + Refineable: true + - Id: 1955 + AegisName: Wire_ + Name: Wire Whip + Type: Weapon + SubType: Whip + Buy: 17500 + Weight: 1000 + Attack: 95 + Range: 2 + Slots: 3 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 16 + Refineable: true + - Id: 1956 + AegisName: Rante + Name: Rante Whip + Type: Weapon + SubType: Whip + Buy: 32000 + Weight: 900 + Attack: 135 + Range: 2 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 30 + Refineable: true + - Id: 1957 + AegisName: Rante_ + Name: Rante Whip + Type: Weapon + SubType: Whip + Buy: 32000 + Weight: 900 + Attack: 135 + Range: 2 + Slots: 1 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 30 + Refineable: true + - Id: 1958 + AegisName: Tail + Name: Tail Whip + Type: Weapon + SubType: Whip + Buy: 41000 + Weight: 700 + Attack: 105 + Range: 2 + Slots: 1 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 30 + Refineable: true + Script: | + bonus bLuk,3; + - Id: 1959 + AegisName: Tail_ + Name: Tail Whip + Type: Weapon + SubType: Whip + Buy: 41000 + Weight: 700 + Attack: 105 + Range: 2 + Slots: 2 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 30 + Refineable: true + Script: | + bonus bLuk,3; + - Id: 1960 + AegisName: Whip + Name: Whip + Type: Weapon + SubType: Whip + Buy: 38000 + Weight: 700 + Attack: 120 + Range: 2 + Slots: 1 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 30 + Refineable: true + - Id: 1961 + AegisName: Whip_ + Name: Whip + Type: Weapon + SubType: Whip + Buy: 38000 + Weight: 700 + Attack: 120 + Range: 2 + Slots: 2 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 30 + Refineable: true + - Id: 1962 + AegisName: Lariat + Name: Lariat Whip + Type: Weapon + SubType: Whip + Buy: 20 + Weight: 400 + Attack: 100 + Range: 2 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 44 + Refineable: true + Script: | + bonus bDex,5; bonus bAgi,1; + - Id: 1963 + AegisName: Rapture_Rose + Name: Rapture Rose + Type: Weapon + SubType: Whip + Buy: 20 + Weight: 300 + Attack: 115 + Range: 2 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 44 + Refineable: true + Script: | + bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,5000; + - Id: 1964 + AegisName: Chemeti + Name: Chemeti Whip + Type: Weapon + SubType: Whip + Buy: 20 + Weight: 700 + Attack: 135 + Range: 2 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 44 + Refineable: true + Script: | + bonus bCritical,5; bonus bFlee,10; bonus bFlee2,2; + - Id: 1965 + AegisName: Whip_Of_Red_Flame + Name: Red Flame Whip + Type: Weapon + SubType: Whip + Buy: 20 + Weight: 700 + Attack: 110 + Range: 2 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 30 + Refineable: true + Script: | + bonus bAtkEle,Ele_Fire; + - Id: 1966 + AegisName: Whip_Of_Ice_Piece + Name: Icicle Whip + Type: Weapon + SubType: Whip + Buy: 20 + Weight: 700 + Attack: 110 + Range: 2 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 30 + Refineable: true + Script: | + bonus bAtkEle,Ele_Water; + - Id: 1967 + AegisName: Whip_Of_Earth + Name: Gaia Whip + Type: Weapon + SubType: Whip + Buy: 20 + Weight: 700 + Attack: 110 + Range: 2 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 30 + Refineable: true + Script: | + bonus bAtkEle,Ele_Earth; + - Id: 1968 + AegisName: Jump_Rope + Name: Skipping Rope + Type: Weapon + SubType: Whip + Buy: 20 + Weight: 400 + Attack: 120 + Range: 2 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 30 + Refineable: true + Script: | + bonus bCritical,20; + - Id: 1969 + AegisName: Bladed_Whip + Name: Blade Whip + Type: Weapon + SubType: Whip + Buy: 20 + Weight: 1200 + Attack: 140 + Range: 2 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 30 + Refineable: true + Script: | + bonus2 bAddEff,Eff_Bleeding,300; + - Id: 1970 + AegisName: Queen's_Whip + Name: Queen's Whip + Type: Weapon + SubType: Whip + Buy: 20 + Weight: 1100 + Attack: 150 + Range: 2 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 65 + Refineable: true + Script: | + bonus2 bSkillAtk,"CG_ARROWVULCAN",10; bonus2 bSkillAtk,"DC_THROWARROW",10; + - Id: 1971 + AegisName: Electric_Wire + Name: Electric Wire + Type: Weapon + SubType: Whip + Buy: 20 + Weight: 700 + Attack: 110 + Range: 2 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 30 + Refineable: true + Script: | + bonus bAtkEle,Ele_Wind; + - Id: 1972 + AegisName: Electric_Eel + Name: Electric Eel + Type: Weapon + SubType: Whip + Buy: 20 + Weight: 2000 + Attack: 100 + Range: 2 + Slots: 2 + Jobs: + BardDancer: true + Classes: + Upper: true + Third_Upper: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bAtkEle,Ele_Wind; bonus bInt,2; bonus bAgi,2; bonus3 bAutoSpell,"WZ_JUPITEL",3,20; .@r = getrefine(); if(.@r>0) bonus3 bAutoSpell,"CG_ARROWVULCAN",.@r,50; + - Id: 1973 + AegisName: Sea_Witch_Foot + Name: Sea Witch's Foot + Type: Weapon + SubType: Whip + Buy: 20 + Weight: 1500 + Attack: 110 + Range: 2 + Slots: 1 + Jobs: + BardDancer: true + Classes: + Upper: true + Third_Upper: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bSPGainValue,5; bonus4 bAutoSpellWhenHit,"WZ_FROSTNOVA",3,50,1; bonus3 bAutoSpell,"NPC_WIDESILENCE",2,100; + - Id: 1974 + AegisName: Carrot_Whip + Name: Carrot Whip + Type: Weapon + SubType: Whip + Buy: 20 + Weight: 1300 + Attack: 185 + Range: 2 + Jobs: + BardDancer: true + Classes: + Upper: true + Third_Upper: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 70 + Refineable: true + Script: | + .@r = getrefine(); if(.@r>0) bonus3 bAutoSpell,"AL_INCAGI",min(.@r,10),10; + - Id: 1975 + AegisName: Queen_Is_Whip + Name: Queen Is Whip + Type: Weapon + SubType: Whip + Buy: 20 + Attack: 120 + Range: 2 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,50; + - Id: 1976 + AegisName: Queen's_Whip_ + Name: Queen's Whip + Type: Weapon + SubType: Whip + Buy: 20 + Weight: 1100 + Attack: 150 + Range: 2 + Slots: 2 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 65 + Refineable: true + Script: | + bonus2 bSkillAtk,"CG_ARROWVULCAN",10; bonus2 bSkillAtk,"DC_THROWARROW",10; + - Id: 1977 + AegisName: BF_Whip1 + Name: Valorous Battle Lariat + Type: Weapon + SubType: Whip + Buy: 20 + Attack: 50 + Range: 2 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; + - Id: 1978 + AegisName: BF_Whip2 + Name: Brave Battle Lariat + Type: Weapon + SubType: Whip + Buy: 20 + Attack: 50 + Range: 2 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bSkillAtk,"CG_ARROWVULCAN",20; bonus bUnbreakableWeapon; + - Id: 1979 + AegisName: Stem_Of_Nepenthes + Name: Stem of Nepenthes + Type: Weapon + SubType: Whip + Buy: 20 + Weight: 1000 + Attack: 120 + Range: 2 + Slots: 2 + Jobs: + BardDancer: true + Classes: + Upper: true + Third_Upper: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 60 + Refineable: true + Script: | + bonus bInt,2; bonus3 bAddEffOnSkill,"DC_THROWARROW",Eff_Freeze,(getrefine()>=9?2000:1000); + - Id: 1980 + AegisName: Whip_Of_Balance + Name: Whip of Balance + Type: Weapon + SubType: Whip + Buy: 20 + Weight: 700 + Attack: 110 + Range: 2 + Slots: 3 + Jobs: + BardDancer: true + Classes: + Upper: true + Third_Upper: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bAgi,2; bonus bDex,3; bonus2 bAddSkillBlow,"DC_THROWARROW",2; bonus2 bAddSkillBlow,"CG_ARROWVULCAN",3; + - Id: 1981 + AegisName: Krieger_Whip1 + Name: Glorious Lariat + Type: Weapon + SubType: Whip + Buy: 20 + Attack: 50 + Range: 2 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) bonus4 bAutoSpellOnSkill,"CG_ARROWVULCAN","CG_TAROTCARD",5,100; + - Id: 1982 + AegisName: Phenomena_Whip + Name: Phenomena Whip + Type: Weapon + SubType: Whip + Buy: 20 + Attack: 160 + Range: 2 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 4 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,2; bonus2 bSkillAtk,"DC_THROWARROW",25; + - Id: 1983 + AegisName: Rante_C + Name: Rante Whip + Type: Weapon + SubType: Whip + Attack: 170 + Range: 2 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddSize,Size_All,40; + - Id: 1984 + AegisName: Stem_Whip + Name: Stem Whip + Type: Weapon + SubType: Whip + Buy: 20 + Weight: 800 + Attack: 170 + MagicAttack: 50 + Range: 1 + Slots: 1 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 102 + Refineable: true + Script: | + .@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; + - Id: 1985 + AegisName: Rosebine + Name: Rosebine + Type: Weapon + SubType: Whip + Buy: 20 + Weight: 1000 + Attack: 100 + MagicAttack: 130 + Range: 1 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 110 + Refineable: true + Script: | + bonus bInt,2; bonus bAgi,-2; bonus3 bAutoSpell,"WM_VOICEOFSIREN",1,20; + - Id: 1986 + AegisName: P_Tail1 + Name: Eden Tail I + Type: Weapon + SubType: Whip + Attack: 125 + Range: 2 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 60 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1987 + AegisName: TE_Woe_Rope + Name: TE Woe Rope + Type: Weapon + SubType: Whip + Attack: 100 + Range: 2 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 40 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Blind,3000; + - Id: 1988 + AegisName: Thanos_Whip + Name: Thanos Whip + Type: Weapon + SubType: Whip + Buy: 10 + Weight: 2200 + Attack: 200 + MagicAttack: 130 + Range: 2 + Slots: 1 + Jobs: + BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 120 + Refineable: true + Script: | + bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus bLongAtkRate,20; bonus2 bHPLossRate,100,10000; + UnEquipScript: | + heal -1000,0; + - Id: 1989 + AegisName: Gymnastics_Ribbon + Name: Rhythmic Gymnastics Ribbon + Type: Weapon + SubType: Whip + Buy: 20 + Weight: 300 + Attack: 150 + MagicAttack: 120 + Range: 2 + Slots: 2 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 130 + Refineable: true + Script: | + bonus bAspdRate,20; + - Id: 1990 + AegisName: Floral_Mic_Of_Igu + Name: Bloody Floral Decoration Microphone + Type: Weapon + SubType: Whip + Buy: 20 + Weight: 1000 + Attack: 160 + Range: 2 + Slots: 2 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 130 + Refineable: true + Script: | + bonus2 bSkillUseSP,"CG_MOONLIT",20; + - Id: 1991 + AegisName: Ru_Blue_Whip + Name: Blue Whip + Type: Weapon + SubType: Whip + Buy: 10 + Weight: 1500 + Attack: 180 + Range: 2 + Slots: 1 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bDex,5; bonus bVit,5; + - Id: 1992 + AegisName: Ru_Gold_Whip + Name: Ru Gold Whip + Type: Weapon + SubType: Whip + Weight: 1500 + Attack: 180 + Range: 2 + Slots: 2 + Jobs: + BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 120 + Refineable: true + Script: | + bonus bDex,8; bonus bVit,8; + - Id: 1994 + AegisName: Infinity_Whip + Name: Infinity Whip + Type: Weapon + SubType: Whip + Buy: 10 + Weight: 500 + Attack: 150 + Range: 2 + Slots: 1 + Jobs: + BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 1995 + AegisName: Crimson_Whip + Name: Crimson Whip + Type: Weapon + SubType: Whip + Buy: 20 + Weight: 800 + Attack: 80 + Range: 2 + Slots: 2 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); + - Id: 1996 + AegisName: Wire_of_Vicious_Mind + Name: Wire of Vicious Mind + Type: Weapon + SubType: Whip + Buy: 20 + Weight: 1300 + Attack: 130 + MagicAttack: 50 + Range: 2 + Slots: 1 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 160 + Refineable: true + Script: | + bonus bAtk,pow(min(getrefine(),15),2); bonus bMatk,pow(min(getrefine(),15),2)/2; + - Id: 1997 + AegisName: Unity_Whip + Name: Unity Whip + Type: Weapon + SubType: Whip + Buy: 20 + Weight: 76 + Attack: 40 + Range: 2 + Slots: 1 + Jobs: + BardDancer: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bBaseAtk,pow(getrefine(),2)*125/100; + - Id: 2000 + AegisName: Destruction_Rod + Name: Staff of Destruction + Type: Weapon + SubType: 2hStaff + Buy: 20 + Weight: 2500 + Attack: 130 + MagicAttack: 280 + Range: 1 + Slots: 1 + Jobs: + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Script: | + .@r = getrefine; bonus bMatkRate,.@r/2; bonus bInt,3; bonus bAgi,10; bonus bUseSPrate,(.@r*2); bonus3 bAutoSpellWhenHit,"WZ_JUPITEL",5,(.@r*20); bonus2 bFixedCastrate,"HW_MAGICPOWER",-50; + - Id: 2001 + AegisName: Divine_Cross + Name: Divine Cross + Type: Weapon + SubType: 2hStaff + Buy: 20 + Weight: 1500 + Attack: 120 + MagicAttack: 210 + Range: 1 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bAtkEle,Ele_Holy; bonus bDex,4; bonus2 bSubRace,RC_Demon,15; bonus2 bSubRace,RC_Undead,15; + - Id: 2002 + AegisName: Krieger_Twohand_Staff1 + Name: Glorious Destruction Staff + Type: Weapon + SubType: 2hStaff + Buy: 20 + Attack: 70 + MagicAttack: 210 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + Wizard: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMatkRate,.@r; bonus2 bMagicAddRace,RC_DemiHuman,15; bonus2 bMagicAddRace,RC_Player_Human,15; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; if(.@r>5) { bonus2 bMagicAddRace,RC_DemiHuman,(min(14,.@r)-5)*2; bonus2 bMagicAddRace,RC_Player_Human,(min(14,.@r)-5)*2; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5+(min(14,.@r)-5)*2; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,5+(min(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; } + - Id: 2003 + AegisName: Destruction_Rod_M + Name: Staff of Destruction + Type: Weapon + SubType: 2hStaff + Buy: 20 + Weight: 2500 + Attack: 130 + MagicAttack: 280 + Range: 1 + Slots: 1 + Jobs: + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@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; + - Id: 2004 + AegisName: Kronos + Name: Kronos + Type: Weapon + SubType: 2hStaff + Buy: 20 + Weight: 1000 + Attack: 30 + MagicAttack: 240 + Range: 1 + Jobs: + Mage: true + Sage: true + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 50 + Refineable: true + Script: | + .@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; }"; + - Id: 2005 + AegisName: Dea_Staff + Name: Dea Staff + Type: Weapon + SubType: 2hStaff + Buy: 20 + Weight: 1000 + Attack: 30 + MagicAttack: 220 + Range: 1 + Slots: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 50 + Refineable: true + Script: | + 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; }"; + - Id: 2006 + AegisName: G_Staff_Of_Light + Name: Staff Of Light + Type: Weapon + SubType: 2hStaff + Buy: 20 + Weight: 1900 + Attack: 80 + MagicAttack: 150 + Range: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 60 + Refineable: true + Script: | + bonus bAtkEle,Ele_Holy; bonus bInt,6; + - Id: 2007 + AegisName: Golden_Rod_Staff + Name: Golden Rod Staff + Type: Weapon + SubType: 2hStaff + Buy: 20 + Weight: 900 + Attack: 30 + MagicAttack: 230 + Range: 1 + Slots: 2 + Jobs: + Wizard: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bAtkEle,Ele_Wind; bonus bInt,3; bonus2 bSkillAtk,"WZ_JUPITEL",12; + - Id: 2008 + AegisName: Aqua_Staff + Name: Aqua Staff + Type: Weapon + SubType: 2hStaff + Buy: 20 + Weight: 900 + Attack: 30 + MagicAttack: 230 + Range: 1 + Slots: 2 + Jobs: + Wizard: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bAtkEle,Ele_Water; bonus bInt,3; bonus2 bSkillAtk,"MG_COLDBOLT",12; bonus2 bSkillAtk,"MG_FROSTDIVER",12; + - Id: 2009 + AegisName: Crimson_Staff + Name: Crimson Staff + Type: Weapon + SubType: 2hStaff + Buy: 20 + Weight: 900 + Attack: 30 + MagicAttack: 230 + Range: 1 + Slots: 2 + Jobs: + Wizard: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bAtkEle,Ele_Fire; bonus bInt,3; bonus2 bSkillAtk,"MG_FIREBOLT",10; bonus2 bSkillAtk,"MG_FIREBALL",10; + - Id: 2010 + AegisName: Forest_Staff + Name: Forest Staff + Type: Weapon + SubType: 2hStaff + Buy: 20 + Weight: 900 + Attack: 30 + MagicAttack: 230 + Range: 1 + Slots: 2 + Jobs: + Wizard: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bAtkEle,Ele_Earth; bonus bInt,3; bonus2 bSkillAtk,"WZ_EARTHSPIKE",10; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",10; + - Id: 2011 + AegisName: Golden_Rod_Staff2 + Name: Empowered Golden Rod Staff + Type: Weapon + SubType: 2hStaff + Buy: 20 + Weight: 900 + Attack: 30 + MagicAttack: 270 + Range: 1 + Slots: 1 + Jobs: + Wizard: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 130 + Refineable: true + Script: | + bonus bAtkEle,Ele_Wind; bonus bInt,5; bonus2 bSkillAtk,"WZ_JUPITEL",30; + - Id: 2012 + AegisName: Aqua_Staff2 + Name: Empowered Aqua Staff + Type: Weapon + SubType: 2hStaff + Buy: 20 + Weight: 900 + Attack: 30 + MagicAttack: 270 + Range: 1 + Slots: 1 + Jobs: + Wizard: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 130 + Refineable: true + Script: | + bonus bAtkEle,Ele_Water; bonus bInt,5; bonus2 bSkillAtk,"MG_COLDBOLT",30; bonus2 bSkillAtk,"MG_FROSTDIVER",30; + - Id: 2013 + AegisName: Crimson_Staff2 + Name: Empowered Crimson Staff + Type: Weapon + SubType: 2hStaff + Buy: 20 + Weight: 900 + Attack: 30 + MagicAttack: 270 + Range: 1 + Slots: 1 + Jobs: + Wizard: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 130 + Refineable: true + Script: | + bonus bAtkEle,Ele_Fire; bonus bInt,5; bonus2 bSkillAtk,"MG_FIREBOLT",30; bonus2 bSkillAtk,"MG_FIREBALL",30; + - Id: 2014 + AegisName: Forest_Staff2 + Name: Empowered Forest Staff + Type: Weapon + SubType: 2hStaff + Buy: 20 + Weight: 900 + Attack: 30 + MagicAttack: 270 + Range: 1 + Slots: 1 + Jobs: + Wizard: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 130 + Refineable: true + Script: | + bonus bAtkEle,Ele_Earth; bonus bInt,5; bonus2 bSkillAtk,"WZ_EARTHSPIKE",30; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",30; + - Id: 2015 + AegisName: Upg_Staff + Name: Upg Staff + Type: Weapon + SubType: 2hStaff + Buy: 20 + Weight: 1000 + Attack: 50 + MagicAttack: 70 + Range: 1 + Slots: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + Script: | + .@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); + - Id: 2016 + AegisName: Velum_Arc_Wand + Name: Vellum Arc Wand + Type: Weapon + SubType: 2hStaff + Buy: 20 + Weight: 800 + Attack: 110 + MagicAttack: 220 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 95 + Refineable: true + Script: | + bonus bUnbreakableWeapon; bonus2 bMagicAddRace,RC_Player_Human,25; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; .@r = getrefine(); if(.@r>5) { bonus2 bMagicAddRace,RC_Player_Human,15; } if(.@r>8) { bonus bVariableCastrate,-50; bonus bFixedCast,-200; } + - Id: 2017 + AegisName: Divine_Cross_ + Name: Divine Cross + Type: Weapon + SubType: 2hStaff + Buy: 20 + Weight: 1500 + Attack: 120 + MagicAttack: 210 + Range: 1 + Slots: 1 + Jobs: + Monk: true + Priest: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Holy; bonus bDex,4; bonus2 bSubRace,RC_Demon,15; bonus2 bSubRace,RC_Undead,15; + - Id: 2018 + AegisName: Metal_Staff + Name: Metal Staff + Type: Weapon + SubType: 2hStaff + Buy: 20 + Attack: 50 + MagicAttack: 70 + Range: 1 + Slots: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Novice: true + Priest: true + Sage: true + SoulLinker: true + SuperNovice: true + Wizard: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + if(BaseJob==Job_Wizard) bonus bMatk,15; else if(BaseJob==Job_Sage) bonus bMatk,10; bonus bMatk,(getrefine()*5); .@i = min(BaseLevel/10,12); if(.@i>2) bonus bMatk,((.@i-2)*5); + - Id: 2019 + AegisName: TE_Woe_Two_Hand_Staff + Name: TE Woe Two Hand Staff + Type: Weapon + SubType: 2hStaff + Attack: 50 + MagicAttack: 130 + Range: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Novice: true + Priest: true + Sage: true + SoulLinker: true + SuperNovice: true + Wizard: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 40 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bMagicAddRace,RC_Player_Human,20; bonus3 bAddEff,Eff_Stun,1000,ATF_MAGIC; bonus bHPRecovRate,5; bonus bSPRecovRate,5; + - Id: 2020 + AegisName: Jormungand + Name: Jormungand + Type: Weapon + SubType: 2hStaff + Buy: 10 + Weight: 3000 + Attack: 200 + MagicAttack: 280 + Jobs: + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 1 + Script: | + bonus bInt,20; bonus3 bAddEff,Eff_Poison,3000,ATF_MAGIC; bonus2 bAddEffWhenHit,Eff_DPoison,100; bonus bUnbreakableWeapon; + - Id: 2021 + AegisName: Ganbantein + Name: Ganbantein + Type: Weapon + SubType: Staff + Weight: 2000 + Attack: 100 + MagicAttack: 320 + Range: 1 + Jobs: + Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bInt,25; bonus bDex,25; bonus3 bAddEff,Eff_Poison,1000,ATF_MAGIC; bonus3 bAutoSpell,"AB_SILENTIUM",1,100; bonus bUnbreakableWeapon; + - Id: 2022 + AegisName: Staff_Of_Geffen + Name: Staff of Geffen + Type: Weapon + SubType: 2hStaff + Buy: 20 + Weight: 1000 + Attack: 100 + MagicAttack: 300 + Range: 1 + Slots: 1 + Jobs: + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 150 + Refineable: true + Script: | + bonus bInt,20; + - Id: 2023 + AegisName: Thanos_Rod + Name: Thanos Two-Handed Staff + Type: Weapon + SubType: 2hStaff + Buy: 10 + Weight: 1400 + Attack: 120 + MagicAttack: 250 + Range: 1 + Slots: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 120 + Refineable: true + Script: | + bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus bHealPower,18; bonus bMagicHPGainValue,500; bonus bMagicSPGainValue,50; bonus2 bHPLossRate,100,10000; + UnEquipScript: | + heal -1000,0; + - Id: 2024 + AegisName: Infinity_Two-handed_Stick + Name: Infinity Two-handed Stick + Type: Weapon + SubType: 2hStaff + Buy: 10 + Weight: 500 + Attack: 30 + MagicAttack: 170 + Slots: 1 + Jobs: + Sage: true + SoulLinker: true + Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 2025 + AegisName: Crimson_Two-Handed_Staff + Name: Crimson Two-Handed Staff + Type: Weapon + SubType: 2hStaff + Buy: 20 + Weight: 1000 + Attack: 100 + Range: 1 + Slots: 2 + Jobs: + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + .@r = getrefine(); bonus bInt,5; bonus bMatk,150+((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); + - Id: 2026 + AegisName: Staff_of_Vicious_Mind + Name: Staff of Vicious Mind + Type: Weapon + SubType: 2hStaff + Buy: 20 + Weight: 1000 + Attack: 100 + MagicAttack: 200 + Range: 1 + Slots: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 160 + Refineable: true + Script: | + bonus bMatk,pow(min(getrefine(),15),2); bonus bInt,6; bonus bUnbreakableWeapon; + - Id: 2027 + AegisName: Sunflower_Kid + Name: Sunflower Kid + Type: Weapon + SubType: 2hStaff + Buy: 10 + Weight: 1500 + Attack: 150 + MagicAttack: 320 + Slots: 2 + Jobs: + Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + bonus bInt,5; .@r = getrefine(); bonus bMatkRate,(.@r/2); bonus bDelayrate,(.@r*-1); bonus bUnbreakableWeapon; + - Id: 2030 + AegisName: Unity_Two-Handed_Staff + Name: Unity Two-Handed Staff + Type: Weapon + SubType: 2hStaff + Buy: 20 + Weight: 500 + Attack: 95 + MagicAttack: 135 + Range: 1 + Slots: 1 + Jobs: + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMatk,pow(getrefine(),2)*125/100; + - Id: 2032 + AegisName: Requiem_Wizardry_Staff + Name: Requiem Wizardry Staff + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 500 + Attack: 100 + MagicAttack: 230 + Range: 1 + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); .@b = 40; .@c = 5; if(.@r>=5){ .@b += (.@r-5)*15+20; .@c += .@r-5; } bonus2 bMagicAddRace2,RC2_BioLab,.@b; bonus2 bSubRace2,RC2_BioLab,.@c; bonus2 bIgnoreMdefRace2Rate,RC2_BioLab,(.@r-5)*10; + - Id: 2039 + AegisName: Illusion_Wizardry_Staff + Name: Illusion Wizardry Staff + Type: Weapon + SubType: 2hStaff + Weight: 2400 + Attack: 150 + MagicAttack: 250 + Range: 1 + Slots: 2 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Classes: + Upper: true + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Script: | + .@val = min(getrefine(),10)/2; bonus bInt,(6+.@val); bonus bDex,(2+.@val); + - Id: 2046 + AegisName: Novice_Warlock's_Staff + Name: Novice Warlock's Staff + Type: Weapon + SubType: 2hStaff + Attack: 70 + MagicAttack: 170 + Range: 1 + Slots: 1 + Jobs: + Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bMatkRate,5; .@r = getrefine(); if(.@r>=7){ bonus2 bSkillAtk,"WL_CRIMSONROCK",15; } + - Id: 2048 + AegisName: Aeon_Staff + Name: Aeon Staff + Type: Weapon + SubType: 2hStaff + Weight: 800 + Attack: 100 + MagicAttack: 200 + Range: 1 + Slots: 2 + Jobs: + Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus2 bSkillAtk,"WL_EARTHSTRAIN",12*(.@r/3); if(.@r>=9){ bonus bVariableCastrate,-10; } if (.@r>=11) { bonus2 bSkillCooldown,"WL_EARTHSTRAIN",-1000; } + - Id: 2049 + AegisName: Blue_Flame_Cane + Name: Blue Flame Cane + Type: Weapon + SubType: 2hStaff + Buy: 20 + Weight: 800 + Attack: 110 + MagicAttack: 300 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 175 + Refineable: true + Script: | + .@r = getrefine; bonus bInt,7; bonus bMatkRate,.@r/2; bonus bUnbreakableWeapon; if (.@r>=9) .@val = 15; else if (.@r>=7) .@val = 5; if (.@r>=11) bonus2 bSubSize,Size_All,20; if (.@r>=13) bonus bDelayrate,-15; bonus2 bMagicAtkEle,Ele_Fire,.@val; bonus2 bMagicAtkEle,Ele_Earth,.@val; bonus2 bMagicAtkEle,Ele_Water,.@val; bonus2 bMagicAtkEle,Ele_Holy,.@val; + - Id: 2051 + AegisName: Illusion_Survivor's_Staff + Name: Illusion Survivor's Staff + Type: Weapon + SubType: 2hStaff + Weight: 1200 + Attack: 100 + MagicAttack: 240 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 120 + Refineable: true + Script: | + .@r = getrefine(); bonus bDex,2; bonus bInt,2; bonus bMaxHP,600; bonus bUnbreakableWeapon; bonus bMatkRate,(.@r/2); if (.@r >= 7) { bonus2 bMagicAddSize,Size_Small,15; bonus2 bMagicAddSize,Size_Medium,15; if (.@r >= 9) { bonus2 bSubSize,Size_Small,15; bonus2 bSubSize,Size_Medium,15; if (.@r >= 11) { bonus2 bSubDefEle,Ele_Water,15; bonus2 bSubDefEle,Ele_Wind,15; bonus2 bSubDefEle,Ele_Earth,15; bonus2 bSubDefEle,Ele_Fire,15; } } } + - Id: 2053 + AegisName: Abyss_Staff + Name: Abyss Staff + Type: Weapon + SubType: 2hStaff + Weight: 2400 + Attack: 120 + MagicAttack: 270 + Range: 1 + Slots: 1 + Jobs: + Novice: true + Priest: true + SuperNovice: true + Wizard: true + Classes: + Upper: true + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 165 + Refineable: true + Script: | + bonus2 bSubRace,RC_Player_Human,30; .@r = getrefine(); bonus bHealPower,.@r*2; if(.@r>=7){ bonus2 bMagicAddClass,Class_All,5; bonus2 bSubRace,RC_Player_Human,5; } if(.@r>=9){ bonus2 bMagicAddClass,Class_All,5; bonus2 bSubRace,RC_Player_Human,5; } bonus bUnbreakableWeapon; + - Id: 2054 + AegisName: Sealed_Aeon_Staff + Name: Sealed Aeon Staff + Type: Weapon + SubType: 2hStaff + Attack: 100 + MagicAttack: 200 + Range: 1 + Slots: 2 + Jobs: + Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 99 + Refineable: true + Script: | + bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus2 bSkillAtk,"WL_EARTHSTRAIN",12*(.@r/3); if(.@r>=7){ bonus bVariableCastrate,-10; } if(.@r>=9){ bonus2 bSkillCooldown,"WL_EARTHSTRAIN",-1000; } + - Id: 2055 + AegisName: Staff_of_Miracle + Name: Staff of Miracle + Type: Weapon + SubType: 2hStaff + Buy: 20 + Weight: 1200 + Attack: 100 + MagicAttack: 270 + Range: 1 + Slots: 2 + Jobs: + Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Ghost,5; if (.@r >= 9) { bonus2 bSkillAtk,"MG_SOULSTRIKE",20; bonus2 bSkillAtk,"HW_NAPALMVULCAN",20; bonus2 bSkillAtk,"WL_SOULEXPANSION",20; } if (.@r >= 11) { bonus2 bSkillAtk,"MG_SOULSTRIKE",30; bonus2 bSkillAtk,"HW_NAPALMVULCAN",30; } + - Id: 2056 + AegisName: Gravitation_Staff + Name: Gravitation Staff + Type: Weapon + SubType: 2hStaff + Buy: 20 + Weight: 1300 + Attack: 110 + MagicAttack: 280 + Range: 1 + Slots: 2 + Jobs: + Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Neutral,5; if (.@r >= 9) { bonus2 bSkillAtk,"HW_GRAVITATION",30; bonus2 bSkillAtk,"WL_DRAINLIFE",30; } if (.@r >= 11) { bonus2 bSkillCooldown,"HW_GRAVITATION",-2000; } + - Id: 2057 + AegisName: Adorare_Staff + Name: Adorare Staff + Type: Weapon + SubType: 2hStaff + Buy: 20 + Weight: 1200 + Attack: 100 + MagicAttack: 240 + Range: 1 + Slots: 2 + Jobs: + Priest: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Holy,5; if (.@r >= 9) { bonus2 bSkillAtk,"AB_ADORAMUS",30; } if (.@r >= 11) { bonus2 bSubSize,Size_All,25; } + - Id: 2058 + AegisName: Detecting_Staff + Name: Detecting Staff + Type: Weapon + SubType: 2hStaff + Weight: 2000 + Attack: 180 + MagicAttack: 330 + Range: 1 + Slots: 2 + Jobs: + Priest: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,10; if (.@r >= 7) { bonus bMatk,60; bonus bVariableCastrate,-10; } if (.@r >= 9) { bonus2 bMagicAtkEle,Ele_Fire,15; autobonus "{ bonus2 bMagicAddSize,Size_All,20; }",10,10000,BF_MAGIC; } if (.@r >= 11) { bonus bDelayrate,-20; } + - Id: 2060 + AegisName: Royal_Magician_Staff + Name: Royal Magician Staff + Type: Weapon + SubType: 2hStaff + Weight: 1500 + Attack: 100 + MagicAttack: 270 + Range: 1 + Slots: 2 + Jobs: + Priest: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,5; bonus bMatk,5*.@r; if (.@r >= 9) { bonus2 bSkillAtk,"WL_CHAINLIGHTNING",20; bonus2 bSkillAtk,"WL_EARTHSTRAIN",20; } if (.@r >= 11) { bonus2 bMagicAddRace,RC_Undead,20; bonus2 bMagicAddRace,RC_Angel,20; } + - Id: 2101 + AegisName: Guard + Name: Guard + Type: Armor + Buy: 500 + Weight: 300 + Defense: 20 + Locations: + Left_Hand: true + Refineable: true + View: 1 + - Id: 2102 + AegisName: Guard_ + Name: Guard + Type: Armor + Buy: 500 + Weight: 300 + Defense: 20 + Slots: 1 + Locations: + Left_Hand: true + Refineable: true + View: 1 + - Id: 2103 + AegisName: Buckler + Name: Buckler + Type: Armor + Buy: 14000 + Weight: 600 + Defense: 40 + Jobs: + Acolyte: true + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Rogue: true + Swordman: true + Thief: true + Locations: + Left_Hand: true + Refineable: true + View: 2 + - Id: 2104 + AegisName: Buckler_ + Name: Buckler + Type: Armor + Buy: 14000 + Weight: 600 + Defense: 40 + Slots: 1 + Jobs: + Acolyte: true + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Rogue: true + Swordman: true + Thief: true + Locations: + Left_Hand: true + Refineable: true + View: 2 + - Id: 2105 + AegisName: Shield + Name: Shield + Type: Armor + Buy: 56000 + Weight: 1300 + Defense: 60 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Left_Hand: true + Refineable: true + View: 3 + - Id: 2106 + AegisName: Shield_ + Name: Shield + Type: Armor + Buy: 56000 + Weight: 1300 + Defense: 60 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Left_Hand: true + Refineable: true + View: 3 + - Id: 2107 + AegisName: Mirror_Shield + Name: Mirror Shield + Type: Armor + Buy: 60000 + Weight: 1000 + Defense: 45 + Jobs: + Crusader: true + Knight: true + StarGladiator: true + Swordman: true + Locations: + Left_Hand: true + Refineable: true + View: 4 + Script: | + bonus bMdef,5; + - Id: 2108 + AegisName: Mirror_Shield_ + Name: Mirror Shield + Type: Armor + Buy: 60000 + Weight: 1000 + Defense: 45 + Slots: 1 + Jobs: + Crusader: true + Knight: true + StarGladiator: true + Swordman: true + Locations: + Left_Hand: true + Refineable: true + View: 4 + Script: | + bonus bMdef,5; + - Id: 2109 + AegisName: Memorize_Book + Name: Memory Book + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 25 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Left_Hand: true + Refineable: true + View: 5 + Script: | + bonus bInt,1; bonus bMdef,2; + - Id: 2110 + AegisName: Holy_Guard + Name: Holy Guard + Type: Armor + Buy: 85000 + Weight: 1400 + Defense: 110 + Jobs: + Crusader: true + Locations: + Left_Hand: true + EquipLevelMin: 68 + View: 4 + Script: | + bonus bVit,2; bonus bMdef,2; + - Id: 2111 + AegisName: Herald_Of_GOD + Name: Sacred Mission + Type: Armor + Buy: 128000 + Weight: 1600 + Defense: 120 + Jobs: + Crusader: true + Locations: + Left_Hand: true + EquipLevelMin: 83 + Refineable: true + View: 4 + Script: | + bonus bVit,3; bonus bInt,2; bonus bMdef,3; bonus bUnbreakableShield; + - Id: 2112 + AegisName: Novice_Guard + Name: Novice Guard + Type: Armor + Buy: 1 + Weight: 1 + Defense: 20 + Jobs: + Novice: true + SuperNovice: true + Locations: + Left_Hand: true + View: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 2113 + AegisName: Novice_Shield + Name: Novice Shield + Type: Armor + Buy: 5000 + Weight: 1000 + Defense: 20 + Slots: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Left_Hand: true + EquipLevelMin: 40 + Refineable: true + View: 3 + Script: | + bonus2 bSubEle,Ele_All,20; bonus2 bSubEle,Ele_Neutral,-20; bonus2 bSubEle,Ele_Holy,-20; bonus2 bSubEle,Ele_Dark,-20; + - Id: 2114 + AegisName: Stone_Buckler + Name: Stone Buckler + Type: Armor + Buy: 30000 + Weight: 1500 + Defense: 45 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Left_Hand: true + EquipLevelMin: 65 + Refineable: true + View: 2 + Script: | + bonus2 bSubSize,Size_Large,5; + - Id: 2115 + AegisName: Valkyrja's_Shield + Name: Valkyrja's Shield + Type: Armor + Buy: 30000 + Weight: 500 + Defense: 80 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Left_Hand: true + EquipLevelMin: 65 + Refineable: true + View: 4 + Script: | + bonus2 bSubEle,Ele_Water,20; bonus2 bSubEle,Ele_Fire,20; bonus2 bSubEle,Ele_Dark,20; bonus2 bSubEle,Ele_Undead,20; bonus bMdef,5; + - Id: 2116 + AegisName: Angel's_Safeguard + Name: Angelic Guard + Type: Armor + Buy: 10000 + Weight: 400 + Defense: 30 + Slots: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Left_Hand: true + EquipLevelMin: 20 + Refineable: true + View: 1 + Script: | + bonus2 bSubRace,RC_Demon,5; + - Id: 2117 + AegisName: Arm_Guard + Name: Arm Guard + Type: Armor + Buy: 10000 + Weight: 150 + Defense: 50 + Jobs: + Ninja: true + Locations: + Left_Hand: true + EquipLevelMin: 20 + Refineable: true + View: 1 + - Id: 2118 + AegisName: Arm_Guard_ + Name: Arm Guard + Type: Armor + Buy: 10000 + Weight: 150 + Defense: 50 + Slots: 1 + Jobs: + Ninja: true + Locations: + Left_Hand: true + EquipLevelMin: 20 + Refineable: true + View: 1 + - Id: 2119 + AegisName: Improved_Arm_Guard + Name: Advanced Arm Guard + Type: Armor + Buy: 40000 + Weight: 150 + Defense: 45 + Jobs: + Ninja: true + Locations: + Left_Hand: true + EquipLevelMin: 50 + Refineable: true + View: 1 + Script: | + bonus bMdef,5; + - Id: 2120 + AegisName: Improved_Arm_Guard_ + Name: Advanced Arm Guard + Type: Armor + Buy: 40000 + Weight: 150 + Defense: 45 + Slots: 1 + Jobs: + Ninja: true + Locations: + Left_Hand: true + EquipLevelMin: 50 + Refineable: true + View: 1 + Script: | + bonus bMdef,5; + - Id: 2121 + AegisName: Memorize_Book_ + Name: Memory Book + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 25 + Slots: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Left_Hand: true + Refineable: true + View: 5 + Script: | + bonus bInt,1; bonus bMdef,2; + - Id: 2122 + AegisName: Platinum_Shield + Name: Platinum Shield + Type: Armor + Buy: 20 + Weight: 1200 + Defense: 95 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Third_Upper: true + Locations: + Left_Hand: true + EquipLevelMin: 68 + Refineable: true + View: 4 + Script: | + bonus bMdef,5; bonus2 bSubSize,Size_Medium,15; bonus2 bSubSize,Size_Large,15; bonus2 bSubRace,RC_Undead,10; bonus5 bAutoSpellWhenHit,"NPC_MAGICMIRROR",7,150,BF_MAGIC,0; + - Id: 2123 + AegisName: Orleans_Server + Name: Orleans's Server + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 75 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Third_Upper: true + Locations: + Left_Hand: true + EquipLevelMin: 55 + Refineable: true + View: 4 + Script: | + bonus bMdef,2; bonus bMagicDamageReturn,5; + - Id: 2124 + AegisName: Thorny_Buckler + Name: Thorny Buckler + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 85 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Third_Upper: true + Locations: + Left_Hand: true + EquipLevelMin: 55 + Refineable: true + View: 2 + Script: | + bonus bMdef,2; + - Id: 2125 + AegisName: Strong_Shield + Name: Strong Shield + Type: Armor + Buy: 20 + Weight: 2500 + Defense: 90 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Classes: + Upper: true + Third_Upper: true + Locations: + Left_Hand: true + EquipLevelMin: 75 + Refineable: true + View: 4 + Script: | + bonus bNoKnockback; 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; + - Id: 2126 + AegisName: Guyak_Shield + Name: Guyak Shield + Type: Armor + Buy: 20 + Weight: 700 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Left_Hand: true + EquipLevelMin: 1 + Refineable: true + View: 2 + Script: | + bonus bMdef,2; bonus bMagicDamageReturn,2; autobonus2 "{ bonus bShortWeaponDamageReturn,5; }",20,1000,BF_WEAPON,"{ specialeffect2 EF_REFLECTSHIELD; }"; + - Id: 2127 + AegisName: Secular_Mission + Name: Secular Mission + Type: Armor + Buy: 20 + Defense: 10 + Locations: + Left_Hand: true + View: 4 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bSubClass,Class_All,25; + - Id: 2128 + AegisName: Herald_Of_GOD_ + Name: Sacred Mission + Type: Armor + Buy: 128000 + Weight: 1600 + Defense: 120 + Slots: 1 + Jobs: + Crusader: true + Locations: + Left_Hand: true + EquipLevelMin: 83 + Refineable: true + View: 4 + Script: | + bonus bVit,3; bonus bInt,2; bonus bMdef,3; bonus bUnbreakableShield; + - Id: 2129 + AegisName: Exorcism_Bible + Name: Exorcism Bible + Type: Armor + Buy: 20 + Weight: 600 + Defense: 80 + Jobs: + Monk: true + Priest: true + Locations: + Left_Hand: true + EquipLevelMin: 50 + Refineable: true + View: 5 + Script: | + bonus bHPrecovRate,3; bonus bSPrecovRate,3; bonus bInt,1; + - Id: 2130 + AegisName: Cross_Shield + Name: Cross Shield + Type: Armor + Buy: 20 + Weight: 2000 + Defense: 130 + Slots: 1 + Jobs: + Crusader: true + Locations: + Left_Hand: true + EquipLevelMin: 80 + Refineable: true + View: 4 + Script: | + bonus bStr,1; bonus2 bSkillAtk,"PA_SHIELDCHAIN",30; bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",30; bonus bUseSPrate,10; + - Id: 2131 + AegisName: Magic_Study_Vol1 + Name: Magic Bible Vol1 + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 18 + Slots: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Left_Hand: true + EquipLevelMin: 70 + Refineable: true + View: 5 + Script: | + bonus bMdef,3; bonus bInt,2; bonus2 bAddEffWhenHit,Eff_Stun,1000; + - Id: 2132 + AegisName: Shelter_Resistance + Name: Shell Of Resistance + Type: Armor + Buy: 20 + Defense: 9 + Locations: + Left_Hand: true + View: 2 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bSubEle,Ele_All,20; bonus bShortWeaponDamageReturn,1; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bAllStats,1; } + - Id: 2133 + AegisName: Tournament_Shield + Name: Tournament Shield + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 105 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Classes: + Upper: true + Third_Upper: true + Locations: + Left_Hand: true + EquipLevelMin: 50 + Refineable: true + View: 4 + Script: | + bonus2 bAddClass,Class_All,1; if( Class == Job_Lord_Knight ) bonus bAspdRate,-5; + - Id: 2134 + AegisName: Shield_Of_Naga + Name: Shield of Naga + Type: Armor + Buy: 20 + Weight: 500 + Defense: 35 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Left_Hand: true + EquipLevelMin: 70 + Refineable: true + View: 2 + Script: | + .@r = getrefine(); bonus bMdef,3; if(.@r<11) { autobonus2 "{ bonus bShortWeaponDamageReturn,("+.@r+"*3); }",10,5000,BF_WEAPON,"{ specialeffect2 EF_GUARD; }"; } else { autobonus2 "{ bonus bShortWeaponDamageReturn,("+.@r+"*3); }",10,5000+(.@r/2*1000),BF_WEAPON,"{ specialeffect2 EF_GUARD; }"; } + - Id: 2135 + AegisName: Shadow_Guard + Name: Shadow Guard + Type: Armor + Buy: 20 + Weight: 800 + Defense: 52 + Slots: 1 + Jobs: + Rogue: true + Classes: + Upper: true + Third_Upper: true + Locations: + Left_Hand: true + EquipLevelMin: 70 + Refineable: true + View: 2 + - Id: 2136 + AegisName: Cracked_Buckler + Name: Cracked Buckler + Type: Armor + Defense: 5 + Locations: + Left_Hand: true + View: 2 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAgi,2; bonus2 bSubEle,Ele_Neutral,10; bonus3 bAutoSpellWhenHit,"PR_KYRIE",10,10; bonus bMdef,1; + - Id: 2137 + AegisName: Valkyrja's_Shield_C + Name: Neo Valkyrja's Shield + Type: Armor + Defense: 5 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Third_Upper: true + Locations: + Left_Hand: true + EquipLevelMin: 95 + View: 4 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bSubEle,Ele_Water,20; bonus2 bSubEle,Ele_Fire,20; bonus2 bSubEle,Ele_Dark,20; bonus2 bSubEle,Ele_Undead,20; bonus bMdef,5; + - Id: 2138 + AegisName: Bradium_Shield + Name: Bradium Shield + Type: Armor + Buy: 20 + Weight: 1800 + Defense: 98 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Left_Hand: true + EquipLevelMin: 65 + Refineable: true + View: 3 + Script: | + bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",60; bonus bAgi,-1; bonus bMaxHP,500; + - Id: 2139 + AegisName: Flame_Thrower + Name: Flame Thrower + Type: Armor + Buy: 20000 + Weight: 2000 + Defense: 60 + Jobs: + Blacksmith: true + Locations: + Left_Hand: true + EquipLevelMin: 99 + View: 1 + - Id: 2140 + AegisName: Energy_Rune_Guard + Name: Energy Rune Guard + Type: Armor + Buy: 20 + Defense: 70 + Slots: 1 + Jobs: + Knight: true + Locations: + Left_Hand: true + EquipLevelMin: 99 + Refineable: true + View: 4 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxSPrate,2; + - Id: 2141 + AegisName: Freyja_SShield7 + Name: Freyja Spirit Shield + Type: Armor + Weight: 300 + Defense: 5 + Locations: + Left_Hand: true + EquipLevelMin: 20 + View: 1 + Script: | + bonus2 bSubSize,Size_Medium,25; + - Id: 2142 + AegisName: Freyja_SShield30 + Name: Freyja Spirit Shield + Type: Armor + Weight: 300 + Defense: 5 + Locations: + Left_Hand: true + EquipLevelMin: 20 + View: 1 + Script: | + bonus2 bSubSize,Size_Medium,25; + - Id: 2143 + AegisName: Freyja_SShield60 + Name: Freyja Spirit Shield + Type: Armor + Weight: 300 + Defense: 5 + Locations: + Left_Hand: true + EquipLevelMin: 20 + View: 1 + Script: | + bonus2 bSubSize,Size_Medium,25; + - Id: 2144 + AegisName: Freyja_SShield90 + Name: Freyja Spirit Shield + Type: Armor + Weight: 300 + Defense: 5 + Locations: + Left_Hand: true + EquipLevelMin: 20 + View: 1 + Script: | + bonus2 bSubSize,Size_Medium,25; + - Id: 2145 + AegisName: Time_Keepr_Shield + Name: Time Keeper Shield + Type: Armor + Buy: 30000 + Defense: 20 + Locations: + Left_Hand: true + Refineable: true + View: 3 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,1; bonus2 bSubEle,Ele_Neutral,10; bonus2 bSubSize,Size_Medium,25; + - Id: 2146 + AegisName: Siver_Guard + Name: Silver Guard + Type: Armor + Buy: 12500 + Weight: 300 + Defense: 60 + Slots: 1 + Locations: + Left_Hand: true + EquipLevelMin: 22 + Refineable: true + View: 1 + - Id: 2147 + AegisName: Round_Buckler + Name: Round Buckleer + Type: Armor + Buy: 24000 + Weight: 600 + Defense: 90 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Third_Upper: true + Locations: + Left_Hand: true + EquipLevelMin: 22 + Refineable: true + View: 2 + - Id: 2148 + AegisName: Rotha_Shield + Name: Rosa Shield + Type: Armor + Buy: 56000 + Weight: 1300 + Defense: 130 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Left_Hand: true + EquipLevelMin: 100 + Refineable: true + View: 3 + - Id: 2149 + AegisName: Upg_Guard + Name: Upg Guard + Type: Armor + Buy: 20 + Weight: 150 + Defense: 25 + Slots: 1 + Locations: + Left_Hand: true + EquipLevelMin: 1 + Refineable: true + View: 1 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bMaxHPrate,3; + - Id: 2150 + AegisName: Upg_Buckler + Name: Upg Buckler + Type: Armor + Buy: 20 + Weight: 300 + Defense: 45 + Slots: 1 + Jobs: + Acolyte: true + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Rogue: true + Swordman: true + Thief: true + Locations: + Left_Hand: true + EquipLevelMin: 1 + Refineable: true + View: 2 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bMaxHPrate,3; + - Id: 2151 + AegisName: Upg_Shield + Name: Upg Shield + Type: Armor + Buy: 20 + Weight: 650 + Defense: 65 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Left_Hand: true + EquipLevelMin: 1 + Refineable: true + View: 3 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bMaxHPrate,3; + - Id: 2152 + AegisName: Anti_Demon_Shield_C + Name: Anti-Demon Shield + Type: Armor + Defense: 120 + Locations: + Left_Hand: true + EquipLevelMin: 1 + View: 3 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bSubRace,RC_DemiHuman,25; bonus2 bSubRace,RC_Player_Human,25; bonus2 bSubRace,RC_Demon,25; bonus bMaxHP,400; + - Id: 2153 + AegisName: Imperial_Guard + Name: Imperial Guard + Type: Armor + Buy: 20 + Weight: 2500 + Defense: 120 + Slots: 1 + Jobs: + Crusader: true + Locations: + Left_Hand: true + EquipLevelMin: 102 + Refineable: true + View: 4 + Script: | + .@r = getrefine(); bonus bMdef,5; bonus2 bSkillAtk,"LG_SHIELDPRESS",(.@r>=6?20+((.@r-5)*2):20); + - Id: 2154 + AegisName: Toy_Shield + Name: Toy Shield + Type: Armor + Weight: 500 + Defense: 1 + Slots: 1 + Locations: + Left_Hand: true + EquipLevelMin: 10 + Refineable: true + View: 1 + - Id: 2155 + AegisName: Academy_Shield + Name: Academy Shield + Type: Armor + Weight: 1500 + Defense: 3 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Left_Hand: true + Refineable: true + View: 4 + - Id: 2156 + AegisName: Bible_Of_Promise1 + Name: Bible of Promise(1st Vol.) + Type: Armor + Buy: 20 + Weight: 500 + Defense: 10 + Slots: 1 + Jobs: + Priest: true + Locations: + Left_Hand: true + EquipLevelMin: 110 + Refineable: true + View: 5 + Script: | + bonus bMdef,2; skill "ALL_ODINS_POWER",1; + - Id: 2157 + AegisName: Insecticide + Name: Pesticide + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Left_Hand: true + Refineable: true + View: 3 + Script: | + bonus2 bAddRace,RC_Insect,10; + - Id: 2158 + AegisName: Ramor_Shield_Undead + Name: Ramor Shield + Type: Armor + Buy: 20 + Weight: 1300 + Defense: 50 + Slots: 1 + Locations: + Left_Hand: true + EquipLevelMin: 65 + Refineable: true + View: 3 + Script: | + bonus2 bSubDefEle,Ele_Undead,5; bonus2 bMagicSubDefEle,Ele_Undead,5; bonus2 bSubRace,RC_DemiHuman,5; + - Id: 2159 + AegisName: Sharel_Shield + Name: Sharel Shield + Type: Armor + Buy: 20 + Weight: 1300 + Defense: 50 + Slots: 1 + Locations: + Left_Hand: true + EquipLevelMin: 65 + Refineable: true + View: 3 + Script: | + bonus2 bSubDefEle,Ele_Fire,5; bonus2 bMagicSubDefEle,Ele_Fire,5; bonus2 bSubRace,RC_Demon,5; + - Id: 2160 + AegisName: Giant_Shield + Name: Giant Shield + Type: Armor + Buy: 56000 + Weight: 2800 + Defense: 130 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Left_Hand: true + EquipLevelMin: 100 + Refineable: true + View: 3 + Script: | + bonus2 bSubSize,Size_Large,5; if(getrefine()>=9){ bonus2 bSubSize,Size_Large,5; } + - Id: 2161 + AegisName: Geffenia_Book_Water + Name: Geffenia Tomb of Water + Type: Armor + Buy: 56000 + Weight: 1000 + Defense: 30 + Slots: 1 + Jobs: + Wizard: true + Locations: + Left_Hand: true + EquipLevelMin: 100 + Refineable: true + View: 5 + Script: | + bonus bMdef,2; bonus bInt,1; if(readparam(bInt)>=120){ bonus bMatk,10; bonus bMaxHP,800; } + - Id: 2162 + AegisName: Bible_Of_Promise2 + Name: Bible of Promise(2nd Vol.) + Type: Armor + Buy: 20 + Weight: 500 + Defense: 20 + Slots: 1 + Jobs: + Priest: true + Locations: + Left_Hand: true + EquipLevelMin: 140 + Refineable: true + View: 5 + Script: | + bonus bMdef,5; skill "ALL_ODINS_POWER",2; bonus bHealPower,5; + - Id: 2163 + AegisName: Flow_Shield + Name: Flow Shield + Type: Armor + Buy: 20 + Weight: 1300 + Defense: 50 + Slots: 1 + Locations: + Left_Hand: true + EquipLevelMin: 65 + Refineable: true + View: 3 + Script: | + bonus2 bSubDefEle,Ele_Water,5; bonus2 bMagicSubDefEle,Ele_Water,5; bonus2 bSubRace,RC_Brute,-5; + - Id: 2164 + AegisName: Sombre_Shield + Name: Sombre Shield + Type: Armor + Buy: 20 + Weight: 1300 + Defense: 50 + Slots: 1 + Locations: + Left_Hand: true + EquipLevelMin: 65 + Refineable: true + View: 3 + Script: | + bonus2 bSubDefEle,Ele_Dark,5; bonus2 bMagicSubDefEle,Ele_Dark,5; bonus2 bSubRace,RC_Undead,-5; + - Id: 2165 + AegisName: Sol_Shield + Name: Sol Shield + Type: Armor + Buy: 20 + Weight: 1300 + Defense: 50 + Slots: 1 + Locations: + Left_Hand: true + EquipLevelMin: 65 + Refineable: true + View: 3 + Script: | + bonus2 bSubDefEle,Ele_Earth,5; bonus2 bMagicSubDefEle,Ele_Earth,5; bonus2 bSubRace,RC_Plant,-5; + - Id: 2166 + AegisName: Exorcism_Bible_ + Name: Devil's Bible Drive + Type: Armor + Buy: 20 + Weight: 600 + Defense: 80 + Slots: 1 + Jobs: + Monk: true + Priest: true + Locations: + Left_Hand: true + EquipLevelMin: 50 + Refineable: true + View: 5 + Script: | + bonus bHPrecovRate,3; bonus bSPrecovRate,3; bonus bInt,1; + - Id: 2167 + AegisName: Poison_Shield + Name: Poison Shield + Type: Armor + Buy: 20 + Weight: 1300 + Defense: 50 + Slots: 1 + Locations: + Left_Hand: true + EquipLevelMin: 65 + Refineable: true + View: 3 + Script: | + bonus2 bSubDefEle,Ele_Poison,5; bonus2 bMagicSubDefEle,Ele_Poison,5; bonus2 bSubRace,RC_Plant,-5; + - Id: 2168 + AegisName: Immuned_Shield + Name: Immune Shield + Type: Armor + Buy: 20 + Weight: 700 + Defense: 55 + Slots: 1 + Locations: + Left_Hand: true + EquipLevelMin: 1 + Refineable: true + View: 4 + Trade: + Override: 100 + NoDrop: true + Script: | + .@r = getrefine(); if (.@r>=5) bonus2 bSubEle,Ele_Neutral,min(.@r,12)-4; if(.@r>6) bonus2 bSubEle,Ele_Neutral,5; if(.@r>8) { bonus2 bSubEle,Ele_Fire,5; bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Wind,5; bonus2 bSubEle,Ele_Earth,5; } + - Id: 2169 + AegisName: Kalasak + Name: Kalasag + Type: Armor + Buy: 20 + Weight: 400 + Defense: 40 + Locations: + Left_Hand: true + EquipLevelMin: 1 + Refineable: true + View: 1 + Script: | + bonus2 bSubClass,Class_Boss,getrefine()/3; + - Id: 2170 + AegisName: Bayani_Kalasak + Name: Bayani Kalasag + Type: Armor + Buy: 20 + Weight: 400 + Defense: 40 + Slots: 1 + Locations: + Left_Hand: true + EquipLevelMin: 1 + Refineable: true + View: 1 + Script: | + bonus2 bSubClass,Class_Boss,getrefine()/3; + - Id: 2171 + AegisName: Fox_Armguard + Name: Fox Wrist Guard + Type: Armor + Buy: 40000 + Weight: 200 + Defense: 45 + Slots: 1 + Jobs: + Ninja: true + Locations: + Left_Hand: true + EquipLevelMin: 100 + Refineable: true + View: 1 + Script: | + bonus bFlee,5; + - Id: 2172 + AegisName: Wolf_Armguard + Name: Wolf Wrist Guard + Type: Armor + Buy: 45000 + Weight: 250 + Defense: 70 + Slots: 1 + Jobs: + Ninja: true + Locations: + Left_Hand: true + EquipLevelMin: 100 + Refineable: true + View: 1 + Script: | + autobonus "{ bonus bBaseAtk,100; bonus bFlee,-50; }",20,5000,BF_WEAPON,"{ specialeffect2 EF_TEIHIT1; }"; + - Id: 2173 + AegisName: Crescent_Armguard + Name: Crescent Wrist Guard + Type: Armor + Buy: 45000 + Weight: 250 + Defense: 45 + Slots: 1 + Jobs: + Ninja: true + Locations: + Left_Hand: true + EquipLevelMin: 100 + Refineable: true + View: 1 + Script: | + bonus bDelayRate,-(getrefine()*2); + - Id: 2174 + AegisName: Lumiere_Shield + Name: Lumiere Shield + Type: Armor + Buy: 20 + Weight: 1300 + Defense: 50 + Slots: 1 + Locations: + Left_Hand: true + EquipLevelMin: 65 + Refineable: true + View: 3 + Script: | + bonus2 bSubDefEle,Ele_Holy,5; bonus2 bMagicSubDefEle,Ele_Holy,5; bonus2 bSubRace,RC_Dragon,-5; + - Id: 2175 + AegisName: Esprit_Shield + Name: Spirit Shield + Type: Armor + Buy: 20 + Weight: 1300 + Defense: 50 + Slots: 1 + Locations: + Left_Hand: true + EquipLevelMin: 65 + Refineable: true + View: 3 + Script: | + bonus2 bSubDefEle,Ele_Ghost,5; bonus2 bMagicSubDefEle,Ele_Ghost,5; bonus2 bSubRace,RC_Angel,-5; + - Id: 2176 + AegisName: Dark_Book + Name: Black Book + Type: Armor + Buy: 20 + Weight: 500 + Defense: 80 + Slots: 1 + Locations: + Left_Hand: true + EquipLevelMin: 65 + Refineable: true + View: 5 + Script: | + bonus bMdef,5; .@r = getrefine(); bonus3 bAutoSpellWhenHit,"NPC_DRAGONFEAR",1,(.@r<=6)?(10):((.@r<=8)?(20):(30)); + - Id: 2177 + AegisName: Shield_Of_Death + Name: Shield Of Death + Type: Armor + Buy: 20 + Weight: 2000 + Defense: 150 + Slots: 1 + Locations: + Left_Hand: true + EquipLevelMin: 90 + Refineable: true + View: 3 + Script: | + bonus2 bAddClass,Class_Boss,2; bonus2 bMagicAddClass,Class_Boss,2; bonus2 bSubClass,Class_Normal,-10; + - Id: 2178 + AegisName: TE_Woe_Buckler + Name: TE Woe Buckler + Type: Armor + Defense: 15 + Locations: + Left_Hand: true + EquipLevelMin: 40 + Refineable: true + View: 2 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,15; bonus bMaxHP,100; bonus bMaxSP,100; bonus2 bSubRace,RC_Player_Human,15; + - Id: 2179 + AegisName: TE_Woe_Shield + Name: TE Woe Shield + Type: Armor + Defense: 25 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Left_Hand: true + EquipLevelMin: 40 + Refineable: true + View: 3 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,5; bonus bMaxHP,200; bonus2 bSubRace,RC_Player_Human,20; + - Id: 2180 + AegisName: TE_Woe_Magic_Guard + Name: TE Woe Magic Guard + Type: Armor + Defense: 5 + Jobs: + Acolyte: true + Mage: true + Monk: true + Novice: true + Priest: true + Sage: true + SoulLinker: true + SuperNovice: true + Wizard: true + Locations: + Left_Hand: true + EquipLevelMin: 40 + Refineable: true + View: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,25; bonus bMaxSP,200; bonus2 bSubRace,RC_Player_Human,10; + - Id: 2181 + AegisName: Hervor + Name: Hervor + Type: Armor + Buy: 10 + Weight: 1500 + Defense: 100 + Locations: + Left_Hand: true + EquipLevelMin: 1 + View: 2 + Script: | + bonus bMdef,5; bonus2 bSubRace,RC_All,30; bonus bUnbreakableShield; + - Id: 2182 + AegisName: Hervor_Alvitr + Name: Hervor Alvitr + Type: Armor + Weight: 3000 + Defense: 150 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Left_Hand: true + EquipLevelMin: 100 + View: 2 + Script: | + bonus bMdef,10; bonus bVit,20; bonus2 bSubRace,RC_All,30; bonus bUnbreakableShield; 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; + - Id: 2183 + AegisName: Impr_Angel's_Safeguard + Name: Advanced Angelic Guard + Type: Armor + Buy: 10000 + Weight: 400 + Defense: 30 + Slots: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Left_Hand: true + EquipLevelMin: 99 + Refineable: true + View: 1 + Script: | + bonus2 bSubRace,RC_Demon,5; bonus2 bSubEle,Ele_All,5; bonus2 bSubEle,Ele_Neutral,-5; + - Id: 2185 + AegisName: Magic_Reflector + Name: Magic Reflect + Type: Armor + Buy: 10 + Weight: 1000 + Defense: 50 + Slots: 1 + Locations: + Left_Hand: true + EquipLevelMin: 99 + Refineable: true + View: 3 + Script: | + bonus bMdef,10; bonus bMagicDamageReturn,3+((getrefine()>=9) ? 3 : 0); + - Id: 2186 + AegisName: Encyclopedia_Revision + Name: Great Encyclopedia Revision + Type: Armor + Buy: 10 + Weight: 200 + MagicAttack: 5 + Defense: 50 + Slots: 1 + Jobs: + Priest: true + Sage: true + SoulLinker: true + Locations: + Left_Hand: true + EquipLevelMin: 99 + Refineable: true + View: 4 + Script: | + bonus bInt,3; bonus bDex,2; .@r = getrefine(); bonus bCritical,3+((.@r >= 7) ? 2 : 0); if(.@r >= 9) bonus bMatk,5; + - Id: 2187 + AegisName: Shield_Of_Gray + Name: Shield of Gray + Type: Armor + Buy: 10 + Weight: 2000 + Defense: 75 + Slots: 1 + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Left_Hand: true + EquipLevelMin: 120 + Refineable: true + View: 3 + Script: | + .@r = getrefine(); bonus2 bSubEle,Ele_Holy,30+.@r; bonus bMdef,9+.@r/3; + - Id: 2188 + AegisName: Svalinn_J + Name: Svalinn + Type: Armor + Buy: 10 + Weight: 500 + Defense: 80 + Slots: 1 + Locations: + Left_Hand: true + EquipLevelMin: 65 + Refineable: true + View: 3 + Script: | + .@r = getrefine(); bonus2 bSubEle,Ele_Water,10; bonus bMaxHPrate,1*(.@r/3); bonus2 bSubEle,Ele_Water,5*(.@r/3); bonus bMdef,5; + - Id: 2189 + AegisName: Mad_Bunny + Name: Mad Bunny Shield + Type: Armor + Buy: 10 + Weight: 100 + Defense: 40 + Slots: 1 + Locations: + Left_Hand: true + EquipLevelMin: 30 + Refineable: true + View: 6 + Script: | + bonus2 bSubEle,Ele_All,5; bonus bMdef,6; bonus bDex,1; + - Id: 2190 + AegisName: Ancient_Shield_Of_Aeon + Name: Ancient Shield Of Aeon + Type: Armor + Weight: 200 + Defense: 5 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + Wizard: true + Locations: + Left_Hand: true + EquipLevelMin: 130 + Refineable: true + View: 2 + Script: | + 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; + - Id: 2195 + AegisName: Lian_Shield + Name: Lian Shield + Type: Armor + Weight: 1300 + Defense: 50 + Slots: 1 + Locations: + Left_Hand: true + EquipLevelMin: 65 + Refineable: true + View: 3 + Script: | + bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubRace,RC_Formless,-5; + - Id: 2196 + AegisName: White_Gold_Shield + Name: White Gold Shield + Type: Armor + Weight: 1800 + Defense: 140 + Slots: 1 + Locations: + Left_Hand: true + EquipLevelMin: 100 + Refineable: true + View: 4 + Script: | + autobonus2 "{ bonus bMagicDamageReturn,20; }",200,2000,BF_MAGIC; bonus bUnbreakableShield; + - Id: 2198 + AegisName: Lapine_Shield + Name: Lapine Shield + Type: Armor + Weight: 1000 + Defense: 25 + Slots: 1 + Locations: + Left_Hand: true + EquipLevelMin: 100 + Refineable: true + View: 3 + Script: | + bonus bMdef,10; if (getrefine() > 7) { bonus bMatk,20; } + - Id: 2199 + AegisName: Ahura_Mazda + Name: Ahura Mazdah + Type: Armor + Buy: 1 + Weight: 10 + Defense: 10000 + Locations: + Left_Hand: true + EquipLevelMin: 1 + Refineable: true + View: 1 + Script: | + bonus bAllStats,50; bonus bMdef,99; bonus bShortWeaponDamageReturn,100; bonus2 bSubRace,RC_DemiHuman,95; bonus2 bSubRace,RC_Player_Human,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; bonus bDelayRate,-20; bonus bSpeedRate,25; bonus bIntravision; bonus bNoWalkDelay; + - Id: 2201 + AegisName: Sunglasses + Name: Sunglasses + Type: Armor + Buy: 5000 + Weight: 100 + Locations: + Head_Mid: true + View: 12 + Script: | + bonus2 bResEff,Eff_Blind,500; + - Id: 2202 + AegisName: Sunglasses_ + Name: Sunglasses + Type: Armor + Buy: 5000 + Weight: 100 + Slots: 1 + Locations: + Head_Mid: true + View: 12 + Script: | + bonus2 bResEff,Eff_Blind,500; + - Id: 2203 + AegisName: Glasses + Name: Glasses + Type: Armor + Buy: 4000 + Weight: 100 + Locations: + Head_Mid: true + View: 3 + - Id: 2204 + AegisName: Glasses_ + Name: Glasses + Type: Armor + Buy: 4000 + Weight: 100 + Slots: 1 + Locations: + Head_Mid: true + View: 3 + - Id: 2205 + AegisName: Diver's_Goggles + Name: Diver Goggles + Type: Armor + Buy: 3500 + Weight: 100 + Locations: + Head_Mid: true + View: 10 + - Id: 2206 + AegisName: Wedding_Veil + Name: Wedding Veil + Type: Armor + Buy: 23000 + Weight: 100 + Gender: Female + Locations: + Head_Top: true + Refineable: true + View: 44 + Script: | + bonus bMdef,5; + - Id: 2207 + AegisName: Fancy_Flower + Name: Fancy Flower + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Top: true + View: 4 + Script: | + bonus2 bSubRace,RC_Plant,10; + - Id: 2208 + AegisName: Ribbon + Name: Ribbon + Type: Armor + Buy: 800 + Weight: 100 + Defense: 1 + Gender: Female + Locations: + Head_Top: true + Refineable: true + View: 17 + Script: | + bonus bMdef,3; + - Id: 2209 + AegisName: Ribbon_ + Name: Ribbon + Type: Armor + Buy: 800 + Weight: 100 + Defense: 1 + Slots: 1 + Gender: Female + Locations: + Head_Top: true + Refineable: true + View: 17 + Script: | + bonus bMdef,3; + - Id: 2210 + AegisName: Hair_Band + Name: Hair Band + Type: Armor + Buy: 500 + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + View: 9 + - Id: 2211 + AegisName: Bandana + Name: Bandana + Type: Armor + Buy: 400 + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 6 + - Id: 2212 + AegisName: Eye_Bandage + Name: Eye Patch + Type: Armor + Buy: 1000 + Weight: 100 + Locations: + Head_Mid: true + View: 13 + - Id: 2213 + AegisName: Cat_Hairband + Name: Kitty Band + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 2 + - Id: 2214 + AegisName: Bunny_Band + Name: Bunny Band + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 15 + Script: | + bonus bLuk,2; + - Id: 2215 + AegisName: Flower_Hairband + Name: Flower Band + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 5 + - Id: 2216 + AegisName: Biretta + Name: Biretta + Type: Armor + Buy: 9000 + Weight: 100 + Defense: 8 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Head_Top: true + Refineable: true + View: 11 + - Id: 2217 + AegisName: Biretta_ + Name: Biretta + Type: Armor + Buy: 9000 + Weight: 100 + Defense: 8 + Slots: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Head_Top: true + Refineable: true + View: 11 + - Id: 2218 + AegisName: Flu_Mask + Name: Flu Mask + Type: Armor + Buy: 300 + Weight: 100 + Locations: + Head_Low: true + View: 8 + Script: | + bonus2 bResEff,Eff_Silence,1000; + - Id: 2219 + AegisName: Flu_Mask_ + Name: Flu Mask + Type: Armor + Buy: 300 + Weight: 100 + Locations: + Head_Low: true + View: 8 + Script: | + bonus2 bResEff,Eff_Silence,1000; + - Id: 2220 + AegisName: Hat + Name: Hat + Type: Armor + Buy: 1000 + Weight: 200 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 16 + - Id: 2221 + AegisName: Hat_ + Name: Hat + Type: Armor + Buy: 1000 + Weight: 200 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 16 + - Id: 2222 + AegisName: Turban + Name: Turban + Type: Armor + Buy: 4500 + Weight: 300 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 7 + - Id: 2223 + AegisName: Turban_ + Name: Turban + Type: Armor + Buy: 4500 + Weight: 300 + Defense: 3 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 7 + - Id: 2224 + AegisName: Goggle + Name: Goggles + Type: Armor + Buy: 20 + Weight: 300 + Defense: 5 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Head_Mid: true + Head_Top: true + Refineable: true + View: 1 + - Id: 2225 + AegisName: Goggle_ + Name: Goggles + Type: Armor + Buy: 20 + Weight: 300 + Defense: 5 + Slots: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Head_Mid: true + Head_Top: true + Refineable: true + View: 1 + - Id: 2226 + AegisName: Cap + Name: Cap + Type: Armor + Buy: 12000 + Weight: 400 + Defense: 7 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Head_Top: true + Refineable: true + View: 14 + - Id: 2227 + AegisName: Cap_ + Name: Cap + Type: Armor + Buy: 12000 + Weight: 400 + Defense: 7 + Slots: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Head_Top: true + Refineable: true + View: 14 + - Id: 2228 + AegisName: Helm + Name: Helm + Type: Armor + Buy: 44000 + Weight: 600 + Defense: 13 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Head_Top: true + Refineable: true + View: 40 + - Id: 2229 + AegisName: Helm_ + Name: Helm + Type: Armor + Buy: 44000 + Weight: 600 + Defense: 13 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Head_Top: true + Refineable: true + View: 40 + - Id: 2230 + AegisName: Gemmed_Sallet + Name: Gemmed Sallet + Type: Armor + Buy: 50000 + Weight: 500 + Defense: 8 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Head_Top: true + Refineable: true + Script: | + bonus bMdef,3; + - Id: 2231 + AegisName: Gemmed_Sallet_ + Name: Gemmed Sallet + Type: Armor + Buy: 50000 + Weight: 500 + Defense: 8 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Head_Top: true + Refineable: true + Script: | + bonus bMdef,3; + - Id: 2232 + AegisName: Circlet + Name: Circlet + Type: Armor + Buy: 7500 + Weight: 300 + Defense: 6 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Head_Top: true + Refineable: true + View: 18 + Script: | + bonus bMdef,3; + - Id: 2233 + AegisName: Circlet_ + Name: Circlet + Type: Armor + Buy: 7500 + Weight: 300 + Defense: 6 + Slots: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Head_Top: true + Refineable: true + View: 18 + Script: | + bonus bMdef,3; + - Id: 2234 + AegisName: Tiara + Name: Tiara + Type: Armor + Buy: 20 + Weight: 400 + Defense: 7 + Jobs: + All: true + Novice: false + SuperNovice: false + Gender: Female + Locations: + Head_Top: true + EquipLevelMin: 45 + Refineable: true + View: 19 + Script: | + bonus bInt,2; + - Id: 2235 + AegisName: Crown + Name: Crown + Type: Armor + Buy: 20 + Weight: 400 + Defense: 7 + Jobs: + All: true + Novice: false + SuperNovice: false + Gender: Male + Locations: + Head_Top: true + EquipLevelMin: 45 + Refineable: true + View: 45 + Script: | + bonus bInt,2; + - Id: 2236 + AegisName: Santa's_Hat + Name: Santa Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 20 + Script: | + bonus bMdef,1; bonus bLuk,1; + - Id: 2237 + AegisName: Weird_Goatee + Name: Bandit Beard + Type: Armor + Buy: 2 + Weight: 100 + Locations: + Head_Low: true + View: 21 + - Id: 2238 + AegisName: Weird_Moustache + Name: Moustache + Type: Armor + Buy: 2 + Weight: 100 + Locations: + Head_Low: true + View: 22 + - Id: 2239 + AegisName: One_Eyed_Glass + Name: Monocle + Type: Armor + Buy: 10000 + Weight: 100 + Locations: + Head_Mid: true + View: 23 + - Id: 2240 + AegisName: Beard + Name: Beard + Type: Armor + Buy: 2 + Weight: 100 + Locations: + Head_Low: true + View: 24 + - Id: 2241 + AegisName: Granpa_Beard + Name: Grampa Beard + Type: Armor + Buy: 5000 + Weight: 100 + Locations: + Head_Low: true + View: 25 + - Id: 2242 + AegisName: Luxury_Sunglasses + Name: Purple Glasses + Type: Armor + Buy: 24000 + Weight: 100 + Defense: 2 + Locations: + Head_Mid: true + View: 26 + Script: | + bonus2 bResEff,Eff_Blind,1000; + - Id: 2243 + AegisName: Spinning_Eyes + Name: Geek Glasses + Type: Armor + Buy: 20000 + Weight: 100 + Defense: 1 + Locations: + Head_Mid: true + View: 27 + Script: | + bonus2 bResEff,Eff_Blind,1500; + - Id: 2244 + AegisName: Big_Sis'_Ribbon + Name: Big Ribbon + Type: Armor + Buy: 15000 + Weight: 200 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 28 + Script: | + bonus bMdef,3; + - Id: 2245 + AegisName: Sweet_Gents + Name: Sweet Gent + Type: Armor + Buy: 15000 + Weight: 400 + Defense: 5 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 29 + - Id: 2246 + AegisName: Golden_Gear + Name: Golden Gear + Type: Armor + Buy: 20 + Weight: 900 + Defense: 5 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 40 + Refineable: true + View: 30 + Script: | + bonus bUnbreakableHelm; + - Id: 2247 + AegisName: Oldman's_Romance + Name: Romantic Gent + Type: Armor + Buy: 15000 + Weight: 400 + Defense: 5 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 31 + - Id: 2248 + AegisName: Western_Grace + Name: Western Grace + Type: Armor + Buy: 15000 + Weight: 400 + Defense: 5 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 32 + - Id: 2249 + AegisName: Coronet + Name: Coronet + Type: Armor + Buy: 20 + Weight: 300 + Defense: 5 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 33 + Script: | + bonus bInt,1; + - Id: 2250 + AegisName: Fillet + Name: Cute Ribbon + Type: Armor + Buy: 500 + Weight: 100 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + View: 34 + Script: | + bonus bMaxSP,20; + - Id: 2251 + AegisName: Holy_Bonnet + Name: Monk Hat + Type: Armor + Buy: 30000 + Weight: 100 + Defense: 10 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Head_Top: true + Refineable: true + View: 35 + Script: | + bonus bMdef,3; + - Id: 2252 + AegisName: Star_Sparkling + Name: Wizard Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 7 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Head_Top: true + Refineable: true + View: 36 + Script: | + bonus bMaxSP,100; + - Id: 2253 + AegisName: Sunflower + Name: Sunflower + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + View: 37 + Script: | + bonus2 bSubRace,RC_Insect,10; + - Id: 2254 + AegisName: Angelic_Chain + Name: Angel Wing + Type: Armor + Buy: 20 + Weight: 100 + Defense: 4 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 38 + Script: | + bonus bMdef,3; bonus bAgi,1; bonus bLuk,1; bonus2 bSubRace,RC_Demon,3; + - Id: 2255 + AegisName: Satanic_Chain + Name: Evil Wing + Type: Armor + Buy: 20 + Weight: 100 + Defense: 6 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 39 + Script: | + bonus bMdef,2; bonus bStr,1; bonus2 bSubRace,RC_Angel,3; + - Id: 2256 + AegisName: Magestic_Goat + Name: Majestic Goat + Type: Armor + Buy: 20 + Weight: 800 + Defense: 9 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + StarGladiator: true + Swordman: true + Taekwon: true + Locations: + Head_Top: true + Refineable: true + View: 41 + Script: | + bonus bStr,1; + - Id: 2257 + AegisName: Snowy_Horn + Name: Unicorn Horn + Type: Armor + Buy: 20 + Weight: 100 + Defense: 4 + Locations: + Head_Top: true + Refineable: true + View: 42 + - Id: 2258 + AegisName: Sharp_Gear + Name: Spiky Band + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 12 + Jobs: + Acolyte: true + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Rogue: true + StarGladiator: true + Swordman: true + Taekwon: true + Thief: true + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 43 + - Id: 2259 + AegisName: Mini_Propeller + Name: Mini Propeller + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 46 + - Id: 2260 + AegisName: Mini_Glasses + Name: Mini Glasses + Type: Armor + Buy: 28000 + Weight: 100 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + View: 47 + - Id: 2261 + AegisName: Prontera_Army_Cap + Name: Army Cap + Type: Armor + Buy: 20 + Weight: 400 + Defense: 8 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Head_Top: true + Refineable: true + View: 48 + - Id: 2262 + AegisName: Pierrot_Nose + Name: Clown Nose + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Low: true + View: 49 + - Id: 2263 + AegisName: Gangster_Patch + Name: Zorro Masque + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + View: 50 + - Id: 2264 + AegisName: Munak_Turban + Name: Munak Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 5 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + View: 51 + Script: | + bonus2 bSubRace,RC_Undead,10; + - Id: 2265 + AegisName: Ganster_Mask + Name: Gangster Mask + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Low: true + View: 52 + Script: | + bonus2 bResEff,Eff_Silence,1500; + - Id: 2266 + AegisName: Iron_Cane + Name: Iron Cain + Type: Armor + Buy: 20 + Weight: 300 + Defense: 4 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Head_Low: true + EquipLevelMin: 50 + View: 53 + - Id: 2267 + AegisName: Cigar + Name: Cigarette + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Low: true + View: 54 + Script: | + bonus2 bSubRace,RC_Insect,3; + - Id: 2268 + AegisName: Smoking_Pipe + Name: Pipe + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Low: true + View: 55 + Script: | + bonus2 bSubRace,RC_Insect,3; + - Id: 2269 + AegisName: Centimental_Flower + Name: Romantic Flower + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Low: true + View: 56 + Script: | + bonus2 bSubRace,RC_Plant,3; + - Id: 2270 + AegisName: Centimental_Leaf + Name: Romantic Leaf + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Low: true + View: 57 + Script: | + bonus2 bSubRace,RC_Plant,3; + - Id: 2271 + AegisName: Jack_A_Dandy + Name: Jack be Dandy + Type: Armor + Buy: 45000 + Weight: 100 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + View: 58 + - Id: 2272 + AegisName: Stop_Post + Name: Stop Post + Type: Armor + Buy: 20 + Weight: 400 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 59 + - Id: 2273 + AegisName: Doctor_Cap + Name: Doctor Band + Type: Armor + Buy: 20 + Weight: 100 + Defense: 5 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 60 + Script: | + bonus bInt,1; + - Id: 2274 + AegisName: Ghost_Bandana + Name: Ghost Bandana + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 61 + Script: | + bonus bAgi,2; bonus2 bSubEle,Ele_Ghost,15; + - Id: 2275 + AegisName: Red_Bandana + Name: Red Bandana + Type: Armor + Buy: 20 + Weight: 100 + Defense: 4 + Locations: + Head_Top: true + Refineable: true + View: 62 + - Id: 2276 + AegisName: Eagle_Eyes + Name: Angled Glasses + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Locations: + Head_Mid: true + View: 63 + - Id: 2277 + AegisName: Nurse_Cap + Name: Nurse Cap + Type: Armor + Buy: 20 + Weight: 100 + Defense: 4 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Head_Top: true + Refineable: true + View: 64 + Script: | + bonus bInt,1; + - Id: 2278 + AegisName: Mr_Smile + Name: Mr. Smile + Type: Armor + Buy: 60 + Weight: 100 + Defense: 1 + Locations: + Head_Low: true + Head_Mid: true + View: 65 + - Id: 2279 + AegisName: Bomb_Wick + Name: Bomb Wick + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + View: 66 + - Id: 2280 + AegisName: Sahkkat + Name: Sakkat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 4 + Locations: + Head_Top: true + Refineable: true + View: 67 + Script: | + bonus bAgi,1; + - Id: 2281 + AegisName: Phantom_Of_Opera + Name: Opera Masque + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Low: true + Head_Mid: true + View: 68 + - Id: 2282 + AegisName: Spirit_Chain + Name: Halo + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Top: true + View: 69 + Script: | + bonus2 bSubEle,Ele_Holy,15; + - Id: 2283 + AegisName: Ear_Mufs + Name: Ear Muffs + Type: Armor + Buy: 20 + Weight: 200 + Defense: 4 + Locations: + Head_Top: true + Refineable: true + View: 70 + Script: | + bonus2 bResEff,Eff_Curse,1000; + - Id: 2284 + AegisName: Antler + Name: Antlers + Type: Armor + Buy: 20 + Weight: 500 + Defense: 8 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 71 + - Id: 2285 + AegisName: Apple_Of_Archer + Name: Apple of Archer + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 72 + Script: | + bonus bDex,3; + - Id: 2286 + AegisName: Elven_Ears + Name: Elven Ears + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + EquipLevelMin: 70 + View: 73 + - Id: 2287 + AegisName: Pirate_Bandana + Name: Pirate Bandana + Type: Armor + Buy: 20 + Weight: 100 + Defense: 4 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 74 + Script: | + bonus bStr,1; + - Id: 2288 + AegisName: Mr_Scream + Name: Mr. Scream + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Low: true + Head_Mid: true + View: 75 + - Id: 2289 + AegisName: Poo_Poo_Hat + Name: Poo Poo Hat + Type: Armor + Buy: 20 + Weight: 700 + Locations: + Head_Top: true + View: 76 + Script: | + bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; + - Id: 2290 + AegisName: Funeral_Costume + Name: Funeral Hat + Type: Armor + Buy: 3000 + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + View: 77 + - Id: 2291 + AegisName: Masquerade + Name: Masquerade + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + View: 78 + Script: | + bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player_Human,3; + - Id: 2292 + AegisName: Welding_Mask + Name: Welding Mask + Type: Armor + Buy: 20 + Weight: 300 + Defense: 2 + Jobs: + Alchemist: true + Blacksmith: true + Merchant: true + Locations: + Head_Low: true + Head_Mid: true + EquipLevelMin: 50 + View: 79 + Script: | + bonus2 bSubEle,Ele_Fire,10; + - Id: 2293 + AegisName: Pretend_Murdered + Name: Pretend Murdered + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + View: 80 + - Id: 2294 + AegisName: Star_Dust + Name: Stellar + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 81 + - Id: 2295 + AegisName: Blinker + Name: Blinker + Type: Armor + Buy: 1500 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + View: 82 + Script: | + bonus2 bResEff,Eff_Blind,10000; + - Id: 2296 + AegisName: Binoculars + Name: Binoculars + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Locations: + Head_Mid: true + EquipLevelMin: 50 + View: 83 + Script: | + bonus bDex,1; + - Id: 2297 + AegisName: Goblini_Mask + Name: Goblin Mask + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Low: true + Head_Mid: true + View: 84 + - Id: 2298 + AegisName: Green_Feeler + Name: Green Feeler + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Locations: + Head_Top: true + View: 85 + - Id: 2299 + AegisName: Viking_Helm + Name: Orc Helm + Type: Armor + Buy: 20 + Weight: 500 + Defense: 9 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Head_Top: true + Refineable: true + View: 86 + - Id: 2301 + AegisName: Cotton_Shirt + Name: Cotton Shirt + Type: Armor + Buy: 10 + Weight: 100 + Defense: 10 + Locations: + Armor: true + Refineable: true + - Id: 2302 + AegisName: Cotton_Shirt_ + Name: Cotton Shirt + Type: Armor + Buy: 10 + Weight: 100 + Defense: 10 + Slots: 1 + Locations: + Armor: true + Refineable: true + - Id: 2303 + AegisName: Leather_Jacket + Name: Jacket + Type: Armor + Buy: 200 + Weight: 200 + Defense: 15 + Locations: + Armor: true + Refineable: true + - Id: 2304 + AegisName: Leather_Jacket_ + Name: Jacket + Type: Armor + Buy: 200 + Weight: 200 + Defense: 15 + Slots: 1 + Locations: + Armor: true + Refineable: true + - Id: 2305 + AegisName: Adventure_Suit + Name: Adventurer's Suit + Type: Armor + Buy: 1000 + Weight: 300 + Defense: 20 + Locations: + Armor: true + Refineable: true + - Id: 2306 + AegisName: Adventurere's_Suit_ + Name: Adventurer's Suit + Type: Armor + Buy: 1000 + Weight: 300 + Defense: 20 + Slots: 1 + Locations: + Armor: true + Refineable: true + - Id: 2307 + AegisName: Mantle + Name: Mantle + Type: Armor + Buy: 10000 + Weight: 600 + Defense: 37 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Armor: true + Refineable: true + - Id: 2308 + AegisName: Mantle_ + Name: Mantle + Type: Armor + Buy: 10000 + Weight: 600 + Defense: 37 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Armor: true + Refineable: true + - Id: 2309 + AegisName: Coat + Name: Coat + Type: Armor + Buy: 22000 + Weight: 1200 + Defense: 42 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Armor: true + Refineable: true + - Id: 2310 + AegisName: Coat_ + Name: Coat + Type: Armor + Buy: 22000 + Weight: 1200 + Defense: 42 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Armor: true + Refineable: true + - Id: 2311 + AegisName: Mink_Coat + Name: Mink Coat + Type: Armor + Buy: 20 + Weight: 2300 + Defense: 30 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Armor: true + EquipLevelMin: 30 + Refineable: true + - Id: 2312 + AegisName: Padded_Armor + Name: Padded Armor + Type: Armor + Buy: 48000 + Weight: 2800 + Defense: 35 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Armor: true + Refineable: true + - Id: 2313 + AegisName: Padded_Armor_ + Name: Padded Armor + Type: Armor + Buy: 48000 + Weight: 2800 + Defense: 35 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Armor: true + Refineable: true + - Id: 2314 + AegisName: Chain_Mail + Name: Chain Mail + Type: Armor + Buy: 65000 + Weight: 3300 + Defense: 55 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Armor: true + Refineable: true + - Id: 2315 + AegisName: Chain_Mail_ + Name: Chain Mail + Type: Armor + Buy: 65000 + Weight: 3300 + Defense: 55 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Armor: true + Refineable: true + - Id: 2316 + AegisName: Plate_Armor + Name: Full Plate + Type: Armor + Buy: 80000 + Weight: 4500 + Defense: 70 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Armor: true + EquipLevelMin: 40 + Refineable: true + - Id: 2317 + AegisName: Plate_Armor_ + Name: Full Plate + Type: Armor + Buy: 80000 + Weight: 4500 + Defense: 70 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Armor: true + EquipLevelMin: 40 + Refineable: true + - Id: 2318 + AegisName: Clothes_Of_The_Lord + Name: Lord's Clothes + Type: Armor + Buy: 20 + Weight: 2500 + Defense: 59 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Merchant: true + Locations: + Armor: true + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bMdef,5; bonus bInt,1; + - Id: 2319 + AegisName: Glittering_Clothes + Name: Glittering Jacket + Type: Armor + Buy: 20 + Weight: 2500 + Defense: 58 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Armor: true + EquipLevelMin: 60 + Refineable: true + Script: | + bonus bMdef,5; bonus2 bAddEff,Eff_Blind,300; + - Id: 2320 + AegisName: Formal_Suit + Name: Formal Suit + Type: Armor + Buy: 20 + Weight: 300 + Defense: 40 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Armor: true + Refineable: true + - Id: 2321 + AegisName: Silk_Robe + Name: Silk Robe + Type: Armor + Buy: 8000 + Weight: 400 + Defense: 20 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Mage: true + Merchant: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Swordman: true + Wizard: true + Locations: + Armor: true + Refineable: true + Script: | + bonus bMdef,10; + - Id: 2322 + AegisName: Silk_Robe_ + Name: Silk Robe + Type: Armor + Buy: 8000 + Weight: 400 + Defense: 20 + Slots: 1 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Mage: true + Merchant: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Swordman: true + Wizard: true + Locations: + Armor: true + Refineable: true + Script: | + bonus bMdef,10; + - Id: 2323 + AegisName: Scapulare + Name: Scapulare + Type: Armor + Buy: 6500 + Weight: 400 + Defense: 24 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Armor: true + Refineable: true + - Id: 2324 + AegisName: Scapulare_ + Name: Scapulare + Type: Armor + Buy: 6500 + Weight: 400 + Defense: 24 + Slots: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Armor: true + Refineable: true + - Id: 2325 + AegisName: Saint_Robe + Name: Saint's Robe + Type: Armor + Buy: 54000 + Weight: 600 + Defense: 50 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Merchant: true + Monk: true + Priest: true + Locations: + Armor: true + Refineable: true + Script: | + bonus bMdef,5; + - Id: 2326 + AegisName: Saint_Robe_ + Name: Saint's Robe + Type: Armor + Buy: 54000 + Weight: 600 + Defense: 50 + Slots: 1 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Merchant: true + Monk: true + Priest: true + Locations: + Armor: true + Refineable: true + Script: | + bonus bMdef,5; + - Id: 2327 + AegisName: Holy_Robe + Name: Holy Robe + Type: Armor + Buy: 20 + Weight: 1700 + Defense: 57 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Armor: true + EquipLevelMin: 60 + Refineable: true + Script: | + bonus bMdef,5; bonus2 bSubRace,RC_Demon,15; bonus2 bSubEle,Ele_Dark,10; + - Id: 2328 + AegisName: Wooden_Mail + Name: Wooden Mail + Type: Armor + Buy: 5500 + Weight: 1000 + Defense: 25 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Armor: true + Refineable: true + - Id: 2329 + AegisName: Wooden_Mail_ + Name: Wooden Mail + Type: Armor + Buy: 5500 + Weight: 1000 + Defense: 25 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Armor: true + Refineable: true + - Id: 2330 + AegisName: Tights + Name: Tights + Type: Armor + Buy: 71000 + Weight: 500 + Defense: 27 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Locations: + Armor: true + EquipLevelMin: 45 + Refineable: true + Script: | + bonus bDex,1; + - Id: 2331 + AegisName: Tights_ + Name: Tights + Type: Armor + Buy: 71000 + Weight: 500 + Defense: 27 + Slots: 1 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Locations: + Armor: true + EquipLevelMin: 45 + Refineable: true + Script: | + bonus bDex,1; + - Id: 2332 + AegisName: Silver_Robe + Name: Silver Robe + Type: Armor + Buy: 7000 + Weight: 700 + Defense: 23 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Armor: true + Refineable: true + - Id: 2333 + AegisName: Silver_Robe_ + Name: Silver Robe + Type: Armor + Buy: 7000 + Weight: 700 + Defense: 23 + Slots: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Armor: true + Refineable: true + - Id: 2334 + AegisName: Mage_Coat + Name: Mage Coat + Type: Armor + Buy: 20 + Weight: 600 + Defense: 40 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Armor: true + EquipLevelMin: 50 + Refineable: true + Script: | + bonus bMdef,5; bonus bInt,1; + - Id: 2335 + AegisName: Thief_Clothes + Name: Thief Clothes + Type: Armor + Buy: 74000 + Weight: 100 + Defense: 40 + Jobs: + Assassin: true + Ninja: true + Rogue: true + Thief: true + Locations: + Armor: true + Refineable: true + Script: | + bonus bAgi,1; + - Id: 2336 + AegisName: Thief_Clothes_ + Name: Thief Clothes + Type: Armor + Buy: 74000 + Weight: 100 + Defense: 40 + Slots: 1 + Jobs: + Assassin: true + Ninja: true + Rogue: true + Thief: true + Locations: + Armor: true + Refineable: true + Script: | + bonus bAgi,1; + - Id: 2337 + AegisName: Ninja_Suit + Name: Ninja Suit + Type: Armor + Buy: 20 + Weight: 1500 + Defense: 58 + Jobs: + Assassin: true + Ninja: true + Rogue: true + Thief: true + Locations: + Armor: true + EquipLevelMin: 50 + Refineable: true + Script: | + bonus bAgi,1; bonus bMdef,3; + - Id: 2338 + AegisName: Wedding_Dress + Name: Wedding Dress + Type: Armor + Buy: 43000 + Weight: 500 + Defense: 10 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Armor: true + Refineable: true + Script: | + bonus bMdef,15; + - Id: 2339 + AegisName: G_Strings + Name: Pantie + Type: Armor + Buy: 1000 + Weight: 100 + Defense: 22 + Locations: + Armor: true + Refineable: true + - Id: 2340 + AegisName: Novice_Breast + Name: Novice Breastplate + Type: Armor + Buy: 89000 + Weight: 500 + Defense: 4 + Slots: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Armor: true + EquipLevelMin: 10 + Refineable: true + - Id: 2341 + AegisName: Full_Plate_Armor + Name: Legion Plate Armor + Type: Armor + Buy: 94000 + Weight: 5500 + Defense: 79 + Jobs: + Crusader: true + Locations: + Armor: true + EquipLevelMin: 70 + Refineable: true + - Id: 2342 + AegisName: Full_Plate_Armor_ + Name: Legion Plate Armor + Type: Armor + Buy: 102500 + Weight: 5500 + Defense: 79 + Slots: 1 + Jobs: + Crusader: true + Locations: + Armor: true + EquipLevelMin: 70 + Refineable: true + - Id: 2343 + AegisName: Robe_Of_Casting + Name: Robe of Cast + Type: Armor + Buy: 124800 + Weight: 1100 + Defense: 40 + Jobs: + Sage: true + SoulLinker: true + Wizard: true + Locations: + Armor: true + EquipLevelMin: 75 + Refineable: true + Script: | + bonus bVariableCastrate,-3; bonus bMdef,4; + - Id: 2344 + AegisName: Flame_Sprits_Armor + Name: Lucius's Fierce Armor of Volcano + Type: Armor + Buy: 136000 + Weight: 2200 + Defense: 25 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Armor: true + EquipLevelMin: 45 + Refineable: true + Script: | + bonus bDefEle,Ele_Fire; + - Id: 2345 + AegisName: Flame_Sprits_Armor_ + Name: Lucius's Fierce Armor of Volcano + Type: Armor + Buy: 136000 + Weight: 2200 + Defense: 25 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Armor: true + EquipLevelMin: 45 + Refineable: true + Script: | + bonus bDefEle,Ele_Fire; + - Id: 2346 + AegisName: Water_Sprits_Armor + Name: Saphien's Armor of Ocean + Type: Armor + Buy: 136000 + Weight: 2200 + Defense: 25 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Armor: true + EquipLevelMin: 45 + Refineable: true + Script: | + bonus bDefEle,Ele_Water; + - Id: 2347 + AegisName: Water_Sprits_Armor_ + Name: Saphien's Armor of Ocean + Type: Armor + Buy: 136000 + Weight: 2200 + Defense: 25 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Armor: true + EquipLevelMin: 45 + Refineable: true + Script: | + bonus bDefEle,Ele_Water; + - Id: 2348 + AegisName: Wind_Sprits_Armor + Name: Aebecee's Raging Typhoon Armor + Type: Armor + Buy: 136000 + Weight: 2200 + Defense: 25 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Armor: true + EquipLevelMin: 45 + Refineable: true + Script: | + bonus bDefEle,Ele_Wind; + - Id: 2349 + AegisName: Wind_Sprits_Armor_ + Name: Aebecee's Raging Typhoon Armor + Type: Armor + Buy: 136000 + Weight: 2200 + Defense: 25 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Armor: true + EquipLevelMin: 45 + Refineable: true + Script: | + bonus bDefEle,Ele_Wind; + - Id: 2350 + AegisName: Earth_Sprits_Armor + Name: Claytos Cracking Earth Armor + Type: Armor + Buy: 136000 + Weight: 2200 + Defense: 25 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Armor: true + EquipLevelMin: 45 + Refineable: true + Script: | + bonus bDefEle,Ele_Earth; + - Id: 2351 + AegisName: Earth_Sprits_Armor_ + Name: Claytos Cracking Earth Armor + Type: Armor + Buy: 136000 + Weight: 2200 + Defense: 25 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Armor: true + EquipLevelMin: 45 + Refineable: true + Script: | + bonus bDefEle,Ele_Earth; + - Id: 2352 + AegisName: Novice_Plate + Name: Tattered Novice Ninja Suit + Type: Armor + Buy: 1 + Weight: 1 + Defense: 25 + Jobs: + Novice: true + SuperNovice: true + Locations: + Armor: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 2353 + AegisName: Odin's_Blessing + Name: Odin's Blessing + Type: Armor + Buy: 30000 + Weight: 2500 + Defense: 53 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Armor: true + EquipLevelMin: 65 + Refineable: true + - Id: 2354 + AegisName: Goibne's_Armor + Name: Goibne's Armor + Type: Armor + Buy: 50000 + Weight: 3500 + Defense: 58 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Armor: true + EquipLevelMin: 54 + Refineable: true + Script: | + bonus bVit,2; bonus bMaxHPrate,10; + - Id: 2355 + AegisName: Angel's_Protection + Name: Angelic Protection + Type: Armor + Buy: 10000 + Weight: 600 + Defense: 25 + Slots: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Armor: true + EquipLevelMin: 40 + Refineable: true + Script: | + bonus bMdef,20; + - Id: 2356 + AegisName: Vestment_Of_Grace + Name: Blessed Holy Robe + Type: Armor + Buy: 20 + Weight: 2500 + Defense: 45 + Slots: 1 + Jobs: + Monk: true + Priest: true + Locations: + Armor: true + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bMdef,5; bonus2 bResEff,Eff_Blind,8000; + - Id: 2357 + AegisName: Valkyrie_Armor + Name: Valkyrian Armor + Type: Armor + Weight: 2800 + Defense: 55 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Third_Upper: true + Locations: + Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bAllStats,1; bonus bUnbreakableArmor; 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; + - Id: 2358 + AegisName: Dress_Of_Angel + Name: Angel's Dress + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 5 + Locations: + Armor: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bLuk,4; + - Id: 2359 + AegisName: Ninja_Suit_ + Name: Ninja Suit + Type: Armor + Buy: 20 + Weight: 1500 + Defense: 58 + Slots: 1 + Jobs: + Assassin: true + Ninja: true + Rogue: true + Thief: true + Locations: + Armor: true + EquipLevelMin: 50 + Refineable: true + Script: | + bonus bAgi,1; bonus bMdef,3; + - Id: 2360 + AegisName: Robe_Of_Casting_ + Name: Robe of Cast + Type: Armor + Buy: 124800 + Weight: 1100 + Defense: 40 + Slots: 1 + Jobs: + Sage: true + SoulLinker: true + Wizard: true + Locations: + Armor: true + EquipLevelMin: 75 + Refineable: true + Script: | + bonus bVariableCastrate,-3; bonus bMdef,4; + - Id: 2361 + AegisName: Blue_Aodai + Name: Blue Robe + Type: Armor + Buy: 20 + Weight: 500 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bAllStats,3; bonus bMdef,5; + - Id: 2362 + AegisName: Red_Aodai + Name: Red Robe + Type: Armor + Buy: 20 + Weight: 500 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bAllStats,3; bonus bMdef,5; + - Id: 2363 + AegisName: White_Aodai + Name: White Robe + Type: Armor + Buy: 20 + Weight: 500 + Jobs: + Novice: true + SuperNovice: true + Locations: + Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bAllStats,3; bonus bMdef,5; + - Id: 2364 + AegisName: Meteo_Plate_Armor + Name: Meteo Plate Armor + Type: Armor + Buy: 20 + Weight: 3000 + Defense: 85 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Classes: + Upper: true + Third_Upper: true + Locations: + Armor: true + EquipLevelMin: 55 + Refineable: true + Script: | + bonus2 bResEff,Eff_Stun,3000; bonus2 bResEff,Eff_Freeze,3000; + - Id: 2365 + AegisName: Orleans_Gown + Name: Orleans's Gown + Type: Armor + Buy: 20 + Weight: 300 + Defense: 15 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Third_Upper: true + Locations: + Armor: true + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bVariableCastrate,15; bonus bNoCastCancel; + - Id: 2366 + AegisName: Divine_Cloth + Name: Divine Cloth + Type: Armor + Buy: 20 + Weight: 1500 + Defense: 50 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Third_Upper: true + Locations: + Armor: true + EquipLevelMin: 55 + Refineable: true + Script: | + 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; + - Id: 2367 + AegisName: Sniping_Suit + Name: Sniping Suit + Type: Armor + Buy: 20 + Weight: 750 + Defense: 42 + Slots: 1 + Jobs: + Hunter: true + Classes: + Upper: true + Third_Upper: true + Locations: + Armor: true + EquipLevelMin: 50 + Refineable: true + Script: | + bonus bMdef,5; bonus bCritical,6+(readparam(bLuk)/10); bonus bDelayRate,-23; + - Id: 2368 + AegisName: Golden_Armor + Name: Golden Armor + Type: Armor + Buy: 20 + Weight: 2000 + Defense: 4 + Locations: + Armor: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,4; + - Id: 2369 + AegisName: Freyja_Overcoat + Name: Freyja Overcoat + Type: Armor + Weight: 500 + Defense: 12 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Armor: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bUnbreakableArmor; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; + - Id: 2370 + AegisName: Used_Mage_Coat + Name: Used Mage Coat + Type: Armor + Defense: 15 + Locations: + Armor: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,300; bonus bMaxSP,30; bonus bBaseAtk,10; bonus bAgi,1; + - Id: 2371 + AegisName: G_Strings_ + Name: Pantie + Type: Armor + Buy: 1000 + Weight: 100 + Defense: 22 + Slots: 1 + Locations: + Armor: true + Refineable: true + - Id: 2372 + AegisName: Mage_Coat_ + Name: Mage Coat + Type: Armor + Buy: 20 + Weight: 600 + Defense: 40 + Slots: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Armor: true + EquipLevelMin: 50 + Refineable: true + Script: | + bonus bMdef,5; bonus bInt,1; + - Id: 2373 + AegisName: Holy_Robe_ + Name: Holy Robe + Type: Armor + Buy: 20 + Weight: 1700 + Defense: 57 + Slots: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Armor: true + EquipLevelMin: 60 + Refineable: true + Script: | + bonus bMdef,5; bonus2 bSubRace,RC_Demon,15; bonus2 bSubEle,Ele_Dark,10; + - Id: 2374 + AegisName: Diabolus_Robe + Name: Diabolus Robe + Type: Armor + Buy: 20 + Weight: 300 + Defense: 57 + Slots: 1 + Jobs: + Acolyte: true + Archer: true + BardDancer: true + Hunter: true + Mage: true + Monk: true + Priest: true + Sage: true + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Armor: true + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bMaxSP,150; bonus bMdef,5; bonus bHealPower,6; bonus bDelayRate,-10; + - Id: 2375 + AegisName: Diabolus_Armor + Name: Diabolus Armor + Type: Armor + Buy: 20 + Weight: 600 + Defense: 79 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Classes: + Upper: true + Third_Upper: true + Locations: + Armor: true + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bStr,2; bonus bDex,1; bonus bMdef,5; bonus bMaxHP,150; bonus2 bResEff,Eff_Stun,500; bonus2 bResEff,Eff_Stone,500; + - Id: 2376 + AegisName: Assaulter_Plate + Name: Assaulter Plate + Type: Armor + Buy: 10 + Defense: 57 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + StarGladiator: true + Swordman: true + Taekwon: true + Locations: + Armor: true + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; + - Id: 2377 + AegisName: Elite_Engineer_Armor + Name: Elite Engineer Armor + Type: Armor + Buy: 10 + Defense: 50 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Merchant: true + Locations: + Armor: true + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; + - Id: 2378 + AegisName: Assassin_Robe + Name: Assassin Robe + Type: Armor + Buy: 10 + Defense: 41 + Slots: 1 + Jobs: + Assassin: true + Ninja: true + Rogue: true + Thief: true + Locations: + Armor: true + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; + - Id: 2379 + AegisName: Warlock_Battle_Robe + Name: Warlock's Battle Robe + Type: Armor + Buy: 10 + Defense: 36 + Slots: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Armor: true + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; + - Id: 2380 + AegisName: Medic_Robe + Name: Medic's Robe + Type: Armor + Buy: 10 + Defense: 25 + Slots: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Armor: true + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; + - Id: 2381 + AegisName: Elite_Archer_Suit + Name: Elite Archer Suit + Type: Armor + Buy: 10 + Defense: 35 + Slots: 1 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Locations: + Armor: true + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; + - Id: 2382 + AegisName: Elite_Shooter_Suit + Name: Elite Shooter Suit + Type: Armor + Buy: 10 + Defense: 25 + Slots: 1 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Armor: true + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; + - Id: 2383 + AegisName: Brynhild + Name: Brynhild + Type: Armor + Buy: 20 + Weight: 400 + Defense: 120 + Locations: + Armor: true + EquipLevelMin: 94 + Script: | + bonus bMdef,10; bonus bMaxHP,20*BaseLevel; bonus bMaxSP,5*BaseLevel; bonus2 bAddClass,Class_All,10; bonus bMatkRate,10; bonus bUnbreakableArmor; bonus bNoKnockback; + - Id: 2384 + AegisName: Spritual_Tunic + Name: Spiritual Tunic + Type: Armor + Buy: 20 + Defense: 10 + Locations: + Armor: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,5; 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; + - Id: 2385 + AegisName: Recuperative_Armor + Name: Recuperative Armor + Type: Armor + Buy: 20 + Defense: 12 + Locations: + Armor: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bNoRegen,1; bonus bNoRegen,2; bonus bHPGainValue,60; bonus bSPGainValue,6; bonus bMagicHPGainValue,60; bonus bMagicSPGainValue,6; + UnEquipScript: | + heal 0,-100; + - Id: 2386 + AegisName: Chameleon_Armor + Name: Chameleon Armor + Type: Armor + Buy: 20 + Weight: 1700 + Defense: 55 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Armor: true + EquipLevelMin: 70 + Refineable: true + Script: | + 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; + - Id: 2387 + AegisName: Sprint_Mail + Name: Sprint Mail + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 20 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Armor: true + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bVit,1; bonus bHPrecovRate,5; bonus bAddItemHealRate,3; bonus2 bSkillHeal,"AL_HEAL",3; + - Id: 2388 + AegisName: Kandura + Name: Kandura + Type: Armor + Buy: 20 + Weight: 300 + Defense: 36 + Slots: 1 + Jobs: + Assassin: true + Classes: + Upper: true + Third_Upper: true + Locations: + Armor: true + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bAgi,1; bonus bFlee,5; bonus bAspdRate,2; + - Id: 2389 + AegisName: Armor_Of_Naga + Name: Armor of Naga + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 45 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Armor: true + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bMdef,2; autobonus "{ bonus bBaseAtk,20; }",10,10000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; + - Id: 2390 + AegisName: Improved_Tights + Name: Improved Tights + Type: Armor + Buy: 20 + Weight: 400 + Defense: 38 + Slots: 1 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Classes: + Upper: true + Third_Upper: true + Locations: + Armor: true + EquipLevelMin: 75 + Refineable: true + Script: | + bonus bMdef,2; bonus bFlee2,3; + - Id: 2391 + AegisName: Life_Link + Name: Life Link + Type: Armor + Buy: 20 + Weight: 3500 + Defense: 75 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Classes: + Upper: true + Third_Upper: true + Locations: + Armor: true + EquipLevelMin: 82 + Refineable: true + Script: | + bonus bVit,2; bonus bMdef,5; bonus bHPrecovRate,50; + - Id: 2392 + AegisName: Old_Pant + Name: Old Green Pantie + Type: Armor + Defense: 10 + Locations: + Armor: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,2; bonus bVit,2; bonus bMaxHP,200; bonus3 bAutoSpellWhenHit,"MO_CALLSPIRITS",5,20; bonus bMdef,1; + - Id: 2393 + AegisName: N_Adventurer's_Suit + Name: Novice Adventurer's Suit + Type: Armor + Defense: 45 + Slots: 1 + Locations: + Armor: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 2394 + AegisName: Krieger_Suit1 + Name: Glorious Suit + Type: Armor + Buy: 20 + Defense: 10 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Armor: true + EquipLevelMin: 81 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHPrate,20; bonus2 bSubRace,RC_DemiHuman,7; bonus2 bSubRace,RC_Player_Human,7; + - Id: 2395 + AegisName: Krieger_Suit2 + Name: Glorious Popularized Suit + Type: Armor + Buy: 20 + Defense: 10 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Armor: true + EquipLevelMin: 61 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,600; bonus bSPrecovRate,10; + - Id: 2396 + AegisName: Krieger_Suit3 + Name: Glorious Mass-Production Suit + Type: Armor + Buy: 20 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Armor: true + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,500; + - Id: 2397 + AegisName: Incredible_Coat + Name: Incredible Event Resignation Coat + Type: Armor + Buy: 10 + Weight: 900 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Armor: true + Refineable: true + - Id: 2398 + AegisName: Sniping_Suit_M + Name: Sniping Suit + Type: Armor + Buy: 20 + Weight: 750 + Defense: 42 + Slots: 1 + Jobs: + Hunter: true + Classes: + Upper: true + Third_Upper: true + Locations: + Armor: true + EquipLevelMin: 50 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,5; bonus bCritical,6+(readparam(bLuk)/10); bonus bDelayRate,-23; + - Id: 2399 + AegisName: Dragon_Vest + Name: Dragon Vest + Type: Armor + Buy: 20 + Weight: 500 + Defense: 20 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Third_Upper: true + Locations: + Armor: true + Refineable: true + Script: | + bonus bMdef,3; + - Id: 2401 + AegisName: Sandals + Name: Sandals + Type: Armor + Buy: 400 + Weight: 200 + Defense: 5 + Locations: + Shoes: true + Refineable: true + - Id: 2402 + AegisName: Sandals_ + Name: Sandals + Type: Armor + Buy: 400 + Weight: 200 + Defense: 5 + Slots: 1 + Locations: + Shoes: true + Refineable: true + - Id: 2403 + AegisName: Shoes + Name: Shoes + Type: Armor + Buy: 3500 + Weight: 400 + Defense: 10 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Shoes: true + Refineable: true + - Id: 2404 + AegisName: Shoes_ + Name: Shoes + Type: Armor + Buy: 3500 + Weight: 400 + Defense: 10 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Shoes: true + Refineable: true + - Id: 2405 + AegisName: Boots + Name: Boots + Type: Armor + Buy: 18000 + Weight: 600 + Defense: 16 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Gunslinger: true + Hunter: true + Knight: true + Merchant: true + Rebellion: true + Rogue: true + StarGladiator: true + Swordman: true + Taekwon: true + Thief: true + Locations: + Shoes: true + Refineable: true + - Id: 2406 + AegisName: Boots_ + Name: Boots + Type: Armor + Buy: 18000 + Weight: 600 + Defense: 16 + Slots: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Gunslinger: true + Hunter: true + Knight: true + Merchant: true + Rebellion: true + Rogue: true + StarGladiator: true + Swordman: true + Taekwon: true + Thief: true + Locations: + Shoes: true + Refineable: true + - Id: 2407 + AegisName: Chrystal_Pumps + Name: Crystal Pumps + Type: Armor + Buy: 20 + Weight: 100 + Defense: 5 + Jobs: + All: true + Novice: false + SuperNovice: false + Gender: Female + Locations: + Shoes: true + Refineable: true + Script: | + bonus bMdef,10; bonus bLuk,5; + - Id: 2408 + AegisName: Cuffs + Name: Shackles + Type: Armor + Buy: 5000 + Weight: 3000 + Defense: 18 + Locations: + Shoes: true + Refineable: true + - Id: 2409 + AegisName: Spiky_Heel + Name: High Heels + Type: Armor + Buy: 8500 + Weight: 600 + Defense: 4 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Shoes: true + Refineable: true + Script: | + bonus bMdef,5; + - Id: 2410 + AegisName: Sleipnir + Name: Sleipnir + Type: Armor + Buy: 20 + Weight: 3500 + Defense: 40 + Locations: + Shoes: true + EquipLevelMin: 94 + Script: | + bonus bMdef,10; bonus bMaxHPrate,20; bonus bMaxSPrate,20; bonus bSPrecovRate,25; bonus bSpeedRate,25; bonus bInt,25; + - Id: 2411 + AegisName: Grave + Name: Greaves + Type: Armor + Buy: 48000 + Weight: 750 + Defense: 27 + Jobs: + Crusader: true + Knight: true + Locations: + Shoes: true + EquipLevelMin: 65 + Refineable: true + - Id: 2412 + AegisName: Grave_ + Name: Greaves + Type: Armor + Buy: 54000 + Weight: 750 + Defense: 15 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Locations: + Shoes: true + EquipLevelMin: 65 + Refineable: true + - Id: 2413 + AegisName: Safty_Boots + Name: Safety Boots + Type: Armor + Buy: 34000 + Weight: 350 + Defense: 6 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Shoes: true + EquipLevelMin: 30 + - Id: 2414 + AegisName: Novice_Boots + Name: Novice Slippers + Type: Armor + Buy: 1 + Weight: 1 + Defense: 5 + Jobs: + Novice: true + SuperNovice: true + Locations: + Shoes: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 2415 + AegisName: Slipper + Name: Bunny Slipper + Type: Armor + Buy: 34000 + Weight: 300 + Defense: 3 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Gender: Female + Locations: + Shoes: true + EquipLevelMin: 30 + Refineable: true + Script: | + bonus bLuk,3; bonus bMdef,3; + - Id: 2416 + AegisName: Novice_Shoes + Name: Novice Shoes + Type: Armor + Buy: 35000 + Weight: 500 + Defense: 8 + Slots: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Shoes: true + EquipLevelMin: 40 + Refineable: true + Script: | + bonus bMaxHPrate,5; + - Id: 2417 + AegisName: Fricco_Shoes + Name: Fricco's Shoes + Type: Armor + Buy: 30000 + Weight: 500 + Defense: 12 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Shoes: true + EquipLevelMin: 65 + Refineable: true + Script: | + bonus bAgi,2; bonus2 bAddItemGroupHealRate,IG_Potion,20; + - Id: 2418 + AegisName: Vidar's_Boots + Name: Vidar's Boots + Type: Armor + Buy: 30000 + Weight: 650 + Defense: 13 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Shoes: true + EquipLevelMin: 65 + Refineable: true + Script: | + bonus bMaxHPrate,9; bonus bMaxSPrate,9; + - Id: 2419 + AegisName: Goibne's_Combat_Boots + Name: Goibne's Greaves + Type: Armor + Buy: 30000 + Weight: 700 + Defense: 13 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Shoes: true + EquipLevelMin: 54 + Refineable: true + Script: | + bonus bMdef,3; bonus bMaxHPrate,5; bonus bMaxSPrate,5; + - Id: 2420 + AegisName: Angel's_Arrival + Name: Angel's Reincarnation + Type: Armor + Buy: 10000 + Weight: 300 + Defense: 8 + Slots: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Shoes: true + EquipLevelMin: 25 + Refineable: true + Script: | + bonus bMaxHP,100; + - Id: 2421 + AegisName: Valkyrie_Shoes + Name: Valkyrian Shoes + Type: Armor + Weight: 500 + Defense: 13 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Third_Upper: true + Locations: + Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bUnbreakableShoes; 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); + - Id: 2422 + AegisName: High_Fashion_Sandals + Name: High Fashion Sandals + Type: Armor + Buy: 24000 + Weight: 200 + Defense: 7 + Slots: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Shoes: true + EquipLevelMin: 40 + Refineable: true + Script: | + bonus bMdef,10; + - Id: 2423 + AegisName: Variant_Shoes + Name: Variant Shoes + Type: Armor + Buy: 20 + Weight: 500 + Defense: 13 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Third_Upper: true + Locations: + Shoes: true + EquipLevelMin: 85 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxHPrate,20-.@r; bonus bMaxSPrate,20-.@r; bonus bDef,.@r/2; + - Id: 2424 + AegisName: Tidal_Shoes + Name: Tidal Shoes + Type: Armor + Buy: 20 + Weight: 300 + Defense: 13 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Third_Upper: true + Locations: + Shoes: true + EquipLevelMin: 55 + Refineable: true + Script: | + bonus2 bSubEle,Ele_Water,5; + - Id: 2425 + AegisName: Black_Leather_Boots + Name: Black Leather Boots + Type: Armor + Buy: 20 + Weight: 500 + Defense: 16 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Third_Upper: true + Locations: + Shoes: true + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bAgi,(getrefine()>=9?3:1); + - Id: 2426 + AegisName: Shadow_Walk + Name: Shadow Walk + Type: Armor + Buy: 20 + Weight: 2000 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Third_Upper: true + Locations: + Shoes: true + EquipLevelMin: 75 + Refineable: true + Script: | + bonus bMdef,10; bonus5 bAutoSpellWhenHit,"AS_CLOAKING",max(2,getskilllv("AS_CLOAKING")),100,BF_MAGIC,0; + - Id: 2427 + AegisName: Golden_Shoes + Name: Golden Shoes + Type: Armor + Buy: 20 + Weight: 300 + Defense: 4 + Locations: + Shoes: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,4; + - Id: 2428 + AegisName: Freyja_Boots + Name: Freyja Boots + Type: Armor + Weight: 300 + Defense: 10 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Shoes: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; + - Id: 2429 + AegisName: Iron_Boots01 + Name: Iron Boots + Type: Armor + Weight: 1500 + Defense: 5 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Shoes: true + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 2430 + AegisName: Iron_Boots02 + Name: Iron Boots + Type: Armor + Weight: 800 + Defense: 5 + Locations: + Shoes: true + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 2431 + AegisName: Valley_Shoes + Name: Valley Shoes + Type: Armor + Buy: 20 + Defense: 10 + Locations: + Shoes: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHPrate,7; bonus bMaxSPrate,7; + - Id: 2432 + AegisName: Spiky_Heel_ + Name: High Heels + Type: Armor + Buy: 8500 + Weight: 600 + Defense: 10 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Shoes: true + Refineable: true + Script: | + bonus bMdef,5; + - Id: 2433 + AegisName: Diabolus_Boots + Name: Diabolus Boots + Type: Armor + Buy: 20 + Weight: 250 + Defense: 15 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Shoes: true + Refineable: true + Script: | + bonus bMaxHP,(BaseLevel*10); + - Id: 2434 + AegisName: Black_Leather_Boots_ + Name: Black Leather Boots + Type: Armor + Buy: 20 + Weight: 500 + Defense: 16 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Third_Upper: true + Locations: + Shoes: true + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bAgi,(getrefine()>=9?3:1); + - Id: 2435 + AegisName: Battle_Greave + Name: Battle Greaves + Type: Armor + Buy: 10 + Defense: 15 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Ninja: true + Rogue: true + StarGladiator: true + Swordman: true + Taekwon: true + Thief: true + Locations: + Shoes: true + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,100; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; + - Id: 2436 + AegisName: Combat_Boots + Name: Combat Boots + Type: Armor + Buy: 10 + Defense: 9 + Slots: 1 + Jobs: + Acolyte: true + Archer: true + BardDancer: true + Hunter: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Shoes: true + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,100; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; + - Id: 2437 + AegisName: Battle_Boots + Name: Battle Boots + Type: Armor + Buy: 10 + Defense: 9 + Slots: 1 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Shoes: true + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,100; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; + - Id: 2438 + AegisName: Paw_Of_Cat + Name: Paw Of Cat + Type: Armor + Buy: 10 + Weight: 300 + Locations: + Shoes: true + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bFlee,5; bonus bAgi,1; /* skill "ALL_CATCRY",1; */ + - Id: 2439 + AegisName: Refresh_Shoes + Name: Refresh Shoes + Type: Armor + Buy: 20 + Defense: 9 + Locations: + Shoes: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHPrate,17; bonus bMaxSPrate,8; bonus2 bHPRegenRate,20,10000; bonus2 bSPRegenRate,3,10000; + - Id: 2440 + AegisName: Sprint_Shoes + Name: Sprint Shoes + Type: Armor + Buy: 20 + Weight: 300 + Defense: 10 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Shoes: true + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bAgi,1; bonus bSPrecovRate,5; + - Id: 2441 + AegisName: Beach_Sandal + Name: Beach Sandals + Type: Armor + Buy: 20 + Weight: 200 + Locations: + Shoes: true + Refineable: true + Script: | + bonus bStr,1; bonus bInt,1; bonus bAgi,1; bonus2 bSubEle,Ele_Fire,10; + - Id: 2442 + AegisName: Boots_Perforated + Name: Red Stocking Boots + Type: Armor + Defense: 7 + Locations: + Shoes: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bLuk,2; bonus bHPrecovRate,10; bonus bSPrecovRate,10; bonus3 bAutoSpellWhenHit,"WZ_QUAGMIRE",3,30; bonus bMdef,1; + - Id: 2443 + AegisName: Fish_Shoes + Name: Fisher's Boots + Type: Armor + Buy: 10 + Weight: 250 + Locations: + Shoes: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 2444 + AegisName: Krieger_Shoes1 + Name: Glorious Shoes + Type: Armor + Buy: 20 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Shoes: true + EquipLevelMin: 81 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHPrate,10; bonus2 bSubRace,RC_DemiHuman,4; bonus2 bSubRace,RC_Player_Human,4; bonus3 bAutoSpellWhenHit,"AL_INCAGI",1,10; + - Id: 2445 + AegisName: Krieger_Shoes2 + Name: Glorious Popularized Shoes + Type: Armor + Buy: 20 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Shoes: true + EquipLevelMin: 61 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHPrate,5; bonus bMaxSPrate,5; + - Id: 2446 + AegisName: Krieger_Shoes3 + Name: Glorious Mass-Production Shoes + Type: Armor + Buy: 20 + Defense: 10 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Shoes: true + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHPrate,5; + - Id: 2447 + AegisName: Military_Boots + Name: Army Boots + Type: Armor + Weight: 1000 + Defense: 5 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Shoes: true + Refineable: true + - Id: 2448 + AegisName: Air_Boss + Name: Air Boss + Type: Armor + Weight: 500 + Defense: 2 + Locations: + Shoes: true + Refineable: true + Script: | + bonus bAgi,1; + - Id: 2449 + AegisName: Variant_Shoes_M + Name: Variant Shoes + Type: Armor + Buy: 20 + Weight: 500 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Third_Upper: true + Locations: + Shoes: true + EquipLevelMin: 85 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMaxHPrate,20-.@r; bonus bMaxSPrate,20-.@r; bonus bDef,.@r/2; + - Id: 2450 + AegisName: Vital_Tree_Shoes + Name: Vital Tree Shoes + Type: Armor + Buy: 20 + Weight: 500 + Defense: 16 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Third_Upper: true + Locations: + Shoes: true + EquipLevelMin: 60 + Refineable: true + Script: | + bonus bMaxHPrate,10; bonus2 bHPRegenRate,30,10000; bonus bHealpower2,5; bonus bAddItemHealRate,5; bonus bMdef,3; bonus bVit,2; + - Id: 2451 + AegisName: Freyja_SSandal7 + Name: Freyja Sprit Sandals + Type: Armor + Buy: 20 + Weight: 400 + Defense: 5 + Locations: + Shoes: true + EquipLevelMin: 20 + Script: | + bonus bMaxHPrate,8; bonus bMaxSPrate,8; + - Id: 2452 + AegisName: Freyja_SSandal30 + Name: Freyja Sprit Sandals + Type: Armor + Buy: 20 + Weight: 400 + Defense: 5 + Locations: + Shoes: true + EquipLevelMin: 20 + Script: | + bonus bMaxHPrate,8; bonus bMaxSPrate,8; + - Id: 2453 + AegisName: Freyja_SSandal60 + Name: Freyja Sprit Sandals + Type: Armor + Buy: 20 + Weight: 400 + Defense: 5 + Locations: + Shoes: true + EquipLevelMin: 20 + Script: | + bonus bMaxHPrate,8; bonus bMaxSPrate,8; + - Id: 2454 + AegisName: Freyja_SSandal90 + Name: Freyja Sprit Sandals + Type: Armor + Buy: 20 + Weight: 400 + Defense: 5 + Locations: + Shoes: true + EquipLevelMin: 20 + Script: | + bonus bMaxHPrate,8; bonus bMaxSPrate,8; + - Id: 2455 + AegisName: Time_Keepr_Boots + Name: Time Keeper's Boots + Type: Armor + Buy: 30000 + Defense: 17 + Locations: + Shoes: true + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,1; bonus bMaxHP,100; bonus bHPrecovRate,10; bonus bSPrecovRate,10; + - Id: 2456 + AegisName: Para_Team_Boots1 + Name: Eden Team Boots I + Type: Armor + Defense: 14 + Locations: + Shoes: true + EquipLevelMin: 7 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bHPrecovRate,10; bonus bSPrecovRate,2; + - Id: 2457 + AegisName: Para_Team_Boots2 + Name: Eden Team Boots II + Type: Armor + Defense: 16 + Locations: + Shoes: true + EquipLevelMin: 26 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bHPrecovRate,12; bonus bSPrecovRate,4; + - Id: 2458 + AegisName: Para_Team_Boots3 + Name: Eden Team Boots III + Type: Armor + Defense: 18 + Locations: + Shoes: true + EquipLevelMin: 40 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bHPrecovRate,14; bonus bSPrecovRate,6; + - Id: 2459 + AegisName: Upg_Shoes + Name: Upg Shoes + Type: Armor + Buy: 20 + Weight: 200 + Defense: 15 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Shoes: true + Refineable: true + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bMaxHPrate,3; + - Id: 2460 + AegisName: Upg_Boots + Name: Upg Boots + Type: Armor + Buy: 20 + Weight: 300 + Defense: 21 + Slots: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Gunslinger: true + Hunter: true + Knight: true + Merchant: true + Rebellion: true + Rogue: true + StarGladiator: true + Swordman: true + Taekwon: true + Thief: true + Locations: + Shoes: true + Refineable: true + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bMaxHPrate,3; + - Id: 2461 + AegisName: Upg_Greave + Name: Upg Greaves + Type: Armor + Buy: 20 + Weight: 400 + Defense: 32 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Locations: + Shoes: true + Refineable: true + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bMaxHPrate,3; + - Id: 2462 + AegisName: Sleipnir_C + Name: Sleipnir + Type: Armor + Buy: 20 + Defense: 40 + Locations: + Shoes: true + EquipLevelMin: 94 + Script: | + bonus bMdef,10; bonus bMaxHPrate,20; bonus bMaxSPrate,20; bonus bSPrecovRate,15; bonus bSpeedRate,25; + - Id: 2463 + AegisName: Feral_Boots + Name: Feral Boots + Type: Armor + Buy: 20 + Defense: 12 + Locations: + Shoes: true + EquipLevelMin: 75 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 2464 + AegisName: No_Fear_Shoes + Name: No Fear Shoes + Type: Armor + Defense: 6 + Locations: + Shoes: true + EquipLevelMin: 20 + Script: | + bonus bStr,1; bonus bInt,1; bonus bDex,1; + - Id: 2465 + AegisName: Dance_Shoes + Name: Dance Shoes + Type: Armor + Buy: 20 + Weight: 300 + Defense: 15 + Slots: 1 + Jobs: + BardDancer: true + Locations: + Shoes: true + EquipLevelMin: 105 + Refineable: true + Script: | + bonus bAgi,1; bonus bAspdRate,2; bonus2 bSkillUseSP,"WA_SWING_DANCE",32; + - Id: 2466 + AegisName: Training_Shoes + Name: Training Shoes + Type: Armor + Buy: 20 + Weight: 300 + Slots: 1 + Locations: + Shoes: true + EquipLevelMin: 1 + Refineable: true + - Id: 2467 + AegisName: Golden_Rod_Shoes + Name: Golden Rod Shoes + Type: Armor + Buy: 20 + Weight: 500 + Defense: 12 + Jobs: + Wizard: true + Locations: + Shoes: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bMdef,2; bonus bMaxHP,500; bonus2 bSubEle,Ele_Wind,15; + - Id: 2468 + AegisName: Aqua_Shoes + Name: Aqua Shoes + Type: Armor + Buy: 20 + Weight: 500 + Defense: 12 + Jobs: + Wizard: true + Locations: + Shoes: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bMdef,2; bonus bMaxHP,500; bonus2 bSubEle,Ele_Water,15; + - Id: 2469 + AegisName: Crimson_Shoes + Name: Crismons Shoes + Type: Armor + Buy: 20 + Weight: 500 + Defense: 12 + Jobs: + Wizard: true + Locations: + Shoes: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bMdef,2; bonus bMaxHP,500; bonus2 bSubEle,Ele_Fire,15; + - Id: 2470 + AegisName: Forest_Shoes + Name: Forest Shoes + Type: Armor + Buy: 20 + Weight: 500 + Defense: 12 + Jobs: + Wizard: true + Locations: + Shoes: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bMdef,2; bonus bMaxHP,500; bonus2 bSubEle,Ele_Earth,15; + - Id: 2471 + AegisName: Shoes_Of_Affection + Name: Shoes Of Affection + Type: Armor + Buy: 20 + Weight: 300 + Defense: 12 + Jobs: + Priest: true + Locations: + Shoes: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bMaxHP,500; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Formless,-10; bonus2 bSubRace,RC_Undead,-10; bonus2 bSubRace,RC_Brute,-10; bonus2 bSubRace,RC_Player_Doram,-10; bonus2 bSubRace,RC_Plant,-10; bonus2 bSubRace,RC_Insect,-10; bonus2 bSubRace,RC_Fish,-10; bonus2 bSubRace,RC_Demon,-10; bonus2 bSubRace,RC_Angel,-10; bonus2 bSubRace,RC_Dragon,-10; + - Id: 2472 + AegisName: Shoes_Of_Judgement + Name: Shoes Of Judgement + Type: Armor + Buy: 20 + Weight: 300 + Defense: 12 + Jobs: + Priest: true + Locations: + Shoes: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus2 bSkillAtk,"AB_JUDEX",30; bonus2 bSkillUseSP,"AB_JUDEX",-40; bonus bMaxSP,150; + - Id: 2473 + AegisName: Para_Team_Boots4 + Name: Eden Team Boots IV + Type: Armor + Defense: 20 + Locations: + Shoes: true + EquipLevelMin: 60 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAgi,1; bonus bVit,1; bonus bHPrecovRate,28; bonus bSPrecovRate,12; + - Id: 2474 + AegisName: Lehmannza_Shoes + Name: Lehmannza Shoes + Type: Armor + Buy: 20 + Weight: 500 + Defense: 3 + Slots: 1 + Locations: + Shoes: true + EquipLevelMin: 60 + Refineable: true + Script: | + bonus bMdef,3; + - Id: 2475 + AegisName: Ur_Greave + Name: Ur's Greaves + Type: Armor + Buy: 20 + Weight: 900 + Defense: 32 + Slots: 1 + Jobs: + Knight: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Shoes: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bMaxSP,40; .@r = getrefine(); if(.@r>7) bonus bMaxHPrate,.@r-7; + - Id: 2476 + AegisName: Peuz_Greave + Name: Peuz's Greaves + Type: Armor + Buy: 20 + Weight: 900 + Defense: 32 + Slots: 1 + Jobs: + Knight: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Shoes: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bMaxSP,40; .@r = getrefine(); if(.@r>7) bonus bAgi,.@r-7; + - Id: 2477 + AegisName: Sabah_Shoes + Name: Sapha Shoes + Type: Armor + Buy: 20 + Weight: 400 + Defense: 18 + Slots: 1 + Jobs: + Assassin: true + Locations: + Shoes: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bMaxSP,30; bonus bLuk,3; + - Id: 2478 + AegisName: Nab_Shoes + Name: Nab Shoes + Type: Armor + Buy: 20 + Weight: 400 + Defense: 18 + Slots: 1 + Jobs: + Assassin: true + Locations: + Shoes: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bFlee,3; bonus bInt,2; + - Id: 2479 + AegisName: White_Wing_Boots + Name: White Wing Boots + Type: Armor + Buy: 20 + Weight: 400 + Defense: 18 + Slots: 1 + Jobs: + Hunter: true + Locations: + Shoes: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bAgi,2; bonus2 bSkillUseSP,"RA_AIMEDBOLT",10; + - Id: 2480 + AegisName: Black_Wing_Boots + Name: Black Wing Boots + Type: Armor + Buy: 20 + Weight: 400 + Defense: 18 + Slots: 1 + Jobs: + Hunter: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Shoes: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bInt,2; bonus bMaxSPrate,5; + - Id: 2481 + AegisName: Rune_Boots + Name: Rune Boots + Type: Armor + Buy: 20 + Weight: 100 + Defense: 5 + Locations: + Shoes: true + Refineable: true + Script: | + .@a = readparam(bStr); .@b = readparam(bInt); bonus bBaseAtk,(.@a>=120)?(20):((.@a>=90)?(10):(0)); bonus bMatkRate,(.@b>=120)?(5):((.@b>=90)?(3):(0)); + - Id: 2482 + AegisName: Shoes_Of_Valor + Name: Shoes Of Valor + Type: Armor + Defense: 4 + Locations: + Shoes: true + Script: | + skill "AL_INCAGI",1; bonus bUseSPrate,10; + - Id: 2483 + AegisName: Siege_Greave + Name: Siege Greaves + Type: Armor + Buy: 10 + Weight: 750 + Defense: 30 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + StarGladiator: true + Swordman: true + Taekwon: true + Locations: + Shoes: true + EquipLevelMin: 95 + Refineable: true + Script: | + bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; + - Id: 2484 + AegisName: Siege_Boots + Name: Siege Boots + Type: Armor + Buy: 10 + Weight: 500 + Defense: 20 + Slots: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Gunslinger: true + Hunter: true + KagerouOboro: true + Knight: true + Merchant: true + Ninja: true + Rebellion: true + Rogue: true + StarGladiator: true + Swordman: true + Taekwon: true + Thief: true + Locations: + Shoes: true + EquipLevelMin: 95 + Refineable: true + Script: | + bonus bMdef,5; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; + - Id: 2485 + AegisName: Siege_Shoes + Name: Siege Shoes + Type: Armor + Buy: 10 + Weight: 350 + Defense: 15 + Slots: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Novice: true + Priest: true + Sage: true + SoulLinker: true + SuperNovice: true + Wizard: true + Locations: + Shoes: true + EquipLevelMin: 95 + Refineable: true + Script: | + bonus bMdef,10; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; + - Id: 2486 + AegisName: Shadow_Walk_ + Name: Shadow Walk + Type: Armor + Buy: 20 + Weight: 2000 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Shoes: true + EquipLevelMin: 75 + Refineable: true + Script: | + bonus bMdef,10; + - Id: 2487 + AegisName: Vital_Tree_Shoes_ + Name: Vital Tree Shoes + Type: Armor + Buy: 20 + Weight: 500 + Defense: 16 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Shoes: true + EquipLevelMin: 60 + Refineable: true + Script: | + bonus bVit,2; bonus bMdef,3; + - Id: 2488 + AegisName: Fricco_Shoes_ + Name: Fricco Shoes + Type: Armor + Buy: 30000 + Weight: 500 + Defense: 12 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Shoes: true + EquipLevelMin: 65 + Refineable: true + Script: | + bonus bAgi,2; bonus2 bAddItemGroupHealRate,IG_Potion,20; + - Id: 2489 + AegisName: Vidar's_Boots_ + Name: Vidar's Boots + Type: Armor + Buy: 30000 + Weight: 650 + Defense: 13 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Shoes: true + EquipLevelMin: 65 + Refineable: true + Script: | + bonus bMaxHPrate,9; bonus bMaxSPrate,9; + - Id: 2491 + AegisName: Bangungot_Boots + Name: Bangungot Boots of Nightmare + Type: Armor + Buy: 20 + Weight: 600 + Defense: 10 + Locations: + Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus bMdef,.@r; if(.@r>=14){ bonus bSpeedRate,25; } + - Id: 2492 + AegisName: Bayani_Bangungot_Boots + Name: Bayani Bangungot Boots of Nightmare + Type: Armor + Buy: 20 + Weight: 600 + Defense: 10 + Slots: 1 + Locations: + Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus bMdef,.@r; if(.@r>=12){ bonus bSpeedRate,25; } + - Id: 2493 + AegisName: Goibne's_Combat_Boots_ + Name: Goibne's Greaves + Type: Armor + Buy: 30000 + Weight: 700 + Defense: 13 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Shoes: true + EquipLevelMin: 54 + Refineable: true + Script: | + bonus bMdef,3; bonus bMaxHPrate,5; bonus bMaxSPrate,5; + - Id: 2494 + AegisName: Chrystal_Pumps_ + Name: Crystal Pumps + Type: Armor + Buy: 20 + Weight: 100 + Defense: 5 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Gender: Female + Locations: + Shoes: true + Refineable: true + Script: | + bonus bMdef,10; bonus bLuk,5; + - Id: 2495 + AegisName: Egir_Shoes + Name: Egir Shoes + Type: Armor + Buy: 200000 + Weight: 300 + Defense: 13 + Slots: 1 + Locations: + Shoes: true + EquipLevelMin: 110 + Refineable: true + Script: | + 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; + - Id: 2496 + AegisName: TE_Woe_Shoes + Name: TE Woe Shoes + Type: Armor + Defense: 5 + Locations: + Shoes: true + EquipLevelMin: 40 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,5; bonus bMaxHP,150; bonus bMaxSP,150; bonus2 bAddRace,RC_Player_Human,5; bonus2 bMagicAddRace,RC_Player_Human,5; bonus2 bResEff,Eff_Freeze,25; + - Id: 2497 + AegisName: TE_Woe_Boots + Name: TE Woe Boots + Type: Armor + Defense: 10 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Shoes: true + EquipLevelMin: 40 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,200; bonus bMaxSP,100; bonus2 bAddRace,RC_Player_Human,10; bonus2 bResEff,Eff_Freeze,25; + - Id: 2498 + AegisName: TE_Woe_Magic_Sandal + Name: TE Woe Magic Sandal + Type: Armor + Defense: 5 + Jobs: + Acolyte: true + Mage: true + Monk: true + Novice: true + Priest: true + Sage: true + SoulLinker: true + SuperNovice: true + Wizard: true + Locations: + Shoes: true + EquipLevelMin: 40 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,5; bonus bMaxHP,100; bonus bMaxSP,200; bonus2 bMagicAddRace,RC_Player_Human,5; bonus2 bResEff,Eff_Freeze,25; + - Id: 2499 + AegisName: Temporal_Boots + Name: Temporal Boots + Type: Armor + Buy: 400 + Weight: 600 + Defense: 20 + Locations: + Shoes: true + EquipLevelMin: 10 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxHP,300; bonus bMaxSP,30; bonus bMaxHP,100*(.@r/3); bonus bMaxSP,10*(.@r/3); + - Id: 2501 + AegisName: Hood + Name: Hood + Type: Armor + Buy: 1000 + Weight: 200 + Defense: 4 + Locations: + Garment: true + Refineable: true + - Id: 2502 + AegisName: Hood_ + Name: Hood + Type: Armor + Buy: 1000 + Weight: 200 + Defense: 4 + Slots: 1 + Locations: + Garment: true + Refineable: true + - Id: 2503 + AegisName: Muffler + Name: Muffler + Type: Armor + Buy: 5000 + Weight: 400 + Defense: 8 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Garment: true + Refineable: true + - Id: 2504 + AegisName: Muffler_ + Name: Muffler + Type: Armor + Buy: 5000 + Weight: 400 + Defense: 8 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Garment: true + Refineable: true + - Id: 2505 + AegisName: Manteau + Name: Manteau + Type: Armor + Buy: 32000 + Weight: 600 + Defense: 13 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + StarGladiator: true + Swordman: true + Taekwon: true + Thief: true + Locations: + Garment: true + Refineable: true + - Id: 2506 + AegisName: Manteau_ + Name: Manteau + Type: Armor + Buy: 32000 + Weight: 600 + Defense: 13 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + StarGladiator: true + Swordman: true + Taekwon: true + Thief: true + Locations: + Garment: true + Refineable: true + - Id: 2507 + AegisName: Cape_Of_Ancient_Lord + Name: Ancient Cape + Type: Armor + Buy: 82000 + Weight: 600 + Defense: 9 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Garment: true + EquipLevelMin: 40 + Refineable: true + Script: | + bonus bAgi,1; + - Id: 2508 + AegisName: Ragamuffin_Cape + Name: Ragamuffin Manteau + Type: Armor + Buy: 56000 + Weight: 500 + Defense: 4 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Garment: true + Refineable: true + Script: | + bonus bUnbreakableGarment; bonus bMdef,10; + - Id: 2509 + AegisName: Clack_Of_Servival + Name: Survivor's Manteau + Type: Armor + Buy: 20000 + Weight: 550 + Defense: 10 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Garment: true + EquipLevelMin: 75 + Refineable: true + Script: | + bonus bMdef,5; bonus bVit,10; + - Id: 2510 + AegisName: Novice_Hood + Name: Somber Novice Hood + Type: Armor + Buy: 1 + Weight: 1 + Defense: 4 + Jobs: + Novice: true + SuperNovice: true + Locations: + Garment: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bSubEle,Ele_Neutral,20; + - Id: 2511 + AegisName: Skeleton's_Cape + Name: Skeleton Manteau + Type: Armor + Buy: 5000 + Weight: 700 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Garment: true + EquipLevelMin: 75 + Refineable: true + Script: | + bonus bStr,2; bonus bInt,-3; bonus bDex,2; bonus bVit,-3; bonus bLuk,2; bonus bAgi,-4; + - Id: 2512 + AegisName: Novice_Manteau + Name: Novice Manteau + Type: Armor + Buy: 50000 + Weight: 500 + Defense: 7 + Slots: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Garment: true + EquipLevelMin: 40 + Refineable: true + Script: | + bonus2 bSubEle,Ele_Neutral,10; + - Id: 2513 + AegisName: Celestial_Robe + Name: Heavenly Maiden Robe + Type: Armor + Buy: 20 + Weight: 500 + Defense: 18 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Garment: true + EquipLevelMin: 80 + Refineable: true + - Id: 2514 + AegisName: Pauldron + Name: Pauldron + Type: Armor + Buy: 20 + Weight: 800 + Defense: 25 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Garment: true + EquipLevelMin: 80 + Refineable: true + - Id: 2515 + AegisName: Wing_Of_Eagle + Name: Eagle Wing + Type: Armor + Buy: 20000 + Weight: 300 + Defense: 12 + Slots: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Garment: true + EquipLevelMin: 85 + Refineable: true + - Id: 2516 + AegisName: Falcon_Robe + Name: Falcon Muffler + Type: Armor + Buy: 30000 + Weight: 400 + Defense: 8 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Garment: true + EquipLevelMin: 65 + Refineable: true + Script: | + bonus bFlee,15; bonus bFlee2,5; + - Id: 2517 + AegisName: Vali's_Manteau + Name: Vali's Manteau + Type: Armor + Buy: 30000 + Weight: 600 + Defense: 13 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Garment: true + EquipLevelMin: 65 + Refineable: true + Script: | + bonus2 bSubEle,Ele_Neutral,15; + - Id: 2518 + AegisName: Morpheus's_Shawl + Name: Morpheus's Shawl + Type: Armor + Buy: 30000 + Weight: 600 + Defense: 8 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Garment: true + EquipLevelMin: 33 + Refineable: true + Script: | + bonus bMaxSPrate,10; bonus bMdef,3; + - Id: 2519 + AegisName: Morrigane's_Manteau + Name: Morrigane's Manteau + Type: Armor + Buy: 30000 + Weight: 600 + Defense: 9 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Garment: true + EquipLevelMin: 61 + Refineable: true + Script: | + bonus bLuk,2; bonus bFlee2,8; + - Id: 2520 + AegisName: Goibne's_Shoulder_Arms + Name: Goibne's Spaulders + Type: Armor + Buy: 30000 + Weight: 700 + Defense: 11 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Garment: true + EquipLevelMin: 54 + Refineable: true + Script: | + bonus bLongAtkDef,10; bonus bMdef,2; bonus bVit,1; + - Id: 2521 + AegisName: Angel's_Warmth + Name: Angelic Cardigan + Type: Armor + Buy: 10000 + Weight: 400 + Defense: 5 + Slots: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Garment: true + EquipLevelMin: 20 + Refineable: true + Script: | + bonus bHPrecovRate,5; + - Id: 2522 + AegisName: Undershirt + Name: Undershirt + Type: Armor + Buy: 20000 + Weight: 150 + Defense: 5 + Locations: + Garment: true + Refineable: true + Script: | + bonus bMdef,1; + - Id: 2523 + AegisName: Undershirt_ + Name: Undershirt + Type: Armor + Buy: 20000 + Weight: 150 + Defense: 5 + Slots: 1 + Locations: + Garment: true + Refineable: true + Script: | + bonus bMdef,1; + - Id: 2524 + AegisName: Valkyrie_Manteau + Name: Valkyrian Manteau + Type: Armor + Weight: 500 + Defense: 10 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Third_Upper: true + Locations: + Garment: true + Refineable: true + Script: | + bonus bUnbreakableGarment; 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); + - Id: 2525 + AegisName: Cape_Of_Ancient_Lord_ + Name: Ancient Cape + Type: Armor + Buy: 82000 + Weight: 600 + Defense: 9 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Garment: true + EquipLevelMin: 40 + Refineable: true + Script: | + bonus bAgi,1; + - Id: 2526 + AegisName: Dragon_Scale_Coat + Name: Coat of Dragon Scale + Type: Armor + Buy: 20 + Weight: 10 + Defense: 14 + Locations: + Garment: true + EquipLevelMin: 50 + Refineable: true + Script: | + bonus bMaxHP,300; + - Id: 2527 + AegisName: Dragon_Breath + Name: Dragon Breath + Type: Armor + Buy: 20 + Weight: 600 + Defense: 16 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Third_Upper: true + Locations: + Garment: true + EquipLevelMin: 48 + Refineable: true + Script: | + bonus2 bSubRace,RC_Dragon,15; + - Id: 2528 + AegisName: Wool_Scarf + Name: Wool Scarf + Type: Armor + Buy: 20 + Weight: 500 + Defense: 11 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Third_Upper: true + Locations: + Garment: true + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bMdef,4; + - Id: 2529 + AegisName: Rider_Insignia + Name: Rider Insignia + Type: Armor + Buy: 20 + Weight: 500 + Defense: 13 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Third_Upper: true + Locations: + Garment: true + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bAgi,2; + - Id: 2530 + AegisName: Rider_Insignia_ + Name: Rider Insignia + Type: Armor + Buy: 20 + Weight: 500 + Defense: 13 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Third_Upper: true + Locations: + Garment: true + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bAgi,2; + - Id: 2531 + AegisName: Ulfhedinn + Name: Ulfhedinn + Type: Armor + Buy: 20 + Weight: 700 + Defense: 13 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Classes: + Upper: true + Third_Upper: true + Locations: + Garment: true + EquipLevelMin: 70 + Refineable: true + Script: | + bonus3 bAutoSpellWhenHit,"NPC_STONESKIN",6,20; + - Id: 2532 + AegisName: Mithril_Magic_Cape + Name: Mithril Magic Cape + Type: Armor + Buy: 20 + Weight: 400 + Defense: 8 + Slots: 1 + Jobs: + Acolyte: true + Archer: true + BardDancer: true + Hunter: true + Mage: true + Monk: true + Priest: true + Sage: true + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Garment: true + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bMdef,3; bonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,200,BF_MAGIC,0; + - Id: 2533 + AegisName: Freyja_Cape + Name: Freyja Cape + Type: Armor + Weight: 200 + Defense: 10 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Garment: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bSubRace,RC_DemiHuman,15; bonus2 bSubRace,RC_Player_Human,15; + - Id: 2534 + AegisName: Ruffler + Name: Ruffler + Type: Armor + Buy: 20 + Defense: 10 + Locations: + Garment: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bSubEle,Ele_Neutral,17; bonus bFlee,17; + - Id: 2535 + AegisName: Cloak_Of_Survival_C + Name: Cloak Of Survival + Type: Armor + Buy: 1 + Defense: 5 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Garment: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bVit,10; bonus bMdef,10; + - Id: 2536 + AegisName: Skin_Of_Ventus + Name: Skin of Ventus + Type: Armor + Buy: 20 + Weight: 250 + Defense: 7 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Garment: true + EquipLevelMin: 60 + Refineable: true + Script: | + bonus bMdef,2; bonus bMaxHP,200; bonus bFlee,10; + - Id: 2537 + AegisName: Diabolus_Manteau + Name: Diabolus Manteau + Type: Armor + Buy: 20 + Weight: 250 + Defense: 15 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Garment: true + Refineable: true + Script: | + bonus2 bSubEle,Ele_Neutral,5; bonus bMaxHP,100; bonus2 bAddDamageClass,1916,10; bonus2 bAddDamageClass,1917,10; + - Id: 2538 + AegisName: Commander_Manteau + Name: Captain's Manteau + Type: Armor + Buy: 10 + Defense: 28 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Ninja: true + Rogue: true + StarGladiator: true + Swordman: true + Taekwon: true + Thief: true + Locations: + Garment: true + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,50; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; + - Id: 2539 + AegisName: Commander_Manteau_ + Name: Commander's Manteau + Type: Armor + Buy: 10 + Defense: 20 + Slots: 1 + Jobs: + Acolyte: true + Archer: true + BardDancer: true + Hunter: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Garment: true + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,50; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; + - Id: 2540 + AegisName: Sheriff_Manteau + Name: Sheriff's Manteau + Type: Armor + Buy: 10 + Defense: 20 + Slots: 1 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Garment: true + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,50; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; + - Id: 2541 + AegisName: Asprika + Name: Asprika + Type: Armor + Buy: 20 + Weight: 400 + Defense: 40 + Locations: + Garment: true + EquipLevelMin: 94 + Script: | + 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; + - Id: 2542 + AegisName: Flame_Manteau + Name: Flame Manteau of Naght Sieger + Type: Armor + Buy: 20 + Weight: 700 + Defense: 16 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Third_Upper: true + Locations: + Garment: true + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bMaxHPrate,5; bonus bMdef,2; bonus bMatkRate,1; bonus2 bAddEle,Ele_Fire,2; + - Id: 2543 + AegisName: Sylphid_Manteau + Name: Sylphid Manteau + Type: Armor + Buy: 20 + Defense: 9 + Locations: + Garment: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bFlee,13; bonus2 bSubEle,Ele_Neutral,13; bonus bFlee2,1; + - Id: 2544 + AegisName: Leather_Of_Tendrilion + Name: Leather of Tendrilion + Type: Armor + Buy: 20 + Weight: 300 + Defense: 14 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Garment: true + Refineable: true + Script: | + bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Earth,5; bonus2 bSubRace,RC_Plant,5; bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5; + - Id: 2545 + AegisName: Musika + Name: Musika + Type: Armor + Buy: 20 + Weight: 500 + Defense: 10 + Slots: 1 + Jobs: + Monk: true + Priest: true + Classes: + Upper: true + Third_Upper: true + Locations: + Garment: true + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bMdef,3; bonus3 bAutoSpellwhenhit,"AL_HEAL",max(1,getskilllv("AL_HEAL")),20; + - Id: 2546 + AegisName: Beach_Manteau + Name: Beach Manteau + Type: Armor + Buy: 20 + Weight: 600 + Slots: 1 + Locations: + Garment: true + Refineable: true + Script: | + bonus bStr,1; bonus bInt,1; bonus2 bSubEle,Ele_Fire,10; + - Id: 2547 + AegisName: Cheap_Running_Shirts + Name: Cheap Undershirt + Type: Armor + Defense: 8 + Locations: + Garment: true + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,2; bonus bFlee,10; bonus2 bSubEle,Ele_Neutral,10; bonus bMdef,1; + - Id: 2548 + AegisName: Muffler_C + Name: Neo Muffler + Type: Armor + Defense: 5 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Third_Upper: true + Locations: + Garment: true + EquipLevelMin: 95 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus bMaxHPrate,10; bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Fire,5; bonus2 bSubEle,Ele_Holy,5; bonus2 bSubEle,Ele_Dark,5; + - Id: 2549 + AegisName: Krieger_Muffler1 + Name: Glorious Muffler + Type: Armor + Buy: 20 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Garment: true + EquipLevelMin: 81 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHPrate,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; + - Id: 2550 + AegisName: Fisher's_Muffler + Name: Fisher's Muffler + Type: Armor + Buy: 20 + Weight: 200 + Locations: + Garment: true + Refineable: true + - Id: 2551 + AegisName: Rider_Insignia_M + Name: Crest of the Rider + Type: Armor + Buy: 20 + Weight: 500 + Defense: 4 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Third_Upper: true + Locations: + Garment: true + EquipLevelMin: 55 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAgi,2; + - Id: 2552 + AegisName: Mithril_Magic_Cape_M + Name: Mithril Magic Manteau + Type: Armor + Buy: 20 + Weight: 400 + Defense: 3 + Slots: 1 + Jobs: + Acolyte: true + Archer: true + BardDancer: true + Hunter: true + Mage: true + Monk: true + Priest: true + Sage: true + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Garment: true + EquipLevelMin: 70 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,3; bonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,200,BF_MAGIC,0; + - Id: 2553 + AegisName: Dragon_Manteau + Name: Dragon Manteau + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 14 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Third_Upper: true + Locations: + Garment: true + Refineable: true + Script: | + bonus bAgi,1; bonus bMdef,5; + - Id: 2554 + AegisName: Piece_Of_Angent_Skin + Name: Nydhorgg's Shadow Garb + Type: Armor + Buy: 20 + Weight: 400 + Defense: 25 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Third_Upper: true + Locations: + Garment: true + EquipLevelMin: 90 + Refineable: true + Script: | + bonus2 bSubEle,Ele_All,7; bonus bMaxSP,(BaseLevel/3)+(getrefine()*10); bonus2 bSPDrainRate,10,1; bonus bMdef,3; + - Id: 2555 + AegisName: Freyja_SScarf7 + Name: Freyja Soul Scarf + Type: Armor + Buy: 20 + Weight: 400 + Defense: 4 + Locations: + Garment: true + EquipLevelMin: 20 + Script: | + bonus bFlee,15; bonus2 bSubEle,Ele_Neutral,15; + - Id: 2556 + AegisName: Freyja_SScarf30 + Name: Freyja Soul Scarf + Type: Armor + Buy: 20 + Weight: 400 + Defense: 4 + Locations: + Garment: true + EquipLevelMin: 20 + Script: | + bonus bFlee,15; bonus2 bSubEle,Ele_Neutral,15; + - Id: 2557 + AegisName: Freyja_SScarf60 + Name: Freyja Soul Scarf + Type: Armor + Buy: 20 + Weight: 400 + Defense: 4 + Locations: + Garment: true + EquipLevelMin: 20 + Script: | + bonus bFlee,15; bonus2 bSubEle,Ele_Neutral,15; + - Id: 2558 + AegisName: Freyja_SScarf90 + Name: Freyja Soul Scarf + Type: Armor + Buy: 20 + Weight: 400 + Defense: 4 + Locations: + Garment: true + EquipLevelMin: 20 + Script: | + bonus bFlee,15; bonus2 bSubEle,Ele_Neutral,15; + - Id: 2559 + AegisName: Time_Keepr_Manteau + Name: Time Keeper's Manteau + Type: Armor + Buy: 30000 + Defense: 9 + Locations: + Garment: true + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,1; bonus bFlee,10; bonus2 bSubEle,Ele_Neutral,10; + - Id: 2560 + AegisName: Para_Team_Manteau + Name: Eden Team Manteau I + Type: Armor + Defense: 14 + Locations: + Garment: true + EquipLevelMin: 7 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bSubEle,Ele_Neutral,10; + - Id: 2561 + AegisName: Upg_Hood + Name: Upg Hood + Type: Armor + Weight: 100 + Defense: 9 + Slots: 1 + Locations: + Garment: true + Refineable: true + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bMaxHPrate,3; + - Id: 2562 + AegisName: Upg_Muffler + Name: Upg Muffler + Type: Armor + Buy: 20 + Weight: 200 + Defense: 13 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Garment: true + Refineable: true + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bMaxHPrate,3; + - Id: 2563 + AegisName: Upg_Manteau + Name: Upg Manteau + Type: Armor + Buy: 20 + Weight: 300 + Defense: 18 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + StarGladiator: true + Swordman: true + Taekwon: true + Thief: true + Locations: + Garment: true + Refineable: true + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bMaxHPrate,3; + - Id: 2564 + AegisName: Feral_Tail + Name: Feral Tail + Type: Armor + Buy: 20 + Defense: 16 + Locations: + Garment: true + EquipLevelMin: 75 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 2565 + AegisName: Beach_Towel + Name: Beach Towel + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Slots: 1 + Locations: + Garment: true + Refineable: true + Script: | + bonus bMdef,3; bonus bFlee,7; + - Id: 2566 + AegisName: Half_Asprika + Name: Half Asprika + Type: Armor + Buy: 20 + Defense: 20 + Locations: + Garment: true + EquipLevelMin: 47 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + 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; + - Id: 2567 + AegisName: Academy_Manteau + Name: Academy Manteau + Type: Armor + Weight: 600 + Defense: 3 + Slots: 1 + Jobs: + Archer: true + Novice: true + SuperNovice: true + Thief: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Garment: true + Refineable: true + - Id: 2568 + AegisName: Muffler_Of_Roki + Name: Loki's Muffler + Type: Armor + Buy: 20 + Weight: 400 + Defense: 10 + Locations: + Garment: true + EquipLevelMin: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAgi,1; bonus2 bSkillAtk,"ASC_BREAKER",5; bonus2 bSkillAtk,"GC_CROSSIMPACT",5; + - Id: 2569 + AegisName: Shawl_Of_Affection + Name: Shawl Of Affection + Type: Armor + Buy: 20 + Weight: 400 + Defense: 12 + Jobs: + Priest: true + Locations: + Garment: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bFlee2,5; autobonus2 "{ bonus2 bHPRegenRate,1000,5000; }",300,90000,BF_WEAPON; autobonus2 "{ bonus2 bHPRegenRate,1000,5000; }",400,90000,BF_MAGIC; + - Id: 2570 + AegisName: Shawl_Of_Judgement + Name: Shawl Of Judgement + Type: Armor + Buy: 20 + Weight: 400 + Defense: 12 + Jobs: + Priest: true + Locations: + Garment: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bFlee,5; .@i = max(2,getskilllv("AB_ORATIO")); bonus5 bAutoSpellWhenHit,"AB_ORATIO",.@i,30,BF_WEAPON,0; bonus5 bAutoSpellWhenHit,"AB_ORATIO",.@i,40,BF_MAGIC,0; + - Id: 2571 + AegisName: Para_Team_Manteau2 + Name: Eden Team Manteau II + Type: Armor + Defense: 18 + Locations: + Garment: true + EquipLevelMin: 60 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bFlee,12; bonus2 bSubEle,Ele_Neutral,10; + - Id: 2572 + AegisName: Katabart_Sholder + Name: Katabart Sholder + Type: Armor + Buy: 20 + Weight: 3000 + Defense: 4 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 70 + Refineable: true + - Id: 2573 + AegisName: Archangel_Wing + Name: Archangel Wings + Type: Armor + Weight: 200 + Defense: 18 + Slots: 1 + Locations: + Garment: true + Refineable: true + View: 1 + Trade: + Override: 100 + NoDrop: true + - Id: 2574 + AegisName: Ur_Manteau + Name: Ur's Manteau + Type: Armor + Buy: 20 + Weight: 600 + Defense: 20 + Jobs: + Knight: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Garment: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bMaxHPrate,2; bonus2 bSubEle,Ele_Neutral,10; + - Id: 2575 + AegisName: Peuz_Manteau + Name: Peuz's Manteau + Type: Armor + Buy: 20 + Weight: 600 + Defense: 16 + Jobs: + Knight: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Garment: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bFlee,10; bonus bCritical,10; + - Id: 2576 + AegisName: Bravery_Bag + Name: Adventurer's Backpack + Type: Armor + Weight: 200 + Defense: 20 + Slots: 1 + Locations: + Garment: true + Refineable: true + View: 2 + Trade: + Override: 100 + NoDrop: true + Script: | + skill "BS_GREED",1; .@r = getrefine(); if(.@r>=7) { if(readparam(bStr)>=90) { bonus bBaseAtk,(.@r>=9)?30:20; } if(readparam(bInt)>=90) { bonus bMatk,(.@r>=9)?50:30; } if(readparam(bVit)>=90) { bonus2 bSubEle,Ele_Neutral,(.@r>=9)?10:5; } if(readparam(bAgi)>=90) { bonus bAspdRate,8; if(.@r>=9) { bonus bAspd,1; } } if(readparam(bDex)>=90) { bonus bLongAtkRate,(.@r>=9)?10:5; } if(readparam(bLuk)>=90) { bonus bCritAtkRate,(.@r>=9)?15:10; } } + - Id: 2577 + AegisName: Sabah_Hood + Name: Sapha Hood + Type: Armor + Buy: 20 + Weight: 100 + Defense: 13 + Jobs: + Assassin: true + Locations: + Garment: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bFlee,12; bonus bCritical,getrefine(); + - Id: 2578 + AegisName: Nab_Hood + Name: Nab Hood + Type: Armor + Buy: 20 + Weight: 100 + Defense: 13 + Jobs: + Assassin: true + Locations: + Garment: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bFlee,.@r*2; bonus bBaseAtk,.@r*2; + - Id: 2579 + AegisName: Magic_Stole + Name: Magic Stole + Type: Armor + Buy: 20 + Weight: 700 + Defense: 8 + Slots: 1 + Locations: + Garment: true + Refineable: true + Script: | + bonus bMdef,3; bonus bUseSPrate,-5; bonus bMaxSPrate,((getrefine()>=4)?6:3); + - Id: 2580 + AegisName: White_Wing_Manteau + Name: White Wing Manteau + Type: Armor + Buy: 20 + Weight: 200 + Defense: 15 + Jobs: + Hunter: true + Locations: + Garment: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bAgi,2; bonus bFlee,10; autobonus2 "{ bonus bFlee,20; }",20,7000,BF_LONG,"{ specialeffect2 EF_CHAINCOMBO; }"; + - Id: 2581 + AegisName: Black_Wing_Manteau + Name: Black Wing Manteau + Type: Armor + Buy: 20 + Weight: 200 + Defense: 15 + Jobs: + Hunter: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Garment: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bInt,2; if(.@r>6) bonus bFlee2,.@r-6; + - Id: 2582 + AegisName: Salvage_Cape + Name: Salvage Cape + Type: Armor + Buy: 56000 + Weight: 400 + Defense: 1 + Jobs: + Priest: true + Wizard: true + Locations: + Garment: true + EquipLevelMin: 130 + Refineable: true + Script: | + skill "NJ_UTSUSEMI",1; bonus2 bSkillCooldown,"NJ_UTSUSEMI",30000; bonus bUseSPrate,100; + UnEquipScript: | + heal 0,-1200; + - Id: 2583 + AegisName: Holy_Cape + Name: Holy Cape + Type: Armor + Buy: 20 + Weight: 100 + Defense: 5 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 50 + Refineable: true + Script: | + bonus bDex,-5; bonus bMdef,5; + - Id: 2584 + AegisName: Wanderer_Outer + Name: Wanderer Outer + Type: Armor + Buy: 20 + Weight: 500 + Defense: 8 + Slots: 1 + Locations: + Garment: true + Refineable: true + - Id: 2585 + AegisName: Muffler_Of_Valor + Name: Muffler Of Valor + Type: Armor + Defense: 4 + Locations: + Garment: true + Script: | + bonus bSPrecovRate,10; + - Id: 2586 + AegisName: Siege_Manteau + Name: Siege Manteau + Type: Armor + Buy: 10 + Weight: 600 + Defense: 32 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Garment: true + EquipLevelMin: 95 + Refineable: true + Script: | + bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; + - Id: 2587 + AegisName: Siege_Muffler + Name: Siege Muffler + Type: Armor + Buy: 10 + Weight: 400 + Defense: 15 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 95 + Refineable: true + Script: | + bonus bMdef,10; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; + - Id: 2588 + AegisName: Ragamuffin_Cape_ + Name: Ragamuffin Cape + Type: Armor + Buy: 56000 + Weight: 500 + Defense: 4 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Garment: true + EquipLevelMin: 40 + Refineable: true + Script: | + bonus bMdef,10; + - Id: 2589 + AegisName: Fallen_Angel_Wing + Name: Fallen Angel Wing + Type: Armor + Weight: 200 + Defense: 18 + Slots: 1 + Locations: + Garment: true + Refineable: true + View: 3 + Trade: + Override: 100 + NoDrop: true + Script: | + 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; + - Id: 2590 + AegisName: Buwaya_Cloth + Name: Buwaya Sack Cloth + Type: Armor + Buy: 20 + Weight: 200 + Defense: 8 + Locations: + Garment: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@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; + - Id: 2591 + AegisName: Bayani_Buwaya_Cloth + Name: Bayani Buwaya Sack Cloth + Type: Armor + Buy: 20 + Weight: 200 + Defense: 8 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@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; + - Id: 2592 + AegisName: Boss_Brownie_Manteau + Name: Boss Brownie Manteau + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 50 + Refineable: true + - Id: 2593 + AegisName: Flow_Manteau + Name: Flow Manteau + Type: Armor + Buy: 20 + Weight: 700 + Defense: 20 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 65 + Refineable: true + Script: | + bonus2 bSubDefEle,Ele_Water,5; bonus2 bMagicSubDefEle,Ele_Water,5; bonus2 bSubRace,RC_Brute,-5; + - Id: 2594 + AegisName: Wrapping_Manteau + Name: Wrapping Manteau + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Locations: + Garment: true + Refineable: true + - Id: 2597 + AegisName: Scarlet_Poncho + Name: Scarlet Poncho + Type: Armor + Weight: 500 + Defense: 10 + Slots: 1 + Locations: + Garment: true + Refineable: true + Script: | + bonus bCritAtkRate,3; /* Confirm: The location. If the location is changed, also change the combo script! */ + - Id: 2598 + AegisName: Ramor_Manteau + Name: Ramor Manteau + Type: Armor + Buy: 20 + Weight: 700 + Defense: 20 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 65 + Refineable: true + Script: | + bonus2 bSubRace,RC_Undead,5; bonus2 bSubRace,RC_DemiHuman,-5; /*Gold PC Room: bonus bFlee,20;*/ + - Id: 2599 + AegisName: Goibne's_Shoulder_Arms_ + Name: Goibne's Spaulders + Type: Armor + Buy: 30000 + Weight: 700 + Defense: 11 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Garment: true + EquipLevelMin: 54 + Refineable: true + Script: | + bonus bLongAtkDef,10; bonus bMdef,2; bonus bVit,1; + - Id: 2601 + AegisName: Ring + Name: Ring + Type: Armor + Buy: 30000 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 20 + Script: | + bonus bStr,2; + - Id: 2602 + AegisName: Earring + Name: Earring + Type: Armor + Buy: 30000 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 20 + Script: | + bonus bInt,2; + - Id: 2603 + AegisName: Necklace + Name: Necklace + Type: Armor + Buy: 30000 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 20 + Script: | + bonus bVit,2; + - Id: 2604 + AegisName: Glove + Name: Glove + Type: Armor + Buy: 30000 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 20 + Script: | + bonus bDex,2; + - Id: 2605 + AegisName: Brooch + Name: Brooch + Type: Armor + Buy: 30000 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 20 + Script: | + bonus bAgi,2; + - Id: 2607 + AegisName: Clip + Name: Clip + Type: Armor + Buy: 30000 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bMaxSP,10; + - Id: 2608 + AegisName: Rosary + Name: Rosary + Type: Armor + Buy: 15000 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 20 + Script: | + bonus bMdef,5; bonus bLuk,2; + - Id: 2609 + AegisName: Skul_Ring + Name: Skull Ring + Type: Armor + Buy: 10000 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + - Id: 2610 + AegisName: Gold_Ring + Name: Gold Ring + Type: Armor + Buy: 30000 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + - Id: 2611 + AegisName: Silver_Ring + Name: Silver Ring + Type: Armor + Buy: 20000 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + - Id: 2612 + AegisName: Flower_Ring + Name: Flower Ring + Type: Armor + Buy: 1500 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + - Id: 2613 + AegisName: Diamond_Ring + Name: Diamond Ring + Type: Armor + Buy: 45000 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + - Id: 2614 + AegisName: An_Eye_Of_Dullahan + Name: Eye of Dullahan + Type: Armor + Buy: 90000 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 50 + Script: | + bonus2 bResEff,Eff_Poison,10000; bonus2 bSubRace,RC_Undead,4; bonus2 bSubRace,RC_Demon,4; + - Id: 2615 + AegisName: Safety_Ring + Name: Safety Ring + Type: Armor + Buy: 75000 + Weight: 100 + Defense: 5 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 40 + Script: | + bonus bMdef,5; + - Id: 2616 + AegisName: Critical_Ring + Name: Critical Ring + Type: Armor + Buy: 75000 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 40 + Script: | + bonus bCritical,5; + - Id: 2617 + AegisName: Mitten_Of_Presbyter + Name: Celebrant's Mitten + Type: Armor + Buy: 2 + Weight: 100 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 35 + Script: | + bonus bInt,1; + - Id: 2618 + AegisName: Matyr's_Flea_Guard + Name: Matyr's Leash + Type: Armor + Buy: 2 + Weight: 100 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 35 + Script: | + bonus bAgi,1; + - Id: 2619 + AegisName: Thimble_Of_Archer + Name: Bow Thimble + Type: Armor + Buy: 10000 + Weight: 100 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 65 + Script: | + bonus bLongAtkRate,3; + - Id: 2620 + AegisName: Ring_Of_Rogue + Name: Rogue's Treasure + Type: Armor + Buy: 10000 + Weight: 100 + Jobs: + Assassin: true + Ninja: true + Rogue: true + Thief: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 70 + Script: | + if(readparam(bStr)>=90){ bonus bHit,10; bonus bFlee,10; } if(readparam(bAgi)>=90){ bonus bBaseAtk,10; bonus bCritical,10; } + - Id: 2621 + AegisName: Ring_ + Name: Ring + Type: Armor + Buy: 30000 + Weight: 200 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 90 + Script: | + bonus bStr,1; + - Id: 2622 + AegisName: Earring_ + Name: Earring + Type: Armor + Buy: 30000 + Weight: 200 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 90 + Script: | + bonus bInt,1; + - Id: 2623 + AegisName: Necklace_ + Name: Necklace + Type: Armor + Buy: 30000 + Weight: 200 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 90 + Script: | + bonus bVit,1; + - Id: 2624 + AegisName: Glove_ + Name: Glove + Type: Armor + Buy: 30000 + Weight: 200 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 90 + Script: | + bonus bDex,1; + - Id: 2625 + AegisName: Brooch_ + Name: Brooch + Type: Armor + Buy: 30000 + Weight: 200 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 90 + Script: | + bonus bAgi,1; + - Id: 2626 + AegisName: Rosary_ + Name: Rosary + Type: Armor + Buy: 15000 + Weight: 200 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 90 + Script: | + bonus bMdef,3; bonus bLuk,1; + - Id: 2627 + AegisName: Belt + Name: Belt + Type: Armor + Buy: 20000 + Weight: 1200 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 25 + - Id: 2628 + AegisName: Novice_Armlet + Name: Novice Armlet + Type: Armor + Buy: 400 + Weight: 200 + Slots: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Right_Accessory: true + Left_Accessory: true + - Id: 2629 + AegisName: Magingiorde + Name: Megingjard + Type: Armor + Buy: 20 + Weight: 8000 + Defense: 2 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 94 + Script: | + bonus bStr,40+BaseLevel/5; bonus bMdef,7; if(readparam(bStr)>=120) bonus2 bAddClass,Class_Boss,10; + - Id: 2630 + AegisName: Brysinggamen + Name: Brisingamen + Type: Armor + Buy: 20 + Weight: 1500 + Defense: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 94 + Script: | + bonus bStr,6; bonus bAgi,6; bonus bVit,6; bonus bInt,10; bonus bLuk,10; bonus bMdef,5; bonus bHealPower,6; + - Id: 2631 + AegisName: First_Age_Ring + Name: Celebration Ring + Type: Armor + Buy: 1 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bAllStats,5; + - Id: 2632 + AegisName: Korean_Trinket + Name: Korean Trinket + Type: Armor + Buy: 125000 + Weight: 100 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 65 + Script: | + bonus bVit,1; bonus bDex,1; bonus bLuk,1; + - Id: 2633 + AegisName: Jade_Ring + Name: Jade Ring + Type: Armor + Buy: 204000 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 80 + Script: | + bonus bStr,2; bonus bInt,1; + - Id: 2634 + AegisName: Bridegroom_Ring + Name: Wedding Ring + Type: Armor + Gender: Male + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + skill "WE_MALE",1; skill "WE_FEMALE",1; skill "WE_CALLPARTNER",1; skill "WE_CALLALLFAMILY",1; skill "WE_ONEFOREVER",1; + - Id: 2635 + AegisName: Bride_Ring + Name: Wedding Ring + Type: Armor + Gender: Female + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + skill "WE_MALE",1; skill "WE_FEMALE",1; skill "WE_CALLPARTNER",1; skill "WE_CALLALLFAMILY",1; skill "WE_ONEFOREVER",1; + - Id: 2636 + AegisName: Gold_Ring_ + Name: Gold Christmas Ring + Type: Armor + Buy: 30000 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bLuk,1; + - Id: 2637 + AegisName: Silver_Ring_ + Name: Silver Christmas Ring + Type: Armor + Buy: 20000 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bLuk,1; + - Id: 2638 + AegisName: Exorcize_Sachet + Name: Sacred Incense + Type: Armor + Buy: 20000 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bStr,1; bonus bLuk,1; + - Id: 2639 + AegisName: Purification_Sachet + Name: Occult Incense + Type: Armor + Buy: 20000 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bInt,1; bonus bAgi,1; + - Id: 2640 + AegisName: Kafra_Ring + Name: Kafra Ring + Type: Armor + Buy: 40000 + Weight: 200 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bStr,1; bonus bInt,1; bonus bAgi,1; bonus bLuk,1; bonus bMdef,1; + - Id: 2641 + AegisName: Fashionable_Sack + Name: Fashion Hip Sack + Type: Armor + Buy: 20 + Weight: 700 + Jobs: + Alchemist: true + Blacksmith: true + Merchant: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 50 + Script: | + bonus bStr,2; + - Id: 2642 + AegisName: Serin's_Gold_Ring + Name: Serin's Gold Ring + Type: Armor + Buy: 20 + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 2643 + AegisName: Serin's_Gold_Ring_ + Name: Serin's Gold Ring + Type: Armor + Buy: 45000 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + - Id: 2644 + AegisName: The_Sign_ + Name: The Sign + Type: Armor + Buy: 2 + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,5; bonus2 bMagicAddClass,Class_All,5; + - Id: 2645 + AegisName: Moonlight_Ring + Name: Moonlight Ring + Type: Armor + Buy: 40000 + Weight: 200 + Jobs: + Assassin: true + Ninja: true + Rogue: true + Thief: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 60 + Script: | + bonus bMdef,2; + - Id: 2646 + AegisName: Bunch_Of_Carnation + Name: Bunch of Carnations + Type: Armor + Buy: 2 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bAllStats,3; + - Id: 2647 + AegisName: Nile_Rose + Name: Nile Rose + Type: Armor + Buy: 2 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,5; + - Id: 2648 + AegisName: Morpheus's_Ring + Name: Morpheus's Ring + Type: Armor + Buy: 30000 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 33 + Script: | + bonus bInt,1; bonus bMaxSPrate,5; + - Id: 2649 + AegisName: Morpheus's_Armlet + Name: Morpheus's Bracelet + Type: Armor + Buy: 30000 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 33 + Script: | + bonus bInt,1; bonus bMaxSPrate,5; + - Id: 2650 + AegisName: Morrigane's_Belt + Name: Morrigane's Belt + Type: Armor + Buy: 30000 + Weight: 200 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 61 + Script: | + bonus bBaseAtk,5; bonus bCritical,3; + - Id: 2651 + AegisName: Morrigane's_Pendant + Name: Morrigane's Pendant + Type: Armor + Buy: 30000 + Weight: 200 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 61 + Script: | + bonus bStr,2; bonus bCritical,3; + - Id: 2652 + AegisName: Cursed_Lucky_Brooch + Name: Goddess of Fortune's Cursed Brooch + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 40 + Script: | + bonus bCritical,6; bonus2 bAddEff2,Eff_Curse,50; + - Id: 2653 + AegisName: Sacrifice_Ring + Name: Sacrifice Ring + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 90 + - Id: 2654 + AegisName: Shinobi's_Sash + Name: Shinobi Sash + Type: Armor + Buy: 20000 + Weight: 300 + Defense: 1 + Jobs: + Assassin: true + Ninja: true + Rogue: true + Thief: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 30 + Script: | + bonus bStr,1; bonus bAgi,1; bonus bMdef,1; + - Id: 2655 + AegisName: Bloody_Iron_Ball + Name: Bloodied Shackle Ball + Type: Armor + Buy: 50000 + Weight: 4000 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + - Id: 2656 + AegisName: Hyper_Changer + Name: Armor Charm + Type: Armor + Buy: 20000 + Weight: 1000 + Defense: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bMaxHP,50; + - Id: 2657 + AegisName: Lab_Passport + Name: Laboratory Permit + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + - Id: 2658 + AegisName: Nile_Rose_ + Name: Nile Rose + Type: Armor + Buy: 2 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bMaxHP,10; + - Id: 2659 + AegisName: Vesper_Core01 + Name: Vesper Core 01 + Type: Armor + Buy: 20 + Weight: 500 + Defense: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bMdef,3; bonus bInt,2; bonus bMaxSPrate,5; + - Id: 2660 + AegisName: Vesper_Core02 + Name: Vesper Core 02 + Type: Armor + Buy: 20 + Weight: 500 + Defense: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bMdef,3; bonus bStr,3; bonus bBaseAtk,10; + - Id: 2661 + AegisName: Vesper_Core03 + Name: Vesper Core 03 + Type: Armor + Buy: 20 + Weight: 500 + Defense: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bMdef,3; bonus bAgi,3; bonus bFlee,5; + - Id: 2662 + AegisName: Vesper_Core04 + Name: Vesper Core 04 + Type: Armor + Buy: 20 + Weight: 500 + Defense: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bMdef,3; bonus bDex,3; bonus bHit,10; + - Id: 2663 + AegisName: Gauntlet_Of_Accuracy + Name: Gauntlet of Hit + Type: Armor + Buy: 20 + Weight: 900 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 75 + Script: | + bonus bHit,15; bonus bStr,1; + - Id: 2664 + AegisName: Scarf_Belt + Name: Belcarf + Type: Armor + Buy: 20 + Weight: 200 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 75 + Script: | + bonus bDex,2; bonus bInt,1; + - Id: 2665 + AegisName: Ring_Of_Exorcism + Name: Exorcising Ring + Type: Armor + Buy: 20 + Weight: 500 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 60 + Script: | + bonus bMdef,1; bonus2 bExpAddRace,RC_Undead,5; bonus2 bExpAddRace,RC_Demon,5; + - Id: 2666 + AegisName: Lamp_Of_Hope + Name: Lantern of Hope + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bStr,2; bonus2 bResEff,Eff_Blind,1000; + - Id: 2667 + AegisName: Glove_Of_Archer + Name: Renown Archer's Gloves + Type: Armor + Buy: 20 + Weight: 300 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 60 + Script: | + bonus bHit,5; bonus bCritical,5; bonus bDex,1; + - Id: 2668 + AegisName: Women's_Glory + Name: Woman Glory + Type: Armor + Weight: 500 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,3; bonus bAgi,3; bonus bVit,3; bonus bInt,3; bonus bDex,3; bonus bLuk,3; + - Id: 2669 + AegisName: Golden_Necklace_ + Name: RJC Necklace + Type: Armor + Buy: 30000 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bMaxSP,10; + - Id: 2670 + AegisName: Ring_Of_Longing + Name: Ring of Longing + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 30 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bFlee,5; + - Id: 2671 + AegisName: Thimble_Of_Archer_ + Name: Bow Thimble + Type: Armor + Buy: 10000 + Weight: 100 + Slots: 1 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 65 + Script: | + bonus bLongAtkRate,3; + - Id: 2672 + AegisName: Anniversary_Ring + Name: 3rd Anniversary Celebration Ring + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bStr,5; bonus bAgi,5; bonus bVit,5; bonus bInt,5; bonus bDex,5; bonus bLuk,5; + - Id: 2673 + AegisName: Shining_Ring + Name: Warrior's Shining Ring + Type: Armor + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 48 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bBaseAtk,10; bonus bSPrecovRate,3; + - Id: 2674 + AegisName: Honor_Ring + Name: Ring of Honor + Type: Armor + Buy: 20 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 2675 + AegisName: Lord_Ring + Name: Lord Ring + Type: Armor + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bAllStats,3; + - Id: 2676 + AegisName: Hunter_Earring + Name: Hunter's Earring + Type: Armor + Buy: 20 + Weight: 300 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddMonsterDropItem,7618,100; + - Id: 2677 + AegisName: Spiritual_Ring + Name: Spiritual Ring + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bInt,2; bonus bDex,1; + - Id: 2678 + AegisName: Ring_Of_Flame_Lord + Name: Ring Of Flame Lord + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bStr,2; bonus bVit,1; bonus bBaseAtk,15; 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; + - Id: 2679 + AegisName: Ring_Of_Resonance + Name: Ring Of Resonance + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bAgi,2; bonus bVit,1; bonus bMdef,2; 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; + - Id: 2680 + AegisName: Lesser_Elemental_Ring + Name: Lesser Elemental Ring + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bAllStats,1; bonus3 bAutoSpell,"WZ_ESTIMATION",1,80; bonus3 bAutoSpell,"MC_IDENTIFY",1,50; bonus3 bAutoSpell,"TF_PICKSTONE",1,100; bonus3 bAutoSpell,"BS_GREED",1,10; bonus3 bAutoSpellWhenHit,"TK_RUN",5,20; bonus3 bAutoSpellWhenHit,"TK_HIGHJUMP",3,30; bonus3 bAutoSpellWhenHit,"NV_FIRSTAID",1,100; bonus3 bAutoSpellWhenHit,"TF_BACKSLIDING",1,50; + - Id: 2681 + AegisName: Republic_Ring + Name: Republic Anniversary Ring + Type: Armor + Buy: 20 + Weight: 1000 + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,3; + - Id: 2682 + AegisName: Ring_Of_Water + Name: Ring of Water + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 20 + Script: | + bonus2 bSubDefEle,Ele_Water,5; + - Id: 2683 + AegisName: Ring_Of_Fire + Name: Ring of Fire + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 20 + Script: | + bonus2 bSubDefEle,Ele_Fire,5; + - Id: 2684 + AegisName: Ring_Of_Wind + Name: Ring of Wind + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 20 + Script: | + bonus2 bSubDefEle,Ele_Wind,5; + - Id: 2685 + AegisName: Ring_Of_Earth + Name: Ring of Earth + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 20 + Script: | + bonus2 bSubDefEle,Ele_Earth,5; + - Id: 2686 + AegisName: Elven_Ears_C + Name: Elven Ears + Type: Armor + Buy: 1 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + EquipLevelMin: 1 + View: 73 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,1; + - Id: 2687 + AegisName: Steel_Flower_C + Name: Steel Flower + Type: Armor + Buy: 1 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 56 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bSubRace,RC_Plant,3; bonus3 bAutoSpellWhenHit,"PR_STRECOVERY",1,30; + - Id: 2688 + AegisName: Critical_Ring_C + Name: Critical Ring + Type: Armor + Buy: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bCriticalRate,10; + - Id: 2689 + AegisName: Earring_C + Name: Earring + Type: Armor + Buy: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,3; + - Id: 2690 + AegisName: Ring_C + Name: Ring + Type: Armor + Buy: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,4; + - Id: 2691 + AegisName: Necklace_C + Name: Necklace + Type: Armor + Buy: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bVit,4; + - Id: 2692 + AegisName: Glove_C + Name: Glove + Type: Armor + Buy: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,4; + - Id: 2693 + AegisName: Brooch_C + Name: Brooch + Type: Armor + Buy: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAgi,4; /*Gold PC Room bonus bAllStats,1;*/ + - Id: 2694 + AegisName: Rosary_C + Name: Rosary + Type: Armor + Buy: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,5; bonus bLuk,4; + - Id: 2695 + AegisName: Safety_Ring_C + Name: Safety Ring + Type: Armor + Buy: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,8; bonus bDef,8; /*Gold PC Room bonus bAllStats,1;*/ + - Id: 2696 + AegisName: Vesper_Core01_C + Name: Vesper Core 01 + Type: Armor + Buy: 1 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,3; bonus bInt,2; bonus bMaxSPrate,5; + - Id: 2697 + AegisName: Vesper_Core02_C + Name: Vesper Core 02 + Type: Armor + Buy: 1 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,3; bonus bStr,3; bonus bBaseAtk,10; + - Id: 2698 + AegisName: Vesper_Core03_C + Name: Vesper Core 03 + Type: Armor + Buy: 1 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,3; bonus bAgi,3; bonus bFlee,5; + - Id: 2699 + AegisName: Vesper_Core04_C + Name: Vesper Core 04 + Type: Armor + Buy: 1 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,3; bonus bDex,3; bonus bHit,10; + - Id: 2700 + AegisName: Red_Silk_Seal + Name: Red Silk Seal + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + Crusader: true + Knight: true + Swordman: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 60 + - Id: 2701 + AegisName: Orleans_Glove + Name: Orleans's Glove + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 90 + Script: | + bonus bDex,2; bonus bMatkRate,3; + - Id: 2702 + AegisName: Bison_Horn + Name: Bison Horn + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 90 + Script: | + bonus bAgi,2; + - Id: 2703 + AegisName: Expert_Ring + Name: Expert Ring + Type: Armor + Buy: 20 + Weight: 150 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 50 + Script: | + bonus bDelayRate,-5; bonus bUseSPrate,5; + - Id: 2704 + AegisName: Golden_Accessory + Name: Golden Accessories + Type: Armor + Buy: 20 + Weight: 100 + Defense: 4 + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,4; + - Id: 2705 + AegisName: Golden_Accessory2 + Name: Golden Accessories + Type: Armor + Buy: 20 + Weight: 100 + Defense: 4 + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddMonsterDropItem,12018,500; + - Id: 2706 + AegisName: Handcuff + Name: Arrest Handcuffs + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 2707 + AegisName: Gusli + Name: GUSLI + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 2708 + AegisName: Chinese_Handicraft + Name: Chinese Handicraft + Type: Armor + Weight: 50 + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus3 bAutoSpell,"MG_FIREBOLT",5,50; + - Id: 2709 + AegisName: 5_Anniversary_Coin + Name: 5th Anniversary Coin + Type: Armor + Buy: 2 + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; + - Id: 2710 + AegisName: Bloody_Iron_Ball_C + Name: Bloody Iron Ball + Type: Armor + Buy: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bBaseAtk,30; + - Id: 2711 + AegisName: Spiritual_Ring_C + Name: Spiritual Ring + Type: Armor + Buy: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,2; bonus bDex,2; + - Id: 2712 + AegisName: Ragnarok_Limited_Ed + Name: Ragnarok Limited Edition + Type: Armor + Weight: 300 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 30 + Script: | + bonus bVit,3; bonus bAgi,3; bonus bLuk,3; + - Id: 2713 + AegisName: Certificate_TW + Name: Certificate + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 2714 + AegisName: Marvelous_Pandent + Name: Marvelous Pendant + Type: Armor + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + - Id: 2715 + AegisName: Skul_Ring_ + Name: Skull Ring + Type: Armor + Buy: 10000 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus2 bSubRace,RC_Undead,1; + - Id: 2716 + AegisName: Librarian_Glove + Name: Librarian Glove + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Jobs: + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 80 + Script: | + bonus bMaxSP,20; + - Id: 2717 + AegisName: Pocket_Watch_ + Name: Pocket Watch + Type: Armor + Buy: 20 + Weight: 200 + Jobs: + Mage: true + Sage: true + Wizard: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 80 + - Id: 2718 + AegisName: Lunatic_Brooch + Name: Lunatic Brooch + Type: Armor + Buy: 20 + Weight: 200 + Slots: 1 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 65 + - Id: 2719 + AegisName: Iron_Wrist + Name: Iron Wrist + Type: Armor + Buy: 20 + Weight: 700 + Defense: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 50 + Script: | + bonus2 bSkillAtk,"SM_BASH",6; bonus2 bSkillAtk,"MC_MAMMONITE",6; + - Id: 2720 + AegisName: Medal_Swordman + Name: Medal of Honor + Type: Armor + Buy: 20 + Defense: 1 + Jobs: + Crusader: true + Knight: true + StarGladiator: true + Swordman: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 70 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bHit,10; bonus bMaxHP,500; bonus bMaxSP,50; bonus3 bAddEff,Eff_Stun,100,ATF_SHORT; + - Id: 2721 + AegisName: Medal_Thief + Name: Medal of Honor + Type: Armor + Buy: 20 + Defense: 1 + Jobs: + Assassin: true + Ninja: true + Rogue: true + Thief: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 70 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bFlee,10; bonus bMaxHP,300; bonus bMaxSP,80; bonus3 bAddEff,Eff_Poison,100,ATF_SHORT; + - Id: 2722 + AegisName: Medal_Acolyte + Name: Medal of Honor + Type: Armor + Buy: 20 + Defense: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 70 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bMdef,6; bonus bMaxHP,600; bonus3 bAddEff,Eff_Silence,100,ATF_SHORT; + - Id: 2723 + AegisName: Medal_Mage + Name: Medal of Honor + Type: Armor + Buy: 20 + Defense: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 70 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bMdef,6; bonus bMaxHP,600; bonus2 bAddEffWhenHit,Eff_Stone,100; + - Id: 2724 + AegisName: Medal_Archer + Name: Medal of Honor + Type: Armor + Buy: 20 + Defense: 1 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 70 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bCritical,10; bonus bMaxHP,300; bonus bMaxSP,80; bonus3 bAddEff,Eff_Blind,100,ATF_LONG; + - Id: 2725 + AegisName: Medal_Merchant + Name: Medal of Honor + Type: Armor + Buy: 20 + Defense: 1 + Jobs: + Alchemist: true + Blacksmith: true + Merchant: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 70 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bAspdRate,10; bonus bMaxHP,500; bonus bMaxSP,50; bonus3 bAddEff,Eff_Curse,100,ATF_SHORT; + - Id: 2726 + AegisName: Icarus_Wing + Name: Icarus Wings + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + Hunter: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 70 + Script: | + bonus bMaxSP,50; bonus bDex,3; + - Id: 2727 + AegisName: Bowman_Scarf + Name: Bowman Scarf + Type: Armor + Buy: 20 + Weight: 200 + Jobs: + Hunter: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 70 + Script: | + bonus bMaxSP,50; bonus bDex,3; + - Id: 2728 + AegisName: Cursed_Hand + Name: Cursed Hand + Type: Armor + Buy: 20 + Weight: 50 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 80 + Script: | + bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,30; bonus bHit,10; bonus bHPrecovRate,20; + - Id: 2729 + AegisName: Diabolus_Ring + Name: Diabolus Ring + Type: Armor + Buy: 20 + Weight: 50 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bMaxHP,100; bonus bMaxSP,100; bonus bHealPower,5; bonus2 bAddDamageClass,1916,10; bonus2 bAddDamageClass,1917,10; + - Id: 2730 + AegisName: Morroc_Seal + Name: Seal of Continental Guard + Type: Armor + Buy: 20 + Weight: 50 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 80 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,50; bonus bAspdRate,3; + - Id: 2731 + AegisName: Morroc_Charm_Stone + Name: Rune Spellstone + Type: Armor + Buy: 20 + Weight: 50 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 80 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxSP,50; bonus bVariableCastrate,-1; + - Id: 2732 + AegisName: Morroc_Ring + Name: Death Loop + Type: Armor + Buy: 20 + Weight: 50 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 80 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bCritical,5; + - Id: 2733 + AegisName: Medal_Gunner + Name: Sheriff Badge + Type: Armor + Buy: 20 + Defense: 1 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 70 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bCritical,10; bonus bMaxHP,300; bonus bMaxSP,80; bonus3 bAddEff,Eff_Blind,100,ATF_LONG; + - Id: 2734 + AegisName: Directive_A + Name: Directive + Type: Armor + Defense: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 2735 + AegisName: Directive_B + Name: Directive + Type: Armor + Defense: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 2736 + AegisName: Navel_Ring + Name: Navel Ring + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 75 + Script: | + bonus bDex,3; bonus bLuk,3; bonus bMdef,2; + - Id: 2737 + AegisName: Foot_Ring + Name: Foot Ring + Type: Armor + Buy: 20 + Weight: 150 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 75 + Script: | + bonus bVit,3; bonus bMaxHPrate,10; + - Id: 2738 + AegisName: Shiny_Coin + Name: Shiny Coin + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,6; bonus bMatkRate,6; + - Id: 2739 + AegisName: Ordinary_Coin + Name: Ordinary Coin + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; + - Id: 2740 + AegisName: Rusty_Coin + Name: Rusty Coin + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,3; bonus bMatkRate,3; + - Id: 2741 + AegisName: All_In_One_Ring + Name: All In One Ring + Type: Armor + Buy: 20 + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,1; bonus bNoCastCancel; bonus bVariableCastrate,10; skill "AL_HEAL",1; skill "AL_TELEPORT",1; + - Id: 2742 + AegisName: Lucky_Clip + Name: Lucky Clip + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bDropAddRace,RC_All,50; + - Id: 2743 + AegisName: Angelic_Ring + Name: Angelic Ring + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 70 + Script: | + bonus bInt,2; bonus bDex,1; bonus bMdef,2; autobonus3 "{ bonus bHealPower,20; }",100,3000,"AL_HEAL","{ specialeffect2 EF_HEAL3; }"; autobonus3 "{ bonus bHealPower,20; }",100,3000,"AM_POTIONPITCHER","{ specialeffect2 EF_HEAL3; }"; autobonus3 "{ bonus bHealPower,20; }",100,3000,"PR_SANCTUARY","{ specialeffect2 EF_HEAL3; }"; + - Id: 2744 + AegisName: Sprint_Ring + Name: Sprint Ring + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 70 + Script: | + bonus bVariableCastrate,-10; bonus bDelayRate,5; + - Id: 2745 + AegisName: Pinguicula_Corsage + Name: Pinguicula Corsage + Type: Armor + Buy: 20 + Weight: 200 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 70 + Script: | + bonus bMdef,2; bonus bMaxSP,25; + - Id: 2746 + AegisName: Cold_Heart + Name: Cold Heart + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Jobs: + Assassin: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 80 + Script: | + bonus bAgi,3; + - Id: 2747 + AegisName: Black_Cat + Name: Black Cat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Jobs: + Rogue: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 80 + Script: | + bonus bDex,3; + - Id: 2748 + AegisName: Cursed_Star + Name: Cursed Star + Type: Armor + Buy: 20 + Weight: 200 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 84 + Script: | + bonus bMdef,3; bonus bDex,2; bonus bLuk,-1; bonus2 bHPLossRate,50,10000; bonus3 bAddEff,Eff_Curse,200,ATF_WEAPON|ATF_LONG|ATF_TARGET; + UnEquipScript: | + heal -300,0; + - Id: 2749 + AegisName: Linen_Glove + Name: Linen Glove + Type: Armor + Buy: 20 + Weight: 120 + Defense: 1 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 90 + Script: | + bonus bMdef,2; bonus bAgi,2; bonus bDex,1; + - Id: 2750 + AegisName: Summer_Night_Dream + Name: Summer Night Dream + Type: Armor + Buy: 20 + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /* skill "ALL_DREAM_SUMMERNIGHT",1; */ + - Id: 2751 + AegisName: Academy_Badge + Name: Academy Of Badge + Type: Armor + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + if(BaseLevel<80) { bonus bMaxHP,400; bonus bMaxSP,200; } + - Id: 2752 + AegisName: Praxinus_C + Name: Praccsinos + Type: Armor + Buy: 2 + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,5; bonus bMatkrate,5; + - Id: 2753 + AegisName: Beholder_Ring + Name: Beholder Ring + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bExpAddRace,RC_Formless,15; + - Id: 2754 + AegisName: Hallow_Ring + Name: Hallow Ring + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bExpAddRace,RC_Undead,15; + - Id: 2755 + AegisName: Clamorous_Ring + Name: Clamorous Ring + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bExpAddRace,RC_Brute,15; + - Id: 2756 + AegisName: Chemical_Ring + Name: Chemical Ring + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bExpAddRace,RC_Plant,15; + - Id: 2757 + AegisName: Insecticide_Ring + Name: Insecticide Ring + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bExpAddRace,RC_Insect,15; + - Id: 2758 + AegisName: Fisher_Ring + Name: Fischer Ring + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bExpAddRace,RC_Fish,15; + - Id: 2759 + AegisName: Decussate_Ring + Name: Decussate Ring + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bExpAddRace,RC_Demon,15; + - Id: 2760 + AegisName: Bloody_Ring + Name: Bloody Ring + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bExpAddRace,RC_DemiHuman,15; + - Id: 2761 + AegisName: Satanic_Ring + Name: Satanic Ring + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bExpAddRace,RC_Angel,15; + - Id: 2762 + AegisName: Dragoon_Ring + Name: Dragon Ring + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bExpAddRace,RC_Dragon,15; + - Id: 2763 + AegisName: Skul_Ring_C + Name: Neo Skull Ring + Type: Armor + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 95 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,5; bonus bMatkrate,5; bonus bMaxHPrate,5; skill "MG_SIGHT",1; + - Id: 2764 + AegisName: Small_Fishing_Rod + Name: Small Fishing Rod + Type: Armor + Buy: 10 + Weight: 250 + Locations: + Right_Accessory: true + Left_Accessory: true + - Id: 2765 + AegisName: Novice_Figure + Name: Novice Figure + Type: Armor + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bMaxHP,70; if(BaseJob==Job_Novice||BaseJob==Job_SuperNovice) bonus bMaxHP,30; + - Id: 2766 + AegisName: Swordman_Figure + Name: Swordman Figure + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bVit,1; if(Class==Job_Swordman) bonus bDef,2; + - Id: 2767 + AegisName: Acolyte_Figure + Name: Acolyte Figure + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,1; if(Class==Job_Acolyte) bonus bMaxSP,50; + - Id: 2768 + AegisName: Mage_Figure + Name: Mage Figure + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,1; if(Class==Job_Mage) bonus bSPrecovRate,5; + - Id: 2769 + AegisName: Archer_Figure + Name: Archer Figure + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,1; if(Class==Job_Archer) bonus bBaseAtk,10; + - Id: 2770 + AegisName: Thief_Figure + Name: Thief Figure + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAgi,1; if(Class==Job_Thief) bonus bAspdRate,3; + - Id: 2771 + AegisName: Merchant_Figure + Name: Merchant Figure + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,1; if(Class==Job_Merchant) bonus bCritical,5; + - Id: 2772 + AegisName: Krieger_Ring1 + Name: Glorious Ring + Type: Armor + Buy: 20 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 81 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,300; bonus2 bSubEle,Ele_Water,10; bonus2 bSubEle,Ele_Wind,10; bonus2 bSubEle,Ele_Earth,10; bonus2 bSubEle,Ele_Fire,10; bonus bAspdRate,5; bonus bVariableCastrate,-3; bonus bHealPower,5; + - Id: 2773 + AegisName: Krieger_Ring2 + Name: Glorious Mass-Production Ring + Type: Armor + Buy: 20 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 61 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,2; + - Id: 2774 + AegisName: Krieger_Ring3 + Name: Glorious Popularized Ring + Type: Armor + Buy: 20 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,1; + - Id: 2775 + AegisName: Lure + Name: Lure + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + - Id: 2776 + AegisName: Cool_Towel + Name: Adventurer's Trusty Towel + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipScript: | + sc_start SC_SUMMER,INFINITE_TICK,0; + UnEquipScript: | + sc_end SC_SUMMER; + - Id: 2777 + AegisName: Shaman_Ring + Name: Shaman Ring + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 30 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bMaxHP,50; bonus bSPrecovRate,3; + - Id: 2778 + AegisName: Shaman_Earing + Name: Shaman Earrings + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bInt,2; + - Id: 2779 + AegisName: Dark_Knight_Belt + Name: Dark Knight Belt + Type: Armor + Buy: 20 + Weight: 500 + Defense: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bStr,2; bonus bAgi,1; + - Id: 2780 + AegisName: Dark_Knight_Glove + Name: Dark Knight Glove + Type: Armor + Buy: 20 + Weight: 500 + Defense: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 80 + Trade: + Override: 100 + NoDrop: true + Script: | + autobonus "{ bonus bAspdRate,2; }",10,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }"; + - Id: 2781 + AegisName: Aumdura's_Grace + Name: Aumdura's Benefit + Type: Armor + Weight: 100 + Defense: 1 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bAllStats,1; bonus bMdef,1; + - Id: 2782 + AegisName: Ring_Of_Wise_King + Name: Ring of the Ancient Wise King + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,50; bonus bMaxSP,20; + - Id: 2783 + AegisName: Eyes_Stone_Ring + Name: Eye Stone Ring + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 70 + Script: | + bonus bCritical,2; bonus bMaxSP,25; + - Id: 2784 + AegisName: Oh_Holy_Night + Name: Christmas Musicbox + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + skill "ALL_WEWISH",1; + - Id: 2785 + AegisName: Orleans_Glove_M + Name: Orlean's Gloves + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 90 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,2; bonus bMatkRate,3; + - Id: 2786 + AegisName: Spiritual_Ring_M + Name: Spiritual Ring + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bInt,2; bonus bDex,1; + - Id: 2787 + AegisName: Waterdrop_Brooch + Name: Waterdrop Brooch + Type: Armor + Buy: 20 + Weight: 200 + Slots: 1 + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bMdef,2; bonus bMaxHPrate,1; bonus2 bSubEle,Ele_Water,5; + - Id: 2788 + AegisName: Bradium_Earing + Name: Bradium Earring + Type: Armor + Buy: 20 + Weight: 200 + Slots: 1 + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bInt,1; bonus bDex,1; bonus bMatk,5; + - Id: 2789 + AegisName: Bradium_Ring + Name: Bradium Ring + Type: Armor + Buy: 20 + Weight: 200 + Slots: 1 + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bStr,1; bonus bVit,1; bonus bBaseAtk,5; + - Id: 2790 + AegisName: Bradium_Brooch + Name: Bradium Brooch + Type: Armor + Buy: 20 + Weight: 200 + Slots: 1 + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bAgi,1; bonus bFlee,4; if(readparam(bAgi)>=120) bonus bCritical,4; + - Id: 2791 + AegisName: Just_Got_Fish + Name: Fresh Fish + Type: Armor + Buy: 20 + Weight: 500 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bHit,3; + - Id: 2792 + AegisName: Ring_Of_Flame_Lord_I + Name: Ring of Flame Lord + Type: Armor + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,2; bonus bVit,1; bonus bBaseAtk,15; 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; + - Id: 2793 + AegisName: Ring_Of_Resonance_I + Name: Ring of Resonance + Type: Armor + Defense: 2 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAgi,2; bonus bVit,1; bonus bMdef,2; 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; + - Id: 2794 + AegisName: Magic_Stone_Ring + Name: Magic Stone Ring + Type: Armor + Slots: 1 + Jobs: + Knight: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 99 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,2; + - Id: 2795 + AegisName: Green_Apple_Ring + Name: Green Apple Ring + Type: Armor + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 99 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + if(JobLevel<30) { bonus bAllStats,6-(JobLevel/5); } + - Id: 2796 + AegisName: Magical_Stone + Name: Rocks + Type: Armor + Weight: 200 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 99 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddDamageClass,2047,10; bonus2 bAddDefMonster,2048,-10; bonus3 bAddMonsterIdDropItem,6152,2047,70; + - Id: 2797 + AegisName: Magical_Stone_ + Name: Rocks + Type: Armor + Weight: 200 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 99 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddDamageClass,2049,10; bonus2 bAddDefMonster,2050,-10; bonus3 bAddMonsterIdDropItem,6151,2049,70; + - Id: 2798 + AegisName: Will_Of_Exhausted_Angel + Name: Will Of Exhausted Angel + Type: Armor + Weight: 200 + Jobs: + Monk: true + Priest: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 99 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + if(strcharinfo(3)=="job3_arch02") { bonus2 bAddDefMonster,1761,50; bonus2 bAddDefMonster,1762,50; } + - Id: 2799 + AegisName: Kuirpenring + Name: Kuirpenring + Type: Armor + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bMdef,1; + - Id: 2800 + AegisName: Accelerator + Name: Accelerator + Type: Armor + Buy: 100000 + Weight: 100 + Slots: 1 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 99 + Script: | + bonus bAgi,2; + - Id: 2801 + AegisName: Hovering_Booster + Name: Hovering Booster + Type: Armor + Buy: 100000 + Weight: 2000 + Slots: 1 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 99 + Script: | + bonus bAgi,1; + - Id: 2802 + AegisName: Suicidal_Device + Name: Suicidal Device + Type: Armor + Buy: 500000 + Weight: 1000 + Slots: 1 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 99 + - Id: 2803 + AegisName: Shape_Shifter + Name: Shape Shifter + Type: Armor + Buy: 100000 + Weight: 500 + Slots: 1 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 99 + Script: | + bonus bInt,3; + - Id: 2804 + AegisName: Cooling_Device + Name: Cooling Device + Type: Armor + Buy: 100000 + Weight: 2500 + Slots: 1 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 99 + Script: | + bonus bDex,1; + - Id: 2805 + AegisName: Mag_Field_Generator + Name: Magnetic Field Generator + Type: Armor + Buy: 100000 + Weight: 6000 + Slots: 1 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 99 + Script: | + bonus bDex,1; + - Id: 2806 + AegisName: Barrier_Builder + Name: Barrier Builder + Type: Armor + Buy: 150000 + Weight: 8000 + Defense: 3 + Slots: 1 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 99 + Script: | + bonus bDex,1; + - Id: 2807 + AegisName: Repair_Kit + Name: Repair Kit + Type: Armor + Buy: 200000 + Weight: 400 + Slots: 1 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 99 + - Id: 2808 + AegisName: Camouflage_Generator + Name: Camouflague Generator + Type: Armor + Buy: 250000 + Weight: 1000 + Slots: 1 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 99 + Script: | + bonus bAgi,3; + - Id: 2809 + AegisName: High_Quality_Cooler + Name: High Quality Cooler + Type: Armor + Buy: 100000 + Weight: 2500 + Slots: 1 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 99 + Script: | + bonus bDex,1; + - Id: 2810 + AegisName: Special_Cooler + Name: Special Cooler + Type: Armor + Buy: 100000 + Weight: 2500 + Slots: 1 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 99 + Script: | + bonus bDex,1; + - Id: 2811 + AegisName: Freyja_SBracelet7 + Name: Freyja's Spirit Bracelet + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 20 + Script: | + bonus bAllStats,1; + - Id: 2812 + AegisName: Freyja_SBracelet30 + Name: Freyja's Spirit Bracelet + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 20 + Script: | + bonus bAllStats,1; + - Id: 2813 + AegisName: Freyja_SBracelet60 + Name: Freyja's Spirit Bracelet + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 20 + Script: | + bonus bAllStats,1; + - Id: 2814 + AegisName: Freyja_SBracelet90 + Name: Freyja's Spirit Bracelet + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 20 + Script: | + bonus bAllStats,1; + - Id: 2815 + AegisName: Th_Ring_Of_Water + Name: Ring Of Water + Type: Armor + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bAllStats,1; bonus bMdef,2; + - Id: 2816 + AegisName: Radar_Ring1 + Name: Radar Ring + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus3 bAddMonsterIdDropItem,6206,1002,400; bonus3 bAddMonsterIdDropItem,6207,1161,400; bonus3 bAddMonsterIdDropItem,6208,1153,400; + - Id: 2817 + AegisName: Radar_Ring2 + Name: Radar Ring + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus3 bAddMonsterIdDropItem,6206,1026,400; bonus3 bAddMonsterIdDropItem,6207,1197,400; bonus3 bAddMonsterIdDropItem,6208,1504,400; + - Id: 2818 + AegisName: Radar_Ring3 + Name: Radar Ring + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus3 bAddMonsterIdDropItem,6206,1508,400; bonus3 bAddMonsterIdDropItem,6207,1098,400; bonus3 bAddMonsterIdDropItem,6208,1315,400; + - Id: 2819 + AegisName: Swordman_Manual + Name: Swordsman Manual + Type: Armor + Weight: 100 + Jobs: + Novice: true + SuperNovice: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxSP,100; skill "SM_BASH",1; skill "SM_PROVOKE",1; skill "SM_MAGNUM",1; + - Id: 2820 + AegisName: Thief_Manual + Name: Thief Manual + Type: Armor + Weight: 100 + Jobs: + Novice: true + SuperNovice: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxSP,100; skill "TF_DOUBLE",3; bonus bDoubleRate,15; skill "TF_STEAL",1; skill "TF_HIDING",1; skill "TF_POISON",1; + - Id: 2821 + AegisName: Acolyte_Manual + Name: Acolyte Manual + Type: Armor + Weight: 100 + Jobs: + Novice: true + SuperNovice: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxSP,100; skill "AL_HEAL",1; skill "AL_INCAGI",1; skill "AL_BLESSING",1; + - Id: 2822 + AegisName: Archer_Manual + Name: Archer Manual + Type: Armor + Weight: 100 + Jobs: + Novice: true + SuperNovice: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxSP,100; skill "AC_OWL",1; skill "AC_CONCENTRATION",1; + - Id: 2823 + AegisName: Merchant_Manual + Name: Merchant Manual + Type: Armor + Weight: 100 + Jobs: + Novice: true + SuperNovice: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxSP,100; skill "MC_DISCOUNT",1; skill "MC_OVERCHARGE",1; skill "MC_IDENTIFY",1; skill "MC_MAMMONITE",1; + - Id: 2824 + AegisName: Mage_Manual + Name: Mage Manual + Type: Armor + Weight: 100 + Jobs: + Novice: true + SuperNovice: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxSP,100; skill "MG_SRECOVERY",1; skill "MG_COLDBOLT",1; skill "MG_FIREWALL",1; skill "MG_FIREBOLT",1; + - Id: 2825 + AegisName: Shaman_EaringB + Name: Shaman Earrings + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bInt,2; + - Id: 2826 + AegisName: Dark_Knight_BeltB + Name: Dark Knight Belt + Type: Armor + Buy: 20 + Weight: 500 + Defense: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bDex,2; bonus bAgi,1; + - Id: 2827 + AegisName: Dark_Knight_GloveB + Name: Dark Knight Glove + Type: Armor + Buy: 20 + Weight: 500 + Defense: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + Script: | + autobonus "{ bonus bMaxHPrate,10; }",10,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }"; + - Id: 2828 + AegisName: Upg_Clip + Name: Upg Clip + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bMaxSP,50; bonus bMaxHPrate,3; + - Id: 2829 + AegisName: Greed_Clip + Name: Greed Clip + Type: Armor + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 10 + Script: | + skill "BS_GREED",1; + - Id: 2830 + AegisName: Magingiorde_C + Name: Megingjard + Type: Armor + Buy: 20 + Defense: 2 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 94 + Script: | + bonus bStr,40; bonus bMdef,7; + - Id: 2831 + AegisName: Brysinggamen_C + Name: Brisingamen + Type: Armor + Buy: 20 + Defense: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 94 + Script: | + bonus bStr,6; bonus bInt,6; bonus bVit,6; bonus bAgi,6; bonus bLuk,10; bonus bMdef,5; + - Id: 2832 + AegisName: Freyja_Ring + Name: Freyja's Ring + Type: Armor + Buy: 20 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 2833 + AegisName: Odin's_Recall + Name: Odin's Recall + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bAllStats,1; skill "ALL_ODINS_RECALL",1; + - Id: 2834 + AegisName: F_All_In_One_Ring + Name: All In One Ring + Type: Armor + Buy: 20 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bAllStats,1; bonus bNoCastCancel; bonus bVariableCastrate,10; skill "AL_HEAL",1; skill "AL_TELEPORT",1; + - Id: 2835 + AegisName: F_Critical_Ring_C + Name: Critical Ring + Type: Armor + Buy: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bCritical,10; + - Id: 2836 + AegisName: F_Glove_C + Name: Glove + Type: Armor + Buy: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bDex,4; + - Id: 2837 + AegisName: F_Safety_Ring_C + Name: Safety Ring + Type: Armor + Buy: 1 + Defense: 5 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bMdef,5; + - Id: 2838 + AegisName: F_Necklace_C + Name: Necklace + Type: Armor + Buy: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bVit,4; + - Id: 2839 + AegisName: F_Ring_C + Name: Ring + Type: Armor + Buy: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bStr,4; + - Id: 2840 + AegisName: F_Rosary_C + Name: Rosary + Type: Armor + Buy: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bLuk,4; bonus bMdef,5; + - Id: 2841 + AegisName: Caracas_Ring + Name: Caracas Ring + Type: Armor + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 99 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,2; bonus bDex,2; bonus bMdef,2; bonus2 bExpAddRace,RC_All,10; bonus2 bDropAddRace,RC_All,10; + - Id: 2842 + AegisName: F_Earing_C + Name: Earring + Type: Armor + Buy: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bInt,3; + - Id: 2843 + AegisName: Gold_Trickle + Name: Gold Trickle + Type: Armor + Buy: 20 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 75 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxSP,50; + - Id: 2844 + AegisName: El_Dicastes_Light + Name: Light Of El Discastes + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 80 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + skill "RETURN_TO_ELDICASTES",1; + - Id: 2845 + AegisName: No_Fear_Belt + Name: No Fear Belt + Type: Armor + Defense: 2 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 20 + Script: | + bonus bMdef,2; + - Id: 2846 + AegisName: E_All_In_One_Ring + Name: All In One Ring + Type: Armor + Buy: 20 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bAllStats,1; + - Id: 2847 + AegisName: E_Critical_Ring_C + Name: Critical Ring + Type: Armor + Buy: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bCritical,10; + - Id: 2848 + AegisName: E_Glove_C + Name: Glove + Type: Armor + Buy: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bDex,4; + - Id: 2849 + AegisName: E_Safety_Ring_C + Name: Safety Ring + Type: Armor + Buy: 1 + Defense: 5 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bMdef,5; + - Id: 2850 + AegisName: E_Ring_C + Name: Ring + Type: Armor + Buy: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bVit,4; + - Id: 2851 + AegisName: E_Necklace_C + Name: Necklace + Type: Armor + Buy: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bStr,4; + - Id: 2852 + AegisName: E_Rosary_C + Name: Rosary + Type: Armor + Buy: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bLuk,4; bonus bMdef,5; + - Id: 2853 + AegisName: Telekinetic_Orb + Name: Telekinetic Orb + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 110 + Script: | + bonus bMdef,1; bonus bInt,3; bonus bMaxSP,30; bonus2 bSkillAtk,"WL_SOULEXPANSION",10; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",10; bonus2 bSkillUseSP,"WL_SOULEXPANSION",-50; bonus2 bSkillUseSP,"SO_PSYCHIC_WAVE",-50; + - Id: 2854 + AegisName: Alchemy_Glove + Name: Alchemy Glove + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 125 + Script: | + bonus bMdef,2; bonus bInt,1; bonus2 bMagicAtkEle,Ele_Fire,10; bonus2 bMagicAtkEle,Ele_Water,-20; bonus2 bSubEle,Ele_Water,-30; bonus3 bAutoSpell,"MG_FIREBALL",5,30; bonus5 bAutoSpell,"MG_FIREBOLT",5,30,BF_MAGIC,1; + - Id: 2855 + AegisName: Whike_Black_Tail + Name: Whike Black Tail + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 45 + Script: | + bonus bCriticalRate,7; bonus bAspdRate,3; + - Id: 2856 + AegisName: Half_Megin + Name: Half Megingjard + Type: Armor + Buy: 20 + Defense: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 47 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,3; bonus bStr,20; + - Id: 2857 + AegisName: Half_Brysing + Name: Half Brisingamen + Type: Armor + Buy: 20 + Defense: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 47 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,3; bonus bInt,5; bonus bVit,3; bonus bDex,3; bonus bAgi,3; bonus bLuk,5; bonus bMdef,2; + - Id: 2858 + AegisName: Pendant_Of_Guardian + Name: Pendant Of Guardian + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 70 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + skill "ALL_GUARDIAN_RECALL",1; + - Id: 2859 + AegisName: Golden_Rod_Orb + Name: Golden Rod Orb + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Jobs: + Wizard: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bMdef,2; bonus bInt,1; bonus2 bSubEle,Ele_Wind,15; bonus3 bAutoSpellWhenHit,"WZ_JUPITEL",3,30; + - Id: 2860 + AegisName: Aqua_Orb + Name: Aqua Orb + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Jobs: + Wizard: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bMdef,2; bonus bInt,1; bonus2 bSubEle,Ele_Water,15; bonus3 bAutoSpellWhenHit,"WZ_FROSTNOVA",3,30; + - Id: 2861 + AegisName: Crimson_Orb + Name: Crismon Orb + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Jobs: + Wizard: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bMdef,2; bonus bInt,1; bonus2 bSubEle,Ele_Fire,15; bonus3 bAutoSpellWhenHit,"WZ_SIGHTRASHER",3,30; + - Id: 2862 + AegisName: Forest_Orb + Name: Forest Orb + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Jobs: + Wizard: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bMdef,2; bonus bInt,1; bonus2 bSubEle,Ele_Earth,15; bonus3 bAutoSpellWhenHit,"WZ_QUAGMIRE",3,30; + - Id: 2863 + AegisName: Ring_Of_Valkyrie + Name: Ring Of Valkyrie + Type: Armor + Defense: 2 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bExpAddClass,Class_All,5; bonus2 bDropAddRace,RC_All,5; + - Id: 2864 + AegisName: Light_Of_Cure + Name: Light Of Cure + Type: Armor + Buy: 20 + Jobs: + Priest: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 110 + Script: | + bonus bVit,2; bonus bHealPower,2; + - Id: 2865 + AegisName: Seal_Of_Cathedral + Name: Seal Of Cathedral + Type: Armor + Buy: 20 + Jobs: + Priest: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 110 + Script: | + bonus bInt,2; bonus bHealPower,2; + - Id: 2866 + AegisName: Ring_Of_Archbishop + Name: Ring Of Archbishop + Type: Armor + Buy: 20 + Jobs: + Priest: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 110 + Script: | + bonus bDex,2; bonus bHealPower,2; + - Id: 2867 + AegisName: Broken_Bamboo_Piece + Name: Broken Bamboo Piece + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bMdef,2; + - Id: 2868 + AegisName: Green_Batik + Name: Green Batik + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 45 + Script: | + bonus bStr,1; bonus bInt,1; bonus bDex,1; bonus bMdef,1; + - Id: 2869 + AegisName: Colorful_Ketupat + Name: Colorful Ketupat + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 45 + Script: | + bonus bStr,1; bonus bInt,1; bonus bDex,1; + - Id: 2870 + AegisName: Tw_8th_Anni_Ring + Name: Tw 8th Anni Ring + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bStr,5; bonus bInt,5; bonus bVit,5; bonus bDex,5; bonus bAgi,5; bonus bLuk,5; + - Id: 2871 + AegisName: Brazilian_Emblem + Name: Brazilian Emblem + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 60 + Script: | + bonus2 bAddClass,Class_All,3; bonus bMatkRate,3; bonus bMaxHP,50; bonus bMaxSP,20; + - Id: 2872 + AegisName: G_Honor_Certificate + Name: G Honor Certificate + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 2873 + AegisName: Cat_Hand_Glove + Name: Cat Hand Glove + Type: Armor + Buy: 20 + Weight: 100 + Defense: 5 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bAgi,1; bonus bVit,1; bonus bDex,1; bonus bLuk,1; + - Id: 2874 + AegisName: Buffalo_Horn + Name: Buffalo Horn + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 10 + Script: | + bonus bAspd,1; + - Id: 2875 + AegisName: RO_Appreciation_Ring + Name: RO Appreciation Ring + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; + - Id: 2876 + AegisName: Necklace_Spica + Name: Necklace Spica + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 10 + Script: | + bonus bMdef,1; + - Id: 2877 + AegisName: Glove_Sabik + Name: Glove Sabik + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 10 + Script: | + bonus bMdef,1; + - Id: 2878 + AegisName: Bracelet_Arunairi + Name: Bracelet Arunairi + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 10 + Script: | + bonus bMdef,1; + - Id: 2879 + AegisName: Badge_Giorredart + Name: Badge Giorredart + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 10 + Script: | + bonus bMdef,1; + - Id: 2880 + AegisName: Ring_Lupak + Name: Ring Lupak + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 10 + Script: | + bonus bMdef,1; + - Id: 2881 + AegisName: Orleans_Necklace + Name: Orleans Necklace + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bDex,2; bonus bMatk,20; + - Id: 2882 + AegisName: Ecoro_Cardslip + Name: Ecoro Cardslip + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bVit,1; bonus bLuk,1; + - Id: 2883 + AegisName: Ur_Seal + Name: Ur's Seal + Type: Armor + Buy: 20 + Weight: 200 + Defense: 4 + Slots: 1 + Jobs: + Knight: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bMaxHPrate,2; bonus2 bSkillUseSP,"LK_SPIRALPIERCE",5; bonus2 bSkillUseSP,"RK_HUNDREDSPEAR",5; + - Id: 2884 + AegisName: Peuz_Seal + Name: Peuz's Seal + Type: Armor + Buy: 20 + Weight: 200 + Defense: 3 + Slots: 1 + Jobs: + Knight: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bBaseAtk,20; bonus bMaxSP,20; + - Id: 2885 + AegisName: Mother_Heart + Name: Mother Heart + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bBaseAtk,15; bonus bMatk,15; bonus2 bExpAddClass,Class_All,15; + - Id: 2886 + AegisName: Sabah_Ring + Name: Sapha Ring + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + Assassin: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bCritical,3; bonus2 bSkillUseSP,"GC_DARKILLUSION",5; + - Id: 2887 + AegisName: Nab_Ring + Name: Nab Ring + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + Assassin: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bBaseAtk,10; bonus bMatk,20; + - Id: 2888 + AegisName: School_Bag + Name: School Bag + Type: Armor + Buy: 20 + Weight: 1000 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bAspdRate,3; bonus bVariableCastrate,-3; if(BaseLevel<80){ bonus bMaxHP,200; bonus bMaxSP,100; } + - Id: 2889 + AegisName: Endure_Ring + Name: Endure Ring + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 60 + - Id: 2890 + AegisName: White_Wing_Brooch + Name: White Wing Brooch + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + Hunter: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bDex,2; bonus bLongAtkRate,3; + - Id: 2891 + AegisName: Black_wing_Brooch + Name: Black Wing Brooch + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + Hunter: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bInt,2; bonus bFlee2,3; + - Id: 2892 + AegisName: Assassin_Handcuffs + Name: Assassin's Glove + Type: Armor + Buy: 56000 + Weight: 400 + Defense: 3 + Slots: 1 + Jobs: + Assassin: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bMaxSP,20; bonus bCritical,3; + - Id: 2893 + AegisName: Cursed_Heart + Name: Cursed Heart + Type: Armor + Buy: 20 + Weight: 50 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 80 + - Id: 2894 + AegisName: Glove_Of_Shura + Name: Sura Gauntlet + Type: Armor + Buy: 20 + Weight: 400 + Defense: 1 + Jobs: + Monk: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 130 + Script: | + bonus bStr,5; bonus bMaxSPrate,6; bonus bMaxHPrate,-6; if(readparam(bStr)>=120){ bonus bBaseAtk,30; } + - Id: 2895 + AegisName: Medal_Of_Valor1 + Name: Medal Of Valor1 + Type: Armor + Defense: 4 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bVariableCastrate,-2; + - Id: 2896 + AegisName: Medal_Of_Valor2 + Name: Medal Of Valor2 + Type: Armor + Defense: 4 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bAspdRate,3; + - Id: 2897 + AegisName: 2011RWC_Necklace_J + Name: 2011RWC Necklace J + Type: Armor + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus2 bExpAddClass,Class_All,1; + - Id: 2898 + AegisName: Black_Rosary + Name: Dark Rosary + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 90 + Script: | + bonus bMdef,15; + - Id: 2899 + AegisName: Sound_Amplifier + Name: Sound Amplification Device + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Jobs: + BardDancer: true + Hunter: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 90 + Script: | + bonus2 bSkillAtk,"WM_METALICSOUND",150; bonus2 bSkillUseSP,"WM_METALICSOUND",-60; bonus bVariableCastrate,-50; + - Id: 2900 + AegisName: Morrigane's_Belt_ + Name: Morrigane's Belt + Type: Armor + Buy: 30000 + Weight: 200 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 61 + - Id: 2901 + AegisName: Morrigane's_Pendant_ + Name: Morrigane's Pendant + Type: Armor + Buy: 30000 + Weight: 200 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 61 + Script: | + bonus bStr,2; + - Id: 2902 + AegisName: Morpheus's_Ring_ + Name: Morpheus's Ring + Type: Armor + Buy: 30000 + Weight: 100 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 33 + Script: | + bonus bInt,1; + - Id: 2903 + AegisName: Morpheus's_Armlet_ + Name: Morpheus's Armlet + Type: Armor + Buy: 30000 + Weight: 100 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 33 + Script: | + bonus bInt,1; + - Id: 2904 + AegisName: Naqsh + Name: Naqsi + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + 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; + - Id: 2905 + AegisName: Super_Ora_Ora + Name: Super Ora Ora + Type: Armor + Weight: 1000 + Locations: + Right_Accessory: true + Left_Accessory: true + - Id: 2906 + AegisName: Happy_Gauntlet + Name: Happy Gauntlet + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 3 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 70 + Script: | + bonus bMdef,3; + - Id: 2907 + AegisName: Buwaya_Tattoo + Name: Bawaya Agimat Tattoo + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bMatkRate,7; bonus bFixedCastrate,-7; + - Id: 2908 + AegisName: Light_Ring + Name: Light Ring + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + - Id: 2909 + AegisName: Darkness_Ring + Name: Darkness Ring + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + - Id: 2910 + AegisName: Bakonawa_Tattoo + Name: Bakunawa Agimat Tattoo + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus2 bAddClass,Class_All,7; bonus bAspdRate,10; + - Id: 2911 + AegisName: Bangungot_Tattoo + Name: Bangungot Agimat Tattoo + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bHealPower,4; bonus bHealPower2,7; + - Id: 2912 + AegisName: Xylitol_2011 + Name: Xylitol 2011 + Type: Armor + Buy: 20 + Weight: 300 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + - Id: 2913 + AegisName: Thief_Handcuff + Name: Thief Handcuff + Type: Armor + Buy: 20 + Weight: 1400 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 10 + Script: | + bonus bBaseAtk,5; + - Id: 2914 + AegisName: Wizard_Left_Eye + Name: Wizard Left Eye + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bInt,4; bonus bMdef,3; bonus bVariableCastrate,3; + - Id: 2915 + AegisName: Ettlang_Keepsake + Name: Ettlang Keepsake + Type: Armor + Buy: 20 + Weight: 50 + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,10; + - Id: 2916 + AegisName: Fairy_Wing + Name: Fairy Wing + Type: Armor + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 90 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + skill "ECLAGE_RECALL",1; + - Id: 2917 + AegisName: Str_Glove + Name: Str Glove + Type: Armor + Buy: 75000 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bMaxHP,100; bonus bMaxSP,20; bonus bBaseAtk,(readparam(bStr)/10); if(readparam(bStr)>=110) bonus2 bAddClass,Class_All,1; + - Id: 2918 + AegisName: Int_Glove + Name: Int Glove + Type: Armor + Buy: 75000 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bMaxHP,100; bonus bMaxSP,20; bonus bMatk,(readparam(bInt)/10); if(readparam(bInt)>=110) bonus bMatkRate,1; + - Id: 2919 + AegisName: Agi_Glove + Name: Agi Glove + Type: Armor + Buy: 75000 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bMaxHP,100; bonus bMaxSP,20; bonus bFlee,(readparam(bAgi)/10); if(readparam(bAgi)>=110) bonus bFlee2,1; + - Id: 2920 + AegisName: Vit_Glove + Name: Vit Glove + Type: Armor + Buy: 75000 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bMaxHP,100; bonus bMaxSP,20; bonus bMaxHP,(readparam(bVit)/10)*50; if(readparam(bVit)>=110) bonus bMaxHPrate,1; + - Id: 2921 + AegisName: Dex_Glove + Name: Dex Glove + Type: Armor + Buy: 75000 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bMaxHP,100; bonus bMaxSP,20; bonus bHit,(readparam(bDex)/10); if(readparam(bDex)>=110) bonus bLongAtkRate,1; + - Id: 2922 + AegisName: Luk_Glove + Name: Luk Glove + Type: Armor + Buy: 75000 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bMaxHP,100; bonus bMaxSP,20; bonus bCritical,(readparam(bLuk)/10); if(readparam(bLuk)>=110) bonus bCritAtkRate,1; + - Id: 2923 + AegisName: Str_Glove_ + Name: Str Glove + Type: Armor + Buy: 75000 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bMaxHP,100; bonus bMaxSP,20; bonus bBaseAtk,(readparam(bStr)/10); if(readparam(bStr)>=110) bonus2 bAddClass,Class_All,1; + - Id: 2924 + AegisName: Int_Glove_ + Name: Int Glove + Type: Armor + Buy: 75000 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bMaxHP,100; bonus bMaxSP,20; bonus bMatk,(readparam(bInt)/10); if(readparam(bInt)>=110) bonus bMatkRate,1; + - Id: 2925 + AegisName: Agi_Glove_ + Name: Agi Glove + Type: Armor + Buy: 75000 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bMaxHP,100; bonus bMaxSP,20; bonus bFlee,(readparam(bAgi)/10); if(readparam(bAgi)>=110) bonus bFlee2,1; + - Id: 2926 + AegisName: Vit_Glove_ + Name: Vit Glove + Type: Armor + Buy: 75000 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bMaxHP,100; bonus bMaxSP,20; bonus bMaxHP,(readparam(bVit)/10)*50; if(readparam(bVit)>=110) bonus bMaxHPrate,1; + - Id: 2927 + AegisName: Dex_Glove_ + Name: Dex Glove + Type: Armor + Buy: 75000 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bMaxHP,100; bonus bMaxSP,20; bonus bHit,(readparam(bDex)/10); if(readparam(bDex)>=110) bonus bLongAtkRate,1; + - Id: 2928 + AegisName: Luk_Glove_ + Name: Luk Glove + Type: Armor + Buy: 75000 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bMaxHP,100; bonus bMaxSP,20; bonus bCritical,(readparam(bLuk)/10); if(readparam(bLuk)>=110) bonus bCritAtkRate,1; + - Id: 2935 + AegisName: Sprint_Gloves + Name: Sprint Gloves + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + Wizard: true + Classes: + Upper: true + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bVariableCastrate,-1; bonus bDelayrate,-1; + - Id: 2936 + AegisName: Recovery_Ring + Name: Recovery Ring + Type: Armor + Buy: 20 + Weight: 100 + Defense: 5 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 10 + Script: | + bonus bVit,1; bonus bMaxHP,250; bonus bMaxHPrate,5; bonus bHealPower2,5; + - Id: 2940 + AegisName: Ninja_Manual + Name: Ninja Manual + Type: Armor + Weight: 100 + Jobs: + Novice: true + SuperNovice: true + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxSP,100; skill "NJ_UTSUSEMI",1; skill "NJ_KOUENKA",1; skill "NJ_SYURIKEN",1; + - Id: 2941 + AegisName: Gunslinger_Manual + Name: Gunslinger Manual + Type: Armor + Weight: 100 + Jobs: + Novice: true + SuperNovice: true + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxSP,100; skill "GS_GLITTERING",1; skill "GS_ADJUSTMENT",1; skill "GS_MADNESSCANCEL",1; skill "GS_INCREASING",1; + - Id: 2942 + AegisName: Taekwon_Manual + Name: Taekwon Manual + Type: Armor + Weight: 100 + Jobs: + Novice: true + SuperNovice: true + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxSP,100; skill "TK_SEVENWIND",4; skill "TK_JUMPKICK",5; + - Id: 2943 + AegisName: Critical_Ring_ + Name: Critical Ring + Type: Armor + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bCritical,5; + - Id: 2944 + AegisName: TE_Ring_Of_Protection + Name: TE Ring Of Protection + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 40 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,100; bonus2 bSubRace,RC_Player_Human,5; + - Id: 2945 + AegisName: TE_Ring_Of_Rage + Name: TE Ring Of Rage + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 40 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_Player_Human,5; bonus2 bMagicAddRace,RC_Player_Human,5; + - Id: 2946 + AegisName: TE_Ring_Of_Defiance + Name: TE Ring Of Defiance + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 40 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,5; bonus2 bSubRace,RC_Player_Human,5; + - Id: 2948 + AegisName: Demon_Wing + Name: Demon Wing + Type: Armor + Buy: 10 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 70 + Script: | + bonus bFlee,5; + - Id: 2949 + AegisName: Silversmith_Bracelet + Name: Silversmith Bracelet + Type: Armor + Buy: 10 + Weight: 100 + Defense: 3 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 60 + Script: | + bonus bAllStats,1; bonus bMdef,3; skill "SA_SPELLBREAKER",5; + - Id: 2950 + AegisName: Rune_Ring + Name: Rune Ring + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bExpAddClass,Class_Normal,10; + - Id: 2951 + AegisName: Kvasir_Ring_Blue + Name: Kvasir Ring Blue + Type: Armor + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bMaxSP,30; skill "ECL_SNOWFLIP",1; + - Id: 2952 + AegisName: Kvasir_Ring_Red + Name: Kvasir Ring Red + Type: Armor + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bMaxSP,30; skill "ECL_PEONYMAMY",1; + - Id: 2953 + AegisName: Kvasir_Ring_Green + Name: Kvasir Ring Green + Type: Armor + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bMaxHP,100; skill "ECL_SADAGUI",1; + - Id: 2954 + AegisName: Kvasir_Ring_Brown + Name: Kvasir Ring Brown + Type: Armor + Buy: 10 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bMaxHP,100; + - Id: 2956 + AegisName: Safety_Ring_ + Name: Advanced Safety Ring + Type: Armor + Buy: 75000 + Weight: 100 + Defense: 10 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 50 + Script: | + bonus bMdef,5; bonus bAllStats,1; + - Id: 2957 + AegisName: Good_Ring_Of_Flame_Lord + Name: Advanced Ring Of Flame Lord + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Monk: true + Priest: true + Rebellion: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 85 + Script: | + 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; + - Id: 2958 + AegisName: Good_Ring_Of_Resonance + Name: Advanced Ring Of Resonance + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Monk: true + Priest: true + Rebellion: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 85 + Script: | + 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; + - Id: 2959 + AegisName: Fidelity_Necklace + Name: Fidelity Necklace + Type: Armor + Buy: 20 + Weight: 300 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 50 + Script: | + bonus bAgi,2; bonus2 bSubRace,RC_Brute,3; bonus2 bSubRace,RC_Player_Doram,3; + - Id: 2960 + AegisName: Badge_Of_Manny + Name: Badge Of Manny + Type: Armor + Buy: 20 + Weight: 200 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bAllStats,1; + - Id: 2963 + AegisName: Body_Power_Up_Ring + Name: Physical Enhancer Ring + Type: Armor + Buy: 10 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 90 + Script: | + bonus2 bAddClass,Class_All,5; + - Id: 2964 + AegisName: Ring_Of_Spell_Explosion + Name: Magic Intensifier Ring + Type: Armor + Buy: 10 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 90 + Script: | + bonus bMatkRate,5; + - Id: 2966 + AegisName: RWC_2012_Ring + Name: RWC 2012 Ring + Type: Armor + Buy: 20 + Weight: 200 + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + Script: | + bonus2 bAddClass,Class_All,1; + - Id: 2967 + AegisName: RWC_2012_Ring_ + Name: Chambered RWC 2012 Ring + Type: Armor + Buy: 20 + Weight: 200 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + Script: | + bonus2 bAddClass,Class_All,1; + - Id: 2968 + AegisName: RWC_2012_Pendant + Name: RWC 2012 Pendant + Type: Armor + Buy: 20 + Weight: 200 + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bMatkRate,1; + - Id: 2969 + AegisName: RWC_2012_Pendant_ + Name: Chambered RWC 2012 Pendant + Type: Armor + Buy: 20 + Weight: 200 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bMatkRate,1; + - Id: 2971 + AegisName: Pocket_Watch + Name: Pocket Watch + Type: Armor + Buy: 10 + Weight: 200 + Defense: 1 + Slots: 1 + Jobs: + SoulLinker: true + Wizard: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 80 + Script: | + bonus bHPrecovRate,15; bonus bSPrecovRate,15; bonus bMatkRate,7; + - Id: 2976 + AegisName: Red_Lantern + Name: Red Lantern + Type: Armor + Buy: 10 + Weight: 200 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bMaxSP,-300; skill "MG_SIGHT",1; + UnEquipScript: | + sc_end SC_SIGHT; + - Id: 2977 + AegisName: Hurt_Mind + Name: Hurt Mind + Type: Armor + Buy: 10 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 110 + Script: | + bonus bMaxSP,200; skill "DC_SCREAM",3; + - Id: 2978 + AegisName: KindHeart + Name: Kind Heart + Type: Armor + Buy: 10 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 110 + Script: | + bonus bMaxHP,500; bonus2 bHPRegenRate,300,10000; + - Id: 2979 + AegisName: Strawberry_Decoration + Name: Strawberry Decoration + Type: Armor + Buy: 20 + Weight: 500 + Defense: 1 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bAllStats,1; bonus3 bAutoSpellWhenHit,"WZ_FROSTNOVA",3,10; /* Confirm: Frost Nova cast chance */ + - Id: 2980 + AegisName: Evilspirit_Gloves + Name: Evil Spirit Gloves + Type: Armor + Buy: 10 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 110 + Script: | + bonus bMaxHP,500; bonus bMaxSP,200; skill "PF_SPIDERWEB",1; bonus3 bAutoSpell,"SO_PSYCHIC_WAVE",1,20; bonus5 bAutoSpell,"HW_MAGICPOWER",1,10,BF_MAGIC,0; bonus5 bAutoSpell,"WZ_FROSTNOVA",10,10,BF_MAGIC,0; bonus5 bAutoSpell,"WZ_FROSTNOVA",10,20,BF_WEAPON,0; bonus5 bAutoSpellWhenHit,"DC_SCREAM",1,50,BF_WEAPON|BF_MAGIC,0; + - Id: 2981 + AegisName: RingOfHero + Name: Warrior's Ring + Type: Armor + Buy: 10 + Weight: 200 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 160 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 2983 + AegisName: Greed_Brooch + Name: Greed Brooch + Type: Armor + Buy: 10 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 50 + Script: | + bonus2 bHPLossRate,10,5000; + - Id: 2984 + AegisName: Glove_Save_Rimnil + Name: Glove Save Rimnil + Type: Armor + Buy: 10 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 30 + Script: | + bonus2 bExpAddRace,RC_All,5; bonus2 bSubRace,RC_All,-5; + - Id: 2985 + AegisName: Gyges_Ring + Name: Gyges Ring + Type: Armor + Buy: 10 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 50 + Script: | + bonus bInt,3; bonus bMatk,30; skill "TF_HIDING",1; + UnEquipScript: | + sc_end SC_HIDING; + - Id: 2986 + AegisName: Snake_Ring + Name: Snake Ring + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bDex,3; bonus bMdef,2; + - Id: 2987 + AegisName: Snake_Pendant + Name: Snake Pendant + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bAgi,3; bonus bLuk,2; bonus bMdef,3; + - Id: 2988 + AegisName: Winged_Ring_Of_Newoz + Name: Oz's New Wing Ring + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Jobs: + BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Gender: Male + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 130 + Script: | + bonus bVariableCastrate,-25; + - Id: 2989 + AegisName: Floral_Bracelet_Of_Igu + Name: Bloody Floral Decoration Bracelet + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Jobs: + BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Gender: Female + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 130 + Script: | + bonus bVariableCastrate,-25; + - Id: 2990 + AegisName: Pendant_Of_Harmony + Name: Pendant of Harmony + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 130 + Script: | + bonus bMatkRate,6; bonus bHPrecovRate,50; bonus bSPrecovRate,50; bonus2 bSubEle,Ele_Holy,5; autobonus "{ bonus2 bHPRegenRate,1000,5000; }",100,90000,BF_NORMAL; bonus4 bAutoSpellWhenHit,"PR_SANCTUARY",3,100,0; bonus bStr,-5; + - Id: 2991 + AegisName: Pendant_Of_Chaos + Name: Pendant of Chaos + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 130 + Script: | + bonus2 bAddClass,Class_All,6; bonus2 bSubEle,Ele_Dark,5; bonus2 bResEff,Eff_Confusion,10000; bonus2 bAddEff,Eff_Confusion,500; bonus3 bAutoSpellWhenHit,"NPC_WIDECONFUSE",2,30; bonus bInt,-5; + - Id: 2992 + AegisName: Pendant_Of_Maelstorm + Name: Pendant of Maelstrom + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 130 + Script: | + bonus2 bAddClass,Class_All,6; bonus bMatkRate,6; bonus bAllStats,1; bonus5 bAutoSpellWhenHit,"SC_MAELSTROM",1,100,BF_MAGIC,0; + - Id: 2995 + AegisName: Supplement_Part_Dex + Name: Supplement Part Dex + Type: Armor + Buy: 25000 + Weight: 100 + Slots: 1 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bUseSPrate,-10; bonus bDelayrate,-10; bonus bVariableCastrate,-10; bonus2 bSkillCooldown,"NC_AXEBOOMERANG",-2000; + - Id: 2996 + AegisName: Upgrade_Part_Gun_Barrel + Name: Reinforced Parts - Gun Barrel + Type: Armor + Buy: 10 + Weight: 500 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus2 bAddClass,Class_All,4; bonus bHit,10; bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",25; + - Id: 2997 + AegisName: RWC_Gold_Brooch + Name: RWC Gold Brooch + Type: Armor + Buy: 10 + Weight: 200 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bBaseAtk,25; bonus bMatk,20; + - Id: 2998 + AegisName: Shining_Trapezohedron + Name: Shining Trapezohedron + Type: Armor + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 90 + Script: | + bonus2 bSubEle,Ele_Holy,10; + - Id: 2999 + AegisName: RWC_Brooch + Name: RWC Brooch + Type: Armor + Buy: 10 + Weight: 200 + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,300; bonus bMaxSP,30; + - Id: 5001 + AegisName: Headset + Name: Headset + Type: Armor + Buy: 20 + Weight: 200 + Defense: 6 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 87 + Script: | + bonus2 bResEff,Eff_Curse,1000; + - Id: 5002 + AegisName: Gemmed_Crown + Name: Jewel Crown + Type: Armor + Buy: 20 + Weight: 600 + Defense: 9 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Head_Top: true + EquipLevelMin: 60 + Refineable: true + View: 88 + Script: | + bonus bInt,2; bonus bLuk,1; bonus bMdef,3; + - Id: 5003 + AegisName: Joker_Jester + Name: Joker Jester + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 89 + Script: | + bonus bLuk,2; bonus bMdef,5; + - Id: 5004 + AegisName: Oxygen_Mask + Name: Oxygen Mask + Type: Armor + Buy: 20 + Weight: 200 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Low: true + View: 90 + Script: | + bonus2 bResEff,Eff_Poison,2000; + - Id: 5005 + AegisName: Gas_Mask + Name: Gas Mask + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Low: true + Head_Mid: true + View: 91 + Script: | + bonus2 bResEff,Eff_Poison,3000; + - Id: 5006 + AegisName: Machoman_Glasses + Name: Machoman's Glasses + Type: Armor + Buy: 36000 + Weight: 100 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + View: 92 + - Id: 5007 + AegisName: Loard_Circlet + Name: Grand Circlet + Type: Armor + Buy: 20 + Weight: 200 + Defense: 7 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 55 + Refineable: true + View: 93 + Script: | + bonus bStr,1; bonus bInt,1; bonus bLuk,1; bonus bMdef,4; + - Id: 5008 + AegisName: Puppy_Love + Name: Puppy Love + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + View: 94 + - Id: 5009 + AegisName: Safety_Helmet + Name: Safety Helmet + Type: Armor + Buy: 20 + Weight: 500 + Defense: 7 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 95 + Script: | + bonus bMdef,3; bonus bUnbreakableHelm; + - Id: 5010 + AegisName: Indian_Hair_Piece + Name: Indian Fillet + Type: Armor + Buy: 20 + Weight: 100 + Defense: 5 + Locations: + Head_Top: true + Refineable: true + View: 96 + - Id: 5011 + AegisName: Antenna + Name: Aerial + Type: Armor + Buy: 20 + Weight: 100 + Defense: 5 + Locations: + Head_Top: true + Refineable: true + View: 97 + - Id: 5012 + AegisName: Ph.D_Hat + Name: Ph.D Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 5 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 98 + - Id: 5013 + AegisName: Horn_Of_Lord_Kaho + Name: Lord Kaho's Horn + Type: Armor + Buy: 20 + Weight: 100 + Defense: 30 + Locations: + Head_Top: true + Refineable: true + View: 99 + Script: | + bonus bMdef,10; bonus bStr,5; bonus bAgi,10; bonus bVit,10; bonus bInt,5; bonus bLuk,20; + - Id: 5014 + AegisName: Fin_Helm + Name: Fin Helm + Type: Armor + Buy: 20 + Weight: 300 + Defense: 5 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Head_Mid: true + EquipLevelMin: 65 + View: 100 + - Id: 5015 + AegisName: Egg_Shell + Name: Egg Shell + Type: Armor + Buy: 20 + Weight: 200 + Defense: 6 + Locations: + Head_Top: true + View: 101 + - Id: 5016 + AegisName: Boy's_Cap + Name: Boy's Cap + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 102 + - Id: 5017 + AegisName: Bone_Helm + Name: Bone Helm + Type: Armor + Buy: 20 + Weight: 800 + Defense: 15 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 103 + Script: | + bonus2 bSubEle,Ele_Dark,-15; + - Id: 5018 + AegisName: Feather_Bonnet + Name: Feather Bonnet + Type: Armor + Buy: 20 + Weight: 300 + Defense: 8 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Locations: + Head_Top: true + Refineable: true + View: 104 + Script: | + bonus bAgi,1; + - Id: 5019 + AegisName: Corsair + Name: Corsair + Type: Armor + Buy: 20 + Weight: 500 + Defense: 11 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 105 + Script: | + bonus bVit,1; + - Id: 5020 + AegisName: Kafra_Band + Name: Kafra Band + Type: Armor + Buy: 20 + Weight: 500 + Defense: 5 + Locations: + Head_Top: true + Refineable: true + View: 106 + Script: | + bonus bMdef,3; + - Id: 5021 + AegisName: Bankruptcy_Of_Heart + Name: Grief for Greed + Type: Armor + Buy: 20 + Weight: 1200 + Defense: 8 + Jobs: + Alchemist: true + Blacksmith: true + Merchant: true + Locations: + Head_Top: true + EquipLevelMin: 38 + Refineable: true + View: 107 + Script: | + bonus bInt,1; bonus bDex,1; + - Id: 5022 + AegisName: Helm_Of_Sun + Name: Hat of the Sun God + Type: Armor + Buy: 20 + Weight: 2400 + Defense: 4 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Locations: + Head_Mid: true + Head_Top: true + Refineable: true + View: 138 + Script: | + bonus bStr,3; bonus bInt,2; + - Id: 5023 + AegisName: Hat_Of_Bundle + Name: Parcel Hat + Type: Armor + Buy: 20 + Weight: 1000 + Jobs: + Alchemist: true + Blacksmith: true + Merchant: true + Locations: + Head_Top: true + Refineable: true + View: 108 + - Id: 5024 + AegisName: Hat_Of_Cake + Name: Cake Hat + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 109 + - Id: 5025 + AegisName: Helm_Of_Angel + Name: Helm of Angel + Type: Armor + Buy: 20 + Weight: 1600 + Defense: 10 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Locations: + Head_Top: true + EquipLevelMin: 74 + Refineable: true + View: 110 + Script: | + bonus bAgi,1; bonus bLuk,1; bonus bMdef,3; + - Id: 5026 + AegisName: Hat_Of_Cook + Name: Chef Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 111 + Script: | + bonus bDex,1; + - Id: 5027 + AegisName: Wizardry_Hat + Name: Mage Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 2 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Head_Top: true + Refineable: true + View: 112 + Script: | + bonus bInt,2; bonus bMaxSP,150; + - Id: 5028 + AegisName: Candle + Name: Candle + Type: Armor + Buy: 20 + Weight: 150 + Locations: + Head_Top: true + Refineable: true + View: 113 + - Id: 5029 + AegisName: Spore_Hat + Name: Spore Hat + Type: Armor + Buy: 20 + Weight: 900 + Defense: 6 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 114 + - Id: 5030 + AegisName: Panda_Cap + Name: Panda Hat + Type: Armor + Buy: 20 + Weight: 800 + Defense: 6 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 40 + Refineable: true + View: 115 + - Id: 5031 + AegisName: Mine_Helm + Name: Mine Hat + Type: Armor + Buy: 20 + Weight: 1500 + Defense: 9 + Jobs: + Acolyte: true + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Rogue: true + Swordman: true + Thief: true + Locations: + Head_Top: true + EquipLevelMin: 55 + Refineable: true + View: 116 + Script: | + bonus bDex,2; + - Id: 5032 + AegisName: Picnic_Hat + Name: Sunday Hat + Type: Armor + Buy: 20 + Weight: 800 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 117 + - Id: 5033 + AegisName: Smokie_Hat + Name: Raccoon Hat + Type: Armor + Buy: 20 + Weight: 900 + Defense: 6 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 118 + - Id: 5034 + AegisName: Light_Bulb_Band + Name: Bulb Band + Type: Armor + Buy: 20 + Weight: 500 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 119 + - Id: 5035 + AegisName: Poring_Hat + Name: Poring Hat + Type: Armor + Buy: 20 + Weight: 700 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 38 + Refineable: true + View: 120 + - Id: 5036 + AegisName: Cross_Band + Name: Cross Hat + Type: Armor + Buy: 20 + Weight: 250 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 121 + - Id: 5037 + AegisName: Fruit_Shell + Name: Nut Shell + Type: Armor + Buy: 20 + Weight: 150 + Defense: 8 + Locations: + Head_Top: true + EquipLevelMin: 5 + View: 122 + - Id: 5038 + AegisName: Deviruchi_Cap + Name: Deviruchi Hat + Type: Armor + Buy: 20 + Weight: 800 + Defense: 4 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 64 + Refineable: true + View: 123 + Script: | + bonus bStr,1; bonus bInt,1; + - Id: 5039 + AegisName: Mottled_Egg_Shell + Name: Rainbow Eggshell + Type: Armor + Buy: 20 + Weight: 400 + Defense: 8 + Locations: + Head_Top: true + EquipLevelMin: 19 + View: 124 + - Id: 5040 + AegisName: Blush + Name: Blush + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Mid: true + View: 125 + - Id: 5041 + AegisName: Heart_Hair_Pin + Name: Heart Hairpin + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Top: true + Refineable: true + View: 126 + - Id: 5042 + AegisName: Hair_Protector + Name: Bao Bao + Type: Armor + Buy: 20 + Weight: 150 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 14 + Refineable: true + View: 127 + - Id: 5043 + AegisName: Opera_Ghost_Mask + Name: Opera Phantom Mask + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + EquipLevelMin: 20 + View: 128 + - Id: 5044 + AegisName: Devil's_Wing + Name: Evil Wing Ears + Type: Armor + Buy: 20 + Weight: 350 + Defense: 4 + Locations: + Head_Top: true + EquipLevelMin: 45 + Refineable: true + View: 129 + Script: | + bonus bVit,1; + - Id: 5045 + AegisName: Magician_Hat + Name: Magician Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 6 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 130 + Script: | + bonus bDex,1; bonus bAgi,1; bonus bMaxSP,50; + - Id: 5046 + AegisName: Bongun_Hat + Name: Bongun Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 5 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + View: 139 + - Id: 5047 + AegisName: Fashion_Sunglass + Name: Fashionable Glasses + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 131 + - Id: 5048 + AegisName: First_Moon_Hair_Pin + Name: Cresent Hairpin + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Top: true + Refineable: true + View: 132 + - Id: 5049 + AegisName: Stripe_Band + Name: Striped Hairband + Type: Armor + Buy: 20 + Weight: 150 + Defense: 1 + Locations: + Head_Top: true + View: 133 + - Id: 5050 + AegisName: Mystery_Fruit_Shell + Name: Wonder Nutshell + Type: Armor + Buy: 20 + Weight: 300 + Defense: 10 + Locations: + Head_Top: true + EquipLevelMin: 30 + View: 134 + - Id: 5051 + AegisName: Kitty_Bell + Name: Pussy Cat Bell + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Low: true + View: 135 + - Id: 5052 + AegisName: Blue_Hair_Band + Name: Blue Hairband + Type: Armor + Buy: 20 + Weight: 150 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 136 + - Id: 5053 + AegisName: Spinx_Helm + Name: Sphinx Hat + Type: Armor + Buy: 20 + Weight: 3000 + Defense: 5 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Head_Low: true + Head_Top: true + EquipLevelMin: 65 + View: 137 + Script: | + bonus bStr,2; + - Id: 5054 + AegisName: Assassin_Mask + Name: Assassin Mask + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + Assassin: true + Priest: true + Locations: + Head_Low: true + EquipLevelMin: 70 + View: 180 + - Id: 5055 + AegisName: Novice_Egg_Cap + Name: Novice False Eggshell + Type: Armor + Buy: 1 + Weight: 1 + Defense: 6 + Jobs: + Novice: true + SuperNovice: true + Locations: + Head_Top: true + View: 101 + - Id: 5056 + AegisName: Love_Berry + Name: Fruit of Love + Type: Armor + Buy: 1 + Weight: 200 + Locations: + Head_Top: true + View: 140 + - Id: 5057 + AegisName: Ear_Of_Black_Cat + Name: Black Cat Ears + Type: Armor + Buy: 16000 + Weight: 200 + Defense: 4 + Locations: + Head_Top: true + EquipLevelMin: 45 + Refineable: true + View: 141 + - Id: 5058 + AegisName: Drooping_Kitty + Name: Drooping Cat + Type: Armor + Buy: 250000 + Weight: 500 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 142 + Script: | + bonus bMdef,15; bonus2 bResEff,Eff_Curse,3000; + - Id: 5059 + AegisName: Brown_Bear_Cap + Name: Teddybear Hat + Type: Armor + Buy: 20 + Weight: 800 + Defense: 6 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 143 + - Id: 5060 + AegisName: Party_Hat + Name: Party Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 4 + Locations: + Head_Top: true + Refineable: true + View: 144 + Script: | + bonus bLuk,1; + - Id: 5061 + AegisName: Flower_Hairpin + Name: Flower Hairpin + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 145 + - Id: 5062 + AegisName: Straw_Hat + Name: Straw Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 6 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 146 + Script: | + bonus bAgi,1; + - Id: 5063 + AegisName: Plaster + Name: Giant Band Aid + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 147 + - Id: 5064 + AegisName: Leaf_Headgear + Name: Smokie Leaf + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 148 + - Id: 5065 + AegisName: Fish_On_Head + Name: Blue Fish + Type: Armor + Buy: 20 + Weight: 500 + Defense: 4 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 149 + Script: | + bonus2 bAddRace,RC_Fish,10; + - Id: 5066 + AegisName: Horn_Of_Succubus + Name: Succubus Horn + Type: Armor + Buy: 20 + Weight: 800 + Defense: 7 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 150 + Script: | + bonus bInt,1; bonus bMdef,10; + - Id: 5067 + AegisName: Sombrero + Name: Sombrero + Type: Armor + Buy: 20 + Weight: 350 + Defense: 8 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 151 + Script: | + bonus bAgi,1; + - Id: 5068 + AegisName: Ear_Of_Devil's_Wing + Name: Evil Wing Ears + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Locations: + Head_Mid: true + EquipLevelMin: 70 + View: 152 + Script: | + bonus bStr,1; + - Id: 5069 + AegisName: Mask_Of_Fox + Name: Kitsune Mask + Type: Armor + Buy: 20 + Weight: 300 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 153 + Script: | + bonus bAgi,1; bonus bLuk,1; + - Id: 5070 + AegisName: Headband_Of_Power + Name: Hot-blooded Headband + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 154 + Script: | + bonus bStr,2; + - Id: 5071 + AegisName: Indian_Headband + Name: Indian Headband + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 155 + Script: | + bonus bDex,1; + - Id: 5072 + AegisName: Inccubus_Horn + Name: Incubus Horn + Type: Armor + Buy: 20 + Weight: 800 + Defense: 7 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 156 + Script: | + bonus bAgi,1; bonus bMdef,10; + - Id: 5073 + AegisName: Cap_Of_Concentration + Name: Model Training Hat + Type: Armor + Buy: 20 + Weight: 700 + Defense: 5 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 157 + Script: | + bonus bDex,2; + - Id: 5074 + AegisName: Ear_Of_Angel's_Wing + Name: Angel Wing Ears + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Locations: + Head_Mid: true + EquipLevelMin: 70 + View: 158 + Script: | + bonus bStr,1; + - Id: 5075 + AegisName: Cowboy_Hat + Name: Cowboy Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 8 + Locations: + Head_Top: true + Refineable: true + View: 159 + - Id: 5076 + AegisName: Fur_Hat + Name: Beanie + Type: Armor + Buy: 20 + Weight: 350 + Defense: 3 + Locations: + Head_Top: true + Refineable: true + View: 160 + Script: | + bonus bLuk,1; + - Id: 5077 + AegisName: Tulip_Hairpin + Name: Tulip Hairpin + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 161 + - Id: 5078 + AegisName: Sea_Otter_Cap + Name: Sea-Otter Hat + Type: Armor + Buy: 20 + Weight: 800 + Defense: 6 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 162 + Script: | + bonus bVit,1; + - Id: 5079 + AegisName: Crossed_Hair_Band + Name: X Hairpin + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 163 + - Id: 5080 + AegisName: Headgear_Of_Queen + Name: Crown of Ancient Queen + Type: Armor + Buy: 20 + Weight: 400 + Defense: 8 + Locations: + Head_Top: true + EquipLevelMin: 45 + Refineable: true + View: 164 + - Id: 5081 + AegisName: Mistress_Crown + Name: Crown of Mistress + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 75 + Refineable: true + View: 165 + Script: | + bonus bMaxSP,100; bonus bInt,2; bonus bUnbreakableHelm; + - Id: 5082 + AegisName: Mushroom_Band + Name: Decorative Mushroom + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Locations: + Head_Top: true + Refineable: true + View: 166 + - Id: 5083 + AegisName: Red_Tailed_Ribbon + Name: Red Ribbon + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Locations: + Head_Top: true + EquipLevelMin: 45 + Refineable: true + View: 167 + Script: | + bonus bMdef,10; + - Id: 5084 + AegisName: Lazy_Raccoon + Name: Lazy Smokie + Type: Armor + Buy: 20 + Weight: 500 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 168 + Script: | + bonus2 bResEff,Eff_Sleep,2000; + - Id: 5085 + AegisName: Pair_Of_Red_Ribbon + Name: Small Ribbons + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Locations: + Head_Mid: true + EquipLevelMin: 45 + View: 169 + - Id: 5086 + AegisName: Alarm_Mask + Name: Alarm Mask + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Low: true + Head_Mid: true + View: 170 + Script: | + bonus2 bResEff,Eff_Blind,5000; + - Id: 5087 + AegisName: Goblin_Mask_01 + Name: Poker Face + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Low: true + Head_Mid: true + View: 171 + - Id: 5088 + AegisName: Goblin_Mask_02 + Name: Surprised Mask + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Low: true + Head_Mid: true + View: 172 + - Id: 5089 + AegisName: Goblin_Mask_03 + Name: Annoyed Mask + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Low: true + Head_Mid: true + View: 173 + - Id: 5090 + AegisName: Goblin_Mask_04 + Name: Goblin Leader Mask + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Locations: + Head_Low: true + Head_Mid: true + View: 174 + - Id: 5091 + AegisName: Big_Golden_Bell + Name: Decorative Golden Bell + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 35 + Refineable: true + View: 175 + - Id: 5092 + AegisName: Blue_Coif + Name: Coif + Type: Armor + Buy: 150000 + Weight: 300 + Defense: 5 + Jobs: + Assassin: true + Priest: true + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 65 + Refineable: true + View: 176 + - Id: 5093 + AegisName: Blue_Coif_ + Name: Coif + Type: Armor + Buy: 150000 + Weight: 300 + Defense: 5 + Slots: 1 + Jobs: + Assassin: true + Priest: true + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 65 + Refineable: true + View: 177 + Script: | + bonus bMaxSP,100; + - Id: 5094 + AegisName: Orc_Hero_Helm + Name: Helmet of Orc Hero + Type: Armor + Buy: 500000 + Weight: 900 + Defense: 5 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 55 + Refineable: true + View: 178 + Script: | + bonus bStr,2; bonus bVit,1; + - Id: 5095 + AegisName: Orc_Hero_Helm_ + Name: Helmet of Orc Hero + Type: Armor + Buy: 800000 + Weight: 1000 + Defense: 5 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 55 + Refineable: true + View: 179 + Script: | + bonus bStr,2; bonus bVit,1; + - Id: 5096 + AegisName: Assassin_Mask_ + Name: Assassin Mask + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Jobs: + Assassin: true + Priest: true + Locations: + Head_Low: true + EquipLevelMin: 70 + View: 180 + - Id: 5097 + AegisName: Cone_Hat_ + Name: Holiday Hat + Type: Armor + Weight: 400 + Locations: + Head_Top: true + Refineable: true + View: 144 + - Id: 5098 + AegisName: Tiger_Mask + Name: Tiger Mask + Type: Armor + Buy: 20 + Weight: 400 + Defense: 2 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 50 + View: 181 + Script: | + bonus bStr,3; bonus bMaxHP,100; + - Id: 5099 + AegisName: Cat_Hat + Name: Neko Mimi + Type: Armor + Buy: 20 + Weight: 300 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 182 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bLuk,2; bonus bMdef,10; bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5; + - Id: 5100 + AegisName: Sales_Signboard + Name: Sales Banner + Type: Armor + Buy: 20 + Weight: 800 + Locations: + Head_Top: true + EquipLevelMin: 75 + Refineable: true + View: 183 + Script: | + bonus bStr,1; bonus bAgi,1; bonus bLuk,1; + - Id: 5101 + AegisName: Takius_Blindfold + Name: Takius's Blindfold + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Mid: true + View: 184 + - Id: 5102 + AegisName: Round_Eyes + Name: Blank Eyes + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Mid: true + View: 185 + - Id: 5103 + AegisName: Sunflower_Hairpin + Name: Sunflower Hairpin + Type: Armor + Buy: 20 + Weight: 600 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 30 + View: 186 + Script: | + bonus bAgi,2; bonus bCritical,5; + - Id: 5104 + AegisName: Dark_Blindfold + Name: Dark Blinder + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + View: 187 + Script: | + bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Stun,200; + - Id: 5105 + AegisName: Hat_Of_Cake_ + Name: 2nd Anniversary Hat + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 2 + Locations: + Head_Top: true + EquipLevelMin: 24 + Refineable: true + View: 109 + Script: | + bonus bDex,1; bonus bMaxSP,80; bonus3 bAddMonsterDropItem,7864,7,50; + - Id: 5106 + AegisName: Cone_Hat_INA + Name: 2nd Anniversary Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 10 + Locations: + Head_Top: true + EquipLevelMin: 1 + View: 144 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bLuk,1; bonus bMatkRate,3; bonus bFlee,3; bonus bHit,3; bonus bFlee2,3; + - Id: 5107 + AegisName: Well_Baked_Toast + Name: Crunch Toast + Type: Armor + Buy: 20 + Weight: 50 + Locations: + Head_Low: true + View: 188 + - Id: 5108 + AegisName: Detective_Hat + Name: Renown Detective's Cap + Type: Armor + Buy: 20 + Weight: 350 + Defense: 6 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 189 + - Id: 5109 + AegisName: Red_Bonnet + Name: Red Bonnet + Type: Armor + Buy: 20 + Weight: 400 + Defense: 4 + Locations: + Head_Top: true + Refineable: true + View: 190 + - Id: 5110 + AegisName: Baby_Pacifier + Name: Baby Pacifier + Type: Armor + Buy: 20 + Weight: 50 + Locations: + Head_Low: true + View: 191 + - Id: 5111 + AegisName: Galapago_Cap + Name: Galapago Cap + Type: Armor + Buy: 20 + Weight: 500 + Defense: 4 + Locations: + Head_Top: true + EquipLevelMin: 55 + Refineable: true + View: 192 + Script: | + bonus2 bAddMonsterDropItem,605,100; + - Id: 5112 + AegisName: Super_Novice_Hat + Name: Super Novice Hat + Type: Armor + Buy: 8500 + Weight: 400 + Defense: 8 + Jobs: + Novice: true + SuperNovice: true + Locations: + Head_Top: true + EquipLevelMin: 40 + Refineable: true + View: 193 + Script: | + bonus bAllStats,1; + - Id: 5113 + AegisName: Angry_Mouth + Name: Angry Snarl + Type: Armor + Buy: 20 + Weight: 50 + Locations: + Head_Low: true + View: 194 + - Id: 5114 + AegisName: Fedora + Name: Bucket Hat + Type: Armor + Buy: 6000 + Weight: 300 + Defense: 6 + Locations: + Head_Top: true + Refineable: true + View: 195 + - Id: 5115 + AegisName: Winter_Hat + Name: Winter Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 5 + Locations: + Head_Top: true + Refineable: true + View: 196 + Script: | + bonus2 bResEff,Eff_Freeze,1000; + - Id: 5116 + AegisName: Banana_Hat + Name: Banana Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 3 + Locations: + Head_Top: true + Refineable: true + View: 197 + Script: | + bonus3 bAutoSpell,"SM_PROVOKE",3,30; + - Id: 5117 + AegisName: Mistic_Rose + Name: Mystic Rose + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Top: true + Refineable: true + View: 198 + Script: | + bonus2 bSubRace,RC_Plant,2; + - Id: 5118 + AegisName: Ear_Of_Puppy + Name: Puppy Headband + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Locations: + Head_Top: true + Refineable: true + View: 199 + - Id: 5119 + AegisName: Super_Novice_Hat_ + Name: Super Novice Hat + Type: Armor + Buy: 8500 + Weight: 400 + Defense: 8 + Slots: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Head_Top: true + EquipLevelMin: 40 + Refineable: true + View: 193 + Script: | + bonus bAllStats,1; + - Id: 5120 + AegisName: Fedora_ + Name: Bucket Hat + Type: Armor + Buy: 6000 + Weight: 300 + Defense: 6 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 195 + - Id: 5121 + AegisName: Zherlthsh_Mask + Name: Zealotus Mask + Type: Armor + Buy: 20 + Weight: 400 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 200 + Script: | + bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; + - Id: 5122 + AegisName: Magni_Cap + Name: Magni's Cap + Type: Armor + Buy: 30000 + Weight: 1000 + Defense: 9 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 65 + Refineable: true + View: 250 + Script: | + bonus bStr,2; + - Id: 5123 + AegisName: Ulle_Cap + Name: Ulle's Cap + Type: Armor + Buy: 30000 + Weight: 500 + Defense: 6 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 65 + Refineable: true + View: 254 + Script: | + bonus bDex,2; bonus bAgi,1; + - Id: 5124 + AegisName: Fricca_Circlet + Name: Fricca's Circlet + Type: Armor + Buy: 30000 + Weight: 300 + Defense: 6 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 65 + Refineable: true + View: 251 + Script: | + bonus bMdef,10; bonus bInt,2; bonus bMaxSP,50; + - Id: 5125 + AegisName: Kiss_Of_Angel + Name: Angel's Kiss + Type: Armor + Buy: 10000 + Weight: 300 + Defense: 6 + Slots: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 255 + Script: | + bonus bSPrecovRate,3; + - Id: 5126 + AegisName: Morpheus's_Hood + Name: Morpheus's Hood + Type: Armor + Buy: 30000 + Weight: 200 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 33 + Refineable: true + View: 256 + Script: | + bonus bInt,2; + - Id: 5127 + AegisName: Morrigane's_Helm + Name: Morrigane's Helm + Type: Armor + Buy: 30000 + Weight: 500 + Defense: 8 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 61 + Refineable: true + View: 257 + Script: | + bonus bLuk,2; bonus bBaseAtk,3; + - Id: 5128 + AegisName: Goibne's_Helmet + Name: Goibne's Helm + Type: Armor + Buy: 30000 + Weight: 500 + Defense: 10 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 54 + Refineable: true + View: 258 + Script: | + bonus bVit,3; bonus bMdef,3; + - Id: 5129 + AegisName: Bird_Nest + Name: Bird Nest + Type: Armor + Buy: 20 + Weight: 400 + Defense: 2 + Locations: + Head_Top: true + EquipLevelMin: 55 + View: 201 + Script: | + bonus bAgi,2; bonus2 bSubRace,RC_Brute,10; bonus2 bSubRace,RC_Player_Doram,10; + - Id: 5130 + AegisName: Lion_Mask + Name: Lion Mask + Type: Armor + Buy: 20 + Weight: 700 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 75 + Refineable: true + View: 202 + Script: | + bonus2 bAddEffWhenHit,Eff_Silence,500; bonus bMdef,1; + - Id: 5131 + AegisName: Close_Helmet + Name: Close Helmet + Type: Armor + Buy: 20 + Weight: 1200 + Defense: 8 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + EquipLevelMin: 75 + Refineable: true + View: 203 + Script: | + bonus bVit,3; bonus bMaxHPrate,3; + - Id: 5132 + AegisName: Angeling_Hat + Name: Angeling Hat + Type: Armor + Buy: 20 + Weight: 700 + Defense: 5 + Locations: + Head_Top: true + View: 204 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; + - Id: 5133 + AegisName: Sheep_Hat + Name: Sheep Hat + Type: Armor + Buy: 20 + Weight: 150 + Defense: 3 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Head_Top: true + View: 205 + Script: | + bonus bShortWeaponDamageReturn,5; + - Id: 5134 + AegisName: Pumpkin_Hat + Name: Pumpkin-Head + Type: Armor + Buy: 20 + Weight: 200 + Defense: 3 + Locations: + Head_Top: true + Refineable: true + View: 206 + - Id: 5135 + AegisName: Cyclops_Visor + Name: Cyclop's Eye + Type: Armor + Weight: 200 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + EquipLevelMin: 75 + View: 207 + Script: | + bonus bMaxSP,50; + - Id: 5136 + AegisName: Santa's_Hat_ + Name: Antonio's Santa Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 4 + Locations: + Head_Top: true + Refineable: true + View: 20 + Script: | + bonus3 bAutoSpellWhenHit,"PR_GLORIA",5,50; bonus3 bAutoSpellWhenHit,"AL_BLESSING",10,50; + - Id: 5137 + AegisName: Alice_Doll + Name: Alice Doll + Type: Armor + Buy: 20 + Weight: 500 + Defense: 1 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 30 + View: 208 + Script: | + bonus bStr,1; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus2 bAddEff2,Eff_Sleep,10; + - Id: 5138 + AegisName: Magic_Eyes + Name: Magic Eyes + Type: Armor + Buy: 20 + Weight: 300 + Defense: 3 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 209 + Script: | + bonus bMdef,5; bonus bVariableCastrate,-10; bonus bUseSPrate,20; + - Id: 5139 + AegisName: Hibiscus + Name: Hibiscus + Type: Armor + Buy: 20 + Weight: 200 + Locations: + Head_Top: true + EquipLevelMin: 10 + View: 210 + Script: | + bonus bDex,1; bonus bInt,1; bonus bMdef,5; + - Id: 5140 + AegisName: Charming_Ribbon + Name: Charming Ribbon + Type: Armor + Buy: 20 + Weight: 400 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 211 + Script: | + bonus2 bSubRace,RC_Undead,5; bonus2 bSubRace,RC_Demon,5; + - Id: 5141 + AegisName: Marionette_Doll + Name: Marionette Doll + Type: Armor + Buy: 20 + Weight: 400 + Defense: 1 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 212 + Script: | + bonus bStr,1; + - Id: 5142 + AegisName: Crescent_Helm + Name: Crescent Helm + Type: Armor + Buy: 20 + Weight: 3000 + Defense: 20 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 213 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bVit,1; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; + - Id: 5143 + AegisName: Kabuki_Mask + Name: Kabuki Mask + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 5 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Gender: Male + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 214 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus2 bResEff,Eff_Silence,3000; + - Id: 5144 + AegisName: Gambler_Hat + Name: Gambler Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 4 + Locations: + Head_Top: true + Refineable: true + View: 16 + Script: | + bonus bLuk,5; + - Id: 5145 + AegisName: Carnival_Joker_Jester + Name: Carnival Joker Jester + Type: Armor + Buy: 10 + Weight: 100 + Locations: + Head_Top: true + Refineable: true + View: 89 + Script: | + bonus bAllStats,3; + - Id: 5146 + AegisName: Elephant_Hat + Name: Elephant Hat + Type: Armor + Weight: 500 + Locations: + Head_Top: true + Refineable: true + View: 215 + Script: | + bonus bVit,1; bonus2 bSubRace,RC_Brute,7; bonus2 bSubRace,RC_Player_Doram,7; skill "WZ_WATERBALL",1; + - Id: 5147 + AegisName: Baseball_Cap + Name: Baseball Cap + Type: Armor + Weight: 200 + Defense: 5 + Locations: + Head_Top: true + Refineable: true + View: 216 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 5148 + AegisName: Phrygian_Cap + Name: Phrygian Cap + Type: Armor + Weight: 500 + Locations: + Head_Top: true + Refineable: true + View: 217 + Script: | + bonus bInt,2; + - Id: 5149 + AegisName: Silver_Tiara + Name: Silver Tiara + Type: Armor + Weight: 100 + Locations: + Head_Top: true + Refineable: true + View: 218 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,2; + - Id: 5150 + AegisName: Joker_Jester_ + Name: Joker Jester + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Locations: + Head_Top: true + View: 219 + Script: | + bonus bSpeedRate,25; + - Id: 5151 + AegisName: Headset_OST + Name: Note Headphones + Type: Armor + Buy: 20 + Weight: 200 + Defense: 4 + Slots: 1 + Locations: + Head_Mid: true + Head_Top: true + Refineable: true + View: 220 + Script: | + bonus bMdef,3; bonus2 bResEff,Eff_Stun,1000; bonus2 bResEff,Eff_Freeze,1000; + - Id: 5152 + AegisName: Chinese_Crown + Name: Chinese Crown + Type: Armor + Buy: 20 + Weight: 2000 + Defense: 2 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 221 + Script: | + bonus2 bResEff,Eff_Stun,1000; bonus bInt,1; + - Id: 5153 + AegisName: Angeling_Hairpin + Name: Angeling Hairpin + Type: Armor + Buy: 20 + Weight: 700 + Defense: 5 + Locations: + Head_Top: true + Refineable: true + View: 222 + Script: | + bonus bFlee,5; + - Id: 5154 + AegisName: Sunglasses_F + Name: Father's Sunglasses + Type: Armor + Buy: 20 + Weight: 100 + Defense: 4 + Locations: + Head_Mid: true + View: 12 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 5155 + AegisName: Granpa_Beard_F + Name: Father's White Moustache + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Low: true + View: 25 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bBaseAtk,20; + - Id: 5156 + AegisName: Flu_Mask_F + Name: Father's Mask + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Low: true + View: 8 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMatkRate,1; + - Id: 5157 + AegisName: Viking_Helm_ + Name: Orc Helm + Type: Armor + Buy: 20 + Weight: 500 + Defense: 9 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Head_Top: true + Refineable: true + View: 86 + - Id: 5158 + AegisName: Holy_Bonnet_ + Name: Monk Hat + Type: Armor + Buy: 30000 + Weight: 100 + Defense: 10 + Slots: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Head_Top: true + Refineable: true + View: 35 + Script: | + bonus bMdef,3; + - Id: 5159 + AegisName: Golden_Gear_ + Name: Golden Gear + Type: Armor + Buy: 20 + Weight: 900 + Defense: 9 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 40 + Refineable: true + View: 30 + Script: | + bonus bUnbreakableHelm; + - Id: 5160 + AegisName: Magestic_Goat_ + Name: Majestic Goat + Type: Armor + Buy: 20 + Weight: 800 + Defense: 9 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + StarGladiator: true + Swordman: true + Taekwon: true + Locations: + Head_Top: true + Refineable: true + View: 41 + Script: | + bonus bStr,1; + - Id: 5161 + AegisName: Sharp_Gear_ + Name: Spiky Band + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 12 + Slots: 1 + Jobs: + Acolyte: true + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Rogue: true + StarGladiator: true + Swordman: true + Taekwon: true + Thief: true + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 43 + - Id: 5162 + AegisName: Bone_Helm_ + Name: Bone Helm + Type: Armor + Buy: 20 + Weight: 800 + Defense: 15 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 103 + Script: | + bonus2 bSubEle,Ele_Dark,-15; + - Id: 5163 + AegisName: Corsair_ + Name: Corsair + Type: Armor + Buy: 20 + Weight: 500 + Defense: 10 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 105 + Script: | + bonus bVit,1; + - Id: 5164 + AegisName: Tiara_ + Name: Tiara + Type: Armor + Buy: 20 + Weight: 400 + Defense: 7 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Gender: Female + Locations: + Head_Top: true + EquipLevelMin: 45 + Refineable: true + View: 19 + Script: | + bonus bInt,1; + - Id: 5165 + AegisName: Crown_ + Name: Crown + Type: Armor + Buy: 20 + Weight: 400 + Defense: 7 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Gender: Male + Locations: + Head_Top: true + EquipLevelMin: 45 + Refineable: true + View: 45 + Script: | + bonus bInt,1; + - Id: 5166 + AegisName: Spinx_Helm_ + Name: Sphinx Hat + Type: Armor + Buy: 20 + Weight: 3000 + Defense: 5 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Head_Low: true + Head_Top: true + EquipLevelMin: 65 + View: 137 + Script: | + bonus bStr,2; + - Id: 5167 + AegisName: Munak_Turban_ + Name: Munak Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 5 + Slots: 1 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + View: 51 + Script: | + bonus2 bSubRace,RC_Undead,10; + - Id: 5168 + AegisName: Bongun_Hat_ + Name: Bongun Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 5 + Slots: 1 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + View: 139 + - Id: 5169 + AegisName: Bride_Mask + Name: Bride Mask + Type: Armor + Buy: 30000 + Weight: 500 + Defense: 4 + Slots: 1 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 40 + Refineable: true + View: 223 + Script: | + if(BaseClass==Job_Taekwon){ bonus bLuk,2; bonus bCritical,5; } + - Id: 5170 + AegisName: Feather_Beret + Name: Feather Beret + Type: Armor + Buy: 30000 + Weight: 600 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 224 + Script: | + bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; + - Id: 5171 + AegisName: Valkyrie_Helm + Name: Valkyrie Helm + Type: Armor + Buy: 100000 + Weight: 1000 + Defense: 10 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Third_Upper: true + Locations: + Head_Top: true + Refineable: true + View: 225 + Script: | + bonus bMdef,5; + - Id: 5172 + AegisName: Beret + Name: Beret + Type: Armor + Buy: 30000 + Weight: 700 + Locations: + Head_Top: true + View: 226 + Script: | + bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; + - Id: 5173 + AegisName: Satto_Hat + Name: Magistrate Hat + Type: Armor + Buy: 30000 + Weight: 400 + Defense: 6 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 60 + Refineable: true + View: 227 + Script: | + if(BaseClass==Job_Taekwon){ bonus bAgi,1; bonus bHPrecovRate,3; } + - Id: 5174 + AegisName: Ayam + Name: Ayam + Type: Armor + Buy: 30000 + Weight: 400 + Defense: 6 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 60 + Refineable: true + View: 228 + Script: | + if(BaseClass==Job_Taekwon){ bonus bInt,1; bonus bSPrecovRate,3; } + - Id: 5175 + AegisName: Censor_Bar + Name: Censor Bar + Type: Armor + Buy: 30000 + Weight: 100 + Locations: + Head_Mid: true + View: 229 + Script: | + bonus2 bResEff,Eff_Curse,500; bonus bMdef,1; bonus bHit,-5; + - Id: 5176 + AegisName: Hahoe_Mask + Name: Hahoe Mask + Type: Armor + Buy: 30000 + Weight: 100 + Defense: 2 + Locations: + Head_Low: true + Head_Mid: true + EquipLevelMin: 30 + View: 230 + Script: | + if(BaseClass==Job_Taekwon){ bonus bLuk,1; bonus bFlee2,2; } + - Id: 5177 + AegisName: Guardian_Lion_Mask + Name: Mythical Lion Mask + Type: Armor + Buy: 30000 + Weight: 500 + Defense: 5 + Slots: 1 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 40 + Refineable: true + View: 231 + Script: | + if(BaseClass==Job_Taekwon){ bonus bDex,2; bonus bBaseAtk,2*getrefine(); bonus3 bAddEff,Eff_Stun,1000,ATF_SHORT; } + - Id: 5178 + AegisName: Candle_ + Name: Candle + Type: Armor + Buy: 20 + Weight: 150 + Locations: + Head_Top: true + Refineable: true + View: 113 + Script: | + bonus bAllStats,1; + - Id: 5179 + AegisName: Gold_Tiara + Name: Golden Tiara + Type: Armor + Weight: 100 + Locations: + Head_Top: true + Refineable: true + View: 232 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,2; + - Id: 5180 + AegisName: Phrygian_Cap_ + Name: France Holiday Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 217 + Script: | + bonus bVit,1; + - Id: 5181 + AegisName: Helm_Of_Darkness + Name: Helm of Darkness + Type: Armor + Buy: 20 + Weight: 500 + Defense: 3 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 233 + Script: | + bonus bStr,2; + - Id: 5182 + AegisName: Puppy_Hat + Name: Puppy Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 4 + Locations: + Head_Top: true + EquipLevelMin: 30 + View: 234 + Script: | + bonus bAgi,1; bonus3 bAutoSpell,"PR_GLORIA",1,10+20*(readparam(bAgi)>=77); + - Id: 5183 + AegisName: Bird_Nest_Hat + Name: Bird Nest Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 4 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 235 + Script: | + bonus bDex,1; bonus bAgi,1; bonus2 bResEff,Eff_Stun,1000; + - Id: 5184 + AegisName: Captain_Hat + Name: Captain's Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 8 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 236 + Script: | + bonus2 bSubEle,Ele_Water,5; + - Id: 5185 + AegisName: Laurel_Wreath + Name: Laurel Wreath + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 237 + Script: | + bonus bLuk,3; bonus2 bResEff,Eff_Blind,500; bonus2 bResEff,Eff_Curse,500; + - Id: 5186 + AegisName: Geographer_Band + Name: Geographer Band + Type: Armor + Buy: 20 + Weight: 500 + Defense: 2 + Locations: + Head_Top: true + EquipLevelMin: 30 + View: 238 + Script: | + bonus bInt,1; bonus3 bAutoSpellWhenHit,"AL_HEAL",1,50; + - Id: 5187 + AegisName: Twin_Ribbon + Name: Twin Ribbon + Type: Armor + Buy: 20 + Weight: 200 + Defense: 6 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 239 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bMaxSP,30; bonus bMdef,3; bonus3 bAutoSpellWhenHit,"NPC_STONESKIN",6,10; bonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,120,BF_MAGIC,0; + - Id: 5188 + AegisName: Minstrel_Hat + Name: Wandering Minstrel Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 2 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 240 + Script: | + bonus bInt,1; bonus bDex,1; + - Id: 5189 + AegisName: Fallen_Leaves + Name: Autumn Leaves + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Top: true + Refineable: true + View: 241 + Script: | + bonus bMaxHP,40; bonus bMaxSP,40; + - Id: 5190 + AegisName: Baseball_Cap_ + Name: Independence Memorial Hat + Type: Armor + Buy: 20 + Weight: 20 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 216 + - Id: 5191 + AegisName: Ribbon_Black + Name: Black Ribbon + Type: Armor + Buy: 800 + Weight: 100 + Defense: 1 + Slots: 1 + Gender: Female + Locations: + Head_Top: true + Refineable: true + View: 242 + Script: | + bonus bInt,1; bonus bMdef,3; + - Id: 5192 + AegisName: Ribbon_Yellow + Name: Yellow Ribbon + Type: Armor + Buy: 800 + Weight: 100 + Defense: 1 + Slots: 1 + Gender: Female + Locations: + Head_Top: true + Refineable: true + View: 243 + Script: | + bonus bMdef,3; + - Id: 5193 + AegisName: Ribbon_Green + Name: Green Ribbon + Type: Armor + Buy: 800 + Weight: 100 + Defense: 1 + Slots: 1 + Gender: Female + Locations: + Head_Top: true + Refineable: true + View: 244 + Script: | + bonus bMdef,3; + - Id: 5194 + AegisName: Ribbon_Pink + Name: Pink Ribbon + Type: Armor + Buy: 800 + Weight: 100 + Defense: 1 + Slots: 1 + Gender: Female + Locations: + Head_Top: true + Refineable: true + View: 245 + Script: | + bonus bMdef,3; + - Id: 5195 + AegisName: Ribbon_Red + Name: Red Ribbon + Type: Armor + Buy: 800 + Weight: 100 + Defense: 1 + Slots: 1 + Gender: Female + Locations: + Head_Top: true + Refineable: true + View: 246 + Script: | + bonus bMdef,3; + - Id: 5196 + AegisName: Ribbon_Orange + Name: Orange Ribbon + Type: Armor + Buy: 800 + Weight: 100 + Defense: 1 + Slots: 1 + Gender: Female + Locations: + Head_Top: true + Refineable: true + View: 247 + Script: | + bonus bMdef,3; + - Id: 5197 + AegisName: Ribbon_White + Name: White Ribbon + Type: Armor + Buy: 800 + Weight: 100 + Defense: 1 + Slots: 1 + Gender: Female + Locations: + Head_Top: true + Refineable: true + View: 248 + Script: | + bonus bMdef,3; + - Id: 5198 + AegisName: Drooping_Bunny + Name: Drooping Bunny + Type: Armor + Buy: 10 + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 249 + Script: | + bonus bDex,1; bonus bFlee,2; + - Id: 5199 + AegisName: Baseball_Cap_I + Name: Baseball Cap + Type: Armor + Weight: 200 + Defense: 3 + Locations: + Head_Top: true + Refineable: true + View: 216 + - Id: 5200 + AegisName: Coppola + Name: Coppola + Type: Armor + Buy: 10 + Weight: 300 + Locations: + Head_Top: true + Refineable: true + View: 252 + - Id: 5201 + AegisName: Party_Hat_B + Name: Party Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 4 + Locations: + Head_Top: true + Refineable: true + View: 144 + Script: | + bonus bAllStats,3; + - Id: 5202 + AegisName: Pumpkin_Hat_ + Name: Fantastic Pumpkin-Head + Type: Armor + Buy: 20 + Weight: 200 + Defense: 3 + Locations: + Head_Top: true + Refineable: true + View: 206 + Script: | + bonus2 bSubRace,RC_Demon,5; bonus3 bAddMonsterDropItem,529,RC_DemiHuman,1500; + - Id: 5203 + AegisName: Tongue_Mask + Name: Smiling Mask + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Locations: + Head_Low: true + Head_Mid: true + View: 253 + Script: | + bonus bSpeedRate,25; + - Id: 5204 + AegisName: Event_Pierrot_Nose + Name: Rudolph's Nose + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Low: true + View: 49 + Script: | + bonus2 bResEff,Eff_Blind,3000; bonus2 bAddMonsterDropItem,12130,30; + - Id: 5205 + AegisName: Wreath + Name: Emperor's Laurel Crown + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 3 + Locations: + Head_Mid: true + Head_Top: true + Refineable: true + View: 261 + Script: | + bonus bAllStats,1; bonus bMdef,3; + - Id: 5206 + AegisName: Romantic_White_Flower + Name: Romantic White Flower + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Low: true + View: 259 + Script: | + bonus2 bSubRace,RC_Plant,3; + - Id: 5207 + AegisName: Gold_Spirit_Chain + Name: Angel Blessing + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Top: true + View: 260 + Script: | + bonus bLuk,1; bonus2 bSubEle,Ele_Holy,5; + - Id: 5208 + AegisName: Rideword_Hat + Name: Rideword Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 3 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 40 + Refineable: true + View: 262 + Script: | + bonus2 bHPDrainRate,50,8; bonus2 bSPDrainRate,10,4; bonus2 bHPLossRate,10,5000; + - Id: 5209 + AegisName: Yellow_Baseball_Cap + Name: Love Dad Cap + Type: Armor + Buy: 20 + Weight: 300 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 263 + - Id: 5210 + AegisName: Flying_Angel + Name: Flapping Angel Wing + Type: Armor + Buy: 20 + Weight: 300 + Defense: 3 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 264 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bVariableCastrate,-3; bonus bAspdRate,3; bonus bInt,1; bonus bAgi,1; + - Id: 5211 + AegisName: Dress_Hat + Name: Dress Hat + Type: Armor + Weight: 200 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 265 + Script: | + 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; } + - Id: 5212 + AegisName: Satellite_Hairband + Name: Satellite Hairband + Type: Armor + Weight: 1000 + Defense: 6 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 266 + Script: | + bonus bMaxHP,50; bonus bMaxSP,10; skill "AL_RUWACH",1; + UnEquipScript: | + sc_end SC_RUWACH; + - Id: 5213 + AegisName: Black_Bunny_Band + Name: Sheila Hairnet + Type: Armor + Weight: 200 + Defense: 4 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 267 + Script: | + bonus bAgi,2; bonus bMdef,3; + - Id: 5214 + AegisName: Moonlight_Flower_Hat + Name: Moonlight Flower Hat + Type: Armor + Weight: 200 + Defense: 3 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 268 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bDex,2; bonus3 bAutoSpell,"AL_INCAGI",1,50; + - Id: 5215 + AegisName: Angelic_Chain_ + Name: Evolved Angel Wing + Type: Armor + Buy: 20 + Weight: 100 + Defense: 4 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 38 + Script: | + bonus bMdef,3; bonus bDex,1; bonus bInt,1; bonus2 bSubRace,RC_Demon,3; + - Id: 5216 + AegisName: Satanic_Chain_ + Name: Evolved Evil Wing + Type: Armor + Buy: 20 + Weight: 100 + Defense: 6 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 39 + Script: | + bonus bStr,1; bonus bAgi,1; bonus bFlee,3; bonus2 bSubRace,RC_Angel,3; + - Id: 5217 + AegisName: Magestic_Goat_TW + Name: Evolved Majestic Goat + Type: Armor + Buy: 20 + Weight: 800 + Defense: 10 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + StarGladiator: true + Swordman: true + Taekwon: true + Locations: + Head_Top: true + Refineable: true + View: 41 + Script: | + bonus bStr,2; + - Id: 5218 + AegisName: Bunny_Band_ + Name: Evolved Bunny Band + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Locations: + Head_Top: true + Refineable: true + View: 15 + Script: | + bonus bInt,2; + - Id: 5219 + AegisName: Drooping_Kitty_ + Name: Evolved Drooping Cat + Type: Armor + Buy: 250000 + Weight: 500 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 142 + Script: | + bonus bMdef,18; bonus bFlee,3; + - Id: 5220 + AegisName: Smoking_Pipe_ + Name: Evolved Pipe + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Low: true + View: 55 + Script: | + bonus bVit,1; bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5; + - Id: 5221 + AegisName: Pair_Of_Red_Ribbon_ + Name: Evolved Pair of Red Ribbon + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Gender: Female + Locations: + Head_Mid: true + EquipLevelMin: 45 + View: 169 + Script: | + bonus bFlee,5; + - Id: 5222 + AegisName: Fish_On_Head_ + Name: Evolved Blue Fish + Type: Armor + Buy: 20 + Weight: 500 + Defense: 4 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 149 + Script: | + bonus bAgi,1; bonus bDex,1; + - Id: 5223 + AegisName: Big_Golden_Bell_ + Name: Evolved Big Golden Bell + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 35 + Refineable: true + View: 175 + Script: | + bonus bAgi,2; + - Id: 5224 + AegisName: Orc_Hero_Helm_TW + Name: Evolved Orc Hero Helm + Type: Armor + Buy: 500000 + Weight: 900 + Defense: 5 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 55 + Refineable: true + View: 178 + Script: | + bonus bStr,2; bonus bVit,1; bonus bMaxHPrate,10; + - Id: 5225 + AegisName: Marcher_Hat + Name: Parade Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 4 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 269 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bMdef,2; bonus4 bAutoSpellWhenHit,"AL_ANGELUS",5,30,0; bonus4 bAutoSpellWhenHit,"HP_ASSUMPTIO",1,1,0; bonus2 bResEff,Eff_Stun,1000; if(BaseClass==Job_Acolyte) bonus4 bAutoSpellOnSkill,"AL_HEAL","PR_LEXAETERNA",1,1000; + - Id: 5226 + AegisName: Mini_Propeller_ + Name: Mini Propeller + Type: Armor + Buy: 20 + Weight: 200 + Defense: 4 + Locations: + Head_Top: true + Refineable: true + View: 270 + Script: | + bonus bAgi,2; bonus bDex,1; bonus bFlee,10; bonus bVariableCastrate,-getrefine(); + - Id: 5227 + AegisName: Red_Deviruchi_Cap + Name: Red Deviruchi Hat + Type: Armor + Buy: 20 + Weight: 800 + Defense: 4 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 64 + Refineable: true + View: 271 + Script: | + bonus bStr,1; bonus bInt,1; + - Id: 5228 + AegisName: White_Deviruchi_Cap + Name: Gray Deviruchi Hat + Type: Armor + Buy: 20 + Weight: 800 + Defense: 4 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 64 + Refineable: true + View: 272 + Script: | + bonus bStr,1; bonus bInt,1; + - Id: 5229 + AegisName: Gray_Deviruchi_Cap + Name: Brown Deviruchi Hat + Type: Armor + Buy: 20 + Weight: 800 + Defense: 4 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 64 + Refineable: true + View: 273 + Script: | + bonus bStr,1; bonus bInt,1; + - Id: 5230 + AegisName: White_Drooping_Kitty + Name: Gray Drooping Cat + Type: Armor + Buy: 250000 + Weight: 500 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 274 + Script: | + bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15; + - Id: 5231 + AegisName: Gray_Drooping_Kitty + Name: Brown Drooping Cat + Type: Armor + Buy: 250000 + Weight: 500 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 275 + Script: | + bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15; + - Id: 5232 + AegisName: Pink_Drooping_Kitty + Name: Pink Drooping Cat + Type: Armor + Buy: 250000 + Weight: 500 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 276 + Script: | + bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15; + - Id: 5233 + AegisName: Blue_Drooping_Kitty + Name: Blue Drooping Cat + Type: Armor + Buy: 250000 + Weight: 500 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 277 + Script: | + bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15; + - Id: 5234 + AegisName: Yellow_Drooping_Kitty + Name: Yellow Drooping Cat + Type: Armor + Buy: 250000 + Weight: 500 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 278 + Script: | + bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15; + - Id: 5235 + AegisName: Gray_Fur_Hat + Name: Brown Beanie + Type: Armor + Buy: 20 + Weight: 350 + Defense: 3 + Locations: + Head_Top: true + Refineable: true + View: 279 + Script: | + bonus bLuk,1; + - Id: 5236 + AegisName: Blue_Fur_Hat + Name: Blue Beanie + Type: Armor + Buy: 20 + Weight: 350 + Defense: 3 + Locations: + Head_Top: true + Refineable: true + View: 280 + Script: | + bonus bLuk,1; + - Id: 5237 + AegisName: Pink_Fur_Hat + Name: Pink Beanie + Type: Armor + Buy: 20 + Weight: 350 + Defense: 3 + Locations: + Head_Top: true + Refineable: true + View: 281 + Script: | + bonus bLuk,1; + - Id: 5238 + AegisName: Red_Wizardry_Hat + Name: Red Mage Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 2 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Head_Top: true + Refineable: true + View: 282 + Script: | + bonus bInt,2; bonus bMaxSP,150; + - Id: 5239 + AegisName: White_Wizardry_Hat + Name: Gray Mage Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 2 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Head_Top: true + Refineable: true + View: 283 + Script: | + bonus bInt,2; bonus bMaxSP,150; + - Id: 5240 + AegisName: Gray_Wizardry_Hat + Name: Brown Mage Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 2 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Head_Top: true + Refineable: true + View: 284 + Script: | + bonus bInt,2; bonus bMaxSP,150; + - Id: 5241 + AegisName: Blue_Wizardry_Hat + Name: Blue Mage Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 2 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Head_Top: true + Refineable: true + View: 285 + Script: | + bonus bInt,2; bonus bMaxSP,150; + - Id: 5242 + AegisName: Yellow_Wizardry_Hat + Name: Yellow Mage Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 2 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Head_Top: true + Refineable: true + View: 286 + Script: | + bonus bInt,2; bonus bMaxSP,150; + - Id: 5243 + AegisName: Chullos + Name: Shafka + Type: Armor + Buy: 20 + Weight: 800 + Defense: 2 + Slots: 1 + Locations: + Head_Mid: true + Head_Top: true + Refineable: true + View: 287 + Script: | + bonus2 bResEff,Eff_Freeze,1000; + - Id: 5244 + AegisName: Elven_Blindfold + Name: Elven Blindfold + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Locations: + Head_Mid: true + View: 288 + Script: | + bonus2 bResEff,Eff_Blind,10000; + - Id: 5245 + AegisName: Elven_Sunglasses + Name: Elven Sunglasses + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Locations: + Head_Mid: true + View: 289 + Script: | + bonus2 bResEff,Eff_Blind,500; + - Id: 5246 + AegisName: Angelic_Helm + Name: Angelic Helm + Type: Armor + Buy: 20 + Weight: 700 + Defense: 7 + Locations: + Head_Top: true + Refineable: true + View: 290 + Script: | + bonus bAgi,1; bonus bLuk,1; bonus bMdef,3; bonus2 bSubRace,RC_Demon,5; + - Id: 5247 + AegisName: Satanic_Helm + Name: Satanic Helm + Type: Armor + Buy: 20 + Weight: 700 + Defense: 8 + Locations: + Head_Top: true + Refineable: true + View: 291 + Script: | + bonus bAgi,1; bonus bLuk,1; bonus bMdef,3; bonus2 bSubRace,RC_Demon,5; + - Id: 5248 + AegisName: Robotic_Blindfold + Name: Robotic Blindfold + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Locations: + Head_Mid: true + View: 292 + Script: | + bonus2 bResEff,Eff_Blind,10000; + - Id: 5249 + AegisName: Human_Blindfold + Name: Human Blindfold + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Locations: + Head_Mid: true + View: 293 + Script: | + bonus2 bResEff,Eff_Blind,10000; + - Id: 5250 + AegisName: Robotic_Ears + Name: Robotic Ears + Type: Armor + Buy: 20 + Weight: 10 + Locations: + Head_Mid: true + View: 294 + - Id: 5251 + AegisName: Round_Ears + Name: Round Ears + Type: Armor + Buy: 20 + Weight: 10 + Locations: + Head_Mid: true + View: 295 + - Id: 5252 + AegisName: Drooping_Nine_Tail + Name: Drooping Ninetail + Type: Armor + Buy: 20 + Weight: 300 + Defense: 1 + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 296 + Script: | + bonus bAgi,1; bonus bDex,1; bonus3 bAutoSpellWhenHit,"PR_GLORIA",1,30; + - Id: 5253 + AegisName: Lif_Doll_Hat + Name: Lif Doll Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 297 + Script: | + bonus bInt,1; .@r = getrefine(); bonus bMdef,.@r; bonus bDef,.@r*-1; + - Id: 5254 + AegisName: Deviling_Hat + Name: Deviling Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 6 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 298 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bBaseAtk,2; bonus bMatk,2; if(getrefine()>=7) bonus2 bExpAddRace,RC_All,1; + - Id: 5255 + AegisName: Triple_Poring_Hat + Name: Triple Poring Hat + Type: Armor + Buy: 20 + Weight: 600 + Defense: 6 + Locations: + Head_Top: true + EquipLevelMin: 20 + View: 299 + Script: | + bonus bLuk,3; bonus3 bAutoSpell,"BS_GREED",1,50; + - Id: 5256 + AegisName: Valkyrie_Feather_Band + Name: Valkyrie Feather Band + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 300 + Script: | + bonus bInt,1; bonus3 bAutoSpellWhenHit,"AL_HEAL",1,20; + - Id: 5257 + AegisName: Soulless_Wing + Name: Soul Ring + Type: Armor + Buy: 20 + Weight: 300 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 301 + Script: | + bonus bMdef,2; bonus3 bAutoSpellWhenHit,"HP_ASSUMPTIO",1,20; + - Id: 5258 + AegisName: Afro_Wig + Name: Afro Wig + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 302 + Script: | + bonus3 bAutoSpellWhenHit,"NV_FIRSTAID",1,300; bonus2 bSubEle,Ele_Neutral,1; + - Id: 5259 + AegisName: Elephant_Hat_ + Name: Elephant Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 6 + Locations: + Head_Top: true + Refineable: true + View: 215 + Script: | + bonus bVit,1; bonus3 bAutoSpell,"WZ_WATERBALL",3,10; skill "AL_HOLYWATER",1; + - Id: 5260 + AegisName: Cookie_Hat + Name: Cookie Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 217 + Script: | + bonus bAgi,1; bonus bFlee2,5; bonus bCritAtkRate,5; + - Id: 5261 + AegisName: Silver_Tiara_ + Name: Silver Tiara + Type: Armor + Buy: 20 + Weight: 500 + Defense: 5 + Locations: + Head_Top: true + Refineable: true + View: 218 + Script: | + 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); + - Id: 5262 + AegisName: Gold_Tiara_ + Name: Golden Tiara + Type: Armor + Buy: 20 + Weight: 500 + Defense: 5 + Locations: + Head_Top: true + Refineable: true + View: 232 + Script: | + bonus bStr,2; bonus bUnbreakableHelm; if((readparam(bDex)<56)&&(BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Thief)) bonus bDex,JobLevel/7; + - Id: 5263 + AegisName: Ati_Atihan_Hat + Name: Pagdayaw + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 303 + Script: | + bonus2 bSubEle,Ele_Water,1; bonus2 bSubEle,Ele_Fire,1; bonus2 bSubEle,Ele_Wind,1; bonus2 bAddEff,Eff_Curse,300; + - Id: 5264 + AegisName: Aussie_Flag_Hat + Name: Australian Flag Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 4 + Locations: + Head_Top: true + Refineable: true + View: 304 + Script: | + bonus bAllStats,2; + EquipScript: | + specialeffect2 EF_GHOST; specialeffect2 EF_BAT; specialeffect2 EF_BAT2; + - Id: 5265 + AegisName: Apple_Of_Archer_C + Name: Apple of Archer + Type: Armor + Buy: 1 + Defense: 12 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 1 + View: 72 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,4; + - Id: 5266 + AegisName: Bunny_Band_C + Name: Bunny Band + Type: Armor + Buy: 1 + Defense: 13 + Locations: + Head_Top: true + EquipLevelMin: 1 + View: 15 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,5; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; + - Id: 5267 + AegisName: Sahkkat_C + Name: Sakkat + Type: Armor + Buy: 1 + Defense: 10 + Locations: + Head_Top: true + View: 67 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAgi,3; + - Id: 5268 + AegisName: Lord_Circlet_C + Name: Grand Circlet + Type: Armor + Buy: 1 + Defense: 14 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 1 + View: 93 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,3; bonus bInt,3; bonus bLuk,3; bonus bMdef,4; + - Id: 5269 + AegisName: Flying_Angel_ + Name: Flapping Angel Wing + Type: Armor + Buy: 20 + Weight: 300 + Defense: 3 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 264 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,1; bonus bAgi,1; bonus bAspdRate,3; bonus bVariableCastrate,-3; + - Id: 5270 + AegisName: Fallen_Leaves_ + Name: Autumn Leaves + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 241 + Script: | + bonus bFlee2,5; + - Id: 5271 + AegisName: Chinese_Crown_ + Name: Phoenix Crown + Type: Armor + Buy: 20 + Weight: 500 + Defense: 4 + Slots: 1 + Locations: + Head_Mid: true + Head_Top: true + Refineable: true + View: 221 + Script: | + bonus bMdef,3; bonus2 bSubClass,Class_Boss,getrefine(); + - Id: 5272 + AegisName: Tongue_Mask_ + Name: Tongue Mask + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Locations: + Head_Low: true + Head_Mid: true + View: 253 + Script: | + bonus3 bAutoSpell,"SM_PROVOKE",5,50; + - Id: 5273 + AegisName: Happy_Wig + Name: Happy Wig + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Mid: true + Head_Top: true + Refineable: true + View: 305 + Script: | + bonus bSpeedRate,25; bonus bDef,4; skill "TF_HIDING",1; + UnEquipScript: | + sc_end SC_HIDING; + - Id: 5274 + AegisName: Shiny_Wig + Name: Shiny Wig + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Mid: true + Head_Top: true + Refineable: true + View: 306 + Script: | + bonus bSpeedRate,25; bonus bDef,4; skill "TF_HIDING",1; + UnEquipScript: | + sc_end SC_HIDING; + - Id: 5275 + AegisName: Marvelous_Wig + Name: Marvelous Wig + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Mid: true + Head_Top: true + Refineable: true + View: 307 + Script: | + bonus bSpeedRate,25; bonus bDef,4; skill "TF_HIDING",1; + UnEquipScript: | + sc_end SC_HIDING; + - Id: 5276 + AegisName: Fantastic_Wig + Name: Fantastic Wig + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Mid: true + Head_Top: true + Refineable: true + View: 308 + Script: | + bonus bSpeedRate,25; bonus bDef,4; skill "TF_HIDING",1; + UnEquipScript: | + sc_end SC_HIDING; + - Id: 5277 + AegisName: Yellow_Bandana + Name: Yellow Bandana + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 309 + Script: | + bonus bLuk,2; bonus bVit,2; bonus bLongAtkDef,10; + - Id: 5278 + AegisName: Yellow_Ribbon + Name: Yellow Ribbon + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 310 + Script: | + bonus bLuk,2; bonus bVit,2; bonus bLongAtkDef,10; + - Id: 5279 + AegisName: Drooping_Kitty_C + Name: Refined Drooping Cat + Type: Armor + Buy: 2 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + View: 142 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,15; bonus2 bResEff,Eff_Curse,3000; + - Id: 5280 + AegisName: Magestic_Goat_C + Name: Baphomet Horns + Type: Armor + Buy: 2 + Defense: 10 + Locations: + Head_Top: true + View: 41 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,1; + - Id: 5281 + AegisName: Deviruchi_Cap_C + Name: Refined Deviruchi Hat + Type: Armor + Buy: 2 + Defense: 4 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + View: 123 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,1; bonus bInt,1; + - Id: 5282 + AegisName: euRO_Baseball_Cap + Name: Europe Baseball Cap + Type: Armor + Weight: 200 + Defense: 5 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 216 + - Id: 5283 + AegisName: Chick_Hat + Name: Chick Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Locations: + Head_Top: true + EquipLevelMin: 10 + View: 311 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bLuk,2; bonus bMaxHP,50; bonus bMaxSP,50; skill "TF_DOUBLE",2; bonus bDoubleRate,10; bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3; + - Id: 5284 + AegisName: Water_Lily_Crown + Name: Water Lily Crown + Type: Armor + Buy: 20 + Weight: 200 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + View: 312 + Script: | + bonus bDex,1; bonus bAgi,1; bonus bMdef,3; bonus bHPrecovRate,5; bonus bSPrecovRate,3; + - Id: 5285 + AegisName: Vane_Hairpin + Name: Vane Hairpin + Type: Armor + Buy: 20 + Weight: 300 + Defense: 4 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + View: 313 + Script: | + bonus bAgi,2; + - Id: 5286 + AegisName: Pecopeco_Hairband + Name: Pecopeco Hairband + Type: Armor + Buy: 20 + Defense: 6 + Locations: + Head_Top: true + EquipLevelMin: 70 + View: 314 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bSpeedRate,25; bonus bAspdRate,5; bonus bVariableCastrate,-5; + - Id: 5287 + AegisName: Vacation_Hat + Name: Vacation Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + View: 315 + Script: | + bonus bVit,1; + - Id: 5288 + AegisName: Red_Glasses + Name: Red Glasses + Type: Armor + Buy: 20 + Defense: 1 + Locations: + Head_Mid: true + View: 316 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,1; + - Id: 5289 + AegisName: Vanilmirth_Hat + Name: Vanilmirth Hat + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Top: true + EquipLevelMin: 30 + View: 317 + Script: | + bonus bUnbreakableHelm; bonus3 bAutoSpell,"MG_FIREBOLT",1,50; bonus3 bAutoSpell,"MG_COLDBOLT",1,50; bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",1,50; bonus bMdef,5; + - Id: 5290 + AegisName: Drooping_Bunny_ + Name: Drooping Bunny + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Locations: + Head_Top: true + Refineable: true + View: 249 + Script: | + bonus bDex,1; bonus bFlee,2; + - Id: 5291 + AegisName: Kettle_Hat + Name: Kettle Hat + Type: Armor + Buy: 20 + Weight: 600 + Defense: 8 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 318 + Script: | + bonus4 bAutoSpell,"SA_DELUGE",2,10,0; bonus3 bAutoSpell,"WZ_WATERBALL",3,10; + - Id: 5292 + AegisName: Dragon_Skull + Name: Dragon Skull + Type: Armor + Buy: 20 + Weight: 800 + Defense: 10 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 319 + Script: | + bonus2 bSubRace,RC_Dragon,5; + - Id: 5293 + AegisName: Ramen_Hat + Name: Ramen Hat + Type: Armor + Buy: 20 + Defense: 3 + Locations: + Head_Top: true + View: 320 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,4; bonus4 bAutoSpellWhenHit,"AL_DECAGI",1,30,1; + - Id: 5294 + AegisName: Whisper_Mask + Name: Whisper Mask + Type: Armor + Buy: 20 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + View: 321 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAgi,3; bonus2 bSubEle,Ele_Ghost,-10; + - Id: 5295 + AegisName: Golden_Bandana + Name: Golden Bandana + Type: Armor + Buy: 20 + Weight: 2400 + Defense: 4 + Locations: + Head_Mid: true + Head_Top: true + View: 138 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,4; + - Id: 5296 + AegisName: Drooping_Nine_Tail_ + Name: Drooping Nine Tail + Type: Armor + Buy: 20 + Weight: 300 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 296 + Script: | + bonus bAgi,1; bonus bCritical,1; + - Id: 5297 + AegisName: Soulless_Wing_ + Name: Soul Wing + Type: Armor + Buy: 20 + Weight: 300 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 301 + Script: | + bonus bAllStats,1; bonus2 bSPRegenRate,2,10000; + - Id: 5298 + AegisName: Marvelous_Wig_ + Name: Dokebi's Wig + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Slots: 1 + Locations: + Head_Mid: true + Head_Top: true + Refineable: true + View: 307 + Script: | + bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubEle,Ele_Fire,-5; bonus2 bSubEle,Ele_Water,-5; + - Id: 5299 + AegisName: Ati_Atihan_Hat_ + Name: Pagdayaw + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Slots: 1 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + EquipLevelMin: 1 + View: 303 + Script: | + bonus3 bAutoSpell,"DC_SCREAM",1,50; + - Id: 5300 + AegisName: Bullock_Helm + Name: Bullock Helm + Type: Armor + Buy: 20 + Weight: 800 + Defense: 4 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 45 + Refineable: true + View: 322 + Script: | + bonus bMaxHP,100; + - Id: 5301 + AegisName: Russian_Ribbon + Name: Victory Hairband + Type: Armor + Weight: 100 + Locations: + Head_Top: true + Refineable: true + View: 323 + - Id: 5302 + AegisName: Lotus_Flower_Hat + Name: Flower Lily + Type: Armor + Weight: 100 + Defense: 2 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 324 + - Id: 5303 + AegisName: Flower_Coronet + Name: Flower Crown + Type: Armor + Buy: 20 + Weight: 300 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 325 + Script: | + bonus bMdef,3; bonus bMaxSP,50; + - Id: 5304 + AegisName: Cap_Of_Blindness + Name: Cap Of Blindness + Type: Armor + Buy: 20 + Weight: 800 + Defense: 4 + Slots: 1 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 326 + Script: | + bonus2 bResEff,Eff_Curse,700; bonus2 bResEff,Eff_Blind,10000; + - Id: 5305 + AegisName: Pirate_Dagger + Name: Pirate Dagger + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Low: true + View: 327 + Script: | + bonus bBaseAtk,5; + - Id: 5306 + AegisName: Freyja_Crown + Name: Freya's Crown + Type: Armor + Weight: 500 + Defense: 20 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + View: 328 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; + - Id: 5307 + AegisName: Carmen_Miranda's_Hat + Name: Carmen Miranda's Hat + Type: Armor + Buy: 20 + Weight: 400 + Defense: 10 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 329 + Script: | + bonus bMdef,3; .@r = getrefine(); bonus2 bSubEle,Ele_Fire,(.@r>=7?10:5); if(.@r>=7){ bonus bBaseAtk,15; bonus bMatk,15; } bonus3 bAddMonsterDropItem,512,RC_All,10; bonus3 bAddMonsterDropItem,513,RC_All,10; bonus3 bAddMonsterDropItem,514,RC_All,10; bonus3 bAddMonsterDropItem,578,RC_All,10; + - Id: 5308 + AegisName: Brazilian_Flag_Hat + Name: Brazil National Flag Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 5 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 330 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bSpeedAddRate,25; + - Id: 5309 + AegisName: Mahican + Name: Wool Mask + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Refineable: true + View: 331 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + skill "RG_GRAFFITI",1; + - Id: 5310 + AegisName: Bulb_Hairband + Name: Shining Electric Bulb Hairband + Type: Armor + Buy: 20 + Weight: 100 + Defense: 5 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 332 + Script: | + bonus2 bSubEle,Ele_Dark,10; skill "MG_SIGHT",1; + UnEquipScript: | + sc_end SC_SIGHT; + - Id: 5311 + AegisName: Large_Hibiscus + Name: Large Hisbiscus + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 333 + Script: | + bonus bMdef,15; + - Id: 5312 + AegisName: Ayothaya_Hat + Name: Ayothaya King's Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 5 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Head_Top: true + Refineable: true + View: 334 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bStr,1; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; + - Id: 5313 + AegisName: Diadem + Name: Diadem + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Slots: 1 + Locations: + Head_Mid: true + Head_Top: true + Refineable: true + View: 335 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bInt,1; bonus bMatkRate,3; bonus bVariableCastrate,-3; + - Id: 5314 + AegisName: Hockey_Mask + Name: Hockey Mask + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Low: true + Head_Mid: true + EquipLevelMin: 50 + View: 336 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; + - Id: 5315 + AegisName: Observer + Name: Observer + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Locations: + Head_Mid: true + EquipLevelMin: 35 + View: 337 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + skill "WZ_ESTIMATION",1; /*Gold PC Room: bonus bAllStats,1;*/ + - Id: 5316 + AegisName: Umbrella_Hat + Name: Umbrella Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 338 + Script: | + bonus2 bSubEle,Ele_Water,3; + - Id: 5317 + AegisName: Fisherman_Hat + Name: Fisherman's Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 4 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 339 + Script: | + bonus3 bAutoSpell,"WZ_WATERBALL",3,50; + - Id: 5318 + AegisName: Poring_Party_Hat + Name: Poring Party Hat + Type: Armor + Buy: 20 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 340 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bFlee,6; + - Id: 5319 + AegisName: Hellomother_Hat + Name: Hello Mother Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 3 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 341 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bHPrecovRate,150; bonus bMaxHP,80+(80*getrefine()); + - Id: 5320 + AegisName: Champion_Wreath + Name: Champion Wreath + Type: Armor + Buy: 20 + Weight: 500 + Defense: 8 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 261 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,2; bonus4 bAutoSpellWhenHit,"AL_HEAL",1,50,0; + - Id: 5321 + AegisName: Indonesian_Bandana + Name: Bandana Merah Putih + Type: Armor + Buy: 20 + Weight: 500 + Defense: 4 + Locations: + Head_Top: true + Refineable: true + View: 342 + Script: | + bonus2 bAddMonsterDropItem,518,300; + - Id: 5322 + AegisName: Scarf + Name: Kerchief + Type: Armor + Buy: 20 + Weight: 100 + Defense: 4 + Locations: + Head_Top: true + EquipLevelMin: 24 + Refineable: true + View: 343 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,2; bonus bFlee,5; + - Id: 5323 + AegisName: Misstrance_Crown + Name: Misstrance Crown + Type: Armor + Buy: 20 + Defense: 14 + Locations: + Head_Top: true + View: 165 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,2; + - Id: 5324 + AegisName: Little_Angel_Doll + Name: Little Angel Doll + Type: Armor + Buy: 20 + Weight: 300 + Defense: 4 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 344 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bDex,3; bonus4 bAutoSpellWhenHit,"CR_GRANDCROSS",3,30,0; + - Id: 5325 + AegisName: Robo_Eye + Name: Robo Eye + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Locations: + Head_Mid: true + EquipLevelMin: 10 + View: 345 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; bonus bDex,1; + - Id: 5326 + AegisName: Masquerade_C + Name: Masquerade C + Type: Armor + Buy: 1 + Defense: 1 + Locations: + Head_Mid: true + View: 78 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,7; bonus2 bAddRace,RC_Player_Human,7; + - Id: 5327 + AegisName: Orc_Hero_Helm_C + Name: Refined Helmet of Orc Hero + Type: Armor + Buy: 1 + Defense: 10 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + Head_Top: true + View: 178 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,5; bonus bVit,3; + - Id: 5328 + AegisName: Evil_Wing_Ears_C + Name: Evil Wing Ears C + Type: Armor + Buy: 1 + Defense: 4 + Locations: + Head_Mid: true + View: 152 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,1; + - Id: 5329 + AegisName: Dark_Blindfold_C + Name: Dark Blindfold C + Type: Armor + Buy: 1 + Defense: 1 + Locations: + Head_Mid: true + View: 187 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Stun,500; + - Id: 5330 + AegisName: kRO_Drooping_Kitty_C + Name: kRO Drooping Kitty C + Type: Armor + Buy: 1 + Defense: 9 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + View: 142 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,15; bonus2 bResEff,Eff_Curse,4000; bonus2 bResEff,Eff_Stun,1000; + - Id: 5331 + AegisName: Corsair_C + Name: Corsair C + Type: Armor + Buy: 1 + Defense: 14 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + View: 105 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bVit,3; bonus bInt,3; + - Id: 5332 + AegisName: Loki_Mask + Name: Loki Mask + Type: Armor + Weight: 200 + Defense: 2 + Locations: + Head_Low: true + Head_Mid: true + EquipLevelMin: 20 + View: 346 + Script: | + bonus bFlee2,3; + - Id: 5333 + AegisName: Radio_Antenna + Name: Radio Antenna + Type: Armor + Weight: 1500 + Defense: 2 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 347 + Script: | + bonus bMdef,5; bonus bCritical,5; bonus bFlee,5; skill "MG_LIGHTNINGBOLT",1; bonus4 bAutoSpellWhenHit,"MG_THUNDERSTORM",5,30,1; + - Id: 5334 + AegisName: Angeling_Wanna_Fly + Name: Flapping Angeling + Type: Armor + Weight: 700 + Defense: 5 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 348 + Script: | + bonus bLuk,2; bonus bDex,1; + - Id: 5335 + AegisName: Jumping_Poring + Name: Jumping Poring + Type: Armor + Weight: 300 + Defense: 3 + Locations: + Head_Top: true + View: 349 + Script: | + bonus bLuk,1; bonus bUnbreakableHelm; + - Id: 5336 + AegisName: Guildsman_Recruiter + Name: Guildsman Recruiter Hat + Type: Armor + Defense: 4 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 350 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 5337 + AegisName: Party_Recruiter_Hat + Name: Party Recruiter Hat + Type: Armor + Defense: 4 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 351 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 5338 + AegisName: Bf_Recruiter_Hat + Name: BF Recruiter Hat + Type: Armor + Defense: 4 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 352 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 5339 + AegisName: Friend_Recruiter_Hat + Name: Friend Recruiter Hat + Type: Armor + Defense: 4 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 353 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 5340 + AegisName: Deprotai_Doll_Hat + Name: Defolty Doll Hat + Type: Armor + Weight: 500 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 60 + View: 354 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus4 bAutoSpellWhenHit,"AL_ANGELUS",10,20,0; + - Id: 5341 + AegisName: Claris_Doll_Hat + Name: Glaris Doll Hat + Type: Armor + Weight: 500 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 60 + View: 355 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bMagicHPGainValue,50; + - Id: 5342 + AegisName: Sorin_Doll_Hat + Name: Sorin Doll Hat + Type: Armor + Weight: 500 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 60 + View: 356 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; autobonus "{ bonus bBaseAtk,50; }",20,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }"; + - Id: 5343 + AegisName: Tayelin_Doll_Hat + Name: Telling Doll Hat + Type: Armor + Weight: 500 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 60 + View: 357 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bAddItemHealRate,504,10; bonus2 bAddItemHealRate,547,10; + - Id: 5344 + AegisName: Binit_Doll_Hat + Name: Bennit Doll Hat + Type: Armor + Weight: 500 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 60 + View: 358 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bVit,2; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; autobonus "{ bonus bAspdRate,5; }",20,30000,0,"{ specialeffect2 EF_HASTEUP; }"; + - Id: 5345 + AegisName: Debril_Doll_Hat + Name: W Doll Hat + Type: Armor + Weight: 500 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 60 + View: 359 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bAddRace,RC_Undead,5; bonus2 bMagicAddRace,RC_Undead,5; + - Id: 5346 + AegisName: Gf_Recruiter_Hat + Name: GF Recruiter Hat + Type: Armor + Defense: 4 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 360 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 5347 + AegisName: Ph.D_Hat_ + Name: Ph.D Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 5 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 98 + - Id: 5348 + AegisName: Big_Sis'_Ribbon_ + Name: Big Ribbon + Type: Armor + Buy: 15000 + Weight: 200 + Defense: 3 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 28 + Script: | + bonus bMdef,3; + - Id: 5349 + AegisName: Boy's_Cap_ + Name: Boy's Cap + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 102 + - Id: 5350 + AegisName: Pirate_Bandana_ + Name: Pirate Bandana + Type: Armor + Buy: 20 + Weight: 100 + Defense: 4 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 74 + Script: | + bonus bStr,1; + - Id: 5351 + AegisName: Sunflower_ + Name: Sunflower + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + View: 37 + Script: | + bonus2 bSubRace,RC_Insect,10; + - Id: 5352 + AegisName: Poporing_Cap + Name: Poporing Cap + Type: Armor + Buy: 20 + Weight: 700 + Defense: 4 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 38 + Refineable: true + View: 361 + - Id: 5353 + AegisName: Helm_Of_Sun_ + Name: Hat of the Sun God + Type: Armor + Buy: 20 + Weight: 2400 + Defense: 4 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Locations: + Head_Mid: true + Head_Top: true + Refineable: true + View: 138 + Script: | + bonus bStr,3; bonus bInt,2; + - Id: 5354 + AegisName: Muslim_Hat_M + Name: Muslim Hat M + Type: Armor + Weight: 100 + Defense: 4 + Gender: Male + Locations: + Head_Top: true + View: 362 + Script: | + bonus bVariableCastrate,-5; + - Id: 5355 + AegisName: Muslim_Hat_F + Name: Selendang + Type: Armor + Weight: 100 + Defense: 4 + Gender: Female + Locations: + Head_Top: true + View: 363 + Script: | + bonus bVariableCastrate,-5; + - Id: 5356 + AegisName: Pumpkin_Hat_H + Name: Festival Pumpkin Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 3 + Locations: + Head_Top: true + Refineable: true + View: 206 + Script: | + bonus2 bSubRace,RC_Demon,5; bonus2 bAddRace,RC_Demon,5; + - Id: 5357 + AegisName: Wings_Of_Victory + Name: Wings Of Victory + Type: Armor + Buy: 20 + Weight: 200 + Defense: 10 + Locations: + Head_Mid: true + Head_Top: true + View: 365 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,10; bonus bUnbreakableHelm; + - Id: 5358 + AegisName: Pecopeco_Wing_Ears + Name: Peco Ears + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Locations: + Head_Mid: true + EquipLevelMin: 70 + View: 366 + Script: | + bonus bAgi,1; bonus bMdef,2; bonus bUnbreakableHelm; + - Id: 5359 + AegisName: J_Captain_Hat + Name: Ship Captain Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 60 + Refineable: true + View: 367 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bDex,1; bonus bMaxHP,100; bonus bLongAtkRate,7; + - Id: 5360 + AegisName: Whikebain_Ears + Name: Hyuke's Black Cat Ears + Type: Armor + Buy: 20 + Weight: 200 + Defense: 4 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 45 + Refineable: true + View: 368 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bFlee,10; bonus bCritAtkRate,10; autobonus "{ bonus2 bIgnoreMdefClassRate,Class_Normal,100; bonus2 bIgnoreMdefClassRate,Class_Boss,100; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_STEAL; }"; + - Id: 5361 + AegisName: Gang_Scarf + Name: Gangster Scarf + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Low: true + View: 369 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bBaseAtk,5; if(BaseJob==Job_Rogue) skill "RG_GANGSTER",1; + - Id: 5362 + AegisName: Ninja_Scroll + Name: Ninja Scroll + Type: Armor + Buy: 20 + Weight: 200 + Locations: + Head_Low: true + View: 370 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bMatkRate,1; + - Id: 5363 + AegisName: Helm_Of_Abyss + Name: Helm Of Abyss + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 9 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 371 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus2 bSubClass,Class_Normal,-5; bonus2 bSubClass,Class_Boss,10; + - Id: 5364 + AegisName: Dark_Snake_Lord_Hat + Name: Evil Snake Lord Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 4 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 60 + Refineable: true + View: 372 + Script: | + bonus bStr,1; bonus bInt,1; bonus bAgi,2; bonus2 bAddMonsterDropItem,12582,30; + - Id: 5365 + AegisName: Fried_Egg + Name: Magnolia Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + View: 373 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bBaseAtk,5; bonus3 bAutoSpellWhenHit,"BS_GREED",1,5; + - Id: 5366 + AegisName: Hat_0f_King + Name: Love Dad Bandana + Type: Armor + Buy: 20 + Weight: 200 + Defense: 5 + Locations: + Head_Top: true + Refineable: true + View: 374 + Script: | + bonus bAllStats,5; + - Id: 5367 + AegisName: Hyegun_Hat + Name: Hyegun Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 5 + Slots: 1 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + EquipLevelMin: 10 + View: 375 + Script: | + bonus bMdef,3; bonus2 bSubRace,RC_Demon,10; + - Id: 5368 + AegisName: White_Wing + Name: White Wing + Type: Armor + Buy: 20 + Weight: 100 + Defense: 4 + Locations: + Head_Top: true + Refineable: true + View: 38 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddMonsterDropItem,12280,300; + - Id: 5369 + AegisName: Dark_Wing + Name: Dark Wing + Type: Armor + Buy: 20 + Weight: 100 + Defense: 4 + Locations: + Head_Top: true + Refineable: true + View: 39 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddMonsterDropItem,12279,300; + - Id: 5370 + AegisName: Orchid_Hairband + Name: Orchid Hairband + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 376 + Script: | + bonus bInt,1; + - Id: 5371 + AegisName: Hat_Of_Judge + Name: Judge Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 2 + Locations: + Head_Mid: true + Head_Top: true + Refineable: true + View: 377 + Script: | + bonus bLuk,1; bonus bMaxSP,30; + - Id: 5372 + AegisName: Drooping_White_Kitty + Name: Koneko Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 3 + Locations: + Head_Top: true + Refineable: true + View: 378 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bInt,1; bonus bDelayRate,-3; bonus bMatkRate,3; bonus bMaxSPrate,3; bonus bMdef,3; + - Id: 5373 + AegisName: Darkness_Helm + Name: Dark Randgris Helm + Type: Armor + Buy: 20 + Weight: 300 + Defense: 2 + Slots: 1 + Locations: + Head_Mid: true + Head_Top: true + Refineable: true + View: 379 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bDex,3; bonus bMdef,1; + - Id: 5374 + AegisName: L_Magestic_Goat + Name: Gigantic Majestic Goat + Type: Armor + Buy: 20 + Weight: 800 + Defense: 10 + Locations: + Head_Top: true + Refineable: true + View: 380 + Script: | + bonus2 bAddRace,RC_DemiHuman,12; bonus2 bAddRace,RC_Player_Human,12; bonus bBaseAtk,(JobLevel*2)/7; + - Id: 5375 + AegisName: L_Orc_Hero_Helm + Name: Orc Hero Headdress + Type: Armor + Buy: 20 + Weight: 900 + Defense: 5 + Slots: 1 + Locations: + Head_Mid: true + Head_Top: true + Refineable: true + View: 381 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bStr,2; bonus3 bAutoSpellWhenHit,"BS_WEAPONPERFECT",3,10; + - Id: 5376 + AegisName: Satanic_Chain_P + Name: Flying Evil Wing + Type: Armor + Buy: 20 + Weight: 100 + Defense: 6 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 382 + Script: | + bonus bMaxSP,120; bonus2 bAddEff2,Eff_Curse,10; + - Id: 5377 + AegisName: Antique_Pipe + Name: Gentleman's Pipe + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Low: true + View: 383 + Script: | + bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; + - Id: 5378 + AegisName: Rabbit_Ear_Hat + Name: Bunny Top Hat + Type: Armor + Buy: 20 + Weight: 300 + Locations: + Head_Top: true + Refineable: true + View: 384 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bAgi,3; bonus3 bAutoSpellWhenHit,"AL_INCAGI",5,10; + - Id: 5379 + AegisName: Balloon_Hat + Name: Tam + Type: Armor + Weight: 800 + Defense: 5 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 385 + Script: | + bonus bMdef,2; bonus bMatkRate,2+(getrefine()/2); + - Id: 5380 + AegisName: Fish_Head_Hat + Name: Fish Head Hat + Type: Armor + Buy: 20 + Weight: 400 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 386 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus3 bAutoSpell,"SA_FROSTWEAPON",1,5; + - Id: 5381 + AegisName: Santa_Poring_Hat + Name: Santa Poring Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 4 + Slots: 1 + Locations: + Head_Top: true + View: 387 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bMdef,2; bonus2 bAddEle,Ele_Dark,3; bonus2 bSubEle,Ele_Dark,3; + - Id: 5382 + AegisName: Bell_Ribbon + Name: Bell Ribbon + Type: Armor + Buy: 20 + Weight: 200 + Defense: 5 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 388 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bVit,1; skill "AL_ANGELUS",1; + UnEquipScript: | + sc_end SC_ANGELUS; + - Id: 5383 + AegisName: Hunting_Cap + Name: Hunter's Cap + Type: Armor + Buy: 20 + Weight: 250 + Defense: 6 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 389 + Script: | + bonus bLuk,1; bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Player_Doram,10; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; + - Id: 5384 + AegisName: Santa_Hat_1 + Name: Twin Pompom By JB + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 390 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bLuk,3; + - Id: 5385 + AegisName: Yoyo_Hat + Name: Yoyo Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 2 + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 391 + Script: | + skill "TF_HIDING",1; + UnEquipScript: | + sc_end SC_HIDING; + - Id: 5386 + AegisName: Ayam_ + Name: Ayam + Type: Armor + Weight: 70 + Defense: 7 + Locations: + Head_Top: true + EquipLevelMin: 1 + View: 228 + Script: | + bonus bMdef,7; bonus bFlee,7; bonus2 bAddMonsterDropItem,12198,200; + - Id: 5387 + AegisName: Neko_Mimi_Kafra + Name: Neko Mimi Kafra + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 392 + Script: | + bonus bMdef,5; bonus2 bAddEffWhenHit,Eff_Silence,1000; bonus2 bAddEffWhenHit,Eff_Poison,1000; bonus2 bAddEffWhenHit,Eff_Curse,1000; bonus2 bAddEffWhenHit,Eff_Blind,1000; bonus2 bAddEffWhenHit,Eff_Stone,1000; bonus2 bAddEffWhenHit,Eff_Freeze,1000; bonus2 bAddEffWhenHit,Eff_Stun,1000; bonus2 bAddEffWhenHit,Eff_Sleep,1000; + - Id: 5388 + AegisName: Snake_Head + Name: Snake Head Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 393 + Script: | + skill "TF_DOUBLE",5; bonus bDoubleRate,25; + - Id: 5389 + AegisName: Angel_Spirit + Name: Angel Spirit + Type: Armor + Buy: 20 + Weight: 200 + Locations: + Head_Mid: true + View: 394 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bStr,2; bonus bHit,15; + - Id: 5390 + AegisName: Santa_Hat_2 + Name: Frozen Twin Pompom + Type: Armor + Buy: 20 + Weight: 100 + Defense: 4 + Locations: + Head_Top: true + Refineable: true + View: 395 + Script: | + bonus2 bResEff,Eff_Freeze,3000; + - Id: 5391 + AegisName: Toast_C + Name: Toast + Type: Armor + Buy: 20 + Defense: 1 + Locations: + Head_Low: true + View: 188 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,100; bonus2 bAddMonsterDropItem,617,10; + - Id: 5392 + AegisName: Louyang_Cap + Name: Luoyang NewYear Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 6 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 396 + Script: | + bonus bLuk,2; + - Id: 5393 + AegisName: Valentine_Hat + Name: Love Valentine's Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 4 + Locations: + Head_Top: true + View: 397 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bMaxSPrate,7; bonus bMaxHPrate,7; + - Id: 5394 + AegisName: Bubblegum_Lower + Name: Bubblegum + Type: Armor + Locations: + Head_Low: true + View: 572 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bExpAddClass,Class_All,100; + - Id: 5395 + AegisName: Tiraya_Bonnet + Name: Striped Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 6 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 398 + Script: | + bonus bMaxHP,100+(getrefine()*20); bonus bLuk,3; + - Id: 5396 + AegisName: Jasper_Crest + Name: Jasper Crest + Type: Armor + Buy: 20 + Weight: 700 + Defense: 6 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 399 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bDex,1; bonus2 bAddRace,RC_Undead,5; .@r = getrefine(); if (.@r<6) { bonus2 bAddEff2,Eff_Blind,10; } else if (.@r>8) { bonus bDex,2; } + - Id: 5397 + AegisName: Scuba_Mask + Name: Scuba Gear + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Mid: true + View: 400 + Script: | + bonus2 bSubEle,Ele_Water,10; bonus2 bExpAddRace,RC_Fish,10; bonus bUnbreakableHelm; + - Id: 5398 + AegisName: Bone_Head + Name: Bone Head + Type: Armor + Buy: 20 + Weight: 1200 + Defense: 10 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Classes: + Upper: true + Third_Upper: true + Locations: + Head_Top: true + EquipLevelMin: 85 + Refineable: true + View: 401 + Script: | + bonus bStr,2; bonus bMdef,5; bonus2 bResEff,Eff_Stun,500; bonus2 bResEff,Eff_Bleeding,500; + - Id: 5399 + AegisName: Mandragora_Cap + Name: Mandragora Cap + Type: Armor + Buy: 20 + Weight: 300 + Defense: 5 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Head_Top: true + EquipLevelMin: 85 + View: 402 + Script: | + bonus bVit,3; bonus3 bAutoSpellWhenHit,"DC_SCREAM",5,30; + - Id: 5400 + AegisName: Fox_Hat + Name: Fox Hat + Type: Armor + Buy: 20 + Weight: 200 + Gender: Female + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + View: 403 + Script: | + bonus bLuk,1; + - Id: 5401 + AegisName: Black_Glasses + Name: Black Frame Glasses + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Locations: + Head_Mid: true + EquipLevelMin: 70 + View: 404 + Script: | + bonus bInt,1; bonus bMdef,2; bonus bUnbreakableHelm; + - Id: 5402 + AegisName: Mischievous_Fairy + Name: Mischievous Fairy + Type: Armor + Buy: 10 + Weight: 200 + Defense: 2 + Locations: + Head_Mid: true + EquipLevelMin: 70 + View: 405 + Script: | + bonus bUnbreakableHelm; bonus bFlee2,3; + - Id: 5403 + AegisName: Fish_In_Mouth + Name: Fish In Mouth + Type: Armor + Buy: 10 + Weight: 200 + Locations: + Head_Low: true + EquipLevelMin: 30 + View: 406 + Script: | + bonus2 bAddMonsterDropItem,579,500; bonus2 bAddItemHealRate,579,25; + - Id: 5404 + AegisName: Blue_Ribbon + Name: Blue Ribbon + Type: Armor + Buy: 10 + Weight: 100 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 45 + Refineable: true + View: 407 + Script: | + bonus4 bAutoSpellWhenHit,"AC_CONCENTRATION",2,7,0; + - Id: 5405 + AegisName: Filir_Hat + Name: Filir Hat + Type: Armor + Buy: 10 + Weight: 200 + Defense: 2 + Locations: + Head_Top: true + EquipLevelMin: 80 + View: 408 + Script: | + bonus bShortWeaponDamageReturn,1; + - Id: 5406 + AegisName: Academy_Freshman_Hat + Name: Academy Freshman Hat + Type: Armor + Weight: 500 + Defense: 3 + Locations: + Head_Top: true + Refineable: true + View: 409 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,1; bonus bDex,2; bonus bVit,1; bonus bDelayrate,-5; + - Id: 5407 + AegisName: Academy_Graduating_Cap + Name: Academy Completion Hat + Type: Armor + Weight: 200 + Defense: 3 + Locations: + Head_Top: true + Refineable: true + View: 410 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxSP,30; + - Id: 5408 + AegisName: Old_Bandanna + Name: Old Bandana + Type: Armor + Defense: 10 + Locations: + Head_Top: true + View: 6 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,2; bonus bMaxSP,50; bonus bVariableCastrate,10; + - Id: 5409 + AegisName: New_Cowboy_Hat + Name: Purple Cowboy Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 8 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 411 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bInt,2; bonus bVit,2; bonus bMaxSP,50; + - Id: 5410 + AegisName: Bread_Bag2 + Name: Brown Paperbag Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 6 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + View: 412 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,100; bonus2 bResEff,Eff_Stun,400; bonus2 bSubRace,RC_DemiHuman,4; bonus2 bSubRace,RC_Player_Human,4; + - Id: 5411 + AegisName: White_Snake_Hat + Name: White Snake Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 4 + Locations: + Head_Top: true + Refineable: true + View: 413 + Script: | + bonus bDex,2; + - Id: 5412 + AegisName: Sweet_Candy + Name: Sweet Candy + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Low: true + View: 414 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bUnbreakableHelm; + - Id: 5413 + AegisName: Popcorn_Hat + Name: Pop Corn Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 4 + Locations: + Head_Top: true + View: 415 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bSubEle,Ele_Wind,10; + - Id: 5414 + AegisName: Campfire_Hat + Name: Camp Fire Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 4 + Locations: + Head_Top: true + View: 416 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bSubEle,Ele_Fire,10; bonus4 bAutoSpellWhenHit,"MG_FIREBALL",5,100,1; + - Id: 5415 + AegisName: Poring_Cake_Cap + Name: Poring Cake Hat + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 10 + Locations: + Head_Top: true + EquipLevelMin: 40 + Refineable: true + View: 417 + Script: | + bonus bMdef,5; bonus bCritical,5; bonus bFlee,5; bonus bFlee2,5; bonus bAspdRate,5; bonus bVariableCastrate,-5; bonus bDelayRate,-5; + - Id: 5416 + AegisName: Beer_Cap + Name: Beer Hat + Type: Armor + Buy: 20 + Weight: 600 + Defense: 4 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 18 + Refineable: true + View: 418 + Script: | + bonus bFlee2,5; skill "SM_RECOVERY",3; skill "MG_SRECOVERY",3; + - Id: 5417 + AegisName: Crown_Parrot + Name: Crown Parrots + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + View: 419 + Script: | + bonus bInt,1; bonus2 bResEff,Eff_Silence,10000; bonus3 bAutoSpell,"DC_SCREAM",1,50; + - Id: 5418 + AegisName: Soldier_Hat + Name: Legionnaire Hat + Type: Armor + Buy: 20 + Weight: 400 + Defense: 8 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 420 + Script: | + bonus bStr,1; bonus2 bAddClass,Class_All,3; bonus bUseSPrate,10; + - Id: 5419 + AegisName: Evolved_Leaf + Name: Leaves Of Grass + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Low: true + View: 57 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bVit,1; bonus2 bSubRace,RC_Plant,5; + - Id: 5420 + AegisName: Mask_Of_Ifrit + Name: Mask Of Ifrit + Type: Armor + Buy: 20 + Weight: 800 + Defense: 12 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + EquipLevelMin: 50 + View: 421 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bStr,2; bonus bInt,2; bonus bMdef,5; bonus2 bSubEle,Ele_Fire,10; bonus2 bSubEle,Ele_Water,-10; bonus2 bAddEle,Ele_Fire,10; bonus2 bMagicAtkEle,Ele_Fire,10; bonus3 bAutoSpell,"WZ_METEOR",3,50; + - Id: 5421 + AegisName: Ifrit's_Ear + Name: Ears Of Ifrit + Type: Armor + Buy: 20 + Weight: 300 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + EquipLevelMin: 50 + View: 422 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bStr,1; bonus bInt,1; bonus bMdef,3; bonus2 bAddEle,Ele_Fire,3; bonus2 bSkillAtk,"SM_BASH",4; bonus2 bSkillAtk,"SM_MAGNUM",4; bonus2 bSubEle,Ele_Fire,3; bonus2 bSubEle,Ele_Water,-3; + - Id: 5422 + AegisName: Linguistic_Book_Cap + Name: Linguistic Book Hat + Type: Armor + Buy: 20 + Weight: 70 + Locations: + Head_Top: true + Refineable: true + View: 423 + Script: | + bonus bInt,1; bonus bMdef,2; + - Id: 5423 + AegisName: Lovecap_China + Name: I Love China + Type: Armor + Buy: 20 + Weight: 250 + Defense: 10 + Locations: + Head_Top: true + View: 424 + Trade: + Override: 100 + NoDrop: true + NoSell: true + Script: | + bonus bDex,3; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; + - Id: 5424 + AegisName: Fanta_Orange_Can + Name: Fanta Orange Can Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 425 + - Id: 5425 + AegisName: Fanta_Grape_Can + Name: Fanta Grape Can Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 426 + - Id: 5426 + AegisName: Karada_Meguri_Tea_Hat + Name: Karada Meguricha Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 427 + Script: | + bonus bLuk,1; + - Id: 5427 + AegisName: Royal_Milk_Tea_Hat + Name: Black Tea Kochakaden Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 428 + Script: | + bonus bAgi,1; + - Id: 5428 + AegisName: Bread_Bag1 + Name: RWC Anniversary Bread Envelope + Type: Armor + Weight: 100 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Refineable: true + View: 429 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bSubRace,RC_DemiHuman,12; bonus2 bSubRace,RC_Player_Human,12; + - Id: 5429 + AegisName: Bogy_Cap + Name: Bogy Cap + Type: Armor + Buy: 20 + Weight: 100 + Defense: 4 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 430 + Script: | + bonus bHPrecovRate,5; bonus bSPrecovRate,5; + - Id: 5430 + AegisName: Sacred_Torch_Coronet + Name: Torch Cap + Type: Armor + Buy: 20 + Defense: 6 + Locations: + Head_Top: true + View: 431 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus2 bSubEle,Ele_Fire,20; skill "MG_FIREBOLT",5; + - Id: 5431 + AegisName: Chicken_Hat + Name: Chicken Hat + Type: Armor + Buy: 20 + Weight: 1000 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 432 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus3 bAutoSpell,"MC_LOUD",1,30; bonus bAspdRate,5; + - Id: 5432 + AegisName: Brazil_Baseball_Cap + Name: bRO 4th Anniversary Hat + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Top: true + Refineable: true + View: 433 + Script: | + if(gettime(DT_MONTH)==SEPTEMBER&&gettime(DT_DAYOFMONTH)>=10&&gettime(DT_DAYOFMONTH)<=24) bonus bAllStats,4; + - Id: 5433 + AegisName: Golden_Wreath + Name: Golden Laurel + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Top: true + Refineable: true + View: 434 + - Id: 5434 + AegisName: Cola_Can + Name: Cola Can + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 435 + - Id: 5435 + AegisName: Coke_Hat + Name: Red Minstrel Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 40 + Refineable: true + View: 436 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bInt,1; bonus bMaxSP,80; bonus bMdef,3; .@r = getrefine(); if(.@r>5) { bonus bMdef,.@r-5; bonus bMaxSP,(.@r-5)*10; } + - Id: 5436 + AegisName: Bride's_Corolla + Name: Bride's Corolla + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 437 + Script: | + bonus bLuk,3; bonus bMdef,2; + - Id: 5437 + AegisName: Flower_Of_Fairy + Name: Fairy Flower + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 438 + Script: | + bonus bInt,1; bonus bMdef,1; bonus2 bSubRace,RC_Insect,5; + - Id: 5438 + AegisName: Fillet_Green + Name: Cute Green Ribbon + Type: Armor + Buy: 500 + Weight: 100 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + View: 439 + Script: | + bonus bMaxSP,20; + - Id: 5439 + AegisName: Fillet_Red + Name: Cute Red Ribbon + Type: Armor + Buy: 500 + Weight: 100 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + View: 440 + Script: | + bonus bMaxSP,20; + - Id: 5440 + AegisName: Fillet_Blue + Name: Cute Blue Ribbon + Type: Armor + Buy: 500 + Weight: 100 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + View: 441 + Script: | + bonus bMaxSP,20; + - Id: 5441 + AegisName: Fillet_White + Name: Cute White Ribbon + Type: Armor + Buy: 500 + Weight: 100 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + View: 442 + Script: | + bonus bMaxSP,20; + - Id: 5442 + AegisName: Necktie + Name: Necktie + Type: Armor + Buy: 20 + Weight: 100 + Defense: 6 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 443 + Script: | + bonus bVit,1; bonus bHit,-5; bonus bUseSPrate,5; + - Id: 5443 + AegisName: Status_Of_Baby_Angel + Name: Statue Of Baby Angel + Type: Armor + Buy: 20 + Weight: 600 + Defense: 6 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 444 + Script: | + bonus bMdef,2; bonus4 bAutoSpellWhenHit,"PR_STRECOVERY",1,20,0; + - Id: 5444 + AegisName: Hair_Brush + Name: Hair Brush + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Top: true + Refineable: true + View: 445 + Script: | + bonus bCritical,6; + - Id: 5445 + AegisName: Candy_Cane_In_The_Mouth + Name: Candy Cane In Mouth + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Low: true + View: 446 + Script: | + bonus bMaxSP,5; + - Id: 5446 + AegisName: Cat_Foot_Hairpin + Name: Catfoot Hairpin + Type: Armor + Buy: 20 + Weight: 200 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 447 + Script: | + bonus bFlee,5; bonus bFlee2,3; + - Id: 5447 + AegisName: Frog_Cap + Name: Frog Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 6 + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 448 + Script: | + bonus bMdef,1; bonus2 bAddRace,RC_Insect,12; bonus2 bMagicAddRace,RC_Insect,12; + - Id: 5448 + AegisName: Solo_Play_Box1 + Name: Indifferent Solo Hat + Type: Armor + Buy: 20 + Weight: 300 + Slots: 1 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Refineable: true + View: 449 + Script: | + skill "RG_GRAFFITI",1; + - Id: 5449 + AegisName: Solo_Play_Box2 + Name: Angry Solo Hat + Type: Armor + Buy: 20 + Weight: 300 + Slots: 1 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Refineable: true + View: 450 + Script: | + skill "RG_GRAFFITI",1; + - Id: 5450 + AegisName: Sun_Cap + Name: Solar Hat + Type: Armor + Buy: 20 + Weight: 1000 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 451 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 5451 + AegisName: Dragonhelm_Gold + Name: RWC 2008 Dragon Helm Gold + Type: Armor + Buy: 20 + Weight: 2500 + Defense: 14 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + View: 452 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; + - Id: 5452 + AegisName: Dragonhelm_Silver + Name: RWC 2008 Dragon Helm Silver + Type: Armor + Buy: 20 + Weight: 2500 + Defense: 10 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + View: 453 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bSubRace,RC_DemiHuman,7; bonus2 bSubRace,RC_Player_Human,7; bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player_Human,3; + - Id: 5453 + AegisName: Dragonhelm_Copper + Name: RWC 2008 Dragon Helm Copper + Type: Armor + Buy: 20 + Weight: 2500 + Defense: 5 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + View: 454 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bAddRace,RC_DemiHuman,1; bonus2 bAddRace,RC_Player_Human,1; + - Id: 5454 + AegisName: Dog_Cap_ + Name: Puppy Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 234 + Script: | + bonus bStr,1; bonus bInt,1; autobonus "{ bonus bCritical,100; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; autobonus "{ bonus2 bIgnoreMdefClassRate,Class_Normal,100; bonus2 bIgnoreMdefClassRate,Class_Boss,100; }",10,3000,BF_MAGIC,"{ specialeffect2 EF_MAGICALATTHIT; }"; + - Id: 5455 + AegisName: Geographer_Band_ + Name: Decorative Geographer + Type: Armor + Buy: 20 + Weight: 500 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 238 + Script: | + bonus bInt,1; bonus3 bAutoSpell,"AL_HEAL",5,50; bonus3 bAutoSpellWhenHit,"AL_HEAL",5,30; + - Id: 5456 + AegisName: Vacation_Hat_ + Name: Summer Hat + Type: Armor + Buy: 20 + Weight: 200 + Locations: + Head_Top: true + Refineable: true + View: 315 + Script: | + bonus bVit,5; bonus bHPrecovRate,20; bonus bSPrecovRate,15; + - Id: 5457 + AegisName: Spring_Rabbit_Hat + Name: Moon Rabbit Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 455 + Script: | + bonus bAgi,3; bonus bBaseAtk,5; bonus bMatkRate,5; .@r = getrefine(); if(.@r>4) { bonus bBaseAtk,.@r-4; bonus bMatkRate,.@r-4; } + - Id: 5458 + AegisName: Pinwheel_Cap + Name: Pinwheel Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 3 + Locations: + Head_Top: true + Refineable: true + View: 456 + Script: | + bonus bMaxHPrate,5; bonus bMaxSPrate,5; + - Id: 5459 + AegisName: Drooping_Bunny_Chusuk + Name: Drooping Bunny + Type: Armor + Weight: 100 + Defense: 3 + Locations: + Head_Top: true + Refineable: true + View: 249 + Script: | + bonus bDex,1; bonus bFlee,2; + - Id: 5460 + AegisName: Adv_Dragon_Skull + Name: Evolved Dragon Skull Hat + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 14 + Locations: + Head_Top: true + EquipLevelMin: 60 + Refineable: true + View: 457 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,2; bonus bMaxHPrate,3; + - Id: 5461 + AegisName: Adv_Whisper_Mask + Name: Evolved Whisper Mask + Type: Armor + Buy: 20 + Weight: 300 + Defense: 1 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 458 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,3; bonus2 bSubEle,Ele_Ghost,20; + - Id: 5462 + AegisName: Spiked_Scarf + Name: Spiked Scarf + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Low: true + EquipLevelMin: 90 + View: 459 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAtk,30; bonus bMaxHPrate,-2; + - Id: 5463 + AegisName: Rainbow_Scarf + Name: Rainbow Scarf + Type: Armor + Buy: 20 + Defense: 1 + Locations: + Head_Low: true + EquipLevelMin: 90 + View: 460 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMatk,30; bonus bMaxSPrate,-2; + - Id: 5464 + AegisName: Zaha_Doll_Hat + Name: Zaha Doll Hat + Type: Armor + Buy: 20 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 461 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bInt,3; bonus bMdef,9; bonus2 bMagicAddEle,Ele_Undead,10; .@r0 = getrefine(); autobonus "{ .@r = getrefine(); bonus2 bSPLossRate,10,1000; bonus bMatk,30*.@r; bonus bFixedCast,-80*.@r; }",3*.@r0,3000,BF_MAGIC,"{ active_transform 1518,3000; specialeffect2 EF_POTION_BERSERK; showscript \"Bacsojin Power !\"; }"; autobonus2 "{ .@r = getrefine(); bonus2 bSPLossRate,10,1000; bonus bMatk,30*.@r; bonus bFixedCast,-80*.@r; }",.@r0,3000,BF_MAGIC,"{ active_transform 1518,3000; specialeffect2 EF_POTION_BERSERK; showscript \"Bacsojin Power !\"; }"; + - Id: 5465 + AegisName: Celestial_Hat + Name: Hat Of Fortune + Type: Armor + Buy: 20 + Weight: 500 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 40 + Refineable: true + View: 462 + Script: | + bonus bLuk,2; bonus bMdef,5; .@r = getrefine(); if(.@r>4) bonus bLuk,.@r-4; + - Id: 5466 + AegisName: Wind_Milestone + Name: Wind Milestone + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 463 + Script: | + bonus bAgi,2; skill "AL_TELEPORT",1; + - Id: 5467 + AegisName: Helm_Of_Dragoon + Name: Helm Of Dragon + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 10 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 464 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bStr,2; bonus bInt,2; bonus bDex,2; .@r = getrefine(); if(.@r>=7) bonus2 bExpAddRace,RC_Dragon,3; if(.@r>=9) bonus2 bExpAddRace,RC_Dragon,5; bonus3 bAutoSpell,"NPC_DRAGONFEAR",1,30; + - Id: 5468 + AegisName: Parade_Cap + Name: Parade Hat + Type: Armor + Buy: 20 + Weight: 800 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 465 + Script: | + bonus bDelayRate,-5; bonus bMdef,2; .@r = getrefine(); if(.@r>5) bonus bVariableCastrate,-(.@r-5); + - Id: 5469 + AegisName: Noble_Hat + Name: Musketeer Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 4 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 60 + Refineable: true + View: 466 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bDex,3; bonus bFlee,3; .@r = getrefine(); if(.@r>=7){ bonus bFlee,3; bonus bLongAtkRate,3; } if(.@r>=9){ bonus bFlee,4; bonus bLongAtkRate,2; } + - Id: 5470 + AegisName: Eyes_Of_Darkness + Name: Eye Of Darkness + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Mid: true + EquipLevelMin: 50 + View: 467 + Script: | + bonus bDex,1; bonus2 bResEff,Eff_Blind,10000; + - Id: 5471 + AegisName: Hairband_Of_Reginleif + Name: Hairband Of Reginleif + Type: Armor + Buy: 20 + Weight: 800 + Defense: 2 + Locations: + Head_Mid: true + EquipLevelMin: 50 + View: 468 + Script: | + bonus2 bSubEle,Ele_Water,3; bonus2 bSubEle,Ele_Fire,3; bonus2 bSubEle,Ele_Undead,3; bonus2 bSubEle,Ele_Ghost,3; + - Id: 5472 + AegisName: Red_White_Hat + Name: Red Hat + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Top: true + Refineable: true + View: 469 + Script: | + bonus3 bAddMonsterDropItem,554,RC_DemiHuman,200; + - Id: 5473 + AegisName: Forceps_Hairpin + Name: Nipper Crab Hairpin + Type: Armor + Buy: 20 + Weight: 500 + Defense: 8 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 470 + Script: | + bonus3 bAutoSpellWhenHit,"MG_COLDBOLT",1,30; bonus3 bAddMonsterDropItem,991,RC_Fish,100; + - Id: 5474 + AegisName: Notice_Board + Name: AFK Hat + Type: Armor + Buy: 20 + Weight: 700 + Defense: 2 + Locations: + Head_Top: true + EquipLevelMin: 10 + View: 471 + - Id: 5475 + AegisName: Cube_Mask + Name: Mask Cube + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Low: true + Head_Mid: true + View: 472 + Script: | + bonus bAllStats,1; + - Id: 5476 + AegisName: Hairband_Of_Grandpeco + Name: Grand Peco Hairband + Type: Armor + Buy: 20 + Weight: 800 + Defense: 5 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 473 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus2 bAddRace,RC_Brute,7; bonus2 bMagicAddRace,RC_Brute,7; bonus2 bAddRace,RC_DemiHuman,7; bonus2 bMagicAddRace,RC_DemiHuman,7; bonus2 bAddRace,RC_Player_Doram,7; bonus2 bMagicAddRace,RC_Player_Doram,7; bonus3 bAddEff,Eff_Curse,10,ATF_SHORT; + - Id: 5477 + AegisName: Bro_Flag + Name: Brazilian Flag Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 474 + Script: | + skill "SM_BASH",1; + - Id: 5478 + AegisName: Classic_Hat + Name: Classic Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 4 + Locations: + Head_Top: true + Refineable: true + View: 475 + Script: | + bonus bStr,2; bonus bMaxHP,300; + - Id: 5479 + AegisName: Shaman's_Hair_Ornament + Name: Shaman's Hair Decoration + Type: Armor + Buy: 20 + Weight: 300 + Defense: 2 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 476 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bMdef,3; bonus2 bSubEle,Ele_Neutral,5; + - Id: 5480 + AegisName: Bizofnil_Wing_Deco + Name: Bijofnil Wings + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 6 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 477 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bAllStats,2; bonus2 bSubEle,Ele_All,5; bonus2 bHPRegenRate,(MaxHp*2/100),10000; bonus2 bSPRegenRate,(MaxSp/100),10000; + - Id: 5481 + AegisName: Hermose_Cap + Name: Hermode Cap + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 478 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bAspdRate,10; bonus bBaseAtk,-20; bonus bMatkRate,-10; + - Id: 5482 + AegisName: Dark_Knight_Mask + Name: Dark Knight Mask + Type: Armor + Buy: 20 + Weight: 3000 + Defense: 5 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 479 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bStr,3; + - Id: 5483 + AegisName: Odin_Mask + Name: Odin Mask + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Low: true + Head_Mid: true + EquipLevelMin: 1 + View: 480 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus2 bSubClass,Class_Boss,2; + - Id: 5484 + AegisName: Taiwan_Flag_Hat + Name: Holidays Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 4 + Locations: + Head_Top: true + View: 482 + Script: | + bonus bAllStats,5; bonus2 bResEff,Eff_Stun,500; + - Id: 5485 + AegisName: Tiger_Face + Name: Tiger Face + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 3 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + EquipLevelMin: 60 + Refineable: true + View: 483 + Script: | + bonus2 bSubRace,RC_Brute,5; bonus2 bAddRace,RC_Brute,5; bonus2 bMagicAddRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5; bonus2 bAddRace,RC_Player_Doram,5; bonus2 bMagicAddRace,RC_Player_Doram,5; + - Id: 5486 + AegisName: J_Anniversary_Hat + Name: Anniversary Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 6 + Locations: + Head_Top: true + Refineable: true + View: 395 + Script: | + bonus bAllStats,2; + - Id: 5487 + AegisName: J_Poringcake_Hat + Name: Poring Cake Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 417 + Script: | + bonus bLuk,2; + - Id: 5488 + AegisName: J_Twin_Santahat + Name: Twin Santa Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 390 + Script: | + bonus bLuk,1; bonus bMdef,1; + - Id: 5489 + AegisName: Love_Daddy + Name: Love Daddy Hat + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Top: true + Refineable: true + View: 484 + Script: | + bonus bDex,2; + - Id: 5490 + AegisName: Anubis_Helm + Name: Anubis Helm + Type: Armor + Buy: 20 + Defense: 8 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 65 + View: 485 + Script: | + bonus bMdef,5; bonus2 bSubClass,Class_Boss,10; bonus bHealpower2,10; bonus bAddItemHealRate,10; + - Id: 5491 + AegisName: Hat_Of_Outlaw + Name: Bandit Hat + Type: Armor + Buy: 20 + Weight: 800 + Defense: 3 + Locations: + Head_Top: true + Refineable: true + View: 486 + Script: | + bonus bStr,2; bonus2 bSubEle,Ele_Fire,10; + - Id: 5492 + AegisName: Boy's_Cap_I + Name: Student Cap + Type: Armor + Defense: 5 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + View: 102 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,3; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; + - Id: 5493 + AegisName: Ulle_Cap_I + Name: Ulle's Cap + Type: Armor + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + View: 254 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,2; bonus bAgi,1; + - Id: 5494 + AegisName: Spinx_Helm_I + Name: Sphinx Hat + Type: Armor + Defense: 5 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Head_Low: true + Head_Top: true + View: 137 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,5; + - Id: 5495 + AegisName: Power_Of_Thor + Name: Power Of Thor + Type: Armor + Buy: 20 + Weight: 100 + Defense: 6 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 493 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bInt,1; bonus bDex,1; bonus bMdef,3; bonus bFlee,5; + - Id: 5496 + AegisName: Dice_Hat + Name: Dice Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 3 + Locations: + Head_Top: true + EquipLevelMin: 50 + View: 494 + Script: | + bonus bLuk,4; + - Id: 5497 + AegisName: King_Tiger_Doll_Hat + Name: King Tiger Doll Hat + Type: Armor + Buy: 20 + Weight: 400 + Defense: 6 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 495 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bStr,2; bonus bDex,2; bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Player_Doram,10; .@r = getrefine(); autobonus "{ bonus2 bSPLossRate,5,1000; bonus bBaseAtk,25*getrefine(); }",3*.@r,3000,BF_NORMAL,"{ active_transform 1115,3000; specialeffect2 EF_POTION_BERSERK; showscript \"Eddga Power !\"; }"; autobonus2 "{ bonus2 bSPLossRate,5,1000; bonus bBaseAtk,25*getrefine(); }",.@r,3000,BF_NORMAL,"{ active_transform 1115,3000; specialeffect2 EF_POTION_BERSERK; showscript \"Eddga Power !\"; }"; + - Id: 5498 + AegisName: Wondering_Wolf_Helm + Name: Wandering Wolf Helm + Type: Armor + Buy: 20 + Weight: 600 + Defense: 5 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 490 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bAgi,5; bonus bFlee,10; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Brute,10; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,10; if(getrefine()>=7){ bonus2 bAddEff,Eff_Bleeding,10; } if(getrefine()>=9){ bonus3 bAutoSpellWhenHit,"MC_LOUD",1,1; } + - Id: 5499 + AegisName: Pizza_Hat + Name: Pizza Hat + Type: Armor + Buy: 20 + Weight: 600 + Locations: + Head_Top: true + View: 487 + Script: | + skill "SM_PROVOKE",1; + - Id: 5500 + AegisName: Icecream_Hat + Name: Icecream Hat + Type: Armor + Weight: 300 + Defense: 6 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 488 + Script: | + bonus bMdef,3; skill "MG_FROSTDIVER",3; + - Id: 5501 + AegisName: Pirate's_Pride + Name: Pirate's Pride + Type: Armor + Weight: 100 + Defense: 6 + Locations: + Head_Top: true + EquipLevelMin: 10 + View: 496 + Script: | + bonus2 bAddRace2,RC2_Ninja,5; bonus2 bSubRace2,RC2_Ninja,5; + - Id: 5502 + AegisName: Necromencer's_Hood + Name: Necromancer's Hood + Type: Armor + Weight: 500 + Defense: 6 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 491 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bInt,3; bonus bMdef,3; bonus bDefEle,Ele_Undead; bonus2 bSubEle,Ele_Dark,15; bonus2 bSubEle,Ele_Holy,-20; + - Id: 5503 + AegisName: Rabbit_Magic_Hat + Name: Rabbit Magic Hat + Type: Armor + Weight: 800 + Defense: 4 + Locations: + Head_Top: true + Refineable: true + View: 497 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bDex,2; bonus bAgi,2; bonus bMdef,1; bonus bAspdRate,5; bonus bDelayRate,-4; + - Id: 5504 + AegisName: China_Wedding_Veil + Name: Wedding Weil + Type: Armor + Buy: 20 + Weight: 500 + Defense: 5 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 489 + Script: | + bonus bMdef,10; + - Id: 5505 + AegisName: Asara_Fairy_Hat + Name: Asara Fairy Hat + Type: Armor + Weight: 500 + Defense: 2 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 492 + Script: | + skill "DC_DONTFORGETME",1; bonus bDex,2; bonus bLuk,2; + - Id: 5506 + AegisName: Blue_Pajamas_Hat + Name: Blue Night Cap + Type: Armor + Weight: 100 + Defense: 4 + Locations: + Head_Top: true + Refineable: true + View: 501 + Script: | + bonus bAtkRate,5; bonus bMatkRate,5; + - Id: 5507 + AegisName: Pink_Pajamas_Hat + Name: Pink Night Cap + Type: Armor + Weight: 100 + Defense: 4 + Locations: + Head_Top: true + Refineable: true + View: 502 + Script: | + bonus bAtkRate,5; bonus bMatkRate,5; + - Id: 5508 + AegisName: Shark_Hat + Name: Shark Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 3 + Locations: + Head_Top: true + Refineable: true + View: 503 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bStr,1; bonus bAgi,2; bonus bMdef,1; bonus2 bAddEle,Ele_Water,5; bonus2 bSubDefEle,Ele_Water,10; + - Id: 5509 + AegisName: Sting_Hat + Name: Sting hat + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 10 + Locations: + Head_Top: true + Refineable: true + View: 504 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bStr,2; bonus bVit,1; bonus bMdef,3; bonus2 bAddEle,Ele_Fire,5; bonus2 bSubDefEle,Ele_Earth,5; bonus3 bAutoSpell,"WZ_EARTHSPIKE",1,10; + - Id: 5510 + AegisName: Shower_Cap + Name: Shower Cap + Type: Armor + Buy: 20 + Defense: 4 + Locations: + Head_Top: true + Refineable: true + View: 507 + Script: | + bonus bMdef,3; bonus bFlee,3; bonus2 bAddEle,Ele_Water,10; bonus2 bSubRace,RC_Fish,10; + - Id: 5511 + AegisName: Samambaia + Name: Samambaia + Type: Armor + Buy: 20 + Weight: 200 + Defense: 5 + Slots: 1 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 508 + Script: | + bonus bHealPower,2; bonus bAspd,1; bonus bFixedCastrate,-10; + - Id: 5512 + AegisName: Aquarius_Diadem + Name: Aquarius Diadem + Type: Armor + Buy: 20 + Weight: 300 + Defense: 6 + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 509 + Script: | + bonus bStr,2; bonus bFlee,10; bonus2 bSubEle,Ele_Wind,5; if(getrefine()>6) { bonus bDef,1; bonus bBaseAtk,15; } + - Id: 5513 + AegisName: Aquarius_Crown + Name: Aquarius Crown + Type: Armor + Buy: 20 + Weight: 300 + Defense: 6 + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 510 + Script: | + bonus bStr,2; bonus bFlee,10; bonus2 bSubEle,Ele_Wind,5; if(getrefine()>6) { bonus bDef,1; bonus bBaseAtk,15; } + - Id: 5514 + AegisName: Pisces_Diadem + Name: Pisces Diadem + Type: Armor + Buy: 20 + Weight: 300 + Defense: 6 + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 511 + Script: | + bonus bInt,2; bonus bMdef,5; bonus2 bSubEle,Ele_Water,5; if(getrefine()>6) { bonus bDef,1; bonus bMatkRate,2; } + - Id: 5515 + AegisName: Pisces_Crown + Name: Pisces Crown + Type: Armor + Buy: 20 + Weight: 300 + Defense: 6 + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 512 + Script: | + bonus bInt,2; bonus bMdef,5; bonus2 bSubEle,Ele_Water,5; if(getrefine()>6) { bonus bDef,1; bonus bMatkRate,2; } + - Id: 5516 + AegisName: Hawk_Eyes01 + Name: Hawk Eyes + Type: Armor + Buy: 10 + Weight: 1000 + Jobs: + Hunter: true + Classes: + Upper: true + Third_Upper: true + Locations: + Head_Mid: true + View: 23 + Script: | + bonus bDex,1; bonus bLongAtkRate,3; + - Id: 5517 + AegisName: Hawk_Eyes02 + Name: Hawk Eyes + Type: Armor + Buy: 10 + Weight: 1000 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Locations: + Head_Mid: true + View: 23 + Script: | + bonus bDex,1; + - Id: 5518 + AegisName: L_Magestic_Goat2 + Name: Gigantic Majestic Goat + Type: Armor + Buy: 20 + Weight: 800 + Defense: 5 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 513 + Script: | + bonus2 bSubRace,RC_DemiHuman,12; bonus2 bSubRace,RC_Player_Human,12; bonus bBaseAtk,(JobLevel*2)/7; + - Id: 5519 + AegisName: Peacock_Feather + Name: Peacock Feather + Type: Armor + Buy: 20 + Weight: 800 + Defense: 4 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 514 + Script: | + bonus bInt,2; + - Id: 5520 + AegisName: Rabbit_Earplug + Name: Rabbit Earplugs + Type: Armor + Weight: 400 + Slots: 1 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 515 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus2 bAddClass,Class_All,4; bonus bMatkRate,4; + - Id: 5521 + AegisName: Angry_Mouth_C + Name: Angry Mouth + Type: Armor + Locations: + Head_Low: true + View: 194 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDelayRate,-3; + - Id: 5522 + AegisName: Fanta_Zero_Lemon_Hat + Name: Fanta Zero Lemon Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 4 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 516 + - Id: 5523 + AegisName: Sakura_Mist_Hat + Name: Sakura Mist Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 4 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 517 + Script: | + bonus bDex,1; + - Id: 5524 + AegisName: Sakura_Milk_Tea_Hat + Name: Sakura Milk Tea Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 4 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 518 + Script: | + bonus bVit,1; + - Id: 5525 + AegisName: First_Leaf_Tea_Hat + Name: Flower Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 4 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 519 + Script: | + bonus bMaxHP,80; bonus bMaxSP,20; + - Id: 5526 + AegisName: Lady_Tanee_Doll + Name: Tanigumi Girl Doll + Type: Armor + Buy: 20 + Weight: 300 + Defense: 4 + Locations: + Head_Top: true + EquipLevelMin: 60 + View: 520 + Script: | + bonus bAgi,2; bonus bFlee,3; bonus2 bSubEle,Ele_Wind,5; bonus2 bAddMonsterDropItem,513,200; + - Id: 5527 + AegisName: Lunatic_Hat + Name: Lunatic Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 2 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 521 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bLuk,3; bonus bCritical,5; bonus2 bAddRace,RC_Plant,20; + - Id: 5528 + AegisName: King_Frog_Hat + Name: Frog King Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 4 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 30 + View: 522 + Script: | + bonus bAgi,1; + - Id: 5529 + AegisName: Evil's_Bone_Hat + Name: Satanic Bone Helm + Type: Armor + Buy: 20 + Weight: 600 + Defense: 6 + Slots: 1 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 523 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bStr,2; bonus bInt,2; bonus bMdef,2; bonus2 bSubEle,Ele_Neutral,5; skill "WZ_FROSTNOVA",1; + - Id: 5530 + AegisName: Raven_Cap + Name: Raven Cap + Type: Armor + Buy: 20 + Weight: 100 + Defense: 6 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 524 + Trade: + Override: 100 + NoDrop: true + - Id: 5531 + AegisName: B_Dragon_Hat + Name: Baby Dragon Hat + Type: Armor + Buy: 45000 + Weight: 100 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 525 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bDex,2; .@bonus = max(getskilllv("TF_DOUBLE"), 5); skill "TF_DOUBLE",.@bonus; bonus bDoubleRate,.@bonus * 5; + - Id: 5532 + AegisName: Pirate_Dagger_J + Name: Pirate Dagger + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Low: true + View: 327 + Script: | + bonus bShortWeaponDamageReturn,1; + - Id: 5533 + AegisName: Emperor_Wreath_J + Name: Emperor Wreath + Type: Armor + Buy: 20 + Weight: 800 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 80 + Refineable: true + View: 261 + Script: | + bonus bAllStats,1; + - Id: 5534 + AegisName: Fox_Hat_J + Name: Fox Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Low: true + Head_Mid: true + EquipLevelMin: 70 + View: 403 + Script: | + bonus bAgi,1; bonus bFlee2,2; + - Id: 5535 + AegisName: Side_Cap + Name: Side Cap + Type: Armor + Buy: 20 + Weight: 500 + Defense: 6 + Locations: + Head_Top: true + Refineable: true + View: 529 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bVit,1; bonus bDex,1; bonus bMdef,3; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player_Human,3; + - Id: 5536 + AegisName: Spare_Card + Name: Spare Card + Type: Armor + Buy: 20 + Weight: 10 + Defense: 1 + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 526 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bLuk,1; bonus2 bAddMonsterDropItem,6187,1000; bonus bFlee2,1; bonus2 bAddMonsterDropItem,617,5; bonus2 bAddMonsterDropItem,12132,30; bonus2 bAddMonsterDropItem,12130,30; + - Id: 5537 + AegisName: Quati_Hat + Name: Kwati Hat + Type: Armor + Buy: 20 + Weight: 700 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 45 + View: 527 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bAgi,3; bonus2 bAddRace,RC_Plant,10; + - Id: 5538 + AegisName: Tucan_Hat + Name: Tucan Hat + Type: Armor + Buy: 20 + Weight: 600 + Defense: 2 + Slots: 1 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 45 + View: 528 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bDex,3; bonus bCritical,5; + - Id: 5539 + AegisName: Jaguar_Hat + Name: Jaguar Hat + Type: Armor + Buy: 20 + Weight: 400 + Defense: 4 + Slots: 1 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + EquipLevelMin: 25 + Refineable: true + View: 530 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bMdef,2; skill "MC_LOUD",1; + - Id: 5540 + AegisName: Freyja_SCirclet7 + Name: Freyja SCirclet7 + Type: Armor + Buy: 20 + Weight: 700 + Defense: 8 + Locations: + Head_Top: true + EquipLevelMin: 20 + View: 18 + Script: | + bonus bStr,1; bonus bInt,1; bonus bDex,1; + - Id: 5541 + AegisName: Freyja_SCirclet30 + Name: Freyja SCirclet30 + Type: Armor + Buy: 20 + Weight: 700 + Defense: 8 + Locations: + Head_Top: true + EquipLevelMin: 20 + View: 18 + Script: | + bonus bStr,1; bonus bInt,1; bonus bDex,1; + - Id: 5542 + AegisName: Freyja_SCirclet60 + Name: Freyja SCirclet60 + Type: Armor + Buy: 20 + Weight: 700 + Defense: 8 + Locations: + Head_Top: true + EquipLevelMin: 20 + View: 18 + Script: | + bonus bStr,1; bonus bInt,1; bonus bDex,1; + - Id: 5543 + AegisName: Freyja_SCirclet90 + Name: Freyja SCirclet90 + Type: Armor + Buy: 20 + Weight: 700 + Defense: 8 + Locations: + Head_Top: true + EquipLevelMin: 20 + View: 18 + Script: | + bonus bStr,1; bonus bInt,1; bonus bDex,1; + - Id: 5544 + AegisName: Time_Keeper_Hat + Name: Time Keeper Hat + Type: Armor + Buy: 30000 + Defense: 6 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 240 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,2; bonus bMaxSP,50; + - Id: 5545 + AegisName: Aries_Diadem + Name: Aries Diadem + Type: Armor + Buy: 20 + Weight: 400 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 531 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bVit,2; bonus2 bSubEle,Ele_fire,5; if(getrefine()>6) { bonus bDef,1; bonus bVit,1; } + - Id: 5546 + AegisName: Aries_Crown + Name: Aries Crown + Type: Armor + Buy: 20 + Weight: 400 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 532 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bLuk,2; bonus2 bSubEle,Ele_Fire,5; if(getrefine()>6) { bonus bFlee,2; bonus bLuk,1; } + - Id: 5547 + AegisName: RJC_Katusa + Name: RJC Katusa Flower + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 533 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus2 bSkillAtk,"WZ_HEAVENDRIVE",15+getequiprefinerycnt(EQI_HAND_R); bonus2 bSkillAtk,"WZ_EARTHSPIKE",15+getequiprefinerycnt(EQI_HAND_R); bonus2 bVariableCastrate,"WZ_HEAVENDRIVE",-25; bonus2 bVariableCastrate,"WZ_EARTHSPIKE",-25; + - Id: 5548 + AegisName: Scarlet_Rose + Name: Scarlet Rose + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 534 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus2 bAddClass,Class_All,1; bonus bMatkRate,1; bonus bMaxSP,30; + - Id: 5549 + AegisName: Taurus_Diadem + Name: Taurus Diadem + Type: Armor + Buy: 20 + Weight: 300 + Defense: 6 + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 535 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bDex,2; bonus bMatkRate,2; bonus bDelayRate,-2; if (getrefine()>6) { bonus bMatkRate,1; bonus bDex,1; } + - Id: 5550 + AegisName: Taurus_Crown + Name: Taurus Crown + Type: Armor + Buy: 20 + Weight: 300 + Defense: 6 + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 536 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bAgi,2; bonus2 bSubClass,Class_All,2; bonus bDelayRate,-2; bonus2 bAddEff,Eff_Stun,2000; if(getrefine()>6) { bonus2 bSubClass,Class_All,1; bonus bStr,1; } + - Id: 5551 + AegisName: Holy_Egg_Hat + Name: Holy Egg Hat + Type: Armor + Buy: 20 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 537 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 5552 + AegisName: Fest_Lord_Circlet + Name: Festival Grand Circlet + Type: Armor + Defense: 8 + Locations: + Head_Top: true + View: 93 + Script: | + bonus bStr,3; bonus bInt,3; bonus bMdef,3; + - Id: 5553 + AegisName: Fest_Bunny_Band + Name: Festival Bunny Band + Type: Armor + Defense: 7 + Locations: + Head_Top: true + View: 15 + Script: | + bonus bMdef,4; bonus2 bSubRace,RC_DemiHuman,9; bonus2 bSubRace,RC_Player_Human,9; + - Id: 5554 + AegisName: Octopus_Hat + Name: Octopus Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 3 + Locations: + Head_Top: true + Refineable: true + View: 538 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bMdef,3; bonus3 bAutoSpell,"SM_PROVOKE",5,10; bonus bUnbreakableHelm; + - Id: 5555 + AegisName: Leaf_Cat_Hat + Name: Leaf Cat Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 6 + Locations: + Head_Top: true + Refineable: true + View: 539 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bAgi,2; bonus3 bAutoSpellWhenHit,"AL_HEAL",3,50; + - Id: 5556 + AegisName: Fur_Seal_Hat + Name: Seal Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 3 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + EquipLevelMin: 55 + Refineable: true + View: 540 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bInt,1; bonus3 bAutoSpell,"WZ_FROSTNOVA",1,100; + - Id: 5557 + AegisName: Wild_Rose_Hat + Name: Wild Rose Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 6 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 541 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bAgi,3; + - Id: 5558 + AegisName: Saci_Hat + Name: Luxury Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 6 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 542 + Script: | + bonus3 bAddMonsterDropItem,510,RC_Plant,20; + - Id: 5559 + AegisName: Piece_Of_White_Cloth_E + Name: Piece Of White Cloth + Type: Armor + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 543 + Script: | + bonus2 bAddClass,Class_All,6; bonus bMatkRate,6; bonus bLongAtkRate,6; bonus bHealPower,6; bonus bVariableCastrate,-20; bonus bAspd,1; + - Id: 5560 + AegisName: Bullock_Helm_J + Name: Bullock Helm + Type: Armor + Buy: 20 + Weight: 3000 + Defense: 3 + Locations: + Head_Top: true + EquipLevelMin: 75 + Refineable: true + View: 322 + Script: | + bonus bMaxHP,100; bonus bNoKnockback; 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; + - Id: 5561 + AegisName: Rabbit_Magic_Hat_J + Name: Magic Rabbit Hat + Type: Armor + Weight: 800 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 497 + Script: | + bonus bInt,1; bonus bMaxSP,50; bonus4 bAutoSpellWhenHit,"MG_FIREBOLT",3,10,3; bonus4 bAutoSpellWhenHit,"MG_COLDBOLT",3,10,3; bonus4 bAutoSpellWhenHit,"MG_LIGHTNINGBOLT",3,10,3; bonus3 bAutoSpellWhenHit,"AL_HEAL",1,10; + - Id: 5562 + AegisName: Good_Wedding_Veil_J + Name: Luxurious Wedding Veil + Type: Armor + Weight: 500 + Slots: 1 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 45 + View: 489 + Script: | + bonus bMdef,10; bonus bVariableCastrate,-3; bonus bUseSPrate,-5; + - Id: 5563 + AegisName: Dolor_Hat + Name: Dolor Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + View: 547 + Script: | + bonus3 bAutoSpell,"PR_LEXAETERNA",1,15; + - Id: 5564 + AegisName: Crown_Of_Deceit + Name: Crown of Deceit + Type: Armor + Buy: 20 + Weight: 300 + Defense: 3 + Slots: 1 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 85 + Refineable: true + View: 544 + Script: | + .@r = getrefine(); bonus bInt,4; bonus bMdef,10; bonus bVariableCastrate,-10; if(.@r==7||.@r==8){ bonus bDef,2; bonus bMatkRate,5; bonus bVariableCastrate,-5; } if(.@r>=9){ bonus bMdef,5; bonus bMatkRate,5; bonus bVariableCastrate,-5; bonus bDelayrate,-5; } + - Id: 5565 + AegisName: Dragon_Arhat_Mask + Name: Dragon Arhat Mask + Type: Armor + Defense: 5 + Locations: + Head_Low: true + Head_Mid: true + EquipLevelMin: 1 + View: 545 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; + - Id: 5566 + AegisName: Tiger_Arhat_Mask + Name: Tiger Arhat Mask + Type: Armor + Defense: 1 + Locations: + Head_Low: true + Head_Mid: true + EquipLevelMin: 1 + View: 546 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus2 bAddRace,RC_DemiHuman,2; bonus2 bAddRace,RC_Player_Human,2; + - Id: 5567 + AegisName: Bright_Fury + Name: Bright Fury + Type: Armor + Buy: 20 + Weight: 300 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 548 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bStr,1; bonus2 bAddClass,Class_All,2; bonus bAspdRate,2; + - Id: 5568 + AegisName: Rabbit_Bonnet + Name: Rabbit Bonnet + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 1 + Locations: + Head_Mid: true + Head_Top: true + Refineable: true + View: 549 + Script: | + bonus bInt,2; bonus bDelayRate,-3; + - Id: 5569 + AegisName: Gemini_Diadem + Name: Gemini Diadem + Type: Armor + Buy: 20 + Weight: 300 + Defense: 6 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 550 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bDex,2; bonus bMatkRate,2; if(getrefine()>6) { bonus bDex,1; bonus bMatk,30; } + - Id: 5570 + AegisName: Gemini_Crown + Name: Gemini Crown + Type: Armor + Buy: 20 + Weight: 300 + Defense: 6 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 551 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bAgi,2; bonus bFlee,10; if(getrefine()>6) { bonus bHit,5; bonus bAtk,30; } + - Id: 5571 + AegisName: Rasta_Wig + Name: Rasta Wig + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 552 + Script: | + bonus bStr,1; bonus3 bAutoSpellWhenHit,"BA_FROSTJOKER",1,50; + - Id: 5572 + AegisName: Savage_Baby_Hat + Name: Savage Babe Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 553 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bVit,2; bonus2 bAddEff,Eff_Stun,500; bonus2 bSubRace,RC_Brute,-10; bonus2 bSubRace,RC_Player_Doram,-10; + - Id: 5573 + AegisName: Bogy_Horn + Name: Dokebi Horn + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 75 + Refineable: true + View: 554 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus2 bAddMonsterDropItemGroup,IG_Jewel,100; bonus3 bAutoSpell,"MC_MAMMONITE",5,70; + - Id: 5574 + AegisName: Pencil_In_Mouth + Name: Well-Chewed Pencil + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Low: true + EquipLevelMin: 10 + View: 555 + Script: | + bonus bHit,3; + - Id: 5575 + AegisName: Onigiri_Hat + Name: Rice Ball Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 6 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + View: 556 + - Id: 5576 + AegisName: Japan_Winecup + Name: Wine Cup + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Low: true + View: 557 + - Id: 5577 + AegisName: Dark_Knight_MaskB + Name: Dark Knight Mask + Type: Armor + Weight: 3000 + Defense: 5 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + EquipLevelMin: 80 + Refineable: true + View: 479 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bDex,3; + - Id: 5578 + AegisName: Voyage_Hat + Name: Voyage Hat + Type: Armor + Buy: 200 + Weight: 10 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 236 + Script: | + bonus bAgi,2; + - Id: 5579 + AegisName: Wanderer's_Sakkat + Name: Wanderer's Sakkat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 2 + Slots: 1 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 558 + Script: | + bonus bFlee,3; .@r = getrefine(); if(.@r>=7){ bonus bFlee,2; bonus bAgi,2; } if(.@r>=9){ bonus bCritical,10; bonus bAspdRate,8; } + - Id: 5580 + AegisName: Red_Beret + Name: Red Beret + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Locations: + Head_Top: true + View: 559 + Script: | + bonus bAllStats,3; bonus bMdef,3; + - Id: 5581 + AegisName: Cancer_Diadem + Name: Cancer Diadem + Type: Armor + Buy: 20 + Weight: 300 + Defense: 3 + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 560 + Script: | + bonus bInt,2; bonus2 bSubEle,Ele_Water,5; if(getrefine()>6) { bonus bMdef,1; bonus bHealPower,3; bonus bMatkRate,2; } + - Id: 5582 + AegisName: Cancer_Crown + Name: Cancer Crown + Type: Armor + Buy: 20 + Weight: 300 + Defense: 3 + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 561 + Script: | + bonus bStr,2; bonus2 bSubEle,Ele_Water,5; if(getrefine()>6) { bonus bDef,1; bonus bBaseAtk,15; bonus bFlee,10; } + - Id: 5583 + AegisName: Para_Team_Hat + Name: Eden Team Hat I + Type: Armor + Defense: 5 + Locations: + Head_Top: true + EquipLevelMin: 7 + Refineable: true + View: 465 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 5584 + AegisName: Majestic_Evil_Horn + Name: Majestic Evil Horns + Type: Armor + Weight: 400 + Defense: 2 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 562 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus2 bSubRace,RC_Demon,3; bonus2 bHPDrainRate,3,15; bonus2 bSPDrainRate,1,7; /*Gold PC Room bonus bSPGainValue,2; bonus bMagicSPGainValue,2; bonus2 bSubRace,RC_Demon,2;*/ + - Id: 5585 + AegisName: Rune_Hairband + Name: Rune Cloth Circlet + Type: Armor + Buy: 20 + Weight: 400 + Defense: 1 + Slots: 1 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 564 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus2 bSubEle,Ele_Neutral,3; bonus bHit,5; bonus2 bHPDrainRate,30,10; bonus2 bSPDrainRate,10,5; + - Id: 5586 + AegisName: Mosquito_Coil + Name: Mosquito Coil + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 563 + Script: | + bonus2 bAddDamageClass,1627,100; bonus2 bAddDamageClass,1095,20; bonus2 bAddDamageClass,1160,20; bonus2 bAddDamageClass,1105,20; bonus2 bAddDamageClass,1097,20; bonus2 bAddDamageClass,1051,20; bonus2 bAddDamageClass,1053,20; bonus2 bAddDamageClass,1054,20; bonus2 bAddDamageClass,1048,20; + - Id: 5587 + AegisName: Mosquito_Coil_1Use + Name: Mosquito Coil + Type: Armor + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 563 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 5588 + AegisName: Leo_Crown + Name: Leo Crown + Type: Armor + Buy: 20 + Weight: 300 + Defense: 3 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 565 + Script: | + bonus bStr,2; bonus2 bSubEle,Ele_Fire,5; if(getrefine()>6) { bonus bDef,1; bonus bFlee,10; bonus3 bAutoSpell,"TK_SEVENWIND",4,50; } + - Id: 5589 + AegisName: Leo_Diadem + Name: Leo Diadem + Type: Armor + Buy: 20 + Weight: 300 + Defense: 3 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 566 + Script: | + bonus bDex,2; bonus2 bSubEle,Ele_Fire,5; if(getrefine()>6) { bonus bFlee,10; bonus bAspdRate,3; autobonus "{ bonus bSplashRange,1; }",10,10000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; } + - Id: 5590 + AegisName: K_Poring_Cake_Cap + Name: Poring Cake Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 417 + Script: | + bonus bLuk,3; bonus bMdef,5; bonus bMaxHP,BaseLevel*2; bonus bMaxSP,50; + - Id: 5591 + AegisName: Desert_Prince + Name: Desert Prince + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + View: 567 + Script: | + bonus bUnbreakableHelm; + - Id: 5592 + AegisName: Sigrun's_Wing + Name: Sigrun's Wings + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Locations: + Head_Mid: true + EquipLevelMin: 80 + View: 568 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + 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; } + - Id: 5593 + AegisName: K_Rabbit_Bonnet + Name: Rabbit Bonnet + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Slots: 1 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 549 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bBaseAtk,10; bonus bMatk,10; bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3; bonus bDelayRate,-3; if(getrefine()>6) { bonus2 bSubDefEle,Ele_All,5; } + - Id: 5594 + AegisName: Donut_In_Mouth + Name: Donut In Mouth + Type: Armor + Buy: 20 + Weight: 50 + Defense: 1 + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 569 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus2 bHPRegenRate,1,10000; bonus bMaxHP,100; + - Id: 5595 + AegisName: Eye_Of_Juno + Name: Eye Of Juno + Type: Armor + Buy: 20 + Weight: 400 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 570 + Script: | + 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; } + - Id: 5596 + AegisName: 4Leaf_Clover_In_Mouth + Name: Four Leaf Clover + Type: Armor + Buy: 20 + Defense: 2 + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 571 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bBaseAtk,5; bonus bMatk,5; bonus bMdef,2; /*Gold PC Room: bonus bAllStats,1; bonus2 bExpAddRace,RC_All,2; */ + - Id: 5597 + AegisName: Bubble_Gum_In_Mouth + Name: Bubble Gum In Mouth + Type: Armor + Buy: 20 + Defense: 2 + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 572 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bBaseAtk,5; bonus bMatk,5; bonus bMdef,2; /*Gold PC Room: bonus bAllStats,1; bonus2 bDropAddClass,Class_All,5; */ + - Id: 5598 + AegisName: Virgo_Crown + Name: Virgo Crown + Type: Armor + Buy: 20 + Weight: 300 + Defense: 3 + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 573 + Script: | + 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; }"; } + - Id: 5599 + AegisName: Virgo_Diadem + Name: Virgo Diadem + Type: Armor + Buy: 20 + Weight: 300 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 574 + Script: | + bonus bAspdRate,3; bonus2 bSubEle,Ele_Earth,5; if(getrefine()>6) bonus3 bAutoSpell,"MO_BALKYOUNG",1,50; + - Id: 5600 + AegisName: Br_Twin_Ribbon + Name: Brazil Twin Ribbon + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 575 + Script: | + bonus bAllStats,3; bonus bMdef,1; + - Id: 5601 + AegisName: Br_Beret + Name: Brazil Beret + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 576 + Script: | + bonus bAllStats,3; bonus bMdef,1; + - Id: 5602 + AegisName: Jaguar_Hat_J + Name: Jaguar Hat J + Type: Armor + Buy: 20 + Weight: 300 + Slots: 1 + Locations: + Head_Low: true + Head_Mid: true + EquipLevelMin: 50 + View: 530 + Script: | + bonus2 bAddEle,Ele_Fire,5; + - Id: 5603 + AegisName: RTC_Winner_Only + Name: RTC First Place + Type: Armor + Weight: 250 + Defense: 8 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 577 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,3; bonus bAspdRate,10; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; + - Id: 5604 + AegisName: RTC_Second_Best + Name: RTC Second Place + Type: Armor + Weight: 250 + Defense: 6 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 578 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,2; bonus bAspdRate,7; bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player_Human,3; + - Id: 5605 + AegisName: RTC_Third_Best + Name: RTC Third Place + Type: Armor + Weight: 250 + Defense: 4 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 579 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,1; bonus bAspdRate,5; bonus2 bAddRace,RC_DemiHuman,1; bonus2 bAddRace,RC_Player_Human,1; + - Id: 5606 + AegisName: Campume_Hat + Name: Champune Hat + Type: Armor + Buy: 500 + Weight: 1200 + Defense: 4 + Locations: + Head_Top: true + EquipLevelMin: 3 + Refineable: true + View: 580 + Script: | + bonus bAllStats,1; + - Id: 5607 + AegisName: Lyria_Doll_Hat + Name: Lyria Doll Hat + Type: Armor + Weight: 500 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 60 + View: 581 + Script: | + bonus bMaxHP,500; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; + - Id: 5608 + AegisName: Dorothy_Doll_Hat + Name: Dorothy Doll Hat + Type: Armor + Weight: 500 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 60 + View: 582 + Script: | + bonus bMaxSP,80; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; + - Id: 5609 + AegisName: Chung_Hairband + Name: Chung Hairband + Type: Armor + Weight: 500 + Defense: 5 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 60 + View: 583 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bLuk,3; bonus bMdef,4; bonus3 bAutoSpellWhenHit,"MC_MAMMONITE",5,5; + - Id: 5610 + AegisName: Ice_Wing_Ear + Name: Ice Wing Ear + Type: Armor + Weight: 100 + Locations: + Head_Mid: true + EquipLevelMin: 10 + View: 584 + Script: | + bonus bLuk,1; bonus3 bAutoSpellWhenHit,"MG_COLDBOLT",5,5; + - Id: 5611 + AegisName: Turtle_Hat + Name: Turtle Hat + Type: Armor + Weight: 300 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 585 + Script: | + bonus bAgi,1; bonus3 bAutoSpellWhenHit,"AL_DECAGI",3,5; + - Id: 5612 + AegisName: F_Blue_Drooping_Kitty + Name: F Blue Drooping Kitty + Type: Armor + Buy: 250000 + Weight: 500 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 277 + Script: | + bonus bMdef,15; + - Id: 5613 + AegisName: F_Flying_Angel + Name: F Flying Angel + Type: Armor + Buy: 20 + Weight: 300 + Defense: 1 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 264 + Script: | + bonus bInt,1; bonus bAgi,1; + - Id: 5614 + AegisName: F_Smoking_Pipe_ + Name: F Smoking Pipe + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Low: true + View: 55 + Script: | + bonus bVit,1; + - Id: 5615 + AegisName: F_Pair_Of_Red_Ribbon_ + Name: F Pair Of Red Ribbon + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Mid: true + EquipLevelMin: 45 + View: 169 + - Id: 5616 + AegisName: F_Fish_On_Head_ + Name: F Fish On Head + Type: Armor + Buy: 20 + Weight: 500 + Defense: 2 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 149 + Script: | + bonus bDex,1; bonus bAgi,1; + - Id: 5617 + AegisName: F_Hibiscus + Name: F Hibiscus + Type: Armor + Buy: 20 + Weight: 200 + Locations: + Head_Top: true + EquipLevelMin: 10 + View: 210 + Script: | + bonus bInt,1; bonus bDex,1; bonus bMdef,5; + - Id: 5618 + AegisName: F_Cat_Hat + Name: F Cat Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 182 + Script: | + bonus bLuk,2; bonus bMdef,10; + - Id: 5619 + AegisName: F_Bunny_Band_ + Name: F Bunny Band + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 15 + Script: | + bonus bInt,2; + - Id: 5620 + AegisName: F_Magestic_Goat_TW + Name: F Magestic Goat TW + Type: Armor + Buy: 20 + Weight: 800 + Defense: 5 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + StarGladiator: true + Swordman: true + Taekwon: true + Locations: + Head_Top: true + Refineable: true + View: 41 + Script: | + bonus bStr,2; + - Id: 5621 + AegisName: F_Sheep_Hat + Name: F Sheep Hat + Type: Armor + Buy: 20 + Weight: 150 + Defense: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Head_Top: true + View: 205 + - Id: 5622 + AegisName: F_Mini_Propeller_ + Name: F Mini Propeller + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 270 + Script: | + bonus bDex,1; bonus bAgi,2; + - Id: 5623 + AegisName: F_Alice_Doll + Name: F Alice Doll + Type: Armor + Buy: 20 + Weight: 500 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 30 + View: 208 + Script: | + bonus bStr,1; + - Id: 5624 + AegisName: F_Red_Glasses + Name: F Red Glasses + Type: Armor + Buy: 20 + Defense: 1 + Locations: + Head_Mid: true + View: 316 + Script: | + bonus bInt,1; + - Id: 5625 + AegisName: F_Chick_Hat + Name: F Chick Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + EquipLevelMin: 10 + View: 311 + Script: | + bonus bLuk,2; + - Id: 5626 + AegisName: F_White_Deviruchi_Cap + Name: F White Deviruchi Cap + Type: Armor + Buy: 20 + Weight: 800 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 64 + Refineable: true + View: 272 + Script: | + bonus bStr,1; bonus bInt,1; + - Id: 5627 + AegisName: F_Vane_Hairpin + Name: F Vane Hairpin + Type: Armor + Buy: 20 + Weight: 300 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + View: 313 + Script: | + bonus bAgi,2; + - Id: 5628 + AegisName: F_Pecopeco_Hairband + Name: F Pecopeco Hairband + Type: Armor + Buy: 20 + Defense: 3 + Locations: + Head_Top: true + View: 314 + - Id: 5629 + AegisName: F_Vacation_Hat + Name: F Vacation Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + View: 315 + Script: | + bonus bVit,1; + - Id: 5630 + AegisName: F_Charming_Ribbon + Name: F Charming Ribbon + Type: Armor + Buy: 20 + Weight: 400 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 211 + - Id: 5631 + AegisName: F_Water_Lily_Crown + Name: F Water Lily Crown + Type: Armor + Buy: 20 + Weight: 200 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + View: 312 + Script: | + bonus bDex,1; bonus bAgi,1; bonus bMdef,3; + - Id: 5632 + AegisName: F_Vanilmirth_Hat + Name: F Vanilmirth Hat + Type: Armor + Buy: 20 + Weight: 1000 + Locations: + Head_Top: true + EquipLevelMin: 30 + View: 317 + Script: | + bonus bMdef,5; + - Id: 5633 + AegisName: F_Drooping_Bunny_ + Name: F Drooping Bunny + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 249 + Script: | + bonus bDex,1; + - Id: 5634 + AegisName: F_Kettle_Hat + Name: F Kettle Hat + Type: Armor + Buy: 20 + Weight: 600 + Defense: 4 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 318 + - Id: 5635 + AegisName: F_Dragon_Skull + Name: F Dragon Skull + Type: Armor + Buy: 20 + Weight: 800 + Defense: 5 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 319 + - Id: 5636 + AegisName: F_Ramen_Hat + Name: F Ramen Hat + Type: Armor + Buy: 20 + Defense: 1 + Locations: + Head_Top: true + View: 320 + Script: | + bonus bDex,4; + - Id: 5637 + AegisName: F_Pink_Fur_Hat + Name: F Pink Fur Hat + Type: Armor + Buy: 20 + Weight: 350 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 281 + Script: | + bonus bLuk,1; + - Id: 5638 + AegisName: F_Puppy_Hat + Name: F Puppy Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 2 + Locations: + Head_Top: true + EquipLevelMin: 30 + View: 234 + Script: | + bonus bAgi,1; + - Id: 5639 + AegisName: F_Magic_Eyes + Name: F Magic Eyes + Type: Armor + Buy: 20 + Weight: 300 + Defense: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 209 + Script: | + bonus bMdef,5; + - Id: 5640 + AegisName: F_Jumping_Poring + Name: F Jumping Poring + Type: Armor + Weight: 300 + Defense: 2 + Locations: + Head_Top: true + View: 349 + Script: | + bonus bLuk,1; + - Id: 5641 + AegisName: F_Robo_Eye + Name: F Robo Eye + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Locations: + Head_Mid: true + EquipLevelMin: 10 + View: 345 + Script: | + bonus bDex,1; + - Id: 5642 + AegisName: F_Yellow_Wizardry_Hat + Name: F Yellow Wizardry Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Head_Top: true + Refineable: true + View: 286 + Script: | + bonus bInt,2; + - Id: 5643 + AegisName: F_Crescent_Helm + Name: F Crescent Helm + Type: Armor + Buy: 20 + Weight: 3000 + Defense: 8 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 213 + Script: | + bonus bVit,1; + - Id: 5644 + AegisName: F_Tiger_Mask + Name: F Tiger Mask + Type: Armor + Buy: 20 + Weight: 400 + Defense: 2 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 50 + View: 181 + Script: | + bonus bStr,3; + - Id: 5645 + AegisName: F_Fantastic_Wig + Name: F Fantastic Wig + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Mid: true + Head_Top: true + Refineable: true + View: 308 + - Id: 5646 + AegisName: F_Whisper_Mask + Name: F Whisper Mask + Type: Armor + Buy: 20 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + View: 321 + Script: | + bonus bAgi,3; + - Id: 5647 + AegisName: F_Bunny_Band_C + Name: F Bunny Band C + Type: Armor + Buy: 1 + Defense: 9 + Locations: + Head_Top: true + EquipLevelMin: 1 + View: 15 + Script: | + bonus bMdef,5; + - Id: 5648 + AegisName: F_Centimental_Flower_C + Name: F Centimental Flower C + Type: Armor + Buy: 1 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 56 + - Id: 5649 + AegisName: F_Apple_Of_Archer_C + Name: F Apple Of Archer C + Type: Armor + Buy: 1 + Defense: 7 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 1 + View: 72 + Script: | + bonus bDex,4; + - Id: 5650 + AegisName: F_Elven_Ears_C + Name: F Elven Ears C + Type: Armor + Buy: 1 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + EquipLevelMin: 1 + View: 73 + Script: | + bonus bInt,1; + - Id: 5651 + AegisName: F_Brooch_C + Name: F Brooch C + Type: Armor + Buy: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bAgi,4; + - Id: 5652 + AegisName: F_Magestic_Goat_C + Name: F Magestic Goat C + Type: Armor + Buy: 2 + Defense: 5 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + View: 41 + Script: | + bonus bStr,1; + - Id: 5653 + AegisName: Darkness_Helm_J + Name: Darkness Helm + Type: Armor + Buy: 20 + Weight: 500 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 586 + - Id: 5654 + AegisName: Holy_Marching_Hat_J + Name: Holy Marching Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 5 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 587 + Trade: + Override: 100 + NoDrop: true + Script: | + 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; } + - Id: 5655 + AegisName: Dark_Snake_Lord_Hat_J + Name: Evil Snake Lord Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 2 + Locations: + Head_Top: true + EquipLevelMin: 60 + Refineable: true + View: 372 + Script: | + bonus bInt,2; bonus bAgi,2; bonus bDex,-2; autobonus "{ bonus bVariableCastrate,-50; bonus bFlee,30; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }"; + - Id: 5656 + AegisName: Scooter_Hat_J + Name: Scooter Helmet + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 7 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 588 + Script: | + bonus bUnbreakableHelm; + - Id: 5657 + AegisName: Antique_Pipe_J + Name: Captain's Pipe + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Low: true + EquipLevelMin: 30 + View: 383 + - Id: 5658 + AegisName: Imp_Hat + Name: Imp Hat + Type: Armor + Buy: 20 + Weight: 400 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 589 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus3 bAutoSpell,"SA_FLAMELAUNCHER",1,5; + - Id: 5659 + AegisName: Sleepr_Hat + Name: Sleeper Hat + Type: Armor + Buy: 20 + Weight: 400 + Defense: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 590 + Script: | + bonus3 bAutoSpell,"SA_SEISMICWEAPON",1,5; + - Id: 5660 + AegisName: Gryphon_Hat + Name: Gryphon Hat + Type: Armor + Buy: 20 + Weight: 400 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 591 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bAgi,2; if (getrefine() > 6) { bonus bAgi,2; } if (getrefine() > 8) { bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; } + - Id: 5661 + AegisName: Red_Pirate_Bandana + Name: Red Pirate Bandana + Type: Armor + Defense: 3 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 592 + Script: | + bonus bStr,1; bonus bDex,1; bonus bAspdRate,2; bonus bVariableCastrate,-2; bonus3 bAutoSpell,"MO_EXTREMITYFIST",1,3; + - Id: 5662 + AegisName: Libra_Crown + Name: Libra Crown + Type: Armor + Buy: 10 + Weight: 300 + Defense: 3 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 593 + Script: | + bonus bDex,3; bonus2 bSubEle,Ele_Wind,7; if (getrefine()>=7) { bonus bMatkRate,3; } if (getrefine()>=9) { bonus bMatkRate,5; bonus3 bAutoSpellWhenHit,"WZ_FROSTNOVA",5,20;} + - Id: 5663 + AegisName: Libra_Diadem + Name: Libra Diadem + Type: Armor + Buy: 10 + Weight: 300 + Defense: 3 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 594 + Script: | + bonus bBaseAtk,7; if (getrefine()>=7) { bonus3 bAutoSpell,"TK_SEVENWIND",2,5; } if (getrefine()>=9) { bonus bFlee,5; bonus2 bAddClass,Class_All,3; } + - Id: 5664 + AegisName: Filir_Wing + Name: Filir's Pinions + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Mid: true + EquipLevelMin: 70 + View: 595 + Script: | + bonus bAspdRate,2; + - Id: 5665 + AegisName: Shaman_Hat + Name: Shaman Hat + Type: Armor + Buy: 20 + Weight: 400 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 596 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bMdef,5; bonus2 bSubEle,Ele_Neutral,3; bonus2 bSubEle,Ele_Water,3; bonus2 bSubEle,Ele_Earth,3; bonus2 bSubEle,Ele_Fire,3; bonus2 bSubEle,Ele_Wind,3; bonus2 bSubEle,Ele_Poison,3; bonus2 bSubEle,Ele_Holy,3; bonus2 bSubEle,Ele_Dark,3; bonus2 bSubEle,Ele_Ghost,3; bonus2 bSubEle,Ele_Undead,3; + - Id: 5666 + AegisName: Golden_Crown + Name: Golden Crown + Type: Armor + Buy: 20 + Weight: 500 + Defense: 8 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 597 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bInt,1; bonus bDex,1; bonus bLuk,1; + - Id: 5667 + AegisName: Skull_Hood + Name: Skull Hood + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Slots: 1 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 598 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus2 bSubRace,RC_Demon,10; bonus2 bSubRace,RC_Undead,10; if(getrefine()>=7) autobonus "{ bonus bCritical,30; bonus bHit,10; }",10,10000,0,"{ specialeffect2 EF_ENHANCE; }"; + - Id: 5668 + AegisName: Weird_Pumpkin_Hat + Name: Weird Pumpkin Hat + Type: Armor + Buy: 20 + Defense: 5 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 206 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,5; bonus2 bAddMonsterDropItem,6097,10; + - Id: 5669 + AegisName: Poring_Party_Hat_J + Name: Poring Party Hat J + Type: Armor + Buy: 20 + Weight: 300 + Defense: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 340 + - Id: 5670 + AegisName: Aniv_Star_Hat + Name: Aniv Star Hat + Type: Armor + Buy: 20 + Weight: 300 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 599 + - Id: 5671 + AegisName: Drooping_Morocc_Minion + Name: Drooping Morocc Minion + Type: Armor + Buy: 20 + Weight: 300 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 70 + View: 600 + Script: | + bonus bSPGainValue,2; bonus3 bAutoSpellWhenHit,"NPC_CRITICALWOUND",2,2; + - Id: 5672 + AegisName: Southern_Cross + Name: Southern Cross + Type: Armor + Buy: 20 + Weight: 600 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 601 + Script: | + bonus bInt,1; + - Id: 5673 + AegisName: Home_Cherry_Blossom + Name: Home Cherry Blossom + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 602 + Script: | + bonus bNoCastCancel; bonus bVariableCastrate,35; + - Id: 5674 + AegisName: Pig_Moneybox + Name: Pig Moneybox + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 3 + Locations: + Head_Top: true + EquipLevelMin: 10 + View: 603 + - Id: 5675 + AegisName: Poring_Letter + Name: Poring Letter + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Low: true + EquipLevelMin: 10 + View: 604 + Script: | + bonus2 bAddMonsterDropItem,619,10; bonus bUnbreakableHelm; + - Id: 5676 + AegisName: Scorpio_Crown + Name: Scorpio Crown + Type: Armor + Buy: 20 + Weight: 300 + Defense: 3 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 605 + Script: | + bonus bAspdRate,3; bonus2 bSubEle,Ele_Water,5; .@r = getrefine(); if (.@r>6) { bonus3 bAutoSpell,"TK_SEVENWIND",3,20; } if (.@r>7) { bonus bAspdRate,2; } if (.@r>8) { bonus3 bAutoSpell,"WZ_FROSTNOVA",5,10; } if (.@r>9) { bonus bAspdRate,2; bonus bBaseAtk,5; } + - Id: 5677 + AegisName: Scorpio_Diadem + Name: Scorpio Diadem + Type: Armor + Buy: 20 + Weight: 300 + Defense: 3 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 606 + Script: | + bonus bDex,2; if (getrefine()>6) { bonus bDex,1; bonus bAtk,5; } + - Id: 5678 + AegisName: Notation_Hairband + Name: Notation Hairband + Type: Armor + Buy: 200 + Weight: 100 + Defense: 5 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 607 + Script: | + bonus bUnbreakableHelm; + - Id: 5679 + AegisName: Engineer_Cap + Name: Engineer Cap + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 608 + Script: | + bonus2 bAddRace,RC_Formless,10; + - Id: 5680 + AegisName: Hawkeyes + Name: Hawkeyes + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Mid: true + EquipLevelMin: 10 + View: 609 + Script: | + bonus bHit,10; bonus bUnbreakableHelm; + - Id: 5681 + AegisName: F_Ribbon_Green + Name: Green Ribbon + Type: Armor + Buy: 800 + Weight: 100 + Defense: 1 + Gender: Female + Locations: + Head_Top: true + Refineable: true + View: 244 + Script: | + bonus bMdef,3; + - Id: 5682 + AegisName: Triangle_Rune_Cap + Name: Triangle Rune Cap + Type: Armor + Buy: 20 + Weight: 300 + Defense: 5 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 610 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bInt,1; 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; } + - Id: 5683 + AegisName: Majestic_Goat_Repl + Name: Baphomet Horns + Type: Armor + Buy: 20 + Weight: 100 + Defense: 5 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 41 + - Id: 5684 + AegisName: Jewel_Crown_Repl + Name: Ornate Crown + Type: Armor + Buy: 20 + Weight: 100 + Defense: 5 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 88 + - Id: 5685 + AegisName: Prontera_Army_Cap_Repl + Name: Army Cap + Type: Armor + Buy: 20 + Weight: 100 + Defense: 5 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 48 + - Id: 5686 + AegisName: Feather_Bonnet_Repl + Name: Nice Hat Feather + Type: Armor + Buy: 20 + Weight: 100 + Defense: 5 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 104 + - Id: 5687 + AegisName: Viking_Helm_Repl + Name: Orc Helm + Type: Armor + Buy: 20 + Weight: 100 + Defense: 5 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 86 + - Id: 5688 + AegisName: 2009Love_Daddy + Name: 2009 Love Dad + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 611 + Script: | + bonus bVit,2; + - Id: 5689 + AegisName: Queen_Ant_Diadem + Name: Queen Ant Diadem + Type: Armor + Buy: 20 + Weight: 300 + Defense: 1 + Locations: + Head_Top: true + EquipLevelMin: 75 + Refineable: true + View: 612 + Script: | + bonus3 bAutoSpellWhenHit,"MG_SIGHT",1,5; bonus2 bSubRace,RC_Insect,5; + - Id: 5690 + AegisName: Red_Wing_Hat + Name: Red Wing Hat + Type: Armor + Buy: 20 + Weight: 600 + Defense: 5 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 613 + Script: | + bonus bHPrecovRate,20; bonus bSPrecovRate,20; + - Id: 5691 + AegisName: Catain_Bandanna + Name: Sailor's Bandana + Type: Armor + Buy: 20 + Weight: 10 + Defense: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 542 + Script: | + bonus bDex,1; bonus2 bSubEle,Ele_Poison,20; bonus2 bResEff,Eff_Poison,2000; bonus bUnbreakableHelm; + - Id: 5692 + AegisName: Sea_Cat_Hat + Name: Sea Cat Hat + Type: Armor + Buy: 20 + Weight: 10 + Defense: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 539 + Script: | + bonus bDex,1; bonus2 bResEff,Eff_Curse,2000; bonus bUnbreakableHelm; + - Id: 5693 + AegisName: No_Fear_Underware + Name: No Fear Underwear + Type: Armor + Defense: 10 + Locations: + Head_Top: true + EquipLevelMin: 20 + View: 30 + Script: | + bonus bStr,1; bonus bInt,1; bonus bDex,1; bonus bMaxHP,700; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; + - Id: 5694 + AegisName: No_Fear_P_Headgear + Name: No Fear P Headgear + Type: Armor + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 20 + View: 614 + Script: | + bonus bVit,1; bonus bMaxHP,100; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; + - Id: 5695 + AegisName: E_Blue_Drooping_Kitty + Name: E Blue Drooping Kitty + Type: Armor + Buy: 250000 + Weight: 500 + Defense: 1 + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Head_Top: true + Refineable: true + View: 277 + Script: | + bonus bMdef,15; + - Id: 5696 + AegisName: E_Flying_Angel + Name: E Flying Angel + Type: Armor + Buy: 20 + Weight: 300 + Defense: 1 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 264 + Script: | + bonus bInt,1; bonus bAgi,1; + - Id: 5697 + AegisName: E_Smoking_Pipe_ + Name: E Smoking Pipe + Type: Armor + Buy: 20 + Weight: 100 + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Head_Low: true + View: 55 + Script: | + bonus bVit,1; + - Id: 5698 + AegisName: E_Pair_OE_Red_Ribbon_ + Name: E Pair OE Red Ribbon + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Head_Mid: true + EquipLevelMin: 45 + View: 169 + - Id: 5699 + AegisName: E_Fish_On_Head_ + Name: E Fish On Head + Type: Armor + Buy: 20 + Weight: 500 + Defense: 2 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 149 + Script: | + bonus bDex,1; bonus bAgi,1; + - Id: 5700 + AegisName: E_Hibiscus + Name: E Hibiscus + Type: Armor + Buy: 20 + Weight: 200 + Locations: + Head_Top: true + EquipLevelMin: 10 + View: 210 + Script: | + bonus bInt,1; bonus bDex,1; bonus bMdef,5; + - Id: 5701 + AegisName: E_Cat_Hat + Name: E Cat Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 1 + Locations: + Head_Top: true + Refineable: true + View: 182 + Script: | + bonus bLuk,2; bonus bMdef,10; + - Id: 5702 + AegisName: E_Bunny_Band_ + Name: E Bunny Band + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 15 + Script: | + bonus bInt,2; + - Id: 5703 + AegisName: E_Magestic_Goat_TW + Name: E Magestic Goat TW + Type: Armor + Buy: 20 + Weight: 800 + Defense: 5 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + StarGladiator: true + Swordman: true + Taekwon: true + Locations: + Head_Top: true + Refineable: true + View: 41 + Script: | + bonus bStr,2; + - Id: 5704 + AegisName: E_Sheep_Hat + Name: E Sheep Hat + Type: Armor + Buy: 20 + Weight: 150 + Defense: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Head_Top: true + View: 205 + - Id: 5705 + AegisName: E_Mini_Propeller_ + Name: E Mini Propeller + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Head_Top: true + Refineable: true + View: 270 + Script: | + bonus bDex,1; bonus bAgi,2; + - Id: 5706 + AegisName: E_Alice_Doll + Name: E Alice Doll + Type: Armor + Buy: 20 + Weight: 500 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 30 + View: 208 + Script: | + bonus bStr,1; + - Id: 5707 + AegisName: E_Red_Glasses + Name: E Red Glasses + Type: Armor + Buy: 20 + Defense: 1 + Locations: + Head_Mid: true + View: 316 + Script: | + bonus bInt,1; + - Id: 5708 + AegisName: E_Chick_Hat + Name: E Chick Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + EquipLevelMin: 10 + View: 311 + Script: | + bonus bLuk,2; + - Id: 5709 + AegisName: E_White_Deviruchi_Cap + Name: E White Deviruchi Cap + Type: Armor + Buy: 20 + Weight: 800 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 64 + Refineable: true + View: 272 + Script: | + bonus bStr,1; bonus bInt,1; + - Id: 5710 + AegisName: E_Vane_Hairpin + Name: E Vane Hairpin + Type: Armor + Buy: 20 + Weight: 300 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + View: 313 + Script: | + bonus bAgi,2; + - Id: 5711 + AegisName: E_Pecopeco_Hairband + Name: E Pecopeco Hairband + Type: Armor + Buy: 20 + Defense: 3 + Locations: + Head_Top: true + View: 314 + - Id: 5712 + AegisName: E_Vacation_Hat + Name: E Vacation Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + View: 315 + Script: | + bonus bVit,1; + - Id: 5713 + AegisName: E_Charming_Ribbon + Name: E Charming Ribbon + Type: Armor + Buy: 20 + Weight: 400 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 211 + - Id: 5714 + AegisName: E_Water_Lily_Crown + Name: E Water Lily Crown + Type: Armor + Buy: 20 + Weight: 200 + Slots: 1 + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Head_Top: true + EquipLevelMin: 30 + View: 312 + Script: | + bonus bDex,1; bonus bAgi,1; bonus bMdef,3; + - Id: 5715 + AegisName: E_Vanilmirth_Hat + Name: E Vanilmirth Hat + Type: Armor + Buy: 20 + Weight: 1000 + Locations: + Head_Top: true + EquipLevelMin: 30 + View: 317 + Script: | + bonus bMdef,5; + - Id: 5716 + AegisName: E_Drooping_Bunny_ + Name: E Drooping Bunny + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Head_Top: true + Refineable: true + View: 249 + Script: | + bonus bDex,1; + - Id: 5717 + AegisName: E_Kettle_Hat + Name: E Kettle Hat + Type: Armor + Buy: 20 + Weight: 600 + Defense: 4 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 318 + - Id: 5718 + AegisName: E_Dragon_Skull + Name: E Dragon Skull + Type: Armor + Buy: 20 + Weight: 800 + Defense: 5 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 319 + - Id: 5719 + AegisName: E_Ramen_Hat + Name: E Ramen Hat + Type: Armor + Buy: 20 + Defense: 1 + Locations: + Head_Top: true + View: 320 + Script: | + bonus bDex,4; + - Id: 5720 + AegisName: E_Pink_Fur_Hat + Name: E Pink Fur Hat + Type: Armor + Buy: 20 + Weight: 350 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 281 + Script: | + bonus bLuk,1; + - Id: 5721 + AegisName: E_Puppy_Hat + Name: E Puppy Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 2 + Locations: + Head_Top: true + EquipLevelMin: 30 + View: 234 + Script: | + bonus bAgi,1; + - Id: 5722 + AegisName: E_Magic_Eyes + Name: E Magic Eyes + Type: Armor + Buy: 20 + Weight: 300 + Defense: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 209 + Script: | + bonus bMdef,5; + - Id: 5723 + AegisName: E_Jumping_Poring + Name: E Jumping Poring + Type: Armor + Weight: 300 + Defense: 2 + Locations: + Head_Top: true + View: 349 + Script: | + bonus bLuk,1; + - Id: 5724 + AegisName: E_Robo_Eye + Name: E Robo Eye + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Locations: + Head_Mid: true + EquipLevelMin: 10 + View: 345 + Script: | + bonus bDex,1; + - Id: 5725 + AegisName: E_Yellow_Wizardry_Hat + Name: E Yellow Wizardry Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Head_Top: true + Refineable: true + View: 286 + Script: | + bonus bInt,2; + - Id: 5726 + AegisName: E_Crescent_Helm + Name: E Crescent Helm + Type: Armor + Buy: 20 + Weight: 3000 + Defense: 8 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 213 + Script: | + bonus bVit,1; + - Id: 5727 + AegisName: E_Tiger_Mask + Name: E Tiger Mask + Type: Armor + Buy: 20 + Weight: 400 + Defense: 2 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 50 + View: 181 + Script: | + bonus bStr,3; + - Id: 5728 + AegisName: E_Fantastic_Wig + Name: E Fantastic Wig + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Mid: true + Head_Top: true + Refineable: true + View: 308 + - Id: 5729 + AegisName: E_Bunny_Band_C + Name: E Bunny Band C + Type: Armor + Buy: 1 + Defense: 9 + Locations: + Head_Top: true + EquipLevelMin: 1 + View: 15 + Script: | + bonus bMdef,5; + - Id: 5730 + AegisName: E_Centimental_Flower_C + Name: E Centimental Flower C + Type: Armor + Buy: 1 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 56 + - Id: 5731 + AegisName: E_Apple_OE_Archer_C + Name: E Apple OE Archer C + Type: Armor + Buy: 1 + Defense: 7 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 1 + View: 72 + Script: | + bonus bDex,4; + - Id: 5732 + AegisName: E_Elven_Ears_C + Name: E Elven Ears C + Type: Armor + Buy: 1 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + EquipLevelMin: 1 + View: 73 + Script: | + bonus bInt,1; + - Id: 5733 + AegisName: E_Brooch_C + Name: E Brooch C + Type: Armor + Buy: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bAgi,4; + - Id: 5734 + AegisName: E_Magestic_Goat_C + Name: E Magestic Goat C + Type: Armor + Buy: 2 + Defense: 5 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + View: 41 + Script: | + bonus bStr,1; + - Id: 5735 + AegisName: E_Ribbon_Green + Name: Green Ribbon + Type: Armor + Buy: 800 + Weight: 100 + Defense: 1 + Gender: Female + Locations: + Head_Top: true + Refineable: true + View: 244 + Script: | + bonus bMdef,3; + - Id: 5736 + AegisName: EF_Whisper_Mask + Name: Whisper Mask + Type: Armor + Buy: 20 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + View: 321 + Script: | + bonus bAgi,3; bonus2 bSubEle,Ele_Ghost,-10; + - Id: 5737 + AegisName: Cactus_Hat + Name: Cactus Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + View: 615 + Script: | + bonus3 bAddMonsterDropItem,952,RC_Plant,500; + - Id: 5738 + AegisName: Snowman_Hat + Name: Snowman Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 4 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 616 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bStr,1; bonus bInt,1; bonus bMdef,3; bonus2 bSubEle,Ele_Water,7; bonus2 bAddMonsterDropItem,12354,100; bonus2 bAddMonsterDropItem,530,300; bonus5 bAutoSpellwhenhit,"BA_FROSTJOKER",(getrefine()>7?5:1),20,BF_WEAPON|BF_MAGIC,0; + - Id: 5739 + AegisName: Sagittarius_Crown + Name: Sagittarius Crown + Type: Armor + Buy: 20 + Weight: 300 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 617 + Script: | + bonus bDex,2; bonus2 bSubEle,Ele_Fire,7; .@r = getrefine(); if (.@r>6) { bonus bAspdRate,2; } if (.@r>7) { bonus bAgi,2; } if (.@r>8) { bonus bLongAtkRate,5; } if (.@r>9) { autobonus "{ bonus bAgi,10; bonus bDex,10; }",3,10000,0,"{ specialeffect2 EF_ENHANCE; }"; } + - Id: 5740 + AegisName: Sagittarius_Diadem + Name: Sagittarius Diadem + Type: Armor + Buy: 20 + Weight: 300 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 618 + Script: | + bonus bDex,2; bonus bMdef,3; bonus2 bSubEle,Ele_Fire,7; .@r = getrefine(); if (.@r>6) { bonus bVariableCastrate,-3; } if (.@r>7) { bonus5 bAutoSpell,"WZ_SIGHTRASHER",10,5,BF_MAGIC,0; } if (.@r>8) { bonus bVariableCastrate,-2; } if (.@r>9) { bonus bMatkRate,4; } + - Id: 5741 + AegisName: Im_Egg_Shell_Hat + Name: Eternal Egg Shell + Type: Armor + Buy: 20 + Defense: 1 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 101 + Script: | + bonus2 bAddItemGroupHealRate,IG_Potion,10; bonus bHealPower2,10; + - Id: 5742 + AegisName: Rudolf_Santa_Hat + Name: Rudolph Santa Hat + Type: Armor + Buy: 20 + Weight: 400 + Defense: 5 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 619 + Script: | + bonus2 bAddMonsterDropItem,538,100; bonus2 bAddMonsterDropItem,539,100; bonus2 bAddItemHealRate,538,100; bonus2 bAddItemHealRate,539,100; + - Id: 5743 + AegisName: Orange_Stem_Hat + Name: Orange Stem Hat + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Top: true + EquipLevelMin: 1 + View: 620 + Script: | + bonus bLuk,3; + - Id: 5744 + AegisName: Capricorn_Crown + Name: Capricorn Crown + Type: Armor + Buy: 20 + Weight: 300 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 621 + Script: | + bonus bVit,2; bonus bDex,2; if (getrefine()>6) { bonus3 bAutoSpell,"TK_SEVENWIND",1,500; } + - Id: 5745 + AegisName: Capricorn_Diadem + Name: Capricorn Diadem + Type: Armor + Buy: 20 + Weight: 300 + Defense: 3 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 622 + Script: | + bonus bDex,2; bonus bMdef,5; bonus2 bSubEle,Ele_Earth,5; .@r = getrefine(); if (.@r>6) { bonus bInt,2; } if (.@r>7) { bonus bVariableCastrate,-3; } if (.@r>8) { bonus bHealPower2,4; } if (.@r>9) { bonus3 bAutoSpell,"BS_HAMMERFALL",5,5; } + - Id: 5746 + AegisName: Rune_Circlet + Name: Rune Circlet + Type: Armor + Buy: 20 + Weight: 100 + Defense: 12 + Slots: 1 + Jobs: + Knight: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 623 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,1; bonus bInt,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,10; bonus bMatk,5; } + - Id: 5747 + AegisName: Mitra + Name: Mitra + Type: Armor + Buy: 20 + Weight: 100 + Defense: 12 + Slots: 1 + Jobs: + Priest: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 624 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bVit,1; bonus bInt,1; bonus bMdef,5; bonus bHealPower,5; if(readparam(bInt)>=120){ bonus bMatk,10; } + - Id: 5748 + AegisName: Sniper_Goggle + Name: Sniper Goggles + Type: Armor + Buy: 20 + Weight: 100 + Defense: 12 + Slots: 1 + Jobs: + Hunter: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 625 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAgi,1; bonus bDex,1; bonus bMdef,5; if(readparam(bAgi)>=120){ bonus bLongAtkRate,4; bonus bAspd,1; } + - Id: 5749 + AegisName: Driver_Band + Name: Driver Band + Type: Armor + Buy: 20 + Weight: 100 + Defense: 12 + Slots: 1 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Gender: Male + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 626 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,1; bonus bDex,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,10; bonus bCritical,3; } + - Id: 5750 + AegisName: Shadow_Handicraft + Name: Shadow Crown + Type: Armor + Buy: 20 + Weight: 100 + Defense: 12 + Slots: 1 + Jobs: + Rogue: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 627 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAgi,1; bonus bInt,1; bonus bMdef,5; if(readparam(bAgi)>=120){ bonus bBaseAtk,10; bonus bFlee,3; } + - Id: 5751 + AegisName: Minstrel_Song_Hat + Name: Minstrel Song Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 12 + Slots: 1 + Jobs: + BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Gender: Male + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 628 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,1; bonus bLuk,1; bonus bMdef,5; bonus bLongAtkRate,5; bonus2 bSkillUseSP,"MI_RUSH_WINDMILL",10; bonus2 bSkillUseSP,"MI_ECHOSONG",10; + - Id: 5752 + AegisName: Midas_Whisper + Name: Midas Whispers + Type: Armor + Buy: 20 + Weight: 100 + Defense: 12 + Slots: 1 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 629 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,1; bonus bDex,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,5; bonus bAspd,1; } + - Id: 5753 + AegisName: Magic_Stone_Hat + Name: Magic Stone Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 12 + Slots: 1 + Jobs: + Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 630 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,1; bonus bDex,1; bonus bMdef,5; if(readparam(bDex)>=120){ bonus bMatk,10; bonus bVariableCastrate,-2; } + - Id: 5754 + AegisName: Blazing_Soul + Name: Burning Spirit + Type: Armor + Buy: 20 + Weight: 100 + Defense: 12 + Slots: 1 + Jobs: + Monk: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 631 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,1; bonus bVit,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,10; bonus bHit,3; } + - Id: 5755 + AegisName: Silent_Executer + Name: Silent Enforcer + Type: Armor + Buy: 20 + Weight: 100 + Defense: 12 + Jobs: + Assassin: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Low: true + Head_Mid: true + EquipLevelMin: 100 + View: 632 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAgi,1; bonus bMdef,5; if(readparam(bAgi)>=120){ bonus bBaseAtk,10; bonus bFlee2,5; } + - Id: 5756 + AegisName: Wind_Whisper + Name: Wispers of Wind + Type: Armor + Buy: 20 + Weight: 100 + Defense: 12 + Slots: 1 + Jobs: + Sage: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 633 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,1; bonus bDex,1; bonus bMdef,5; if(readparam(bInt)>=120){ bonus bMatk,10; bonus bFlee,3; } + - Id: 5757 + AegisName: Schmidt_Helm + Name: Reissue Schmitz Helm + Type: Armor + Buy: 20 + Weight: 100 + Defense: 12 + Slots: 1 + Jobs: + Crusader: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 634 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bVit,2; bonus bInt,1; bonus bMdef,5; if(readparam(bInt)>=120){ bonus bMatk,10; bonus bDef,5; } + - Id: 5758 + AegisName: Dying_Swan + Name: Resting Swan + Type: Armor + Buy: 20 + Weight: 100 + Defense: 17 + Slots: 1 + Jobs: + BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Gender: Female + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 635 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,1; bonus bLuk,1; bonus bMdef,5; bonus bLongAtkRate,5; bonus2 bSkillUseSP,"WA_SWING_DANCE",10; bonus2 bSkillUseSP,"WA_SYMPHONY_OF_LOVER",10; + - Id: 5759 + AegisName: Noah_Hat + Name: Noah Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 636 + Script: | + bonus bMdef,3; + - Id: 5760 + AegisName: Driver_Band_ + Name: Driver Band + Type: Armor + Buy: 20 + Weight: 100 + Defense: 12 + Slots: 1 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Gender: Female + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 637 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,1; bonus bDex,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,10; bonus bCritical,3; } + - Id: 5761 + AegisName: Sloth_Hat + Name: Sloth Hat + Type: Armor + Buy: 20 + Weight: 800 + Defense: 3 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 638 + Script: | + bonus bAgi,2; bonus3 bAutoSpell,"AS_SONICBLOW",5,50; + - Id: 5762 + AegisName: Duneyrr_Helm + Name: Duneyrr Helm + Type: Armor + Buy: 20 + Weight: 100 + Defense: 5 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 639 + Script: | + bonus bAllStats,1; bonus bMdef,5; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; bonus2 bSubRace,RC_Brute,2; bonus2 bSubRace,RC_Player_Doram,2; + - Id: 5763 + AegisName: Red_Bunny_Band + Name: Red Bunny Band + Type: Armor + Weight: 200 + Defense: 4 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 640 + Script: | + bonus bAgi,2; bonus bMdef,3; + - Id: 5764 + AegisName: Love_Rabbit_Hood + Name: Love Rabbit Hood + Type: Armor + Buy: 20 + Weight: 300 + Defense: 1 + Slots: 1 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + EquipLevelMin: 10 + View: 549 + Script: | + bonus3 bAutoSpell,"PR_GLORIA",3,((readparam(bAgi)>=80)?30:10); + - Id: 5765 + AegisName: Black_Tail_Ribbon + Name: Black Tail Ribbon + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 642 + Script: | + bonus bMdef,5; bonus bLongAtkDef,10; bonus2 bSubEle,Ele_Neutral,5; + - Id: 5766 + AegisName: Amistr_Cap + Name: Amistr Cap + Type: Armor + Buy: 20 + Weight: 500 + Defense: 4 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 643 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bVit,1+(getrefine()/2); bonus5 bAutoSpell,"KN_PIERCE",5,10,BF_WEAPON,1; + - Id: 5767 + AegisName: Samurai_Mask + Name: Samurai Mask + Type: Armor + Buy: 20 + Weight: 300 + Defense: 1 + Locations: + Head_Low: true + EquipLevelMin: 50 + View: 644 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus2 bAddClass,Class_All,1; + - Id: 5768 + AegisName: Sakura_Coronet + Name: Sakura Coronet + Type: Armor + Buy: 20 + Weight: 800 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 645 + Script: | + bonus bMdef,3; bonus bMaxSP,25; + - Id: 5769 + AegisName: Gold_Angel_Sculpture + Name: Gold Angel Sculpture + Type: Armor + Buy: 100 + Defense: 2 + Locations: + Head_Top: true + EquipLevelMin: 70 + View: 646 + Script: | + skill "RG_GRAFFITI",1; + - Id: 5770 + AegisName: Splash_Hat + Name: Splash Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 649 + Script: | + autobonus "{}",3,180000,BF_WEAPON,"{ sc_start SC_WINDWEAPON,180000,1; specialeffect2 EF_ENHANCE; }"; + - Id: 5771 + AegisName: Family_Hat + Name: Family Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 650 + Script: | + bonus bDex,1; bonus bMdef,1; bonus bMaxHPrate,2; bonus bMaxSPrate,2; skill "PR_MAGNIFICAT",1; + - Id: 5772 + AegisName: Red_Navy_Hat + Name: Red Navy Hat + Type: Armor + Buy: 3000 + Weight: 500 + Defense: 1 + Locations: + Head_Top: true + EquipLevelMin: 95 + Refineable: true + View: 651 + Script: | + bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; + - Id: 5773 + AegisName: Navy_Beret + Name: Navy Beret + Type: Armor + Buy: 3000 + Weight: 500 + Defense: 1 + Locations: + Head_Top: true + EquipLevelMin: 95 + Refineable: true + View: 652 + Script: | + bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; + - Id: 5774 + AegisName: Red_Pirate_Hat + Name: Red Pirate Hat + Type: Armor + Buy: 3000 + Weight: 500 + Defense: 1 + Locations: + Head_Top: true + EquipLevelMin: 95 + Refineable: true + View: 496 + Script: | + bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; + - Id: 5775 + AegisName: Choco_Donut_In_Mouth + Name: Choco Donut In Mouth + Type: Armor + Buy: 20 + Weight: 50 + Defense: 1 + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 653 + Script: | + bonus bMaxHP,50; + - Id: 5776 + AegisName: Blazing_Sun + Name: Blazing Sun + Type: Armor + Weight: 500 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 654 + Script: | + bonus2 bVariableCastrate,"MG_FIREBOLT",-5; bonus2 bSkillAtk,"MG_FIREBOLT",5; bonus2 bVariableCastrate,"MG_FIREBALL",-5; bonus2 bSkillAtk,"MG_FIREBALL",5; bonus2 bSkillAtk,"MG_FIREWALL",3; bonus2 bSkillAtk,"WZ_METEOR",3; bonus bUseSPrate,5; + - Id: 5777 + AegisName: Remover_Hat + Name: Remover Hat + Type: Armor + Buy: 20 + Weight: 800 + Defense: 2 + Locations: + Head_Top: true + EquipLevelMin: 30 + View: 655 + Script: | + bonus bMdef,1; bonus3 bAddMonsterDropItem,713,RC_Formless,200; bonus3 bAddMonsterDropItem,971,RC_Formless,30; bonus3 bAddMonsterDropItem,972,RC_Formless,10; + - Id: 5778 + AegisName: Blue_Arara_Hat + Name: Blue Arara Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 656 + Script: | + bonus bStr,2; autobonus "{ bonus bAspdRate,5; }",10,10000,0,"{ specialeffect2 EF_ENHANCE; }"; + - Id: 5779 + AegisName: Drooping_Boto + Name: Drooping Boto + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 657 + Script: | + bonus bInt,2; autobonus "{ bonus bMatkRate,3; }",10,10000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }"; + - Id: 5780 + AegisName: Tendrilion_Hat + Name: Tendrilion Hat + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 658 + Script: | + skill "WZ_EARTHSPIKE",3; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; + - Id: 5781 + AegisName: Persika + Name: Persika + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Locations: + Head_Top: true + View: 659 + Script: | + bonus bFlee,1; bonus bMaxSP,20; + - Id: 5782 + AegisName: Hoplite_Helmet + Name: Hoplite Helmet + Type: Armor + Buy: 20 + Weight: 700 + Defense: 4 + Slots: 1 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 660 + Script: | + bonus bMaxHPrate,3; + - Id: 5783 + AegisName: YellowBunny_Hairband + Name: YellowBunny Hairband + Type: Armor + Buy: 20 + Weight: 200 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 662 + Script: | + bonus bStr,1; bonus bInt,1; bonus bDex,2; + - Id: 5784 + AegisName: PinkBunny_Hairband + Name: PinkBunny Hairband + Type: Armor + Buy: 20 + Weight: 200 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 663 + Script: | + bonus bStr,1; bonus bInt,2; bonus bDex,1; + - Id: 5785 + AegisName: Green_Bunny_Hairband + Name: Green Bunny Hairband + Type: Armor + Buy: 20 + Weight: 200 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 664 + Script: | + bonus bStr,2; bonus bInt,1; bonus bDex,1; + - Id: 5786 + AegisName: Ancient_Elven_Ear + Name: Ancient Elven Ear + Type: Armor + Buy: 10 + Weight: 200 + Defense: 1 + Locations: + Head_Mid: true + EquipLevelMin: 1 + View: 665 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bLuk,1; bonus bMaxHP,100; bonus bMaxSP,30; + - Id: 5787 + AegisName: Tha_Maero_Mask + Name: Tha Maero Mask + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Low: true + Head_Mid: true + EquipLevelMin: 30 + View: 666 + Script: | + bonus bMdef,2; + - Id: 5788 + AegisName: 3D_Glasses + Name: 3D Glasses + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Mid: true + EquipLevelMin: 1 + View: 661 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bMagicAddRace,RC_Formless,4; bonus2 bSubEle,Ele_Neutral,5; bonus bUnbreakableHelm; + - Id: 5789 + AegisName: Thanatos_Mal_Mask + Name: Thanatos Mal Mask + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Locations: + Head_Low: true + Head_Mid: true + EquipLevelMin: 30 + View: 667 + Script: | + bonus bVit,1; + - Id: 5790 + AegisName: Holy_Mom_Love + Name: TM + Type: Armor + Buy: 20 + Weight: 500 + Slots: 1 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 45 + Refineable: true + View: 610 + Script: | + bonus2 bSubRace,RC_Demon,-5; bonus2 bSubRace,RC_Undead,-5; bonus3 bAutoSpell,"AL_BLESSING",1,20; + - Id: 5791 + AegisName: Tenkaippin_Ramen + Name: Tenkaippin Ramen + Type: Armor + Buy: 20 + Weight: 500 + Defense: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + View: 668 + Script: | + bonus bInt,-1; bonus bDex,4; + - Id: 5792 + AegisName: Fish_Pin + Name: Fish Pin + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 669 + Script: | + bonus2 bSubRace,RC_Fish,1; + - Id: 5793 + AegisName: Ribbon_Of_Life + Name: Ribbon Of Life + Type: Armor + Buy: 20 + Defense: 2 + Locations: + Head_Mid: true + EquipLevelMin: 1 + View: 575 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,1; bonus bMdef,2; + - Id: 5794 + AegisName: 3D_Glasses_ + Name: 3D Glasses + Type: Armor + Buy: 20 + Defense: 1 + Slots: 1 + Locations: + Head_Mid: true + EquipLevelMin: 1 + View: 661 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@tmp = BaseLevel/30; if(BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Archer||BaseClass==Job_Gunslinger) { bonus bBaseAtk,(3+.@tmp); } else if(BaseClass==Job_Mage||BaseClass==Job_Acolyte||BaseClass==Job_Ninja||BaseClass==Job_Soul_Linker) { bonus bMatk,(3+.@tmp); } else if(BaseClass==Job_Thief) { bonus bFleeRate,(1+.@tmp); } else if(BaseClass==Job_Novice||BaseClass==Job_SuperNovice||BaseClass==Job_Taekwon||BaseClass==Job_Star_Gladiator||BaseClass==Job_Star_Gladiator2) { bonus bMaxHP,(50+BaseLevel); bonus bMaxSP,(50+.@tmp); } + - Id: 5795 + AegisName: Red_Dress_Hat + Name: Bright Red Dress Hat + Type: Armor + Buy: 20 + Weight: 200 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 670 + Script: | + bonus bMdef,7+(getrefine()/2); + - Id: 5796 + AegisName: Cheer_Scarf + Name: Cheer Scarf + Type: Armor + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 369 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bExpAddClass,Class_All,10; bonus bMaxHP,200; bonus bMaxSP,50; + - Id: 5797 + AegisName: Cheer_Scarf2 + Name: Cheer Scarf2 + Type: Armor + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 369 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bExpAddClass,Class_All,20; + - Id: 5798 + AegisName: Cheer_Scarf3 + Name: Cheer Scarf3 + Type: Armor + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 369 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bExpAddClass,Class_All,30; + - Id: 5799 + AegisName: Cheer_Scarf4 + Name: Cheer Scarf4 + Type: Armor + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 369 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bExpAddClass,Class_All,40; + - Id: 5800 + AegisName: Blush_Of_Groom + Name: Blush of Groom + Type: Armor + Buy: 20 + Weight: 50 + Locations: + Head_Mid: true + View: 125 + Script: | + bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3; + - Id: 5801 + AegisName: Ribbon_Of_Bride + Name: Red Tailed Ribbon + Type: Armor + Buy: 20 + Weight: 100 + Defense: 5 + Locations: + Head_Top: true + Refineable: true + View: 167 + Script: | + bonus bAllStats,2; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus3 bAutoSpellWhenHit,"AL_HEAL",(getskilllv("AL_HEAL")==10?10:5),20; + - Id: 5802 + AegisName: Upgrade_Elephant_Hat + Name: Upgraded Elephant Hat + Type: Armor + Weight: 500 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 215 + - Id: 5803 + AegisName: Flower_Love_Hat + Name: Love Flower Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 5 + Script: | + bonus2 bAddMonsterDropItem,608,100; + - Id: 5804 + AegisName: Pirate_Eyepatch + Name: Pirate Eye Bandage + Type: Armor + Buy: 1000 + Weight: 100 + Locations: + Head_Mid: true + View: 13 + - Id: 5805 + AegisName: Victorious_Coronet + Name: Victorious Coronet + Type: Armor + Weight: 150 + Defense: 1 + Locations: + Head_Top: true + EquipLevelMin: 70 + View: 43 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHPrate,15; bonus bSPrecovRate,5; + - Id: 5806 + AegisName: Poem_Natalia_Hat + Name: Poet Natalie's Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 5 + Locations: + Head_Top: true + View: 67 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 5807 + AegisName: October_Fest_Cap + Name: October Fest Cap + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 104 + - Id: 5808 + AegisName: Diabolus_Helmet + Name: Dark Bacilium + Type: Armor + Buy: 20 + Weight: 250 + Defense: 5 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Refineable: true + View: 364 + Script: | + .@r = getrefine(); bonus2 bResEff,Eff_Stone,2000+(.@r*200); bonus2 bResEff,Eff_Freeze,2000+(.@r*200); bonus2 bResEff,Eff_Stun,2000+(.@r*200); + - Id: 5809 + AegisName: Boom_Boom_Hat + Name: Boom Boom Hat + Type: Armor + Weight: 100 + Defense: 6 + Locations: + Head_Top: true + View: 216 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,5; bonus bSpeedRate,25; + - Id: 5810 + AegisName: Ph.D_Hat_V + Name: Ph.D Hat V + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 98 + Script: | + bonus bInt,5; bonus bVit,3; bonus bDex,3; + - Id: 5811 + AegisName: Santa_Beard + Name: Santa's Beard + Type: Armor + Buy: 20 + Weight: 100 + Defense: 5 + Locations: + Head_Low: true + View: 25 + Script: | + bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5; + - Id: 5812 + AegisName: Hat_Of_Expert + Name: Hat Of Expert + Type: Armor + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 16 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus3 bAddEffWhenHit,Eff_Bleeding,500,ATF_TARGET|ATF_SELF; bonus3 bAddEffWhenHit,Eff_Silence,500,ATF_TARGET|ATF_SELF; bonus3 bAddEffWhenHit,Eff_Confusion,500,ATF_TARGET|ATF_SELF; bonus3 bAddEffWhenHit,Eff_Curse,500,ATF_TARGET|ATF_SELF; bonus3 bAddEffWhenHit,Eff_Blind,500,ATF_TARGET|ATF_SELF; + - Id: 5813 + AegisName: Red_Ph.D_Hat + Name: Red Ph.D Hat + Type: Armor + Buy: 1000 + Weight: 500 + Locations: + Head_Top: true + Refineable: true + View: 481 + Script: | + bonus bInt,1; + - Id: 5814 + AegisName: Ati_Atihan_Hat3 + Name: Ati Atihan Hat3 + Type: Armor + Buy: 20 + Defense: 2 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + EquipLevelMin: 20 + View: 303 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 5815 + AegisName: Classic_Hat_J + Name: Classic Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 475 + Script: | + bonus bStr,1; bonus2 bSubSize,Size_All,5; + - Id: 5816 + AegisName: Cowboy_Hat_J + Name: Purple Cowboy Hat + Type: Armor + Buy: 20 + Weight: 500 + Locations: + Head_Top: true + Refineable: true + View: 411 + Script: | + bonus bBaseAtk,15; bonus bFlee,-5; + - Id: 5817 + AegisName: Valentine_Pledge + Name: Valentine Pledge + Type: Armor + Buy: 20 + Defense: 3 + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,2; bonus bMdef,3; bonus bHealPower,10; bonus2 bAddClass,Class_All,3; bonus bMatkRate,3; bonus bFlee,10; bonus bAspdRate,1; + - Id: 5818 + AegisName: Carnival_Hat + Name: Carnival Hat + Type: Armor + Defense: 6 + Locations: + Head_Top: true + Refineable: true + View: 505 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,3; + - Id: 5819 + AegisName: Carnival_Circlet + Name: Carnival Circlet + Type: Armor + Defense: 6 + Locations: + Head_Top: true + Refineable: true + View: 506 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,3; + - Id: 5820 + AegisName: Black_Elven_Ears + Name: Black Elven Ears + Type: Armor + Buy: 10 + Weight: 100 + Defense: 2 + Locations: + Head_Mid: true + View: 498 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 5821 + AegisName: Gold_Tulip_Hairpin + Name: Gold Tulip Hairpin + Type: Armor + Buy: 10 + Weight: 100 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 499 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bExpAddClass,Class_All,5; + - Id: 5822 + AegisName: Love_Chick_Hat + Name: Love Chick Hat + Type: Armor + Buy: 10000 + Weight: 100 + Defense: 4 + Locations: + Head_Top: true + Refineable: true + View: 500 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bLuk,4; bonus bMaxHP,100; bonus bMaxSP,100; bonus2 bSubRace,RC_Brute,7; bonus2 bSubRace,RC_Player_Doram,7; bonus2 bSubRace,RC_DemiHuman,7; bonus2 bSubRace,RC_Player_Human,7; + - Id: 5823 + AegisName: Love_Arrow + Name: Arrow of Love + Type: Armor + Buy: 5000 + Weight: 100 + Defense: 2 + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,5; bonus bAgi,5; + - Id: 5824 + AegisName: Fools_Day_Hat + Name: Fools Day Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 6 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 265 + - Id: 5825 + AegisName: Badge_Of_Order_Grace + Name: Badge Of Order Grace + Type: Armor + Defense: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bMdef,1; bonus2 bAddClass,Class_All,10; bonus bMatkRate,10; bonus bMaxHP,1500; + - Id: 5826 + AegisName: Valkyrie_Helmet + Name: Valkyrie Helmet + Type: Armor + Defense: 10 + Locations: + Head_Top: true + View: 225 + Script: | + bonus bStr,2; bonus bInt,2; bonus bDex,2; bonus bAgi,2; bonus bAspdRate,3; bonus bMdef,5; bonus bCastrate,-3; + - Id: 5827 + AegisName: Book_File_Hat + Name: Book File Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 423 + - Id: 5828 + AegisName: Honor_Gold_Ring + Name: Honor Gold Ring + Type: Armor + Weight: 50 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bAllStats,1; bonus bMdef,5; + - Id: 5829 + AegisName: Ordinary_Armor + Name: Ordinary Armor + Type: Armor + Locations: + Armor: true + EquipLevelMin: 30 + Refineable: true + - Id: 5830 + AegisName: Woe_Sahkkat + Name: Woe Sahkkat + Type: Armor + Buy: 20 + Weight: 10 + Locations: + Head_Top: true + EquipLevelMin: 60 + Refineable: true + View: 67 + - Id: 5831 + AegisName: Woe_Big_Sis_Ribbon + Name: Woe Big Sis Ribbon + Type: Armor + Buy: 20 + Weight: 10 + Locations: + Head_Top: true + EquipLevelMin: 60 + Refineable: true + View: 28 + - Id: 5832 + AegisName: Woe_Vane_Hairpin + Name: Woe Vane Hairpin + Type: Armor + Buy: 20 + Weight: 10 + Locations: + Head_Top: true + EquipLevelMin: 60 + Refineable: true + View: 313 + - Id: 5833 + AegisName: Woe_Picnic_Hat + Name: Woe Picnic Hat + Type: Armor + Buy: 20 + Weight: 10 + Locations: + Head_Top: true + EquipLevelMin: 60 + Refineable: true + View: 117 + - Id: 5834 + AegisName: Woe_Crown + Name: Woe Crown + Type: Armor + Buy: 20 + Weight: 10 + Locations: + Head_Top: true + EquipLevelMin: 60 + Refineable: true + View: 45 + - Id: 5835 + AegisName: Woe_Tiara + Name: Woe Tiara + Type: Armor + Buy: 20 + Weight: 10 + Locations: + Head_Top: true + EquipLevelMin: 60 + Refineable: true + View: 19 + - Id: 5836 + AegisName: Woe_Boys_Cap + Name: Woe Boys Cap + Type: Armor + Buy: 20 + Weight: 10 + Locations: + Head_Top: true + EquipLevelMin: 60 + Refineable: true + View: 102 + - Id: 5837 + AegisName: Woe_Sunglass + Name: Woe Sunglass + Type: Armor + Buy: 20 + Weight: 10 + Locations: + Head_Mid: true + EquipLevelMin: 70 + View: 12 + - Id: 5838 + AegisName: Woe_Fin_Helm + Name: Woe Fin Helm + Type: Armor + Buy: 20 + Weight: 10 + Locations: + Head_Mid: true + EquipLevelMin: 70 + View: 100 + - Id: 5839 + AegisName: Woe_Blush + Name: Woe Blush + Type: Armor + Buy: 20 + Weight: 10 + Locations: + Head_Mid: true + EquipLevelMin: 70 + View: 125 + - Id: 5840 + AegisName: Woe_Elven_Ears + Name: Woe Elven Ears + Type: Armor + Buy: 20 + Weight: 10 + Locations: + Head_Mid: true + EquipLevelMin: 70 + View: 73 + - Id: 5841 + AegisName: Shaman_Hat_ + Name: Shaman Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 596 + Script: | + bonus bLuk,2; bonus3 bSubEle,Ele_Neutral,3,BF_MAGIC; bonus3 bSubEle,Ele_Water,3,BF_MAGIC; bonus3 bSubEle,Ele_Earth,3,BF_MAGIC; bonus3 bSubEle,Ele_Fire,3,BF_MAGIC; bonus3 bSubEle,Ele_Wind,3,BF_MAGIC; bonus3 bSubEle,Ele_Poison,3,BF_MAGIC; bonus3 bSubEle,Ele_Holy,3,BF_MAGIC; bonus3 bSubEle,Ele_Dark,3,BF_MAGIC; bonus3 bSubEle,Ele_Ghost,3,BF_MAGIC; bonus3 bSubEle,Ele_Undead,3,BF_MAGIC; + - Id: 5842 + AegisName: Loyal_Ring1 + Name: Loyal Ring1 + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + - Id: 5843 + AegisName: Loyal_Ring2 + Name: Loyal Ring2 + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bAllStats,2; + - Id: 5844 + AegisName: Loyal_Ring3 + Name: Loyal Ring3 + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bAllStats,3; + - Id: 5845 + AegisName: Buzzy_Ball_Board + Name: Buzzy Ball Board + Type: Armor + Buy: 50 + Weight: 400 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 641 + - Id: 5846 + AegisName: Buzzy_Ball_Gum + Name: Buzzy Ball Gum + Type: Armor + Buy: 50 + Weight: 100 + Defense: 1 + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 572 + Script: | + bonus bMdef,5; + - Id: 5847 + AegisName: Fools_Day_hat_ + Name: Fools Day Helmet + Type: Armor + Locations: + Head_Top: true + EquipLevelMin: 1 + View: 647 + Script: | + bonus bInt,5; bonus bVit,-3; + - Id: 5848 + AegisName: Robin_Eyepatch + Name: Robin Eyepatch + Type: Armor + Buy: 20 + Locations: + Head_Mid: true + EquipLevelMin: 1 + View: 50 + - Id: 5849 + AegisName: Doctor_Hairband + Name: Doctor Hairband + Type: Armor + Buy: 20 + Locations: + Head_Top: true + EquipLevelMin: 1 + View: 60 + - Id: 5850 + AegisName: Golden_Savage_Hat + Name: Golden Savage Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 5 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 648 + - Id: 5851 + AegisName: Summer_Knight + Name: Summer Knight + Type: Armor + Buy: 20 + Defense: 1 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 60 + View: 138 + - Id: 5852 + AegisName: Easter_Egg_Shell + Name: Easter Egg Shell + Type: Armor + Buy: 20 + Weight: 500 + Locations: + Head_Top: true + EquipLevelMin: 40 + Refineable: true + View: 537 + Script: | + 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; + - Id: 5853 + AegisName: IdRO_Crown + Name: IdRO Crown + Type: Armor + Buy: 10 + Defense: 2 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 165 + Script: | + bonus bHPrecovRate,7; bonus bSPrecovRate,7; if(getrefine()>7){ bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; bonus bMdef,2; } + - Id: 5855 + AegisName: Fishing_Rod + Name: Fishing Rod + Type: Armor + Buy: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 5856 + AegisName: Passion_FB_Hat + Name: Passion FB Hat + Type: Armor + Buy: 20 + Weight: 600 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 671 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bStr,2; bonus bDex,2; autobonus "{ bonus bFlee,-15; bonus2 bAddClass,Class_All,5; }",30,10000,0,"{ specialeffect2 EF_ENHANCE; }"; + - Id: 5857 + AegisName: Cool_FB_Hat + Name: Cool FB Hat + Type: Armor + Buy: 20 + Weight: 600 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 672 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bInt,2; bonus bVit,2; autobonus3 "{ bonus bHealPower,20; }",150,5000,"AL_HEAL","{ specialeffect2 EF_HEAL3; }"; + - Id: 5858 + AegisName: Victory_FB_Hat + Name: Victory FB Hat + Type: Armor + Buy: 20 + Weight: 600 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 673 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bInt,2; bonus bDex,2; autobonus "{ bonus bMatkRate,5; bonus bDef,-30; }",3,10000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }"; + - Id: 5859 + AegisName: Glory_FB_Hat + Name: Glory FB Hat + Type: Armor + Buy: 20 + Weight: 600 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 674 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bAllStats,1; bonus bAspd,1; bonus bBaseAtk,BaseLevel/7; bonus bMatk,BaseLevel/7; + - Id: 5864 + AegisName: Shadow_Booster + Name: Magical Booster + Type: Armor + Buy: 10 + Weight: 300 + Locations: + Head_Mid: true + EquipLevelMin: 1 + Refineable: true + View: 873 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAspd,1; bonus bDelayrate,-1; + - Id: 5868 + AegisName: Bushy_Moustache + Name: Bushy Moustache + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Low: true + View: 1004 + Script: | + bonus bUnbreakableHelm; bonus bBaseAtk,10; bonus bMatk,10; + - Id: 5869 + AegisName: Mimic_Egg_Shell + Name: Mimic Egg Shell + Type: Armor + Buy: 10 + Weight: 100 + Defense: 4 + Locations: + Head_Top: true + Refineable: true + View: 999 + Script: | + bonus2 bAddEffWhenHit,Eff_Stone,600; bonus bSpeedRate,25; + - Id: 5870 + AegisName: Bunny_Egg_Shell + Name: Bunny Egg Shell + Type: Armor + Buy: 10 + Weight: 100 + Defense: 5 + Locations: + Head_Top: true + Refineable: true + View: 1000 + Script: | + bonus bAgi,3; bonus bAspd,1; + - Id: 5871 + AegisName: Picky_Egg_Shell + Name: Picky Egg Shell + Type: Armor + Buy: 10 + Weight: 100 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 1001 + Script: | + bonus bVit,3; bonus bMdef,2; + - Id: 5873 + AegisName: Helmet_Of_Siegfried + Name: Helmet Of Siegfried + Type: Armor + Buy: 20 + Weight: 600 + Defense: 7 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Head_Top: true + EquipLevelMin: 60 + Refineable: true + View: 1055 + Script: | + bonus bAllStats,5; bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubRace,RC_Dragon,5; bonus3 bAutoSpellWhenHit,"HP_ASSUMPTIO",5,5; bonus2 bHPLossRate,600,1000; bonus bUnbreakableHelm; + - Id: 5874 + AegisName: Circlet_Of_Kriemhild + Name: Circlet Of Kriemhild + Type: Armor + Buy: 20 + Weight: 600 + Defense: 7 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Head_Top: true + EquipLevelMin: 60 + Refineable: true + View: 1056 + Script: | + bonus bAllStats,5; bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubRace,RC_Dragon,5; bonus3 bAutoSpellWhenHit,"PR_KYRIE",9,5; bonus2 bHPLossRate,400,1000; bonus bUnbreakableHelm; + - Id: 5875 + AegisName: Diadem_Of_Bruenhild + Name: Diadem Of Bruenhild + Type: Armor + Buy: 20 + Weight: 600 + Defense: 7 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Head_Top: true + EquipLevelMin: 60 + Refineable: true + View: 1057 + Script: | + bonus bAllStats,5; bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubRace,RC_Dragon,5; bonus3 bAutoSpellWhenHit,"SM_ENDURE",8,5; bonus2 bHPLossRate,400,1000; bonus bUnbreakableHelm; + - Id: 5881 + AegisName: Weissbier_Hat + Name: Weissbier Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 5 + Locations: + Head_Top: true + Refineable: true + View: 1079 + Script: | + bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bDex,10; if(getrefine()>6){ bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bDex,5; } + - Id: 5882 + AegisName: Red_Wizardry_Hat_C + Name: Red Mage Hat C + Type: Armor + Buy: 20 + Weight: 300 + Defense: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Head_Top: true + Refineable: true + View: 282 + Script: | + bonus bInt,2; bonus bMaxSP,150; + - Id: 5883 + AegisName: White_Wizardry_Hat_C + Name: Gray Mage Hat C + Type: Armor + Buy: 20 + Weight: 300 + Defense: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Head_Top: true + Refineable: true + View: 283 + Script: | + bonus bInt,2; bonus bMaxSP,150; + - Id: 5884 + AegisName: Gray_Wizardry_Hat_C + Name: Brown Mage Hat C + Type: Armor + Buy: 20 + Weight: 300 + Defense: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Head_Top: true + Refineable: true + View: 284 + Script: | + bonus bInt,2; bonus bMaxSP,150; + - Id: 5885 + AegisName: Blue_Wizardry_Hat_C + Name: Blue Mage Hat C + Type: Armor + Buy: 20 + Weight: 300 + Defense: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Head_Top: true + Refineable: true + View: 285 + Script: | + bonus bInt,2; bonus bMaxSP,150; + - Id: 5886 + AegisName: Yellow_Wizardry_Hat_C + Name: Yellow Mage Hat C + Type: Armor + Buy: 20 + Weight: 300 + Defense: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Head_Top: true + Refineable: true + View: 286 + Script: | + bonus bInt,2; bonus bMaxSP,150; + - Id: 5887 + AegisName: Half_L_Magestic_Goat + Name: Half L Majestic Goat + Type: Armor + Buy: 20 + Weight: 800 + Defense: 5 + Locations: + Head_Top: true + Refineable: true + View: 380 + Script: | + bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus bBaseAtk,(JobLevel*2)/7; + - Id: 5892 + AegisName: RCC2013_1ST_CROWN + Name: RCC2013 1ST CROWN + Type: Armor + Buy: 20 + Weight: 2500 + Defense: 7 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + View: 1106 + Script: | + bonus bAllStats,5; skill "AL_TELEPORT",1; + EquipScript: | + sc_start SC_SPEEDUP0,INFINITE_TICK,25; + UnEquipScript: | + sc_end SC_SPEEDUP0; + - Id: 5893 + AegisName: RCC2013_2ND_CROWN + Name: RCC2013 2ND CROWN + Type: Armor + Buy: 20 + Weight: 2500 + Defense: 7 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + View: 1107 + Script: | + bonus bAllStats,4; skill "AL_TELEPORT",1; + EquipScript: | + sc_start SC_SPEEDUP0,INFINITE_TICK,25; + UnEquipScript: | + sc_end SC_SPEEDUP0; + - Id: 5894 + AegisName: RCC2013_3RD_CROWN + Name: RCC2013 3RD CROWN + Type: Armor + Buy: 20 + Weight: 2500 + Defense: 7 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + View: 1108 + Script: | + bonus bAllStats,3; skill "AL_TELEPORT",1; + EquipScript: | + sc_start SC_SPEEDUP0,INFINITE_TICK,25; + UnEquipScript: | + sc_end SC_SPEEDUP0; + - Id: 5895 + AegisName: RCC2013_ANV_Hat + Name: RCC2013 ANV Hat + Type: Armor + Buy: 20 + Weight: 2500 + Defense: 7 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + View: 1109 + Script: | + bonus bAllStats,1; bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; + - Id: 5900 + AegisName: Divine_Guard_Hat + Name: Divine Guard Hat + Type: Armor + Weight: 200 + Defense: 10 + Slots: 1 + Jobs: + Crusader: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 1121 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus2 bSubSize,Size_All,5; if(.@r>=7) { .@level = getskilllv("AL_HEAL"); bonus3 bAutoSpellWhenHit,"AL_HEAL",(.@level ? .@level : 5),10; } if(.@r>=9) { bonus2 bSkillAtk,"LG_RAYOFGENESIS",20; } + - Id: 5901 + AegisName: Focus_Beret + Name: Focus Beret + Type: Armor + Weight: 200 + Defense: 10 + Slots: 1 + Jobs: + Monk: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 1122 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus4 bAutoSpellOnSkill,"SR_DRAGONCOMBO","SR_FALLENEMPIRE",max(getskilllv("SR_FALLENEMPIRE"),1),100; if(.@r>=7) { autobonus "{ bonus bAspd,2; }",30,5000,0,"{ specialeffect2 EF_ENHANCE; }"; } if(.@r>=9) { bonus2 bSkillAtk,"SR_FALLENEMPIRE",30; } + - Id: 5902 + AegisName: Harvester_Hat + Name: Harvester Hat + Type: Armor + Weight: 200 + Defense: 10 + Slots: 1 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 1123 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus2 bAddMonsterDropItem,6211,100; bonus2 bAddMonsterDropItem,6212,100; if(.@r>=7) { bonus2 bAddMonsterDropItem,6210,50; } if(.@r>=9) { bonus2 bSkillAtk,"GN_CARTCANNON",15; } + - Id: 5903 + AegisName: Deadman_Bandana + Name: Deadman Bandana + Type: Armor + Weight: 200 + Defense: 15 + Slots: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Head_Top: true + EquipLevelMin: 99 + Refineable: true + View: 1124 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); .@rate = 1; bonus bCritical,.@r*2; bonus bFixedCastrate,-2; bonus3 bAutoSpellWhenHit,"SL_SWOO",getskilllv("SL_SWOO"),(.@rate*10); if (.@r>=7) { bonus bMatk,20; .@rate += 3; } if(.@r>=9) { bonus bVariableCastrate,-20; bonus2 bSkillUseSP,"SL_STUN",5; bonus2 bSkillUseSP,"SL_SMA",5; } + - Id: 5904 + AegisName: Inconspicuous_Hat + Name: Inconspicuous Hat + Type: Armor + Weight: 200 + Defense: 10 + Slots: 1 + Jobs: + Rogue: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 1125 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); if (.@r>=9) { .@matk = 5; } bonus bMatkRate,(7+.@matk); if (.@r>=7) { bonus bMatk,(readparam(bInt)/5)*2; } + - Id: 5905 + AegisName: Lyrica_Hat + Name: Lyrica Hat + Type: Armor + Weight: 200 + Defense: 10 + Slots: 1 + Jobs: + BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 1126 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15; if(.@r>=7) { bonus bFixedCastrate,4*(getskilllv("WM_LESSON")); } if(.@r>=9) { bonus2 bSkillUseSP,"WM_SEVERE_RAINSTORM",10; } + - Id: 5906 + AegisName: Oni_Horns_ + Name: Oni Horns + Type: Armor + Weight: 20 + Defense: 10 + Slots: 1 + Jobs: + Assassin: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 1127 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bSkillAtk,"GC_COUNTERSLASH",(10*getskilllv("GC_WEAPONBLOCKING")); .@r = getrefine(); if(.@r > 6){ bonus bAtk,20; bonus bHit,5; } if(.@r > 9){ bonus3 bAutoSpell,"GC_CROSSIMPACT",1,10; } + - Id: 5907 + AegisName: Sea_Captain_Hat + Name: Sea Captain Hat + Type: Armor + Weight: 200 + Defense: 20 + Slots: 1 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 1128 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bSkillAtk,"NC_AXEBOOMERANG",20; .@dmg = 20; .@r = getrefine(); if (.@r>=7) { .@dmg += getskilllv("BS_WEAPONRESEARCH"); } if (.@r>=9) { .@dmg += getskilllv("NC_TRAININGAXE"); } bonus2 bSkillAtk,"NC_AXETORNADO",.@dmg; + - Id: 5909 + AegisName: C_Valkyrie_Circlet + Name: C Valkyrie Circlet + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 940 + - Id: 5914 + AegisName: Earmuff_Flowerform + Name: C Flutter Butterfly + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1378 + Script: | + hateffect HAT_EF_FLUTTER_BUTTERFLY,true; + UnEquipScript: | + hateffect HAT_EF_FLUTTER_BUTTERFLY,false; + - Id: 5917 + AegisName: Yellow_Scarf + Name: Yellow Scarf + Type: Armor + Weight: 100 + Locations: + Head_Low: true + EquipLevelMin: 90 + View: 1170 + Script: | + bonus bLongAtkDef,3; + - Id: 5918 + AegisName: Gambler_Seal + Name: Gambler Seal + Type: Armor + Weight: 500 + Locations: + Head_Mid: true + EquipLevelMin: 70 + View: 1202 + Script: | + .@dex = readparam(bDex); .@luk = readparam(bLuk); .@critical = 3 + (.@luk / 10); .@critical_dmg = 3 - (.@dex/10) * 2; .@sub_arrowstorm = 10; .@sub_gateofhell = 10; bonus bBaseAtk,(.@luk/10)*2; bonus bMatk,(.@luk / 10) * 2; if (.@luk > 107) { .@critical += 5; .@critical_dmg += 10; } if (.@luk > 119) { .@critical += 10; .@critical_dmg += 17; .@sub_arrowstorm += 30; .@sub_gateofhell += 30; } bonus bCritical,.@critical; bonus bCritAtkRate,.@critical_dmg; bonus2 bSubSkill,"RA_ARROWSTORM",.@sub_arrowstorm; bonus2 bSubSkill,"SR_GATEOFHELL",.@sub_gateofhell; + - Id: 5919 + AegisName: Camellia_Hair_Pin + Name: Camellia Hair Pin + Type: Armor + Weight: 1000 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 1203 + Script: | + bonus bMdef,20; bonus3 bAutoSpell,"AL_PNEUMA",1,30+getrefine()*5; hateffect(HAT_EF_CAMELLIA_HAIR_PIN,true); /* CONFIRM The Rate*/ + UnEquipScript: | + hateffect(HAT_EF_CAMELLIA_HAIR_PIN,false); + - Id: 5920 + AegisName: Medical_Boots + Name: Medical Boots + Type: Armor + Weight: 300 + Defense: 10 + Locations: + Shoes: true + EquipLevelMin: 10 + Refineable: true + Script: | + .@r = getrefine(); bonus bHealPower,10+((.@r/2) * 2); bonus2 bSkillUseSP,"AB_CHEAL",(.@r * 5); + - Id: 5933 + AegisName: Crow_Tengu_Mask + Name: Crow Tengu Mask + Type: Armor + Buy: 20 + Weight: 300 + Locations: + Head_Mid: true + EquipLevelMin: 80 + View: 1287 + Script: | + bonus2 bAddSize,Size_All,1; bonus bLongAtkRate,2; if(readparam(bStr)>=108) { bonus2 bAddSize,Size_All,1; bonus bLongAtkRate,2; } if(readparam(bStr)>=120) { bonus2 bAddSize,Size_All,2; bonus bLongAtkRate,3; } + - Id: 5937 + AegisName: Flying_Helmet + Name: Flying Helmet + Type: Armor + Buy: 1 + Weight: 300 + Defense: 5 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 820 + Script: | + bonus bMdef,5; bonus bHPGainValue,100; bonus2 bSPGainRace,RC_Dragon,5; .@r = getrefine(); if (.@r>=5) { bonus2 bSubRace,RC_Dragon,5; } if (.@r>=7) { bonus2 bSubRace,RC_Dragon,5; } + - Id: 5938 + AegisName: Octopus_Hat_ + Name: Octopus Hat + Type: Armor + Buy: 20 + Weight: 880 + Defense: 8 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 60 + Refineable: true + View: 538 + Script: | + bonus bMdef,8; bonus bUnbreakableHelm,1; bonus2 bAddItemHealRate,579,50; bonus2 bAddItemHealRate,544,125; bonus2 bAddItemHealRate,551,125; .@r = getrefine(); if (.@r>=5) { bonus2 bAddItemHealRate,579,50; bonus2 bAddItemHealRate,544,125; bonus2 bAddItemHealRate,551,125; } if (.@r>=6) { bonus2 bAddItemHealRate,579,50; bonus2 bAddItemHealRate,544,125; bonus2 bAddItemHealRate,551,125; } if (.@r>=7) { bonus2 bAddItemHealRate,579,50; bonus2 bAddItemHealRate,544,125; bonus2 bAddItemHealRate,551,125; } + - Id: 5943 + AegisName: Owlviscount_Silk_Hat + Name: Owl Viscount Silk Hat + Type: Armor + Weight: 500 + Defense: 15 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 1323 + Script: | + 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; }"; + - Id: 5945 + AegisName: Well_Chewed_Pencil + Name: Well-Chewed Pencil + Type: Armor + Buy: 20 + Weight: 300 + Locations: + Head_Low: true + EquipLevelMin: 30 + View: 931 + Script: | + bonus bStr,1; autobonus "{ bonus bAtkEle,Ele_Fire; }",50,60000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; /* Unknow rate and specialeffect */ + - Id: 5965 + AegisName: _Riot_Chip + Name: Riot Chip + Type: Armor + Weight: 300 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 1201 + Script: | + bonus bFixedCastrate,-50; .@r = getrefine(); bonus2 bAddClass,Class_All,.@r; bonus2 bMagicAddClass,Class_All,.@r; + - Id: 5966 + AegisName: KarduiEar + Name: KarduiEar + Type: Armor + Weight: 300 + Locations: + Head_Mid: true + EquipLevelMin: 70 + View: 1357 + Script: | + .@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; } + - Id: 5967 + AegisName: FlyingGalapago + Name: Flying Galapago + Type: Armor + Weight: 500 + Locations: + Head_Low: true + EquipLevelMin: 110 + View: 1358 + Script: | + set .@bblvl,max(getskilllv("HT_BLITZBEAT"),1); set .@luk,min(readparam(bLuk),120); bonus bAgi,1; bonus3 bAutoSpell,"HT_BLITZBEAT",.@bblvl,50 + (.@luk / 3) + (.@bblvl * 2); bonus2 bSkillAtk,"HT_BLITZBEAT",getskilllv("HT_STEELCROW") * 40; + - Id: 5968 + AegisName: DVAngelNurseCap + Name: DVAngelNurseCap + Type: Armor + Weight: 500 + Defense: 10 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 1359 + Script: | + if (BaseClass == Job_Acolyte) bonus bHealPower,3; bonus bNoCastCancel; .@r = getrefine(); bonus bHealPower,(.@r > 8) ? 12 : ((.@r > 6) ? 9 : ((.@r > 4) ? 6 : 0)); + - Id: 5969 + AegisName: QueenAnzRevenge + Name: QueenAnzRevenge + Type: Armor + Weight: 400 + Defense: 7 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 1360 + Script: | + bonus bStr,5; .@r = getrefine(); bonus2 bAddClass,Class_All,7+(.@r > 8 ? 4 : (.@r > 6 ? 3 : (.@r > 4 ? 2 : 0))); bonus bNoSizeFix; + - Id: 5971 + AegisName: Moon_Eyepatch + Name: Moon Eyepatch + Type: Armor + Weight: 100 + Slots: 1 + Locations: + Head_Mid: true + EquipLevelMin: 10 + View: 1370 + Script: | + bonus2 bSubEle,Ele_Water,5; + - Id: 5972 + AegisName: Chatty_Parrot + Name: Chatty Parrot + Type: Armor + Weight: 100 + Locations: + Head_Low: true + EquipLevelMin: 80 + View: 1116 + Script: | + bonus bMatkRate,BaseLevel/50; bonus bVariableCast,-readparam(bInt)/30; + - Id: 5973 + AegisName: Ancient_Elven_Ear_J + Name: Ancient Elven Ear J + Type: Armor + Weight: 200 + Locations: + Head_Mid: true + EquipLevelMin: 70 + View: 665 + Script: | + bonus bLuk,10; bonus bMdef,10; bonus bFlee2,2; + - Id: 5978 + AegisName: Syringe_Toy + Name: Toy Syringe + Type: Armor + Weight: 100 + Defense: 3 + Locations: + Head_Low: true + EquipLevelMin: 70 + View: 842 + Script: | + bonus bMdef,3; bonus2 bAddItemHealRate,545,150; bonus2 bAddItemHealRate,546,150; bonus2 bAddItemHealRate,547,150; + - Id: 5979 + AegisName: C_Angel_Fluttering + Name: C Angel Fluttering + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1380 + Script: | + hateffect HAT_EF_ANGEL_FLUTTERING,true; + UnEquipScript: | + hateffect HAT_EF_ANGEL_FLUTTERING,false; + - Id: 5980 + AegisName: C_Classical_Fhat + Name: C Classical Fhat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1381 + - Id: 5985 + AegisName: Noble_Mask + Name: Noble Mask + Type: Armor + Weight: 200 + Locations: + Head_Mid: true + EquipLevelMin: 30 + Refineable: true + View: 1409 + Script: | + bonus2 bSkillAtk,"PA_SACRIFICE",BaseLevel*2; bonus2 bSkillVariableCast,"PA_PRESSURE",-2000; bonus2 bSkillVariableCast,"CR_DEVOTION",-2000; if (BaseLevel > 149) { bonus bMaxHPrate,3; bonus bAspdRate,3; } else if (BaseLevel > 99) { bonus bMaxHPrate,2; bonus bAspdRate,2; } else { bonus bMaxHPrate,1; bonus bAspdRate,1; } + - Id: 9001 + AegisName: Poring_Egg + Name: Poring Egg + Type: Petegg + Buy: 20 + - Id: 9002 + AegisName: Drops_Egg + Name: Drops Egg + Type: Petegg + Buy: 20 + - Id: 9003 + AegisName: Poporing_Egg + Name: Poporing Egg + Type: Petegg + Buy: 20 + - Id: 9004 + AegisName: Lunatic_Egg + Name: Lunatic Egg + Type: Petegg + Buy: 20 + - Id: 9005 + AegisName: Picky_Egg + Name: Picky Egg + Type: Petegg + Buy: 20 + - Id: 9006 + AegisName: Chonchon_Egg + Name: Chonchon Egg + Type: Petegg + Buy: 20 + - Id: 9007 + AegisName: Steel_Chonchon_Egg + Name: Steel Chonchon Egg + Type: Petegg + Buy: 20 + - Id: 9008 + AegisName: Hunter_Fly_Egg + Name: Hunter Fly Egg + Type: Petegg + Buy: 20 + - Id: 9009 + AegisName: Savage_Bebe_Egg + Name: Savage Babe Egg + Type: Petegg + Buy: 20 + - Id: 9010 + AegisName: Baby_Desert_Wolf_Egg + Name: Baby Desert Wolf Egg + Type: Petegg + Buy: 20 + - Id: 9011 + AegisName: Rocker_Egg + Name: Rocker Egg + Type: Petegg + Buy: 20 + - Id: 9012 + AegisName: Spore_Egg + Name: Spore Egg + Type: Petegg + Buy: 20 + - Id: 9013 + AegisName: Poison_Spore_Egg + Name: Poison Spore Egg + Type: Petegg + Buy: 20 + - Id: 9014 + AegisName: PecoPeco_Egg + Name: Peco Peco Egg + Type: Petegg + Buy: 20 + - Id: 9015 + AegisName: Smokie_Egg + Name: Smokie Egg + Type: Petegg + Buy: 20 + - Id: 9016 + AegisName: Yoyo_Egg + Name: Yoyo Egg + Type: Petegg + Buy: 20 + - Id: 9017 + AegisName: Orc_Warrior_Egg + Name: Orc Warrior Egg + Type: Petegg + Buy: 20 + - Id: 9018 + AegisName: Munak_Egg + Name: Munak Egg + Type: Petegg + Buy: 20 + - Id: 9019 + AegisName: Dokkaebi_Egg + Name: Dokebi Egg + Type: Petegg + Buy: 20 + - Id: 9020 + AegisName: Sohee_Egg + Name: Sohee Egg + Type: Petegg + Buy: 20 + - Id: 9021 + AegisName: Isis_Egg + Name: Isis Egg + Type: Petegg + Buy: 20 + - Id: 9022 + AegisName: Green_Petite_Egg + Name: Green Petite Egg + Type: Petegg + Buy: 20 + - Id: 9023 + AegisName: Deviruchi_Egg + Name: Deviruchi Egg + Type: Petegg + Buy: 20 + - Id: 9024 + AegisName: Bapho_Jr._Egg + Name: Bapho Jr. Egg + Type: Petegg + Buy: 20 + - Id: 9025 + AegisName: Bongun_Egg + Name: Bongun Egg + Type: Petegg + Buy: 20 + - Id: 9026 + AegisName: Zherlthsh_Egg + Name: Zealotus Egg + Type: Petegg + Buy: 20 + - Id: 9027 + AegisName: Alice_Egg + Name: Alice Egg + Type: Petegg + Buy: 20 + - Id: 9028 + AegisName: Rice_Cake_Egg + Name: Hard Rice Cake + Type: Petegg + Buy: 20 + Trade: + Override: 100 + NoDrop: true + - Id: 9029 + AegisName: Santa_Goblin_Egg + Name: Christmas Goblin's Egg + Type: Petegg + Buy: 20 + - Id: 9030 + AegisName: Chung_E_Egg + Name: Green Maiden Egg + Type: Petegg + Buy: 20 + - Id: 9031 + AegisName: Spring_Rabbit_Egg + Name: Spring Rabbit Egg + Type: Petegg + Buy: 20 + - Id: 9032 + AegisName: Knife_Goblin_Egg + Name: Knife Goblin Egg + Type: Petegg + Buy: 20 + - Id: 9033 + AegisName: Flail_Goblin_Egg + Name: Flail Goblin Egg + Type: Petegg + Buy: 20 + - Id: 9034 + AegisName: Hammer_Goblin_Egg + Name: Hammer Goblin Egg + Type: Petegg + Buy: 20 + - Id: 9035 + AegisName: Red_Deleter_Egg + Name: Red Deleter Egg + Type: Petegg + Buy: 20 + - Id: 9036 + AegisName: Diabolic_Egg + Name: Diabolic Egg + Type: Petegg + Buy: 20 + - Id: 9037 + AegisName: Wanderer_Egg + Name: Wanderer Egg + Type: Petegg + Buy: 20 + - Id: 9038 + AegisName: New_Year_Doll_Egg + Name: New Year Doll Egg + Type: Petegg + Buy: 20 + - Id: 9039 + AegisName: Bacsojin_Egg + Name: Bacsojin Egg + Type: Petegg + Buy: 20 + - Id: 9040 + AegisName: Civil_Servant_Egg + Name: Civil Servant Egg + Type: Petegg + Buy: 20 + - Id: 9041 + AegisName: Leaf_Cat_Egg + Name: Leaf Cat Egg + Type: Petegg + Buy: 20 + - Id: 9042 + AegisName: Loli_Ruri_Egg + Name: Loli Ruri Egg + Type: Petegg + Buy: 20 + - Id: 9043 + AegisName: Marionette_Egg + Name: Marionette Egg + Type: Petegg + Buy: 20 + - Id: 9044 + AegisName: Shinobi_Egg + Name: Shinobi Egg + Type: Petegg + Buy: 20 + - Id: 9045 + AegisName: Whisper_Egg + Name: Whisper Egg + Type: Petegg + Buy: 20 + - Id: 9046 + AegisName: Goblin_Leader_Egg + Name: Goblin Leader Egg + Type: Petegg + Buy: 20 + - Id: 9047 + AegisName: Wicked_Nymph_Egg + Name: Wicked Nymph Egg + Type: Petegg + Buy: 20 + - Id: 9048 + AegisName: Miyabi_Ningyo_Egg + Name: Miyabi Ningyo Egg + Type: Petegg + Buy: 20 + - Id: 9049 + AegisName: Dullahan_Egg + Name: Dullahan Egg + Type: Petegg + Buy: 20 + - Id: 9050 + AegisName: Medusa_Egg + Name: Medusa Egg + Type: Petegg + Buy: 20 + - Id: 9051 + AegisName: Stone_Shooter_Egg + Name: Stone Shooter Egg + Type: Petegg + Buy: 20 + - Id: 9052 + AegisName: Incubus_Egg + Name: Incubus Egg + Type: Petegg + Buy: 20 + - Id: 9053 + AegisName: Golem_Egg + Name: Golem Egg + Type: Petegg + Buy: 20 + - Id: 9054 + AegisName: Nightmare_Terror_Egg + Name: Nightmare Terror Egg + Type: Petegg + Buy: 20 + - Id: 9055 + AegisName: Succubus_Egg + Name: Succubus Egg + Type: Petegg + Buy: 20 + - Id: 9056 + AegisName: Imp_Egg + Name: Imp Egg + Type: Petegg + Buy: 20 + - Id: 9057 + AegisName: Egg_Of_Tiny + Name: Egg Of Tiny + Type: Petegg + Buy: 20 + - Id: 9058 + AegisName: Snow_Rabbit_Egg + Name: Christmas Snow Rabbit Egg + Type: Petegg + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 9059 + AegisName: Tikbalang_Pet + Name: Tikbalang Egg + Type: Petegg + Buy: 20 + - Id: 9060 + AegisName: Brownie_Egg + Name: Domovoi Egg + Type: Petegg + Buy: 20 + - Id: 9061 + AegisName: Marin_Egg + Name: Marin Egg + Type: Petegg + Buy: 20 + - Id: 9062 + AegisName: Novice_Poring_Egg + Name: Novice Poring Egg + Type: Petegg + Buy: 20 + - Id: 9063 + AegisName: Woodie_Egg + Name: Woodie Egg + Type: Petegg + Buy: 20 + - Id: 9064 + AegisName: Elephant_Egg + Name: Elephant Egg + Type: Petegg + Buy: 20 + - Id: 9065 + AegisName: Gorilla_Egg + Name: Gorilla Egg + Type: Petegg + Buy: 20 + - Id: 9066 + AegisName: Lion_Egg + Name: Lion Egg + Type: Petegg + Buy: 20 + - Id: 9067 + AegisName: Rhino_Egg + Name: Rhino Egg + Type: Petegg + Buy: 20 + - Id: 9068 + AegisName: Blue_Unicorn_Egg + Name: Blue Unicorn Egg + Type: Petegg + Buy: 20 + - Id: 9069 + AegisName: Mastering_Egg + Name: Mastering Egg + Type: Petegg + Buy: 20 + - Id: 9070 + AegisName: Savage_Egg + Name: Savage Egg + Type: Petegg + Buy: 20 + - Id: 9071 + AegisName: Grand_Peco_Peco_Egg + Name: Grand Peco Peco Egg + Type: Petegg + Buy: 20 + - Id: 9072 + AegisName: Orc_Hero_Egg + Name: Orc Hero Egg + Type: Petegg + Buy: 20 + - Id: 9073 + AegisName: Orc_Lord_Egg + Name: Orc Lord Egg + Type: Petegg + Buy: 20 + - Id: 9074 + AegisName: Rubylit_Egg + Name: Rubylit Egg + Type: Petegg + Buy: 20 + - Id: 9075 + AegisName: Sapphilit_Egg + Name: Sapphilit Egg + Type: Petegg + Buy: 20 + - Id: 9076 + AegisName: Emelit_Egg + Name: Emelit Egg + Type: Petegg + Buy: 20 + - Id: 9077 + AegisName: Topalit_Egg + Name: Topalit Egg + Type: Petegg + Buy: 20 + - Id: 9078 + AegisName: Amelit_Egg + Name: Amelit Egg + Type: Petegg + Buy: 20 + - Id: 9079 + AegisName: Mythlit_Egg + Name: Mythlit Egg + Type: Petegg + Buy: 20 + - Id: 9080 + AegisName: Tamadora_Egg + Name: Tamadora Egg + Type: Petegg + Buy: 20 + - Id: 9087 + AegisName: High_Orc_Egg + Name: High Orc Egg + Type: Petegg + Buy: 20 + - Id: 9088 + AegisName: Angeling_Egg + Name: Angeling Egg + Type: Petegg + Buy: 20 + - Id: 9089 + AegisName: Am_Mut_Egg + Name: Am Mut Egg + Type: Petegg + Buy: 20 + - Id: 9090 + AegisName: Little_Isis_Egg + Name: Little Isis Egg + Type: Petegg + Buy: 20 + - Id: 9091 + AegisName: Choco_Egg + Name: Choco Egg + Type: Petegg + Buy: 20 + - Id: 9092 + AegisName: Eggring_Egg + Name: Eggring Egg + Type: Petegg + Buy: 20 + - Id: 9093 + AegisName: Hyegun_Egg + Name: Hyegun Egg + Type: Petegg + Buy: 20 + - Id: 9094 + AegisName: Dr_Lunatic_Egg + Name: Leaf Lunatic Egg + Type: Petegg + Buy: 20 + - Id: 9095 + AegisName: Nine_Tail_Egg + Name: Nine Tail Egg + Type: Petegg + Buy: 20 + - Id: 9096 + AegisName: Cat_o_Nine_Tail_Egg + Name: Cat o Nine Tail Egg + Type: Petegg + Buy: 20 + - Id: 9097 + AegisName: Diabolic_2_Egg + Name: Diabolic Egg + Type: Petegg + Buy: 20 + - Id: 9098 + AegisName: Fire_Deleter_Egg + Name: Fire Deleter Egg + Type: Petegg + Buy: 20 + - Id: 9099 + AegisName: Teddy_Bear_Egg + Name: Teddy Bear Egg + Type: Petegg + Buy: 20 + - Id: 9100 + AegisName: Gremlin_Egg + Name: Gremlin Egg + Type: Petegg + Buy: 20 + - Id: 9101 + AegisName: Scatletoncarrier + Name: Scatleton's Cage + Type: Petegg + Buy: 20 + - Id: 9102 + AegisName: Mummy_Egg + Name: Mummy Egg + Type: Petegg + Buy: 20 + - Id: 9103 + AegisName: Willow_Egg + Name: Willow Egg + Type: Petegg + Buy: 20 + - Id: 9104 + AegisName: Roween_Egg + Name: Roween Egg + Type: Petegg + Buy: 20 + - Id: 9105 + AegisName: Hodremlin_Egg + Name: Hodremlin Egg + Type: Petegg + Buy: 20 + - Id: 9106 + AegisName: Metaller_Egg + Name: Metaller Egg + Type: Petegg + Buy: 20 + - Id: 9107 + AegisName: Ancient_Mummy_Egg + Name: Ancient Mummy Egg + Type: Petegg + Buy: 20 + - Id: 9108 + AegisName: Xm_Teddy_Bear_Egg + Name: Xmas Teddy Bear Egg + Type: Petegg + Buy: 20 + - Id: 9109 + AegisName: Sweet_Drops_Egg + Name: Sweet Drops Egg + Type: Petegg + Buy: 20 + - Id: 9111 + AegisName: Phreeoni_Egg + Name: Phreeoni Egg + Type: Petegg + Buy: 20 + - Id: 9112 + AegisName: Moonlight_Egg + Name: Moonlight Egg + Type: Petegg + Buy: 20 + - Id: 9113 + AegisName: Roost_Of_Skelion + Name: Roost Of Skelion + Type: Petegg + Buy: 20 + - Id: 9114 + AegisName: Pouring_Egg + Name: Pouring Egg + Type: Petegg + Buy: 20 + - Id: 9115 + AegisName: Bacsojin2_Egg_ + Name: Bacsojin Egg + Type: Petegg + Buy: 20 + - Id: 9116 + AegisName: Rigid_Nightmare_Terror_Egg + Name: Rigid Nightmare Terror Egg + Type: Petegg + Buy: 20 + - Id: 9117 + AegisName: Contaminated_Wanderer_Egg + Name: Contaminated Wanderer Egg + Type: Petegg + Buy: 20 + - Id: 9118 + AegisName: Aliot_Egg + Name: Aliot Egg + Type: Petegg + Buy: 20 + - Id: 9119 + AegisName: Alicel_Egg + Name: Alicel Egg + Type: Petegg + Buy: 20 + - Id: 9120 + AegisName: Aliza_Egg + Name: Aliza Egg + Type: Petegg + Buy: 20 + - Id: 9121 + AegisName: Orc_Hero_Egg_ + Name: Orc Hero Egg + Type: Petegg + Buy: 20 + - Id: 9122 + AegisName: Gloom_Under_Egg + Name: Gloom Under Night Egg + Type: Petegg + Buy: 20 + - Id: 9123 + AegisName: Ep_17_2_C_Admin1_Egg + Name: Child Admin Beta Egg + Type: Petegg + Buy: 20 + - Id: 9124 + AegisName: Ep_17_2_C_Admin2_Egg + Name: Child Admin Alpha Egg + Type: Petegg + Buy: 20 + - Id: 10001 + AegisName: Skull_Helm + Name: Skull Helm + Type: Petarmor + Buy: 20 + - Id: 10002 + AegisName: Monster_Oxygen_Mask + Name: Monster Oxygen Mask + Type: Petarmor + Buy: 20 + - Id: 10003 + AegisName: Transparent_Headgear + Name: Transparent Head Protector + Type: Petarmor + Buy: 20 + - Id: 10004 + AegisName: Pacifier + Name: Pacifier + Type: Petarmor + Buy: 20 + - Id: 10005 + AegisName: Wig + Name: Wig + Type: Petarmor + Buy: 20 + - Id: 10006 + AegisName: Queen's_Hair_Ornament + Name: Queen's Hair Ornament + Type: Petarmor + Buy: 20 + - Id: 10007 + AegisName: Silk_Ribbon + Name: Silk Ribbon + Type: Petarmor + Buy: 20 + - Id: 10008 + AegisName: Punisher + Name: Punisher + Type: Petarmor + Buy: 20 + - Id: 10009 + AegisName: Wild_Flower + Name: Wild Flower + Type: Petarmor + Buy: 20 + - Id: 10010 + AegisName: Battered_Pot + Name: Battered Pot + Type: Petarmor + Buy: 20 + - Id: 10011 + AegisName: Stellar_Hairpin + Name: Stellar Hairpin + Type: Petarmor + Buy: 20 + - Id: 10012 + AegisName: Tiny_Egg_Shell + Name: Tiny Egg Shell + Type: Petarmor + Buy: 20 + - Id: 10013 + AegisName: Backpack + Name: Backpack + Type: Petarmor + Buy: 1500 + - Id: 10014 + AegisName: Rocker_Glasses + Name: Rocker Glasses + Type: Petarmor + Buy: 2000 + - Id: 10015 + AegisName: Green_Lace + Name: Green Lace + Type: Petarmor + Buy: 20 + - Id: 10016 + AegisName: Golden_Bell + Name: Golden Bell + Type: Petarmor + Buy: 20 + - Id: 10017 + AegisName: Bark_Shorts + Name: Bark Shorts + Type: Petarmor + Buy: 20 + - Id: 10018 + AegisName: Monkey_Circlet + Name: Monkey Circlet + Type: Petarmor + Buy: 20 + - Id: 10019 + AegisName: Red_Muffler + Name: Red Scarf + Type: Petarmor + Buy: 20 + - Id: 10020 + AegisName: Sword_Of_Grave_Keeper + Name: Grave Keeper's Sword + Type: Petarmor + Buy: 20 + - Id: 10021 + AegisName: Round_Hair_Ornament + Name: Circular Headgear + Type: Petarmor + Buy: 20 + - Id: 10022 + AegisName: Golden_Earing + Name: Gold Earring + Type: Petarmor + Buy: 20 + - Id: 10023 + AegisName: Green_Lucky_Bag + Name: Green Jewel Bag + Type: Petarmor + Buy: 20 + - Id: 10024 + AegisName: Fashionable_Glasses + Name: Fashion Glasses + Type: Petarmor + Buy: 20 + - Id: 10025 + AegisName: Star_Hairband + Name: Hairband Of Stars + Type: Petarmor + Buy: 20 + - Id: 10026 + AegisName: Wine_On_Sleeve + Name: Tassel for Durumagi + Type: Petarmor + Buy: 20 + - Id: 10027 + AegisName: Spirit_Chain_ + Name: Pet Soul Ring + Type: Petarmor + Buy: 20 + - Id: 10028 + AegisName: Nice_Badge + Name: Beautiful Badges + Type: Petarmor + Buy: 20 + - Id: 10029 + AegisName: Jade_Trinket + Name: Jade Trinket + Type: Petarmor + Buy: 20 + - Id: 10030 + AegisName: Summer_Fan + Name: Summer Fan + Type: Petarmor + Buy: 20 + - Id: 10031 + AegisName: Death_Coil + Name: Ring Of Death + Type: Petarmor + Buy: 20 + - Id: 10032 + AegisName: Queen's_Coronet + Name: Queen's Coronet + Type: Petarmor + Buy: 20 + - Id: 10033 + AegisName: Apro_Hair + Name: Afro + Type: Petarmor + Buy: 20 + - Id: 10034 + AegisName: Ball_Mask + Name: Masked Ball + Type: Petarmor + Buy: 20 + - Id: 10035 + AegisName: Windup_Spring + Name: Spring + Type: Petarmor + Buy: 20 + - Id: 10036 + AegisName: Hell_Horn + Name: Horn Of Hell + Type: Petarmor + Buy: 20 + - Id: 10037 + AegisName: Black_Butterfly_Mask + Name: Black Butterfly Mask + Type: Petarmor + Buy: 20 + - Id: 10038 + AegisName: Horn_Protector + Name: Horn Barrier + Type: Petarmor + Buy: 20 + - Id: 10039 + AegisName: Tw_Backpack + Name: Tw Backpack + Type: Petarmor + Buy: 20 + - Id: 10040 + AegisName: Red_Bell_Necklace + Name: Red Bell Necklace + Type: Petarmor + Buy: 20 + - Id: 10041 + AegisName: Shiny_Star_Button + Name: Shiny Star Button + Type: Petarmor + Buy: 20 + - Id: 10042 + AegisName: Dark_Mane + Name: Dark Mane + Type: Petarmor + Buy: 20 + - Id: 13000 + AegisName: Jujube_Dagger + Name: Jujube Dagger + Type: Weapon + SubType: Dagger + Buy: 10000 + Weight: 600 + Attack: 39 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bAtkEle,Ele_Wind; + - Id: 13001 + AegisName: Dragon_Killer + Name: Dragon Killer + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 900 + Attack: 110 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 60 + Refineable: true + Script: | + bonus bIgnoreDefRace,RC_Dragon; bonus2 bExpAddRace,RC_Dragon,10; + - Id: 13002 + AegisName: Ginnungagap + Name: Ginnungagap + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 700 + Attack: 148 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Blind,500; bonus2 bAddEff2,Eff_Blind,50; + - Id: 13003 + AegisName: Coward + Name: Cowardice Blade + Type: Weapon + SubType: Dagger + Buy: 52000 + Weight: 700 + Attack: 80 + Range: 1 + Slots: 1 + Jobs: + Assassin: true + Ninja: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bDef,5; + - Id: 13004 + AegisName: Coward_ + Name: Cowardice Blade + Type: Weapon + SubType: Dagger + Buy: 52000 + Weight: 700 + Attack: 80 + Range: 1 + Slots: 2 + Jobs: + Assassin: true + Ninja: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bDef,5; + - Id: 13005 + AegisName: Angelwing_Short_Sword + Name: Angelic Wing Dagger + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 600 + Attack: 120 + Range: 1 + Slots: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 50 + Refineable: true + - Id: 13006 + AegisName: Khukri + Name: Khukri + Type: Weapon + SubType: Dagger + Buy: 240000 + Weight: 600 + Attack: 150 + Range: 1 + Jobs: + Ninja: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 65 + Refineable: true + Script: | + bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Curse,1000; + - Id: 13007 + AegisName: Jitte + Name: Jitte + Type: Weapon + SubType: Dagger + Buy: 20000 + Weight: 400 + Attack: 70 + Range: 1 + Jobs: + Ninja: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 35 + Refineable: true + Script: | + bonus bBreakWeaponRate,200; + - Id: 13008 + AegisName: Jitte_ + Name: Jitte + Type: Weapon + SubType: Dagger + Buy: 20000 + Weight: 400 + Attack: 70 + Range: 1 + Slots: 1 + Jobs: + Ninja: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 35 + Refineable: true + Script: | + bonus bBreakWeaponRate,200; + - Id: 13009 + AegisName: Kamaitachi + Name: Kamaitachi + Type: Weapon + SubType: Dagger + Buy: 48000 + Weight: 900 + Attack: 125 + Range: 2 + Jobs: + Ninja: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bAtkEle,Ele_Wind; bonus bCritical,3; bonus bAspdRate,3; + - Id: 13010 + AegisName: Asura + Name: Asura + Type: Weapon + SubType: Dagger + Buy: 3000 + Weight: 600 + Attack: 50 + MagicAttack: 50 + Range: 1 + Slots: 2 + Jobs: + Ninja: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 12 + Refineable: true + - Id: 13011 + AegisName: Asura_ + Name: Asura + Type: Weapon + SubType: Dagger + Buy: 3000 + Weight: 600 + Attack: 50 + MagicAttack: 50 + Range: 1 + Slots: 3 + Jobs: + Ninja: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 12 + Refineable: true + - Id: 13012 + AegisName: Murasame + Name: Murasame + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 700 + Attack: 95 + Range: 1 + Slots: 1 + Jobs: + Ninja: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 24 + Refineable: true + Script: | + bonus bAtkEle,Ele_Water; bonus2 bCriticalAddRace,RC_DemiHuman,10; bonus2 bCriticalAddRace,RC_Player_Human,10; + - Id: 13013 + AegisName: Murasame_ + Name: Murasame + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 700 + Attack: 95 + Range: 1 + Slots: 2 + Jobs: + Ninja: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 24 + Refineable: true + Script: | + bonus bAtkEle,Ele_Water; bonus2 bCriticalAddRace,RC_DemiHuman,10; bonus2 bCriticalAddRace,RC_Player_Human,10; + - Id: 13014 + AegisName: Hakujin + Name: Hakujin + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 800 + Attack: 120 + Range: 1 + Jobs: + Ninja: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 42 + Refineable: true + Script: | + bonus bInt,2; bonus3 bAutoSpell,"AL_HEAL",1,10; + - Id: 13015 + AegisName: Hakujin_ + Name: Hakujin + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 800 + Attack: 120 + Range: 1 + Slots: 1 + Jobs: + Ninja: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 42 + Refineable: true + Script: | + bonus bInt,2; bonus3 bAutoSpell,"AL_HEAL",1,10; + - Id: 13016 + AegisName: Poison_Knife_ + Name: Poison Knife + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 800 + Attack: 64 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 65 + Refineable: true + Script: | + bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,3000; + - Id: 13017 + AegisName: House_Auger_ + Name: Ice Pick + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 600 + Attack: 70 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 36 + Refineable: true + Script: | + bonus bDefRatioAtkClass,Class_All; + - Id: 13018 + AegisName: Sucsamad_ + Name: Sucsamad + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 800 + Attack: 140 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 36 + Refineable: true + Script: | + bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Wind,10; bonus bUnbreakableWeapon; + - Id: 13019 + AegisName: Ginnungagap_ + Name: Ginnungagap + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 700 + Attack: 148 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Blind,500; bonus2 bAddEff2,Eff_Blind,50; + - Id: 13020 + AegisName: Warrior_Balmung_ + Name: Warrior's Balmung + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 1000 + Attack: 170 + Range: 1 + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,5; + - Id: 13021 + AegisName: Combat_Knife_C + Name: Combat Knife + Type: Weapon + SubType: Dagger + Buy: 1 + Attack: 129 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Demon,-10; bonus bMaxSPrate,10; bonus bSPDrainValue,3; /*Gold PC Room: bonus bBaseAtk,10; bonus bMatk,10;*/ + - Id: 13022 + AegisName: Counter_Dagger_C + Name: Dagger of Counter + Type: Weapon + SubType: Dagger + Buy: 1 + Attack: 209 + Range: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bCriticalRate,90; /*Gold PC Room: bonus bBaseAtk,10; bonus bMatk,10;*/ + - Id: 13023 + AegisName: Asura_C + Name: Ashura + Type: Weapon + SubType: Dagger + Buy: 1 + Attack: 120 + MagicAttack: 98 + Range: 1 + Jobs: + Ninja: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*Gold PC Room: bonus bBaseAtk,10; bonus bMatk,10; */ + - Id: 13024 + AegisName: Sword_Breaker_C + Name: Refined Swordbreaker + Type: Weapon + SubType: Dagger + Buy: 2 + Attack: 105 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bBreakWeaponRate,500; + - Id: 13025 + AegisName: Mail_Breaker_C + Name: Refined Mailbreaker + Type: Weapon + SubType: Dagger + Buy: 2 + Attack: 105 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bBreakArmorRate,500; + - Id: 13026 + AegisName: Moonlight_Sword_C + Name: Moonlight Dagger + Type: Weapon + SubType: Dagger + Buy: 2 + Attack: 85 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxSPrate,10; bonus bSPDrainValue,3; + - Id: 13027 + AegisName: Scalpel + Name: Scalpel + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 500 + Attack: 120 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus2 bAddEff,Eff_Bleeding,500; + - Id: 13028 + AegisName: Tooth_Blade + Name: Tooth Blade + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 700 + Attack: 130 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 55 + Refineable: true + Script: | + if(getrefine()>=9){ bonus3 bAutoSpell,"NPC_SLOWCAST",2,70; } else bonus3 bAutoSpell,"NPC_SLOWCAST",1,50; + - Id: 13029 + AegisName: Prinsence_Knife + Name: Prinsense Knife + Type: Weapon + SubType: Dagger + Buy: 20 + Attack: 120 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,50; + - Id: 13030 + AegisName: Dragon_Killer_ + Name: Dragon Killer + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 900 + Attack: 110 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 60 + Refineable: true + Script: | + bonus bIgnoreDefRace,RC_Dragon; bonus2 bExpAddRace,RC_Dragon,10; + - Id: 13031 + AegisName: Sword_Breaker_ + Name: Swordbreaker + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 1000 + Attack: 70 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 36 + Refineable: true + Script: | + bonus bBreakWeaponRate,500; + - Id: 13032 + AegisName: Mail_Breaker_ + Name: Mailbreaker + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 1000 + Attack: 70 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 36 + Refineable: true + Script: | + bonus bBreakArmorRate,500; + - Id: 13033 + AegisName: Assasin_Dagger_ + Name: Assassin Dagger + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 600 + Attack: 140 + Range: 1 + Slots: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 36 + Refineable: true + Script: | + bonus bMaxHPrate,20; bonus bMaxSPrate,15; bonus bAspdRate,2; bonus bAtkEle,Ele_Dark; + - Id: 13034 + AegisName: Twilight_Desert + Name: Desert Twilight + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 600 + Attack: 130 + Range: 1 + Slots: 2 + Jobs: + Assassin: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 70 + Refineable: true + - Id: 13035 + AegisName: Sandstorm + Name: Sandstorm + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 600 + Attack: 50 + Range: 1 + Slots: 4 + Jobs: + Assassin: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 70 + Refineable: true + - Id: 13036 + AegisName: BF_Dagger1 + Name: Brave Assassin's Damascus + Type: Weapon + SubType: Dagger + Buy: 20 + Attack: 120 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,1; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(Class==Job_Ninja||Class==Job_Rogue||Class==Job_Stalker) bonus bMatk,90; + - Id: 13037 + AegisName: BF_Dagger2 + Name: Valorous Assassin's Damascus + Type: Weapon + SubType: Dagger + Buy: 20 + Attack: 120 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,1; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus bUnbreakableWeapon; autobonus "{ bonus bDefRatioAtkClass,Class_All; }",10,6000,BF_WEAPON,"{ specialeffect2 EF_HASTEUP; }"; if(Class==Job_Ninja||Class==Job_Rogue||Class==Job_Stalker) bonus bMatk,90; + - Id: 13038 + AegisName: Dagger_Of_Hunter + Name: Dagger of Hunter + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 700 + Attack: 120 + Range: 1 + Slots: 3 + Jobs: + Rogue: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bStr,1; bonus bAgi,2; bonus bDex,1; bonus4 bAutoSpellOnSkill,"RG_BACKSTAP","SM_BASH",10,100; bonus2 bSkillAtk,"RG_BACKSTAP",20; + - Id: 13039 + AegisName: Ivory_Knife + Name: Ivory Knife + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 700 + Attack: 130 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 50 + Refineable: true + Script: | + bonus bAgi,2; bonus bAspdRate,3; bonus2 bAddEff,Eff_Bleeding,300; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,30; + - Id: 13040 + AegisName: N_Cutter + Name: Novice Cutter + Type: Weapon + SubType: Dagger + Attack: 50 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + - Id: 13041 + AegisName: N_Main_Gauche + Name: Novice Main Gauche + Type: Weapon + SubType: Dagger + Attack: 63 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + - Id: 13042 + AegisName: Krieger_Dagger1 + Name: Glorious Gladius + Type: Weapon + SubType: Dagger + Buy: 20 + Attack: 120 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus3 bAutoSpell,"PR_LEXDIVINA",1,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) bonus4 bAutoSpellOnSkill,"RG_RAID","NPC_WIDEBLEEDING",1,250; + - Id: 13043 + AegisName: Fortune_Sword_I + Name: Fortune Sword + Type: Weapon + SubType: Dagger + Attack: 120 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bFlee2,20; bonus bLuk,5; + - Id: 13044 + AegisName: House_Auger_I + Name: Ice Pick + Type: Weapon + SubType: Dagger + Attack: 105 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDefRatioAtkClass,Class_All; autobonus "{ bonus bFlee,20; }",10,10000,BF_WEAPON|BF_MISC; + - Id: 13045 + AegisName: Kamaitachi_I + Name: Kamaitachi + Type: Weapon + SubType: Dagger + Attack: 155 + Range: 2 + Jobs: + Ninja: true + Locations: + Right_Hand: true + WeaponLevel: 4 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bUnbreakableWeapon; bonus bCritical,10; bonus bAspdRate,5; bonus bAtkEle,Ele_Wind; + - Id: 13046 + AegisName: Krieg + Name: Krierg + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 500 + Attack: 110 + Range: 1 + Slots: 3 + Jobs: + Assassin: true + Rogue: true + Thief: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 50 + Refineable: true + Script: | + bonus3 bAddEffOnSkill,"RG_BACKSTAP",Eff_Bleeding,1000; bonus2 bSkillAtk,"RG_BACKSTAP",15; + - Id: 13047 + AegisName: Weihna + Name: Weihna + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 500 + Attack: 135 + Range: 1 + Slots: 2 + Jobs: + Assassin: true + Rogue: true + Thief: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 50 + Refineable: true + Script: | + bonus3 bAddEffOnSkill,"RG_RAID",Eff_Poison,100; autobonus "{ bonus2 bAddClass,Class_All,10; }",5,5000,BF_WEAPON|BF_SHORT,"{ specialeffect2 EF_POTION_BERSERK; }"; + - Id: 13048 + AegisName: Damascus_C + Name: Damascus + Type: Weapon + SubType: Dagger + Attack: 153 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddSize,Size_All,40; + - Id: 13049 + AegisName: Lacma + Name: Lacma + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 650 + Attack: 45 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + Script: | + .@r = getrefine(); if (.@r>=3) { bonus bBaseAtk,40; bonus bMatk,40; } if(.@r>=6){ bonus2 bAddSize,Size_Medium,8; bonus2 bMagicAddSize,Size_Medium,8; autobonus "{ bonus bNoSizeFix; }",10,5000; } if(.@r>=9){ bonus2 bAddSize,Size_Medium,20; bonus2 bMagicAddSize,Size_Medium,20; } if(.@r>12){ bonus bNoSizeFix; } + - Id: 13050 + AegisName: P_Dagger1 + Name: Eden Dagger I + Type: Weapon + SubType: Dagger + Attack: 124 + MagicAttack: 60 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 26 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 13051 + AegisName: P_Dagger2 + Name: Eden Dagger II + Type: Weapon + SubType: Dagger + Attack: 158 + MagicAttack: 70 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 40 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 13052 + AegisName: Tourist_Dagger + Name: Tourist Dagger + Type: Weapon + SubType: Dagger + Weight: 500 + Attack: 51 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAgi,2; + - Id: 13053 + AegisName: F_Moonlight_Sword_C + Name: Moonlight Sword + Type: Weapon + SubType: Dagger + Buy: 2 + Attack: 85 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + Script: | + bonus bSPDrainValue,3; bonus bMaxSPrate,10; + - Id: 13054 + AegisName: F_Combat_Knife_C + Name: Combat Knife + Type: Weapon + SubType: Dagger + Buy: 1 + Attack: 129 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 1 + Script: | + bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus bSPDrainValue,3; bonus bMaxSPrate,10; + - Id: 13055 + AegisName: F_Asura_C + Name: Asura + Type: Weapon + SubType: Dagger + Buy: 1 + Attack: 120 + Range: 1 + Jobs: + Ninja: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Script: | + bonus bMatkRate,15; + - Id: 13056 + AegisName: F_Counter_Dagger_C + Name: Counter Dagger + Type: Weapon + SubType: Dagger + Buy: 1 + Attack: 209 + Range: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 1 + Script: | + bonus bCriticalRate,90; + - Id: 13057 + AegisName: E_Moonlight_Sword_C + Name: Moonlight Sword + Type: Weapon + SubType: Dagger + Buy: 2 + Attack: 85 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + - Id: 13058 + AegisName: E_Combat_Knife_C + Name: Combat Knife + Type: Weapon + SubType: Dagger + Buy: 1 + Attack: 129 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 1 + - Id: 13059 + AegisName: E_Asura_C + Name: Asura + Type: Weapon + SubType: Dagger + Buy: 1 + Attack: 120 + Range: 1 + Jobs: + Ninja: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + - Id: 13060 + AegisName: E_Counter_Dagger_C + Name: Counter Dagger + Type: Weapon + SubType: Dagger + Buy: 1 + Attack: 209 + Range: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 1 + - Id: 13061 + AegisName: Black_Wing + Name: Black Wing + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 600 + Attack: 142 + Range: 1 + Slots: 1 + Jobs: + Rogue: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 102 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"SC_FATALMENACE",30; if(.@r>=6){ bonus2 bSkillAtk,"SC_FATALMENACE",.@r*2; bonus bMatkRate,(.@r*3); } + - Id: 13062 + AegisName: Ancient_Dagger + Name: Ancient Dagger + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 600 + Attack: 107 + MagicAttack: 120 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 120 + Refineable: true + Script: | + bonus bMaxSP,100; bonus bSPrecovRate,5; bonus2 bAddEff2,Eff_Curse,20; bonus3 bAddEff,Eff_Curse,20,ATF_SELF; + - Id: 13063 + AegisName: Adventure_Knife + Name: Adventure Knife + Type: Weapon + SubType: Dagger + Attack: 60 + Range: 1 + Jobs: + Assassin: true + Ninja: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Script: | + bonus bUnbreakableWeapon; + - Id: 13064 + AegisName: Academy_Knife + Name: Academy Knife + Type: Weapon + SubType: Dagger + Weight: 700 + Attack: 110 + Range: 1 + Slots: 1 + Jobs: + Assassin: true + Ninja: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bUnbreakableWeapon; + - Id: 13065 + AegisName: Academy_Eti_Knife + Name: Academy Eti Knife + Type: Weapon + SubType: Dagger + Weight: 1200 + Attack: 120 + Range: 1 + Slots: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bUnbreakableWeapon; + - Id: 13066 + AegisName: P_Dagger3 + Name: Eden Dagger III + Type: Weapon + SubType: Dagger + Attack: 165 + MagicAttack: 80 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 60 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 13067 + AegisName: Caress + Name: Keris + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 700 + Attack: 107 + MagicAttack: 70 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 30 + Refineable: true + Script: | + bonus2 bHPDrainRate,20,10; + - Id: 13068 + AegisName: Saurel + Name: Pompano + Type: Weapon + SubType: Dagger + Attack: 160 + MagicAttack: 100 + Range: 3 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 50 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAgi,3; bonus bUnbreakableWeapon; 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; } + - Id: 13069 + AegisName: Aztoe_Nail + Name: As-nail + Type: Weapon + SubType: Dagger + Buy: 56000 + Weight: 500 + Attack: 160 + MagicAttack: 80 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 110 + Refineable: true + Script: | + bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Freeze,100+(getrefine()*50); + - Id: 13070 + AegisName: Scarletto_Nail + Name: Scarlet-nail + Type: Weapon + SubType: Dagger + Buy: 56000 + Weight: 500 + Attack: 160 + MagicAttack: 80 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 110 + Refineable: true + Script: | + bonus bAtkEle,Ele_Fire; bonus2 bAddEff,Eff_Stone,100+(getrefine()*50); + - Id: 13071 + AegisName: Upg_Dagger + Name: Upg Dagger + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 600 + Attack: 55 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + Script: | + .@r = getrefine(); bonus bBaseAtk,(.@r*10); bonus bMatk,(.@r*5); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*5); + - Id: 13072 + AegisName: Velum_Damascus + Name: Vellum Damascus + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 1000 + Attack: 180 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 95 + Refineable: true + Script: | + bonus4 bSetDefRace,RC_Player_Human,10000,5000,1; bonus4 bSetMDefRace,RC_Player_Human,10000,5000,1; bonus bAspdRate,getrefine(); + - Id: 13073 + AegisName: Counter_Dagger_ + Name: Counter Dagger + Type: Weapon + SubType: Dagger + Buy: 120000 + Weight: 550 + Attack: 140 + Range: 1 + Slots: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bCritical,90; + - Id: 13074 + AegisName: Ninja_Cutter + Name: Ninja Sword Prototype + Type: Weapon + SubType: Dagger + Range: 1 + Jobs: + Ninja: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 99 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 13075 + AegisName: Kurenai + Name: Kurenai + Type: Weapon + SubType: Dagger + Buy: 5000 + Weight: 700 + Attack: 130 + Range: 1 + Jobs: + Ninja: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 99 + Refineable: true + Script: | + bonus bInt,3; + - Id: 13076 + AegisName: Raksasa_Dagger + Name: Nachal Sword + Type: Weapon + SubType: Dagger + Buy: 40000 + Weight: 600 + Attack: 120 + MagicAttack: 100 + Range: 1 + Slots: 1 + Jobs: + Ninja: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 110 + Refineable: true + Script: | + bonus bInt,3; + - Id: 13077 + AegisName: Kagekiri + Name: Kagekiri + Type: Weapon + SubType: Dagger + Buy: 40000 + Weight: 600 + Attack: 50 + MagicAttack: 120 + Range: 1 + Jobs: + Ninja: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + - Id: 13078 + AegisName: Mikatsuki + Name: Mikacheuki + Type: Weapon + SubType: Dagger + Buy: 40000 + Weight: 600 + Attack: 50 + MagicAttack: 120 + Range: 1 + Slots: 1 + Jobs: + Ninja: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bUseSPrate,-5; bonus bVariableCastrate,-5; + - Id: 13079 + AegisName: Metal_Dagger + Name: Metal Dagger + Type: Weapon + SubType: Dagger + Buy: 20 + Attack: 55 + Slots: 1 + Jobs: + Archer: true + Assassin: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + SoulLinker: true + SuperNovice: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,(.@r*5); bonus bMatk,(.@r*2); .@i = min(BaseLevel/10,12); if(.@i>2) bonus bBaseAtk,((.@i-2)*5); + - Id: 13081 + AegisName: Octo_kitchen_Knife + Name: Discount knife Octopus + Type: Weapon + SubType: Dagger + Buy: 200000 + Weight: 700 + Attack: 140 + Slots: 3 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 105 + Refineable: true + Script: | + .@r = getrefine(); bonus bHit,.@r; + - Id: 13083 + AegisName: TE_Woe_Knife + Name: TE Woe Knife + Type: Weapon + SubType: Dagger + Attack: 100 + MagicAttack: 100 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 40 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Silence,3000; + - Id: 13085 + AegisName: Volcano_Knife + Name: Volcano Knife + Type: Weapon + SubType: Dagger + Buy: 10 + Weight: 200 + Attack: 80 + Jobs: + Archer: true + Mage: true + Merchant: true + Ninja: true + SoulLinker: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 60 + Script: | + bonus bAtkEle,Ele_Fire; bonus bAgi,2; bonus bMaxHPrate,-2; bonus2 bSubEle,Ele_Fire,2; bonus2 bSubEle,Ele_Water,-5; .@r = getrefine(); if(.@r>=7){ bonus bMaxHPrate,.@r-6; bonus2 bSubEle,Ele_Fire,3; } + - Id: 13086 + AegisName: Goldsmithing_Dagger + Name: Goldsmithing Dagger + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 500 + Attack: 35 + MagicAttack: 25 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + - Id: 13088 + AegisName: Greater_Lease + Name: Greater Lease + Type: Weapon + SubType: Dagger + Buy: 10 + Weight: 500 + Attack: 110 + MagicAttack: 50 + Slots: 1 + Jobs: + Archer: true + Mage: true + Merchant: true + Ninja: true + SoulLinker: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 30 + Refineable: true + Script: | + .@r = getrefine(); if (.@r >= 5) bonus bMatk,30; if (.@r >= 7) bonus bMatk,40; if (.@r >= 9) bonus bMatk,50; + - Id: 13089 + AegisName: FaceWorm_Leg + Name: Faceworm Leg + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 500 + Attack: 110 + MagicAttack: 50 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 24 + Refineable: true + Script: | + bonus bAtkEle,Ele_Poison; autobonus "{}",30,5000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; active_transform 2528,5000; }"; + - Id: 13090 + AegisName: FaceWormQueen_Leg + Name: Faceworm Queen Leg + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 500 + Attack: 180 + MagicAttack: 120 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bInt,3; autobonus "{ bonus3 bAutoSpell,\"NPC_EARTHQUAKE\",1,200; }",8,5000,BF_NORMAL,"{ specialeffect2 EF_POTION_BERSERK; active_transform 2529,5000; }"; + - Id: 13092 + AegisName: RWC_Memory_Knife + Name: RWC Memory Knife + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 650 + Attack: 50 + Range: 1 + Slots: 1 + Jobs: + Acolyte: true + Mage: true + Merchant: true + Ninja: true + Novice: true + SoulLinker: true + SuperNovice: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + Script: | + .@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; } + - Id: 13093 + AegisName: Thanos_Dagger + Name: Thanos Dagger + Type: Weapon + SubType: Dagger + Buy: 10 + Weight: 800 + Attack: 100 + MagicAttack: 130 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 120 + Refineable: true + Script: | + bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000; + UnEquipScript: | + heal -1000,0; + - Id: 13094 + AegisName: Devil_Pierced_Dagger + Name: Evil Slayer Stabber Dagger + Type: Weapon + SubType: Dagger + Weight: 900 + Attack: 120 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 100 + Refineable: true + Script: | + bonus2 bAddRace,RC_Undead,10; bonus2 bAddRace,RC_Demon,10; .@r = getrefine(); if(.@r>=9) { .@dmg = 5; if(.@r>=12) { .@dmg += 7; } bonus2 bAddClass,Class_All,.@dmg; } + - Id: 13096 + AegisName: Half_BF_Dagger2 + Name: Half BF Dagger2 + Type: Weapon + SubType: Dagger + Buy: 20 + Attack: 120 + Range: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bStr,1; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon; 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; + - Id: 13097 + AegisName: Ru_Blue_Dagger + Name: Blue Dagger + Type: Weapon + SubType: Dagger + Buy: 10 + Weight: 1000 + Attack: 160 + Range: 1 + Slots: 1 + Jobs: + Rogue: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bStr,5; bonus bInt,5; + - Id: 13098 + AegisName: Ru_Blue_Ashura + Name: Blue Ashura + Type: Weapon + SubType: Dagger + Buy: 10 + Weight: 1000 + Attack: 150 + MagicAttack: 150 + Range: 1 + Slots: 1 + Jobs: + Ninja: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 100 + Refineable: true + - Id: 13099 + AegisName: Ru_Blue_Knife + Name: Blue Knife + Type: Weapon + SubType: Dagger + Buy: 10 + Weight: 500 + Attack: 160 + Range: 1 + Slots: 1 + Jobs: + Sage: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bVit,5; bonus bInt,5; + - Id: 13100 + AegisName: Six_Shooter + Name: Six Shooter + Type: Weapon + SubType: Revolver + Buy: 4500 + Weight: 400 + Attack: 30 + Range: 7 + Slots: 1 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 10 + Refineable: true + Script: | + bonus bHit,-10; + - Id: 13101 + AegisName: Six_Shooter_ + Name: Six Shooter + Type: Weapon + SubType: Revolver + Buy: 4500 + Weight: 400 + Attack: 30 + Range: 7 + Slots: 2 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 10 + Refineable: true + Script: | + bonus bHit,-10; + - Id: 13102 + AegisName: Crimson_Bolt + Name: Crimson Bolt + Type: Weapon + SubType: Revolver + Buy: 20000 + Weight: 450 + Attack: 45 + Range: 7 + Slots: 1 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 35 + Refineable: true + Script: | + bonus bHit,-10; + - Id: 13103 + AegisName: Crimson_Bolt_ + Name: Crimson Bolt + Type: Weapon + SubType: Revolver + Buy: 20000 + Weight: 450 + Attack: 45 + Range: 7 + Slots: 2 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 35 + Refineable: true + Script: | + bonus bHit,-10; + - Id: 13104 + AegisName: The_Garrison + Name: Garrison + Type: Weapon + SubType: Revolver + Buy: 48000 + Weight: 500 + Attack: 70 + Range: 7 + Slots: 1 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bHit,-10; + - Id: 13105 + AegisName: The_Garrison_ + Name: Garrison + Type: Weapon + SubType: Revolver + Buy: 48000 + Weight: 500 + Attack: 70 + Range: 7 + Slots: 2 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bHit,-10; + - Id: 13106 + AegisName: Gold_Lux + Name: Gold Lux + Type: Weapon + SubType: Revolver + Buy: 100000 + Weight: 500 + Attack: 20 + Range: 7 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 12 + Refineable: true + Script: | + bonus bHit,-10; if(getskilllv("GS_GLITTERING")>0) bonus3 bAutoSpell,"GS_GLITTERING",getskilllv("GS_GLITTERING"),100; + - Id: 13107 + AegisName: Wasteland_Outlaw + Name: Wasteland's Outlaw + Type: Weapon + SubType: Revolver + Buy: 20 + Weight: 580 + Attack: 68 + Range: 7 + Slots: 2 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bHit,readparam(bAgi)/10; bonus bAspdRate,readparam(bAgi)/14; + - Id: 13108 + AegisName: BF_Pistol1 + Name: Soldier Revolver + Type: Weapon + SubType: Revolver + Attack: 70 + Range: 7 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,2; bonus bHit,-10; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; autobonus "{ bonus bAspdRate,100; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; bonus bUnbreakableWeapon; + - Id: 13109 + AegisName: Wasteland_Outlaw_C + Name: Wasteland Outlaw + Type: Weapon + SubType: Revolver + Buy: 20 + Attack: 100 + Range: 7 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bHit,readparam(bAgi)/10; bonus bAspdRate,readparam(bAgi)/14; bonus2 bAddClass,Class_All,40; + - Id: 13110 + AegisName: Krieger_Pistol1 + Name: Glorious Pistol + Type: Weapon + SubType: Revolver + Attack: 80 + Range: 7 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5){ bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) { bonus4 bAutoSpellOnSkill,"GS_RAPIDSHOWER","GS_GLITTERING",1,1000; bonus2 bSkillAtk,"GS_RAPIDSHOWER",.@r*2; } + - Id: 13111 + AegisName: Sharpshooter_Revolver + Name: Sharpshooter Revolver + Type: Weapon + SubType: Revolver + Buy: 20 + Attack: 105 + Range: 7 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,2; bonus2 bSkillAtk,"GS_DESPERADO",25; + - Id: 13112 + AegisName: P_Revolver1 + Name: Eden Revlover I + Type: Weapon + SubType: Revolver + Attack: 44 + Range: 7 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 26 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bHit,-5; + - Id: 13113 + AegisName: P_Revolver2 + Name: Eden Revlover II + Type: Weapon + SubType: Revolver + Attack: 60 + Range: 7 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 40 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bHit,-5; + - Id: 13114 + AegisName: P_Revolver3 + Name: Eden Revolver III + Type: Weapon + SubType: Revolver + Attack: 76 + Range: 7 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 60 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bHit,-5; + - Id: 13115 + AegisName: Upg_Revolver + Name: Upg Revolver + Type: Weapon + SubType: Revolver + Buy: 20 + Weight: 500 + Attack: 35 + Range: 7 + Slots: 1 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + Script: | + .@r = getrefine(); bonus bBaseAtk,(.@r*5); bonus bLongAtkRate,(.@r*2); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*5); + - Id: 13116 + AegisName: Novice_Revolver + Name: Novice Revolver + Type: Weapon + SubType: Revolver + Weight: 500 + Attack: 20 + Range: 7 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Script: | + bonus bHit,-5; + - Id: 13117 + AegisName: TE_Woe_Pistol + Name: TE Woe Pistol + Type: Weapon + SubType: Revolver + Attack: 60 + Range: 7 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 40 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Curse,3000; + - Id: 13118 + AegisName: Tiny_Flame + Name: Fading Flame + Type: Weapon + SubType: Revolver + Buy: 1 + Weight: 100 + Range: 7 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 13119 + AegisName: Freedom_Flame + Name: Freedom Flame + Type: Weapon + SubType: Revolver + Buy: 1 + Weight: 100 + Attack: 100 + Range: 7 + Slots: 2 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 99 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 13120 + AegisName: H_FEATHER_H_FIRE + Name: Heaven's Feather & Hell's Fire + Type: Weapon + SubType: Revolver + Buy: 1200000 + Weight: 800 + Attack: 150 + Range: 9 + Slots: 1 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 99 + Refineable: true + Script: | + bonus2 bSkillAtk,"GS_DESPERADO",20; bonus2 bAddEff,Eff_Burning,200; + - Id: 13122 + AegisName: ALTAIR_ARES + Name: Altair & Ares + Type: Weapon + SubType: Revolver + Buy: 1450000 + Weight: 1000 + Attack: 200 + Range: 9 + Jobs: + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 140 + Refineable: true + Script: | + bonus bHit,5; bonus bAspdRate,10; bonus bLongAtkRate,30; + - Id: 13124 + AegisName: ALTAIR_ARES_ + Name: Altair & Ares + Type: Weapon + SubType: Revolver + Buy: 1450000 + Weight: 1000 + Attack: 200 + Range: 9 + Slots: 1 + Jobs: + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 140 + Refineable: true + Script: | + bonus bHit,5; bonus bAspdRate,10; bonus bLongAtkRate,30; + - Id: 13125 + AegisName: Metal_Revolver + Name: Metal Revolver + Type: Weapon + SubType: Revolver + Attack: 30 + Range: 7 + Slots: 1 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,3*.@r; bonus bLongAtkRate,1; if (BaseLevel >= 20) { bonus bBaseAtk,3*(min(BaseLevel,120)/10); } + - Id: 13126 + AegisName: Infinity_Pistol + Name: Infinity Pistol + Type: Weapon + SubType: Revolver + Buy: 10 + Weight: 500 + Attack: 175 + Range: 7 + Slots: 1 + Jobs: + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 13127 + AegisName: Crimson_Revolver + Name: Crimson Revolver + Type: Weapon + SubType: Revolver + Buy: 20 + Weight: 1000 + Attack: 100 + Range: 7 + Slots: 2 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,(.@r<=15?pow(.@r,2):225); if(BaseLevel>=70){ bonus bBaseAtk,(BaseLevel/10)*5; } + - Id: 13128 + AegisName: Revolver_of_Vicious_Mind + Name: Revolver of Vicious Mind + Type: Weapon + SubType: Revolver + Buy: 20 + Weight: 1500 + Attack: 150 + Range: 7 + Slots: 1 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 160 + Refineable: true + Script: | + bonus bAtk,pow(min(getrefine(),15),2); + - Id: 13129 + AegisName: Unity_Revolver + Name: Unity Revolver + Type: Weapon + SubType: Revolver + Buy: 20 + Weight: 500 + Attack: 95 + Range: 7 + Slots: 1 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bBaseAtk,pow(getrefine(),2)*125/100; + - Id: 13138 + AegisName: Dark_Rose + Name: Dark Rose + Type: Weapon + SubType: Revolver + Buy: 20 + Weight: 1800 + Attack: 150 + Range: 7 + Slots: 2 + Jobs: + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 120 + Refineable: true + Script: | + .@r = getrefine(); bonus bAspdRate,10; if (.@r >= 7) { bonus bLongAtkRate,15; if (.@r >= 9) { bonus bAspd,1; } } + - Id: 13146 + AegisName: Calf_Deathadder + Name: Calf Deathadder + Type: Weapon + SubType: Revolver + Weight: 1400 + Attack: 170 + Range: 7 + Slots: 2 + Jobs: + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 150 + Refineable: true + Script: | + .@r = getrefine(); bonus bAspdRate,10; bonus bLongAtkRate,(.@r/2)*5 + (.@r > 11 ? 5 : 0); if(.@r > 6){ bonus bAspdRate,5; } if(.@r > 8){ bonus2 bSkillAtk,"RL_FIREDANCE",25; } + - Id: 13150 + AegisName: Branch + Name: Branch + Type: Weapon + SubType: Rifle + Buy: 3000 + Weight: 500 + Attack: 50 + Range: 9 + Slots: 3 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + - Id: 13151 + AegisName: The_Cyclone + Name: Cyclone + Type: Weapon + SubType: Rifle + Buy: 17500 + Weight: 700 + Attack: 120 + Range: 9 + Slots: 1 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 24 + Refineable: true + Script: | + bonus bHit,10; bonus bCritical,10; + - Id: 13152 + AegisName: The_Cyclone_ + Name: Cyclone + Type: Weapon + SubType: Rifle + Buy: 17500 + Weight: 700 + Attack: 120 + Range: 9 + Slots: 2 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 24 + Refineable: true + Script: | + bonus bHit,10; bonus bCritical,10; + - Id: 13153 + AegisName: Dusk + Name: Dusk + Type: Weapon + SubType: Rifle + Buy: 23500 + Weight: 750 + Attack: 150 + Range: 9 + Slots: 1 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 56 + Refineable: true + Script: | + bonus bHit,10; bonus bCritical,10; + - Id: 13154 + AegisName: Rolling_Stone + Name: Rolling Stone + Type: Weapon + SubType: Shotgun + Buy: 12000 + Weight: 900 + Attack: 135 + Range: 9 + Slots: 1 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 14 + Refineable: true + Script: | + bonus bSplashRange,1; + - Id: 13155 + AegisName: Black_Rose + Name: Black Rose + Type: Weapon + SubType: Shotgun + Buy: 32000 + Weight: 900 + Attack: 180 + Range: 9 + Slots: 1 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 35 + Refineable: true + Script: | + bonus bSplashRange,1; + - Id: 13156 + AegisName: Gate_Keeper + Name: Gate Keeper + Type: Weapon + SubType: Shotgun + Buy: 56000 + Weight: 1000 + Attack: 210 + Range: 9 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 24 + Refineable: true + Script: | + bonus bSplashRange,1; bonus3 bAutoSpell,"GS_SPREADATTACK",6,50; + - Id: 13157 + AegisName: Drifter + Name: Drifter + Type: Weapon + SubType: Gatling + Buy: 80000 + Weight: 2300 + Attack: 50 + Range: 9 + Slots: 1 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 55 + Refineable: true + - Id: 13158 + AegisName: Butcher + Name: Butcher + Type: Weapon + SubType: Gatling + Buy: 130000 + Weight: 2500 + Attack: 75 + Range: 9 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 68 + Refineable: true + Script: | + bonus2 bCriticalAddRace,RC_Brute,10; bonus2 bCriticalAddRace,RC_Player_Doram,10; + - Id: 13159 + AegisName: Butcher_ + Name: Butcher + Type: Weapon + SubType: Gatling + Buy: 130000 + Weight: 2500 + Attack: 75 + Range: 9 + Slots: 1 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 68 + Refineable: true + Script: | + bonus2 bCriticalAddRace,RC_Brute,10; bonus2 bCriticalAddRace,RC_Player_Doram,10; + - Id: 13160 + AegisName: Destroyer + Name: Destroyer + Type: Weapon + SubType: Grenade + Buy: 110000 + Weight: 1200 + Attack: 220 + Range: 9 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 52 + Refineable: true + Script: | + bonus bBreakArmorRate,200; + - Id: 13161 + AegisName: Destroyer_ + Name: Destroyer + Type: Weapon + SubType: Grenade + Buy: 110000 + Weight: 1200 + Attack: 220 + Range: 9 + Slots: 1 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 52 + Refineable: true + Script: | + bonus bBreakArmorRate,200; + - Id: 13162 + AegisName: Inferno + Name: Inferno + Type: Weapon + SubType: Grenade + Buy: 230000 + Weight: 1250 + Attack: 280 + Range: 9 + Slots: 1 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 65 + Refineable: true + - Id: 13163 + AegisName: Long_Barrel + Name: Long Barrel + Type: Weapon + SubType: Rifle + Buy: 40000 + Weight: 1000 + Attack: 150 + Range: 9 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bHit,10; bonus bCritical,20; bonus bAspdRate,-3; bonus3 bAutoSpell,"GS_TRACKING",5,20; + - Id: 13164 + AegisName: Long_Barrel_ + Name: Long Barrel + Type: Weapon + SubType: Rifle + Buy: 40000 + Weight: 1000 + Attack: 150 + Range: 9 + Slots: 1 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bHit,10; bonus bCritical,20; bonus bAspdRate,-3; bonus3 bAutoSpell,"GS_TRACKING",5,20; + - Id: 13165 + AegisName: Jungle_Carbine + Name: Jungle Carbine + Type: Weapon + SubType: Rifle + Buy: 56000 + Weight: 700 + Attack: 170 + Range: 9 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bHit,10; bonus bCritical,4; bonus bAspdRate,10; bonus bHit,-readparam(bDex)/3; + - Id: 13166 + AegisName: Jungle_Carbine_ + Name: Jungle Carbine + Type: Weapon + SubType: Rifle + Buy: 56000 + Weight: 700 + Attack: 170 + Range: 9 + Slots: 1 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bHit,10; bonus bCritical,4; bonus bAspdRate,10; bonus bHit,-readparam(bDex)/3; + - Id: 13167 + AegisName: Gate_KeeperDD + Name: Gate Keeper-DD + Type: Weapon + SubType: Shotgun + Buy: 72000 + Weight: 1300 + Attack: 200 + Range: 9 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bSplashRange,1; bonus3 bAutoSpell,"GS_SPREADATTACK",6,50; bonus bDef,getrefine(); bonus bDex,1; + - Id: 13168 + AegisName: Thunder_P + Name: Thunder P + Type: Weapon + SubType: Shotgun + Buy: 76000 + Weight: 700 + Attack: 80 + Range: 9 + Slots: 1 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bSplashRange,1; bonus bHit,-5; bonus bAspdRate,20; + - Id: 13169 + AegisName: Thunder_P_ + Name: Thunder P + Type: Weapon + SubType: Shotgun + Buy: 76000 + Weight: 700 + Attack: 80 + Range: 9 + Slots: 2 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bSplashRange,1; bonus bHit,-5; bonus bAspdRate,20; + - Id: 13170 + AegisName: Lever_Action_Rifle + Name: Lever Action Rifle + Type: Weapon + SubType: Rifle + Buy: 20 + Weight: 770 + Attack: 138 + Range: 9 + Slots: 2 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bHit,20; bonus bCritical,50; bonus bAspdRate,-5; + - Id: 13171 + AegisName: BF_Rifle1 + Name: Soldier Rifle + Type: Weapon + SubType: Rifle + Attack: 50 + Range: 9 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,2; bonus bHit,10; bonus bCritical,10; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bVariableCastrate,"GS_TRACKING",-25; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; + - Id: 13172 + AegisName: BF_Gatling_Gun1 + Name: Soldier Gatling Gun + Type: Weapon + SubType: Gatling + Attack: 80 + Range: 9 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; autobonus "{ bonus bBaseAtk,80; bonus2 bHPLossRate,120,1000; }",10,6000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; bonus bUnbreakableWeapon; + - Id: 13173 + AegisName: BF_Shotgun1 + Name: Soldier Shotgun + Type: Weapon + SubType: Shotgun + Attack: 100 + Range: 9 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,2; bonus bSplashRange,1; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; autobonus "{ bonus bBaseAtk,80; bonus2 bHPLossRate,100,1000; }",30,6000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; bonus bUnbreakableWeapon; + - Id: 13174 + AegisName: BF_Launcher1 + Name: Soldier Grenade Launcher + Type: Weapon + SubType: Grenade + Attack: 300 + Range: 9 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,2; bonus bSplashRange,1; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; autobonus "{ bonus bBaseAtk,300; bonus2 bHPLossRate,120,1000; }",30,9000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; bonus bUnbreakableWeapon; + - Id: 13175 + AegisName: Lever_Action_Rifle_C + Name: Lever Action Rifle + Type: Weapon + SubType: Rifle + Buy: 20 + Attack: 170 + Range: 9 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bHit,20; bonus bCritical,50; bonus bAspdRate,-5; bonus2 bAddClass,Class_All,40; + - Id: 13176 + AegisName: Krieger_Rifle1 + Name: Glorious Rifle + Type: Weapon + SubType: Rifle + Attack: 90 + Range: 9 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) { bonus2 bVariableCastrate,"GS_TRACKING",25; bonus2 bSkillAtk,"GS_TRACKING",.@r * 3; } + - Id: 13177 + AegisName: Krieger_Gatling1 + Name: Glorious Gatling Gun + Type: Weapon + SubType: Gatling + Attack: 90 + Range: 9 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(.@r,14)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(.@r,14)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) { bonus2 bAddClass,Class_All,.@r; } + - Id: 13178 + AegisName: Krieger_Shotgun1 + Name: Glorious Shotgun + Type: Weapon + SubType: Shotgun + Attack: 110 + Range: 9 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bSplashRange,1; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(.@r,14)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(.@r,14)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) { bonus2 bSkillAtk,"GS_SPREADATTACK",.@r * 2; bonus3 bAddEffOnSkill,"GS_SPREADATTACK",Eff_Stun,2000; } + - Id: 13179 + AegisName: Krieger_Launcher1 + Name: Glorious Grenade Launcher + Type: Weapon + SubType: Grenade + Attack: 330 + Range: 9 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(.@r,14)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(.@r,14)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,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; }"; } + - Id: 13180 + AegisName: Novice_Rifle + Name: Novice Rifle + Type: Weapon + SubType: Rifle + Weight: 500 + Attack: 50 + Range: 9 + Slots: 3 + Jobs: + Gunslinger: true + Rebellion: true + Classes: + Normal: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + - Id: 13181 + AegisName: Novice_Shotgun + Name: Novice Shotgun + Type: Weapon + SubType: Shotgun + Weight: 1000 + Attack: 80 + Range: 9 + Jobs: + Gunslinger: true + Rebellion: true + Classes: + Normal: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + - Id: 13182 + AegisName: Novice_Gatling + Name: Novice Gatling + Type: Weapon + SubType: Gatling + Weight: 1500 + Attack: 40 + Range: 9 + Jobs: + Gunslinger: true + Rebellion: true + Classes: + Normal: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + - Id: 13183 + AegisName: Novice_Grenade_Launcher + Name: Novice Grenade Launcher + Type: Weapon + SubType: Grenade + Weight: 1500 + Attack: 40 + Range: 9 + Jobs: + Gunslinger: true + Rebellion: true + Classes: + Normal: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + - Id: 13184 + AegisName: TE_Woe_Rifle + Name: TE Woe Rifle + Type: Weapon + SubType: Rifle + Attack: 80 + Range: 9 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 40 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Silence,1000; + - Id: 13185 + AegisName: TE_Woe_Gatling + Name: TE Woe Gatling + Type: Weapon + SubType: Gatling + Attack: 100 + Range: 7 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 40 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Stun,1000; + - Id: 13186 + AegisName: TE_Woe_Shotgun + Name: TE Woe Shotgun + Type: Weapon + SubType: Shotgun + Attack: 100 + Range: 7 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 40 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Poison,1000; + - Id: 13187 + AegisName: TE_Woe_Grenade + Name: TE Woe Grenade + Type: Weapon + SubType: Grenade + Attack: 100 + Range: 9 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 40 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Blind,1000; + - Id: 13189 + AegisName: COLORSCOPE + Name: Color Scope + Type: Weapon + SubType: Rifle + Buy: 1350000 + Weight: 1200 + Attack: 240 + Range: 9 + Slots: 2 + Jobs: + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 105 + Refineable: true + Script: | + bonus bHit,20; bonus bCriticalRate,30; + - Id: 13190 + AegisName: RAG203_ + Name: RAG203 + Type: Weapon + SubType: Rifle + Buy: 1800000 + Weight: 1300 + Attack: 260 + Range: 9 + Slots: 1 + Jobs: + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 140 + Refineable: true + Script: | + bonus bHit,10; bonus bCriticalRate,15; bonus4 bAutoSpell,"AL_DECAGI",1,30,1; + - Id: 13192 + AegisName: DEATHFIRE + Name: Death Fire + Type: Weapon + SubType: Shotgun + Buy: 1250000 + Weight: 2000 + Attack: 400 + Range: 9 + Slots: 1 + Jobs: + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 108 + Refineable: true + Script: | + bonus bSplashRange,1; bonus bAtkRange,5; bonus bHit,-50; bonus bAspdRate,-10; + - Id: 13193 + AegisName: R_THUNDER + Name: Rolling Thunder + Type: Weapon + SubType: Shotgun + Buy: 1350000 + Weight: 1800 + Attack: 280 + Range: 9 + Slots: 1 + Jobs: + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 120 + Refineable: true + Script: | + bonus bSplashRange,1; bonus bHit,-10; bonus bAspdRate,-10; bonus3 bAutoSpell,"MG_THUNDERSTORM",5,30; + - Id: 13194 + AegisName: P_BREAKER + Name: Peace Breaker + Type: Weapon + SubType: Shotgun + Buy: 1950000 + Weight: 1400 + Attack: 250 + Range: 9 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 140 + Refineable: true + Script: | + bonus bHit,-25; bonus bAspdRate,25; + - Id: 13195 + AegisName: RAG203 + Name: RAG203 + Type: Weapon + SubType: Rifle + Buy: 1800000 + Weight: 1300 + Attack: 260 + Range: 9 + Jobs: + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 140 + Refineable: true + Script: | + bonus bHit,10; bonus bCriticalRate,15; bonus4 bAutoSpell,"AL_DECAGI",1,30,1; + - Id: 13196 + AegisName: P_BREAKER_ + Name: Peace Breaker + Type: Weapon + SubType: Shotgun + Buy: 1950000 + Weight: 1400 + Attack: 250 + Range: 9 + Slots: 1 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 140 + Refineable: true + Script: | + bonus bHit,-25; bonus bAspdRate,25; + - Id: 13197 + AegisName: MINIMAY + Name: Mini Mei + Type: Weapon + SubType: Gatling + Buy: 1600000 + Weight: 2500 + Attack: 220 + Range: 9 + Slots: 2 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 2 + EquipLevelMin: 106 + Refineable: true + - Id: 13198 + AegisName: TEMPEST + Name: Tempest + Type: Weapon + SubType: Gatling + Buy: 2200000 + Weight: 2500 + Attack: 250 + Range: 9 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 140 + Refineable: true + Script: | + bonus bHit,-25; bonus bCritical,10; bonus bLongAtkRate,20; + - Id: 13199 + AegisName: TEMPEST_ + Name: Tempest + Type: Weapon + SubType: Gatling + Buy: 2200000 + Weight: 2500 + Attack: 250 + Range: 9 + Slots: 1 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 140 + Refineable: true + Script: | + bonus bHit,-25; bonus bCritical,10; bonus bLongAtkRate,20; + - Id: 13300 + AegisName: Huuma_Bird_Wing + Name: Huuma Wing Shuriken + Type: Weapon + SubType: Huuma + Buy: 90000 + Weight: 3000 + Attack: 150 + Range: 1 + Jobs: + Ninja: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 65 + Refineable: true + Script: | + bonus bAtkEle,Ele_Wind; bonus bDex,-2; bonus bAgi,-1; + - Id: 13301 + AegisName: Huuma_Giant_Wheel + Name: Huuma Giant Wheel Shuriken + Type: Weapon + SubType: Huuma + Buy: 40000 + Weight: 2500 + Attack: 50 + Range: 1 + Slots: 3 + Jobs: + Ninja: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 42 + Refineable: true + Script: | + bonus2 bAddEff,Eff_Bleeding,100; + - Id: 13302 + AegisName: Huuma_Giant_Wheel_ + Name: Huuma Giant Wheel Shuriken + Type: Weapon + SubType: Huuma + Buy: 40000 + Weight: 2500 + Attack: 50 + Range: 1 + Slots: 4 + Jobs: + Ninja: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 42 + Refineable: true + Script: | + bonus2 bAddEff,Eff_Bleeding,100; + - Id: 13303 + AegisName: Huuma_Blaze + Name: Huuma Blaze Shuriken + Type: Weapon + SubType: Huuma + Buy: 78000 + Weight: 1500 + Attack: 185 + Range: 1 + Jobs: + Ninja: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bAtkEle,Ele_Fire; bonus bDex,-2; bonus3 bAutoSpell,"MG_FIREBALL",5,30; + - Id: 13304 + AegisName: Huuma_Calm_Mind + Name: Huuma Calm Mind + Type: Weapon + SubType: Huuma + Buy: 20 + Weight: 1550 + Attack: 112 + Range: 1 + Slots: 2 + Jobs: + Ninja: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus2 bSkillAtk,"NJ_HUUMA",30; bonus bNoCastCancel; + - Id: 13305 + AegisName: BF_Huuma_Shuriken1 + Name: Brave Huuma Front Shuriken + Type: Weapon + SubType: Huuma + Buy: 20 + Attack: 55 + Range: 1 + Jobs: + Ninja: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,2; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; + - Id: 13306 + AegisName: BF_Huuma_Shuriken2 + Name: Valorous Huuma Front Shuriken + Type: Weapon + SubType: Huuma + Buy: 20 + Attack: 55 + Range: 1 + Jobs: + Ninja: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,2; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; autobonus "{ bonus2 bSkillAtk,\"NJ_HUUMA\",100; bonus2 bSkillAtk,\"NJ_ISSEN\",100; }",50,10000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; bonus bUnbreakableWeapon; + - Id: 13307 + AegisName: Krieger_Huuma_Shuriken1 + Name: Glorious Shuriken + Type: Weapon + SubType: Huuma + Buy: 20 + Attack: 55 + MagicAttack: 90 + Range: 1 + Jobs: + Ninja: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; autobonus "{ bonus2 bSkillAtk,\"NJ_HUUMA\",100; bonus2 bSkillAtk,\"NJ_ISSEN\",100; }",50,10000; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-3,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-3,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) { bonus5 bAutoSpellOnSkill,"NJ_ISSEN","AL_HEAL",10,1000,1; bonus4 bAutoSpellOnSkill,"NJ_HUUMA","NPC_CRITICALWOUND",2,200; } + - Id: 13308 + AegisName: Huuma_Blaze_I + Name: Huuma Blaze Shuriken + Type: Weapon + SubType: Huuma + Attack: 230 + Range: 1 + Jobs: + Ninja: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAtkEle,Ele_Fire; bonus3 bAutoSpell,"MG_FIREBALL",5,30; bonus bDex,2; + - Id: 13309 + AegisName: Huuma_Giant_Wheel_C + Name: Huuma Giant Wheel Shuriken + Type: Weapon + SubType: Huuma + Attack: 99 + Range: 1 + Jobs: + Ninja: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddEff,Eff_Bleeding,100; bonus2 bAddSize,Size_All,80; + - Id: 13310 + AegisName: P_Huuma_Shuriken1 + Name: P.Huuma Suriken I + Type: Weapon + SubType: Huuma + Attack: 150 + MagicAttack: 50 + Range: 1 + Jobs: + Ninja: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 60 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 13311 + AegisName: Huuma_Shadow + Name: Sword Huuma Shuriken + Type: Weapon + SubType: Huuma + Buy: 5000 + Weight: 1500 + Attack: 170 + Range: 1 + Jobs: + Ninja: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 99 + Refineable: true + Script: | + bonus bStr,3; + - Id: 13312 + AegisName: Huuma_Job_Test + Name: Prototype Huuma Shuriken + Type: Weapon + SubType: Huuma + Weight: 3000 + Range: 1 + Jobs: + Ninja: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 99 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 13313 + AegisName: Huuma_Swirling_Petal + Name: Flower Huuma Shuriken + Type: Weapon + SubType: Huuma + Buy: 100000 + Weight: 1500 + Attack: 150 + MagicAttack: 50 + Range: 1 + Slots: 2 + Jobs: + Ninja: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 110 + Refineable: true + Script: | + bonus2 bSkillAtk,"KO_HUUMARANKA",20; + - Id: 13314 + AegisName: Huuma_Fluttering_Snow + Name: Wave Huuma Shuriken + Type: Weapon + SubType: Huuma + Buy: 100000 + Weight: 1500 + Attack: 200 + MagicAttack: 50 + Range: 1 + Jobs: + Ninja: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 110 + Refineable: true + Script: | + bonus bAtkEle,Ele_Water; bonus3 bAutoSpell,"NJ_HYOUSYOURAKU",max(getskilllv("NJ_HYOUSYOURAKU"),1),30; + - Id: 13315 + AegisName: Huuma_Thunderstorm + Name: Thunderstorm Huuma Shuriken + Type: Weapon + SubType: Huuma + Buy: 100000 + Weight: 1500 + Attack: 200 + MagicAttack: 50 + Range: 1 + Jobs: + Ninja: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 110 + Refineable: true + Script: | + bonus bAtkEle,Ele_Wind; bonus3 bAutoSpell,"NJ_RAIGEKISAI",max(getskilllv("NJ_RAIGEKISAI"),1),30; bonus2 bAddEff,Eff_Blind,500; + - Id: 13316 + AegisName: Upg_Huuma_Shuriken + Name: Upg Huuma Shuriken + Type: Weapon + SubType: Huuma + Buy: 20 + Weight: 1500 + Attack: 55 + Range: 1 + Slots: 1 + Jobs: + Ninja: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + Script: | + .@r = getrefine(); bonus bBaseAtk,(.@r*10); bonus bMatk,(.@r*5); bonus bLongAtkRate,(.@r); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*5); bonus bUnbreakableWeapon; + - Id: 13317 + AegisName: TE_Woe_Huuma + Name: TE Woe Huuma + Type: Weapon + SubType: Huuma + Attack: 80 + MagicAttack: 100 + Range: 1 + Jobs: + KagerouOboro: true + Ninja: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 40 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Bleeding,1000; bonus bUnbreakableWeapon; + - Id: 13321 + AegisName: Half_BF_Huuma_Shuriken2 + Name: Half BF Huuma Shuriken + Type: Weapon + SubType: Huuma + Buy: 20 + Attack: 55 + Range: 1 + Jobs: + Ninja: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Script: | + bonus bStr,2; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,40; bonus2 bAddRace,RC_Player_Human,40; autobonus "{ bonus2 bSkillAtk,\"NJ_HUUMA\",100; bonus2 bSkillAtk,\"NJ_ISSEN\",100; }",50,10000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; bonus bUnbreakableWeapon; + - Id: 13322 + AegisName: Huuma_Metal_Shuriken + Name: Huuma Metal Shuriken + Type: Weapon + SubType: Huuma + Buy: 20 + Attack: 50 + Range: 1 + Slots: 1 + Jobs: + Ninja: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bUnbreakableWeapon; .@r = getrefine(); bonus bBaseAtk,.@r*5; bonus bMatk,.@r*3; bonus bLongAtkRate,.@r; if (BaseLevel >= 20 && BaseLevel <= 120) bonus bBaseAtk,3*.@r/10; + - Id: 13323 + AegisName: Infinity_Shuriken + Name: Infinity Shuriken + Type: Weapon + SubType: Huuma + Weight: 500 + Attack: 150 + MagicAttack: 40 + Range: 1 + Slots: 1 + Jobs: + KagerouOboro: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bUnbreakableWeapon; + - Id: 13327 + AegisName: Crimson_Huuma_Shuriken + Name: Crimson Huuma Shuriken + Type: Weapon + SubType: Huuma + Buy: 20 + Weight: 1000 + Attack: 100 + Range: 1 + Slots: 2 + Jobs: + KagerouOboro: true + Ninja: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bUnbreakableWeapon; .@r = getrefine(); bonus bBaseAtk,(.@r<=15?pow(.@r,2):225); bonus bMatk,(.@r<=15?(pow(.@r,2)/2):225); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*5); + - Id: 13328 + AegisName: Huuma_Shuriken_of_Vicious_Mind + Name: Huuma Shuriken of Vicious Mind + Type: Weapon + SubType: Huuma + Buy: 20 + Weight: 1500 + Attack: 150 + MagicAttack: 50 + Range: 1 + Slots: 1 + Jobs: + KagerouOboro: true + Ninja: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 160 + Refineable: true + Script: | + bonus bAtk,pow(min(getrefine(),15),2); bonus bMatk,pow(min(getrefine(),15),2)/2; bonus bUnbreakableWeapon; + - Id: 13329 + AegisName: Unity_Huuma_Shuriken + Name: Unity Huuma Shuriken + Type: Weapon + SubType: Huuma + Buy: 20 + Weight: 500 + Attack: 95 + Range: 1 + Slots: 1 + Jobs: + KagerouOboro: true + Ninja: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bBaseAtk,pow(getrefine(),2)*125/100; + - Id: 13332 + AegisName: Huuma_Shuriken_of_Dancing_Petals + Name: Huuma Shuriken of Dancing Petals + Type: Weapon + SubType: Huuma + Weight: 2000 + Attack: 250 + Range: 1 + Slots: 2 + Jobs: + KagerouOboro: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); .@bonus = 20; if (.@r>=7) { bonus bLongAtkRate,10; } if (.@r>=9) { .@bonus += 20; } bonus2 bSkillAtk,"KO_HUUMARANKA",.@bonus; + - Id: 13337 + AegisName: Illusion_Huuma_Fluttering_Snow + Name: Illusion Huuma Fluttering Snow + Type: Weapon + SubType: Huuma + Weight: 1500 + Attack: 250 + MagicAttack: 50 + Range: 1 + Slots: 2 + Jobs: + Ninja: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 120 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,(30*(.@r/3)); bonus bLongAtkRate,(3*.@r); + - Id: 13338 + AegisName: Illusion_Wing_Shuriken + Name: Illusion Wing Shuriken + Type: Weapon + SubType: Huuma + Weight: 1500 + Attack: 300 + Range: 1 + Slots: 2 + Jobs: + Ninja: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 120 + Refineable: true + Script: | + bonus bDex,2; bonus2 bSkillAtk,"KO_HAPPOKUNAI",(9*getrefine()); + - Id: 13345 + AegisName: Huuma_Shuriken_Clearness + Name: Huuma Shuriken Clearness + Type: Weapon + SubType: Huuma + Buy: 20 + Weight: 1300 + Attack: 230 + Range: 1 + Slots: 2 + Jobs: + KagerouOboro: true + Ninja: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bLongAtkRate,2*(.@r/3); bonus bBaseAtk,10*(.@r/2); if (.@r >= 7) { bonus2 bSkillAtk,"KO_HUUMARANKA",30; if (.@r >= 9) { bonus2 bSkillCooldown,"KO_HUUMARANKA",-1000; if (.@r >= 11) { bonus2 bAddEle,Ele_Fire,15; bonus2 bAddEle,Ele_Dark,15; bonus2 bAddRace,RC_Undead,30; bonus2 bAddRace,RC_Demon,30; } } } + - Id: 13400 + AegisName: Cutlas_ + Name: Cutlus + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 900 + Attack: 150 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + skill "SM_BASH",5; bonus bStr,2; bonus bDef,1; + - Id: 13401 + AegisName: Excalibur_C + Name: Excalibur + Type: Weapon + SubType: 1hSword + Buy: 1 + Attack: 199 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,10; bonus bLuk,10; bonus bAtkEle,Ele_Holy; + - Id: 13402 + AegisName: Cutlas_C + Name: Cutlus + Type: Weapon + SubType: 1hSword + Buy: 2 + Attack: 185 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + skill "SM_BASH",5; bonus bStr,2; bonus bDef,1; + - Id: 13403 + AegisName: Solar_Sword_C + Name: Solar Sword + Type: Weapon + SubType: 1hSword + Buy: 2 + Attack: 120 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAtkEle,Ele_Fire; bonus2 bSPLossRate,15,10000; bonus2 bHPDrainRate,1000,1; + - Id: 13404 + AegisName: Platinum_Shotel + Name: Platinum Shotel + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 1500 + Attack: 130 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Classes: + Upper: true + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bCritical,50; + - Id: 13405 + AegisName: Curved_Sword + Name: Curved Sword + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 800 + Attack: 125 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Classes: + Upper: true + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus bAspdRate,10; bonus2 bAddEff,Eff_Curse,300; + - Id: 13406 + AegisName: Edger + Name: Edger + Type: Weapon + SubType: 1hSword + Buy: 20 + Attack: 120 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,50; + - Id: 13407 + AegisName: Nagan_C + Name: Refined Nagan + Type: Weapon + SubType: 1hSword + Buy: 1 + Attack: 148 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + skill "TF_DOUBLE",5; bonus bDoubleRate,25; bonus2 bAddRace,RC_DemiHuman,40; bonus2 bAddRace,RC_Player_Human,40; + - Id: 13408 + AegisName: Fire_Brand_C + Name: Refined Fireblend + Type: Weapon + SubType: 1hSword + Buy: 1 + Attack: 120 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAtkEle,Ele_Fire; bonus bInt,2; skill "MG_FIREBOLT",5; bonus3 bAutoSpell,"MG_FIREBOLT",5,100; + - Id: 13409 + AegisName: Immaterial_Sword_C + Name: Refined Immaterial Sword + Type: Weapon + SubType: 1hSword + Buy: 1 + Attack: 160 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAtkEle,Ele_Ghost; bonus3 bSPVanishRate,80,45,BF_WEAPON|BF_MAGIC|BF_MISC; bonus bUnbreakableWeapon; + - Id: 13410 + AegisName: BF_Sword1 + Name: Valorous Gladiator Blade + Type: Weapon + SubType: 1hSword + Buy: 20 + Attack: 115 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; + - Id: 13411 + AegisName: BF_Sword2 + Name: Brave Gladiator Blade + Type: Weapon + SubType: 1hSword + Buy: 20 + Attack: 115 + MagicAttack: 74 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus bUnbreakableWeapon; + - Id: 13412 + AegisName: Twin_Edge_B + Name: Twin Edge of Naght Sieger + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 1500 + Attack: 150 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 75 + Refineable: true + Script: | + bonus bAtkEle,Ele_Water; skill "MG_FROSTDIVER",5; autobonus "{ bonus bIgnoreDefClass,Class_Normal; }",50,5000; + - Id: 13413 + AegisName: Twin_Edge_R + Name: Twin Edge of Naght Sieger + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 1500 + Attack: 160 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 75 + Refineable: true + Script: | + bonus bAtkEle,Ele_Fire; skill "WZ_METEOR",3; autobonus "{ bonus bIgnoreDefClass,Class_Normal; }",50,5000; + - Id: 13414 + AegisName: Elemental_Sword + Name: Elemental Sword + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 1200 + Attack: 105 + MagicAttack: 95 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + 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,1000; bonus4 bAutoSpellOnSkill,"MG_LIGHTNINGBOLT","WZ_EARTHSPIKE",3,1000; + - Id: 13415 + AegisName: N_Falchion + Name: Novice Falchion + Type: Weapon + SubType: 1hSword + Attack: 59 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 2 + - Id: 13416 + AegisName: Krieger_Onehand_Sword1 + Name: Glorious Flamberge + Type: Weapon + SubType: 1hSword + Buy: 20 + Attack: 130 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>6) bonus bAspdRate,5; if(.@r>8) { bonus bAspdRate,5; bonus4 bAutoSpellOnSkill,"SM_BASH","NPC_CRITICALWOUND",2,200; } + - Id: 13417 + AegisName: Krieger_Onehand_Sword2 + Name: Glorious Rapier + Type: Weapon + SubType: 1hSword + Buy: 20 + Attack: 130 + MagicAttack: 80 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bInt,6; bonus bInt,.@r-5; bonus bUnbreakableWeapon; if(.@r>5) bonus bUseSPrate,-10; if(.@r>8) bonus bInt,5; + - Id: 13418 + AegisName: Krieger_Onehand_Sword3 + Name: Glorious Holy Avenger + Type: Weapon + SubType: 1hSword + Buy: 20 + Attack: 130 + MagicAttack: 80 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bInt,6; bonus bInt,.@r-5; bonus bUnbreakableWeapon; if(.@r>5) bonus bUseSPrate,-10; if(.@r>8) bonus4 bAutoSpellOnSkill,"PA_PRESSURE","PR_LEXAETERNA",1,1000; if(.@r>9) bonus bInt,5; + - Id: 13419 + AegisName: Holy_Saber + Name: Holy saber + Type: Weapon + SubType: 1hSword + Buy: 20 + Attack: 160 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddEle,Ele_Undead,40; bonus2 bMagicAddEle,Ele_Undead,40; + - Id: 13420 + AegisName: Honglyun's_Sword + Name: Honglyun's Sword + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 1200 + Attack: 160 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 70 + Refineable: true + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bStr,2; bonus bInt,2; bonus3 bAutoSpell,"WZ_METEOR",1,5; + - Id: 13421 + AegisName: Ruber + Name: Ruber + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 1500 + Attack: 170 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 50 + Refineable: true + Script: | + autobonus "{ bonus2 bSkillAtk,\"KN_BOWLINGBASH\",20; bonus2 bSkillAtk,\"SM_BASH\",20; }",5,15000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; + - Id: 13422 + AegisName: Flamberge_C + Name: Flamberge + Type: Weapon + SubType: 1hSword + Attack: 185 + Range: 1 + Jobs: + Crusader: true + Knight: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddSize,Size_All,40; + - Id: 13423 + AegisName: P_Sabre1 + Name: Eden Sabre I + Type: Weapon + SubType: 1hSword + Attack: 147 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 26 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 13424 + AegisName: P_Sabre2 + Name: Eden Sabre II + Type: Weapon + SubType: 1hSword + Attack: 170 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 40 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 13425 + AegisName: Tourist_Sword + Name: Tourist Sword + Type: Weapon + SubType: 1hSword + Weight: 500 + Attack: 61 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,1; bonus bDex,1; + - Id: 13426 + AegisName: F_Cutlas_C + Name: Cutlus + Type: Weapon + SubType: 1hSword + Buy: 2 + Attack: 185 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + Script: | + skill "SM_BASH",5; bonus bStr,2; bonus bDef,1; + - Id: 13427 + AegisName: F_Solar_Sword_C + Name: Solar Sword + Type: Weapon + SubType: 1hSword + Buy: 2 + Attack: 120 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + Script: | + bonus bAtkEle,Ele_Fire; bonus bHPDrainValue,1; bonus2 bSPLossRate,15,10000; + - Id: 13428 + AegisName: Priest_Sword + Name: Priest Sword + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 1200 + Attack: 170 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 50 + Refineable: true + - Id: 13429 + AegisName: E_Cutlas_C + Name: Cutlus + Type: Weapon + SubType: 1hSword + Buy: 2 + Attack: 185 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + Script: | + skill "SM_BASH",5; bonus bStr,2; bonus bDef,1; + - Id: 13430 + AegisName: E_Solar_Sword_C + Name: Solar Sword + Type: Weapon + SubType: 1hSword + Buy: 2 + Attack: 120 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + Script: | + bonus bAtkEle,Ele_Fire; + - Id: 13431 + AegisName: Chrome_Sword + Name: Chrome Sword + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 2200 + Attack: 180 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 110 + Refineable: true + Script: | + bonus bAgi,1; bonus bMaxHPrate,-5; bonus bUnbreakableWeapon; + - Id: 13432 + AegisName: Adventure_Sword + Name: Adventure Sword + Type: Weapon + SubType: 1hSword + Attack: 80 + Range: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + - Id: 13433 + AegisName: Academy_Sword + Name: Academy Sword + Type: Weapon + SubType: 1hSword + Weight: 1200 + Attack: 120 + Range: 1 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 30 + Refineable: true + Script: | + bonus bMaxHP,200; bonus bMaxSP,100; .@b = BaseLevel/10; bonus bMaxHP,-40*.@b; bonus bMaxSP,-20*.@b; + - Id: 13434 + AegisName: P_Saber3 + Name: Eden Saber III + Type: Weapon + SubType: 1hSword + Attack: 185 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 60 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 13435 + AegisName: Fire_Brand_ + Name: Fireblend + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 500 + Attack: 100 + MagicAttack: 108 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus bAtkEle,Ele_Fire; skill "MG_FIREBOLT",3; bonus3 bAutoSpell,"MG_FIREBOLT",3,100; + - Id: 13436 + AegisName: Ice_Falchon_ + Name: Ice Falchion + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 600 + Attack: 100 + MagicAttack: 108 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus bAtkEle,Ele_Water; skill "MG_COLDBOLT",3; bonus3 bAutoSpell,"MG_COLDBOLT",3,100; + - Id: 13437 + AegisName: Orcish_Sword_ + Name: Orcish Sword + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 800 + Attack: 90 + Range: 1 + Slots: 4 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 5 + Refineable: true + Script: | + bonus bUnbreakableWeapon; + - Id: 13438 + AegisName: Magical_Blade + Name: Magical Blade + Type: Weapon + SubType: 1hSword + Buy: 60000 + Weight: 2000 + Attack: 165 + MagicAttack: 110 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 105 + Refineable: true + - Id: 13439 + AegisName: TE_Woe_Sword + Name: TE Woe Sword + Type: Weapon + SubType: 1hSword + Attack: 120 + MagicAttack: 100 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 40 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Poison,3000; + - Id: 13440 + AegisName: Ceremonial_Sword + Name: Ceremonial Sword + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 500 + Attack: 60 + Range: 1 + Jobs: + Merchant: true + Novice: true + SuperNovice: true + Swordman: true + Thief: true + Classes: + Normal: true + Baby: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bAtkEle,Ele_Holy; + - Id: 13441 + AegisName: Thanos_Sword + Name: Thanos Sword + Type: Weapon + SubType: 1hSword + Buy: 10 + Weight: 700 + Attack: 150 + MagicAttack: 100 + Range: 1 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 120 + Refineable: true + Script: | + bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000; + UnEquipScript: | + heal -1000,0; + - Id: 13442 + AegisName: Old_Parasol + Name: Old Parasol + Type: Weapon + SubType: 1hSword + Buy: 10 + Weight: 500 + Attack: 120 + MagicAttack: 80 + Slots: 3 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Script: | + bonus bMatk,getrefine(); skill "MG_SOULSTRIKE",10; + - Id: 13444 + AegisName: Pala + Name: Pala + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 700 + Attack: 190 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + Refineable: true + Script: | + bonus bAspdRate,8; + - Id: 13445 + AegisName: Half_BF_Sword1 + Name: Half BF Sword1 + Type: Weapon + SubType: 1hSword + Buy: 20 + Attack: 115 + Range: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Script: | + bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon; + - Id: 13446 + AegisName: Star_Dust_Blade_ + Name: Star Dust Blade + Type: Weapon + SubType: 1hSword + Buy: 1 + Weight: 1000 + Attack: 140 + Range: 1 + Slots: 3 + Jobs: + Novice: true + SuperNovice: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 45 + Refineable: true + Script: | + bonus2 bAddEff,Eff_Stun,500; bonus bUnbreakableWeapon; + - Id: 13447 + AegisName: Byeorrun_Gum_ + Name: Byeollungum + Type: Weapon + SubType: 1hSword + Buy: 1 + Weight: 900 + Attack: 150 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus2 bSubClass,Class_Normal,-10; bonus2 bAddClass,Class_Boss,50; bonus bAllStats,2; + - Id: 13448 + AegisName: Magical_Blade_ + Name: Magical Blade + Type: Weapon + SubType: 1hSword + Buy: 1 + Weight: 2000 + Attack: 165 + MagicAttack: 110 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 105 + Refineable: true + - Id: 13449 + AegisName: Gladius_Daemonicus + Name: Gladius Daemonicus + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 1200 + Attack: 130 + Slots: 2 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Script: | + bonus bAspdRate,10; .@r = getrefine(); if(.@r>=9){ autobonus "{ bonus bAspd,3; }",30,5000; } + - Id: 13450 + AegisName: Saber__ + Name: Saber + Type: Weapon + Buy: 10 + Weight: 1000 + Attack: 115 + Slots: 2 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + Trade: + Override: 100 + NoDrop: true + - Id: 13451 + AegisName: Ru_Blue_Sword + Name: Ru Blue Sword + Type: Weapon + SubType: 1hSword + Buy: 1 + Weight: 1200 + Attack: 200 + Range: 1 + Slots: 1 + Jobs: + Knight: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bStr,5; bonus bAgi,5; + - Id: 13452 + AegisName: Ru_Gold_Sword + Name: Ru Gold Sword + Type: Weapon + SubType: 1hSword + Weight: 1200 + Attack: 190 + Range: 1 + Slots: 2 + Jobs: + Knight: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 120 + Refineable: true + Script: | + bonus bStr,8; bonus bAgi,8; + - Id: 13453 + AegisName: Mysteltainn__ + Name: Mysteltainn + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 1000 + Attack: 170 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus bAtkEle,Ele_Dark; bonus2 bAddEle,Ele_Ghost,15; bonus3 bAutoSpell,"MG_STONECURSE",3,100; bonus2 bAddEff,Eff_Stone,10; bonus bDex,3; + - Id: 13454 + AegisName: Crimson_Saber + Name: Crimson Saber + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 850 + Attack: 85 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); + - Id: 13455 + AegisName: Saber_of_Vicious_Mind + Name: Saber of Vicious Mind + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 1350 + Attack: 135 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 160 + Refineable: true + Script: | + bonus bAtk,pow(min(getrefine(),15),2); + - Id: 13456 + AegisName: Unity_Sword + Name: Unity Sword + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 420 + Attack: 80 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bBaseAtk,pow(getrefine(),2)*125/100; + - Id: 13457 + AegisName: Unity_Dagger + Name: Unity Dagger + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 270 + Attack: 52 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bBaseAtk,pow(getrefine(),2)*125/100; + - Id: 13460 + AegisName: Sealed_Magic_Sword + Name: Sealed Magic Sword + Type: Weapon + SubType: 1hSword + Weight: 1500 + Attack: 100 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Rogue: true + Classes: + Upper: true + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); .@sp = -100; bonus3 bAutoSpell,"MG_FIREBOLT",5,100; if (.@r >= 7) { .@sp += 50; .@matk = 85; if (.@r >= 10) { bonus bAspd,1; .@sp += 50; .@matk += 45; } bonus bMatk,.@matk; } bonus bMaxSP,.@sp; + - Id: 13461 + AegisName: Sealed_Evil_Sword + Name: Sealed Evil Sword + Type: Weapon + SubType: 1hSword + Weight: 1500 + Attack: 100 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Rogue: true + Classes: + Upper: true + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); .@def = -50; .@mdef = -10; bonus3 bAutoSpell,"WZ_FROSTNOVA",5,100; if (.@r >= 7) { .@crit = 30; .@mdef += 10; if (.@r >= 10) { bonus bAspd,1; .@crit += 20; .@def += 50; } bonus bCritical,.@crit; } bonus bDef,.@def; bonus bMdef,.@mdef; + - Id: 13462 + AegisName: Sealed_Max_Sword + Name: Sealed Maximum Sword + Type: Weapon + SubType: 1hSword + Weight: 1500 + Attack: 100 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Rogue: true + Classes: + Upper: true + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); .@hp = -1000; bonus3 bAutoSpell,"MG_COLDBOLT",5,100; if (.@r >= 7) { .@atk = 65; .@hp += 500; if (.@r >= 10) { bonus bAspd,1; .@atk += 45; .@hp += 500; } bonus bBaseAtk,.@atk; } if (.@hp) { bonus bMaxHP,.@hp; } + - Id: 13469 + AegisName: Illusion_Immaterial_Sword + Name: Illusion Immaterial Sword + Type: Weapon + SubType: 1hSword + Weight: 900 + Attack: 180 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 120 + Refineable: true + Script: | + .@r = getrefine(); bonus bSPDrainValue,-1; bonus bUnbreakableWeapon; if (.@r >= 12) { .@val = 20; } bonus2 bSPVanishRate,(80+(20*.@r)),(30+.@val); bonus bAtkEle,Ele_Ghost; + - Id: 13473 + AegisName: God's_Sword + Name: God's Sword + Type: Weapon + SubType: 1hSword + Weight: 1300 + Attack: 150 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 120 + Refineable: true + Script: | + bonus bAgi,5; bonus bCritical,50; bonus bFlee2,20; bonus2 bAddRace,RC_Demon,30; .@r = getrefine(); .@rate = 1+.@r; .@s = getskilllv("ASC_BREAKER"); .@slv = 3; if(.@s>3) { .@slv = .@s; } bonus3 bAutoSpell,"ASC_BREAKER",.@slv,.@rate; if(.@r>=8){ skill "ASC_BREAKER",3; } + - Id: 13474 + AegisName: Sword___ + Name: Sword + Type: Weapon + SubType: 1hSword + Buy: 1 + Weight: 500 + Attack: 25 + Range: 1 + Slots: 4 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 2 + Refineable: true + - Id: 13475 + AegisName: Falchion___ + Name: Falchion + Type: Weapon + SubType: 1hSword + Buy: 1 + Weight: 600 + Attack: 39 + Range: 1 + Slots: 4 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 2 + Refineable: true + - Id: 13476 + AegisName: Blade___ + Name: Blade + Type: Weapon + SubType: 1hSword + Buy: 1 + Weight: 700 + Attack: 53 + Range: 1 + Slots: 4 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 2 + Refineable: true + - Id: 13477 + AegisName: Lapier___ + Name: Rapier + Type: Weapon + SubType: 1hSword + Buy: 10 + Weight: 500 + Attack: 70 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 14 + Refineable: true + - Id: 13478 + AegisName: Scimiter___ + Name: Scimitar + Type: Weapon + SubType: 1hSword + Buy: 10 + Weight: 700 + Attack: 85 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 14 + Refineable: true + - Id: 13479 + AegisName: Tsurugi___ + Name: Tsurugi + Type: Weapon + SubType: 1hSword + Buy: 1 + Weight: 1200 + Attack: 130 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + - Id: 13480 + AegisName: Ring_Pommel_Saber__ + Name: Ring Pommel Saber + Type: Weapon + SubType: 1hSword + Buy: 1 + Weight: 900 + Attack: 100 + Range: 1 + Slots: 3 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 14 + Refineable: true + - Id: 13481 + AegisName: Saber___ + Name: Saber + Type: Weapon + Buy: 1 + Weight: 1000 + Attack: 115 + Slots: 3 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 27 + Refineable: true + - Id: 13482 + AegisName: Orcish_Blade + Name: Orcish Blade + Type: Weapon + SubType: 1hSword + Buy: 1 + Weight: 1200 + Attack: 120 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 50 + Refineable: true + Script: | + bonus2 bSkillAtk,"SM_BASH",5; bonus bMaxHP,150; bonus bHealPower2,5; bonus bUseSPrate,-50; .@r = getrefine(); if(.@r>=7){ bonus2 bSkillAtk,"SM_BASH",5; bonus bHealPower2,5; } if(.@r>=9){ bonus2 bSkillAtk,"SM_BASH",5; } + - Id: 13483 + AegisName: Beginner_Genetic's_Sword + Name: Beginner Genetic's Sword + Type: Weapon + SubType: 1hSword + Buy: 1 + Attack: 140 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bVariableCastrate,-10; if(.@r>=7){ bonus2 bSkillAtk,"GN_CARTCANNON",15; } + - Id: 13485 + AegisName: Honglyun's_Sword_ + Name: Honglyun's Sword + Type: Weapon + SubType: 1hSword + Buy: 1 + Weight: 800 + Attack: 180 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bLongAtkRate,4*(.@r/3); if(.@r>=9){ bonus2 bSkillUseSPrate,"GN_CARTCANNON",10; } if(.@r>=11){ bonus2 bSkillAtk,"GN_CARTCANNON",15; } + - Id: 13492 + AegisName: Abyss_Blade + Name: Abyss Blade + Type: Weapon + SubType: 1hSword + Buy: 1 + Weight: 1200 + Attack: 150 + MagicAttack: 130 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Rogue: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 165 + Refineable: true + Script: | + .@r = getrefine(); bonus bUnbreakableWeapon; if(.@r>=7){ bonus2 bAddClass,Class_All,5; bonus2 bSubRace,RC_Player_Human,5; } if(.@r>=9){ bonus2 bAddClass,Class_All,5; bonus2 bSubRace,RC_Player_Human,5; } + - Id: 13493 + AegisName: Cannon_Rapier-OS + Name: Cannon Rapier-OS + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 800 + Attack: 160 + MagicAttack: 150 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 130 + Refineable: true + Script: | + .@r = getrefine(); bonus3 bAutoSpell,"MG_FIREBALL",min(.@r,10),100; if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus2 bSkillAtk,"MG_FIREBALL",30; if (.@r >= 11) { bonus3 bAutoSpell,"WL_HELLINFERNO",3,100; } } } + - Id: 13495 + AegisName: Sealed_Red_Lotus_Sword + Name: Sealed Red Lotus Sword + Type: Weapon + SubType: 1hSword + Buy: 1 + Attack: 180 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bLongAtkRate,4*(.@r/3); if(.@r>=7){ bonus2 bSkillUseSPrate,"GN_CARTCANNON",10; } if(.@r>=9){ bonus2 bSkillAtk,"GN_CARTCANNON",15; } + - Id: 13497 + AegisName: Edge_ + Name: Edge + Type: Weapon + SubType: 1hSword + Buy: 1 + Weight: 1200 + Attack: 60 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 60 + Refineable: true + Script: | + bonus bHit,-40; bonus3 bAddEffOnSkill,"RG_RAID",Eff_Bleeding,100; bonus2 bSkillAtk,"RG_RAID",50; .@s = getskilllv("SM_SWORD"); bonus bHit,3*.@s; bonus2 bAddClass,Class_All,2; .@r = getrefine(); if(.@r>=9){ bonus bHit,2*.@s; bonus2 bAddClass,Class_All,2; } + - Id: 13498 + AegisName: Nagan_ + Name: Nagan + Type: Weapon + SubType: 1hSword + Buy: 1 + Weight: 500 + Attack: 120 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 60 + Refineable: true + Script: | + .@b = readparam(bStr); bonus bCritical,1*(.@b/10); bonus bCritAtkRate,2; skill "TF_DOUBLE",5; .@r = getrefine(); if(.@r>=1){ bonus bCritAtkRate,1*(.@b/10); } + - Id: 13499 + AegisName: Kladenets + Name: Kladenets + Type: Weapon + SubType: 1hSword + Buy: 1 + Weight: 1500 + Attack: 180 + MagicAttack: 160 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 130 + Refineable: true + Script: | + .@r = getrefine(); .@rate = 1+.@r; bonus3 bAutoSpellWhenHit,"SO_PSYCHIC_WAVE",3,.@rate; if(.@r>=10){ bonus bFixedCastrate,-70; } + - Id: 15000 + AegisName: Bone_Plate + Name: Bone Plate + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 60 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Classes: + Upper: true + Third_Upper: true + Locations: + Armor: true + EquipLevelMin: 85 + Refineable: true + Script: | + bonus bStr,1; bonus bMdef,3; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus2 bIgnoreDefRaceRate,RC_Brute,10; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,10; bonus3 bAutoSpellWhenHit,"NPC_WIDEBLEEDING",1,10; + - Id: 15001 + AegisName: Odin's_Blessing_I + Name: Odin's Blessing + Type: Armor + Defense: 10 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Armor: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 15002 + AegisName: Rune_Plate + Name: Rune Plate + Type: Armor + Defense: 95 + Slots: 1 + Jobs: + Knight: true + Locations: + Armor: true + EquipLevelMin: 99 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 15003 + AegisName: Freyja_SRobe7 + Name: Freyja Soul Robe7 + Type: Armor + Weight: 300 + Defense: 7 + Locations: + Armor: true + EquipLevelMin: 20 + Script: | + bonus bMaxHP,700; + - Id: 15004 + AegisName: Freyja_SRobe30 + Name: Freyja Soul Robe30 + Type: Armor + Weight: 300 + Defense: 7 + Locations: + Armor: true + EquipLevelMin: 20 + Script: | + bonus bMaxHP,700; + - Id: 15005 + AegisName: Freyja_SRobe60 + Name: Freyja Soul Robe60 + Type: Armor + Weight: 300 + Defense: 7 + Locations: + Armor: true + EquipLevelMin: 20 + Script: | + bonus bMaxHP,700; + - Id: 15006 + AegisName: Freyja_SRobe90 + Name: Freyja Soul Robe90 + Type: Armor + Weight: 300 + Defense: 7 + Locations: + Armor: true + EquipLevelMin: 20 + Script: | + bonus bMaxHP,700; + - Id: 15007 + AegisName: Time_Keepr_Robe + Name: Time Keeper Robe + Type: Armor + Buy: 30000 + Defense: 62 + Locations: + Armor: true + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,1; bonus bStr,2; bonus bMaxHP,200; + - Id: 15008 + AegisName: Flame_Sprits_Armor__ + Name: Flame Sprits Armor + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 25 + Locations: + Armor: true + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bMdef,1; bonus bDefEle,Ele_Fire; bonus2 bSubDefEle,Ele_Earth,4; + - Id: 15009 + AegisName: Para_Team_Uniform1 + Name: Eden Team Uniform I + Type: Armor + Defense: 35 + Locations: + Armor: true + EquipLevelMin: 7 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,100; bonus bMaxSP,10; + - Id: 15010 + AegisName: Para_Team_Uniform2 + Name: Eden Team Uniform II + Type: Armor + Defense: 46 + Locations: + Armor: true + EquipLevelMin: 26 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,200; bonus bMaxSP,20; + - Id: 15011 + AegisName: Para_Team_Uniform3 + Name: Eden Team Uniform III + Type: Armor + Defense: 58 + Locations: + Armor: true + EquipLevelMin: 40 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,300; bonus bMaxSP,30; bonus bMdef,5; + - Id: 15012 + AegisName: Puente_Robe + Name: Puente Robe + Type: Armor + Buy: 12000 + Weight: 400 + Defense: 42 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 22 + Refineable: true + Script: | + bonus bFixedCastrate,-3; bonus bHealPower,5; + - Id: 15013 + AegisName: Claire_Suits + Name: Claire Suits + Type: Armor + Buy: 28000 + Weight: 2800 + Defense: 58 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Upper: true + Third_Upper: true + Locations: + Armor: true + EquipLevelMin: 22 + Refineable: true + - Id: 15014 + AegisName: Ebone_Armor + Name: Ebon Armor + Type: Armor + Buy: 40000 + Weight: 4500 + Defense: 93 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + - Id: 15015 + AegisName: Upg_Adv_Suit + Name: Upg Adv Suit + Type: Armor + Buy: 20 + Weight: 150 + Defense: 25 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bMaxHPrate,3; + - Id: 15016 + AegisName: Upg_Coat + Name: Upg Coat + Type: Armor + Buy: 20 + Weight: 600 + Defense: 47 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Armor: true + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bMaxHPrate,3; + - Id: 15017 + AegisName: Upg_Saint_Robe + Name: Upg Saint Robe + Type: Armor + Buy: 20 + Weight: 300 + Defense: 55 + Slots: 1 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Merchant: true + Monk: true + Priest: true + Locations: + Armor: true + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bMdef,5; bonus bMaxHPrate,3; + - Id: 15018 + AegisName: Upg_Tights + Name: Upg Tights + Type: Armor + Buy: 20 + Weight: 250 + Defense: 32 + Slots: 1 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Locations: + Armor: true + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bDex,1; bonus bMaxHPrate,3; + - Id: 15019 + AegisName: Upg_Thief_Cloth + Name: Upg Thief Cloth + Type: Armor + Buy: 20 + Weight: 100 + Defense: 45 + Slots: 1 + Jobs: + Assassin: true + Ninja: true + Rogue: true + Thief: true + Locations: + Armor: true + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bAgi,1; bonus bMaxHPrate,3; + - Id: 15020 + AegisName: Upg_Mail + Name: Upg Mail + Type: Armor + Buy: 20 + Weight: 1650 + Defense: 60 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Locations: + Armor: true + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bMaxHPrate,3; + - Id: 15021 + AegisName: Upg_Formal_Dress + Name: Upg Formal Dress + Type: Armor + Buy: 20 + Weight: 150 + Defense: 45 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Armor: true + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bMaxHPrate,3; + - Id: 15022 + AegisName: Brazil_Swimsuit + Name: Brazil Swimsuit + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bStr,4; bonus bInt,4; bonus bMdef,3; bonus2 bSubEle,Ele_Water,20; + - Id: 15023 + AegisName: Half_Brynhild + Name: Half Brynhild + Type: Armor + Buy: 20 + Defense: 60 + Locations: + Armor: true + EquipLevelMin: 47 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,10; bonus bMaxHP,20*BaseLevel; bonus bMaxSP,5*BaseLevel; bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bUnbreakableArmor; bonus bNoKnockback; + - Id: 15024 + AegisName: Army_Padding + Name: Army Padding + Type: Armor + Weight: 10 + Defense: 10 + Locations: + Armor: true + EquipLevelMin: 1 + Refineable: true + - Id: 15025 + AegisName: Golden_Rod_Robe + Name: Golden Rod Robe + Type: Armor + Buy: 20 + Weight: 500 + Defense: 40 + Jobs: + Wizard: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bDefEle,Ele_Wind; bonus bMdef,10; bonus bInt,1; bonus2 bSkillVariableCast,"WZ_VERMILION",-3000; if(readparam(bInt)>=120){ bonus bInt,1; } + - Id: 15026 + AegisName: Aqua_Robe + Name: Aqua Robe + Type: Armor + Buy: 20 + Weight: 500 + Defense: 40 + Jobs: + Wizard: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bDefEle,Ele_Water; bonus bMdef,10; bonus bInt,1; bonus2 bSkillVariableCast,"WZ_STORMGUST",-3000; if(readparam(bInt)>=120){ bonus bInt,1; } + - Id: 15027 + AegisName: Crimson_Robe + Name: Crimson Robe + Type: Armor + Buy: 20 + Weight: 500 + Defense: 40 + Jobs: + Wizard: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bDefEle,Ele_Fire; bonus bMdef,10; bonus bInt,1; bonus2 bSkillVariableCast,"WZ_METEOR",-3000; if(readparam(bInt)>=120){ bonus bInt,1; } + - Id: 15028 + AegisName: Forest_Robe + Name: Forest Robe + Type: Armor + Buy: 20 + Weight: 500 + Defense: 40 + Jobs: + Wizard: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bDefEle,Ele_Earth; bonus bMdef,10; bonus bInt,1; bonus2 bSkillVariableCast,"WZ_HEAVENDRIVE",-3000; if(readparam(bInt)>=120){ bonus bInt,1; } + - Id: 15029 + AegisName: Robe_Of_Affection + Name: Robe Of Affection + Type: Armor + Buy: 20 + Weight: 300 + Defense: 22 + Jobs: + Priest: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bDefEle,Ele_Holy; bonus bMdef,10; bonus bInt,1; bonus2 bSkillUseSP,"AB_CLEMENTIA",50; + - Id: 15030 + AegisName: Robe_Of_Judgement + Name: Robe Of Judgement + Type: Armor + Buy: 20 + Weight: 300 + Defense: 22 + Jobs: + Priest: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bDefEle,Ele_Dark; bonus bMdef,10; bonus bStr,2; bonus bInt,1; bonus2 bSubRace,RC_All,-10; bonus2 bSubRace,RC_Undead,20; bonus2 bSubRace,RC_Demon,20; + - Id: 15031 + AegisName: Para_Team_Armor + Name: Paradise Uniform IV + Type: Armor + Defense: 70 + Locations: + Armor: true + EquipLevelMin: 60 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,5; bonus bMaxHP,500; bonus bMaxSP,50; bonus bStr,1; bonus bInt,1; bonus bDex,1; + - Id: 15032 + AegisName: Tidung + Name: Tidung + Type: Armor + Buy: 10 + Weight: 500 + Defense: 2 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Armor: true + Refineable: true + Script: | + bonus bMdef,10; bonus2 bResEff,Eff_Stun,1500; bonus2 bResEff,Eff_Freeze,1500; bonus2 bSubClass,Class_All,5; + - Id: 15033 + AegisName: Tutorial_Mattle + Name: Tutorial Mantle + Type: Armor + Weight: 600 + Defense: 37 + Locations: + Armor: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 15034 + AegisName: Tutorial_Mattle_ + Name: Tutorial Mantle + Type: Armor + Weight: 600 + Defense: 37 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 15035 + AegisName: 2010_Love_Daddy + Name: 2010 Love Dad + Type: Armor + Buy: 10 + Weight: 100 + Defense: 6 + Slots: 1 + Locations: + Armor: true + Refineable: true + Script: | + bonus bAllStats,1; bonus bMaxHP,150; bonus bMaxSP,150; bonus2 bResEff,Eff_Stone,9000; bonus2 bResEff,Eff_Freeze,9000; bonus2 bResEff,Eff_Stun,9000; bonus2 bResEff,Eff_Sleep,9000; bonus2 bResEff,Eff_Silence,9000; bonus2 bResEff,Eff_Curse,9000; bonus2 bResEff,Eff_Confusion,9000; bonus2 bResEff,Eff_Blind,9000; bonus2 bResEff,Eff_Poison,9000; bonus2 bResEff,Eff_Bleeding,9000; + - Id: 15036 + AegisName: Ur_Plate + Name: Ur's Plate + Type: Armor + Buy: 20 + Weight: 3000 + Defense: 110 + Jobs: + Knight: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bMdef,10; bonus bMaxHPrate,getrefine(); bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubEle,Ele_Neutral,5; + - Id: 15037 + AegisName: Peuz_Plate + Name: Peuz's Plate + Type: Armor + Buy: 20 + Weight: 3000 + Defense: 110 + Jobs: + Knight: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bMdef,10; bonus bBaseAtk,20; bonus bFlee,17; + - Id: 15038 + AegisName: Sabah_Cloth + Name: Sapha's Cloth + Type: Armor + Buy: 20 + Weight: 100 + Defense: 45 + Slots: 1 + Jobs: + Assassin: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bLuk,3; bonus3 bAutoSpell,"ASC_METEORASSAULT",max(getskilllv("ASC_METEORASSAULT"),1),20; + - Id: 15039 + AegisName: Nab_Cloth + Name: Nab's Cloth + Type: Armor + Buy: 20 + Weight: 100 + Defense: 45 + Slots: 1 + Jobs: + Assassin: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bStr,2; bonus bInt,2; + - Id: 15040 + AegisName: Prison_Uniform + Name: Prison Uniform + Type: Armor + Buy: 10 + Weight: 1500 + Defense: 5 + Locations: + Armor: true + EquipLevelMin: 50 + Refineable: true + Script: | + .@r = getrefine(); bonus bHit,.@r; bonus bFlee,.@r; + - Id: 15041 + AegisName: Boitata_Armor + Name: Boitata Armor + Type: Armor + Buy: 20 + Weight: 600 + Defense: 45 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 60 + Refineable: true + Script: | + bonus bMdef,3; bonus2 bSubEle,Ele_Neutral,7; bonus bMaxHPrate,5; bonus bFlee,5; + - Id: 15042 + AegisName: White_Wing_Suits + Name: White Wing Suits + Type: Armor + Buy: 20 + Weight: 100 + Defense: 45 + Slots: 1 + Jobs: + Hunter: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bLongAtkRate,.@r*2; bonus bFlee,.@r; + - Id: 15043 + AegisName: Black_Wing_Suits + Name: Black Wing Suits + Type: Armor + Buy: 20 + Weight: 100 + Defense: 45 + Slots: 1 + Jobs: + Hunter: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bInt,2; bonus bBaseAtk,getrefine()*3; + - Id: 15044 + AegisName: Green_Operation_Coat + Name: Green Surgical Gown + Type: Armor + Buy: 56000 + Weight: 660 + Defense: 66 + Slots: 1 + Jobs: + Alchemist: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bDex,1; bonus bMaxSP,30; + - Id: 15045 + AegisName: Armor_Of_Valor + Name: Armor Of Valor + Type: Armor + Defense: 4 + Locations: + Armor: true + Script: | + bonus bHPrecovRate,10; + - Id: 15046 + AegisName: Siege_Plate + Name: Siege Plate + Type: Armor + Weight: 3300 + Defense: 85 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + StarGladiator: true + Swordman: true + Taekwon: true + Locations: + Armor: true + EquipLevelMin: 95 + Refineable: true + Script: | + bonus bMdef,5; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; .@r = getrefine(); if(.@r>5) { bonus bHealpower2,12; bonus bAddItemHealRate,12; } if(.@r>8) { bonus bMaxHPrate,25; } + - Id: 15047 + AegisName: Siege_Suits + Name: Siege Suit + Type: Armor + Weight: 750 + Defense: 50 + Slots: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Gunslinger: true + Hunter: true + KagerouOboro: true + Knight: true + Merchant: true + Ninja: true + Rebellion: true + Rogue: true + StarGladiator: true + Swordman: true + Taekwon: true + Thief: true + Locations: + Armor: true + EquipLevelMin: 95 + Refineable: true + Script: | + bonus bMdef,10; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; .@r = getrefine(); if(.@r>5) { bonus bFlee2,5; bonus bLongAtkDef,20; } if(.@r>8) { bonus bMaxHPrate,15; } + - Id: 15048 + AegisName: Siege_Robe + Name: Siege Robe + Type: Armor + Weight: 500 + Defense: 40 + Slots: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Novice: true + Priest: true + Sage: true + SoulLinker: true + SuperNovice: true + Wizard: true + Locations: + Armor: true + EquipLevelMin: 95 + Refineable: true + Script: | + bonus bMdef,20; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; .@r = getrefine(); if(.@r>5) { bonus bFlee,5; bonus bLongAtkDef,15; } if(.@r>8) { bonus bMaxHP,1000; bonus bMaxSP,100; } + - Id: 15049 + AegisName: Armor_Of_Faith + Name: Armor Of Faith + Type: Armor + Buy: 20 + Weight: 1000 + Locations: + Armor: true + EquipLevelMin: 50 + Refineable: true + Script: | + bonus bStr,4; bonus bInt,4; bonus bVit,4; bonus bDex,4; bonus bAgi,4; bonus bLuk,4; + - Id: 15050 + AegisName: Armor_Of_Sanctity + Name: Armor Of Sanctity + Type: Armor + Buy: 20 + Weight: 1000 + Locations: + Armor: true + EquipLevelMin: 50 + Refineable: true + Script: | + bonus bStr,4; bonus bInt,4; bonus bVit,4; bonus bDex,4; bonus bAgi,4; bonus bLuk,4; + - Id: 15051 + AegisName: Bakonawa_Armor + Name: Bakunawa Scale Armor + Type: Armor + Buy: 20 + Weight: 500 + Defense: 55 + Locations: + Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bSubClass,Class_Boss,getrefine()/2; bonus bAllStats,1; + - Id: 15052 + AegisName: Bayani_Bakonawa_Armor + Name: Bayani Bakunawa Scale Armor + Type: Armor + Buy: 20 + Weight: 500 + Defense: 55 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bSubClass,Class_Boss,getrefine()/2; bonus bAllStats,2; + - Id: 15053 + AegisName: Special_Ninja_Suit + Name: Special Ninja Suit + Type: Armor + Buy: 10000 + Weight: 1200 + Defense: 70 + Jobs: + Ninja: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bAgi,1+(getrefine()/3); + - Id: 15054 + AegisName: Ninja_Scale_Armor + Name: Ninja Scale Armor + Type: Armor + Buy: 10000 + Weight: 1800 + Defense: 90 + Slots: 1 + Jobs: + Ninja: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bMaxHPrate,15; bonus bMaxSPrate,-30; + - Id: 15055 + AegisName: Tenebris_Latitantes + Name: Armor of Nothingness + Type: Armor + Buy: 10000 + Weight: 1500 + Defense: 60 + Slots: 1 + Jobs: + Ninja: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bAgi,1; bonus4 bAutoSpellWhenHit,"KO_ZANZOU",1,50,1; + - Id: 15056 + AegisName: Special_Ninja_Suit_ + Name: Special Ninja Suit + Type: Armor + Buy: 10000 + Weight: 1200 + Defense: 70 + Slots: 1 + Jobs: + Ninja: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bAgi,1+(getrefine()/3); + - Id: 15057 + AegisName: Pure_White_Apron + Name: Pure White Apron + Type: Armor + Buy: 20 + Weight: 600 + Defense: 50 + Slots: 1 + Locations: + Armor: true + Refineable: true + - Id: 15058 + AegisName: Rider_Suit + Name: Rider Suit + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 40 + Slots: 1 + Jobs: + Archer: true + Novice: true + SuperNovice: true + Swordman: true + Thief: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bAgi,1+(getrefine()/2); + - Id: 15059 + AegisName: 2011Love_Daddy + Name: 2011Love Daddy + Type: Armor + Buy: 20 + Weight: 100 + Defense: 80 + Slots: 1 + Locations: + Armor: true + Refineable: true + - Id: 15060 + AegisName: Sky_Blue_Smock + Name: Sky Blue Smock + Type: Armor + Buy: 20 + Weight: 300 + Defense: 1 + Slots: 1 + Locations: + Armor: true + Refineable: true + Script: | + bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; if(BaseLevel<80) { bonus bHealPower,5; } + - Id: 15061 + AegisName: Egir_Armor + Name: Egir Armor + Type: Armor + Buy: 200000 + Weight: 2600 + Defense: 55 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 110 + Refineable: true + Script: | + 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; + - Id: 15062 + AegisName: TE_Woe_Coat + Name: TE Woe Coat + Type: Armor + Defense: 15 + Locations: + Armor: true + EquipLevelMin: 40 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,15; bonus bMaxHP,250; bonus bMaxSP,250; bonus2 bSubRace,RC_Player_Human,10; bonus2 bResEff,Eff_Freeze,25; + - Id: 15063 + AegisName: TE_Woe_Chain_Mail + Name: TE Woe Chain Mail + Type: Armor + Defense: 25 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Armor: true + EquipLevelMin: 40 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,5; bonus bMaxHP,450; bonus bMaxSP,50; bonus2 bSubRace,RC_Player_Human,15; bonus2 bResEff,Eff_Freeze,25; + - Id: 15064 + AegisName: TE_Woe_Mage_Coat + Name: TE Woe Mage Coat + Type: Armor + Defense: 5 + Jobs: + Acolyte: true + Mage: true + Monk: true + Novice: true + Priest: true + Sage: true + SoulLinker: true + SuperNovice: true + Wizard: true + Locations: + Armor: true + EquipLevelMin: 40 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,25; bonus bMaxHP,200; bonus bMaxSP,200; bonus2 bSubRace,RC_Player_Human,5; bonus2 bResEff,Eff_Freeze,25; + - Id: 15066 + AegisName: Engraved_Armor + Name: Engraved Plate Armor + Type: Armor + Buy: 100000 + Weight: 3000 + Defense: 120 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Armor: true + EquipLevelMin: 150 + Refineable: true + Script: | + bonus bMdef,25; + - Id: 15067 + AegisName: Rune_Suit + Name: Rune Suit + Type: Armor + Locations: + Armor: true + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bExpAddRace,RC_All,10; + - Id: 15068 + AegisName: Im_Angel's_Protection + Name: Advanced Angelic Protection + Type: Armor + Buy: 10000 + Weight: 600 + Defense: 40 + Slots: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Armor: true + EquipLevelMin: 99 + Refineable: true + Script: | + bonus bMdef,30; + - Id: 15069 + AegisName: Suit_Of_Sid + Name: Suit Of Sid + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 30 + Locations: + Armor: true + Refineable: true + - Id: 15070 + AegisName: Clothes_of_Happiness + Name: Clothes of Happiness + Type: Armor + Buy: 10 + Weight: 1000 + Defense: 5 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bMdef,5; bonus bLuk,getrefine(); + - Id: 15071 + AegisName: Valkyrian_Robe + Name: Valkyrian Robe + Type: Armor + Buy: 20 + Weight: 2800 + Defense: 55 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + Wizard: true + Classes: + Upper: true + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + 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; + - Id: 15072 + AegisName: Nectar_Suit + Name: Nectar Suit + Type: Armor + Buy: 20 + Weight: 300 + Defense: 35 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bVit,3; bonus bMdef,5; bonus bMaxHPrate,(getrefine()/2); bonus bMaxSPrate,(getrefine()/2); + - Id: 15073 + AegisName: Anti_Magic_Suit + Name: Anti-Magic Suits + Type: Armor + Buy: 10 + Weight: 1500 + Defense: 50 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxHPrate,5+((.@r >= 9) ? 2 : 0); bonus bMdef,10+((.@r >= 7) ? 5 : 0); + - Id: 15074 + AegisName: Geffen_Mage_Robe + Name: Geffen Magic Robe + Type: Armor + Buy: 10 + Weight: 1000 + Defense: 40 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus bUseSPrate,-10-((.@r>=7) ? 5: 0); bonus bVariableCastrate,15-((.@r>=9) ? 5: 0); bonus bNoCastCancel2; + - Id: 15087 + AegisName: Azure_Dragon_Armor + Name: Azure Dragon Armor + Type: Armor + Buy: 20 + Weight: 500 + Defense: 55 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bDefEle,Ele_Water; bonus bMdef,5; bonus2 bAddEle,Ele_Water,10; + - Id: 15088 + AegisName: School_Uniform + Name: School Uniform + Type: Armor + Buy: 20 + Weight: 500 + Defense: 25 + Slots: 1 + Locations: + Armor: true + Refineable: true + Script: | + bonus bAgi,1; bonus bLuk,1; bonus bMaxHP,BaseLevel*3; bonus bMaxSP,BaseLevel/2; + - Id: 15089 + AegisName: Menswear + Name: Menswear + Type: Armor + Buy: 10 + Weight: 300 + Defense: 40 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Armor: true + EquipLevelMin: 80 + Refineable: true + Script: | + .@r = getrefine(); bonus bAspdRate,3+((.@r>=7)?2:0); bonus bDelayrate,-3-((.@r>=7)?2:0); bonus bVariableCastrate,-3-((.@r>=7)?2:0); + - Id: 15090 + AegisName: Armor_Of_Gray + Name: Armor of Gray + Type: Armor + Buy: 10 + Weight: 2400 + Defense: 90 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Rogue: true + Swordman: true + Thief: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 120 + Refineable: true + Script: | + bonus bMdef,10; bonus2 bSubEle,Ele_Holy,10+getrefine()*2; + - Id: 15091 + AegisName: Gray_Robe + Name: Gray Robe + Type: Armor + Buy: 20 + Weight: 1300 + Defense: 55 + Slots: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 120 + Refineable: true + Script: | + bonus2 bSubEle,Ele_Holy,10+getrefine()*2; + - Id: 15093 + AegisName: Hero_Plate + Name: Hero Plate + Type: Armor + Buy: 10 + Weight: 4000 + Defense: 120 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Armor: true + EquipLevelMin: 160 + Refineable: true + Script: | + bonus bMdef,5; bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bMatk,10; bonus bBaseAtk,10; bonus bHit,10; bonus bFlee,10; bonus2 bSkillAtk,"LG_BANISHINGPOINT",10; bonus2 bSkillAtk,"RK_HUNDREDSPEAR",10; .@r = getrefine(); bonus5 bAutoSpell,"AL_HEAL",10,50+.@r,BF_SHORT,0; bonus5 bAutoSpell,"WZ_STORMGUST",10,50+.@r,BF_SHORT,1; + - Id: 15094 + AegisName: Hero_Magic_Coat + Name: Hero Magic Coat + Type: Armor + Buy: 10 + Weight: 800 + Defense: 50 + Slots: 1 + Jobs: + Mage: true + Sage: true + Wizard: true + Locations: + Armor: true + EquipLevelMin: 160 + Refineable: true + Script: | + bonus bMatk,10; bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bFlee,10; bonus2 bSkillAtk,"WL_CRIMSONROCK",10; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",10; .@r = getrefine(); if (.@r) { bonus bFixedCastrate,21-.@r/2; bonus bNoCastCancel2; bonus bMdef,.@r/2; } + - Id: 15095 + AegisName: Hero_Judgement_Shawl + Name: Hero Judgement Shawl + Type: Armor + Buy: 10 + Weight: 500 + Defense: 77 + Slots: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Armor: true + EquipLevelMin: 160 + Refineable: true + Script: | + bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bMatk,10; bonus bBaseAtk,10; bonus bHit,10; bonus bFlee,10; bonus2 bSkillAtk,"AB_JUDEX",10; bonus2 bSkillAtk,"AB_ADORAMUS",10; bonus2 bSkillAtk,"SR_DRAGONCOMBO",10; bonus2 bSkillAtk,"SR_SKYNETBLOW",10; bonus2 bSkillAtk,"SR_EARTHSHAKER",10; .@r = getrefine(); bonus5 bAutoSpell,"PR_KYRIE",10,50+.@r,BF_SHORT,0; bonus5 bAutoSpell,"PR_LEXAETERNA",1,50+.@r,BF_MAGIC,1; + - Id: 15096 + AegisName: Hero_Trade_Mail + Name: Hero Trade Mail + Type: Armor + Buy: 10 + Weight: 500 + Defense: 100 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Merchant: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 160 + Refineable: true + Script: | + bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bMatk,10; bonus bBaseAtk,10; .@r = getrefine(); if(readparam(bStr) >= 90) bonus bStr,.@r/2; if(readparam(bInt) >= 90) bonus bInt,.@r/2; if(readparam(bAgi) >= 90) bonus bAgi,.@r/2; if(readparam(bVit) >= 90) bonus bVit,.@r/2; if(readparam(bDex) >= 90) bonus bDex,.@r/2; if(readparam(bLuk) >= 90) bonus bLuk,.@r/2; + - Id: 15097 + AegisName: Hero_Hidden_Cloth + Name: Hero Hidden Cloth + Type: Armor + Buy: 10 + Weight: 200 + Defense: 70 + Slots: 1 + Jobs: + Assassin: true + Rogue: true + Thief: true + Locations: + Armor: true + EquipLevelMin: 160 + Refineable: true + Script: | + bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus2 bSkillAtk,"SC_FATALMENACE",10; bonus2 bSkillAtk,"SC_TRIANGLESHOT",10; bonus2 bSkillAtk,"GC_CROSSIMPACT",10; bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",10; autobonus "{ bonus bCritical,20; bonus bFlee,20; bonus2 bAddClass,Class_All,10; bonus bMatkRate,10; }",(5+getrefine())*10,10000,BF_WEAPON; + - Id: 15098 + AegisName: Hero_Taget_Suits + Name: Hero Target Suit + Type: Armor + Buy: 10 + Weight: 200 + Defense: 60 + Slots: 1 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 160 + Refineable: true + Script: | + bonus bMaxHPrate,5; bonus bMaxSPrate,5; .@r = getrefine(); bonus bAllStats,1; bonus5 bAutoSpell,"AC_CONCENTRATION",10,(5+.@r)*5,BF_WEAPON,0; bonus5 bAutoSpell,"AC_DOUBLE",10,(5+.@r)*5,BF_WEAPON,1; + - Id: 15100 + AegisName: Frozen_Breastplate + Name: Frozen Breastplate + Type: Armor + Buy: 20 + Weight: 1500 + Defense: 20 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 130 + Refineable: true + Script: | + bonus bDefEle,Ele_Water; + - Id: 15101 + AegisName: Harden_Breastplate + Name: Hardened Breastplate + Type: Armor + Buy: 20 + Weight: 1500 + Defense: 20 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 130 + Refineable: true + Script: | + bonus bDefEle,Ele_Earth; + - Id: 15102 + AegisName: Hunter_Mail + Name: Hunter Mail + Type: Armor + Buy: 20 + Weight: 500 + Defense: 30 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 50 + Refineable: true + Script: | + .@r = getrefine(); if (.@r>5) .@a = (.@r-5); else .@a = 0; bonus2 bAddRace,RC_Brute,3+.@a; bonus2 bMagicAddRace,RC_Brute,3+.@a; bonus2 bAddRace,RC_Player_Doram,3+.@a; bonus2 bMagicAddRace,RC_Player_Doram,3+.@a; + - Id: 15103 + AegisName: Kirin_Armor + Name: Kirin Armor + Type: Armor + Buy: 10 + Weight: 500 + Defense: 55 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 70 + Script: | + bonus bDefEle,Ele_Holy; + - Id: 15104 + AegisName: FishingMan_Mail + Name: FishingMan Mail + Type: Armor + Buy: 10 + Weight: 500 + Defense: 30 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 50 + Script: | + 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; } + - Id: 15105 + AegisName: Kaftan + Name: Kaftan + Type: Armor + Buy: 20 + Weight: 400 + Defense: 13 + Slots: 1 + Locations: + Armor: true + Refineable: true + Script: | + bonus bMdef,3; bonus2 bSubRace,RC_Demon,5; bonus2 bSubRace,RC_Undead,5; + - Id: 15106 + AegisName: Engineer_Mail + Name: Engineer Mail + Type: Armor + Buy: 20 + Weight: 500 + Defense: 30 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 50 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bAddRace,RC_Formless,3; bonus2 bMagicAddRace,RC_Formless,3; if (.@r>5) { bonus2 bAddRace,RC_Formless,.@r-5; bonus2 bMagicAddRace,RC_Formless,.@r-5; } + - Id: 15108 + AegisName: Venomous_Insect_Armor + Name: Venomous Insect Armor + Type: Armor + Buy: 20 + Weight: 500 + Defense: 55 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bDefEle,Ele_Poison; bonus bMdef,5; bonus2 bAddEle,Ele_Poison,10; + - Id: 15110 + AegisName: Supplement_Part_Str + Name: Supplement Part Str + Type: Armor + Buy: 25000 + Weight: 2000 + Defense: 80 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus2 bAddClass,Class_All,5+getrefine()/4; + - Id: 15111 + AegisName: Upgrade_Part_Plate + Name: Reinforced Parts - Gloves + Type: Armor + Buy: 10 + Weight: 3000 + Defense: 110 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bUnbreakableArmor; 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; } + - Id: 15116 + AegisName: Airship_Armor + Name: Airship's Armor + Type: Armor + Buy: 10 + Weight: 700 + Defense: 100 + Locations: + Armor: true + EquipLevelMin: 125 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHP,1000; bonus bMaxSP,100; bonus bMdef,10; bonus bAllStats,1; + - Id: 15117 + AegisName: Felock_Armor + Name: Felrock's Armor + Type: Armor + Buy: 10 + Weight: 750 + Defense: 70 + Locations: + Armor: true + EquipLevelMin: 125 + Refineable: true + Script: | + 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; } + - Id: 15121 + AegisName: Robe_Of_Sarah + Name: Sarah's Battle Robe + Type: Armor + Buy: 10 + Weight: 800 + Defense: 35 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 145 + Refineable: true + Script: | + autobonus "{ bonus bMatk,getrefine()*8; }",3,10000,BF_MAGIC; + - Id: 15123 + AegisName: Whikebain_Suit + Name: Whikebain Suit + Type: Armor + Weight: 900 + Defense: 56 + Slots: 1 + Jobs: + Assassin: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 105 + Refineable: true + Script: | + .@r = getrefine(); bonus bCritAtkRate,(.@r>=7)?(6):((.@r>=5)?(4):(0)); bonus3 bAutoSpell,"DC_WINKCHARM",1,10; /* Confirm: Success rate */ + - Id: 15125 + AegisName: Female_Diver_Suit + Name: Female Diver's Suit + Type: Armor + Buy: 20 + Weight: 300 + Defense: 20 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 80 + Refineable: true + Script: | + bonus2 bAddMonsterDropItem,579,500+(getrefine()*100); if (getrefine()>=7) { bonus bHPrecovRate,-100; bonus bHPGainValue,100; } + - Id: 15126 + AegisName: Female_Poring_Balloon + Name: Private Doram Suits + Type: Armor + Buy: 20 + Weight: 700 + Defense: 80 + Slots: 1 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bMaxHP,500; bonus bMaxSP,100; .@r = getrefine()/3; bonus bDex,.@r; bonus bInt,.@r; + - Id: 15128 + AegisName: Excelion_Suit + Name: Excelion Suit + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 100 + Locations: + Armor: true + EquipLevelMin: 99 + Refineable: true + Script: | + bonus bVit,6 + (BaseLevel > 129 ? 4 : 0); bonus bMaxHPrate,(getrefine() / 3) * 4; bonus bUnbreakableArmor; + - Id: 15129 + AegisName: Blue_Bellflower_Hat + Name: Luxury Doram Suit + Type: Armor + Buy: 20 + Weight: 800 + Defense: 100 + Slots: 1 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Armor: true + EquipLevelMin: 140 + Refineable: true + Script: | + bonus bMaxHPrate,10; bonus bMaxSPrate,10; .@r = getrefine()/2; bonus bDex,.@r; bonus bInt,.@r; + - Id: 15138 + AegisName: Aegir_Armor + Name: Aegir Armor + Type: Armor + Buy: 10 + Weight: 1600 + Defense: 25 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 40 + Refineable: true + Script: | + bonus bMaxHP,500; bonus bMaxSP,50; bonus bUnbreakableArmor; + - Id: 15141 + AegisName: Rift_Ancient_Armor + Name: Rift Ancient Armor + Type: Armor + Buy: 10 + Weight: 500 + Defense: 30 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMaxHP,(.@r >= 9 ? 1500 : .@r >= 7 ? 900 : 500); bonus bMaxSP,-100; + - Id: 15143 + AegisName: Vermin_Cloth + Name: Vermin Cloth + Type: Armor + Buy: 10 + Weight: 1200 + Defense: 30 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 70 + Refineable: true + Script: | + .@r = getrefine(); bonus bMdef,5+.@r; bonus2 bSubRace,RC_Plant,(5+.@r); + - Id: 15144 + AegisName: Agriculture_Clothes + Name: Agriculture Clothes + Type: Armor + Buy: 10 + Weight: 1200 + Defense: 30 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 70 + Refineable: true + Script: | + .@r = getrefine(); bonus bMdef,5+.@r; bonus2 bSubRace,RC_Insect,5+.@r; + - Id: 15145 + AegisName: EvilDragon_Armor + Name: Evil Dragon Armor + Type: Armor + Weight: 4000 + Defense: 60 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); if(.@r>=10){ bonus2 bHPDrainRate,60,6; bonus2 bSPDrainRate,50,5; } else if(.@r>=9){ bonus2 bHPDrainRate,40,4; bonus2 bSPDrainRate,30,3; } else if(.@r>=8){ bonus2 bHPDrainRate,30,3; bonus2 bSPDrainRate,20,2; } + - Id: 15146 + AegisName: Flattery_Robe + Name: Flattery Robe + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Script: | + skill "SM_ENDURE",1; .@i = BaseLevel; bonus bMatk,(.@i>=140)?(150):((.@i>=120)?(100):(50)); + - Id: 15147 + AegisName: Invective_Robe + Name: Invective Robe + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Script: | + skill "AC_CONCENTRATION",1; .@i = getrefine()*4; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,.@i; bonus2 bIgnoreDefRaceRate,RC_Demon,.@i; bonus2 bIgnoreDefRaceRate,RC_Undead,.@i; + - Id: 15150 + AegisName: White_Shirt + Name: White Shirt + Type: Armor + Buy: 20 + Weight: 50 + Defense: 25 + Slots: 1 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Armor: true + EquipLevelMin: 6 + Refineable: true + Script: | + bonus bMaxHP,70; bonus bFlee,5; + - Id: 15151 + AegisName: White_Eco-Shirt + Name: White Eco-Shirt + Type: Armor + Buy: 20 + Weight: 100 + Defense: 40 + Slots: 1 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Armor: true + EquipLevelMin: 15 + Refineable: true + Script: | + bonus bMaxHP,150; bonus bFlee,10; + - Id: 15152 + AegisName: Unity_Mail + Name: Unity Mail + Type: Armor + Buy: 10 + Weight: 300 + Defense: 45 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bStr,2; bonus bMaxHPrate,2*(.@r/2); } + - Id: 15153 + AegisName: Unity_Mantle + Name: Unity Mantle + Type: Armor + Buy: 10 + Weight: 300 + Defense: 45 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bAgi,2; bonus bFlee,3*(.@r/2); } + - Id: 15154 + AegisName: Unity_Suit + Name: Unity Suit + Type: Armor + Buy: 10 + Weight: 300 + Defense: 45 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bDex,2; bonus bCritical,2*(.@r/2); } + - Id: 15155 + AegisName: Unity_Robe + Name: Unity Robe + Type: Armor + Buy: 10 + Weight: 300 + Defense: 45 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bInt,2; bonus bUseSPrate,-(.@r/2); } + - Id: 15156 + AegisName: Elegant_Doram_Suit + Name: Elegant Doram Suit + Type: Armor + Buy: 20 + Weight: 900 + Defense: 120 + Slots: 1 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Armor: true + EquipLevelMin: 175 + Refineable: true + Script: | + bonus bMaxHPrate,15; bonus bMaxSPrate,15; .@r = getrefine(); bonus bDex,.@r; bonus bInt,.@r; if(.@r > 9) bonus bUseSPrate,-5; + - Id: 15162 + AegisName: Lounge_Suit + Name: Lounge Suit + Type: Armor + Buy: 20 + Weight: 300 + Defense: 40 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Armor: true + EquipLevelMin: 80 + Refineable: true + Script: | + bonus bAspdRate,3; bonus bCastrate,-3; bonus bDelayrate,-3; if(getrefine() > 6) { bonus bAspdRate,2; bonus bCastrate,-2; bonus bDelayrate,-2; } + - Id: 15163 + AegisName: Agenda_Robe + Name: Agenda Robe + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Script: | + skill "SA_SPELLBREAKER",1; if (BaseLevel >= 140) { .@val = 14; } else if (BaseLevel >= 120) { .@val = 9; } else { .@val = 5; } bonus bMatkRate,.@val; + - Id: 15164 + AegisName: Consultative_Robe + Name: Consultation Robe + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bVit,5; skill "PA_SACRIFICE",1; bonus2 bSubEle,Ele_Dark,.@r*3; bonus2 bSubEle,Ele_Fire,.@r*3; + - Id: 15165 + AegisName: Pure_White_Marching_Hat + Name: Pure White Marching Hat + Type: Armor + Buy: 20 + Weight: 300 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 60 + Refineable: true + View: 1470 + Script: | + .@r = getrefine(); bonus bStr,2; autobonus "{ bonus bAtkEle,Ele_Ghost; }",5+.@r,60000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; /* Unknow Rates */ + - Id: 15166 + AegisName: Rosary_Necklace + Name: Rosary Necklace + Type: Armor + Buy: 20 + Weight: 300 + Locations: + Head_Low: true + EquipLevelMin: 60 + View: 1471 + Script: | + bonus bFlee2,2; bonus bHealPower,3; + - Id: 15169 + AegisName: Kardui_Robe + Name: Kardui Robe + Type: Armor + Buy: 20 + Weight: 800 + Defense: 60 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 90 + Refineable: true + Script: | + .@r = getrefine(); bonus bMatk,10; bonus bMdef,5; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; if(.@r>=7) { bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; } if(.@r>=8) { bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; bonus bUnbreakableArmor; } if(.@r>=9) { bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; } + - Id: 15174 + AegisName: Surfer_Swimsuit + Name: Surfer Swimsuit + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 40 + Refineable: true + Script: | + bonus bMaxHPrate,(getrefine()/3)+5; bonus bMaxSPrate,(getrefine()/3)+5; + - Id: 15175 + AegisName: Flame_Dragon_Armor + Name: Flame Dragon Armor + Type: Armor + Buy: 20 + Weight: 400 + Defense: 100 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 90 + Refineable: true + Script: | + .@r = getrefine(); if (.@r>=9) .@val = 20; else if (.@r>=7) .@val = 10; bonus bAllStats,1; bonus bHit,10+.@val; bonus2 bAddClass,Class_Boss,.@val; + - Id: 15176 + AegisName: Vigilante_Suit + Name: Vigilante Suit + Type: Armor + Weight: 500 + Defense: 50 + Jobs: + Rogue: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bDex,5; bonus bLongAtkRate,3*(.@r/2); if (.@r>=9) bonus2 bSkillAtk,"SC_TRIANGLESHOT",20; + - Id: 15177 + AegisName: Elemental_Robe + Name: Elemental Robe + Type: Armor + Weight: 500 + Defense: 40 + Jobs: + Sage: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bAspdRate,10; bonus bMatk,5*(.@r/2); if (.@r>=9) bonus3 bAutoSpell,"MG_THUNDERSTORM",max(5,getskilllv("MG_THUNDERSTORM")),50; + - Id: 15178 + AegisName: Golden_Ninja_Suit + Name: Golden Ninja Suit + Type: Armor + Weight: 500 + Defense: 50 + Jobs: + KagerouOboro: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bflee,5*(.@r/2); if (.@r>=9) bonus2 bSkillAtk,"KO_HAPPOKUNAI",20; + - Id: 15179 + AegisName: Mine_Worker's_Vest + Name: Mine Worker's Vest + Type: Armor + Weight: 1500 + Defense: 80 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bFlee,(10+4*(.@r/2)); if (.@r>=9) bonus bCritical,5; + - Id: 15180 + AegisName: Hippie_Clothes + Name: Hippie Clothes + Type: Armor + Weight: 50 + Defense: 50 + Jobs: + BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,20; if (.@r >= 9) bonus3 bAutoSpell,"AC_DOUBLE",max(3,getskilllv("AC_DOUBLE")),10; + - Id: 15181 + AegisName: Para_Team_Uniform100 + Name: Awakened Eden Group Uniform I + Type: Armor + Buy: 20 + Defense: 80 + Locations: + Armor: true + EquipLevelMin: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,1; bonus bMaxHP,700; bonus bMaxSP,100; bonus bMdef,7; + - Id: 15182 + AegisName: Para_Team_Uniform115 + Name: Awakened Eden Group Uniform II + Type: Armor + Buy: 20 + Defense: 85 + Locations: + Armor: true + EquipLevelMin: 115 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,1; bonus bMaxHP,1100; bonus bMaxSP,120; bonus bMdef,11; + - Id: 15183 + AegisName: Para_Team_Uniform130 + Name: Awakened Eden Group Uniform III + Type: Armor + Buy: 20 + Defense: 90 + Locations: + Armor: true + EquipLevelMin: 130 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,2; bonus bMaxHP,1100; bonus bMaxSP,120; bonus bMdef,11; + - Id: 15184 + AegisName: Para_Team_Uniform145 + Name: Awakened Eden Group Uniform IV + Type: Armor + Buy: 20 + Defense: 100 + Locations: + Armor: true + EquipLevelMin: 145 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,2; bonus bMaxHP,1500; bonus bMaxSP,150; bonus bMdef,15; + - Id: 15185 + AegisName: Para_Team_Uniform160 + Name: Awakened Eden Group Uniform V + Type: Armor + Buy: 20 + Defense: 100 + Locations: + Armor: true + EquipLevelMin: 160 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,2; bonus bMaxHP,1500; bonus bMaxSP,150; bonus bMdef,15; bonus2 bSubEle,Ele_All,5; bonus2 bSubEle,Ele_Neutral,-5; + - Id: 15186 + AegisName: Kafra_Uniform + Name: Kafra Uniform + Type: Armor + Buy: 20 + Weight: 500 + Defense: 40 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bExpAddClass,Class_All,5; bonus2 bDropAddClass,Class_All,5; .@r = getrefine(); bonus bMaxHP,100*.@r; bonus bMaxSP,20*.@r; bonus bMaxHPrate,(3*(.@r>=7)+5*(.@r>=9)); bonus bMaxSPrate,(3*(.@r>=7)+5*(.@r>=9)); if(.@r>=12){ bonus bHPrecovRate,100; bonus bSPrecovRate,100; } + - Id: 15189 + AegisName: Einherjar_Armor + Name: Einherjar Armor + Type: Armor + Buy: 20 + Weight: 800 + Defense: 60 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 90 + Refineable: true + Script: | + bonus bMdef,5; bonus bBaseAtk,10; .@r = getrefine(); if(.@r>=7){ bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; } if(.@r>=8){ bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; } if(.@r>=9){ bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; } + - Id: 15191 + AegisName: Khalitzburg_Knight_Armor + Name: Khalitzburg Knight Armor + Type: Armor + Buy: 20 + Weight: 100 + Defense: 45 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bLongAtkRate,2*getrefine(); bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; + - Id: 15195 + AegisName: Illusion_Puente_Robe + Name: Illusion Puente Robe + Type: Armor + Buy: 20 + Weight: 400 + Defense: 52 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 99 + Refineable: true + Script: | + bonus bFixedCastrate,-3; .@r = getrefine(); bonus bHealPower2,(5+.@r); bonus bAddItemHealRate,(5+.@r); + - Id: 15204 + AegisName: Abyss_Dress + Name: Abyss Dress + Type: Armor + Buy: 10 + Weight: 400 + Defense: 120 + Locations: + Armor: true + EquipLevelMin: 90 + Refineable: true + Script: | + .@r = getrefine(); bonus bNoKnockback; bonus bUnbreakableArmor; bonus bDefEle,Ele_dark; if (.@r>=5) { .@val = 10; if (.@r>=7) { .@val += 15; if (.@r>=9) { .@val += 15; } } bonus2 bAddEle,Ele_Dark,.@val; bonus2 bAddEle,Ele_Undead,.@val; bonus2 bMagicAddEle,Ele_Dark,.@val; bonus2 bMagicAddEle,Ele_Undead,.@val; bonus2 bAddRace,RC_Undead,.@val; bonus2 bAddRace,RC_Demon,.@val; bonus2 bMagicAddRace,RC_Undead,.@val; bonus2 bMagicAddRace,RC_Demon,.@val; } + - Id: 15205 + AegisName: Medical_Scrubs + Name: Medical Scrubs + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 50 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bMdef,10; bonus bDelayrate,-10; .@val = 1; if (.@r >= 7) { .@def = 50; bonus bUnbreakableArmor,1; .@val += 2; if (.@r >= 8) { .@def += 100; .@val += 3; bonus2 bSubRace,RC_DemiHuman,7; bonus2 bSubRace,RC_Player_Human,7; if (.@r >= 9) { .@def += 150; .@val += 4; bonus2 bResEff,Eff_Stone,5000; } } bonus bDef,.@def; } bonus bHealPower,2*.@val; bonus bHealPower2,.@val; bonus bAddItemHealRate,.@val; + - Id: 15209 + AegisName: Drake_Coat + Name: Drake Coat + Type: Armor + Buy: 20 + Weight: 1200 + Defense: 60 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxHP,500; bonus bMaxSP,50; bonus bMdef,10; bonus2 bAddClass,Class_All,3; if (.@r>=7) { bonus bMaxHP,1000; bonus bMaxSP,100; bonus2 bAddClass,Class_All,3; } if (.@r>=9) { bonus bMaxHP,1500; bonus bMaxSP,150; bonus2 bAddClass,Class_All,4; bonus bNoSizeFix; } + - Id: 15212 + AegisName: YSF01_Plate + Name: YSF01 Plate + Type: Armor + Weight: 2100 + Defense: 78 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); if (.@r >= 13) { .@val = 11; } else if (.@r >= 11) { .@val = 7; } else if (.@r >= 8) { .@val = 5; } if (readparam(bStr) >= 125) { .@val += .@r; } if (.@val) { bonus2 bAddClass,Class_All,.@val; } + - Id: 15250 + AegisName: Beginner's_Suit + Name: Beginner's Suit + Type: Armor + Defense: 40 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 100 + Script: | + bonus bAllStats,1; bonus bMaxHP,400; bonus bMaxSP,100; bonus2 bAddClass,Class_All,2; bonus2 bMagicAddClass,Class_All,2; + - Id: 15280 + AegisName: S_Cri_Hit_Armor + Name: Critical Hit Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); .@val = 7; bonus bBaseAtk,15; if (.@r > 1) { bonus bCritAtkRate,(.@r/2); if (.@r >= 7) { .@val += 7; } } bonus bCritical,.@val; + - Id: 15283 + AegisName: Mighty_Black_Threaded_Armor + Name: Mighty Black Threaded Armor + Type: Armor + Buy: 20 + Weight: 800 + Defense: 60 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,10; bonus2 bIgnoreDefClassRate,Class_All,10; if (.@r>=7) { bonus bBaseAtk,20; bonus2 bIgnoreDefClassRate,Class_All,20; } if (.@r>=8) { bonus bBaseAtk,20; bonus2 bIgnoreDefClassRate,Class_All,20; bonus bUnbreakableArmor; } if (.@r>=9) { bonus bBaseAtk,30; bonus2 bIgnoreDefClassRate,Class_All,20; } + - Id: 15348 + AegisName: Illusion_Goibne_Armor + Name: Illusion Goibne Armor + Type: Armor + Weight: 3500 + Defense: 158 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Armor: true + EquipLevelMin: 130 + Refineable: true + Script: | + bonus bMaxHPrate,10; .@r = getrefine(); if (.@r >= 9) { bonus bDef,150; } else if (.@r >= 7) { bonus bDef,50; } + - Id: 15352 + AegisName: Nature_Dress + Name: Nature Dress + Type: Armor + Buy: 10 + Weight: 400 + Defense: 120 + Locations: + Armor: true + EquipLevelMin: 90 + Refineable: true + Script: | + .@r = getrefine(); bonus bNoKnockback; bonus bUnbreakableArmor; bonus bDefEle,Ele_Earth; if (.@r>8) .@a = 40; else if (.@r>6) .@a = 25; else if (.@r>=5) .@a = 10; bonus2 bAddEle,Ele_Earth,.@a; bonus2 bAddEle,Ele_Wind,.@a; bonus2 bMagicAddEle,Ele_Earth,.@a; bonus2 bMagicAddEle,Ele_Wind,.@a; bonus2 bAddRace,RC_Demihuman,.@a; bonus2 bAddRace,RC_Brute,.@a; bonus2 bAddRace,RC_Player_Doram,.@a; bonus2 bMagicAddRace,RC_Demihuman,.@a; bonus2 bMagicAddRace,RC_Brute,.@a; bonus2 bMagicAddRace,RC_Player_Doram,.@a; bonus2 bAddRace,RC_Player_Human,.@a; bonus2 bMagicAddRace,RC_Player_Human,.@a; + - Id: 15376 + AegisName: Illusion_Armor_A-type + Name: Illusion Armor A-type + Type: Armor + Weight: 1000 + Defense: 105 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 130 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,(100+10*(.@r/2)); if (.@r >= 7) { bonus bAspdRate,10; } + - Id: 15377 + AegisName: Illusion_Armor_B-type + Name: Illusion Armor B-type + Type: Armor + Weight: 1000 + Defense: 105 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 130 + Refineable: true + Script: | + .@r = getrefine(); bonus bMatk,(100+10*(.@r/2)); if (.@r >= 7) { bonus bVariableCastrate,-10; } + - Id: 15378 + AegisName: Lava_Leather_Armor + Name: Lava Leather Armor + Type: Armor + Buy: 20 + Weight: 1500 + Defense: 85 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 175 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,100; if (.@r>=7) bonus bDef,100; if (.@r>=9) bonus bDef,50; + - Id: 15379 + AegisName: Lava_Leather_Suit + Name: Lava Leather Suit + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 70 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 175 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,100; if (.@r>=7) bonus bBaseAtk,50; if (.@r>=9) bonus bCritAtkRate,10; + - Id: 15380 + AegisName: Lava_Leather_Robe + Name: Lava Leather Robe + Type: Armor + Buy: 20 + Weight: 750 + Defense: 55 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 175 + Refineable: true + Script: | + .@r = getrefine(); bonus bMatk,100; if (.@r>=7) bonus bMatk,50; if (.@r>=9) bonus bMatk,25; + - Id: 15384 + AegisName: Ritual_Robes + Name: Ritual Robes + Type: Armor + Buy: 10 + Weight: 400 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bHealPower,5; bonus bDelayrate,-10; bonus bMaxHPrate,5; if (.@r>=7) { bonus bMaxHPrate,5; bonus bHealPower,5; } if (.@r>=8) { bonus bMaxHPrate,5; bonus bHealPower,10; bonus bUseSPrate,-10; bonus2 bResEff,Eff_Sleep,10000; } if (.@r>=9) { bonus bMaxHPrate,5; bonus bHealPower,10; } + - Id: 15405 + AegisName: Fafnir_Scale + Name: Fafnir Scale + Type: Armor + Buy: 20 + Weight: 1500 + Defense: 120 + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bMdef,15; bonus bUnbreakableArmor; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bSkillAtk,"RK_DRAGONBREATH",50; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",50; bonus bDelayrate,-2*getskilllv("RK_DRAGONBREATH_WATER"); bonus bLongAtkRate,2*getskilllv("RK_DRAGONBREATH"); if (.@r>=5) { bonus bMaxHPrate,20; bonus bMaxSPrate,20; bonus bDelayrate,-5; } if (.@r>=7) { bonus bMaxHPrate,20; bonus bMaxSPrate,20; bonus bDelayrate,-5; } + - Id: 15409 + AegisName: Bloody_Doll's_Dress + Name: Bloody Doll's Dress + Type: Armor + Buy: 10 + Weight: 500 + Defense: 40 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 90 + Refineable: true + Script: | + .@r = getrefine(); bonus bMdef,5; bonus bMatk,10; bonus bDex,3; bonus2 bSubRace,RC_Player_Human,7; if (.@r>=7) { bonus bAspdRate,10; bonus bDelayrate,-10; } if (.@r>=8) bonus bUnbreakableArmor; + - Id: 15417 + AegisName: Armor_of_Purple_Thread + Name: Armor of Purple Thread + Type: Armor + Buy: 20 + Weight: 800 + Defense: 60 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,10; bonus bPerfectHitAddRate,5; if (.@r>=7) { bonus bBaseAtk,20; bonus bPerfectHitAddRate,5; } if (.@r>=8) { bonus bBaseAtk,20; bonus bPerfectHitAddRate,10; } if (.@r>=9) { bonus bBaseAtk,30; bonus bPerfectHitAddRate,10; } + - Id: 15419 + AegisName: Mighty_White_Threaded_Armor + Name: Mighty White Threaded Armor + Type: Armor + Buy: 20 + Weight: 800 + Defense: 60 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bMatk,10; bonus2 bIgnoreMdefRaceRate,RC_All,10; if (.@r>=7) { bonus bMatk,20; bonus2 bIgnoreMdefRaceRate,RC_All,20; } if (.@r>=8) { bonus bMatk,20; bonus2 bIgnoreMdefRaceRate,RC_All,20; bonus bUnbreakableArmor; } if (.@r>=9) { bonus bMatk,30; bonus2 bIgnoreMdefRaceRate,RC_All,20; } + - Id: 15420 + AegisName: Ice_Prison_Dress + Name: Ice Prison Dress + Type: Armor + Buy: 10 + Weight: 400 + Defense: 120 + Locations: + Armor: true + EquipLevelMin: 90 + Refineable: true + Script: | + .@r = getrefine(); bonus bNoKnockback; bonus bUnbreakableArmor; bonus bDefEle,Ele_Water; if (.@r>8) .@a = 40; else if (.@r>6) .@a = 25; else if (.@r>=5) .@a = 10; bonus2 bAddEle,Ele_Fire,.@a; bonus2 bAddEle,Ele_Water,.@a; bonus2 bMagicAddEle,Ele_Fire,.@a; bonus2 bMagicAddEle,Ele_Water,.@a; bonus2 bAddRace,RC_Demihuman,.@a; bonus2 bAddRace,RC_Formless,.@a; bonus2 bMagicAddRace,RC_Demihuman,.@a; bonus2 bMagicAddRace,RC_Formless,.@a; bonus2 bAddRace,RC_Player_Human,.@a; bonus2 bMagicAddRace,RC_Player_Human,.@a; + - Id: 15388 + AegisName: King_Schmidt_Suit + Name: King Schmidt's Suit + Type: Armor + Weight: 900 + Defense: 150 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 130 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bAddSize,Size_Medium,10; bonus2 bAddSize,Size_Large,10; bonus2 bMagicAddSize,Size_Medium,10; bonus2 bMagicAddSize,Size_Large,10; if(.@r > 6){ bonus2 bAddEle,Ele_Fire,10; bonus2 bAddEle,Ele_Dark,10; bonus2 bMagicAddEle,Ele_Fire,10; bonus2 bMagicAddEle,Ele_Dark,10; } if(.@r > 8){ bonus2 bSubRace,RC_Dragon,15; bonus2 bSubRace,RC_Formless,15; } if(.@r > 10){ bonus2 bSubSize,Size_Medium,10; bonus2 bSubSize,Size_Large,10; } + - Id: 15389 + AegisName: King_Schmidt_Manteau + Name: King Schmidt's Manteau + Type: Armor + Weight: 600 + Defense: 70 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 130 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bAddEle,Ele_Fire,(.@r/3)*2; bonus2 bAddEle,Ele_Dark,(.@r/3)*2; bonus2 bMagicAddEle,Ele_Fire,(.@r/3)*2; bonus2 bMagicAddEle,Ele_Dark,(.@r/3)*2; if(.@r > 6){ bonus2 bSubRace,RC_Dragon,5; bonus2 bSubRace,RC_Formless,5; } if(.@r > 10){ bonus2 bAddRace,RC_Dragon,15; bonus2 bAddRace,RC_Formless,15; bonus2 bMagicAddRace,RC_Dragon,15; bonus2 bMagicAddRace,RC_Formless,15; } + - Id: 16000 + AegisName: Erde + Name: Erde + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 500 + Attack: 130 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Swordman: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 50 + Refineable: true + Script: | + bonus2 bSkillAtk,"AM_ACIDTERROR",20; bonus2 bSkillAtk,"AM_DEMONSTRATION",20; bonus bMaxSP,50; bonus bHealPower,10; + - Id: 16001 + AegisName: Red_Square_Bag + Name: Red Square Bag + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 500 + Attack: 130 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Swordman: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 50 + Refineable: true + Script: | + 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; + - Id: 16002 + AegisName: Stunner_C + Name: Stunner + Type: Weapon + SubType: Mace + Attack: 175 + Range: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddEff,Eff_Stun,1000; bonus2 bAddSize,Size_All,40; + - Id: 16003 + AegisName: Carga_Mace + Name: Carga Mace + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 1500 + Attack: 175 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 100 + Refineable: true + - Id: 16004 + AegisName: P_Mace1 + Name: Eden Mace I + Type: Weapon + SubType: Mace + Attack: 142 + Range: 1 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 26 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 16005 + AegisName: P_Mace2 + Name: Eden Mace II + Type: Weapon + SubType: Mace + Attack: 163 + Range: 1 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 40 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 16006 + AegisName: Tourist_Mace + Name: Tourist Mace + Type: Weapon + SubType: Mace + Weight: 500 + Attack: 45 + Range: 1 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Novice: true + Priest: true + SuperNovice: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,1; bonus bAgi,1; + - Id: 16007 + AegisName: Mjolnir_C + Name: Mjolnir + Type: Weapon + SubType: Mace + Buy: 20 + Attack: 250 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 95 + Script: | + bonus bAtkEle,Ele_Wind; bonus bStr,15; bonus bDex,40; + - Id: 16008 + AegisName: F_Spanner_C + Name: Spanner + Type: Weapon + SubType: Mace + Buy: 2 + Attack: 150 + Range: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + - Id: 16009 + AegisName: E_Spanner_C + Name: Spanner + Type: Weapon + SubType: Mace + Buy: 2 + Attack: 150 + Range: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + - Id: 16010 + AegisName: Red_Ether_Bag + Name: Red Ether Bag + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 1000 + Attack: 15 + MagicAttack: 100 + Range: 1 + Slots: 1 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 102 + Refineable: true + Script: | + .@r = getrefine(); if(.@r>=6){ bonus2 bSkillAtk,"GN_CRAZYWEED",20+((.@r-5)*2); bonus2 bSkillAtk,"GN_DEMONIC_FIRE",20+((.@r-5)*2); } else { bonus2 bSkillAtk,"GN_CRAZYWEED",20; bonus2 bSkillAtk,"GN_DEMONIC_FIRE",20; } + - Id: 16011 + AegisName: Adventure_Mace + Name: Adventure Mace + Type: Weapon + SubType: Mace + Attack: 60 + Range: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + - Id: 16012 + AegisName: Academy_Mace + Name: Academy Mace + Type: Weapon + SubType: Mace + Weight: 1000 + Attack: 110 + Range: 1 + Slots: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + - Id: 16013 + AegisName: Mace_Of_Judgement + Name: Mace Of Judgement + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 1200 + Attack: 140 + MagicAttack: 180 + Range: 1 + Slots: 2 + Jobs: + Priest: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bAtkEle,Ele_Holy; 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; }"; + - Id: 16014 + AegisName: P_Mace3 + Name: Eden Mace III + Type: Weapon + SubType: Mace + Attack: 172 + Range: 1 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Novice: true + Priest: true + SuperNovice: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 60 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 16015 + AegisName: Cat_Club + Name: Cat Club + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 700 + Attack: 88 + Range: 1 + Slots: 3 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Novice: true + Priest: true + SuperNovice: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bAddRace,RC_Brute,15; bonus2 bAddRace,RC_Player_Doram,15; + - Id: 16016 + AegisName: Tuna + Name: Tuna + Type: Weapon + SubType: Mace + Attack: 180 + Range: 1 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Novice: true + Priest: true + SuperNovice: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 1 + EquipLevelMin: 50 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bUnbreakableWeapon; bonus2 bAddEff,Eff_Stun,1500; bonus3 bAutoSpell,"SM_BASH",max(getskilllv("SM_BASH"),5),20; bonus2 bAddEff2,Eff_Freeze,100; if(BaseLevel>99) bonus bBaseAtk,20; + - Id: 16017 + AegisName: Bloody_Cross + Name: Bloody Cross + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 1500 + Attack: 170 + Range: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bAtkEle,Ele_Dark; .@r = getrefine(); bonus3 bAutoSpell,"WL_HELLINFERNO",1,(.@r?.@r*20:20); + - Id: 16018 + AegisName: Mace_Of_Judgement2 + Name: Empowered Mace Of Judgement + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 1200 + Attack: 170 + MagicAttack: 180 + Range: 1 + Slots: 1 + Jobs: + Priest: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 130 + Refineable: true + Script: | + bonus bAtkEle,Ele_Holy; 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; }"; + - Id: 16019 + AegisName: Upg_Mace + Name: Upg Mace + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 800 + Attack: 80 + Range: 1 + Slots: 1 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Novice: true + Priest: true + SuperNovice: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + Script: | + .@r = getrefine(); bonus bBaseAtk,(.@r*10); bonus bHealPower,.@r; if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*5); + - Id: 16020 + AegisName: Velum_Stunner + Name: Vellum Stunner + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 1500 + Attack: 170 + Range: 1 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Novice: true + Priest: true + SuperNovice: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 95 + Refineable: true + Script: | + bonus bUnbreakableWeapon; .@r = getrefine(); bonus2 bAddEff,Eff_Stun,1000+.@r; bonus4 bSetDefRace,RC_Player_Human,10000,5000,1; bonus4 bSetMDefRace,RC_Player_Human,10000,5000,1; bonus bAspdRate,.@r; + - Id: 16021 + AegisName: Velum_Flail + Name: Vellum Flail + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 1500 + Attack: 170 + Range: 1 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Novice: true + Priest: true + SuperNovice: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 95 + Refineable: true + Script: | + bonus bUnbreakableWeapon; bonus3 bStateNoRecoverRace,RC_Player_Human,10000,10000; .@r = getrefine(); bonus bHit,.@r/2; bonus bCritical,.@r; + - Id: 16022 + AegisName: Nemesis_ + Name: Nemesis + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 900 + Attack: 120 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 60 + Refineable: true + Script: | + bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Holy; + - Id: 16023 + AegisName: Metal_Mace + Name: Metal Mace + Type: Weapon + SubType: Mace + Buy: 20 + Attack: 80 + Range: 1 + Slots: 1 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Novice: true + Priest: true + SuperNovice: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bUnbreakableWeapon; bonus bBaseAtk,(getrefine()*5); .@i = min(BaseLevel/10,12); if(.@i>2) bonus bBaseAtk,((.@i-2)*5); + - Id: 16024 + AegisName: Quadrille_ + Name: Quadrille + Type: Weapon + SubType: Mace + Buy: 10 + Weight: 900 + Attack: 165 + Slots: 2 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus2 bAddRace,RC_Undead,10; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus2 bAddEle,Ele_Earth,10; + - Id: 16025 + AegisName: TE_Woe_Mace + Name: TE Woe Mace + Type: Weapon + SubType: Mace + Attack: 120 + Range: 1 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Novice: true + Priest: true + SuperNovice: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 40 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bUnbreakableWeapon; bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Freeze,3000; bonus bHPRecovRate,5; bonus bSPRecovRate,5; + - Id: 16026 + AegisName: RWC_Memory_Mace + Name: RWC Memory Mace + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 800 + Attack: 100 + Range: 1 + Slots: 1 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bUnbreakableWeapon; .@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; } + - Id: 16027 + AegisName: Hammer_Of_Evil_Slayer + Name: Evil Slayer Destroyer Hammer + Type: Weapon + SubType: Mace + Buy: 10 + Weight: 1350 + Attack: 125 + Range: 1 + Slots: 1 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Novice: true + Priest: true + SuperNovice: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 100 + Refineable: true + Script: | + bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; .@r = getrefine(); bonus2 bAddClass,Class_All,(.@r>=12?12:(.@r>=9?5:0)); + - Id: 16028 + AegisName: Thanos_Hammer + Name: Thanos Hammer + Type: Weapon + SubType: Mace + Buy: 10 + Weight: 3000 + Attack: 180 + MagicAttack: 120 + Range: 1 + Slots: 1 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Swordman: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 120 + Refineable: true + Script: | + bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000; + UnEquipScript: | + heal -1000,0; + - Id: 16029 + AegisName: Noble_Cross + Name: Noble Cross + Type: Weapon + SubType: Mace + Buy: 10 + Weight: 1500 + Attack: 195 + MagicAttack: 150 + Slots: 1 + Jobs: + Acolyte: true + Classes: + Upper: true + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus bAtkEle,Ele_Holy; bonus3 bAutoSpell,"PR_TURNUNDEAD",6,50; bonus2 bSPDrainValueRace,RC_Undead,1; bonus2 bSPGainRace,RC_Undead,12; + - Id: 16030 + AegisName: Pilebuncker_S + Name: Pile Bunker S + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 3000 + Attack: 400 + Range: 1 + Slots: 1 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 130 + Refineable: true + Script: | + bonus bAspdRate,getrefine()/2; + - Id: 16031 + AegisName: Pilebuncker_P + Name: Pile Bunker P + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 4000 + Attack: 450 + Range: 1 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 130 + Refineable: true + Script: | + bonus bBaseAtk,getrefine()*5; + - Id: 16032 + AegisName: Pilebuncker_T + Name: Pile Bunker T + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 3500 + Attack: 400 + Range: 1 + Slots: 1 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 130 + Refineable: true + Script: | + bonus bUseSPrate,getrefine()*-1; + - Id: 16033 + AegisName: Robot's_Arm + Name: Robot's Arm + Type: Weapon + SubType: Mace + Buy: 30000 + Weight: 3000 + Attack: 195 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Priest: true + Swordman: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 130 + Refineable: true + Script: | + bonus bUnbreakableWeapon; bonus bCritical,20; + - Id: 16034 + AegisName: Half_Mjolnir + Name: Half Mjolnir + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 6000 + Attack: 350 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 95 + Script: | + 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; + - Id: 16035 + AegisName: Half_BF_Morning_Star1 + Name: Half BF Morning Star1 + Type: Weapon + SubType: Mace + Buy: 20 + Attack: 105 + Range: 1 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Novice: true + Priest: true + SuperNovice: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Script: | + bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon; + - Id: 16036 + AegisName: Ru_Blue_Mace + Name: Blue Mace + Type: Weapon + SubType: Mace + Buy: 10 + Weight: 1500 + Attack: 170 + Range: 1 + Slots: 1 + Jobs: + Monk: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bVit,5; bonus bInt,5; + - Id: 16037 + AegisName: Ru_Gold_Mace + Name: Ru Gold Mace + Type: Weapon + SubType: Mace + Weight: 1500 + Attack: 170 + Range: 1 + Slots: 2 + Jobs: + Monk: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 120 + Refineable: true + Script: | + bonus bVit,8; bonus bInt,8; + - Id: 16038 + AegisName: Infinity_Mace + Name: Infinity Mace + Type: Weapon + SubType: Mace + Buy: 10 + Weight: 500 + Attack: 155 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Monk: true + Priest: true + Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 16039 + AegisName: Spoon + Name: Spoon + Type: Weapon + SubType: Mace + Buy: 10 + Weight: 1000 + Attack: 80 + Range: 1 + Slots: 1 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Novice: true + Priest: true + SuperNovice: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 40 + Refineable: true + Script: | + bonus bAspd,10; bonus2 bAddEff,Eff_Curse,1000; + - Id: 16040 + AegisName: Crimson_Mace + Name: Crimson Mace + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 800 + Attack: 80 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Novice: true + Priest: true + SuperNovice: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); + - Id: 16041 + AegisName: Mace_of_Vicious_Mind + Name: Mace of Vicious Mind + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 1300 + Attack: 130 + Range: 1 + Slots: 1 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Novice: true + Priest: true + SuperNovice: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 160 + Refineable: true + Script: | + bonus bAtk,pow(min(getrefine(),15),2); bonus bUnbreakableWeapon; + - Id: 16043 + AegisName: Meteor_Strike + Name: Meteor Strike + Type: Weapon + SubType: Mace + Weight: 20000 + Attack: 1 + Range: 1 + Slots: 2 + Jobs: + Novice: true + SuperNovice: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 110 + Refineable: true + Script: | + 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; + - Id: 16048 + AegisName: Unity_Mace + Name: Unity Mace + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 400 + Attack: 76 + Range: 1 + Slots: 1 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Novice: true + Priest: true + SuperNovice: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bBaseAtk,pow(getrefine(),2)*125/100; + - Id: 16051 + AegisName: Valkyrie_Hammer_ + Name: Valkyrie Hammer + Type: Weapon + SubType: Mace + Weight: 100 + Attack: 50 + Range: 1 + Slots: 4 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Novice: true + Priest: true + SuperNovice: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 70 + Refineable: true + Script: | + .@r = getrefine(); bonus bMatk,50; if (BaseJob==Job_Novice) { bonus bBaseAtk,150; bonus bMatk,200; bonus bUseSPrate,-5; bonus bHit,10; bonus bMaxHP,500+(200*.@r); bonus bMaxSP,400; bonus bVit,.@r; bonus bFlee2,.@r; bonus bAspdRate,.@r; bonus bVariableCastrate,-.@r/2; } if (BaseClass==Job_Swordman) { bonus bVit,.@r; bonus bMaxHP,500; bonus bMaxSP,100; } if (BaseJob==Job_Priest) { bonus bBaseAtk,50; bonus bMatk,100; bonus bAspdRate,.@r; } if (BaseJob==Job_Monk) { bonus bMaxSP,200; bonus bUseSPrate,-5; bonus bFlee2,.@r; } if (BaseClass==Job_Merchant) { bonus bBaseAtk,100; bonus bHit,10; bonus bVariableCastrate,-.@r/2; } + - Id: 16060 + AegisName: Liquor_Bottle + Name: Liquor Bottle + Type: Weapon + SubType: Mace + Weight: 700 + Attack: 120 + Range: 1 + Slots: 3 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Monk: true + Novice: true + Priest: true + SuperNovice: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bUnbreakableWeapon; bonus2 bAddEff,Eff_Stun,(300*getrefine()); + - Id: 16063 + AegisName: Illusion_Long_Mace + Name: Illusion Long Mace + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 800 + Attack: 185 + Range: 3 + Slots: 2 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 99 + Refineable: true + Script: | + bonus bLongAtkDef,(10+3*(getrefine()/2)); + - Id: 16065 + AegisName: Illusion_Iron_Driver + Name: Illusion Iron Driver + Type: Weapon + SubType: Mace + Weight: 2000 + Attack: 210 + Range: 2 + Slots: 2 + Jobs: + Priest: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 120 + Refineable: true + Script: | + .@r = getrefine(); bonus bAspd,(.@r/2); bonus2 bSkillAtk,"AB_DUPLELIGHT",(3*.@r); + - Id: 16088 + AegisName: Sapphire_Mace-OS + Name: Sapphire Mace-OS + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 800 + Attack: 185 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 130 + Refineable: true + Script: | + .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bAddClass,Class_All,3; if (.@r >= 7) { bonus bVariableCastrate,-7; if (.@r >= 9) { bonus2 bSkillAtk,"GN_CARTCANNON",20; if (.@r >= 11) { bonus bLongAtkRate,15; } } } + - Id: 16089 + AegisName: Ultio-OS + Name: Ultio-OS + Type: Weapon + SubType: Mace + Buy: 20 + Weight: 1200 + Attack: 150 + MagicAttack: 170 + Range: 1 + Slots: 2 + Jobs: + Priest: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 130 + Refineable: true + Script: | + .@r = getrefine(); bonus bMatkRate,3; if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus2 bSkillAtk,"AB_ADORAMUS",20; if (.@r >= 11) { bonus2 bMagicAtkEle,Ele_Holy,15; } } } + - Id: 16092 + AegisName: Engine_Pilebuncker + Name: Engine Pilebuncker + Type: Weapon + SubType: Mace + Weight: 3200 + Attack: 450 + Range: 1 + Slots: 2 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); bonus bUnbreakableWeapon; bonus bAspdRate,.@r; bonus2 bSkillAtk,"NC_VULCANARM",10; if (.@r>=9) { bonus2 bSkillAtk,"NC_ARMSCANNON",15; bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",15; } if (.@r>=11) bonus2 bSkillAtk,"NC_VULCANARM",15; + - Id: 16093 + AegisName: Coolant_Injection + Name: Coolant Injection + Type: Weapon + SubType: Mace + Weight: 1400 + Attack: 210 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); bonus bUnbreakableWeapon; bonus bLongAtkRate,10; bonus2 bAddClass,Class_All,.@r; if (.@r>=9) bonus2 bSkillAtk,"GN_CARTCANNON",25; if (.@r>=11) bonus bLongAtkRate,15; + - Id: 16094 + AegisName: Gene_Rod + Name: Gene Rod + Type: Weapon + SubType: Mace + Weight: 1400 + Attack: 195 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); bonus bUnbreakableWeapon; bonus bBaseAtk,4*.@r; bonus2 bSkillAtk,"GN_CRAZYWEED",20; if (.@r>=9) bonus2 bSkillAtk,"GN_CRAZYWEED",30; if (.@r>=11) bonus2 bSkillCooldown,"GN_CRAZYWEED",-2000; + - Id: 16095 + AegisName: Lucis_Flail + Name: Lucis Flail + Type: Weapon + SubType: Mace + Weight: 1000 + Attack: 180 + MagicAttack: 160 + Range: 1 + Slots: 2 + Jobs: + Priest: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); bonus bUnbreakableWeapon; bonus bAspd,1; bonus bMatk,4*.@r; if (.@r>=9) { bonus2 bSkillAtk,"AB_DUPLELIGHT",40; } if (.@r>=11) bonus3 bAutoSpell,"AB_JUDEX",max(2,getskilllv("AB_JUDEX")),50; /* Unknow Rates */ + - Id: 16096 + AegisName: Bright_Pendulum + Name: Bright Pendulum + Type: Weapon + SubType: Mace + Weight: 1300 + Attack: 210 + Range: 1 + Slots: 2 + Jobs: + Monk: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); bonus bUnbreakableWeapon; bonus bBaseAtk,4*.@r; bonus bVariableCastrate,-10; if (.@r>=9) { bonus2 bSkillAtk,"MO_FINGEROFFENSIVE",50; bonus2 bSkillAtk,"MO_INVESTIGATE",50; } if (.@r>=11) bonus2 bAddClass,Class_All,10; + - Id: 18100 + AegisName: Shooting_Star_C + Name: Shooting Star + Type: Weapon + SubType: Bow + Buy: 20 + Attack: 190 + Range: 5 + Jobs: + BardDancer: true + Hunter: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bLongAtkRate,20; + - Id: 18101 + AegisName: F_Bow_Of_Rudra_C + Name: Rudra Bow + Type: Weapon + SubType: Bow + Buy: 2 + Attack: 185 + Range: 5 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + Script: | + 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; + - Id: 18102 + AegisName: E_Bow_Of_Rudra_C + Name: Rudra Bow + Type: Weapon + SubType: Bow + Buy: 2 + Attack: 185 + Range: 5 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + Script: | + 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; + - Id: 18103 + AegisName: Mystic_Bow + Name: Mystic Bow + Type: Weapon + SubType: Bow + Weight: 1700 + Attack: 75 + MagicAttack: 100 + Range: 5 + Jobs: + BardDancer: true + Hunter: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 105 + Refineable: true + Script: | + bonus bInt,4; bonus2 bSkillUseSP,"WM_SEVERE_RAINSTORM",10; + - Id: 18104 + AegisName: Adventure_Bow + Name: Adventure Bow + Type: Weapon + SubType: Bow + Attack: 60 + Range: 1 + Jobs: + BardDancer: true + Hunter: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Script: | + bonus bUnbreakableWeapon; + - Id: 18105 + AegisName: Academy_Bow + Name: Academy Bow + Type: Weapon + SubType: Bow + Weight: 1200 + Attack: 90 + Range: 5 + Slots: 1 + Jobs: + BardDancer: true + Hunter: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 1 + Refineable: true + - Id: 18106 + AegisName: P_Bow3 + Name: Eden Bow III + Type: Weapon + SubType: Bow + Attack: 140 + Range: 5 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 60 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 18107 + AegisName: Malang_Snow_Crab + Name: Malangdo Crab + Type: Weapon + SubType: Bow + Attack: 120 + Range: 5 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 50 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bUnbreakableWeapon; bonus bLuk,3; bonus bCritAtkRate,50; if(BaseLevel>99) { bonus bLongAtkRate,10; } + - Id: 18108 + AegisName: Brindle_Eel + Name: Zebra Eel + Type: Weapon + SubType: Bow + Attack: 180 + Range: 5 + Jobs: + BardDancer: true + Hunter: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 50 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bUnbreakableWeapon; bonus bAgi,3; autobonus "{ bonus bAspd,2; }",10,7000,BF_WEAPON,"{ specialeffect2 EF_HASTEUP; }"; if(BaseLevel>99) { bonus bLongAtkRate,10; } + - Id: 18109 + AegisName: Catapult + Name: Thief Crossbow + Type: Weapon + SubType: Bow + Buy: 56000 + Weight: 1100 + Attack: 150 + Range: 5 + Slots: 2 + Jobs: + Rogue: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"SC_TRIANGLESHOT",(.@r*2); bonus2 bSkillUseSP,"SC_TRIANGLESHOT",(.@r*2); + - Id: 18110 + AegisName: Big_CrossBow + Name: Giant Crossbow + Type: Weapon + SubType: Bow + Buy: 56000 + Weight: 900 + Attack: 160 + Range: 5 + Slots: 2 + Jobs: + Hunter: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 110 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"RA_ARROWSTORM",(.@r*5); bonus2 bSkillUseSP,"RA_ARROWSTORM",-(.@r*5); if(readparam(bAgi)>=120){ bonus bAspd,1; } + - Id: 18111 + AegisName: Creeper_Bow + Name: Creeper Bow + Type: Weapon + SubType: Bow + Buy: 56000 + Weight: 1500 + Attack: 150 + Range: 5 + Slots: 2 + Jobs: + BardDancer: true + Hunter: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 120 + Refineable: true + Script: | + bonus bDex,1; bonus3 bAutoSpell,"PF_SPIDERWEB",1,200; + - Id: 18112 + AegisName: Upg_Bow + Name: Upg Bow + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 600 + Attack: 60 + Range: 5 + Slots: 1 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + Script: | + .@r = getrefine(); bonus bBaseAtk,(.@r*7); bonus bLongAtkRate,(.@r*2); if(BaseJob==Job_Hunter) bonus bBaseAtk,20; if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*10); + - Id: 18113 + AegisName: Velum_Arbalest + Name: Vellum Arbalest + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 1100 + Attack: 50 + Range: 5 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 95 + Refineable: true + Script: | + bonus3 bSPVanishRaceRate,RC_Player_Human,1000,4; bonus bAspd,-5; + - Id: 18114 + AegisName: Velum_CrossBow + Name: Vellum CrossBow + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 1100 + Attack: 110 + Range: 5 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 95 + Refineable: true + Script: | + bonus2 bAddRace,RC_Player_Human,30+getrefine(); bonus2 bIgnoreDefRaceRate,RC_Player_Human,30; + - Id: 18115 + AegisName: Orc_Archer_Bow_ + Name: Orc Archer Bow + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 1600 + Attack: 120 + Range: 5 + Slots: 1 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 65 + Refineable: true + - Id: 18116 + AegisName: Metal_Bow + Name: Metal Bow + Type: Weapon + SubType: Bow + Buy: 20 + Attack: 50 + Range: 5 + Slots: 1 + Jobs: + BardDancer: true + Hunter: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); if(BaseJob==Job_Hunter && Upper!=2) bonus bBaseAtk,10; bonus bBaseAtk,(.@r*3); bonus bLongAtkRate,.@r; .@i = min(BaseLevel/10,12); if(.@i>2) bonus bBaseAtk,((.@i-2)*5); + - Id: 18117 + AegisName: Royal_Bow + Name: Royal Bow + Type: Weapon + SubType: Bow + Buy: 200000 + Weight: 1500 + Attack: 80 + Range: 5 + Slots: 1 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 105 + Refineable: true + - Id: 18118 + AegisName: TE_Woe_Bow + Name: TE Woe Bow + Type: Weapon + SubType: Bow + Attack: 120 + Range: 5 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 40 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Curse,3000; + - Id: 18119 + AegisName: Thanos_Bow + Name: Thanos Bow + Type: Weapon + SubType: Bow + Buy: 10 + Weight: 1300 + Attack: 180 + MagicAttack: 110 + Range: 5 + Slots: 1 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 120 + Refineable: true + Script: | + bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000; + UnEquipScript: | + heal -1000,0; + - Id: 18120 + AegisName: Bow_Of_Evil_Slayer + Name: Evil Slayer Piercer Bow + Type: Weapon + SubType: Bow + Buy: 10 + Weight: 1350 + Attack: 115 + Range: 5 + Slots: 1 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 100 + Refineable: true + Script: | + bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; .@r = getrefine(); bonus2 bAddClass,Class_All,(.@r>=12?12:(.@r>=9?5:0)); + - Id: 18121 + AegisName: Bow_of_Vicious_Mind + Name: Bow of Vicious Mind + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 1700 + Attack: 170 + Range: 5 + Slots: 1 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 160 + Refineable: true + Script: | + bonus bAtk,pow(min(getrefine(),15),2); + - Id: 18122 + AegisName: Gigantic_Bow + Name: Giant Bow + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 3000 + Attack: 195 + Range: 5 + Slots: 1 + Jobs: + Hunter: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 130 + Refineable: true + Script: | + bonus bLongAtkRate,40; bonus bAspdRate,-15; bonus bHit,-50; + - Id: 18123 + AegisName: Bow_Of_Storm + Name: Bow of Storms + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 1500 + Attack: 160 + Range: 5 + Slots: 1 + Jobs: + BardDancer: true + Hunter: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 130 + Refineable: true + Script: | + bonus bLongAtkRate,30; bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; bonus2 bSkillUseSP,"WM_SEVERE_RAINSTORM",15; + - Id: 18124 + AegisName: Half_BF_Bow1 + Name: Half BF Bow1 + Type: Weapon + SubType: Bow + Buy: 20 + Attack: 100 + Range: 5 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Script: | + bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player_Human,30; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon; + - Id: 18125 + AegisName: Arcus_Daemonicus + Name: Arcus Daemonicus + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 1000 + Attack: 130 + Range: 5 + Slots: 2 + Jobs: + Archer: true + Rogue: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 80 + Refineable: true + Script: | + /*Fix me: bonus2 bAddClass,Class_All,50; when equipped with shadow arrows*/ if(getrefine()>9){ bonus bAspd,1; bonus bUseSPrate,-20; } + - Id: 18126 + AegisName: Ru_Blue_Bow + Name: Blue Bow + Type: Weapon + SubType: Bow + Buy: 10 + Weight: 1200 + Attack: 150 + Range: 5 + Slots: 1 + Jobs: + Hunter: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bAgi,5; bonus bDex,5; + - Id: 18127 + AegisName: Ru_Gold_Bow + Name: Ru Gold Bow + Type: Weapon + SubType: Bow + Weight: 1200 + Attack: 150 + Range: 5 + Slots: 2 + Jobs: + Hunter: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 120 + Refineable: true + Script: | + bonus bAgi,8; bonus bDex,8; + - Id: 18128 + AegisName: Infinity_Bow + Name: Infinity Bow + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 500 + Attack: 160 + Range: 5 + Slots: 1 + Jobs: + Hunter: true + Rogue: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 18130 + AegisName: Crimson_Bow + Name: Crimson Bow + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 1200 + Attack: 120 + Range: 5 + Slots: 2 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); + - Id: 18132 + AegisName: Unity_Bow + Name: Unity Bow + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 600 + Attack: 114 + Range: 5 + Slots: 2 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bBaseAtk,pow(getrefine(),2)*125/100; + - Id: 18137 + AegisName: Burning_Bow_ + Name: Burning Bow + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 1400 + Attack: 95 + Range: 5 + Slots: 2 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus2 bSubEle,Ele_Fire,10; + - Id: 18138 + AegisName: Frozen_Bow_ + Name: Frozen Bow + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 1400 + Attack: 100 + Range: 5 + Slots: 2 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 55 + Refineable: true + Script: | + bonus2 bAddEff,Eff_Freeze,1000; + - Id: 18139 + AegisName: Earth_Bow_ + Name: Earth Bow + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 1400 + Attack: 105 + Range: 5 + Slots: 2 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 55 + Refineable: true + - Id: 18140 + AegisName: Gust_Bow_ + Name: Gust Bow + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 1400 + Attack: 95 + Range: 5 + Slots: 2 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Rogue: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 55 + Refineable: true + - Id: 18145 + AegisName: Vigilante_Bow + Name: Vigilante Bow + Type: Weapon + SubType: Bow + Weight: 1000 + Attack: 140 + Range: 5 + Slots: 2 + Jobs: + Rogue: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); .@bonus = 5*(readparam(bDex)/20); if (.@r>=7) { .@bonus += 10; } if (.@r>=9) { bonus2 bSkillAtk,"AC_DOUBLE",50; } bonus bLongAtkRate,.@bonus; + - Id: 18149 + AegisName: Illusion_Ballista + Name: Illusion Ballista + Type: Weapon + SubType: Bow + Weight: 3500 + Attack: 200 + Range: 5 + Slots: 2 + Jobs: + BardDancer: true + Hunter: true + Classes: + Upper: true + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bLongAtkRate,getrefine(); + - Id: 18174 + AegisName: Illusion_Hunter_Bow + Name: Illusion Hunter Bow + Type: Weapon + SubType: Bow + Weight: 1500 + Attack: 165 + Range: 5 + Slots: 2 + Jobs: + Hunter: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 120 + Refineable: true + Script: | + .@r = getrefine(); bonus bCritical,.@r; if (.@r >= 7) { bonus bAspdRate,10; if (.@r >= 9) { bonus bCritAtkRate,15; if (.@r >= 11) { bonus2 bAddRace,RC_Insect,30; bonus2 bAddRace,RC_Brute,30; bonus2 bAddRace,RC_Player_Doram,30; } } } + - Id: 18178 + AegisName: Virtual_Bow-OS + Name: Virtual Bow-OS + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 1200 + Attack: 200 + Range: 5 + Slots: 2 + Jobs: + Hunter: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 130 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bAddClass,Class_All,3; if (.@r >= 7) { bonus bLongAtkRate,7; if (.@r >= 9) { .@dmg = 30; if (.@r >= 11) { .@dmg += 20; } bonus2 bSkillAtk,"RA_ARROWSTORM",.@dmg; } } + - Id: 18179 + AegisName: MH-P89-OS + Name: MH-P89-OS + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 1200 + Attack: 170 + Range: 5 + Slots: 2 + Jobs: + BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 130 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bAddClass,Class_All,3; if (.@r >= 7) { bonus bLongAtkRate,7; if (.@r >= 9) { bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; if (.@r >= 11) { bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15; } } } + - Id: 18180 + AegisName: AC-B44-OS + Name: AC-B44-OS + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 600 + Attack: 190 + MagicAttack: 135 + Range: 5 + Slots: 2 + Jobs: + Rogue: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 130 + Refineable: true + Script: | + .@r = getrefine(); .@dmg = 5; if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus2 bSkillAtk,"SC_TRIANGLESHOT",15; if (.@r >= 11) { .@dmg += 10; } } } bonus2 bWeaponDamageRate,W_BOW,.@dmg; + - Id: 18184 + AegisName: Rapid_Fire + Name: Rapid Fire + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 1500 + Attack: 185 + Range: 5 + Slots: 2 + Jobs: + Rogue: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); bonus bLongAtkRate,10; bonus bBaseAtk,4*.@r; if (.@r>=11) .@val = 35; else if (.@r>=9) .@val = 20; bonus2 bSkillAtk,"SC_TRIANGLESHOT",.@val; + - Id: 18185 + AegisName: Sharp_Star_Bow + Name: Sharp Star Bow + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 1500 + Attack: 150 + Range: 5 + Slots: 2 + Jobs: + Hunter: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); bonus bCritical,5; bonus bCritAtkRate,.@r; if (.@r>=9) bonus bLongAtkRate,7; if (.@r>=11) bonus2 bSkillAtk,"SN_SHARPSHOOTING",10; + - Id: 18186 + AegisName: Aiming_Bow + Name: Aiming Bow + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 1000 + Attack: 210 + Range: 5 + Slots: 2 + Jobs: + Hunter: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); bonus bDelayrate,-1*(5+.@r); if (.@r>=9) bonus2 bSkillAtk,"RA_AIMEDBOLT",30; if (.@r>=11) { bonus2 bSkillAtk,"RA_AIMEDBOLT",15; bonus2 bSkillCooldown,"RA_AIMEDBOLT",-1000; } + - Id: 18187 + AegisName: Falken_Shooter + Name: Falken Shooter + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 1000 + Attack: 210 + Range: 5 + Slots: 2 + Jobs: + Hunter: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); bonus bLongAtkRate,10; bonus bBaseAtk,4*.@r; if (.@r>=9) bonus2 bSkillAtk,"RA_ARROWSTORM",25; if (.@r>=11) bonus2 bSkillCooldown,"RA_ARROWSTORM",-700; + - Id: 18188 + AegisName: Wind_Gale + Name: Wind Gale + Type: Weapon + SubType: Bow + Buy: 20 + Weight: 1000 + Attack: 200 + Range: 5 + Slots: 2 + Jobs: + BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); bonus bLongAtkRate,10+.@r; if (.@r>=9) bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",30; if (.@r>=11) bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; + - Id: 18500 + AegisName: Cheer_Scarf6 + Name: Cheer Scarf6 + Type: Armor + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 369 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bExpAddClass,Class_All,60; + - Id: 18501 + AegisName: Cheer_Scarf8 + Name: Cheer Scarf8 + Type: Armor + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 369 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bExpAddClass,Class_All,80; + - Id: 18502 + AegisName: Cheer_Scarf10 + Name: Cheer Scarf10 + Type: Armor + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 369 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bExpAddClass,Class_All,100; + - Id: 18503 + AegisName: Small_Horn_Of_Devil + Name: Small Devil Horns + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Locations: + Head_Mid: true + EquipLevelMin: 1 + View: 562 + Script: | + bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bMaxHPrate,10; bonus bMaxSPrate,10; + - Id: 18504 + AegisName: Anubis_Helm_J + Name: Anubis Helm J + Type: Armor + Buy: 20 + Weight: 1000 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + EquipLevelMin: 70 + View: 485 + Script: | + bonus bMdefRate,-50; bonus bDefRate,-50; bonus5 bAutoSpellWhenHit,"NPC_WIDESTONE",2,10,BF_WEAPON|BF_MAGIC,0; + - Id: 18505 + AegisName: Umbala_Spirit + Name: Umbala Spirit + Type: Armor + Defense: 1 + Locations: + Head_Low: true + EquipLevelMin: 30 + View: 675 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHPrate,1; bonus2 bAddMonsterDropItem,517,500; bonus2 bAddItemHealRate,517,25; /*Gold PC Room: bonus bAllStats,1;*/ + - Id: 18506 + AegisName: Hattah_Black + Name: Hattah Black + Type: Armor + Buy: 12000 + Weight: 4000 + Defense: 2 + Slots: 1 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 676 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bMaxHPrate,10; bonus bMaxSPrate,10; + - Id: 18507 + AegisName: Elven_Ears_ + Name: Elven Ears + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + EquipLevelMin: 70 + View: 73 + - Id: 18508 + AegisName: Garuda_Hat + Name: Garuda Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 4 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 677 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bLuk,5; bonus bMdef,3; bonus2 bSubEle,Ele_All,5; bonus bHit,10; bonus bDelayRate,-5; .@r = getrefine(); if(.@r>=7) bonus2 bAddMonsterDropItem,522,100*(.@r-6); + - Id: 18509 + AegisName: RWC2010_Indonesia + Name: RWC2010 Indonesia + Type: Armor + Buy: 20 + Weight: 100 + Defense: 6 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 15 + Refineable: true + View: 678 + Script: | + bonus bLuk,5; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bAddItemHealRate,501,100; bonus2 bAddItemHealRate,504,100; bonus bCritical,10; bonus bAspd,1; bonus2 bAddClass,Class_All,3; bonus bMatkRate,3; + - Id: 18510 + AegisName: Blood_Angel_Hair_Band + Name: Blood Angel Hair Band + Type: Armor + Defense: 1 + Locations: + Head_Top: true + EquipLevelMin: 60 + View: 679 + Script: | + bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_DemiHuman,10; + - Id: 18511 + AegisName: Blood_Angel_Wing_Ear + Name: Blood Angel Wing Ear + Type: Armor + Defense: 1 + Locations: + Head_Mid: true + EquipLevelMin: 60 + View: 680 + - Id: 18512 + AegisName: Juho_Necktie + Name: Juho Necktie + Type: Armor + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 443 + - Id: 18513 + AegisName: Shining_Sunflower + Name: Shining Sunflower + Type: Armor + Buy: 20 + Weight: 300 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + View: 681 + Script: | + bonus bLuk,2; bonus3 bAutoSpellWhenHit,"SM_ENDURE",1,10; + - Id: 18514 + AegisName: Para_Team_Hat2 + Name: Eden Team Hat II + Type: Armor + Defense: 5 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 60 + Refineable: true + View: 682 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + autobonus "{ bonus bBaseAtk,10; }",70,5000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; autobonus "{ bonus bMatk,10; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_SPELLBREAKER; }"; + - Id: 18515 + AegisName: RTC_Winner_Headgear + Name: RTC Winner Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Slots: 1 + Locations: + Head_Mid: true + EquipLevelMin: 1 + View: 683 + Script: | + bonus bAllStats,5; bonus bIntravision; bonus2 bSubRace,RC_DemiHuman,15; bonus2 bSubRace,RC_Player_Human,15; bonus2 bAddEff,Eff_Curse,50; + - Id: 18516 + AegisName: RTC_2nd_Headgear + Name: RTC 2nd Winner Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Slots: 1 + Locations: + Head_Mid: true + EquipLevelMin: 1 + View: 684 + Script: | + bonus bAllStats,3; bonus bIntravision; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bAddEff,Eff_Curse,50; + - Id: 18517 + AegisName: RTC_3rd_Headgear + Name: RTC 3rd Winner Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Slots: 1 + Locations: + Head_Mid: true + EquipLevelMin: 1 + View: 685 + Script: | + bonus bAllStats,1; bonus bIntravision; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bAddEff,Eff_Curse,50; + - Id: 18518 + AegisName: Ear_Of_Angel's_Wing_ + Name: Angel Wing Ears + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Slots: 1 + Locations: + Head_Mid: true + EquipLevelMin: 70 + View: 158 + Script: | + bonus bStr,1; + - Id: 18519 + AegisName: Ear_Of_Devil's_Wing_ + Name: Evil Wing Ears + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Slots: 1 + Locations: + Head_Mid: true + EquipLevelMin: 70 + View: 152 + Script: | + bonus bStr,1; + - Id: 18520 + AegisName: Jaty_C + Name: Jaty Crown + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 686 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bSubRace,RC_Plant,5; bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Brute,5; bonus2 bAddRace,RC_Plant,5; bonus2 bAddRace,RC_Player_Doram,5; bonus2 bAddRace,RC_Player_Doram,5; + - Id: 18521 + AegisName: Lucky_Clover + Name: Lucky Clover + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Low: true + EquipLevelMin: 50 + View: 571 + Script: | + bonus bLuk,1; bonus bMaxSP,20; + - Id: 18522 + AegisName: Evil_Marcher_Hat + Name: Evil Marcher Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 10 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 687 + Script: | + bonus bStr,2; bonus bMdef,1; .@r = getrefine(); if(.@r>=7) { bonus bCritAtkRate,10; }; bonus2 bAddClass,Class_All,(.@r>=9?7:2); if(.@r>=9) { bonus bLongAtkRate,5; }; + - Id: 18523 + AegisName: Super_Scell + Name: Thunderstorm Cloud + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Locations: + Head_Top: true + EquipLevelMin: 1 + View: 688 + Script: | + bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",max(getskilllv("MG_LIGHTNINGBOLT"),5),50+(getskilllv("MG_LIGHTNINGBOLT")*5); bonus3 bAutoSpell,"MG_THUNDERSTORM",max(getskilllv("MG_THUNDERSTORM"),5),50+(getskilllv("MG_THUNDERSTORM")*5); + - Id: 18524 + AegisName: Dokkebi_Mask + Name: Dokkebi Mask + Type: Armor + Buy: 20 + Weight: 700 + Defense: 1 + Locations: + Head_Low: true + Head_Mid: true + EquipLevelMin: 50 + View: 689 + Script: | + bonus bStr,2; + - Id: 18525 + AegisName: Watermelon_Hat + Name: Watermelon Cap + Type: Armor + Buy: 20 + Weight: 100 + Defense: 4 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 690 + Script: | + bonus bVit,1; bonus bLuk,1; bonus bMdef,4; bonus2 bAddEle,Ele_Fire,3; + - Id: 18526 + AegisName: Yummy_Lollipop + Name: Candy Cane In Mouth + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 446 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMatk,5; bonus bBaseAtk,5; bonus bAspd,1; bonus bFixedCastrate,-20; bonus bHealPower,5; + - Id: 18527 + AegisName: Gloomy_Pumpkin_Hat + Name: Dark Pumpkin-head + Type: Armor + Buy: 20 + Weight: 500 + Defense: 5 + Locations: + Head_Top: true + EquipLevelMin: 45 + Refineable: true + View: 691 + Script: | + bonus2 bAddMonsterDropItem,12192,10; bonus bMdef,5; + - Id: 18528 + AegisName: Tare_Neko_Cru + Name: Drooping Neko Crew + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 692 + Trade: + Override: 100 + NoDrop: true + Script: | + 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; + - Id: 18529 + AegisName: Drooping_Wild_Rose + Name: Accurate Wild Rose + Type: Armor + Buy: 20 + Weight: 500 + Defense: 5 + Slots: 1 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 541 + Script: | + bonus bMaxHPrate,-10; bonus bAspdRate,3; + - Id: 18530 + AegisName: Tha_Despero_Mask + Name: Thanatos Despero Mask + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Low: true + Head_Mid: true + EquipLevelMin: 30 + View: 693 + Script: | + bonus bUnbreakableHelm; bonus bLuk,-5; bonus bFlee,4; + - Id: 18531 + AegisName: Drooping_Permeter + Name: Drooping Permeter + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 8 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 694 + Script: | + bonus2 bAddDefMonster,1314,-20; bonus2 bAddDefMonster,1316,-20; bonus2 bAddDefMonster,1319,-20; bonus2 bAddDefMonster,1315,-20; bonus2 bAddDefMonster,1318,-20; bonus2 bAddDefMonster,1312,-20; + - Id: 18532 + AegisName: Heart_Ribbon_Band + Name: Heart Ribbon Hairband + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 708 + Script: | + bonus bInt,2; + - Id: 18533 + AegisName: Honeybee_Hat + Name: Honey Bee Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 709 + Script: | + bonus bMdef,3; bonus2 bAddRace,RC_Insect,5; bonus2 bMagicAddRace,RC_Insect,5; bonus2 bSubRace,RC_Insect,5; bonus3 bAddMonsterDropItem,518,RC_Insect,2; + - Id: 18534 + AegisName: Fancy_Phantom_Mask + Name: Fancy Phantom Mask + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 5 + Slots: 1 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 710 + Script: | + bonus bStr,1; bonus2 bAddClass,Class_All,5; bonus bDelayRate,-1; bonus bMaxHP,getrefine()*100; bonus2 bSkillAtk,"MC_MAMMONITE",20; bonus2 bSkillAtk,"NJ_ZENYNAGE",20; + - Id: 18535 + AegisName: Pumpkin_Hat_2010 + Name: Pumpkin Hat 2010 + Type: Armor + Buy: 20 + Weight: 200 + Locations: + Head_Top: true + Refineable: true + View: 206 + - Id: 18536 + AegisName: Foxtail + Name: Foxtail + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Low: true + View: 711 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bMatk,10; bonus bFixedCast,-100; + - Id: 18537 + AegisName: Malangdo_Hat + Name: Malangdo Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 5 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 726 + Script: | + bonus bFlee,6; + - Id: 18538 + AegisName: Devil_Whisper + Name: Spirit Whispers + Type: Armor + Buy: 20 + Weight: 300 + Defense: 3 + Locations: + Head_Mid: true + View: 712 + Script: | + bonus bUnbreakableHelm; 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; + - Id: 18539 + AegisName: Skull_Cap + Name: Skull Cap + Type: Armor + Buy: 40 + Weight: 200 + Defense: 5 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 713 + Script: | + bonus bMatkRate,2; .@r = getrefine(); if(.@r >= 5) { bonus bMatkRate,3; } if(.@r >= 7) { bonus bMatkRate,3; } + - Id: 18540 + AegisName: Evil_Mask + Name: Evil Mask + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 3 + Locations: + Head_Low: true + Head_Mid: true + EquipLevelMin: 10 + View: 714 + Script: | + bonus2 bSPLossRate,1,2000; bonus bAspdRate,1; + - Id: 18541 + AegisName: Little_Feather_Hat + Name: Little Feather Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 715 + Script: | + bonus bDex,2; bonus bCritAtkRate,10; + - Id: 18542 + AegisName: Love_Guard + Name: Love Guard + Type: Armor + Buy: 20 + Weight: 500 + Defense: 10 + Slots: 1 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 716 + Script: | + bonus bHealPower2,5; bonus bAddItemHealRate,5; bonus bHealPower,(getrefine()>6)?5:2; + - Id: 18543 + AegisName: Witchs_Hat + Name: Witchs Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 7 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 717 + Script: | + bonus bMdef,5; bonus bVariableCastrate,(getrefine()>6?10:5); + - Id: 18544 + AegisName: Blrabbit_Hband + Name: Blrabbit Hband + Type: Armor + Buy: 20 + Weight: 100 + Defense: 6 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 718 + - Id: 18545 + AegisName: Whrabbit_Hband + Name: Whrabbit Hband + Type: Armor + Buy: 20 + Weight: 100 + Defense: 6 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 719 + - Id: 18546 + AegisName: Lover_In_Mouth + Name: Lover In Mouth + Type: Armor + Buy: 20 + Weight: 300 + Locations: + Head_Low: true + View: 720 + - Id: 18547 + AegisName: Campus_Festival + Name: Campus Festival + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Top: true + Refineable: true + View: 721 + - Id: 18548 + AegisName: Tiny_Hat + Name: Tiny Hat + Type: Armor + Buy: 20 + Weight: 30 + Locations: + Head_Top: true + Refineable: true + View: 722 + Script: | + bonus bInt,1; bonus bAgi,1; + - Id: 18549 + AegisName: Nabi_Hair_Pin + Name: Butterfly Hairpin + Type: Armor + Buy: 20 + Weight: 200 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 723 + Script: | + bonus bInt,1; bonus bAgi,1; bonus bMdef,3; bonus2 bAddRace,RC_Plant,5; bonus2 bMagicAddRace,RC_Plant,5; bonus2 bSubRace,RC_Plant,5; bonus3 bAddMonsterDropItem,709,RC_Plant,30; + - Id: 18550 + AegisName: Asgard_Blessing + Name: Asgard Blessing + Type: Armor + Buy: 20 + Weight: 300 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 724 + Script: | + bonus bAllStats,2; bonus2 bSubEle,Ele_All,5; bonus2 bRegenPercentHP,2,10000; bonus2 bRegenPercentSP,1,10000; + - Id: 18551 + AegisName: Galaxy_Circlet + Name: Galaxy Circlet + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 5 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 725 + Script: | + .@r = getrefine(); .@a = .@r*10; .@b = .@r/2; bonus bMdef,5; bonus bMaxHP,.@a; bonus bMaxSP,.@a; bonus2 bSubEle,Ele_Earth,.@b; bonus2 bSubEle,Ele_Fire,.@b; bonus2 bSubEle,Ele_Water,.@b; + - Id: 18552 + AegisName: Proba_Angel_Blessing + Name: Proba Angel Blessing + Type: Armor + Buy: 20 + Weight: 1200 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 444 + Script: | + bonus bLuk,2; + - Id: 18553 + AegisName: Mini_Tree + Name: Mini Tree + Type: Armor + Buy: 20 + Weight: 50 + Defense: 5 + Locations: + Head_Top: true + Refineable: true + View: 727 + Script: | + bonus2 bResEff,Eff_Stun,20; bonus2 bResEff,Eff_Curse,20; bonus2 bResEff,Eff_Blind,20; bonus2 bResEff,Eff_Confusion,20; bonus2 bAddMonsterDropItem,529,300; bonus2 bAddMonsterDropItem,529,644; + - Id: 18554 + AegisName: King_Prawn_Hat + Name: King Prawn Hat + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 8 + Locations: + Head_Top: true + View: 728 + Script: | + bonus2 bAddItemGroupHealRate,IG_Fish,100; + - Id: 18555 + AegisName: General_Helmet + Name: General Helmet + Type: Armor + Buy: 20 + Weight: 200 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 729 + Script: | + bonus bMdef,3; bonus2 bAddRace,RC_Dragon,5; bonus2 bMagicAddRace,RC_Dragon,5; bonus2 bSubRace,RC_Dragon,5; bonus3 bAddMonsterDropItem,7444,RC_Dragon,2; + - Id: 18556 + AegisName: Angel_Helmet + Name: Angel Helmet + Type: Armor + Locations: + Head_Mid: true + View: 3 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus3 bAddMonsterIdDropItem,6464,2220,310; + - Id: 18557 + AegisName: Devil_Helmet + Name: Devil Helmet + Type: Armor + Locations: + Head_Mid: true + View: 12 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus3 bAddMonsterIdDropItem,6345,1812,310; + - Id: 18558 + AegisName: Sinsuncho_Hat + Name: Sinsuncho Hat + Type: Armor + Buy: 20 + Weight: 1000 + Locations: + Head_Top: true + EquipLevelMin: 10 + View: 730 + Script: | + bonus2 bExpAddRace,RC_Plant,5; bonus2 bSubRace,RC_Plant,-10; + - Id: 18559 + AegisName: Fafnir_Skin + Name: Fafnir Skin + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Locations: + Head_Mid: true + EquipLevelMin: 50 + View: 152 + Script: | + bonus bCritical,3; bonus bHPrecovRate,-100; + - Id: 18560 + AegisName: Fafnir_Mask + Name: Fafnir Mask + Type: Armor + Buy: 20 + Weight: 300 + Defense: 2 + Locations: + Head_Low: true + EquipLevelMin: 50 + View: 180 + Script: | + bonus bCritical,2; + - Id: 18561 + AegisName: B_Feather_Beret + Name: B Feather Beret + Type: Armor + Buy: 20 + Weight: 300 + Defense: 5 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 40 + Refineable: true + View: 731 + Script: | + bonus bVit,2; bonus bMdef,3; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; + - Id: 18562 + AegisName: Bone_Hat + Name: Bone Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 732 + Script: | + bonus bMdef,3; + - Id: 18563 + AegisName: Heart_Wing_Hairband + Name: Heart Wing Hairband + Type: Armor + Buy: 20 + Weight: 300 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 733 + Trade: + Override: 100 + NoDrop: true + Script: | + .@r = getrefine()/3; bonus bUseSPrate,-(10+.@r*3); bonus bDelayrate,-(5+.@r*3); + - Id: 18564 + AegisName: Love_Piece + Name: Love Piece + Type: Armor + Buy: 20 + Weight: 200 + Locations: + Head_Low: true + EquipLevelMin: 50 + View: 734 + Script: | + bonus bNoCastCancel; bonus bUseSPrate,15; + - Id: 18565 + AegisName: Leprechaun_Hat + Name: St Patrick's Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 8 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 40 + Refineable: true + View: 735 + Script: | + bonus bStr,1; bonus bInt,1; bonus bMdef,4; if(getrefine()>7){ bonus2 bAddMonsterDropItem,12135,50; } + - Id: 18566 + AegisName: Nut_Donut_In_Mouth + Name: Nut Donut In Mouth + Type: Armor + Buy: 20 + Defense: 1 + Locations: + Head_Low: true + View: 736 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bBaseAtk,5; bonus bMatk,5; + - Id: 18567 + AegisName: Stretched_Nose + Name: Stretched Nose + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Low: true + View: 737 + - Id: 18568 + AegisName: Humming_Bird + Name: Humming Bird + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Locations: + Head_Top: true + EquipLevelMin: 10 + View: 702 + Script: | + bonus bMdef,6; + - Id: 18569 + AegisName: Soft_Sheep_Hat + Name: Soft Sheep Hat + Type: Armor + Buy: 20 + Weight: 1000 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 738 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bMaxHPrate,1+getrefine(); if(getrefine()>9) { bonus2 bExpAddClass,Class_All,5; }; + - Id: 18570 + AegisName: Ancient_Gold_Deco + Name: Ancient Gold Ornament + Type: Armor + Buy: 20 + Weight: 400 + Defense: 7 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 739 + Script: | + 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 bMatkRate,8; bonus bHealPower,7; } if(BaseClass==Job_Archer){ bonus bDex,3; bonus bLongAtkRate,10; } + - Id: 18571 + AegisName: Lucky_Hat + Name: Lucky Hat + Type: Armor + Buy: 20 + Weight: 1000 + Slots: 1 + Locations: + Head_Top: true + View: 740 + Script: | + bonus2 bExpAddRace,RC_All,3; + - Id: 18572 + AegisName: Korean_Judge_Hat + Name: Korean Judge Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 377 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bMdef,2; bonus bVariableCastrate,-6; bonus bAspdRate,6; .@r = getrefine(); if(.@r>6){ bonus2 bSubRace,RC_DemiHuman,2;bonus2 bSubRace,RC_Player_Human,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; + - Id: 18573 + AegisName: White_Feather + Name: White Feather + Type: Armor + Buy: 20 + Weight: 500 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 741 + Script: | + .@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; } + - Id: 18574 + AegisName: Lord_of_Death + Name: Lord of Death + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 10 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 742 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bMdef,5; .@r = getrefine(); bonus2 bAddClass,Class_Boss,(.@r>5?.@r+5:10); bonus2 bMagicAddClass,Class_Boss,(.@r>5?.@r+5:10); bonus2 bSubClass,Class_Normal,-5; + - Id: 18575 + AegisName: Wunderkammer + Name: Wunderkammer + Type: Armor + Buy: 20 + Weight: 500 + Defense: 10 + Slots: 1 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + EquipLevelMin: 20 + View: 743 + Script: | + bonus bMdef,10; bonus3 bAutoSpell,"AS_SONICBLOW",1,30; bonus3 bAutoSpell,"CR_SHIELDCHARGE",5,20; bonus3 bAutoSpellWhenHit,"AL_PNEUMA",1,20; bonus3 bAutoSpellWhenHit,"CR_GRANDCROSS",5,5; bonus3 bAutoSpellWhenHit,"ASC_METEORASSAULT",5,5; bonus3 bAutoSpellWhenHit,"MO_CALLSPIRITS",5,10; bonus3 bAutoSpellWhenHit,"MO_EXPLOSIONSPIRITS",5,10; bonus3 bAutoSpellWhenHit,"PR_KYRIE",5,10; bonus3 bAutoSpellWhenHit,"AC_CONCENTRATION",5,5; bonus3 bAutoSpellWhenHit,"WZ_QUAGMIRE",3,5; + - Id: 18576 + AegisName: YinYang_Earring + Name: YinYang Earring + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Mid: true + EquipLevelMin: 50 + View: 744 + Script: | + bonus2 bSkillAtk,"MO_CHAINCOMBO",10; bonus2 bSkillAtk,"MO_TRIPLEATTACK",5; bonus2 bSkillAtk,"MO_COMBOFINISH",5; bonus2 bSkillUseSP,"MO_CHAINCOMBO",1; bonus2 bSkillUseSP,"MO_COMBOFINISH",1; + - Id: 18577 + AegisName: 24_Bolt + Name: 24 Bolt + Type: Armor + Buy: 20 + Weight: 200 + Locations: + Head_Mid: true + EquipLevelMin: 10 + View: 696 + - Id: 18578 + AegisName: Helm_Of_Valor + Name: Helm Of Valor + Type: Armor + Defense: 4 + Locations: + Head_Top: true + View: 258 + Script: | + bonus2 bAddRace,RC_All,3; + - Id: 18579 + AegisName: 9th_Anni_Hat + Name: 9th Anni Hat + Type: Armor + Weight: 90 + Locations: + Head_Top: true + Refineable: true + View: 745 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,9; + - Id: 18580 + AegisName: Yggdrasil_Crown + Name: Yggdrasil Crown + Type: Armor + Buy: 20 + Weight: 200 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 746 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bMdef,3; bonus bHealPower,2; .@r = getrefine(); bonus bHealpower2,10; if(.@r >= 7){ bonus bHealPower,5; } if(.@r >= 9){ bonus bHealPower,3; } + - Id: 18581 + AegisName: Red_Tiger_Mask + Name: Red Tiger Mask + Type: Armor + Buy: 20 + Weight: 400 + Defense: 2 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 50 + View: 747 + Script: | + bonus bStr,3; bonus bMaxHP,100; + - Id: 18582 + AegisName: Blue_Tiger_Mask + Name: Blue Tiger Mask + Type: Armor + Buy: 20 + Weight: 400 + Defense: 2 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 50 + View: 748 + Script: | + bonus bStr,3; + - Id: 18583 + AegisName: Navy_Drooping_Kitty + Name: Navy Drooping Kitty + Type: Armor + Buy: 250000 + Weight: 500 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 749 + Script: | + bonus bMdef,15; + - Id: 18584 + AegisName: Brown_Drooping_Kitty + Name: Brown Drooping Kitty + Type: Armor + Buy: 250000 + Weight: 500 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 750 + Script: | + bonus bMdef,15; + - Id: 18585 + AegisName: Orange_Bunny_Hairband + Name: Orange Bunny Hairband + Type: Armor + Buy: 20 + Weight: 10 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 751 + Script: | + bonus bStr,1; bonus bInt,2; bonus bVit,3; + - Id: 18586 + AegisName: Violet_Bunny_Hairband + Name: Violet Bunny Hairband + Type: Armor + Buy: 20 + Weight: 10 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 752 + Script: | + bonus bStr,1; bonus bInt,3; bonus bVit,2; bonus bDex,1; + - Id: 18587 + AegisName: Blue_Bunny_Hairband + Name: Blue Bunny Hairband + Type: Armor + Buy: 20 + Weight: 10 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 753 + Script: | + bonus bStr,3; bonus bInt,1; bonus bVit,2; bonus bDex,1; + - Id: 18588 + AegisName: Silver_Bunny_Hairband + Name: Silver Bunny Hairband + Type: Armor + Buy: 20 + Weight: 10 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 754 + Script: | + bonus bStr,2; bonus bInt,3; bonus bVit,1; bonus bDex,1; + - Id: 18589 + AegisName: Strawberry_Hat + Name: Strawberry Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 5 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 755 + Script: | + .@r = getrefine(); bonus2 bAddMonsterDropItem,578,(.@r>10?200:100+(.@r*10)); + - Id: 18590 + AegisName: Gemma_Hairband + Name: Gemma Hairband + Type: Armor + Buy: 20 + Weight: 200 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 564 + Script: | + bonus bMdef,3; + - Id: 18591 + AegisName: Mini_Glasses_ + Name: Mini Glasses + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + View: 47 + - Id: 18592 + AegisName: Nestea_Hat + Name: Nestea Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 5 + Locations: + Head_Top: true + Refineable: true + View: 756 + Script: | + bonus bMdef,5; + - Id: 18593 + AegisName: Fancy_Mini_Crown + Name: Fancy Mini Crown + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 707 + Script: | + bonus bInt,1; bonus bMdef,5; bonus bVariableCastRate,-3; bonus bHealPower,3; bonus bUseSPrate,-3; .@r = getrefine(); bonus bMatkRate,(.@r>6)?(5):((.@r>4)?(4):(3)); + - Id: 18594 + AegisName: Magni_Cap_ + Name: Magni Cap + Type: Armor + Buy: 30000 + Weight: 1000 + Defense: 9 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 250 + Script: | + bonus bStr,2; + - Id: 18595 + AegisName: Horn_Of_Ancient + Name: Horn of Ancient + Type: Armor + Buy: 40 + Weight: 200 + Defense: 8 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 757 + Trade: + Override: 100 + NoDrop: true + Script: | + 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; } + - Id: 18596 + AegisName: Sprout_Hat + Name: Sprout Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 4 + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 758 + Trade: + Override: 100 + NoDrop: true + Script: | + skill "WZ_HEAVENDRIVE",3; + - Id: 18597 + AegisName: Mercury_Helm + Name: Mercury Riser + Type: Armor + Buy: 40 + Weight: 200 + Defense: 10 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 759 + Trade: + Override: 100 + NoDrop: true + Script: | + 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; } + - Id: 18598 + AegisName: Mini_Tree_J + Name: Mini Tree J + Type: Armor + Buy: 20 + Weight: 50 + Slots: 1 + Locations: + Head_Top: true + View: 727 + Script: | + bonus bMdef,20; + - Id: 18599 + AegisName: Black_Devil_Mask + Name: Black Devil Mask + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Mid: true + View: 760 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bAllStats,2; + - Id: 18600 + AegisName: Cat_Ears_Beret + Name: Cat Ear Beret + Type: Armor + Buy: 20 + Weight: 100 + Defense: 5 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 761 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus2 bAddClass,Class_All,5; .@r = getrefine(); if(.@r < 5) .@r = 5; bonus2 bSubRace,RC_DemiHuman,(.@r - 5); bonus2 bAddRace,RC_DemiHuman,(.@r - 5); bonus2 bSubRace,RC_Player_Human,(.@r - 5); bonus2 bAddRace,RC_Player_Human,(.@r - 5); + - Id: 18601 + AegisName: Red_Bread_Hat + Name: Red Bread Hat + Type: Armor + Buy: 20 + Weight: 300 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 762 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bMdef,5; .@r = getrefine(); if (.@r < 5) .@r = 5; bonus2 bSubRace,RC_DemiHuman,(.@r - 5); bonus2 bMagicAddRace,RC_DemiHuman,(.@r - 5); + - Id: 18602 + AegisName: Watermelon_Slice + Name: Watermelon Bite + Type: Armor + Buy: 20 + Weight: 100 + Defense: 4 + Locations: + Head_Low: true + EquipLevelMin: 30 + View: 763 + - Id: 18603 + AegisName: Black_Devil_Mask_ + Name: Black Devil Mask + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Locations: + Head_Mid: true + View: 760 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bAllStats,1; + - Id: 18604 + AegisName: Falcon_Mask + Name: Falcon Mask + Type: Armor + Buy: 10 + Weight: 30 + Locations: + Head_Low: true + Head_Mid: true + EquipLevelMin: 50 + View: 782 + Script: | + bonus2 bAddEle,Ele_Water,5; + - Id: 18605 + AegisName: Dark_Age + Name: Dark Age + Type: Armor + Buy: 20 + Weight: 200 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 766 + Script: | + bonus bMdef,3; + - Id: 18606 + AegisName: Tear_Drop + Name: Tear Drop + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Low: true + Head_Mid: true + EquipLevelMin: 30 + View: 767 + - Id: 18607 + AegisName: Blush_ + Name: Blush + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Locations: + Head_Mid: true + View: 125 + - Id: 18608 + AegisName: Pair_Of_Red_Ribbon2 + Name: Small Ribbons + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Slots: 1 + Locations: + Head_Mid: true + EquipLevelMin: 45 + View: 169 + - Id: 18609 + AegisName: Dark_Blindfold_ + Name: Dark Blinder + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + View: 187 + Script: | + bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Stun,200; + - Id: 18610 + AegisName: 7th_Anni_Hat_B + Name: 7th Anni Hat B + Type: Armor + Buy: 20 + Weight: 500 + Defense: 4 + Locations: + Head_Top: true + Refineable: true + View: 778 + Script: | + bonus bAllStats,5; bonus bMdef,4; + - Id: 18611 + AegisName: Black_Glasses_ + Name: Black Glasses + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Slots: 1 + Locations: + Head_Mid: true + View: 404 + Script: | + bonus bInt,1; bonus bMdef,2; + - Id: 18612 + AegisName: White_Musang_Hat + Name: White Musang Hat + Type: Armor + Buy: 40 + Weight: 400 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 770 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bStr,2; bonus bVit,2; bonus bLuk,1; bonus bUnbreakableHelm; + - Id: 18613 + AegisName: Black_Musang_Hat + Name: Black Musang Hat + Type: Armor + Buy: 40 + Weight: 400 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 771 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bInt,2; bonus bDex,2; bonus bAgi,1; bonus bUnbreakableHelm; + - Id: 18614 + AegisName: Grim_Reaper_Hat + Name: Grim Reaper Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 732 + Script: | + bonus bFlee,3; + - Id: 18615 + AegisName: Injured_Eyepatch + Name: Injured Eyepatch + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + EquipLevelMin: 20 + View: 772 + - Id: 18616 + AegisName: Long_Tongue + Name: Long Tongue + Type: Armor + Buy: 20 + Weight: 200 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Low: true + EquipLevelMin: 20 + View: 773 + - Id: 18617 + AegisName: Onigiri_In_Mouth + Name: Onigiri In Mouth + Type: Armor + Buy: 20 + Weight: 200 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Low: true + EquipLevelMin: 20 + View: 774 + - Id: 18618 + AegisName: Airplane_Hat + Name: Airplane Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 8 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 775 + - Id: 18619 + AegisName: Thief_Bandana + Name: Thief Bandana + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 776 + Script: | + bonus3 bAutoSpell,"TF_STEAL",1,20; + - Id: 18620 + AegisName: Heart_Eyepatch + Name: Heart Eyepatch + Type: Armor + Buy: 5 + Weight: 50 + Defense: 2 + Locations: + Head_Mid: true + EquipLevelMin: 20 + Refineable: true + View: 779 + - Id: 18621 + AegisName: Gangster_Mask_A + Name: Gangster Mask A + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Low: true + View: 52 + - Id: 18622 + AegisName: Rocket_Helm1 + Name: Rocket Helm 1 + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 20 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 95 + Refineable: true + View: 764 + Script: | + bonus bAllStats,5; bonus bMdef,5; bonus bUnbreakableHelm; + - Id: 18623 + AegisName: Rocket_Helm2 + Name: Rocket Helm 2 + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 20 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 95 + Refineable: true + View: 765 + Script: | + bonus bAllStats,4; bonus bMdef,5; bonus bUnbreakableHelm; + - Id: 18624 + AegisName: Rocket_Helm3 + Name: Rocket Helm 3 + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 20 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 95 + Refineable: true + View: 768 + Script: | + bonus bAllStats,3; bonus bMdef,5; bonus bUnbreakableHelm; + - Id: 18625 + AegisName: Rocket_Helm_RWC + Name: Rocket Helm RWC + Type: Armor + Buy: 10000 + Weight: 1000 + Defense: 20 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 95 + Refineable: true + View: 769 + Script: | + bonus bAllStats,2; bonus bMdef,5; bonus bUnbreakableHelm; bonus bSpeedRate,25; + - Id: 18626 + AegisName: Gelato_Hat + Name: Gelato Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Locations: + Head_Top: true + EquipLevelMin: 40 + Refineable: true + View: 777 + - Id: 18627 + AegisName: Dried_Leaf + Name: Dried Leaf + Type: Armor + Buy: 20 + Weight: 50 + Locations: + Head_Low: true + EquipLevelMin: 10 + View: 711 + Script: | + bonus bUnbreakableHelm; + - Id: 18628 + AegisName: Tare_Brownie + Name: Tare Brownie + Type: Armor + Buy: 20 + Weight: 500 + Defense: 5 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 50 + View: 781 + Script: | + bonus bMdef,5; + - Id: 18629 + AegisName: B_Desert_Wolf_Hat + Name: Baby Desert Wolf Hat + Type: Armor + Buy: 10 + Weight: 300 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 783 + Script: | + bonus bMdef,5; bonus bLongAtkDef,5; + - Id: 18630 + AegisName: Dep_Alice_Hat + Name: Drooping Alicel + Type: Armor + Buy: 20 + Weight: 500 + Defense: 6 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 784 + Script: | + bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; if (getrefine() > 10) { autobonus "{ bonus bAspdRate,100; }",10,7000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; } + - Id: 18631 + AegisName: Ribbon_Chef_Hat + Name: Ribbon Chef Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 5 + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 785 + Script: | + 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; } + - Id: 18632 + AegisName: Yellow_Poring_Hairpin + Name: Yellow Poring Hairpin + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 786 + - Id: 18633 + AegisName: Pink_Poring_Hairpin + Name: Pink Poring Hairpin + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 787 + - Id: 18634 + AegisName: Green_Poring_Hairpin + Name: Green Poring Hairpin + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 788 + - Id: 18635 + AegisName: Blue_Poring_Hairpin + Name: Blue Poring Hairpin + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 789 + - Id: 18636 + AegisName: Bridal_Ribbon + Name: Bridal Ribbon + Type: Armor + Buy: 20 + Weight: 200 + Defense: 6 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 790 + Script: | + bonus bDex,1; bonus3 bAutoSpellWhenHit,"DC_WINKCHARM",1,10; + - Id: 18637 + AegisName: Ancient_Admiral_Helm + Name: Ancient Admiral Helm + Type: Armor + Buy: 20 + Weight: 700 + Defense: 4 + Slots: 1 + Locations: + Head_Mid: true + Head_Top: true + Refineable: true + View: 660 + Script: | + bonus bStr,2; bonus bVit,1; if (getrefine() > 7) bonus bSpeedRate,25; + - Id: 18638 + AegisName: Citron_Hat + Name: Citron Hat + Type: Armor + Buy: 20 + Weight: 400 + Defense: 3 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 791 + Script: | + bonus bLuk,3; bonus2 bSubRace,RC_Plant,10; + - Id: 18639 + AegisName: Naval_Officer_Hat + Name: Naval Officer Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 792 + Script: | + bonus bLuk,3; bonus2 bAddEle,Ele_Water,5; + - Id: 18640 + AegisName: Starfish_Headband + Name: Starfish Headband + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 793 + - Id: 18641 + AegisName: Ribbon_Magic_Hat + Name: Ribbon Magic Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 794 + Script: | + bonus bMaxSP,50; bonus bMatkRate,5; + - Id: 18642 + AegisName: hand_Scissorhand_Model + Name: Scissorhand Model + Type: Armor + Buy: 20 + Weight: 200 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Low: true + EquipLevelMin: 20 + View: 795 + Script: | + bonus bAgi,1; + - Id: 18643 + AegisName: Rockhand_Model + Name: Rockhand Model + Type: Armor + Buy: 20 + Weight: 200 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Low: true + EquipLevelMin: 20 + View: 796 + Script: | + bonus bStr,1; + - Id: 18644 + AegisName: Paperhand_Model + Name: Paperhand Model + Type: Armor + Buy: 20 + Weight: 200 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Low: true + EquipLevelMin: 20 + View: 797 + - Id: 18645 + AegisName: Sailor_Hat + Name: Sailor Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 798 + Script: | + bonus bInt,1; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; + - Id: 18646 + AegisName: Cow_Hat + Name: Cow Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 4 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 799 + Script: | + bonus bDex,2; bonus2 bAddMonsterDropItem,519,100; + - Id: 18647 + AegisName: Star_Eyepatch + Name: Star Eyepatch + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Top: true + EquipLevelMin: 1 + View: 800 + Script: | + bonus2 bResEff,Eff_Stun,1500; + - Id: 18648 + AegisName: Tongue_Charm + Name: Tongue Charm + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 801 + Script: | + bonus2 bSubRace,RC_Demon,3; + - Id: 18649 + AegisName: Lude_Mask + Name: Lude Mask + Type: Armor + Buy: 10 + Weight: 100 + Defense: 1 + Locations: + Head_Low: true + Head_Mid: true + Refineable: true + View: 802 + - Id: 18650 + AegisName: RWC_Shouting_Mouth + Name: RWC Shouting Mouth + Type: Armor + Buy: 20 + Weight: 50 + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 194 + Script: | + 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!!\"; }"; + - Id: 18651 + AegisName: Ignis_Cap + Name: Ignis Cap + Type: Armor + Buy: 20 + Weight: 800 + Defense: 8 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 40 + Refineable: true + View: 803 + - Id: 18652 + AegisName: Vanargand_Helm + Name: Vanargandr Helm + Type: Armor + Buy: 20 + Weight: 1500 + Defense: 10 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 80 + Refineable: true + View: 804 + Script: | + .@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; } + - Id: 18653 + AegisName: Devi_Headphone + Name: Deviruchi Headphone + Type: Armor + Buy: 20 + Weight: 200 + Defense: 8 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 805 + Script: | + bonus bMdef,4; + - Id: 18655 + AegisName: Lupin_One_Eyed_Glasses + Name: Goedo Monocle + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Mid: true + EquipLevelMin: 50 + View: 807 + Script: | + bonus bAgi,2; + - Id: 18656 + AegisName: Wit_Pumpkin_Hat + Name: Witch's Pumpkin Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 10 + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 717 + Script: | + 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; + - Id: 18657 + AegisName: Pegasus_Wing_Ears + Name: Pegasus Wing Ears + Type: Armor + Buy: 20 + Weight: 500 + Defense: 1 + Locations: + Head_Mid: true + EquipLevelMin: 80 + View: 568 + Script: | + bonus bUnbreakableHelm; .@i = BaseLevel; bonus bAspdRate,(.@i>=150)?(3):((.@i>=100)?(2):((.@i>=50)?(1):(0))); + - Id: 18658 + AegisName: Holy_Santa_Beard + Name: Holy Santa Beard + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 25 + - Id: 18659 + AegisName: Boitata_Hat + Name: Boitata Hat + Type: Armor + Buy: 20 + Defense: 5 + Slots: 1 + Locations: + Head_Mid: true + Head_Top: true + Refineable: true + View: 808 + Script: | + autobonus "{ bonus bAtkEle,Ele_Fire; }",10,180000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; bonus3 bAutospell,"AS_SONICBLOW",5,10; + - Id: 18660 + AegisName: Indi_Feather_Band + Name: Indian Feather Headband + Type: Armor + Buy: 20 + Weight: 400 + Defense: 3 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 809 + Script: | + bonus bAgi,2; + - Id: 18661 + AegisName: Trident_Helmet + Name: Trident Helm + Type: Armor + Buy: 20 + Weight: 400 + Defense: 3 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 810 + Script: | + bonus bStr,2; + - Id: 18662 + AegisName: Antler_Fedora + Name: Antler Fedora + Type: Armor + Buy: 20 + Weight: 400 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 811 + Script: | + bonus bInt,3; + - Id: 18663 + AegisName: Sunglasses_Bball_Hat + Name: Sunglasses Baseball Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 812 + Script: | + bonus bInt,3; + - Id: 18664 + AegisName: Blind_Glasses + Name: Blind Glasses + Type: Armor + Buy: 20 + Weight: 400 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + EquipLevelMin: 20 + Refineable: true + View: 813 + - Id: 18665 + AegisName: Orange_In_Mouth + Name: Orange In Mouth + Type: Armor + Buy: 20 + Weight: 200 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Low: true + EquipLevelMin: 20 + View: 814 + - Id: 18666 + AegisName: CD_In_Mouth + Name: CD In Mouth + Type: Armor + Buy: 20 + Weight: 200 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Low: true + EquipLevelMin: 20 + View: 815 + Script: | + bonus3 bAutoSpell,"MG_COLDBOLT",3,30; bonus3 bAutoSpell,"MG_SOULSTRIKE",3,30; bonus3 bAutoSpell,"WZ_EARTHSPIKE",3,30; bonus3 bAutoSpell,"MG_FIREBOLT",3,30; bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",3,30; + - Id: 18667 + AegisName: Cat_Lace_Hairband + Name: Cat Lace Hairband + Type: Armor + Buy: 20 + Weight: 500 + Defense: 2 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 60 + View: 816 + Script: | + bonus bDex,3; + - Id: 18668 + AegisName: Droopy_Turtle_Hat + Name: Droopy Turtle Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 1 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 694 + Script: | + skill "AL_DECAGI",3; + - Id: 18669 + AegisName: Cowhide_Hat + Name: Cowhide Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 3 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 819 + Script: | + bonus bDex,2; bonus bMaxHPrate,1; + - Id: 18670 + AegisName: Hankie_In_Mouth + Name: Hankie In Mouth + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Low: true + EquipLevelMin: 12 + View: 818 + Script: | + bonus bDex,3; bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3; + - Id: 18671 + AegisName: Rudolf_Hairband + Name: Rudolf Hairband + Type: Armor + Buy: 20 + Weight: 200 + Defense: 5 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 836 + - Id: 18672 + AegisName: Tare_Pope + Name: Drooping Pope + Type: Armor + Buy: 20 + Weight: 300 + Locations: + Head_Top: true + EquipLevelMin: 1 + View: 817 + Script: | + bonus bMdef,1; bonus bSPrecovRate,2; bonus bUnbreakableHelm; + - Id: 18673 + AegisName: Tare_Pope_ + Name: Drooping Pope + Type: Armor + Buy: 20 + Weight: 300 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 817 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bUnbreakableHelm; bonus bMdef,7; .@r = getrefine(); bonus bHealPower,(.@r>=7?5+(.@r-6):5); if (.@r>=9) { bonus bMatkRate, ( .@r >= 12 ? 12 : 7 ); } + - Id: 18674 + AegisName: Planewing_Hat + Name: Planewing Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 3 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 820 + Script: | + bonus bAgi,3; bonus bAspdRate,1; bonus2 bSPLossRate,5,10000; + - Id: 18675 + AegisName: Green_Apple_Hat + Name: Green Apple Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 3 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 821 + Script: | + bonus bDex,2; bonus bHit,5; + - Id: 18676 + AegisName: Hexagon_Spectacles + Name: Hexagon Spectacles + Type: Armor + Buy: 20 + Weight: 200 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + EquipLevelMin: 10 + View: 822 + Script: | + bonus2 bMagicAddRace,RC_Insect,4; bonus2 bSubRace,RC_Insect,5; bonus bUnbreakableHelm; + - Id: 18677 + AegisName: Cherry_Twig_In_Mouth + Name: Cherry Twig In Mouth + Type: Armor + Buy: 20 + Weight: 200 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Low: true + EquipLevelMin: 20 + View: 823 + Script: | + bonus2 bAddRace,RC_Plant,2; + - Id: 18678 + AegisName: Leek_In_Mouth + Name: Leek In Mouth + Type: Armor + Buy: 20 + Weight: 200 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Low: true + EquipLevelMin: 20 + View: 824 + Script: | + bonus2 bSubSize,Size_Small,2; + - Id: 18679 + AegisName: Abacus_In_Mouth + Name: Abacus In Mouth + Type: Armor + Buy: 20 + Weight: 200 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Low: true + EquipLevelMin: 20 + View: 825 + Script: | + skill "MC_IDENTIFY",1; + - Id: 18680 + AegisName: Tw_Frog_Hat + Name: Tw Frog Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Locations: + Head_Top: true + EquipLevelMin: 35 + View: 826 + Script: | + bonus bAgi,1; bonus2 bExpAddRace,RC_Insect,5; + - Id: 18681 + AegisName: Puppy_Ears_Hat + Name: Puppy Ears Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 827 + Script: | + bonus bVit,2; bonus bMaxHp,100; + - Id: 18682 + AegisName: Teardrop + Name: Teardrop + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Mid: true + EquipLevelMin: 1 + Refineable: true + View: 828 + Script: | + bonus bMaxSP,15; + - Id: 18683 + AegisName: Carrot_In_Mouth + Name: Carrot In Mouth + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 829 + Script: | + bonus2 bSubRace,RC_Plant,3; + - Id: 18684 + AegisName: Showy_High_Cap + Name: Showy High Cap + Type: Armor + Buy: 20 + Weight: 200 + Defense: 3 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 830 + Script: | + bonus bStr,3; bonus bInt,2; bonus2 bAddItemHealRate,505,50; + - Id: 18685 + AegisName: Stardust_Hairband + Name: Stardust Hairband + Type: Armor + Buy: 20 + Weight: 1000 + Locations: + Head_Top: true + EquipLevelMin: 10 + View: 831 + - Id: 18686 + AegisName: 2011_RMSC_1 + Name: 2011 RMSC 1 + Type: Armor + Buy: 20 + Weight: 2500 + Defense: 20 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + View: 832 + Script: | + bonus bUnbreakableHelm; bonus bAllStats,5; + - Id: 18687 + AegisName: 2011_RMSC_2 + Name: 2011 RMSC 2 + Type: Armor + Buy: 20 + Weight: 2500 + Defense: 20 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + View: 832 + Script: | + bonus bUnbreakableHelm; bonus bAllStats,3; + - Id: 18688 + AegisName: 2011_RMSC_3 + Name: 2011 RMSC 3 + Type: Armor + Buy: 20 + Weight: 2500 + Defense: 20 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + View: 832 + Script: | + bonus bUnbreakableHelm; bonus bAllStats,1; + - Id: 18689 + AegisName: 2011_RMSC_4 + Name: 2011 RMSC 4 + Type: Armor + Buy: 20 + Weight: 10 + Locations: + Head_Top: true + EquipLevelMin: 1 + View: 832 + Script: | + bonus bUnbreakableHelm; + - Id: 18690 + AegisName: Sirt_Evil_Eye + Name: Sirt Evil Eye + Type: Armor + Buy: 20 + Weight: 400 + Locations: + Head_Mid: true + EquipLevelMin: 50 + View: 345 + Script: | + bonus bUnbreakableHelm; bonus bStr,1; + - Id: 18691 + AegisName: Rising_Black_Dragon + Name: Rising Black Dragon + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 863 + - Id: 18692 + AegisName: Mike_Hat + Name: Mike Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 3 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 837 + Script: | + bonus bDex,2; bonus bLuk,1; + - Id: 18693 + AegisName: Sleeping_Kitty_Cat + Name: Sleeping Kitty Cat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 4 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 838 + Script: | + bonus2 bAddRace,RC_Brute,2; bonus2 bAddRace,RC_Player_Doram,2; + - Id: 18694 + AegisName: Red_Hood + Name: Red Hood + Type: Armor + Buy: 20 + Weight: 200 + Defense: 3 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 839 + Script: | + bonus bCritical,10; + - Id: 18695 + AegisName: Phoenix_Crown + Name: Phoenix Crown + Type: Armor + Buy: 20 + Weight: 400 + Defense: 3 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 840 + Script: | + bonus bInt,2; + - Id: 18696 + AegisName: Orange_Hat + Name: Orange Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 841 + Script: | + skill "MC_MAMMONITE",2; + - Id: 18697 + AegisName: Syringe_In_Mouth + Name: Syringe In Mouth + Type: Armor + Buy: 20 + Weight: 200 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Low: true + EquipLevelMin: 20 + View: 842 + - Id: 18698 + AegisName: Cheesy_Snack_In_Mouth + Name: Cheesy Snack In Mouth + Type: Armor + Buy: 20 + Weight: 200 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Low: true + EquipLevelMin: 20 + View: 843 + - Id: 18699 + AegisName: Starving_Fish_Hat + Name: Starving Fish Hat + Type: Armor + Buy: 20 + Weight: 1200 + Defense: 3 + Locations: + Head_Top: true + EquipLevelMin: 1 + View: 844 + - Id: 18700 + AegisName: Rabbit_Ribbon + Name: Rabbit Ribbon + Type: Armor + Buy: 20 + Weight: 500 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 845 + Script: | + bonus bInt,1; + - Id: 18701 + AegisName: Ancient_Civil_Man + Name: Ancient Civil Man + Type: Armor + Buy: 20 + Weight: 500 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 70 + View: 846 + Script: | + bonus bInt,3; bonus bDex,2; bonus bLuk,1; if(getiteminfo(getequipid(EQI_HAND_R),11)==W_BOOK) bonus bVariableCastrate,-3; + - Id: 18702 + AegisName: Shaving_Cream + Name: Shaving Cream + Type: Armor + Buy: 20 + Weight: 50 + Defense: 1 + Locations: + Head_Low: true + EquipLevelMin: 10 + View: 847 + - Id: 18703 + AegisName: Stem_In_Mouth + Name: Stem In Mouth + Type: Armor + Buy: 20 + Weight: 50 + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 848 + Script: | + bonus2 bResEff,Eff_Poison,2000; + - Id: 18704 + AegisName: Drosera_Hairpin + Name: Drosera Hairpin + Type: Armor + Buy: 20 + Weight: 640 + Defense: 6 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 64 + Refineable: true + View: 850 + Script: | + bonus bMdef,4; bonus bMaxSP,64; bonus2 bSubRace,RC_Insect,-10; + - Id: 18706 + AegisName: Can_Hat + Name: Can Hat + Type: Armor + Buy: 20 + Weight: 400 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 851 + Script: | + bonus bLuk,3; + - Id: 18707 + AegisName: Maneater_Flower_Hat + Name: Maneater Flower Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 852 + Script: | + bonus bFlee,20; + - Id: 18708 + AegisName: Candy_Hat + Name: Candy Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 853 + Script: | + skill "AL_HEAL",3; + - Id: 18709 + AegisName: Black_Knitted_Hat + Name: Black Knitted Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 3 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 854 + Script: | + bonus bMaxSP,100; + - Id: 18710 + AegisName: Sugared_Fruit_Stick + Name: Sugared Fruit Stick + Type: Armor + Buy: 20 + Weight: 200 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Low: true + EquipLevelMin: 20 + View: 855 + - Id: 18711 + AegisName: Electric_Sunglass + Name: Electric Sunglass + Type: Armor + Buy: 20 + Weight: 400 + Defense: 3 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + EquipLevelMin: 20 + View: 856 + - Id: 18712 + AegisName: Fan_In_Mouth + Name: Fan In Mouth + Type: Armor + Buy: 20 + Weight: 200 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Low: true + EquipLevelMin: 20 + View: 857 + - Id: 18713 + AegisName: Monkey_On_Fur_Hat + Name: Monkey On Fur Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 6 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 858 + Script: | + bonus bDex,1; bonus bAgi,1; bonus bFlee,10; + - Id: 18714 + AegisName: Hippo_Hat + Name: Hippo Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 5 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 859 + Script: | + bonus2 bSubEle,Ele_Water,10; bonus5 bAutoSpellWhenHit,"WZ_FROSTNOVA",1,1,BF_WEAPON|BF_MAGIC,0; + - Id: 18715 + AegisName: Helm_Of_Thoth + Name: Helm Of Thoth + Type: Armor + Buy: 20 + Weight: 2500 + Defense: 2 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 80 + View: 860 + Script: | + bonus bInt,2; bonus bMdef,5; bonus bMaxSP,100; + - Id: 18716 + AegisName: Strawberry_In_Mouth + Name: Strawberry In Mouth + Type: Armor + Buy: 20 + Weight: 50 + Defense: 2 + Locations: + Head_Low: true + EquipLevelMin: 10 + View: 861 + - Id: 18718 + AegisName: Rose_Hairband + Name: Rose Hairband + Type: Armor + Buy: 20 + Weight: 200 + Defense: 3 + Locations: + Head_Top: true + EquipLevelMin: 30 + View: 864 + Script: | + bonus bInt,1; bonus bVit,1; bonus bAspdRate,3; bonus bVariableCastrate,-3; + - Id: 18724 + AegisName: L_Magestic_Goat_ + Name: Gigantic Majestic Goat + Type: Armor + Buy: 20 + Weight: 800 + Defense: 5 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 380 + Script: | + bonus2 bAddRace,RC_DemiHuman,12; bonus2 bAddRace,RC_Player_Human,12; bonus bBaseAtk,(JobLevel*2)/7; + - Id: 18727 + AegisName: Sedora_Hat + Name: Sedora Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 13 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 869 + - Id: 18728 + AegisName: Egir_Helm + Name: Egir Helm + Type: Armor + Buy: 200000 + Weight: 800 + Defense: 10 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 110 + Refineable: true + View: 870 + Script: | + bonus bMdef,5; bonus bUnbreakableHelm; + - Id: 18729 + AegisName: MVP_Basketball + Name: MVP Basketball + Type: Armor + Buy: 20 + Weight: 150 + Defense: 6 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 871 + Script: | + bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bAddItemHealRate,522,30; .@r = getrefine(); bonus bVariableCastrate,(.@r>=12)?(-5):((.@r>=10)?(-4):(-3)); + - Id: 18730 + AegisName: Cryptura_Academy_Hat + Name: Cryptura Academy Hat + Type: Armor + Weight: 200 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 872 + Script: | + bonus bMaxHP,15; bonus bMaxSP,5; + - Id: 18732 + AegisName: TE_Woe_Cap + Name: TE Woe Cap + Type: Armor + Defense: 5 + Locations: + Head_Top: true + EquipLevelMin: 40 + Refineable: true + View: 14 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,5; bonus bBaseAtk,5; bonus bMatk,5; bonus2 bAddRace,RC_Player_Human,10; bonus2 bMagicAddRace,RC_Player_Human,10; bonus2 bResEff,Eff_Freeze,25; + - Id: 18733 + AegisName: TE_Woe_Bone_Helm + Name: TE Woe Bone Helm + Type: Armor + Defense: 10 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Head_Top: true + EquipLevelMin: 40 + Refineable: true + View: 103 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bBaseAtk,10; bonus2 bAddRace,RC_Player_Human,20; bonus2 bResEff,Eff_Freeze,25; + - Id: 18734 + AegisName: TE_Woe_Magic_Eyes + Name: TE Woe Magic Eyes + Type: Armor + Defense: 5 + Jobs: + Acolyte: true + Mage: true + Monk: true + Novice: true + Priest: true + Sage: true + SoulLinker: true + SuperNovice: true + Wizard: true + Locations: + Head_Top: true + EquipLevelMin: 40 + Refineable: true + View: 209 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,5; bonus bMatk,10; bonus2 bMagicAddRace,RC_Player_Human,20; bonus2 bResEff,Eff_Freeze,25; + - Id: 18736 + AegisName: Censor_Bar_ + Name: Censor Bar + Type: Armor + Weight: 100 + Locations: + Head_Mid: true + EquipLevelMin: 1 + View: 229 + - Id: 18737 + AegisName: Fortier_Mask + Name: Fortier Masque + Type: Armor + Buy: 20 + Weight: 200 + Locations: + Head_Mid: true + EquipLevelMin: 10 + View: 876 + Script: | + bonus bUnbreakableHelm; bonus2 bMagicAtkEle,Ele_Fire,4; + - Id: 18739 + AegisName: Carnation_Hairband + Name: Carnation Hairband + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Top: true + Refineable: true + View: 878 + Script: | + bonus bLuk,1; + - Id: 18740 + AegisName: C_Hair_Of_The_Strong + Name: RMSC2012 Special Costume + Type: Armor + Buy: 20 + Locations: + Costume_Head_Top: true + View: 879 + - Id: 18741 + AegisName: C_Will_O_Wisp + Name: Costume Will O Wisp + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 880 + EquipScript: | + sc_start SC_STRANGELIGHTS,INFINITE_TICK,0; + UnEquipScript: | + sc_end SC_STRANGELIGHTS; + - Id: 18742 + AegisName: C_MoonStar_Accessory + Name: Costume Moon and Stars + Type: Armor + Buy: 20 + Locations: + Costume_Head_Mid: true + View: 881 + Trade: + Override: 100 + NoDrop: true + EquipScript: | + sc_start SC_MOONSTAR,INFINITE_TICK,0; + UnEquipScript: | + sc_end SC_MOONSTAR; + - Id: 18743 + AegisName: C_Spirit_Of_Chung_E + Name: Costume Spirit Of Chung E + Type: Armor + Buy: 20 + Locations: + Costume_Head_Top: true + View: 882 + - Id: 18744 + AegisName: C_World_Star + Name: Costume Twilight + Type: Armor + Buy: 20 + Locations: + Costume_Head_Mid: true + View: 883 + EquipScript: | + sc_start SC_SUPER_STAR,INFINITE_TICK,0; + UnEquipScript: | + sc_end SC_SUPER_STAR; + - Id: 18745 + AegisName: Choco_Stick_In_Mouth + Name: Choco Stick In Mouth + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Low: true + EquipLevelMin: 10 + View: 884 + Script: | + bonus bMaxSP,50; + - Id: 18746 + AegisName: Chilly_Breath + Name: Chilly Breath + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Low: true + EquipLevelMin: 10 + View: 885 + Script: | + bonus bInt,1; + - Id: 18747 + AegisName: Eyes_Of_Ifrit + Name: Eyes Of Ifrit + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Slots: 1 + Locations: + Head_Mid: true + View: 886 + Script: | + bonus bDex,1; bonus2 bResEff,Eff_Curse,2500; + - Id: 18748 + AegisName: Gold_Ingot_Poring_Hat + Name: Gold Ingot Poring Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 887 + Script: | + bonus bDex,2; bonus bLuk,2; + - Id: 18749 + AegisName: Majoruros_Horn + Name: Majoruros Horn + Type: Armor + Buy: 20 + Weight: 500 + Defense: 8 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 888 + Script: | + bonus bStr,2; bonus bMaxHP,100; + - Id: 18750 + AegisName: Poker_Card_In_Mouth + Name: Poker Card In Mouth + Type: Armor + Buy: 20 + Weight: 50 + Locations: + Head_Low: true + EquipLevelMin: 10 + View: 889 + Script: | + bonus2 bAddRace,RC_DemiHuman,2; bonus2 bAddRace,RC_Player_Human,2; + - Id: 18752 + AegisName: Cursed_Book + Name: Cursed Book + Type: Armor + Buy: 20 + Weight: 300 + Defense: 3 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 99 + Refineable: true + View: 890 + Script: | + .@r = getrefine(); bonus2 bHPLossRate,.@r,5000; bonus2 bHPDrainRate,40,4+(.@r/2); bonus2 bSPDrainRate,10,1+(.@r/3); + - Id: 18753 + AegisName: Tw_Rice_Ball + Name: Tw Rice Ball + Type: Armor + Buy: 20 + Weight: 100 + Defense: 6 + Locations: + Head_Top: true + View: 892 + Script: | + bonus bLuk,1; bonus2 bAddMonsterDropItem,564,100; + - Id: 18754 + AegisName: Blood_Sucker + Name: Blood Sucker + Type: Armor + Buy: 20 + Weight: 300 + Locations: + Head_Low: true + EquipLevelMin: 40 + View: 893 + Script: | + bonus bUnbreakableHelm; bonus2 bHPDrainRate,30,5; bonus bHPrecovRate,-100; bonus bSPrecovRate,-100; + - Id: 18755 + AegisName: Feather_Beret_ + Name: Feather Beret + Type: Armor + Weight: 600 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 224 + Script: | + bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; + - Id: 18756 + AegisName: Black_Shiba_Inu_Hat + Name: Black Shiba Inu Hat + Type: Armor + Buy: 20 + Weight: 400 + Defense: 6 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 894 + Script: | + bonus bBaseAtk,30; bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Player_Doram,10; + - Id: 18758 + AegisName: Hat_Of_Scrat + Name: Hat Of Scrat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 896 + - Id: 18759 + AegisName: Stretched_Nose_M + Name: Wood Goblin's Nose + Type: Armor + Buy: 20 + Weight: 200 + Locations: + Head_Mid: true + EquipLevelMin: 50 + View: 737 + Script: | + bonus bUnbreakableHelm; bonus2 bAddMonsterDropItem,1032,400; bonus2 bAddMonsterDropItem,1033,100; bonus3 bAddMonsterDropItem,576,RC_Plant,40; + - Id: 18760 + AegisName: Remodel_Wizardry_Hat + Name: Improved Mage Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 2 + Slots: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Head_Top: true + Refineable: true + View: 112 + Script: | + bonus bInt,2; bonus bMaxSP,150; .@r = getrefine(); bonus bMatk,.@r; if(.@r>=7) bonus bInt,.@r-6; + - Id: 18761 + AegisName: Remodel_Magician_Hat + Name: Improved Magician Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 6 + Slots: 1 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 130 + Script: | + bonus bDex,1; bonus bAgi,1; bonus bMaxSP,50; .@r = getrefine(); bonus bMaxSP,.@r*5; if(.@r>=7) bonus bDex,.@r-6; + - Id: 18762 + AegisName: Remodel_Mask_Of_Fox + Name: Improved Kitsune Mask + Type: Armor + Buy: 20 + Weight: 300 + Defense: 2 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 153 + Script: | + bonus bAgi,2; bonus bLuk,2; if(getrefine()>=7) bonus bFlee2,4; + - Id: 18763 + AegisName: Remodel_Joker_Jester + Name: Improved Joker Jester + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 89 + Script: | + bonus bLuk,2; bonus bMdef,5; if(getrefine()>=7) bonus bCritAtkRate,5; + - Id: 18764 + AegisName: Remodel_Bunny_Band + Name: Improved Bunny Band + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 15 + Script: | + bonus bLuk,2; if(getrefine()>=7) bonus bCritical,5; + - Id: 18765 + AegisName: Enhanced_Corsair + Name: Enhanced Corsair + Type: Armor + Buy: 20 + Weight: 500 + Defense: 10 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 99 + Refineable: true + View: 105 + Script: | + bonus bVit,1; bonus bMaxHprate,5; .@r = getrefine(); if(.@r>=7) bonus2 bSubEle,Ele_Neutral,1; if(.@r>=9) bonus bMaxHPrate,3; + - Id: 18766 + AegisName: Enhanced_Helm_Of_Angel + Name: Enhanced Helm of Angel + Type: Armor + Buy: 20 + Weight: 1600 + Defense: 10 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Locations: + Head_Top: true + EquipLevelMin: 99 + Refineable: true + View: 110 + Script: | + 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; + - Id: 18767 + AegisName: Enhanced_Helm_Of_Sun + Name: Enhanced Hat of the Sun God + Type: Armor + Buy: 20 + Weight: 2400 + Defense: 4 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 99 + Refineable: true + View: 138 + Script: | + 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); + - Id: 18768 + AegisName: Enhanced_Bone_Helm + Name: Enhanced Bone Helm + Type: Armor + Buy: 20 + Weight: 800 + Defense: 15 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 103 + Script: | + bonus2 bSubEle,Ele_Dark,-15; .@j = getrefine(); if(.@j>=7) .@i = 1; if(.@j>=9) .@i = 2; bonus2 bSubEle,Ele_Neutral,2+(2*.@i); + - Id: 18769 + AegisName: Remodel_Munak_Turban + Name: Improved Munak Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 5 + Slots: 1 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Refineable: true + View: 51 + Script: | + bonus2 bSubRace,RC_Undead,10; if(getrefine()>=7) bonus2 bAddRace,RC_Undead,10; + - Id: 18770 + AegisName: Remodel_Bongun_Hat + Name: Improved Bongun Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 5 + Slots: 1 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Refineable: true + View: 139 + Script: | + bonus2 bSubRace,RC_Demon,10; if(getrefine()>=7) bonus2 bAddRace,RC_Demon,10; + - Id: 18771 + AegisName: Remodel_Opera_Mask + Name: Improved Opera Phantom Mask + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Locations: + Head_Mid: true + EquipLevelMin: 20 + View: 128 + Script: | + bonus bBaseAtk,5; bonus bMatk,5; + - Id: 18772 + AegisName: Improved_Binoculars + Name: Advanced Binoculars + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Locations: + Head_Mid: true + EquipLevelMin: 50 + View: 83 + Script: | + bonus bDex,1; bonus bLongAtkRate,1; + - Id: 18773 + AegisName: Improved_Fin_Helm + Name: Advanced Fin Helm + Type: Armor + Buy: 20 + Weight: 300 + Defense: 5 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Head_Mid: true + EquipLevelMin: 65 + View: 100 + Script: | + bonus bMaxHP,300+BaseLevel; /* unconfirmed */ + - Id: 18774 + AegisName: Improved_Assassin_Mask + Name: Advanced Assassin Mask + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Jobs: + Assassin: true + Priest: true + Locations: + Head_Low: true + EquipLevelMin: 70 + View: 180 + Script: | + bonus bCritical,1; bonus bCritAtkRate,1; + - Id: 18775 + AegisName: Improved_Welding_Mask + Name: Advanced Welding Mask + Type: Armor + Buy: 20 + Weight: 300 + Defense: 2 + Jobs: + Alchemist: true + Blacksmith: true + Merchant: true + Locations: + Head_Low: true + Head_Mid: true + EquipLevelMin: 50 + View: 79 + Script: | + bonus2 bSubEle,Ele_Fire,10; bonus bDex,5; bonus bLuk,5; + - Id: 18776 + AegisName: Improved_Kiss_Of_Angel + Name: Advanced Angel's Kiss + Type: Armor + Buy: 10000 + Weight: 300 + Defense: 6 + Slots: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Head_Top: true + EquipLevelMin: 99 + Refineable: true + View: 255 + Script: | + bonus bSPrecovRate,30; + - Id: 18779 + AegisName: RWC_Champ_Crown_Red + Name: RWC Champ Crown First Place + Type: Armor + Buy: 20 + Weight: 500 + Defense: 12 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + View: 902 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bResEff,Eff_Stun,10000; bonus2 bResEff,Eff_Curse,10000; bonus bUnbreakableHelm; bonus bAllStats,7; bonus bMdef,5; + - Id: 18780 + AegisName: RWC_Champ_Crown_Blue + Name: RWC Champ Crown Second Place + Type: Armor + Buy: 20 + Weight: 500 + Defense: 12 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + View: 903 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bResEff,Eff_Curse,10000; bonus bUnbreakableHelm; bonus bAllStats,7; bonus bMdef,5; + - Id: 18781 + AegisName: RWC_Champ_Crown_Black + Name: RWC Champ Crown Third Place + Type: Armor + Buy: 20 + Weight: 500 + Defense: 12 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + View: 904 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bResEff,Eff_Curse,10000; bonus bUnbreakableHelm; bonus bAllStats,3; bonus bMdef,1; + - Id: 18782 + AegisName: Butterfly_Wing_Ear_J + Name: Butterfly Wing Ear + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Mid: true + View: 695 + Script: | + bonus bDex,2; bonus bUnbreakableHelm; + - Id: 18785 + AegisName: King_Poring_Hat + Name: King Poring Hat + Type: Armor + Buy: 20 + Weight: 600 + Defense: 10 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 905 + Script: | + bonus bDex,1; bonus bLuk,1; .@r = getrefine(); if(.@r>=3){ bonus bDex,(.@r-4); bonus bLuk,(.@r-4); } + - Id: 18786 + AegisName: Anemos_Mask + Name: Anemos Mask + Type: Armor + Buy: 20 + Weight: 200 + Locations: + Head_Mid: true + EquipLevelMin: 10 + View: 906 + Script: | + bonus bUnbreakableHelm; bonus2 bMagicAtkEle,Ele_Wind,4; + - Id: 18787 + AegisName: Goal_Tender_Mask + Name: Goal Tender Mask + Type: Armor + Buy: 20 + Weight: 200 + Defense: 5 + Locations: + Head_Low: true + Head_Mid: true + EquipLevelMin: 50 + View: 336 + Script: | + bonus2 bAddRace,RC_DemiHuman,8; bonus2 bAddRace,RC_Player_Human,8; + - Id: 18790 + AegisName: Rainbow_Poring_Hat + Name: Rainbow Poring Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 900 + - Id: 18791 + AegisName: Shrine_Maiden_Hat + Name: Shrine Maiden Hat + Type: Armor + Buy: 20 + Weight: 200 + Defense: 30 + Slots: 1 + Locations: + Head_Top: true + View: 908 + - Id: 18792 + AegisName: Idn_Sakkat + Name: Indonesian Independence Sakkat + Type: Armor + Buy: 10 + Weight: 400 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 45 + Refineable: true + View: 901 + Script: | + bonus bVit,10; bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus2 bSubRace,RC_DemiHuman,10; + - Id: 18793 + AegisName: Sorc_Night_Cap + Name: Sorcerer's Night Cap + Type: Armor + Buy: 20 + Weight: 200 + Defense: 25 + Slots: 1 + Jobs: + Sage: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 911 + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",50; bonus2 bSkillAtk,"MG_FIREBOLT",50; bonus2 bSkillAtk,"MG_COLDBOLT",50; bonus bMdef,10; if(.@r>6) bonus2 bSkillAtk,"SC_SPELLFIST",25; if(.@r>8) bonus bAspd,5; + - Id: 18796 + AegisName: RWC_Champ_Crown_QF + Name: RWC Champ Crown Fourth Place + Type: Armor + Buy: 20 + Weight: 500 + Defense: 12 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + View: 914 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bResEff,Eff_Curse,10000; bonus bUnbreakableHelm; bonus bAllStats,2; + - Id: 18803 + AegisName: Rose_Cascade + Name: Rose Cascade + Type: Armor + Weight: 500 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 920 + Script: | + .@dex = readparam(bDex); bonus bUseSPrate,-5-((.@dex >= 120)?5:0)-((.@dex >= 100)?5:0); + - Id: 18805 + AegisName: Eclipse_Hat + Name: Eclipse Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 2 + Locations: + Head_Top: true + Refineable: true + View: 922 + Script: | + bonus bLuk,3; bonus bMdef,5; + - Id: 18806 + AegisName: Black_Rabbit_Hat + Name: Black Rabbit Hat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 923 + Script: | + bonus bDex,2; bonus bAgi,3; bonus3 bAutoSpellWhenHit,"AL_INCAGI",5,10; + - Id: 18807 + AegisName: Yellow_Yuzu_Hat + Name: Yellow Yuzu Hat + Type: Armor + Buy: 20 + Weight: 400 + Defense: 3 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 924 + Script: | + bonus bVit,2; bonus bLuk,3; bonus2 bSubRace,RC_Plant,10; + - Id: 18808 + AegisName: Wing_Form_Spectacle + Name: Wing Form Spectacle + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Mid: true + Refineable: true + View: 925 + Script: | + bonus bAgi,1; + - Id: 18810 + AegisName: Hell_Pumpkin_Hat + Name: Hell Pumpkin Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 12 + Locations: + Head_Top: true + Refineable: true + View: 717 + Script: | + bonus bMdef,12; bonus2 bSubRace,RC_Demon,5; bonus2 bSubRace,RC_Undead,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; + - Id: 18813 + AegisName: New_Wave_Sunglasses + Name: New Wave Sunglasses + Type: Armor + Buy: 10 + Weight: 100 + Locations: + Head_Mid: true + EquipLevelMin: 30 + View: 856 + Script: | + bonus bDelayrate,-10; + - Id: 18814 + AegisName: Angel_School_Cap + Name: Angel School Cap + Type: Armor + Buy: 20 + Weight: 100 + Defense: 4 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 927 + Script: | + bonus bInt,2; bonus bVit,1; + - Id: 18815 + AegisName: Devil_School_Cap + Name: Devil School Cap + Type: Armor + Buy: 20 + Weight: 100 + Defense: 4 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 928 + Script: | + bonus bStr,2; bonus bVit,1; + - Id: 18816 + AegisName: Adv_Angel_School_Cap + Name: Evoked Angel School Cap + Type: Armor + Buy: 20 + Weight: 100 + Defense: 4 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 929 + Script: | + bonus bInt,2; bonus bVit,2; bonus bLuk,1; + - Id: 18817 + AegisName: Adv_Devil_School_Cap + Name: Evoked Devil School Cap + Type: Armor + Buy: 20 + Weight: 100 + Defense: 4 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + Refineable: true + View: 930 + Script: | + bonus bStr,2; bonus bVit,2; bonus bLuk,1; + - Id: 18818 + AegisName: Red_Pencil_In_Mouth + Name: Red Pencil In Mouth + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Low: true + View: 931 + Script: | + bonus bUnbreakableHelm; bonus bHit,3; + - Id: 18819 + AegisName: Blue_Pencil_In_Mouth + Name: Blue Pencil In Mouth + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Low: true + View: 932 + Script: | + bonus bUnbreakableHelm; bonus bHit,3; + - Id: 18820 + AegisName: Gray_Helmet + Name: Gray Helmet + Type: Armor + Buy: 20 + Weight: 450 + Defense: 35 + Slots: 1 + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 120 + Refineable: true + View: 941 + Script: | + bonus2 bSubEle,Ele_Holy,3+getrefine()/2; + - Id: 18821 + AegisName: Rainbow_Feather_Deco + Name: Rainbow Feather Deco + Type: Armor + Buy: 20 + Weight: 300 + Defense: 5 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 934 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus2 bAddClass,Class_All,1; bonus bMatkRate,1; + - Id: 18823 + AegisName: Imperial_Feather + Name: Imperial Feather + Type: Armor + Buy: 10 + Weight: 500 + Locations: + Head_Mid: true + EquipLevelMin: 70 + Refineable: true + View: 935 + Script: | + bonus bAspdRate,1; bonus2 bSubEle,Ele_Wind,5; if(readparam(bAgi)>107){ bonus bAspd,1; bonus bAspdRate,1; } + - Id: 18827 + AegisName: Valkyrie_Circlet + Name: Valkyrie Circlet + Type: Armor + Weight: 300 + Defense: 10 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 940 + Script: | + bonus bStr,3; bonus2 bAddEle,Ele_Dark,10; bonus2 bAddRace,RC_Demon,10; + - Id: 18828 + AegisName: 2012RMSCNO1 + Name: 2012 RWC Winners Helmet + Type: Armor + Buy: 1000 + Weight: 1000 + Defense: 20 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 60 + Refineable: true + View: 942 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,5; bonus bMdef,5; bonus bSpeedAddRate,10; skill "AL_TELEPORT",1; bonus bUnbreakableHelm; + - Id: 18829 + AegisName: 2012RMSCNO2 + Name: 2012 RWC Runners-Up Helmet + Type: Armor + Buy: 1000 + Weight: 1000 + Defense: 20 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 60 + Refineable: true + View: 943 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,4; bonus bMdef,5; bonus bSpeedAddRate,10; skill "AL_TELEPORT",1; bonus bUnbreakableHelm; + - Id: 18830 + AegisName: 2012RMSCNO3 + Name: 2012 RWC 2nd Runner Helmet + Type: Armor + Buy: 1000 + Weight: 1000 + Defense: 20 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 60 + Refineable: true + View: 944 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,3; bonus bMdef,5; bonus bSpeedAddRate,10; skill "AL_TELEPORT",1; bonus bUnbreakableHelm; + - Id: 18831 + AegisName: 2012RMSCNO4 + Name: 2012 RWC Special Helmet + Type: Armor + Weight: 1000 + Defense: 20 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 95 + View: 945 + Script: | + bonus bAllStats,2; bonus bMdef,5; bonus bSpeedAddRate,10; + - Id: 18832 + AegisName: Rolf_Von_Gigue_666 + Name: Rolf Von Gigue 666 + Type: Armor + Buy: 20 + Weight: 300 + Locations: + Head_Top: true + Refineable: true + View: 946 + Script: | + bonus3 bAutoSpell,"BS_ADRENALINE",2,5; + - Id: 18839 + AegisName: Poring_Sunglasses + Name: Poring Sunglasses + Type: Armor + Weight: 100 + Defense: 10 + Slots: 1 + Locations: + Head_Mid: true + EquipLevelMin: 1 + View: 954 + Script: | + bonus bDex,1; + - Id: 18841 + AegisName: Small_Poring_Band + Name: Small Poring Band + Type: Armor + Buy: 20 + Weight: 350 + Defense: 8 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 955 + Script: | + .@r = getrefine(); bonus bAspdRate,2*(.@r/3); if(.@r>9) bonus bAspd,1; bonus2 bExpAddRace,RC_All,3; + - Id: 18842 + AegisName: Hat_Of_Girl + Name: Hat Of Girl + Type: Armor + Buy: 20 + Weight: 350 + Defense: 8 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 956 + Script: | + .@r = getrefine(); bonus bInt,2*(.@r/3); bonus2 bSubRace,RC_DemiHuman,7; bonus bMaxHPrate,-3; + - Id: 18843 + AegisName: Small_Deviling_Hat + Name: Small Deviling Hat + Type: Armor + Buy: 20 + Weight: 350 + Defense: 7 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 957 + Script: | + .@r = getrefine(); if(.@r>7) bonus bMaxHPrate,.@r-7; bonus2 bSubRace,RC_DemiHuman,5; + - Id: 18844 + AegisName: Blue_Poring_Bubble + Name: Blue Poring Bubble + Type: Armor + Buy: 20 + Weight: 50 + Defense: 5 + Locations: + Head_Low: true + View: 958 + Script: | + bonus bAllStats,2; bonus bUnbreakableHelm; bonus bFlee,20; + - Id: 18845 + AegisName: Banshee_Master_Kiss + Name: Banshee Master Kiss + Type: Armor + Buy: 20 + Weight: 200 + Defense: 5 + Locations: + Head_Low: true + View: 959 + Script: | + bonus bUnbreakableHelm; bonus bMaxSPrate,3; autobonus2 "{ bonus2 bSubRace,RC_DemiHuman,100; bonus2 bSubRace,RC_Player_Human,100; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; + - Id: 18846 + AegisName: Seagod_Protector + Name: Seagod Protector + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Mid: true + EquipLevelMin: 10 + View: 960 + Script: | + bonus2 bSubDefEle,Ele_Water,5; + - Id: 18847 + AegisName: Jolly_Roger + Name: Jolly Roger + Type: Armor + Buy: 20 + Weight: 500 + Defense: 10 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 962 + Script: | + bonus bVit,1; bonus2 bSubDefEle,Ele_Water,2; bonus2 bAddEle,Ele_Water,2; .@r = getrefine(); if(.@r>6) { bonus2 bAddEle,Ele_Water,3; } if(.@r>8) { bonus2 bSubDefEle,Ele_Water,3; } + - Id: 18848 + AegisName: Lush_Rose + Name: Lush Rose + Type: Armor + Buy: 10 + Weight: 200 + MagicAttack: 20 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 963 + Script: | + bonus bMagicHPGainValue,100; bonus bMagicSPGainValue,100; + - Id: 18849 + AegisName: Celines_Ribbon + Name: Celines Ribbon + Type: Armor + Buy: 10 + Weight: 200 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 967 + Script: | + bonus bDex,3; bonus bMatk,40+getrefine(); bonus bMagicHPGainValue,200; bonus2 bHPLossRate,50,5000; + - Id: 18850 + AegisName: Polar_Bear_Cap + Name: Polar Bear Cap + Type: Armor + Buy: 20 + Weight: 300 + Defense: 7 + Locations: + Head_Top: true + EquipLevelMin: 1 + View: 966 + Script: | + bonus bUnbreakableHelm; bonus bDex,1; bonus bAgi,1; bonus bMdef,3; bonus bHPrecovRate,5; bonus bSPrecovRate,3; bonus2 bAddMonsterDropItem,12354,100; + - Id: 18851 + AegisName: ValentineHeart + Name: Valentine Heart + Type: Armor + Buy: 20 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 397 + Script: | + bonus bMaxHPrate,5+(getrefine()/2); bonus bAllStats,7; + - Id: 18852 + AegisName: Berry_Hat_Decoration + Name: Tasty Strawberry Hat + Type: Armor + Buy: 20 + Weight: 150 + Defense: 4 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 968 + Script: | + bonus bAllStats,1; if(getrefine()>11) bonus bAspd,2; + - Id: 18853 + AegisName: Berry_Hat_Decoration_ + Name: Tasty Strawberry Hat + Type: Armor + Buy: 20 + Weight: 150 + Defense: 4 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 968 + Script: | + bonus bAllStats,1; if(getrefine()>11) bonus bAspd,2; + - Id: 18854 + AegisName: ValentineYellowHeart + Name: Yellow Valentine Heart + Type: Armor + Buy: 20 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 865 + Script: | + bonus bMaxSPrate,2+(getrefine()/2); bonus bAllStats,7; + - Id: 18855 + AegisName: Aviator_Hat + Name: Aviator Hat + Type: Armor + Buy: 10 + Weight: 100 + Defense: 10 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 972 + Script: | + bonus bAgi,3; bonus bInt,3; autobonus "{ bonus bAtkEle,Ele_Wind; }",500,180,BF_NORMAL; + - Id: 18856 + AegisName: W_King_Tiger_Doll_Hat + Name: W King Tiger Doll Hat + Type: Armor + Buy: 10 + Defense: 10 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 973 + Script: | + bonus bStr,2; bonus bDex,2; bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Player_Doram,10; .@r = getrefine(); autobonus "{ bonus2 bSPLossRate,5,1000; bonus bBaseAtk,25*getrefine(); }",3*.@r,3000,BF_NORMAL,"{ active_transform 1115,3000; specialeffect2 EF_POTION_BERSERK; showscript \"Traaaansformation-!! Eddga form!!\"; }"; autobonus2 "{ bonus2 bSPLossRate,5,1000; bonus bBaseAtk,25*getrefine(); }",.@r,3000,BF_NORMAL,"{ active_transform 1115,3000; specialeffect2 EF_POTION_BERSERK; showscript \"Traaaansformation-!! Eddga form!!\"; }"; + - Id: 18857 + AegisName: Curupira_Hat + Name: Curupira Hat + Type: Armor + Buy: 10 + Weight: 100 + Defense: 20 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 974 + Script: | + bonus bDex,3; bonus2 bAddEffWhenHit,Eff_Confusion,500; + - Id: 18858 + AegisName: Pink_Angeling_Bubble + Name: Pink Angeling Bubble + Type: Armor + Buy: 10 + Weight: 50 + Defense: 5 + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 975 + Script: | + bonus bMaxHP,200; bonus bAspdRate,1; + - Id: 18859 + AegisName: Angeling_Bubble + Name: Angeling Bubble + Type: Armor + Buy: 10 + Weight: 50 + Defense: 5 + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 976 + Script: | + bonus bDex,1; bonus bMatkRate,2; bonus bMaxHP,100; + - Id: 18860 + AegisName: Red_Flower_Hat + Name: Red Flower Hat + Type: Armor + Buy: 10 + Weight: 200 + Defense: 10 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 1033 + Script: | + bonus bDex,5; bonus2 bSubDefEle,Ele_Earth,3; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; if (getrefine() >= 12) { bonus bShortWeaponDamageReturn,5; } + - Id: 18861 + AegisName: Zaha_Doll_Hat_J + Name: Zaha Doll J Hat + Type: Armor + Buy: 10 + Weight: 100 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 461 + Script: | + bonus bHealPower,15; bonus bUseSPrate,15; + - Id: 18863 + AegisName: Exorcist_Robe + Name: Exorcist Robe + Type: Armor + Buy: 10 + Weight: 1700 + Defense: 57 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 60 + Refineable: true + Script: | + bonus bMdef,5; .@r = getrefine(); if (.@r >= 3) { bonus2 bAddRace,RC_Undead,.@r/3*5; } if (BaseClass==Job_Acolyte) bonus2 bAddRace,RC_Undead,10; + - Id: 18864 + AegisName: Earth_Goddess_Flower_J + Name: Earth Goddess Flower + Type: Armor + Buy: 10 + Weight: 250 + Defense: 6 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 864 + Script: | + bonus bVit,2; skill "WZ_EARTHSPIKE",5; bonus2 bSubEle,Ele_Earth,15; .@r = getrefine(); if(.@r>=8){ bonus2 bSubEle,Ele_Earth,5; } + - Id: 18865 + AegisName: Sword_Master_Crown + Name: Sword Master Crown + Type: Armor + Buy: 10 + Weight: 1000 + Defense: 30 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 981 + Script: | + .@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; + - Id: 18867 + AegisName: Vajra + Name: Vajra + Type: Armor + Weight: 300 + Locations: + Head_Low: true + EquipLevelMin: 48 + View: 983 + Script: | + bonus bDex,1; bonus bLongAtkRate,2; + - Id: 18868 + AegisName: Assassin_Skull_Mask + Name: Assassin Skull Mask + Type: Armor + Buy: 10 + Weight: 500 + Defense: 2 + Locations: + Head_Low: true + Head_Mid: true + EquipLevelMin: 70 + View: 984 + Script: | + bonus bCritical,5; + - Id: 18870 + AegisName: Very_Sweet_Candy_Bar + Name: Very Sweet Candy Bar + Type: Armor + Buy: 10 + Weight: 10 + Locations: + Head_Low: true + EquipLevelMin: 1 + Refineable: true + View: 446 + Script: | + bonus bAllStats,2; bonus bBaseAtk,10; bonus bMatk,10; bonus2 bExpAddClass,Class_All,2; + - Id: 18871 + AegisName: Very_Sweet_Candy + Name: Very Sweet Candy + Type: Armor + Buy: 10 + Weight: 10 + Locations: + Head_Low: true + EquipLevelMin: 1 + Refineable: true + View: 446 + Script: | + bonus bAllStats,1; bonus bBaseAtk,5; bonus bMatk,5; + - Id: 18872 + AegisName: Snake_Hat + Name: Snake Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 5 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 986 + Script: | + bonus bStr,3; bonus bInt,3; bonus bMdef,5; bonus bUnbreakableHelm; + - Id: 18873 + AegisName: Sweet_Valentine_Out + Name: Sweet Valentine Out + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 865 + Script: | + bonus bMaxHPrate,7; bonus bMaxSPrate,7; + - Id: 18874 + AegisName: One_Eyed_Glass_ + Name: Cyclops Glasses + Type: Armor + Buy: 10 + Weight: 100 + Slots: 1 + Locations: + Head_Mid: true + EquipLevelMin: 1 + View: 23 + - Id: 18877 + AegisName: Baron_Evil_Eye + Name: Baron's Evil Eye + Type: Armor + Buy: 10 + Weight: 300 + Locations: + Head_Mid: true + EquipLevelMin: 30 + View: 989 + Script: | + bonus bDelayrate,-5; bonus bUseSPrate,5; + - Id: 18878 + AegisName: Palace_Guard_Cap + Name: Palace Guard Cap + Type: Armor + Buy: 10 + Weight: 1000 + Defense: 15 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 991 + Script: | + .@r = max(5,getrefine()); bonus2 bSubEle,Ele_Neutral,.@r; bonus bLongAtkDef,.@r; bonus bUnbreakableHelm; + - Id: 18879 + AegisName: Angry_Scorpion_Hat + Name: Angry Scorpion Hat + Type: Armor + Buy: 10 + Weight: 100 + Defense: 5 + Locations: + Head_Top: true + Refineable: true + View: 995 + Script: | + bonus bMdef,5; + - Id: 18880 + AegisName: Advanced_Jao_King_Hat + Name: Advanced Jao King Hat + Type: Armor + Buy: 10 + Weight: 1500 + Defense: 4 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 175 + Refineable: true + View: 996 + Script: | + bonus bAllStats,3; bonus bMaxHPrate,5; bonus bMaxSPrate,5; + - Id: 18882 + AegisName: Kannam_On_Head + Name: Kannam On Head + Type: Armor + Buy: 10 + Weight: 200 + Defense: 5 + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 1003 + Script: | + bonus3 bAutoSpellWhenHit,"SA_DELUGE",1,50; .@r = getrefine(); if (.@r > 3) bonus3 bAutoSpellWhenHit,"WZ_WATERBALL",.@r/3,50; + - Id: 18885 + AegisName: Jejecap + Name: Jejecap + Type: Armor + Weight: 100 + Defense: 8 + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 1011 + Script: | + bonus bStr,2; bonus bInt,3; bonus2 bSubRace,RC_DemiHuman,11; bonus2 bSubRace,RC_Player_Human,11; bonus2 bAddItemHealRate,522,70; + - Id: 18887 + AegisName: Aqua_Bunny_Band + Name: Aqua Bunny Band + Type: Armor + Weight: 100 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 1012 + Script: | + bonus bVit,3; .@r = getrefine(); bonus bMdef,(.@r>8?10:5); bonus bMatkRate,(.@r>8?6:2); if(.@r>11) bonus bFixedCastrate,-10; + - Id: 18888 + AegisName: Maroon_Bunny_Band + Name: Maroon Bunny Band + Type: Armor + Weight: 100 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 1013 + Script: | + bonus bInt,5; bonus bLuk,5; .@r = getrefine(); bonus2 bAddClass,Class_All,(.@r>8?6:2); bonus bMatkRate,(.@r>8?9:5); if(.@r>11) bonus bFixedCastrate,-10; + - Id: 18889 + AegisName: Golden_Bunny_Band + Name: Golden Bunny Band + Type: Armor + Weight: 100 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 1014 + Script: | + bonus bAgi,5; bonus bLuk,5; .@r = getrefine(); bonus2 bAddClass,Class_All,(.@r>8?7:2); if(.@r>8) bonus bMatkRate,5; if(.@r>11) bonus bFixedCastrate,-10; + - Id: 18890 + AegisName: Gray_Bunny_Band + Name: Gray Bunny Band + Type: Armor + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 1015 + Script: | + bonus bInt,5; bonus bLuk,5; .@r = getrefine(); bonus2 bAddClass,Class_All,(.@r>8?6:2); bonus bMatkRate,(.@r>8?9:5); if(.@r>11) bonus bFixedCastrate,-10; + - Id: 18891 + AegisName: Husky_Hat + Name: Husky Hat + Type: Armor + Weight: 500 + Defense: 5 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 1016 + Script: | + bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus3 bAutoSpell,"SN_WINDWALK",5,10+(getrefine()*3); + - Id: 18892 + AegisName: Ufo_Poring_Hat + Name: Ufo Poring Hat + Type: Armor + Weight: 1000 + Defense: 5 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 1017 + Script: | + bonus bMdef,5; bonus bCritical,5; bonus bFlee,5; bonus bHit,5; bonus bFlee2,5; .@r = getrefine(); if(.@r>8){ bonus bDelayRate,-5; bonus bAspdRate,5; } else if(.@r>6) bonus bVariableCastrate,-5; + - Id: 18893 + AegisName: Dragon_Claw_Helm + Name: Dragon Claw Helm + Type: Armor + Weight: 1000 + Defense: 5 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 1018 + Script: | + bonus2 bSubRace,RC_DemiHuman,8; bonus2 bSubRace,RC_Player_Human,8; bonus2 bSubRace,RC_Dragon,8; bonus2 bAddItemGroupHealRate,IG_Meat,200; if(getrefine()>11){ bonus bMaxHPrate,7; bonus bMaxSPrate,3; } + - Id: 18894 + AegisName: Rainbow_Star + Name: Rainbow Star + Type: Armor + Weight: 500 + Defense: 5 + Locations: + Head_Mid: true + EquipLevelMin: 70 + View: 1019 + Script: | + bonus2 bSubRace,RC_Player_Human,5; + - Id: 18895 + AegisName: Celestial_Dark_Flame + Name: Celestial Dark Flame + Type: Armor + Weight: 200 + Defense: 5 + Locations: + Head_Mid: true + EquipLevelMin: 50 + View: 1008 + Script: | + bonus2 bSubEle,Ele_Fire,8; + - Id: 18896 + AegisName: Pterios_Fins + Name: Pterios Fins + Type: Armor + Weight: 200 + Defense: 5 + Locations: + Head_Mid: true + EquipLevelMin: 50 + View: 1009 + Script: | + bonus2 bSubEle,Ele_Fire,8; + - Id: 18897 + AegisName: Azure_Diadem + Name: Azure Diadem + Type: Armor + Weight: 200 + Defense: 5 + Locations: + Head_Mid: true + EquipLevelMin: 50 + View: 1010 + Script: | + bonus2 bSubEle,Ele_Water,8; + - Id: 18898 + AegisName: Yggdrasil_Herald_Crown + Name: Yggdrasil Herald Crown + Type: Armor + Weight: 200 + Defense: 6 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 60 + Refineable: true + View: 997 + Script: | + bonus bAllStats,5; bonus bMaxHP,100; bonus bMaxSP,50; .@r = getrefine(); .@rate = max(.@r,7)-7; if(.@rate){ bonus bMaxHPrate,.@rate; bonus bVariableCastrate,-.@rate; } + - Id: 18900 + AegisName: Weisswurst + Name: Weisswurst + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Locations: + Head_Low: true + EquipLevelMin: 60 + View: 1022 + Script: | + bonus bMaxHP,50; + - Id: 18901 + AegisName: Seppl_Hat + Name: Seppl Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 5 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 60 + View: 1023 + Script: | + bonus bVit,3; bonus bHPrecovRate,10; + - Id: 18902 + AegisName: Shovel_Hat + Name: Shovel Hat + Type: Armor + Weight: 500 + Locations: + Head_Top: true + EquipLevelMin: 50 + View: 1024 + Script: | + bonus bVit,3; bonus2 bAddMonsterDropItem,553,500; bonus2 bAddItemHealRate,553,700; + - Id: 18908 + AegisName: Isabella_Red_Ear + Name: Isabella Red Ear + Type: Armor + Buy: 10 + Weight: 300 + Defense: 8 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 1030 + Script: | + bonus bStr,5; bonus bMaxHPrate,5; bonus2 bSubDefEle,Ele_Fire,10; .@r = getrefine(); if(.@r>=9) bonus bAspd,1+(.@r-9)/2; + - Id: 18909 + AegisName: Isabella_Brown_Ear + Name: Isabella Brown Ear + Type: Armor + Buy: 10 + Weight: 300 + Defense: 8 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 1031 + Script: | + bonus bMaxHPrate,10; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bMatk,getrefine()*2; + - Id: 18910 + AegisName: Isabella_Blue_Ear + Name: Isabella Blue Ear + Type: Armor + Buy: 10 + Weight: 300 + Defense: 8 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 1032 + Script: | + bonus bMaxHPrate,10; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bAddSize,Size_Medium,10; if(getrefine()>=12){ bonus bShortWeaponDamageReturn,5; } + - Id: 18917 + AegisName: LoveLove_Balloon + Name: LoveLove Balloon + Type: Armor + Buy: 10 + Weight: 200 + Defense: 5 + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 1039 + Script: | + bonus bAllStats,1; bonus bUnbreakableHelm; + - Id: 18918 + AegisName: Long_Octopus_Balloon + Name: Long Octopus Balloon + Type: Armor + Buy: 10 + Weight: 200 + Defense: 5 + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 1040 + Script: | + bonus bVit,1; bonus bInt,1; bonus bMaxSP,30; bonus bUnbreakableHelm; + - Id: 18925 + AegisName: GodOfWinds_Fan + Name: GodOfWinds Fan + Type: Armor + Weight: 300 + Locations: + Head_Low: true + View: 1051 + Script: | + bonus2 bSkillAtk,"WZ_VERMILION",3; bonus2 bSkillAtk,"WL_CHAINLIGHTNING",3; bonus bUseSPrate,5; + - Id: 18929 + AegisName: Elephant_Model_Hat + Name: Elephant Model Hat + Type: Armor + Buy: 10 + Weight: 300 + Defense: 10 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 1065 + Script: | + .@r = getrefine(); bonus bDex,2+((.@r >= 2 && .@r <= 8) ? 1 : ((.@r > 8) ? (.@r/8): 0)); bonus3 bAutoSpellWhenHit,"WZ_STORMGUST",5,50; + - Id: 18930 + AegisName: Gorilla_Model_Hat + Name: Gorilla Model Hat + Type: Armor + Buy: 10 + Weight: 300 + Defense: 10 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 1066 + Script: | + bonus bStr,2+((getrefine()>=11) ? 3 : 0); bonus3 bAutoSpell,"KN_BOWLINGBASH",1,50; + - Id: 18931 + AegisName: Lion_Model_Hat + Name: Lion Model Hat + Type: Armor + Buy: 10 + Weight: 300 + Defense: 10 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 1067 + Script: | + .@r = getrefine(); bonus bInt,2+((.@r >= 2 && .@r <= 8) ? 1 : ((.@r > 8) ? (.@r/8): 0)); bonus3 bAutoSpellWhenHit,"WZ_METEOR",5,50; + - Id: 18932 + AegisName: Rhino_Model_Hat + Name: Rhino Model Hat + Type: Armor + Buy: 10 + Weight: 300 + Defense: 10 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 1068 + Script: | + .@r = getrefine(); bonus bVit,2+((.@r >= 11) ? (.@r/11) : 0); bonus3 bAutoSpellWhenHit,"WZ_VERMILION",1,50; + - Id: 18933 + AegisName: Mechanical_Plant_Hat + Name: Mechanical Plant Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 10 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 45 + Refineable: true + View: 1069 + Script: | + .@r = getrefine()/2; bonus bDex,2; bonus bMdef,7; bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",5+(5*.@r); + - Id: 18934 + AegisName: Fox_Ears_Bell_Ribbon + Name: Fox Ears Bell Ribbon + Type: Armor + Weight: 400 + Defense: 4 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 1070 + Script: | + bonus bAgi,2; bonus bAspdRate,10; .@r = getrefine(); autobonus "{ bonus bCritical,100; bonus bLongAtkRate,5+max(0,getrefine()-6); }",50+(.@r*2),5000,BF_NORMAL,"{ active_transform 1150,5000; }"; + - Id: 18936 + AegisName: Golden_Fish + Name: Golden Fish In Mouth + Type: Armor + Buy: 1 + Weight: 10 + Defense: 1 + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 1081 + Script: | + bonus bAllStats,2; bonus bBaseAtk,10; bonus bMatk,10; bonus2 bExpAddRace,RC_Fish,2; bonus2 bSubRace,RC_Fish,2; + - Id: 18937 + AegisName: Memories_Of_Lovers + Name: Memories Of Lovers + Type: Armor + Weight: 100 + Locations: + Head_Mid: true + Refineable: true + View: 1072 + Script: | + bonus bMdef,7; bonus bMaxHPrate,2; + - Id: 18938 + AegisName: Astro_Circle + Name: Astro Circle + Type: Armor + Weight: 300 + Defense: 1 + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 1073 + Script: | + bonus bInt,1; .@r = getrefine(); if(.@r>6){ .@t = ((.@r-6)*2); } bonus2 bSubSkill,"WZ_METEOR",20+.@t; bonus2 bSubSkill,"WL_CRIMSONROCK",20+.@t; bonus2 bSubSkill,"WL_COMET",5; bonus2 bSkillAtk,"WZ_METEOR",(.@r/3)*5; bonus2 bSkillAtk,"WL_CRIMSONROCK",(.@r/3)*5; + - Id: 18940 + AegisName: 10_Gallon_Hat_Of_Flame + Name: 10 Gallon Hat Of Flame + Type: Armor + Buy: 10 + Weight: 1000 + Locations: + Head_Top: true + EquipLevelMin: 90 + Refineable: true + View: 1075 + - Id: 18947 + AegisName: Pipe_Of_Jiraiya + Name: Jiraiya's Pipe + Type: Armor + Buy: 10 + Weight: 100 + Defense: 1 + Locations: + Head_Low: true + EquipLevelMin: 70 + View: 1088 + Script: | + bonus2 bSkillUseSP,"NJ_KOUENKA",-5; bonus2 bVariableCastrate,"NJ_KAENSIN",-10; bonus2 bSkillAtk,"NJ_BAKUENRYU",20; + - Id: 18948 + AegisName: Mask_Of_Orochimaru + Name: Orochimaru's Mask + Type: Armor + Buy: 10 + Weight: 100 + Defense: 1 + Locations: + Head_Low: true + EquipLevelMin: 70 + View: 1089 + Script: | + bonus2 bSkillUseSP,"NJ_HYOUSENSOU",-5; bonus2 bVariableCastrate,"NJ_SUITON",-10; bonus2 bSkillAtk,"NJ_HYOUSYOURAKU",20; + - Id: 18949 + AegisName: Scroll_Of_Tsunade + Name: Tsunade's Scroll + Type: Armor + Buy: 10 + Weight: 100 + Defense: 1 + Locations: + Head_Low: true + EquipLevelMin: 70 + View: 1090 + Script: | + bonus2 bSkillUseSP,"NJ_HUUJIN",-5; bonus2 bVariableCastrate,"NJ_RAIGEKISAI",-10; bonus2 bSkillAtk,"NJ_KAMAITACHI",20; + - Id: 18960 + AegisName: Love_Daddy_2013 + Name: Love Daddy 2013 + Type: Armor + Buy: 10 + Weight: 10 + Defense: 10 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 1104 + Script: | + .@r = getrefine(); bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; if(readparam(bStr) >= 90){ bonus bAtk,15; if(.@r >= 9) bonus bAtk,15; } if(readparam(bInt) >= 90){ bonus bMatk,15; if(.@r >= 9) bonus bMatk,15; } if(readparam(bVit) >= 90){ bonus bMaxHP,500; if(.@r >= 9) bonus bMaxHP,500; } if(readparam(bAgi) >= 90){ bonus bAspdRate,2; if(.@r >= 9) bonus bAspdRate,3; } if(readparam(bDex) >= 90){ bonus bLongAtkRate,3; if(.@r >= 9) bonus bLongAtkRate,3; } if(readparam(bLuk) >= 90){ bonus bCritical,5; if(.@r >= 9) bonus bCritical,5; } + - Id: 18970 + AegisName: Magical_Moon_Cat + Name: Magical Moon Cat + Type: Armor + Buy: 20 + Weight: 50 + Defense: 5 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 1308 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + skill "ALL_CATCRY",1; bonus bAllStats,3; bonus bDelayrate,-5-(getrefine()/2); bonus bVariableCastrate,-5-(getrefine()/2); + - Id: 18971 + AegisName: Old_Rune_Circlet + Name: Old Rune Circlet + Type: Armor + Buy: 10 + Weight: 100 + Defense: 10 + Slots: 1 + Jobs: + Knight: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 170 + Refineable: true + View: 623 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + 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; + - Id: 18972 + AegisName: Old_Mitra + Name: Old Mitra + Type: Armor + Buy: 10 + Weight: 100 + Defense: 10 + Slots: 1 + Jobs: + Priest: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 170 + Refineable: true + View: 624 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + 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; + - Id: 18973 + AegisName: Old_Driver_Band_R + Name: Old Driver Band + Type: Armor + Buy: 10 + Weight: 100 + Defense: 10 + Slots: 1 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 170 + Refineable: true + View: 626 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + 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; + - Id: 18974 + AegisName: Old_Driver_Band_Y + Name: Old Driver Band(Yellow) + Type: Armor + Buy: 10 + Weight: 100 + Defense: 10 + Slots: 1 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 170 + Refineable: true + View: 637 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,1; .@r = getrefine(); bonus bBaseAtk,4*.@r; bonus bAspd,.@r/5; bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus2 bSkillAtk,"NC_ARMSCANNON",5*(.@r/2); bonus2 bSkillCooldown,"NC_SELFDESTRUCTION",-10000*(.@r/4); + - Id: 18975 + AegisName: Old_Shadow_Handicraft + Name: Old Shadow Handicraft + Type: Armor + Buy: 10 + Weight: 100 + Defense: 10 + Slots: 1 + Jobs: + Rogue: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 170 + Refineable: true + View: 627 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,1; .@r = getrefine(); bonus bBaseAtk,4*.@r; bonus bMatk,4*.@r; bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus2 bSkillAtk,"SC_TRIANGLESHOT",25*.@r/2; if (.@r>=6) { bonus2 bSkillCooldown,"SC_ENERVATION",-1000; bonus2 bSkillCooldown,"SC_UNLUCKY",-1000; } if (.@r>=8) { bonus2 bSkillCooldown,"SC_LAZINESS",-1000; bonus2 bSkillCooldown,"SC_WEAKNESS",-1000; } if (.@r>=10) { bonus2 bSkillCooldown,"SC_IGNORANCE",-1000; bonus2 bSkillCooldown,"SC_GROOMY",-1000; } + - Id: 18976 + AegisName: Old_Minstrel_Song_Hat + Name: Old Minstrel Song's Hat + Type: Armor + Buy: 10 + Weight: 100 + Defense: 10 + Slots: 1 + Jobs: + BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Gender: Male + Locations: + Head_Top: true + EquipLevelMin: 170 + Refineable: true + View: 628 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,1; .@r = getrefine(); bonus bLongAtkRate,.@r; bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus2 bSkillAtk,"CG_ARROWVULCAN",20*.@r/2; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",5*.@r/2; + - Id: 18977 + AegisName: Old_Midas_Whisper + Name: Old Midas Whisper + Type: Armor + Buy: 10 + Weight: 100 + Defense: 10 + Slots: 1 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 170 + Refineable: true + View: 629 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,1; .@r = getrefine(); bonus bBaseAtk,4*.@r; bonus bLongAtkRate,.@r; bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus2 bSkillAtk,"GN_CARTCANNON",15*.@r/2; + - Id: 18978 + AegisName: Old_Magic_Stone_Hat + Name: Old Magic Stone Hat + Type: Armor + Buy: 10 + Weight: 100 + Defense: 10 + Slots: 1 + Jobs: + Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 170 + Refineable: true + View: 630 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,1; .@r = getrefine(); bonus bMdef,5; bonus bMatkRate,.@r; bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus2 bSkillAtk,"WL_SOULEXPANSION",5*.@r/2; bonus2 bSkillCooldown,"WL_CRIMSONROCK",-1000-(.@r*100); + - Id: 18979 + AegisName: Old_Blazing_Soul + Name: Old Blazing Soul + Type: Armor + Buy: 10 + Weight: 100 + Defense: 10 + Slots: 1 + Jobs: + Monk: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 170 + Refineable: true + View: 631 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,1; .@r = getrefine(); bonus bBaseAtk,4*.@r; bonus bCritical,2*.@r; bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",15*.@r/2; bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",20*.@r/2; + - Id: 18980 + AegisName: Old_Wind_Whisper + Name: Old Wind Whisper + Type: Armor + Buy: 10 + Weight: 100 + Defense: 10 + Slots: 1 + Jobs: + Sage: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 170 + Refineable: true + View: 633 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,1; .@r = getrefine(); bonus bAtk2,4*.@r; bonus bMatkRate,.@r; bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus bMdef,5; bonus2 bSkillAtk,"SO_POISON_BUSTER",15*(.@r/2); bonus2 bSkillAtk,"SO_VARETYR_SPEAR",20*(.@r/2); + - Id: 18981 + AegisName: Old_Dying_Swan + Name: Old Dying Swan + Type: Armor + Buy: 10 + Weight: 100 + Defense: 10 + Slots: 1 + Jobs: + BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Gender: Female + Locations: + Head_Top: true + EquipLevelMin: 170 + Refineable: true + View: 635 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,1; .@r = getrefine(); bonus bLongAtkRate,.@r; bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus2 bSkillAtk,"CG_ARROWVULCAN",20*.@r/2; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",5*.@r/2; + - Id: 18982 + AegisName: Old_Circlet_Of_Bone + Name: Old Circlet Of Bones + Type: Armor + Buy: 10 + Weight: 100 + Defense: 10 + Slots: 1 + Jobs: + Assassin: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 170 + Refineable: true + View: 1141 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,1; .@r = getrefine(); bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus bCriticalRate,.@r; bonus bAspdRate,1; bonus2 bSkillAtk,"GC_CROSSIMPACT",10*.@r/2; bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",20*.@r/2; + - Id: 18983 + AegisName: Old_Protect_Of_Crown + Name: Old Protect Of Crown + Type: Armor + Buy: 10 + Weight: 100 + Defense: 10 + Slots: 1 + Jobs: + Crusader: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 170 + Refineable: true + View: 1140 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,1; .@r = getrefine(); bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus bMdef,5; bonus bBaseAtk,4*.@r; bonus bAspd,.@r/5; bonus2 bSkillAtk,"LG_CANNONSPEAR",20*.@r/2; bonus2 bSkillAtk,"LG_OVERBRAND",5*.@r/2; + - Id: 18984 + AegisName: Old_Camo_RabbitHood + Name: Old Camouflage Rabbit Hood + Type: Armor + Buy: 10 + Weight: 100 + Defense: 10 + Slots: 1 + Jobs: + Hunter: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 170 + Refineable: true + View: 1142 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + 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; + - Id: 18985 + AegisName: Falconer_Flute + Name: Falconer Flute + Type: Armor + Weight: 100 + Jobs: + Hunter: true + Locations: + Head_Low: true + EquipLevelMin: 75 + View: 1143 + Script: | + set .@bblvl,max(getskilllv("HT_BLITZBEAT"),1); set .@luk,min(readparam(bLuk),120); bonus3 bAutoSpell,"HT_BLITZBEAT",.@i,((.@bblvl / 3) * 10) + (.@luk * 10) + (((.@bblvl / 5) * .@bblvl) * 2); + - Id: 18987 + AegisName: RWC13_Jormungandr_Hat + Name: RWC13 Jormungandr Hat + Type: Armor + Buy: 20 + Weight: 2500 + Defense: 7 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 1149 + Script: | + bonus bAllStats,2; bonus bVariableCastrate,-5; bonus bDelayrate,-5; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,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; + EquipScript: | + sc_end SC_SpeedUp0; + - Id: 18997 + AegisName: Riot_Chip + Name: Runaway Chip + Type: Armor + Buy: 10 + Weight: 300 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 1201 + Script: | + bonus bHit,50; bonus bFlee,50; bonus bMaxSPrate,-50; + - Id: 19019 + AegisName: Elemental_Crown + Name: Elemental Crown + Type: Armor + Weight: 500 + Defense: 10 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 1219 + Script: | + .@r = getrefine(); bonus bLongAtkRate,4; bonus bDex,(3+(BaseLevel>99?.@r:.@r/2)); + - Id: 19020 + AegisName: Survive_Circlet + Name: Survive Circlet + Type: Armor + Weight: 500 + Defense: 10 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 1220 + Script: | + .@r = getrefine(); bonus bInt,(3 + (BaseLevel > 99 ? .@r : .@r/2)); bonus bMatkRate,4; + - Id: 19021 + AegisName: Gigant_Helm + Name: Gigant Helm + Type: Armor + Weight: 500 + Defense: 10 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 1221 + Script: | + .@r = getrefine(); bonus bStr,(3 + (BaseLevel > 99 ? .@r : .@r/2)); bonus2 bAddClass,Class_All,4; + - Id: 19022 + AegisName: Floating_Stone_Of_Int + Name: Floating Stone Of Intelligence + Type: Armor + Locations: + Head_Top: true + View: 1230 + EquipScript: | + sc_start SC_FSTONE,INFINITE_TICK,0; + UnEquipScript: | + sc_end SC_FSTONE; + - Id: 19024 + AegisName: Protect_Feathers + Name: Protect Feathers + Type: Armor + Weight: 500 + Locations: + Head_Mid: true + EquipLevelMin: 70 + View: 1232 + Script: | + bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; bonus bAspdRate,-5; .@vit = readparam(bVit); if (.@vit >= 108) { bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3; bonus bAspdRate,-5; } if (.@vit >= 120) { bonus bMaxHPRate,3; bonus bMdef,3; } + - Id: 19026 + AegisName: Aegir_Helm + Name: Aegir Helm + Type: Armor + Buy: 10 + Weight: 800 + Defense: 10 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 40 + Refineable: true + View: 870 + Script: | + bonus bVit,3; + - Id: 19030 + AegisName: Pretty_Rabbit_Hood + Name: Pretty Rabbit Hood + Type: Armor + Buy: 10 + Weight: 100 + Defense: 20 + Slots: 1 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 1085 + Script: | + bonus bMaxHP,(15*BaseLevel); + - Id: 19031 + AegisName: Fallen_Angel_Blessing + Name: Fallen Angel Blessing + Type: Armor + Weight: 200 + Defense: 1 + Locations: + Head_Mid: true + EquipLevelMin: 10 + Refineable: true + View: 1250 + Script: | + bonus2 bAddRace,RC_Angel,5; bonus2 bSubRace,RC_Angel,5; + - Id: 19033 + AegisName: Rift_Ancient_Decoration + Name: Rift Ancient Decoration + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 376 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMaxHP,1000+(.@r >= 9 ? 1000 : .@r >=7 ? 400 : 0); + - Id: 19038 + AegisName: 12_Anniversary_Crown_Of_Saint + Name: 12 Anniversary Crown of Saint + Type: Armor + Buy: 10 + Weight: 120 + Defense: 12 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 1117 + Script: | + bonus bAllStats,2; bonus bMdef,12; + - Id: 19039 + AegisName: 12_Anniversary_Elf_Ears + Name: 12 Anniversary Elf Ears + Type: Armor + Buy: 10 + Weight: 120 + Locations: + Head_Mid: true + Refineable: true + View: 875 + Script: | + bonus2 bSubRace,RC_All,4; bonus2 bSubRace,RC_Player_Human,-4; + - Id: 19047 + AegisName: Angeling_KnitCap + Name: Angeling KnitCap + Type: Armor + Weight: 300 + Defense: 5 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 953 + Script: | + bonus2 bSPGainRace,RC_Angel,5; bonus bHPGainValue,100; .@r = getrefine(); if (.@r >= 5) { bonus2 bSubRace,RC_Angel,5+((.@r >= 7) ? 5 : 0); } + - Id: 19048 + AegisName: Elemental_Clothe + Name: Elemental Clothes + Type: Armor + Weight: 500 + Defense: 45 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 80 + Refineable: true + Script: | + .@r = getrefine(); bonus bLongAtkRate,2+((.@r >= 9) ? 3 : 0)+((.@r >= 8) ? 2 : 0); if (.@r >= 7) bonus bUnbreakableArmor; + - Id: 19050 + AegisName: Loki_Nidhogg_Hat + Name: Loki & Nidhoggur's Hat + Type: Armor + Weight: 100 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 1304 + - Id: 19051 + AegisName: Warrior_Moon_Cat + Name: Warrior Moon Cat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 5 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 1308 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*Enables use of Level 1 Monster's Cry*/ bonus bAllStats,3; bonus2 bHPDrainRate,40,5; bonus2 bSPDrainRate,10,2; + - Id: 19052 + AegisName: Sigruns_Wing + Name: Rental Sigrun's Wing + Type: Armor + Buy: 10 + Defense: 2 + Locations: + Head_Mid: true + EquipLevelMin: 1 + View: 568 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + 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; } + - Id: 19053 + AegisName: Fighter_Moon_Cat + Name: Fighter Moon Cat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 5 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 1308 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*Enables use of Level 1 Monster's Cry*/ .@r = getrefine(); bonus bAllStats,3; bonus2 bAddEff,Eff_Stun,500+(.@r*100); + - Id: 19079 + AegisName: Celestial_Woman's_Flower + Name: Celestial Woman's Flower + Type: Armor + Buy: 20 + Weight: 300 + Defense: 5 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 438 + Script: | + bonus bHPGainValue,100; bonus bMdef,5; bonus2 bSPGainRace,RC_Undead,5; if (getrefine()>=5) { bonus2 bSubRace,RC_Undead,5; } if (getrefine()>=7) { bonus2 bSubRace,RC_Undead,5; } + - Id: 19081 + AegisName: Faceworm_Egg_Shell + Name: Faceworm Egg Shell + Type: Armor + Buy: 20 + Weight: 500 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 1356 + Script: | + bonus bHit,20; bonus2 bAddRace2,RC2_FACEWORM,5; bonus2 bMagicAddRace2,RC2_FACEWORM,5; bonus2 bSubRace2,RC2_FACEWORM,5; .@r = getrefine(); if (.@r>=5) { bonus2 bAddRace2,RC2_FACEWORM,10; bonus2 bMagicAddRace2,RC2_FACEWORM,10; bonus2 bSubRace2,RC2_FACEWORM,10; } if (.@r>=7) { bonus2 bAddRace2,RC2_FACEWORM,15; bonus2 bMagicAddRace2,RC2_FACEWORM,15; bonus2 bSubRace2,RC2_FACEWORM,15; } if (.@r>=9) { bonus2 bAddRace2,RC2_FACEWORM,20; bonus2 bMagicAddRace2,RC2_FACEWORM,20; bonus2 bSubRace2,RC2_FACEWORM,20; } + - Id: 19082 + AegisName: Bio_Protector + Name: Bio Protector + Type: Armor + Weight: 500 + Defense: 3 + Locations: + Head_Mid: true + EquipLevelMin: 50 + Refineable: true + View: 1366 + Script: | + bonus bHit,10; bonus bVariableCastrate,-5; bonus bPerfectHitRate,5; + - Id: 19083 + AegisName: Mask_of_Hero + Name: Mask of Hero + Type: Armor + Buy: 20 + Weight: 200 + Locations: + Head_Mid: true + EquipLevelMin: 70 + View: 1367 + Script: | + bonus bVit,10; bonus bMdef,10; bonus bShortWeaponDamageReturn,1; + - Id: 19084 + AegisName: Parfaille_Vigilante_Hat + Name: Parfaille Vigilante Hat + Type: Armor + Weight: 100 + Defense: 2 + Jobs: + Summoner: true + Locations: + Head_Top: true + EquipLevelMin: 20 + Refineable: true + View: 1368 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bLuk,1; bonus3 bAutoSpell,"AL_BLESSING",3,100; + - Id: 19085 + AegisName: Sigrun's_Wings_ + Name: Sigrun's Wings + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Slots: 1 + Locations: + Head_Mid: true + EquipLevelMin: 1 + View: 568 + Script: | + if(BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Thief||(BaseJob==Job_Taekwon&&Class!=Job_Soul_Linker)) { bonus bAspd,1; bonus bAgi,-2; } else if(BaseClass==Job_Mage||BaseClass==Job_Acolyte||Class==Job_Ninja||Class==Job_Soul_Linker){ bonus bMatk,3; bonus bHealPower,2; } else if(BaseClass==Job_Archer||BaseClass==Job_Gunslinger) bonus bLongAtkRate,1; else if(BaseJob==Job_Novice||BaseJob==Job_SuperNovice) { bonus bMaxHP,60; bonus bMaxSP,30; } + - Id: 19086 + AegisName: Robo_Eye_ + Name: Robo Eye + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Slots: 1 + Locations: + Head_Mid: true + EquipLevelMin: 10 + View: 345 + Script: | + bonus2 bAddClass,Class_All,1; bonus bMatkRate,1; bonus bDex,1; + - Id: 19087 + AegisName: Angel_Spirit_ + Name: Angel Spirit + Type: Armor + Buy: 20 + Weight: 200 + Slots: 1 + Locations: + Head_Mid: true + View: 394 + Script: | + bonus bStr,1; bonus bHit,8; + - Id: 19088 + AegisName: Binoculars_ + Name: Binoculars + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Slots: 1 + Jobs: + Archer: true + BardDancer: true + Hunter: true + Locations: + Head_Mid: true + EquipLevelMin: 50 + View: 83 + Script: | + bonus bDex,1; + - Id: 19089 + AegisName: Blinker_ + Name: Blinker + Type: Armor + Buy: 1500 + Weight: 100 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + View: 82 + Script: | + bonus2 bResEff,Eff_Blind,5000; + - Id: 19090 + AegisName: Alarm_Mask_ + Name: Alarm Mask + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Low: true + Head_Mid: true + View: 170 + Script: | + bonus2 bResEff,Eff_Blind,2500; + - Id: 19091 + AegisName: Opera_Ghost_Mask_ + Name: Opera Phantom Mask + Type: Armor + Buy: 20 + Weight: 200 + Defense: 2 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + EquipLevelMin: 20 + View: 128 + - Id: 19092 + AegisName: Machoman_Glasses_ + Name: Machoman's Glasses + Type: Armor + Buy: 36000 + Weight: 100 + Defense: 1 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + View: 92 + - Id: 19093 + AegisName: Spinning_Eyes_ + Name: Geek Glasses + Type: Armor + Buy: 20000 + Weight: 100 + Defense: 1 + Slots: 1 + Locations: + Head_Mid: true + View: 27 + Script: | + bonus2 bResEff,Eff_Blind,800; + - Id: 19094 + AegisName: Mr_Smile_ + Name: Mr. Smile + Type: Armor + Buy: 60 + Weight: 100 + Defense: 1 + Slots: 1 + Locations: + Head_Low: true + Head_Mid: true + View: 65 + - Id: 19095 + AegisName: Happy_Balloon_K + Name: Happy Balloon + Type: Armor + Weight: 10 + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 1289 + Script: | + bonus2 bDropAddRace,RC_All,10; bonus2 bExpAddRace,RC_All,5; + - Id: 19101 + AegisName: Glastheim_Observer + Name: Glastheim Observer + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Low: true + EquipLevelMin: 80 + Refineable: true + View: 1041 + Script: | + bonus2 bAddClass,Class_All,2; bonus bDelayrate,-5; + - Id: 19102 + AegisName: Pale_Moon_Hat + Name: Pale Moon Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 913 + Script: | + bonus bFlee,20; bonus2 bAddRace2,RC2_THANATOS,5; bonus2 bSubRace2,RC2_THANATOS,5; bonus2 bMagicAddRace2,RC2_THANATOS,5; if(getrefine()>4) { bonus2 bAddRace2,RC2_THANATOS,10; bonus2 bSubRace2,RC2_THANATOS,10; bonus2 bMagicAddRace2,RC2_THANATOS,10; } if(getrefine()>6) { bonus2 bAddRace2,RC2_THANATOS,15; bonus2 bSubRace2,RC2_THANATOS,15; bonus2 bMagicAddRace2,RC2_THANATOS,15; } if(getrefine()>8) { bonus2 bAddRace2,RC2_THANATOS,20; bonus2 bSubRace2,RC2_THANATOS,20; bonus2 bMagicAddRace2,RC2_THANATOS,20; } /* skill 3044,1; */ + - Id: 19109 + AegisName: Valhalla_Idol + Name: Valhalla Idol + Type: Armor + Weight: 300 + Defense: 2 + Locations: + Head_Mid: true + EquipLevelMin: 70 + View: 1423 + Script: | + bonus bMaxSP,50; bonus4 bAutoSpellWhenHit,"MG_SAFETYWALL",10,50,0; hateffect(HAT_EF_VALHALLA_IDOL,true); + UnEquipScript: | + hateffect(HAT_EF_VALHALLA_IDOL,false); + - Id: 19111 + AegisName: Laser_Of_Eagle + Name: Laser of Eagle + Type: Armor + Weight: 400 + Defense: 5 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 1424 + Script: | + bonus bDex,2; bonus bLongAtkRate,10; bonus5 bAutoSpell,"PR_LEXAETERNA",1,50,BF_LONG,1; /*TODO: Chance to transform become Shechil while attacking.*/ + - Id: 19112 + AegisName: Tengu_Scroll + Name: Tengu Scroll + Type: Armor + Buy: 20 + Weight: 300 + Locations: + Head_Low: true + EquipLevelMin: 40 + View: 1445 + Script: | + bonus2 bHPDrainRate,30,5; + - Id: 19114 + AegisName: Sting_Silk_Ribbon + Name: Sting Silk Ribbon + Type: Armor + Buy: 20 + Weight: 300 + Defense: 15 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 70 + Refineable: true + View: 1457 + Script: | + bonus bUnbreakableHelm; bonus2 bSubEle,Ele_Earth,20; if(getrefine()>4) { bonus2 bSubSize,Size_All,2; } if(getrefine()>6) { bonus2 bSubSize,Size_All,3; } + - Id: 19115 + AegisName: Republic_Hat + Name: Republic Hat + Type: Armor + Weight: 400 + Defense: 3 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 1458 + Script: | + .@r = getrefine(); .@val = 6; if (.@r >= 7) { .@val += 2; } if (.@r >= 9) { .@val += 4; } bonus bLongAtkRate,.@val; + - Id: 19116 + AegisName: Red_Baby_Dragon + Name: Red Baby Dragon + Type: Armor + Weight: 700 + Range: 1 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 90 + Refineable: true + View: 1463 + Script: | + .@r=getrefine(); bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus2 bSkillAtk,"RK_DRAGONBREATH",(.@r>=8?45:(.@r>=6?30:15)); bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",(.@r>=8?45:(.@r>=6?30:15)); + - Id: 19117 + AegisName: Poring_Sunglasses_ + Name: Poring Sunglasses + Type: Armor + Weight: 10 + Locations: + Head_Mid: true + EquipLevelMin: 1 + View: 954 + Script: | + bonus2 bDropAddRace,RC_All,5; bonus2 bExpAddRace,RC_All,5; + - Id: 19118 + AegisName: Poring_Sunglasses__ + Name: Poring Sunglasses + Type: Armor + Weight: 10 + Slots: 1 + Locations: + Head_Mid: true + EquipLevelMin: 1 + View: 954 + Script: | + bonus2 bDropAddRace,RC_All,4; bonus2 bExpAddRace,RC_All,4; + - Id: 19125 + AegisName: Cylinder_Hairband + Name: Cylinder Hairband + Type: Armor + Buy: 20 + Weight: 300 + Defense: 12 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 90 + Refineable: true + View: 1477 + Script: | + bonus bStr,5; bonus bInt,5; bonus2 bVariableCastrate,"GN_CARTCANNON",-100; bonus2 bSkillUseSP,"GN_CARTCANNON",30; bonus2 bSkillUseSP,"GN_CART_TORNADO",5; bonus2 bSkillAtk,"GN_CARTCANNON",10; bonus2 bSkillAtk,"GN_CART_TORNADO",5; if (getrefine()>=5) { bonus2 bSkillAtk,"GN_CARTCANNON",20; bonus2 bSkillAtk,"GN_CART_TORNADO",10; } if (getrefine()>=8) { bonus2 bSkillAtk,"GN_CARTCANNON",30; bonus2 bSkillAtk,"GN_CART_TORNADO",20; } + - Id: 19126 + AegisName: Shadow_Booster_ + Name: Magical Booster + Type: Armor + Buy: 10 + Weight: 300 + Slots: 1 + Locations: + Head_Mid: true + EquipLevelMin: 1 + Refineable: true + View: 873 + Script: | + bonus bAspd,1; bonus bDelayrate,-1; + - Id: 19128 + AegisName: Ifrit's_Ear_ + Name: Ears Of Ifrit + Type: Armor + Buy: 20 + Weight: 300 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + EquipLevelMin: 50 + View: 422 + Script: | + bonus bStr,1; bonus bMdef,3; bonus bInt,1; bonus2 bSkillAtk,"MG_FIREBOLT",3; bonus2 bSkillAtk,"WZ_FIREPILLAR",3; bonus2 bSkillAtk,"WZ_METEOR",3; bonus2 bSkillAtk,"SM_BASH",4; bonus2 bSkillAtk,"SM_MAGNUM",4; bonus2 bSkillAtk,"KN_PIERCE",3; bonus2 bSubEle,Ele_Fire,3; bonus2 bSubEle,Ele_Water,-3; + - Id: 19129 + AegisName: Chick_Hat_ + Name: Chick Hat + Type: Armor + Buy: 20 + Weight: 100 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 10 + View: 311 + Script: | + bonus bLuk,2; bonus bMaxHP,50; bonus bMaxSP,50; skill "TF_DOUBLE",2; bonus bDoubleRate,10; bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3; + - Id: 19130 + AegisName: Magic_Eyes_ + Name: Magic Eyes + Type: Armor + Buy: 20 + Weight: 300 + Defense: 3 + Slots: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Head_Top: true + EquipLevelMin: 54 + Refineable: true + View: 209 + Script: | + bonus bMdef,5; bonus bVariableCastrate,-10; bonus bUseSPrate,20; + - Id: 19131 + AegisName: Radio_Antenna_ + Name: Radio Antenna + Type: Armor + Weight: 1500 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 347 + Script: | + bonus bMdef,5; bonus bCritical,5; bonus bFlee,5; skill "MG_LIGHTNINGBOLT",1; bonus4 bAutoSpellWhenHit,"MG_THUNDERSTORM",5,30,1; + - Id: 19132 + AegisName: Masquerade_ + Name: Masquerade + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Mid: true + View: 78 + Script: | + bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player_Human,3; + - Id: 19133 + AegisName: Odin_Mask_ + Name: Odin's Mask + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Slots: 1 + Locations: + Head_Low: true + Head_Mid: true + EquipLevelMin: 1 + View: 480 + Script: | + bonus2 bSubClass,Class_Boss,2; + - Id: 19134 + AegisName: Wickebines_Black_Cat_Ears + Name: Wickebine's Black Cat Ears + Type: Armor + Buy: 20 + Weight: 200 + Defense: 4 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 45 + Refineable: true + View: 368 + Script: | + bonus bFlee,10; bonus bCritAtkRate,10; autobonus "{ bonus2 bIgnoreMdefClassRate,Class_Normal,100; bonus2 bIgnoreMdefClassRate,Class_Boss,100; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_STEAL; }"; + - Id: 19137 + AegisName: Strawberry_Mouth_Guard + Name: Strawberry Mouth Guard + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Low: true + EquipLevelMin: 80 + View: 861 + Script: | + bonus bVit,2; bonus bLongAtkDef,5; bonus bShortWeaponDamageReturn,5; if (Baselevel>=100) { bonus bMaxHP,2000; } else { bonus bMaxHP,200; } + - Id: 19138 + AegisName: Seraphim_Coronet + Name: Seraphim Coronet + Type: Armor + Buy: 20 + Weight: 300 + Locations: + Head_Mid: true + EquipLevelMin: 70 + View: 1487 + Script: | + bonus bStr,2; .@int = readparam(bInt); bonus bBaseAtk,(.@int/8)*5; bonus bHealPower,.@int/8; bonus bVariableCastrate,.@int/8; if ((.@int>=108)) { bonus bBaseAtk,50; bonus bHealPower,5; bonus bVariableCastrate,4; } if ((.@int>=120)) { bonus bBaseAtk,125; bonus bHealPower,10; bonus bVariableCastrate,6; } + - Id: 19139 + AegisName: SurviveOrb + Name: Survive Orb + Type: Armor + Weight: 300 + Locations: + Head_Low: true + EquipLevelMin: 50 + View: 1488 + Script: | + skill "TF_HIDING",1; bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; bonus bVariableCastrate,-3; + - Id: 19140 + AegisName: Squirrel_Ear_Hat + Name: Squirrel Ear Hat + Type: Armor + Weight: 200 + Defense: 10 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 1486 + Script: | + .@r = getrefine(); bonus bAspd,1; bonus bCriticalLong,5; bonus bCritAtkRate,10; bonus2 bIgnoreDefRaceRate,RC_All,10; if (.@r > 4) { bonus bAspd,1; bonus bCriticalLong,10; bonus bCritAtkRate,2; bonus2 bIgnoreDefRaceRate,RC_All,20; } if (.@r > 6) { bonus bAspd,1; bonus bCriticalLong,15; bonus bCritAtkRate,6; bonus2 bIgnoreDefRaceRate,RC_All,30; } if (.@r > 8) { bonus bAspd,1; bonus bCriticalLong,20; bonus bCritAtkRate,12; bonus2 bIgnoreDefRaceRate,RC_All,40; autobonus "{ bonus bCritAtkRate,100; }",70,5000; } + - Id: 19141 + AegisName: Dolor_Thanatos_Mask + Name: Dolor Thanatos Mask + Type: Armor + Buy: 20 + Weight: 200 + Defense: 6 + Locations: + Head_Low: true + Head_Mid: true + EquipLevelMin: 100 + View: 666 + Script: | + bonus bMdef,8; bonus bAllStats,1; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,1; bonus2 bSubEle,Ele_Fire,5; bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Wind,5; bonus2 bSubEle,Ele_Earth,5; + - Id: 19142 + AegisName: Drooping_Rebellion + Name: Drooping Rebellion + Type: Armor + Buy: 20 + Weight: 500 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + View: 1444 + Script: | + bonus bLongAtkRate,10; + - Id: 19143 + AegisName: Poring_Balloon + Name: Poring Balloon + Type: Armor + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 1426 + Script: | + bonus2 bAddMonsterDropItem,909,2000; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; + - Id: 19144 + AegisName: Ferlock's_Hat + Name: Ferlock's Hat + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 50 + View: 1489 + - Id: 19145 + AegisName: Whistle + Name: Whistle + Type: Armor + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 1478 + Script: | + bonus bBaseAtk,10; bonus bMatk,10; bonus bHPGainValue,10; bonus bSPGainValue,3; + - Id: 19146 + AegisName: Marin_Balloon + Name: Marin Balloon + Type: Armor + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 1430 + Script: | + bonus4 bAutoSpellWhenHit,"WZ_QUAGMIRE",1,50,0; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; + - Id: 19147 + AegisName: Drops_Balloon + Name: Drops Balloon + Type: Armor + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 1427 + Script: | + bonus bLuk,2; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; + - Id: 19148 + AegisName: Santa_Poring_Balloon + Name: Santa Poring Balloon + Type: Armor + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 1428 + Script: | + bonus2 bAddItemGroupHealRate,IG_Candy,200; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; + - Id: 19149 + AegisName: Poporing_Balloon + Name: Poporing Balloon + Type: Armor + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 1429 + Script: | + bonus2 bAddEff,Eff_Poison,500; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; + - Id: 19150 + AegisName: Metalring_Balloon + Name: Metalring Balloon + Type: Armor + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 1431 + Script: | + bonus3 bAutoSpell,"RG_STRIPWEAPON",1,50; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; + - Id: 19151 + AegisName: Devilring_Balloon + Name: Devilring Balloon + Type: Armor + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 1434 + Script: | + bonus2 bAddEff,Eff_Curse,500; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; + - Id: 19152 + AegisName: Angelring_Balloon + Name: Angelring Balloon + Type: Armor + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 1435 + Script: | + bonus2 bAddItemHealRate,504,100; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; + - Id: 19153 + AegisName: Ghostring_Balloon + Name: Ghostring Balloon + Type: Armor + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 1436 + Script: | + bonus3 bAutoSpell,"MG_SOULSTRIKE",5,10; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; + - Id: 19154 + AegisName: Arch_Angelring_Balloon + Name: Arch Angelring Balloon + Type: Armor + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + EquipLevelMin: 1 + View: 1437 + Script: | + skill "ALL_RESURRECTION",1; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; + - Id: 19155 + AegisName: Demons_Eyes + Name: Demon's Eyes + Type: Armor + Buy: 20 + Weight: 10 + Locations: + Head_Mid: true + EquipLevelMin: 60 + View: 1490 + Script: | + bonus2 bSubRace,RC_Player_Human,3; bonus bFlee2,2; + - Id: 19156 + AegisName: Lunar_Rainbow + Name: Lunar Rainbow + Type: Armor + Buy: 20 + Weight: 200 + Defense: 10 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 80 + Refineable: true + View: 704 + Script: | + bonus bAgi,3; bonus bMdef,10; bonus bMatk,(10*getrefine()); + - Id: 19157 + AegisName: Drooping_Rebellion_ + Name: Drooping Rebellion + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 1444 + Script: | + bonus bAllStats,1; bonus bUseSPrate,-10; .@r = getrefine(); if (.@r >= 9) { bonus bAspd,1; } if (.@r >= 12) { bonus bSpeedRate,25; } bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; + - Id: 19158 + AegisName: C_Gemini_Eyes + Name: Costume GeminiS58 Eyes Blue + Type: Armor + Locations: + Costume_Head_Mid: true + View: 1456 + - Id: 19159 + AegisName: Barrel_Helm + Name: Barrel Helm + Type: Armor + Buy: 20 + Weight: 420 + Defense: 59 + Slots: 1 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + EquipLevelMin: 60 + Refineable: true + View: 1498 + Script: | + bonus bVit,5; bonus bHPrecovRate,-10; .@r = getrefine(); if (.@r >= 7) { bonus bDef,100; skill "CR_AUTOGUARD",1; } if (.@r >= 8) { bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; if(BaseJob==Job_SuperNovice) { skill "CR_AUTOGUARD",5; } } + - Id: 19162 + AegisName: Scuba_Mask_ + Name: Scuba Mask + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Locations: + Head_Mid: true + EquipLevelMin: 40 + Refineable: true + View: 400 + Script: | + bonus bBaseAtk,5; bonus bMatk,5; + - Id: 19164 + AegisName: Para_Team_Hat100 + Name: Awakened Eden Group Hat I + Type: Armor + Buy: 20 + Defense: 10 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 1529 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + autobonus "{ bonus bBaseAtk,15; }",70,5000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; autobonus "{ bonus bMatk,15; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_SPELLBREAKER; }"; .@r = getrefine(); if(.@r >= 7){ bonus bAtk,10; bonus bMatk,10; if(.@r >= 9){ bonus bAllStats,1; if(.@r >= 12){ bonus2 bRegenPercentSP,1,10000; } } } + - Id: 19165 + AegisName: Para_Team_Hat160 + Name: Awakened Eden Group Hat II + Type: Armor + Buy: 20 + Defense: 10 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 160 + Refineable: true + View: 1530 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + autobonus "{ bonus bBaseAtk,30; }",70,5000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; autobonus "{ bonus bMatk,30; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_SPELLBREAKER; }"; .@r = getrefine(); if(.@r >= 7){ bonus bAtk,15; bonus bMatk,15; if(.@r >= 9){ bonus bAllStats,2; if(.@r >= 12){ bonus2 bRegenPercentHP,2,10000; bonus2 bRegenPercentSP,1,10000; } } } + - Id: 19166 + AegisName: RO_Celebration_Hat + Name: RO Celebration Hat + Type: Armor + Buy: 20 + Weight: 140 + Defense: 14 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 14 + Refineable: true + View: 1541 + Script: | + bonus bMaxSP,140; bonus2 bSPRegenRate,6,4000; + - Id: 19168 + AegisName: Band_Of_Kafra_ + Name: Kafra Staff Headband + Type: Armor + Buy: 20 + Weight: 500 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 106 + Script: | + bonus2 bSubClass,Class_All,5; .@r = getrefine()*10; bonus2 bAddMonsterDropItem,23177,10+.@r; bonus2 bAddMonsterDropItem,7059,10+.@r; bonus2 bAddMonsterDropItem,7060,10+.@r; + - Id: 19171 + AegisName: Magician_Knit_Hat + Name: Magician Knit Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 10 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 10 + Refineable: true + View: 854 + Script: | + .@r = getrefine(); bonus bMdef,10; bonus2 bAddRace,RC_Undead,5; bonus2 bMagicAddRace,RC_Undead,5; bonus2 bSubRace,RC_Undead,2; bonus bSPGainValue,5; bonus bLongSPGainValue,5; bonus bMagicSPGainValue,5; if (.@r>=7) { bonus bMdef,5; bonus2 bAddRace,RC_Undead,10; bonus2 bMagicAddRace,RC_Undead,10; bonus2 bSubRace,RC_Undead,3; bonus bSPGainValue,10; bonus bLongSPGainValue,10; bonus bMagicSPGainValue,10; } if (.@r>=9) { bonus bMdef,5; bonus2 bAddRace,RC_Undead,10; bonus2 bMagicAddRace,RC_Undead,10; bonus2 bSubRace,RC_Undead,5; bonus bSPGainValue,10; bonus bLongSPGainValue,10; bonus bMagicSPGainValue,10; } + - Id: 19172 + AegisName: Sitting_Pope_Casual + Name: Sitting Pope Casual + Type: Armor + Buy: 1000 + Weight: 400 + Defense: 5 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 1553 + Script: | + bonus bInt,2; bonus bDelayrate,-10; .@r = getrefine(); if (.@r>=7) bonus bDelayrate,-10; if (.@r>=9) bonus bDelayrate,-10; + - Id: 19173 + AegisName: Floating_Ice + Name: Floating Ice + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Low: true + EquipLevelMin: 90 + View: 1562 + Script: | + bonus2 bAddItemHealRate,536,100; + - Id: 19176 + AegisName: Fallen_Angel_Blessing_ + Name: Fallen Angel Blessing + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Slots: 1 + Locations: + Head_Mid: true + EquipLevelMin: 10 + View: 1250 + Script: | + bonus2 bAddRace,RC_Angel,5; bonus2 bSubRace,RC_Angel,5; + - Id: 19177 + AegisName: Elemental_Crown_ + Name: Elemental Crown + Type: Armor + Weight: 500 + Defense: 10 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 1219 + Script: | + .@r = getrefine(); bonus bDex,3 + (.@r/2); bonus bLongAtkRate,4; + - Id: 19178 + AegisName: Elemental_Crown__ + Name: Elemental Crown + Type: Armor + Weight: 500 + Defense: 10 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 50 + Refineable: true + View: 1219 + Script: | + .@r = getrefine(); bonus bDex,3 + (.@r/2); bonus bLongAtkRate,4; + - Id: 19179 + AegisName: Rabbit_Magic_Hat_ + Name: Magic Rabit Hat + Type: Armor + Weight: 800 + Defense: 4 + Slots: 1 + Locations: + Head_Top: true + Refineable: true + View: 497 + Script: | + bonus bDex,1; bonus bAgi,1; bonus bMdef,1; bonus bAspdRate,5; bonus bDelayRate,-4; + - Id: 19180 + AegisName: Anubis_Helm_ + Name: Anubis Helm + Type: Armor + Buy: 20 + Defense: 8 + Slots: 1 + Locations: + Head_Mid: true + Head_Top: true + EquipLevelMin: 65 + View: 485 + Script: | + bonus bMdef,5; bonus2 bSubClass,Class_Boss,10; bonus bHealpower2,10; bonus bAddItemHealRate,10; + - Id: 19181 + AegisName: New_Wave_Sunglasses_ + Name: New Wave Sunglasses + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Slots: 1 + Locations: + Head_Mid: true + EquipLevelMin: 30 + View: 856 + Script: | + bonus bDelayRate,-5; + - Id: 19189 + AegisName: Racing_Cap_MC + Name: Racing Cap (Mechanic) + Type: Armor + Buy: 20 + Defense: 10 + Slots: 1 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 1134 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*((.@r/3)); if (.@r>=8) bonus bCritAtkRate,5*getskilllv("BS_OVERTHRUST"); if (.@r>=11) { skill "TF_DOUBLE",5; bonus bDoubleRate,25; } + - Id: 19190 + AegisName: Racing_Cap_GN + Name: Racing Cap (Geneticist) + Type: Armor + Buy: 20 + Defense: 10 + Slots: 1 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 1134 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus2 bSkillAtk,"GN_CART_TORNADO",5*getskilllv("AM_AXEMASTERY"); if (.@r>=11) bonus3 bAutoSpell,"GN_CART_TORNADO",max(2,getskilllv("GN_CART_TORNADO")),50; /* Unknow Rates */ + - Id: 19191 + AegisName: Racing_Cap_GC + Name: Racing Cap (Guillotine Cross) + Type: Armor + Buy: 20 + Defense: 10 + Slots: 1 + Jobs: + Assassin: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 1134 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus bCritAtkRate,5*getskilllv("AS_LEFT"); if (.@r>=11) autobonus "{ bonus bCritAtkRate,20; }",50,5000,BF_WEAPON; /* Unknow Rate and Effect */ + - Id: 19192 + AegisName: Racing_Cap_SC + Name: Racing Cap (Shadow Chaser) + Type: Armor + Buy: 20 + Defense: 10 + Slots: 1 + Jobs: + Rogue: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 1134 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus bMatk,5*getskilllv("RG_PLAGIARISM"); if (.@r>=11) bonus3 bAutoSpell,"HW_MAGICPOWER",5,30; /* Unknow Rates */ + - Id: 19193 + AegisName: Racing_Cap_WL + Name: Racing Cap (Warlock) + Type: Armor + Buy: 20 + Defense: 10 + Slots: 1 + Jobs: + Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 1134 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus2 bSkillCooldown,"WL_TETRAVORTEX",-500*(getskilllv("WZ_METEOR")+getskilllv("WZ_VERMILION")); if (.@r>=11) bonus2 bFixedCastrate,"HW_MAGICPOWER",-50; + - Id: 19194 + AegisName: Racing_Cap_SO + Name: Racing Cap (Sorcerer) + Type: Armor + Buy: 20 + Defense: 10 + Slots: 1 + Jobs: + Sage: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 1134 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) { bonus2 bSkillAtk,"MG_THUNDERSTORM",5*getskilllv("SA_AUTOSPELL"); bonus2 bSkillAtk,"MG_FIREBALL",5*getskilllv("SA_AUTOSPELL"); } if (.@r>=11) { bonus2 bSkillAtk,"MG_FIREBOLT",50; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",50; } + - Id: 19195 + AegisName: Racing_Cap_RK + Name: Racing Cap (Rune Knight) + Type: Armor + Buy: 20 + Defense: 10 + Slots: 1 + Jobs: + Knight: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 1134 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus bCritAtkRate,5*getskilllv("KN_TWOHANDQUICKEN"); if (.@r>=11) { bonus bUnbreakableWeapon; skill "TF_DOUBLE",5; bonus bDoubleRate,25; } + - Id: 19196 + AegisName: Racing_Cap_RG + Name: Racing Cap (Royal Guard) + Type: Armor + Buy: 20 + Defense: 10 + Slots: 1 + Jobs: + Crusader: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 1134 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus2 bSkillAtk,"LG_RAGEBURST",10*getskilllv("KN_SPEARMASTERY"); if (.@r>=11) bonus2 bSkillCooldown,"LG_EARTHDRIVE",-1000; + - Id: 19197 + AegisName: Racing_Cap_AB + Name: Racing Cap (Archbishop) + Type: Armor + Buy: 20 + Defense: 10 + Slots: 1 + Jobs: + Priest: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 1134 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus2 bSkillAtk,"AB_DUPLELIGHT",10*getskilllv("PR_MACEMASTERY"); /*if (.@r>=11) bonus3 bAutoSpell,"AB_ADORAMUS",max(5,getskilllv("AB_ADORAMUS")),50; Unknow Rate and Blue Gemstone consume mechanic */ + - Id: 19198 + AegisName: Racing_Cap_SR + Name: Racing Cap (Sura) + Type: Armor + Buy: 20 + Defense: 10 + Slots: 1 + Jobs: + Monk: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 1134 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus2 bSkillUseSP,"SR_KNUCKLEARROW",getskilllv("MO_COMBOFINISH"); if (.@r>=11) bonus2 bSkillAtk,"SR_KNUCKLEARROW",50; + - Id: 19199 + AegisName: Racing_Cap_RA + Name: Racing Cap (Ranger) + Type: Armor + Buy: 20 + Defense: 10 + Slots: 1 + Jobs: + Hunter: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 1134 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus2 bSkillAtk,"RA_AIMEDBOLT",3*getskilllv("HT_STEELCROW"); if (.@r>=11) bonus bDelayrate,-15; + - Id: 19200 + AegisName: Racing_Cap_MI + Name: Racing Cap (Minstrel) + Type: Armor + Buy: 20 + Defense: 10 + Slots: 1 + Jobs: + BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Gender: Male + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 1134 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus bBaseAtk,5*getskilllv("BA_MUSICALLESSON"); if (.@r>=11) bonus3 bAutoSpell,"WM_REVERBERATION",max(2,getskilllv("WM_REVERBERATION")),50; /* Unknow rates*/ + - Id: 19201 + AegisName: Racing_Cap_WA + Name: Racing Cap (Wanderer) + Type: Armor + Buy: 20 + Defense: 10 + Slots: 1 + Jobs: + BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Gender: Female + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 1134 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus bBaseAtk,5*getskilllv("DC_DANCINGLESSON"); if (.@r>=11) bonus3 bAutoSpell,"WM_REVERBERATION",max(2,getskilllv("WM_REVERBERATION")),50; /* Unknow rates*/ + - Id: 19202 + AegisName: Racing_Cap_GS + Name: Racing Cap (Gunslinger) + Type: Armor + Buy: 20 + Defense: 10 + Slots: 1 + Jobs: + Rebellion: true + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 1134 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) { bonus2 bSkillCooldown,"RL_HAMMER_OF_GOD",-2000*getskilllv("GS_PIERCINGSHOT"); bonus2 bSkillCooldown,"RL_D_TAIL",-200*getskilllv("GS_GROUNDDRIFT"); } if (.@r>=11) bonus2 bSkillCooldown,"RL_C_MARKER",-1000; + - Id: 19203 + AegisName: Racing_Cap_NJ + Name: Racing Cap (Ninja) + Type: Armor + Buy: 20 + Defense: 10 + Slots: 1 + Jobs: + KagerouOboro: true + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 1134 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus bLongAtkRate,getskilllv("NJ_HUUMA"); if (.@r>=11) bonus2 bSkillAtk,"KO_HUUMARANKA",30; + - Id: 19204 + AegisName: Racing_Cap_SN + Name: Racing Cap (Super Novice) + Type: Armor + Buy: 20 + Defense: 10 + Slots: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 1134 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus bCritAtkRate,10*getskilllv("TF_DOUBLE"); if (.@r>=11) { bonus bAspd,1; bonus bBaseAtk,20; } + - Id: 19205 + AegisName: Racing_Cap_SU + Name: Racing Cap (Summoner) + Type: Armor + Buy: 20 + Defense: 10 + Slots: 1 + Jobs: + Summoner: true + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 1134 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,5*(.@r/2); bonus bMatk,5*.@r/2; bonus bAspdRate,2*(.@r/3); if (.@r>=8) { bonus2 bSkillCooldown,"SU_SVG_SPIRIT",-4000*getskilllv("SU_LUNATICCARROTBEAT"); bonus2 bSkillCooldown,"SU_NYANGGRASS",-8000*getskilllv("SU_CN_METEOR"); bonus2 bSkillCooldown,"SU_BUNCHOFSHRIMP",-4000*getskilllv("SU_FRESHSHRIMP"); } if (.@r>=11) bonus bDelayrate,-15; + - Id: 19209 + AegisName: Illusion_Nurse_Cap + Name: Illusion Nurse Cap + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Slots: 1 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Head_Top: true + EquipLevelMin: 99 + Refineable: true + View: 64 + Script: | + .@r = getrefine(); bonus bInt,(1+(.@r/2)); bonus bHealPower,(3*(.@r/2)); + - Id: 19210 + AegisName: Illusion_Apple_of_Archer + Name: Illusion Apple of Archer + Type: Armor + Buy: 20 + Weight: 200 + Defense: 1 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 99 + Refineable: true + View: 72 + Script: | + bonus bDex,(3+(getrefine()/2)); + - Id: 19223 + AegisName: Illusion_Cap + Name: Illusion Cap + Type: Armor + Weight: 400 + Defense: 15 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Novice: true + Rogue: true + SuperNovice: true + Swordman: true + Thief: true + Locations: + Head_Top: true + EquipLevelMin: 120 + Refineable: true + View: 14 + Script: | + bonus2 bAddClass,Class_All,1; bonus bBaseAtk,(2*getrefine()); + - Id: 19247 + AegisName: Illusion_Fancy_Flower + Name: Illusion Fancy Flower + Type: Armor + Weight: 100 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 120 + View: 4 + Script: | + bonus bMatkRate,1; bonus bMatk,(2*getrefine()); + - Id: 19246 + AegisName: Royal_Guard_Necklace + Name: Royal Guard Necklace + Type: Armor + Buy: 20 + Weight: 300 + Locations: + Head_Low: true + EquipLevelMin: 80 + View: 1629 + Script: | + bonus bAspd,1; + - Id: 19266 + AegisName: Survive_Circlet_ + Name: Survivor's Circlet + Type: Armor + Weight: 500 + Defense: 10 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 1 + Refineable: true + View: 1220 + Script: | + .@r = getrefine(); bonus bInt,3; bonus bMatk,10*(.@r/2)+(BaseLevel > 129 ? 50 : 0); if (.@r >= 10) {bonus bMatkRate,5;} + - Id: 19269 + AegisName: Happy_Flapping_Wings + Name: Happy Flapping Angel Wings + Type: Armor + Buy: 20 + Weight: 500 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 30 + Refineable: true + View: 1251 + Script: | + .@r = getrefine(); .@a = 15; if (.@r >= 7) .@a += 15; if (.@r>=8) bonus2 bResEff,Eff_Stone,10000; if (.@r>=9) .@a += 20; bonus2 bAddRace2,RC2_CLOCKTOWER,.@a; bonus2 bMagicAddRace2,RC2_CLOCKTOWER,.@a; bonus2 bSubRace2,RC2_CLOCKTOWER,.@a; bonus2 bAddMonsterDropItem,1061,500; /* Unofficial rates, info get from bRO itemdescription */ + - Id: 19272 + AegisName: Garden_of_Eden + Name: Garden of Eden + Type: Armor + Buy: 20 + Weight: 400 + Defense: 5 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 1653 + Script: | + .@r = getrefine(); bonus bInt,5; bonus bDex,5; bonus2 bIgnoreMdefRaceRate,RC_All,20; bonus2 bMagicAtkEle,Ele_All,10; if (.@r>=7) { bonus2 bIgnoreMdefRaceRate,RC_All,30; bonus2 bMagicAtkEle,Ele_All,15; } if (.@r>=9) { bonus2 bIgnoreMdefRaceRate,RC_All,50; bonus bVariableCastrate,-15; } + UnEquipScript: | + sc_end SC_TELEKINESIS_INTENSE; + - Id: 19273 + AegisName: Gemini_Red_Eyes + Name: Gemini Red Eyes + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Mid: true + EquipLevelMin: 100 + View: 1654 + Script: | + .@val = 100*(readparam(bVit)>89?50:10); bonus2 bResEff,Eff_Sleep,.@val; bonus2 bResEff,Eff_Stone,.@val; + - Id: 19274 + AegisName: Open_Air_Headset + Name: Open Air Headset + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Low: true + EquipLevelMin: 90 + View: 1655 + Script: | + bonus bDelayrate,-5; bonus bUseSPrate,-5; bonus bSPGainValue,5; bonus bMagicSPGainValue,5; bonus bLongSPGainValue,5; + - Id: 19285 + AegisName: Siegfried's_Helmet + Name: Siegfried's Helmet + Type: Armor + Buy: 20 + Weight: 500 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 1055 + Script: | + .@r = getrefine(); bonus2 bSubClass,Class_Boss,5; bonus bUnbreakableHelm; if (.@r>=6) { bonus bFlee2,5; bonus2 bSubClass,Class_Boss,5; } if (.@r>=8) { bonus bFlee2,5; bonus2 bSubClass,Class_Boss,10; bonus bNoKnockback; } + - Id: 19289 + AegisName: C_Moon_Eyepatch + Name: Costume Moon Eyepatch + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1370 + - Id: 19291 + AegisName: C_Shiba_Inu + Name: Costume Shiba Inu + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1669 + - Id: 19294 + AegisName: C_CatEars_Cyber_HeadP_R + Name: Costume Cyber Cat Ear Headphones (Red) + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1668 + - Id: 19299 + AegisName: Tree_Sprout + Name: Tree Sprout + Type: Armor + Buy: 20 + Weight: 300 + Locations: + Head_Low: true + EquipLevelMin: 80 + View: 848 + Script: | + bonus bVariableCastrate,-5; + - Id: 19306 + AegisName: Gambler_Card + Name: Heart Card in Mouth + Type: Armor + Buy: 20 + Weight: 300 + Locations: + Head_Low: true + EquipLevelMin: 80 + View: 1679 + Script: | + bonus bCritAtkRate,5; + - Id: 19310 + AegisName: Beginner's_Cap + Name: Beginner's Cap + Type: Armor + Buy: 20 + Defense: 10 + Locations: + Head_Top: true + EquipLevelMin: 100 + View: 102 + Script: | + bonus bAllStats,1; bonus MaxHp,200; + - Id: 19326 + AegisName: Book_of_Soyga + Name: Book of Soyga + Type: Armor + Buy: 20 + Weight: 1000 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 90 + Refineable: true + View: 423 + - Id: 19327 + AegisName: Seraphim_Feather + Name: Seraphim Feather + Type: Armor + Buy: 20 + Weight: 300 + Locations: + Head_Low: true + EquipLevelMin: 80 + View: 1704 + Script: | + bonus bHealPower,5; + - Id: 19329 + AegisName: Devil's_Hand + Name: Devil's Hand + Type: Armor + Buy: 10 + Weight: 1000 + Defense: 18 + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 1018 + Script: | + .@r = getrefine(); .@a = getskilllv("SR_RIDEINLIGHTNING"); .@b = getskilllv("SR_EARTHSHAKER"); .@c = getskilllv("SR_RAMPAGEBLASTER"); bonus bNoCastCancel; bonus bAspdRate,10; bonus2 bFixedCastrate,"SR_HOWLINGOFLION",-100; bonus2 bSkillAtk,"SR_HOWLINGOFLION",20; if (.@r>=7) { bonus2 bSkillAtk,"SR_HOWLINGOFLION",30; bonus bAspdRate,5; } if (.@r>=9) { bonus2 bSkillAtk,"SR_HOWLINGOFLION",50; bonus bAspdRate,5; } if (.@r>=10) bonus bIgnoreDefClass,Class_All; if (.@r>=10 && .@a==5) { bonus2 bVariableCastrate,"SR_HOWLINGOFLION",-50; bonus2 bVariableCastrate,"MO_STEELBODY",-50; bonus2 bVariableCastrate,"MO_CALLSPIRITS",-50; } if (.@r>=10 && .@b==5) bonus2 bSkillCooldown,"SR_HOWLINGOFLION",-9500; if (.@r>=10 && .@c==5) bonus2 bAddClass,Class_Boss,50; + - Id: 19337 + AegisName: Safety_Glasses + Name: Safety Glasses + Type: Armor + Buy: 20 + Weight: 500 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 40 + Refineable: true + View: 1721 + Script: | + .@r = getrefine(); bonus2 bSubEle,Ele_Poison,10; if (.@r<7) .@a = 15; else if (.@r<9) .@a = 30; else if (.@r>=9) .@a = 50; if (.@r>=8) bonus2 bSubEle,Ele_Poison,15; /* bonus2 bAddRace2,RC2_HEARTHUNTER,.@a; bonus2 bMagicAddRace2,RC2_HEARTHUNTER,.@a; bonus2 bSubRace2,RC2_HEARTHUNTER,.@a; Hearthunter Warbase is not implemented yet */ + - Id: 19342 + AegisName: Bull_Hat + Name: Bull Hat + Type: Armor + Buy: 20 + Weight: 500 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 130 + Refineable: true + View: 819 + Script: | + .@r = getrefine(); bonus2 bSubEle,Ele_Wind,10; if (.@r<7) .@a = 15; if (.@r>=7 && .@r<9) .@a = 30; if (.@r>=8) bonus2 bSubEle,Ele_Wind,15; if (.@r>=9) .@a = 50; bonus2 bAddRace2,RC2_ROCKRIDGE,.@a; bonus2 bMagicAddRace2,RC2_ROCKRIDGE,.@a; bonus2 bSubRace2,RC2_ROCKRIDGE,.@a; + - Id: 19343 + AegisName: Circlet_Of_Phoenix + Name: Circlet Of Phoenix + Type: Armor + Weight: 1000 + Defense: 18 + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 1056 + Script: | + .@r = getrefine(); .@mdef = 15; .@hp = 10; .@dmg = 10; .@cast = -10; bonus2 bFixedCastrate,"LG_OVERBRAND",-100; if (.@r>=7) { .@cast -= 5; .@dmg += 15; if (.@r>=9) { .@cast -= 5; .@dmg += 25; if (.@r>=10) { bonus2 bIgnoreDefClassRate,Class_All,100; } } } if (getskilllv("LG_KINGS_GRACE")>=5) { bonus2 bSkillCooldown,"LG_INSPIRATION",-10000; bonus2 bSkillVariableCast,"LG_INSPIRATION",-2000; } if (getskilllv("LG_MOONSLASHER")>=5) { bonus2 bSkillVariableCast,"LG_OVERBRAND",-1000; } if (getskilllv("LG_FORCEOFVANGUARD")>=5) { .@hp += 10; .@mdef += 15; bonus bMaxSPrate,10; bonus bDef,150; } bonus bMdef,.@mdef; bonus bMaxHPrate,.@hp; bonus2 bSkillAtk,"LG_OVERBRAND",.@dmg; bonus bVariableCastrate,.@cast; + - Id: 19344 + AegisName: Illusion_Hot_blooded_Headband + Name: Illusion Hot-blooded Headband + Type: Armor + Weight: 100 + Defense: 3 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 120 + Refineable: true + View: 154 + Script: | + .@r = getrefine(); bonus bStr,2; bonus bBaseAtk,(10*(.@r/2)); if (.@r >= 7) { bonus2 bAddEle,Ele_Water,10; bonus2 bAddEle,Ele_Wind,10; bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Neutral,10; if (.@r >= 9) { bonus2 bAddSize,Size_Small,15; bonus2 bAddSize,Size_Large,15; } } + - Id: 19366 + AegisName: Illusion_Goibne_Helm + Name: Illusion Goibne Helm + Type: Armor + Weight: 1000 + Defense: 25 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Head_Top: true + EquipLevelMin: 130 + Refineable: true + View: 258 + Script: | + .@r = getrefine(); .@vit = 3; if (.@r >= 7) { .@vit += 5; if (.@r >= 9) { bonus bDelayrate,-12; } } bonus bVit,.@vit; bonus bMdef,3; + - Id: 19379 + AegisName: Striking_Hat + Name: Striking Hat + Type: Armor + Buy: 20 + Weight: 400 + Defense: 5 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 1759 + Script: | + .@r = getrefine(); bonus bDex,5; bonus bAgi,5; bonus bLongAtkRate,5; bonus bAspdRate,10; bonus bPerfectHitAddRate,10; bonus bHit,2*.@r; bonus bDelayrate,-2*.@r; if (.@r>=7) { bonus bPerfectHitAddRate,20; bonus bLongAtkRate,10; } if (.@r>=9) { bonus bPerfectHitAddRate,20; bonus bLongAtkRate,10; } + - Id: 19380 + AegisName: Floating_Ball + Name: Floating Ball + Type: Armor + Buy: 10 + Weight: 200 + Locations: + Head_Mid: true + EquipLevelMin: 100 + View: 1760 + Script: | + bonus bMatk,35; bonus2 bMagicAddClass,Class_Boss,2; if (readparam(bDex)>=90) { bonus bMatk,70; bonus2 bMagicAddClass,Class_Boss,3; } if (readparam(bDex)>=125) { bonus bMatk,140; bonus2 bMagicAddClass,Class_Boss,5; } + - Id: 19381 + AegisName: Protect_Cloth + Name: Protect Cloth + Type: Armor + Buy: 20 + Weight: 300 + Locations: + Head_Low: true + EquipLevelMin: 90 + View: 1761 + Script: | + bonus bMdef,5; bonus bMaxHPrate,5; + - Id: 19387 + AegisName: Experimental_Goat_Cap + Name: Experimental Goat Cap + Type: Armor + Buy: 20 + Weight: 500 + Defense: 2 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 40 + Refineable: true + View: 1768 + Script: | + .@r = getrefine(); .@sub = 10; .@dmg = 15; if (.@r >= 7) { .@dmg += 15; if (.@r >= 8) { .@sub += 15; if (.@r >= 9) { .@dmg += 20; } } } bonus2 bSubEle,Ele_Earth,.@sub; /*bonus2 bAddRace2,RC2_WERNER_LAB,.@dmg; bonus2 bMagicAddRace2,RC2_WERNER_LAB,.@dmg; bonus2 bSubRace2,RC2_WERNER_LAB,.@dmg; Werner's Central lab is not implemented yet */ + - Id: 19391 + AegisName: Eyes_Of_Illusion + Name: Eyes Of Illusion + Type: Armor + Buy: 20 + Weight: 500 + Defense: 2 + Locations: + Head_Mid: true + EquipLevelMin: 100 + View: 1779 + Script: | + bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bSubRace,RC_Player_Human,5; bonus2 bResEff,Eff_Blind,10000; if (getskilllv("GN_ILLUSIONDOPING")==5) skill "SA_DISPELL",5; if (getskilllv("GN_MANDRAGORA")==5) bonus2 bFixedCastrate,"GN_MANDRAGORA",-70; + - Id: 19396 + AegisName: Racing_Cap_SG + Name: Racing Cap (Star Gladiator) + Type: Armor + Buy: 20 + Defense: 10 + Slots: 1 + Jobs: + StarGladiator: true + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 1134 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus bBaseatk,5*getskilllv("TK_HPTIME"); if (.@r>=11) autobonus3 "{ bonus2 bSkillAtk,\"SJ_SOLARBURST\",30; }",1000,10000,"SJ_PROMINENCEKICK"; + - Id: 19397 + AegisName: Racing_Cap_SL + Name: Racing Cap (Soul Linker) + Type: Armor + Buy: 20 + Defense: 10 + Slots: 1 + Jobs: + SoulLinker: true + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 1134 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus bMaxSP,100*getskilllv("TK_SPTIME"); if (.@r>=11) autobonus3 "{ bonus2 bSkillAtk,\"SP_SPA\",30; bonus2 bSkillAtk,\"SP_SWHOO\",30; }",1000,10000,"SL_SMA"; + - Id: 19407 + AegisName: Work_Cap + Name: Work Cap + Type: Armor + Buy: 200 + Weight: 1000 + Defense: 18 + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 1793 + Script: | + .@r = getrefine(); bonus bMdef,15; bonus bVit,10; bonus2 bSkillAtk,"NC_AXETORNADO",20; bonus2 bVariableCastrate,"BS_GREED",-100; if (getskilllv("NC_MAGICDECOY") >= 5) bonus2 bAddClass,Class_Boss,50; if (getskilllv("NC_AXEBOOMERANG") >= 5) bonus bBaseAtk,100; if (getskilllv("NC_MAGMA_ERUPTION") >= 5) bonus2 bAddMonsterDropItem,732,10; if (.@r>=7) bonus2 bSkillAtk,"NC_AXETORNADO",30; if (.@r>=9) bonus2 bSkillAtk,"NC_AXETORNADO",50; if (.@r>=10) bonus bIgnoreDefClass,Class_All; + - Id: 19409 + AegisName: Black_Feather_Hat + Name: Black Feather Hat + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 18 + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 731 + Script: | + .@r = getrefine(); bonus bSPGainValue,50; bonus bLongSPGainValue,50; bonus bMagicSPGainValue,50; bonus bMdef,15; bonus bDex,10; bonus2 bSkillAtk,"SC_FEINTBOMB",10; if (getskilllv("SC_INVISIBILITY") >= 5) bonus2 bAddClass,Class_Boss,50; if (getskilllv("SC_MAELSTROM") >= 3) skill "TK_JUMPKICK",7; if (getskilllv("SC_REPRODUCE") >= 10) bonus bUseSPrate,-30; if (.@r>=7) { bonus2 bSkillAtk,"SC_FEINTBOMB",15; bonus bHit,30; } if (.@r>=9) { bonus2 bSkillAtk,"SC_FEINTBOMB",25; bonus bHit,20; } if (.@r>=10) bonus bIgnoreDefClass,Class_All; + - Id: 19426 + AegisName: Spirit_King's_Crown + Name: Spirit King's Crown + Type: Armor + Buy: 20 + Weight: 600 + Defense: 12 + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 1118 + Script: | + .@r = getrefine(); bonus bMdef,15; bonus bFixedCastrate,-7*.@r; bonus bDelayrate,-10; bonus2 bSkillAtk,"SO_EARTHGRAVE",10; bonus2 bSkillAtk,"SO_DIAMONDDUST",10; bonus bVariableCastrate,-6*getskilllv("SO_EL_SYMPATHY"); if (getskilllv("SO_WARMER") >= 5) { bonus2 bSkillCooldown,"SO_EARTHGRAVE",-1000; bonus2 bSkillCooldown,"SO_DIAMONDDUST",-1000; bonus2 bSkillCooldown,"SO_VARETYR_SPEAR",-1000; } if (getskilllv("SO_ELEMENTAL_SHIELD") >= 5) bonus2 bMagicAddClass,Class_Boss,25; if (.@r>=7) { bonus2 bSkillAtk,"SO_EARTHGRAVE",15; bonus2 bSkillAtk,"SO_DIAMONDDUST",15; bonus bDelayrate,-5; } if (.@r>=9) { bonus bDelayrate,-5; bonus2 bSkillAtk,"SO_EARTHGRAVE",25; bonus2 bSkillAtk,"SO_DIAMONDDUST",25; } if (.@r>=10) bonus2 bIgnoreMdefClassRate,Class_All,100; + - Id: 19428 + AegisName: Illusion_Morpheus's_Hood + Name: Illusion Morpheus's Hood + Type: Armor + Buy: 20 + Weight: 200 + Defense: 15 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 130 + Refineable: true + View: 256 + Script: | + .@r = getrefine(); bonus bInt,10; bonus bMdef,15; bonus bMaxSPrate,20; bonus bVariableCastrate,-(3*(.@r/2)); if (.@r >= 7) { bonus bMatk,30; if (.@r >= 9) { bonus bNoCastCancel; } } + - Id: 19451 + AegisName: Heavenly_Order + Name: Heavenly Order + Type: Armor + Buy: 20 + Locations: + Head_Mid: true + EquipLevelMin: 100 + View: 1093 + Script: | + skill "MC_IDENTIFY",1,0; .@a = readparam(bStr); .@b = readparam(bAgi); .@c = readparam(bVit); .@d = readparam(bInt); .@e = readparam(bDex); .@f = readparam(bLuk); bonus bHit,2*(.@a/18); bonus bMaxHPrate,2*(.@a/18); bonus bFlee,2*(.@b/18); bonus bDelayrate,-2*(.@b/18); bonus bMdef,2*(.@c/18); bonus bVariableCastrate,-2*(.@c/18); bonus bMaxSPrate,2*(.@d/18); bonus bUseSPrate,-2*(.@d/18); bonus bCritical,2*(.@e/18); bonus bAspdRate,2*(.@e/18); bonus bBaseAtk,15*(.@f/18); bonus bMatk,15*(.@f/18); bonus bDef,20*(.@f/18); + - Id: 19453 + AegisName: Jeje_Cap + Name: Jeje Cap + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 18 + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 1011 + Script: | + .@r = getrefine(); .@dmg = 10; .@delay = -15-6*getskilllv("GN_CRAZYWEED"); bonus bMdef,15; bonus bNoCastCancel; bonus2 bVariableCastrate,"GN_CRAZYWEED",-50; bonus2 bVariableCastrate,"CR_ACIDDEMONSTRATION",-50; bonus2 bVariableCastrate,"CR_FULLPROTECTION",-50; if (.@r>=7) { .@dmg += 15; if (.@r>=9) { .@dmg += 25; if (.@r>=10) { bonus bIgnoreDefClass,Class_All; } } } if (getskilllv("GN_FIRE_EXPANSION") == 5) bonus2 bAddClass,Class_Boss,50; if (getskilllv("GN_CRAZYWEED") == 5) { .@delay -= 25; bonus2 bSkillCooldown,"GN_CRAZYWEED",-4500; } bonus2 bSkillAtk,"CR_ACIDDEMONSTRATION",.@dmg; bonus2 bSkillAtk,"GN_CRAZYWEED",.@dmg; bonus bDelayrate,.@delay; + - Id: 19469 + AegisName: Saint_Crown + Name: Saint Crown + Type: Armor + Buy: 20 + Weight: 600 + Defense: 12 + Locations: + Head_Top: true + EquipLevelMin: 100 + Refineable: true + View: 1117 + Script: | + .@r = getrefine(); .@a = 5*(getskilllv("AB_LAUDAAGNUS")+getskilllv("AB_LAUDARAMUS")); .@dmg = 20; .@aspd = 10; bonus bMdef,15; bonus2 bSkillUseSP,"AB_JUDEX",15; bonus2 bSkillUseSP,"AB_ADORAMUS",15; bonus2 bVariableCastrate,"AB_JUDEX",-5*getskilllv("AB_ORATIO"); bonus2 bVariableCastrate,"AB_ADORAMUS",-5*getskilllv("AB_ORATIO"); if (getskilllv("AB_CLEARANCE") >= 5) { bonus2 bMagicAddClass,Class_Boss,25; } bonus2 bMagicAddEle,Ele_Undead,.@a; bonus2 bMagicAddEle,Ele_Ghost,.@a; bonus2 bMagicAddEle,Ele_Earth,.@a; bonus2 bMagicAddEle,Ele_Neutral,.@a; bonus2 bMagicAddRace,RC_DemiHuman,2*.@r; bonus2 bMagicAddRace,RC_Player_Human,2*.@r; if (.@r >= 7) { .@dmg += 30; .@aspd += 5; if (.@r >= 9) { .@dmg += 50; .@aspd += 5; if (.@r >= 10) { bonus bNoGemStone; } } } bonus bAspdRate,.@aspd; bonus2 bSkillAtk,"AB_JUDEX",.@dmg; bonus2 bSkillAtk,"AB_ADORAMUS",.@dmg; + - Id: 19433 + AegisName: C_Resonate_Taego + Name: Costume Resonate Taego + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1823 + Script: | + hateffect(HAT_EF_RESONATETAEGO,true); + UnEquipScript: | + hateffect(HAT_EF_RESONATETAEGO,false); + - Id: 19500 + AegisName: T_Mr_Smile + Name: T Mr Smile + Type: Armor + Locations: + Costume_Head_Mid: true + Costume_Head_Low: true + View: 65 + Script: | + bonus bStr,2; + - Id: 19501 + AegisName: T_Spinx_Helm + Name: T Spinx Helm + Type: Armor + Locations: + Costume_Head_Top: true + View: 137 + - Id: 19502 + AegisName: T_Goggle + Name: T Goggle + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + View: 1 + - Id: 19503 + AegisName: T_Munak_Hat + Name: T Munak Hat + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + Costume_Head_Low: true + View: 51 + - Id: 19504 + AegisName: T_Sunglasses + Name: T Sunglasses + Type: Armor + Locations: + Costume_Head_Mid: true + View: 12 + - Id: 19505 + AegisName: T_Cigarette + Name: T Cigarette + Type: Armor + Locations: + Costume_Head_Low: true + View: 54 + - Id: 19506 + AegisName: T_Valkyrie_Feather_Band + Name: T Valkyrie Feather Band + Type: Armor + Locations: + Costume_Head_Top: true + View: 300 + - Id: 19507 + AegisName: Fine_Sun + Name: Clear Sun + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 654 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bUnbreakableHelm; + - Id: 19508 + AegisName: T_Gemmed_Sallet + Name: T Gemmed Sallet + Type: Armor + Locations: + Costume_Head_Top: true + Script: | + bonus bUnbreakableHelm; + - Id: 19509 + AegisName: Butterfly_Wing_Ear + Name: Butterfly Wing Ears + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 695 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bUnbreakableHelm; + - Id: 19510 + AegisName: Nut_On_Head + Name: Screw Stuck in Head + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 696 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bUnbreakableHelm; + - Id: 19511 + AegisName: Heart_Eye_Patch1 + Name: Heart Eye Patch 1 + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 697 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bUnbreakableHelm; + - Id: 19512 + AegisName: Heart_Eye_Patch2 + Name: Heart Eye Patch 2 + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 698 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bUnbreakableHelm; + - Id: 19513 + AegisName: Chicken_Beak + Name: Chicken Bill + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 699 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bUnbreakableHelm; + - Id: 19514 + AegisName: Charlie_Beard + Name: Charlies Beard + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 700 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bUnbreakableHelm; + - Id: 19515 + AegisName: Yellow_Hat + Name: Yellow Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 701 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bUnbreakableHelm; + - Id: 19516 + AegisName: Singing_Bird + Name: Singing Bird + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 702 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bUnbreakableHelm; + - Id: 19517 + AegisName: Cocks_Comb + Name: Chicken Crest + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 703 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bUnbreakableHelm; + - Id: 19518 + AegisName: Rainbow + Name: Rainbow + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 704 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bUnbreakableHelm; + - Id: 19519 + AegisName: Lightning_Cloud + Name: Thunderstorm Cloud + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 688 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bUnbreakableHelm; + - Id: 19520 + AegisName: Rain_Cloud + Name: Rain Cloud + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 705 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bUnbreakableHelm; + - Id: 19521 + AegisName: Charlie_Hat + Name: Charlies Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 706 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bUnbreakableHelm; + - Id: 19522 + AegisName: Mini_Crown1 + Name: Mini Crown + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 707 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bUnbreakableHelm; + - Id: 19523 + AegisName: Donation_Ribbon + Name: Green Ribbon + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 244 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bUnbreakableHelm; + - Id: 19524 + AegisName: C_Green_Feeler + Name: Costume Green Feeler + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 85 + Script: | + bonus bUnbreakableHelm; + - Id: 19525 + AegisName: C_Jack_A_Dandy + Name: Costume Jack A Dandy + Type: Armor + Locations: + Costume_Head_Top: true + View: 58 + Script: | + bonus bUnbreakableHelm; + - Id: 19526 + AegisName: C_Helm + Name: Costume Helm + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 40 + Script: | + bonus bUnbreakableHelm; + - Id: 19527 + AegisName: C_Sharp_Gear + Name: Costume Spiky Band + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 43 + Script: | + bonus bUnbreakableHelm; + - Id: 19528 + AegisName: C_Iron_Cane + Name: Costume Iron Cain + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 53 + Script: | + bonus bUnbreakableHelm; + - Id: 19529 + AegisName: C_Angelic_Chain + Name: Costume Angel Wing + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 38 + Script: | + bonus bUnbreakableHelm; bonus bVit,1; bonus bAgi,1; + - Id: 19530 + AegisName: C_Wild_Rose + Name: Costume Wild Rose + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 541 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bUnbreakableHelm; bonus bBaseAtk,2; bonus bMatk,2; + - Id: 19531 + AegisName: C_Cube_Mask + Name: Costume Cube Mask + Type: Armor + Locations: + Costume_Head_Mid: true + Costume_Head_Low: true + View: 472 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bUnbreakableHelm; bonus bFlee,1; + - Id: 19532 + AegisName: C_Red_Bunny_Band + Name: Red Bunny Band + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 640 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bUnbreakableHelm; bonus bDex,1; + - Id: 19533 + AegisName: C_Spore_Hat + Name: Costume Spore Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 114 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bUnbreakableHelm; bonus bVit,1; bonus2 bExpAddRace,RC_All,1; + - Id: 19534 + AegisName: C_Tha_Despero_Mask + Name: Costume Thanatos Despero Mask + Type: Armor + Buy: 20 + Locations: + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 693 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus2 bAddClass,Class_All,1; bonus bMatkRate,1; bonus bHealPower,1; + - Id: 19535 + AegisName: C_Sinsuncho_Hat + Name: Costume Sinsuncho Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 730 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bUnbreakableHelm; bonus bStr,1; bonus2 bExpAddRace,RC_All,1; + - Id: 19536 + AegisName: C_Rose_Corsage + Name: Costume Rose Corsage + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 533 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bUnbreakableHelm; bonus bInt,1; + - Id: 19537 + AegisName: C_Gryphon_Hat + Name: Costume Gryphon Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 591 + Script: | + bonus bUnbreakableHelm; + - Id: 19538 + AegisName: Full_Moon + Name: Full Moon + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 780 + Script: | + 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 */ }"; + - Id: 19539 + AegisName: C_Reginleif_Hairband + Name: Costume Hairband Of Reginleif + Type: Armor + Buy: 20 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 468 + Script: | + bonus bAllStats,1; + - Id: 19540 + AegisName: C_Rabbit_Earplug + Name: Costume Rabbit Earplugs + Type: Armor + Buy: 20 + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 515 + Script: | + bonus bAgi,1; bonus bFlee,2; + - Id: 19541 + AegisName: C_Romantic_White_Flower + Name: Costume Romantic White Flower + Type: Armor + Buy: 20 + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 259 + Script: | + bonus bUnbreakableHelm; + - Id: 19542 + AegisName: C_Devil_Whisper + Name: Costume Devil Whisper + Type: Armor + Buy: 20 + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 712 + Script: | + bonus bUnbreakableHelm; bonus2 bSubRace,RC_Angel,1; bonus2 bSubRace,RC_Demon,1; bonus3 bAddMonsterDropItem,523,RC_Angel,400; bonus3 bAddMonsterDropItem,12020,RC_Demon,400; + - Id: 19543 + AegisName: Oliver_Wolf_Hood + Name: Oliver Wolf Hood + Type: Armor + Buy: 20 + Weight: 300 + Locations: + Costume_Head_Top: true + EquipLevelMin: 70 + View: 849 + Script: | + bonus bUnbreakableHelm; + - Id: 19544 + AegisName: C_Tare_Neko_Cru + Name: Costume Tare Neko Cru + Type: Armor + Buy: 20 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 692 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bUnbreakableHelm; + - Id: 19545 + AegisName: C_Boys_Cap + Name: Costume Boy's Cap + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Costume_Head_Top: true + EquipLevelMin: 100 + View: 102 + Script: | + bonus bUnbreakableHelm; + - Id: 19546 + AegisName: C_Valkyrie_Helm + Name: Costume Valkyrie Helm + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Costume_Head_Top: true + EquipLevelMin: 100 + View: 225 + Script: | + bonus bUnbreakableHelm; + - Id: 19547 + AegisName: C_Deviruchi_Cap + Name: Costume Deviruchi Cap + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Costume_Head_Top: true + EquipLevelMin: 100 + View: 123 + Script: | + bonus bUnbreakableHelm; + - Id: 19548 + AegisName: C_Frog_Cap + Name: Costume Frog Cap + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Costume_Head_Top: true + EquipLevelMin: 100 + View: 448 + EquipScript: | + bonus bUnbreakableHelm; + - Id: 19549 + AegisName: C_Magestic_Goat + Name: Costume Magestic Goat + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Costume_Head_Top: true + EquipLevelMin: 100 + View: 41 + Script: | + bonus bUnbreakableHelm; + - Id: 19550 + AegisName: C_Blush + Name: Costume Blush + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Costume_Head_Mid: true + EquipLevelMin: 100 + View: 125 + Script: | + bonus bUnbreakableHelm; + - Id: 19551 + AegisName: C_Elven_Ears + Name: Costume Elven Ears + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Costume_Head_Mid: true + EquipLevelMin: 100 + View: 73 + Script: | + bonus bUnbreakableHelm; + - Id: 19552 + AegisName: C_Centimental_Flower + Name: Costume Centimental Flower + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Costume_Head_Low: true + EquipLevelMin: 100 + View: 56 + Script: | + bonus bUnbreakableHelm; + - Id: 19553 + AegisName: C_Assassin_Mask_ + Name: Costume Assassin Mask + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Costume_Head_Low: true + EquipLevelMin: 100 + View: 180 + Script: | + bonus bUnbreakableHelm; + - Id: 19554 + AegisName: C_Hahoe_Mask + Name: Costume Hahoe Mask + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 100 + View: 230 + Script: | + bonus bUnbreakableHelm; + - Id: 19555 + AegisName: C_Crescent_Helm + Name: Costume Crescent Moon Helm + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 213 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bVit,1; + - Id: 19556 + AegisName: C_Kabuki_Mask + Name: Costume Kabuki Mask + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 214 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bInt,1; + - Id: 19557 + AegisName: C_Ayothaya_Hat + Name: Costume Ayothaya Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 334 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bStr,1; + - Id: 19558 + AegisName: C_Crow_Hat + Name: Costume Crow Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 524 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bVit,1; + - Id: 19559 + AegisName: C_Baby_Dragon_Hat + Name: Costume Baby Dragon Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 525 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bAgi,1; + - Id: 19560 + AegisName: C_Coati_Hat + Name: Costume Coati Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 527 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bDex,1; + - Id: 19561 + AegisName: C_Tucan_Hat + Name: Costume Tucan Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 528 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bDex,1; + - Id: 19562 + AegisName: C_Jaguar_Hat + Name: Costume Jaguar Hat + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 530 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bStr,1; + - Id: 19563 + AegisName: C_Dragon_Arhat_Mask + Name: Costume Dragon Arhat Mask + Type: Armor + Locations: + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 545 + Trade: + Override: 100 + NoDrop: true + - Id: 19564 + AegisName: C_Tiger_Arhat_Mask + Name: Costume Tiger Arhat Mask + Type: Armor + Locations: + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 546 + Trade: + Override: 100 + NoDrop: true + - Id: 19565 + AegisName: C_Chung_Hairband + Name: Costume Chung Hairpin + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 583 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bInt,1; + - Id: 19566 + AegisName: C_Samurai_Mask + Name: Costume Samurai Mask + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 644 + Trade: + Override: 100 + NoDrop: true + - Id: 19567 + AegisName: C_Hatta_Black + Name: Costume Hatta Black + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 676 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bVit,1; + - Id: 19568 + AegisName: C_Ancient_Horns + Name: Costume Ancient Horns + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 757 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bStr,1; + - Id: 19569 + AegisName: C_Sprout_Hat + Name: Costume Sprout Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 758 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bInt,1; + - Id: 19570 + AegisName: C_Mercury_Riser + Name: Costume Mercury Riser + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 759 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bLuk,1; + - Id: 19571 + AegisName: C_White_Musang_Hat + Name: Costume White Musang Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 770 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bStr,1; + - Id: 19572 + AegisName: C_Black_Musang_Hat + Name: Costume Black Musang Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 771 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bInt,1; + - Id: 19573 + AegisName: C_Heart_Wing_Hairband + Name: Costume Heart Wing Hairband + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 733 + Trade: + Override: 100 + NoDrop: true + - Id: 19574 + AegisName: C_Lord_of_Death + Name: Costume Lord of Death + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + View: 742 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus bUnbreakableHelm; + - Id: 19575 + AegisName: C_Ascension_Black_Dragon + Name: Costume Ascension Black Dragon + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 863 + - Id: 19576 + AegisName: C_Tare_Pope + Name: Costume Tare Pope + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 817 + Trade: + Override: 100 + NoDrop: true + - Id: 19577 + AegisName: 10th_Anni_Poring_Hat + Name: 10th Anni Poring Hat + Type: Armor + Buy: 10 + Weight: 100 + Defense: 1 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 874 + - Id: 19578 + AegisName: C_Goggle + Name: Costume Googles + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1 + - Id: 19579 + AegisName: C_Red_Wind_Hat + Name: Costume Red Wind Hat + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 613 + Script: | + bonus bHPrecovRate,20; bonus bSPrecovRate,20; + - Id: 19580 + AegisName: C_Sphinx_Helm + Name: Costume Sphinx Helm + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 137 + - Id: 19581 + AegisName: C_Adventurers_Hat + Name: Costume Adventurer's Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 891 + - Id: 19582 + AegisName: C_Cowboy_Hat + Name: Costume Cowboy Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 411 + - Id: 19583 + AegisName: C_Zorro_Mask + Name: Costume Zorro Mask + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 50 + - Id: 19584 + AegisName: C_Pirate_Dagger + Name: Costume Dagger In Mouth + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 327 + - Id: 19585 + AegisName: C_Feather_Beret + Name: Costume Feather Beret + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 224 + - Id: 19586 + AegisName: C_Pink_Bunny_Band_J + Name: Costume Pink Bunny Hair Band + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 898 + Trade: + Override: 100 + NoDrop: true + - Id: 19587 + AegisName: C_King_Poring_Hat + Name: Costume King Poring Hat + Type: Armor + Weight: 100 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 905 + Script: | + bonus bUnbreakableHelm; + - Id: 19588 + AegisName: C_Cat_Hat_J + Name: Costume Cat Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 182 + Script: | + bonus bAllStats,3; bonus2 bExpAddClass,Class_All,30; + - Id: 19589 + AegisName: C_Fallen_Angel_Lost_J + Name: Costume Fallen Angel Lost + Type: Armor + Locations: + Costume_Head_Top: true + View: 907 + - Id: 19590 + AegisName: C_Twin_Ribbon_J + Name: Costume Maiden's Twin Ribbon + Type: Armor + Buy: 20 + Locations: + Costume_Head_Top: true + View: 239 + - Id: 19591 + AegisName: C_Ribbon_Red + Name: Costume Red Ribbon + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 246 + - Id: 19592 + AegisName: C_Hibiscus + Name: Costume Hibiscus + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 210 + - Id: 19593 + AegisName: C_Laurel_Wreath + Name: Costume Laurel Wreath + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 237 + - Id: 19594 + AegisName: C_Decorative_Geographer + Name: Costume Decorative Geographer + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 238 + - Id: 19595 + AegisName: C_Dress_Hat_J + Name: Costume April's Fool Day + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 265 + - Id: 19596 + AegisName: C_Flapping_Angel_Wing + Name: Costume Flapping Angel Wing + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 264 + - Id: 19597 + AegisName: C_Magic_Eyes + Name: Costume Magic Eyes + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 209 + - Id: 19598 + AegisName: C_Wondering_Wolf_Helm + Name: Costume Wandering Wolf Hat + Type: Armor + Buy: 20 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + View: 490 + Trade: + Override: 100 + NoDrop: true + - Id: 19599 + AegisName: C_Imp_Hat + Name: Costume Imp Hat + Type: Armor + Buy: 20 + Weight: 400 + Defense: 1 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 589 + Trade: + Override: 100 + NoDrop: true + Script: | + bonus3 bAutoSpell,"SA_FLAMELAUNCHER",1,5; + - Id: 19600 + AegisName: Drooping_Kiehl + Name: Costume Drooping Kiehl + Type: Armor + Weight: 40 + Locations: + Costume_Head_Top: true + EquipLevelMin: 30 + View: 909 + - Id: 19601 + AegisName: Drooping_Aliot + Name: Costume Drooping Aliot + Type: Armor + Weight: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 910 + - Id: 19602 + AegisName: C_Invisible_Cap + Name: Costume Invisible Cap + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + - Id: 19603 + AegisName: C_Invisible_Sunglasses + Name: Costume Invisible Sunglasses + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + - Id: 19604 + AegisName: C_Invisible_Mask + Name: Costume Invisible Flu Mask + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + - Id: 19605 + AegisName: C_Gang_Scarf + Name: Costume Gang Scarf + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 369 + - Id: 19606 + AegisName: C_Ninja_Scroll + Name: Costume Ninja Scroll + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 370 + - Id: 19607 + AegisName: C_Love_Chick_Hat + Name: Costume Love Chick Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 500 + - Id: 19608 + AegisName: C_Chick_Hat + Name: Costume Baby Chick + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 311 + - Id: 19609 + AegisName: C_Red_Glasses + Name: Costume Red Glasses + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 316 + - Id: 19610 + AegisName: C_Whisper_Mask + Name: Costume Whisper Mask + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 321 + - Id: 19611 + AegisName: C_Peco_Ears + Name: Costume Peco Ears + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 366 + - Id: 19612 + AegisName: C_Note_Headphone + Name: Costume Note Headphone + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 220 + - Id: 19613 + AegisName: C_Valkyrie_Feather_Band + Name: Costume Valkyrie Feather Hat + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 300 + - Id: 19614 + AegisName: C_Super_Novice_Hat + Name: Costume Super Novice Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 193 + - Id: 19615 + AegisName: C_Loki_Mask + Name: Costume Loki Mask + Type: Armor + Locations: + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 346 + - Id: 19616 + AegisName: C_Wickebines_Black_Cat_Ears + Name: Costume Wickebine's Black Cat Ears + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 368 + - Id: 19617 + AegisName: C_Puppy_Headband + Name: Costume Puppy Headband + Type: Armor + Locations: + Costume_Head_Top: true + View: 199 + - Id: 19618 + AegisName: C_Mask_Of_Fox + Name: Costume Kitsune Mask + Type: Armor + Locations: + Costume_Head_Top: true + View: 153 + - Id: 19619 + AegisName: C_Corsair + Name: Costume Corsair + Type: Armor + Locations: + Costume_Head_Top: true + View: 105 + Script: | + bonus bVit,1; + - Id: 19620 + AegisName: C_Dectective_Hat + Name: Costume Detective Hat + Type: Armor + Locations: + Costume_Head_Top: true + View: 189 + - Id: 19621 + AegisName: C_Ear_Of_Devils_Wing + Name: Costume Evil Wing Ear + Type: Armor + Locations: + Costume_Head_Mid: true + View: 152 + - Id: 19622 + AegisName: C_Crescent_Hairpin + Name: Costume Crescent Hairpin + Type: Armor + Locations: + Costume_Head_Top: true + View: 132 + - Id: 19623 + AegisName: C_Bijofnil_Wings + Name: Costume Bijofnil Wings + Type: Armor + Locations: + Costume_Head_Top: true + View: 477 + - Id: 19624 + AegisName: C_Round_Eyes + Name: Costume Blank Eyes + Type: Armor + Locations: + Costume_Head_Mid: true + View: 185 + - Id: 19625 + AegisName: C_Bunny_Band + Name: Costume Bunny Band + Type: Armor + Locations: + Costume_Head_Top: true + View: 15 + - Id: 19627 + AegisName: C_Satellite_Hairband + Name: Costume Satellite Hairband + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 266 + - Id: 19628 + AegisName: C_Headset + Name: Costume Headset + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 97 + - Id: 19629 + AegisName: C_Tiara + Name: Costume Tiara + Type: Armor + Buy: 20 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 19 + - Id: 19630 + AegisName: C_Crown + Name: Costume Crown + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 45 + - Id: 19631 + AegisName: C_Poring_Fedora_Hat + Name: Costume Poring Fedora Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 919 + - Id: 19632 + AegisName: C_Hat + Name: Costume Hat + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 16 + - Id: 19633 + AegisName: C_Flower_Hairband + Name: Costume Flower Band + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 5 + - Id: 19634 + AegisName: C_Flu_Mask + Name: Costume Flu Mask + Type: Armor + Buy: 10 + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 8 + - Id: 19635 + AegisName: C_Mini_Propeller + Name: Costume Mini Propeller + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 46 + - Id: 19636 + AegisName: C_Pierrot_Nose + Name: Costume Clown Nose + Type: Armor + Buy: 10 + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 49 + - Id: 19637 + AegisName: C_Nurse_Cap + Name: Costume Nurse Cap + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 64 + - Id: 19638 + AegisName: C_Mr_Smile + Name: Costume Mr. Smile + Type: Armor + Buy: 10 + Locations: + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 65 + - Id: 19639 + AegisName: C_Sahkkat + Name: Costume Sakkat + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 67 + - Id: 19640 + AegisName: C_Charming_Ribbon + Name: Costume Charming Ribbon + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 211 + - Id: 19641 + AegisName: C_Helm_of_Darkness + Name: Costume Helm of Darkness + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 233 + - Id: 19642 + AegisName: C_Moonlight_Flower_Hat + Name: Costume Moonlight Flower Hat + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 268 + - Id: 19643 + AegisName: C_Whikebain_Ears + Name: Costume Wickebine Ears + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 368 + - Id: 19644 + AegisName: C_Takius_Blindfold + Name: Costume Takius Blindfold + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 184 + - Id: 19645 + AegisName: C_Phoenix_Crown + Name: Costume Phoenix Crown + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 221 + - Id: 19646 + AegisName: C_Ramen_Hat + Name: Costume Ramen Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 320 + - Id: 19647 + AegisName: C_Red_Deviruchi_Hat + Name: Costume Red Deviruchi Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 271 + - Id: 19648 + AegisName: C_Autumn_Leaves + Name: Costume Autumn Leaves + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 241 + - Id: 19649 + AegisName: C_White_Baby_Cat_Ears + Name: Costume White Baby Cat Ears + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 926 + - Id: 19650 + AegisName: C_Rainbow_Feather_Deco + Name: Costume Rainbow Feather Deco + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 934 + Trade: + Override: 100 + NoDrop: true + - Id: 19651 + AegisName: C_RWC_Shouting_Mouth + Name: Costume RWC Shouting Mouth + Type: Armor + Buy: 10 + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 194 + - Id: 19652 + AegisName: C_Rabbit_Magic_Hat + Name: Costume Rabbit Magic Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 497 + - Id: 19653 + AegisName: C_Marcher_Hat + Name: Costume Marcher Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 269 + - Id: 19654 + AegisName: C_J_Captain_Hat + Name: Costume Ship Captain Hat + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 367 + - Id: 19655 + AegisName: C_Tiraya_Bonnet + Name: Costume Tiraya Bonnet + Type: Armor + Buy: 20 + Locations: + Costume_Head_Top: true + View: 398 + - Id: 19656 + AegisName: C_Minstrel_Hat + Name: Wandering Minstrel Hat + Type: Armor + Buy: 20 + Locations: + Costume_Head_Top: true + View: 240 + - Id: 19657 + AegisName: C_Captain_Hat + Name: Costume Captain Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 236 + - Id: 19658 + AegisName: C_Vacation_Hat + Name: Costume Vacation Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 315 + - Id: 19659 + AegisName: C_Brown_Beanie + Name: Costume Brown Beanie + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 279 + - Id: 19660 + AegisName: C_Coppola + Name: Costume Coppola + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 252 + - Id: 19661 + AegisName: C_Sweet_Bonnet + Name: Costume Sweet Bonnet + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 938 + - Id: 19662 + AegisName: C_Magician_Hat + Name: Costume Magician Hat + Type: Armor + Buy: 20 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 130 + - Id: 19663 + AegisName: Wishing_Sky_Lantern + Name: Costume Wish Lamp + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 947 + - Id: 19664 + AegisName: C_Campus_Festival + Name: Costume Campus Festival + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 721 + - Id: 19665 + AegisName: C_Poring_Cake_Hat + Name: Costume Poring Cake Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 417 + - Id: 19666 + AegisName: C_Cookie_Hat + Name: Costume Cookie Hat + Type: Armor + Buy: 20 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 217 + Script: | + bonus2 bAddItemHealRate,513,1100; + - Id: 19667 + AegisName: C_Dragon_Helm + Name: Costume Dragon Helm + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 464 + - Id: 19668 + AegisName: C_Wind_Milestone + Name: Costume Wind Milestone + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 463 + - Id: 19669 + AegisName: C_Reginleif_Hairband_ + Name: Costume Reginleif Hairband + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 214 + - Id: 19670 + AegisName: C_Southern_Cross + Name: Costume Southern Cross + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 601 + - Id: 19671 + AegisName: C_Piggie_Bank + Name: Costume Piggie Bank + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 603 + - Id: 19672 + AegisName: C_Poring_Letter + Name: Costume Poring Letter + Type: Armor + Buy: 20 + Locations: + Costume_Head_Low: true + View: 604 + - Id: 19676 + AegisName: C_Rainbow_Poring_Hat + Name: Costume Rainbow Poring Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 900 + - Id: 19677 + AegisName: C_Soulless_Wing + Name: Costume Soulless Wing + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 301 + - Id: 19678 + AegisName: C_Bell_Ribbon + Name: Costume Bell Ribbon + Type: Armor + Buy: 20 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 388 + - Id: 19682 + AegisName: C_Santa_Poring_Hat + Name: Costume SantaPoring Cap + Type: Armor + Buy: 10 + Weight: 100 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 387 + - Id: 19684 + AegisName: C_Happy_Wig + Name: Costume Happy Wig + Type: Armor + Buy: 20 + Locations: + Costume_Head_Top: true + View: 305 + - Id: 19685 + AegisName: C_ShineSantaPoring + Name: Costume Shining Santa Poring + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 961 + - Id: 19686 + AegisName: C_SantaHairband + Name: Costume Santa Hairband + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 964 + - Id: 19687 + AegisName: C_Lush_Rose + Name: Costume Lush Rose + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 963 + - Id: 19689 + AegisName: C_Ati_Atihan_Hat + Name: Costume Ati Atihan + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 303 + - Id: 19690 + AegisName: C_Dark_Snake_Lord_Hat_J + Name: Costume Dark Snake Lord Hat + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 372 + - Id: 19695 + AegisName: C_Kettle_Hat + Name: Costume Kettle Hat + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 318 + - Id: 19694 + AegisName: C_Vane_Hairpin + Name: Costume Vane Hairpin + Type: Armor + Buy: 20 + Locations: + Costume_Head_Top: true + View: 313 + - Id: 19696 + AegisName: C_Friend_Mochiring_Hat + Name: Costume Friend Mochiring Hat + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 965 + - Id: 19697 + AegisName: C_Rudolph_Santa_Hat + Name: Costume Rudolph Santa Hat + Type: Armor + Locations: + Costume_Head_Top: true + View: 619 + - Id: 19701 + AegisName: C_Red_Bonnet + Name: Costume Red Bonnet + Type: Armor + Buy: 10 + Weight: 100 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 190 + - Id: 19702 + AegisName: C_Santa_Hat_1 + Name: Costume Twin Pompom By JB + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 390 + - Id: 19706 + AegisName: C_Red_Dress_Hat + Name: Costume Red Dress Hat + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 670 + - Id: 19707 + AegisName: C_Polar_Bear_Cap + Name: Costume Polar Bear Cap + Type: Armor + Buy: 20 + Locations: + Costume_Head_Top: true + View: 966 + Script: | + bonus bUnbreakableHelm; + - Id: 19708 + AegisName: C_White_Snake_Hat + Name: Costume White Snake Hat + Type: Armor + Buy: 10 + Locations: + Head_Top: true + EquipLevelMin: 1 + View: 413 + - Id: 19709 + AegisName: C_Yellow_Ribbon + Name: Costume Yellow Ribbon + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 310 + - Id: 19710 + AegisName: C_Wings_Of_Victory + Name: Costume Wings Of Victory + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 365 + Trade: + Override: 100 + NoDrop: true + - Id: 19712 + AegisName: C_Little_Angel_Doll + Name: Costume Little Angel Doll + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 344 + - Id: 19713 + AegisName: C_Lucky_Clover + Name: Costume Lucky Clover + Type: Armor + Buy: 10 + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 571 + - Id: 19714 + AegisName: C_Lady_Tanee_Doll + Name: Costume Lady Tanee Doll + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 520 + - Id: 19715 + AegisName: C_Scarf + Name: Costume Scarf + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 343 + - Id: 19716 + AegisName: C_Alice_Doll + Name: Costume Alice Doll + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 208 + - Id: 19717 + AegisName: C_Pink_Ribbon + Name: Costume Pink Ribbon + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 245 + - Id: 19718 + AegisName: C_Gothic_Head_Dress + Name: Costume Gothic Headdress + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 978 + - Id: 19719 + AegisName: C_Coronet + Name: Costume Coronet + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 33 + - Id: 19720 + AegisName: C_Romantic_Gent + Name: Costume Romantic Gent + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 31 + - Id: 19721 + AegisName: C_Darkness_Helm + Name: Costume Darkness Helm + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 586 + - Id: 19722 + AegisName: C_Black_Glasses + Name: Costume Black Glasses + Type: Armor + Buy: 10 + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 404 + - Id: 19723 + AegisName: C_Sacred_Torch_Coronet + Name: Costume Sacred Torch Coronet + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 431 + - Id: 19724 + AegisName: C_Deprotai_Doll_Hat + Name: Costume Deprote Doll Hat + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 354 + - Id: 19725 + AegisName: C_Bread_Bag + Name: Costume Bread Bag + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 412 + - Id: 19726 + AegisName: C_Scarlet_Rose + Name: Costume Scarlet Rose + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 534 + - Id: 19727 + AegisName: C_Devilring_Hat + Name: Costume Devilring Hat + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 298 + - Id: 19728 + AegisName: C_Tare_Zonda + Name: Costume Tare Zonda + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 985 + - Id: 19729 + AegisName: C_Neko_Mimi_Kafra + Name: Costume Neko Mimi Kafra + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 392 + - Id: 19730 + AegisName: C_Snake_Hat + Name: Costume Snake Hat + Type: Armor + Buy: 20 + Weight: 10 + Locations: + Costume_Head_Top: true + View: 986 + - Id: 19731 + AegisName: C_Satanic_Chain + Name: Costume Evolved Evil Wing + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 39 + Script: | + bonus bStr,1; bonus bAgi,1; bonus bFlee,3; bonus2 bSubRace,RC_Angel,3; + - Id: 19732 + AegisName: C_Goblin_Mask_04 + Name: Costume Goblin Leader Mask + Type: Armor + Buy: 10 + Locations: + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 174 + - Id: 19733 + AegisName: C_Panda_Cap + Name: Costume Panda Cap + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 115 + Script: | + bonus bAllStats,1; bonus2 bExpAddClass,Class_All,10; + - Id: 19734 + AegisName: C_Binoculars + Name: Costume Binoculars + Type: Armor + Buy: 10 + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 83 + Script: | + bonus bDex,1; + - Id: 19735 + AegisName: C_Fin_Helm + Name: Costume Fin Helm + Type: Armor + Buy: 10 + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 100 + - Id: 19736 + AegisName: C_Gas_Mask + Name: Costume Gas Mask + Type: Armor + Buy: 10 + Locations: + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 91 + Script: | + bonus2 bResEff,Eff_Poison,3000; + - Id: 19737 + AegisName: C_Corsair_K + Name: Costume Refined Corsair + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 105 + Script: | + bonus bVit,3; bonus bInt,3; + - Id: 19738 + AegisName: C_Detective_Hat_K + Name: Costume Renown Detective's Cap + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 189 + - Id: 19739 + AegisName: C_Sleeping_Kitty_Cat + Name: Costume Sleeping Kitty Hat + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 838 + Script: | + bonus2 bAddRace,RC_Brute,2; bonus2 bAddRace,RC_Player_Doram,2; + - Id: 19741 + AegisName: C_Majestic_Devil_Horns + Name: Costume Majestic Devil Horns + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 562 + - Id: 19742 + AegisName: C_Small_Golden_Wings + Name: Costume Small Golden Wings + Type: Armor + Buy: 10 + Locations: + Costume_Head_Mid: true + View: 724 + Script: | + bonus2 bExpAddRace,RC_All,1; + - Id: 19743 + AegisName: C_Anubis_Helm + Name: Costume Anubis Helm + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 485 + - Id: 19744 + AegisName: C_Black_Tail_Ribbon + Name: Costume Black Tail Ribbon + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 642 + - Id: 19745 + AegisName: C_Holy_Marching_Hat_J + Name: Costume Holy Marching Hat + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 587 + - Id: 19746 + AegisName: C_Cap_Of_Blindness + Name: Costume Executioner Hood + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 326 + - Id: 19747 + AegisName: C_Tha_Despero_Mask_ + Name: Costume Tha Despero Mask + Type: Armor + Buy: 20 + Locations: + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 693 + - Id: 19748 + AegisName: C_Diadem + Name: Costume Diadem + Type: Armor + Buy: 20 + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 335 + - Id: 19749 + AegisName: C_Gold_Spirit_Chain + Name: Costume Gold Spirit Chain + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 260 + - Id: 19750 + AegisName: C_Saint_Frill_Ribbon + Name: Costume Saint Frill Ribbon + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 987 + - Id: 19751 + AegisName: C_Light_Darkness_Crown + Name: Costume Light Darkness Crown + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 988 + - Id: 19752 + AegisName: C_Shelter_Wing_Ears + Name: Costume Shelter Wing Ears + Type: Armor + Buy: 10 + Weight: 300 + Defense: 3 + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 990 + - Id: 19753 + AegisName: C_Celestial_Hat + Name: Costume Celestial Hat + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 462 + - Id: 19754 + AegisName: C_Good_Wedding_Veil + Name: Costume Good Wedding Veil + Type: Armor + Buy: 20 + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 489 + - Id: 19755 + AegisName: C_YinYang_Earring + Name: Costume YinYang Earring + Type: Armor + Buy: 10 + Weight: 300 + Defense: 3 + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 744 + - Id: 19756 + AegisName: C_Holy_Mom_Love + Name: Costume Holy Mom Love + Type: Armor + Buy: 20 + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 610 + - Id: 19757 + AegisName: C_Water_Lily_Crown + Name: Costume Water Lily Crown + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 312 + - Id: 19758 + AegisName: C_Frog_King_Hat + Name: Costume Frog King Hat + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 522 + - Id: 19759 + AegisName: C_Umbrella_Hat + Name: Costume Umbrella Hat + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 338 + - Id: 19760 + AegisName: C_Rainbow_Veil + Name: Costume Rainbow Veil + Type: Armor + Buy: 20 + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 992 + - Id: 19761 + AegisName: C_White_Lily + Name: Costume White Lily + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 993 + - Id: 19762 + AegisName: C_Happy_Peace_Proof + Name: Costume Happy Peace Proof + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 994 + - Id: 19763 + AegisName: C_Leaf_Cat_Hat + Name: Costume Leaf Cat Hat + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 539 + - Id: 19764 + AegisName: C_Monster_Card + Name: Costume Monster Card + Type: Armor + Buy: 10 + Locations: + Costume_Head_Low: true + View: 526 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bExpAddRace,RC_All,10; + - Id: 19765 + AegisName: C_Wing_Angels_Ears + Name: Costume Wing Angels Ears + Type: Armor + Buy: 10 + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 158 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bExpAddRace,RC_All,10; + - Id: 19767 + AegisName: C_Home_Cherry_Blossom + Name: Costume Home Cherry Blossom + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 602 + - Id: 19768 + AegisName: C_Sakura_Coronet + Name: Costume Sakura Coronet + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 645 + - Id: 19769 + AegisName: C_Elf_Ears + Name: Costume Elf Ears + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 405 + - Id: 19770 + AegisName: C_Sake + Name: Costume Sake + Type: Armor + Locations: + Costume_Head_Low: true + View: 557 + - Id: 19771 + AegisName: C_Butterfly_Hairpin + Name: Costume Buterfly Hairpin + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 723 + - Id: 19772 + AegisName: C_Honeybee_Hat + Name: Costume Honeybee Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 709 + - Id: 19773 + AegisName: C_Angeling_Pin + Name: Costume Angeling Pin + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 222 + - Id: 19774 + AegisName: C_Laurel + Name: Costume Laurel + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 261 + - Id: 19775 + AegisName: C_Marvelous_Wig + Name: Costume Dokebi Hat + Type: Armor + Buy: 20 + Weight: 10 + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 307 + - Id: 19776 + AegisName: C_Tomboy_Fairy + Name: Costume Tomboy Fairy + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 998 + - Id: 19777 + AegisName: C_Twinkle_Little_Star + Name: Costume Shiny Small Star + Type: Armor + Buy: 20 + Weight: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1005 + - Id: 19778 + AegisName: C_King_Berry + Name: Costume King Berry + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 968 + - Id: 19779 + AegisName: C_Persika + Name: Costume Persika + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 659 + Script: | + bonus bAllStats,1; bonus2 bExpAddClass,Class_All,10; + - Id: 19780 + AegisName: C_Rabbit_Ear_Knit_Hat + Name: Costume Knit Rabbit Ears + Type: Armor + Buy: 20 + Weight: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 867 + Script: | + bonus bMaxHPrate,3; bonus bMaxSPrate,3; + - Id: 19781 + AegisName: C_Ear_Of_Angel's_Wing_ + Name: Costume Angel Wing Ears + Type: Armor + Buy: 10 + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 158 + - Id: 19782 + AegisName: C_Drooping_Kitty + Name: Costume Refined Drooping Cat + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 142 + - Id: 19783 + AegisName: C_Granpa_Beard + Name: Costume Grampa Beard + Type: Armor + Buy: 10 + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 25 + - Id: 19784 + AegisName: C_Morrigane's_Helm + Name: Costume Morrigane's Helm + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 257 + - Id: 19785 + AegisName: C_Well_Baked_Toast + Name: Costume Crunch Toast + Type: Armor + Buy: 10 + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 188 + - Id: 19786 + AegisName: C_Mistress_Crown + Name: Costume Crown of Mistress + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 165 + - Id: 19787 + AegisName: C_Devoted_Eyes + Name: Costume Devoted Eyes + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1021 + - Id: 19788 + AegisName: C_Heart_Eyebandage + Name: Costume Heart Eyebandage + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 779 + - Id: 19789 + AegisName: C_Sweet_Gents + Name: Costume Sweet Gent + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 29 + - Id: 19790 + AegisName: C_Wedding_Veil + Name: Costume Wedding Veil + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 44 + - Id: 19791 + AegisName: C_Alarm_Mask + Name: Costume Alarm Mask + Type: Armor + Locations: + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 170 + - Id: 19792 + AegisName: C_Goblin_Mask_01 + Name: Costume Poker Face + Type: Armor + Locations: + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 171 + - Id: 19793 + AegisName: C_Goblin_Mask_02 + Name: Costume Surprised Mask + Type: Armor + Locations: + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 172 + - Id: 19794 + AegisName: C_Goblin_Mask_03 + Name: Costume Annoyed Mask + Type: Armor + Locations: + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 173 + - Id: 19795 + AegisName: C_Lord_Circlet + Name: Costume Grand Circlet + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 93 + - Id: 19796 + AegisName: C_Bone_Helm + Name: Costume Bone Helm + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 103 + - Id: 19797 + AegisName: C_Apple_Of_Archer + Name: Costume Apple of Archer + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 72 + - Id: 19798 + AegisName: C_Angry_Mouth + Name: Costume Angry Snarl + Type: Armor + Buy: 10 + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 194 + - Id: 19799 + AegisName: C_Golden_Gear + Name: Costume Golden Gear + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 30 + - Id: 19800 + AegisName: C_Carnation_Hairband + Name: Costume Carnation Headband + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 878 + - Id: 19801 + AegisName: C_Foxhat + Name: Costume Foxhat + Type: Armor + Locations: + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 403 + - Id: 19802 + AegisName: C_Lazy_Ninetail + Name: Costume Lazy Ninetail + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 296 + - Id: 19803 + AegisName: C_Windtoy_Hat + Name: Costume Windtoy Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 456 + - Id: 19804 + AegisName: C_Red_Vane_Hairpin + Name: Costume Red Vane Hairpin + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1044 + - Id: 19805 + AegisName: C_Taboo_Curse_Scroll + Name: Costume Curse Scroll + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1045 + - Id: 19806 + AegisName: C_Full_Bloom_Hairpin + Name: Costume Bloom Hairpin + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1046 + - Id: 19807 + AegisName: C_Majestihelm + Name: Costume Majestihelm + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1047 + - Id: 19808 + AegisName: C_Blazing_Sun + Name: Costume Blazing Sun + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 654 + - Id: 19810 + AegisName: C_Ifrit_Ear + Name: Costume Ifrit Ear + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 422 + - Id: 19811 + AegisName: C_Beer_Hat + Name: Costume Beer Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 418 + - Id: 19812 + AegisName: C_Big_Hibiscus + Name: Costume Big Hibiscus + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 333 + - Id: 19813 + AegisName: C_Icecream_Hat + Name: Costume Icecream Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 488 + - Id: 19814 + AegisName: C_Bright_Wig + Name: Costume Bright Wig + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 306 + - Id: 19815 + AegisName: C_Lolita_Ten_Gallon_Hat + Name: Costume Lolita Ten Gallon Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1048 + - Id: 19816 + AegisName: C_Pecopeco_Cap + Name: Costume Pecopeco Cap + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1049 + - Id: 19817 + AegisName: C_Ifrits_Breath + Name: Costume Ifrits Breath + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1050 + - Id: 19818 + AegisName: C_Drooping_Morooc_Minion + Name: Costume Drooping Morooc Minion + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 600 + - Id: 19819 + AegisName: C_Gang_Doogun + Name: Costume Gang Doogun + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 491 + - Id: 19821 + AegisName: C_Hyegun_Hat + Name: Costume Yao Jun + Type: Armor + Buy: 20 + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 375 + - Id: 19822 + AegisName: C_Yellow_Doogun + Name: Costume Yellow Doogun + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 309 + - Id: 19823 + AegisName: C_White_Cat_Hood + Name: Costume White Cat Hood + Type: Armor + Buy: 20 + Weight: 10 + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1052 + - Id: 19824 + AegisName: C_Evil_Druid_Hat + Name: Costume Evil Druid Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1053 + - Id: 19825 + AegisName: C_Vicious_Stop_Bandage + Name: Costume Vicious Stop Bandage + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1054 + - Id: 19826 + AegisName: C_Ice_Wing_Ear + Name: Costume Ice Wing Ear + Type: Armor + Buy: 20 + Weight: 10 + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 584 + - Id: 19827 + AegisName: C_Amistr_Cap + Name: Costume Amistr + Type: Armor + Buy: 20 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 643 + - Id: 19828 + AegisName: C_Fedora + Name: Costume Bucket Hat + Type: Armor + Buy: 20 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 195 + - Id: 19829 + AegisName: C_Straw_Hat + Name: Costume Straw Hat + Type: Armor + Buy: 20 + Locations: + Costume_Head_Top: true + View: 146 + - Id: 19830 + AegisName: C_Sunglasses + Name: Costume Sunglasses + Type: Armor + Buy: 10 + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 12 + - Id: 19831 + AegisName: C_Filir_Hat + Name: Costume Filir Hat + Type: Armor + Buy: 20 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 408 + - Id: 19832 + AegisName: C_Poring_Hat + Name: Costume Poring Hat + Type: Armor + Buy: 20 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 120 + - Id: 19833 + AegisName: C_Fillet + Name: Costume Fillet + Type: Armor + Buy: 20 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 34 + - Id: 19834 + AegisName: C_Baseball_Cap + Name: Costume Baseball Cap + Type: Armor + Buy: 20 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 216 + - Id: 19835 + AegisName: C_Lif_Doll_Hat + Name: Costume Lif Doll Hat + Type: Armor + Buy: 20 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 297 + - Id: 19836 + AegisName: C_L_Magestic_Goat + Name: Costume Majestic Goat + Type: Armor + Buy: 20 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 380 + - Id: 19837 + AegisName: C_Asara_Fairy + Name: Costume Asara Fairy Hat + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 492 + - Id: 19839 + AegisName: C_Vanilmirth_Hat + Name: Costume Vanilmirth Hat + Type: Armor + Buy: 20 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 317 + - Id: 19841 + AegisName: C_Dragonhelm_Copper + Name: Costume Dragon Helm Copper + Type: Armor + Buy: 20 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 454 + - Id: 19842 + AegisName: C_Puppy_Hat + Name: Costume Puppy Hat + Type: Armor + Buy: 20 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 234 + - Id: 19843 + AegisName: C_Cat_Hairband + Name: Costume Kitty Band + Type: Armor + Buy: 20 + Weight: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 2 + - Id: 19844 + AegisName: C_Turban + Name: Costume Turban + Type: Armor + Buy: 20 + Weight: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 7 + - Id: 19845 + AegisName: C_Hair_Protector + Name: Costume Bao Bao + Type: Armor + Buy: 20 + Weight: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 127 + - Id: 19846 + AegisName: C_Opera_Ghost_Mask + Name: Costume Opera Masque + Type: Armor + Buy: 20 + Weight: 10 + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 128 + - Id: 19847 + AegisName: C_Big_Sis_Ribbon + Name: Costume Big Ribbon + Type: Armor + Buy: 20 + Weight: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 28 + - Id: 19848 + AegisName: C_Angeling_Hat + Name: Costume Angeling Hat + Type: Armor + Buy: 20 + Weight: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 204 + - Id: 19849 + AegisName: C_Munak_Turban + Name: Costume Munak Hat + Type: Armor + Buy: 20 + Weight: 10 + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 51 + - Id: 19850 + AegisName: C_Bongun_Hat + Name: Costume Bongun Hat + Type: Armor + Buy: 20 + Weight: 10 + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 139 + - Id: 19851 + AegisName: C_Brown_Bear_Cap + Name: Costume Teddybear Hat + Type: Armor + Buy: 20 + Weight: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 143 + - Id: 19852 + AegisName: C_Galapago_Cap + Name: Costume Galapago Cap + Type: Armor + Buy: 20 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 192 + - Id: 19853 + AegisName: C_Filir_Wing_Ears + Name: Costume Filir Wings + Type: Armor + Buy: 20 + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 595 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bExpAddClass,Class_All,5; + - Id: 19854 + AegisName: C_Ear_Of_Black_Cat_ + Name: Costume Black Cat Ears + Type: Armor + Buy: 20 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 141 + - Id: 19856 + AegisName: C_Iceflake_Hat + Name: Costume Snow Cone Hat + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1080 + Script: | + bonus2 bAddEle,Ele_Fire,5; bonus2 bMagicAddEle,Ele_Fire,5; bonus2 bAddMonsterDropItem,11589,5; + - Id: 19857 + AegisName: C_King_Prawn_Hat + Name: Costume Crayfish Hat + Type: Armor + Buy: 10 + Weight: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 728 + - Id: 19858 + AegisName: C_Leaf_Headgear + Name: Costume Smokie Leaf + Type: Armor + Buy: 20 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 148 + - Id: 19859 + AegisName: C_Flying_Angel + Name: Costume Flying Angel + Type: Armor + Buy: 20 + Locations: + Costume_Head_Top: true + View: 264 + - Id: 19860 + AegisName: C_Cryptura_Hair_Cap + Name: Costume School Criatura Hat + Type: Armor + Buy: 20 + Locations: + Costume_Head_Top: true + View: 872 + - Id: 19861 + AegisName: C_Heart_Hair_Pin + Name: Costume Heart Hairpin + Type: Armor + Buy: 20 + Locations: + Costume_Head_Top: true + View: 126 + - Id: 19862 + AegisName: C_Horn_Of_Succubus + Name: Costume Succubus Horn + Type: Armor + Buy: 20 + Locations: + Costume_Head_Top: true + View: 150 + - Id: 19863 + AegisName: C_Inccubus_Horn + Name: Costume Incubus Horn + Type: Armor + Buy: 20 + Locations: + Costume_Head_Top: true + View: 156 + - Id: 19864 + AegisName: C_Dokebi's_Wig + Name: Costume Dokebi's Wig + Type: Armor + Buy: 20 + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + View: 302 + - Id: 19865 + AegisName: C_Joker_Jester + Name: Costume Joker Jester + Type: Armor + Buy: 20 + Locations: + Costume_Head_Top: true + View: 89 + - Id: 19866 + AegisName: C_Blue_Pajamas_Hat + Name: Costume Blue Pajamas + Type: Armor + Buy: 20 + Locations: + Costume_Head_Top: true + View: 501 + - Id: 19871 + AegisName: C_Music_Decoration + Name: Costume Decoration of Music + Type: Armor + Buy: 20 + Locations: + Costume_Head_Mid: true + View: 1074 + Trade: + Override: 100 + NoDrop: true + EquipScript: | + sc_start SC_DECORATION_OF_MUSIC,INFINITE_TICK,0; + UnEquipScript: | + sc_end SC_DECORATION_OF_MUSIC; + - Id: 19874 + AegisName: C_Carnival_Circlet + Name: Costume Carnival Circlet + Type: Armor + Buy: 20 + Locations: + Costume_Head_Top: true + View: 506 + - Id: 19876 + AegisName: C_Rabbit_Ear_Hat + Name: Costume Bunny Top Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 384 + - Id: 19878 + AegisName: C_Drooping_Bunny + Name: Costume Evolved Drooping Bunny + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 249 + - Id: 19882 + AegisName: C_Flowerpot_Mask + Name: Costume Flowerpot Mask + Type: Armor + Locations: + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1086 + - Id: 19883 + AegisName: C_Piamette_Hood + Name: Costume Piamette Hood + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1087 + - Id: 19884 + AegisName: C_Vanargandr_Helm + Name: Costume Vanargand Helm + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 804 + - Id: 19885 + AegisName: C_Blinker + Name: Costume Blinker + Type: Armor + Buy: 10 + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 82 + - Id: 19886 + AegisName: C_Luxury_Sunglasses + Name: Costume Purple Glasses + Type: Armor + Buy: 10 + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 26 + - Id: 19887 + AegisName: C_One_Eyed_Glass + Name: Costume Cyclops Glasses + Type: Armor + Buy: 10 + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 23 + - Id: 19888 + AegisName: C_Glasses + Name: Costume Glasses + Type: Armor + Buy: 10 + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 3 + - Id: 19889 + AegisName: C_Pair_Of_Red_Ribbon + Name: Costume Small Ribbons + Type: Armor + Locations: + Costume_Head_Mid: true + View: 169 + - Id: 19902 + AegisName: C_Cigar + Name: Costume Cigarette + Type: Armor + Locations: + Costume_Head_Low: true + View: 54 + - Id: 19903 + AegisName: C_Witchs_Hat + Name: Costume Witch's Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 717 + Script: | + bonus bVariableCastrate,-10; + - Id: 19910 + AegisName: C_Halloween_Hat + Name: Costume Halloween Hat + Type: Armor + Locations: + Costume_Head_Top: true + Refineable: true + View: 1098 + - Id: 19912 + AegisName: C_Cat_Eye + Name: "Costume: Cat eye" + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1100 + - Id: 19913 + AegisName: C_Poo_Poo_Hat + Name: Costume Poo Poo Hat + Type: Armor + Locations: + Costume_Head_Top: true + Refineable: true + View: 76 + - Id: 19914 + AegisName: Felock_Cap + Name: Felrock's Hat + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1101 + - Id: 19916 + AegisName: C_Black_Cat_Hat + Name: Costume Black Cat Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1105 + - Id: 19917 + AegisName: C_Gloomy_Pumpkin_Hat + Name: Costume Pumpkin Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 691 + Script: | + bonus bSpeedRate,25; + - Id: 19918 + AegisName: C_Lude_Mask + Name: Costume Lude Mask + Type: Armor + Locations: + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 802 + Script: | + bonus bAddItemHealRate,20; + - Id: 19919 + AegisName: C_Cube_Mask_ + Name: Costume Quve Mask + Type: Armor + Locations: + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 472 + Script: | + bonus bAspdRate,10; + - Id: 19920 + AegisName: C_Adv_Whisper_Mask + Name: Costume Evolved Whisper Mask + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 458 + Script: | + bonus bFlee,20; + - Id: 19922 + AegisName: C_Noah_Hat + Name: Costume Noah's Hat + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 636 + - Id: 19925 + AegisName: C_One_Eyed_Glasses + Name: Costume Monocle + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 807 + - Id: 19928 + AegisName: C_Gothic_Heart_Wing + Name: Costume Gothic Heart Wing + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1111 + - Id: 19929 + AegisName: C_Classical_Ribbon + Name: Costume Classical Ribbon + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + View: 1112 + - Id: 19930 + AegisName: C_Angel_Mini_Silk_Hat + Name: Costume Angel Mini Silk Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1113 + - Id: 19931 + AegisName: C_Lazy_Raccoon + Name: Costume Lazy Smokie + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + View: 168 + - Id: 19932 + AegisName: C_Cap_Of_Concentration + Name: Costume Model Training Hat + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + View: 157 + - Id: 19934 + AegisName: C_10Gallon_Hat_Of_Flame + Name: Costume Alive Ten Gallon Hat Of Flame + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1075 + - Id: 19935 + AegisName: C_Hunting_Cap_Of_Gust + Name: Costume Hunting Cap Of Gust + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1076 + - Id: 19936 + AegisName: C_Knit_Cap_Of_Water + Name: Costume Knit Cap Of Water + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1077 + - Id: 19937 + AegisName: C_Silk_Hat_Of_Earth + Name: Costume Silk Hat of Earth + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1078 + - Id: 19938 + AegisName: C_Love_Rabbit_Hood + Name: Costume Love Rabbit Hood + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 549 + Trade: + Override: 100 + NoDrop: true + - Id: 19939 + AegisName: C_Antler + Name: Costume Antlers + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 71 + - Id: 19941 + AegisName: C_Ear_Mufs + Name: Costume Ear Muffs + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 70 + - Id: 19949 + AegisName: C_RWC2013_Japan_Hat + Name: Costume RWC2013 Japan Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1136 + - Id: 19952 + AegisName: C_Bubble_Gum_in_Mouth + Name: Costume Bubble Gum in Mouth + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 572 + - Id: 19953 + AegisName: C_Parade_Cap + Name: Costume Parade Cap + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 465 + - Id: 19954 + AegisName: C_3D_Glasses + Name: Costume 3D Glasses + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 661 + - Id: 19955 + AegisName: C_Mini_Tree_J + Name: Costume Mini Tree J + Type: Armor + Locations: + Costume_Head_Top: true + View: 727 + - Id: 19956 + AegisName: C_Soldier_Hat + Name: Costume Soldier Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 420 + - Id: 19957 + AegisName: C_Scooter_Hat + Name: Costume Scooter Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 588 + - Id: 19958 + AegisName: C_Choir_Hat + Name: Costume Choir Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1137 + - Id: 19959 + AegisName: C_Drooping_Argiope + Name: Costume Drooping Argiope + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1138 + - Id: 19960 + AegisName: C_Chain_Puppet + Name: Costume Chain Puppet + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1139 + - Id: 19961 + AegisName: C_Rune_Circlet + Name: Costume Rune Circlet + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 623 + - Id: 19962 + AegisName: C_Mitra + Name: Costume Mitra + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 624 + - Id: 19963 + AegisName: C_Driver_Band_R + Name: Costume Driver Band(Red) + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 626 + - Id: 19964 + AegisName: C_Driver_Band_Y + Name: Costume Driver Band(Yellow) + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 637 + - Id: 19965 + AegisName: C_Shadow_Handicraft + Name: Costume Shadow Handicraft + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 627 + - Id: 19966 + AegisName: C_Minstrel_Song_Hat + Name: Costume Minstrel Song's Hat + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 628 + - Id: 19967 + AegisName: C_Midas_Whisper + Name: Costume Midas Whisper + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 629 + - Id: 19968 + AegisName: C_Magic_Stone_Hat + Name: Costume Magic Stone Hat + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 630 + - Id: 19969 + AegisName: C_Blazing_Soul + Name: Costume Blazing Soul + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 631 + - Id: 19970 + AegisName: C_Wind_Whisper + Name: Costume Wind Whisper + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 633 + - Id: 19971 + AegisName: C_Dying_Swan + Name: Costume Dying Swan + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 635 + - Id: 19972 + AegisName: C_Protect_Of_Crown + Name: Costume Protect Of Crown + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1140 + - Id: 19973 + AegisName: C_Circlet_Of_Bone + Name: Costume Circlet Of Bones + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1141 + - Id: 19974 + AegisName: C_Camouflage_RabbitHood + Name: Costume Camouflage Rabbit Hood + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1142 + - Id: 19976 + AegisName: C_Cat_Santa_Hat + Name: Cat Santa Hat + Type: Armor + Buy: 20 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1144 + Script: | + bonus bAspdRate,10; bonus bSpeedRate,25; + - Id: 19977 + AegisName: C_Golden_Exclamation + Name: Costume Golden Exclamation Mark + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1145 + - Id: 19978 + AegisName: C_Silver_Exclamation + Name: Costume Silver Exclamation Mark + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1146 + - Id: 19979 + AegisName: C_Golden_Question + Name: Costume Golden Question Mark + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1147 + - Id: 19980 + AegisName: C_Silver_Question + Name: Costume Silver Question Mark + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1148 + - Id: 19982 + AegisName: C_Santa's_Hat + Name: Costume Santa Hat + Type: Armor + Locations: + Costume_Head_Top: true + View: 20 + - Id: 19983 + AegisName: C_Flower_Hairpin + Name: Costume Flower Hairpin + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 145 + - Id: 19984 + AegisName: C_Winter_Hat + Name: Costume Fashion Winter Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 196 + - Id: 19985 + AegisName: C_Aura_Quartz_Crown + Name: Costume Aura Quartz + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 866 + - Id: 19986 + AegisName: C_Lunatic_Hat + Name: Costume Lunatic Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 521 + - Id: 19987 + AegisName: C_Blue_Fur_Hat + Name: Costume Blue Fur Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 280 + - Id: 19988 + AegisName: C_Elder_Crown + Name: Costume Elder Crown + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 933 + - Id: 19989 + AegisName: C_Mouton_Life + Name: Costume Mouton Life + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1156 + - Id: 19990 + AegisName: C_Snow_Rabbit_Knit_Hat + Name: Costume Rabbit Knit Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1157 + - Id: 19991 + AegisName: C_Galanthus_Guard + Name: Costume Galanthus Guard + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1158 + - Id: 19992 + AegisName: C_Chilly_Breath + Name: Costume Chilly Breath + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 885 + - Id: 19994 + AegisName: C_saLUsalo_Hat + Name: Costume saLUsalo Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1171 + - Id: 19997 + AegisName: C_Bomb_Hat + Name: Costume Bomb Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1191 + - Id: 19998 + AegisName: C_Dragon_Turtle_Hat + Name: Costume Dragon Turtle Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1192 + - Id: 19996 + AegisName: Horse_King + Name: Horse King + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1189 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 19999 + AegisName: C_Mouse_Hat1 + Name: Costume Mouse Hat 1 + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1193 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 20000 + AegisName: C_Mouse_Hat2 + Name: Costume Mouse Hat 2 + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1194 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 20001 + AegisName: C_Mouse_Hat3 + Name: Costume Mouse Hat 3 + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1195 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 20002 + AegisName: C_Mouse_Hat4 + Name: Costume Mouse Hat 4 + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1196 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 20003 + AegisName: C_Mouse_Hat5 + Name: Costume Mouse Hat 5 + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1197 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 20004 + AegisName: C_Big_Golden_Bell + Name: Costume Big Golden Bell + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 175 + - Id: 20005 + AegisName: C_Pegasus_Wing_Ears + Name: Costume Sigrun Wing + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 568 + - Id: 20006 + AegisName: C_Dark_Knight_Mask + Name: Costume Dark Knight Mask + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 479 + - Id: 20007 + AegisName: C_Bullock_Helm_J + Name: Costume Horned Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 322 + - Id: 20008 + AegisName: C_General_Helmet + Name: Costume Dragon General Helm + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 729 + - Id: 20009 + AegisName: C_Dragon_Skull + Name: Costume Dragon Skull Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 319 + - Id: 20010 + AegisName: C_Rainbow_Wing_Ears + Name: Costume Rainbow Ears Feather + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1198 + - Id: 20011 + AegisName: C_Lightning_Speed + Name: Costume Lightning Speed + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1199 + - Id: 20012 + AegisName: C_Double_Horn_Helm + Name: Costume Double Horn Helm + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1200 + - Id: 20013 + AegisName: C_Chef_Hat + Name: Costume Chef Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 111 + - Id: 20014 + AegisName: Lincoln_Hat + Name: Costume Lincoln Hat + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + View: 1204 + - Id: 20015 + AegisName: Lincoln_Beard + Name: Costume Lincoln Beard + Type: Armor + Buy: 10 + Locations: + Costume_Head_Low: true + View: 1205 + - Id: 20016 + AegisName: Lobster_Hat + Name: Costume Cool Dinner Hat + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + View: 1206 + - Id: 20017 + AegisName: C_Marionette_Doll + Name: Costume Marionette Doll + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + View: 212 + - Id: 20018 + AegisName: C_Holo_Ear + Name: Costume Holo Ear + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + View: 1208 + - Id: 20019 + AegisName: Beret_Of_Artist + Name: Costume Beret Of Artist + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + View: 1209 + - Id: 20020 + AegisName: C_Zaha_Doll_Hat + Name: Costume Zaha Doll Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 461 + - Id: 20021 + AegisName: C_Heart_Ribbon_Hairband + Name: Costume Heart Ribbon Hairband + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 708 + - Id: 20022 + AegisName: C_Love_Piece + Name: Costume Love Fragment + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 734 + - Id: 20023 + AegisName: C_Red_Beret + Name: Costume Red Beret + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 559 + - Id: 20024 + AegisName: C_Orange_Ribbon + Name: Costume Orange Ribbon + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 247 + - Id: 20025 + AegisName: C_Cow_Hat1 + Name: Costume Cow Hat 1 + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1211 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,2; bonus2 bAddMonsterDropItem,519,100; + - Id: 20026 + AegisName: C_Cow_Hat2 + Name: Costume Cow Hat 2 + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1212 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,2; bonus2 bAddMonsterDropItem,519,100; + - Id: 20027 + AegisName: C_Cow_Hat3 + Name: Costume Cow Hat 3 + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1213 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,2; bonus2 bAddMonsterDropItem,519,100; + - Id: 20028 + AegisName: C_Cow_Hat4 + Name: Costume Cow Hat 4 + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1214 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,2; bonus2 bAddMonsterDropItem,519,100; + - Id: 20029 + AegisName: C_Donut_in_Mouth + Name: Costume Donut in Mouth + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 569 + - Id: 20030 + AegisName: C_Choco_Donut_in_Mouth + Name: Costume Choco Donut in Mouth + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 653 + - Id: 20031 + AegisName: C_Bunny_Head_Dress + Name: Costume Bunny Headress + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1215 + - Id: 20032 + AegisName: C_Firinto_Scarf + Name: Costume Firinto Scarf + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1216 + - Id: 20033 + AegisName: C_Buddhist_Priest_Crown + Name: Costume Monk Crown + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1217 + - Id: 20034 + AegisName: C_Jack_Castle_Bat + Name: Costume Jack Castle Bat + Type: Armor + Buy: 10 + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1041 + - Id: 20035 + AegisName: C_Miracle_Blue_Rose + Name: Costume Miracle Blue Rose + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1064 + - Id: 20036 + AegisName: C_Sword_Master_Crown + Name: Costume Sword Master Crown + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 981 + - Id: 20037 + AegisName: C_Owlduke_Silk_Hat + Name: Costume Owlduke Silk Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 982 + - Id: 20038 + AegisName: C_Alphonse_Helmet + Name: Costume Alphonse Helmet + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + View: 1214 + - Id: 20039 + AegisName: C_Butterfly_Wing_Ear_J + Name: Costume Butterfly Wing Ears + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 695 + - Id: 20040 + AegisName: C_Rose_Crown + Name: Costume Chung Hairpin + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 583 + - Id: 20041 + AegisName: C_Earth_Goddess_Flower + Name: Costume Rose Headband + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 864 + - Id: 20042 + AegisName: C_Hermose_Cap + Name: Costume Hermos Cap + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 478 + - Id: 20043 + AegisName: C_Red_Cherry_Blossom + Name: Costume Cherryblossom in Mouth + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 823 + - Id: 20044 + AegisName: C_Carmen_Miranda_Hat + Name: Costume Carmen Miranda's Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 329 + - Id: 20045 + AegisName: C_Samambaia + Name: Costume Samambaia + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 508 + - Id: 20046 + AegisName: C_Decoration_bluerose + Name: Costume Blue Ribbon Band + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1222 + - Id: 20047 + AegisName: C_Pray_Cherry_Blossom + Name: Costume Prayer Cherry Blossom + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1223 + - Id: 20048 + AegisName: C_Wind_Of_The_Prairie + Name: Costume Wind Prairie + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1224 + - Id: 20049 + AegisName: C_Plaster + Name: Costume Giant Band Aid + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 147 + - Id: 20050 + AegisName: C_Ph.D_Hat + Name: Costume Ph.D Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 98 + - Id: 20051 + AegisName: C_Stop_Post + Name: Costume Stop Post + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 59 + - Id: 20052 + AegisName: C_AFK_Hat + Name: Costume AFK Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 471 + - Id: 20053 + AegisName: C_W_King_Tiger_Doll_Hat + Name: Costume White King Tiger Doll Hat + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 973 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 20054 + AegisName: C_Baby_Pacifier + Name: Costume Baby Pacifier + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 191 + - Id: 20055 + AegisName: C_Ghost_Bandana + Name: Costume Ghost Bandana + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 61 + - Id: 20056 + AegisName: C_Bride_Corolla + Name: Costume Bride's Corolla + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 437 + - Id: 20057 + AegisName: C_Feather_Bonnet + Name: Costume Feather Bonnet + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 104 + - Id: 20058 + AegisName: C_Hot_Blood_Headband + Name: Costume Hot Blood Headband + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 154 + - Id: 20059 + AegisName: C_Welding_Mask + Name: Costume Welding Mask + Type: Armor + Locations: + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 79 + - Id: 20060 + AegisName: C_Construction_Helmet + Name: Costume Construction Helmet + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 95 + - Id: 20061 + AegisName: C_Demo_Mask + Name: Costume Demo Mask + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 52 + - Id: 20062 + AegisName: C_Angel_Stair + Name: Costume Angel Stair + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + EquipScript: | + sc_start SC_HAT_EFFECT,INFINITE_TICK,0; + UnEquipScript: | + sc_end SC_HAT_EFFECT; + - Id: 20063 + AegisName: C_Yellow_Brain_Hat + Name: Costume Yellow Brain Hat + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1228 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 20064 + AegisName: C_Blue_Brain_Hat + Name: Costume Blue Brain Hat + Type: Armor + Buy: 10 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1229 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 20065 + AegisName: C_Hairband_Of_Grandpeco + Name: Costume Grand Peco Hairband + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 473 + - Id: 20066 + AegisName: C_Pecopeco_Hairband + Name: Costume Pecopeco Hairband + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 314 + - Id: 20067 + AegisName: C_White_Rabbit_Headband + Name: Costume White Rabbit Headband + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 719 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 20068 + AegisName: C_Black_Rabbit_Headband + Name: Costume Black Rabbit Headband + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 718 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 20069 + AegisName: C_Gryphon_Hairband + Name: Costume Gryphon Hairband + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1233 + - Id: 20070 + AegisName: C_Alpaca_Hood + Name: Costume Alpaca Hood + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1234 + - Id: 20071 + AegisName: C_Worg_In_Mouth + Name: Costume Worg In Mouth + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1235 + - Id: 20073 + AegisName: C_Hair_Band + Name: Costume Hair Band + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 9 + - Id: 20074 + AegisName: C_Biretta + Name: Costume Biretta + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 11 + - Id: 20075 + AegisName: C_Little_Fhat + Name: Costume Little Feather Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 715 + - Id: 20076 + AegisName: C_Idun_Wing_Ears + Name: Costume Idun Feather Ears + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 724 + - Id: 20077 + AegisName: C_Wing_Form_Spectacle + Name: Costume Wing Frame Sunglasses + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 925 + - Id: 20078 + AegisName: C_White_Feather + Name: Costume White Feather + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 741 + - Id: 20079 + AegisName: C_Love_Daddy_2013 + Name: Costume Forgotten Angel Wing + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1104 + - Id: 20080 + AegisName: C_Shaman's_Hair_Orna + Name: Costume Shaman Hair Ornament + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 476 + - Id: 20081 + AegisName: C_Metal_Dragon_Helm + Name: Costume Metal Dragon Helm + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1242 + - Id: 20082 + AegisName: C_Metal_Dragon_Hat + Name: Costume Metal Dragon Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1243 + - Id: 20083 + AegisName: C_Mythlit_Hat + Name: Costume Mythlit Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1244 + - Id: 20084 + AegisName: C_Clover_Coronet + Name: Costume Ceremonial Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 325 + - Id: 20085 + AegisName: C_Clover_Silkhat + Name: Costume St Patrick's Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 735 + - Id: 20086 + AegisName: C_Dragon_Cintamani_Hat1 + Name: Costume Dragon Cintamani Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1245 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 20087 + AegisName: C_Dragon_Cintamani_Hat2 + Name: Costume Dragon Cintamani Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1246 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 20088 + AegisName: C_Dragon_Cintamani_Hat3 + Name: Costume Dragon Cintamani Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1247 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 20089 + AegisName: C_Dragon_Cintamani_Hat4 + Name: Costume Dragon Cintamani Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1248 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 20090 + AegisName: C_Egg_Shell + Name: Costume Egg Shell + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 101 + - Id: 20091 + AegisName: C_Smoking_Pipe + Name: Costume Pipe + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 55 + - Id: 20092 + AegisName: C_Sales_Signboard + Name: Costume Sales Banner + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 183 + - Id: 20093 + AegisName: C_Star_Sparkling + Name: Costume Wizard Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 36 + - Id: 20094 + AegisName: C_Fillet_Green + Name: Costume Green Ribbon + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 439 + - Id: 20095 + AegisName: C_Fillet_Red + Name: Costume Red Ribbon + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 440 + - Id: 20096 + AegisName: C_Fillet_Blue + Name: Costume Blue Ribbon + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 441 + - Id: 20097 + AegisName: C_Fillet_White + Name: Costume White Ribbon + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 442 + - Id: 20098 + AegisName: C_Vampire_Hairband + Name: Costume Vampire Hairband + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1238 + - Id: 20099 + AegisName: C_Ljosalfar + Name: Flying Ljosalfar + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1239 + EquipScript: | + sc_start SC_LJOSALFAR,INFINITE_TICK,0; + UnEquipScript: | + sc_end SC_LJOSALFAR; + - Id: 20100 + AegisName: C_Volume_Fhat + Name: Costume Volume Fhat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1240 + - Id: 20101 + AegisName: C_Bragi_Wing_Ears + Name: Costume Bragi Wing Ears + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1241 + - Id: 20102 + AegisName: C_Horse_King_J + Name: Costume Horse King J + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1189 + - Id: 20103 + AegisName: C_Drooping_Panda + Name: Costume Drooping Panda + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1029 + - Id: 20104 + AegisName: C_Picky_Egg_Shell + Name: Costume Picky Egg Shell + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1001 + - Id: 20105 + AegisName: C_Fish_Head_Hat + Name: Costume Fish Head + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 386 + - Id: 20106 + AegisName: C_Classic_Hat + Name: Costume Classic Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 475 + - Id: 20107 + AegisName: C_Fish_In_Mouth + Name: Costume Fish In Mouth + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 406 + - Id: 20108 + AegisName: C_Blind_Glasses + Name: Costume Blind Glasses + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 813 + - Id: 20109 + AegisName: C_Jolly_Roger + Name: Costume Jolly Roger Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 962 + - Id: 20110 + AegisName: C_Coiledup_Snake + Name: Costume Coiledup Snake + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1258 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 20111 + AegisName: C_Coiledup_Snake_Hat2 + Name: Costume Coiledup Snake Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1259 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 20112 + AegisName: C_Aqua_Ten_Gallon_Hat + Name: Costume Aqua Ten Gallon Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1256 + - Id: 20113 + AegisName: C_Star_Reading_Hat + Name: Costume Star Reading Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1253 + - Id: 20114 + AegisName: C_Funeral_Costume + Name: Costume Funeral Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 77 + - Id: 20115 + AegisName: C_Under_Rim_Glasses + Name: Under Rim Glasses + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1255 + - Id: 20116 + AegisName: C_Mermaid_Headphone + Name: Mermaid Headphone + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1254 + - Id: 20117 + AegisName: C_Raspberry_Mousse_Hat + Name: Raspberry Mousse Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1257 + - Id: 20118 + AegisName: C_Hat_Of_Cake + Name: Costume Cake Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 109 + - Id: 20119 + AegisName: C_Fur_Hat + Name: Costume Beanie + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 160 + - Id: 20120 + AegisName: C_Antenna + Name: Costume Aerial + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 97 + - Id: 20121 + AegisName: C_Lotus_Flower_Hat + Name: Costume Flower Lily + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 324 + - Id: 20122 + AegisName: Happy_Summer_Ribbon + Name: Costume Happy Summer Ribbon + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1260 + - Id: 20123 + AegisName: C_Eagle_Eyes + Name: Costume Eagle Eyes + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 63 + - Id: 20124 + AegisName: C_Masquerade + Name: Costume Masquerade + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 78 + - Id: 20125 + AegisName: C_Mini_Glasses + Name: Costume Mini Glasses + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 47 + - Id: 20126 + AegisName: C_Odium_Thanatos_Mask + Name: Costume Odium Thanatos Mask + Type: Armor + Locations: + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 667 + - Id: 20127 + AegisName: C_Abysmal_Knight_Helm + Name: Costume Abysmal Knight Helm + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 371 + - Id: 20128 + AegisName: C_Remover_Hat + Name: Costume Remover Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 655 + - Id: 20129 + AegisName: C_Poporing_Cap + Name: Costume Poporing Cap + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 361 + - Id: 20130 + AegisName: C_Whisper_Tall_Hat + Name: Costume Whisper Tall Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1265 + - Id: 20131 + AegisName: C_C_Tower_Manager_Incom + Name: Costume Clock Tower Manager + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1266 + - Id: 20132 + AegisName: C_Subject_Aura + Name: Costume Aura Vicious Mind + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1267 + - Id: 20133 + AegisName: C_Poring_Mascot_Costume + Name: Costume Poring Mascot + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1268 + - Id: 20134 + AegisName: C_Helm_Of_Abyss_White + Name: Costume White Helm Of Abyss + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1269 + - Id: 20135 + AegisName: C_12_Anniversary_Crown_Of_Saint + Name: Costume 12 Anniversary Crown of Saint + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1117 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 20136 + AegisName: C_12_Anniversary_Elf_Ears + Name: Costume 12 Anniversary Elf Ears + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 875 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 20137 + AegisName: C_Bomb_Wick + Name: Costume Bomb Wick + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 66 + - Id: 20138 + AegisName: C_Sea_Otter_Hat + Name: Costume Sea Otter Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 162 + - Id: 20139 + AegisName: C_Horse_Hairpin + Name: Costume Horse Hairpin + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1271 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 20140 + AegisName: C_Horse_Hairpin_ + Name: Costume Horse Hairpin + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1272 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 20141 + AegisName: C_Observer + Name: Costume Observer + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 337 + - Id: 20142 + AegisName: C_Machoman_Glasses + Name: Costume Machoman Glasses + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 92 + - Id: 20143 + AegisName: C_Candy_Cane_In_Mouth + Name: Costume Candy Cane In Mouth + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 665 + - Id: 20144 + AegisName: C_Ancient_Elven_Ear + Name: Costume Ancient Elven Ear + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 665 + - Id: 20145 + AegisName: C_Robo_Eye + Name: Costume Robo Eye + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 345 + - Id: 20146 + AegisName: C_Angel_Spirit + Name: Costume Angel of Ghost + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 394 + - Id: 20147 + AegisName: C_Bell_Pigeon + Name: Costume Bell of Piegon + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1034 + - Id: 20148 + AegisName: C_Musketeer_Hat + Name: Costume Musketeer Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 466 + - Id: 20149 + AegisName: C_Hexagon_Spectacles + Name: Costume Hexagon Glasses + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 822 + - Id: 20150 + AegisName: C_Wind_Fan + Name: Costume Wind Fan + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1051 + - Id: 20151 + AegisName: C_Poison_Spore_Hat + Name: Costume Poison Spore Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 899 + - Id: 20152 + AegisName: C_Straw_Rice_Bag + Name: Costume Straw Rice Bag + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1273 + - Id: 20153 + AegisName: C_Monochrome_Cap + Name: Costume Monochrome Cap + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1274 + - Id: 20154 + AegisName: C_Maple_Which_Falls + Name: Costume Maple Which Falls + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1275 + EquipScript: | + sc_start SC_MAPLE_FALLS,INFINITE_TICK,0; + UnEquipScript: | + sc_end SC_MAPLE_FALLS; + - Id: 20155 + AegisName: C_Ladys_Feather_Hat + Name: Costume Lady's Feather Hat + Type: Armor + Locations: + Costume_Head_Top: true + View: 1276 + - Id: 20156 + AegisName: C_Fan_in_Mouth + Name: Costume Fan in Mouth + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 857 + - Id: 20157 + AegisName: C_Fish_On_Head + Name: Costume Evolved Blue Fish + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 149 + - Id: 20158 + AegisName: C_Circlet + Name: Costume Circlet + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 18 + - Id: 20159 + AegisName: C_Blue_Hair_Band + Name: Costume Blue Hairband + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 136 + - Id: 20160 + AegisName: C_Fried_Egg + Name: Costume Magnolia Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 373 + - Id: 20161 + AegisName: C_Prontera_Army_Cap + Name: Costume Army Cap + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 48 + - Id: 20162 + AegisName: C_Fleece_Hat + Name: Costume Fleece Hat + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1277 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 20163 + AegisName: C_Fleece_Hat_ + Name: Costume Fleece Hat + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1278 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 20164 + AegisName: C_Duneyrr_Hat + Name: Costume Duneyrr Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 639 + - Id: 20165 + AegisName: C_Tendrilion_Hat + Name: Costume Tendrilion Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 658 + - Id: 20166 + AegisName: C_Hockey_Mask + Name: Costume Hockey Mask + Type: Armor + Locations: + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 336 + - Id: 20167 + AegisName: C_Deviruchi_Headphone + Name: Costume Deviruchi Headphone + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 805 + - Id: 20168 + AegisName: C_Skull_Hood + Name: Costume Skull Hood + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 598 + - Id: 20169 + AegisName: C_Long_Tongue + Name: Costume Long Tongue + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 773 + - Id: 20170 + AegisName: C_Brown_Deviruchi_Cap + Name: Costume Brown Deviruchi Cap + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 273 + - Id: 20171 + AegisName: C_Sepia_Cap + Name: Costume Sepia Cap + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1280 + - Id: 20172 + AegisName: C_Pumpkin_Head + Name: Costume Pumpkin Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1281 + - Id: 20173 + AegisName: C_Lude_Hood + Name: Costume Lude Hood + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1282 + - Id: 20174 + AegisName: C_Halloween_Hat_Orange + Name: Costume Orange Halloween Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1283 + - Id: 20175 + AegisName: C_Diabolic_Headphone + Name: Costume Diabolic Headphone + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1284 + - Id: 20176 + AegisName: Happy_Pierrot_Mask + Name: Costume Happy Pierrot Mask + Type: Armor + Locations: + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1288 + - Id: 20177 + AegisName: C_Drooping_Dorasuke + Name: Costume Drooping Dorasuke + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1290 + - Id: 20178 + AegisName: C_Puppy_Love + Name: Costume Puppy Love + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 94 + - Id: 20179 + AegisName: C_Monkey_On_Fur_Hat + Name: Costume Monkey Coat Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 858 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 20180 + AegisName: C_Westren_Grace + Name: Costume Western Grace + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 32 + - Id: 20181 + AegisName: C_Mistic_Rose + Name: Costume Mystic Rose + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 198 + - Id: 20182 + AegisName: C_Mottled_Egg_Shell + Name: Costume Rainbow Eggshell + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 124 + - Id: 20183 + AegisName: C_There_Is_Something + Name: Costume There's..Something.. + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1091 + - Id: 20184 + AegisName: C_Party_Hat + Name: Costume Party Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 144 + - Id: 20185 + AegisName: C_Fashionable_Glasses + Name: Costume Fashionable Glasses + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 131 + - Id: 20186 + AegisName: C_Magni_Cap + Name: Costume Magni's Cap + Type: Armor + Buy: 20 + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 250 + - Id: 20187 + AegisName: C_Fricca's_Circlet + Name: Costume Fricca's Circlet + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 251 + - Id: 20188 + AegisName: C_Morpheus's_Hood + Name: Costume Morpheus's Hood + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 256 + - Id: 20189 + AegisName: C_Goibne's_Helm + Name: Costume Goibne's Helm + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 258 + - Id: 20190 + AegisName: C_Chick_Hat_J + Name: Costume Chick Hat J + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 432 + - Id: 20191 + AegisName: C_Black_Cat_Ears_Beret + Name: Costume Black Cat Ears Beret + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1071 + - Id: 20192 + AegisName: C_Green_Foxtail + Name: Costume Green Foxtail + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1058 + - Id: 20193 + AegisName: C_Foxtail + Name: Costume Foxtail + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 711 + - Id: 20194 + AegisName: C_Lion_Mask + Name: Costume Lion Mask + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 202 + - Id: 20195 + AegisName: C_Scratching_Cat + Name: Costume Scratching Cat + Type: Armor + Locations: + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1292 + - Id: 20196 + AegisName: C_Leopard_Ear_Hat + Name: Costume Leopard Ear Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1293 + - Id: 20197 + AegisName: C_Amistr_Beret + Name: Costume Amistr Beret + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1294 + - Id: 20198 + AegisName: C_Misty_Ears + Name: Costume Misty Ears + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1295 + - Id: 20199 + AegisName: C_Evil_Marcher_Hat + Name: Costume Evil Marcher Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 687 + - Id: 20200 + AegisName: C_Rabbit_Head_Dress + Name: Costume Rabbit Head Dress + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1095 + - Id: 20201 + AegisName: C_Banshee_Master_Kiss + Name: Costume Banshee Master Kiss + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 959 + - Id: 20202 + AegisName: C_Deviruchi_Balloon + Name: Costume Deviruchi Balloon + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1082 + - Id: 20203 + AegisName: C_Bandana + Name: Costume Bandana + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 6 + - Id: 20204 + AegisName: C_Hunting_Cap + Name: Costume Hunter Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 389 + - Id: 20205 + AegisName: C_Fancy_Flower + Name: Costume Fancy Flower + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 4 + - Id: 20206 + AegisName: C_Chicken_Hat + Name: Costume Chicken Hat + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1296 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 20207 + AegisName: C_Stripe_Band + Name: Costume Striped Hairband + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 133 + - Id: 20208 + AegisName: C_Necktie + Name: Costume Neck Tie + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 443 + - Id: 20209 + AegisName: C_Mermaid_Longing + Name: Costume Mermaid Bubbles + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1299 + EquipScript: | + sc_start SC_MERMAID_LONGING,INFINITE_TICK,0; + UnEquipScript: | + sc_end SC_MERMAID_LONGING; + - Id: 20210 + AegisName: C_Chicken_Hat_ + Name: Costume Chicken Hat + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1297 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 20211 + AegisName: C_Chicken_Hat__ + Name: Costume Chicken Hat + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1298 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 20212 + AegisName: C_Loki_Nidhogg_Hat + Name: Costume Loki & Nidhoggur's Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1304 + - Id: 20213 + AegisName: C_Sirt_Evil_Eye + Name: Costume Robot Eyes + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 345 + - Id: 20214 + AegisName: C_Evil_Marcher_Hat_J + Name: Costume Evil Marcher Hat J + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1002 + - Id: 20215 + AegisName: C_Black_Devil_Mask + Name: Costume Black Devil Mask + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 760 + - Id: 20216 + AegisName: C_Rideword_Hat + Name: Costume Rideword Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 890 + - Id: 20217 + AegisName: C_Arabian_Veil + Name: Costume Arabian Veil + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1300 + - Id: 20218 + AegisName: C_Spell_Circuit + Name: Costume Spell Circuit + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1301 + - Id: 20219 + AegisName: C_Angel_Marcher_Hat + Name: Costume Angel Marcher Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1302 + - Id: 20220 + AegisName: C_Dark_Night_Veil + Name: Costume Dark Night Veil + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1303 + - Id: 20221 + AegisName: C_Eyes_Of_Ifrit + Name: C Eyes Of Ifrit + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 886 + - Id: 20222 + AegisName: C_Santa_Hat_2 + Name: Costume Blue Pigtail Santa Hat + Type: Armor + Locations: + Costume_Head_Top: true + View: 395 + - Id: 20223 + AegisName: C_Centimental_Leaf + Name: Costume Romantic Leaf + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 57 + - Id: 20224 + AegisName: C_Red_Tailed_Ribbon + Name: Costume Red Tailed Ribbon + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 167 + - Id: 20225 + AegisName: C_Pumpkin_Hat + Name: Costume Pumpkin-Head + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 206 + - Id: 20226 + AegisName: C_Hair_Brush + Name: Costume Red Comb + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 445 + - Id: 20227 + AegisName: C_Husky_Hat + Name: Costume Husky Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1016 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 20228 + AegisName: C_Pig_MoneyBox + Name: Costume Pig MoneyBox + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 603 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 20230 + AegisName: C_Mask_Of_Bankrupt + Name: Costume Bankruptcy Mask + Type: Armor + Locations: + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 936 + - Id: 20231 + AegisName: C_Snowman_Hat + Name: Costume Snowman Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 616 + - Id: 20232 + AegisName: C_Celines_Ribbon + Name: Costume Celine Ribbon + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 967 + - Id: 20233 + AegisName: C_Gold_Angel_Sculpture + Name: Costume Golden Angel + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 646 + - Id: 20234 + AegisName: C_Baphomet_Hat + Name: Costume Baphomet Hat + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1311 + Script: | + bonus bMaxHPrate,15; bonus bMaxSPrate,15; bonus2 bAddRace,RC_All,15; bonus2 bMagicAddRace,RC_All,15; bonus2 bAddItemHealRate,519,2015; + - Id: 20235 + AegisName: C_Frozen_Land_Rose + Name: Costume Frozen Rose + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1025 + - Id: 20236 + AegisName: C_Hellomother_Hat + Name: Costume Arc Angeling Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 241 + - Id: 20237 + AegisName: C_Pink_Fur_Hat + Name: Costume Pink Beanie + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 281 + - Id: 20238 + AegisName: C_Blue_Drooping_Kitty + Name: Costume Drooping Blue Cat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 277 + - Id: 20239 + AegisName: C_Large_Ribbon_Muffler + Name: Costume Large Ribbon Muffler + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1312 + - Id: 20240 + AegisName: C_Gift_Of_Snow + Name: Costume Gift of Snow + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + Script: | + /*TODO: ViewID*/ + - Id: 20241 + AegisName: C_Eclipse_Hat + Name: Costume Eclipse Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 922 + - Id: 20242 + AegisName: C_Snownow_Hat + Name: Costume Snownow Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1313 + - Id: 20243 + AegisName: C_Choco_Mint_Bonnet + Name: Costume Choco Mint Bonnet + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1314 + - Id: 20244 + AegisName: C_Zealotus_Mask + Name: Costume Zealotus Mask + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 200 + - Id: 20245 + AegisName: C_Cat_Paw_Hairpin + Name: Costume Cat Paw Hairpin + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 447 + - Id: 20246 + AegisName: C_Decoration_Time + Name: Costume Decoration Time + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1309 + EquipScript: | + sc_start SC_TIME_ACCESSORY,INFINITE_TICK,0; + UnEquipScript: | + sc_end SC_TIME_ACCESSORY; + - Id: 20247 + AegisName: C_Fate_Of_Black_Hand + Name: Costume Fate Of Black Hand + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1310 + - Id: 20248 + AegisName: C_Black_Strong_Hair + Name: Costume Black Strong Hair + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1315 + - Id: 20249 + AegisName: C_Red_Strong_Hair + Name: Costume Red Strong Hair + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1316 + - Id: 20250 + AegisName: C_White_Strong_Hair + Name: Costume White Strong Hair + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1317 + - Id: 20251 + AegisName: C_Rose_Cascade + Name: Costume Rose Cascade + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 920 + - Id: 20252 + AegisName: C_Accessory_of_Ascetic + Name: Costume Mage Decoration + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1150 + - Id: 20253 + AegisName: C_Droopy_Alice_Doll + Name: Costume Drooping Alicel + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 784 + - Id: 20254 + AegisName: C_Ribbon_Yellow + Name: Costume Yellow Ribbonn + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 243 + - Id: 20255 + AegisName: C_Love_Cheek + Name: Costume Love Cheeks + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1318 + - Id: 20256 + AegisName: C_Honey_Pancakes + Name: Costume Honey Pancake + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1319 + - Id: 20257 + AegisName: C_Black_Rabbit_Bonnet + Name: Costume Black Rabbit Bonnet + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1320 + - Id: 20258 + AegisName: C_Blue_Head_Dress + Name: Costume Blue Headdress + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1321 + - Id: 20259 + AegisName: C_Pink_Clover + Name: Costume Pink Clover + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1322 + - Id: 20260 + AegisName: C_Stardust + Name: Costume Stardust + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 81 + - Id: 20262 + AegisName: C_Fox_Ears_Bell_Ribbon + Name: Costume Fox Ears Drop Ribbon + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1070 + - Id: 20263 + AegisName: C_Hat_Of_Drowsy_Cat + Name: Costume Sleeping Cat Hat J + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 838 + - Id: 20264 + AegisName: C_Blood_Sucker + Name: Costume Blood Sucker + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 893 + - Id: 20265 + AegisName: C_Bird_Nest_Hat + Name: Costume Bird Nest Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 235 + - Id: 20266 + AegisName: C_Secret_Zipper + Name: Costume Secret Zipper + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1324 + - Id: 20267 + AegisName: C_Penguin_Cap + Name: Costume Penguin Cap + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1325 + - Id: 20268 + AegisName: C_Sleep_Eclipse_Family + Name: Costume Sleep Eclipse Family + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1326 + - Id: 20269 + AegisName: C_White_Fox_Ear_Ribbon + Name: Costume White Fox Ear Ribbon + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1327 + - Id: 20270 + AegisName: C_Gryphon_Wing_Ears + Name: Costume Gryphon Wing Ears + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1328 + - Id: 20271 + AegisName: C_Sunflower + Name: Costume Sunflower + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 37 + - Id: 20272 + AegisName: C_Snowy_Horn + Name: Costume Unicorn Horn + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 42 + - Id: 20273 + AegisName: C_Soft_Sheep_Hat + Name: Costume Soft Sheep Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 738 + - Id: 20274 + AegisName: C_Polar_Bear_Cap_J + Name: Costume Polar Bear Cap J + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 966 + - Id: 20277 + AegisName: C_Balloon_Hat + Name: Costume Balloon Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 385 + - Id: 20278 + AegisName: C_Man_Medal + Name: Costume Man's Medal + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 775 + - Id: 20279 + AegisName: C_Cheering_Whistle + Name: Costume Cheering Whistle + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 952 + - Id: 20280 + AegisName: C_Well-Chewed_Pencil + Name: Costume Well-Chewed Pencil + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 555 + - Id: 20281 + AegisName: C_Kindergarten_Hat + Name: Costume Kindergarten Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 977 + - Id: 20282 + AegisName: C_White_Student_Cap + Name: Costume White Student Cap + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 877 + - Id: 20283 + AegisName: C_Over_Protector + Name: Costume Over Protector + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1329 + - Id: 20284 + AegisName: C_Cherry_Blossom_Hat + Name: Costume Sakura Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1330 + - Id: 20285 + AegisName: C_Blossom_Fluttering + Name: Costume Dancing Fallen Sakura + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1331 + Trade: + Override: 100 + NoDrop: true + Script: | + hateffect HAT_EF_BLOSSOM_FLUTTERING,true; + UnEquipScript: | + hateffect HAT_EF_BLOSSOM_FLUTTERING,false; + - Id: 20286 + AegisName: C_Under_Rim_Glasses_Red + Name: Costume Under Rim Glasses Red + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1332 + - Id: 20287 + AegisName: C_Mans_Medal_Gold + Name: Costume Man's Medal(Gold) + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1333 + - Id: 20288 + AegisName: C_Bijou_Hat + Name: Costume Bijou Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1334 + - Id: 20291 + AegisName: C_Helm_of_Thoth + Name: Costume Helm of Thoth + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 860 + - Id: 20292 + AegisName: C_Black_Ramen_Hat + Name: Costume Black Ramen Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1338 + - Id: 20293 + AegisName: C_Sleeper_Hat + Name: Costume Sleeper Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 590 + - Id: 20294 + AegisName: C_Savage_Babe_Hat + Name: Costume Savage Babe Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 553 + - Id: 20295 + AegisName: C_Poring_Sunglasses + Name: Costume Poring Sunglasses + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 954 + - Id: 20296 + AegisName: C_Yoyo_Hat + Name: Costume Yoyo Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 391 + - Id: 20297 + AegisName: C_Cactus_Hat + Name: Costume Cactus Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 615 + - Id: 20298 + AegisName: C_Happy_Lunatic_Ear + Name: Costume Happy Lunatic Hanging Ear + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1340 + - Id: 20299 + AegisName: C_Face_Crusher + Name: Costume Face Crusher + Type: Armor + Locations: + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1341 + - Id: 20300 + AegisName: C_Hill_Wind_Mask + Name: Costume Hill Wind Mask + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1342 + - Id: 20301 + AegisName: C_Golden_Savage_Hat + Name: Costume Golden Savage Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 648 + - Id: 20302 + AegisName: C_Beelzebub_Crown + Name: Costume Beelzebub Crown + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1343 + - Id: 20303 + AegisName: C_Mandragora_Cap + Name: Costume Mandragora Cap + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 402 + - Id: 20304 + AegisName: C_Raccoon_Hat + Name: Costume Raccoon Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 118 + - Id: 20305 + AegisName: C_NettyHeart_BalloonGum + Name: Costume Nettie Heart Bubble Gum + Type: Armor + Buy: 20 + Locations: + Costume_Head_Low: true + View: 720 + - Id: 20307 + AegisName: C_Beginner_Cap + Name: Costume Beginner Cap + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1348 + - Id: 20311 + AegisName: C_Magical_Booster + Name: Costume Magical Booster + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 873 + - Id: 20312 + AegisName: C_Barons_Evil_Eye + Name: Costume Baron's Evil Eye + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 989 + - Id: 20313 + AegisName: C_CD_in_Mouth + Name: Costume CD in Mouth + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 815 + - Id: 20314 + AegisName: C_New_Wave_Sunglasses + Name: Costume New Wave Sunglasses + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 856 + - Id: 20315 + AegisName: C_Analyze_Eye + Name: Costume Analyze Eye + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1351 + - Id: 20316 + AegisName: C_Seraph_Wing_Helm + Name: Costume Seraph Wing Helm + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1352 + - Id: 20317 + AegisName: C_Nekomimi_Cyber_Headphone + Name: Costume Nekomimi Cyber Headphone + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1353 + - Id: 20318 + AegisName: C_Charleston_Antenna + Name: Costume Charleston Antenna + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1354 + - Id: 20319 + AegisName: C_Crimson_Booster + Name: Costume Crimson Booster + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1355 + - Id: 20320 + AegisName: C_Red_Bandana + Name: Costume Red Bandana + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 62 + - Id: 20321 + AegisName: C_Pterios_Fins + Name: Costume Pterios Fins + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1009 + - Id: 20322 + AegisName: C_Seal_Hat + Name: Costume Seal Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 540 + - Id: 20323 + AegisName: C_Sparkling_Sound + Name: Costume Sparkling Sound + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1074 + EquipScript: | + sc_start SC_DECORATION_OF_MUSIC,INFINITE_TICK,0; + UnEquipScript: | + sc_end SC_DECORATION_OF_MUSIC; + - Id: 20324 + AegisName: C_Pigeon_Hat + Name: Costume Pigeon Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1362 + - Id: 20325 + AegisName: C_Little_Aquarium + Name: Costume Little Aquarium + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1363 + - Id: 20326 + AegisName: C_Sailor_Collar + Name: Costume Sailor Collar + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1364 + - Id: 20327 + AegisName: C_Marine_Cap + Name: Costume Marine Cap + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1365 + - Id: 20328 + AegisName: C_Mackerel_Pike + Name: Costume Mackerel Pike + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1081 + - Id: 20329 + AegisName: C_Tare_HSchool_Doll_Hat + Name: Costume Very Cute Doll Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1084 + - Id: 20330 + AegisName: C_Sombrero + Name: Costume Sombrero + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 151 + - Id: 20331 + AegisName: C_Desert_Prince + Name: Costume Desert Prince + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 567 + - Id: 20332 + AegisName: C_Pure_White_Ribbon + Name: Costume Pure White Ribbon + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1175 + - Id: 20333 + AegisName: C_Family_Hat + Name: Costume Family Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 650 + - Id: 20334 + AegisName: C_Joystick_Hat + Name: Costume Joystick Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1305 + - Id: 20335 + AegisName: C_Watery_Eyes + Name: Costume Watery Eyes + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 828 + - Id: 20338 + AegisName: C_Colorful_Dancing_Octopus + Name: Costume Colorful Dancing Octopus + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1007 + - Id: 20339 + AegisName: C_Flower_Summer_Hat + Name: Costume Flower Summer Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1369 + - Id: 20340 + AegisName: C_Straight_Pony_Black + Name: Costume Straight Pony Black + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1371 + - Id: 20341 + AegisName: C_Bouncing_Hair_Black + Name: Costume Bouncing Hair Black + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1372 + - Id: 20342 + AegisName: C_Loose_Wave_Twin + Name: Costume Loose Wave Twin + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1373 + - Id: 20344 + AegisName: C_Happy_Balloon_J + Name: "Costume: Happy Balloon" + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1289 + - Id: 20345 + AegisName: C_Seagod_Protector + Name: Costume Seagod Protector + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 960 + - Id: 20346 + AegisName: C_Drooping_Permeter + Name: Costume Drooping Permeter + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 694 + - Id: 20347 + AegisName: C_Poring_Pirate_Hat + Name: Costume Poring Pirate Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 726 + - Id: 20348 + AegisName: C_Sunday_Hat + Name: Costume Sunday Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 117 + - Id: 20349 + AegisName: C_FlyingGalapago + Name: Costume Flying Galapago + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1358 + - Id: 20350 + AegisName: C_Cowlick_YL + Name: Costume Bouncing Hair Yellow + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1382 + - Id: 20351 + AegisName: C_Cowlick_GN + Name: Costume Bouncing Hair Green + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1383 + - Id: 20352 + AegisName: C_Cowlick_PP + Name: Costume Bouncing Hair Purple + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1384 + - Id: 20353 + AegisName: C_Cowlick_RD + Name: Costume Bouncing Hair Red + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1385 + - Id: 20354 + AegisName: C_Cowlick_OM + Name: Costume Bouncing Hair Crimson + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1386 + - Id: 20355 + AegisName: C_Cowlick_BU + Name: Costume Bouncing Hair Blue + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1387 + - Id: 20356 + AegisName: C_Cowlick_WH + Name: Costume Bouncing Hair White + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1388 + - Id: 20357 + AegisName: C_Straight_Pony_YL + Name: Costume Straight Pony Yellow + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1389 + - Id: 20358 + AegisName: C_Straight_Pony_GN + Name: Costume Straight Pony Green + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1390 + - Id: 20359 + AegisName: C_Straight_Pony_PP + Name: Costume Straight Pony Purple + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1391 + - Id: 20360 + AegisName: C_Straight_Pony_RD + Name: Costume Straight Pony Red + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1392 + - Id: 20361 + AegisName: C_Straight_Pony_OM + Name: Costume Straight Pony Crimson + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1393 + - Id: 20362 + AegisName: C_Straight_Pony_BU + Name: Costume Straight Pony Blue + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1394 + - Id: 20363 + AegisName: C_Straight_Pony_WH + Name: Costume Straight Pony White + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1395 + - Id: 20364 + AegisName: C_Loose_Wave_Twin_YL + Name: Costume Loose Wave Twin Yellow + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1396 + - Id: 20365 + AegisName: C_Loose_Wave_Twin_GN + Name: Costume Loose Wave Twin Green + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1397 + - Id: 20366 + AegisName: C_Loose_Wave_Twin_PP + Name: Costume Loose Wave Twin Purple + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1398 + - Id: 20367 + AegisName: C_Loose_Wave_Twin_RD + Name: Costume Loose Wave Twin Red + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1399 + - Id: 20368 + AegisName: C_Loose_Wave_Twin_OM + Name: Costume Loose Wave Twin Crimson + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1400 + - Id: 20369 + AegisName: C_Loose_Wave_Twin_BU + Name: Costume Loose Wave Twin Blue + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1401 + - Id: 20370 + AegisName: C_Loose_Wave_Twin_WH + Name: Costume Loose Wave Twin White + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1402 + - Id: 20371 + AegisName: C_Special_Kafra_Hat + Name: Costume Special Kafra Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 581 + - Id: 20372 + AegisName: C_Ribbon_Hat + Name: Costume Ribbon Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 956 + - Id: 20373 + AegisName: C_Watermelon_Hat + Name: Costume Watermelon Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 690 + - Id: 20374 + AegisName: C_Mechanical_Plant_Hat + Name: Costume Mechanical Plant Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1069 + - Id: 20375 + AegisName: C_Ignis_Cap + Name: Costume Ignis Cap + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 803 + - Id: 20376 + AegisName: C_Memories_Of_Lovers + Name: Costume Memory of Lovers + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1072 + - Id: 20377 + AegisName: C_Flight_Cap + Name: Costume Flight Cap + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 820 + - Id: 20378 + AegisName: C_Skymet + Name: Costume Sky Met + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 868 + - Id: 20379 + AegisName: C_Pocketwatch_Hair_Ornament + Name: Costume Pocketwatch Hair Ornament + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1404 + - Id: 20380 + AegisName: C_Mechanical_Feather_Hairband + Name: Costume Mechanical Feather Hairband + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1405 + - Id: 20381 + AegisName: C_Steampunk_Hat + Name: Costume Steampunk Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1406 + - Id: 20382 + AegisName: C_Silver_Sniper_Doll + Name: Costume Silver Sniper Doll + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1407 + - Id: 20383 + AegisName: C_Magicdecoy_Doll + Name: Costume Magic Decoy Doll + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1408 + - Id: 20384 + AegisName: C_Douce_Tiara + Name: Costume Douce Tiara + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1410 + - Id: 20386 + AegisName: C_Victory_Wing_Helm + Name: Costume Victory Wing Helm + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 677 + - Id: 20391 + AegisName: C_Silent_Executor + Name: Costume Silent Executor + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 632 + - Id: 20392 + AegisName: C_Sniper_Google + Name: Costume Sniper Google + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 625 + - Id: 20393 + AegisName: C_Schmitz_Helm + Name: Costume Schmitz Helm + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 634 + - Id: 20394 + AegisName: C_Pumpkin_Toque + Name: Costume Pumpkin Toque + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1411 + - Id: 20395 + AegisName: C_BlackWitchHat + Name: Costume Black Witch Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1006 + - Id: 20396 + AegisName: C_Woodie_Hat + Name: "Costume: Woodie Hat" + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 939 + - Id: 20397 + AegisName: C_Jakk + Name: Costume Jack + Type: Armor + Locations: + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1415 + Script: | + autobonus2 "{}",31,10000,BF_WEAPON|BF_MAGIC,"{ active_transform 1130,10000; specialeffect2 372; /*Confirm Special Effect*/ }"; + - Id: 20398 + AegisName: C_Niflheim_Bunny_Hat + Name: Costume Niffleheim Bunny Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1285 + - Id: 20399 + AegisName: C_Crow_Tengu_Mask + Name: Costume Crow Tengu Mask + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1287 + - Id: 20400 + AegisName: C_Ichthys_Rosario + Name: Costume Ichthys Rosario + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1028 + - Id: 20401 + AegisName: C_Angel_Guidance + Name: Costume Angel Guidance + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1188 + - Id: 20402 + AegisName: C_Holy_Klobuk + Name: Costume Holy Klobuk + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 895 + - Id: 20403 + AegisName: C_Dolor_Thanatos + Name: Costume Dolor Thanatos + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 547 + - Id: 20404 + AegisName: C_Blessing_Of_Angels + Name: Costume Blessing of Angel + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1425 + Script: | + hateffect(HAT_EF_BLESSING_OF_ANGELS,true); + UnEquipScript: | + hateffect(HAT_EF_BLESSING_OF_ANGELS,false); + - Id: 20405 + AegisName: C_Eremes_Scarf + Name: Costume Eremes Scarf + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1416 + - Id: 20406 + AegisName: C_Commandments_Of_Chain + Name: Costume Chain of Commandments + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1417 + - Id: 20407 + AegisName: C_Subject_Aura_Red + Name: Costume Vicious Mind Aura Crimson + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1418 + - Id: 20408 + AegisName: C_Requiem_Crown_of_Light_and_Dark + Name: Costume Requiem Crown of Light and Dark + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1419 + - Id: 20409 + AegisName: C_There_is_Something_ + Name: Costume There is Something + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1091 + - Id: 20416 + AegisName: C_1Grade_Balloon + Name: Costume Grade 1 Balloon + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1426 + - Id: 20417 + AegisName: C_2Grade_Balloon + Name: Costume Grade 2 Balloon + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1427 + - Id: 20418 + AegisName: C_3Grade_Balloon + Name: Costume Grade 3 Balloon + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1428 + - Id: 20419 + AegisName: C_4Grade_Balloon + Name: Costume Grade 4 Balloon + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1429 + - Id: 20420 + AegisName: C_5Grade_Balloon + Name: Costume Grade 5 Balloon + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1430 + - Id: 20421 + AegisName: C_6Grade_Balloon + Name: Costume Grade 6 Balloon + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1431 + - Id: 20422 + AegisName: C_7Grade_Balloon + Name: Costume Grade 7 Balloon + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1432 + - Id: 20423 + AegisName: C_8Grade_Balloon + Name: Costume Grade 8 Balloon + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1433 + - Id: 20424 + AegisName: C_9Grade_Balloon + Name: Costume Grade 9 Balloon + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1434 + - Id: 20425 + AegisName: C_10Grade_Balloon + Name: Costume Grade 10 Balloon + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1435 + - Id: 20426 + AegisName: C_11Grade_Balloon + Name: Costume Grade 11 Balloon + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1436 + - Id: 20427 + AegisName: C_12Grade_Balloon + Name: Costume Grade 12 Balloon + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1437 + - Id: 20428 + AegisName: C_13Grade_Balloon + Name: Costume Grade 13 Balloon + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1438 + - Id: 20429 + AegisName: C_Piamette_Bowtie + Name: Costume Piamette Bowtie + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1439 + - Id: 20430 + AegisName: C_Morocc_Kid_Servant + Name: Costume Loyal Servant of Devil Morocc + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1440 + - Id: 20431 + AegisName: C_Magician_Headdress + Name: Costume Magician Headdress + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1441 + - Id: 20432 + AegisName: C_Khalitzburg_KN_Helm + Name: Costume Khalitzburg Knight Helm + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1442 + - Id: 20433 + AegisName: C_Louise_Red_Hat + Name: Costume Louise Red Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1443 + - Id: 20434 + AegisName: C_Drooping_Gunslinger + Name: Costume Drooping Gunslinger + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1444 + - Id: 20435 + AegisName: C_Camellia_Hair_Pin + Name: Costume Camellia Hair Pin + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1203 + Script: | + hateffect(HAT_EF_CAMELLIA_HAIR_PIN,true); + UnEquipScript: | + hateffect(HAT_EF_CAMELLIA_HAIR_PIN,false); + - Id: 20436 + AegisName: C_Angelring_Furhat + Name: Costume Angelring Furhat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 953 + - Id: 20437 + AegisName: C_Sakura_Hairband + Name: Costume Sakura Hairband + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 949 + - Id: 20438 + AegisName: C_Abacus_In_Mouth + Name: Costume Abacus In Mouth + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 825 + - Id: 20439 + AegisName: C_New_Year_Shine + Name: Costume New Year Shine + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + Script: | + hateffect(HAT_EF_GLOW_OF_NEW_YEAR,true); + UnEquipScript: | + hateffect(HAT_EF_GLOW_OF_NEW_YEAR,false); + - Id: 20440 + AegisName: C_Tone_of_Gold + Name: Costume Tone of Gold + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1447 + - Id: 20441 + AegisName: C_Large_Ribbon_Muffler_Red + Name: Costume Large Ribbon Muffler Red + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1448 + - Id: 20442 + AegisName: C_Red_and_White_Mochiring_Hat + Name: Costume Red and White Mochiring Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1449 + - Id: 20446 + AegisName: C_Bunny_Eggshell + Name: Costume Bunny Eggshell + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1339 + - Id: 20447 + AegisName: C_Small_Poring_Band + Name: Costume Small Porings Headband + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 955 + - Id: 20448 + AegisName: C_Cons_Of_Water + Name: Costume Water Spellcaster + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1451 + - Id: 20449 + AegisName: C_White_Black_Temp + Name: Costume White and Black Temptation + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1452 + - Id: 20450 + AegisName: C_Gram_Peony + Name: Costume Gram Peony + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1453 + - Id: 20451 + AegisName: C_Sky_of_Memory + Name: Costume Sky of Memory + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1454 + - Id: 20452 + AegisName: C_Crown_of_Strawberry_Prince + Name: Costume Crown of Strawberry Prince + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1455 + - Id: 20455 + AegisName: C_Republic_Hat + Name: Costume Republic Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1458 + - Id: 20456 + AegisName: C_Combat_Vestige + Name: Costume Combat Vestige + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1460 + - Id: 20457 + AegisName: C_Feather_Fluttering + Name: Costume Fluttering Feathers + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1461 + Script: | + hateffect(HAT_EF_FEATHER_FLUTTERING,true); + UnEquipScript: | + hateffect(HAT_EF_FEATHER_FLUTTERING,false); + - Id: 20458 + AegisName: C_Wild_Poring_Rider + Name: Costume Wild Poring Rider + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1422 + - Id: 20459 + AegisName: C_Valhalla_Idol + Name: Costume Valhalla Idol + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1423 + Script: | + hateffect(HAT_EF_VALHALLA_IDOL,true); + UnEquipScript: | + hateffect(HAT_EF_VALHALLA_IDOL,false); + - Id: 20460 + AegisName: C_Thorny_Hairband + Name: Costume Thorny Hairband + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 921 + - Id: 20461 + AegisName: C_93_Style_Bloody_Wings + Name: Costume 93 Style Bloody Wings + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1037 + - Id: 20462 + AegisName: C_Cat_Ears_Cape + Name: Costume Cat Ears Cape + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1464 + - Id: 20463 + AegisName: C_Two_Tone_Beret + Name: Costume Two Tone Beret + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1465 + - Id: 20464 + AegisName: C_Monochrome_RibbonHat + Name: Costume Monochrome Ribbon Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1466 + - Id: 20465 + AegisName: C_Glasses_Without_Lens + Name: Costume Glasses Without Lens + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1467 + - Id: 20466 + AegisName: C_Crimson_Ribbon + Name: Costume Crimson Ribbon + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1468 + - Id: 20467 + AegisName: C_Elemental_Crown + Name: Costume Elemental Crown + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1219 + - Id: 20468 + AegisName: C_Youinone_Mask + Name: You in ONE + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1462 + - Id: 20470 + AegisName: C_SweetChocolate_Hat + Name: Costume Sweet Chocolate Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1469 + - Id: 20481 + AegisName: C_Mask_of_Ifrit + Name: Costume Mask of Ifrit + Type: Armor + Buy: 20 + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + Costume_Head_Low: true + View: 421 + - Id: 20482 + AegisName: C_Heaven_Cage + Name: Costume Heaven Cage + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1286 + - Id: 20483 + AegisName: C_Butterfly_Barrettes + Name: Costume Butterfly Barrettes + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1027 + - Id: 20486 + AegisName: C_Twin_Margaret + Name: Costume Twin Margaret + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1472 + - Id: 20487 + AegisName: C_Floral_Waltz + Name: Costume Waltz of Flowers + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1473 + Script: | + hateffect(HAT_EF_FLORAL_WALTZ,true); + UnEquipScript: | + hateffect(HAT_EF_FLORAL_WALTZ,false); + - Id: 20488 + AegisName: C_Pope_Ribbon + Name: Costume Pope Ribbon + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1474 + - Id: 20489 + AegisName: C_Pope_Crown + Name: C Pope Crown + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1475 + - Id: 20490 + AegisName: C_Full_Bloom_Hp_Blue + Name: "Costume: Full Bloom HP(Blue)" + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1476 + - Id: 20491 + AegisName: C_Laser_of_Eagle + Name: Costume Laser of Eagle + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1424 + - Id: 20492 + AegisName: C_Unidentified_Flying_Poring + Name: Costume Unidentified Flying Poring + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1017 + - Id: 20493 + AegisName: C_Wing_Headphone + Name: Costume Wing Headphone + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1347 + - Id: 20495 + AegisName: C_Quati_Hat_J + Name: Costume Quati Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 527 + - Id: 20496 + AegisName: C_Black_Shiba_Inu_Hat + Name: Costume Black Shiba Inu Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 894 + - Id: 20497 + AegisName: C_Umbala_Spirit + Name: Costume Umbala Spirit + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 675 + - Id: 20498 + AegisName: C_Elephant_Hat + Name: Costume Elephant Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 215 + - Id: 20499 + AegisName: C_Cat_Ears_Hat + Name: Costume Cat Ears Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1479 + - Id: 20500 + AegisName: T_Archangel_Wing + Name: Archangel Wing + Type: Armor + Locations: + Costume_Garment: true + EquipLevelMin: 1 + View: 1 + - Id: 20502 + AegisName: C_Devil_Wing + Name: Costume Little Devil Wings + Type: Armor + Locations: + Costume_Garment: true + EquipLevelMin: 1 + View: 12 + - Id: 20504 + AegisName: C_Cupid_Wing_Pink + Name: Costume Cupid's Pink Wings + Type: Armor + Locations: + Costume_Garment: true + EquipLevelMin: 1 + View: 14 + - Id: 20506 + AegisName: Invisible_Manteau + Name: Invisible Manteau + Type: Armor + Locations: + Costume_Garment: true + EquipLevelMin: 1 + - Id: 20507 + AegisName: C_Poring_Bag + Name: Costume Poring Bag + Type: Armor + Locations: + Costume_Garment: true + EquipLevelMin: 1 + View: 16 + - Id: 20508 + AegisName: C_Poster_Girl_Hat + Name: Costume Poster Girl Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1446 + - Id: 20509 + AegisName: C_Wings_of_Uriel + Name: Costume Wings of Uriel + Type: Armor + Locations: + Costume_Garment: true + EquipLevelMin: 1 + View: 17 + - Id: 20510 + AegisName: C_SwordWing + Name: Costume Sword Wing + Type: Armor + Locations: + Costume_Garment: true + EquipLevelMin: 1 + View: 19 + - Id: 20511 + AegisName: C_Blue_Fairy_Wing + Name: Blue Wings of Fairy + Type: Armor + Locations: + Costume_Garment: true + EquipLevelMin: 1 + View: 21 + - Id: 20512 + AegisName: C_Bag_of_Adventurer_j + Name: Costume Adventurer's Backpack + Type: Armor + Locations: + Costume_Garment: true + EquipLevelMin: 1 + View: 2 + - Id: 20514 + AegisName: C_Thanatos_Sword + Name: Costume Thanatos Sword + Type: Armor + Locations: + Costume_Garment: true + EquipLevelMin: 1 + View: 23 + - Id: 20515 + AegisName: C_Magic_Circle + Name: Costume Magic Circle + Type: Armor + Locations: + Costume_Garment: true + EquipLevelMin: 1 + Script: | + hateffect(HAT_EF_MAGICCIRCLE,true); + UnEquipScript: | + hateffect(HAT_EF_MAGICCIRCLE,false); + - Id: 20516 + AegisName: C_Wings_of_Michael + Name: Costume Wings of Michael + Type: Armor + Locations: + Costume_Garment: true + EquipLevelMin: 1 + View: 24 + - Id: 20517 + AegisName: C_GiantCatBag_TW + Name: Costume Giant Cat Backpack + Type: Armor + Locations: + Costume_Garment: true + EquipLevelMin: 1 + View: 25 + - Id: 20519 + AegisName: C_Full_BloomCherry_Tree + Name: Costume Full Bloom Cherry Tree + Type: Armor + Locations: + Costume_Garment: true + EquipLevelMin: 1 + Script: | + hateffect(HAT_EF_FULL_BLOOMCHERRY_TREE,true); + UnEquipScript: | + hateffect(HAT_EF_FULL_BLOOMCHERRY_TREE,false); + - Id: 20522 + AegisName: C_Blessings_Of_Soul + Name: Costume Blessings Of Soul + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + Script: | + hateffect(HAT_EF_C_BLESSINGS_OF_SOUL,true); + UnEquipScript: | + hateffect(HAT_EF_C_BLESSINGS_OF_SOUL,false); + - Id: 20524 + AegisName: C_Shining_Angel_Wings + Name: Costume Shining Angel Wings + Type: Armor + Locations: + Costume_Garment: true + EquipLevelMin: 1 + Script: | + hateffect(HAT_EF_C_SHINING_ANGEL_WING,true); + UnEquipScript: | + hateffect(HAT_EF_C_SHINING_ANGEL_WING,false); + - Id: 20530 + AegisName: C_Wings_of_Gabriel + Name: Costume Wings of Gabriel + Type: Armor + Locations: + Costume_Garment: true + EquipLevelMin: 1 + View: 37 + - Id: 20533 + AegisName: C_PinkButterfly_Wing_T + Name: Costume Fly Like a Butterfly (Pink) + Type: Armor + Locations: + Costume_Garment: true + EquipLevelMin: 1 + View: 38 + - Id: 20535 + AegisName: C_Digital_Space + Name: Costume Digital Space + Type: Armor + Locations: + Costume_Garment: true + EquipLevelMin: 1 + Script: | + hateffect(HAT_EF_DIGITAL_SPACE,true); + UnEquipScript: | + hateffect(HAT_EF_DIGITAL_SPACE,false); + - Id: 20537 + AegisName: C_Falling_Red_Foliage + Name: Costume Falling Red Foliage + Type: Armor + Locations: + Costume_Garment: true + EquipLevelMin: 1 + Script: | + hateffect(HAT_EF_C_MAPLE_WHICH_FALLS_RD,true); + UnEquipScript: | + hateffect(HAT_EF_C_MAPLE_WHICH_FALLS_RD,false); + - Id: 20538 + AegisName: Costume_Magic_Circle_Rainbow + Name: Costume Magic Circle Rainbow + Type: Armor + Locations: + Costume_Garment: true + EquipLevelMin: 1 + Script: | + hateffect(HAT_EF_MAGICCIRCLERAINBOW,true); + UnEquipScript: | + hateffect(HAT_EF_MAGICCIRCLERAINBOW,false); + - Id: 20543 + AegisName: C_Halloween_Poring_Bag + Name: Costume Halloween Poring Bag + Type: Armor + Locations: + Costume_Garment: true + EquipLevelMin: 1 + View: 44 + - Id: 20546 + AegisName: C_Backside_Ribbon_Bell + Name: Costume Giant Ribbon Bell + Type: Armor + Locations: + Costume_Garment: true + EquipLevelMin: 1 + View: 46 + - Id: 20547 + AegisName: C_Ghost_Effect + Name: Costume Ghost Effect + Type: Armor + Locations: + Costume_Garment: true + EquipLevelMin: 1 + Script: | + hateffect(HAT_EF_C_GHOST_EFFECT,true); + UnEquipScript: | + hateffect(HAT_EF_C_GHOST_EFFECT,false); + - Id: 20548 + AegisName: Costume_Popping_Poring_Aura + Name: Costume Popping Poring Aura + Type: Armor + Locations: + Costume_Garment: true + EquipLevelMin: 1 + Script: | + hateffect(HAT_EF_C_POPPING_PORING_AURA,true); + UnEquipScript: | + hateffect(HAT_EF_C_POPPING_PORING_AURA,false); + - Id: 20570 + AegisName: C_HeartChocoBag + Name: Costume HeartChocoBag + Type: Armor + Locations: + Costume_Garment: true + EquipLevelMin: 1 + View: 47 + - Id: 20572 + AegisName: C_WingOfHeart + Name: Costume WingOfHeart + Type: Armor + Locations: + Costume_Garment: true + EquipLevelMin: 1 + View: 50 + - Id: 20576 + AegisName: C_Cat_Fork + Name: Costume Cat Fork + Type: Armor + Locations: + Costume_Garment: true + EquipLevelMin: 1 + View: 53 + - Id: 20582 + AegisName: C_T_Bear_Bag + Name: Costume Bear Backpack + Type: Armor + Locations: + Costume_Garment: true + EquipLevelMin: 1 + View: 60 + - Id: 20584 + AegisName: C_Big_Foxtail + Name: Costume Fox Tail + Type: Armor + Locations: + Costume_Garment: true + EquipLevelMin: 1 + View: 62 + - Id: 20588 + AegisName: C_Nifl_Bloom + Name: Costume Broom of Witch + Type: Armor + Locations: + Costume_Garment: true + EquipLevelMin: 1 + View: 65 + - Id: 20592 + AegisName: C_Santa_Backpack + Name: Costume Santa's Pocket + Type: Armor + Locations: + Costume_Garment: true + EquipLevelMin: 1 + View: 70 + - Id: 20600 + AegisName: Fantastic_Aura + Name: Fantastic Aura + Type: Armor + Locations: + Costume_Garment: true + EquipLevelMin: 1 + Script: | + /*TODO: View ID*/ bonus bUnbreakableHelm; + - Id: 20700 + AegisName: Egir_Manteau + Name: Egir Manteau + Type: Armor + Buy: 200000 + Weight: 300 + Defense: 10 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 110 + Refineable: true + Script: | + bonus bUnbreakableGarment; .@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); } + - Id: 20701 + AegisName: Sol_Manteau + Name: Sol Manteau + Type: Armor + Weight: 700 + Defense: 20 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 65 + Refineable: true + Script: | + bonus2 bSubDefEle,Ele_Earth,5; bonus2 bMagicSubDefEle,Ele_Earth,5; bonus2 bSubRace,RC_Fish,-5; + - Id: 20702 + AegisName: TE_Woe_Muffler + Name: TE Woe Muffler + Type: Armor + Defense: 5 + Locations: + Garment: true + EquipLevelMin: 40 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMdef,5; bonus2 bAddRace,RC_Player_Human,5; bonus2 bMagicAddRace,RC_Player_Human,5; bonus2 bResEff,Eff_Freeze,25; + - Id: 20703 + AegisName: TE_Woe_Manteau + Name: TE Woe Manteau + Type: Armor + Defense: 10 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Garment: true + EquipLevelMin: 40 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_Player_Human,10; bonus2 bResEff,Eff_Freeze,25; + - Id: 20704 + AegisName: TE_Woe_Magic_Manteau + Name: TE Woe Magic Manteau + Type: Armor + Defense: 5 + Jobs: + Acolyte: true + Mage: true + Monk: true + Novice: true + Priest: true + Sage: true + SoulLinker: true + SuperNovice: true + Wizard: true + Locations: + Garment: true + EquipLevelMin: 40 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bMagicAddRace,RC_Player_Human,10; bonus2 bResEff,Eff_Freeze,25; + - Id: 20706 + AegisName: Amistr_Bag + Name: Amistr Bag + Type: Armor + Buy: 10 + Weight: 500 + Defense: 18 + Locations: + Garment: true + EquipLevelMin: 1 + View: 4 + Script: | + bonus bAllStats,1; bonus2 bSubEle,Ele_All,5; + - Id: 20707 + AegisName: Kirin_Wing + Name: Kirin Wing + Type: Armor + Buy: 20 + Defense: 18 + Locations: + Garment: true + Refineable: true + View: 6 + Script: | + bonus bAllStats,1; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; + - Id: 20709 + AegisName: Mana_Manteau + Name: Mana Manteau + Type: Armor + Locations: + Garment: true + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bExpAddRace,RC_All,10; + - Id: 20710 + AegisName: Impr_Angel's_Warmth + Name: Advanced Angelic Cardigan + Type: Armor + Buy: 10000 + Weight: 400 + Defense: 6 + Slots: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Garment: true + EquipLevelMin: 99 + Refineable: true + Script: | + bonus bHPrecovRate,50; + - Id: 20711 + AegisName: Manteau_Of_Diego + Name: Manteau Of Diego + Type: Armor + Buy: 20 + Weight: 600 + Defense: 15 + Slots: 1 + Locations: + Garment: true + Refineable: true + Script: | + bonus bInt,1; bonus bDex,1; bonus bMdef,3; + - Id: 20712 + AegisName: Valkyrie_Cape + Name: Valkyrie Cape + Type: Armor + Buy: 10 + Weight: 500 + Defense: 10 + Slots: 1 + Jobs: + Acolyte: true + Alchemist: true + Archer: true + Assassin: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Monk: true + Priest: true + Rebellion: true + Rogue: true + Sage: true + Swordman: true + Thief: true + Wizard: true + Classes: + Upper: true + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Garment: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@val = 2 * (min(10,getrefine())/2); if (BaseClass == Job_Mage || BaseClass == Job_Archer || BaseClass == Job_Acolyte) bonus bFlee2,(5+.@val); else if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief) bonus bShortWeaponDamageReturn,(5+.@val); + - Id: 20714 + AegisName: Assassin's_Muffler + Name: Assassin's Muffler + Type: Armor + Buy: 20 + Weight: 100 + Defense: 16 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 50 + Refineable: true + Script: | + .@r = getrefine(); if (.@r>5) { bonus bAgi,(.@r-5)*2; } + - Id: 20716 + AegisName: Spirit_Manteau + Name: Spirit Manteau + Type: Armor + Buy: 20 + Weight: 700 + Defense: 20 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 65 + Refineable: true + Script: | + bonus2 bSubEle,Ele_Ghost,5; bonus2 bSubRace,RC_Angel,-5; + - Id: 20717 + AegisName: FaceWorm_Skin + Name: Gigant Snake Skin + Type: Armor + Buy: 10 + Weight: 400 + Defense: 38 + Locations: + Garment: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bMdef,10; + - Id: 20718 + AegisName: FaceWorm_Skin_ + Name: Gigant Snake Skin + Type: Armor + Buy: 10 + Weight: 400 + Defense: 38 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bMdef,10; + - Id: 20721 + AegisName: Cloak_Of_Gray + Name: Cloak of Gray + Type: Armor + Buy: 20 + Weight: 600 + Defense: 45 + Slots: 1 + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Garment: true + EquipLevelMin: 120 + Refineable: true + Script: | + bonus2 bSubEle,Ele_Holy,5+getrefine()/2; + - Id: 20724 + AegisName: Love_Dad_Wings_2012 + Name: Love Dad Wings 2012 + Type: Armor + Weight: 100 + Defense: 15 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 1 + Refineable: true + View: 5 + Script: | + .@r = getrefine(); if ((readparam(bStr)>89)) { bonus bAllStats,1; bonus bStr,.@r; bonus bMaxHPRate,1; bonus bMaxSPRate,1; } if ((readparam(bAgi)>89)) { bonus bAllStats,1; bonus bAgi,.@r; bonus bMaxHPRate,1; bonus bMaxSPRate,1; } if ((readparam(bVit)>89)) { bonus bAllStats,1; bonus bVit,.@r; bonus bMaxHPRate,1; bonus bMaxSPRate,1; } if ((readparam(bInt)>89)) { bonus bAllStats,1; bonus bInt,.@r; bonus bMaxHPRate,1; bonus bMaxSPRate,1; } if ((readparam(bDex)>89)) { bonus bAllStats,1; bonus bDex,.@r; bonus bMaxHPRate,1; bonus bMaxSPRate,1; } if ((readparam(bLuk)>89)) { bonus bAllStats,1; bonus bLuk,.@r; bonus bMaxHPRate,1; bonus bMaxSPRate,1; } + - Id: 20725 + AegisName: Ribbon_Piamat + Name: Ribbon Piamat + Type: Armor + Buy: 10 + Weight: 100 + MagicAttack: 10 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 30 + Refineable: true + View: 7 + Script: | + bonus bInt,1; bonus bDex,1; + - Id: 20726 + AegisName: Fire_Dragon's_Coat + Name: Fire Dragon's Coat + Type: Armor + Buy: 20 + Weight: 300 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 30 + Refineable: true + Script: | + bonus bMaxHPrate,5; bonus2 bMagicAtkEle,Ele_Fire,2; if (getrefine()>=7) { bonus2 bMagicAtkEle,Ele_Fire,3; } bonus2 bMagicAtkEle,Ele_Water,-10; + - Id: 20727 + AegisName: Brilliant_Golden_Wings + Name: Brilliant Golden Wings + Type: Armor + Buy: 10 + Locations: + Costume_Garment: true + EquipLevelMin: 1 + Refineable: true + View: 5 + Trade: + Override: 100 + NoDrop: true + - Id: 20728 + AegisName: Water_Dragon_Coat + Name: Water Dragon Coat + Type: Armor + Buy: 10 + Weight: 300 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 30 + Refineable: true + Script: | + bonus bMaxHPrate,5; bonus2 bMagicAtkEle,Ele_Water,2; if (getrefine()>=7) { bonus2 bMagicAtkEle,Ele_Water,3; } bonus2 bMagicAtkEle,Ele_Wind,-10; + - Id: 20730 + AegisName: Loyalists_Hood + Name: Loyalists Hood + Type: Armor + Buy: 10 + Weight: 200 + Defense: 30 + Slots: 1 + Locations: + Costume_Garment: true + EquipLevelMin: 80 + Script: | + bonus bStr,2; bonus bMaxHPrate,10; bonus bNoKnockback; bonus2 bSubEle,Ele_All,-20; + - Id: 20732 + AegisName: Supplement_Part_Con + Name: Supplement Part Con + Type: Armor + Buy: 25000 + Weight: 500 + Defense: 20 + Slots: 1 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Garment: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxHPrate,6+(.@r/2); if(.@r>=9){bonus bHPrecovRate,50;} + - Id: 20733 + AegisName: Upgrade_Part_Engine + Name: Reinforced Parts - Engine + Type: Armor + Buy: 10 + Weight: 1500 + Defense: 25 + Slots: 1 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Garment: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bDelayrate,-10; .@r = getrefine(); if(.@r>=7) {bonus2 bSubEle,0,10;}; if(.@r>=9) {bonus bDelayrate,-10;} + - Id: 20737 + AegisName: C_Kirin_Wing + Name: Costume Kirin Wing + Type: Armor + Buy: 10 + Locations: + Costume_Garment: true + EquipLevelMin: 1 + View: 6 + - Id: 20743 + AegisName: Airship_Cape + Name: Airship's Cloak + Type: Armor + Buy: 10 + Defense: 25 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 125 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bSubEle,Ele_Neutral,10; bonus bFlee,20; bonus bVariableCastrate,-20; + - Id: 20744 + AegisName: Felock_Cape + Name: Felrock's Cloak + Type: Armor + Buy: 10 + Weight: 400 + Defense: 12 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 125 + Refineable: true + Script: | + bonus2 bSubEle,Ele_Neutral,10; bonus bFlee,20; bonus bVariableCastrate,-10; .@r = getrefine(); if(.@r>=7) { bonus bVariableCastrate,-10; } if(.@r>=9) { bonus bVariableCastrate,-10;} if(.@r>=12) { bonus bVariableCastrate,-5; } + - Id: 20746 + AegisName: C_Rudra_Wing + Name: Costume Rudra Wings + Type: Armor + Buy: 10 + Locations: + Costume_Garment: true + EquipLevelMin: 1 + View: 8 + - Id: 20748 + AegisName: Manteau_Of_Fallen + Name: Fallen Warrior Manteau + Type: Armor + Buy: 10 + Weight: 600 + Defense: 20 + Locations: + Garment: true + EquipLevelMin: 120 + Refineable: true + Script: | + .@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; + - Id: 20749 + AegisName: Manteau_Of_Fallen_ + Name: Fallen Warrior Manteau + Type: Armor + Buy: 10 + Weight: 600 + Defense: 30 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 170 + Refineable: true + Script: | + .@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; + - Id: 20753 + AegisName: Lian_Robe + Name: Lian Robe + Type: Armor + Weight: 700 + Defense: 20 + Range: 1 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 65 + Refineable: true + Script: | + bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubRace,RC_Formless,-5; + - Id: 20756 + AegisName: Aegir_Cloak + Name: Aegir Cloak + Type: Armor + Buy: 10 + Weight: 300 + Defense: 10 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 40 + Refineable: true + Script: | + bonus bUnbreakableGarment; bonus bMaxHP,500; bonus bMaxSP,50; + - Id: 20761 + AegisName: C_Wing_Of_Happiness + Name: Costume Happiness Wings + Type: Armor + Locations: + Costume_Garment: true + EquipLevelMin: 1 + View: 9 + - Id: 20762 + AegisName: C_GreatDevilWing + Name: Costume Great Devil Wings + Type: Armor + Locations: + Costume_Garment: true + EquipLevelMin: 1 + View: 10 + - Id: 20763 + AegisName: C_Amistr_Bag + Name: Costume Amistr Bag + Type: Armor + Locations: + Costume_Garment: true + EquipLevelMin: 1 + View: 4 + - Id: 20764 + AegisName: C_Fallen_Angel_Wing + Name: Costume Fallen Angel Wing + Type: Armor + Locations: + Costume_Garment: true + EquipLevelMin: 1 + View: 3 + - Id: 20765 + AegisName: C_Archangel_Wing + Name: Costume Archangel Wing + Type: Armor + Locations: + Costume_Garment: true + EquipLevelMin: 1 + View: 1 + - Id: 20773 + AegisName: Excelion_Wing + Name: Excelion Wing + Type: Armor + Buy: 20 + Weight: 900 + Defense: 40 + Locations: + Garment: true + EquipLevelMin: 99 + Refineable: true + Script: | + bonus bFlee,getrefine() * 2; bonus bFlee2,8 + (BaseLevel > 129 ? 2 : 0); + - Id: 20778 + AegisName: Red_Lotus_Stole + Name: Red Lotus Stole + Type: Armor + Buy: 20 + Weight: 700 + Defense: 8 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxSPrate,10; bonus bMdef,3; bonus bUseSPrate,-1*(1+(2*.@r/3)); if (.@r>=10) { bonus bSPGainValue,20; } + - Id: 20779 + AegisName: Rift_Manteau + Name: Rift Manteau + Type: Armor + Buy: 20 + Weight: 500 + Defense: 16 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMaxHP,(.@r >= 9 ? 1300 : .@r >= 7 ? 700 : 300); bonus bMaxSP,-50; + - Id: 20780 + AegisName: Unity_STR_Manteau + Name: Unity STR Manteau + Type: Armor + Buy: 32000 + Weight: 300 + Defense: 20 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bMaxHPrate,2*(.@r/2); } + - Id: 20781 + AegisName: Unity_AGI_Manteau + Name: Unity AGI Manteau + Type: Armor + Buy: 32000 + Weight: 300 + Defense: 20 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bFlee,3*(.@r/2); } + - Id: 20782 + AegisName: Unity_INT_Muffler + Name: Unity INT Muffler + Type: Armor + Buy: 32000 + Weight: 300 + Defense: 20 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bUseSPrate,-(.@r/2); } + - Id: 20783 + AegisName: Hero_Cape + Name: Hero Cape + Type: Armor + Weight: 100 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 10 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSubEle,Ele_Neutral,1+(.@r/3); bonus bFlee,1+(.@r/3); if (.@r > 9) { bonus2 bSubEle,Ele_Neutral,20; bonus bFlee,20; } + - Id: 20787 + AegisName: Unity_Exquisite_Muffler + Name: Unity Exquisite Muffler + Type: Armor + Buy: 32000 + Weight: 300 + Defense: 20 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bCritical,2*(.@r/2); } + - Id: 20788 + AegisName: Private_Doram_Manteau + Name: Private Doram Manteau + Type: Armor + Buy: 20 + Weight: 300 + Defense: 20 + Slots: 1 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Garment: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bFlee,5; bonus2 bSubEle,Ele_Neutral,2; bonus bFlee2,getrefine()/3; + - Id: 20789 + AegisName: Luxury_Doram_Manteau + Name: Luxury Doram Manteau + Type: Armor + Buy: 20 + Weight: 400 + Defense: 25 + Slots: 1 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Garment: true + EquipLevelMin: 140 + Refineable: true + Script: | + bonus bFlee,7; bonus2 bSubEle,Ele_Neutral,3; .@r = getrefine()/3; bonus bFlee2,.@r; bonus bLuk,.@r; + - Id: 20790 + AegisName: Elegant_Doram_Manteau + Name: Elegant Doram Manteau + Type: Armor + Buy: 20 + Weight: 500 + Defense: 30 + Slots: 1 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Garment: true + EquipLevelMin: 175 + Refineable: true + Script: | + bonus bFlee,10; bonus2 bSubEle,Ele_Neutral,5; .@r = getrefine()/2; bonus bFlee2,.@r; bonus bInt,.@r; bonus bDex,.@r; bonus bLuk,.@r; + - Id: 20797 + AegisName: Etran_Shirt + Name: Etran Shirt + Type: Armor + Weight: 150 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bMdef,10; bonus bMaxHPrate,2; .@r = getrefine(); if (.@r >= 6) bonus bMaxHPrate,4; if (.@r >= 7) bonus bMaxHPrate,6; if (.@r >= 8) bonus bMaxHPrate,8; if (.@r >= 9) bonus bNoKnockback; + - Id: 20798 + AegisName: GrimReaper_Protection + Name: Costume Grim Reaper Protection + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1450 + - Id: 20799 + AegisName: Elemental_Towel + Name: Elemental Towel + Type: Armor + Buy: 20 + Weight: 400 + Defense: 13 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bLongAtkRate,2; if(getrefine()>=7) { bonus2 bSkillUseSP,"RA_ARROWSTORM",20; bonus2 bSkillUseSP,"WM_SEVERE_RAINSTORM",60; } if(getrefine()>=8) { bonus bLongAtkRate,2; } if(getrefine()>=9) { bonus bLongAtkRate,3; } + - Id: 20800 + AegisName: Enforcer_Cape + Name: Enforcer Cape + Type: Armor + Buy: 20 + Weight: 300 + Defense: 18 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bMdef,10; if (getskilllv("AS_GRIMTOOTH")==5) { bonus2 bSkillAtk,"AS_GRIMTOOTH",50; } if (getskilllv("GC_CROSSIMPACT") == 5) { bonus2 bSkillAtk,"GC_CROSSIMPACT",5; } if (getskilllv("ASC_BREAKER") == 10) { bonus2 bSkillAtk,"ASC_BREAKER",50; } if (.@r>=7) { .@delay += 3; bonus2 bSkillAtk,"AS_GRIMTOOTH",Baselevel; bonus2 bSkillAtk,"ASC_BREAKER",Baselevel/3; bonus2 bSkillAtk,"GC_CROSSIMPACT",Baselevel/30; } if (.@r>=9) { .@delay += 3; bonus bMaxSPrate,5; } bonus bDelayrate,-.@delay; if(eaclass()&EAJL_THIRD && BaseJob == Job_Assassin) { if (.@r >= 7) { bonus bMaxHPrate,20; bonus bLongAtkDef,35; } else { bonus bMaxHPrate,15; bonus bLongAtkDef,20; } } + - Id: 20813 + AegisName: Coak_of_Survival + Name: Cloak of Survival + Type: Armor + Buy: 1000 + Weight: 550 + Defense: 10 + Slots: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Garment: true + EquipLevelMin: 75 + Refineable: true + Script: | + bonus bMdef,5; bonus bVit,10; + - Id: 20814 + AegisName: Wakwak_Manteau + Name: Wakwak Manteau + Type: Armor + Buy: 20 + Weight: 400 + Defense: 40 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus2 bAddClass,Class_All,5; .@s = readparam(bStr); .@r = getrefine(); if (.@r>=5) { bonus bBaseAtk,2*(.@s/10); } if (.@r>=7) { bonus bBaseAtk,3*(.@s/10); } + - Id: 20815 + AegisName: SeraphimRobe + Name: Seraphim Robe + Type: Armor + Weight: 300 + Defense: 18 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bMaxHPrate,10; bonus2 bMagicAtkEle,Ele_Neutral,5; .@r = getrefine(); if (.@r > 6) { bonus2 bSubEle,Ele_Dark,20; bonus2 bSubEle,Ele_Holy,20; bonus bMatkRate,10; } if (.@r > 8) { bonus2 bSubEle,Ele_Dark,10; bonus2 bSubEle,Ele_Holy,10; bonus bVariableCastrate,-5; } if (getskilllv("CR_TRUST") > 0) { bonus2 bSubEle,Ele_Holy,.@r*3; } + - Id: 20819 + AegisName: Oxygen_Bottle + Name: Oxygen Bottle + Type: Armor + Weight: 500 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 40 + Refineable: true + Script: | + bonus bFlee,12+getrefine(); bonus bHit,getrefine(); + - Id: 20820 + AegisName: Elemental_Cape + Name: Elemental Cape + Type: Armor + Weight: 500 + Defense: 12 + Jobs: + Sage: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Garment: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bFlee,(10+5*(.@r/3)); bonus2 bSubEle,Ele_Neutral,10; if (.@r>=9) bonus bAspdRate,5; + - Id: 20821 + AegisName: Golden_Scarf + Name: Golden Scarf + Type: Armor + Weight: 500 + Defense: 12 + Jobs: + KagerouOboro: true + Locations: + Garment: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bFlee,20; if (.@r>=9) { bonus bLongAtkRate,10; } else if (.@r>=7) { bonus bLongAtkRate,5; } + - Id: 20822 + AegisName: Mine_Worker's_Backpack + Name: Mine Worker's Backpack + Type: Armor + Weight: 600 + Defense: 16 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Garment: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bAspdRate,(5+(.@r/2)); if (.@r>=9) bonus bBaseAtk,20; + - Id: 20823 + AegisName: Para_Team_Manteau100 + Name: Awakened Eden Group Manteau I + Type: Armor + Defense: 20 + Locations: + Garment: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bSubEle,Ele_Neutral,10; bonus bFlee,12; .@r = getrefine(); if(.@r >= 7){ bonus bMaxHP,500; bonus bFlee2,2; if(.@r >= 9){ bonus bMaxHP,500; bonus2 bSubEle,Ele_All,10; bonus2 bSubEle,Ele_Neutral,-10; } } + - Id: 20824 + AegisName: Para_Team_Manteau130 + Name: Awakened Eden Group Manteau II + Type: Armor + Defense: 25 + Locations: + Garment: true + EquipLevelMin: 130 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bSubEle,Ele_Neutral,10; bonus bFlee,12; bonus bMaxHP,500; bonus bFlee2,2; .@r = getrefine(); if(.@r >= 7){ bonus bMaxHP,500; bonus2 bSubEle,Ele_All,10; bonus2 bSubEle,Ele_Neutral,-10; if(.@r >= 9){ bonus2 bSubEle,Ele_Neutral,5; } } + - Id: 20825 + AegisName: Para_Team_Manteau160 + Name: Awakened Eden Group Manteau III + Type: Armor + Defense: 30 + Locations: + Garment: true + EquipLevelMin: 160 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bSubEle,Ele_All,10; bonus bFlee,12; bonus bMaxHP,1000; bonus bFlee2,2; .@r = getrefine(); if(.@r >= 7){ bonus2 bSubEle,Ele_Neutral,5; if(.@r >= 9){ skill "BS_GREED",1; } } + - Id: 20826 + AegisName: Angel_Feather + Name: Angel Feather + Type: Armor + Weight: 200 + Defense: 18 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 1 + Refineable: true + View: 18 + - Id: 20830 + AegisName: Wings_of_Seraph + Name: Wings of Seraph + Type: Armor + Weight: 200 + Defense: 18 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 1 + Refineable: true + View: 8 + - Id: 20831 + AegisName: Adventurer's_Spirit + Name: Adventurer's Spirit + Type: Armor + Buy: 1000 + Weight: 400 + Defense: 40 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bInt,5; if (.@r>=5) bonus bMatk,5*(readparam(bInt)/60); if (.@r>=7) bonus bMatk,5*(readparam(bInt)/10); + - Id: 20834 + AegisName: Drifter's_Cape + Name: Drifter's Cape + Type: Armor + Weight: 400 + Locations: + Garment: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoAuction: true + Script: | + .@r = getrefine(); .@bonus = 20; if (.@r>=7) { .@bonus += 5; } if (.@r>=9) { .@bonus += 5; } bonus2 bSubEle,Ele_Neutral,.@bonus; + - Id: 20836 + AegisName: Skin_of_Lindwyrm + Name: Skin of Lindwyrm + Type: Armor + Buy: 1000 + Weight: 600 + Defense: 15 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bAgi,5; bonus bVit,5; bonus bMdef,10; bonus2 bSubEle,Ele_Fire,5; bonus2 bSubEle,Ele_Water,5; bonus2 bSubRace,RC_Dragon,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; .@r = getrefine(); .@val = (readparam(bAgi)+readparam(bVit))/20; if (.@r>=7) { skill "TF_HIDING",1; if (.@r>=8) { bonus bMaxHPrate,.@val; bonus bVariableCastrate,-1*.@val; if (.@r>=9) { skill "AS_CLOAKING",1; } } } + - Id: 20837 + AegisName: Skin_of_Gwiber + Name: Skin of Gwiber + Type: Armor + Buy: 20 + Weight: 600 + Defense: 15 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bInt,5; bonus bDex,5; bonus bMdef,10; bonus2 bSubEle,Ele_Dark,5; bonus2 bSubEle,Ele_Undead,5; bonus2 bSubRace,RC_Demon,5; bonus2 bSubRace,RC_Undead,5; .@r = getrefine(); .@val = (readparam(bInt)+readparam(bDex))/20; if (.@r>=7) { bonus bSPGainValue,10; if (.@r>=8) { bonus bBaseAtk,5*.@val; bonus bDelayrate,-2*.@val; if (.@r>=9) { bonus bSPGainValue,10; } } } + - Id: 20838 + AegisName: Illusion_Muffler + Name: Illusion Muffler + Type: Armor + Buy: 20 + Weight: 400 + Defense: 8 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Garment: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxHP,(100+(100*.@r)); bonus bMaxSP,(10+(5*.@r)); + - Id: 20840 + AegisName: Illusion_Ancient_Cape + Name: Illusion Ancient Cape + Type: Armor + Weight: 600 + Defense: 18 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Garment: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@val = min(getrefine(),10)/2; bonus bAgi,(2+.@val); + - Id: 20845 + AegisName: Maracco_Skin + Name: Malach's Skin + Type: Armor + Buy: 20 + Weight: 600 + Defense: 15 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bStr,5; bonus bLuk,5; bonus bMdef,10; bonus2 bSubEle,Ele_Ghost,5; bonus2 bSubEle,Ele_Holy,5; bonus2 bSubRace,RC_Angel,5; bonus2 bSubRace,RC_Formless,5; .@r = getrefine(); .@s = (readparam(bStr)+readparam(bLuk))/20; if (.@r>=7) { bonus bCritAtkRate,5; if (.@r>=8) { bonus bAspdRate,.@s; bonus bCritical,.@s; if (.@r>=9) { bonus bCritAtkRate,5; } } } + - Id: 20846 + AegisName: Temporal_Manteau + Name: Temporal Manteau + Type: Armor + Buy: 20 + Weight: 400 + Defense: 38 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bMdef,10; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; + - Id: 20847 + AegisName: Illusion_Survivor_Manteau + Name: Illusion Survivor Manteau + Type: Armor + Weight: 550 + Defense: 30 + Slots: 1 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Garment: true + EquipLevelMin: 130 + Refineable: true + Script: | + bonus bVit,15; + - Id: 20856 + AegisName: YSF01_Manteau + Name: YSF01 Manteau + Type: Armor + Weight: 750 + Defense: 32 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); if (.@r >= 8) { bonus bBaseAtk,20; if (.@r >= 11) { .@val = -3; if (.@r >= 13) { .@val += -4; } } } if (readparam(bVit) >= 125) { .@val += -10; } if (.@val) { bonus bDelayrate,.@val; } + - Id: 20859 + AegisName: Phreeoni_Wings + Name: Phreeoni Wings + Type: Armor + Buy: 20 + Weight: 300 + Defense: 10 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxHPrate,10; bonus bHit,10; if (.@r>=7) bonus bHit,20; if (.@r>=8) bonus bHit,30; if (.@r>=9) bonus bHit,40; if (.@r>=10) bonus bHit,100; + - Id: 20860 + AegisName: Battle_Surcoat + Name: Battle Surcoat + Type: Armor + Buy: 20 + Weight: 300 + Defense: 10 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 70 + Refineable: true + Script: | + .@r = getrefine(); if (.@r>=9) { bonus bAspdRate,9; bonus bFlee,30; skill "TF_DOUBLE",10; skill "MO_TRIPLEATTACK",10; bonus bDoubleRate,50; } else if (.@r>=7) { bonus bAspdRate,6; bonus bFlee,20; skill "TF_DOUBLE",5; skill "MO_TRIPLEATTACK",5; bonus bDoubleRate,25; } else { bonus bAspdRate,3; bonus bFlee,10; skill "TF_DOUBLE",3; skill "MO_TRIPLEATTACK",3; bonus bDoubleRate,15; } + - Id: 20863 + AegisName: Menblatt's_Wings + Name: Menblatt's Wings + Type: Armor + Buy: 20 + Weight: 400 + Defense: 40 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,30; if (.@r>=5) bonus bLongAtkRate,readparam(bDex)/60; if (.@r>=7) bonus bLongAtkRate,readparam(bDex)/10; + - Id: 20906 + AegisName: Beginner's_Cloak + Name: Beginner's Cloak + Type: Armor + Buy: 20 + Defense: 10 + Locations: + Garment: true + EquipLevelMin: 100 + Script: | + bonus2 bSubEle,Ele_Neutral,20; bonus bVariableCastrate,-5; + - Id: 20922 + AegisName: Leviathan_Muffler + Name: Leviathan Muffler + Type: Armor + Buy: 20 + Weight: 200 + Defense: 18 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bMdef,5; bonus2 bAddEle,Ele_Water,15+.@r; bonus2 bMagicAddEle,Ele_Water,15+.@r; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bAspdRate,.@r; if (.@r>=10) bonus2 bSubEle,Ele_Water,100; + - Id: 20923 + AegisName: Illusion_Goibne_Spaulders + Name: Illusion Goibne Spaulders + Type: Armor + Weight: 1000 + Defense: 47 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Garment: true + EquipLevelMin: 130 + Refineable: true + Script: | + .@r = getrefine(); bonus bMdef,2; bonus bVit,1; if (.@r >= 7) { .@val = 5; if (.@r >= 9) { .@val += 10; } } if (.@val) { bonus2 bAddEle,Ele_Water,.@val; bonus2 bAddEle,Ele_Wind,.@val; bonus2 bAddEle,Ele_Earth,.@val; bonus2 bAddEle,Ele_Fire,.@val; } + - Id: 20925 + AegisName: Commander_Manteau2 + Name: Commander Manteau + Type: Armor + Buy: 20 + Weight: 300 + Defense: 20 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bMdef,10; bonus bBaseAtk,10; bonus bMatk,10; bonus2 bSubRace,RC_Player_Human,3; if (.@r>=5) { bonus bBaseAtk,20; bonus bMatk,20; bonus bMaxHPrate,7; bonus bMaxSPrate,7; } if (.@r>=7) { bonus bBaseAtk,30; bonus bMatk,30; bonus bMaxHPrate,10; bonus bMaxSPrate,10; } + - Id: 20931 + AegisName: Prism_Rangers_Scarf + Name: Prism Rangers Scarf + Type: Armor + Buy: 20 + Weight: 300 + Defense: 12 + Locations: + Garment: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; if (.@r >= 7) { .@val = 10; } else if (.@r >= 5) { .@val = 5; } else { .@val = 2; } bonus bMaxHPrate,.@val; bonus bMaxSPrate,.@val; bonus bLongAtkRate,.@val+2*getskilllv("RA_AIMEDBOLT"); if (getskilllv("RA_WUGRIDER") == 3) { bonus2 bSkillCooldown,"RA_UNLIMIT",-180000; } if (getskilllv("RA_CAMOUFLAGE") == 5) { bonus bDelayrate,-10; } bonus2 bSkillCooldown,"RA_ARROWSTORM",-200; bonus2 bSkillAtk,"RA_ARROWSTORM",1; + UnEquipScript: | + sc_end SC_UNLIMIT; + - Id: 20932 + AegisName: Old_Morroc_Shawl + Name: Old Morocc Shawl + Type: Armor + Buy: 20 + Weight: 300 + Defense: 10 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r= getrefine(); bonus bMaxHPrate,5; bonus bFlee,10; if (.@r>=7) bonus bFlee,20; if (.@r>=8) { bonus bFlee,30; bonus bRestartFullRecover; } if (.@r>=9) bonus bFlee,40; if (.@r>=10) bonus bFlee2,25; + - Id: 20933 + AegisName: Illusion_Engine_wing_A-type + Name: Illusion Engine wing A-type + Type: Armor + Weight: 900 + Defense: 50 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 130 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxHP,1000+(100*(.@r/2)); if (.@r >= 7) { bonus bAspdRate,5; } + - Id: 20934 + AegisName: Illusion_Engine_wing_B-type + Name: Illusion Engine wing B-type + Type: Armor + Weight: 900 + Defense: 50 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 130 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxHP,1000+(100*(.@r/2)); if (.@r >= 7) { bonus bVariableCastrate,-5; } + - Id: 20935 + AegisName: Lava_Leather_Manteau + Name: Lava Leather Manteau + Type: Armor + Buy: 20 + Weight: 400 + Defense: 50 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 175 + Refineable: true + Script: | + bonus bHit,10; .@r = getrefine(); if (.@r>=7) bonus bHit,5; if (.@r>=9) bonus bHit,5; if (.@r>=11) bonus bDelayrate,-3; + - Id: 20936 + AegisName: Lava_Leather_Muffler + Name: Lava Leather Muffler + Type: Armor + Buy: 20 + Weight: 350 + Defense: 35 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 175 + Refineable: true + Script: | + bonus bCritical,5; .@r = getrefine(); if (.@r>=7) bonus bCritical,5; if (.@r>=9) bonus bCritAtkRate,5; if (.@r>=11) bonus2 bAddClass,Class_All,3; + - Id: 20937 + AegisName: Lava_Leather_Hood + Name: Lava Leather Hood + Type: Armor + Buy: 20 + Weight: 300 + Defense: 25 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 175 + Refineable: true + Script: | + bonus bVariableCastrate,-10; .@r = getrefine(); if (.@r>=7) bonus bVariableCastrate,-10; if (.@r>=9) bonus bVariableCastrate,-10; if (.@r>=11) bonus2 bMagicAtkEle,Ele_Fire,5; + - Id: 20941 + AegisName: Phoenix_Muffler + Name: Phoenix Muffler + Type: Armor + Buy: 20 + Weight: 200 + Defense: 18 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bMdef,5; bonus2 bAddEle,Ele_Fire,15+.@r; bonus2 bMagicAddEle,Ele_Fire,15+.@r; bonus2 bSubRace,RC_Player_Human,5; bonus bAspdRate,.@r; if (.@r>=10) bonus2 bSubEle,Ele_Fire,100; + - Id: 20942 + AegisName: Manteau_Of_Guardsman + Name: Manteau Of Guardsman + Type: Armor + Buy: 20 + Weight: 500 + Defense: 15 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bMdef,15; bonus bMaxHPrate,5+3*(.@r/3); bonus bMaxSPrate,5+3*(.@r/3); bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; + - Id: 20943 + AegisName: Geffen_Magic_Muffler + Name: Geffen Magic Muffler + Type: Armor + Buy: 20 + Weight: 550 + Defense: 20 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Garment: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); .@val = -10; bonus bMatk,(10*(.@r/2)); bonus bMatkRate,(.@r/3); if (.@r >= 7) { bonus2 bMagicAtkEle,Ele_All,5; } if (.@r >= 9) { .@val -= 10; } bonus bVariableCastrate,.@val; + - Id: 20944 + AegisName: Anti_Magic_Manteau + Name: Anti Magic Manteau + Type: Armor + Buy: 20 + Weight: 750 + Defense: 23 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Garment: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxHP,(300+(100*(.@r/2))); bonus bMaxHPRate,(2*(.@r/3)); if (.@r >= 7) { bonus2 bAddClass,Class_All,7; } if (.@r >= 9) { bonus bVariableCastrate,-10; } + - Id: 20948 + AegisName: Illusion_Morpheus's_Shawl + Name: Illusion Morpheus's Shawl + Type: Armor + Buy: 20 + Weight: 600 + Defense: 8 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 130 + Refineable: true + Script: | + bonus bMaxSPrate,10; bonus bMdef,5; .@r = getrefine(); if (.@r >= 7) { .@bonus = -10; if (.@r >= 9) { .@bonus -= 10; } bonus bVariableCastrate,.@bonus; } + - Id: 20949 + AegisName: Ladon_Skin + Name: Ladon's Skin + Type: Armor + Buy: 20 + Weight: 600 + Defense: 15 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5; bonus2 bSubEle,Ele_Wind,5; bonus2 bSubEle,Ele_Earth,5; bonus bAgi,5; bonus bVit,5; bonus bMdef,10; .@r = getrefine(); if (.@r>=7) { .@val = 10; bonus bSPGainValue,10; bonus bLongSPGainValue,10; if (.@r>=8) { .@s = (readparam(bAgi)+readparam(bVit))/20; bonus bBaseAtk,15*.@s; bonus bHit,5*.@s; if (.@r>=9) { .@val += 10; } } bonus bSPGainValue,.@val; bonus bLongSPGainValue,.@val; } + - Id: 20952 + AegisName: Nameless_Assassin_Muffler + Name: Nameless Assassin's Muffler + Type: Armor + Buy: 20 + Weight: 100 + Defense: 10 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r= getrefine(); bonus bMdef,5; bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus2 bSubRace,RC_Player_Human,5; if (.@r>=7) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bAspd,1; bonus bHPGainValue,5; bonus bLongHPGainValue,5; } if (.@r>=8) bonus bSpeedRate,40; if (.@r>=9) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bAspd,1; bonus bHPGainValue,5; bonus bLongHPGainValue,5; } if (.@r>=10) skill "AS_CLOAKING",3; + - Id: 20962 + AegisName: Typhon_Skin + Name: Typhon's Skin + Type: Armor + Buy: 20 + Weight: 600 + Defense: 15 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Fish,5; bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubEle,Ele_Poison,5; bonus bAgi,5; bonus bVit,5; bonus bMdef,10; .@r = getrefine(); if (.@r>=7) { .@sp = 10; if (.@r>=8) { .@s = (readparam(bAgi)+readparam(bVit))/20; bonus bMatk,15*.@s; bonus bDef,20*.@s; if (.@r>=9) { .@sp += 10; } } bonus bMagicSPGainValue,.@sp; } + - Id: 20969 + AegisName: Rainbow_Muffler + Name: Rainbow Muffler + Type: Armor + Buy: 20 + Weight: 300 + Defense: 12 + Locations: + Garment: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); .@lvl = getskilllv("WM_GLOOMYDAY"); if (.@r >= 7) { .@val = 10; } else if (.@r >= 5) { .@val = 5; } else { .@val = 2; } bonus bMaxHPrate,.@val; bonus bMaxSPrate,.@val; bonus bMatkRate,.@val+(4*.@lvl); bonus2 bSubRace,RC_Player_Human,5; bonus2 bSkillAtk,"WM_METALICSOUND",4*.@lvl; if (getskilllv("WM_FRIGG_SONG") == 5) { bonus2 bSkillCooldown,"WM_METALICSOUND",-200; bonus bAspdRate,10; } if (getskilllv("WM_LULLABY_DEEPSLEEP") == 5) { skill "AL_HEAL",10; bonus bMagicHPGainValue,200; bonus bMagicSPGainValue,20; } + - Id: 21000 + AegisName: Upg_Twohand_Sword + Name: Upg Two-Handed Sword + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 1500 + Attack: 100 + Range: 1 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + Script: | + .@r = getrefine(); bonus bBaseAtk,(.@r*12); bonus bMatk,(.@r*5); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*10); + - Id: 21001 + AegisName: Velum_Claymore + Name: Vellum Claymore + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 3500 + Attack: 260 + Range: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 95 + Refineable: true + Script: | + bonus2 bAddRace,RC_Player_Human,80; bonus2 bIgnoreDefRaceRate,RC_Player_Human,30; .@r = getrefine(); if(.@r>=6) { bonus2 bAddRace,RC_Player_Human,40; } if(.@r>=9) { autobonus2 "{ bonus bShortWeaponDamageReturn,20; bonus bMagicDamageReturn,20; }",6000,2000,BF_WEAPON,"{ specialeffect2 EF_REFLECTSHIELD; }"; } + - Id: 21002 + AegisName: Velum_Katzbalger + Name: Vellum Katzbalger + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 2500 + Attack: 100 + Range: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 95 + Refineable: true + Script: | + bonus3 bHPVanishRaceRate,RC_Player_Human,1000,8; + - Id: 21003 + AegisName: Muramasa_ + Name: Muramasa + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 1000 + Attack: 155 + Range: 1 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 48 + Refineable: true + Script: | + bonus bCritical,30; bonus bAspdRate,8; bonus2 bAddEff2,Eff_Curse,10; + - Id: 21004 + AegisName: Alca_Bringer_ + Name: Alca Bringer + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 3400 + Attack: 280 + Range: 2 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 100 + Refineable: true + - Id: 21005 + AegisName: Metal_Two_Hand_Sword + Name: Metal Two Hand Sword + Type: Weapon + SubType: 2hSword + Buy: 20 + Attack: 95 + Range: 1 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,(.@r*6); bonus bMatk,(.@r*2); .@i = min(BaseLevel/10,12); if(.@i>2) bonus bBaseAtk,((.@i-2)*5); + - Id: 21006 + AegisName: TE_Woe_Two_Hand_Sword + Name: TE Woe Two Hand Sword + Type: Weapon + SubType: 2hSword + Attack: 150 + Range: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 40 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Bleeding,3000; + - Id: 21007 + AegisName: Heavy_Sword + Name: Heavy Greatsword + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 2500 + Attack: 330 + Range: 1 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 1 + EquipLevelMin: 150 + Refineable: true + Script: | + bonus bStr,20; + - Id: 21008 + AegisName: Small_Karasuma + Name: Small Karasuma + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 1000 + Attack: 170 + Range: 1 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 50 + Refineable: true + Script: | + bonus bCritAtkRate,getrefine()*2; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,50; + - Id: 21009 + AegisName: Thanos_Great_Sword + Name: Thanos Great Sword + Type: Weapon + SubType: 2hSword + Buy: 10 + Weight: 1300 + Attack: 280 + MagicAttack: 120 + Range: 1 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 120 + Refineable: true + Script: | + bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000; + UnEquipScript: | + heal -1000,0; + - Id: 21010 + AegisName: Tw_Sword_Of_Evil_Slayer + Name: Evil Slayer Slaher Sword + Type: Weapon + SubType: 2hSword + Weight: 2000 + Attack: 225 + Range: 1 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 100 + Refineable: true + Script: | + bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; .@r = getrefine(); if(.@r>=9) { .@dmg = 5; if(.@r>=12) { .@dmg += 7; } bonus2 bAddClass,Class_All,.@dmg; } + - Id: 21011 + AegisName: Giant_Blade + Name: Gigantic Blade + Type: Weapon + SubType: 2hSword + Buy: 30000 + Weight: 5000 + Attack: 300 + Range: 1 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 130 + Refineable: true + Script: | + bonus bUnbreakableWeapon; bonus bAspdRate,-5; bonus bCritAtkRate,getrefine(); if(readparam(bStr)<=110){ bonus bAtk,-250; } + - Id: 21012 + AegisName: Some_Wizard_MagicSword + Name: Some Wizard MagicSword + Type: Weapon + SubType: 2hSword + Weight: 2200 + Attack: 200 + MagicAttack: 150 + Range: 1 + Slots: 2 + Jobs: + Knight: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 110 + Refineable: true + - Id: 21013 + AegisName: Hetairoi_Sword + Name: Hetairoi Sword + Type: Weapon + SubType: 2hSword + Weight: 2200 + Attack: 210 + Range: 1 + Slots: 2 + Jobs: + Knight: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 110 + Refineable: true + Script: | + bonus2 bSkillUseSP,"KN_AUTOCOUNTER",2; bonus2 bSkillUseSP,"LK_PARRYING",25; + - Id: 21014 + AegisName: Infinity_Two-Handed_Sword + Name: Infinity Two-Handed Sword + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 500 + Attack: 230 + Range: 1 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 21015 + AegisName: Crimson_Two-Handed_Sword + Name: Crimson Two-Handed Sword + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 1700 + Attack: 170 + Range: 1 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bMatk,(.@r<=15?(pow(.@r,2)/2):225); + - Id: 21016 + AegisName: Two_Handed_Sword_of_Vicious_Mind + Name: Two-Handed Sword of Vicious Mind + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 2200 + Attack: 220 + Range: 1 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 160 + Refineable: true + Script: | + bonus bAtk,pow(min(getrefine(),15),2); + - Id: 21018 + AegisName: Lindy_Hop + Name: Lindy Hop + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 3400 + Attack: 340 + Range: 1 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bAddClass,Class_All,.@r/2; bonus bAspdRate,.@r; bonus bUnbreakableWeapon; + - Id: 21019 + AegisName: Onimaru + Name: Onimaru + Type: Weapon + SubType: 2hSword + Weight: 4200 + Attack: 75 + Range: 1 + Slots: 2 + Jobs: + Knight: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 130 + Refineable: true + Script: | + .@bStr = readparam(bStr); .@r = getrefine(); bonus bBaseAtk,(min(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; bonus4 bAutoSpell,"NPC_WIDECURSE",4,100,0; if (.@r > 8) bonus4 bAutoSpellOnSkill,"LK_BERSERK","BS_OVERTHRUST",5,100; + - Id: 21039 + AegisName: Royal_Knight's_Broadsword + Name: Royal Knight's Broadsword + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 4000 + Attack: 280 + Range: 1 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 175 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,20*(.@r/2); if (.@r>=7) bonus bCritAtkRate,10; if (.@r>=9) bonus bUnbreakableWeapon; + - Id: 21047 + AegisName: Beam_Claymor-OS + Name: Beam Claymor-OS + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 1800 + Attack: 250 + Range: 1 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 130 + Refineable: true + Script: | + .@r = getrefine(); bonus bUnbreakableWeapon; bonus bCritical,5; if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus bCritAtkRate,15; if (.@r >= 11) { bonus2 bAddSize,Size_Small,20; bonus2 bAddSize,Size_Medium,20; } } } + - Id: 21050 + AegisName: Illusion_Tae_Goo_Lyeon + Name: Illusion Tae Goo Lyeon + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 2000 + Attack: 250 + Range: 1 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 120 + Refineable: true + Script: | + .@r = getrefine(); bonus bFlee2,10; bonus bLongAtkRate,.@r*2; if (.@r >= 7) { bonus bUseSPrate,-20; if (.@r >= 9) { bonus bDelayrate,-20; if (.@r >= 11) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; } } } + - Id: 21051 + AegisName: Volar + Name: Volar + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 2800 + Attack: 280 + Range: 1 + Slots: 2 + Jobs: + Knight: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"KN_BOWLINGBASH",30; bonus bBaseAtk,4*.@r; if (.@r>=9) { bonus2 bSkillCooldown,"KN_BOWLINGBASH",-1000; bonus2 bSkillCooldown,"RK_IGNITIONBREAK",-1000; } if (.@r>=11) { bonus bUnbreakableWeapon; bonus2 bSkillAtk,"KN_BOWLINGBASH",20; } + - Id: 21052 + AegisName: Vernan + Name: Vernan + Type: Weapon + SubType: 2hSword + Buy: 20 + Weight: 6500 + Attack: 300 + Range: 1 + Slots: 2 + Jobs: + Knight: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); bonus bLongAtkRate,.@r; bonus2 bAddClass,Class_All,5; if (.@r>=9) { bonus2 bSkillAtk,"LK_SPIRALPIERCE",30; bonus2 bSkillAtk,"RK_SONICWAVE",30; } if (.@r>=11) { bonus2 bSkillCooldown,"RK_SONICWAVE",-1500; } + - Id: 21058 + AegisName: Up_Dragonic_Slayer + Name: Patent Dragonic Slayer + Type: Weapon + SubType: 1hSword + Weight: 2000 + Attack: 200 + Range: 1 + Slots: 2 + Jobs: + Knight: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 150 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxHPrate,.@r/2*5; bonus bMaxSPrate,.@r/2*5; bonus2 bSkillAtk,"RK_DRAGONBREATH",.@r/3*5; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",.@r/3*5; if (.@r>=7){ bonus bDelayRate,-10; bonus bVariableCastrate,-10; } if (.@r>=9){ bonus bLongAtkRate,10; } if (.@r>=11){ bonus bDelayRate,-7; bonus bMaxSPrate,5; } + - Id: 22000 + AegisName: Temporal_Str_Boots + Name: Temporal Boots Of Strength + Type: Armor + Buy: 20 + Weight: 600 + Defense: 25 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Shoes: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAtk,7*(.@r/3); if(readparam(bStr)>=120) bonus bAtk,50; + - Id: 22001 + AegisName: Temporal_Int_Boots + Name: Temporal Boots Of Intelligence + Type: Armor + Buy: 20 + Weight: 600 + Defense: 20 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Shoes: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus bMdef,5; bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMatk,10*(.@r/3); if(readparam(bInt)>=120) bonus bMatk,60; + - Id: 22002 + AegisName: Temporal_Agi_Boots + Name: Temporal Boots Of Agility + Type: Armor + Buy: 20 + Weight: 600 + Defense: 25 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Shoes: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAspdRate,3*(.@r/3); if(readparam(bAgi)>=120) bonus bAspd,1; + - Id: 22003 + AegisName: Temporal_Vit_Boots + Name: Temporal Boots Of Vitality + Type: Armor + Buy: 20 + Weight: 600 + Defense: 25 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Shoes: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxHP,300+(300*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); if(readparam(bVit)>=120) bonus bMaxHPrate,8; + - Id: 22004 + AegisName: Temporal_Dex_Boots + Name: Temporal Boots Of Dexterity + Type: Armor + Buy: 20 + Weight: 600 + Defense: 25 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Shoes: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bDex,3*(.@r/3); if(readparam(bDex)>=120){ bonus bLongAtkRate,5; bonus bFixedCast,-500; } + - Id: 22005 + AegisName: Temporal_Luk_Boots + Name: Temporal Boots Of Luck + Type: Armor + Buy: 20 + Weight: 600 + Defense: 20 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Shoes: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMdef,5; bonus bCritAtkRate,2*(.@r/3); if(readparam(bLuk)>=120) bonus bCritAtkRate,30; + - Id: 22006 + AegisName: Temporal_Str_Boots_ + Name: Temporal Boots Of Strength + Type: Armor + Buy: 20 + Weight: 600 + Defense: 25 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Shoes: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAtk,7*(.@r/3); if(readparam(bStr)>=120) bonus bAtk,50; + - Id: 22007 + AegisName: Temporal_Vit_Boots_ + Name: Temporal Boots Of Vitality + Type: Armor + Buy: 20 + Weight: 600 + Defense: 25 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Shoes: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxHP,300+(300*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); if(readparam(bVit)>=120) bonus bMaxHPrate,8; + - Id: 22008 + AegisName: Temporal_Dex_Boots_ + Name: Temporal Boots Of Dexterity + Type: Armor + Buy: 20 + Weight: 600 + Defense: 25 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Shoes: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bDex,3*(.@r/3); if(readparam(bDex)>=120){ bonus bLongAtkRate,5; bonus bFixedCast,-500; } + - Id: 22009 + AegisName: Temporal_Int_Boots_ + Name: Temporal Boots Of Intelligence + Type: Armor + Buy: 20 + Weight: 600 + Defense: 20 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Shoes: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus bMdef,5; bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMatk,10*(.@r/3); if(readparam(bInt)>=120) bonus bMatk,60; + - Id: 22010 + AegisName: Temporal_Agi_Boots_ + Name: Temporal Boots Of Agility + Type: Armor + Buy: 20 + Weight: 600 + Defense: 25 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Shoes: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAspdRate,3*(.@r/3); if(readparam(bAgi)>=120) bonus bAspd,1; + - Id: 22011 + AegisName: Temporal_Luk_Boots_ + Name: Temporal Boots Of Luck + Type: Armor + Buy: 20 + Weight: 600 + Defense: 20 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Shoes: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMdef,5; bonus bCritAtkRate,2*(.@r/3); if(readparam(bLuk)>=120) bonus bCritAtkRate,30; + - Id: 22012 + AegisName: Mana_Boots + Name: Mana Boots + Type: Armor + Locations: + Shoes: true + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bExpAddRace,RC_All,10; + - Id: 22014 + AegisName: Enhanced_Variant_Shoes + Name: Enhanced Variant Shoes + Type: Armor + Buy: 20 + Weight: 500 + Defense: 13 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Monk: true + Priest: true + Rebellion: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Locations: + Shoes: true + EquipLevelMin: 85 + Refineable: true + Script: | + bonus bMaxHPrate,12; bonus bMaxSPrate,12; .@r = getrefine(); bonus bDef,.@r; bonus bMdef,.@r; + - Id: 22015 + AegisName: Impr_Angel's_Arrival + Name: Advanced Angel's Reincarnation + Type: Armor + Buy: 10000 + Weight: 300 + Defense: 8 + Slots: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Shoes: true + EquipLevelMin: 99 + Refineable: true + Script: | + bonus bMaxHP,500; bonus bMaxSP,100; + - Id: 22016 + AegisName: Assassin's_Shoes + Name: Assassin's Shoes + Type: Armor + Buy: 20 + Weight: 300 + Defense: 10 + Locations: + Shoes: true + EquipLevelMin: 30 + Refineable: true + Script: | + bonus2 bExpAddRace,RC_DemiHuman,5+getrefine(); + - Id: 22017 + AegisName: Fisherman_Shoes + Name: Fisherman's Shoes + Type: Armor + Buy: 20 + Weight: 300 + Defense: 10 + Locations: + Shoes: true + EquipLevelMin: 30 + Refineable: true + Script: | + bonus2 bExpAddRace,RC_Fish,5+getrefine(); + - Id: 22018 + AegisName: Shoes_Of_Wise_Man + Name: Shoes Of Wise Man + Type: Armor + Buy: 10 + Weight: 300 + Defense: 15 + Slots: 1 + Locations: + Shoes: true + EquipLevelMin: 50 + Refineable: true + Script: | + .@r = getrefine(); if(.@r>5){ bonus bInt,.@r-5; bonus bMaxHPrate,-(.@r-5); } + - Id: 22032 + AegisName: Exorcist_Shoes + Name: Exorcist's Shoes + Type: Armor + Buy: 20 + Weight: 300 + Defense: 10 + Locations: + Shoes: true + EquipLevelMin: 30 + Refineable: true + Script: | + bonus2 bExpAddRace,RC_Demon,5+getrefine(); + - Id: 22033 + AegisName: Boots_Of_Gray + Name: Boots of Gray + Type: Armor + Buy: 20 + Weight: 400 + Defense: 25 + Slots: 1 + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Shoes: true + EquipLevelMin: 120 + Refineable: true + Script: | + bonus2 bSubEle,Ele_Holy,2+getrefine()/3; + - Id: 22034 + AegisName: Crimson_Gaiter + Name: Crimson Gaiter + Type: Armor + Weight: 500 + Defense: 10 + Locations: + Shoes: true + EquipLevelMin: 50 + Refineable: true + Script: | + bonus bCritical,2; bonus bCritAtkRate,2; if(getrefine()>=7){ bonus bCritical,3; bonus bCritAtkRate,3; } + - Id: 22035 + AegisName: Vet_Nepen_Heel + Name: Heoric Nepenthes Shoes + Type: Armor + Buy: 10 + Weight: 300 + Defense: 10 + Slots: 1 + Locations: + Shoes: true + EquipLevelMin: 160 + Refineable: true + Script: | + .@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; + - Id: 22036 + AegisName: Vet_SliverFox_Boots + Name: Heroic Silver Fox Leather Boots + Type: Armor + Buy: 10 + Weight: 300 + Defense: 15 + Slots: 1 + Locations: + Shoes: true + EquipLevelMin: 160 + Refineable: true + Script: | + .@r = getrefine(); if (.@r>=8 && .@r<=13) .@i=.@r; else if (.@r>13) .@i=13; bonus bLongAtkRate,5+.@i; + - Id: 22037 + AegisName: Vet_Ungo_Boots + Name: Heroic Ungoliant Upgrade Boots + Type: Armor + Buy: 10 + Weight: 300 + Defense: 10 + Slots: 1 + Locations: + Shoes: true + EquipLevelMin: 160 + Refineable: true + Script: | + .@r = getrefine(); if (.@r>=8 && .@r<=13) .@i=.@r; else if (.@r>13) .@i=13; bonus bUseSPrate,-5-.@i; + - Id: 22042 + AegisName: Talaria_Shoes + Name: Talaria Shoes + Type: Armor + Buy: 10 + Weight: 300 + Defense: 15 + Slots: 1 + Locations: + Shoes: true + EquipLevelMin: 50 + Refineable: true + Script: | + bonus bAgi,2; bonus bAspd,1; bonus bMdef,5; + - Id: 22043 + AegisName: Supplement_Part_Agi + Name: Supplement Part Agi + Type: Armor + Buy: 25000 + Weight: 350 + Defense: 25 + Slots: 1 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Shoes: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bAspdRate,5+(getrefine()/4); + - Id: 22044 + AegisName: Upgrade_Part_Booster + Name: Reinforced Parts - Booster + Type: Armor + Buy: 10 + Weight: 1000 + Defense: 23 + Slots: 1 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Shoes: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus2 bSkillUseSP,"NC_HOVERING",15; if(getrefine()>=7){bonus2 bSkillUseSP,"NC_HOVERING",-20;} + - Id: 22045 + AegisName: Beach_Sandals + Name: Summer Sandals + Type: Armor + Buy: 10 + Weight: 200 + Defense: 5 + Locations: + Shoes: true + Refineable: true + Script: | + bonus bFlee,5; bonus3 bAutoSpellWhenHit,"AL_INCAGI",10,300; + - Id: 22046 + AegisName: Airship_Boots + Name: Airship's Boots + Type: Armor + Buy: 10 + Defense: 26 + Locations: + Shoes: true + EquipLevelMin: 125 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAgi,1; bonus bAspdRate,10; + - Id: 22047 + AegisName: Felock_Boots + Name: Felrock's Boots + Type: Armor + Buy: 10 + Weight: 250 + Defense: 13 + Locations: + Shoes: true + EquipLevelMin: 125 + Refineable: true + Script: | + 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; } + - Id: 22059 + AegisName: Aegir_Shoes + Name: Aegir Shoes + Type: Armor + Buy: 10 + Weight: 300 + Defense: 13 + Slots: 1 + Locations: + Shoes: true + EquipLevelMin: 40 + Refineable: true + Script: | + bonus bUnbreakableShoes; bonus bMaxHP,500; bonus bMaxSP,50; + - Id: 22064 + AegisName: Thorny_Shoes + Name: Thorny Shoes + Type: Armor + Weight: 1000 + Defense: 25 + Slots: 1 + Locations: + Shoes: true + EquipLevelMin: 70 + Refineable: true + Script: | + bonus bShortWeaponDamageReturn,getrefine()/2; + - Id: 22066 + AegisName: Spirit_Shoes + Name: Spirit Shoes + Type: Armor + Buy: 10 + Weight: 250 + Defense: 12 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Shoes: true + EquipLevelMin: 90 + Refineable: true + Script: | + bonus bMdef,3; bonus2 bSubEle,Ele_All,5; .@r = getrefine(); bonus bMaxHPrate,.@r*1; bonus bMaxSPrate,.@r*1; + - Id: 22067 + AegisName: Witch_Shoes + Name: Shoe of Witch + Type: Armor + Buy: 10 + Weight: 400 + Defense: 10 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + skill "ALL_CATCRY",1; + - Id: 22069 + AegisName: Lian_Shoes + Name: Lian Shoes + Type: Armor + Weight: 250 + Defense: 12 + Slots: 1 + Locations: + Shoes: true + EquipLevelMin: 90 + Refineable: true + Script: | + bonus bMdef,3; bonus2 bSubEle,Ele_Neutral,5; .@r = getrefine(); bonus bMaxHPrate,.@r; bonus bMaxSPrate,.@r; + - Id: 22072 + AegisName: Hikingboots + Name: Hikingboots + Type: Armor + Weight: 500 + Defense: 10 + Slots: 1 + Locations: + Shoes: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxHPRate,4+(.@r/3); bonus bMaxSPRate,4+(.@r/3); if (.@r > 9) bonus bSpeedRate,25; + - Id: 22075 + AegisName: Rift_Shoes + Name: Rift Shoes + Type: Armor + Buy: 20 + Weight: 250 + Defense: 12 + Slots: 1 + Locations: + Shoes: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMaxHP,(.@r >= 9 ? 1300 : .@r >= 7 ? 700 : 300); bonus bMaxSP,-50; + - Id: 22076 + AegisName: Wooden_Slipper + Name: Wooden Slipper + Type: Armor + Buy: 20 + Weight: 50 + Defense: 10 + Slots: 1 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Shoes: true + EquipLevelMin: 9 + Refineable: true + Script: | + bonus2 bHPRegenRate,2,10000; + - Id: 22077 + AegisName: Red_Eco-Friendly_Shoes + Name: Red Eco-Friendly Shoes + Type: Armor + Buy: 20 + Weight: 100 + Defense: 20 + Slots: 1 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Shoes: true + EquipLevelMin: 18 + Refineable: true + Script: | + bonus bCritical,5; bonus2 bHPRegenRate,4,10000; bonus2 bSPRegenRate,1,10000; + - Id: 22078 + AegisName: Unity_STR_Boots + Name: Unity STR Boots + Type: Armor + Buy: 10 + Weight: 300 + Defense: 20 + Slots: 1 + Locations: + Shoes: true + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bStr,.@r/2; } + - Id: 22079 + AegisName: Unity_AGI_Boots + Name: Unity AGI Boots + Type: Armor + Buy: 10 + Weight: 300 + Defense: 20 + Slots: 1 + Locations: + Shoes: true + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bAgi,.@r/2; } + - Id: 22080 + AegisName: Unity_DEX_Boots + Name: Unity DEX Boots + Type: Armor + Buy: 10 + Weight: 300 + Defense: 20 + Slots: 1 + Locations: + Shoes: true + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bDex,.@r/2; } + - Id: 22081 + AegisName: Unity_INT_Boots + Name: Unity INT Boots + Type: Armor + Buy: 10 + Weight: 300 + Defense: 20 + Slots: 1 + Locations: + Shoes: true + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bInt,.@r/2; } + - Id: 22082 + AegisName: Polyhedron_Shoes + Name: Polyhedron Shoes + Type: Armor + Weight: 500 + Defense: 12 + Slots: 1 + Locations: + Shoes: true + EquipLevelMin: 90 + Refineable: true + Script: | + .@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; } + - Id: 22083 + AegisName: Private_Doram_Shoes + Name: Private Doram Shoes + Type: Armor + Buy: 20 + Weight: 500 + Defense: 25 + Slots: 1 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Shoes: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bMaxHP,100; bonus bMaxSP,50; .@r = getrefine()/3; bonus bHPrecovRate,.@r*10; bonus bSPrecovRate,.@r*10; + - Id: 22084 + AegisName: Luxury_Doram_Shoes + Name: Luxury Doram Shoes + Type: Armor + Buy: 20 + Weight: 600 + Defense: 30 + Slots: 1 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Shoes: true + EquipLevelMin: 140 + Refineable: true + Script: | + bonus bMaxHP,300; bonus bMaxSP,100; .@r = getrefine()/3; bonus bHPrecovRate,20*.@r; bonus bSPrecovRate,20*.@r; + - Id: 22085 + AegisName: Elegant_Doram_Shoes + Name: Elegant Doram Shoes + Type: Armor + Buy: 20 + Weight: 700 + Defense: 35 + Slots: 1 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Shoes: true + EquipLevelMin: 175 + Refineable: true + Script: | + bonus bMaxHPrate,10; bonus bMaxSPrate,5; .@r = getrefine()/2; bonus bMaxHP,100*.@r; bonus bMaxSP,20*.@r; if(.@r >= 4) bonus2 bSkillUseSP,"SU_LOPE",5; + - Id: 22089 + AegisName: Crimson_Gaiter_ + Name: Crimson Gaiter + Type: Armor + Weight: 500 + Defense: 10 + Slots: 1 + Locations: + Shoes: true + EquipLevelMin: 50 + Refineable: true + Script: | + bonus bCritical,2; bonus bCritAtkRate,2; if(getrefine()>=7){ bonus bCritical,3; bonus bCritAtkRate,3; } + - Id: 22101 + AegisName: Angel_Poring_Boots + Name: Angel Poring Boots + Type: Armor + Buy: 10 + Weight: 300 + Defense: 15 + Slots: 1 + Locations: + Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bAllStats,1; skill "AL_HEAL",1; + - Id: 22103 + AegisName: Excelion_Leg + Name: Excelion Leg + Type: Armor + Weight: 500 + Defense: 13 + Locations: + Shoes: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxHP,5+((BaseLevel > 129) ? 4 : 0)+(.@r/3)*3; bonus bMaxSP,5+((BaseLevel > 129) ? 4 : 0)+(.@r/3)*3; + - Id: 22104 + AegisName: Pororoca_Shoes + Name: Pororoca Shoes + Type: Armor + Buy: 20 + Weight: 500 + Defense: 15 + Locations: + Shoes: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bMdef,15; bonus bMatkRate,2; bonus2 bMagicAtkEle,Ele_Water,2; skill "SA_DELUGE",5; if (getrefine()>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bMatkRate,3; bonus2 bMagicAtkEle,Ele_Water,3; } if (getrefine()>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bMatkRate,5; bonus2 bMagicAtkEle,Ele_Water,5; } + - Id: 22106 + AegisName: Giant_Boots + Name: Giant Boots + Type: Armor + Weight: 500 + Defense: 13 + Slots: 1 + Locations: + Shoes: true + EquipLevelMin: 85 + Refineable: true + Script: | + bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; bonus bMaxHPrate,2; bonus bMaxSPrate,2; .@r = getrefine(); if (.@r > 4) { bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; bonus bMaxHPrate,4; bonus bMaxSPrate,4; } if (.@r > 6) { bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; bonus bMaxHPrate,4; bonus bMaxSPrate,4; } + - Id: 22107 + AegisName: Modified_Str_Boots + Name: Modified Str Boots + Type: Armor + Buy: 20 + Weight: 600 + Defense: 25 + Jobs: + KagerouOboro: true + Rebellion: true + Locations: + Shoes: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAtk,7*(.@r/3); if(readparam(bStr)>=120) bonus bBaseAtk,50; + - Id: 22108 + AegisName: Modified_Int_Boots + Name: Modified Int Boots + Type: Armor + Buy: 20 + Weight: 600 + Defense: 25 + Jobs: + KagerouOboro: true + Rebellion: true + Locations: + Shoes: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus bMdef,5; bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMatk,10*(.@r/3); if(readparam(bInt)>=120) bonus bMatk,60; + - Id: 22109 + AegisName: Modified_Agi_Boots + Name: Modified Agi Boots + Type: Armor + Buy: 20 + Weight: 600 + Defense: 25 + Jobs: + KagerouOboro: true + Rebellion: true + Locations: + Shoes: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAspdRate,3*(.@r/3); if(readparam(bAgi)>=120) bonus bAspd,1; + - Id: 22110 + AegisName: Modified_Vit_Boots + Name: Modified Vit Boots + Type: Armor + Buy: 20 + Weight: 600 + Defense: 25 + Jobs: + KagerouOboro: true + Rebellion: true + Locations: + Shoes: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxHP,300+(300*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); if(readparam(bVit)>=120) bonus bMaxHPrate,8; + - Id: 22111 + AegisName: Modified_Dex_Boots + Name: Modified Dex Boots + Type: Armor + Buy: 20 + Weight: 600 + Defense: 25 + Jobs: + KagerouOboro: true + Rebellion: true + Locations: + Shoes: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bDex,3*(.@r/3); if(readparam(bDex)>=120){ bonus bLongAtkRate,5; bonus bFixedCast,-500; } + - Id: 22112 + AegisName: Modified_Luk_Boots + Name: Modified Luk Boots + Type: Armor + Buy: 20 + Weight: 600 + Defense: 25 + Jobs: + KagerouOboro: true + Rebellion: true + Locations: + Shoes: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMdef,5; bonus bCritAtkRate,2*(.@r/3); if(readparam(bLuk)>=120) bonus bCritAtkRate,30; + - Id: 22113 + AegisName: Modified_Str_Boots_ + Name: Modified Str Boots + Type: Armor + Buy: 20 + Weight: 600 + Defense: 25 + Slots: 1 + Jobs: + KagerouOboro: true + Rebellion: true + Locations: + Shoes: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAtk,7*(.@r/3); if(readparam(bStr)>=120) bonus bBaseAtk,50; + - Id: 22114 + AegisName: Modified_Int_Boots_ + Name: Modified Int Boots + Type: Armor + Buy: 20 + Weight: 600 + Defense: 25 + Slots: 1 + Jobs: + KagerouOboro: true + Rebellion: true + Locations: + Shoes: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus bMdef,5; bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMatk,10*(.@r/3); if(readparam(bInt)>=120) bonus bMatk,60; + - Id: 22115 + AegisName: Modified_Agi_Boots_ + Name: Modified Agi Boots + Type: Armor + Buy: 20 + Weight: 600 + Defense: 25 + Slots: 1 + Jobs: + KagerouOboro: true + Rebellion: true + Locations: + Shoes: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAspdRate,3*(.@r/3); if(readparam(bAgi)>=120) bonus bAspd,1; + - Id: 22116 + AegisName: Modified_Vit_Boots_ + Name: Modified Vit Boots + Type: Armor + Buy: 20 + Weight: 600 + Defense: 25 + Slots: 1 + Jobs: + KagerouOboro: true + Rebellion: true + Locations: + Shoes: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxHP,300+(300*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); if(readparam(bVit)>=120) bonus bMaxHPrate,8; + - Id: 22117 + AegisName: Modified_Dex_Boots_ + Name: Modified Dex Boots + Type: Armor + Buy: 20 + Weight: 600 + Defense: 25 + Slots: 1 + Jobs: + KagerouOboro: true + Rebellion: true + Locations: + Shoes: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bDex,3*(.@r/3); if(readparam(bDex)>=120){ bonus bLongAtkRate,5; bonus bFixedCast,-500; } + - Id: 22118 + AegisName: Modified_Luk_Boots_ + Name: Modified Luk Boots + Type: Armor + Buy: 20 + Weight: 600 + Defense: 25 + Slots: 1 + Jobs: + KagerouOboro: true + Rebellion: true + Locations: + Shoes: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMdef,5; bonus bCritAtkRate,2*(.@r/3); if(readparam(bLuk)>=120) bonus bCritAtkRate,30; + - Id: 22120 + AegisName: Shoes_of_Punishment + Name: Shoes of Punishment + Type: Armor + Buy: 20 + Weight: 500 + Defense: 15 + Locations: + Shoes: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bMdef,15; bonus bMatkRate,2; bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus2 bSkillAtk,"AB_JUDEX",30; bonus2 bMagicAddEle,Ele_Holy,2; .@r = getrefine(); if (.@r>=5) { bonus bMatkRate,3; bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus2 bMagicAddEle,Ele_Holy,3; } if (.@r>=7) { bonus bMatkRate,5; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bMagicAddEle,Ele_Holy,5; } + - Id: 22122 + AegisName: Para_Team_Boots100 + Name: Awakened Eden Group Boots I + Type: Armor + Defense: 22 + Locations: + Shoes: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,1; bonus bHPrecovRate,30; bonus bSPrecovRate,14; + - Id: 22123 + AegisName: Para_Team_Boots115 + Name: Awakened Eden Group Boots II + Type: Armor + Defense: 25 + Locations: + Shoes: true + EquipLevelMin: 115 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,1; bonus bHPrecovRate,36; bonus bSPrecovRate,18; + - Id: 22124 + AegisName: Para_Team_Boots130 + Name: Awakened Eden Group Boots III + Type: Armor + Defense: 27 + Locations: + Shoes: true + EquipLevelMin: 130 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,2; bonus bHPrecovRate,36; bonus bSPrecovRate,18; + - Id: 22125 + AegisName: Para_Team_Boots145 + Name: Awakened Eden Group Boots IV + Type: Armor + Defense: 30 + Locations: + Shoes: true + EquipLevelMin: 145 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,2; bonus bHPrecovRate,40; bonus bSPrecovRate,20; + - Id: 22126 + AegisName: Para_Team_Boots160 + Name: Awakened Eden Group Boots V + Type: Armor + Defense: 30 + Locations: + Shoes: true + EquipLevelMin: 160 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAllStats,2; bonus bHPrecovRate,40; bonus bSPrecovRate,20; bonus bUseSPrate,-5; + - Id: 22131 + AegisName: Spurred_Boots + Name: Spurred Boots + Type: Armor + Weight: 500 + Slots: 1 + Locations: + Shoes: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoAuction: true + Script: | + .@r = getrefine(); .@bonus = 5; if (.@r >=7) { .@bonus += 5; } if (.@r >=9) { .@bonus += 5; } bonus bMaxSPrate,.@bonus; bonus bSpeedRate,25; /* fix me: unknown speed value */ + - Id: 22133 + AegisName: Illusion_Shoes + Name: Illusion Shoes + Type: Armor + Buy: 20 + Weight: 400 + Defense: 10 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Shoes: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxHP,(100+(100*.@r)); bonus bMaxSP,(10+(5*.@r)); + - Id: 22134 + AegisName: Enforcer_Shoes + Name: Enforcer Shoes + Type: Armor + Buy: 20 + Weight: 400 + Defense: 12 + Locations: + Shoes: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); .@hpsp = 3; .@a = getskilllv("GC_WEAPONCRUSH"); .@b = getskilllv("GC_WEAPONBLOCKING"); .@c = getskilllv("GC_COUNTERSLASH"); if (.@r >= 5) { .@hpsp += 7; .@dmg = BaseLevel; if (.@r >= 7) { .@hpsp += 10; .@dmg += BaseLevel + 30*getskilllv("AS_POISONREACT"); } bonus2 bSkillAtk,"ASC_METEORASSAULT",.@dmg; } bonus bMaxHPrate,.@hpsp; bonus bMaxSPrate,.@hpsp; bonus bMdef,10; skill "BS_MAXIMIZE",1; bonus2 bSkillUseSP,"ASC_METEORASSAULT",8; bonus2 bAddClass,Class_All,4*.@a; bonus2 bSkillCooldown,"GC_HALLUCINATIONWALK",-5000*.@b; bonus2 bIgnoreDefClassRate,Class_All,20*.@c; bonus2 bVariableCastrate,"ASC_METEORASSAULT",-7*(.@a+.@b+.@c); + - Id: 22138 + AegisName: Devil_Worshipper_Shoes + Name: Devil Worshipper Shoes + Type: Armor + Buy: 20 + Weight: 500 + Defense: 15 + Locations: + Shoes: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bMdef,15; bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bMatkRate,2; bonus2 bMagicAtkEle,Ele_Neutral,2; bonus2 bMagicAtkEle,Ele_Fire,2; .@r = getrefine(); if (.@r>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bMatkRate,3; bonus2 bMagicAtkEle,Ele_Neutral,3; bonus2 bMagicAtkEle,Ele_Fire,3; } if (.@r>=5) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bMatkRate,5; bonus2 bMagicAtkEle,Ele_Neutral,5; bonus2 bMagicAtkEle,Ele_Fire,5; } + - Id: 22141 + AegisName: YSF01_Greave + Name: YSF01 Greave + Type: Armor + Weight: 1300 + Defense: 25 + Slots: 1 + Locations: + Shoes: true + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); if (.@r >= 8) { bonus bAspdRate,8; if (.@r >= 11) { bonus bAspd,1; if (.@r >= 13) { .@val = 10; } } } if (readparam(bLuk) >= 125) { .@val += 30; } if (.@val) { bonus bCritAtkRate,.@val; } + - Id: 22145 + AegisName: Tengu's_Shoes + Name: Tengu's Shoes + Type: Armor + Buy: 20 + Weight: 400 + Defense: 12 + Locations: + Shoes: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); .@a = getskilllv("SR_GENTLETOUCH_REVITALIZE"); .@b = getskilllv("SR_GENTLETOUCH_CURE"); .@c = getskilllv("SR_GENTLETOUCH_ENERGYGAIN"); .@hpsp = 3; if (.@r >= 5) { .@hpsp += 7; .@red = 5; if (.@r >= 7) { .@hpsp += 10; .@red += 5; } bonus2 bSkillUseSP,"MO_BODYRELOCATION",.@red; } bonus bMdef,10; bonus bMaxHPrate,.@hpsp+(2*.@b); bonus bMaxSPrate,.@hpsp; skill "SA_CASTCANCEL",1; bonus2 bSkillUseSP,"MO_BODYRELOCATION",5; bonus bDef,30*.@a; bonus2 bSubRace,RC_DemiHuman,.@a; bonus2 bSubRace,RC_Player_Human,.@a; bonus2 bVariableCastrate,"MO_CALLSPIRITS",-.@c*10; bonus2 bVariableCastrate,"MO_STEELBODY",-.@c*10; bonus2 bFixedCastrate,"CH_SOULCOLLECT",-.@c*10; bonus bAspdRate,2*getskilllv("SR_GENTLETOUCH_CHANGE"); bonus2 bAddClass,Class_All,4*getskilllv("SR_GENTLETOUCH_QUIET"); + - Id: 22170 + AegisName: Survivor's_Shoes + Name: Survivor's Shoes + Type: Armor + Buy: 10 + Weight: 500 + Defense: 15 + Locations: + Shoes: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); if (.@r >= 7) { .@hpsp = 20; .@dmg = 10; } else if (.@r >= 5) { .@hpsp = 10; .@dmg = 5; } else { .@hpsp = 3; .@dmg = 2; } bonus bMdef,15; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bMaxHPrate,.@hpsp; bonus bMaxSPrate,.@hpsp; bonus bMatkRate,.@dmg; bonus2 bMagicAtkEle,Ele_Wind,.@dmg; bonus2 bMagicAtkEle,Ele_Earth,.@dmg; + - Id: 22171 + AegisName: Ancient_Hero_Boots + Name: Ancient Hero Boots + Type: Armor + Buy: 20 + Weight: 600 + Defense: 15 + Slots: 1 + Locations: + Shoes: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxHP,500; bonus bMaxSP,50; bonus bMaxHPrate,2*(.@r/3); bonus bMaxSPrate,.@r/3; if (.@r >= 9) { .@val = -300; if (.@r >= 12) { .@val -= 200; if (.@r >= 14) { bonus bDelayRate,-5; } } bonus bFixedCast,.@val; } + - Id: 22172 + AegisName: Gray_Wing_Boots + Name: Gray Wing Boots + Type: Armor + Buy: 20 + Weight: 500 + Defense: 15 + Locations: + Shoes: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bMdef,15; bonus bLongAtkRate,2; bonus bCritAtkRate,2; skill "TF_HIDING",1; if (.@r>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bLongAtkRate,3; bonus bCritAtkRate,3; } if (.@r>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bLongAtkRate,5; bonus bCritAtkRate,5; } + - Id: 22173 + AegisName: Beginner's_Boots + Name: Beginner's Boots + Type: Armor + Buy: 20 + Defense: 10 + Slots: 1 + Locations: + Shoes: true + EquipLevelMin: 100 + Script: | + bonus bMaxHP,300; bonus bMaxSP,50; bonus bFlee,15; bonus bHPrecovRate,10; bonus bSPrecovRate,10; + - Id: 22189 + AegisName: Pilgrim_Shoes + Name: Pilgrim Shoes + Type: Armor + Buy: 20 + Weight: 500 + Defense: 15 + Locations: + Shoes: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bDef,50*getskilllv("AB_SECRAMENT"); bonus bMdef,15; bonus bAspdRate,4*getskilllv("AB_CANTO"); bonus2 bSkillCooldown,"AB_PRAEFATIO",-1000; bonus bDelayrate,-6*getskilllv("AB_PRAEFATIO"); bonus2 bSubRace,RC_DemiHuman,2*getskilllv("AB_SECRAMENT"); bonus2 bSubRace,RC_Player_Human,2*getskilllv("AB_SECRAMENT"); bonus bHealPower,5*getskilllv("AB_HIGHNESSHEAL"); if (.@r>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bUseSPrate,-3; } if (.@r>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bUseSPrate,-5; } + - Id: 22190 + AegisName: Illusion_Boots + Name: Illusion Boots + Type: Armor + Weight: 600 + Defense: 16 + Slots: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Gunslinger: true + Hunter: true + Knight: true + Merchant: true + Rebellion: true + Rogue: true + StarGladiator: true + Swordman: true + Taekwon: true + Thief: true + Locations: + Shoes: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bCritical,(5*(.@r/3)); bonus bAspdRate,.@r; + - Id: 22192 + AegisName: Illusion_Goibne's_Greaves + Name: Illusion Goibne's Greaves + Type: Armor + Weight: 1200 + Defense: 42 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Shoes: true + EquipLevelMin: 130 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxHPrate,5; bonus bMaxSPrate,5; if (.@r >= 7) { bonus bVariableCastrate,-5; if (.@r >= 9) { bonus bLongAtkRate,10; } } + - Id: 22195 + AegisName: Booster_Shoes + Name: Booster Shoes + Type: Armor + Buy: 20 + Weight: 800 + Defense: 30 + Slots: 1 + Locations: + Shoes: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bMdef,10; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bSubRace,RC_Player_Human,5; if (.@r>=7) { if (readparam(bStr)>=125) bonus bBaseAtk,90; if (readparam(bAgi)>=125) bonus bAspd,2; if (readparam(bVit)>=125) bonus bMaxHPrate,12; if (readparam(bInt)>=125) bonus bMatk,120; if (readparam(bDex)>=125) bonus bLongAtkRate,10; if (readparam(bLuk)>=125) bonus bCritAtkRate,20; } if (.@r>=9) { if (readparam(bStr)>=125) bonus bBaseAtk,90; if (readparam(bAgi)>=125) bonus bAspd,2; if (readparam(bVit)>=125) bonus bMaxHPrate,12; if (readparam(bInt)>=125) bonus bMatk,120; if (readparam(bDex)>=125) bonus bLongAtkRate,10; if (readparam(bLuk)>=125) bonus bCritAtkRate,20; } + - Id: 22196 + AegisName: Illusion_Leg_A-type + Name: Illusion Leg A-type + Type: Armor + Buy: 20 + Weight: 500 + Defense: 20 + Slots: 1 + Locations: + Shoes: true + EquipLevelMin: 130 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxSP,200+(20*(.@r/2)); if (.@r >= 7) { bonus bLongAtkRate,5; } + - Id: 22197 + AegisName: Illusion_Leg_B-type + Name: Illusion Leg B-type + Type: Armor + Buy: 20 + Weight: 500 + Defense: 20 + Slots: 1 + Locations: + Shoes: true + EquipLevelMin: 130 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxSP,200+(20*(.@r/2)); if (.@r >= 7) { bonus2 bMagicAtkEle,Ele_All,5; } + - Id: 22198 + AegisName: Traveler_Shoes + Name: Traveler Shoes + Type: Armor + Buy: 20 + Weight: 500 + Defense: 15 + Locations: + Shoes: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bMdef,15; bonus bMaxHPrate,3+(2*getskilllv("WM_FRIGG_SONG")); bonus bMaxSPrate,3; bonus bMatkRate,2; bonus2 bMagicAtkEle,Ele_Neutral,5; bonus bAllStats,getskilllv("WA_SWING_DANCE"); bonus bAspdRate,4*getskilllv("MI_HARMONIZE"); bonus2 bSkillAtk,"WM_METALICSOUND",10*getskilllv("WM_GLOOMYDAY"); bonus2 bVariableCastrate,"WM_METALICSOUND",-10*getskilllv("WM_GLOOMYDAY"); bonus3 bAddEff,Eff_Sleep,2*getskilllv("WM_LULLABY_DEEPSLEEP"),ATF_MAGIC; .@r = getrefine(); if (.@r>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bMatkRate,3; bonus2 bMagicAtkEle,Ele_Neutral,3; } if (.@r>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bMatkRate,5; bonus2 bMagicAtkEle,Ele_Neutral,5; } + - Id: 22199 + AegisName: Lava_Leather_Boots + Name: Lava Leather Boots + Type: Armor + Buy: 20 + Weight: 600 + Defense: 50 + Slots: 1 + Locations: + Shoes: true + EquipLevelMin: 175 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bAddClass,Class_All,2; if (.@r>=7) bonus bBaseAtk,25; if (.@r>=9) bonus bBaseAtk,15; + - Id: 22200 + AegisName: Lava_Leather_Shoes + Name: Lava Leather Shoes + Type: Armor + Buy: 20 + Weight: 600 + Defense: 50 + Slots: 1 + Locations: + Shoes: true + EquipLevelMin: 175 + Refineable: true + Script: | + .@r = getrefine(); bonus bCritical,5; if (.@r>=7) bonus2 bAddSize,Size_All,5; if (.@r>=9) bonus bCritAtkRate,5; + - Id: 22201 + AegisName: Lava_Leather_Sandals + Name: Lava Leather Sandals + Type: Armor + Buy: 20 + Weight: 500 + Defense: 25 + Slots: 1 + Locations: + Shoes: true + EquipLevelMin: 175 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bMagicAtkEle,Ele_Fire,3; if (.@r>=7) bonus bMatk,25; if (.@r>=9) bonus bMatk,15; + - Id: 22207 + AegisName: Imperial_Boots + Name: Imperial Boots + Type: Armor + Buy: 20 + Weight: 400 + Defense: 12 + Locations: + Shoes: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bMdef,10; bonus bMaxHPrate,3; bonus bMaxSPrate,3; skill "AL_INCAGI",1; bonus2 bSkillAtk,"LG_BANISHINGPOINT",10*getskilllv("LG_CANNONSPEAR"); bonus2 bAddClass,Class_All,4*getskilllv("CR_DEVOTION"); if (getskilllv("LG_INSPIRATION")>=5) bonus2 bSkillCooldown,"LG_SHIELDSPELL",-2000; bonus2 bIgnoreDefClassRate,Class_All,20*getskilllv("LG_PINPOINTATTACK"); if (.@r>=5) { bonus bMaxSPrate,7; bonus bMaxHPrate,7; bonus bLongAtkRate,5; } if (.@r>=7) { bonus bMaxSPrate,10; bonus bMaxHPrate,10; bonus bLongAtkRate,5; } + - Id: 22210 + AegisName: Fluffy_Fish_Shoes + Name: Fluffy Fish Shoes + Type: Armor + Buy: 20 + Weight: 100 + Defense: 12 + Locations: + Shoes: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); .@hpsp = 3; .@val = -10 * getskilllv("SU_SHRIMPARTY"); if (.@r>=5) { .@hpsp += 7; .@delay = -10; if (.@r>=7) { .@hpsp += 10; .@delay -= 10; } bonus bDelayrate,.@delay; } if (getskilllv("SU_SPIRITOFSEA") == 1) { autobonus3 "{ bonus2 bResEff,Eff_Stun,10000; bonus2 bResEff,Eff_Sleep,10000; bonus2 bResEff,EFF_Stone,10000; }",1000,30000,"SU_GROOMING"; } if (getskilllv("SU_GROOMING") == 5) { bonus bFixedCastrate,-50; bonus bNoKnockback; } bonus bMaxHPrate,.@hpsp; bonus bMaxSPrate,.@hpsp; bonus bMdef,10; bonus2 bVariableCastrate,"SU_FRESHSHRIMP",.@val; bonus2 bVariableCastrate,"SU_BUNCHOFSHRIMP",.@val; bonus2 bVariableCastrate,"SU_TUNABELLY",.@val; bonus2 bVariableCastrate,"SU_TUNAPARTY",.@val; bonus2 bVariableCastrate,"SU_SHRIMPARTY",.@val; bonus bHealPower,10*getskilllv("SU_PURRING"); + - Id: 22214 + AegisName: Authority_Sandals + Name: Authority Sandals + Type: Armor + Buy: 20 + Weight: 500 + Defense: 10 + Locations: + Shoes: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bMdef,10; bonus bAllStats,10; bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; if (.@r>=7) bonus bAllStats,10; if (.@r>=9) bonus bAllStats,10; + - Id: 22238 + AegisName: Great_Hero_Boots + Name: Great Hero Boots + Type: Armor + Buy: 20 + Weight: 600 + Defense: 15 + Slots: 1 + Locations: + Shoes: true + EquipLevelMin: 150 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxHP,1500; bonus bMaxSP,150; bonus bMaxHPrate,.@r/3; bonus bMaxSPrate,.@r/3; if (.@r >= 7) { bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; } if (.@r >= 9) { .@val = -500; if (.@r >= 11) { .@val -= 200; if (.@r >= 13) { bonus bDelayRate,-5; bonus bVariableCastrate,-5; } } bonus bFixedCast,.@val; } + - Id: 24000 + AegisName: T1_Shadow_Armor + Name: Shadow Armor (Tier 1) + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bStr,1; + - Id: 24001 + AegisName: T1_Shadow_Weapon + Name: Shadow Gauntlets (Tier 1) + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bDex,1; + - Id: 24002 + AegisName: T1_Shadow_Shield + Name: Shadow Shield (Tier 1) + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bLuk,1; + - Id: 24003 + AegisName: T1_Shadow_Shoes + Name: Shadow Shoes (Tier 1) + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bAgi,1; + - Id: 24004 + AegisName: T1_Shadow_R_Accessory + Name: Shadow Ring (Tier 1) + Type: Shadowgear + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bVit,1; + - Id: 24005 + AegisName: T1_Shadow_L_Accessory + Name: Shadow Pendant (Tier 1) + Type: Shadowgear + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bInt,1; + - Id: 24006 + AegisName: T2_Shadow_Armor + Name: Shadow Armor (Tier 2) + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 30 + Refineable: true + Script: | + bonus bStr,2; + - Id: 24007 + AegisName: T2_Shadow_Weapon + Name: Shadow Gauntlets (Tier 2) + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 30 + Refineable: true + Script: | + bonus bDex,2; + - Id: 24008 + AegisName: T2_Shadow_Shield + Name: Shadow Shield (Tier 2) + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 60 + Refineable: true + Script: | + bonus bLuk,2; + - Id: 24009 + AegisName: T2_Shadow_Shoes + Name: Shadow Shoes (Tier 2) + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 90 + Refineable: true + Script: | + bonus bAgi,2; + - Id: 24010 + AegisName: T2_Shadow_R_Accessory + Name: Shadow Ring (Tier 2) + Type: Shadowgear + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 120 + Refineable: true + Script: | + bonus bVit,2; + - Id: 24011 + AegisName: T2_Shadow_L_Accessory + Name: Shadow Pendant (Tier 2) + Type: Shadowgear + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 150 + Refineable: true + Script: | + bonus bInt,2; + - Id: 24012 + AegisName: S_Promotion_Weapon + Name: Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bDex,1; + - Id: 24013 + AegisName: S_Promotion_Armor + Name: Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bLuk,1; + - Id: 24014 + AegisName: S_Promotion_Shoes + Name: Shadow Shoes + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bAgi,1; + - Id: 24015 + AegisName: S_Promotion_Shield + Name: Shadow Shield + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bVit,1; + - Id: 24016 + AegisName: S_Promotion_Earring + Name: Shadow Earring + Type: Shadowgear + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bInt,1; + - Id: 24017 + AegisName: S_Promotion_Pendant + Name: Shadow Pendant + Type: Shadowgear + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bStr,1; + - Id: 24018 + AegisName: S_Physical_Earring + Name: Physical Earring (Shadow) + Type: Shadowgear + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bAspdRate,(getrefine()>=7)?2:1; + - Id: 24019 + AegisName: S_Physical_Weapon + Name: Physical Weapon (Shadow) + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bBaseAtk,10; if(getrefine()>=7) { bonus2 bAddClass,Class_All,1; } + - Id: 24020 + AegisName: S_Physical_Pendant + Name: Physical Pendant (Shadow) + Type: Shadowgear + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bMaxHP,100; if(getrefine()>=7) { bonus bMaxHPrate,1; } + - Id: 24021 + AegisName: S_Magical_Earring + Name: Magical Earring (Shadow) + Type: Shadowgear + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bVariableCastrate,-(getrefine()>=7)?2:1; + - Id: 24022 + AegisName: S_Magical_Weapon + Name: Magical Weapon (Shadow) + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bMatk,10; if(getrefine()>=7) { bonus bMatkRate,1; } + - Id: 24023 + AegisName: S_Magical_Pendant + Name: Magical Pencil (Shadow) + Type: Shadowgear + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bMaxSP,50; if(getrefine()>=7) { bonus bMaxSPrate,1; } + - Id: 24024 + AegisName: S_Breezy_Armor + Name: Breeze Armor (Shadow) + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bFlee,5+(getrefine()>=7 ? 10 : 0); + - Id: 24025 + AegisName: S_Champion_Shoes + Name: Champion Shoes (Shadow) + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bMaxHP,20; bonus bMaxSP,20; if(getrefine()>=7) { bonus bMaxHP,1; bonus bMaxSP,1; } + - Id: 24026 + AegisName: S_Athena_Shield + Name: Athena Shield (Shadow) + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bDef,(getrefine()>=7)?20:10; + - Id: 24027 + AegisName: S_Immune_Armor + Name: Immune Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bSubEle,0,1; + - Id: 24028 + AegisName: S_Hard_Armor + Name: Hard Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bMaxHP,50; if(getrefine()>=7) { bonus bMaxHPrate,1; } + - Id: 24029 + AegisName: S_Ancient_Armor + Name: Ancient Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bHit,(getrefine()>=7)?20:10; + - Id: 24030 + AegisName: S_Critical_Armor + Name: Critital Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bCritical,(getrefine()>=7)?10:5; + - Id: 24031 + AegisName: S_Kingbird_Weapon + Name: Kingbird's Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bBaseAtk,10; if(getrefine()>=7) { bonus bLongAtkRate,1; } + - Id: 24032 + AegisName: S_Cri_Hit_Weapon + Name: Critical Hit Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bBaseAtk,10; if(getrefine()>=7) { bonus bCritAtkRate,1; } + - Id: 24033 + AegisName: S_Healing_Weapon + Name: Healing Shadow Weapon + Type: Shadowgear + MagicAttack: 10 + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + if (getrefine()>=7) bonus bHealPower2,5; + - Id: 24034 + AegisName: S_Lucky_Weapon + Name: Lucky Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bLuk,1; if(getrefine()>=7) { bonus bLuk,1; } if(getrefine()>=9) { bonus bLuk,1; } + - Id: 24035 + AegisName: S_Power_Earring + Name: Power Shadow Earring + Type: Shadowgear + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bStr,1; .@r = getrefine(); if(.@r>=7) { bonus bStr,1; } if(.@r>=9) { bonus bStr,1; } + - Id: 24036 + AegisName: S_Int_Pendant + Name: Intelligent Shadow Pendant + Type: Shadowgear + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bInt,1; .@r = getrefine(); if(.@r>=7) { bonus bInt,1; } if(.@r>=9) { bonus bInt,1; } + - Id: 24037 + AegisName: S_Dexterous_Armor + Name: Dexterous Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bDex,1; .@r = getrefine(); if(.@r>=7) { bonus bDex,1; } if(.@r>=9) { bonus bDex,1; } + - Id: 24038 + AegisName: S_Vital_Shoes + Name: Vital Shadow Shoes + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bVit,1; .@r = getrefine(); if(.@r>=7) { bonus bVit,1; } if(.@r>=9) { bonus bVit,1; } + - Id: 24039 + AegisName: S_Athletic_Shield + Name: Athletic Shadow Shield + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bAgi,1; .@r = getrefine(); if(.@r>=7) { bonus bAgi,1; } if(.@r>=9) { bonus bAgi,1; } + - Id: 24040 + AegisName: S_Lucky_Armor + Name: Lucky Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bLuk,1; bonus bCritical,(getrefine()/2); + - Id: 24041 + AegisName: S_Power_Pendant + Name: Power Shadow Pendant + Type: Shadowgear + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bStr,1; bonus bBaseAtk,getrefine(); + - Id: 24042 + AegisName: S_Int_Earring + Name: Intelligent Shadow Earring + Type: Shadowgear + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bInt,1; bonus bMatk,getrefine(); + - Id: 24043 + AegisName: S_Dexterous_Weapon + Name: Dexterous Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bDex,1; bonus bHit,getrefine(); + - Id: 24044 + AegisName: S_Vital_Shield + Name: Vital Shadow Shield + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bVit,1; bonus bDef,getrefine(); + - Id: 24045 + AegisName: S_Athletic_Shoes + Name: Athletic Shadow Shoes + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bAgi,1; bonus bFlee,getrefine(); + - Id: 24046 + AegisName: S_Resist_Spell_Pendant + Name: Resist Spell Power Pendant (Shadow) + Type: Shadowgear + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bMdef,(getrefine()>=7)?6:3; + - Id: 24047 + AegisName: S_Rapid_Pendant + Name: Rapid Pendant (Shadow) + Type: Shadowgear + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus bAspdRate,1+((.@r>=9)?2:(.@r>=7)?1:0); + - Id: 24048 + AegisName: S_Caster_Pendant + Name: Caster Pendant (Shadow) + Type: Shadowgear + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus bVariableCastrate,1+((.@r>=9)?2:(.@r>=7)?1:0); + - Id: 24049 + AegisName: S_Hard_Earring + Name: Hard Earring (Shadow) + Type: Shadowgear + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bMaxHP,100; .@r = getrefine(); bonus bMaxHPRate,((.@r>=9)?2:(.@r>=7)?1:0); + - Id: 24050 + AegisName: S_Wise_Earring + Name: Wise Earring (Shadow) + Type: Shadowgear + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bMaxSP,50; .@r = getrefine(); bonus bMaxSPRate,((.@r>=9)?2:(.@r>=7)?1:0); + - Id: 24051 + AegisName: S_Athena_Earring + Name: Athena Earring (Shadow) + Type: Shadowgear + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bDef,(getrefine()>=7)?20:10; + - Id: 24052 + AegisName: S_Cranial_Shield + Name: Cranial Shield (Shadow) + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bSubRace,7,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,7,1; } if(.@r>=9) { bonus2 bSubRace,7,1; } + - Id: 24053 + AegisName: S_Safeguard_Shield + Name: Safeguard Shield (Shadow) + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bSubRace,10,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,10,1; } if(.@r>=9) { bonus2 bSubRace,10,1; } + - Id: 24054 + AegisName: S_Brutal_Shield + Name: Brutal Shield (Shadow) + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bSubRace,2,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,2,1; } if(.@r>=9) { bonus2 bSubRace,2,1; } + - Id: 24055 + AegisName: S_Gargantua_Shield + Name: Gargantua Shield (Shadow) + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bSubRace,4,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,4,1; } if(.@r>=9) { bonus2 bSubRace,4,1; } + - Id: 24056 + AegisName: S_Homers_Shield + Name: Homers Shield (Shadow) + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bSubRace,5,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,5,1; } if(.@r>=9) { bonus2 bSubRace,5,1; } + - Id: 24057 + AegisName: S_Dragoon_Shield + Name: Dragoon Shield (Shadow) + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bSubRace,9,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,9,1; } if(.@r>=9) { bonus2 bSubRace,9,1; } + - Id: 24058 + AegisName: S_Satanic_Shield + Name: Satanic Shield (Shadow) + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bSubRace,8,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,8,1; } if(.@r>=9) { bonus2 bSubRace,8,1; } + - Id: 24059 + AegisName: S_Flameguard_Shield + Name: Flameguard Shield (Shadow) + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bSubRace,0,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,0,1; } if(.@r>=9) { bonus2 bSubRace,0,1; } + - Id: 24060 + AegisName: S_Requiem_Shield + Name: Requiem Shield (Shadow) + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bSubRace,1,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,1,1; } if(.@r>=9) { bonus2 bSubRace,1,1; } + - Id: 24061 + AegisName: S_Cadi_Shield + Name: Cadi Shield (Shadow) + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bSubRace,3,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,3,1; } if(.@r>=9) { bonus2 bSubRace,3,1; } + - Id: 24062 + AegisName: S_Bloody_Shoes + Name: Bloody Shoes (Shadow) + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bAddRace,7,2; bonus2 bMagicAddRace,7,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,7,1; bonus2 bMagicAddRace,7,1; } if(.@r>=9) { bonus2 bAddRace,7,2; bonus2 bMagicAddRace,7,2; } + - Id: 24063 + AegisName: S_Liberation_Shoes + Name: Liberation Shoes (Shadow) + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bAddRace,10,2; bonus2 bMagicAddRace,10,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,10,1; bonus2 bMagicAddRace,10,1; } if(.@r>=9) { bonus2 bAddRace,10,2; bonus2 bMagicAddRace,10,2; } + - Id: 24064 + AegisName: S_Chemical_Shoes + Name: Chemical Shoes (Shadow) + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bAddRace,3,2; bonus2 bMagicAddRace,3,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,3,1; bonus2 bMagicAddRace,3,1; } if(.@r>=9) { bonus2 bAddRace,3,2; bonus2 bMagicAddRace,3,2; } + - Id: 24065 + AegisName: S_Clamorous_Shoes + Name: Clamorous Shoes (Shadow) + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bAddRace,2,2; bonus2 bMagicAddRace,2,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,2,1; bonus2 bMagicAddRace,2,1; } if(.@r>=9) { bonus2 bAddRace,2,2; bonus2 bMagicAddRace,2,2; } + - Id: 24066 + AegisName: S_Insecticide_Shoes + Name: Insecticide Shoes (Shadow) + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bAddRace,4,2; bonus2 bMagicAddRace,4,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,4,1; bonus2 bMagicAddRace,4,1; } if(.@r>=9) { bonus2 bAddRace,4,2; bonus2 bMagicAddRace,4,2; } + - Id: 24067 + AegisName: S_Fisher_Shoes + Name: Fisher Shoes (Shadow) + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bAddRace,5,2; bonus2 bMagicAddRace,5,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,5,1; bonus2 bMagicAddRace,5,1; } if(.@r>=9) { bonus2 bAddRace,5,2; bonus2 bMagicAddRace,5,2; } + - Id: 24068 + AegisName: S_Seraphim_Shoes + Name: Seraphim Shoes (Shadow) + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bAddRace,8,2; bonus2 bMagicAddRace,8,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,8,1; bonus2 bMagicAddRace,8,1; } if(.@r>=9) { bonus2 bAddRace,8,2; bonus2 bMagicAddRace,8,2; } + - Id: 24069 + AegisName: S_Beholder_Shoes + Name: Beholder Shoes (Shadow) + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bAddRace,0,2; bonus2 bMagicAddRace,0,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,0,1; bonus2 bMagicAddRace,0,1; } if(.@r>=9) { bonus2 bAddRace,0,2; bonus2 bMagicAddRace,0,2; } + - Id: 24070 + AegisName: S_Divine_Shoes + Name: Divine Shoes (Shadow) + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bAddRace,1,2; bonus2 bMagicAddRace,1,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,1,1; bonus2 bMagicAddRace,1,1; } if(.@r>=9) { bonus2 bAddRace,1,2; bonus2 bMagicAddRace,1,2; } + - Id: 24071 + AegisName: S_Dragoon_Shoes + Name: Dragoon Shoes (Shadow) + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bAddRace,9,2; bonus2 bMagicAddRace,9,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,9,1; bonus2 bMagicAddRace,9,1; } if(.@r>=9) { bonus2 bAddRace,9,2; bonus2 bMagicAddRace,9,2; } + - Id: 24072 + AegisName: S_Big_Armor + Name: Large Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bSubSize,2,2; .@r = getrefine(); if(.@r>=7) { bonus2 bSubSize,2,1; } if(.@r>=9) { bonus2 bSubSize,2,2; } + - Id: 24073 + AegisName: S_Medium_Armor + Name: Medium Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bSubSize,1,2; .@r = getrefine(); if(.@r>=7) { bonus2 bSubSize,1,1; } if(.@r>=9) { bonus2 bSubSize,1,2; } + - Id: 24074 + AegisName: S_Small_Armor + Name: Small Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bSubSize,0,2; .@r = getrefine(); if(.@r>=7) { bonus2 bSubSize,0,1; } if(.@r>=9) { bonus2 bSubSize,0,2; } + - Id: 24075 + AegisName: S_Big_Weapon + Name: Large Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bAddSize,2,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddSize,2,1; } if(.@r>=9) { bonus2 bAddSize,2,2; } + - Id: 24076 + AegisName: S_Medium_Weapon + Name: Medium Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bAddSize,1,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddSize,1,1; } if(.@r>=9) { bonus2 bAddSize,1,2; } + - Id: 24077 + AegisName: S_Small_Weapon + Name: Small Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bAddSize,0,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddSize,0,1; } if(.@r>=9) { bonus2 bAddSize,0,2; } + - Id: 24078 + AegisName: S_Spiritual_Weapon + Name: Spiritual Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bUseSPrate,-5; if(getrefine()>=7){bonus bSPrecovRate,5;} + - Id: 24079 + AegisName: S_Spiritual_Earring + Name: Spiritual Shadow Earring + Type: Shadowgear + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bMaxSP,50; + - Id: 24080 + AegisName: S_Spiritual_Pendent + Name: Spiritual Shadow Pendant + Type: Shadowgear + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bMaxSPrate,(getrefine()>=7?2:1); + - Id: 24081 + AegisName: S_Malicious_Armor + Name: Malicious Shas Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bMaxHP,100; if(getrefine()>=7){bonus bMaxHPrate,1;} + - Id: 24082 + AegisName: S_Malicious_Shoes + Name: Malicious Shas Shadow Shoes + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bMaxHPrate,(getrefine()>=7?2:1); + - Id: 24083 + AegisName: S_Malicious_Shield + Name: Malicious Shas Shadow Shield + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bHPrecovRate,(getrefine()>=7?10:5); + - Id: 24084 + AegisName: S_Gemstone_Armor + Name: Gemstone Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bCritical,5+(getrefine()/2); + - Id: 24085 + AegisName: S_Gemstone_Shoes + Name: Gemstone Shadow Shoes + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bFlee,5+(getrefine()/2); + - Id: 24086 + AegisName: S_Gemstone_Shield + Name: Gemstone Shadow Shield + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bDef,5+(getrefine()/2); + - Id: 24087 + AegisName: S_Gemstone_Weapon + Name: Gemstone Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bHit,5+(getrefine()/2); + - Id: 24088 + AegisName: S_Gemstone_Earring + Name: Gemstone Shadow Earring + Type: Shadowgear + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bMatk,5+(getrefine()/2); + - Id: 24089 + AegisName: S_Gemstone_Pendent + Name: Gemstone Shadow Pendant + Type: Shadowgear + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bBaseAtk,5+(getrefine()/2); + - Id: 24090 + AegisName: S_Stability_Shield + Name: Stability Shadow Shield + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bDef,3; .@r = getrefine(); bonus2 bResEff,Eff_Stun,.@r/2; bonus2 bResEff,Eff_Freeze,.@r/2; bonus2 bResEff,Eff_Curse,.@r/2; bonus2 bResEff,Eff_Bleeding,.@r/2; bonus2 bResEff,Eff_Stone,.@r; bonus2 bResEff,Eff_Sleep,.@r; bonus2 bResEff,Eff_Silence,.@r; bonus2 bResEff,Eff_Blind,.@r; + - Id: 24091 + AegisName: S_Plasterer's_Armor + Name: Harrods Plaster Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bDef,1; bonus2 bResEff,Eff_Stone,getrefine(); + - Id: 24092 + AegisName: S_Plasterer's_Shoes + Name: Harrods Plaster Shadow Shoes + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bDef,1; bonus2 bResEff,Eff_Stone,getrefine(); + - Id: 24093 + AegisName: S_Insomniac_Armor + Name: Insomnia Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bDef,1; bonus2 bResEff,Eff_Sleep,getrefine(); + - Id: 24094 + AegisName: S_Insomniac_Shoes + Name: Insomnia Shadow Shoes + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bDef,1; bonus2 bResEff,Eff_Sleep,getrefine(); + - Id: 24095 + AegisName: S_Peerless_Armor + Name: Peerless Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bDef,1; bonus2 bResEff,Eff_Silence,getrefine(); + - Id: 24096 + AegisName: S_Peerless_Shoes + Name: Peerless Shadow Shoes + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bDef,1; bonus2 bResEff,Eff_Silence,getrefine(); + - Id: 24097 + AegisName: S_Adurate_Armor + Name: Andre Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bDef,1; bonus2 bResEff,Eff_Blind,getrefine(); + - Id: 24098 + AegisName: S_Adurate_Shoes + Name: Andre Shadow Shoes + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bDef,1; bonus2 bResEff,Eff_Blind,getrefine(); + - Id: 24099 + AegisName: Unfreez_Weapon_S + Name: Unfreezing Shadow Weapon + Type: Shadowgear + Buy: 10 + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bDef,1; bonus2 bResEff,Eff_Freeze,getrefine(); + - Id: 24100 + AegisName: Unfreeze_Earing_S + Name: Unfreezing Shadow Earring + Type: Shadowgear + Buy: 10 + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bDef,1; bonus2 bResEff,Eff_Freeze,getrefine(); + - Id: 24101 + AegisName: Unfreeze_Pendent_S + Name: Unfreezing Shadow Pendant + Type: Shadowgear + Buy: 10 + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bDef,1; bonus2 bResEff,Eff_Freeze,getrefine(); + - Id: 24102 + AegisName: Vitality_Earing_S + Name: Vitality Shadow Earring + Type: Shadowgear + Buy: 10 + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bDef,1; bonus2 bResEff,Eff_Bleeding,getrefine(); + - Id: 24103 + AegisName: Vitality_Pendant_S + Name: Vitality Shadow Pendant + Type: Shadowgear + Buy: 10 + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bDef,1; bonus2 bResEff,Eff_Bleeding,getrefine(); + - Id: 24104 + AegisName: S_Neutral_Weapon + Name: Neutral Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bDef,1; bonus2 bResEff,Eff_Stun,getrefine()/2; + - Id: 24105 + AegisName: S_Neutral_Earring + Name: Neutral Shadow Earring + Type: Shadowgear + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bDef,1; bonus2 bResEff,Eff_Stun,getrefine(); + - Id: 24106 + AegisName: S_Neutral_Pendent + Name: Neutral Shadow Pendant + Type: Shadowgear + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bDef,1; bonus2 bResEff,Eff_Stun,getrefine(); + - Id: 24107 + AegisName: S_Curse_Lift_Earring + Name: Frozen Curse Shadow Earring + Type: Shadowgear + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bDef,1; bonus2 bResEff,Eff_Curse,getrefine(); + - Id: 24108 + AegisName: S_Curse_Lift_Pendent + Name: Frozen Curse Shadow Pendant + Type: Shadowgear + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bDef,1; bonus2 bResEff,Eff_Curse,getrefine(); + - Id: 24109 + AegisName: S_Caster_earring + Name: Caster Shadow Earrings + Type: Shadowgear + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bVariableCastrate,-1-((getrefine()>=7)?1:0); + - Id: 24110 + AegisName: S_Caster_Weapon + Name: Caster Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus bVariableCastrate,-1-((.@r>=7)?1:0)-((.@r>=9)?2:0); + - Id: 24111 + AegisName: S_Spell_Flow_Shoes + Name: Spellflow Shadow Shoes + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bUseSPrate,1; if(getrefine()>=7) bonus bSPrecovRate,5; + - Id: 24112 + AegisName: S_Spell_Flow_Armor + Name: Spellflow Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bUseSPrate,1+((getrefine()>=7)?1:0)+((getrefine()>=9)?1:0); + - Id: 24113 + AegisName: S_Spell_Flow_Shield + Name: Spellflow Shadow Shield + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bUseSPrate,1; if(getrefine()>=7) bonus bMaxSPrate,1; + - Id: 24114 + AegisName: S_Greed_Armor + Name: Grid Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + skill "BS_GREED",1; bonus2 bSkillUseSP,"BS_GREED",100-(getrefine()*10); + - Id: 24115 + AegisName: S_Greed_Shoes + Name: Grid Shadow Shoes + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + skill "BS_GREED",1; bonus2 bSkillUseSP,"BS_GREED",-100+(getrefine()*10); + - Id: 24116 + AegisName: S_Greed_Shield + Name: Grid Shadow Shield + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + skill "BS_GREED",1; bonus2 bSkillUseSP,"BS_GREED",-100+(getrefine()*10); + - Id: 24117 + AegisName: S_Greed_Weapon + Name: Grid Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + skill "BS_GREED",1; bonus2 bSkillUseSP,"BS_GREED",-100+(getrefine()*10); + - Id: 24118 + AegisName: S_Greed_Earring + Name: Grid Shadow Earring + Type: Shadowgear + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + skill "BS_GREED",1; bonus2 bSkillUseSP,"BS_GREED",-100+(getrefine()*10); + - Id: 24119 + AegisName: S_Greed_Pendant + Name: Grid Shadow Pendant + Type: Shadowgear + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + skill "BS_GREED",1; bonus2 bSkillUseSP,"BS_GREED",-100+(getrefine()*10); + - Id: 24120 + AegisName: S_Heal_Armor + Name: Heal Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + skill "AL_HEAL",1; bonus2 bSkillUseSP,"AL_HEAL",-50+(getrefine()*5); + - Id: 24121 + AegisName: S_Heal_Shoes + Name: Heal Shadow Shoes + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + skill "AL_HEAL",1; bonus2 bSkillUseSP,"AL_HEAL",-50+(getrefine()*5); + - Id: 24122 + AegisName: S_Heal_Shield + Name: Heal Shadow Shield + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + skill "AL_HEAL",1; bonus2 bSkillUseSP,"AL_HEAL",-50+(getrefine()*5); + - Id: 24123 + AegisName: S_Heal_Weapon + Name: Heal Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + skill "AL_HEAL",1; bonus2 bSkillUseSP,"AL_HEAL",-50+(getrefine()*5); + - Id: 24124 + AegisName: S_Heal_Earring + Name: Heal Shadow Earring + Type: Shadowgear + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + skill "AL_HEAL",1; bonus2 bSkillUseSP,"AL_HEAL",-50+(getrefine()*5); + - Id: 24125 + AegisName: S_Heal_Pendant + Name: Heal Shadow Pendant + Type: Shadowgear + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + skill "AL_HEAL",1; bonus2 bSkillUseSP,"AL_HEAL",-50+(getrefine()*5); + - Id: 24126 + AegisName: S_Hiding_Armor + Name: Hiding Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + skill "TF_HIDING",1; bonus2 bSkillUseSP,"TF_HIDING",-50+(getrefine()*5); + UnEquipScript: | + sc_end SC_HIDING; + - Id: 24127 + AegisName: S_Hiding_Shoes + Name: Hiding Shadow Shoes + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + skill "TF_HIDING",1; bonus2 bSkillUseSP,"TF_HIDING",-50+(getrefine()*5); + UnEquipScript: | + sc_end SC_HIDING; + - Id: 24128 + AegisName: S_Hiding_Shield + Name: Hiding Shadow Shield + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + skill "TF_HIDING",1; bonus2 bSkillUseSP,"TF_HIDING",-50+(getrefine()*5); + UnEquipScript: | + sc_end SC_HIDING; + - Id: 24129 + AegisName: S_Hiding_Weapon + Name: Hiding Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + skill "TF_HIDING",1; bonus2 bSkillUseSP,"TF_HIDING",-50+(getrefine()*5); + UnEquipScript: | + sc_end SC_HIDING; + - Id: 24130 + AegisName: S_Hiding_Earring + Name: Hiding Shadow Earring + Type: Shadowgear + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + skill "TF_HIDING",1; bonus2 bSkillUseSP,"TF_HIDING",-50+(getrefine()*5); + UnEquipScript: | + sc_end SC_HIDING; + - Id: 24131 + AegisName: S_Hiding_Pendant + Name: Hiding Shadow Pendant + Type: Shadowgear + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + skill "TF_HIDING",1; bonus2 bSkillUseSP,"TF_HIDING",-50+(getrefine()*5); + UnEquipScript: | + sc_end SC_HIDING; + - Id: 24132 + AegisName: S_Cloaking_Armor + Name: Cloaking Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + skill "AS_CLOAKING",1; bonus2 bSkillUseSP,"AS_CLOAKING",-50+(getrefine()*5); + UnEquipScript: | + sc_end SC_CLOAKING; + - Id: 24133 + AegisName: S_Cloaking_Shoes + Name: Cloaking Shadow Shoes + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + skill "AS_CLOAKING",1; bonus2 bSkillUseSP,"AS_CLOAKING",-50+(getrefine()*5); + UnEquipScript: | + sc_end SC_CLOAKING; + - Id: 24134 + AegisName: S_Cloaking_Shield + Name: Cloaking Shadow Shield + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + skill "AS_CLOAKING",1; bonus2 bSkillUseSP,"AS_CLOAKING",-50+(getrefine()*5); + UnEquipScript: | + sc_end SC_CLOAKING; + - Id: 24135 + AegisName: S_Cloaking_Weapon + Name: Cloaking Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + skill "AS_CLOAKING",1; bonus2 bSkillUseSP,"AS_CLOAKING",-50+(getrefine()*5); + UnEquipScript: | + sc_end SC_CLOAKING; + - Id: 24136 + AegisName: S_Cloaking_Earring + Name: Cloaking Shadow Earring + Type: Shadowgear + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + skill "AS_CLOAKING",1; bonus2 bSkillUseSP,"AS_CLOAKING",-50+(getrefine()*5); + UnEquipScript: | + sc_end SC_CLOAKING; + - Id: 24137 + AegisName: S_Cloaking_Pendant + Name: Cloaking Shadow Pendant + Type: Shadowgear + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + skill "AS_CLOAKING",1; bonus2 bSkillUseSP,"AS_CLOAKING",-50+(getrefine()*5); + UnEquipScript: | + sc_end SC_CLOAKING; + - Id: 24138 + AegisName: S_Teleport_Armor + Name: Teleport Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + skill "AL_TELEPORT",1; bonus2 bSkillUseSP,"AL_TELEPORT",-50+(getrefine()*5); + - Id: 24139 + AegisName: S_Teleport_Shoes + Name: Teleport Shadow Shoes + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + skill "AL_TELEPORT",1; bonus2 bSkillUseSP,"AL_TELEPORT",-50+(getrefine()*5); + - Id: 24140 + AegisName: S_Teleport_Shield + Name: Teleport Shadow Shield + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + skill "AL_TELEPORT",1; bonus2 bSkillUseSP,"AL_TELEPORT",-50+(getrefine()*5); + - Id: 24141 + AegisName: S_Teleport_Weapon + Name: Teleport Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + skill "AL_TELEPORT",1; bonus2 bSkillUseSP,"AL_TELEPORT",-50+(getrefine()*5); + - Id: 24142 + AegisName: S_Teleport_Earring + Name: Teleport Shadow Earring + Type: Shadowgear + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + skill "AL_TELEPORT",1; bonus2 bSkillUseSP,"AL_TELEPORT",-50+(getrefine()*5); + - Id: 24143 + AegisName: S_Teleport_Pendant + Name: Teleport Shadow Pendant + Type: Shadowgear + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + skill "AL_TELEPORT",1; bonus2 bSkillUseSP,"AL_TELEPORT",-50+(getrefine()*5); + - Id: 24144 + AegisName: S_Steal_Armor + Name: Steal Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + skill "TF_STEAL",1; bonus2 bSkillUseSP,"TF_STEAL",-50+(getrefine()*5); + - Id: 24145 + AegisName: S_Steal_Shoes + Name: Steal Shadow Shoes + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + skill "TF_STEAL",1; bonus2 bSkillUseSP,"TF_STEAL",-50+(getrefine()*5); + - Id: 24146 + AegisName: S_Steal_Shield + Name: Steal Shadow Shield + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + skill "TF_STEAL",1; bonus2 bSkillUseSP,"TF_STEAL",-50+(getrefine()*5); + - Id: 24147 + AegisName: S_Steal_Weapon + Name: Steal Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + skill "TF_STEAL",1; bonus2 bSkillUseSP,"TF_STEAL",-50+(getrefine()*5); + - Id: 24148 + AegisName: S_Steal_Earring + Name: Steal Shadow Earring + Type: Shadowgear + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + skill "TF_STEAL",1; bonus2 bSkillUseSP,"TF_STEAL",-50+(getrefine()*5); + - Id: 24149 + AegisName: S_Steal_Pendant + Name: Steal Shadow Pendant + Type: Shadowgear + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + skill "TF_STEAL",1; bonus2 bSkillUseSP,"TF_STEAL",-50+(getrefine()*5); + - Id: 24150 + AegisName: S_Infinity_Earring + Name: Infinity Shadow Earring + Type: Shadowgear + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSubSize,Size_All,1+((.@r >= 9) ? 2 : (.@r >= 7) ? 1 : 0); + - Id: 24151 + AegisName: S_Infinity_Pendant + Name: Infinity Shadow Pendant + Type: Shadowgear + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSubSize,Size_All,1+((.@r >= 9) ? 2 : (.@r >= 7) ? 1 : 0); + - Id: 24152 + AegisName: S_Solid_Weapon + Name: Solid Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bBaseAtk,5+(getrefine()/2); + - Id: 24153 + AegisName: S_Solid_Earring + Name: Solid Shadow Earring + Type: Shadowgear + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bHit,5+(getrefine()/2); + - Id: 24154 + AegisName: S_Immortal_Armor + Name: Solid Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bDef,5+(getrefine()/2); + - Id: 24155 + AegisName: S_Immortal_Pendant + Name: Solid Shadow Pendant + Type: Shadowgear + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bMdef,(getrefine()/2); + - Id: 24156 + AegisName: S_Executioner_Weapon + Name: Demi-Human Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5+(getrefine()/2); + - Id: 24157 + AegisName: S_Exorcist_Weapon + Name: Exorcist Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bIgnoreDefRaceRate,RC_Demon,5+(getrefine()/2); + - Id: 24158 + AegisName: S_Hunting_Weapon + Name: Hunting Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bIgnoreDefRaceRate,RC_Brute,5+(getrefine()/2); bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5+(getrefine()/2); + - Id: 24159 + AegisName: S_Insect_Net_Weapon + Name: Insect Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bIgnoreDefRaceRate,RC_Insect,5+(getrefine()/2); + - Id: 24160 + AegisName: S_Fishing_Weapon + Name: Fishing Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bIgnoreDefRaceRate,RC_Fish,5+(getrefine()/2); + - Id: 24161 + AegisName: S_Dragon_Killer_Weapon + Name: Dragon Killer Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bIgnoreDefRaceRate,RC_Dragon,5+(getrefine()/2); + - Id: 24162 + AegisName: S_Corrupt_Weapon + Name: Angelus Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bIgnoreDefRaceRate,RC_Angel,5+(getrefine()/2); + - Id: 24163 + AegisName: S_Vibration_Weapon + Name: Formless Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bIgnoreDefRaceRate,RC_Formless,5+(getrefine()/2); + - Id: 24164 + AegisName: S_Holy_Water_Weapon + Name: Holy Water Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bIgnoreDefRaceRate,RC_Undead,5+(getrefine()/2); + - Id: 24165 + AegisName: S_Scissors_Weapon + Name: Plant Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bIgnoreDefRaceRate,RC_Plant,5+(getrefine()/2); + - Id: 24166 + AegisName: S_Penetration_Earring + Name: Penetration Shadow Earring + Type: Shadowgear + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bIgnoreDefRaceRate,RC_All,5+(.@r/2); bonus2 bIgnoreDefRaceRate,RC_Player_Human,-5-(.@r/2); + - Id: 24167 + AegisName: S_Penetration_Pendent + Name: Penetration Shadow Pendant + Type: Shadowgear + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bIgnoreDefRaceRate,RC_All,5+(.@r/2); bonus2 bIgnoreDefRaceRate,RC_Player_Human,-5-(.@r/2); + - Id: 24168 + AegisName: S_Tempest_Earring + Name: Tempest Shadow Earring + Type: Shadowgear + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bIgnoreMdefClassRate,Class_Normal,5+(getrefine()/2); + - Id: 24169 + AegisName: S_Tempest_Pendent + Name: Tempest Pendant Shadow + Type: Shadowgear + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bIgnoreMdefClassRate,Class_Normal,5+(getrefine()/2); + - Id: 24170 + AegisName: S_M_Executioner_Weapon + Name: Magic Demi-Human Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5+(getrefine()/2); + - Id: 24171 + AegisName: S_M_Exorcist_Weapon + Name: Magic Exorcist Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bIgnoreMdefRaceRate,RC_Demon,5+(getrefine()/2); + - Id: 24172 + AegisName: S_M_Hunting_Weapon + Name: Magic Hunting Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bIgnoreMdefRaceRate,RC_Brute,5+(getrefine()/2); bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,5+(getrefine()/2); + - Id: 24173 + AegisName: S_M_Insect_Net_Weapon + Name: Magic Insect Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bIgnoreMdefRaceRate,RC_Insect,5+(getrefine()/2); + - Id: 24174 + AegisName: S_M_Fishing_Weapon + Name: Magic Fishing Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bIgnoreMdefRaceRate,RC_Fish,5+(getrefine()/2); + - Id: 24175 + AegisName: S_M_Dragon_K_Weapon + Name: Magic Dragon Killer Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bIgnoreMdefRaceRate,RC_Dragon,5+(getrefine()/2); + - Id: 24176 + AegisName: S_M_Corrupt_Weapon + Name: Magic Angelus Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bIgnoreMdefRaceRate,RC_Angel,5+(getrefine()/2); + - Id: 24177 + AegisName: S_M_Vibration_Weapon + Name: Magic Formless Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bIgnoreMdefRaceRate,RC_Formless,5+(getrefine()/2); + - Id: 24178 + AegisName: S_M_Holy_Water_Weapon + Name: Magic Holy Water Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bIgnoreMdefRaceRate,RC_Undead,5+(getrefine()/2); + - Id: 24179 + AegisName: S_M_Scissors_Weapon + Name: Magic Caesars Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bIgnoreMdefRaceRate,RC_Plant,5+(getrefine()/2); + - Id: 24180 + AegisName: S_Bearers_Armor + Name: Bearer's Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bMdef,1+(getrefine()/2); + - Id: 24181 + AegisName: S_Bearers_Shoes + Name: Bearer's Shadow Shoes + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bMaxSP,50+(5*(getrefine()/2)); + - Id: 24182 + AegisName: S_Bearers_Shield + Name: Bearer's Shadow Shield + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bDef,5+(getrefine()/2); + - Id: 24183 + AegisName: S_Bearers_Weapon + Name: Bearer's Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bMaxHP,100+(10*(getrefine()/2)); + - Id: 24184 + AegisName: S_Bearers_Earring + Name: Bearer's Shadow Earring + Type: Shadowgear + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bMatk,5+(getrefine()/2); + - Id: 24185 + AegisName: S_Bearers_Pendent + Name: Bearer's Shadow Pendant + Type: Shadowgear + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bBaseAtk,5+(getrefine()/2); + - Id: 24186 + AegisName: S_Basis_Armor + Name: Basis Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bAddEle,Ele_Neutral,1+(.@r/2); bonus2 bMagicAddEle,Ele_Neutral,1+(.@r/2); + - Id: 24187 + AegisName: S_Hallowed_Armor + Name: Hallowed Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bAddEle,Ele_Dark,1+(.@r/2); bonus2 bMagicAddEle,Ele_Dark,1+(.@r/2); + - Id: 24188 + AegisName: S_Saharic_Armor + Name: Underneith Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bAddEle,Ele_Water,1+(.@r/2); bonus2 bMagicAddEle,Ele_Water,1+(.@r/2); + - Id: 24189 + AegisName: S_Underneath_Armor + Name: Underneath Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bAddEle,Ele_Earth,1+(.@r/2); bonus2 bMagicAddEle,Ele_Earth,1+(.@r/2); + - Id: 24190 + AegisName: S_Flam_Armor + Name: Flame Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bAddEle,Ele_Fire,1+(.@r/2); bonus2 bMagicAddEle,Ele_Fire,1+(.@r/2); + - Id: 24191 + AegisName: S_Windy_Armor + Name: Windy Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bAddEle,Ele_Wind,1+(.@r/2); bonus2 bMagicAddEle,Ele_Wind,1+(.@r/2); + - Id: 24192 + AegisName: S_Envenom_Armor + Name: Envenom Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bAddEle,Ele_Poison,1+(.@r/2); bonus2 bMagicAddEle,Ele_Poison,1+(.@r/2); + - Id: 24193 + AegisName: S_Damned_Armor + Name: Damned Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bAddEle,Ele_Holy,1+(.@r/2); bonus2 bMagicAddEle,Ele_Holy,1+(.@r/2); + - Id: 24194 + AegisName: S_Geist_Armor + Name: Exorcism Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bAddEle,Ele_Ghost,1+(.@r/2); bonus2 bMagicAddEle,Ele_Ghost,1+(.@r/2); + - Id: 24195 + AegisName: S_Divine_Armor + Name: Divine Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bAddEle,Ele_Undead,1+(.@r/2); bonus2 bMagicAddEle,Ele_Undead,1+(.@r/2); + - Id: 24196 + AegisName: S_Hasty_Shoes + Name: Hasty Shadow Shoes + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bFlee,5+(getrefine()/2); + - Id: 24197 + AegisName: S_Hasty_Armor + Name: Hasty Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bFlee,5+(getrefine()/2); + - Id: 24198 + AegisName: S_Basis_Shield + Name: Basis Shadow Shield + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Neutral,.@i; bonus2 bMagicSubDefEle,Ele_Neutral,.@i; + - Id: 24199 + AegisName: S_Hallowed_Shield + Name: Hallowed Shadow Shield + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Dark,.@i; bonus2 bMagicSubDefEle,Ele_Dark,.@i; + - Id: 24200 + AegisName: S_Saharic_Shield + Name: Saharic Shadow Shield + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Water,.@i; bonus2 bMagicSubDefEle,Ele_Water,.@i; + - Id: 24201 + AegisName: S_Underneath_Shield + Name: Underneath Shadow Shield + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Earth,.@i; bonus2 bMagicSubDefEle,Ele_Earth,.@i; + - Id: 24202 + AegisName: S_Flam_Shield + Name: Flame Shadow Shield + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Fire,.@i; bonus2 bMagicSubDefEle,Ele_Fire,.@i; + - Id: 24203 + AegisName: S_Windy_Shield + Name: Windy Shadow Shield + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Wind,.@i; bonus2 bMagicSubDefEle,Ele_Wind,.@i; + - Id: 24204 + AegisName: S_Envenom_Shield + Name: Envenom Shadow Shield + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Poison,.@i; bonus2 bMagicSubDefEle,Ele_Poison,.@i; + - Id: 24205 + AegisName: S_Damned_Shield + Name: Damned Shadow Shield + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Holy,.@i; bonus2 bMagicSubDefEle,Ele_Holy,.@i; + - Id: 24206 + AegisName: S_Geist_Shield + Name: Exorcism Shadow Shield + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Ghost,.@i; bonus2 bMagicSubDefEle,Ele_Ghost,.@i; + - Id: 24207 + AegisName: S_Divine_Shield + Name: Divine Shadow Shield + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Undead,.@i; bonus2 bMagicSubDefEle,Ele_Undead,.@i; + - Id: 24208 + AegisName: S_Expert_Shoes + Name: Expert Shadow Shoes + Type: Shadowgear + Buy: 20 + Weight: 100 + Locations: + Shadow_Shoes: true + EquipLevelMin: 150 + EquipLevelMax: 175 + Refineable: true + Script: | + bonus2 bExpAddRace,RC_All,1; + - Id: 24209 + AegisName: S_Expert_Shield + Name: Expert Shadow Shield + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 150 + EquipLevelMax: 175 + Refineable: true + Script: | + bonus2 bExpAddRace,RC_All,(getrefine()/4); + - Id: 24210 + AegisName: S_Beginner_Shoes + Name: Beginner Shadow Shoes + Type: Shadowgear + Buy: 20 + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + EquipLevelMax: 49 + Refineable: true + Script: | + bonus2 bExpAddRace,RC_All,getrefine(); + - Id: 24211 + AegisName: S_Beginner_Shield + Name: Beginner Shadow Shield + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + EquipLevelMax: 49 + Refineable: true + Script: | + bonus2 bExpAddRace,RC_All,getrefine(); + - Id: 24212 + AegisName: S_Rookie_Shoes + Name: Rookie Shadow Shoes + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 50 + EquipLevelMax: 99 + Refineable: true + Script: | + bonus2 bExpAddRace,RC_All,(getrefine()/2); + - Id: 24213 + AegisName: S_Rookie_Shield + Name: Rookie Shadow Shield + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 50 + EquipLevelMax: 99 + Refineable: true + Script: | + bonus2 bExpAddRace,RC_All,(getrefine()/2); + - Id: 24214 + AegisName: S_Advanced_Shoes + Name: Advanced Shadow Shoes + Type: Shadowgear + Buy: 20 + Locations: + Shadow_Shoes: true + EquipLevelMin: 100 + EquipLevelMax: 149 + Refineable: true + Script: | + bonus2 bExpAddRace,RC_All,(getrefine()/3); + - Id: 24215 + AegisName: S_Advanced_Shield + Name: Advanced Shadow Shield + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 100 + EquipLevelMax: 149 + Refineable: true + Script: | + bonus2 bExpAddRace,RC_All,(getrefine()/3); + - Id: 24216 + AegisName: S_Attack_Armor + Name: Attack Shadow Armor + Type: Shadowgear + Buy: 10 + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); autobonus "{ bonus bBaseAtk,("+.@r+"*5); }",(.@r*2)+10,3000,BF_NORMAL; + - Id: 24217 + AegisName: S_Blitz_Earring + Name: Blitz Shadow Earring + Type: Shadowgear + Buy: 10 + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus bHit,(.@r/2)+5; if(.@r>=7){ bonus bAspd,1; } + - Id: 24218 + AegisName: S_Blitz_Pendent + Name: Blitz Shadow Pendant + Type: Shadowgear + Buy: 10 + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus bAtk2,(.@r/2)+5; if(.@r>=7){ bonus bAspd,1; } + - Id: 24219 + AegisName: S_ColdBolt_Armor + Name: Cold Bolt Shadow Armor + Type: Shadowgear + Buy: 10 + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); if(.@r>=2) autobonus "{ bonus3 bAutoSpell,\"MG_COLDBOLT\",("+.@r+"/2),1000; }",(.@r*2)+100,100,BF_SHORT; + - Id: 24220 + AegisName: S_FireBolt_Armor + Name: Fire Bolt Shadow Armor + Type: Shadowgear + Buy: 10 + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); if(.@r>=2) autobonus "{ bonus3 bAutoSpell,\"MG_FIREBOLT\",("+.@r+"/2),1000; }",(.@r*2)+100,100,BF_SHORT; + - Id: 24221 + AegisName: S_LightingBolt_Armor + Name: Lightning Bolt Shadow Armor + Type: Shadowgear + Buy: 10 + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); if(.@r>=2) autobonus "{ bonus3 bAutoSpell,\"MG_LIGHTNINGBOLT\",("+.@r+"/2),1000; }",(.@r*2)+100,100,BF_SHORT; + - Id: 24222 + AegisName: S_EarthSpike_Armor + Name: Earth Spike Shadow Armor + Type: Shadowgear + Buy: 10 + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); if(.@r>=2) autobonus "{ bonus3 bAutoSpell,\"WZ_EARTHSPIKE\",("+.@r+"/2),1000; }",(.@r*2)+100,100,BF_SHORT; + - Id: 24223 + AegisName: S_Enhance_Force_Weapon + Name: Enhanced Force Shadow Weapon + Type: Shadowgear + Buy: 10 + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Shadow_Weapon: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bAtk2,10; bonus2 bAddClass,Class_All,(getrefine()/2); + - Id: 24224 + AegisName: S_Force_Weapon + Name: Force Shadow Weapon + Type: Shadowgear + Buy: 10 + Locations: + Shadow_Weapon: true + EquipLevelMin: 70 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bAddClass,Class_All,(.@r<7)?1:((.@r<9)?2:3); + - Id: 24225 + AegisName: S_Force_Earring + Name: Force Shadow Earring + Type: Shadowgear + Buy: 10 + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 70 + Refineable: true + Script: | + .@r = getrefine(); bonus bAtk2,(5+.@r); if(.@r>=7) bonus bMaxHPrate,1; if(.@r>=9) bonus bMaxSPrate,1; + - Id: 24226 + AegisName: S_Force_Pendant + Name: Force Shadow Pendant + Type: Shadowgear + Buy: 10 + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 70 + Refineable: true + Script: | + .@r = getrefine(); bonus bAtk2,(5+.@r); if(.@r>=7) bonus bMaxHPrate,1; if(.@r>=9) bonus bMaxSPrate,1; + - Id: 24227 + AegisName: S_Enhance_Spirit_Weapon + Name: Enhanced Soul Shadow Weapon + Type: Shadowgear + Buy: 10 + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Shadow_Weapon: true + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bMatk,10; bonus bMatkRate,(getrefine()/2); + - Id: 24228 + AegisName: S_Spirit_Weapon + Name: Soul Shadow Weapon + Type: Shadowgear + Buy: 10 + Locations: + Shadow_Weapon: true + EquipLevelMin: 70 + Refineable: true + Script: | + .@r = getrefine(); bonus bMatkRate,(.@r<7)?1:((.@r<9)?2:3); + - Id: 24229 + AegisName: S_Spirit_Earring + Name: Soul Shadow Earring + Type: Shadowgear + Buy: 10 + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 70 + Refineable: true + Script: | + .@r = getrefine(); bonus bMatk,(5+.@r); if(.@r>=7) bonus bMaxHPrate,1; if(.@r>=9) bonus bMatkRate,1; + - Id: 24230 + AegisName: S_Spirit_Pendant + Name: Soul Shadow Pendant + Type: Shadowgear + Buy: 10 + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 70 + Refineable: true + Script: | + .@r = getrefine(); bonus bMatk,(5+.@r); if(.@r>=7) bonus bMaxHPrate,1; if(.@r>=9) bonus bMatkRate,1; + - Id: 24231 + AegisName: S_Blitz_Shoes + Name: Blitz Shadow Shoes + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bFlee,5; .@r = getrefine(); if(.@r>=2){ bonus bCritical,2; } if(.@r>=7){ bonus bAspd,1; } if(.@r>=9){ bonus bAspd,1; } + - Id: 24232 + AegisName: S_Blitz_Shield + Name: Blitz Shadow Shield + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bCritical,5; .@r = getrefine(); if(.@r>=2){ bonus bCritical,2; } if(.@r>=7){ bonus bAspd,1; } if(.@r>=9){ bonus bAspd,1; } + - Id: 24233 + AegisName: S_Exceed_Weapon + Name: Exceeding Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine()/2; bonus bBaseAtk,5; bonus bMatk,5; bonus2 bAddClass,Class_All,.@r; bonus bMatkRate,.@r; + - Id: 24234 + AegisName: S_Titan_Earring + Name: Titan Shadow Earring + Type: Shadowgear + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); .@rate = (.@r<7)?1:((.@r<9)?2:4); bonus2 bAddSize,Size_Large,.@rate; bonus2 bMagicAddSize,Size_Large,.@rate; + - Id: 24235 + AegisName: S_Titan_Pendant + Name: Titan Shadow Pendant + Type: Shadowgear + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); .@rate = (.@r<7)?1:((.@r<9)?2:4); bonus2 bAddSize,Size_Large,.@rate; bonus2 bMagicAddSize,Size_Large,.@rate; + - Id: 24236 + AegisName: S_Boned_Earring + Name: Boned Shadow Earring + Type: Shadowgear + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); .@rate = (.@r<7)?1:((.@r<9)?2:4); bonus2 bAddSize,Size_Medium,.@rate; bonus2 bMagicAddSize,Size_Medium,.@rate; + - Id: 24237 + AegisName: S_Boned_Pendant + Name: Boned Shadow Pendant + Type: Shadowgear + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); .@rate = (.@r<7)?1:((.@r<9)?2:4); bonus2 bAddSize,Size_Medium,.@rate; bonus2 bMagicAddSize,Size_Medium,.@rate; + - Id: 24238 + AegisName: S_Gigantic_Earring + Name: Gigantic Shadow Earring + Type: Shadowgear + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); .@rate = (.@r<7)?1:((.@r<9)?2:4); bonus2 bAddSize,Size_Small,.@rate; bonus2 bMagicAddSize,Size_Small,.@rate; + - Id: 24239 + AegisName: S_Gigantic_Pendant + Name: Gigantic Shadow Pendant + Type: Shadowgear + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); .@rate = (.@r<7)?1:((.@r<9)?2:4); bonus2 bAddSize,Size_Small,.@rate; bonus2 bMagicAddSize,Size_Small,.@rate; + - Id: 24240 + AegisName: S_Caster_Shoes + Name: Caster Shadow Shoes + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bMatk,5; bonus bUseSPrate,-1-(getrefine()/2); + - Id: 24241 + AegisName: S_Caster_Shield + Name: Caster Shadow Shield + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bMatk,5; bonus bUseSPrate,-1-(getrefine()/2); + - Id: 24242 + AegisName: S_Caster_Armor + Name: Caster Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bMatk,5; bonus bUseSPrate,-1-(getrefine()/2); + - Id: 24243 + AegisName: S_Reload_Shoes + Name: Reload Shadow Shoes + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus bDelayrate,(.@r<7)?-1:((.@r<9)?-2:-3); + - Id: 24244 + AegisName: S_Reload_Shield + Name: Reload Shadow Shield + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus bDelayrate,(.@r<7)?-1:((.@r<9)?-2:-3); + - Id: 24245 + AegisName: S_Reload_Armor + Name: Reload Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus bDelayrate,(.@r<7)?-1:((.@r<9)?-2:-3); + - Id: 24246 + AegisName: S_Swordman_Earring + Name: Swordman Shadow Earring + Type: Shadowgear + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillUseSPrate,"SM_BASH",20+(3*.@r); + - Id: 24247 + AegisName: S_Merchant_Earring + Name: Merchant Shadow Earring + Type: Shadowgear + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillUseSPrate,"MC_MAMMONITE",20+(3*.@r); + - Id: 24248 + AegisName: S_Acolyte_Earring + Name: Acolyte Shadow Earring + Type: Shadowgear + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillUseSPrate,"AL_HEAL",20+(3*.@r); + - Id: 24249 + AegisName: S_Magician_Earring + Name: Magician Shadow Earring + Type: Shadowgear + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillUseSPrate,"MG_COLDBOLT",20+(3*.@r); bonus2 bSkillUseSPrate,"MG_FIREBOLT",20+(3*.@r); bonus2 bSkillUseSPrate,"MG_LIGHTNINGBOLT",20+(3*.@r); + - Id: 24250 + AegisName: S_Swordman_Pendant + Name: Swordman Shadow Pendant + Type: Shadowgear + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"SM_MAGNUM",20+(5*.@r); + - Id: 24251 + AegisName: S_Merchant_Pendant + Name: Merchant Shadow Pendant + Type: Shadowgear + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"MC_CARTREVOLUTION",20+(5*.@r); + - Id: 24252 + AegisName: S_Acolyte_Pendant + Name: Acolyte Shadow Pendant + Type: Shadowgear + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"AL_HOLYLIGHT",20+(5*.@r); + - Id: 24253 + AegisName: S_Thief_Pendant + Name: Thief Shadow Pendant + Type: Shadowgear + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"TF_POISON",20+(5*.@r); + - Id: 24254 + AegisName: S_Magician_Pendant + Name: Magician Shadow Pendant + Type: Shadowgear + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"MG_FIREWALL",20+5*.@r; + - Id: 24255 + AegisName: S_Archer_Pendant + Name: Archer Shadow Pendant + Type: Shadowgear + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"AC_SHOWER",20+(5*.@r); + - Id: 24256 + AegisName: Knight_Shadow_Shoes + Name: Knight Shadow Shoes + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"KN_PIERCE",20+.@r*5; + - Id: 24257 + AegisName: Crusader_Shadow_Shoes + Name: Crusader Shadow Shoes + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillUseSPrate,"CR_HOLYCROSS",(20+(3*.@r)); + - Id: 24258 + AegisName: Blacksmith_Shadow_Shoes + Name: Blacksmith Shadow Shoes + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); .@val = 20+(5*.@r); bonus2 bSkillUseSPrate,"BS_HAMMERFALL",.@val; bonus2 bSkillUseSPrate,"BS_ADRENALINE",.@val; + - Id: 24259 + AegisName: Alchemist_Shadow_Shoes + Name: Alchemist Shadow Shoes + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); if (BaseJob==Job_Alchemist) bonus bHealPower,30+7*.@r; + - Id: 24260 + AegisName: Priest_Shadow_Shoes + Name: Priest Shadow Shoes + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); .@val = 20+(3*.@r); bonus2 bSkillUseSPrate,"PR_KYRIE",.@val; bonus2 bSkillUseSPrate,"PR_LEXAETERNA",.@val; + - Id: 24261 + AegisName: Monk_Shadow_Shoes + Name: Monk Shadow Shoes + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"MO_CHAINCOMBO",20+.@r*5; + - Id: 24262 + AegisName: Assassin_Shadow_Shoes + Name: Assassin Shadow Shoes + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"AS_GRIMTOOTH",20+.@r*5; + - Id: 24263 + AegisName: Rogue_Shadow_Shoes + Name: Rogue Shadow Shoes + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@a = getskilllv("SM_SWORD"); .@r = max(getrefine(),6); bonus bBaseAtk,.@a+((.@r-6)*.@a); + - Id: 24264 + AegisName: Wizard_Shadow_Shoes + Name: Wizard Shadow Shoes + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bVariableCastrate,"WZ_STORMGUST",-1*(20+(3*.@r)); bonus2 bVariableCastrate,"WZ_VERMILION",-1*(20+(3*.@r)); bonus2 bVariableCastrate,"WZ_METEOR",-1*(20+(3*.@r)); + - Id: 24265 + AegisName: Sage_Shadow_Shoes + Name: Sage Shadow Shoes + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"WZ_HEAVENDRIVE",20+.@r*5; + - Id: 24266 + AegisName: Hunter_Shadow_Shoes + Name: Hunter Shadow Shoes + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"HT_BLITZBEAT",20+.@r*5; + - Id: 24267 + AegisName: Bard_Shadow_Shoes + Name: Bard Shadow Shoes + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@a = getskilllv("BA_MUSICALLESSON"); .@r = max(getrefine(),6); bonus bBaseAtk,.@a+((.@r-6)*.@a); + - Id: 24268 + AegisName: Dancer_Shadow_Shoes + Name: Dancer Shadow Shoes + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@a = getskilllv("DC_DANCINGLESSON"); .@r = max(getrefine(),6); bonus bBaseAtk,.@a+((.@r-6)*.@a); + - Id: 24269 + AegisName: Knight_Shadow_Armor + Name: Knight Shadow Armor + Type: Shadowgear + Buy: 10 + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillUseSPrate,"KN_BOWLINGBASH",(20+(.@r*3)); + - Id: 24270 + AegisName: Crusader_Shadow_Armor + Name: Crusader Shadow Armor + Type: Shadowgear + Buy: 10 + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"CR_GRANDCROSS",20+.@r*5; + - Id: 24271 + AegisName: Blacksmith_Shadow_Armor + Name: Blacksmith Shadow Armor + Type: Shadowgear + Buy: 10 + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); .@val = 5; if (.@r > 6) { .@val += .@r-6; } autobonus3 "{ bonus2 bAddSize,Size_All,"+.@val+"; bonus2 bMagicAddSize,Size_All,"+.@val+"; }",1000,50000,"BS_WEAPONPERFECT"; + - Id: 24272 + AegisName: Alchemist_Shadow_Armor + Name: Alchemist Shadow Armor + Type: Shadowgear + Buy: 10 + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@a = getskilllv("AM_LEARNINGPOTION"); .@r = max(getrefine(),6); bonus bBaseAtk,.@a+((.@r-6)*.@a); + - Id: 24273 + AegisName: Priest_Shadow_Armor + Name: Priest Shadow Armor + Type: Shadowgear + Buy: 10 + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"PR_MAGNUS",20+.@r*5; + - Id: 24274 + AegisName: Monk_Shadow_Armor + Name: Monk Shadow Armor + Type: Shadowgear + Buy: 10 + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"MO_FINGEROFFENSIVE",20+.@r*5; bonus2 bSkillAtk,"MO_INVESTIGATE",20+.@r*5; + - Id: 24275 + AegisName: Assassin_Shadow_Armor + Name: Assassin Shadow Armor + Type: Shadowgear + Buy: 10 + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillUseSPrate,"AS_SONICBLOW",(20+(.@r*3)); + - Id: 24276 + AegisName: Rogue_Shadow_Armor + Name: Rogue Shadow Armor + Type: Shadowgear + Buy: 10 + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"RG_BACKSTAP",20+.@r*5; + - Id: 24277 + AegisName: Wizard_Shadow_Armor + Name: Wizard Shadow Armor + Type: Shadowgear + Buy: 10 + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"WZ_JUPITEL",20+.@r*5; + - Id: 24278 + AegisName: Sage_Shadow_Armor + Name: Sage Shadow Armor + Type: Shadowgear + Buy: 10 + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + autobonus3 "{ .@r = getrefine(); if (.@r>=9) { bonus bAspd,2; } else if (.@r>=7) { bonus bAspd,1; } bonus bAspdRate,.@r; }",1000,50000,"SA_AUTOSPELL"; /* Unknow Specialeffect */ + - Id: 24279 + AegisName: Hunter_Shadow_Armor + Name: Hunter Shadow Armor + Type: Shadowgear + Buy: 10 + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"HT_CLAYMORETRAP",20+.@r*5; bonus2 bSkillAtk,"HT_LANDMINE",20+.@r*5; + - Id: 24280 + AegisName: Bard_Shadow_Armor + Name: Bard Shadow Armor + Type: Shadowgear + Buy: 10 + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine()+5; autobonus3 "{ bonus2 bSPRegenRate,"+.@r+",5000; }",1000,30000,"BA_POEMBRAGI"; autobonus3 "{ bonus2 bSPRegenRate,"+.@r+",5000; }",1000,30000,"BA_ASSASSINCROSS"; autobonus3 "{ bonus2 bSPRegenRate,"+.@r+",5000; }",1000,30000,"BA_APPLEIDUN"; autobonus3 "{ bonus2 bSPRegenRate,"+.@r+",5000; }",1000,30000,"BA_WHISTLE"; /* Unknow Specialeffect */ + - Id: 24281 + AegisName: Dancer_Shadow_Armor + Name: Dancer Shadow Armor + Type: Shadowgear + Buy: 10 + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine()+5; autobonus3 "{ bonus2 bSPRegenRate,"+.@r+",5000; }",1000,30000,"DC_FORTUNEKISS"; autobonus3 "{ bonus2 bSPRegenRate,"+.@r+",5000; }",1000,30000,"DC_SERVICEFORYOU"; autobonus3 "{ bonus2 bSPRegenRate,"+.@r+",5000; }",1000,30000,"DC_DONTFORGETME"; autobonus3 "{ bonus2 bSPRegenRate,"+.@r+",5000; }",1000,30000,"DC_HUMMING"; /* Unknow Special Effect */ + - Id: 24282 + AegisName: Super_Novice_Shadow_Weapon + Name: Super Novice Shadow Weapon + Type: Shadowgear + Jobs: + Novice: true + SuperNovice: true + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxHP,1000; bonus bMaxSP,200; bonus2 bIgnoreDefClassRate,Class_Normal,3*(getskilllv("SM_SWORD")+.@r); bonus2 bIgnoreMDefClassRate,Class_Normal,3*(getskilllv("MG_SRECOVERY")+.@r); if (.@r>=7) { bonus bMaxHPrate,5; bonus bMaxSPrate,5; } if (.@r>=9) { bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bSPrecovRate,100; } + - Id: 24283 + AegisName: Gunslinger_Shadow_Weapon + Name: Gunslinger Shadow Weapon + Type: Shadowgear + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bIgnoreDefClassRate,Class_Normal,3*(getskilllv("GS_SNAKEEYE")+.@r); .@aspd = 1; if (.@r>=7) { .@aspd += 1; bonus bLongAtkRate,3; } if (.@r>=9) { .@aspd += 1; bonus bLongAtkRate,5; bonus bAspd,.@aspd; } + - Id: 24284 + AegisName: Taekwondo_Shadow_Weapon + Name: Taekwondo Shadow Weapon + Type: Shadowgear + Jobs: + SoulLinker: true + StarGladiator: true + Taekwon: true + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus bAspd,1; bonus2 bAddClass,Class_All,.@r; bonus bMatkRate,.@r; if (.@r>=7) { bonus bMaxHP,1000; bonus bMaxSP,200; bonus bAspd,1; } if (.@r>=9) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bAspd,1; } + - Id: 24285 + AegisName: Ninja_Shadow_Weapon + Name: Ninja Shadow Weapon + Type: Shadowgear + Jobs: + KagerouOboro: true + Ninja: true + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); .@val = 3; bonus2 bSkillCooldown,"KO_BAKURETSU",-2000; bonus bMatk,(3*getskilllv("NJ_NINPOU")); if (.@r >= 7) { .@val += 3; if (.@r >= 9) { .@val += 4; } } bonus2 bAddClass,Class_Normal,.@val; bonus bMatkRate,.@val; + - Id: 24286 + AegisName: Doram_Magical_Shadow_Weapon + Name: Doram Magical Shadow Weapon + Type: Shadowgear + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus bVariableCastrate,-(5+.@r); if (getskilllv("SU_POWEROFLAND")==1) bonus bFixedCast,-100; if (getskilllv("SU_POWEROFSEA")==1) { bonus bUseSPrate,-3; } if (.@r>=7) bonus bMatkRate,5; if (.@r>=9) bonus bMatkRate,5; + - Id: 24287 + AegisName: Doram_Physical_Shadow_Weapon + Name: Doram Physical Shadow Weapon + Type: Shadowgear + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus bLongAtkRate,.@r; if (getskilllv("SU_POWEROFLIFE")==1) bonus bAspd,1; if (.@r>=7) bonus bFlee2,2; if (.@r>=9) bonus bFlee2,3; + - Id: 24288 + AegisName: Rune_Knight_Shadow_Weapon + Name: Rune Knight Shadow Weapon + Type: Shadowgear + Buy: 10 + Jobs: + Knight: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Shadow_Weapon: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"RK_SONICWAVE",20+.@r*5; + - Id: 24289 + AegisName: Royal_Guard_Shadow_Weapon + Name: Royal Guard Shadow Weapon + Type: Shadowgear + Buy: 10 + Jobs: + Crusader: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Shadow_Weapon: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"LG_CANNONSPEAR",20+.@r*5; + - Id: 24290 + AegisName: Mechanic_Shadow_Weapon + Name: Mechanic Shadow Weapon + Type: Shadowgear + Buy: 10 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Shadow_Weapon: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"NC_VULCANARM",20+.@r*5; + - Id: 24291 + AegisName: Genetic_Shadow_Weapon + Name: Genetic Shadow Weapon + Type: Shadowgear + Buy: 10 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Shadow_Weapon: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"GN_CART_TORNADO",20+.@r*5; + - Id: 24292 + AegisName: Arcbishop_Shadow_Weapon + Name: Arcbishop Shadow Weapon + Type: Shadowgear + Buy: 10 + Jobs: + Priest: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Shadow_Weapon: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"AB_DUPLELIGHT",20+.@r*5; + - Id: 24293 + AegisName: Sura_Shadow_Weapon + Name: Sura Shadow Weapon + Type: Shadowgear + Buy: 10 + Jobs: + Monk: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Shadow_Weapon: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillCooldown,"SR_RAMPAGEBLASTER",-1*(2000+500*.@r); + - Id: 24294 + AegisName: Guillotine_Cross_Shadow_Weapon + Name: Guillotine Cross Shadow Weapon + Type: Shadowgear + Buy: 10 + Jobs: + Assassin: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Shadow_Weapon: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillUseSPrate,"GC_DARKILLUSION",(20+(.@r*3)); + - Id: 24295 + AegisName: Shadow_Chaser_Shadow_Weapon + Name: Shadow Chaser Shadow Weapon + Type: Shadowgear + Buy: 10 + Jobs: + Rogue: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Shadow_Weapon: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"SC_TRIANGLESHOT",20+.@r*5; + - Id: 24296 + AegisName: Warlock_Shadow_Weapon + Name: Warlock Shadow Weapon + Type: Shadowgear + Buy: 10 + Jobs: + Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Shadow_Weapon: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"WL_DRAINLIFE",20+.@r*5; + - Id: 24297 + AegisName: Sorcerer_Shadow_Weapon + Name: Sorcerer Shadow Weapon + Type: Shadowgear + Buy: 10 + Jobs: + Sage: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Shadow_Weapon: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillCooldown,"SO_DIAMONDDUST",-1*((300*.@r)+1000); + - Id: 24298 + AegisName: Ranger_Shadow_Weapon + Name: Ranger Shadow Weapon + Type: Shadowgear + Buy: 10 + Jobs: + Hunter: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Shadow_Weapon: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"RA_CLUSTERBOMB",20+.@r*5; + - Id: 24299 + AegisName: Minstrel_Shadow_Weapon + Name: Maestro Shadow Weapon + Type: Shadowgear + Buy: 10 + Jobs: + BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Gender: Male + Locations: + Shadow_Weapon: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxHPrate,3; bonus bDef,.@r*(getskilllv("MI_HARMONIZE")+getskilllv("MI_RUSH_WINDMILL")+getskilllv("MI_ECHOSONG")); + - Id: 24300 + AegisName: Wanderer_Shadow_Weapon + Name: Wanderer Shadow Weapon + Type: Shadowgear + Buy: 10 + Jobs: + BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Gender: Female + Locations: + Shadow_Weapon: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxHPrate,3; bonus bDef,.@r*(getskilllv("WA_SWING_DANCE")+getskilllv("WA_SYMPHONY_OF_LOVER")+getskilllv("WA_MOONLIT_SERENADE")); + - Id: 24301 + AegisName: Rune_Knight_Shadow_Shield + Name: Rune Knight Shadow Shield + Type: Shadowgear + Jobs: + Knight: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Shadow_Shield: true + EquipLevelMin: 99 + Refineable: true + Script: | + autobonus3 "{ .@r = getrefine(); if (.@r>=9) { bonus bAspd,2; } else if (.@r>=7) { bonus bAspd,1; } bonus bAspdRate,.@r; }",1000,50000,"RK_ENCHANTBLADE"; + - Id: 24302 + AegisName: Royal_Guard_Shadow_Shield + Name: Royal Guard Shadow Shield + Type: Shadowgear + Buy: 10 + Jobs: + Crusader: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Shadow_Shield: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"LG_EARTHDRIVE",20+.@r*5; + - Id: 24303 + AegisName: Mechanic_Shadow_Shield + Name: Mechanic Shadow Shield + Type: Shadowgear + Buy: 10 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Shadow_Shield: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"NC_FLAMELAUNCHER",20+.@r*5; + - Id: 24304 + AegisName: Genetic_Shadow_Shield + Name: Genetic Shadow Shield + Type: Shadowgear + Buy: 10 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Shadow_Shield: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxHPrate,3; bonus bDef,.@r*(getskilllv("GN_CART_TORNADO")+getskilllv("GN_CARTBOOST")+getskilllv("GN_CARTCANNON")); + - Id: 24305 + AegisName: Archbishop_Shadow_Shield + Name: Archbishop Shadow Shield + Type: Shadowgear + Buy: 10 + Jobs: + Priest: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Shadow_Shield: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"AB_ADORAMUS",20+.@r*5; + - Id: 24306 + AegisName: Sura_Shadow_Shield + Name: Sura Shadow Shield + Type: Shadowgear + Buy: 10 + Jobs: + Monk: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Shadow_Shield: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"SR_SKYNETBLOW",20+.@r*5; + - Id: 24307 + AegisName: Guillotine_Cross_Shadow_Shield + Name: Guillotine Cross Shadow Shield + Type: Shadowgear + Buy: 10 + Jobs: + Assassin: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Shadow_Shield: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillCooldown,"GC_DARKCROW",-(10000+(2000*.@r)); + - Id: 24308 + AegisName: Shadow_Chaser_Shadow_Shield + Name: Shadow Chaser Shadow Shield + Type: Shadowgear + Buy: 10 + Jobs: + Rogue: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Shadow_Shield: true + EquipLevelMin: 99 + Refineable: true + Script: | + autobonus3 "{ .@r = getrefine(); if (.@r>=9) { bonus bAspd,2; } else if (.@r>=7) { bonus bAspd,1; } bonus bAspdRate,.@r; }",1000,50000,"SC_AUTOSHADOWSPELL"; + - Id: 24309 + AegisName: Warlock_Shadow_Shield + Name: Warlock Shadow Shield + Type: Shadowgear + Buy: 10 + Jobs: + Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Shadow_Shield: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"WL_EARTHSTRAIN",20+.@r*5; + - Id: 24310 + AegisName: Sorcerer_Shadow_Shield + Name: Sorcerer Shadow Shield + Type: Shadowgear + Buy: 10 + Jobs: + Sage: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Shadow_Shield: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillCooldown,"SO_EARTHGRAVE",-1*((300*.@r)+1000); + - Id: 24311 + AegisName: Ranger_Shadow_Shield + Name: Ranger Shadow Shield + Type: Shadowgear + Buy: 10 + Jobs: + Hunter: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Shadow_Shield: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillUseSPrate,"RA_AIMEDBOLT",(20+(5*.@r)); + - Id: 24312 + AegisName: Minstrel_Shadow_Shield + Name: Minstrel Shadow Shield + Type: Shadowgear + Buy: 10 + Jobs: + BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Gender: Male + Locations: + Shadow_Shield: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxSPrate,3; bonus bMdef,.@r*(getskilllv("MI_HARMONIZE")+getskilllv("MI_RUSH_WINDMILL")+getskilllv("MI_ECHOSONG"))/5; + - Id: 24313 + AegisName: Wanderer_Shadow_Shield + Name: Wanderer Shadow Shield + Type: Shadowgear + Buy: 10 + Jobs: + BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Gender: Female + Locations: + Shadow_Shield: true + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxSPrate,3; bonus bMdef,.@r*(getskilllv("WA_SWING_DANCE")+getskilllv("WA_SYMPHONY_OF_LOVER")+getskilllv("WA_MOONLIT_SERENADE"))/5; + - Id: 24314 + AegisName: Ninja_Shadow_Shield + Name: Ninja Shadow Shield + Type: Shadowgear + Buy: 10 + Jobs: + Ninja: true + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus bAspd,1; bonus bBaseAtk,(3*getskilllv("NJ_TOBIDOUGU")); autobonus3 "{ bonus bAspd,1; }",1000,50000,"NJ_NEN"; .@val = 4 * .@r; if (.@r >= 7) { .@val += 10; if (.@r >= 9) { .@val += 10; } } bonus2 bIgnoreDefClassRate,Class_Normal,.@val; bonus2 bIgnoreMdefClassRate,Class_Normal,.@val; + - Id: 24315 + AegisName: Taekwon_Shadow_Shield + Name: Taekwon Shadow Shield + Type: Shadowgear + Buy: 10 + Jobs: + SoulLinker: true + StarGladiator: true + Taekwon: true + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); .@val = 3; if (.@r >= 7) { .@val += 2; if (.@r >= 9) { .@val += 3; } } bonus2 bIgnoreDefClassRate,Class_Normal,(3*(getskilllv("TK_HPTIME")+.@r)); bonus2 bIgnoreMdefClassRate,Class_Normal,(3*(getskilllv("TK_SPTIME")+.@r)); bonus2 bAddClass,Class_All,.@val; bonus bMatkRate,.@val; + - Id: 24316 + AegisName: Doram_Physical_Shadow_Shield + Name: Doram Physical Shadow Shield + Type: Shadowgear + Buy: 10 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bAddClass,Class_All,3; autobonus3 "{ bonus bAspd,1; }",1000,50000,"SU_ARCLOUSEDASH"; bonus2 bSkillCooldown,"SU_LUNATICCARROTBEAT",-(.@r*200); if (.@r>=7) bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",5; if (.@r>=9) bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",5; + - Id: 24317 + AegisName: Doram_Magical_Shadow_Shield + Name: Doram Magical Shadow Shield + Type: Shadowgear + Buy: 10 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus bMatkRate,3; autobonus3 "{ bonus2 bSPRegenRate,5,5000; }",1000,30000,"SU_BUNCHOFSHRIMP"; bonus2 bSkillCooldown,"SU_CN_METEOR",-(.@r*100); if (.@r>=7) bonus2 bSkillAtk,"SU_CN_METEOR",5; if (.@r>=9) bonus2 bSkillAtk,"SU_CN_METEOR",5; + - Id: 24318 + AegisName: Super_Novice_Shadow_Shield + Name: Super Novice Shadow Shield + Type: Shadowgear + Buy: 10 + Jobs: + Novice: true + SuperNovice: true + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxHP,1000; bonus bMaxSP,200; bonus bAspdRate,(2*getskilllv("TF_DOUBLE")+.@r); bonus bVariableCastrate,-(2*getskilllv("AC_OWL")+.@r); if (.@r>=7) { bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; } if (.@r>=9) { bonus2 bAddClass,Class_All,3; bonus bMatkRate,3; } + - Id: 24319 + AegisName: Gunslinger_Shadow_Shield + Name: Gunslinger Shadow Shield + Type: Shadowgear + Buy: 10 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus bCritAtkRate,5; bonus bCritical,(getskilllv("GS_SINGLEACTION")*2)+.@r; if (.@r>=7) bonus bCritAtkRate,2; if (.@r>=9) bonus bCritAtkRate,3; + - Id: 24320 + AegisName: S_Hasty_Shoes_II + Name: Hasty Shadow Shoes II + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@val = 1; if (getrefine() >= 7) { .@val += 1; } bonus bFlee,5; bonus2 bAddClass,Class_All,.@val; bonus bMatkRate,.@val; + - Id: 24321 + AegisName: S_Bearer's_Pendant_II + Name: Bearer's Shadow Pendant II + Type: Shadowgear + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bBaseAtk,5; if (getrefine() >= 7) { .@val = 3; } else { .@val = 1; } bonus bMaxHPrate,.@val; + - Id: 24322 + AegisName: S_Gemstone_Earring_II + Name: Gemstone Shadow Earring II + Type: Shadowgear + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + if (getrefine() >= 7) { .@val = 3; } else { .@val = 2; } bonus bMatk,5; bonus bUseSPrate,-.@val; + - Id: 24323 + AegisName: S_Spellflow_Shield_II + Name: Spellflow Shadow Shield II + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bMatkRate,1 + (getrefine() >= 7); bonus bUseSPrate,-1; + - Id: 24324 + AegisName: S_Spiritual_Weapon_II + Name: Spiritual Shadow Weapon II + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bSPrecovRate,5; bonus2 bAddClass,Class_All,1 + (getrefine() >= 7); + - Id: 24325 + AegisName: S_Malicious_Armor_II + Name: Malicious Shadow Armor II + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bMaxHP,100; bonus2 bAddClass,Class_All,1 + (getrefine() >= 7); + - Id: 24326 + AegisName: S_Sigrun_Armor + Name: Sigrun Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus bLuk,1; bonus bHit,.@r; if (BaseClass == Job_Swordman || BaseClass == Job_Thief || (BaseClass == Job_Taekwon && BaseJob != Job_Soul_Linker)) { bonus bBaseAtk,15; } else if (BaseClass == Job_Merchant || BaseClass == Job_Archer || BaseClass == Job_Gunslinger) { bonus bLongAtkRate,3; } else if (BaseClass == Job_Mage || BaseClass == Job_Acolyte || BaseClass == Job_Ninja || BaseJob == Job_Soul_Linker) { bonus bMatk,15; } else if (BaseClass == Job_Novice || BaseJob == Job_Summoner) { bonus bAspdRate,5; bonus bMaxHP,1000; } + - Id: 24327 + AegisName: S_Sigrun_Shield + Name: Sigrun Shadow Shield + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus bVit,1; bonus bDef,5*.@r; if (BaseClass == Job_Swordman || BaseClass == Job_Thief || (BaseClass == Job_Taekwon && BaseJob != Job_Soul_Linker)) { bonus bAspd,1; } else if (BaseClass == Job_Merchant || BaseClass == Job_Archer || BaseClass == Job_Gunslinger) { bonus bFlee,15; } else if (BaseClass == Job_Mage || BaseClass == Job_Acolyte || BaseClass == Job_Ninja || BaseJob == Job_Soul_Linker) { bonus bMaxSPrate,2; bonus bHealPower,3; } else if (BaseClass == Job_Novice || BaseJob == Job_Summoner) { bonus bVariableCastrate,-5; bonus bMaxSP,300; } + - Id: 24328 + AegisName: S_Force_Executioner_Weapon + Name: Force Executioner Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,5+.@r; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,.@r/2; + - Id: 24329 + AegisName: S_Spirit_Magic_Executioner_Weapon + Name: Spirit Magic Executioner Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus bMatk,5+.@r; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,.@r/2; + - Id: 24330 + AegisName: S_Caster_Armor_II + Name: Caster Shadow Armor II + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bInt,3; bonus bSPrecovRate,20; bonus bVariableCastrate,-getrefine()/2; + - Id: 24331 + AegisName: S_Reload_Armor_II + Name: Reload Shadow Armor II + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bHPrecovRate,20; bonus bVit,3; bonus bDelayrate,-(getrefine()/3); + - Id: 24332 + AegisName: S_Critical_Shield + Name: Critical Shadow Shield + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus bCritical,5+.@r/2; if (.@r >= 9) { bonus bCritAtkRate,2; } else if (.@r >= 7) { bonus bCritAtkRate,1; } + - Id: 24333 + AegisName: S_Critical_Shoes + Name: Critical Shadow Shoes + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus bFlee,5+.@r/2; if (.@r >= 9) { bonus bCritical,4; } else if (.@r >= 7) { bonus bCritical,2; } + - Id: 24334 + AegisName: S_Magic_Compose_Armor + Name: Magic Compose Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); if (.@r > 1) { .@val = .@r/2; bonus3 bAutoSpell,"MG_COLDBOLT",.@val,(5+.@r); bonus4 bAutoSpellOnSkill,"MG_COLDBOLT","MG_FIREBOLT",.@val,1000; bonus4 bAutoSpellOnSkill,"MG_FIREBOLT","MG_LIGHTNINGBOLT",.@val,1000; bonus4 bAutoSpellOnSkill,"MG_LIGHTNINGBOLT","WZ_EARTHSPIKE",.@val,1000; } + - Id: 24335 + AegisName: S_Gemstone_Weapon_II + Name: Gemstone Shadow Weapon II + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bHit,5; if (getrefine() >= 7) { bonus bUseSPrate,3; } else { bonus bUseSPrate,2; } + - Id: 24336 + AegisName: S_Gemstone_Shield_II + Name: Gemstone Shadow Shield II + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bDef,5; if (getrefine() >= 7) { bonus bUseSPrate,3; } else { bonus bUseSPrate,2; } + - Id: 24337 + AegisName: S_Bearer's_Armor_II + Name: Bearer's Shadow Armor II + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bMDef,1; if (getrefine() >= 7) { bonus bMaxHPrate,3; } else { bonus bMaxHPrate,1; } + - Id: 24338 + AegisName: S_Bearer's_Shoes_II + Name: Bearer's Shadow Shoes II + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bMaxSP,50; if (getrefine() >= 7) { bonus bMaxHPrate,3; } else { bonus bMaxHPrate,1; } + - Id: 24339 + AegisName: S_Almighty_Earring + Name: Almighty Shadow Earring + Type: Shadowgear + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bAllStats,getrefine(); + - Id: 24340 + AegisName: S_Almighty_Pendant + Name: Almighty Shadow Pendant + Type: Shadowgear + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bAllStats,getrefine(); + - Id: 24341 + AegisName: S_All_Race_Shoes + Name: All Race Shadow Shoes + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); if (.@r >= 9) { .@val = 5; } else if (.@r >= 7) { .@val = 3; } else { .@val = 2; } bonus2 bAddRace,RC_All,.@val; bonus2 bMagicAddRace,RC_All,.@val; + - Id: 24342 + AegisName: S_All_Race_Shield + Name: All Race Shadow Shield + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); if (.@r >= 9) { .@val = 3; } else if (.@r >= 7) { .@val = 2; } else { .@val = 1; } bonus2 bSubRace,RC_All,.@val; + - Id: 24343 + AegisName: S_Blitz_Weapon + Name: Blitz Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus bAspdRate,5+.@r/2; if (.@r >= 7) { bonus bAspd,1; if (.@r >= 9) { bonus bDelayrate,-1; } } + - Id: 24344 + AegisName: S_Blitz_Armor + Name: Blitz Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus bDef,25+5*(.@r/2); if (.@r >= 7) { bonus bAspd,1; if (.@r >= 9) { bonus bDelayrate,-1; } } + - Id: 24345 + AegisName: S_Tempest_Shield + Name: Tempest Shadow Shield + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bIgnoreMdefClassRate,Class_Normal,5+(getrefine()/2); + - Id: 24346 + AegisName: S_Tempest_Shoes + Name: Tempest Shadow Shoes + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bIgnoreMdefClassRate,Class_Normal,5+(getrefine()/2); + - Id: 24347 + AegisName: S_Magic_Executioner_Holy_Water_Armor + Name: Magic Executioner Holy Water Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@val = 5 + (getrefine()/2); bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,.@val; bonus2 bIgnoreMdefRaceRate,RC_Undead,.@val; + - Id: 24348 + AegisName: S_Magic_Exorcist_Corrupted_Armor + Name: Magic Exorcist Corrupted Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@val = 5 + (getrefine()/2); bonus2 bIgnoreMdefRaceRate,RC_Demon,.@val; bonus2 bIgnoreMdefRaceRate,RC_Angel,.@val; + - Id: 24349 + AegisName: S_Magic_Vibration_Dragon_Killer_Armor + Name: Magic Vibration Dragon Killer Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@val = 5 + (getrefine()/2); bonus2 bIgnoreMdefRaceRate,RC_Formless,.@val; bonus2 bIgnoreMdefRaceRate,RC_Dragon,.@val; + - Id: 24350 + AegisName: S_Magic_Scissor_Hunting_Armor + Name: Magic Scissor Hunting Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@val = 5 + (getrefine()/2); bonus2 bIgnoreMdefRaceRate,RC_Plant,.@val; bonus2 bIgnoreMdefRaceRate,RC_Brute,.@val; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,.@val; + - Id: 24351 + AegisName: S_Magic_Fishing_Insect_Net_Armor + Name: Magic Fishing Insect Net Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@val = 5 + (getrefine()/2); bonus2 bIgnoreMdefRaceRate,RC_Fish,.@val; bonus2 bIgnoreMdefRaceRate,RC_Insect,.@val; + - Id: 24352 + AegisName: S_Plasterer's_Armor_II + Name: Plasterer's Shadow Armor II + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bDef,1; bonus2 bResEff,Eff_Stone,100*getrefine(); + - Id: 24353 + AegisName: S_Insomniac_Shoes_II + Name: Insomniac Shadow Shoes II + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bDef,1; bonus2 bResEff,Eff_Sleep,100*getrefine(); + - Id: 24354 + AegisName: S_Peerless_Armor_II + Name: Peerless Shadow Armor II + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bDef,1; bonus2 bResEff,Eff_Silence,100*getrefine(); + - Id: 24355 + AegisName: S_Adulate_Shoes_II + Name: Adulate Shadow Shoes II + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bDef,1; bonus2 bResEff,Eff_Blind,100*getrefine(); + - Id: 24356 + AegisName: S_Unfreezing_Weapon_II + Name: Unfreezing Shadow Weapon II + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bDef,1; bonus2 bResEff,Eff_Freeze,100*getrefine(); + - Id: 24357 + AegisName: S_Vitality_Earring_II + Name: Vitality Shadow Earring II + Type: Shadowgear + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bDef,1; bonus2 bResEff,Eff_Bleeding,100*getrefine(); + - Id: 24358 + AegisName: S_Neutral_Weapon_II + Name: Neutral Shadow Weapon II + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bDef,1; bonus2 bResEff,Eff_Stun,100*(getrefine()/2); + - Id: 24359 + AegisName: S_Uncursed_Pendant_II + Name: Uncursed Shadow Pendant II + Type: Shadowgear + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bDef,1; bonus2 bResEff,Eff_Curse,100*getrefine(); + - Id: 24360 + AegisName: S_Tension_Weapon + Name: Tension Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bMaxHP,100 + 150*(getrefine()/2); + - Id: 24361 + AegisName: S_Tension_Earring + Name: Tension Shadow Earring + Type: Shadowgear + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bMaxHPrate,1; bonus bBaseAtk,5; bonus bMaxHP,50*(getrefine()/2); + - Id: 24362 + AegisName: S_Tension_Pendant + Name: Tension Shadow Pendant + Type: Shadowgear + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@val = 2 + (getrefine()/3); bonus bBaseAtk,5; bonus bHealPower2,.@val; bonus bAddItemHealRate,.@val; + - Id: 24363 + AegisName: S_Elegant_Weapon + Name: Elegant Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bMaxHP,100 + 150*(getrefine()/2); + - Id: 24364 + AegisName: S_Elegant_Earring + Name: Elegant Shadow Earring + Type: Shadowgear + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bMaxHPrate,1; bonus bMatk,5; bonus bMaxHP,50*(getrefine()/2); + - Id: 24365 + AegisName: S_Elegant_Pendant + Name: Elegant Shadow Pendant + Type: Shadowgear + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@val = 2 + (getrefine()/3); bonus bMatk,5; bonus bHealPower2,.@val; bonus bAddItemHealRate,.@val; + - Id: 24366 + AegisName: S_Healing_Shield + Name: Healing Shadow Shield + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus bMatk,10; if (.@r >= 7) { .@val = 3; if (.@r >= 9) { .@val += 5; } bonus bHealPower,.@val; } + - Id: 24367 + AegisName: S_Healing_Shoes + Name: Healing Shadow Shoes + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus bMatk,10; if (.@r >= 7) { .@val = 3; if (.@r >= 9) { .@val += 5; } bonus bHealPower,.@val; } + - Id: 24368 + AegisName: S_Restore_Earring + Name: Restore Shadow Earring + Type: Shadowgear + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); if (.@r >= 9) { .@val = 50; } else if (.@r >= 7) { .@val = 30; } else { .@val = 20; } bonus bHPrecovRate,.@val; + - Id: 24369 + AegisName: S_Restore_Pendant + Name: Restore Shadow Pendant + Type: Shadowgear + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); if (.@r >= 9) { .@val = 50; } else if (.@r >= 7) { .@val = 30; } else { .@val = 20; } bonus bSPrecovRate,.@val; + - Id: 24370 + AegisName: S_Mortal_Blow_Weapon + Name: Mortal Blow Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); if (.@r >= 9) { .@val = 7; } else if (.@r >= 7) { .@val = 4; } else { .@val = 2; } bonus bCritAtkRate,.@val; + - Id: 24371 + AegisName: S_Mortal_Blow_Earring + Name: Mortal Blow Shadow Earring + Type: Shadowgear + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); if (.@r >= 9) { .@val = 3; } else if (.@r >= 7) { .@val = 2; } else { .@val = 1; } bonus bCritAtkRate,.@val; + - Id: 24372 + AegisName: S_Mortal_Blow_Pendant + Name: Mortal Blow Shadow Pendant + Type: Shadowgear + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); if (.@r >= 9) { .@val = 3; } else if (.@r >= 7) { .@val = 2; } else { .@val = 1; } bonus bCritAtkRate,.@val; + - Id: 24373 + AegisName: S_Penetration_Shoes + Name: Penetration Shadow Shoes + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bIgnoreDefClassRate,Class_Normal,5+(getrefine()/2); + - Id: 24374 + AegisName: S_Penetration_Shield + Name: Penetration Shadow Shield + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bIgnoreDefClassRate,Class_Normal,5+(getrefine()/2); + - Id: 24375 + AegisName: S_Executioner_Holy_Water_Armor + Name: Executioner Holy Water Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@val = 5 + (getrefine()/2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,.@val; bonus2 bIgnoreDefRaceRate,RC_Undead,.@val; + - Id: 24376 + AegisName: S_Exorcist_Corrupted_Armor + Name: Exorcist Corrupted Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@val = 5 + (getrefine()/2); bonus2 bIgnoreDefRaceRate,RC_Demon,.@val; bonus2 bIgnoreDefRaceRate,RC_Angel,.@val; + - Id: 24377 + AegisName: S_Vibration_Dragon_Killer_Armor + Name: Vibration Dragon Killer Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@val = 5 + (getrefine()/2); bonus2 bIgnoreDefRaceRate,RC_Formless,.@val; bonus2 bIgnoreDefRaceRate,RC_Dragon,.@val; + - Id: 24378 + AegisName: S_Scissor_Hunting_Armor + Name: Scissor Hunting Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@val = 5 + (getrefine()/2); bonus2 bIgnoreDefRaceRate,RC_Plant,.@val; bonus2 bIgnoreDefRaceRate,RC_Brute,.@val; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,.@val; + - Id: 24379 + AegisName: S_Fishing_Insect_Net_Armor + Name: Fishing Insect Net Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@val = 5 + (getrefine()/2); bonus2 bIgnoreDefRaceRate,RC_Fish,.@val; bonus2 bIgnoreDefRaceRate,RC_Insect,.@val; + - Id: 24380 + AegisName: S_Sentimental_Weapon + Name: Sentimental Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus MaxSP,10+15*(getrefine()/2); + - Id: 24381 + AegisName: S_Sentimental_Earring + Name: Sentimental Shadow Earring + Type: Shadowgear + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bBaseAtk,5; bonus bMaxSPrate,1; bonus bMaxSP,5*(getrefine()/2); + - Id: 24382 + AegisName: S_Sentimental_Pendant + Name: Sentimental Shadow Pendant + Type: Shadowgear + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bBaseAtk,5; bonus bSPrecovRate,2+(getrefine()/3); + - Id: 24383 + AegisName: S_Enchanting_Weapon + Name: Enchanting Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bMaxSP,10+15*(getrefine()/2); + - Id: 24384 + AegisName: S_Enchanting_Earring + Name: Enchanting Shadow Earring + Type: Shadowgear + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bMatk,5; bonus bMaxSPrate,1; bonus bMaxSP,5*(getrefine()/2); + - Id: 24385 + AegisName: S_Enchanting_Pendant + Name: Enchanting Shadow Pendant + Type: Shadowgear + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bMatk,5; bonus bSPrecovRate,2+(getrefine()/3); + - Id: 24386 + AegisName: S_Infinity_Weapon + Name: Infinity Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); .@val = .@r/3; if (.@val) { bonus2 bAddSize,Size_All,.@val; bonus2 bMagicAddSize,Size_All,.@val; bonus2 bSubSize,Size_All,.@val; if (.@r >= 10) { bonus bNoSizeFix; } } + - Id: 24387 + AegisName: S_Beginner's_Armor + Name: Beginner's Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,2; + - Id: 24388 + AegisName: S_Beginner's_Shield + Name: Beginner's Shadow Shield + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bVit,2; + - Id: 24389 + AegisName: S_Beginner's_Shoes + Name: Beginner's Shadow Shoes + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAgi,2; + - Id: 24390 + AegisName: S_Beginner's_Weapon + Name: Beginner's Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,2; + - Id: 24391 + AegisName: S_Beginner's_Earring + Name: Beginner's Shadow Earring + Type: Shadowgear + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,2; + - Id: 24392 + AegisName: S_Beginner's_Pendant + Name: Beginner's Shadow Pendant + Type: Shadowgear + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bLuk,2; + - Id: 24393 + AegisName: S_Physical_Shoes + Name: Physical Shadow Shoes + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); if (.@r >= 9) { bonus bAspdRate,8; } else if (.@r >= 7) { bonus bAspdRate,5; } else { bonus bAspdRate,2; } + - Id: 24394 + AegisName: S_Physical_Shield + Name: Physical Shadow Shield + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxHP,200; if (.@r >= 9) { bonus bMaxHPrate,5; } else if (.@r >= 7) { bonus bMaxHPrate,2; } + - Id: 24395 + AegisName: S_Physical_Armor + Name: Physical Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,20; if (.@r >= 9) { bonus2 bAddClass,Class_All,5; } else if (.@r >= 7) { bonus2 bAddClass,Class_All,2; } + - Id: 24396 + AegisName: S_Magical_Shoes + Name: Magical Shadow Shoes + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); if (.@r >= 9) { bonus bVariableCastrate,8; } else if (.@r >= 7) { bonus bVariableCastrate,5; } else { bonus bVariableCastrate,2; } + - Id: 24397 + AegisName: S_Magical_Shield + Name: Magical Shadow Shield + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxSP,100; if (.@r >= 9) { bonus bMaxSPrate,5; } else if (.@r >= 7) { bonus bMaxSPrate,2; } + - Id: 24398 + AegisName: S_Magical_Armor + Name: Magical Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus bMatk,20; if (.@r >= 9) { bonus bMatkRate,5; } else if (.@r >= 7) { bonus bMatkRate,2; } + - Id: 24399 + AegisName: S_Immune_Athena_Shield + Name: Immune Athena Shadow Shield + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bDef,50+20*(getrefine()/2); + - Id: 24400 + AegisName: S_Hard_Champion_Shoes + Name: Hard Champion Shadow Shoes + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@val = getrefine()/2; bonus bMaxHP,200; bonus bMaxSP,100; bonus bMaxHPrate,.@val; bonus bMaxSPrate,.@val; + - Id: 24401 + AegisName: S_Kingbird_Ancient_Armor + Name: Kingbird Ancient Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,15; bonus bLongAtkRate,.@r/2; if (.@r >= 7) { bonus bHit,30; } else { bonus bHit,15; } + - Id: 24402 + AegisName: Rebellion_Shadow_Armor + Name: Rebellion Shadow Armor + Type: Shadowgear + Buy: 10 + Jobs: + Rebellion: true + Locations: + Shadow_Armor: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillCooldown,"RL_HEAT_BARREL",-1000*(1+.@r/2); + - Id: 24403 + AegisName: Kagerou_Shadow_Armor + Name: Kagerou Shadow Armor + Type: Shadowgear + Buy: 10 + Jobs: + KagerouOboro: true + Gender: Male + Locations: + Shadow_Armor: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"KO_HUUMARANKA",20+.@r*5; + - Id: 24404 + AegisName: Oboro_Shadow_Armor + Name: Oboro Shadow Armor + Type: Shadowgear + Buy: 10 + Jobs: + KagerouOboro: true + Gender: Female + Locations: + Shadow_Armor: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"NJ_KOUENKA",20+.@r*5; bonus2 bSkillAtk,"NJ_HYOUSENSOU",20+.@r*5; bonus2 bSkillAtk,"NJ_HUUJIN",20+.@r*5; + - Id: 24405 + AegisName: Rebellion_Shadow_Shoes + Name: Rebellion Shadow Shoes + Type: Shadowgear + Buy: 10 + Jobs: + Rebellion: true + Locations: + Shadow_Shoes: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",20+.@r*5; + - Id: 24406 + AegisName: Kagerou_Shadow_Shoes + Name: Kagerou Shadow Shoes + Type: Shadowgear + Buy: 10 + Jobs: + KagerouOboro: true + Gender: Male + Locations: + Shadow_Shoes: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"KO_HAPPOKUNAI",20+.@r*5; + - Id: 24407 + AegisName: Oboro_Shadow_Shoes + Name: Oboro Shadow Shoes + Type: Shadowgear + Buy: 10 + Jobs: + KagerouOboro: true + Gender: Female + Locations: + Shadow_Shoes: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillCooldown,"KO_ZANZOU",-1000*(1+.@r/2); + - Id: 24408 + AegisName: Doram_Physical_Shadow_Armor + Name: Doram Physical Shadow Armor + Type: Shadowgear + Buy: 10 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Shadow_Armor: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"SU_PICKYPECK",20; bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",.@r*3; + - Id: 24409 + AegisName: Doram_Physical_Shadow_Shoes + Name: Doram Physical Shadow Shoes + Type: Shadowgear + Buy: 10 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Shadow_Shoes: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillCooldown,"SU_HISS",-3000*(1+.@r/2); + - Id: 24410 + AegisName: Doram_Magical_Shadow_Armor + Name: Doram Magical Shadow Armor + Type: Shadowgear + Buy: 10 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Shadow_Armor: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"SU_CN_METEOR",20; bonus2 bSkillAtk,"SU_SV_STEMSPEAR",.@r*3; + - Id: 24411 + AegisName: Doram_Magical_Shadow_Shoes + Name: Doram Magical Shadow Shoes + Type: Shadowgear + Buy: 10 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Shadow_Shoes: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillCooldown,"SU_CHATTERING",-3000*(1+.@r/2); + - Id: 24412 + AegisName: Star_Emperor_Shadow_Armor + Name: Star Emperor Shadow Armor + Type: Shadowgear + Buy: 10 + Jobs: + StarGladiator: true + Locations: + Shadow_Armor: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"SJ_NEWMOONKICK",20; bonus2 bSkillAtk,"SJ_FULLMOONKICK",.@r*3; + - Id: 24413 + AegisName: Star_Emperor_Shadow_Shoes + Name: Star Emperor Shadow Shoes + Type: Shadowgear + Buy: 10 + Jobs: + StarGladiator: true + Locations: + Shadow_Shoes: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillCooldown,"SJ_DOCUMENT",-3000*(1+.@r/2); + - Id: 24414 + AegisName: Soul_Reaper_Shadow_Armor + Name: Soul Reaper Shadow Armor + Type: Shadowgear + Buy: 10 + Jobs: + SoulLinker: true + Locations: + Shadow_Armor: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"SP_SWHOO",20; bonus2 bSkillAtk,"SP_SPA",.@r*3; + - Id: 24415 + AegisName: Soul_Reaper_Shadow_Shoes + Name: Soul Reaper Shadow Shoes + Type: Shadowgear + Buy: 10 + Jobs: + SoulLinker: true + Locations: + Shadow_Shoes: true + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillCooldown,"SP_SOULREAPER",-3000-1000*(.@r/2); + - Id: 24416 + AegisName: S_Temporal_Transcendent_Weapon + Name: Temporal Transcendent Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bCritAtkRate,7; + - Id: 24417 + AegisName: S_Temporal_Transcendent_Armor + Name: Temporal Transcendent Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAspd,1; + - Id: 24418 + AegisName: S_Temporal_Transcendent_Shield + Name: Temporal Transcendent Shadow Shield + Type: Shadowgear + Locations: + Shadow_Shield: true + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bVariableCastrate,-10; + - Id: 24419 + AegisName: S_Temporal_Transcendent_Shoes + Name: Temporal Transcendent Shadow Shoes + Type: Shadowgear + Locations: + Shadow_Shoes: true + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAspdRate,7; + - Id: 24420 + AegisName: S_Temporal_Transcendent_Earring + Name: Temporal Transcendent Shadow Earring + Type: Shadowgear + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMatk,15; + - Id: 24421 + AegisName: S_Temporal_Transcendent_Pendant + Name: Temporal Transcendent Shadow Pendant + Type: Shadowgear + Locations: + Shadow_Left_Accessory: true + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bBaseAtk,15; + - Id: 24423 + AegisName: S_Tempest_Weapon + Name: Tempest Shadow Weapon + Type: Shadowgear + Locations: + Shadow_Weapon: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bIgnoreDefClassRate,Class_Normal,5+(getrefine()/2); + - Id: 24424 + AegisName: S_Tempest_Armor + Name: Tempest Shadow Armor + Type: Shadowgear + Locations: + Shadow_Armor: true + EquipLevelMin: 1 + Refineable: true + Script: | + bonus2 bIgnoreDefClassRate,Class_Normal,5+(getrefine()/2); + - Id: 26007 + AegisName: Illusion_Spectral_Spear + Name: Illusion Spectral Spear + Type: Weapon + SubType: 2hSpear + Buy: 20 + Weight: 2000 + Attack: 240 + Range: 3 + Slots: 1 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 99 + Refineable: true + Script: | + .@r = getrefine(); .@val = 3*(.@r/2); bonus2 bAddEle,Ele_Dark,(20+.@val); bonus2 bAddRace,RC_Demon,(20+.@val); bonus2 bAddRace,RC_Undead,(20+.@val); bonus2 bSubRace,RC_Demon,(10+.@val); bonus2 bSubEle,Ele_Undead,(10+.@val); bonus2 bSubEle,Ele_Dark,(10+.@val); bonus bHPGainValue,50; bonus bSPGainValue,(.@r/2); bonus2 bAddEff2,Eff_Confusion,1000; + - Id: 26016 + AegisName: Royal_Knight's_Lance + Name: Royal Knight's Lance + Type: Weapon + SubType: 2hSpear + Buy: 20 + Weight: 1000 + Attack: 205 + Range: 1 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 175 + Refineable: true + Script: | + .@r = getrefine(); bonus bLongAtkRate,3*(.@r/2); if (.@r>=7) bonus2 bAddClass,Class_All,5; if (.@r>=9) bonus2 bAddRace,RC_All,15; + - Id: 26100 + AegisName: Paradise_Foxtail_Staff_II + Name: Eden Group Foxtail Staff II + Type: Weapon + SubType: Staff + Buy: 20 + Attack: 135 + MagicAttack: 165 + Range: 1 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Right_Hand: true + WeaponLevel: 2 + EquipLevelMin: 40 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,4; bonus bInt,4; bonus bLongAtkRate,6; + - Id: 26101 + AegisName: Paradise_Foxtail_Staff_III + Name: Eden Group Foxtail Staff III + Type: Weapon + SubType: Staff + Buy: 20 + Attack: 150 + MagicAttack: 195 + Range: 1 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 60 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,5; bonus bInt,5; bonus bLongAtkRate,7; + - Id: 26107 + AegisName: Elder_Staff + Name: Elder Staff + Type: Weapon + SubType: Staff + Weight: 500 + Attack: 60 + MagicAttack: 150 + Range: 1 + Slots: 3 + Jobs: + Acolyte: true + Monk: true + Priest: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); .@bonus = 10; if (.@r>=7) { .@bonus += 5; } if (.@r>=9) { .@bonus += 10; } bonus bHealPower,.@bonus; + - Id: 26109 + AegisName: Illusion_Staff_of_Bordeaux + Name: Illusion Staff of Bordeaux + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 500 + Attack: 60 + MagicAttack: 180 + Range: 1 + Slots: 2 + Jobs: + Sage: true + Wizard: true + Classes: + Upper: true + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 99 + Refineable: true + Script: | + bonus bInt,3; bonus bDex,2; if (getskilllv("SA_DRAGONOLOGY") == 5) { .@val = getrefine()/3; bonus bMatkRate,(5+.@val); bonus bUseSPrate,(-15-(5*.@val)); } + - Id: 26110 + AegisName: CandyCaneRod + Name: Candy Cane Rod + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 500 + Attack: 10 + MagicAttack: 140 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Mage: true + Monk: true + Novice: true + Priest: true + Sage: true + SoulLinker: true + SuperNovice: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 99 + Refineable: true + Script: | + bonus bInt,2; bonus bFlee,2*getrefine(); if(getrefine()>= 10) { bonus bFlee2,10; } + - Id: 26138 + AegisName: Hellfire_Staff + Name: Hellfire Staff + Type: Weapon + SubType: 2hStaff + Buy: 20 + Weight: 800 + Attack: 110 + MagicAttack: 180 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 175 + Refineable: true + Script: | + .@r = getrefine; bonus bInt,5; bonus bMatk,15*(.@r/2); bonus bUnbreakableWeapon; if (.@r>=9) .@val = 15; else if (.@r>=7) .@val = 5; bonus2 bMagicAtkEle,Ele_Fire,.@val; bonus2 bMagicAtkEle,Ele_Earth,.@val; + - Id: 26139 + AegisName: Icicle_Staff + Name: Icicle Staff + Type: Weapon + SubType: 2hStaff + Buy: 20 + Weight: 800 + Attack: 110 + MagicAttack: 180 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Mage: true + Monk: true + Priest: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 175 + Refineable: true + Script: | + .@r = getrefine; bonus bInt,5; bonus bMatk,15*(.@r/2); bonus bUnbreakableWeapon; if (.@r>=9) .@val = 15; else if (.@r>=7) .@val = 5; bonus2 bMagicAtkEle,Ele_Water,.@val; bonus2 bMagicAtkEle,Ele_Holy,.@val; + - Id: 26151 + AegisName: Rutilus_Stick-OS + Name: Rutilus Stick-OS + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 900 + Attack: 80 + MagicAttack: 175 + Range: 1 + Slots: 2 + Jobs: + Acolyte: true + Mage: true + Monk: true + Novice: true + Priest: true + Sage: true + SoulLinker: true + SuperNovice: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 130 + Refineable: true + Script: | + .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bMagicAddEle,Ele_Neutral,5; bonus2 bMagicAddEle,Ele_Earth,5; if (.@r >= 7) { bonus bVariableCastrate,-7; if (.@r >= 9) { autobonus "{ bonus2 bMagicAtkEle,Ele_Fire,30; }",5,10000,BF_MAGIC; /* unknown rate */ if (.@r >= 11) { bonus bDelayrate,-10; } } } + - Id: 26155 + AegisName: Meowmeow_Foxtail + Name: Meowmeow Foxtail + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 1100 + Attack: 300 + MagicAttack: 300 + Range: 1 + Slots: 2 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus bBaseAtk,10*(.@r/2); bonus2 bAddClass,Class_All,2*(.@r/3); bonus bMatkRate,2*(.@r/3); if (.@r >= 7) { bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",15; bonus2 bSkillAtk,"SU_SV_STEMSPEAR",15; if (.@r >= 9) { bonus bVariableCastrate,-10; bonus bAspdRate,10; if (.@r >= 11) { bonus2 bSkillAtk,"SU_PICKYPECK",15; bonus2 bSkillAtk,"SU_CN_METEOR",15; } } } + - Id: 26158 + AegisName: Crimson_Rose_Stick + Name: Crimson Rose Stick + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 700 + Attack: 100 + MagicAttack: 180 + Range: 1 + Slots: 2 + Jobs: + Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Fire,5; bonus2 bMagicAtkEle,Ele_Dark,5; if (.@r >= 9) { bonus2 bSkillAtk,"WL_HELLINFERNO",30; } if (.@r >= 11) { bonus2 bSkillCooldown,"WL_CRIMSONROCK",-1000; } + - Id: 26159 + AegisName: Psychic_Spear_Rod + Name: Psychic Spear Rod + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 800 + Attack: 120 + MagicAttack: 180 + Range: 1 + Slots: 2 + Jobs: + Sage: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Wind,5; bonus2 bMagicAtkEle,Ele_Neutral,5; if (.@r >= 9) { bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",30; } if (.@r >= 11) { bonus2 bSkillCooldown,"SO_VARETYR_SPEAR",-2000; } + - Id: 26160 + AegisName: Dust_Grave + Name: Dust Grave + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 800 + Attack: 120 + MagicAttack: 180 + Range: 1 + Slots: 2 + Jobs: + Sage: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); if (.@r >= 11) .@val = 50; else if (.@r >= 9) .@val = 30; bonus2 bSkillAtk,"SO_DIAMONDDUST",.@val; bonus2 bSkillAtk,"SO_EARTHGRAVE",.@val; bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Water,5; bonus2 bMagicAtkEle,Ele_Earth,5; + - Id: 26161 + AegisName: Penitentia + Name: Penitentia + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 700 + Attack: 100 + MagicAttack: 175 + Range: 1 + Slots: 2 + Jobs: + Priest: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Holy,5; if (.@r >= 9) { bonus2 bSkillAtk,"PR_MAGNUS",(.@r>=11) ? 50 : 30; bonus2 bSkillAtk,"AB_JUDEX",30; } + - Id: 26200 + AegisName: Hippie_Rope + Name: Hippie Rope + Type: Weapon + SubType: Whip + Weight: 1000 + Attack: 140 + Range: 2 + Slots: 2 + Jobs: + BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); .@lvl = getskilllv("DC_DANCINGLESSON"); bonus bAspdRate,.@lvl; if (.@r>=7) bonus bBaseAtk,(5*.@lvl); if (.@r>=9) bonus bAspd,1; + - Id: 26212 + AegisName: Heart_Whip + Name: Heart Whip + Type: Weapon + SubType: Whip + Weight: 1200 + Attack: 100 + MagicAttack: 190 + Range: 2 + Slots: 2 + Jobs: + BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); bonus bMatk,4*.@r; bonus2 bMagicAtkEle,Ele_Neutral,10; if (.@r>=9) bonus2 bSkillAtk,"WM_METALICSOUND",30; if (.@r>=11) bonus2 bSkillCooldown,"WM_METALICSOUND",-2000; + - Id: 26213 + AegisName: Scarlet_Ribbon + Name: Scarlet Ribbon + Type: Weapon + SubType: Whip + Weight: 1200 + Attack: 180 + Range: 2 + Slots: 2 + Jobs: + BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); bonus bVariableCastrate,-10; bonus bLongAtkRate,.@r; if (.@r>=9) bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-1000; if (.@r>=11) bonus2 bSkillUseSPrate,"WM_SEVERE_RAINSTORM",20; + - Id: 28000 + AegisName: Thanos_Katar + Name: Thanos Katar + Type: Weapon + SubType: Katar + Buy: 10 + Weight: 1800 + Attack: 220 + MagicAttack: 80 + Range: 1 + Slots: 1 + Jobs: + Assassin: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 120 + Refineable: true + Script: | + bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000; + UnEquipScript: | + heal -1000,0; + - Id: 28001 + AegisName: Katar_Of_Evil_Slayer + Name: Evil Slayer Ripper Katar + Type: Weapon + SubType: Katar + Weight: 1200 + Attack: 120 + Range: 1 + Slots: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 100 + Refineable: true + Script: | + bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; .@r = getrefine(); if(.@r>=9) { .@dmg = 5; if(.@r>=12) { .@dmg += 7; } bonus2 bAddClass,Class_All,.@dmg; } + - Id: 28002 + AegisName: Half_BF_Katar2 + Name: Half BF Katar2 + Type: Weapon + SubType: Katar + Buy: 20 + Attack: 130 + Range: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Script: | + bonus bStr,1; bonus bDex,1; bonus bLuk,1; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus bCritAtkRate,10; bonus bAspdRate,3; bonus bUnbreakableWeapon; + - Id: 28005 + AegisName: Ru_Blue_Katar + Name: Blue Katar + Type: Weapon + SubType: Katar + Buy: 10 + Weight: 1200 + Attack: 190 + Range: 1 + Slots: 1 + Jobs: + Assassin: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bAgi,5; bonus bStr,5; + - Id: 28006 + AegisName: Ru_Gold_Katar + Name: Ru Gold Katar + Type: Weapon + SubType: Katar + Weight: 1200 + Attack: 190 + Range: 1 + Slots: 2 + Jobs: + Assassin: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 120 + Refineable: true + Script: | + bonus bAgi,8; bonus bStr,8; + - Id: 28007 + AegisName: Crimson_Katar + Name: Crimson Katar + Type: Weapon + SubType: Katar + Buy: 20 + Weight: 1300 + Attack: 130 + Range: 1 + Slots: 2 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); + - Id: 28008 + AegisName: Katar_of_Vicious_Mind + Name: Katar of Vicious Mind + Type: Weapon + SubType: Katar + Buy: 20 + Weight: 1800 + Attack: 180 + Range: 1 + Slots: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 160 + Refineable: true + Script: | + bonus bAtk,pow(min(getrefine(),15),2); + - Id: 28010 + AegisName: Juliette_D._Rachel + Name: Juliette D. Rachel + Type: Weapon + SubType: Katar + Buy: 20 + Weight: 2500 + Attack: 300 + Range: 1 + Slots: 2 + Jobs: + Assassin: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bAddClass,Class_All,(.@r/2); bonus bAspdRate,.@r; bonus bUnbreakableWeapon; + - Id: 28011 + AegisName: Unity_Katar + Name: Unity Katar + Type: Weapon + SubType: Katar + Buy: 20 + Weight: 650 + Attack: 123 + Range: 1 + Slots: 1 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bBaseAtk,pow(getrefine(),2)*125/100; + - Id: 28022 + AegisName: Illusion_Infiltrator + Name: Illusion Infiltrator + Type: Weapon + SubType: Katar + Weight: 1500 + Attack: 200 + Range: 1 + Slots: 2 + Jobs: + Assassin: true + Classes: + Upper: true + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Script: | + bonus2 bAddRace,RC_DemiHuman,60; bonus2 bAddRace,RC_Player_Human,60; bonus bDef,3; .@flee = 5; .@flee2 = 2; if (getrefine() >= 9) { .@flee += 5; .@flee2 += 2; bonus2 bAddClass,Class_All,5; } bonus bFlee,.@flee; bonus bFlee2,.@flee2; + - Id: 28023 + AegisName: Illusion_Sharpened_Legbone_of_Ghoul + Name: Illusion Sharpened Legbone of Ghoul + Type: Weapon + SubType: Katar + Weight: 1700 + Attack: 220 + Range: 1 + Slots: 2 + Jobs: + Assassin: true + Classes: + Upper: true + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 100 + Refineable: true + Script: | + autobonus "{ bonus bDefEle,Ele_Undead; sc_start SC_ENDURE,6000,1; }",40,6000,BF_WEAPON|BF_SHORT,"{ active_transform 1036,6000; }"; + - Id: 28038 + AegisName: Meuchler-OS + Name: Meuchler-OS + Type: Weapon + SubType: Katar + Buy: 20 + Weight: 1300 + Attack: 190 + Range: 1 + Slots: 2 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 130 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bAddClass,Class_All,3; if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",15; if (.@r >= 11) { bonus2 bAddSize,Size_Small,20; bonus2 bAddSize,Size_Medium,20; } } } + - Id: 28042 + AegisName: Ripper_Cross + Name: Ripper Cross + Type: Weapon + SubType: Katar + Buy: 20 + Weight: 1500 + Attack: 250 + Range: 1 + Slots: 2 + Jobs: + Assassin: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bAddClass,Class_All,5; bonus bLongAtkRate,.@r; if (.@r>=9) bonus2 bSkillAtk,"GC_ROLLINGCUTTER",30; if (.@r>=11) bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",20; + - Id: 28044 + AegisName: Agudo_Filo + Name: Agudo Filo + Type: Weapon + SubType: Katar + Buy: 20 + Weight: 2000 + Attack: 270 + Range: 1 + Slots: 2 + Jobs: + Assassin: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); bonus bCritAtkRate,5; bonus bBaseAtk,4*.@r; if (.@r>=9) bonus2 bAddSize,Size_All,15; if (.@r>=11) { bonus bUnbreakableWeapon; bonus2 bAddClass,Class_All,7; } + - Id: 28100 + AegisName: Thanos_Axe + Name: Thanos Axe + Type: Weapon + SubType: 2hAxe + Buy: 10 + Weight: 4000 + Attack: 300 + MagicAttack: 80 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 120 + Refineable: true + Script: | + bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000; + UnEquipScript: | + heal -1000,0; + - Id: 28101 + AegisName: Tornado_Axe + Name: Tornado Axe + Type: Weapon + SubType: 2hAxe + Buy: 30000 + Weight: 4000 + Attack: 320 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bAtkEle,Ele_Wind; bonus2 bSkillCooldown,"NC_AXETORNADO",-1000; + - Id: 28102 + AegisName: Half_BF_Two_Handed_Axe1 + Name: Half BF Two Handed Axe1 + Type: Weapon + SubType: 2hAxe + Buy: 20 + Attack: 200 + Range: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Script: | + bonus bStr,3; bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player_Human,30; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon; + - Id: 28103 + AegisName: Ru_Blue_Axe_M + Name: Blue Twohand Axe + Type: Weapon + SubType: 2hAxe + Buy: 10 + Weight: 3000 + Attack: 330 + Range: 1 + Slots: 1 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Refineable: true + Script: | + bonus bStr,5; bonus bVit,5; + - Id: 28104 + AegisName: Ru_Gold_Axe_M + Name: Ru Gold Axe M + Type: Weapon + SubType: 2hAxe + Weight: 3000 + Attack: 330 + Range: 1 + Slots: 2 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 120 + Refineable: true + Script: | + bonus bStr,8; bonus bVit,8; + - Id: 28105 + AegisName: Infinity_Axe + Name: Infinity Axe + Type: Weapon + SubType: 2hAxe + Buy: 10 + Weight: 500 + Attack: 265 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 28106 + AegisName: Crimson_Two-Handed_Axe + Name: Crimson Two-Handed Axe + Type: Weapon + SubType: 2hAxe + Buy: 20 + Weight: 2000 + Attack: 200 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bUnbreakableWeapon; + - Id: 28107 + AegisName: Two_Handed_Axe_of_Vicious_Mind + Name: Two Handed Axe of Vicious Mind + Type: Weapon + SubType: 2hAxe + Buy: 20 + Weight: 2500 + Attack: 250 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 160 + Refineable: true + Script: | + bonus bAtk,pow(min(getrefine(),15),2); bonus bUnbreakableWeapon; + - Id: 28110 + AegisName: Unity_Two-Handed_Axe + Name: Unity Two-Handed Axe + Type: Weapon + SubType: 2hAxe + Buy: 20 + Weight: 1000 + Attack: 190 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bBaseAtk,pow(getrefine(),2)*125/100; + - Id: 28116 + AegisName: Mine_Worker's_Pickaxe + Name: Mine Worker's Pickaxe + Type: Weapon + SubType: 2hAxe + Buy: 10 + Weight: 4000 + Attack: 300 + Range: 1 + Slots: 2 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bUnbreakableWeapon; autobonus "{ bonus bCritical,20; }",5,7000,BF_SHORT,"{ specialeffect2 EF_ENCHANCE; }"; .@r = getrefine(); if (.@r>=9) { bonus bCritAtkRate,15; } else if (.@r>=7) { bonus bCritAtkRate,5; } + - Id: 28136 + AegisName: Blasti-OS + Name: Blasti-OS + Type: Weapon + SubType: 2hAxe + Buy: 20 + Weight: 4500 + Attack: 400 + Range: 1 + Slots: 2 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 130 + Refineable: true + Script: | + .@r = getrefine(); .@red = 10; bonus bUnbreakableWeapon; if (.@r >= 7) { .@red += 15; if (.@r >= 9) { bonus bLongAtkRate,15; if (.@r >= 11) { bonus bDelayrate,-10; } } } bonus2 bSubSize,Size_Medium,.@red; bonus2 bSubSize,Size_Large,.@red; + - Id: 28138 + AegisName: Maxi_Spanner + Name: Maxi Spanner + Type: Weapon + SubType: 2hAxe + Weight: 4500 + Attack: 340 + Range: 1 + Slots: 2 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,4*.@r; bonus bUnbreakableWeapon; bonus2 bSubSize,Size_Small,10; bonus2 bSubSize,Size_Medium,10; if (.@r>=9) { bonus2 bSkillCooldown,"NC_AXETORNADO",-1000; bonus2 bSkillCooldown,"NC_MAGMA_ERUPTION",-1000; } if (.@r>=11) bonus2 bSkillAtk,"NC_AXETORNADO",15; + - Id: 28200 + AegisName: END_OF_HORIZO + Name: End Of The Horizon + Type: Weapon + SubType: Grenade + Buy: 2700000 + Weight: 2400 + Attack: 410 + Range: 9 + Slots: 1 + Jobs: + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 110 + Refineable: true + - Id: 28201 + AegisName: Southern_Cross_R + Name: Southern Cross + Type: Weapon + SubType: Grenade + Buy: 2800000 + Weight: 2000 + Attack: 480 + Range: 9 + Jobs: + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 141 + Refineable: true + Script: | + bonus3 bAutoSpell,"GC_CROSSIMPACT",1,50; + - Id: 28202 + AegisName: Southern_Cross_R_ + Name: Southern Cross + Type: Weapon + SubType: Grenade + Buy: 2800000 + Weight: 2000 + Attack: 480 + Range: 9 + Slots: 1 + Jobs: + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 141 + Refineable: true + Script: | + bonus3 bAutoSpell,"GC_CROSSIMPACT",1,50; + - Id: 28203 + AegisName: Half_BF_Rifle1 + Name: Half BF Rifle1 + Type: Weapon + SubType: Rifle + Attack: 50 + Range: 9 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Script: | + bonus bDex,2; bonus bHit,8; bonus bCritical,8; bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player_Human,30; bonus2 bVariableCastrate,"GS_TRACKING",-20; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon; + - Id: 28204 + AegisName: Half_BF_Shotgun1 + Name: Half BF Shotgun1 + Type: Weapon + SubType: Shotgun + Attack: 100 + Range: 9 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 80 + Refineable: true + Script: | + bonus bDex,2; bonus bSplashRange,1; bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player_Human,30; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; autobonus "{ bonus bBaseAtk,80; bonus2 bHPLossRate,100,1000; }",30,6000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; bonus bUnbreakableWeapon; + - Id: 28223 + AegisName: Just_Finish + Name: Finisher + Type: Weapon + SubType: Rifle + Buy: 20 + Weight: 2000 + Attack: 200 + Range: 9 + Slots: 2 + Jobs: + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 120 + Refineable: true + Script: | + .@r = getrefine(); bonus bLongAtkRate,15; if (.@r >= 7) { bonus2 bSkillAtk,"RL_AM_BLAST",30; bonus2 bSkillAtk,"RL_MASS_SPIRAL",30; if (.@r >= 9) { bonus2 bSkillCooldown,"RL_AM_BLAST",-1000; } } + - Id: 28224 + AegisName: Dust_Fire + Name: Dustfire + Type: Weapon + SubType: Shotgun + Buy: 20 + Weight: 1300 + Attack: 300 + Range: 9 + Slots: 2 + Jobs: + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 120 + Refineable: true + Script: | + .@r = getrefine(); bonus bSplashRange,1; bonus2 bAddEff,Eff_Blind,50; if (.@r >= 7) { bonus2 bSkillAtk,"RL_S_STORM",15; if (.@r >= 9) { bonus2 bSkillAtk,"RL_BANISHING_BUSTER",15; } } + - Id: 28225 + AegisName: Burning_Rose + Name: Burning Rose + Type: Weapon + SubType: Gatling + Buy: 20 + Weight: 2500 + Attack: 200 + Range: 9 + Slots: 2 + Jobs: + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 120 + Refineable: true + Script: | + bonus bLongAtkRate,15; if (.@r >= 7) { bonus2 bSkillAtk,"RL_FIRE_RAIN",30; if (.@r >= 9) { bonus2 bSkillCooldown,"RL_FIRE_RAIN",-1000; } } + - Id: 28226 + AegisName: Revenger + Name: Avenger + Type: Weapon + SubType: Grenade + Buy: 20 + Weight: 1800 + Attack: 350 + Range: 9 + Slots: 2 + Jobs: + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 3 + EquipLevelMin: 120 + Refineable: true + Script: | + bonus bLongAtkRate,20; if (.@r >= 7) { bonus2 bSkillAtk,"RL_D_TAIL",15; if (.@r >= 9) { bonus2 bSkillCooldown,"RL_H_MINE",-1000; } } + - Id: 28240 + AegisName: Calf_Kingcobra + Name: Calf Kingcobra + Type: Weapon + SubType: Rifle + Weight: 900 + Attack: 230 + Range: 9 + Slots: 2 + Jobs: + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 150 + Refineable: true + Script: | + .@r = getrefine(); bonus bAspdRate,10 + (.@r > 6 ? 5 : 0); bonus bLongAtkRate,(.@r/2)*5 + (.@r > 11 ? 5 : 0); if(.@r > 8){ bonus bCritAtkRate,15; } + - Id: 28241 + AegisName: Calf_Diamondback + Name: Calf Diamondback + Type: Weapon + SubType: Gatling + Weight: 3000 + Attack: 220 + Range: 9 + Slots: 2 + Jobs: + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 150 + Refineable: true + Script: | + .@r = getrefine(); bonus bDex,2; bonus2 bAddClass,Class_All,2; bonus bLongAtkRate,(.@r/2)*5 + (.@r > 11 ? 5 : 0); if(.@r > 6){ bonus2 bSkillAtk,"RL_R_TRIP",20; } if(.@r > 8){ bonus2 bSkillUseSPrate,"RL_R_TRIP",5; } + - Id: 28242 + AegisName: Calf_Anaconda + Name: Calf Anaconda + Type: Weapon + SubType: Shotgun + Buy: 10 + Weight: 1400 + Attack: 305 + Range: 9 + Slots: 2 + Jobs: + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 150 + Refineable: true + Script: | + .@r = getrefine(); bonus bSplashRange,1; bonus bMaxSPrate,2; bonus bLongAtkRate,(.@r/2)*5 + (.@r > 8 ? 5 : 0); if(.@r > 6){ bonus2 bSkillAtk,"RL_BANISHING_BUSTER",20; } if(.@r > 11){ bonus2 bSkillUseSPrate,"RL_BANISHING_BUSTER",15; } + - Id: 28243 + AegisName: Calf_Python + Name: Calf Python + Type: Weapon + SubType: Grenade + Buy: 10 + Weight: 2000 + Attack: 360 + Range: 9 + Slots: 2 + Jobs: + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 150 + Refineable: true + Script: | + .@r = getrefine(); bonus bDex,2; bonus2 bAddClass,Class_All,2; bonus bLongAtkRate,(.@r/2)*5; if(.@r > 6){ bonus bAspdRate,5; } if(.@r > 8){ bonus2 bSkillAtk,"RL_D_TAIL",15 + (.@r > 11 ? 15 : 0); } + - Id: 28244 + AegisName: Illusion_Gate_Keeper_DD + Name: Illusion Gate Keeper DD + Type: Weapon + SubType: Shotgun + Weight: 1300 + Attack: 240 + Range: 9 + Slots: 2 + Jobs: + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 120 + Refineable: true + Script: | + .@r = getrefine(); bonus bDex,1; bonus bSplashRange,1; .@val = 5*(.@r/2); if (.@r >= 7) { bonus bAspdRate,15; if (.@r >= 9) { .@val += 5; if (.@r >= 11) { bonus5 bAutoSpell,"GS_SPREADATTACK",max(6,getskilllv("GS_SPREADATTACK")),50,BF_LONG|BF_WEAPON,1; } } } bonus bLongAtkRate,.@val; + - Id: 28253 + AegisName: HR-S55-OS + Name: HR-S55-OS + Type: Weapon + SubType: Rifle + Buy: 20 + Weight: 1000 + Attack: 250 + Range: 9 + Slots: 2 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 130 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bAddClass,Class_All,3; if (.@r >= 7) { bonus bLongAtkRate,7; if (.@r >= 9) { bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",20; if (.@r >= 11) { bonus2 bSkillCooldown,"RL_HAMMER_OF_GOD",-5000; } } } + - Id: 28254 + AegisName: Illusion_Butcher + Name: Illusion Butcher + Type: Weapon + SubType: Gatling + Buy: 20 + Weight: 2500 + Attack: 210 + Range: 9 + Slots: 2 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 120 + Refineable: true + Script: | + .@r = getrefine(); bonus bLongAtkRate,2*(readparam(bStr)/15); bonus bBaseAtk,10*.@r; if (.@r >= 7) { bonus2 bSkillAtk,"RL_FIRE_RAIN",20; if (.@r >= 9) { bonus2 bSkillAtk,"RL_R_TRIP",15; if (.@r >= 11) { bonus2 bAddRace,RC_Brute,30; bonus2 bAddRace,RC_Player_Doram,30; bonus2 bAddRace,RC_Demon,30; } } } + - Id: 28255 + AegisName: Master_Soul_Rifle + Name: Master Soul Rifle + Type: Weapon + SubType: Rifle + Buy: 20 + Weight: 1000 + Attack: 150 + MagicAttack: 210 + Range: 9 + Slots: 2 + Jobs: + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bMatk,10*(.@r/3); bonus bAspdRate,3*(.@r/3); if (.@r >= 7) { bonus bAspd,1; bonus bMatkRate,5; if (.@r >= 9) { .@chance = 1; /* unknown rate*/ if (.@r >= 11) { .@chance += 1; bonus5 bAutoSpell,"WL_SOULEXPANSION",3,1,BF_LONG,1; } bonus5 bAutoSpell,"MG_SOULSTRIKE",10,.@chance,BF_LONG,1; } } + - Id: 28256 + AegisName: Demon_Slayer_Shot + Name: Demon Slayer Shot + Type: Weapon + SubType: Shotgun + Buy: 20 + Weight: 1400 + Attack: 275 + Range: 9 + Slots: 2 + Jobs: + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bSplashRange,1; bonus bLongAtkRate,3*(.@r/2); bonus bMaxSPrate,2*(.@r/3); if (.@r >= 7) { bonus2 bAddClass,Class_Boss,10; if (.@r >= 9) { autobonus3 "{ bonus bBaseAtk,50; bonus bLongAtkRate,10; }",1000,90000,"RL_P_ALTER"; if (.@r >= 11) { bonus2 bAddRace,RC_Undead,15; bonus2 bAddRace,RC_Demon,15; } } } + - Id: 28257 + AegisName: Golden_Lord_Launcher + Name: Golden Lord Launcher + Type: Weapon + SubType: Grenade + Buy: 20 + Weight: 2100 + Attack: 320 + Range: 9 + Slots: 2 + Jobs: + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bLongAtkRate,3*(.@r/2); bonus bBaseAtk,15*(.@r/3); if (.@r >= 7) { .@val = 15; if (.@r >= 9) { bonus2 bSkillCooldown,"RL_D_TAIL",-1000; if (.@r >= 11) { .@val += 15; } } bonus2 bSkillAtk,"RL_D_TAIL",.@val; } + - Id: 28258 + AegisName: The_Black + Name: The Black + Type: Weapon + SubType: Gatling + Buy: 20 + Weight: 2700 + Attack: 205 + Range: 9 + Slots: 2 + Jobs: + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bLongAtkRate,2*(.@r/3); bonus bBaseAtk,10*(.@r/2); if (.@r >= 7) { .@val = 15; bonus2 bSkillUseSPrate,"RL_R_TRIP",-10; if (.@r >= 9) { autobonus3 "{ bonus bBaseAtk,50; bonus bLongAtkRate,10; }",1000,90000,"RL_P_ALTER"; if (.@r >= 11) { .@val += 15; } } bonus2 bSkillAtk,"RL_R_TRIP",.@val; } + - Id: 28302 + AegisName: Vesper_Core01_ + Name: Vesper Core 01 + Type: Armor + Buy: 20 + Weight: 500 + Defense: 1 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bMdef,3; bonus bInt,2; bonus bMaxSPrate,5; + - Id: 28303 + AegisName: Vesper_Core02_ + Name: Vesper Core 02 + Type: Armor + Buy: 20 + Weight: 500 + Defense: 1 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bMdef,3; bonus bStr,3; bonus bBaseAtk,10; + - Id: 28304 + AegisName: Vesper_Core03_ + Name: Vesper Core 03 + Type: Armor + Buy: 20 + Weight: 500 + Defense: 1 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bMdef,3; bonus bAgi,3; bonus bFlee,5; + - Id: 28305 + AegisName: Vesper_Core04_ + Name: Vesper Core 04 + Type: Armor + Buy: 20 + Weight: 500 + Defense: 1 + Slots: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Wizard: true + Classes: + Upper: true + Third_Upper: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bMdef,3; bonus bDex,3; bonus bHit,10; + - Id: 28306 + AegisName: Bless_Of_Moon + Name: Luna's Blessing + Type: Armor + Buy: 20 + Weight: 100 + Defense: 5 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus bAllStats,1; bonus bMdef,2; bonus3 bAutoSpell,"CG_TAROTCARD",5,100; + - Id: 28315 + AegisName: RCC2013_ARMLET + Name: RCC2013_ARMLET + Type: Armor + Buy: 200 + Weight: 200 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus2 bAddClass,Class_All,1; + - Id: 28316 + AegisName: RCC2013_ARMLET_ + Name: RCC2013_ARMLET_ + Type: Armor + Buy: 200 + Weight: 200 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus2 bAddClass,Class_All,1; + - Id: 28317 + AegisName: RCC2013_RING + Name: RCC2013_RING + Type: Armor + Buy: 200 + Weight: 200 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus2 bAddClass,Class_All,1; + - Id: 28318 + AegisName: RCC2013_RING_ + Name: RCC2013_RING_ + Type: Armor + Buy: 200 + Weight: 200 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus2 bAddClass,Class_All,1; + - Id: 28310 + AegisName: Earring_Of_Sarah_L + Name: Sarah's Left Earring + Type: Armor + Buy: 10 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 145 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + skill "AL_HEAL",1; + - Id: 28311 + AegisName: Earring_Of_Sarah_R + Name: Sarah's Right Earring + Type: Armor + Buy: 10 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 145 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + skill "AL_TELEPORT",1; + - Id: 28320 + AegisName: Assassin's_Despair + Name: Assassin's Despair + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 50 + Script: | + bonus bAspd,1; + - Id: 28321 + AegisName: Falconer_Claw + Name: Falconer Claw + Type: Armor + Weight: 100 + Defense: 5 + Slots: 1 + Jobs: + Hunter: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 80 + Script: | + bonus bDex,1; bonus2 bSkillAtk,"HT_BLITZBEAT",getskilllv("HT_STEELCROW")*10; + - Id: 28322 + AegisName: Falconer_Glove + Name: Falconer Glove + Type: Armor + Weight: 100 + Defense: 5 + Slots: 1 + Jobs: + Hunter: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 80 + Script: | + bonus bDex,1; bonus bUseSPrate,-5; + - Id: 28326 + AegisName: Broken_Chip_1 + Name: Broken Chips 01 + Type: Armor + Buy: 10 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bStr,4; + - Id: 28327 + AegisName: Broken_Chip_2 + Name: Broken Chips 02 + Type: Armor + Buy: 10 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bInt,4; + - Id: 28332 + AegisName: Jewel_Ring + Name: Jewerly Ring + Type: Armor + Buy: 10 + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + /* bonus bLuk,20; Event bonus */ autobonus "{ bonus bAspd,2; bonus bVariableCastrate,-30; }",50,5000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_ENCHANCE; }"; + - Id: 28333 + AegisName: Gold_PC_Room_Ring + Name: Gold PC Room Ring + Type: Armor + Buy: 10 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMaxHPrate,3; bonus bMaxSPrate,3; + - Id: 28342 + AegisName: Critical_Anklet + Name: Critical Anklet + Type: Armor + Weight: 200 + Defense: 3 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 50 + Script: | + bonus bCritical,5; bonus bMdef,3; + - Id: 28352 + AegisName: Vesper_Gear_01 + Name: Vesper Gear 01 + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 90 + Script: | + bonus bMdef,3; bonus bMatkRate,5; + - Id: 28353 + AegisName: Vesper_Gear_02 + Name: Vesper Gear 02 + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 90 + Script: | + bonus bMdef,3; bonus2 bAddClass,Class_All,5; + - Id: 28354 + AegisName: City_Map + Name: City Map + Type: Armor + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + /* todo */ + - Id: 28355 + AegisName: Shining_Holy_Water_ + Name: Shining Holy Water + Type: Armor + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + /* todo */ + - Id: 28356 + AegisName: Prontera_Badge + Name: Prontera Badge + Type: Armor + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + /*warp "prontera",159,192; 15 mins cooldown */ + - Id: 28357 + AegisName: Vesper_Gear_03 + Name: Vesper Gear 03 + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 90 + Script: | + bonus bMdef,3; bonus bFlee,10; + - Id: 28358 + AegisName: Cursed_Lucky_Clover + Name: Cursed Lucky Clover + Type: Armor + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bLuk,2; bonus bFlee,3; bonus2 bAddEff2,Eff_Curse,5; + UnEquipScript: | + sc_end SC_CLOAKING; /*FIXME: Because the combo has Cloaking skill*/ + - Id: 28359 + AegisName: Vesper_Gear_04 + Name: Vesper Gear 04 + Type: Armor + Buy: 20 + Weight: 100 + Defense: 1 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 90 + Script: | + bonus bMdef,3; bonus bHit,10; + - Id: 28370 + AegisName: Broken_Chip_Green + Name: Broken Chip (Green) + Type: Armor + Weight: 100 + Defense: 1 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus2 bAddClass,Class_All,5; bonus bDelayrate,-5; + - Id: 28371 + AegisName: Broken_Chip_Red + Name: Broken Chip (Red) + Type: Armor + Weight: 100 + Defense: 1 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus2 bMagicAddClass,Class_All,5; bonus bVariableCastrate,-10; + - Id: 28372 + AegisName: Imperial_Ring + Name: Imperial Ring + Type: Armor + Weight: 500 + Defense: 3 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 50 + Script: | + bonus bStr,1; bonus bInt,1; bonus bMaxHPRate,3; bonus bMaxSPRate,3; + - Id: 28374 + AegisName: Foxtail_Ring + Name: Foxtail Ring + Type: Armor + Buy: 20 + Weight: 100 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bExpAddRace,RC_All,5; .@lvl = min(BaseLevel/5,10); bonus bAtk,2*.@lvl; bonus bMatk,2*.@lvl; bonus bMaxHP,10*.@lvl; bonus bMaxSP,5*.@lvl; + - Id: 28377 + AegisName: Magical_Ring + Name: Magical Ring + Type: Armor + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 20 + Script: | + bonus2 bMagicAtkEle,Ele_Fire,5; bonus2 bMagicAtkEle,Ele_Water,5; bonus2 bMagicAtkEle,Ele_Earth,5; bonus2 bMagicAtkEle,Ele_Wind,5; if (BaseLevel > 4) { bonus2 bSkillAtk,"MG_FIREBOLT",BaseLevel/5; bonus2 bSkillAtk,"MG_COLDBOLT",BaseLevel/5; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",BaseLevel/5; bonus2 bSkillAtk,"WZ_EARTHSPIKE",BaseLevel/5; } + - Id: 28379 + AegisName: Shadow_Ring + Name: Shadow Ring + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 20 + Script: | + .@s = getskilllv("RG_STEALCOIN"); .@r = getskilllv("RG_RAID"); if (.@s>=1) .@a = .@s; else .@a = 1; bonus3 bAutoSpell,"RG_STEALCOIN",.@a,50; bonus2 bSkillAtk,"RG_BACKSTAP",2*BaseLevel; bonus3 bAddEff,Eff_Stun,.@r*100,ATF_SHORT; autobonus3 "{ bonus2 bSkillAtk,\"SC_TRIANGLESHOT\",BaseLevel/3; }",1000,20000,5010,"{ specialeffect2 153; }"; /* Placeholder specialeffect */ + - Id: 28380 + AegisName: Fresh_Grass_Necklace + Name: Fresh Grass Necklace + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bFlee2,5; bonus2 bSkillCooldown,"SU_SCAROFTAROU",-5000; + - Id: 28381 + AegisName: Cute_Grass_Necklace + Name: Cute Grass Necklace + Type: Armor + Buy: 20 + Weight: 10 + Slots: 1 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bHealPower,5; bonus2 bSkillCooldown,"SU_TUNAPARTY",-7000; + - Id: 28382 + AegisName: Charm_Grass_Necklace + Name: Charm Grass Necklace + Type: Armor + Buy: 20 + Weight: 10 + Slots: 1 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bMdef,5; bonus2 bVariableCastrate,"SU_CN_METEOR",-1000; + - Id: 28386 + AegisName: Fallen_Monk_Rosary + Name: Fallen Monk Rosary + Type: Armor + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 20 + Script: | + bonus bAspdRate,5; bonus bCritical,5; bonus2 bSkillUseSP,"CH_SOULCOLLECT",-5; if (BaseLevel > 14) bonus2 bSkillAtk,"SR_DRAGONCOMBO",BaseLevel/15; if (BaseLevel > 19) bonus2 bSkillAtk,"SR_KNUCKLEARROW",BaseLevel/20; if (BaseLevel > 29) bonus2 bSkillAtk,"SR_SKYNETBLOW",BaseLevel/30; + - Id: 28391 + AegisName: S_Thief_Earring + Name: Thief Shadow Earring + Type: Shadowgear + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + autobonus3 "{ .@val = 30+(getrefine()*10); bonus bBaseAtk,.@val; bonus bFlee,.@val; }",200,5000,"TF_THROWSTONE","{ specialeffect2 EF_ENHANCE; }"; + - Id: 28392 + AegisName: S_Archer_Earring + Name: Archer Shadow Earring + Type: Shadowgear + Locations: + Shadow_Right_Accessory: true + EquipLevelMin: 1 + Refineable: true + Script: | + autobonus3 "{ .@val = 30+(getrefine()*10); bonus bBaseAtk,.@val; bonus bHit,.@val; }",200,5000,"AC_DOUBLE","{ specialeffect2 EF_ENHANCE; }"; + - Id: 28410 + AegisName: Sapphire_Wrist + Name: Sapphire Wrist + Type: Armor + Weight: 500 + Defense: 3 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 50 + Script: | + bonus bDex,5; bonus bLuk,5; bonus bInt,5; bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",BaseLevel/5; bonus2 bVariableCastrate,"CR_ACIDDEMONSTRATION",-(BaseLevel/4); .@n = getskilllv("CR_SLIMPITCHER"); bonus bDex,.@n/2; bonus bLuk,.@n/2; bonus bInt,.@n/2; bonus bMatk,(.@n/2)*20; + - Id: 28411 + AegisName: Emerald_Earring + Name: Emerald Earring + Type: Armor + Weight: 500 + Defense: 3 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 50 + Script: | + bonus bDex,5; bonus bAgi,5; bonus bInt,5; bonus2 bSkillAtk,"CG_ARROWVULCAN",BaseLevel; bonus2 bSkillAtk,"BA_MUSICALSTRIKE",BaseLevel; bonus2 bSkillAtk,"DC_THROWARROW",BaseLevel; bonus2 bSkillAtk,"WM_METALICSOUND",2*(BaseLevel/5); .@n = getskilllv("WM_METALICSOUND"); bonus2 bVariableCastrate,"WM_METALICSOUND",.@n/2; bonus bDex,.@n/2; bonus bAgi,.@n/2; bonus bInt,.@n/2; bonus bMatk,(.@n/2)*20; + - Id: 28413 + AegisName: Lesser_Mackerel_Talisman + Name: Lesser Mackerel Talisman + Type: Armor + Weight: 100 + Defense: 1 + Slots: 1 + Jobs: + Summoner: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bVit,1; + - Id: 28414 + AegisName: Intermediate_Mackerel_Talisman + Name: Intermediate Mackerel Talisman + Type: Armor + Weight: 100 + Defense: 1 + Slots: 1 + Jobs: + Summoner: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 140 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bVit,2; + - Id: 28415 + AegisName: Greater_Mackerel_Talisman + Name: Greater Mackerel Talisman + Type: Armor + Weight: 100 + Defense: 1 + Slots: 1 + Jobs: + Summoner: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 175 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bVit,3; + - Id: 28416 + AegisName: Lesser_Leaf_Talisman + Name: Lesser Leaf Talisman + Type: Armor + Weight: 100 + Defense: 1 + Slots: 1 + Jobs: + Summoner: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,1; + - Id: 28417 + AegisName: Intermediate_Leaf_Talisman + Name: Intermediate Leaf Talisman + Type: Armor + Weight: 100 + Defense: 1 + Slots: 1 + Jobs: + Summoner: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 140 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,2; + - Id: 28418 + AegisName: Greater_Leaf_Talisman + Name: Greater Leaf Talisman + Type: Armor + Weight: 100 + Defense: 1 + Slots: 1 + Jobs: + Summoner: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 175 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,3; + - Id: 28419 + AegisName: Lesser_Rabbit_Talisman + Name: Lesser Rabbit Talisman + Type: Armor + Weight: 100 + Defense: 1 + Slots: 1 + Jobs: + Summoner: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,1; + - Id: 28420 + AegisName: Intermediate_Rabbit_Talisman + Name: Intermediate Rabbit Talisman + Type: Armor + Weight: 100 + Defense: 1 + Slots: 1 + Jobs: + Summoner: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 140 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,2; + - Id: 28421 + AegisName: Greater_Rabbit_Talisman + Name: Greater Rabbit Talisman + Type: Armor + Weight: 100 + Defense: 1 + Slots: 1 + Jobs: + Summoner: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 175 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,3; + - Id: 28422 + AegisName: Shiny_Branch_Talisman + Name: Shiny Branch Talisman + Type: Armor + Weight: 100 + Defense: 1 + Slots: 1 + Jobs: + Summoner: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bVariableCastrate,"SU_SV_STEMSPEAR",-50; bonus2 bSkillAtk,"SU_SV_STEMSPEAR",(readparam(bInt)/2)+(20 * getskilllv("SU_SV_STEMSPEAR")); /* Need to confirm damage formula */ + - Id: 28423 + AegisName: Fresh_Tuna_Talisman + Name: Fresh Tuna Talisman + Type: Armor + Weight: 100 + Defense: 1 + Slots: 1 + Jobs: + Summoner: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bSkillCooldown,"SU_TUNAPARTY",-5000; bonus3 bAutoSpellWhenHit,"SU_TUNAPARTY",max(1,getskilllv("SU_TUNAPARTY")),10; + - Id: 28424 + AegisName: Chubby_Worm_Talisman + Name: Chubby Worm Talisman + Type: Armor + Weight: 100 + Defense: 1 + Slots: 1 + Jobs: + Summoner: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bVariableCastrate,"SU_PICKYPECK",-50; bonus2 bSkillAtk,"SU_PICKYPECK",(readparam(bDex)/2)+(20 * getskilllv("SU_PICKYPECK")); /* Need to confirm damage formula */ + - Id: 28425 + AegisName: Mercenary_Ring_A + Name: Mercenary Ring Type A + Type: Armor + Buy: 20 + Weight: 200 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 99 + Script: | + bonus bVit,3; if (BaseClass == Job_Gunslinger || BaseJob == Job_Novice || BaseJob == Job_SuperNovice || BaseClass == Job_Ninja || BaseClass == Job_Taekwon) { bonus bMaxHP,1000; bonus bMaxSP,200; } + - Id: 28426 + AegisName: Mercenary_Ring_B + Name: Mercenary Ring Type B + Type: Armor + Buy: 20 + Weight: 200 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 99 + Script: | + bonus bInt,3; if (BaseClass == Job_Gunslinger || BaseJob == Job_Novice || BaseJob == Job_SuperNovice || BaseClass == Job_Ninja || BaseClass == Job_Taekwon) { bonus bVariableCastrate,-30; } + - Id: 28429 + AegisName: Arquien's_Necklace + Name: Arquien's Necklace + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 20 + Script: | + bonus2 bSkillAtk,"MC_CARTREVOLUTION",Baselevel; bonus2 bSkillAtk,"NC_AXETORNADO",(Baselevel/3); bonus2 bSkillAtk,"NC_POWERSWING",(Baselevel/5); bonus2 bSkillUseSP,"NC_POWERSWING",2; bonus2 bAddMonsterDropItem,529,2000; bonus2 bAddMonsterDropItem,530,2000; bonus2 bAddMonsterDropItem,573,500; bonus2 bAddItemHealRate,529,100; bonus2 bAddItemHealRate,530,100; /* Unknow drop rates */ + - Id: 28430 + AegisName: Arch_Bishop_Ring + Name: Arch Bishop Ring + Type: Armor + Buy: 20 + Weight: 400 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 90 + Script: | + bonus bLuk,2; bonus bFlee2,5; bonus bUseSPrate,-5; bonus bHealPower,15; bonus bAddItemHealRate,15; + - Id: 28433 + AegisName: Luminous_Blue_Stone + Name: Luminous Blue Stone + Type: Armor + Buy: 20 + Weight: 400 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 90 + Script: | + bonus bAgi,2; bonus bCritical,5; bonus bAspdRate,5; bonus bCritAtkRate,2; skill "MG_SIGHT",1; if (readparam(bLuk)>=100) { bonus bCritical,10; bonus bCritAtkRate,10; } + - Id: 28434 + AegisName: Fist_Fighter_Glove + Name: Fist Fighter's Glove + Type: Armor + Buy: 20 + Weight: 400 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 90 + Script: | + bonus bStr,2; bonus bMaxSP,100; bonus2 bAddClass,Class_All,2; skill "MO_ABSORBSPIRITS",1; if (readparam(bStr)>99) bonus2 bAddClass,Class_All,5; + - Id: 28437 + AegisName: Hibram's_Gloves + Name: Hibram's Gloves + Type: Armor + Buy: 20 + Weight: 400 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 90 + Script: | + skill "AL_HEAL",3; bonus bInt,2; bonus bMatkRate,2; bonus bUseSPrate,-5; if (readparam(bInt)>=110) bonus bMatkRate,5; + - Id: 28438 + AegisName: Fairy_Leaf_Powder + Name: Fairy Leaf Powder + Type: Armor + Buy: 20 + Weight: 400 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 90 + Script: | + bonus bDex,2; bonus bDelayrate,-5; bonus bLongAtkRate,2; skill "SM_MAGNUM",3; if (readparam(bDex)>=100) bonus bLongAtkRate,5; + - Id: 28441 + AegisName: Vigilante_Badge + Name: Vigilante Badge + Type: Armor + Weight: 200 + Jobs: + Rogue: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bFlee,10; bonus bLongAtkRate,5; + - Id: 28442 + AegisName: Hippie_Feather + Name: Hippie Feather + Type: Armor + Weight: 200 + Slots: 1 + Jobs: + BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bHit,5; bonus bFlee,5; + - Id: 28443 + AegisName: Para_Team_Str_Ring100 + Name: Awakened Eden Group Ring of Strength I + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,2; + - Id: 28444 + AegisName: Para_Team_Str_Necklace100 + Name: Awakened Eden Group Necklace of Strength I + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,1; + - Id: 28445 + AegisName: Para_Team_Str_Ring115 + Name: Awakened Eden Group Ring of Strength II + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 115 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,3; + - Id: 28446 + AegisName: Para_Team_Str_Necklace115 + Name: Awakened Eden Group Necklace of Strength II + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 115 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,2; + - Id: 28447 + AegisName: Para_Team_Str_Ring130 + Name: Awakened Eden Group Ring of Strength III + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 130 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,4; + - Id: 28448 + AegisName: Para_Team_Str_Necklace130 + Name: Awakened Eden Group Necklace of Strength III + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 130 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,3; + - Id: 28449 + AegisName: Para_Team_Str_Ring145 + Name: Awakened Eden Group Ring of Strength IV + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 145 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,5; + - Id: 28450 + AegisName: Para_Team_Str_Necklace145 + Name: Awakened Eden Group Necklace of Strength IV + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 145 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,4; + - Id: 28451 + AegisName: Para_Team_Str_Ring160 + Name: Awakened Eden Group Ring of Strength V + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 160 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddClass,Class_All,5; skill "AL_HEAL",1; + - Id: 28452 + AegisName: Para_Team_Str_Necklace160 + Name: Awakened Eden Group Necklace of Strength V + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 160 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bStr,4; skill "AL_TELEPORT",1; + - Id: 28453 + AegisName: Para_Team_Magic_Ring100 + Name: Awakened Eden Group Ring of Magic I + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMatkRate,2; + - Id: 28454 + AegisName: Para_Team_Magic_Necklace100 + Name: Awakened Eden Group Necklace of Magic I + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,1; + - Id: 28455 + AegisName: Para_Team_Magic_Ring115 + Name: Awakened Eden Group Ring of Magic II + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 115 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMatkRate,3; + - Id: 28456 + AegisName: Para_Team_Magic_Necklace115 + Name: Awakened Eden Group Necklace of Magic II + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 115 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,2; + - Id: 28457 + AegisName: Para_Team_Magic_Ring130 + Name: Awakened Eden Group Ring of Magic III + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 130 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMatkRate,4; + - Id: 28458 + AegisName: Para_Team_Magic_Necklace130 + Name: Awakened Eden Group Necklace of Magic III + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 130 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,3; + - Id: 28459 + AegisName: Para_Team_Magic_Ring145 + Name: Awakened Eden Group Ring of Magic IV + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 145 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMatkRate,5; + - Id: 28460 + AegisName: Para_Team_Magic_Necklace145 + Name: Awakened Eden Group Necklace of Magic IV + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 145 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,4; + - Id: 28461 + AegisName: Para_Team_Magic_Ring160 + Name: Awakened Eden Group Ring of Magic V + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 160 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bMatkRate,5; skill "AL_HEAL",1; + - Id: 28462 + AegisName: Para_Team_Magic_Necklace160 + Name: Awakened Eden Group Necklace of Magic V + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 160 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bInt,4; skill "AL_TELEPORT",1; + - Id: 28463 + AegisName: Para_Team_Agi_Ring100 + Name: Awakened Eden Group Ring of Agility I + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bLongAtkRate,1; + - Id: 28464 + AegisName: Para_Team_Agi_Necklace100 + Name: Awakened Eden Group Necklace of Agility I + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,1; + - Id: 28465 + AegisName: Para_Team_Agi_Ring115 + Name: Awakened Eden Group Ring of Agility II + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 115 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bLongAtkRate,2; + - Id: 28466 + AegisName: Para_Team_Agi_Necklace115 + Name: Awakened Eden Group Necklace of Agility II + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 115 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,2; + - Id: 28467 + AegisName: Para_Team_Agi_Ring130 + Name: Awakened Eden Group Ring of Agility III + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 130 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bLongAtkRate,3; + - Id: 28468 + AegisName: Para_Team_Agi_Necklace130 + Name: Awakened Eden Group Necklace of Agility III + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 130 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,3; + - Id: 28469 + AegisName: Para_Team_Agi_Ring145 + Name: Awakened Eden Group Ring of Agility IV + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 145 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bLongAtkRate,4; + - Id: 28470 + AegisName: Para_Team_Agi_Necklace145 + Name: Awakened Eden Group Necklace of Agility IV + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 145 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,4; + - Id: 28471 + AegisName: Para_Team_Agi_Ring160 + Name: Awakened Eden Group Ring of Agility V + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 160 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bLongAtkRate,4; skill "AL_HEAL",1; + - Id: 28472 + AegisName: Para_Team_Agi_Necklace160 + Name: Awakened Eden Group Necklace of Agility V + Type: Armor + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 160 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bDex,4; skill "AL_TELEPORT",1; + - Id: 28483 + AegisName: Royal_Guardian_Ring + Name: Royal Guardian Ring + Type: Armor + Weight: 10 + Defense: 1 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 99 + Script: | + .@b = min(BaseLevel/25,7); bonus bMaxHPrate,.@b; bonus bMaxSPrate,.@b; + - Id: 28484 + AegisName: Rebel_Scarf + Name: Rebel Scarf + Type: Armor + Buy: 20 + Weight: 400 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + .@M = getskilllv("RL_MASS_SPIRAL"); .@F = getskilllv("RL_FIRE_RAIN"); .@H = getskilllv("RL_HEAT_BARREL"); .@S = getskilllv("RL_S_STORM"); .@D = getskilllv("RL_D_TAIL"); .@E = getskilllv("RL_E_CHAIN"); bonus2 bAddClass,Class_All,5; bonus bAspdRate,2*.@M; bonus bVariableCastrate,-10; bonus bDelayrate,-(.@F); bonus2 bSkillCooldown,"RL_HEAT_BARREL",-4000*.@S; bonus2 bSkillCooldown,"RL_S_STORM",-100*.@S; bonus bCritAtkRate,3*.@D; bonus2 bSkillAtk,"RL_FIRE_RAIN",5*.@F; bonus2 bSkillAtk,"RL_MASS_SPIRAL",5*.@M; bonus2 bSkillAtk,"RL_QD_SHOT",5*.@E; bonus2 bSkillAtk,"RL_S_STORM",5*.@S; bonus2 bSkillUseSP,"RL_FIREDANCE",10; bonus2 bSkillUseSP,"RL_FIRE_RAIN",4*.@F; bonus2 bSkillUseSP,"RL_MASS_SPIRAL",2*.@M; if(getiteminfo(getequipid(EQI_HAND_R),11) == W_GRENADE) { autobonus3 "{ bonus3 bAutoSpell,\"RL_D_TAIL\",max(1,getskilllv(\"RL_D_TAIL\")),10;}",1000,50000,"RL_C_MARKER","{specialeffect2 311;}"; } /* Placeholder Effect */ + - Id: 28485 + AegisName: Shinobi_Sash_H + Name: Shinobi Sash H + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bMatkRate,5; bonus bAspdRate,5; bonus bDelayrate,-5; .@a = (getskilllv("KO_GENWAKU")+getskilllv("KO_JYUSATSU")+getskilllv("KO_KYOUGAKU")); bonus2 bMagicAddEle,Ele_Dark,4*.@a; bonus2 bSkillAtk,"NJ_BAKUENRYU",10*getskilllv("NJ_KOUENKA"); bonus2 bSkillAtk,"NJ_KAMAITACHI",10*getskilllv("NJ_HUUJIN"); bonus2 bSkillAtk,"NJ_HYOUSYOURAKU",20*getskilllv("NJ_HYOUSENSOU"); + - Id: 28491 + AegisName: Hunting_Knife + Name: Hunting Knife + Type: Armor + Buy: 20 + Weight: 400 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 90 + Script: | + bonus bLuk,2; bonus bHit,10; bonus bCriticalLong,5; skill "TF_HIDING",1; if (readparam(bLuk)>=100) { bonus bHit,5; bonus bCriticalLong,10; } + - Id: 28492 + AegisName: Thieve_Guide_V1 + Name: Thieve's Guide Vol.1 + Type: Armor + Buy: 20 + Weight: 10 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bStr,5; bonus bAgi,5; bonus bInt,5; if (getskilllv(2292)==3) skill "SN_WINDWALK",5; if (getskilllv(2293)==3) skill "HP_ASSUMPTIO",5; if (getskilllv(2294)==3) skill "WS_OVERTHRUSTMAX",5; if (getskilllv(2295)==3) skill "ASC_METEORASSAULT",5; if (getskilllv(2296)==3) skill "LK_BERSERK",1; if (getskilllv(2297)==3) skill "HW_MAGICPOWER",5; if (getskilllv(220)==1) { bonus bStr,5; bonus bAgi,5; bonus bInt,5; } + - Id: 28495 + AegisName: Sheriffs_Left_Badge + Name: Sheriff's Left Badge + Type: Armor + Weight: 200 + Slots: 1 + Locations: + Left_Accessory: true + EquipLevelMin: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + if (readparam(bStr) > 89) bonus2 bAddClass,Class_All,3; if (readparam(bVit) > 89) bonus bMaxHP,1000; if (readparam(bDex) > 89) bonus bLongAtkRate,3; + - Id: 28496 + AegisName: Sheriffs_Right_Badge + Name: Sheriff's Right Badge + Type: Armor + Weight: 200 + Slots: 1 + Locations: + Right_Accessory: true + EquipLevelMin: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + if (readparam(bVit) > 89) bonus bMaxHP,1000; if (readparam(bInt) > 89) bonus bMatkRate,3; if (readparam(bDex) > 89) bonus bVariableCastrate,-5; + - Id: 28499 + AegisName: Proof_of_Glory + Name: Proof of Glory + Type: Armor + Weight: 100 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bAllStats,1; bonus2 bAddRace,RC_All,2; bonus2 bMagicAddRace,RC_All,2; if(BaseLevel>=150) { bonus bAllStats,1; bonus2 bAddRace,RC_All,2; bonus2 bMagicAddRace,RC_All,2; } + - Id: 28500 + AegisName: Zealous_Necklace + Name: Zealous Necklace + Type: Armor + Buy: 20 + Weight: 200 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + - Id: 28501 + AegisName: Horn_of_Kirin + Name: Horn of Kirin + Type: Armor + Buy: 20 + Weight: 500 + Defense: 3 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 50 + Script: | + bonus bAgi,2; bonus bAspdRate,2; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Brute,1; bonus2 bSubRace,RC_Player_Doram,1; bonus2 bSubRace,RC_Fish,1; bonus2 bSubRace,RC_Player_Human,1; bonus2 bSubRace,RC_Demon,2; bonus2 bSubRace,RC_Undead,2; skill "AL_INCAGI",6; if (readparam(bAgi)>=100) { bonus bAspdRate,5; } + - Id: 28502 + AegisName: Mob_Scarf + Name: Mob Scarf + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Head_Low: true + EquipLevelMin: 100 + View: 1568 + Script: | + skill "SA_SPELLBREAKER",2; + - Id: 28503 + AegisName: Keraunos + Name: Keraunos + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bMaxHPrate,5; bonus2 bAddClass,Class_All,5; bonus bAspdRate,5; bonus2 bVariableCastrate,"SR_GATEOFHELL",-3*(BaseLevel/20); bonus2 bVariableCastrate,"SR_RIDEINLIGHTNING",-5*(BaseLevel/15); bonus2 bSkillCooldown,"SR_ASSIMILATEPOWER",-3000; bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",5; + - Id: 28506 + AegisName: Storm_Stone + Name: Storm Stone + Type: Armor + Buy: 30000 + Weight: 500 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 90 + Script: | + bonus bMaxSPrate,5; bonus bAspdRate,5; bonus2 bAddClass,Class_All,5; + - Id: 28507 + AegisName: Magician_Gloves + Name: Magician's Gloves + Type: Armor + Buy: 20 + Weight: 500 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 80 + Script: | + bonus bVariableCastrate,-10; bonus2 bMagicAtkEle,Ele_Earth,5; bonus2 bMagicAtkEle,Ele_Water,5; bonus2 bMagicAtkEle,Ele_Wind,5; bonus2 bMagicAtkEle,Ele_Fire,5; bonus2 bMagicAtkEle,Ele_Ghost,5; bonus2 bIgnoreMdefRaceRate,RC_All,50; + - Id: 28508 + AegisName: Illusion_Skull_Ring + Name: Illusion Skull Ring + Type: Armor + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + EquipLevelMin: 100 + Script: | + bonus3 bAddEff,Eff_Curse,5000,ATF_SELF|ATF_TARGET|ATF_SHORT|ATF_WEAPON; + - Id: 28509 + AegisName: Illusion_Ring + Name: Illusion Ring + Type: Armor + Weight: 200 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bStr,3; if (readparam(bStr) >= 100) { bonus bBaseAtk,30; } + - Id: 28510 + AegisName: A_Vampire's_Servant + Name: A Vampire's Servant + Type: Armor + Weight: 100 + Defense: 1 + Slots: 1 + Locations: + Right_Accessory: true + EquipLevelMin: 100 + Script: | + bonus2 bSPDrainRate,1000,1; + - Id: 28513 + AegisName: JRO_Celine_Brooch + Name: Celine's Brooch + Type: Armor + Buy: 20 + Weight: 500 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bMaxHP,500; bonus bMaxSP,250; bonus bMatkRate,5; bonus bAspd,1; bonus bVariableCastrate,-10; + - Id: 28520 + AegisName: Egir_Ring + Name: Egir Ring + Type: Armor + Buy: 20 + Weight: 500 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bMdef,5; bonus bAllStats,1; bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus2 bSubEle,Ele_Water,10; + - Id: 28521 + AegisName: Giant's_Protection + Name: Giant's Protection + Type: Armor + Buy: 20 + Weight: 500 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 1 + Script: | + bonus2 bAddClass,Class_All,5; if (readparam(bStr)>=120) { bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bBaseAtk,50; } + - Id: 28531 + AegisName: Blacksmith's_Gloves + Name: Blacksmith's Gloves + Type: Armor + Buy: 20 + Weight: 500 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 80 + Script: | + bonus bDelayrate,-10; bonus2 bAddClass,Class_Boss,5; bonus2 bIgnoreDefRaceRate,RC_All,50; + - Id: 28533 + AegisName: Chemical_Glove + Name: Chemical Glove + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 20 + Script: | + .@s = getskilllv("GN_REMODELING_CART"); bonus bHit,20; bonus bAspdRate,5+.@s; bonus bBaseAtk,15*.@s; bonus bMaxHPrate,2*.@s; bonus2 bSkillUseSP,"GN_CART_TORNADO",.@s; bonus2 bAddItemHealRate,501,100; bonus2 bAddItemHealRate,502,100; bonus2 bAddItemHealRate,503,100; bonus2 bAddItemHealRate,504,100; bonus2 bSkillAtk,"MC_CARTREVOLUTION",Baselevel; bonus2 bSkillAtk,"GN_CARTCANNON",2*(Baselevel/20); bonus2 bSkillAtk,"GN_CART_TORNADO",2*(Baselevel/30); + - Id: 28551 + AegisName: Imperial_Glove + Name: Imperial Glove + Type: Armor + Buy: 20 + Weight: 400 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus2 bAddClass,Class_All,5; bonus bVariableCastrate,-10; bonus bNoCastCancel; + - Id: 28564 + AegisName: Valkyrie_Drop + Name: Valkyrie Drop + Type: Armor + Buy: 20 + Weight: 30 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + .@r = getskilllv("PR_IMPOSITIO"); bonus bSPrecovRate,50; bonus bVariableCastrate,-10; bonus bDelayrate,-5; bonus2 bVariableCastrate,"AB_ORATIO",-50; bonus2 bFixedCastrate,"AB_ORATIO",-100; bonus2 bMagicAddSize,Size_All,3*.@r; bonus2 bSkillAtk,"PR_MAGNUS",3*(Baselevel/2); if (.@r == 5) skill "ALL_ODINS_POWER",2; + - Id: 28565 + AegisName: Perverse_Demon_Mask + Name: Perverse Demon Mask + Type: Armor + Buy: 20 + Weight: 60 + Slots: 1 + Locations: + Left_Accessory: true + EquipLevelMin: 80 + Script: | + .@s = readparam(bStr); .@a = readparam(bAgi); .@d = readparam(bDex); .@v = readparam(bvit); .@l = readparam(bLuk); .@i = readparam(bInt); bonus bStr,3*(.@i/18); bonus bAgi,3*(.@l/18); bonus bVit,3*(.@d/18); bonus bInt,3*(.@s/18); bonus bDex,3*(.@v/18); bonus bLuk,3*(.@a/18); bonus bMaxHPrate,(.@d/18); bonus bFlee2,(.@a/18); bonus bMaxHPrate,(.@d/18); bonus bVariableCastrate,-(.@v/18); bonus bDelayrate,-(.@i/18); bonus2 bIgnoreDefClassRate,Class_All,15*(.@l/18); bonus2 bIgnoreMdefClassRate,Class_All,15*(.@s/18); + - Id: 28566 + AegisName: Beginner's_Ring + Name: Beginner's Ring + Type: Armor + Buy: 20 + Locations: + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bAspdRate,10; bonus bVariableCastrate,-10; + - Id: 28573 + AegisName: Emerald_Ring + Name: Emerald Ring + Type: Armor + Buy: 20 + Weight: 300 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + .@a = getskilllv("AC_DOUBLE")/2; bonus bAgi,5+(.@a); bonus bVit,5+(.@a); bonus bDex,5+(.@a); bonus bBaseAtk,(20*.@a); bonus2 bSkillAtk,"AC_DOUBLE",Baselevel; bonus2 bSkillAtk,"AC_SHOWER",Baselevel; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",2*(Baselevel/10); bonus2 bSkillUseSP,"WM_RANDOMIZESPELL",18; + - Id: 28575 + AegisName: Verus_Core + Name: Verus Core + Type: Armor + Buy: 10 + Weight: 500 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 80 + Script: | + bonus bAspdRate,10; bonus2 bAddEle,Ele_All,5; bonus bPerfectHitAddRate,20; + - Id: 28594 + AegisName: Temporal_Ring + Name: Temporal Ring + Type: Armor + Buy: 20 + Weight: 500 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bBaseAtk,50; bonus bMatk,50; + - Id: 28598 + AegisName: Powered_Chip + Name: Powered Chip + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bStr,5; bonus bVit,5; bonus bDex,5; bonus2 bAddClass,Class_All,5; if (getskilllv("NC_ARMSCANNON") >= 3) bonus bDelayrate,-30; if (getskilllv("NC_NEUTRALBARRIER") >= 3) { bonus2 bVariableCastrate,"NC_ARMSCANNON",-50; bonus2 bVariableCastrate,"NC_FLAMELAUNCHER",-50; bonus2 bVariableCastrate,"NC_COLDSLOWER",-50; } if (getskilllv("NC_PILEBUNKER") >= 3) { bonus bStr,5; bonus bVit,5; bonus bDex,5; bonus bBaseAtk,100; } if (getskilllv("NC_RESEARCHFE") >= 5) bonus bNoMadoFuel; + - Id: 28600 + AegisName: Ru_Blue_Book + Name: Blue Book + Type: Weapon + SubType: Book + Buy: 10 + Weight: 500 + Attack: 160 + Range: 1 + Slots: 1 + Jobs: + Priest: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bAgi,5; bonus bDex,5; + - Id: 28601 + AegisName: Ru_Gold_Book + Name: Ru Gold Book + Type: Weapon + SubType: Book + Weight: 500 + Attack: 160 + Range: 1 + Slots: 2 + Jobs: + Archer: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 120 + Refineable: true + Script: | + bonus bVit,8; bonus bInt,8; + - Id: 28602 + AegisName: Demon_Hunting_Bible + Name: Demon Hunting Bible + Type: Weapon + SubType: Book + Weight: 500 + Attack: 30 + MagicAttack: 170 + Range: 1 + Slots: 2 + Jobs: + Priest: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 110 + Refineable: true + Script: | + bonus bInt,2; bonus bDex,2; .@b = readparam(bInt); bonus2 bSkillAtk,"PR_MAGNUS",30+min(.@b,120); bonus bHealPower,10; bonus bAddItemHealRate,10; .@r = (getrefine()*1000); autobonus2 "{ bonus bIgnoreMdefRace,RC_All; }",50,1000+.@r,BF_WEAPON,"{ specialeffect2 EF_FLOWERCAST;}"; bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Holy; + - Id: 28604 + AegisName: Crimson_Bible + Name: Crimson Bible + Type: Weapon + SubType: Book + Buy: 20 + Weight: 450 + Attack: 45 + Range: 1 + Slots: 2 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bMatk,(.@r<=15?(pow(.@r,2)/2):225); + - Id: 28605 + AegisName: Book_of_Vicious_Mind + Name: Book of Vicious Mind + Type: Weapon + SubType: Book + Buy: 20 + Weight: 950 + Attack: 95 + Range: 1 + Slots: 1 + Jobs: + Priest: true + Sage: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 160 + Refineable: true + Script: | + bonus bAtk,pow(min(getrefine(),15),2); bonus bMatk,pow(min(getrefine(),15),2); bonus bUnbreakableWeapon; + - Id: 28606 + AegisName: Unity_Bible + Name: Unity Bible + Type: Weapon + SubType: Book + Buy: 20 + Weight: 220 + Attack: 42 + Range: 1 + Slots: 1 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 1 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bBaseAtk,pow(getrefine(),2)*125/100; + - Id: 28608 + AegisName: Elemental_Origin + Name: Elemental Origin + Type: Weapon + SubType: Book + Buy: 20 + Weight: 800 + Attack: 120 + MagicAttack: 150 + Range: 1 + Slots: 2 + Jobs: + Sage: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bInt,4; .@bonus = 10; if (.@r>=7) { .@bonus += 10; } if (.@r>=9) { .@bonus += 10; } bonus2 bSkillAtk,"MG_FIREBOLT",.@bonus; bonus2 bSkillAtk,"MG_COLDBOLT",.@bonus; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",.@bonus; + - Id: 28612 + AegisName: Illusion_Apocalypse + Name: Illusion Apocalypse + Type: Weapon + SubType: Book + Weight: 800 + Attack: 170 + Range: 1 + Slots: 2 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Script: | + .@val = 10 + 10*(min(getrefine(),10)/3); bonus2 bAddEle,Ele_Water,.@val; bonus2 bAddEle,Ele_Earth,.@val; bonus2 bAddEle,Ele_Fire,.@val; bonus2 bAddEle,Ele_Wind,.@val; bonus2 bSubDefEle,Ele_Holy,-30; + - Id: 28618 + AegisName: Book_of_the_Sun_God + Name: Book of the Sun God + Type: Weapon + SubType: Book + Buy: 10 + Weight: 500 + Attack: 180 + MagicAttack: 170 + Range: 1 + Slots: 4 + Jobs: + Priest: true + Sage: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxHP,200*.@r; bonus bMaxSP,50*.@r; bonus bAspdRate,.@r; if (.@r>=10) bonus3 bAutoSpell,"WZ_METEOR",5,200; else if (.@r>=8) bonus3 bAutoSpell,"WZ_METEOR",4,150; else bonus3 bAutoSpell,"WZ_METEOR",3,100; + - Id: 28619 + AegisName: Prisoner_Diary + Name: Prisoner's Diary + Type: Weapon + SubType: Book + Buy: 20 + Weight: 800 + Attack: 210 + Range: 1 + Slots: 2 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 175 + Refineable: true + Script: | + .@r = getrefine(); bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bBaseAtk,20*(.@r/2); if (.@r>=9) .@val = 25; else if (.@r>=7) .@val = 10; if (.@r>=11) { bonus2 bAddEle,Ele_Dark,15; bonus2 bMagicAddEle,Ele_Dark,15; bonus2 bAddEle,Ele_Undead,15; bonus2 bMagicAddEle,Ele_Undead,15; } bonus2 bAddRace,RC_Demon,.@val; bonus2 bAddRace,RC_Undead,.@val; bonus2 bMagicAddRace,RC_Demon,.@val; bonus2 bMagicAddRace,RC_Undead,.@val; + - Id: 28626 + AegisName: Illusion_Tablet + Name: Illusion Tablet + Type: Weapon + SubType: Book + Weight: 800 + Attack: 170 + Range: 1 + Slots: 2 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Script: | + .@val = 10 + 10*(min(getrefine(),10)/3); bonus2 bAddEle,Ele_Dark,.@val; bonus2 bAddEle,Ele_Undead,.@val; bonus2 bAddEle,Ele_Poison,.@val; bonus2 bAddEle,Ele_Ghost,.@val; bonus2 bSubDefEle,Ele_Dark,-30; + - Id: 28629 + AegisName: Circuit_Board-OS + Name: Circuit Board-OS + Type: Weapon + SubType: Book + Buy: 20 + Weight: 1200 + Attack: 180 + Range: 1 + Slots: 2 + Jobs: + Priest: true + Sage: true + StarGladiator: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 130 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bAddClass,Class_All,3; if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus2 bAddSize,Size_Small,20; bonus2 bAddSize,Size_Medium,20; if (.@r >= 11) { bonus bCritAtkRate,20; } } } + - Id: 28633 + AegisName: Boltijin + Name: Boltijin + Type: Weapon + SubType: Book + Buy: 20 + Weight: 800 + Attack: 120 + MagicAttack: 175 + Range: 1 + Slots: 2 + Jobs: + Sage: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); bonus bMatk,4*.@r; if (.@r>=9) .@val = 30; if (.@r>=11) { bonus2 bSkillAtk,"WZ_EARTHSPIKE",50; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",50; } bonus2 bSkillAtk,"MG_FIREBOLT",20+.@val; bonus2 bSkillAtk,"MG_COLDBOLT",20+.@val; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",20+.@val; + - Id: 28700 + AegisName: Ru_Gold_Dagger + Name: Ru Gold Dagger + Type: Weapon + SubType: Dagger + Weight: 1000 + Attack: 160 + Range: 1 + Slots: 2 + Jobs: + Rogue: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 120 + Refineable: true + Script: | + bonus bStr,8; bonus bInt,8; + - Id: 28701 + AegisName: Ru_Gold_Knife + Name: Ru Gold Knife + Type: Weapon + SubType: Dagger + Weight: 500 + Attack: 160 + Range: 1 + Slots: 2 + Jobs: + Sage: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 120 + Refineable: true + Script: | + bonus bVit,8; bonus bInt,8; + - Id: 28702 + AegisName: Ru_Gold_Ashura + Name: Ru Gold Ashura + Type: Weapon + SubType: Dagger + Weight: 1000 + Attack: 150 + MagicAttack: 150 + Range: 1 + Slots: 2 + Jobs: + Ninja: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 120 + Refineable: true + - Id: 28703 + AegisName: Infinity_Dagger + Name: Infinity Dagger + Type: Weapon + SubType: Dagger + Buy: 10 + Weight: 500 + Attack: 125 + MagicAttack: 100 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 28705 + AegisName: Crimson_Dagger + Name: Crimson Dagger + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 550 + Attack: 55 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 70 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bMatk,(.@r<=15?(pow(.@r,2)/2):225); + - Id: 28706 + AegisName: Dagger_of_Vicious_Mind + Name: Dagger of Vicious Mind + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 1050 + Attack: 105 + MagicAttack: 50 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 160 + Refineable: true + Script: | + bonus bAtk,pow(min(getrefine(),15),2); bonus bMatk,pow(min(getrefine(),15),2)/2; + - Id: 28717 + AegisName: Valkyrie_Knife + Name: Valkyrie Knife + Type: Weapon + SubType: Dagger + Buy: 50 + Weight: 100 + Attack: 50 + MagicAttack: 50 + Range: 1 + Slots: 4 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Novice: true + Rogue: true + Sage: true + SoulLinker: true + SuperNovice: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 70 + Refineable: true + Script: | + .@r = getrefine(); .@b = readparam(bDex)/10; if (BaseClass==Job_Novice) { bonus bMaxHP,300+(200*.@r); bonus bMaxSP,300+(20*.@r); bonus bBaseAtk,100; bonus bMatk,150+(15*.@r); bonus bUseSPrate,-5; bonus bUnbreakableWeapon; bonus bInt,2*.@r; bonus bDex,(2*.@r)-(.@r*.@b); bonus bCritical,7*.@r; bonus bAspdRate,10*.@r; bonus bCritAtkRate,1*.@r; } if (BaseClass==Job_Thief) { bonus bMaxSP,100; bonus bMatk,150; bonus bCritAtkRate,.@r; } if (BaseClass==Job_Mage) { bonus bMaxHP,200*.@r; bonus bMaxSP,20*.@r; } if (BaseJob==Job_Hunter) { bonus bMaxHP,200; bonus bUseSPrate,-5; bonus bInt,2*.@r; bonus bDex,2*.@r; } if (BaseJob==Job_Bard||BaseJob==Job_Dancer) { bonus bBaseAtk,100; bonus bAspdRate,10*.@r; bonus bUnbreakableWeapon; bonus bDex,-1*(.@r*.@b); } if (.@r>=7) { if (BaseClass==Job_Novice||BaseJob==Job_Mage) { bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; } } + - Id: 28721 + AegisName: Monokage + Name: Monokage + Type: Weapon + SubType: Dagger + Buy: 10 + Weight: 800 + Attack: 100 + Range: 1 + Slots: 2 + Jobs: + KagerouOboro: true + Locations: + Right_Hand: true + WeaponLevel: 3 + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"KO_BAKURETSU",getskilllv("NJ_TOBIDOUGU"); if (.@r>=9) { bonus bLongAtkRate,5; } else if (.@r>=7) { bonus bLongAtkRate,2; } + - Id: 28725 + AegisName: Illusion_Moonlight_Dagger + Name: Illusion Moonlight Dagger + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 700 + Attack: 150 + Range: 1 + Slots: 1 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 99 + Refineable: true + Script: | + bonus bMaxSPrate,10; .@val = 3; if (getrefine() >= 10) { .@val += 4; } bonus bSPDrainValue,.@val; + - Id: 28745 + AegisName: Illusion_Counter_Dagger + Name: Illusion Counter Dagger + Type: Weapon + SubType: Dagger + Weight: 900 + Attack: 170 + Range: 1 + Slots: 2 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 120 + Script: | + .@r = getrefine(); bonus bCritical,90; bonus bCritAtkRate,(3*(.@r/2)); if (.@r >= 7) { bonus2 bAddClass,Class_All,5; if (.@r >= 9) { bonus2 bAddSize,Size_All,20; if (.@r >= 11) { bonus2 bAddEle,Ele_All,20; } } } + - Id: 28755 + AegisName: Kuroiro-OS + Name: Kuroiro-OS + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 900 + Attack: 150 + MagicAttack: 150 + Range: 1 + Slots: 2 + Jobs: + KagerouOboro: true + Ninja: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 130 + Refineable: true + Script: | + .@r = getrefine(); .@dmg = 5; if (.@r >= 7) { .@dmg += 10; if (.@r >= 9) { bonus2 bSkillAtk,"KO_HAPPOKUNAI",20; if (.@r >= 11) { bonus2 bAddRace,RC_Demon,10; bonus2 bMagicAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; bonus2 bMagicAddRace,RC_Undead,10; } } } bonus2 bAddEle,Ele_Undead,.@dmg; bonus2 bMagicAddEle,Ele_Undead,.@dmg; bonus2 bAddEle,Ele_Dark,.@dmg; bonus2 bMagicAddEle,Ele_Dark,.@dmg; + - Id: 28762 + AegisName: Illusion_Bazerald + Name: Illusion Bazerald + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 500 + Attack: 120 + MagicAttack: 170 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true + Swordman: true + Thief: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 120 + Refineable: true + Script: | + bonus bAtkEle,Ele_Fire; bonus bInt,5; .@r = getrefine(); bonus bMatkRate,(.@r/2); if (.@r >= 7) { bonus2 bMagicAtkEle,Ele_Fire,10; if (.@r >= 9) { bonus2 bSkillAtk,"MG_FIREBOLT",40; bonus2 bSkillAtk,"MG_FIREBALL",40; if (.@r >= 11) { bonus2 bSkillAtk,"WZ_METEOR",30; bonus2 bSkillAtk,"WL_CRIMSONROCK",30; } } } + - Id: 28763 + AegisName: Surudoi_Kaze + Name: Surudoi Kaze + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 1000 + Attack: 150 + Range: 1 + Slots: 2 + Jobs: + KagerouOboro: true + Ninja: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + - Id: 28764 + AegisName: Kiri_no_Tsuyu + Name: Kiri no Tsuyu + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 1000 + Attack: 150 + Range: 1 + Slots: 2 + Jobs: + KagerouOboro: true + Ninja: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + - Id: 28765 + AegisName: Judgement_Slasher + Name: Judgement Slasher + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 1100 + Attack: 195 + Range: 1 + Slots: 2 + Jobs: + Assassin: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + - Id: 28766 + AegisName: Repent_Slasher + Name: Repent Slasher + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 700 + Attack: 100 + Range: 1 + Slots: 3 + Jobs: + Assassin: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + - Id: 28767 + AegisName: Jack_The_Knife + Name: Jack The Knife + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 900 + Attack: 195 + Range: 1 + Slots: 2 + Jobs: + Rogue: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,4*.@r; bonus2 bSkillAtk,"RG_BACKSTAP",40; if (.@r>=9) bonus2 bSkillAtk,"SC_FATALMENACE",30; if (.@r>=11) bonus2 bSkillUseSPrate,"SC_FATALMENACE",10; + - Id: 28768 + AegisName: Platinum_Dagger + Name: Platinum Dagger + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 1500 + Attack: 150 + MagicAttack: 170 + Range: 1 + Slots: 2 + Jobs: + Rogue: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); bonus bMatk,4*.@r; bonus bMatkRate,5; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Fire,15; bonus2 bMagicAtkEle,Ele_Wind,15; bonus2 bMagicAtkEle,Ele_Water,15; bonus2 bMagicAtkEle,Ele_Earth,15; } if (.@r>=11) autobonus "{ bonus bMatk,100; bonus2 bMagicAddSize,Size_All,30; }",50,10000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; /* Unknow Rates and Specialeffect */ + - Id: 28900 + AegisName: Guardsmen's_Shield + Name: Guardsmen's Shield + Type: Armor + Buy: 20 + Weight: 3000 + Defense: 30 + Slots: 1 + Locations: + Left_Hand: true + EquipLevelMin: 100 + Refineable: true + View: 1 + Script: | + .@r = getrefine(); skill "LG_SHIELDSPELL",1; bonus3 bAutoSpellWhenHit,"HP_ASSUMPTIO",3,(10+(.@r*10)); bonus bDef,(.@r*10); bonus bMdef,.@r; + - Id: 28901 + AegisName: Cursed_Mad_Bunny + Name: Cursed Mad Bunny + Type: Armor + Buy: 20 + Weight: 100 + Locations: + Left_Hand: true + EquipLevelMin: 1 + Refineable: true + View: 1 + Script: | + bonus bAspd,3; bonus2 bAddRace,RC_All,5; bonus2 bMagicAddRace,RC_All,5; bonus bShortWeaponDamageReturn,10; autobonus2 "{ bonus bMagicDamageReturn,60; }",10,2000,BF_MAGIC,"{ specialeffect2 EF_WIND; }"; .@r = getrefine(); if(.@r>=7) { bonus bBaseAtk,5; bonus bMatk,5; } if(.@r>=9) { bonus bBaseAtk,15; bonus bMatk,15; } if(.@r>=12) { bonus bCritical,10; bonus bNoCastCancel; } + - Id: 28902 + AegisName: Mad_Bunny_ + Name: Mad Bunny + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Locations: + Left_Hand: true + EquipLevelMin: 1 + Refineable: true + View: 1 + Script: | + bonus2 bAddRace,RC_All,5; bonus2 bMagicAddRace,RC_All,5; bonus bShortWeaponDamageReturn,10; autobonus2 "{ bonus bMagicDamageReturn,60; }",10,2000,BF_MAGIC,"{ specialeffect2 EF_WIND; }"; .@r = getrefine(); if(.@r>=7) { bonus bBaseAtk,5; bonus bMatk,5; } if(.@r>=9) { bonus bBaseAtk,15; bonus bMatk,15; } if(.@r>=12) { bonus bCritical,10; bonus bNoCastCancel; } + - Id: 28903 + AegisName: Scutum + Name: Scutum + Type: Armor + Weight: 500 + Defense: 1 + Slots: 1 + Locations: + Left_Hand: true + EquipLevelMin: 1 + Refineable: true + View: 1 + Script: | + .@r = getrefine(); bonus bFlee,5+(.@r*3); bonus bFlee2,1+(.@r*2); if (.@r > 10) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; } + - Id: 28904 + AegisName: Unity_Guard + Name: Unity Guard + Type: Armor + Buy: 20 + Weight: 300 + Defense: 60 + Slots: 1 + Locations: + Left_Hand: true + EquipLevelMin: 100 + Refineable: true + View: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + if(BaseLevel<100) { bonus bDef,12*getrefine(); } + - Id: 28905 + AegisName: Unity_Buckler + Name: Unity Buckler + Type: Armor + Buy: 20 + Weight: 300 + Defense: 60 + Slots: 1 + Locations: + Left_Hand: true + EquipLevelMin: 100 + Refineable: true + View: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + if(BaseLevel<100) { bonus bMaxSPrate,2*getrefine(); } + - Id: 28906 + AegisName: Shield_Of_Flame + Name: Shield Of Flame + Type: Armor + Weight: 500 + Defense: 80 + Slots: 1 + Locations: + Left_Hand: true + EquipLevelMin: 90 + Refineable: true + View: 1 + Script: | + bonus2 bSubEle,Ele_Fire,25; .@r = getrefine(); if(.@r > 4) { bonus bAspd,1+((.@r > 6) ? 1 : 0); } + - Id: 28907 + AegisName: Shield_Of_Gust + Name: Shield Of Gust + Type: Armor + Weight: 500 + Defense: 80 + Slots: 1 + Locations: + Left_Hand: true + EquipLevelMin: 90 + Refineable: true + View: 1 + Script: | + bonus2 bSubEle,Ele_Wind,25; .@r = getrefine(); if(.@r > 4) { bonus bAspd,1+((.@r > 6) ? 1 : 0); } + - Id: 28908 + AegisName: Shield_Of_Water + Name: Shield Of Water + Type: Armor + Weight: 500 + Defense: 80 + Slots: 1 + Locations: + Left_Hand: true + EquipLevelMin: 90 + Refineable: true + View: 1 + Script: | + bonus2 bSubEle,Ele_Water,25; .@r = getrefine(); if(.@r > 4) { bonus bAspd,1+((.@r > 6) ? 1 : 0); } + - Id: 28909 + AegisName: Shield_Of_Earth + Name: Shield Of Earth + Type: Armor + Weight: 500 + Defense: 80 + Slots: 1 + Locations: + Left_Hand: true + EquipLevelMin: 90 + Refineable: true + View: 1 + Script: | + bonus2 bSubEle,Ele_Earth,25; .@r = getrefine(); if(.@r > 4) { bonus bAspd,1+((.@r > 6) ? 1 : 0); } + - Id: 28910 + AegisName: Rectangular_Large_Sleeve + Name: Rectangular Large Sleeve + Type: Armor + Buy: 20 + Weight: 800 + Defense: 80 + Slots: 1 + Locations: + Left_Hand: true + EquipLevelMin: 100 + Refineable: true + View: 1 + Script: | + bonus bLongAtkDef,5; .@r = getrefine(); if(.@r>=5) { bonus bLongAtkDef,5; } if(.@r>=7) { bonus bLongAtkDef,10; } if(.@r>=9) { bonus bLongAtkDef,15; } + - Id: 28913 + AegisName: Ultra_Light_MShield + Name: Ultralight Magic Shield + Type: Armor + Weight: 100 + Defense: 50 + Slots: 1 + Locations: + Left_Hand: true + EquipLevelMin: 100 + Refineable: true + View: 1 + Script: | + .@r = getrefine(); .@val = 5; bonus2 bIgnoreDefClassRate,Class_Normal,10; if (.@r >= 9) { .@val += 5; } else if (.@r >= 7) { .@val += 2; } bonus bAspdRate,.@val; bonus2 bSubEle,Ele_Neutral,.@val; + - Id: 28915 + AegisName: Bunker_Shield + Name: Bunker Shield + Type: Armor + Buy: 20 + Weight: 3500 + Defense: 90 + Slots: 1 + Locations: + Left_Hand: true + EquipLevelMin: 50 + Refineable: true + View: 1 + Script: | + .@r = getrefine(); if(.@r >= 5) { .@dmg = .@r - 4; } bonus2 bAddClass,Class_All,(4+.@dmg); bonus bAspdRate,-5; + - Id: 28916 + AegisName: Gaia_Shield + Name: Gaia Shield + Type: Armor + Buy: 20 + Weight: 2000 + Defense: 150 + Slots: 1 + Locations: + Left_Hand: true + EquipLevelMin: 90 + Refineable: true + View: 1 + Script: | + bonus bMdef,10; bonus2 bSubEle,Ele_Earth,10; bonus2 bAddEle,Ele_Earth,5; bonus2 bMagicAddEle,Ele_Earth,5; .@r = getrefine(); if(.@r>=6) { bonus2 bSubEle,Ele_Earth,15; bonus2 bAddEle,Ele_Earth,10; bonus2 bMagicAddEle,Ele_Earth,10; } if(.@r>=8) { if(readparam(bStr)>=90) { bonus bBaseAtk,50; } if(readparam(bAgi)>=90) { bonus bAspdRate,5; } if(readparam(bVit)>=90) { bonus bHealPower2,10; bonus bAddItemHealRate,10; } if(readparam(bInt)>=90) { bonus bMatk,30; } if(readparam(bDex)>=90) { bonus bVariableCastrate,-5; } if(readparam(bLuk)>=90) { bonus bCritAtkRate,5; } } + - Id: 28918 + AegisName: Shield_of_Chaos + Name: Shield of Chaos + Type: Armor + Buy: 20 + Weight: 500 + Defense: 80 + Slots: 1 + Locations: + Left_Hand: true + EquipLevelMin: 90 + Refineable: true + View: 1 + Script: | + .@r = getrefine(); bonus bMdef,5; bonus2 bSubEle,Ele_Dark,25; if (.@r>=5) bonus bAspd,1; if (.@r>=7) bonus bAspd,1; + - Id: 28920 + AegisName: Diamond_Shield + Name: Diamond Shield + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 50 + Locations: + Left_Hand: true + EquipLevelMin: 100 + Refineable: true + View: 1 + Script: | + .@r = getrefine(); if(BaseLevel>=150) { bonus bDef,100+(20*(.@r/3)); } + - Id: 28921 + AegisName: Anemos_Shield + Name: Anemos Shield + Type: Armor + Buy: 20 + Weight: 3500 + Defense: 150 + Slots: 1 + Locations: + Left_Hand: true + EquipLevelMin: 90 + Refineable: true + View: 1 + Script: | + bonus bMdef,15; bonus2 bAddEle,Ele_Wind,5; bonus2 bMagicAddEle,Ele_wind,5; bonus2 bSubEle,Ele_Wind,10; bonus bUnbreakableShield; .@r = getrefine(); if (.@r>=6) { bonus2 bAddEle,Ele_Wind,10; bonus2 bMagicAddEle,Ele_wind,10; bonus2 bSubEle,Ele_Wind,15; } if (.@r>=8) { if (readparam(bStr)>=90) bonus bBaseAtk,50; if (readparam(bAgi)>=90) bonus bAspdRate,5; if (readparam(bVit)>=90) bonus bAddItemHealRate,10; if (readparam(bInt)>=90) bonus bMatk,30; if (readparam(bDex)>=90) bonus bVariableCastrate,-5; if (readparam(bLuk)>=90) bonus bCritAtkRate,5; } + - Id: 28922 + AegisName: Illusion_Sacred_Mission + Name: Illusion Sacred Mission + Type: Armor + Weight: 1600 + Defense: 190 + Slots: 1 + Jobs: + Crusader: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Left_Hand: true + EquipLevelMin: 120 + Refineable: true + View: 4 + Script: | + bonus bVit,3; bonus bInt,2; bonus bMdef,3; bonus bUnbreakableShield; bonus2 bSkillAtk,"LG_EARTHDRIVE",(7*getrefine()); + - Id: 28929 + AegisName: Happy_Shield + Name: Happy Shield + Type: Armor + Buy: 10 + Weight: 3500 + Defense: 150 + Slots: 1 + Locations: + Left_Hand: true + EquipLevelMin: 90 + Refineable: true + View: 1 + Script: | + bonus bMdef,10; + - Id: 28941 + AegisName: Excelion_Shield + Name: Excelion Shield + Type: Armor + Buy: 20 + Weight: 1200 + Defense: 95 + Slots: 1 + Locations: + Left_Hand: true + EquipLevelMin: 100 + Refineable: true + View: 1 + Script: | + .@r = getrefine(); bonus bMdef,5; bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bBaseAtk,30*(.@r/3); bonus bMatk,30*(.@r/3); if (readparam(Baselevel)>=130) { bonus bMaxHPrate,5; bonus bMaxSPrate,5; } + - Id: 28951 + AegisName: Nero_Shield + Name: Nero Shield + Type: Armor + Buy: 20 + Weight: 500 + Defense: 80 + Slots: 1 + Locations: + Left_Hand: true + EquipLevelMin: 90 + Refineable: true + View: 1 + Script: | + .@r = getrefine(); bonus bUnbreakableShield; bonus bMdef,5; bonus2 bSubEle,Ele_Water,10; bonus2 bAddEle,Ele_Water,5; bonus2 bMagicAddEle,Ele_Water,5; if (.@r>=6) { bonus2 bSubEle,Ele_Water,15; bonus2 bAddEle,Ele_Water,10; bonus2 bMagicAddEle,Ele_Water,10; } if (.@r>=8) { if (readparam(bStr)>=90) bonus bBaseAtk,50; if (readparam(bAgi)>=90) bonus bAspdRate,5; if (readparam(bInt)>=90) bonus bMatk,30; if (readparam(bVit)>=90) bonus bAddItemHealRate,10; if (readparam(bDex)>=90) bonus bVariableCastrate,-5; if (readparam(bLuk)>=90) bonus bCritAtkRate,5; } + - Id: 28955 + AegisName: Fotia_Shield + Name: Fotia Shield + Type: Armor + Buy: 20 + Weight: 1000 + Defense: 120 + Slots: 1 + Locations: + Left_Hand: true + EquipLevelMin: 90 + Refineable: true + View: 1 + Script: | + .@r = getrefine(); bonus bUnbreakableShield; bonus bMdef,5; bonus2 bSubEle,Ele_Fire,10; bonus2 bAddEle,Ele_Fire,5; bonus2 bMagicAddEle,Ele_Fire,5; if (.@r>=6) { bonus2 bSubEle,Ele_Fire,15; bonus2 bAddEle,Ele_Fire,10; bonus2 bMagicAddEle,Ele_Fire,10; } if (.@r>=8) { if (readparam(bStr)>=90) bonus bBaseAtk,50; if (readparam(bAgi)>=90) bonus bAspdRate,5; if (readparam(bInt)>=90) bonus bMatk,30; if (readparam(bVit)>=90) bonus bAddItemHealRate,10; if (readparam(bDex)>=90) bonus bVariableCastrate,-5; if (readparam(bLuk)>=90) bonus bCritAtkRate,5; } + - Id: 31027 + AegisName: C_Pretty_Bear + Name: Costume Pretty Bear + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1480 + - Id: 31028 + AegisName: C_Black_Cat_Hood + Name: Costume Black Cat Hood + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1481 + - Id: 31029 + AegisName: C_Pig_Nose + Name: Costume Pig Nose + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1482 + - Id: 31030 + AegisName: C_Tiger_Face + Name: Costume Tiger Face + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 483 + - Id: 31031 + AegisName: C_Tare_Pope_Casual + Name: Costume Drooping Pope Casual + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1483 + - Id: 31032 + AegisName: C_Tare_Luwmin + Name: "Costume: Sailing Lumin" + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1484 + - Id: 31033 + AegisName: C_BelieversCap + Name: Costume Believer's Mask + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1485 + - Id: 31034 + AegisName: C_Pirates_Hood + Name: Costume Pirates Hood + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 592 + - Id: 31035 + AegisName: C_Bankruptcy_Of_Heart + Name: Costume Bankruptcy of Heart + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 107 + - Id: 31036 + AegisName: C_Satto_Hat + Name: Costume Used Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 227 + - Id: 31037 + AegisName: C_Beret + Name: Costume Beret + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 226 + - Id: 31038 + AegisName: C_Cheks_Bandana + Name: Costume Cheks Bandana + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1174 + - Id: 31039 + AegisName: C_Crown_of_Old_King_Red + Name: Costume Crown of Old King Red + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1491 + - Id: 31040 + AegisName: C_Magical_Feather + Name: Costume Magical Feather + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1279 + Script: | + hateffect(HAT_EF_MAGICAL_FEATHER,true); + UnEquipScript: | + hateffect(HAT_EF_MAGICAL_FEATHER,false); + - Id: 31041 + AegisName: C_Cat_Lace_Hairband + Name: Costume Cat Lace Hairband + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 816 + - Id: 31042 + AegisName: C_Survival_Circlet + Name: Costume Survival Circlet + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1220 + - Id: 31043 + AegisName: C_Ribbon_White + Name: Costume Ribbon White + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 248 + - Id: 31044 + AegisName: C_Drooping_Kitty_Pink + Name: Costume Drooping Kitty Pink + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 276 + - Id: 31045 + AegisName: C_Blue_Rear_Ribbon + Name: Costume Blue Rear Ribbon + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1492 + - Id: 31046 + AegisName: C_White_Rose_Princess + Name: Costume White Rose Princess + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1493 + - Id: 31047 + AegisName: C_First_Love_Cheek + Name: Costume First Love Cheek + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1494 + - Id: 31048 + AegisName: C_White_Lily_Black_Ribbon + Name: Costume White Lily Black Ribbon + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1495 + - Id: 31049 + AegisName: C_Marin_Hat + Name: Costume Marin Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 948 + - Id: 31050 + AegisName: C_Golden_Poring_Hat + Name: Costume Golden Poring Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1236 + - Id: 31051 + AegisName: C_Poring_Sun_Visor + Name: Costume Poring Sun Visor + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1496 + - Id: 31052 + AegisName: C_Alchemist_Mask + Name: Costume Alchemist Mask + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1497 + - Id: 31053 + AegisName: C_Drooping_Eddga + Name: Costume Drooping Eddga + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 495 + - Id: 31054 + AegisName: C_Sting_Hat + Name: Costume Sting Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 504 + - Id: 31055 + AegisName: C_Poring_Soap_Pipe + Name: Costume Poring Soap Pipe + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1499 + - Id: 31056 + AegisName: C_Furious_Wave + Name: Costume Furious Wave + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + Script: | + hateffect(HAT_EF_DOUBLEGUMGANG,true); /* Need to confirm this */ + UnEquipScript: | + hateffect(HAT_EF_DOUBLEGUMGANG,false); + - Id: 31057 + AegisName: C_Eremes_Scarf_Black + Name: "Costume: Eremes' Scarf (Black)" + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1501 + - Id: 31058 + AegisName: C_Gelato_Hat + Name: Costume Gelato Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 777 + - Id: 31059 + AegisName: C_Sailor_Hat + Name: Costume Sailor Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 798 + - Id: 31060 + AegisName: C_Starfish_Headband + Name: Costume Starfish Headband + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 793 + - Id: 31061 + AegisName: C_Nipper_Hairpin + Name: Costume Nipper Hairpin + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 470 + - Id: 31062 + AegisName: C_Eleanor_Wig + Name: Costume Eleanor Wig + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1502 + - Id: 31063 + AegisName: C_Hair_Bun_BU + Name: Costume Hair in a Bun(Blue) + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1503 + - Id: 31064 + AegisName: C_Hair_Bun_RD + Name: Costume Hair in a Bun(Red) + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1504 + - Id: 31065 + AegisName: C_Hair_Bun_YL + Name: Costume Hair in a Bun(Yellow) + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1505 + - Id: 31066 + AegisName: C_Hair_Bun_GN + Name: Costume Hair in a Bun(Green) + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1506 + - Id: 31067 + AegisName: C_Hair_Bun_BL + Name: Costume Hair in a Bun(Black) + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1507 + - Id: 31068 + AegisName: C_Hair_Bun_WH + Name: Costume Hair in a Bun(White) + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1508 + - Id: 31069 + AegisName: C_Hair_Bun_OM + Name: Costume Hair in a Bun(Brown) + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1509 + - Id: 31070 + AegisName: C_Hair_Bun_PP + Name: Costume Hair in a Bun(Purple) + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1510 + - Id: 31071 + AegisName: C_Roll_Twin_BU + Name: Costume Roll Twin(Blue) + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1511 + - Id: 31072 + AegisName: C_Roll_Twin_RD + Name: Costume Roll Twin(Red) + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1512 + - Id: 31073 + AegisName: C_Roll_Twin_YL + Name: Costume Roll Twin(Yellow) + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1513 + - Id: 31074 + AegisName: C_Roll_Twin_GN + Name: Costume Roll Twin(Green) + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1514 + - Id: 31075 + AegisName: C_Roll_Twin_BL + Name: Costume Roll Twin(Black) + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1515 + - Id: 31076 + AegisName: C_Roll_Twin_WH + Name: Costume Roll Twin(White) + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1516 + - Id: 31077 + AegisName: C_Roll_Twin_OM + Name: Costume Roll Twin(Brown) + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1517 + - Id: 31078 + AegisName: C_Roll_Twin_PP + Name: Costume Roll Twin(Purple) + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1518 + - Id: 31079 + AegisName: C_Long_Pony_BU + Name: Costume Long Pony(Blue) + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1519 + - Id: 31080 + AegisName: C_Long_Pony_RD + Name: Costume Long Pony(Red) + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1520 + - Id: 31081 + AegisName: C_Long_Pony_YL + Name: Costume Long Pony(Yellow) + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1521 + - Id: 31082 + AegisName: C_Long_Pony_GN + Name: Costume Long Pony(Green) + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1522 + - Id: 31083 + AegisName: C_Long_Pony_BL + Name: Costume Long Pony(Black) + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1523 + - Id: 31084 + AegisName: C_Long_Pony_WH + Name: Costume Long Pony(White) + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1524 + - Id: 31085 + AegisName: C_Long_Pony_OM + Name: Costume Long Pony(Brown) + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1525 + - Id: 31086 + AegisName: C_Long_Pony_PP + Name: Costume Long Pony(Purple) + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1526 + - Id: 31087 + AegisName: C_Dwarf_Beard + Name: Costume Dwarf Beard + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1349 + - Id: 31088 + AegisName: C_Mad_Hatter + Name: Costume Mad Hatter + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1421 + - Id: 31089 + AegisName: C_Exploding_Crimson_Flame + Name: Costume Exploding Crimson Flame + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1500 + Script: | + hateffect(HAT_EF_BAKURETSU_HADOU,true); /* Need to confirm this */ + UnEquipScript: | + hateffect(HAT_EF_BAKURETSU_HADOU,false); + - Id: 31090 + AegisName: C_Angelring_Hat + Name: Costume Angelring Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 348 + - Id: 31091 + AegisName: C_Show_Me_The_Zeny + Name: Costume Show Me The Zeny + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1528 + Script: | + hateffect(HAT_EF_GOLD_SHOWER,true); + UnEquipScript: | + hateffect(HAT_EF_GOLD_SHOWER,false); + - Id: 31092 + AegisName: C_Rabbit_Ribbon_Hat + Name: Costume Bunny Ribbon Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 845 + - Id: 31093 + AegisName: C_Under_Lamp + Name: Costume Under Lamp + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1531 + - Id: 31094 + AegisName: C_Dice_Hat + Name: Costume Dice Hairband + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 494 + - Id: 31095 + AegisName: C_JP_EV01 + Name: Costume Mythical Baphomet Horns + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1532 + - Id: 31096 + AegisName: C_JP_EV02 + Name: Costume Dog Ears of Bau Alma + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1533 + - Id: 31097 + AegisName: C_JP_EV03 + Name: Costume Bunny Ears of Minnie Doe Alma + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1534 + - Id: 31098 + AegisName: C_JP_EV04 + Name: Costume Fox Ears of Tamamo Loa + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1535 + - Id: 31099 + AegisName: C_JP_EV05 + Name: Costume Headdress of Ontama Aria + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1536 + - Id: 31100 + AegisName: C_JP_EV06 + Name: Costume Hat of Dumpty Alma + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1537 + - Id: 31101 + AegisName: C_JP_EV07 + Name: Costume Taini Hat Blue + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1538 + - Id: 31102 + AegisName: C_JP_EV08 + Name: Costume Taini Hat Orange + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1539 + - Id: 31103 + AegisName: C_JP_EV09 + Name: Costume Taini Hat Green + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1540 + - Id: 31104 + AegisName: C_Taini_Hat + Name: Costume Taini Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 722 + - Id: 31105 + AegisName: C_RO_Celebration_Hat + Name: Costume RO Celebration Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1541 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 31106 + AegisName: C_Eyepatch_of_Peace + Name: Costume Eyepatch of Peace + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 697 + - Id: 31107 + AegisName: C_Eyepatch_of_Prosperity + Name: Costume Eyepatch of Prosperity + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 698 + - Id: 31113 + AegisName: C_Doctor_Headband + Name: Costume Doctor headband + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 60 + - Id: 31114 + AegisName: C_Theater_Prop + Name: Costume Theater Prop + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 80 + - Id: 31117 + AegisName: C_Hoplite_Helmet + Name: Costume Hoplite Helmet + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 660 + - Id: 31118 + AegisName: C_Assassin_Skull_Mask + Name: Costume Scratch Mask + Type: Armor + Locations: + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 984 + - Id: 31119 + AegisName: C_Blue_Magicianhat + Name: Costume Magician Hat Blue + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 285 + - Id: 31120 + AegisName: C_Vampire_Familiar + Name: Costume Vampire Familiar + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1548 + - Id: 31121 + AegisName: C_Stall_Of_Bat + Name: Costume Stall Of Bat + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1549 + - Id: 31122 + AegisName: C_Bloody_Stop_Bandage + Name: Costume Bloody Stop Bandage + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1550 + - Id: 31123 + AegisName: C_Ghostring_Tall_Hat + Name: Costume Ghostring Tall Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1551 + - Id: 31124 + AegisName: C_Ribbon_Chef_Hat + Name: Costume Ribbon Chief Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 785 + - Id: 31125 + AegisName: C_QueenAnzRevenge + Name: Costume Queen Anne's Revenge + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1360 + - Id: 31126 + AegisName: C_Nestea_Hat + Name: Costume Nestea Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 756 + - Id: 31127 + AegisName: C_Flag_Cap + Name: Costume Flag Cap + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 482 + - Id: 31128 + AegisName: C_Bride_Mask + Name: Costume Bride Mask + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 223 + - Id: 31129 + AegisName: C_Munchs_Scream + Name: Costume Scratch Mask + Type: Armor + Locations: + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 75 + - Id: 31130 + AegisName: C_Indian_Hairband + Name: Costume Indian Hairband + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 96 + - Id: 31131 + AegisName: C_Monk_Hat + Name: Costume Monk Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 35 + - Id: 31132 + AegisName: C_Christmas_Wreath + Name: Costume Christmas Wreath + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1554 + - Id: 31133 + AegisName: C_Gambler_Seal + Name: Costume Gambler Seal + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1202 + - Id: 31134 + AegisName: C_Happy_Parrot_J + Name: Costume Talkactive Parrot + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1116 + - Id: 31135 + AegisName: C_Mini_Crown1 + Name: Costume Luxury Mini Crown + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 707 + - Id: 31136 + AegisName: C_Clock_Casket + Name: Costume Clock Casket + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1555 + - Id: 31137 + AegisName: C_Blue_Rose_Ornament + Name: Costume Blue Rose Ornament + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1556 + - Id: 31138 + AegisName: C_Piamette_Red_Hood + Name: Costume Piamette's Red Hood + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1557 + - Id: 31139 + AegisName: C_White_Rabbit_Ear + Name: Costume White Rabbit Ears + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1558 + - Id: 31140 + AegisName: C_Cowboy_Hat_ + Name: Costume Black Cowboy Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1569 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 31141 + AegisName: C_Rose_Corsage_ + Name: Costume Cactus Flower Corsage + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1570 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 31142 + AegisName: C_Time_Prison + Name: Costume Prison of Time + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1309 + EquipScript: | + sc_start SC_TIME_ACCESSORY,INFINITE_TICK,0; + UnEquipScript: | + sc_end SC_TIME_ACCESSORY; + - Id: 31144 + AegisName: C_Indi_Feather_Band + Name: Costume Indian Feather Headband + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 809 + - Id: 31145 + AegisName: C_AliceFriesinger_Hat_69 + Name: Costume AliceFriesinger Hat 69 + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1249 + - Id: 31146 + AegisName: C_KarduiEar + Name: Costume Kardui Ears + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1357 + - Id: 31147 + AegisName: C_Tare_Domovoi + Name: Costume Drooping Domovoi + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 781 + - Id: 31148 + AegisName: C_Tare_W_Doll + Name: Costume Drooping W Doll + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 359 + - Id: 31149 + AegisName: C_Nydhog_Wig + Name: Costume Nydhoggur Wig + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1563 + - Id: 31150 + AegisName: C_Shalosh_Head_Dress + Name: Costume Shalosh Headdress + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1564 + - Id: 31151 + AegisName: C_Chasher_Ear + Name: Costume Cheshire's Cat Ears + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1565 + - Id: 31152 + AegisName: C_Piamette_BowTie_Red + Name: Costume Piamette's Red Bow Tie + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1566 + - Id: 31153 + AegisName: C_Aniv_Star_Hat2 + Name: Costume Cactus Flower Corsage + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1567 + - Id: 31154 + AegisName: C_Cap + Name: C Cap + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 14 + - Id: 31158 + AegisName: C_Squirrel_Ear_Hat + Name: Costume Squirrel Ear Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1486 + - Id: 31160 + AegisName: C_RuneHelm + Name: Costume Rune Helm + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1361 + - Id: 31161 + AegisName: C_Tiger_Mask + Name: Costume Tiger Mask + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 181 + - Id: 31162 + AegisName: C_Shaving_Foam + Name: Costume Shaving Foam + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1129 + - Id: 31163 + AegisName: C_Goat_Hat + Name: Costume Sheep Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 205 + - Id: 31164 + AegisName: C_Brown_Stall + Name: Costume Brown Stole + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1572 + - Id: 31165 + AegisName: C_Piggyback + Name: Costume Piggyback + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1574 + - Id: 31166 + AegisName: C_Teddy_Bear_Hood + Name: Costume Teddy Bear Hood + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1571 + - Id: 31167 + AegisName: C_Lunatic_Hanging_Ear_BL + Name: Costume Hanging Black Lunatic Ears + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1575 + - Id: 31168 + AegisName: C_Mouton_Life_BL + Name: Costume Blue Mouton Life + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1573 + - Id: 31169 + AegisName: C_Hat_Of_Outlaw + Name: Costume Hilarious Bandit Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 486 + - Id: 31170 + AegisName: C_Wind_Wings + Name: Costume Wings of Wind + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 493 + - Id: 31171 + AegisName: C_Nekomimi + Name: Costume Nekomimi + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 182 + - Id: 31172 + AegisName: C_Roast_Memory + Name: Costume Roast Memory + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1576 + - Id: 31173 + AegisName: C_Oyster_Parakeet + Name: Costume Oyster Parakeet + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 419 + - Id: 31174 + AegisName: C_Suspicious_Bread_Bag + Name: C Suspicious Bread Bag + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 429 + - Id: 31175 + AegisName: C_Strawberry_Hat + Name: Costume Strawberry Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 755 + - Id: 31176 + AegisName: C_Looking + Name: C Looking + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1577 + - Id: 31177 + AegisName: C_Tail_Hat + Name: C Tail Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1578 + - Id: 31178 + AegisName: C_Flame_Muffler + Name: C Fire Muffler + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1579 + - Id: 31179 + AegisName: C_Wolf_Masquerade + Name: C Wolf Masquerade + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1580 + - Id: 31180 + AegisName: C_Shura_King_Pledge + Name: C King Sura Headband + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1581 + - Id: 31181 + AegisName: C_Necklace_Rosary + Name: Costume Necklace Rosary + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1471 + - Id: 31182 + AegisName: C_Side_Cap + Name: Costume Side Cap + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 529 + - Id: 31183 + AegisName: C_Fallen_Angel_Blessing + Name: Costume Blessing of Fallen Angel + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1250 + - Id: 31184 + AegisName: C_Hawkeye + Name: Costume Hawkeye + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 609 + - Id: 31185 + AegisName: C_Engineer_Cap + Name: Costume Engineer Cap + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 608 + - Id: 31186 + AegisName: C_Black_Cat + Name: Costume Black Cat + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1582 + - Id: 31187 + AegisName: C_War_Princess_Ribbon + Name: Costume War Princess Ribbon + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1583 + - Id: 31188 + AegisName: C_Mono_Gothic_Bonnet + Name: Costume Mono Gothic Bonnet + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1584 + - Id: 31189 + AegisName: C_Cat_Ears_Cape_Red + Name: Costume Red Cat Ears Cape + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1591 + - Id: 31190 + AegisName: C_Angel_Mini_Silk_Hat_B + Name: Costume Black Angel Mini Silk Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1586 + - Id: 31191 + AegisName: C_Whikebain_Ears_Gold + Name: Vibrant Cat Ears + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1588 + - Id: 31192 + AegisName: C_Bluecat_Ear + Name: Blue Cat Ears + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1589 + - Id: 31193 + AegisName: C_Tare_Ahat + Name: Costume Drooping Ahat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1590 + - Id: 31194 + AegisName: C_Spinning_Propeller + Name: Costume Spinning Propeller + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 270 + - Id: 31195 + AegisName: C_Choco_Minihat + Name: Costume Mini Chocolate Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1592 + - Id: 31196 + AegisName: C_JP_EV12 + Name: C Drooping Chuni Penguin + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1596 + - Id: 31197 + AegisName: C_Egg_Crispinette + Name: Costume Egg Crispinette + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1598 + - Id: 31198 + AegisName: C_Octopus_Hat + Name: C Octopus Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 538 + - Id: 31199 + AegisName: C_Weird_Beard + Name: C Weird Beard + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 21 + - Id: 31200 + AegisName: C_Wrapping_Ribbon + Name: C Wrapping Ribbon + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1599 + - Id: 31201 + AegisName: C_Royal_Rabbit_Crown + Name: C Royal Rabbit Crown + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1600 + - Id: 31202 + AegisName: C_Dog_Officer + Name: C Dog Officer + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1601 + - Id: 31203 + AegisName: C_Charcoal_Stove + Name: C Charcoal Stove + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1602 + - Id: 31204 + AegisName: C_Drooping_White_Cat + Name: C Drooping White Cat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 378 + - Id: 31205 + AegisName: C_Large_Orc_Hero_Helm + Name: C Large Orc Hero Helm + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 381 + - Id: 31206 + AegisName: C_Rune_Hairband + Name: C Rune Hairband + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 564 + - Id: 31207 + AegisName: C_Dokkebi_Mask + Name: C Dokkebi Mask + Type: Armor + Locations: + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 689 + - Id: 31208 + AegisName: C_Straight_Long_YL + Name: C Straight_Long Yellow + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1603 + - Id: 31209 + AegisName: C_Straight_Long_WH + Name: C Straight Long White + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1604 + - Id: 31210 + AegisName: C_Side_Pigtail_BU + Name: C Side Pigtail Blue + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1605 + - Id: 31211 + AegisName: C_Side_Pigtail_RD + Name: C Side Pigtail Red + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1606 + - Id: 31212 + AegisName: C_Side_Pigtail_YL + Name: C Side Pigtail Yellow + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1607 + - Id: 31213 + AegisName: C_Side_Pigtail_GN + Name: C Side Pigtail Green + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1608 + - Id: 31214 + AegisName: C_Side_Pigtail_BL + Name: C Side Pigtail Black + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1609 + - Id: 31215 + AegisName: C_Side_Pigtail_WH + Name: C Side Pigtail White + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1610 + - Id: 31216 + AegisName: C_Side_Pigtail_OM + Name: C Side Pigtail Brown + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1611 + - Id: 31217 + AegisName: C_Side_Pigtail_PP + Name: C Side Pigtail Purple + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1612 + - Id: 31218 + AegisName: C_Low_Pony_BU + Name: C Low Pony Blue + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1613 + - Id: 31219 + AegisName: C_Low_Pony_RD + Name: C Low Pony Red + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1614 + - Id: 31220 + AegisName: C_Low_Pony_YL + Name: C Low Pony Yellow + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1615 + - Id: 31221 + AegisName: C_Low_Pony_GN + Name: C Low Pony Green + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1616 + - Id: 31222 + AegisName: C_Low_Pony_BL + Name: C Low Pony Black + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1617 + - Id: 31223 + AegisName: C_Low_Pony_WH + Name: C Low Pony White + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1618 + - Id: 31224 + AegisName: C_Low_Pony_OM + Name: C Low Pony Brown + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1619 + - Id: 31225 + AegisName: C_Low_Pony_PP + Name: C Low Pony Purple + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1620 + - Id: 31226 + AegisName: C_Long_Twin_BU + Name: C Long Twin Blue + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1621 + - Id: 31227 + AegisName: C_Long_Twin_RD + Name: C Long Twin Red + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1622 + - Id: 31228 + AegisName: C_Long_Twin_YL + Name: C Long Twin Yellow + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1623 + - Id: 31229 + AegisName: C_Long_Twin_GN + Name: C Long Twin Yellow + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1624 + - Id: 31230 + AegisName: C_Long_Twin_BL + Name: C Long Twin Yellow + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1625 + - Id: 31231 + AegisName: C_Long_Twin_WH + Name: C Long Twin Yellow + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1626 + - Id: 31232 + AegisName: C_Long_Twin_OM + Name: C Long Twin Yellow + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1627 + - Id: 31233 + AegisName: C_Long_Twin_PP + Name: C Long Twin Yellow + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1628 + - Id: 31234 + AegisName: C_Persica + Name: C Persica + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 659 + - Id: 31235 + AegisName: C_Large_Ribbon_Muffler_Mid + Name: C Large Ribbon Muffler Mid + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1312 + - Id: 31236 + AegisName: C_Vicious_Mind_Aura_Mid + Name: C Vicious Mind Aura Mid + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1267 + - Id: 31237 + AegisName: C_Pale_Yellow_Ribbon_Lower + Name: C Pale Yellow Ribbon Lower + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1474 + - Id: 31238 + AegisName: C_True_Love_Upper + Name: C True Love Upper + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 489 + - Id: 31239 + AegisName: C_Love_Rabbit_Hood_Upper + Name: C Love Rabbit Hood Upper + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 549 + - Id: 31240 + AegisName: C_Whisper_Mask_ + Name: C Whisper Mask Upper + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 321 + - Id: 31241 + AegisName: C_Burning_Sun_Lower + Name: C Burning Sun Lower + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 654 + - Id: 31242 + AegisName: C_Anubis_Helm_ + Name: C Anubis Hat Upper + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 485 + - Id: 31243 + AegisName: C_Tongue_Mask_Mid + Name: C Tongue Mask Mid + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 253 + - Id: 31244 + AegisName: C_Skymet_ + Name: C Skymet Upper + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 868 + - Id: 31245 + AegisName: C_Cherry + Name: C Cherry + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 602 + - Id: 31246 + AegisName: C_Humming_Bird + Name: C Humming Bird + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 702 + - Id: 31247 + AegisName: C_Hippo_Hat + Name: C Hippo Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 859 + - Id: 31248 + AegisName: C_Isabella_Red_Ears + Name: C Isabella Red Ears + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1030 + - Id: 31249 + AegisName: C_Rabbit_Hopping + Name: C Hopping Rabbit + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1635 + - Id: 31250 + AegisName: C_Wonderful_Beast_Ear + Name: C Wonderful Beast Ears + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1636 + - Id: 31251 + AegisName: C_Cat_Mouth + Name: C Cats Mouth + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1637 + - Id: 31252 + AegisName: C_Cat_Ear_Hat_White + Name: C White Cat Ears Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1638 + - Id: 31253 + AegisName: C_Rinzu_Helmet + Name: C Rinzu Helmet + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 548 + - Id: 31254 + AegisName: C_Red_Hare_Hat + Name: C Red Hare Hat + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1631 + - Id: 31255 + AegisName: C_Sweet_Helmet + Name: C Sweet Helmet + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1374 + - Id: 31256 + AegisName: C_Jaguar_Mask + Name: C Jaguar Mask + Type: Armor + Locations: + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 530 + - Id: 31260 + AegisName: C_Observer_J + Name: C Observer + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1639 + - Id: 31261 + AegisName: C_Soda_in_Mouth + Name: C Soda in Mouth + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1643 + - Id: 31262 + AegisName: C_Disposable_3D_Glasses + Name: C Disposable 3D Glasses + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 661 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 31263 + AegisName: C_Disposable_Popcorn_Hat + Name: C Disposable Popcorn Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 415 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 31264 + AegisName: C_Wings_of_Protector_Lower + Name: C Wings of Protector Lower + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 990 + - Id: 31265 + AegisName: C_Straight_Pony_Blue_Mid + Name: C Straight Pony Blue Mid + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1394 + - Id: 31266 + AegisName: C_Straight_Pony_Red_Mid + Name: C Straight Pony Red Mid + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1392 + - Id: 31267 + AegisName: C_Straight_Pony_Yellow_Mid + Name: C Straight Pony Yellow Mid + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1389 + - Id: 31268 + AegisName: C_Straight_Pony_Green_Mid + Name: C Straight_Pony Green Mid + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1390 + - Id: 31269 + AegisName: C_Straight_Pony_Black_Mid + Name: C Straight Pony Black Mid + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1371 + - Id: 31270 + AegisName: C_Straight_Pony_White_Mid + Name: C Straight Pony White Mid + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1395 + - Id: 31271 + AegisName: C_Straight_Pony_Crimson_Mid + Name: C Straight Pony Crimson Mid + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1393 + - Id: 31272 + AegisName: C_Straight_Pony_Purple_Mid + Name: C Straight Pony Purple Mid + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1391 + - Id: 31273 + AegisName: C_Cowlick_Blue_Mid + Name: C Cowlick Blue Mid + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1387 + - Id: 31274 + AegisName: C_Cowlick_Red_Mid + Name: C Cowlick Red Mid + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1385 + - Id: 31275 + AegisName: C_Cowlick_Yellow_Mid + Name: C Cowlick Yellow Mid + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1382 + - Id: 31276 + AegisName: C_Cowlick_Green_Mid + Name: C Cowlick Green Mid + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1383 + - Id: 31277 + AegisName: C_Cowlick_Black_Mid + Name: C Cowlick Black Mid + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1372 + - Id: 31278 + AegisName: C_Cowlick_White_Mid + Name: C Cowlick White Mid + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1388 + - Id: 31279 + AegisName: C_Cowlick_Crimson_Mid + Name: C Cowlick Crimson Mid + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1386 + - Id: 31280 + AegisName: C_Cowlick_Purple_Mid + Name: C Cowlick Purple Mid + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1384 + - Id: 31281 + AegisName: C_Loose_Wave_Twin_Blue_Mid + Name: C Loose Wave Twin Blue Mid + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1401 + - Id: 31282 + AegisName: C_Loose_Wave_Twin_Red_Mid + Name: C Loose Wave Twin Red Mid + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1399 + - Id: 31283 + AegisName: C_Loose_Wave_Twin_Yellow_Mid + Name: C Loose Wave Twin Yellow Mid + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1396 + - Id: 31284 + AegisName: C_Loose_Wave_Twin_Green_Mid + Name: C Loose Wave Twin Green Mid + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1397 + - Id: 31285 + AegisName: C_Loose_Wave_Twin_Black_Mid + Name: C Loose Wave Twin Black Mid + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1373 + - Id: 31286 + AegisName: C_Loose_Wave_Twin_White_Mid + Name: C Loose Wave Twin White Mid + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1402 + - Id: 31287 + AegisName: C_Loose_Wave_Twin_Crimson_Mid + Name: C Loose Wave Twin Crimson Mid + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1400 + - Id: 31288 + AegisName: C_Loose_Wave_Twin_Purple_Mid + Name: C Loose Wave Twin Purple Mid + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1398 + - Id: 31289 + AegisName: C_Black_Wing_Ears_Lower + Name: C Black Wing Ears Lower + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1336 + - Id: 31290 + AegisName: C_Angels_Feather_Cap + Name: C Angels Feather Cap + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 929 + - Id: 31291 + AegisName: C_Devils_Feather_Cap + Name: C Devils Feather Cap + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 930 + - Id: 31293 + AegisName: C_Kings_Crown_Purple + Name: C Crown of Ancient King Purple + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1651 + - Id: 31294 + AegisName: C_Jirant_Circlet_Red + Name: C Jirant Circlet Red + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1652 + - Id: 31295 + AegisName: C_Red_Wing_Hat + Name: C Red Wing Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 613 + - Id: 31296 + AegisName: C_Strawberry_in_Mouth + Name: C Strawberry in Mouth + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 861 + - Id: 31297 + AegisName: C_Fruit_of_Love + Name: C Fruit of Love + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 140 + - Id: 31298 + AegisName: C_Sepia_Parade_Hat + Name: C Sepia Parade Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 682 + - Id: 31299 + AegisName: C_White_Rabbit + Name: C White Rabbit + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1656 + - Id: 31300 + AegisName: C_Warm_Cat_Muffler + Name: C Warm Cat Muffler + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1657 + - Id: 31301 + AegisName: C_Blinking_Eyes + Name: C Blinking Eyes + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1658 + - Id: 31302 + AegisName: C_Black_Magenta_Ribbon + Name: C Black Magenta Ribbon + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1659 + - Id: 31303 + AegisName: C_Black_Ramen_Hat_ + Name: C Black Ramen Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1338 + - Id: 31304 + AegisName: C_Summer_Fan + Name: C Summer Fan + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1051 + - Id: 31306 + AegisName: C_Toucan_Hat + Name: C Toucan Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 528 + - Id: 31307 + AegisName: C_Violet_Macaw + Name: C Violet Macaw + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 656 + - Id: 31308 + AegisName: C_Protect_Feathers + Name: C Protect Feathers + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1232 + - Id: 31309 + AegisName: C_Pure_White_Marching_Hat + Name: C Pure White Marching Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1470 + - Id: 31310 + AegisName: C_666_Black_Elven_Ears + Name: C 666 Black_ Elven Ears + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 498 + - Id: 31311 + AegisName: C_Dolor_Thanatos_Mask + Name: C Dolor Thanatos Mask + Type: Armor + Locations: + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 666 + - Id: 31312 + AegisName: C_Hades_Helm + Name: C Hades Helm + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 523 + - Id: 31313 + AegisName: C_FallenAngelWingEar + Name: C Fallen Angel Wing Ears + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1662 + - Id: 31314 + AegisName: C_Ghost_Holiday + Name: C Ghost Holiday + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1663 + - Id: 31315 + AegisName: C_Stall_Of_Angel + Name: C Stall of Angel + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1664 + - Id: 31316 + AegisName: C_C_FlutterButterfly_BL + Name: C Black Fluttering Butterfly + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1665 + Script: | + hateffect(HAT_EF_C_FLUTTERBUTTERFLY_BL,true); + UnEquipScript: | + hateffect(HAT_EF_C_FLUTTERBUTTERFLY_BL,false); + - Id: 31317 + AegisName: C_15th_Anniversary_Wing + Name: C 15th Anniversary Wing + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1660 + - Id: 31318 + AegisName: C_Gerhard_Von_Devi + Name: Costume Gerhard Von Devi + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1092 + - Id: 31319 + AegisName: C_Summer_Fan_ + Name: C Summer Fan + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1051 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 31320 + AegisName: C_Pinwheel_Hat + Name: C Pinwheel Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 456 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 31321 + AegisName: C_Shining_Sunflower + Name: C Shining Sunflower + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 681 + - Id: 31322 + AegisName: C_Candy_Hat + Name: C Candy Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 853 + - Id: 31323 + AegisName: C_Yellow_Hunting_Cap + Name: C Yellow Hunting Cap + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 484 + - Id: 31325 + AegisName: C_Queen_Scarabas_Helmet + Name: C Queen Scarabas Helmet + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1231 + Script: | + hateffect(HAT_EF_QSCARABA,true); + UnEquipScript: | + hateffect(HAT_EF_QSCARABA,false); + - Id: 31326 + AegisName: C_Rolf_Von_Ziege_666_II + Name: C Rolf Von Ziege 666 II + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 946 + - Id: 31327 + AegisName: C_Stretched_Nose_M + Name: C Wood Goblins Nose + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 737 + - Id: 31328 + AegisName: C_Faceworm_Eggshell + Name: C Faceworm Eggshell + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1356 + - Id: 31329 + AegisName: C_Alice_Wig + Name: Costume Alice Wig + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1673 + - Id: 31330 + AegisName: C_Fallen_Angel_Valletta + Name: Costume Fallen Angel Valletta + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1674 + - Id: 31331 + AegisName: C_Chung_E_Shinyon_Cap + Name: C Chung e Shinyon Cap + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1675 + - Id: 31332 + AegisName: Khalitzburg_KN_Helm_BL + Name: C Black Khalitzburg Knight Helm + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1676 + - Id: 31368 + AegisName: C_Harvest_Festa_Hat + Name: C Thanksgiving Memorial Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1677 + - Id: 31369 + AegisName: C_Straight_Long_WH_ + Name: Costume Straight Long White + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1604 + - Id: 31370 + AegisName: C_Straight_Long_YLK + Name: Costume Straight Long Yellow + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1603 + - Id: 31373 + AegisName: C_Crown_of_Ancient_king + Name: C Crown of Ancient king + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1412 + - Id: 31372 + AegisName: C_Binit_Doll_Hat + Name: "Costume: Binit Doll" + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 358 + - Id: 31374 + AegisName: C_Explosion_gum + Name: C Explosion gum + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1414 + - Id: 31375 + AegisName: C_Mystic_Eye + Name: C Mystic Eye + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1490 + - Id: 31376 + AegisName: C_Ancient_Dragon_Coronet_Purple + Name: C Ancient Dragon Coronet Purple + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1680 + - Id: 31377 + AegisName: C_Glastheim_Obeserver + Name: C Glastheim Obeserver + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1041 + - Id: 31378 + AegisName: C_Catharina_Von_Brad_60th + Name: C Catharina Von Brad 60th + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1527 + - Id: 31379 + AegisName: C_Wind-Up_Key + Name: C Wind-Up Key + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1335 + - Id: 31380 + AegisName: C_Crow + Name: C Crow + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1035 + - Id: 31381 + AegisName: C_Diabolic_Lapel + Name: Costume Diabolic Lapel + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1681 + - Id: 31382 + AegisName: C_Cat_Ears_Punkish + Name: Costume Cat Ears Punkish + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1682 + - Id: 31383 + AegisName: C_Volume_Low_Twin + Name: Costume Volume Low Twin + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1683 + - Id: 31384 + AegisName: C_False_Ears + Name: Costume False Ears + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1684 + - Id: 31385 + AegisName: C_Gothic_Pumpkin_Head + Name: Costume Gothic Pumpkin Head + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1685 + - Id: 31386 + AegisName: C_Survive_Orb + Name: C Survive Orb + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1488 + - Id: 31387 + AegisName: C_Jjakk + Name: C Jjakk + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1687 + - Id: 31389 + AegisName: C_White_Bird_Rose + Name: C White Bird Rose + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1688 + - Id: 31390 + AegisName: C_Let_It_Snow + Name: C Let It Snow + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1690 + - Id: 31391 + AegisName: C_Floating_Stone_Of_Int + Name: C Floating Stone of Sage + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1230 + EquipScript: | + sc_start SC_FSTONE,INFINITE_TICK,0; + UnEquipScript: | + sc_end SC_FSTONE; + - Id: 31392 + AegisName: C_Radio_Antenna + Name: C Radio Antenna + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 347 + - Id: 31393 + AegisName: C_Vajra + Name: C Vajra + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 983 + - Id: 31394 + AegisName: C_Magician_White_Hat + Name: C Magician White Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 283 + - Id: 31395 + AegisName: C_Book_Of_Magic + Name: C Book of Magic + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1691 + - Id: 31396 + AegisName: C_Sorcerer_Hood + Name: C Sorcerer Hood + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1692 + - Id: 31397 + AegisName: C_Pope_Sitting_Head + Name: C Sitting Pope + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1553 + - Id: 31398 + AegisName: C_Blinking_Thin_Eyes + Name: C Blinking Thin Eyes + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1693 + - Id: 31399 + AegisName: C_Darkness_Veil + Name: C Darkness Veil + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1694 + - Id: 31400 + AegisName: C_Ribbon + Name: C Ribbon + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 17 + - Id: 31401 + AegisName: C_Nuns_Veil + Name: C Nuns Veil + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 176 + - Id: 31402 + AegisName: C_Idun_Green_Apple + Name: C Iduns Green Apple + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1698 + - Id: 31403 + AegisName: C_Wall + Name: C Wall + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1699 + - Id: 31404 + AegisName: C_Poring_Traffic_Light + Name: C Poring Traffic Light + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1700 + - Id: 31405 + AegisName: C_Eleanor_Wig_YL + Name: C Eleanor Wig Yellow + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1701 + - Id: 31406 + AegisName: C_Nydhog_Wig_WH + Name: C Nydhoggur Wig White + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1702 + - Id: 31407 + AegisName: C_Alice_Wig_PK + Name: C Alice Wig Peach + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1703 + - Id: 31408 + AegisName: C_Ragnarok_Rush_Goat + Name: C Ragnarok Rush Goat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 41 + - Id: 31409 + AegisName: C_Barrel_Helm + Name: C Barrel Helm + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1498 + - Id: 31410 + AegisName: C_GodsHelm + Name: Costume God's Helm + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1678 + - Id: 31411 + AegisName: C_Leo_Diadem + Name: C Leo Diadem + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 566 + - Id: 31412 + AegisName: C_Virgo_Crown + Name: C Virgo Crown + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 573 + - Id: 31413 + AegisName: C_Taurus_Crown + Name: C_ Taurus Crown + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 536 + - Id: 31414 + AegisName: C_Cancer_Diadem + Name: C Cancer Diadem + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 560 + - Id: 31415 + AegisName: C_Wanderer_Sakkat + Name: Costume Wanderer's Sakkat + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 558 + - Id: 31417 + AegisName: C_Rice_Ball_Hat + Name: C Rice Ball Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 556 + - Id: 31418 + AegisName: C_Leek_In_Mouth + Name: C Green Onion in Mouth + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 824 + - Id: 31420 + AegisName: C_Shining_Santa_Poring + Name: C Shining Santa Poring + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 961 + - Id: 31430 + AegisName: C_Seppl_Hat_TW + Name: "Costume: Seppl Hat" + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1023 + - Id: 31431 + AegisName: C_Curupira_Hat_TW + Name: "Costume: Curupira Hat" + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 974 + - Id: 31432 + AegisName: C_Luwmin_Ice + Name: C Floating Ice + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1562 + - Id: 31433 + AegisName: C_Astro_Circle + Name: Costume Astro Circle + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1073 + - Id: 31434 + AegisName: C_Cloud_Burst + Name: C Cloud Burst + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 705 + - Id: 31435 + AegisName: C_Ghost_Magicians_Knit_Hat + Name: C Ghost Magicians Knit Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 854 + - Id: 31436 + AegisName: C_Lazy_Cat + Name: C Lazy Cat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 274 + - Id: 31437 + AegisName: C_Baby_Penguin + Name: C Baby Penguin + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1705 + - Id: 31438 + AegisName: C_Fluffy_Angel_Cape + Name: C Fluffy Angel Cape + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1706 + - Id: 31439 + AegisName: C_Fluffy_Heart_Earmuffs + Name: C Fluffy Heart Earmuffs + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1707 + - Id: 31440 + AegisName: C_Snow_Bear_Food + Name: C Snow Bear Hood + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1708 + - Id: 31441 + AegisName: C_Penguin_Cap_BU + Name: C Penguin Cap Blue + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1709 + - Id: 31442 + AegisName: C_Smile_Mask_Middle + Name: C Smile Mask Middle + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 65 + - Id: 31443 + AegisName: C_Munak_Hat_ + Name: C Munak Hat Upper + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 51 + - Id: 31444 + AegisName: C_Bongun_Hat_ + Name: C Bongun Hat Upper + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 139 + - Id: 31446 + AegisName: C_Toy_Syringe + Name: C Toy Syringe + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 842 + - Id: 31447 + AegisName: C_Light_Moonlight_Hat + Name: C Light Moonlight_Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 913 + - Id: 31448 + AegisName: C_Stings_Silk_Ribbon + Name: C Stings Silk Ribbon + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1457 + - Id: 31449 + AegisName: C_Blue_Rose_Eyepatch + Name: C Blue Rose Eyepatch + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1712 + - Id: 31450 + AegisName: C_Lolita_Two_Side_Up + Name: C Lolita Two Side Up + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1713 + - Id: 31451 + AegisName: C_Blue_Frill_Ribbon + Name: C Blue Frill Ribbon + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1714 + - Id: 31452 + AegisName: C_White_Cat + Name: C White Cat + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1715 + - Id: 31453 + AegisName: C_L_RibbonMuff_Black + Name: C Large Ribbon Muffler Black + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1716 + - Id: 31454 + AegisName: C_Love_Feelings + Name: C Love Feelings + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1717 + - Id: 31455 + AegisName: C_Enchanted_Dog + Name: C Super Cute Dog + Type: Armor + Locations: + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1718 + - Id: 31456 + AegisName: C_Baby_Leopard_Cat + Name: C Baby Leopard Cat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1719 + - Id: 31457 + AegisName: C_Laughing_Wonderful_Wolf_Hat + Name: C Laughing Wonderful Wolf Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1016 + - Id: 31459 + AegisName: C_Sweet_Bonbon + Name: Costume Sweets Bonbon + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 853 + - Id: 31460 + AegisName: C_Blessing_Sky_Lantern + Name: C Blessing Sky Lantern + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1720 + - Id: 31463 + AegisName: C_Flying_Drone + Name: C Flying Drone + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1561 + - Id: 31464 + AegisName: C_Bloom_Afro + Name: C Bloom Afro + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 837 + - Id: 31465 + AegisName: C_Robin_Egg_Minihat + Name: C Robin Egg Minihat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1722 + - Id: 31466 + AegisName: C_Holy_Eggshell + Name: C Holy Egg Shell + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 537 + - Id: 31467 + AegisName: C_Evil_Eggshell + Name: C Evil Eggshell + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 999 + - Id: 31468 + AegisName: C_Stripe_Hat + Name: C Stripe Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1728 + - Id: 31469 + AegisName: C_Eleanor_Wig_R + Name: Rental C Eleanors Wig Lower + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1502 + - Id: 31470 + AegisName: C_Scroll_of_Tengu + Name: C Scroll of Tengu + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1445 + - Id: 31471 + AegisName: C_Celestial_Flower + Name: C Celestial Flower + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 438 + - Id: 31472 + AegisName: C_Fairy_Feathers + Name: C Fairy Feathers + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1723 + - Id: 31473 + AegisName: C_Tipsy + Name: C Tipsy + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1724 + - Id: 31474 + AegisName: C_Straight_Long_BL + Name: C Straight Long Black + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1725 + - Id: 31475 + AegisName: C_Black_Fox_Ear_Ribbon + Name: C Black Fox Ears Ribbon + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1726 + - Id: 31476 + AegisName: C_Cherry_Blossom_Hat_YL + Name: C Yellow Cherry Blossom Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1727 + - Id: 31477 + AegisName: C_Straight_Long_BL_ + Name: Rental C Straight Long Black + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1725 + - Id: 31478 + AegisName: C_Eleanor_Wig_ + Name: C Eleanors Wig Lower + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1502 + - Id: 31479 + AegisName: C_ManyStars_TW + Name: Costume Group of Stars + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1729 + Script: | + hateffect(HAT_EF_MANYSTARS,true); + UnEquipScript: | + hateffect(HAT_EF_MANYSTARS,false); + - Id: 31481 + AegisName: C_CatCoffeeCup_TW + Name: C TriColor CatCup + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1731 + - Id: 31483 + AegisName: C_CatEarRibbon_TW + Name: Costume Cat Ear Ribbon + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1733 + - Id: 31484 + AegisName: C_JP_EV13 + Name: C BearCompanion Female + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1736 + - Id: 31485 + AegisName: C_JP_EV14 + Name: C BearCompanion Male + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1737 + - Id: 31486 + AegisName: C_Divers_Goggles + Name: C Diver's Goggles + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 10 + - Id: 31487 + AegisName: C_Eye_Bandage + Name: C Eye Bandage + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 13 + - Id: 31488 + AegisName: C_MVP + Name: Costume MVP + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1738 + - Id: 31489 + AegisName: C_Bouquet_Hat + Name: Costume Bouquet Cap + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1739 + - Id: 31490 + AegisName: C_Poring_Muffler + Name: C Poring Muffler + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1740 + - Id: 31491 + AegisName: C_Orange_Tabby_Cat + Name: C Orange Tabby Cat + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1741 + - Id: 31492 + AegisName: C_Cat_Ears_Cape_Brown + Name: C Brown Cat Ears Cape + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1742 + - Id: 31493 + AegisName: C_Volume_Low_Twin_WH + Name: C Volume Low Twin WH + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1743 + - Id: 31494 + AegisName: C_Volume_Low_Twin_Upper + Name: C Volume Low Twin + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1683 + - Id: 31495 + AegisName: C_Lolita_Two_Side_Up_ + Name: C Lolita Two Side Up Upper + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1713 + - Id: 31496 + AegisName: C_Yggdrasil_Crown + Name: C Yggdrasil Crown + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 746 + - Id: 31498 + AegisName: C_Elephangel_TH + Name: C Elephangel + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1745 + - Id: 31499 + AegisName: C_Easter_Egg_Shell + Name: C Easter Egg Shell + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 537 + - Id: 31504 + AegisName: C_Starving_Fish_Hat + Name: C Large Hungry Fish + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 844 + - Id: 31505 + AegisName: C_Falcon_Mask + Name: C Falcon Mask + Type: Armor + Locations: + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 782 + - Id: 31506 + AegisName: C_Cat_Ear_Bandana + Name: C Cat Ear Bandana + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1587 + - Id: 31507 + AegisName: C_Drooping_Cat_Yellow + Name: C Drooping Cat Yellow + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 278 + - Id: 31508 + AegisName: C_Isabella_Blue_Ears + Name: C Isabella Blue Ears + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1032 + - Id: 31509 + AegisName: C_Fawn_Ear + Name: C Fawn Ears + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1751 + - Id: 31510 + AegisName: C_ShortHair_CatEar + Name: C Short Haired Cat Ears + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1752 + - Id: 31511 + AegisName: C_LongHair_CatEar + Name: C Long Haired Cat Ears + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1753 + - Id: 31512 + AegisName: C_Panda_Rabbit + Name: C Panda Rabbit + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1754 + - Id: 31513 + AegisName: C_Black_Rabbit_Ears + Name: C Black Rabbit Ears + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1755 + - Id: 31516 + AegisName: C_Mini_Melon + Name: C Mini Melon + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1758 + - Id: 31517 + AegisName: C_JP_EV15 + Name: C Fluffy Cat + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1762 + - Id: 31518 + AegisName: C_Popping_Popcorn_Hat + Name: C Popping Popcorn Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1763 + - Id: 31519 + AegisName: C_Noodles_Hat + Name: C Noodles Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1764 + - Id: 31520 + AegisName: C_Popcorn_Hat + Name: C Popcorn Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 415 + - Id: 31521 + AegisName: C_Yuzu_Helmet + Name: C Yuzu Helmet + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 791 + - Id: 31522 + AegisName: C_Orange_Helmet + Name: C Orange Helmet + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 841 + - Id: 31523 + AegisName: C_Pomelo_Helmet + Name: C Pomelo Helmet + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 924 + - Id: 31524 + AegisName: C_Bento_Hat + Name: C Bento Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1766 + - Id: 31526 + AegisName: C_Shaman_Hat + Name: C Shaman Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 596 + - Id: 31527 + AegisName: C_Radiant_Rainbow_Wings + Name: C Radiant Rainbow Wings + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1186 + - Id: 31528 + AegisName: C_Star_Dust_Hairband + Name: C Star Dust Hairband + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 831 + - Id: 31529 + AegisName: C_Happy_Rabbit_Ribbon + Name: C Happy Rabbit Ribbon + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1769 + - Id: 31531 + AegisName: C_Lovely_Heart_Cap + Name: C Lovely Heart Cap + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1770 + - Id: 31533 + AegisName: C_Warm_Cat_Muffler_BL + Name: C Warm Cat Muffler Black + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1771 + - Id: 31538 + AegisName: C_Lovely_Feeling + Name: C Lovely Feeling + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1717 + - Id: 31540 + AegisName: C_GeminiS58_Eyes_Red + Name: C GeminiS58 Eyes Red + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1654 + - Id: 31541 + AegisName: C_Drosera_Hairpin + Name: C Drosera Hairpin + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 850 + - Id: 31542 + AegisName: C_Clay_Poring_Jar + Name: C Clay Poring Jar + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1634 + - Id: 31543 + AegisName: C_Siorava_Hat + Name: C Siorava Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1774 + - Id: 31544 + AegisName: C_Piamette_Curls + Name: Costume Piamette Curls + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1775 + - Id: 31545 + AegisName: C_Eremes_Scarf_BU + Name: C Eremes Scarf Blue + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1776 + - Id: 31546 + AegisName: C_Clock_Casket_RD + Name: C Clock Casket Red + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1777 + - Id: 31547 + AegisName: C_Poporing_Mascot_Head + Name: C Poporing Mascot Head + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1778 + - Id: 31548 + AegisName: C_Love_Cheek_Lower + Name: C Love Cheeks Lower + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1318 + - Id: 31549 + AegisName: C_Little_Aquarium_Lower + Name: C Little Aquarium Lower + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1363 + - Id: 31550 + AegisName: C_Tone_of_Gold_Mid + Name: C Tone of Gold Mid + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1447 + - Id: 31551 + AegisName: C_Black_Glasses_Lower + Name: C Black Glasses Lower + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 404 + - Id: 31552 + AegisName: C_Blue_Ribbon_Mid + Name: C Blue Ribbon Mid + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 407 + - Id: 31553 + AegisName: C_Wings_Of_Victory_Mid + Name: C Wings Of Victory Mid + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 365 + - Id: 31554 + AegisName: C_Bread_Bag_Mid + Name: C Bread Bag Mid + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 412 + - Id: 31555 + AegisName: C_Hoplite_Helmet_Upper + Name: C Hoplite Helmet Upper + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 660 + - Id: 31556 + AegisName: C_Moonlight_Flower_Hat_Upper + Name: C Moonlight Flower Hat Upper + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 268 + - Id: 31559 + AegisName: C_Royalguard_Necklace + Name: C Royal Guard Necklace + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1629 + - Id: 31560 + AegisName: C_Clergy_Nurse_Cap + Name: C Nurse Cap of Clergy + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1359 + - Id: 31561 + AegisName: C_Heavenly_Dark_Flame + Name: C Heavenly Dark Flame + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1008 + - Id: 31562 + AegisName: C_Zealotus Doll + Name: C Zealotus Doll + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1376 + - Id: 31563 + AegisName: C_Blue_Eye_Shadow + Name: C Blue Eye Shadow + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1020 + - Id: 31564 + AegisName: C_Variant_Veil + Name: C Variant Veil + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1785 + - Id: 31565 + AegisName: C_Princess_Ribbon_Crown + Name: C Princess Ribbon Crown + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1786 + - Id: 31566 + AegisName: C_Stole_Of_Dominion + Name: C Stole Of Dominion + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1784 + - Id: 31567 + AegisName: C_Sheep_Horn + Name: C Sheep Horns + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1783 + - Id: 31568 + AegisName: C_Floating_Ball_TW + Name: Costume Floating Ball + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1760 + - Id: 31569 + AegisName: C_OpenAir_Headset + Name: C Open Air Headset + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1655 + - Id: 31570 + AegisName: C_Cyclops_Visor + Name: C Cyclops Visor + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 207 + - Id: 31571 + AegisName: C_Guardian_Processor + Name: C Guardian Processor + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1552 + - Id: 31572 + AegisName: C_Mobile_Pursuit_System + Name: C Mobile Pursuit System + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1788 + - Id: 31573 + AegisName: C_Mecha_Cat_Ears + Name: C Mecha Cat Ears + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1789 + - Id: 31574 + AegisName: C_Cyber_Income + Name: C Cyber Income + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1790 + - Id: 31575 + AegisName: C_Electro_Two_Sides_Up + Name: C Electro Two Sides Up + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1791 + - Id: 31576 + AegisName: C_Moon_Rabbit_Hat + Name: C Moon Rabbit Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 455 + - Id: 31577 + AegisName: C_Roast_Memory_Upper + Name: C Roast Memory Upper + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1576 + - Id: 31578 + AegisName: C_Alchemist_Mask_ML + Name: C Alchemist Mask + Type: Armor + Locations: + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1497 + - Id: 31579 + AegisName: C_Love_Games + Name: C I LOVE GAMES + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1306 + - Id: 31580 + AegisName: C_Autumn_Flavor + Name: C Autumn Flavor + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1792 + - Id: 31581 + AegisName: C_Jack_Upper + Name: C Jack Upper + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1415 + - Id: 31582 + AegisName: C_Jirant_Circlet + Name: C Jirant Circlet + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1644 + - Id: 31583 + AegisName: C_Will_O_Wisp_Lower + Name: C Will O Wisp Lower + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 880 + EquipScript: | + sc_start SC_STRANGELIGHTS,INFINITE_TICK,0; + UnEquipScript: | + sc_end SC_STRANGELIGHTS; + - Id: 31586 + AegisName: C_Poporing_Muffler + Name: C Poporing Muffler + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1797 + - Id: 31588 + AegisName: C_Snow_Flower + Name: C Snow Flower + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1799 + Script: | + hateffect(HAT_EF_SNOWFLAKE_TIARA,true); + UnEquipScript: | + hateffect(HAT_EF_SNOWFLAKE_TIARA,false); + - Id: 31589 + AegisName: C_Golden_Majestic_Goat + Name: C Golden Majestic Goat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1800 + - Id: 31590 + AegisName: C_Designer_Brush + Name: C Designer's Brush + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1291 + - Id: 31593 + AegisName: C_Yellow_Scarf + Name: C Yellow Scarf + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1170 + - Id: 31594 + AegisName: C_Red_Pencil_In_Mouth + Name: C Red Pencil in Mouth + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 931 + - Id: 31595 + AegisName: C_Book_File_Hat + Name: C Book File Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 423 + - Id: 31596 + AegisName: C_Spider_Seduction + Name: C Spider Seduction + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1711 + - Id: 31597 + AegisName: C_Golden_Fish_Hat + Name: C Golden Fish Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1645 + - Id: 31598 + AegisName: C_Forest_Guide + Name: C Forest Guide + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1802 + - Id: 31599 + AegisName: C_Medium_Wave + Name: C Medium Wave + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1803 + - Id: 31600 + AegisName: C_Kishu_Inu + Name: C Kishu Dog + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1804 + - Id: 31601 + AegisName: C_Under_Rim_Glasses_Blue + Name: C Under Rim Glasses Blue + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1805 + - Id: 31602 + AegisName: C_Midgarts_Glory + Name: C Rune-Midgarts Glory + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1807 + Script: | + hateffect(HAT_EF_MIDGARTS_GLORY,true); + UnEquipScript: | + hateffect(HAT_EF_MIDGARTS_GLORY,false); + - Id: 31606 + AegisName: C_Autumn_Headband + Name: C Autumn Headband + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1119 + - Id: 31607 + AegisName: C_Cat_Ear_Witch_Hat + Name: C Cat Ear Witch Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1808 + - Id: 31608 + AegisName: C_Magicstone_of_Grace + Name: C Magic Stone of Grace + Type: Armor + Locations: + Costume_Head_Top: true + Costume_Head_Mid: true + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1420 + - Id: 31609 + AegisName: C_Noble_Mask + Name: C Noble Mask + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1409 + - Id: 31610 + AegisName: C_Yellow_Wizardry_Hat + Name: C Yellow Wizardry Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 286 + - Id: 31611 + AegisName: C_Dark_Snake_Lord_Stall + Name: C Snake Lord Stole + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1810 + - Id: 31612 + AegisName: C_Large_Sorcerer_Crown + Name: C Large Sorcerer Crown + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1811 + - Id: 31614 + AegisName: C_Fox + Name: C Fox + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1812 + - Id: 31615 + AegisName: Costume_Geisha_Make_Up + Name: C Geisha Make Up + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1813 + - Id: 31616 + AegisName: C_Sleep_Sheep_TW + Name: C Sleep Sheep + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1814 + - Id: 31624 + AegisName: C_HeartOfCat_TW + Name: C Heart of Cat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1822 + - Id: 31625 + AegisName: C_Protect_Cloth + Name: C Protection Cloth + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1761 + - Id: 31628 + AegisName: C_Bogy_Cap_TW + Name: C Dokebi + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 430 + - Id: 31630 + AegisName: Costume_Baphomet_Balloon + Name: C Baphomet Balloon + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1746 + - Id: 31631 + AegisName: Costume_Drooping_Schmidt + Name: C Drooping Schmidt + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1859 + - Id: 31632 + AegisName: Costume_Drooping_Oscar + Name: C Drooping Oscar + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1860 + - Id: 31633 + AegisName: Costume_Drooping_Heinrich + Name: C Drooping Heinrich + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1861 + - Id: 31634 + AegisName: Costume_Reindeer_Hair_Band + Name: C Reindeer Hair Band + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 836 + - Id: 31635 + AegisName: Costume_Flowing_Long_BD + Name: C Flowing Long Blonde + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1832 + - Id: 31636 + AegisName: Costume_Flowing_Long_SV + Name: C Flowing Long Silver + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1833 + - Id: 31637 + AegisName: Costume_Straight_Long_BU + Name: C Straight Long Blue + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1834 + - Id: 31638 + AegisName: Costume_Straight_Long_RD + Name: C Straight Long Red + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1835 + - Id: 31639 + AegisName: Costume_Straight_Long_BD + Name: C Straight Long Blonde + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1836 + - Id: 31640 + AegisName: Costume_Straight_Long_GN + Name: C Straight Long Green + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1837 + - Id: 31641 + AegisName: Costume_Straight_Long_JBL + Name: C Straight Long Jet Black + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1838 + - Id: 31642 + AegisName: Costume_Straight_Long_LPP + Name: C Straight Long Light Purple + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1839 + - Id: 31643 + AegisName: Costume_Straight_Long_OM + Name: C Straight Long Brown + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1840 + - Id: 31644 + AegisName: Costume_Straight_Long_PP + Name: C Straight Long Purple + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1841 + - Id: 31645 + AegisName: Costume_Side_Pony_BU + Name: C Side Pony Blue + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1842 + - Id: 31646 + AegisName: Costume_Side_Pony_RD + Name: C Side Pony Red + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1843 + - Id: 31647 + AegisName: Costume_Side_Pony_BD + Name: C Side Pony Blonde + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1844 + - Id: 31648 + AegisName: Costume_Side_Pony_GN + Name: C Side Pony Green + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1845 + - Id: 31649 + AegisName: Costume_Side_Pony_BL + Name: C Side Pony Black + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1846 + - Id: 31650 + AegisName: Costume_Side_Pony_WH + Name: C Side Pony White + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1847 + - Id: 31651 + AegisName: Costume_Side_Pony_OM + Name: C Side Pony Brown + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1848 + - Id: 31652 + AegisName: Costume_Side_Pony_PP + Name: C Side Pony Purple + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1849 + - Id: 31653 + AegisName: Costume_Chignon_BU + Name: C Chignon Blue + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1850 + - Id: 31654 + AegisName: Costume_Chignon_RB + Name: C Chignon Red + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1851 + - Id: 31655 + AegisName: Costume_Chignon_BD + Name: C Chignon Blonde + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1852 + - Id: 31656 + AegisName: Costume_Chignon_GN + Name: C Chignon Green + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1853 + - Id: 31657 + AegisName: Costume_Chignon_BL + Name: C Chignon Black + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1854 + - Id: 31658 + AegisName: Costume_Chignon_WH + Name: C Chignon White + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1855 + - Id: 31659 + AegisName: Costume_Chignon_OM + Name: C Chignon Brown + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1856 + - Id: 31660 + AegisName: Costume_Chignon_PP + Name: C Chignon Purple + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1857 + - Id: 31664 + AegisName: Costume_Desert_Wolf_Hat + Name: C Drooping Ernst Von Wolf 11th + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 783 + - Id: 31667 + AegisName: Costume_Poring_Beret + Name: C Poring Beret + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1825 + - Id: 31668 + AegisName: Costume_Majorous_Horns + Name: C Majorous Horns + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 888 + - Id: 31669 + AegisName: C_Adv_Whisper_Mask_M + Name: C Evolved Whisper Mask Mid + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 458 + - Id: 31670 + AegisName: C_Miyabi_Long_Hair + Name: C Miyabi Long Hair + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1864 + - Id: 31671 + AegisName: Costume_Twin_Cannon + Name: C Twin Cannon + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1865 + - Id: 31672 + AegisName: Costume_Mermaid_Wig + Name: C Mermaid Wig + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1866 + - Id: 31673 + AegisName: C_Picnic_Basket + Name: C Picnic Basket + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1867 + - Id: 31674 + AegisName: Costume_Jitterbug_Cap + Name: C Jitterbug Cap + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1868 + - Id: 31675 + AegisName: Costume_Orange_Hat + Name: C Orange Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 620 + - Id: 31676 + AegisName: Costume_Orange_In_Mouth + Name: C Orange In Mouth + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 814 + - Id: 31682 + AegisName: Costume_Drooping_Elven_Ears + Name: C Drooping Elven Ears + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 875 + - Id: 31684 + AegisName: Costume_Kururinpa_Tails + Name: C Kururinpa Tails + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1873 + - Id: 31685 + AegisName: Costume_Fluffy_Semi_Long + Name: C Fluffy Semi Long + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1874 + - Id: 31686 + AegisName: Costume_Desert_Wolf_Baby + Name: C Desert Wolf Baby + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1875 + - Id: 31687 + AegisName: Costume_Alchemist_Bag + Name: C Alchemist Bag + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1876 + - Id: 31688 + AegisName: C_Poring_On_Shoulder + Name: C Poring On Shoulder + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1877 + - Id: 31689 + AegisName: C_Piamette_Curls_ + Name: C Piamette Curls + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1775 + - Id: 31690 + AegisName: Costume_Flame_Bird + Name: C Flame Bird + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 832 + - Id: 31691 + AegisName: C_Bell_Pigeon_Low + Name: Costume Bell of Pigeon Lower + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1034 + - Id: 31692 + AegisName: Costume_Dragon_Emperor_Wings + Name: C Dragon Emperor Wings + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1413 + - Id: 31693 + AegisName: C_LunaticMuffler + Name: C Lunatic Muffler + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1732 + - Id: 31695 + AegisName: Costume_Stem_In_Mouth + Name: C Stem in Mouth + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 848 + - Id: 31696 + AegisName: Costume_Shark_Hat + Name: C Shark Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 503 + - Id: 31697 + AegisName: Costume_Bird_Nest + Name: C Bird Nest + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 201 + - Id: 31698 + AegisName: C_Pigtail_Red_Hood + Name: C Red Riding Hood + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1879 + - Id: 31699 + AegisName: C_Smiling_Eyes + Name: C Smiling Eyes + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1880 + - Id: 31702 + AegisName: Costume_Moon_Cat_Hat + Name: C Moon Cat Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1308 + - Id: 31703 + AegisName: Costume_Valentine_Hat + Name: C Love Valentine's Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 397 + - Id: 31704 + AegisName: Costume_Sweet_Valentine_Out + Name: C Sweet Valentine Out + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 865 + - Id: 31705 + AegisName: Costume_Red_White_Hat + Name: C Red Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 469 + - Id: 31706 + AegisName: Costume_Trident_Helmet + Name: C Trident Helm + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 810 + - Id: 31707 + AegisName: Costume_Nine_Tail_Fox_Hair + Name: C Nine Tail Fox Hair + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1884 + - Id: 31708 + AegisName: Costume_Gothic_Skull_Ribbon + Name: C Gothic Skull Ribbon + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1885 + - Id: 31709 + AegisName: Costume_Golden_Violet + Name: C Golden Violet + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1886 + - Id: 31710 + AegisName: Costume_Lucky_Hat + Name: C Lucky Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 31710 + - Id: 31711 + AegisName: Costume_Jewel_Crown + Name: C Jewel Crown + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 88 + - Id: 31712 + AegisName: Costume_Oxygen_Mask + Name: C Oxygen Mask + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 90 + - Id: 31713 + AegisName: Costume_Mystical_Fruit_Hat + Name: Costume Mystical Fruit Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 134 + - Id: 31714 + AegisName: Costume_Indian_Headband + Name: Costume Indian Headband + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 155 + - Id: 31715 + AegisName: Costume_Orange_Rabbit + Name: C Orange Rabbit + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1887 + - Id: 31716 + AegisName: Costume_Twinkling_Red_Eyes + Name: Costume Twinkling Red Eyes + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1888 + - Id: 31717 + AegisName: Costume_Medium_Wave_BD + Name: C Medium Wave Blonde + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1889 + - Id: 31718 + AegisName: Costume_Sky_Lantern_Mid + Name: C Blessing Sky Lantern Mid + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1720 + - Id: 31719 + AegisName: Costume_Master_Of_Flames + Name: C Master Of Flames + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1890 + - Id: 31720 + AegisName: Costume_Vesper_Hat + Name: C Vesper Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1827 + - Id: 31721 + AegisName: Costume_Resonating_Drums + Name: C Resonating Drums + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1823 + - Id: 31723 + AegisName: Costume_TW_Rice_Ball + Name: C Tw Rice Ball + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 892 + - Id: 31724 + AegisName: Costume_TW_Bulgogi + Name: C Tw Bulgogi + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1773 + - Id: 31729 + AegisName: Costume_Miracle_Plant + Name: C Miracle Plant + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1893 + - Id: 31730 + AegisName: Costume_Volume_Low_Twin_SK + Name: C Volume Low Twin Sakura + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1894 + - Id: 31731 + AegisName: Costume_Sweets_Party + Name: C Sweets Party + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1896 + - Id: 31732 + AegisName: Costume_Bear_Balloon + Name: C Bear Balloon + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1734 + - Id: 31733 + AegisName: Costume_Phantom_Masquerade + Name: C Phantom Masquerade + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1899 + - Id: 31734 + AegisName: Costume_Cirtrus_Ribbon + Name: C Citrus Ribbon + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1900 + - Id: 31735 + AegisName: Costume_Yawata_Seal + Name: C Yawata Seal + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1901 + - Id: 31736 + AegisName: Costume_Popcorn_Wig + Name: C Popcorn Wig + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1895 + - Id: 31762 + AegisName: Costume_Gambler_Card + Name: C Heart Card in Mouth + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1679 + - Id: 31763 + AegisName: Costume_Fortier_Mask + Name: C Fortier Mask + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 876 + - Id: 31764 + AegisName: C_Rainbow_Veil_Mid + Name: Costume Rainbow Veil Mid + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 992 + - Id: 31765 + AegisName: C_Garnet_Tiara + Name: C Garnet Tiara + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1906 + - Id: 31766 + AegisName: C_Peony_Hair_Ornament + Name: C Peony Hair Ornament + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1907 + - Id: 31769 + AegisName: Costume_Orange_Bunny_Band + Name: C Orange Bunny Band + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 751 + - Id: 31770 + AegisName: Costume_Violet_Bunny_Band + Name: C Violet Bunny Band + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 752 + - Id: 31771 + AegisName: Costume_Blue_Bunny_Band + Name: C Blue Bunny Band + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 753 + - Id: 31772 + AegisName: Costume_Silver_Bunny_Band + Name: C Silver Bunny Band + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 754 + - Id: 31783 + AegisName: Costume_Doram_Balloon + Name: C Doram Baloon + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1595 + - Id: 31784 + AegisName: Costume_Experimental_Goat_Cap + Name: C Experimental Goat Cap + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1768 + - Id: 31785 + AegisName: Costume_Monster_Fish_Gill + Name: C Monster Fish Gills + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1218 + - Id: 31786 + AegisName: Costume_Red_Baby_Dragon_Hat + Name: C Red Baby Dragon Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1463 + - Id: 31787 + AegisName: C_SavageB_On_Shoulder + Name: C Savage Bebe On Shoulder + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1915 + - Id: 31788 + AegisName: C_Piamette_Curls_SV + Name: C Piamette Curls Silver + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1916 + - Id: 31789 + AegisName: Costume_Turkey_Hat + Name: C Turkey Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + - Id: 31791 + AegisName: Costume_Pig_Mask + Name: C Pig Mask + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1869 + - Id: 31793 + AegisName: Costume_Seraphim_Feather + Name: C Seraphim Feather + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1704 + - Id: 31794 + AegisName: Costume_Puppy_Ears_Hat + Name: C Puppy_Ears_Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 827 + - Id: 31795 + AegisName: C_Elephangel_TH_Mid + Name: C Elephangel Mid + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1745 + - Id: 31796 + AegisName: Costume_Drooping_Boto + Name: C Drooping Boto + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 657 + - Id: 31797 + AegisName: Costume_Shih_Tzu_Hair + Name: C Shih Tzu Hair + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1921 + - Id: 31798 + AegisName: C_Baby_Panda + Name: C Baby Panda + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1922 + - Id: 31799 + AegisName: C_Pretty_Bear_WH + Name: C Pretty White Bear + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1923 + - Id: 31800 + AegisName: Costume_BR_Twin_Ribbon + Name: C Brazil Twin Ribbon + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 575 + - Id: 31801 + AegisName: Costume_Karada_Meguri_Tea_Hat + Name: C Karada Meguri Tea Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 427 + - Id: 31802 + AegisName: Costume_Royal_Milk_Tea_Hat + Name: C Black Tea Kochakaden Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 428 + - Id: 31803 + AegisName: Costume_Master_Of_Wind + Name: C Master of Wind + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1924 + - Id: 31813 + AegisName: Costume_Lunatic_On_Shoulder + Name: C Lunatic On Shoulder + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1881 + - Id: 31814 + AegisName: Costume_Lunatic_Family_Balloon + Name: C Lunatic Family Balloon + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1809 + - Id: 31815 + AegisName: Costume_Angola_Intention + Name: C Angola Intention + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1925 + - Id: 31816 + AegisName: Costume_Moon_Messenger_Robe + Name: C Moon Messenger Robe + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1926 + - Id: 31817 + AegisName: Costume_Rabbit_Two_Side_Up + Name: C Rabbit Two Side Up + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1927 + - Id: 31819 + AegisName: Costume_Dullahan_Mask + Name: C Dullahan Mask + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1931 + - Id: 31823 + AegisName: Costume_Nose_Glasses + Name: C Nose Glasses + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1933 + - Id: 31824 + AegisName: Costume_Cat_Mask + Name: C Mask of Cat + Type: Armor + Locations: + Costume_Head_Mid: true + EquipLevelMin: 1 + View: 1934 + - Id: 31826 + AegisName: Costume_Sunglass_Bear_Cap + Name: C Sunglass Bear Cap + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1935 + - Id: 31827 + AegisName: Costume_Durumagi + Name: C Durumagi + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1936 + - Id: 31831 + AegisName: Costume_Disguise_Mantle + Name: C Disguise Mantle + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1937 + - Id: 31832 + AegisName: C_Bicolor_Cat_Witch_Hat + Name: C Bicolor Cat Witch Hat + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1938 + - Id: 31833 + AegisName: C_Halloween_CatShort + Name: C Halloween Short Haired Cat Ears + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1939 + - Id: 31834 + AegisName: C_Halloween_Cat_Long + Name: C Halloween Long Haired Cat Ears + Type: Armor + Locations: + Costume_Head_Low: true + EquipLevelMin: 1 + View: 1940 + - Id: 31837 + AegisName: Costume_Shark_Head + Name: C Shark Head + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1919 + - Id: 31840 + AegisName: Costume_BJ_Headset_A + Name: C BJ Headset + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1942 + - Id: 31841 + AegisName: Costume_BJ_Headset_B + Name: C OnAir BJ Headset + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1943 + - Id: 31884 + AegisName: C_Magic_Helm + Name: Costume Magic Helm + Type: Armor + Locations: + Costume_Head_Top: true + EquipLevelMin: 1 + View: 1917 + - Id: 32005 + AegisName: Illusion_Pole_Axe + Name: Illusion Pole Axe + Type: Weapon + SubType: 1hSpear + Weight: 1500 + Attack: 190 + Range: 3 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 120 + Refineable: true + Script: | + .@r = getrefine(); bonus bStr,3; bonus bInt,2; bonus bDex,2; if (.@r >= 13) { .@val = -2000; } else if (.@r >= 9) { .@val = -1000; } bonus2 bSkillCooldown,"RK_HUNDREDSPEAR",.@val; + - Id: 32013 + AegisName: Metal_Stick + Name: Metal Stick + Type: Weapon + SubType: 1hSpear + Weight: 2000 + Attack: 180 + Range: 3 + Slots: 3 + Jobs: + Crusader: true + Knight: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 150 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"LG_CANNONSPEAR",10; if(.@r > 6){ bonus2 bSkillAtk,"LG_OVERBRAND",10 + (.@r > 8 ? 15 : 0); } if(.@r > 11){ bonus bDelayrate,-15; } + - Id: 32014 + AegisName: Brute_Spear + Name: Brute Spear + Type: Weapon + SubType: 1hSpear + Attack: 150 + Range: 3 + Jobs: + Crusader: true + Knight: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bIgnoreDefRaceRate,RC_All,5*.@r; bonus2 bAddRace,RC_Player_Human,80 + (.@r > 8 ? 20 : 0) + (.@r > 7 ? 35 : 0); if(.@r > 9){ bonus bMaxHPrate,15; bonus bMaxSPrate,15; } + - Id: 32019 + AegisName: Boost_Lance-OS + Name: Boost Lance-OS + Type: Weapon + SubType: 1hSpear + Buy: 20 + Weight: 1000 + Attack: 190 + Range: 3 + Slots: 2 + Jobs: + Crusader: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 130 + Refineable: true + Script: | + .@r = getrefine(); .@aspd = 3; if (.@r >= 7) { .@aspd += 7; if (.@r >= 9) { .@dmg = 20; if (.@r >= 11) { .@dmg += 15; } bonus2 bSkillAtk,"LG_BANISHINGPOINT",.@dmg; } } bonus bAspdRate,.@aspd; + - Id: 32023 + AegisName: Argen_Blanco + Name: Argen Blanco + Type: Weapon + SubType: 1hSpear + Buy: 20 + Weight: 1000 + Attack: 200 + Range: 3 + Slots: 2 + Jobs: + Knight: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"KN_BRANDISHSPEAR",30; bonus bBaseAtk,4*.@r; if (.@r>=9) bonus2 bSkillCooldown,"RK_HUNDREDSPEAR",-1500; if (.@r>=11) bonus2 bSkillAtk,"KN_BRANDISHSPEAR",20; + - Id: 32024 + AegisName: Harve + Name: Harve + Type: Weapon + SubType: 1hSpear + Buy: 20 + Weight: 1500 + Attack: 210 + Range: 3 + Slots: 2 + Jobs: + Crusader: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"PA_SHIELDCHAIN",40; bonus bLongAtkRate,.@r; if (.@r>=9) bonus2 bSkillAtk,"LG_SHIELDPRESS",30; if (.@r>=11) { bonus2 bSkillAtk,"PA_SHIELDCHAIN",20; bonus2 bSkillAtk,"LG_SHIELDPRESS",20; } + - Id: 32025 + AegisName: Fortridge + Name: Fortridge + Type: Weapon + SubType: 1hSpear + Buy: 20 + Weight: 1700 + Attack: 205 + Range: 3 + Slots: 2 + Jobs: + Crusader: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); bonus bDelayrate,-.@r; bonus2 bAddClass,Class_All,5; if (.@r>=9) bonus2 bSkillAtk,"LG_CANNONSPEAR",20; if (.@r>=11) bonus2 bSkillAtk,"LG_OVERBRAND",20; + - Id: 32107 + AegisName: Black_Circle + Name: Black Circle + Type: Weapon + SubType: Whip + Weight: 1200 + Attack: 100 + MagicAttack: 190 + Range: 2 + Slots: 2 + Jobs: + BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); bonus bMatk,4*.@r; bonus2 bMagicAtkEle,Ele_Neutral,10; if (.@r>=9) bonus2 bSkillAtk,"WM_METALICSOUND",30; if (.@r>=11) bonus2 bSkillCooldown,"WM_METALICSOUND",-2000; + - Id: 32108 + AegisName: Antique_Cello + Name: Antique Cello + Type: Weapon + SubType: Musical + Weight: 1200 + Attack: 180 + Range: 2 + Slots: 2 + Jobs: + BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); bonus bVariableCastrate,-10; bonus bLongAtkRate,.@r; if (.@r>=9) bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-1000; if (.@r>=11) bonus2 bSkillUseSPrate,"WM_SEVERE_RAINSTORM",20; + - Id: 32203 + AegisName: Accelerator_Chip + Name: Accelerator Chip + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bAspdRate,5; + - Id: 32204 + AegisName: Immortal_Dog_Tag + Name: Immortal Dog Tag + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bBaseAtk,50; bonus bMatk,50; bonus2 bSubRace,RC_Undead,4; + - Id: 32206 + AegisName: Prontera_Militia_Glove + Name: Prontera Militia Glove + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bVit,5; bonus bMdef,5; bonus bAspdRate,5; bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3; bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Earth,5; bonus2 bSubEle,Ele_Wind,5; bonus2 bSubEle,Ele_Fire,5; + - Id: 32207 + AegisName: Illusion_Booster_R + Name: Illusion Booster R + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + EquipLevelMin: 130 + Script: | + bonus2 bAddClass,Class_All,5; + - Id: 32208 + AegisName: Illusion_Booster_L + Name: Illusion Booster L + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Locations: + Left_Accessory: true + EquipLevelMin: 130 + Script: | + bonus2 bAddClass,Class_All,5; + - Id: 32209 + AegisName: Illusion_Battle_chip_R + Name: Illusion Battle chip R + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + EquipLevelMin: 130 + Script: | + bonus bMatkRate,5; + - Id: 32210 + AegisName: Illusion_Battle_chip_L + Name: Illusion Battle chip L + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Locations: + Left_Accessory: true + EquipLevelMin: 130 + Script: | + bonus bMatkRate,5; + - Id: 32222 + AegisName: Brooch_of_Hero + Name: Brooch of Hero + Type: Armor + Buy: 20 + Weight: 400 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; if((eaclass()&EAJL_THIRD && BaseJob == Job_Knight) || ((eaclass()&EAJL_THIRD && BaseJob == Job_Crusader))) { bonus bMaxHPrate,10; bonus2 bAddRace,RC_All,5; } if((eaclass()&EAJL_THIRD && BaseJob == Job_Priest) || ((eaclass()&EAJL_THIRD && BaseJob == Job_Monk))) { bonus bAspdRate,10; bonus2 bAddRace,RC_All,5; } if((eaclass()&EAJL_THIRD && BaseJob == Job_Blacksmith) || ((eaclass()&EAJL_THIRD && BaseJob == Job_Alchemist))) { bonus bUseSPrate,-10; bonus2 bAddRace,RC_All,5; } + - Id: 32227 + AegisName: Hrodvitnir's_Chain + Name: Hrodvitnir's Chain + Type: Armor + Buy: 20 + Weight: 300 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bAspdRate,5; bonus bDelayrate,-5; skill "AL_TELEPORT",1; + - Id: 32228 + AegisName: Schmidt_Insignia_Power + Name: King Schmidt's Power Insignia + Type: Armor + Weight: 200 + Defense: 10 + Slots: 1 + Locations: + Left_Accessory: true + EquipLevelMin: 150 + Script: | + bonus2 bAddClass,Class_All,10; + - Id: 32229 + AegisName: Schmidt_Insignia_Divine_Power + Name: King Schmidt's Divine Power Insignia + Type: Armor + Weight: 200 + Defense: 10 + Slots: 1 + Locations: + Left_Accessory: true + EquipLevelMin: 150 + Script: | + bonus bMatkRate,10; + - Id: 32230 + AegisName: Schmidt_Insignia_Hundred_Lucks + Name: King Schmidt's Hundred Lucks Insignia + Type: Armor + Weight: 200 + Defense: 10 + Slots: 1 + Locations: + Left_Accessory: true + EquipLevelMin: 150 + Script: | + bonus bCritAtkRate,7; + - Id: 32231 + AegisName: Schmidt_Insignia_Rigid_Body + Name: King Schmidt's Rigid Body Insignia + Type: Armor + Weight: 200 + Defense: 10 + Slots: 1 + Locations: + Left_Accessory: true + EquipLevelMin: 150 + Script: | + bonus bMaxHPrate,10; + - Id: 32232 + AegisName: Schmidt_Insignia_Flash + Name: King Schmidt's Flash Insignia + Type: Armor + Weight: 200 + Defense: 10 + Slots: 1 + Locations: + Left_Accessory: true + EquipLevelMin: 150 + Script: | + bonus bAspdRate,5; + - Id: 32233 + AegisName: Schmidt_Insignia_Celestial + Name: King Schmidt's Celestial Insignia + Type: Armor + Weight: 200 + Defense: 10 + Slots: 1 + Locations: + Left_Accessory: true + EquipLevelMin: 150 + Script: | + bonus bLongAtkRate,7; + - Id: 32234 + AegisName: Warrior's_Ring + Name: Warrior's Ring + Type: Armor + Weight: 300 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus2 bAddClass,Class_All,5; bonus2 bMagicAddClass,Class_All,5; bonus2 bAddEle,Ele_Wind,10; bonus2 bAddEle,Ele_Earth,10; bonus2 bMagicAddEle,Ele_Wind,10; bonus2 bMagicAddEle,Ele_Earth,10; bonus2 bSubEle,Ele_Wind,5; bonus2 bSubEle,Ele_Earth,5; + - Id: 32237 + AegisName: Celine's_Brooch + Name: Celine's Brooch + Type: Armor + Buy: 10 + Weight: 500 + Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bMatkRate,5; bonus bVariableCastrate,-10; + - Id: 32238 + AegisName: Illusion_Morpheus's_Ring + Name: Illusion Morpheus's Ring + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + EquipLevelMin: 130 + Script: | + bonus bInt,3; bonus bMaxSPrate,5; + - Id: 32239 + AegisName: Illusion_Morpheus's_Bracelet + Name: Illusion Morpheus's Bracelet + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Locations: + Left_Accessory: true + EquipLevelMin: 130 + Script: | + bonus bInt,3; bonus bMaxSPrate,5; + - Id: 32242 + AegisName: Old_Detachment_Ring + Name: Old Detachment Ring + Type: Armor + Buy: 20 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bMdef,10; bonus2 bSubRace,RC_Player_Human,3; + - Id: 32258 + AegisName: Ring_of_Jupiter + Name: Ring of Jupiter + Type: Armor + Buy: 20 + Weight: 500 + Defense: 2 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + skill "AL_BLESSING",5; if (getequipid(EQI_ACC_R) == 32258) { bonus bBaseAtk,15*(readparam(bLuk)/10); bonus bMatk,15*(readparam(bLuk)/10); if (readparam(bLuk) >= 125) { bonus2 bAddClass,Class_Boss,15; bonus2 bMagicAddClass,Class_Boss,15; } } if (getequipid(EQI_ACC_L) == 32258) { bonus bMaxHPRate,2*(readparam(bVit)/10); bonus bMaxSPRate,2*(readparam(bVit)/10); if (readparam(bVit) >= 125) { bonus bDef,300; bonus bMdef,50; bonus2 bSubRace,RC_Player_Human,3; } } + - Id: 32262 + AegisName: Rasen_Fuma_Orb + Name: Rasen Fuma's Orb + Type: Armor + Buy: 20 + Weight: 100 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bStr,5; bonus bAgi,5; bonus bVit,5; bonus2 bAddClass,Class_All,5; if (getskilllv("KO_ZANZOU")>=5) { bonus2 bSkillAtk,"KO_HUUMARANKA",Baselevel/4; bonus2 bSkillAtk,"NJ_HUUMA",2*(Baselevel/4); } if (getskilllv("KO_KYOUGAKU")>=5) { bonus2 bSkillUseSP,"KO_HUUMARANKA",10; bonus2 bSkillCooldown,"KO_HUUMARANKA",-100; } if (getskilllv("KO_MUCHANAGE")==10) { bonus2 bHPDrainRate,50,1; } if (getskilllv("KO_MEIKYOUSISUI")>=5) { bonus bSPDrainValue,2; bonus2 bSkillCooldown,"KO_IZAYOI",-25000; } if (getskilllv("KO_SETSUDAN")>=5) { bonus2 bVariableCastrate,"KO_HUUMARANKA",-50; } + - Id: 32263 + AegisName: Shield_Ring + Name: Shield Ring + Type: Armor + Buy: 20 + Weight: 400 + Slots: 1 + Locations: + Right_Accessory: true + Left_Accessory: true + EquipLevelMin: 100 + Script: | + bonus bStr,5; bonus bInt,5; bonus bDex,5; bonus2 bAddClass,Class_All,5; if (getskilllv("LG_EARTHDRIVE")==5) bonus bDelayrate,-30; if (getskilllv("LG_INSPIRATION")==5) bonus2 bSkillCooldown,"LG_EARTHDRIVE",-1500; if (getskilllv("CR_DEVOTION")==5) { bonus bStr,5; bonus bInt,5; bonus bDex,5; bonus bBaseAtk,100; } if (getskilllv("LG_PINPOINTATTACK")==5) { bonus2 bSkillVariableCast,"LG_EARTHDRIVE",-500; bonus2 bSkillUseSP,"LG_EARTHDRIVE",25; } + - Id: 32301 + AegisName: Illusion_Gold_Lux + Name: Illusion Gold Lux + Type: Weapon + SubType: Revolver + Buy: 20 + Weight: 1800 + Attack: 160 + Range: 7 + Slots: 2 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 120 + Refineable: true + Script: | + .@r = getrefine(); bonus bHit,10; bonus bLongAtkRate,3*(.@r/2); if (.@r >= 7) { bonus2 bSkillAtk,"GS_DESPERADO",40; if (.@r >= 9) { bonus2 bSkillCooldown,"RL_HEAT_BARREL",-2000; if (.@r >= 11) { bonus2 bSkillAtk,"RL_FIREDANCE",30; } } } + - Id: 32302 + AegisName: Crimson_Rose + Name: Crimson Rose + Type: Weapon + SubType: Revolver + Buy: 20 + Weight: 700 + Attack: 150 + Range: 7 + Slots: 2 + Jobs: + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,3*(.@r/3); if (.@r >= 7) { bonus bAspd,1; bonus2 bAddClass,Class_All,5; if (.@r >= 9) { bonus bCritAtkRate,20; if (.@r >= 11) { autobonus3 "{ bonus bCritical,20; bonus bLongAtkRate,15; }",1000,60000,"RL_HEAT_BARREL"; } } } + - Id: 32350 + AegisName: Farthezan + Name: Farthezan + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 1100 + Attack: 130 + MagicAttack: 180 + Range: 1 + Slots: 2 + Jobs: + Crusader: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillAtk,"PA_PRESSURE",40; bonus bVariableCastrate,-.@r; if (.@r>=9) bonus2 bSkillAtk,"LG_RAYOFGENESIS",30; if (.@r>=11) { bonus2 bSkillAtk,"LG_RAYOFGENESIS",20; bonus2 bSkillAtk,"PA_PRESSURE",20; } + - Id: 32351 + AegisName: Estal + Name: Estal + Type: Weapon + SubType: 1hSword + Buy: 20 + Weight: 700 + Attack: 195 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); bonus2 bSkillCooldown,"GN_SPORE_EXPLOSION",-1000; bonus bBaseAtk,4*.@r; if (.@r>=11) .@val = 50; else if (.@r>=9) .@val = 30; bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",.@val; + - Id: 450018 + AegisName: Noblesse_Breath_Armor + Name: Noblesse Breath Armor + Type: Armor + Buy: 20 + Defense: 100 + Slots: 1 + Jobs: + Knight: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMaxHPrate,5; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus bMaxHPrate,5; + - Id: 450019 + AegisName: Noblesse_Knight_Armor + Name: Noblesse Knight Armor + Type: Armor + Buy: 20 + Defense: 100 + Slots: 1 + Jobs: + Knight: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bCritAtkRate,5; + - Id: 450020 + AegisName: Noblesse_Spear_Armor + Name: Noblesse Spear Armor + Type: Armor + Buy: 20 + Defense: 100 + Slots: 1 + Jobs: + Crusader: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bLongAtkRate,5; + - Id: 450021 + AegisName: Noblesse_Genesis_Armor + Name: Noblesse Genesis Armor + Type: Armor + Buy: 20 + Defense: 100 + Slots: 1 + Jobs: + Crusader: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Holy,5; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Holy,5; + - Id: 450022 + AegisName: Noblesse_Sharp_Suit + Name: Noblesse Sharp Suit + Type: Armor + Buy: 20 + Defense: 70 + Slots: 1 + Jobs: + Hunter: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bLongAtkRate,5; + - Id: 450023 + AegisName: Noblesse_Aimed_suit + Name: Noblesse Aimed suit + Type: Armor + Buy: 20 + Defense: 70 + Slots: 1 + Jobs: + Hunter: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bLongAtkRate,5; + - Id: 450024 + AegisName: Noblesse_Severe_Suit + Name: Noblesse Severe Suit + Type: Armor + Buy: 20 + Defense: 70 + Slots: 1 + Jobs: + BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus bLongAtkRate,5; + - Id: 450025 + AegisName: Noblesse_Reverb_Suit + Name: Noblesse Reverb Suit + Type: Armor + Buy: 20 + Defense: 70 + Slots: 1 + Jobs: + BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Neutral,5; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,5; + - Id: 450026 + AegisName: Noblesse_Adora_Robe + Name: Noblesse Adora Robe + Type: Armor + Buy: 20 + Defense: 70 + Slots: 1 + Jobs: + Priest: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Holy,5; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Holy,5; + - Id: 450027 + AegisName: Noblesse_Duple_Robe + Name: Noblesse Duple Robe + Type: Armor + Buy: 20 + Defense: 70 + Slots: 1 + Jobs: + Priest: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bCritAtkRate,5; + - Id: 450028 + AegisName: Noblesse_Tornado_Armor + Name: Noblesse Tornado Armor + Type: Armor + Buy: 20 + Defense: 70 + Slots: 1 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus2 bAddSize,Size_All,5; + - Id: 450029 + AegisName: Noblesse_Vulcan_Armor + Name: Noblesse Vulcan Armor + Type: Armor + Buy: 20 + Defense: 70 + Slots: 1 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bLongAtkRate,5; + - Id: 450030 + AegisName: Noblesse_Cart_Cannon_Suit + Name: Noblesse Cart Cannon Suit + Type: Armor + Buy: 20 + Defense: 70 + Slots: 1 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus bLongAtkRate,5; + - Id: 450031 + AegisName: Noblesse_Cart_Tornado_Suit + Name: Noblesse Cart Tornado Suit + Type: Armor + Buy: 20 + Defense: 70 + Slots: 1 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus2 bAddSize,Size_All,5; + - Id: 450032 + AegisName: Noblesse_Rolling_Suit + Name: Noblesse Rolling Suit + Type: Armor + Buy: 20 + Defense: 70 + Slots: 1 + Jobs: + Assassin: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bLongAtkRate,5; + - Id: 450033 + AegisName: Noblesse_Assassin_Suit + Name: Noblesse Assassin Suit + Type: Armor + Buy: 20 + Defense: 70 + Slots: 1 + Jobs: + Assassin: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bCritAtkRate,5; + - Id: 450034 + AegisName: Noblesse_Fatal_Suit + Name: Noblesse Fatal Suit + Type: Armor + Buy: 20 + Defense: 70 + Slots: 1 + Jobs: + Rogue: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus2 bAddSize,Size_All,5; + - Id: 450035 + AegisName: Noblesse_Stalker_Suit + Name: Noblesse Stalker Suit + Type: Armor + Buy: 20 + Defense: 70 + Slots: 1 + Jobs: + Rogue: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Fire,5; + - Id: 450036 + AegisName: Noblesse_Picky_Robe + Name: Noblesse Picky Robe + Type: Armor + Buy: 20 + Defense: 70 + Slots: 1 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus bLongAtkRate,5; + - Id: 450037 + AegisName: Noblesse_Catnip_Robe + Name: Noblesse Catnip Robe + Type: Armor + Buy: 20 + Defense: 70 + Slots: 1 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,5; + - Id: 450038 + AegisName: Noblesse_Trip_Suit + Name: Noblesse Trip Suit + Type: Armor + Buy: 20 + Defense: 70 + Slots: 1 + Jobs: + Rebellion: true + Locations: + Armor: true + EquipLevelMin: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus2 bAddClass,Class_All,5; if(.@r>=9) bonus bLongAtkRate,5; + - Id: 450039 + AegisName: Noblesse_Fire_Rain_Suit + Name: Noblesse Fire Rain Suit + Type: Armor + Buy: 20 + Defense: 70 + Slots: 1 + Jobs: + Rebellion: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus2 bAddClass,Class_All,5; if(.@r>=9) bonus bLongAtkRate,5; + - Id: 450040 + AegisName: Noblesse_Crimson_Robe + Name: Noblesse Crimson Robe + Type: Armor + Buy: 20 + Defense: 70 + Slots: 1 + Jobs: + Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Fire,5; + - Id: 450041 + AegisName: Noblesse_Frost_Robe + Name: Noblesse Frost Robe + Type: Armor + Buy: 20 + Defense: 70 + Slots: 1 + Jobs: + Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Water,5; + - Id: 450042 + AegisName: Noblesse_Psychic_Robe + Name: Noblesse Psychic Robe + Type: Armor + Buy: 20 + Defense: 70 + Slots: 1 + Jobs: + Sage: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,5; + - Id: 450043 + AegisName: Noblesse_Dust_Robe + Name: Noblesse Dust Robe + Type: Armor + Buy: 20 + Defense: 70 + Slots: 1 + Jobs: + Sage: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Water,5; + - Id: 450044 + AegisName: Noblesse_Sun_Suit + Name: Noblesse Sun Suit + Type: Armor + Buy: 20 + Defense: 70 + Slots: 1 + Jobs: + StarGladiator: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus2 bAddClass,Class_All,5; + - Id: 450045 + AegisName: Noblesse_Moon_Suit + Name: Noblesse Moon Suit + Type: Armor + Buy: 20 + Defense: 70 + Slots: 1 + Jobs: + StarGladiator: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus2 bAddSize,Size_All,5; if(.@r>=9) bonus2 bAddClass,Class_All,5; + - Id: 450046 + AegisName: Noblesse_Ninja_Suit + Name: Noblesse Ninja Suit + Type: Armor + Buy: 20 + Defense: 70 + Slots: 1 + Jobs: + KagerouOboro: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_All,5; + - Id: 450047 + AegisName: Noblesse_Kunai_Suit + Name: Noblesse Kunai Suit + Type: Armor + Buy: 20 + Defense: 70 + Slots: 1 + Jobs: + KagerouOboro: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus2 bAddClass,Class_All,5; if(.@r>=9) bonus bLongAtkRate,5; + - Id: 450048 + AegisName: Noblesse_Eswhoo_Robe + Name: Noblesse Eswhoo Robe + Type: Armor + Buy: 20 + Defense: 70 + Slots: 1 + Jobs: + SoulLinker: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Dark,5; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Dark,5; + - Id: 450049 + AegisName: Noblesse_Explosion_Robe + Name: Noblesse Explosion Robe + Type: Armor + Buy: 20 + Defense: 70 + Slots: 1 + Jobs: + SoulLinker: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Dark,5; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Dark,5; + - Id: 450050 + AegisName: Noblesse_Knuckle_Suit + Name: Noblesse Knuckle Suit + Type: Armor + Buy: 20 + Defense: 70 + Slots: 1 + Jobs: + Monk: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bMaxSPrate,10; if(.@r>=9) bonus2 bAddSize,Size_All,5; + - Id: 450051 + AegisName: Noblesse_Tiger_Suit + Name: Noblesse Tiger Suit + Type: Armor + Buy: 20 + Defense: 70 + Slots: 1 + Jobs: + Monk: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMaxSPrate,5; if(.@r>=7) bonus bMaxHPrate,3; if(.@r>=9) bonus bMaxHPrate,3; + - Id: 450052 + AegisName: Imperial_Breath_Armor + Name: Imperial Breath Armor + Type: Armor + Buy: 20 + Defense: 120 + Slots: 1 + Jobs: + Knight: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 125 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMaxHPrate,7; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus bMaxHPrate,7; + - Id: 450053 + AegisName: Imperial_Knight_Armor + Name: Imperial Knight Armor + Type: Armor + Buy: 20 + Defense: 120 + Slots: 1 + Jobs: + Knight: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 125 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bCritAtkRate,7; + - Id: 450054 + AegisName: Imperial_Spear_Armor + Name: Imperial Spear Armor + Type: Armor + Buy: 20 + Defense: 120 + Slots: 1 + Jobs: + Crusader: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 125 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bLongAtkRate,7; + - Id: 450055 + AegisName: Imperial_Genesis_Armor + Name: Imperial Genesis Armor + Type: Armor + Buy: 20 + Defense: 120 + Slots: 1 + Jobs: + Crusader: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 125 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Holy,7; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Holy,7; + - Id: 450056 + AegisName: Imperial_Sharp_Suit + Name: Imperial Sharp Suit + Type: Armor + Buy: 20 + Defense: 90 + Slots: 1 + Jobs: + Hunter: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 125 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bLongAtkRate,7; + - Id: 450057 + AegisName: Imperial_Aimed_Suit + Name: Imperial Aimed Suit + Type: Armor + Buy: 20 + Defense: 90 + Slots: 1 + Jobs: + Hunter: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 125 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bLongAtkRate,7; + - Id: 450058 + AegisName: Imperial_Severe_Suit + Name: Imperial Severe Suit + Type: Armor + Buy: 20 + Defense: 90 + Slots: 1 + Jobs: + BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 125 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus bLongAtkRate,7; + - Id: 450059 + AegisName: Imperial_Reverb_Suit + Name: Imperial Reverb Suit + Type: Armor + Buy: 20 + Defense: 90 + Slots: 1 + Jobs: + BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 125 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Neutral,7; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,7; + - Id: 450060 + AegisName: Imperial_Adora_Robe + Name: Imperial Adora Robe + Type: Armor + Buy: 20 + Defense: 90 + Slots: 1 + Jobs: + Priest: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 125 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Holy,7; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Holy,7; + - Id: 450061 + AegisName: Imperial_Duple_Robe + Name: Imperial Duple Robe + Type: Armor + Buy: 20 + Defense: 90 + Slots: 1 + Jobs: + Priest: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 125 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bCritAtkRate,7; + - Id: 450062 + AegisName: Imperial_Knuckle_Suit + Name: Imperial Knuckle Suit + Type: Armor + Buy: 20 + Defense: 90 + Slots: 1 + Jobs: + Monk: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 125 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bMaxSPrate,15; if(.@r>=9) bonus2 bAddSize,Size_All,7; + - Id: 450063 + AegisName: Imperial_Tiger_Suit + Name: Imperial Tiger Suit + Type: Armor + Buy: 20 + Defense: 90 + Slots: 1 + Jobs: + Monk: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 125 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMaxSPrate,7; if(.@r>=7) bonus bMaxHPrate,4; if(.@r>=9) bonus bMaxHPrate,4; + - Id: 450064 + AegisName: Imperial_Tornado_Armor + Name: Imperial Tornado Armor + Type: Armor + Buy: 20 + Defense: 90 + Slots: 1 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 125 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus2 bAddSize,Size_All,7; + - Id: 450065 + AegisName: Imperial_Vulcan_Armor + Name: Imperial Vulcan Armor + Type: Armor + Buy: 20 + Defense: 90 + Slots: 1 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 125 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bLongAtkRate,7; + - Id: 450066 + AegisName: Imperial_Cart_Cannon_Suit + Name: Imperial Cart Cannon Suit + Type: Armor + Buy: 20 + Defense: 90 + Slots: 1 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 125 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus bLongAtkRate,7; + - Id: 450067 + AegisName: Imperial_Cart_Tornado_Suit + Name: Imperial Cart Tornado Suit + Type: Armor + Buy: 20 + Defense: 90 + Slots: 1 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 125 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus2 bAddSize,Size_All,7; + - Id: 450068 + AegisName: Imperial_Rolling_Suit + Name: Imperial Rolling Suit + Type: Armor + Buy: 20 + Defense: 90 + Slots: 1 + Jobs: + Assassin: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 125 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bLongAtkRate,7; + - Id: 450069 + AegisName: Imperial_Assassin_Suit + Name: Imperial Assassin Suit + Type: Armor + Buy: 20 + Defense: 90 + Slots: 1 + Jobs: + Assassin: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 125 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bCritAtkRate,7; + - Id: 450070 + AegisName: Imperial_Fatal_Suit + Name: Imperial Fatal Suit + Type: Armor + Buy: 20 + Defense: 90 + Slots: 1 + Jobs: + Rogue: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 125 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus2 bAddSize,Size_All,7; + - Id: 450071 + AegisName: Imperial_Stalker_Suit + Name: Imperial Stalker Suit + Type: Armor + Buy: 20 + Defense: 90 + Slots: 1 + Jobs: + Rogue: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 125 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Fire,7; + - Id: 450072 + AegisName: Imperial_Picky_Robe + Name: Imperial Picky Robe + Type: Armor + Buy: 20 + Defense: 90 + Slots: 1 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Armor: true + EquipLevelMin: 125 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus bLongAtkRate,7; + - Id: 450073 + AegisName: Imperial_Catnip_Robe + Name: Imperial Catnip Robe + Type: Armor + Buy: 20 + Defense: 90 + Slots: 1 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Armor: true + EquipLevelMin: 125 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,7; + - Id: 450074 + AegisName: Imperial_Trip_Suit + Name: Imperial Trip Suit + Type: Armor + Buy: 20 + Defense: 90 + Slots: 1 + Jobs: + Rebellion: true + Locations: + Armor: true + EquipLevelMin: 125 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus2 bAddClass,Class_All,7; if(.@r>=9) bonus bLongAtkRate,7; + - Id: 450075 + AegisName: Imperial_Fire_Rain_Suit + Name: Imperial Fire Rain Suit + Type: Armor + Buy: 20 + Defense: 90 + Slots: 1 + Jobs: + Rebellion: true + Locations: + Armor: true + EquipLevelMin: 125 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus2 bAddClass,Class_All,7; if(.@r>=9) bonus bLongAtkRate,7; + - Id: 450076 + AegisName: Imperial_Crimson_Robe + Name: Imperial Crimson Robe + Type: Armor + Buy: 20 + Defense: 90 + Slots: 1 + Jobs: + Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 125 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Fire,7; + - Id: 450077 + AegisName: Imperial_Frost_Robe + Name: Imperial Frost Robe + Type: Armor + Buy: 20 + Defense: 90 + Slots: 1 + Jobs: + Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 125 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Water,7; + - Id: 450078 + AegisName: Imperial_Psychic_Robe + Name: Imperial Psychic Robe + Type: Armor + Buy: 20 + Defense: 90 + Slots: 1 + Jobs: + Sage: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 125 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,7; + - Id: 450079 + AegisName: Imperial_Dust_Robe + Name: Imperial Dust Robe + Type: Armor + Buy: 20 + Defense: 90 + Slots: 1 + Jobs: + Sage: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 125 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Water,7; + - Id: 450080 + AegisName: Imperial_Sun_Suit + Name: Imperial Sun Suit + Type: Armor + Buy: 20 + Defense: 90 + Slots: 1 + Jobs: + StarGladiator: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 125 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus2 bAddClass,Class_All,7; + - Id: 450081 + AegisName: Imperial_Moon_Suit + Name: Imperial Moon Suit + Type: Armor + Buy: 20 + Defense: 90 + Slots: 1 + Jobs: + StarGladiator: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 125 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus2 bAddSize,Size_All,7; if(.@r>=9) bonus2 bAddClass,Class_All,7; + - Id: 450082 + AegisName: Imperial_Ninja_Suit + Name: Imperial Ninja Suit + Type: Armor + Buy: 20 + Defense: 90 + Slots: 1 + Jobs: + KagerouOboro: true + Locations: + Armor: true + EquipLevelMin: 125 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus2 bMagicAtkEle,Ele_All,7; + - Id: 450083 + AegisName: Imperial_Kunai_Suit + Name: Imperial Kunai Suit + Type: Armor + Buy: 20 + Defense: 90 + Slots: 1 + Jobs: + KagerouOboro: true + Locations: + Armor: true + EquipLevelMin: 125 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus2 bAddClass,Class_All,7; if(.@r>=9) bonus bLongAtkRate,7; + - Id: 450084 + AegisName: Imperial_Eswhoo_Robe + Name: Imperial Eswhoo Robe + Type: Armor + Buy: 20 + Defense: 90 + Slots: 1 + Jobs: + SoulLinker: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 125 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Dark,7; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Dark,7; + - Id: 450085 + AegisName: Imperial_Explosion_Robe + Name: Imperial Explosion Robe + Type: Armor + Buy: 20 + Defense: 90 + Slots: 1 + Jobs: + SoulLinker: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 125 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Dark,7; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Dark,7; + - Id: 450086 + AegisName: Grace_Breath_Armor + Name: Grace Breath Armor + Type: Armor + Buy: 20 + Defense: 130 + Slots: 1 + Jobs: + Knight: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 150 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMaxHPrate,10; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus bMaxHPrate,10; + - Id: 450087 + AegisName: Grace_Knight_Armor + Name: Grace Knight Armor + Type: Armor + Buy: 20 + Defense: 130 + Slots: 1 + Jobs: + Knight: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 150 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bCritAtkRate,10; + - Id: 450088 + AegisName: Grace_Spear_Armor + Name: Grace Spear Armor + Type: Armor + Buy: 20 + Defense: 130 + Slots: 1 + Jobs: + Crusader: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 150 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bLongAtkRate,10; + - Id: 450089 + AegisName: Grace_Genesis_Armor + Name: Grace Genesis Armor + Type: Armor + Buy: 20 + Defense: 130 + Slots: 1 + Jobs: + Crusader: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 150 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Holy,10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Holy,10; + - Id: 450090 + AegisName: Grace_Sharp_Suit + Name: Grace Sharp Suit + Type: Armor + Buy: 20 + Defense: 100 + Slots: 1 + Jobs: + Hunter: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 150 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bLongAtkRate,10; + - Id: 450091 + AegisName: Grace_Aimed_Suit + Name: Grace Aimed Suit + Type: Armor + Buy: 20 + Defense: 100 + Slots: 1 + Jobs: + Hunter: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 150 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bLongAtkRate,10; + - Id: 450092 + AegisName: Grace_Severe_Suit + Name: Grace Severe Suit + Type: Armor + Buy: 20 + Defense: 100 + Slots: 1 + Jobs: + BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 150 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus bLongAtkRate,10; + - Id: 450093 + AegisName: Grace_Reverb_Suit + Name: Grace Reverb Suit + Type: Armor + Buy: 20 + Defense: 100 + Slots: 1 + Jobs: + BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 150 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Neutral,10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,10; + - Id: 450094 + AegisName: Grace_Adora_Robe + Name: Grace Adora Robe + Type: Armor + Buy: 20 + Defense: 100 + Slots: 1 + Jobs: + Priest: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 150 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Holy,10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Holy,10; + - Id: 450095 + AegisName: Grace_Duple_Robe + Name: Grace Duple Robe + Type: Armor + Buy: 20 + Defense: 100 + Slots: 1 + Jobs: + Priest: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 150 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bCritAtkRate,10; + - Id: 450096 + AegisName: Grace_Knuckle_Suit + Name: Grace Knuckle Suit + Type: Armor + Buy: 20 + Defense: 100 + Slots: 1 + Jobs: + Monk: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 150 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bMaxSPrate,20; if(.@r>=9) bonus2 bAddSize,Size_All,10; + - Id: 450097 + AegisName: Grace_Tiger_Suit + Name: Grace Tiger Suit + Type: Armor + Buy: 20 + Defense: 100 + Slots: 1 + Jobs: + Monk: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 150 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMaxSPrate,10; if(.@r>=7) bonus bMaxHPrate,5; if(.@r>=9) bonus bMaxHPrate,5; + - Id: 450098 + AegisName: Grace_Tornado_Armor + Name: Grace Tornado Armor + Type: Armor + Buy: 20 + Defense: 100 + Slots: 1 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 150 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus2 bAddSize,Size_All,10; + - Id: 450099 + AegisName: Grace_Vulcan_Armor + Name: Grace Vulcan Armor + Type: Armor + Buy: 20 + Defense: 100 + Slots: 1 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 150 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bLongAtkRate,10; + - Id: 450100 + AegisName: Grace_Cart_Cannon_Suit + Name: Grace Cart Cannon Suit + Type: Armor + Buy: 20 + Defense: 100 + Slots: 1 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 150 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus bLongAtkRate,10; + - Id: 450101 + AegisName: Grace_Cart_Tornado_Suit + Name: Grace Cart Tornado Suit + Type: Armor + Buy: 20 + Defense: 100 + Slots: 1 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 150 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus2 bAddSize,Size_All,10; + - Id: 450102 + AegisName: Grace_Rolling_Suit + Name: Grace Rolling Suit + Type: Armor + Buy: 20 + Defense: 100 + Slots: 1 + Jobs: + Assassin: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 150 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bLongAtkRate,10; + - Id: 450103 + AegisName: Grace_Assassin_Suit + Name: Grace Assassin Suit + Type: Armor + Buy: 20 + Defense: 100 + Slots: 1 + Jobs: + Assassin: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 150 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bCritAtkRate,10; + - Id: 450104 + AegisName: Grace_Fatal_Suit + Name: Grace Fatal Suit + Type: Armor + Buy: 20 + Defense: 100 + Slots: 1 + Jobs: + Rogue: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 150 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus2 bAddSize,Size_All,10; + - Id: 450105 + AegisName: Grace_Stalker_Suit + Name: Grace Stalker Suit + Type: Armor + Buy: 20 + Defense: 100 + Slots: 1 + Jobs: + Rogue: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 150 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Fire,10; + - Id: 450106 + AegisName: Grace_Picky_Robe + Name: Grace Picky Robe + Type: Armor + Buy: 20 + Defense: 100 + Slots: 1 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Armor: true + EquipLevelMin: 150 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus bLongAtkRate,10; + - Id: 450107 + AegisName: Grace_Catnip_Robe + Name: Grace Catnip Robe + Type: Armor + Buy: 20 + Defense: 100 + Slots: 1 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Armor: true + EquipLevelMin: 150 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,10; + - Id: 450108 + AegisName: Grace_Trip_Suit + Name: Grace Trip Suit + Type: Armor + Buy: 20 + Defense: 100 + Slots: 1 + Jobs: + Rebellion: true + Locations: + Armor: true + EquipLevelMin: 150 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus2 bAddClass,Class_All,10; if(.@r>=9) bonus bLongAtkRate,10; + - Id: 450109 + AegisName: Grace_Fire_Rain_Suit + Name: Grace Fire Rain Suit + Type: Armor + Buy: 20 + Defense: 100 + Slots: 1 + Jobs: + Rebellion: true + Locations: + Armor: true + EquipLevelMin: 150 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus2 bAddClass,Class_All,10; if(.@r>=9) bonus bLongAtkRate,10; + - Id: 450110 + AegisName: Grace_Crimson_Robe + Name: Grace Crimson Robe + Type: Armor + Buy: 20 + Defense: 100 + Slots: 1 + Jobs: + Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 150 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Fire,10; + - Id: 450111 + AegisName: Grace_Frost_Robe + Name: Grace Frost Robe + Type: Armor + Buy: 20 + Defense: 100 + Slots: 1 + Jobs: + Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 150 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Water,10; + - Id: 450112 + AegisName: Grace_Psychic_Robe + Name: Grace Psychic Robe + Type: Armor + Buy: 20 + Defense: 100 + Slots: 1 + Jobs: + Sage: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 150 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,10; + - Id: 450113 + AegisName: Grace_Dust_Robe + Name: Grace Dust Robe + Type: Armor + Buy: 20 + Defense: 100 + Slots: 1 + Jobs: + Sage: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 150 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Water,10; + - Id: 450114 + AegisName: Grace_Sun_Suit + Name: Grace Sun Suit + Type: Armor + Buy: 20 + Defense: 100 + Slots: 1 + Jobs: + StarGladiator: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 150 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus2 bAddClass,Class_All,10; + - Id: 450115 + AegisName: Grace_Moon_Suit + Name: Grace Moon Suit + Type: Armor + Buy: 20 + Defense: 100 + Slots: 1 + Jobs: + StarGladiator: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 150 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus2 bAddSize,Size_All,10; if(.@r>=9) bonus2 bAddClass,Class_All,10; + - Id: 450116 + AegisName: Grace_Ninja_Suit + Name: Grace Ninja Suit + Type: Armor + Buy: 20 + Defense: 100 + Slots: 1 + Jobs: + KagerouOboro: true + Locations: + Armor: true + EquipLevelMin: 150 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus2 bMagicAtkEle,Ele_All,10; + - Id: 450117 + AegisName: Grace_Kunai_Suit + Name: Grace Kunai Suit + Type: Armor + Buy: 20 + Defense: 100 + Slots: 1 + Jobs: + KagerouOboro: true + Locations: + Armor: true + EquipLevelMin: 150 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus2 bAddClass,Class_All,10; if(.@r>=9) bonus bLongAtkRate,10; + - Id: 450118 + AegisName: Grace_Eswhoo_Robe + Name: Grace Eswhoo Robe + Type: Armor + Buy: 20 + Defense: 100 + Slots: 1 + Jobs: + SoulLinker: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 150 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Dark,10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Dark,10; + - Id: 450119 + AegisName: Grace_Explosion_Robe + Name: Grace Explosion Robe + Type: Armor + Buy: 20 + Defense: 100 + Slots: 1 + Jobs: + SoulLinker: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Armor: true + EquipLevelMin: 150 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Dark,10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Dark,10; + - Id: 450121 + AegisName: Noblesse_Super_Novice_Suit + Name: Noblesse Super Novice Suit + Type: Armor + Buy: 20 + Defense: 70 + Slots: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bMaxHPrate,5; + - Id: 450122 + AegisName: Noblesse_Super_Novice_Robe + Name: Noblesse Super Novice Robe + Type: Armor + Buy: 20 + Defense: 70 + Slots: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Armor: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bMaxHPrate,5; + - Id: 450123 + AegisName: Imperial_Super_Novice_Suit + Name: Imperial Super Novice Suit + Type: Armor + Buy: 20 + Defense: 90 + Slots: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Armor: true + EquipLevelMin: 125 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bMaxHPrate,7; + - Id: 450124 + AegisName: Imperial_Super_Novice_Robe + Name: Imperial Super Novice Robe + Type: Armor + Buy: 20 + Defense: 90 + Slots: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Armor: true + EquipLevelMin: 125 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bMaxHPrate,7; + - Id: 450125 + AegisName: Grace_Super_Novice_Suit + Name: Grace Super Novice Suit + Type: Armor + Buy: 20 + Defense: 100 + Slots: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Armor: true + EquipLevelMin: 150 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bMaxHPrate,10; + - Id: 450126 + AegisName: Grace_Super_Novice_Robe + Name: Grace Super Novice Robe + Type: Armor + Buy: 20 + Defense: 100 + Slots: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Armor: true + EquipLevelMin: 150 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bMaxHPrate,10; + - Id: 470016 + AegisName: Noblesse_Attack_Boots + Name: Noblesse Attack Boots + Type: Armor + Defense: 20 + Slots: 1 + Locations: + Shoes: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,10; bonus bHit,10; if (.@r>=7) bonus bFixedCast,-500; if (.@r>=9) bonus bLongAtkRate,5; + - Id: 470017 + AegisName: Noblesse_Magic_Boots + Name: Noblesse Magic Boots + Type: Armor + Defense: 20 + Slots: 1 + Locations: + Shoes: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMatk,10; bonus bFlee,10; if (.@r>=7) bonus bFixedCast,-500; if (.@r>=9) bonus2 bMagicAtkEle,Ele_All,5; + - Id: 470018 + AegisName: Imperial_Attack_Boots + Name: Imperial Attack Boots + Type: Armor + Defense: 25 + Slots: 1 + Locations: + Shoes: true + EquipLevelMin: 125 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,15; bonus bHit,15; if (.@r>=7) bonus bFixedCast,-500; if (.@r>=9) bonus bLongAtkRate,7; + - Id: 470019 + AegisName: Imperial_Magic_Boots + Name: Imperial Magic Boots + Type: Armor + Defense: 25 + Slots: 1 + Locations: + Shoes: true + EquipLevelMin: 125 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMatk,15; bonus bFlee,15; if (.@r>=7) bonus bFixedCast,-500; if (.@r>=9) bonus2 bMagicAtkEle,Ele_All,7; + - Id: 470020 + AegisName: Grace_Attack_Boots + Name: Grace Attack Boots + Type: Armor + Defense: 30 + Slots: 1 + Locations: + Shoes: true + EquipLevelMin: 150 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bBaseAtk,20; bonus bHit,20; if (.@r>=7) bonus bFixedCast,-500; if (.@r>=9) bonus bLongAtkRate,10; + - Id: 470021 + AegisName: Grace_Magic_Boots + Name: Grace Magic Boots + Type: Armor + Defense: 30 + Slots: 1 + Locations: + Shoes: true + EquipLevelMin: 150 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bMatk,20; bonus bFlee,20; if (.@r>=7) bonus bFixedCast,-500; if (.@r>=9) bonus2 bMagicAtkEle,Ele_All,10; + - Id: 480012 + AegisName: Noblesse_Attack_Manteau + Name: Noblesse Attack Manteau + Type: Armor + Defense: 20 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bAspdRate,3; if (.@r>=7) bonus bDelayrate,-5; if (.@r>=9) bonus2 bAddSize,Size_All,5; + - Id: 480014 + AegisName: Noblesse_Magic_Manteau + Name: Noblesse Magic Manteau + Type: Armor + Defense: 20 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 100 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bVariableCastrate,-5; if (.@r>=7) bonus bDelayrate,-5; if (.@r>=9) bonus2 bMagicAtkEle,Ele_All,5; + - Id: 480016 + AegisName: Imperial_Attack_Manteau + Name: Imperial Attack Manteau + Type: Armor + Defense: 25 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 125 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bAspdRate,5; if (.@r>=7) bonus bDelayrate,-5; if (.@r>=9) bonus2 bAddSize,Size_All,7; + - Id: 480017 + AegisName: Imperial_Magic_Manteau + Name: Imperial Magic Manteau + Type: Armor + Defense: 25 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 125 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bVariableCastrate,-7; if (.@r>=7) bonus bDelayrate,-5; if (.@r>=9) bonus2 bMagicAtkEle,Ele_All,7; + - Id: 480018 + AegisName: Grace_Attack_Manteau + Name: Grace Attack Manteau + Type: Armor + Defense: 30 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 150 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bAspdRate,7; if (.@r>=7) bonus bDelayrate,-5; if (.@r>=9) bonus2 bAddSize,Size_All,10; + - Id: 480019 + AegisName: Grace_Magic_Manteau + Name: Grace Magic Manteau + Type: Armor + Defense: 30 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 150 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); bonus bVariableCastrate,-10; if (.@r>=7) bonus bDelayrate,-5; if (.@r>=9) bonus2 bMagicAtkEle,Ele_All,10; + - Id: 490014 + AegisName: Noblesse_Attack_Ring + Name: Noblesse Attack Ring + Type: Armor + Defense: 5 + Slots: 1 + Locations: + Right_Accessory: true + EquipLevelMin: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAspdRate,3; bonus bVariableCastrate,-5; bonus bCritAtkRate,5; + - Id: 490015 + AegisName: Noblesse_Magic_Ring + Name: Noblesse Magic Ring + Type: Armor + Defense: 5 + Slots: 1 + Locations: + Right_Accessory: true + EquipLevelMin: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAspdRate,3; bonus bVariableCastrate,-5; bonus2 bMagicAddEle,Ele_All,5; + - Id: 490017 + AegisName: Imperial_Attack_Ring + Name: Imperial Attack Ring + Type: Armor + Weight: 50 + Slots: 1 + Locations: + Right_Accessory: true + EquipLevelMin: 125 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAspdRate,5; bonus bVariableCastrate,-7; bonus bCritAtkRate,7; + - Id: 490018 + AegisName: Imperial_Magic_Ring + Name: Imperial Magic Ring + Type: Armor + Weight: 50 + Slots: 1 + Locations: + Right_Accessory: true + EquipLevelMin: 125 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAspdRate,5; bonus bVariableCastrate,-7; bonus2 bMagicAddEle,Ele_All,7; + - Id: 490019 + AegisName: Grace_Attack_Ring + Name: Grace Attack Ring + Type: Armor + Weight: 50 + Slots: 1 + Locations: + Right_Accessory: true + EquipLevelMin: 150 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAspdRate,7; bonus bVariableCastrate,-10; bonus bCritAtkRate,10; + - Id: 490020 + AegisName: Grace_Magic_Ring + Name: Grace Magic Ring + Type: Armor + Weight: 50 + Slots: 1 + Locations: + Right_Accessory: true + EquipLevelMin: 150 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAspdRate,7; bonus bVariableCastrate,-10; bonus2 bMagicAddEle,Ele_All,10; + - Id: 500013 + AegisName: Up_Sword_Of_Bluefire + Name: Patent Red Lotus Sword + Type: Weapon + SubType: 1hSword + Weight: 1000 + Attack: 200 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 150 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bLongAtkRate,.@r/3*4; if (.@r>=7){ bonus2 bSkillUseSPrate,"GN_CARTCANNON",-10; bonus bVariableCastrate,-7; } if (.@r>=9){ bonus2 bSkillAtk,"GN_CARTCANNON",20; } if (.@r>=11){ bonus bVariableCastrate,-5; bonus2 bSkillAtk,"CR_ACIDDEMONSTRATION",10; } + - Id: 500014 + AegisName: Up_Slate_Sword + Name: Patent Slate Sword + Type: Weapon + SubType: 1hSword + Weight: 1200 + Attack: 205 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 150 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus2 bSkillAtk,"GN_CART_TORNADO",.@r/3*10; bonus2 bSkillAtk,"GN_HELLS_PLANT",.@r/3*5; if (.@r>=7){ bonus2 bSkillAtk,"GN_CART_TORNADO",20; bonus2 bSkillAtk,"GN_HELLS_PLANT",10; } if (.@r>=9){ bonus bDelayRate,-10; } if (.@r>=11){ bonus bDelayRate,-5; bonus bMaxHPrate,10; } + - Id: 500017 + AegisName: Up_Light_Blade + Name: Patent Light Blade + Type: Weapon + SubType: 1hSword + Weight: 1200 + Attack: 130 + MagicAttack: 195 + Range: 1 + Slots: 2 + Jobs: + Crusader: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 150 + Refineable: true + Script: | + .@r = getrefine(); bonus bMatk,.@r/2*15; bonus2 bSkillAtk,"PA_PRESSURE",.@r/3*5; bonus2 bSkillAtk,"LG_RAYOFGENESIS",.@r/3*5; if (.@r>=7){ bonus bVariableCastrate,-10; } if (.@r>=9){ bonus2 bMagicAtkEle,Ele_Holy,15; } if (.@r>=11){ bonus2 bMagicAddSize,Size_All,15; bonus2 bSkillAtk,"PA_PRESSURE",15; bonus2 bSkillAtk,"LG_RAYOFGENESIS",15; } + - Id: 510006 + AegisName: Fatalist + Name: Fatalist + Type: Weapon + SubType: Dagger + Weight: 900 + Attack: 165 + Range: 1 + Slots: 2 + Jobs: + Rogue: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,.@r/2*10; bonus bAspdRate,(.@r*2/3); if (.@r>=9) { bonus2 bSkillAtk,"SC_FATALMENACE",20; } if (.@r>=11) { bonus bDelayRate,-7; } + - Id: 510019 + AegisName: Up_Magic_Sword + Name: Patent Madogum + Type: Weapon + SubType: Dagger + Weight: 800 + Attack: 150 + MagicAttack: 195 + Range: 1 + Slots: 2 + Jobs: + Rogue: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 150 + Refineable: true + Script: | + .@r = getrefine(); bonus bMatk,.@r/2*15; bonus bAspdRate,(.@r/3*2); if (.@r>=7){ bonus5 bAutoSpell,"WZ_METEOR",7,100,BF_SHORT,1; } if (.@r>=9){ bonus2 bMagicAtkEle,Ele_All,15; } if (.@r>=11){ bonus5 bAutoSpell,"SO_PSYCHIC_WAVE",4,100,BF_SHORT,1; } + - Id: 510020 + AegisName: Up_Fatalist + Name: Patent Fatalist + Type: Weapon + SubType: Dagger + Weight: 1200 + Attack: 205 + Range: 1 + Slots: 2 + Jobs: + Rogue: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 150 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bAspdRate,(.@r*2/3); if (.@r>=7){ bonus2 bSkillAtk,"SC_FATALMENACE",25; } if (.@r>=9){ bonus2 bSkillUseSPrate,"SC_FATALMENACE",-15; bonus bDelayRate,-7; } if (.@r>=11){ bonus bShortAtkRate,10; bonus bDelayRate,-7; } + - Id: 510022 + AegisName: Up_Fog_Dew_Sword + Name: Patent Kiri no Tsuyu + Type: Weapon + SubType: Dagger + Buy: 20 + Weight: 1200 + Attack: 190 + Range: 1 + Slots: 2 + Jobs: + KagerouOboro: true + Ninja: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 150 + Refineable: true + Script: | + /*Is combo set with 28763 Surudoi Kaze*/ + - Id: 530006 + AegisName: Up_Undine_Spear_K + Name: Patent Aquatic Spear + Type: Weapon + SubType: 1hSpear + Buy: 20 + Weight: 1400 + Attack: 195 + Range: 3 + Slots: 2 + Jobs: + Crusader: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 150 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bLongAtkRate,.@r/3*4; if (.@r>=7){ bonus2 bSkillAtk,"LG_CANNONSPEAR",15; bonus2 bSkillAtk,"LG_BANISHINGPOINT",15; bonus bAspdRate,10; } if (.@r>=9){ bonus2 bSkillAtk,"LG_CANNONSPEAR",20; bonus2 bSkillAtk,"LG_BANISHINGPOINT",20; } if (.@r>=11){ bonus bPerfectHitAddRate,7; bonus bMaxSPrate,5; } + - Id: 540010 + AegisName: Up_Thousand_Sun + Name: Patent One Sky One Sun + Type: Weapon + SubType: Book + Weight: 1100 + Attack: 200 + Range: 1 + Slots: 2 + Jobs: + StarGladiator: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 150 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bShortAtkRate,4*(.@r/3); if (.@r>=7){ bonus2 bSkillAtk,"SJ_PROMINENCEKICK",20; bonus bAspdRate,10; } if (.@r>=9){ bonus2 bSkillAtk,"SJ_SOLARBURST",25; } if (.@r>=11){ bonus2 bAddSize,Size_All,15; } + - Id: 540011 + AegisName: Up_Demon_Hunting_Bible + Name: Patent Exorcist's Bible + Type: Weapon + SubType: Book + Buy: 20 + Weight: 700 + Attack: 205 + MagicAttack: 190 + Range: 1 + Slots: 2 + Jobs: + Priest: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 150 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,.@r/2*10; bonus bMatk,.@r/2*10; bonus2 bSkillAtk,"AB_DUPLELIGHT",25*(.@r/3); bonus2 bSkillAtk,"AB_JUDEX",25*(.@r/3); if (.@r>=7){ bonus bAspdRate,10; bonus2 bMagicAtkEle,Ele_Holy,15; } if (.@r>=9){ bonus2 bSkillAtk,"AB_DUPLELIGHT",30; bonus2 bSkillAtk,"AB_JUDEX",30; } if (.@r>=11){ .@i = getskilllv("AB_JUDEX"); bonus3 bAutoSpell,"AB_JUDEX",(.@i > 5 ? .@i : 5),100; } + - Id: 550007 + AegisName: Freezing_Rod + Name: Chilling Cane + Type: Weapon + SubType: Staff + Weight: 500 + Attack: 40 + MagicAttack: 150 + Range: 1 + Slots: 2 + Jobs: + Sage: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,.@r/2*10; bonus2 bSkillAtk,"SO_DIAMONDDUST",.@r/3*8; if (.@r>=9) { bonus2 bMagicAddEle,Ele_Undead,10; } if (.@r>=11) { bonus2 bMagicAtkEle,Ele_Water,7; } + - Id: 550012 + AegisName: Up_Shadow_Staff_K + Name: Patent Shadow Staff + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 750 + Attack: 40 + MagicAttack: 195 + Range: 1 + Slots: 2 + Jobs: + Sage: true + Classes: + Third_Upper: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 150 + Refineable: true + Script: | + bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,.@r/2*15; bonus2 bSkillAtk,"SO_EARTHGRAVE",12*(.@r/3); if (.@r>=7){ bonus2 bMagicAtkEle,Ele_Earth,15; bonus2 bMagicAtkEle,Ele_Neutral,15; } if (.@r>=9){ bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",25; bonus bVariableCastrate,-7; } if (.@r>=11){ bonus bVariableCastrate,-8; bonus2 bSkillCooldown,"SO_PSYCHIC_WAVE",-1000; } + - Id: 550013 + AegisName: Up_Freezing_Rod + Name: Patent Chilling Cane + Type: Weapon + SubType: Staff + Weight: 750 + Attack: 40 + MagicAttack: 195 + Range: 1 + Slots: 2 + Jobs: + Sage: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 150 + Refineable: true + Script: | + bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,.@r/2*10; bonus2 bSkillAtk,"SO_DIAMONDDUST",.@r/3*12; if (.@r>=7){ bonus2 bMagicAddEle,Ele_All,15; bonus2 bSkillAtk,"SO_VARETYR_SPEAR",15; } if (.@r>=9){ bonus2 bSkillAtk,"SO_VARETYR_SPEAR",20; bonus bVariableCastrate,-7; } if (.@r>=11){ bonus bVariableCastrate,-8; bonus2 bSkillCooldown,"SO_VARETYR_SPEAR",-2000; } + - Id: 550014 + AegisName: Up_MeawFoxtail + Name: Patent Meowmeow Foxtail + Type: Weapon + SubType: Staff + Buy: 20 + Weight: 1200 + Attack: 350 + MagicAttack: 350 + Range: 1 + Slots: 2 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 150 + Refineable: true + Script: | + bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,15*(.@r/2); bonus bBaseAtk,15*(.@r/2); bonus2 bAddClass,Class_All,2*(.@r/3); bonus bMatkRate,2*(.@r/3); if (.@r>=7){ bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",25; bonus2 bSkillAtk,"SU_SV_STEMSPEAR",25; } if (.@r>=9){ bonus bVariableCastrate,-10; bonus bAspdRate,10; } if (.@r>=11){ bonus2 bSkillAtk,"SU_PICKYPECK",25; bonus2 bSkillAtk,"SU_CN_METEOR",25; } + - Id: 550015 + AegisName: Up_Spirit_Pendulum_ + Name: Patent Spirit Pendulum + Type: Weapon + SubType: Staff + Weight: 1200 + Attack: 70 + MagicAttack: 190 + Range: 1 + Slots: 2 + Jobs: + SoulLinker: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 150 + Refineable: true + Script: | + .@r = getrefine(); bonus bMatk,15*(.@r/2); bonus2 bMagicAddEle,Ele_All,2*(.@r/3); if (.@r>=7){ bonus2 bSkillAtk,"SP_SPA",15; bonus bVariableCastrate,-10; } if (.@r>=9){ bonus2 bSkillAtk,"SP_SWHOO",20; } if (.@r>=11){ autobonus "{ bonus2 bSPRegenRate,230,10000; }",70,10000,BF_MAGIC; } + - Id: 560002 + AegisName: Ray_Knuckle + Name: Ray Knuckle + Type: Weapon + SubType: Knuckle + Weight: 700 + Attack: 185 + Range: 1 + Slots: 2 + Jobs: + Monk: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,.@r/2*10; bonus2 bSkillAtk,"SR_TIGERCANNON",.@r/3*4; if (.@r>=9) { bonus2 bSkillAtk,"SR_TIGERCANNON",15; } if (.@r>=11) { bonus2 bSkillCooldown,"SR_TIGERCANNON",-1000; } + - Id: 560008 + AegisName: Up_Iron_Nail_K + Name: Patent Iron Nail + Type: Weapon + SubType: Knuckle + Weight: 1200 + Attack: 205 + Range: 1 + Slots: 2 + Jobs: + Monk: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 150 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bLongAtkRate,.@r/3*4; if (.@r>=7){ bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",10; bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",10; } if (.@r>=9){ bonus2 bSkillCooldown,"SR_RAMPAGEBLASTER",-1000; bonus2 bSkillCooldown,"SR_EARTHSHAKER",-1000; } if (.@r>=11){ bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",15; bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",15; bonus2 bSkillUseSPrate,"SR_RAMPAGEBLASTER",-15; } + - Id: 560009 + AegisName: Up_Ray_Knuckle + Name: Patent Ray Knuckle + Type: Weapon + SubType: Knuckle + Weight: 800 + Attack: 205 + Range: 1 + Slots: 2 + Jobs: + Monk: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 150 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,15*(.@r/2); bonus2 bSkillAtk,"SR_TIGERCANNON",4*(.@r/3); if (.@r>=7){ bonus2 bSkillAtk,"SR_TIGERCANNON",15; bonus2 bSkillAtk,"SR_HELLGATE",20; } if (.@r>=9){ bonus2 bSkillCooldown,"SR_TIGERCANNON",-1000; } if (.@r>=11){ bonus bMaxHPrate,10; bonus2 bSkillAtk,"SR_HELLGATE",15; } + - Id: 570009 + AegisName: Up_Trumpet_Shell_K + Name: Patent Trumpet Shell + Type: Weapon + SubType: Musical + Weight: 1000 + Attack: 160 + MagicAttack: 230 + Range: 1 + Slots: 2 + Jobs: + BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 150 + Refineable: true + Script: | + .@r = getrefine(); bonus bMatk,.@r/2*15; bonus2 bMagicAtkEle,Ele_All,.@r/3*4; if (.@r>=7){ bonus2 bSkillAtk,"WM_REVERBERATION",10; bonus2 bSkillAtk,"WM_METALICSOUND",10; } if (.@r>=9){ bonus2 bSkillFixedCast,WM_REVERBERATION,-500; } if (.@r>=11){ bonus bMatkRate,7; bonus2 bSkillAtk,"WM_REVERBERATION",15; bonus2 bSkillAtk,"WM_METALICSOUND",15; } + - Id: 580009 + AegisName: Up_Barb_Wire_K + Name: Patent Barbed Wire Whip + Type: Weapon + SubType: Whip + Weight: 1000 + Attack: 160 + MagicAttack: 230 + Range: 1 + Slots: 2 + Jobs: + BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 150 + Refineable: true + Script: | + .@r = getrefine(); bonus bMatk,.@r/2*15; bonus2 bMagicAtkEle,Ele_All,.@r/3*4; if (.@r>=7){ bonus2 bSkillAtk,"WM_REVERBERATION",10; bonus2 bSkillAtk,"WM_METALICSOUND",10; } if (.@r>=9){ bonus2 bSkillFixedCast,WM_REVERBERATION,-500; } if (.@r>=11){ bonus bMatkRate,7; bonus2 bSkillAtk,"WM_REVERBERATION",15; bonus2 bSkillAtk,"WM_METALICSOUND",15; } + - Id: 590003 + AegisName: Saint_Hall + Name: Saint Mace + Type: Weapon + SubType: Mace + Weight: 800 + Attack: 170 + MagicAttack: 165 + Range: 1 + Slots: 2 + Jobs: + Priest: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bUnbreakableWeapon; bonus bMatkRate,3; .@r = getrefine(); bonus2 bMagicAtkEle,Ele_Holy,.@r/2*1; bonus2 bSkillAtk,"AB_ADORAMUS",.@r/3*5; if (.@r>=9) { bonus bVariableCastrate,-10; } if (.@r>=11) { bonus2 bMagicAtkEle,Ele_Holy,10; } + - Id: 590011 + AegisName: Up_Meteor_Striker + Name: Patent Meteor Striker + Type: Weapon + SubType: Mace + Weight: 3500 + Attack: 320 + Range: 1 + Slots: 2 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 150 + Refineable: true + Script: | + bonus bUnbreakableWeapon; .@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus2 bSkillAtk,"NC_VULCANARM",.@r/3*10; bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",.@r/3*10; if (.@r>=7){ bonus2 bSkillAtk,"NC_VULCANARM",15; bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",15; } if (.@r>=9){ bonus2 bSkillAtk,"NC_ARMSCANNON",25; } if (.@r>=11){ bonus bLongAtkRate,15; bonus bVariableCastrate,-15; } + - Id: 590012 + AegisName: Up_Saint_Hall + Name: Patent Saint Mace + Type: Weapon + SubType: Mace + Weight: 1000 + Attack: 170 + MagicAttack: 200 + Range: 1 + Slots: 2 + Jobs: + Priest: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 150 + Refineable: true + Script: | + bonus bUnbreakableWeapon; bonus bMatkRate,3; .@r = getrefine(); bonus2 bMagicAtkEle,Ele_Holy,.@r/2*1; bonus2 bSkillAtk,"AB_ADORAMUS",.@r/3*5; if (.@r>=7){ bonus bVariableCastrate,-10; bonus2 bMagicAtkEle,Ele_Holy,10; } if (.@r>=9){ bonus2 bMagicAddRace,RC_All,15; } if (.@r>=11){ bonus2 bSkillAtk,"AB_ADORAMUS",15; } + - Id: 600009 + AegisName: Up_Oriental_Sword + Name: Patent Oriental Sword + Type: Weapon + SubType: 2hSword + Weight: 2000 + Attack: 240 + Range: 1 + Slots: 2 + Jobs: + Knight: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 150 + Refineable: true + Script: | + .@r = getrefine(); .@i = max(2,getskilllv("RK_SONICWAVE")); bonus bBaseAtk,.@r/2*15; bonus2 bSkillAtk,"RK_SONICWAVE",.@r/3*10; if (.@r>=7){ bonus bUnbreakableWeapon; bonus bAspdRate,10; } if (.@r>=9){ bonus5 bAutoSpell,"RK_SONICWAVE",.@i,20,BF_SHORT,1; } if (.@r>=11){ bonus bCritical,15; bonus bCritAtkRate,15; } + - Id: 610003 + AegisName: Blade_Katar + Name: Blade Katar + Type: Weapon + SubType: Katar + Weight: 1000 + Attack: 185 + Range: 1 + Slots: 2 + Jobs: + Assassin: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,.@r/2*10; bonus bAspdRate,(.@r*2/3); if (.@r>=2) { bonus2 bSkillAtk,"GC_ROLLINGCUTTER",20; } if (.@r>=11) { bonus bDelayRate,-7; } + - Id: 610008 + AegisName: Up_Shiver_Katar_K + Name: Patent Shiver Katar + Type: Weapon + SubType: Katar + Weight: 1400 + Attack: 255 + Range: 1 + Slots: 2 + Jobs: + Assassin: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 150 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus2 bSkillAtk,"GC_CROSSIMPACT",.@r/3*10; if (.@r>=7){ bonus bCritAtkRate,15; bonus bAspdRate,10; } if (.@r>=9){ bonus2 bAddRace,RC_Brute,25; bonus2 bAddRace,RC_DemiHuman,25; } if (.@r>=11){ bonus bCritical,15; bonus2 bSkillCooldown,"GC_DARKCROW",-10000; } + - Id: 610009 + AegisName: Up_Blade_Katar + Name: Patent Blade Katar + Type: Weapon + SubType: Katar + Weight: 1400 + Attack: 275 + Range: 1 + Slots: 2 + Jobs: + Assassin: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 150 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bAspdRate,(.@r*2/3); if (.@r>=7){ bonus2 bSkillAtk,"GC_ROLLINGCUTTER",25; bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",25; } if (.@r>=9){ bonus bDelayRate,-12; } if (.@r>=11){ bonus bShortAtkRate,10; bonus bLongAtkRate,10; } + - Id: 620004 + AegisName: Up_Avenger + Name: Patent Avenger + Type: Weapon + SubType: 2hAxe + Weight: 7000 + Attack: 290 + Range: 1 + Slots: 2 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 150 + Refineable: true + Script: | + .@r = getrefine(); bonus bUnbreakableWeapon; bonus bBaseAtk,.@r/2*15; bonus2 bSkillAtk,"NC_AXETORNADO",10*(.@r/3); if (.@r>=7){ bonus2 bSkillAtk,"NC_AXEBOOMERANG",40; bonus2 bSkillCooldown,"NC_AXEBOOMERANG",-1000; } if (.@r>=9){ bonus2 bAddSize,Size_All,15; } if (.@r>=11){ bonus2 bSubEle,Ele_All,20; } + - Id: 640004 + AegisName: Blue_Crystal_Staff + Name: Blue Crystal Staff + Type: Weapon + SubType: Staff + Weight: 800 + Attack: 100 + MagicAttack: 200 + Range: 1 + Slots: 2 + Jobs: + Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Script: | + bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,.@r/2*10; bonus2 bSkillAtk,"WL_JACKFROST",.@r/3*12; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Water,7; } if (.@r>=11) { bonus2 bSkillCooldown,"WL_JACKFROST",-1000; bonus2 bMagicAddEle,Ele_Fire,7; } + - Id: 640011 + AegisName: Up_Iron_Staff + Name: Patent Iron Staff + Type: Weapon + SubType: 2hStaff + Weight: 1000 + Attack: 100 + MagicAttack: 235 + Range: 1 + Slots: 2 + Jobs: + Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 150 + Refineable: true + Script: | + bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,.@r/2*15; bonus2 bSkillAtk,"WL_EARTHSTRAIN",.@r/3*12; if (.@r>=7){ bonus bVariableCastrate,-10; bonus2 bMagicAtkEle,Ele_Earth,15; bonus2 bMagicAtkEle,Ele_Fire,15; } if (.@r>=9){ bonus2 bSkillCooldown,"WL_EARTHSTRAIN",-1000; bonus bVariableCastrate,-5; } if (.@r>=11){ bonus2 bMagicAddSize,Size_All,15; bonus2 bSkillAtk,"WL_CRIMSONROCK",15; } + - Id: 640012 + AegisName: Up_Blue_Crystal_Staff + Name: Patent Blue Crystal Staff + Type: Weapon + SubType: Staff + Weight: 1000 + Attack: 100 + MagicAttack: 235 + Range: 1 + Slots: 2 + Jobs: + Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 150 + Refineable: true + Script: | + bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,.@r/2*15; bonus2 bSkillAtk,"WL_JACKFROST",.@r/3*12; if (.@r>=7){ bonus bVariableCastrate,-10; bonus2 bMagicAtkEle,Ele_Water,15; bonus2 bMagicAtkEle,Ele_Wind,15; } if (.@r>=9){ bonus2 bSkillCooldown,"WL_JACKFROST",-1000; bonus bDelayRate,-5; } if (.@r>=11){ bonus2 bMagicAddSize,Size_All,15; bonus2 bSkillAtk,"WL_CHAINLIGHTNING",15; } + - Id: 650004 + AegisName: Up_Humma_Clear + Name: Patent Huuma Shuriken Clearness + Type: Weapon + SubType: Huuma + Buy: 20 + Weight: 2300 + Attack: 290 + Range: 1 + Slots: 2 + Jobs: + KagerouOboro: true + Ninja: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 150 + Refineable: true + Script: | + bonus bUnbreakableWeapon; .@r = getrefine(); bonus bBaseAtk,15*(.@r/2); bonus bLongAtkRate,.@r/3*2; if (.@r>=7){ bonus2 bSkillAtk,"KO_HUUMARANKA",30; bonus bVariableCastrate,-10; } if (.@r>=9){ bonus2 bSkillCooldown,"KO_HUUMARANKA",-1000; } if (.@r>=11){ bonus2 bAddEle,Ele_Fire,20; bonus2 bAddEle,Ele_Dark,20; bonus2 bAddEle,Ele_Holy,20; bonus2 bAddRace,RC_Undead,20; bonus2 bAddRace,RC_Demon,20; bonus2 bAddRace,RC_Angel,20; } + - Id: 700003 + AegisName: Scalet_Dragon_L_Bow + Name: Scarlet Dragon Leather Bow + Type: Weapon + SubType: Bow + Weight: 800 + Attack: 170 + Range: 5 + Slots: 2 + Jobs: + Hunter: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 100 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,.@r/2*10; bonus bDelayRate,-(.@r/3*4); if (.@r>=9) { bonus2 bSkillAtk,"RA_AIMEDBOLT",35; } if (.@r>=11) { bonus2 bSkillCooldown,"RA_AIMEDBOLT",-1000; } + - Id: 700013 + AegisName: Up_Narcis_Bow + Name: Patent Narcissus Bow + Type: Weapon + SubType: Bow + Weight: 1000 + Attack: 210 + Range: 5 + Slots: 2 + Jobs: + BardDancer: true + Hunter: true + Rogue: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 150 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bLongAtkRate,.@r/3*4; if (.@r>=7){ bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; } if (.@r>=9){ bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15; } if (.@r>=11){ bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",10; bonus2 bWeaponDamageRate,W_BOW,15; } + - Id: 700018 + AegisName: Up_Royal_Bow_K + Name: Patent Royal Bow + Type: Weapon + SubType: Bow + Weight: 1200 + Attack: 205 + Range: 5 + Slots: 2 + Jobs: + BardDancer: true + Hunter: true + Rogue: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 150 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus2 bSkillAtk,"RA_ARROWSTORM",12*(.@r/3); if (.@r>=7){ bonus bAspdRate,10; bonus2 bWeaponDamageRate,W_BOW,15; } if (.@r>=9){ bonus bLongAtkRate,12; bonus bCritAtkRate,10; } if (.@r>=11){ bonus2 bSkillAtk,"SN_SHARPSHOOTING",20; bonus bDelayRate,-10; } + - Id: 700019 + AegisName: Up_Scalet_Dragon_L_Bow + Name: Patent Scarlet Dragon Leather Bow + Type: Weapon + SubType: Bow + Weight: 900 + Attack: 200 + Range: 5 + Slots: 2 + Jobs: + Hunter: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 150 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bDelayRate,-(.@r/3*4); if (.@r>=7){ bonus bLongAtkRate,10; bonus2 bAddSize,Size_All,10; } if (.@r>=9){ bonus2 bSkillAtk,"RA_AIMEDBOLT",35; } if (.@r>=11){ bonus2 bSkillCooldown,"RA_AIMEDBOLT",-1000; bonus bVariableCastrate,-10; } + - Id: 800002 + AegisName: Up_Crimson_Rose + Name: Patent Crimson Rose + Type: Weapon + SubType: Revolver + Buy: 20 + Weight: 1000 + Attack: 200 + Range: 7 + Slots: 2 + Jobs: + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 150 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,.@r/2*10; bonus2 bSkillAtk,"RL_FIREDANCE",.@r/3*2; if (.@r>=7){ bonus2 bAddClass,Class_All,5; bonus bLongAtkRate,10; } if (.@r>=9){ bonus2 bSkillAtk,"RL_FIREDANCE",25; autobonus3 "{ bonus bLongAtkRate,20; }",1000,60000,"RL_HEAT_BARREL"; } if (.@r>=11){ bonus bDelayRate,-10; } + - Id: 810001 + AegisName: Up_Master_Soul_Rifle + Name: Patent Master Soul Rifle + Type: Weapon + SubType: Rifle + Buy: 20 + Weight: 1000 + Attack: 200 + MagicAttack: 250 + Range: 9 + Slots: 2 + Jobs: + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 150 + Refineable: true + Script: | + .@r = getrefine(); bonus bMatk,15*(.@r/2); bonus2 bSkillAtk,"MG_SOULSTRIKE",15*(.@r/3); bonus2 bSkillAtk,"HW_NAPALMVULCAN",15*(.@r/3); if (.@r>=7){ bonus2 bSkillAtk,"WL_SOULEXPANSION",20; bonus2 bMagicAddEle,Ele_Ghost,15; } if (.@r>=9){ bonus5 bAutoSpell,"MG_SOULSTRIKE",10,150,BF_LONG,1; } if (.@r>=11){ bonus5 bAutoSpell,"HW_NAPALMVULCAN",3,70,BF_LONG,1; bonus5 bAutoSpell,"WL_SOULEXPANSION",3,70,BF_LONG,1; } + - Id: 820001 + AegisName: Up_Demon_Slayer_Shot + Name: Patent Demon Slayer Shot + Type: Weapon + SubType: Shotgun + Weight: 2300 + Attack: 295 + Range: 9 + Slots: 2 + Jobs: + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 150 + Refineable: true + Script: | + .@r = getrefine(); bonus bSplashRange,1; bonus bLongAtkRate,3*(.@r/2); bonus bMaxSPrate,2*(.@r/3); if (.@r>=7){ bonus2 bAddClass,Class_Boss,15; bonus2 bAddRace,RC_Undead,15; bonus2 bAddRace,RC_Demon,15; } if (.@r>=9){ autobonus3 "{ bonus bBaseAtk,50; bonus bLongAtkRate,10; }",1000,90000,"RL_P_ALTER"; } if (.@r>=11){ bonus2 bSkillAtk,"RL_BANISHING_BUSTER",35; bonus2 bSkillAtk,"RL_S_STORM",35; } + - Id: 830002 + AegisName: Up_The_Black + Name: Patent The Black + Type: Weapon + SubType: Gatling + Weight: 3000 + Attack: 225 + Range: 9 + Slots: 2 + Jobs: + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 150 + Refineable: true + Script: | + .@r = getrefine(); bonus bBaseAtk,15*(.@r/2); bonus bLongAtkRate,4*(.@r/3); if (.@r>=7){ bonus2 bSkillAtk,"RL_R_TRIP",20; bonus2 bSkillUseSPrate,"RL_R_TRIP",10; } if (.@r>=9){ bonus2 bSkillAtk,"RL_R_TRIP",15; autobonus3 "{ bonus bBaseAtk,50; bonus bLongAtkRate,10; }",1000,90000,"RL_P_ALTER"; } if (.@r>=11){ bonus2 bAddSize,Size_All,15; } + - Id: 840001 + AegisName: Up_Golden_Lord_Launcher + Name: Patent Golden Lord Launcher + Type: Weapon + SubType: Grenade + Buy: 20 + Weight: 2400 + Attack: 350 + Range: 9 + Slots: 2 + Jobs: + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 150 + Refineable: true + Script: | + .@r = getrefine(); bonus bLongAtkRate,3*(.@r/2); bonus bBaseAtk,20*(.@r/3); if (.@r>=7){ bonus2 bSkillAtk,"RL_D_TAIL",15; bonus2 bSkillCooldown,"RL_D_TAIL",-1000; } if (.@r>=9){ bonus2 bSkillAtk,"RL_D_TAIL",20; } if (.@r>=11){ bonus2 bAddEle,Ele_All,15; } diff --git a/db/re/item_db_etc.yml b/db/re/item_db_etc.yml new file mode 100644 index 0000000000..0592e2c78f --- /dev/null +++ b/db/re/item_db_etc.yml @@ -0,0 +1,37402 @@ +# This file is a part of rAthena. +# Copyright(C) 2019 rAthena Development Team +# https://rathena.org - https://github.com/rathena +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# +########################################################################### +# Item Database +########################################################################### +# +# Item Settings +# +########################################################################### +# - Id Item ID. +# AegisName Server name to reference the item in scripts and lookups, should use no spaces. +# Name Name in English for displaying as output. +# Type Item type. (Default: Etc) +# SubType Weapon or Ammo type. (Default: 0) +# Buy Buying price. When not specified, becomes double the sell price. (Default: 0) +# Sell Selling price. When not specified, becomes half the buy price. (Default: 0) +# Weight Item weight. Each 10 is 1 weight. (Default: 0) +# Attack Weapon's attack. (Default: 0) +# MagicAttack Weapon's magic attack. (Default: 0) +# Defense Armor's defense. (Default: 0) +# Range Weapon's attack range. (Default: 0) +# Slots Available slots in item. (Default: 0) +# Jobs Jobs that can equip the item. (Map default is 'All: true') +# Classes Upper class types that can equip the item. (Map default is 'All: true') +# Gender Gender that can equip the item. (Default: Both) +# Locations Equipment's placement. (Default: None) +# WeaponLevel Weapon level. (Default: 0) +# EquipLevelMin Minimum required level to equip. (Default: 0) +# EquipLevelMax Maximum level that can equip. (Default: 0) +# Refineable If the item can be refined. (Default: false) +# View View sprite of an item. (Default: 0) +# AliasName Another item's AegisName that will be sent to the client instead of this item's AegisName. (Default: null) +# Flags: Item flags. (Default: null) +# BuyingStore If the item is available for Buyingstores. (Default: false) +# DeadBranch If the item is a Dead Branch. (Default: false) +# Container If the item is part of a container. (Default: false) +# UniqueId If the item is a unique stack. (Default: false) +# BindOnEquip If the item is bound to the character upon equipping. (Default: false) +# DropAnnounce If the item has a special announcement to self on drop. (Default: false) +# NoConsume If the item is consumed on use. (Default: false) +# DropEffect If the item has a special effect when on the ground. (Default: None) +# Delay: Item use delay. (Default: null) +# Duration Duration of delay in seconds. +# Status Status Change used to track delay. (Default: None) +# Stack: Item stack amount. (Default: null) +# Amount Maximum amount that can be stacked. +# Inventory If the stack is applied to player's inventory. (Default: true) +# Cart If the stack is applied to the player's cart. (Default: false) +# Storage If the stack is applied to the player's storage. (Default: false) +# GuildStorage If the stack is applied to the player's guild storage. (Default: false) +# NoUse: Conditions when the item is unusable. (Default: null) +# Override Group level to override these conditions. +# Sitting If the item can not be used while sitting. (Default: false) +# Trade: Trade restrictions. (Default: null) +# Override Group level to override these conditions. +# NoDrop If the item can not be dropped. (Default: false) +# NoTrade If the item can not be traded. (Default: false) +# TradePartner If the item can not be traded to the player's partner. (Default: false) +# NoSell If the item can not be sold. (Default: false) +# NoCart If the item can not be put in a cart. (Default: false) +# NoStorage If the item can not be put in a storage. (Default: false) +# NoGuildStorage If the item can not be put in a guild storage. (Default: false) +# NoMail If the item can not be put in a mail. (Default: false) +# NoAuction If the item can not be put in an auction. (Default: false) +# Script Script to execute when the item is used/equipped. (Default: null) +# EquipScript Script to execute when the item is equipped. (Default: null) +# UnEquipScript Script to execute when the item is unequipped or when a rental item expires. (Default: null) +########################################################################### + +Header: + Type: ITEM_DB + Version: 1 + +Body: + - Id: 670 + AegisName: Gold_Coin_Moneybag + Name: Bag of Gold Coins + Type: Etc + Buy: 100000 + Weight: 400 + - Id: 672 + AegisName: Copper_Coin_Moneybag + Name: Bag of Bronze Coins + Type: Etc + Buy: 1000 + Weight: 400 + - Id: 674 + AegisName: Mithril_Coin + Name: Mithril Coin + Type: Etc + Buy: 5000 + Weight: 40 + - Id: 676 + AegisName: Silver_Coin_Moneybag + Name: Bag of Silver Coins + Type: Etc + Buy: 50000 + Weight: 400 + - Id: 677 + AegisName: White_Gold_Coin + Name: Platinum Coin + Type: Etc + Buy: 2000 + Weight: 40 + - Id: 701 + AegisName: Ora_Ora + Name: Ora Ora + Type: Etc + Buy: 55000 + Weight: 200 + Flags: + BuyingStore: true + - Id: 702 + AegisName: Animal_Blood + Name: Animal Gore + Type: Etc + Buy: 450 + Weight: 100 + Flags: + BuyingStore: true + - Id: 703 + AegisName: Hinalle + Name: Hinalle + Type: Etc + Buy: 500 + Weight: 10 + Flags: + BuyingStore: true + - Id: 704 + AegisName: Aloe + Name: Aloe + Type: Etc + Buy: 500 + Weight: 10 + Flags: + BuyingStore: true + - Id: 705 + AegisName: Clover + Name: Clover + Type: Etc + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + - Id: 706 + AegisName: Four_Leaf_Clover + Name: Four Leaf Clover + Type: Etc + Buy: 80000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 707 + AegisName: Singing_Plant + Name: Singing Plant + Type: Etc + Buy: 500 + Weight: 10 + Flags: + BuyingStore: true + - Id: 708 + AegisName: Ment + Name: Ment + Type: Etc + Buy: 500 + Weight: 10 + Flags: + BuyingStore: true + - Id: 709 + AegisName: Izidor + Name: Izidor + Type: Etc + Buy: 500 + Weight: 10 + Flags: + BuyingStore: true + - Id: 710 + AegisName: Illusion_Flower + Name: Illusion Flower + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 711 + AegisName: Shoot + Name: Shoot + Type: Etc + Buy: 16 + Weight: 10 + Flags: + BuyingStore: true + - Id: 712 + AegisName: Flower + Name: Flower + Type: Etc + Buy: 2 + Weight: 10 + Flags: + BuyingStore: true + - Id: 713 + AegisName: Empty_Bottle + Name: Empty Bottle + Type: Etc + Buy: 6 + Weight: 20 + Flags: + BuyingStore: true + - Id: 714 + AegisName: Emperium + Name: Emperium + Type: Etc + Buy: 2 + Weight: 1000 + Flags: + BuyingStore: true + - Id: 715 + AegisName: Yellow_Gemstone + Name: Yellow Gemstone + Type: Etc + Buy: 600 + Weight: 30 + Flags: + BuyingStore: true + - Id: 716 + AegisName: Red_Gemstone + Name: Red Gemstone + Type: Etc + Buy: 600 + Weight: 30 + Flags: + BuyingStore: true + - Id: 717 + AegisName: Blue_Gemstone + Name: Blue Gemstone + Type: Etc + Buy: 600 + Weight: 30 + Flags: + BuyingStore: true + - Id: 718 + AegisName: Dark_Red_Jewel + Name: Garnet + Type: Etc + Buy: 6000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 719 + AegisName: Violet_Jewel + Name: Amethyst + Type: Etc + Buy: 6000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 720 + AegisName: Skyblue_Jewel + Name: Aquamarine + Type: Etc + Buy: 6000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 721 + AegisName: Azure_Jewel + Name: Emerald + Type: Etc + Buy: 6000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 722 + AegisName: Scarlet_Jewel + Name: Pearl + Type: Etc + Buy: 6000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 723 + AegisName: Cardinal_Jewel + Name: Ruby + Type: Etc + Buy: 6000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 724 + AegisName: Cardinal_Jewel_ + Name: Cursed Ruby + Type: Etc + Buy: 600 + Weight: 100 + Flags: + BuyingStore: true + - Id: 725 + AegisName: Red_Jewel + Name: Sardonyx + Type: Etc + Buy: 6000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 726 + AegisName: Blue_Jewel + Name: Sapphire + Type: Etc + Buy: 6000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 727 + AegisName: White_Jewel + Name: Opal + Type: Etc + Buy: 6000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 728 + AegisName: Golden_Jewel + Name: Topaz + Type: Etc + Buy: 6000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 729 + AegisName: Bluish_Green_Jewel + Name: Zircon + Type: Etc + Buy: 6000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 730 + AegisName: Crystal_Jewel + Name: 1carat Diamond + Type: Etc + Buy: 10000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 731 + AegisName: Crystal_Jewel_ + Name: 2carat Diamond + Type: Etc + Buy: 25000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 732 + AegisName: Crystal_Jewel__ + Name: 3carat Diamond + Type: Etc + Buy: 55000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 733 + AegisName: Crystal_Jewel___ + Name: Cracked Diamond + Type: Etc + Buy: 10 + Weight: 100 + Flags: + BuyingStore: true + - Id: 734 + AegisName: Red_Frame + Name: Red Frame + Type: Etc + Buy: 3000 + Weight: 200 + Flags: + BuyingStore: true + - Id: 735 + AegisName: Blue_Porcelain + Name: Chung Jah + Type: Etc + Buy: 5000 + Weight: 500 + Flags: + BuyingStore: true + - Id: 736 + AegisName: White_Platter + Name: China + Type: Etc + Buy: 1000 + Weight: 300 + Flags: + BuyingStore: true + - Id: 737 + AegisName: Black_Ladle + Name: Black Ladle + Type: Etc + Buy: 400 + Weight: 50 + Flags: + BuyingStore: true + - Id: 738 + AegisName: Pencil_Case + Name: Pencil Case + Type: Etc + Buy: 400 + Weight: 100 + Flags: + BuyingStore: true + - Id: 739 + AegisName: Rouge + Name: Rouge + Type: Etc + Buy: 10000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 740 + AegisName: Stuffed_Doll + Name: Puppet + Type: Etc + Buy: 1000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 741 + AegisName: Poring_Doll + Name: Poring Doll + Type: Etc + Buy: 1800 + Weight: 100 + Flags: + BuyingStore: true + - Id: 742 + AegisName: Chonchon_Doll + Name: Chonchon Doll + Type: Etc + Buy: 3000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 743 + AegisName: Spore_Doll + Name: Spore Doll + Type: Etc + Buy: 5500 + Weight: 100 + Flags: + BuyingStore: true + - Id: 744 + AegisName: Bunch_Of_Flowers + Name: Bouquet + Type: Etc + Buy: 2000 + Weight: 50 + Flags: + BuyingStore: true + Trade: + Override: 100 + NoDrop: true + - Id: 745 + AegisName: Wedding_Bouquet + Name: Wedding Bouquet + Type: Etc + Buy: 12000 + Weight: 50 + Flags: + BuyingStore: true + Trade: + Override: 100 + NoDrop: true + - Id: 746 + AegisName: Glass_Bead + Name: Glass Bead + Type: Etc + Buy: 1400 + Weight: 50 + Flags: + BuyingStore: true + - Id: 747 + AegisName: Crystal_Mirror + Name: Crystal Mirror + Type: Etc + Buy: 15000 + Weight: 50 + Flags: + BuyingStore: true + - Id: 748 + AegisName: Witherless_Rose + Name: Witherless Rose + Type: Etc + Buy: 55000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 749 + AegisName: Frozen_Rose + Name: Frozen Rose + Type: Etc + Buy: 35000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 750 + AegisName: Baphomet_Doll + Name: Baphomet Doll + Type: Etc + Buy: 18000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 751 + AegisName: Osiris_Doll + Name: Osiris Doll + Type: Etc + Buy: 14000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 752 + AegisName: Grasshopper_Doll + Name: Rocker Doll + Type: Etc + Buy: 4000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 753 + AegisName: Monkey_Doll + Name: Yoyo Doll + Type: Etc + Buy: 6000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 754 + AegisName: Raccoondog_Doll + Name: Raccoon Doll + Type: Etc + Buy: 5000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 756 + AegisName: Oridecon_Stone + Name: Rough Oridecon + Type: Etc + Buy: 550 + Weight: 200 + Flags: + BuyingStore: true + - Id: 757 + AegisName: Elunium_Stone + Name: Rough Elunium + Type: Etc + Buy: 650 + Weight: 200 + Flags: + BuyingStore: true + - Id: 901 + AegisName: Danggie + Name: Daenggie + Type: Etc + Buy: 260 + Weight: 10 + Flags: + BuyingStore: true + - Id: 902 + AegisName: Tree_Root + Name: Tree Root + Type: Etc + Buy: 12 + Weight: 10 + Flags: + BuyingStore: true + - Id: 903 + AegisName: Reptile_Tongue + Name: Reptile Tongue + Type: Etc + Buy: 140 + Weight: 10 + Flags: + BuyingStore: true + - Id: 904 + AegisName: Scorpion's_Tail + Name: Scorpion Tail + Type: Etc + Buy: 124 + Weight: 10 + Flags: + BuyingStore: true + - Id: 905 + AegisName: Stem + Name: Stem + Type: Etc + Buy: 46 + Weight: 10 + Flags: + BuyingStore: true + - Id: 906 + AegisName: Pointed_Scale + Name: Pointed Scale + Type: Etc + Buy: 68 + Weight: 10 + Flags: + BuyingStore: true + - Id: 907 + AegisName: Resin + Name: Resin + Type: Etc + Buy: 120 + Weight: 10 + Flags: + BuyingStore: true + - Id: 908 + AegisName: Spawn + Name: Spawn + Type: Etc + Buy: 140 + Weight: 10 + Flags: + BuyingStore: true + - Id: 909 + AegisName: Jellopy + Name: Jellopy + Type: Etc + Buy: 6 + Weight: 10 + Flags: + BuyingStore: true + - Id: 910 + AegisName: Garlet + Name: Garlet + Type: Etc + Buy: 40 + Weight: 10 + Flags: + BuyingStore: true + - Id: 911 + AegisName: Scell + Name: Scell + Type: Etc + Buy: 160 + Weight: 10 + Flags: + BuyingStore: true + - Id: 912 + AegisName: Zargon + Name: Zargon + Type: Etc + Buy: 480 + Weight: 10 + Flags: + BuyingStore: true + - Id: 913 + AegisName: Tooth_Of_Bat + Name: Tooth of Bat + Type: Etc + Buy: 34 + Weight: 10 + Flags: + BuyingStore: true + - Id: 914 + AegisName: Fluff + Name: Fluff + Type: Etc + Buy: 8 + Weight: 10 + Flags: + BuyingStore: true + - Id: 915 + AegisName: Chrysalis + Name: Chrysalis + Type: Etc + Buy: 8 + Weight: 10 + Flags: + BuyingStore: true + - Id: 916 + AegisName: Feather_Of_Birds + Name: Feather of Birds + Type: Etc + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + - Id: 917 + AegisName: Talon + Name: Talon + Type: Etc + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + - Id: 918 + AegisName: Sticky_Webfoot + Name: Sticky Webfoot + Type: Etc + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + - Id: 919 + AegisName: Animal's_Skin + Name: Animal Skin + Type: Etc + Buy: 36 + Weight: 10 + Flags: + BuyingStore: true + - Id: 920 + AegisName: Claw_Of_Wolves + Name: Wolf Claw + Type: Etc + Buy: 58 + Weight: 10 + Flags: + BuyingStore: true + - Id: 921 + AegisName: Mushroom_Spore + Name: Mushroom Spore + Type: Etc + Buy: 36 + Weight: 10 + Flags: + BuyingStore: true + - Id: 922 + AegisName: Orcish_Cuspid + Name: Orc's Fang + Type: Etc + Buy: 220 + Weight: 10 + Flags: + BuyingStore: true + - Id: 923 + AegisName: Evil_Horn + Name: Evil Horn + Type: Etc + Buy: 1200 + Weight: 10 + Flags: + BuyingStore: true + - Id: 924 + AegisName: Powder_Of_Butterfly + Name: Powder of Butterfly + Type: Etc + Buy: 90 + Weight: 10 + Flags: + BuyingStore: true + - Id: 925 + AegisName: Bill_Of_Birds + Name: Bill of Birds + Type: Etc + Buy: 64 + Weight: 10 + Flags: + BuyingStore: true + - Id: 926 + AegisName: Scale_Of_Snakes + Name: Snake Scale + Type: Etc + Buy: 82 + Weight: 10 + Flags: + BuyingStore: true + - Id: 928 + AegisName: Insect_Feeler + Name: Insect Feeler + Type: Etc + Buy: 114 + Weight: 10 + Flags: + BuyingStore: true + - Id: 929 + AegisName: Immortal_Heart + Name: Immortal Heart + Type: Etc + Buy: 374 + Weight: 10 + Flags: + BuyingStore: true + - Id: 930 + AegisName: Rotten_Bandage + Name: Rotten Bandage + Type: Etc + Buy: 350 + Weight: 10 + Flags: + BuyingStore: true + - Id: 931 + AegisName: Orcish_Voucher + Name: Orcish Voucher + Type: Etc + Buy: 142 + Weight: 10 + Flags: + BuyingStore: true + - Id: 932 + AegisName: Skel_Bone + Name: Skel-Bone + Type: Etc + Buy: 232 + Weight: 10 + Flags: + BuyingStore: true + - Id: 934 + AegisName: Mementos + Name: Memento + Type: Etc + Buy: 600 + Weight: 10 + Flags: + BuyingStore: true + - Id: 935 + AegisName: Shell + Name: Shell + Type: Etc + Buy: 14 + Weight: 10 + Flags: + BuyingStore: true + - Id: 936 + AegisName: Scales_Shell + Name: Scale Shell + Type: Etc + Buy: 466 + Weight: 10 + Flags: + BuyingStore: true + - Id: 937 + AegisName: Posionous_Canine + Name: Venom Canine + Type: Etc + Buy: 148 + Weight: 10 + Flags: + BuyingStore: true + - Id: 938 + AegisName: Sticky_Mucus + Name: Sticky Mucus + Type: Etc + Buy: 70 + Weight: 10 + Flags: + BuyingStore: true + - Id: 939 + AegisName: Bee_Sting + Name: Bee Sting + Type: Etc + Buy: 32 + Weight: 10 + Flags: + BuyingStore: true + - Id: 940 + AegisName: Grasshopper's_Leg + Name: Grasshopper's Leg + Type: Etc + Buy: 36 + Weight: 10 + Flags: + BuyingStore: true + - Id: 941 + AegisName: Nose_Ring + Name: Nose Ring + Type: Etc + Buy: 568 + Weight: 10 + Flags: + BuyingStore: true + - Id: 942 + AegisName: Yoyo_Tail + Name: Yoyo Tail + Type: Etc + Buy: 114 + Weight: 10 + Flags: + BuyingStore: true + - Id: 943 + AegisName: Solid_Shell + Name: Solid Shell + Type: Etc + Buy: 448 + Weight: 10 + Flags: + BuyingStore: true + - Id: 944 + AegisName: Horseshoe + Name: Horseshoe + Type: Etc + Buy: 588 + Weight: 10 + Flags: + BuyingStore: true + - Id: 945 + AegisName: Raccoon_Leaf + Name: Raccoon Leaf + Type: Etc + Buy: 106 + Weight: 10 + Flags: + BuyingStore: true + - Id: 946 + AegisName: Snail's_Shell + Name: Snail's Shell + Type: Etc + Buy: 64 + Weight: 10 + Flags: + BuyingStore: true + - Id: 947 + AegisName: Horn + Name: Horn + Type: Etc + Buy: 116 + Weight: 10 + Flags: + BuyingStore: true + - Id: 948 + AegisName: Bear's_Foot + Name: Bear's Footskin + Type: Etc + Buy: 174 + Weight: 10 + Flags: + BuyingStore: true + - Id: 949 + AegisName: Feather + Name: Feather + Type: Etc + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + - Id: 950 + AegisName: Heart_Of_Mermaid + Name: Heart of Mermaid + Type: Etc + Buy: 264 + Weight: 10 + Flags: + BuyingStore: true + - Id: 951 + AegisName: Fin + Name: Fin + Type: Etc + Buy: 412 + Weight: 10 + Flags: + BuyingStore: true + - Id: 952 + AegisName: Cactus_Needle + Name: Cactus Needle + Type: Etc + Buy: 82 + Weight: 10 + Flags: + BuyingStore: true + - Id: 953 + AegisName: Stone_Heart + Name: Stone Heart + Type: Etc + Buy: 184 + Weight: 10 + Flags: + BuyingStore: true + - Id: 954 + AegisName: Shining_Scales + Name: Shining Scale + Type: Etc + Buy: 466 + Weight: 10 + Flags: + BuyingStore: true + - Id: 955 + AegisName: Worm_Peelings + Name: Worm Peeling + Type: Etc + Buy: 52 + Weight: 10 + Flags: + BuyingStore: true + - Id: 956 + AegisName: Gill + Name: Gill + Type: Etc + Buy: 342 + Weight: 10 + Flags: + BuyingStore: true + - Id: 957 + AegisName: Decayed_Nail + Name: Decayed Nail + Type: Etc + Buy: 82 + Weight: 10 + Flags: + BuyingStore: true + - Id: 958 + AegisName: Horrendous_Mouth + Name: Horrendous Mouth + Type: Etc + Buy: 390 + Weight: 10 + Flags: + BuyingStore: true + - Id: 959 + AegisName: Rotten_Scale + Name: Stinky Scale + Type: Etc + Buy: 168 + Weight: 10 + Flags: + BuyingStore: true + - Id: 960 + AegisName: Nipper + Name: Nipper + Type: Etc + Buy: 114 + Weight: 10 + Flags: + BuyingStore: true + - Id: 961 + AegisName: Conch + Name: Conch + Type: Etc + Buy: 158 + Weight: 10 + Flags: + BuyingStore: true + - Id: 962 + AegisName: Tentacle + Name: Tentacle + Type: Etc + Buy: 70 + Weight: 10 + Flags: + BuyingStore: true + - Id: 963 + AegisName: Sharp_Scale + Name: Sharp Scale + Type: Etc + Buy: 250 + Weight: 10 + Flags: + BuyingStore: true + - Id: 964 + AegisName: Crap_Shell + Name: Crab Shell + Type: Etc + Buy: 90 + Weight: 10 + Flags: + BuyingStore: true + - Id: 965 + AegisName: Clam_Shell + Name: Clam Shell + Type: Etc + Buy: 56 + Weight: 10 + Flags: + BuyingStore: true + - Id: 966 + AegisName: Flesh_Of_Clam + Name: Clam Flesh + Type: Etc + Buy: 158 + Weight: 10 + Flags: + BuyingStore: true + - Id: 967 + AegisName: Turtle_Shell + Name: Turtle Shell + Type: Etc + Buy: 680 + Weight: 10 + Flags: + BuyingStore: true + - Id: 968 + AegisName: Voucher_Of_Orcish_Hero + Name: Heroic Emblem + Type: Etc + Buy: 3000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 969 + AegisName: Gold + Name: Gold + Type: Etc + Buy: 150000 + Weight: 200 + Flags: + BuyingStore: true + - Id: 970 + AegisName: Alchol + Name: Alcohol + Type: Etc + Buy: 400 + Weight: 30 + Flags: + BuyingStore: true + - Id: 971 + AegisName: Detrimindexta + Name: Detrimindexta + Type: Etc + Buy: 400 + Weight: 30 + Flags: + BuyingStore: true + - Id: 972 + AegisName: Karvodailnirol + Name: Karvodailnirol + Type: Etc + Buy: 400 + Weight: 30 + Flags: + BuyingStore: true + - Id: 973 + AegisName: Counteragent + Name: Counteragent + Type: Etc + Buy: 800 + Weight: 70 + Flags: + BuyingStore: true + - Id: 974 + AegisName: Mixture + Name: Mixture + Type: Etc + Buy: 800 + Weight: 70 + Flags: + BuyingStore: true + - Id: 975 + AegisName: Scarlet_Dyestuffs + Name: Scarlet Dyestuffs + Type: Etc + Buy: 8000 + Weight: 150 + Flags: + BuyingStore: true + - Id: 976 + AegisName: Lemon_Dyestuffs + Name: Lemon Dyestuffs + Type: Etc + Buy: 8000 + Weight: 150 + Flags: + BuyingStore: true + - Id: 978 + AegisName: Cobaltblue_Dyestuffs + Name: Cobaltblue Dyestuffs + Type: Etc + Buy: 8000 + Weight: 150 + Flags: + BuyingStore: true + - Id: 979 + AegisName: Darkgreen_Dyestuffs + Name: Darkgreen Dyestuffs + Type: Etc + Buy: 8000 + Weight: 150 + Flags: + BuyingStore: true + - Id: 980 + AegisName: Orange_Dyestuffs + Name: Orange Dyestuffs + Type: Etc + Buy: 8000 + Weight: 150 + Flags: + BuyingStore: true + - Id: 981 + AegisName: Violet_Dyestuffs + Name: Violet Dyestuffs + Type: Etc + Buy: 8000 + Weight: 150 + Flags: + BuyingStore: true + - Id: 982 + AegisName: White_Dyestuffs + Name: White Dyestuffs + Type: Etc + Buy: 8000 + Weight: 150 + Flags: + BuyingStore: true + - Id: 983 + AegisName: Black_Dyestuffs + Name: Black Dyestuffs + Type: Etc + Buy: 8000 + Weight: 150 + Flags: + BuyingStore: true + - Id: 984 + AegisName: Oridecon + Name: Oridecon + Type: Etc + Buy: 1100 + Weight: 200 + Flags: + BuyingStore: true + - Id: 985 + AegisName: Elunium + Name: Elunium + Type: Etc + Buy: 1100 + Weight: 200 + Flags: + BuyingStore: true + - Id: 986 + AegisName: Anvil + Name: Anvil + Type: Etc + Buy: 30000 + Weight: 500 + Flags: + BuyingStore: true + - Id: 987 + AegisName: Oridecon_Anvil + Name: Oridecon Anvil + Type: Etc + Buy: 120000 + Weight: 700 + Flags: + BuyingStore: true + - Id: 988 + AegisName: Golden_Anvil + Name: Golden Anvil + Type: Etc + Buy: 300000 + Weight: 900 + Flags: + BuyingStore: true + - Id: 989 + AegisName: Emperium_Anvil + Name: Emperium Anvil + Type: Etc + Buy: 600000 + Weight: 1000 + Flags: + BuyingStore: true + - Id: 990 + AegisName: Boody_Red + Name: Red Blood + Type: Etc + Buy: 1000 + Weight: 50 + Flags: + BuyingStore: true + - Id: 991 + AegisName: Crystal_Blue + Name: Crystal Blue + Type: Etc + Buy: 1000 + Weight: 50 + Flags: + BuyingStore: true + - Id: 992 + AegisName: Wind_Of_Verdure + Name: Wind of Verdure + Type: Etc + Buy: 1000 + Weight: 50 + Flags: + BuyingStore: true + - Id: 993 + AegisName: Yellow_Live + Name: Green Live + Type: Etc + Buy: 1000 + Weight: 50 + Flags: + BuyingStore: true + - Id: 994 + AegisName: Flame_Heart + Name: Flame Heart + Type: Etc + Buy: 3000 + Weight: 300 + Flags: + BuyingStore: true + - Id: 995 + AegisName: Mistic_Frozen + Name: Mystic Frozen + Type: Etc + Buy: 3000 + Weight: 300 + Flags: + BuyingStore: true + - Id: 996 + AegisName: Rough_Wind + Name: Rough Wind + Type: Etc + Buy: 3000 + Weight: 300 + Flags: + BuyingStore: true + - Id: 997 + AegisName: Great_Nature + Name: Great Nature + Type: Etc + Buy: 3000 + Weight: 300 + Flags: + BuyingStore: true + - Id: 998 + AegisName: Iron + Name: Iron + Type: Etc + Buy: 100 + Weight: 50 + Flags: + BuyingStore: true + - Id: 999 + AegisName: Steel + Name: Steel + Type: Etc + Buy: 1000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 1000 + AegisName: Star_Crumb + Name: Star Crumb + Type: Etc + Buy: 4500 + Weight: 100 + Flags: + BuyingStore: true + - Id: 1001 + AegisName: Sparkling_Dust + Name: Star Dust + Type: Etc + Buy: 1500 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1002 + AegisName: Iron_Ore + Name: Iron Ore + Type: Etc + Buy: 50 + Weight: 150 + Flags: + BuyingStore: true + - Id: 1003 + AegisName: Coal + Name: Coal + Type: Etc + Buy: 500 + Weight: 50 + Flags: + BuyingStore: true + - Id: 1004 + AegisName: Patriotism_Marks + Name: Chivalry Emblem + Type: Etc + Buy: 2 + Weight: 100 + Flags: + BuyingStore: true + - Id: 1005 + AegisName: Hammer_Of_Blacksmith + Name: Hammer of Blacksmith + Type: Etc + Buy: 2 + Weight: 800 + Flags: + BuyingStore: true + - Id: 1006 + AegisName: Old_Magic_Book + Name: Old Magicbook + Type: Etc + Buy: 2 + Weight: 30 + Flags: + BuyingStore: true + - Id: 1007 + AegisName: Penetration + Name: Necklace of Wisdom + Type: Etc + Buy: 2 + Weight: 40 + Flags: + BuyingStore: true + - Id: 1008 + AegisName: Frozen_Heart + Name: Necklace of Oblivion + Type: Etc + Buy: 2 + Weight: 100 + Flags: + BuyingStore: true + - Id: 1009 + AegisName: Sacred_Marks + Name: Hand of God + Type: Etc + Buy: 2 + Weight: 20 + Flags: + BuyingStore: true + - Id: 1010 + AegisName: Phracon + Name: Phracon + Type: Etc + Buy: 200 + Weight: 200 + Flags: + BuyingStore: true + - Id: 1011 + AegisName: Emveretarcon + Name: Emveretarcon + Type: Etc + Buy: 1000 + Weight: 200 + Flags: + BuyingStore: true + - Id: 1012 + AegisName: Lizard_Scruff + Name: Frill + Type: Etc + Buy: 250 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1013 + AegisName: Colorful_Shell + Name: Rainbow Shell + Type: Etc + Buy: 90 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1014 + AegisName: Jaws_Of_Ant + Name: Ant Jaw + Type: Etc + Buy: 232 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1015 + AegisName: Thin_N'_Long_Tongue + Name: Tongue + Type: Etc + Buy: 528 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1016 + AegisName: Rat_Tail + Name: Rat Tail + Type: Etc + Buy: 52 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1017 + AegisName: Moustache_Of_Mole + Name: Mole Whiskers + Type: Etc + Buy: 106 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1018 + AegisName: Nail_Of_Mole + Name: Mole Claw + Type: Etc + Buy: 210 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1019 + AegisName: Wooden_Block + Name: Trunk + Type: Etc + Buy: 60 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1020 + AegisName: Long_Hair + Name: Black Hair + Type: Etc + Buy: 292 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1021 + AegisName: Dokkaebi_Horn + Name: Dokebi Horn + Type: Etc + Buy: 292 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1022 + AegisName: Fox_Tail + Name: Nine Tails + Type: Etc + Buy: 650 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1023 + AegisName: Fish_Tail + Name: Fish Tail + Type: Etc + Buy: 196 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1024 + AegisName: Chinese_Ink + Name: Squid Ink + Type: Etc + Buy: 264 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1025 + AegisName: Spiderweb + Name: Cobweb + Type: Etc + Buy: 184 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1026 + AegisName: Acorn + Name: Acorn + Type: Etc + Buy: 98 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1027 + AegisName: Porcupine_Spike + Name: Porcupine Quill + Type: Etc + Buy: 158 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1028 + AegisName: Wild_Boar's_Mane + Name: Mane + Type: Etc + Buy: 196 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1029 + AegisName: Tiger's_Skin + Name: Tiger Skin + Type: Etc + Buy: 548 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1030 + AegisName: Tiger_Footskin + Name: Tiger's Footskin + Type: Etc + Buy: 1500 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1031 + AegisName: Limb_Of_Mantis + Name: Mantis Scythe + Type: Etc + Buy: 196 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1032 + AegisName: Blossom_Of_Maneater + Name: Maneater Blossom + Type: Etc + Buy: 196 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1033 + AegisName: Root_Of_Maneater + Name: Maneater Root + Type: Etc + Buy: 208 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1034 + AegisName: Cobold_Hair + Name: Blue Hair + Type: Etc + Buy: 342 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1035 + AegisName: Dragon_Canine + Name: Dragon Canine + Type: Etc + Buy: 484 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1036 + AegisName: Dragon_Scale + Name: Dragon Scale + Type: Etc + Buy: 500 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1037 + AegisName: Dragon_Train + Name: Dragon Tail + Type: Etc + Buy: 1200 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1038 + AegisName: Petite_DiablOfs_Horn + Name: Little Evil Horn + Type: Etc + Buy: 528 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1039 + AegisName: Petite_DiablOfs_Wing + Name: Little Evil Wing + Type: Etc + Buy: 2000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1040 + AegisName: Elder_Pixie's_Beard + Name: Elder Pixie's Moustache + Type: Etc + Buy: 232 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1041 + AegisName: Lantern + Name: Lantern + Type: Etc + Buy: 250 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1042 + AegisName: Short_Leg + Name: Bug Leg + Type: Etc + Buy: 430 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1043 + AegisName: Nail_Of_Orc + Name: Orc Claw + Type: Etc + Buy: 168 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1044 + AegisName: Tooth_Of_ + Name: Zenorc's Fang + Type: Etc + Buy: 264 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1045 + AegisName: Sacred_Masque + Name: Cultish Masque + Type: Etc + Buy: 412 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1046 + AegisName: Tweezer + Name: Scorpion Nipper + Type: Etc + Buy: 614 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1047 + AegisName: Head_Of_Medusa + Name: Dead Medusa + Type: Etc + Buy: 548 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1048 + AegisName: Slender_Snake + Name: Horrendous Hair + Type: Etc + Buy: 800 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1049 + AegisName: Skirt_Of_Virgin + Name: Skirt of Virgin + Type: Etc + Buy: 1700 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1050 + AegisName: Tendon + Name: Tendon + Type: Etc + Buy: 220 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1051 + AegisName: Detonator + Name: Detonator + Type: Etc + Buy: 450 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1052 + AegisName: Single_Cell + Name: Single Cell + Type: Etc + Buy: 46 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1053 + AegisName: Tooth_Of_Ancient_Fish + Name: Ancient Tooth + Type: Etc + Buy: 548 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1054 + AegisName: Lip_Of_Ancient_Fish + Name: Ancient Lips + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1055 + AegisName: Earthworm_Peeling + Name: Earthworm Peeling + Type: Etc + Buy: 196 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1056 + AegisName: Grit + Name: Grit + Type: Etc + Buy: 306 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1057 + AegisName: Moth_Dust + Name: Moth Dust + Type: Etc + Buy: 138 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1058 + AegisName: Wing_Of_Moth + Name: Moth Wings + Type: Etc + Buy: 200 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1059 + AegisName: Transparent_Cloth + Name: Fabric + Type: Etc + Buy: 306 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1060 + AegisName: Golden_Hair + Name: Golden Hair + Type: Etc + Buy: 430 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1061 + AegisName: Starsand_Of_Witch + Name: Witched Starsand + Type: Etc + Buy: 484 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1062 + AegisName: Pumpkin_Head + Name: Jack o' Pumpkin + Type: Etc + Buy: 374 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1063 + AegisName: Sharpened_Cuspid + Name: Fang + Type: Etc + Buy: 680 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1064 + AegisName: Reins + Name: Reins + Type: Etc + Buy: 802 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1065 + AegisName: Booby_Trap + Name: Trap + Type: Etc + Buy: 75 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1066 + AegisName: Tree_Of_Archer_1 + Name: Fine-grained Trunk + Type: Etc + Buy: 2 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1067 + AegisName: Tree_Of_Archer_2 + Name: Solid Trunk + Type: Etc + Buy: 2 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1068 + AegisName: Tree_Of_Archer_3 + Name: Barren Trunk + Type: Etc + Buy: 2 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1069 + AegisName: Mushroom_Of_Thief_1 + Name: Orange Net Mushroom + Type: Etc + Buy: 2 + Weight: 10 + - Id: 1070 + AegisName: Mushroom_Of_Thief_2 + Name: Orange Gooey Mushroom + Type: Etc + Buy: 2 + Weight: 10 + - Id: 1071 + AegisName: Mage_Test_1 + Name: Unknown Test Tube + Type: Etc + Weight: 10 + - Id: 1072 + AegisName: Delivery_Message + Name: Delivery Message + Type: Etc + Weight: 10 + - Id: 1073 + AegisName: Merchant_Voucher_1 + Name: Voucher + Type: Etc + Weight: 10 + - Id: 1074 + AegisName: Merchant_Voucher_2 + Name: Voucher + Type: Etc + Weight: 10 + - Id: 1075 + AegisName: Merchant_Voucher_3 + Name: Voucher + Type: Etc + Weight: 10 + - Id: 1076 + AegisName: Merchant_Voucher_4 + Name: Voucher + Type: Etc + Weight: 10 + - Id: 1077 + AegisName: Merchant_Voucher_5 + Name: Voucher + Type: Etc + Weight: 10 + - Id: 1078 + AegisName: Merchant_Voucher_6 + Name: Voucher + Type: Etc + Weight: 10 + - Id: 1079 + AegisName: Merchant_Voucher_7 + Name: Voucher + Type: Etc + Weight: 10 + - Id: 1080 + AegisName: Merchant_Voucher_8 + Name: Voucher + Type: Etc + Weight: 10 + - Id: 1081 + AegisName: Merchant_Box_1 + Name: Delivery Box + Type: Etc + Weight: 1200 + - Id: 1082 + AegisName: Merchant_Box_2 + Name: Delivery Box + Type: Etc + Weight: 1200 + - Id: 1083 + AegisName: Merchant_Box_3 + Name: Delivery Box + Type: Etc + Weight: 1200 + - Id: 1084 + AegisName: Kapra's_Pass + Name: Kafra Pass + Type: Etc + Weight: 10 + - Id: 1085 + AegisName: Mage_Test_2 + Name: Unknown Test Tube + Type: Etc + Weight: 10 + - Id: 1086 + AegisName: Mage_Test_3 + Name: Unknown Test Tube + Type: Etc + Weight: 10 + - Id: 1087 + AegisName: Mage_Test_4 + Name: Unknown Test Tube + Type: Etc + Weight: 10 + - Id: 1088 + AegisName: Morocc_Potion + Name: Morocc Solution + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 1089 + AegisName: Payon_Potion + Name: Payon Solution + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 1090 + AegisName: Mage_Test_Etc + Name: Unknown Test Tube + Type: Etc + Weight: 10 + - Id: 1091 + AegisName: Merchant_Box_Etc + Name: Delivery Box + Type: Etc + Weight: 10 + - Id: 1092 + AegisName: Empty_Cylinder + Name: Empty Test Tube + Type: Etc + Buy: 3 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1093 + AegisName: Empty_Potion + Name: Empty Potion Bottle + Type: Etc + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1094 + AegisName: Short_Daenggie + Name: Short Daenggie + Type: Etc + Buy: 278 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1095 + AegisName: Needle_Of_Alarm + Name: Needle of Alarm + Type: Etc + Buy: 546 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1096 + AegisName: Round_Shell + Name: Round Shell + Type: Etc + Buy: 780 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1097 + AegisName: Worn_Out_Page + Name: Worn Out Page + Type: Etc + Buy: 948 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1098 + AegisName: Manacles + Name: Manacles + Type: Etc + Buy: 658 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1099 + AegisName: Worn_Out_Prison_Uniform + Name: Worn-out Prison Uniform + Type: Etc + Buy: 680 + Weight: 10 + Flags: + BuyingStore: true + - Id: 1750 + AegisName: Arrow + Name: Arrow + Type: Ammo + SubType: Arrow + Buy: 1 + Weight: 1 + Attack: 25 + Jobs: + Archer: true + Assassin: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Ammo: true + EquipLevelMin: 1 + - Id: 1751 + AegisName: Silver_Arrow + Name: Silver Arrow + Type: Ammo + SubType: Arrow + Buy: 3 + Weight: 2 + Attack: 30 + Jobs: + Archer: true + Assassin: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Holy; + - Id: 1752 + AegisName: Fire_Arrow + Name: Fire Arrow + Type: Ammo + SubType: Arrow + Buy: 3 + Weight: 2 + Attack: 30 + Jobs: + Archer: true + Assassin: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Fire; + - Id: 1753 + AegisName: Steel_Arrow + Name: Steel Arrow + Type: Ammo + SubType: Arrow + Buy: 4 + Weight: 2 + Attack: 40 + Jobs: + Archer: true + Assassin: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Ammo: true + EquipLevelMin: 1 + - Id: 1754 + AegisName: Crystal_Arrow + Name: Crystal Arrow + Type: Ammo + SubType: Arrow + Buy: 3 + Weight: 2 + Attack: 30 + Jobs: + Archer: true + Assassin: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Water; + - Id: 1755 + AegisName: Arrow_Of_Wind + Name: Arrow of Wind + Type: Ammo + SubType: Arrow + Buy: 3 + Weight: 2 + Attack: 30 + Jobs: + Archer: true + Assassin: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Wind; + - Id: 1756 + AegisName: Stone_Arrow + Name: Stone Arrow + Type: Ammo + SubType: Arrow + Buy: 3 + Weight: 2 + Attack: 30 + Jobs: + Archer: true + Assassin: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Earth; + - Id: 1757 + AegisName: Immatrial_Arrow + Name: Immaterial Arrow + Type: Ammo + SubType: Arrow + Buy: 3 + Weight: 1 + Attack: 30 + Jobs: + Archer: true + Assassin: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Ghost; + - Id: 1758 + AegisName: Stun_Arrow + Name: Stun Arrow + Type: Ammo + SubType: Arrow + Buy: 10 + Weight: 3 + Attack: 1 + Jobs: + Archer: true + Assassin: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus2 bAddEff,Eff_Stun,1000; + - Id: 1759 + AegisName: Freezing_Arrow + Name: Frozen Arrow + Type: Ammo + SubType: Arrow + Buy: 10 + Weight: 3 + Attack: 1 + Jobs: + Archer: true + Assassin: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Water; bonus2 bAddEff,Eff_Freeze,1000; + - Id: 1760 + AegisName: Flash_Arrow + Name: Flash Arrow + Type: Ammo + SubType: Arrow + Buy: 10 + Weight: 3 + Attack: 1 + Jobs: + Archer: true + Assassin: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus2 bAddEff,Eff_Blind,1000; + - Id: 1761 + AegisName: Curse_Arrow + Name: Cursed Arrow + Type: Ammo + SubType: Arrow + Buy: 10 + Weight: 3 + Attack: 1 + Jobs: + Archer: true + Assassin: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus2 bAddEff,Eff_Curse,1000; + - Id: 1762 + AegisName: Rusty_Arrow + Name: Rusty Arrow + Type: Ammo + SubType: Arrow + Buy: 3 + Weight: 2 + Attack: 30 + Jobs: + Archer: true + Assassin: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Poison; + - Id: 1763 + AegisName: Poison_Arrow + Name: Poison Arrow + Type: Ammo + SubType: Arrow + Buy: 10 + Weight: 3 + Attack: 1 + Jobs: + Archer: true + Assassin: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,2000; + - Id: 1764 + AegisName: Incisive_Arrow + Name: Sharp Arrow + Type: Ammo + SubType: Arrow + Buy: 20 + Weight: 3 + Attack: 10 + Jobs: + Archer: true + Assassin: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus bCriticalLong,20; + - Id: 1765 + AegisName: Oridecon_Arrow + Name: Oridecon Arrow + Type: Ammo + SubType: Arrow + Buy: 30 + Weight: 3 + Attack: 50 + Jobs: + Archer: true + Assassin: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Ammo: true + EquipLevelMin: 1 + - Id: 1766 + AegisName: Arrow_Of_Counter_Evil + Name: Arrow of Counter Evil + Type: Ammo + SubType: Arrow + Buy: 40 + Weight: 3 + Attack: 50 + Jobs: + Archer: true + Assassin: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Holy; + - Id: 1767 + AegisName: Arrow_Of_Shadow + Name: Arrow of Shadow + Type: Ammo + SubType: Arrow + Buy: 3 + Weight: 2 + Attack: 30 + Jobs: + Archer: true + Assassin: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Dark; + - Id: 1768 + AegisName: Sleep_Arrow + Name: Sleep Arrow + Type: Ammo + SubType: Arrow + Buy: 10 + Weight: 3 + Attack: 1 + Jobs: + Archer: true + Assassin: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus2 bAddEff,Eff_Sleep,2000; + - Id: 1769 + AegisName: Silence_Arrow + Name: Mute Arrow + Type: Ammo + SubType: Arrow + Buy: 10 + Weight: 3 + Attack: 1 + Jobs: + Archer: true + Assassin: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus2 bAddEff,Eff_Silence,1000; + - Id: 1770 + AegisName: Iron_Arrow + Name: Iron Arrow + Type: Ammo + SubType: Arrow + Buy: 2 + Weight: 1 + Attack: 30 + Jobs: + Archer: true + Assassin: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Ammo: true + EquipLevelMin: 1 + - Id: 1771 + AegisName: Venom_Knife + Name: Venom Knife + Type: Ammo + SubType: Dagger + Buy: 50 + Weight: 5 + Attack: 30 + Jobs: + Assassin: true + Locations: + Ammo: true + EquipLevelMin: 1 + - Id: 1772 + AegisName: Holy_Arrow + Name: Holy Arrow + Type: Ammo + SubType: Arrow + Buy: 3 + Weight: 2 + Attack: 50 + Jobs: + Archer: true + Assassin: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Holy; bonus2 bAddRace,RC_Demon,5; + - Id: 1773 + AegisName: Arrow_Of_Elf + Name: Elven Arrow + Type: Ammo + SubType: Arrow + Buy: 5 + Weight: 1 + Attack: 45 + Jobs: + Archer: true + Assassin: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Ammo: true + EquipLevelMin: 100 + - Id: 1774 + AegisName: Hunting_Arrow + Name: Hunting Arrow + Type: Ammo + SubType: Arrow + Buy: 5 + Weight: 1 + Attack: 35 + Jobs: + Archer: true + Assassin: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Ammo: true + EquipLevelMin: 1 + - Id: 1775 + AegisName: Siege_Arrow_S + Name: Siege Arrow S + Type: Ammo + SubType: Arrow + Buy: 10 + Weight: 1 + Attack: 45 + Jobs: + Archer: true + Assassin: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Ammo: true + EquipLevelMin: 130 + - Id: 1776 + AegisName: Siege_Arrow_A + Name: Siege Arrow A + Type: Ammo + SubType: Arrow + Buy: 10 + Weight: 1 + Attack: 30 + Jobs: + Archer: true + Assassin: true + BardDancer: true + Hunter: true + Rogue: true + Thief: true + Locations: + Ammo: true + EquipLevelMin: 95 + - Id: 4001 + AegisName: Poring_Card + Name: Poring Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bLuk,2; bonus bFlee2,1; + - Id: 4002 + AegisName: Fabre_Card + Name: Fabre Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bVit,1; bonus bMaxHP,100; + - Id: 4003 + AegisName: Pupa_Card + Name: Pupa Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bMaxHP,700; + - Id: 4004 + AegisName: Drops_Card + Name: Drops Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bDex,1; bonus bHit,3; + - Id: 4005 + AegisName: Poring__Card + Name: Santa Poring Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEle,Ele_Dark,20; + - Id: 4006 + AegisName: Lunatic_Card + Name: Lunatic Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bLuk,1; bonus bCritical,1; bonus bFlee2,1; + - Id: 4007 + AegisName: Pecopeco_Egg_Card + Name: Peco Peco Egg Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddRace,RC_Formless,20; + - Id: 4008 + AegisName: Picky_Card + Name: Picky Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bStr,1; bonus bBaseAtk,10; + - Id: 4009 + AegisName: Chonchon_Card + Name: Chonchon Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bAgi,1; bonus bFlee,2; + - Id: 4010 + AegisName: Wilow_Card + Name: Willow Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bMaxSP,80; + - Id: 4011 + AegisName: Picky__Card + Name: Picky Egg Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bVit,1; bonus bMaxHP,100; + - Id: 4012 + AegisName: Thief_Bug_Egg_Card + Name: Thief Bug Egg Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bMaxHP,400; + - Id: 4013 + AegisName: Andre_Egg_Card + Name: Andre Egg Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bMaxHPrate,5; + - Id: 4014 + AegisName: Roda_Frog_Card + Name: Roda Frog Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bMaxHP,400; bonus bMaxSP,50; + - Id: 4015 + AegisName: Condor_Card + Name: Condor Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bFlee,10; + - Id: 4016 + AegisName: Thief_Bug_Card + Name: Thief Bug Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bAgi,1; + - Id: 4017 + AegisName: Savage_Babe_Card + Name: Savage Babe Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEff,Eff_Stun,500; + - Id: 4018 + AegisName: Andre_Larva_Card + Name: Andre Larva Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bInt,1; bonus bMaxSP,10; + - Id: 4019 + AegisName: Hornet_Card + Name: Hornet Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bStr,1; bonus bBaseAtk,3; + - Id: 4020 + AegisName: Farmiliar_Card + Name: Familiar Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEff,Eff_Blind,500; bonus bBaseAtk,5; + - Id: 4021 + AegisName: Rocker_Card + Name: Rocker Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bDex,1; bonus bBaseAtk,5; + - Id: 4022 + AegisName: Spore_Card + Name: Spore Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bVit,2; + - Id: 4023 + AegisName: Desert_Wolf_Babe_Card + Name: Baby Desert Wolf Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bInt,1; + - Id: 4024 + AegisName: Plankton_Card + Name: Plankton Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEff,Eff_Sleep,500; bonus bBaseAtk,5; + - Id: 4025 + AegisName: Skeleton_Card + Name: Skeleton Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,10; bonus2 bAddEff,Eff_Stun,200; + - Id: 4026 + AegisName: Thief_Bug_Female_Card + Name: Female Thief Bug Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bAgi,1; bonus bFlee,1; + - Id: 4027 + AegisName: Kukre_Card + Name: Kukre Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bAgi,2; + - Id: 4028 + AegisName: Tarou_Card + Name: Tarou Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bStr,2; + - Id: 4029 + AegisName: Wolf_Card + Name: Wolf Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,15; bonus bCritical,1; + - Id: 4030 + AegisName: Mandragora_Card + Name: Mandragora Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEle,Ele_Wind,20; + - Id: 4031 + AegisName: Pecopeco_Card + Name: Peco Peco Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bMaxHPrate,10; + - Id: 4032 + AegisName: Ambernite_Card + Name: Ambernite Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bDef,2; + - Id: 4033 + AegisName: Poporing_Card + Name: Poporing Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + skill "TF_DETOXIFY",1; + - Id: 4034 + AegisName: Worm_Tail_Card + Name: Wormtail Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bDex,2; + - Id: 4035 + AegisName: Hydra_Card + Name: Hydra Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; + - Id: 4036 + AegisName: Muka_Card + Name: Muka Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bHPrecovRate,10; + - Id: 4037 + AegisName: Snake_Card + Name: Snake Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEff,Eff_Poison,500; bonus bBaseAtk,5; + - Id: 4038 + AegisName: Zombie_Card + Name: Zombie Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bHPrecovRate,20; + - Id: 4039 + AegisName: Stainer_Card + Name: Stainer Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus2 bResEff,Eff_Silence,2000; bonus bDef,1; + - Id: 4040 + AegisName: Creamy_Card + Name: Creamy Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + skill "AL_TELEPORT",1; + - Id: 4041 + AegisName: Coco_Card + Name: Coco Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus2 bResEff,Eff_Sleep,2000; bonus bDef,1; + - Id: 4042 + AegisName: Steel_Chonchon_Card + Name: Steel Chonchon Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubEle,Ele_Wind,10; bonus bDef,2; + - Id: 4043 + AegisName: Andre_Card + Name: Andre Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,20; + - Id: 4044 + AegisName: Smokie_Card + Name: Smokie Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + skill "TF_HIDING",1; + UnEquipScript: | + sc_end SC_HIDING; + - Id: 4045 + AegisName: Horn_Card + Name: Horn Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bLongAtkDef,35; + - Id: 4046 + AegisName: Martin_Card + Name: Martin Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus2 bResEff,Eff_Blind,2000; bonus bDef,1; + - Id: 4047 + AegisName: Ghostring_Card + Name: Ghostring Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bDefEle,Ele_Ghost; bonus bHPrecovRate,-25; + - Id: 4048 + AegisName: Poison_Spore_Card + Name: Poison Spore Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + skill "TF_POISON",3; + - Id: 4049 + AegisName: Vadon_Card + Name: Vadon Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEle,Ele_Fire,20; + - Id: 4050 + AegisName: Thief_Bug_Male_Card + Name: Male Thief Bug Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bAgi,2; + - Id: 4051 + AegisName: Yoyo_Card + Name: Yoyo Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bFlee2,5; bonus bAgi,1; + - Id: 4052 + AegisName: Elder_Wilow_Card + Name: Elder Willow Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bInt,2; + - Id: 4053 + AegisName: Vitata_Card + Name: Vitata Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + skill "AL_HEAL",1; bonus bUseSPrate,25; + - Id: 4054 + AegisName: Angeling_Card + Name: Angeling Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bDefEle,Ele_Holy; + - Id: 4055 + AegisName: Marina_Card + Name: Marina Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEff,Eff_Freeze,500; bonus bBaseAtk,5; + - Id: 4056 + AegisName: Dustiness_Card + Name: Dustiness Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubEle,Ele_Wind,30; bonus bFlee,5; + - Id: 4057 + AegisName: Metaller_Card + Name: Metaller Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEff,Eff_Silence,500; bonus bBaseAtk,5; + - Id: 4058 + AegisName: Thara_Frog_Card + Name: Thara Frog Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubRace,RC_DemiHuman,30; bonus2 bSubRace,RC_Player_Human,30; + - Id: 4059 + AegisName: Soldier_Andre_Card + Name: Soldier Andre Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubRace,RC_Plant,30; + - Id: 4060 + AegisName: Goblin_Card + Name: Goblin Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddRace,RC_Brute,20; bonus2 bAddRace,RC_Player_Doram,20; + - Id: 4061 + AegisName: Cornutus_Card + Name: Cornutus Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bUnbreakableArmor; bonus bDef,1; + - Id: 4062 + AegisName: Anacondaq_Card + Name: Anacondaq Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEle,Ele_Poison,20; + - Id: 4063 + AegisName: Caramel_Card + Name: Caramel Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddRace,RC_Insect,20; + - Id: 4064 + AegisName: Zerom_Card + Name: Zerom Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bDex,3; + - Id: 4065 + AegisName: Kaho_Card + Name: Kaho Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEle,Ele_Earth,20; + - Id: 4066 + AegisName: Orc_Warrior_Card + Name: Orc Warrior Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubRace,RC_Brute,30; bonus2 bSubRace,RC_Player_Doram,30; + - Id: 4067 + AegisName: Megalodon_Card + Name: Megalodon Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bResEff,Eff_Freeze,2000; bonus bDef,1; + - Id: 4068 + AegisName: Scorpion_Card + Name: Scorpion Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddRace,RC_Plant,20; + - Id: 4069 + AegisName: Drainliar_Card + Name: Drainliar Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEle,Ele_Water,20; + - Id: 4070 + AegisName: Eggyra_Card + Name: Eggyra Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bSPrecovRate,15; + - Id: 4071 + AegisName: Orc_Zombie_Card + Name: Orc Zombie Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubEle,Ele_Undead,30; bonus bFlee,5; + - Id: 4072 + AegisName: Golem_Card + Name: Golem Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bUnbreakableWeapon; bonus bBaseAtk,5; + - Id: 4073 + AegisName: Pirate_Skel_Card + Name: Pirate Skeleton Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + skill "MC_DISCOUNT",5; + - Id: 4074 + AegisName: BigFoot_Card + Name: Bigfoot Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubRace,RC_Insect,30; + - Id: 4075 + AegisName: Argos_Card + Name: Argos Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bResEff,Eff_Stone,2000; bonus bDef,1; + - Id: 4076 + AegisName: Magnolia_Card + Name: Magnolia Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEff,Eff_Curse,500; bonus bBaseAtk,5; + - Id: 4077 + AegisName: Phen_Card + Name: Phen Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bNoCastCancel; bonus bVariableCastrate,25; + - Id: 4078 + AegisName: Savage_Card + Name: Savage Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bVit,3; + - Id: 4079 + AegisName: Mantis_Card + Name: Mantis Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bStr,3; + - Id: 4080 + AegisName: Flora_Card + Name: Flora Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddRace,RC_Fish,20; + - Id: 4081 + AegisName: Hode_Card + Name: Hode Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubEle,Ele_Earth,30; bonus bFlee,5; + - Id: 4082 + AegisName: Desert_Wolf_Card + Name: Desert Wolf Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddSize,Size_Small,15; bonus bBaseAtk,5; + - Id: 4083 + AegisName: Rafflesia_Card + Name: Rafflesia Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubRace,RC_Fish,30; + - Id: 4084 + AegisName: Marine_Sphere_Card + Name: Marine Sphere Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + skill "SM_MAGNUM",3; + - Id: 4085 + AegisName: Orc_Skeleton_Card + Name: Orc Skeleton Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEle,Ele_Holy,20; + - Id: 4086 + AegisName: Soldier_Skeleton_Card + Name: Soldier Skeleton Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bCritical,9; + - Id: 4087 + AegisName: Giearth_Card + Name: Giearth Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus2 bResEff,Eff_Confusion,10000; bonus2 bSubEle,Ele_Earth,15; + - Id: 4088 + AegisName: Frilldora_Card + Name: Frilldora Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + skill "AS_CLOAKING",1; + UnEquipScript: | + sc_end SC_CLOAKING; + - Id: 4089 + AegisName: Sword_Fish_Card + Name: Swordfish Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bDefEle,Ele_Water; bonus bDef,1; + - Id: 4090 + AegisName: Munak_Card + Name: Munak Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bResEff,Eff_Stone,1500; bonus2 bSubEle,Ele_Earth,5; bonus bDef,1; + - Id: 4091 + AegisName: Kobold_Card + Name: Kobold Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bStr,1; bonus bCritical,4; + - Id: 4092 + AegisName: Skel_Worker_Card + Name: Skeleton Worker Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddSize,Size_Medium,15; bonus bBaseAtk,5; + - Id: 4093 + AegisName: Obeaune_Card + Name: Obeaune Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + skill "AL_CURE",1; + - Id: 4094 + AegisName: Archer_Skeleton_Card + Name: Archer Skeleton Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bLongAtkRate,10; + - Id: 4095 + AegisName: Marse_Card + Name: Marse Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubEle,Ele_Water,30; bonus bFlee,5; + - Id: 4096 + AegisName: Zenorc_Card + Name: Zenorc Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEff,Eff_Poison,400; bonus bBaseAtk,10; + - Id: 4097 + AegisName: Matyr_Card + Name: Matyr Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bMaxHPrate,10; bonus bAgi,1; + - Id: 4098 + AegisName: Dokebi_Card + Name: Dokebi Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bDefEle,Ele_Wind; bonus bDef,1; + - Id: 4099 + AegisName: Pasana_Card + Name: Pasana Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bDefEle,Ele_Fire; bonus bDef,1; + - Id: 4100 + AegisName: Sohee_Card + Name: Sohee Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bMaxSPrate,15; bonus bSPrecovRate,3; + - Id: 4101 + AegisName: Sand_Man_Card + Name: Sandman Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bDefEle,Ele_Earth; bonus bDef,1; + - Id: 4102 + AegisName: Whisper_Card + Name: Whisper Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bFlee,20; bonus2 bSubEle,Ele_Ghost,-50; + - Id: 4103 + AegisName: Horong_Card + Name: Horong Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + skill "MG_SIGHT",1; + UnEquipScript: | + sc_end SC_SIGHT; + - Id: 4104 + AegisName: Requiem_Card + Name: Requiem Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEff,Eff_Confusion,500; + - Id: 4105 + AegisName: Marc_Card + Name: Marc Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubEle,Ele_Water,5; bonus2 bResEff,Eff_Freeze,10000; + - Id: 4106 + AegisName: Mummy_Card + Name: Mummy Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bHit,20; + - Id: 4107 + AegisName: Verit_Card + Name: Verit Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bMaxHPrate,8; bonus bMaxSPrate,8; + - Id: 4108 + AegisName: Myst_Card + Name: Myst Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubEle,Ele_Poison,30; bonus bFlee,5; + - Id: 4109 + AegisName: Jakk_Card + Name: Jakk Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubEle,Ele_Fire,30; bonus bFlee,5; + - Id: 4110 + AegisName: Ghoul_Card + Name: Ghoul Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus2 bResEff,Eff_Poison,2000; bonus bDef,1; + - Id: 4111 + AegisName: Strouf_Card + Name: Strouf Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddRace,RC_Demon,20; + - Id: 4112 + AegisName: Marduk_Card + Name: Marduk Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus2 bResEff,Eff_Silence,10000; + - Id: 4113 + AegisName: Marionette_Card + Name: Marionette Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubEle,Ele_Ghost,30; bonus bFlee,5; + - Id: 4114 + AegisName: Argiope_Card + Name: Argiope Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bDefEle,Ele_Poison; bonus bDef,1; + - Id: 4115 + AegisName: Hunter_Fly_Card + Name: Hunter Fly Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bHPDrainRate,30,15; + - Id: 4116 + AegisName: Isis_Card + Name: Isis Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubEle,Ele_Dark,30; bonus bFlee,5; + - Id: 4117 + AegisName: Side_Winder_Card + Name: Sidewinder Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + skill "TF_DOUBLE",1; bonus bDoubleRate,5; + - Id: 4118 + AegisName: Petit_Card + Name: Earth Petite Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddRace,RC_Dragon,20; + - Id: 4119 + AegisName: Bathory_Card + Name: Bathory Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bDefEle,Ele_Dark; + - Id: 4120 + AegisName: Petit__Card + Name: Sky Petite Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubRace,RC_Dragon,30; + - Id: 4121 + AegisName: Phreeoni_Card + Name: Phreeoni Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bHit,100; + - Id: 4122 + AegisName: Deviruchi_Card + Name: Deviruchi Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bStr,1; bonus2 bResEff,Eff_Blind,10000; + - Id: 4123 + AegisName: Eddga_Card + Name: Eddga Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bMaxHPrate,-25; bonus bNoWalkDelay; + - Id: 4124 + AegisName: Medusa_Card + Name: Medusa Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubRace,RC_Demon,15; bonus2 bResEff,Eff_Stone,10000; + - Id: 4125 + AegisName: Deviace_Card + Name: Deviace Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddRace,RC_DemiHuman,7; bonus2 bAddRace,RC_Player_Human,7; bonus2 bAddRace,RC_Brute,7; bonus2 bAddRace,RC_Player_Doram,7; bonus2 bAddRace,RC_Plant,7; bonus2 bAddRace,RC_Insect,7; + - Id: 4126 + AegisName: Minorous_Card + Name: Minorous Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddSize,Size_Large,15; bonus bBaseAtk,5; + - Id: 4127 + AegisName: Nightmare_Card + Name: Nightmare Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus2 bResEff,Eff_Sleep,10000; bonus bAgi,1; + - Id: 4128 + AegisName: Golden_Bug_Card + Name: Golden Thief Bug Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bNoMagicDamage,100; bonus bUseSPrate,100; + - Id: 4129 + AegisName: Baphomet__Card + Name: Bapho Jr. Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bAgi,3; bonus bCritical,1; + - Id: 4130 + AegisName: Scorpion_King_Card + Name: Scorpion King Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEle,Ele_Undead,20; + - Id: 4131 + AegisName: Moonlight_Flower_Card + Name: Moonlight Flower Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bSpeedRate,25; + - Id: 4132 + AegisName: Mistress_Card + Name: Mistress Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bNoGemStone; bonus bUseSPrate,25; + - Id: 4133 + AegisName: Daydric_Card + Name: Raydric Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubEle,Ele_Neutral,20; + - Id: 4134 + AegisName: Dracula_Card + Name: Dracula Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSPDrainRate,100,5; + - Id: 4135 + AegisName: Orc_Load_Card + Name: Orc Lord Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bShortWeaponDamageReturn,30; + - Id: 4136 + AegisName: Khalitzburg_Card + Name: Khalitzburg Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubRace,RC_Demon,30; + - Id: 4137 + AegisName: Drake_Card + Name: Drake Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bNoSizeFix; + - Id: 4138 + AegisName: Anubis_Card + Name: Anubis Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubRace,RC_Angel,30; + - Id: 4139 + AegisName: Joker_Card + Name: Joker Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + skill "TF_STEAL",1; + - Id: 4140 + AegisName: Knight_Of_Abyss_Card + Name: Abysmal Knight Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddClass,Class_Boss,25; + - Id: 4141 + AegisName: Evil_Druid_Card + Name: Evil Druid Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bDefEle,Ele_Undead; bonus bInt,1; bonus bDef,1; + - Id: 4142 + AegisName: Doppelganger_Card + Name: Doppelganger Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bAspdRate,10; + - Id: 4143 + AegisName: Orc_Hero_Card + Name: Orc Hero Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bVit,3; bonus2 bResEff,Eff_Stun,10000; + - Id: 4144 + AegisName: Osiris_Card + Name: Osiris Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bRestartFullRecover; + - Id: 4145 + AegisName: Berzebub_Card + Name: Berzebub Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bVariableCastrate,-30; + - Id: 4146 + AegisName: Maya_Card + Name: Maya Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bMagicDamageReturn,50; + - Id: 4147 + AegisName: Baphomet_Card + Name: Baphomet Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bHit,-10; bonus bSplashRange,1; + - Id: 4148 + AegisName: Pharaoh_Card + Name: Pharaoh Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bUseSPrate,-30; + - Id: 4149 + AegisName: Gargoyle_Card + Name: Gargoyle Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus3 bAddMonsterDropItem,12028,RC_Insect,100; + - Id: 4150 + AegisName: Goat_Card + Name: Goat Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + if(getrefine()<6) { bonus bDef,2; bonus bMdef,5; } + - Id: 4151 + AegisName: Gajomart_Card + Name: Gajomart Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubRace,RC_Plant,-20; bonus2 bExpAddRace,RC_Plant,10; + - Id: 4152 + AegisName: Galapago_Card + Name: Galapago Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddItemGroupHealRate,IG_Juice,50; bonus3 bAddMonsterDropItem,531,RC_Insect,300; bonus3 bAddMonsterDropItem,532,RC_Insect,300; bonus3 bAddMonsterDropItem,534,RC_Insect,300; + - Id: 4153 + AegisName: Crab_Card + Name: Crab Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,5; bonus2 bAddDamageClass,1266,30; + - Id: 4154 + AegisName: Rice_Cake_Boy_Card + Name: Dumpling Child Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddItemGroupHealRate,IG_Candy,50; bonus3 bAddMonsterDropItem,529,RC_DemiHuman,300; bonus3 bAddMonsterDropItem,530,RC_DemiHuman,100; + - Id: 4155 + AegisName: Goblin_Leader_Card + Name: Goblin Leader Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddRace2,RC2_Goblin,30; + - Id: 4156 + AegisName: Steam_Goblin_Card + Name: Goblin Steamrider Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Formless,7; + - Id: 4157 + AegisName: Goblin_Archer_Card + Name: Goblin Archer Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Undead,7; + - Id: 4158 + AegisName: Flying_Deleter_Card + Name: Sky Deleter Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bHPrecovRate,-100; bonus bHPGainValue,100; + - Id: 4159 + AegisName: Nine_Tail_Card + Name: Nine Tail Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bAgi,2; if(getrefine()>8) bonus bFlee,20; + - Id: 4160 + AegisName: Antique_Firelock_Card + Name: Firelock Soldier Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bStr,2; if(getrefine()>8) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; } + - Id: 4161 + AegisName: Grand_Peco_Card + Name: Grand Peco Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpellWhenHit,"PR_GLORIA",1,50; + - Id: 4162 + AegisName: Grizzly_Card + Name: Grizzly Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEffWhenHit,Eff_Blind,300; + - Id: 4163 + AegisName: Gryphon_Card + Name: Gryphon Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bFlee,2; bonus bCritical,7; if(BaseClass==Job_Swordman) bonus3 bAutoSpell,"KN_BOWLINGBASH",5,10; + - Id: 4164 + AegisName: Gullinbursti_Card + Name: Gullinbursti Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubRace,RC_Fish,-20; bonus2 bExpAddRace,RC_Fish,10; + - Id: 4165 + AegisName: Gig_Card + Name: Gig Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSPGainRace,RC_Insect,5; + UnEquipScript: | + heal 0,-5; + - Id: 4166 + AegisName: Nightmare_Terror_Card + Name: Nightmare Terror Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEffWhenHit,Eff_Curse,300; + - Id: 4167 + AegisName: Neraid_Card + Name: Nereid Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSPGainRace,RC_Brute,5; bonus2 bSPGainRace,RC_Player_Doram,5; + UnEquipScript: | + heal 0,-5; + - Id: 4168 + AegisName: Dark_Lord_Card + Name: Dark Lord Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpellWhenHit,"WZ_METEOR",5,100; + - Id: 4169 + AegisName: Dark_Illusion_Card + Name: Dark Illusion Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bMaxHPrate,-10; bonus bMaxSPrate,-10; bonus bVariableCastrate,-10; + - Id: 4170 + AegisName: Dark_Frame_Card + Name: Dark Frame Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEffWhenHit,Eff_Stone,600; + - Id: 4171 + AegisName: Dark_Priest_Card + Name: Dark Priest Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus3 bSPVanishRate,50,10,BF_WEAPON|BF_MAGIC|BF_MISC; if(BaseJob==Job_Sage) bonus bSPDrainValue,1; + - Id: 4172 + AegisName: The_Paper_Card + Name: The Paper Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bCritAtkRate,20; bonus bSPDrainValue,-1; + - Id: 4173 + AegisName: Demon_Pungus_Card + Name: Demon Pungus Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEffWhenHit,Eff_Sleep,600; + - Id: 4174 + AegisName: Deviling_Card + Name: Deviling Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + 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; + - Id: 4175 + AegisName: Poison_Toad_Card + Name: Poisonous Toad Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpell,"TF_POISON",1,20; bonus2 bAddSkillBlow,52,5; + - Id: 4176 + AegisName: Dullahan_Card + Name: Dullahan Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Dragon,7; + - Id: 4177 + AegisName: Dryad_Card + Name: Dryad Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus3 bAddMonsterDropItem,993,RC_Plant,100; bonus2 bSubEle,Ele_Earth,10; + - Id: 4178 + AegisName: Dragon_Tail_Card + Name: Dragon Tail Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bAgi,1; bonus bFlee,10; bonus2 bSkillAtk,"AC_DOUBLE",5; bonus2 bSkillAtk,"AC_SHOWER",5; + - Id: 4179 + AegisName: Dragon_Fly_Card + Name: Dragon Fly Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bAgi,1; + - Id: 4180 + AegisName: Driller_Card + Name: Driller Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSPGainRace,RC_Dragon,5; + UnEquipScript: | + heal 0,-5; + - Id: 4181 + AegisName: Disguise_Card + Name: Disguise Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEffWhenHit,Eff_Silence,300+600*(readparam(bVit)>=77); + - Id: 4182 + AegisName: Diabolic_Card + Name: Diabolic Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSPGainRace,RC_Demon,5; + UnEquipScript: | + heal 0,-5; + - Id: 4183 + AegisName: Vagabond_Wolf_Card + Name: Vagabond Wolf Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bStr,1; + - Id: 4184 + AegisName: Lava_Golem_Card + Name: Lava Golem Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddRace2,RC2_Golem,30; + - Id: 4185 + AegisName: Rideword_Card + Name: Rideword Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bInt,1; if(BaseClass==Job_Acolyte) { bonus bInt,1; bonus bMdef,1; } + - Id: 4186 + AegisName: Raggler_Card + Name: Raggler Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bStr,1; bonus bVit,1; + - Id: 4187 + AegisName: Raydric_Archer_Card + Name: Raydric Archer Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus3 bAddMonsterDropItem,12030,RC_Demon,100; + - Id: 4188 + AegisName: Leib_Olmai_Card + Name: Leib Olmai Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubEle,Ele_Fire,10; bonus3 bAddMonsterDropItem,990,RC_Brute,100; + - Id: 4189 + AegisName: Wraith_Dead_Card + Name: Wraith Dead Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEffWhenHit,Eff_Curse,600; + - Id: 4190 + AegisName: Wraith_Card + Name: Wraith Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus3 bAddMonsterDropItem,12027,RC_Undead,100; + - Id: 4191 + AegisName: Loli_Ruri_Card + Name: Loli Ruri Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpellWhenHit,"AL_HEAL",3,50; + - Id: 4192 + AegisName: Rotar_Zairo_Card + Name: Rotar Zairo Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Fish,7; + - Id: 4193 + AegisName: Lude_Card + Name: Lude Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + if(BaseJob==Job_Novice||BaseJob==Job_SuperNovice) bonus3 bAutoSpellWhenHit,"SM_ENDURE",1,200; + - Id: 4194 + AegisName: Rybio_Card + Name: Rybio Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEffWhenHit,Eff_Stun,300+600*(readparam(bDex)>=77); + - Id: 4195 + AegisName: Leaf_Cat_Card + Name: Leaf Cat Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubEle,Ele_Water,10; bonus3 bAddMonsterDropItem,991,RC_Fish,100; + - Id: 4196 + AegisName: Marin_Card + Name: Marin Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddMonsterDropItem,909,2000; bonus2 bAddMonsterDropItem,7126,10; + - Id: 4197 + AegisName: Mastering_Card + Name: Mastering Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bLuk,1; + - Id: 4198 + AegisName: Maya_Puple_Card + Name: Maya Purple Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bIntravision; + - Id: 4199 + AegisName: Merman_Card + Name: Merman Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bHPrecovRate,10; bonus bSPrecovRate,10; + - Id: 4200 + AegisName: Megalith_Card + Name: Megalith Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + if(getrefine()<6) bonus bMdef,7; + - Id: 4201 + AegisName: Majoruros_Card + Name: Majoruros Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEffWhenHit,Eff_Stun,600; + - Id: 4202 + AegisName: Civil_Servant_Card + Name: Mao Guai Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEle,Ele_Ghost,20; + - Id: 4203 + AegisName: Mutant_Dragon_Card + Name: Mutant Dragonoid Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,15; bonus3 bAutoSpell,"MG_FIREBALL",3+7*(getskilllv("MG_FIREBALL")==10),50; + - Id: 4204 + AegisName: Mini_Demon_Card + Name: Mini Demon Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubRace,RC_Brute,-20; bonus2 bSubRace,RC_Player_Doram,-20; bonus2 bExpAddRace,RC_Brute,10; + - Id: 4205 + AegisName: Mimic_Card + Name: Mimic Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddMonsterDropItem,603,10; + - Id: 4206 + AegisName: Mystcase_Card + Name: Myst Case Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddMonsterDropItem,644,30; + - Id: 4207 + AegisName: Mysteltainn_Card + Name: Mysteltainn Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubSize,Size_Small,25; bonus bDef,1; + - Id: 4208 + AegisName: Miyabi_Ningyo_Card + Name: Miyabi Doll Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bMaxSPrate,10; bonus2 bSkillAtk,"MG_FROSTDIVER",5; + - Id: 4209 + AegisName: Violy_Card + Name: Violy Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpell,"BA_FROSTJOKER",1+4*(getskilllv("BA_FROSTJOKER")==5),20; + - Id: 4210 + AegisName: Wander_Man_Card + Name: Wanderer Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + if(!isequipped(4172,4257,4230,4272)) bonus3 bAutoSpell,"RG_INTIMIDATE",1,20; if(BaseClass==Job_Thief) bonus bFlee,20; + - Id: 4211 + AegisName: Vocal_Card + Name: Vocal Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bMdef,3; + - Id: 4212 + AegisName: Bon_Gun_Card + Name: Bongun Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpell,"SM_BASH",1,20; bonus2 bAddSkillBlow,"SM_BASH",5; bonus2 bAddDefMonster,1026,-100; + - Id: 4213 + AegisName: Brilight_Card + Name: Brilight Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEffWhenHit,Eff_Silence,600; + - Id: 4214 + AegisName: Bloody_Murderer_Card + Name: Bloody Murderer Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Insect,7; + - Id: 4215 + AegisName: Blazzer_Card + Name: Blazer Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddMonsterDropItemGroup,IG_Food,600; + - Id: 4216 + AegisName: Sasquatch_Card + Name: Sasquatch Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEffWhenHit,Eff_Freeze,600; + - Id: 4217 + AegisName: Live_Peach_Tree_Card + Name: Enchanted Peach Tree Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpell,"AL_HEAL",1+9*(getskilllv("AL_HEAL")==10),20; + - Id: 4218 + AegisName: Succubus_Card + Name: Succubus Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bVit,-3; bonus bHPrecovRate,-20; bonus bMaxHP,1000; + - Id: 4219 + AegisName: Sageworm_Card + Name: Sage Worm Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddMonsterDropItem,715,30; bonus2 bAddMonsterDropItem,716,30; bonus2 bAddMonsterDropItem,717,30; + - Id: 4220 + AegisName: Solider_Card + Name: Solider Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bDef,2; bonus bMdef,2; + - Id: 4221 + AegisName: Skeleton_General_Card + Name: Skeleton General Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubRace,RC_Insect,-20; bonus2 bExpAddRace,RC_Insect,10; + - Id: 4222 + AegisName: Skel_Prisoner_Card + Name: Skeleton Prisoner Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEffWhenHit,Eff_Sleep,300; + - Id: 4223 + AegisName: Stalactic_Golem_Card + Name: Stalactic Golem Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bDef,1; bonus2 bResEff,Eff_Stun,2000; + - Id: 4224 + AegisName: Stem_Worm_Card + Name: Stem Worm Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus3 bAddMonsterDropItem,12032,RC_Brute,100; + - Id: 4225 + AegisName: Stone_Shooter_Card + Name: Stone Shooter Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,10; bonus bHit,10; + - Id: 4226 + AegisName: Sting_Card + Name: Sting Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bDef,2; if(getrefine()>8) bonus bMdef,5; + - Id: 4227 + AegisName: Spring_Rabbit_Card + Name: Spring Rabbit Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddItemGroupHealRate,IG_Meat,50; bonus3 bAddMonsterDropItem,517,RC_Brute,200; bonus3 bAddMonsterDropItem,528,RC_Brute,200; + - Id: 4228 + AegisName: Sleeper_Card + Name: Sleeper Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus3 bAddMonsterDropItem,12031,RC_Fish,100; + - Id: 4229 + AegisName: C_Tower_Manager_Card + Name: Tower Keeper Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bInt,1; bonus bVariableCastrate,-5; + - Id: 4230 + AegisName: Shinobi_Card + Name: Shinobi Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bAgi,1; bonus3 bAutoSpellWhenHit,"AS_CLOAKING",5,100; + - Id: 4231 + AegisName: Increase_Soil_Card + Name: Mi Gao Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubRace2,RC2_Guardian,50; + - Id: 4232 + AegisName: Wild_Ginseng_Card + Name: Hermit Plant Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddItemGroupHealRate,IG_Herb,50; bonus3 bAddMonsterDropItem,507,RC_Plant,300; bonus3 bAddMonsterDropItem,508,RC_Plant,200; bonus3 bAddMonsterDropItem,509,RC_Plant,100; + - Id: 4233 + AegisName: Baby_Leopard_Card + Name: Baby Leopard Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bLuk,3; if(BaseClass==Job_Merchant) bonus bUnbreakableArmor; + - Id: 4234 + AegisName: Anolian_Card + Name: Anolian Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpellWhenHit,"AC_CONCENTRATION",1+9*(getskilllv("AC_CONCENTRATION")==10),30; + - Id: 4235 + AegisName: Cookie_XMAS_Card + Name: Christmas Cookie Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubRace,RC_Angel,-20; bonus2 bExpAddRace,RC_Angel,10; + - Id: 4236 + AegisName: Amon_Ra_Card + Name: Amon Ra Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bAllStats,1; bonus3 bAutoSpellWhenHit,"PR_KYRIE",10,(30+70*(readparam(bInt)>=99)); + - Id: 4237 + AegisName: Owl_Duke_Card + Name: Owl Duke Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpell,"PR_IMPOSITIO",3,3; + - Id: 4238 + AegisName: Owl_Baron_Card + Name: Owl Baron Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpell,"PR_LEXAETERNA",1,30; + - Id: 4239 + AegisName: Iron_Fist_Card + Name: Iron Fist Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubRace,RC_Formless,-20; bonus2 bExpAddRace,RC_Formless,10; + - Id: 4240 + AegisName: Arclouse_Card + Name: Arclouze Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + if(getrefine()<6) { bonus bDef,2; bonus bMdef,3; } + - Id: 4241 + AegisName: Archangeling_Card + Name: Arc Angeling Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bMaxHP,300; if(readparam(bLuk)>=77) { bonus bHPrecovRate,100; bonus bSPrecovRate,100; } + - Id: 4242 + AegisName: Apocalips_Card + Name: Apocalipse Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bVit,2; if(getrefine()>8) bonus bMaxHP,800; + - Id: 4243 + AegisName: Antonio_Card + Name: Antonio Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpellWhenHit,"AL_TELEPORT",1,500; + - Id: 4244 + AegisName: Alarm_Card + Name: Alarm Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpellWhenHit,"MG_SIGHT",1,200; bonus bMaxHP,300; bonus bVit,1; + - Id: 4245 + AegisName: Am_Mut_Card + Name: Am Mut Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubRace,RC_DemiHuman,-20; bonus2 bSubRace,RC_Player_Human,-20; bonus2 bExpAddRace,RC_DemiHuman,10; + - Id: 4246 + AegisName: Assulter_Card + Name: Assaulter Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_DemiHuman,7; bonus2 bCriticalAddRace,RC_Player_Human,7; + - Id: 4247 + AegisName: Aster_Card + Name: Aster Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,5; bonus2 bAddDamageClass,1074,30; + - Id: 4248 + AegisName: Ancient_Mummy_Card + Name: Ancient Mummy Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpellWhenHit,"AL_CRUCIS",5,30; + - Id: 4249 + AegisName: Ancient_Worm_Card + Name: Ancient Worm Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubRace,RC_Demon,-20; bonus2 bExpAddRace,RC_Demon,10; + - Id: 4250 + AegisName: Executioner_Card + Name: Executioner Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubSize,Size_Large,25; bonus bDef,1; + - Id: 4251 + AegisName: Elder_Card + Name: Elder Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddRace2,RC2_Guardian,40; + - Id: 4252 + AegisName: Alligator_Card + Name: Alligator Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bLongAtkDef,5; + - Id: 4253 + AegisName: Alice_Card + Name: Alice Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubClass,Class_Boss,40; bonus2 bSubClass,Class_Normal,-40; + - Id: 4254 + AegisName: Tirfing_Card + Name: Ogretooth Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubSize,Size_Medium,25; bonus bDef,1; + - Id: 4255 + AegisName: Orc_Lady_Card + Name: Orc Lady Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddRace2,RC2_Orc,30; + - Id: 4256 + AegisName: Orc_Archer_Card + Name: Orc Archer Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus3 bAddMonsterDropItem,12034,RC_DemiHuman,100; + - Id: 4257 + AegisName: Wild_Rose_Card + Name: Wild Rose Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bAgi,1; if(BaseClass==Job_Thief) bonus bFlee2,5; + - Id: 4258 + AegisName: Wicked_Nymph_Card + Name: Evil Nymph Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bInt,1; bonus bMaxSP,50; + - Id: 4259 + AegisName: Wooden_Golem_Card + Name: Wooden Golem Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bDef,1; bonus bHPrecovRate,30; + - Id: 4260 + AegisName: Wootan_Shooter_Card + Name: Wootan Shooter Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bDef,1; bonus2 bResEff,Eff_Confusion,2000; + - Id: 4261 + AegisName: Wootan_Fighter_Card + Name: Wootan Fighter Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bDef,1; bonus2 bResEff,Eff_Bleeding,2000; + - Id: 4262 + AegisName: Evil_Cloud_Hermit_Card + Name: Cloud Hermit Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus3 bAddMonsterDropItem,12029,RC_Plant,100; + - Id: 4263 + AegisName: Incant_Samurai_Card + Name: Samurai Spector Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bIgnoreDefClass,Class_Normal; bonus bHPrecovRate,-100; bonus2 bHPLossRate,666,10000; + UnEquipScript: | + 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; } + - Id: 4264 + AegisName: Wind_Ghost_Card + Name: Wind Ghost Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpell,"WZ_JUPITEL",3+7*(getskilllv("WZ_JUPITEL")==10),20; + - Id: 4265 + AegisName: Li_Me_Mang_Ryang_Card + Name: Jing Guai Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus3 bAddMonsterDropItem,12033,RC_Angel,100; + - Id: 4266 + AegisName: Eclipse_Card + Name: Eclipse Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bVit,1; + - Id: 4267 + AegisName: Explosion_Card + Name: Explosion Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubRace,RC_Dragon,-20; bonus2 bExpAddRace,RC_Dragon,10; + - Id: 4268 + AegisName: Injustice_Card + Name: Injustice Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpell,"AS_SONICBLOW",1,50; + - Id: 4269 + AegisName: Incubus_Card + Name: Incubus Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bInt,-3; bonus bSPrecovRate,-20; bonus bMaxSP,150; + - Id: 4270 + AegisName: Giant_Spider_Card + Name: Giant Spider Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEffWhenHit,Eff_Poison,600; + - Id: 4271 + AegisName: Giant_Honet_Card + Name: Giant Hornet Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubEle,Ele_Wind,10; bonus3 bAddMonsterDropItem,992,RC_Insect,100; + - Id: 4272 + AegisName: Dancing_Dragon_Card + Name: Zhu Po Long Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bAgi,1; bonus bCritical,3; + - Id: 4273 + AegisName: Shellfish_Card + Name: Shell Fish Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,5; bonus2 bAddDamageClass,1073,30; + - Id: 4274 + AegisName: Zombie_Master_Card + Name: Zombie Master Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSPGainRace,RC_Undead,5; + UnEquipScript: | + heal 0,-5; + - Id: 4275 + AegisName: Zombie_Prisoner_Card + Name: Zombie Prisoner Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubRace,RC_Undead,-20; bonus2 bExpAddRace,RC_Undead,10; + - Id: 4276 + AegisName: Lord_Of_Death_Card + Name: Lord of The Dead Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + 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; + - Id: 4277 + AegisName: Zherlthsh_Card + Name: Zealotus Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bLuk,2; bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10; bonus2 bSkillAtk,"DC_THROWARROW",10; + - Id: 4278 + AegisName: Gibbet_Card + Name: Gibbet Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + if(getrefine()<6) bonus bMdef,5; + - Id: 4279 + AegisName: Deleter_Card + Name: Earth Deleter Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bSPrecovRate,-100; bonus bSPGainValue,10; + UnEquipScript: | + heal 0,-100; + - Id: 4280 + AegisName: Geographer_Card + Name: Geographer Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpellWhenHit,"AL_BLESSING",2+8*(getskilllv("AL_BLESSING")==10),30; + - Id: 4281 + AegisName: Zipper_Bear_Card + Name: Zipper Bear Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,30; bonus bSPDrainValue,-1; if(BaseClass==Job_Merchant) bonus bUnbreakableWeapon; + - Id: 4282 + AegisName: Tengu_Card + Name: Tengu Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddMonsterDropItemGroup,IG_Recovery,600; + - Id: 4283 + AegisName: Greatest_General_Card + Name: Greatest General Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpell,"MO_CALLSPIRITS",5,2+18*(BaseClass==Job_Acolyte); + - Id: 4284 + AegisName: Chepet_Card + Name: Chepet Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus4 bAutoSpell,"AL_HEAL",5,50,1; + - Id: 4285 + AegisName: Choco_Card + Name: Choco Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bFlee2,5; bonus bFlee,10; + - Id: 4286 + AegisName: Karakasa_Card + Name: Karakasa Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEffWhenHit,Eff_Confusion,300+600*(readparam(bStr)>=77); + - Id: 4287 + AegisName: Kapha_Card + Name: Kapha Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + if(getrefine()<6) bonus bMdef,8; + - Id: 4288 + AegisName: Carat_Card + Name: Carat Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bInt,2; if(getrefine()>8) bonus bMaxSP,150; + - Id: 4289 + AegisName: Caterpillar_Card + Name: Caterpillar Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSPGainRace,RC_Plant,5; + UnEquipScript: | + heal 0,-5; + - Id: 4290 + AegisName: Cat_O_Nine_Tail_Card + Name: Cat O' Nine Tails Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bMdef,3; bonus bMagicDamageReturn,5; + - Id: 4291 + AegisName: Kobold_Leader_Card + Name: Kobold Leader Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddRace2,RC2_Kobold,30; + - Id: 4292 + AegisName: Kobold_Archer_Card + Name: Kobold Archer Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Plant,7; + - Id: 4293 + AegisName: Cookie_Card + Name: Cookie Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bLuk,2; bonus2 bSkillAtk,"AL_HOLYLIGHT",10; + - Id: 4294 + AegisName: Quve_Card + Name: Quve Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + if(BaseJob==Job_Novice||BaseJob==Job_SuperNovice) bonus3 bAutoSpellWhenHit,"AL_INCAGI",1,100; + - Id: 4295 + AegisName: Kraben_Card + Name: Kraben Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEffWhenHit,Eff_Blind,600; + - Id: 4296 + AegisName: Cramp_Card + Name: Cramp Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus2 bGetZenyNum,500,1; + - Id: 4297 + AegisName: Cruiser_Card + Name: Cruiser Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Brute,7; bonus2 bCriticalAddRace,RC_Player_Doram,7; + - Id: 4298 + AegisName: Cremy_Fear_Card + Name: Creamy Fear Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEffWhenHit,Eff_Confusion,600; + - Id: 4299 + AegisName: Clock_Card + Name: Clock Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpellWhenHit,"CR_AUTOGUARD",3+7*(getskilllv("CR_AUTOGUARD")==10),30; + UnEquipScript: | + sc_end SC_AUTOGUARD; + - Id: 4300 + AegisName: Chimera_Card + Name: Chimera Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEffWhenHit,Eff_Poison,300+600*(BaseJob==Job_Assassin); + - Id: 4301 + AegisName: Killer_Mantis_Card + Name: Killer Mantis Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEffWhenHit,Eff_Bleeding,600; + - Id: 4302 + AegisName: Tao_Gunka_Card + Name: Tao Gunka Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bMaxHPrate,100; bonus bDefRate,-50; bonus bMdefRate,-50; + - Id: 4303 + AegisName: Whisper_Boss_Card + Name: Giant Whisper Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bFlee,10; if(readparam(bStr)>=80) bonus bBaseAtk,20; if(readparam(bVit)>=80) bonus bMaxHPrate,3; if(readparam(bLuk)>=80) bonus bCritical,3; + - Id: 4304 + AegisName: Tamruan_Card + Name: Tamruan Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bDef,2; bonus2 bSkillAtk,"CR_SHIELDCHARGE",10; bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",10; + - Id: 4305 + AegisName: Turtle_General_Card + Name: Turtle General Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddClass,Class_All,20; bonus3 bAutoSpell,"SM_MAGNUM",10,30; + - Id: 4306 + AegisName: Toad_Card + Name: Toad Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bFlee2,1; + - Id: 4307 + AegisName: Kind_Of_Beetle_Card + Name: Beetle King Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSPGainRace,RC_Fish,5; + UnEquipScript: | + heal 0,-5; + - Id: 4308 + AegisName: Tri_Joint_Card + Name: Tri Joint Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSPGainRace,RC_Formless,5; + UnEquipScript: | + heal 0,-5; + - Id: 4309 + AegisName: Parasite_Card + Name: Parasite Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bDef,1; bonus2 bSubRace,RC_Formless,5; + - Id: 4310 + AegisName: Panzer_Goblin_Card + Name: Panzer Goblin Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Demon,7; + - Id: 4311 + AegisName: Permeter_Card + Name: Permeter Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubEle,Ele_Dark,15; bonus2 bSubEle,Ele_Undead,15; + - Id: 4312 + AegisName: Fur_Seal_Card + Name: Seal Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bFlee,3; bonus bHit,10; if(BaseClass==Job_Acolyte) { bonus2 bCriticalAddRace,RC_Undead,9; bonus2 bCriticalAddRace,RC_Demon,9; } + - Id: 4313 + AegisName: Punk_Card + Name: Punk Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus4 bAutoSpellWhenHit,"WZ_QUAGMIRE",1+4*(getskilllv("WZ_QUAGMIRE")==5),50,0; + - Id: 4314 + AegisName: Penomena_Card + Name: Penomena Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubRace,RC_Formless,30; + - Id: 4315 + AegisName: Pest_Card + Name: Pest Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEffWhenHit,Eff_Stone,300+600*(readparam(bInt)>=77); + - Id: 4316 + AegisName: Fake_Angel_Card + Name: False Angel Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSPGainRace,RC_Angel,5; + UnEquipScript: | + heal 0,-5; + - Id: 4317 + AegisName: Mobster_Card + Name: Mobster Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bCritAtkRate,15; if(BaseClass==Job_Thief) bonus bCritical,4; + - Id: 4318 + AegisName: Knight_Windstorm_Card + Name: Stormy Knight Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpell,"WZ_STORMGUST",1,20; bonus2 bAddEff,Eff_Freeze,2000; + - Id: 4319 + AegisName: Freezer_Card + Name: Freezer Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bMaxHP,300; if(getrefine()>=9) bonus2 bSkillAtk,"SM_BASH",10; + - Id: 4320 + AegisName: Bloody_Knight_Card + Name: Bloody Knight Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpell,"WZ_METEOR",1,20; + - Id: 4321 + AegisName: Hylozoist_Card + Name: Hylozoist Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bClassChange,100; + - Id: 4322 + AegisName: High_Orc_Card + Name: High Orc Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bDef,1; bonus bShortWeaponDamageReturn,5; + - Id: 4323 + AegisName: Garm_Baby_Card + Name: Hatii Babe Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpell,"MG_FROSTDIVER",3,50; + - Id: 4324 + AegisName: Garm_Card + Name: Hatii Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEffWhenHit,Eff_Freeze,5000; + - Id: 4325 + AegisName: Harpy_Card + Name: Harpy Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubEle,Ele_Neutral,15; bonus2 bSkillAtk,"MG_NAPALMBEAT",5; + - Id: 4326 + AegisName: See_Otter_Card + Name: Sea-Otter Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddItemGroupHealRate,IG_Fish,50; bonus3 bAddMonsterDropItem,551,RC_Fish,300; bonus3 bAddMonsterDropItem,544,RC_Fish,300; + - Id: 4327 + AegisName: Blood_Butterfly_Card + Name: Bloody Butterfly Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bVariableCastrate,30; bonus bNoCastCancel; bonus2 bSkillAtk,"MG_FIREWALL",5; + - Id: 4328 + AegisName: Hyegun_Card + Name: Yao Jun Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bFlee,15; bonus bCritical,1; + - Id: 4329 + AegisName: Phendark_Card + Name: Phendark Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSPGainRace,RC_DemiHuman,5; bonus2 bSPGainRace,RC_Player_Human,5; + UnEquipScript: | + heal 0,-5; + - Id: 4330 + AegisName: Dark_Snake_Lord_Card + Name: Evil Snake Lord Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bInt,3; bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Curse,10000; + - Id: 4331 + AegisName: Heater_Card + Name: Heater Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bCritical,3; if(BaseClass==Job_Swordman) bonus bFlee2,3; + - Id: 4332 + AegisName: Waste_Stove_Card + Name: Waste Stove Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,5; bonus bInt,1; + - Id: 4333 + AegisName: Venomous_Card + Name: Venomous Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus3 bAddEffWhenHit,Eff_Poison,3000,ATF_TARGET|ATF_SELF; + - Id: 4334 + AegisName: Noxious_Card + Name: Noxious Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bLongAtkDef,10; bonus2 bSubEle,Ele_Neutral,10; + - Id: 4335 + AegisName: Pitman_Card + Name: Pitman Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSkillAtk,"WZ_EARTHSPIKE",5; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",5; + UnEquipScript: | + heal 0,-50; + - Id: 4336 + AegisName: Ungoliant_Card + Name: Ungoliant Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bHPrecovRate,10; bonus2 bResEff,Eff_Bleeding,10000; + - Id: 4337 + AegisName: Porcellio_Card + Name: Porcellio Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,25; bonus bDef,-5; + - Id: 4338 + AegisName: Obsidian_Card + Name: Obsidian Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bVit,readparam(bDex)/18; + - Id: 4339 + AegisName: Mineral_Card + Name: Mineral Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,-25; bonus bDef,3; + - Id: 4340 + AegisName: Teddy_Bear_Card + Name: Teddy Bear Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubRace,RC_Undead,30; + - Id: 4341 + AegisName: Metaling_Card + Name: Metaling Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpell,"RG_STRIPWEAPON",1,50; + - Id: 4342 + AegisName: Rsx_0806_Card + Name: RSX-0806 Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bVit,3; bonus bUnbreakableArmor; bonus bNoKnockback; + - Id: 4343 + AegisName: Mole_Card + Name: Holden Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bLuk,2; + - Id: 4344 + AegisName: Anopheles_Card + Name: Anopheles Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus3 bAddMonsterDropItem,12058,RC_Insect,50; + - Id: 4345 + AegisName: Hill_Wind_Card + Name: Hill Wind Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSkillAtk,"MG_THUNDERSTORM",5; bonus2 bSkillAtk,"WZ_JUPITEL",5; bonus2 bSkillAtk,"WZ_VERMILION",5; + UnEquipScript: | + heal 0,-50; + - Id: 4346 + AegisName: Ygnizem_Card + Name: Egnigem Cenia Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bStr,readparam(bInt)/18; + - Id: 4347 + AegisName: Armaia_Card + Name: Armeyer Dinze Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus3 bAddMonsterDropItem,12053,RC_Fish,50; + - Id: 4348 + AegisName: Whikebain_Card + Name: Wickebine Tres Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpell,"RG_STRIPARMOR",1,50; + - Id: 4349 + AegisName: Erend_Card + Name: Errende Ebecee Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus4 bAutoSpellWhenHit,"AL_PNEUMA",1,50,0; + - Id: 4350 + AegisName: Rawrel_Card + Name: Laurell Weinder Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSkillAtk,"WZ_FROSTNOVA",3; bonus2 bSkillAtk,"WZ_STORMGUST",3; + UnEquipScript: | + heal 0,-50; + - Id: 4351 + AegisName: Kavac_Card + Name: Kavach Icarus Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + if(getrefine()<=4) { bonus bFlee,20; bonus bFlee2,1; } else { bonus bFlee,10; } + - Id: 4352 + AegisName: B_Ygnizem_Card + Name: General Egnigem Cenia Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bHPRegenRate,50,10000; bonus2 bSPRegenRate,10,10000; + - Id: 4353 + AegisName: Removal_Card + Name: Remover Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bMaxHP,800-40*getrefine(); bonus bHPrecovRate,10; + - Id: 4354 + AegisName: Gemini_Card + Name: Gemini-S58 Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + if(readparam(bAgi)>=90) { bonus2 bResEff,Eff_Silence,3000; bonus2 bResEff,Eff_Stun,3000; } if(readparam(bVit)>=80) { bonus2 bResEff,Eff_Stone,5000; bonus2 bResEff,Eff_Sleep,5000; } + - Id: 4355 + AegisName: Gremlin_Card + Name: Gremlin Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus3 bAddMonsterDropItem,12043,RC_Brute,50; + - Id: 4356 + AegisName: Beholder_Card + Name: Beholder Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + skill "SA_CASTCANCEL",1; + - Id: 4357 + AegisName: B_Seyren_Card + Name: Lord Knight Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + skill "LK_BERSERK",1; bonus bMaxHPrate,-50; + - Id: 4358 + AegisName: Seyren_Card + Name: Seyren Windsor Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bStr,getrefine()-6; + - Id: 4359 + AegisName: B_Eremes_Card + Name: Assassin Cross Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + skill "AS_CLOAKING",3; + UnEquipScript: | + sc_end SC_CLOAKING; + - Id: 4360 + AegisName: Eremes_Card + Name: Eremes Guile Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bCriticalAddRace,RC_DemiHuman,10; bonus2 bCriticalAddRace,RC_Player_Human,10; + - Id: 4361 + AegisName: B_Harword_Card + Name: MasterSmith Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bBreakWeaponRate,1000; bonus bBreakArmorRate,700; + - Id: 4362 + AegisName: Harword_Card + Name: Howard Alt-Eisen Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bAspdRate,-5; bonus bHit,30; + - Id: 4363 + AegisName: B_Magaleta_Card + Name: High Priest Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus5 bAutoSpellWhenHit,"HP_ASSUMPTIO",5,50,BF_WEAPON|BF_MAGIC,0; + - Id: 4364 + AegisName: Magaleta_Card + Name: Margaretha Sorin Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bInt,1; bonus5 bAutoSpellWhenHit,"PR_LEXDIVINA",5,150,BF_MAGIC,1; + - Id: 4365 + AegisName: B_Katrinn_Card + Name: High Wizard Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus2 bIgnoreMdefClassRate,Class_Normal,100; bonus bVariableCastrate,100; bonus bSPrecovRate,-100; + UnEquipScript: | + heal 0,-2000; + - Id: 4366 + AegisName: Katrinn_Card + Name: Kathryne Keyron Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + .@r = getrefine(); bonus bVariableCastrate,.@r*-1; if(.@r>=9) { bonus bMatkRate,2; } + - Id: 4367 + AegisName: B_Shecil_Card + Name: Sniper Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bHPDrainRate,100,20; bonus bHPrecovRate,-10; + - Id: 4368 + AegisName: Shecil_Card + Name: Cecil Damon Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bAspdRate,5; bonus bHit,-30; + - Id: 4369 + AegisName: Venatu_Card + Name: Venatu Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bLuk,readparam(bAgi)/18; + - Id: 4370 + AegisName: Dimik_Card + Name: Dimik Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bVit,getrefine()-5; + - Id: 4371 + AegisName: Archdam_Card + Name: Archdam Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,10; bonus bVariableCastrate,20; + - Id: 4372 + AegisName: Bacsojin_Card + Name: White Lady Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bHealPower,30; bonus bUseSPrate,15; + - Id: 4373 + AegisName: Chung_E_Card + Name: Green Maiden Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + .@r = getrefine(); bonus bLuk,.@r-5; bonus bCritical,.@r; + - Id: 4374 + AegisName: Apocalips_H_Card + Name: Vesper Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bDex,2; bonus2 bIgnoreMdefClassRate,Class_Boss,30; + - Id: 4375 + AegisName: Orc_Baby_Card + Name: Orc Baby Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + .@i = (getrefine()>=9?15:10); bonus2 bSubEle,Ele_Neutral,.@i; bonus bFlee,.@i; + - Id: 4376 + AegisName: Lady_Tanee_Card + Name: Lady Tanee Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bMaxHPrate,-40; bonus bMaxSPrate,50; bonus2 bAddMonsterDropItem,513,200; bonus2 bAddItemHealRate,513,100; + - Id: 4377 + AegisName: Green_Iguana_Card + Name: Grove Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus3 bAddMonsterDropItem,12063,RC_Formless,50; + - Id: 4378 + AegisName: Acidus_Card + Name: Gold Acidus Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + if(getrefine()<=4) { bonus bMaxHPrate,8; bonus bMaxSPrate,8; bonus bHPrecovRate,5; bonus bSPrecovRate,5; } else { bonus bMaxHPrate,4; bonus bMaxSPrate,4; } + - Id: 4379 + AegisName: Acidus__Card + Name: Blue Acidus Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + if(getrefine()<=4) { bonus bSPrecovRate,5; bonus bMaxSP,80; } else { bonus bMaxSP,40; } + - Id: 4380 + AegisName: Ferus_Card + Name: Red Ferus Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSkillAtk,"WZ_FIREPILLAR",5; bonus2 bSkillAtk,"WZ_METEOR",5; + UnEquipScript: | + heal 0,-50; + - Id: 4381 + AegisName: Ferus__Card + Name: Green Ferus Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bVit,1; bonus bMaxHPrate,10; + - Id: 4382 + AegisName: Novus__Card + Name: Yellow Novus Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bMaxHP,500; bonus bHPrecovRate,10; + - Id: 4383 + AegisName: Novus_Card + Name: Red Novus Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus3 bAddEffWhenHit,Eff_Confusion,3000,ATF_TARGET|ATF_SELF; + - Id: 4384 + AegisName: Hydro_Card + Name: Hydrolancer Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpell,"SA_SPELLBREAKER",1,100; + - Id: 4385 + AegisName: Dragon_Egg_Card + Name: Dragon Egg Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus3 bAddMonsterDropItem,12048,RC_Dragon,50; + - Id: 4386 + AegisName: Detale_Card + Name: Detardeurus Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bMdef,-20; bonus2 bResEff,Eff_Freeze,10000; bonus5 bAutoSpellWhenHit,"SA_LANDPROTECTOR",1,70,BF_MAGIC,0; + - Id: 4387 + AegisName: Ancient_Mimic_Card + Name: Ancient Mimic Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bAgi,readparam(bLuk)/18; + - Id: 4388 + AegisName: Deathword_Card + Name: Death Word Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSkillAtk,"MG_NAPALMBEAT",5; bonus2 bSkillAtk,"MG_SOULSTRIKE",5; bonus2 bSkillAtk,"HW_NAPALMVULCAN",5; + UnEquipScript: | + heal 0,-50; + - Id: 4389 + AegisName: Plasma_Card + Name: Plasma Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddMonsterDropItem,12118,50; bonus2 bAddMonsterDropItem,12119,50; bonus2 bAddMonsterDropItem,12120,50; bonus2 bAddMonsterDropItem,12121,50; + - Id: 4390 + AegisName: Breeze_Card + Name: Breeze Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,5; bonus2 bAddEff,Eff_Bleeding,500; + - Id: 4391 + AegisName: Retribution_Card + Name: Baroness of Retribution Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus3 bAddMonsterDropItem,12068,RC_Angel,50; + - Id: 4392 + AegisName: Observation_Card + Name: Dame of Sentinel Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bDex,readparam(bVit)/18; + - Id: 4393 + AegisName: Shelter_Card + Name: Mistress of Shelter Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bInt,readparam(bStr)/18; + - Id: 4394 + AegisName: Solace_Card + Name: Lady Solace Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + if(BaseJob==Job_Priest) bonus3 bAutoSpell,"CR_GRANDCROSS",5,20; + - Id: 4395 + AegisName: Tha_Maero_Card + Name: Maero of Thanatos Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,5; bonus3 bAutoSpell,"AL_DECAGI",3,50; + - Id: 4396 + AegisName: Tha_Odium_Card + Name: Odium of Thanatos Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bAgi,getrefine()-5; + - Id: 4397 + AegisName: Tha_Despero_Card + Name: Despero of Thanatos Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bInt,getrefine()-6; + - Id: 4398 + AegisName: Tha_Dolor_Card + Name: Dolor of Thanatos Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bMagicAddRace,RC_Angel,10; + - Id: 4399 + AegisName: Thanatos_Card + Name: Memory of Thanatos Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bDefRatioAtkClass,Class_All; bonus bSPDrainValue,-1; bonus bDef,-30; bonus bFlee,-30; + - Id: 4400 + AegisName: Aliza_Card + Name: Aliza Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpellWhenHit,"DC_WINKCHARM",1,50+50*(BaseJob==Job_Dancer); + - Id: 4401 + AegisName: Alicel_Card + Name: Alicel Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bFlee,10; bonus bDef,-5; + - Id: 4402 + AegisName: Aliot_Card + Name: Aliot Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + if(BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Thief) { bonus bStr,2; bonus bMaxHPrate,5; } if(BaseClass==Job_Mage||BaseClass==Job_Archer||BaseClass==Job_Acolyte) { bonus bInt,2; bonus bMaxSPrate,5; } + - Id: 4403 + AegisName: Kiel_Card + Name: Kiel-D-01 Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bDelayRate,-30; + - Id: 4404 + AegisName: Skogul_Card + Name: Skogul Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus3 bAddEffWhenHit,Eff_Bleeding,3000,ATF_TARGET|ATF_SELF; + - Id: 4405 + AegisName: Frus_Card + Name: Frus Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bMagicDamageReturn,getrefine()*2; if(BaseClass==Job_Mage) bonus bMdef,3; + - Id: 4406 + AegisName: Skeggiold_Card + Name: Skeggiold Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bMagicAddRace,RC_Demon,2; + - Id: 4407 + AegisName: Randgris_Card + Name: Randgris Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bUnbreakableWeapon; bonus2 bAddClass,Class_All,10; bonus3 bAutoSpell,"SA_DISPELL",1,50; + - Id: 4408 + AegisName: Gloom_Under_Night_Card + Name: Gloom Under Night Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEle,Ele_Holy,40; bonus2 bAddEle,Ele_Dark,40; bonus2 bAddRace,RC_Angel,40; bonus2 bAddRace,RC_Demon,40; + - Id: 4409 + AegisName: Agav_Card + Name: Agav Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bMatkRate,5; bonus bDef,-10; if(BaseClass==Job_Mage) bonus bMaxSP,100; + - Id: 4410 + AegisName: Echio_Card + Name: Echio Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,15; if(BaseClass==Job_Swordman) bonus bMaxHP,500; + - Id: 4411 + AegisName: Vanberk_Card + Name: Vanberk Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bStr,2; autobonus "{ bonus bCritical,100; }",5,5000,0,"{ specialeffect2 EF_ENHANCE; }"; + - Id: 4412 + AegisName: Isilla_Card + Name: Isilla Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bInt,2; autobonus "{ bonus bVariableCastrate,-50; bonus bFlee,30; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }"; + - Id: 4413 + AegisName: Hodremlin_Card + Name: Hodremlin Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubSize,Size_All,15; autobonus2 "{ bonus bFlee2,30; }",3,10000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_WIND; }"; + - Id: 4414 + AegisName: Seeker_Card + Name: Seeker Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + skill "MG_STONECURSE",1; bonus2 bResEff,Eff_Stone,3000; bonus bMdef,10; + - Id: 4415 + AegisName: Snowier_Card + Name: Snowier Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddMonsterDropItem,536,500; bonus2 bAddItemHealRate,536,100; + - Id: 4416 + AegisName: Siroma_Card + Name: Siroma Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus2 bSkillAtk,"MG_COLDBOLT",25; bonus2 bVariableCastrate,"MG_COLDBOLT",-25; + - Id: 4417 + AegisName: Ice_Titan_Card + Name: Ice Titan Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bVit,2; autobonus2 "{ bonus bDef,10; }",3,10000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_FREEZED; }"; + - Id: 4418 + AegisName: Gazeti_Card + Name: Gazeti Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpell,"MG_COLDBOLT",2,100; + - Id: 4419 + AegisName: Ktullanux_Card + Name: Ktullanux Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEle,Ele_Fire,50; bonus5 bAutoSpellWhenHit,"WZ_FROSTNOVA",10,20,BF_WEAPON|BF_MAGIC,0; + - Id: 4420 + AegisName: Muscipular_Card + Name: Muscipular Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpellWhenHit,"AL_HEAL",1,100; bonus3 bAutoSpellWhenHit,"AL_INCAGI",1,100; + - Id: 4421 + AegisName: Drosera_Card + Name: Drosera Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bCriticalLong,15; + - Id: 4422 + AegisName: Roween_Card + Name: Roween Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bFlee,5; bonus bFlee2,3; bonus2 bAddEle,Ele_Water,10; bonus2 bCriticalAddRace,RC_Fish,15; + - Id: 4423 + AegisName: Galion_Card + Name: Galion Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bHit,5; bonus2 bAddEle,Ele_Water,5; + - Id: 4424 + AegisName: Stapo_Card + Name: Stapo Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + skill "TF_PICKSTONE",1; skill "TF_THROWSTONE",1; + - Id: 4425 + AegisName: Atroce_Card + Name: Atroce Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,25; autobonus "{ bonus bAspdRate,100; }",5,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }"; + - Id: 4426 + AegisName: Byorgue_Card + Name: Byorgue Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + if(BaseJob==Job_Rogue) { bonus bMatkRate,10; bonus2 bAddClass,Class_All,10; } + - Id: 4427 + AegisName: Sword_Guardian_Card + Name: Sword Guardian Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + .@i = getiteminfo(getequipid(EQI_HAND_R),11); if(.@i==W_1HSWORD||.@i==W_2HSWORD) { bonus bHit,5; bonus bCritical,5; bonus2 bSkillAtk,62,25; } + - Id: 4428 + AegisName: Bow_Guardian_Card + Name: Bow Guardian Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + if(getiteminfo(getequipid(EQI_HAND_R),11)==W_BOW) { bonus bHit,5; bonus bCritical,5; bonus2 bSkillAtk,"AC_SHOWER",50; } + - Id: 4429 + AegisName: Salamander_Card + Name: Salamander Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus2 bSkillAtk,"WZ_FIREPILLAR",40; bonus2 bSkillAtk,"WZ_METEOR",40; + - Id: 4430 + AegisName: Ifrit_Card + Name: Ifrit Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,(JobLevel/10); bonus bCritical,(JobLevel/10); bonus bHit,(JobLevel/10); bonus3 bAutoSpellWhenHit,"NPC_EARTHQUAKE",10,1; + - Id: 4431 + AegisName: Kasa_Card + Name: Kasa Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpell,"MG_FIREBALL",5,20; bonus3 bAutoSpell,"MG_FIREBOLT",5,20; + - Id: 4432 + AegisName: Magmaring_Card + Name: Magmaring Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,5; bonus2 bAddEle,Ele_Earth,10; bonus2 bCriticalAddRace,RC_Brute,15; bonus2 bCriticalAddRace,RC_Player_Doram,15; bonus2 bCriticalAddRace,RC_Plant,15; + - Id: 4433 + AegisName: Imp_Card + Name: Imp Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus2 bSkillAtk,"MG_FIREBOLT",25; bonus2 bVariableCastrate,"MG_FIREBOLT",-25; + - Id: 4434 + AegisName: Knocker_Card + Name: Knocker Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddRace,RC_Formless,5; bonus3 bAddMonsterDropItem,756,RC_Formless,10; bonus3 bAddMonsterDropItem,757,RC_Formless,10; + - Id: 4435 + AegisName: Zombie_Slaughter_Card + Name: Zombie Slaughter Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddRace,RC_DemiHuman,1; bonus2 bAddRace,RC_Player_Human,1; bonus2 bMagicAddRace,RC_DemiHuman,1; bonus2 bMagicAddRace,RC_Player_Human,1; bonus bHPGainValue,50; + - Id: 4436 + AegisName: Ragged_Zombie_Card + Name: Ragged Zombie Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus2 bCriticalAddRace,RC_DemiHuman,5; bonus2 bCriticalAddRace,RC_Player_Human,5; bonus2 bAddRace,RC_DemiHuman,1; bonus2 bAddRace,RC_Player_Human,1; bonus2 bMagicAddRace,RC_DemiHuman,1; bonus2 bMagicAddRace,RC_Player_Human,1; bonus2 bAddEff2,Eff_Bleeding,10; + - Id: 4437 + AegisName: Hell_Poodle_Card + Name: Hell Poodle Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bHit,1; bonus2 bAddItemHealRate,517,100; bonus3 bAddEff,Eff_Bleeding,50,ATF_SHORT; + - Id: 4438 + AegisName: Banshee_Card + Name: Banshee Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + 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; } + - Id: 4439 + AegisName: Flame_Skull_Card + Name: Flame Skull Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + 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; + - Id: 4440 + AegisName: Necromancer_Card + Name: Necromancer Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + .@i = getiteminfo(getequipid(EQI_HAND_R),11); if(.@i==W_STAFF || .@i==W_2HSTAFF) { bonus bInt,1; bonus2 bIgnoreMdefClassRate,Class_Normal,2; bonus2 bIgnoreMdefClassRate,Class_Boss,2; } + - Id: 4441 + AegisName: Fallen_Bishop_Card + Name: Fallen Bishop Hibram Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bMatkRate,10; bonus bMaxSPrate,-50; bonus2 bMagicAddRace,RC_Angel,50; bonus2 bMagicAddRace,RC_DemiHuman,50; bonus2 bMagicAddRace,RC_Player_Human,50; + - Id: 4442 + AegisName: Tatacho_Card + Name: Tatacho Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubDefEle,Ele_Neutral,20; bonus2 bAddEle,Ele_Neutral,5; + - Id: 4443 + AegisName: Aqua_Elemental_Card + Name: Aqua Elemental Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubDefEle,Ele_Water,20; bonus2 bAddEle,Ele_Water,5; + - Id: 4444 + AegisName: Draco_Card + Name: Draco Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubDefEle,Ele_Earth,20; bonus2 bAddEle,Ele_Earth,5; + - Id: 4445 + AegisName: Luciola_Vespa_Card + Name: Luciola Vespa Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubDefEle,Ele_Wind,20; bonus2 bAddEle,Ele_Wind,5; + - Id: 4446 + AegisName: Enhanced_Skeleton_Card + Name: Enhanced Skeleton Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,15; bonus2 bAddEff,Eff_Stun,(BaseLevel>=100?300:200); + - Id: 4447 + AegisName: Centipede_Card + Name: Centipede Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubDefEle,Ele_Poison,20; bonus2 bAddEle,Ele_Poison,5; + - Id: 4448 + AegisName: Cornus_Card + Name: Cornus Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubDefEle,Ele_Holy,20; bonus2 bAddEle,Ele_Holy,5; + - Id: 4449 + AegisName: Dark_Shadow_Card + Name: Dark Shadow Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubDefEle,Ele_Dark,20; bonus2 bAddEle,Ele_Dark,5; + - Id: 4450 + AegisName: Banshee_Master_Card + Name: Banshee Master Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bInt,1; bonus bMatk,10; + - Id: 4451 + AegisName: Ant_Buyanne_Card + Name: Entweihen Crothen Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bMatk,100; + - Id: 4452 + AegisName: Centipede_Larva_Card + Name: Centipede Larva Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bInt,1; bonus bMatk,3; + - Id: 4453 + AegisName: Hilsrion_Card + Name: Hillsrion Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,25; + - Id: 4454 + AegisName: Light_Up_Card1 + Name: Light Up Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + - Id: 4455 + AegisName: Light_Up_Card2 + Name: Light Up Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + - Id: 4456 + AegisName: Nidhogg_Shadow_Card + Name: Nidhoggur Shadow Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bInt,5; if (Class == Job_High_Wizard || Class == Job_Baby_Warlock || Class == Job_Warlock || Class == Job_Warlock_T) bonus bFixedCastrate,-50; + - Id: 4457 + AegisName: Nahtzigger_Card + Name: Naght Sieger Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bMagicAtkEle,Ele_Ghost,30; + - Id: 4458 + AegisName: Duneirre_Card + Name: Duneyrr Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,10; autobonus "{ bonus bFlee2,10; }",10,10000,0,"{ specialeffect2 EF_HASTEUP; }"; + - Id: 4459 + AegisName: Lata_Card + Name: Rata Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bMatk,10; autobonus "{ bonus bFixedCastrate,-50; }",5,4000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }"; + - Id: 4460 + AegisName: Ringco_Card + Name: Rhyncho Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bHealPower,4; bonus2 bSkillUseSP,"AL_HEAL",-15; + - Id: 4461 + AegisName: Pillar_Card + Name: Phylla Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bDex,1; bonus bAgi,1; autobonus "{ bonus bCritical,20; }",15,4000,0,"{ specialeffect2 EF_ENHANCE; }"; + - Id: 4462 + AegisName: Hardrock_Mommos_Card + Name: Hardrock Mammoth Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + .@r = getrefine(); bonus bDef,5; if(.@r>=12) { bonus bDef,20; bonus bMaxHPrate,10; } if(.@r>=14) { bonus bMaxHPrate,3; } + - Id: 4463 + AegisName: Tendrilion_Card + Name: Tendrilrion Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bCritical,5; .@r = getrefine(); if(.@r>=12) { bonus bBaseAtk,35; } if(.@r>=14) { bonus bCritical,10; } + - Id: 4464 + AegisName: Aunoe_Card + Name: Aunoe Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bCritAtkRate,20; + - Id: 4465 + AegisName: Panat_Card + Name: Fanat Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,10; if(getiteminfo(getequipid(EQI_HAND_R),11)==W_2HSWORD) { .@r = getrefine(); if(.@r>=10) { bonus bAspd,1; } if(.@r>=14) { bonus bAspd,1; } } + - Id: 4466 + AegisName: Beholder_Master_Card + Name: Beholder Master Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bLongAtkRate,3; if(getiteminfo(getequipid(EQI_HAND_R),11)==W_BOW) { .@r = getrefine(); if(.@r>=10) { bonus bAspd,1; } if(.@r>=14) { bonus bAspd,1; } } + - Id: 4467 + AegisName: Heavy_Metaling_Card + Name: Heavy Metaling Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bStr,2; if(BaseClass==Job_Merchant){ bonus2 bSkillAtk,"MC_CARTREVOLUTION",50; } + - Id: 4468 + AegisName: Pinguicula_Dark_Card + Name: Dark Pinguicula Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,10; bonus2 bAddMonsterDropItem,7932,10; bonus2 bAddMonsterDropItem,7933,10; bonus2 bAddMonsterDropItem,7934,10; bonus2 bAddMonsterDropItem,7935,10; bonus2 bAddMonsterDropItem,7936,10; bonus2 bAddMonsterDropItem,7937,10; + - Id: 4469 + AegisName: Naga_Card + Name: Naga Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bMagicAddRace,RC_Fish,10; + - Id: 4470 + AegisName: Nepenthes_Card + Name: Nepenthes Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bMagicAddRace,RC_Plant,10; + - Id: 4471 + AegisName: Egg_Of_Draco_Card + Name: Draco Egg Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bMagicAddRace,RC_Dragon,10; + - Id: 4472 + AegisName: Bradium_Goram_Card + Name: Bradium Golem Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bMagicAddRace,RC_Brute,10; bonus2 bMagicAddRace,RC_Player_Doram,10; + - Id: 4473 + AegisName: Ancient_Tree_Card + Name: Ancient Tree Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bMagicAddRace,RC_Undead,10; + - Id: 4474 + AegisName: Jakudam_Card + Name: Zakudam Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bMagicAddRace,RC_DemiHuman,10; bonus2 bMagicAddRace,RC_Player_Human,10; + - Id: 4475 + AegisName: Cobalt_Mineral_Card + Name: Cobalt Mineral Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bMagicAddRace,RC_Formless,10; + - Id: 4476 + AegisName: Pinguicula_Card + Name: Pinguicula Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bMagicAddRace,RC_Insect,10; + - Id: 4477 + AegisName: Hell_Apocalips_Card + Name: Hell Apocalypse Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bMagicAddRace,RC_Demon,10; + - Id: 4478 + AegisName: Light_Up_Card3 + Name: Light Up Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + - Id: 4479 + AegisName: Light_Up_Card4 + Name: Light Up Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + - Id: 4480 + AegisName: Sealed_Kiel_Card + Name: Sealed Kiel Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bDelayRate,((getrefine()>14)?-20:-15); + - Id: 4481 + AegisName: Sealed_Ktullanux_Card + Name: Sealed Ktullanux Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEle,Ele_Fire,((getrefine()>14)?35:25); bonus5 bAutoSpellWhenHit,"WZ_FROSTNOVA",10,10,BF_WEAPON|BF_MAGIC,0; + - Id: 4482 + AegisName: Sealed_B_Ygnizem_Card + Name: Sealed General Egnigem Cenia Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + .@rate = ((getrefine()>14)?7:5); bonus bMaxHPrate,.@rate; bonus bMaxSPrate,.@rate; bonus2 bHPRegenRate,50,10000; bonus2 bSPRegenRate,10,10000; + - Id: 4483 + AegisName: Sealed_Dracula_Card + Name: Sealed Dracula Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSPDrainRate,((getrefine()>14)?70:50),5; + - Id: 4484 + AegisName: Sealed_Mistress_Card + Name: Sealed Mistress Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bNoGemStone; bonus bUseSPrate,((getrefine()>14)?35:50); + - Id: 4485 + AegisName: Sealed_Gloom_Card + Name: Sealed Gloom Under Night Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + .@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; + - Id: 4486 + AegisName: Sealed_Berz_Card + Name: Sealed Berzebub Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bVariableCastrate,-15; + - Id: 4487 + AegisName: Sealed_Ifrit_Card + Name: Sealed Ifrit Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,(JobLevel/20); bonus bCritical,(JobLevel/20); bonus bHit,(JobLevel/20); bonus3 bAutoSpellWhenHit,"NPC_EARTHQUAKE",5,1; + - Id: 4488 + AegisName: Sealed_D_Lord_Card + Name: Sealed Dark Lord Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpellWhenHit,"WZ_METEOR",5,50; + - Id: 4489 + AegisName: Sealed_Pharaoh_Card + Name: Sealed Pharaoh Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bUseSPrate,-15; + - Id: 4490 + AegisName: Sealed_M_Flower_Card + Name: Sealed Moonlight Flower Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + skill "AL_INCAGI",((getrefine()>14)?5:1); + - Id: 4491 + AegisName: Sealed_B_Shecil_Card + Name: Sealed Sniper Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bHPrecovRate,-100; bonus2 bHPDrainRate,50,((getrefine()>14)?15:10); + - Id: 4492 + AegisName: Sealed_Orc_Hero_Card + Name: Sealed Orc Hero Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bVit,3; bonus2 bResEff,Eff_Stun,((getrefine()>14)?6000:4000); + - Id: 4493 + AegisName: Sealed_Tao_Card + Name: Sealed Tao Gunka Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bMaxHPrate,((getrefine()>14)?75:50); bonus bDefRate,-50; bonus bMdefRate,-50; + - Id: 4494 + AegisName: Sealed_TurtleG_Card + Name: Sealed Turtle General Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + .@rate = ((getrefine()>14)?15:10); bonus2 bAddClass,Class_All,.@rate; bonus3 bAutoSpell,"SM_MAGNUM",10,15; + - Id: 4495 + AegisName: Sealed_Amon_Ra_Card + Name: Sealed Amon Ra Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bAllStats,1; bonus3 bAutoSpellWhenHit,"PR_KYRIE",((getrefine()>14)?8:5),(15+35*(readparam(bInt)>=99)); + - Id: 4496 + AegisName: Sealed_Drake_Card + Name: Sealed Drake Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + .@rate = (getrefine()>=15?75:50); bonus2 bAddSize,Size_All,.@rate; bonus2 bMagicAddSize,Size_All,.@rate; + - Id: 4497 + AegisName: Sealed_Knight_WS_Card + Name: Sealed Stormy Knight Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpell,"WZ_STORMGUST",1,10; bonus2 bAddEff,Eff_Freeze,((getrefine()>14)?1500:1000); + - Id: 4498 + AegisName: Sealed_Lady_Tanee_Card + Name: Sealed Lady Tanee Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + .@r = getrefine(); bonus bMaxHPrate,((.@r>14)?-50:-60); bonus bMaxSPrate,50; bonus2 bAddMonsterDropItem,513,100; bonus2 bAddItemHealRate,513,((.@r>14)?80:50); + - Id: 4499 + AegisName: Sealed_Samurai_Card + Name: Sealed Samurai Spector Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bIgnoreDefClass,Class_Normal; bonus bHPrecovRate,-100; if (getrefine()>14) bonus2 bHPLossRate,777,8000; else bonus2 bHPLossRate,888,5000; + UnEquipScript: | + 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; } + - Id: 4500 + AegisName: Sealed_Orc_Load_Card + Name: Sealed Orc Lord Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bShortWeaponDamageReturn,((getrefine()>14)?25:15); + - Id: 4501 + AegisName: Sealed_B_Magaleta_Card + Name: Sealed High Priest Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus5 bAutoSpellWhenHit,"HP_ASSUMPTIO",1,((getrefine()>14)?35:25),BF_WEAPON|BF_MAGIC,0; + - Id: 4502 + AegisName: Sealed_B_Harword_Card + Name: Sealed MasterSmith Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + .@r = getrefine(); bonus bBreakWeaponRate,(.@r>14?800:500); bonus bBreakArmorRate,(.@r>14?600:500); + - Id: 4503 + AegisName: Sealed_Apocalips_H_Card + Name: Sealed Vesper Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bDex,2; bonus2 bIgnoreMdefClassRate,Class_Boss,((getrefine()>14)?25:15); + - Id: 4504 + AegisName: Sealed_Eddga_Card + Name: Sealed Eddga Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bMaxHPrate,((getrefine()>14)?-35:-50); bonus bNoWalkDelay; + - Id: 4505 + AegisName: Scaraba_Card + Name: Scaraba Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bMatk,20; bonus bMaxSPrate,-1; + - Id: 4506 + AegisName: Dolomedes_Card + Name: Dolomedes Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bDex,2; if(BaseClass==Job_Archer){ bonus bDex,getrefine()/3; } + - Id: 4507 + AegisName: Q_Scaraba_Card + Name: Queen Scaraba Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddRace2,RC2_SCARABA,30; bonus2 bAddMonsterDropItem,12806,30; + - Id: 4508 + AegisName: Gold_Scaraba_Card + Name: Gold Scaraba Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,20; bonus bMaxHPrate,-1; + - Id: 4509 + AegisName: Gold_Q_Scaraba_Card + Name: Gold Queen Scaraba Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bInt,3; bonus2 bSubRace,RC_Insect,10; if(getrefine()>=9) { bonus2 bSubRace,RC_Insect,5; } + - Id: 4510 + AegisName: Miming_Card + Name: Miming Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpell,"WM_LULLABY_DEEPSLEEP",1,30; + - Id: 4511 + AegisName: Little_Fatum_Card + Name: Little Fatum Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus3 bAddEff,Eff_Silence,500,ATF_MAGIC; + - Id: 4512 + AegisName: Parus_Card + Name: Parus Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bHealPower,3; if(BaseClass==Job_Acolyte){ bonus bHealPower,getrefine()/2; } + - Id: 4513 + AegisName: Angra_Mantis_Card + Name: Angra Mantis Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bCritAtkRate,2; if(BaseClass==Job_Thief){ bonus bCritAtkRate,getrefine()/2; } + - Id: 4514 + AegisName: Pom_Spider_Card + Name: Pom Spider Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddRace,RC_Undead,20; + - Id: 4515 + AegisName: Alnoldi_Card + Name: Alnoldi Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubRace,RC_Plant,30; + - Id: 4516 + AegisName: Comodo_Card + Name: Comodo Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bDef,50; bonus bFlee,-25; + - Id: 4517 + AegisName: Cendrawasih_Card + Name: Cendrawasih Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bInt,2; if(BaseClass==Job_Mage){ bonus bInt,getrefine()/3; } + - Id: 4518 + AegisName: Banaspaty_Card + Name: Banaspaty Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus3 bAddEff,Eff_Burning,500,ATF_TARGET; + - Id: 4519 + AegisName: Butoijo_Card + Name: Butoijo Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddRace,RC_Angel,20; + - Id: 4520 + AegisName: Leak_Card + Name: Leak Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bStr,3; bonus2 bAddEff,Eff_Confusion,5000; bonus3 bAddEff,Eff_Confusion,5000,ATF_TARGET; + - Id: 4521 + AegisName: Sedora_Card + Name: Sedora Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bCritAtkRate,15; + - Id: 4522 + AegisName: Sropho_Card + Name: Sropho Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus4 bAddEff,Eff_Crystalize,500,ATF_SHORT,3000; + - Id: 4523 + AegisName: Pot_Dofle_Card + Name: Pot Dofle Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bDefEle,Ele_Water; bonus2 bSubRace,RC_Fish,10; + - Id: 4524 + AegisName: King_Dramoh_Card + Name: King Dramoh Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bStr,2; if(BaseClass==Job_Swordman){ bonus bStr,2+(getrefine()/3); } + - Id: 4525 + AegisName: Kraken_Card + Name: Kraken Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bFlee,10; skill "TF_HIDING",1; skill "RG_RAID",1; bonus5 bAutoSpellOnSkill,"RG_RAID","NPC_WIDEBLEEDING",1,250,1; + UnEquipScript: | + sc_end SC_HIDING; + - Id: 4526 + AegisName: Odd_Coelacanth_Card + Name: Weird Coelacanth Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bMaxSPrate,5; bonus bMdef,50; + - Id: 4527 + AegisName: Black_Coelacanth_Card + Name: Dark Coelacanth Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bMaxHPrate,10; bonus bDef,100; + - Id: 4528 + AegisName: Mutant_Coelacanth_Card + Name: Mutant Coelacanth Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + .@r = getrefine(); bonus bMatkRate,2+(.@r/2); bonus bMaxHPrate,-.@r/2; + - Id: 4529 + AegisName: Cruel_Coelacanth_Card + Name: Violent Coelacanth Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + .@r = getrefine(); bonus2 bAddClass,Class_All,2+(.@r/2); bonus bMaxSPrate,-.@r/2; + - Id: 4530 + AegisName: Siorava_Card + Name: Siorava Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bLuk,2; if(BaseClass==Job_Merchant){ bonus bLuk,2+(getrefine()/3); } + - Id: 4531 + AegisName: Red_Eruma_Card + Name: Red Eruma Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus3 bAddEff,Eff_Curse,100,ATF_MAGIC; + - Id: 4532 + AegisName: Wild_Rider_Card + Name: Wild Rider Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bAgi,1; bonus3 bAutoSpell,"AL_INCAGI",1,50; + - Id: 4533 + AegisName: Mini_Octopus_Card + Name: Octopus Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus3 bAddEff,Eff_Blind,100,ATF_MAGIC; + - Id: 4534 + AegisName: Giant_Octopus_Card + Name: Giant Octopus Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bMaxHPrate,12; skill "WZ_WATERBALL",5; + - Id: 4535 + AegisName: Sealed_Rand_Card + Name: Sealed Randgris Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddClass,Class_All,(getrefine()>=15?8:5); bonus5 bAutoSpell,"SA_DISPELL",1,1,BF_NORMAL,1; bonus bUnbreakableWeapon; + - Id: 4536 + AegisName: Sealed_Atroce_Card + Name: Sealed Atroce Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + .@r = getrefine(); bonus bBaseAtk,((.@r>14)?25:15); autobonus "{ bonus bAspdRate,(("+.@r+">14)?75:50); }",5,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }"; + - Id: 4537 + AegisName: Sealed_Phreeoni_Card + Name: Sealed Phreeoni Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bHit,((getrefine()>14)?75:50); + - Id: 4538 + AegisName: Sealed_Bacsojin_Card + Name: Sealed White Lady Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + .@r = getrefine(); bonus bHealPower,(.@r>14?25:15); bonus bUseSPrate,(.@r>14?20:30); + - Id: 4539 + AegisName: Sealed_F_Bishop_Card + Name: Sealed Fallen Bishop Hibram Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + .@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_Human,.@rate; + - Id: 4540 + AegisName: SLD_Lord_Of_Death_Card + Name: Sealed Lord of The Dead Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + .@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; + - Id: 4541 + AegisName: SLD_B_Katrinn_Card + Name: Sealed High Wizard Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus2 bIgnoreMdefClassRate,Class_Normal,100; .@rate = ((getrefine()>14)?120:150); bonus bVariableCastrate,.@rate; bonus bSPrecovRate,-.@rate; + UnEquipScript: | + heal 0,((getrefine()>14)?-2000:-3000); + - Id: 4542 + AegisName: SLD_Detale_Card + Name: Sealed Detale Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bResEff,Eff_Freeze,(getrefine()>=15?6000:4000); bonus5 bAutoSpell,"SA_LANDPROTECTOR",1,1,BF_MAGIC,1; bonus bMdef,-20; + - Id: 4543 + AegisName: SLD_Garm_Card + Name: Sealed Hatii Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEffWhenHit,Eff_Freeze,((getrefine()>14)?4000:2500); + - Id: 4544 + AegisName: SLD_Dark_Snake_Card + Name: Sealed Evil Snake Lord Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bInt,3; .@i = (getrefine()>14?7500:5000); bonus2 bResEff,Eff_Blind,.@i; bonus2 bResEff,Eff_Curse,.@i; + - Id: 4545 + AegisName: Novice_Poring_Card + Name: Novice Poring Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bLuk,1; + - Id: 4546 + AegisName: Val'khiri_Card + Name: Val'khiri Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + - Id: 4547 + AegisName: Upd_Byorgue_Card + Name: Enhanced Byorgue Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + if(BaseJob==Job_Rogue) { bonus bMatkRate,10; bonus2 bAddClass,Class_All,10; bonus bMaxHPrate,getrefine()/2; } /* Adds a chance of inflicting Confuse on target when using Body Paint skill. */ + - Id: 4548 + AegisName: Upd_Salamander_Card + Name: Enhanced Salamander Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus2 bSkillAtk,"WZ_FIREPILLAR",40; bonus2 bSkillAtk,"WZ_METEOR",40; + - Id: 4549 + AegisName: Upd_Maya_Puple_Card + Name: Upd Maya Puple Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bIntravision; bonus bAllStats,1; skill "AL_RUWACH",1; + - Id: 4550 + AegisName: Upd_Bow_Guardian_Card + Name: Upd Bow Guardian Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + if(getiteminfo(getequipid(EQI_HAND_R),11)==W_BOW) { bonus2 bSkillAtk,"RA_ARROWSTORM",50; bonus bCriticalLong,25+10*(getequiprefinerycnt(EQI_HAND_R)/4); bonus bHit,5; bonus3 bAutoSpell,"HT_PHANTASMIC",1,100; } + - Id: 4552 + AegisName: Manny_Card + Name: Manny Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bMaxHP,10; + - Id: 4553 + AegisName: Sid_Card + Name: Sid Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bMaxHP,100; + - Id: 4554 + AegisName: Diego_Card + Name: Diego Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bMaxHP,100; + - Id: 4555 + AegisName: Scrat_Card + Name: Scrat Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bMaxHP,100; + - Id: 4556 + AegisName: Fenrir_Card + Name: Fenrir Card + Type: Card + Buy: 10 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bMatk,50+getrefine()*5; bonus bFixedCastrate,-70; + - Id: 4557 + AegisName: Fenrir_Card_ + Name: Weakened Fenrir Card + Type: Card + Buy: 10 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bMatk,25; + - Id: 4559 + AegisName: M_Morocc_Card + Name: Evil Morocc Card + Type: Card + Buy: 20 + Weight: 100 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bAspd,1; bonus bMaxSPrate,-10; + - Id: 4560 + AegisName: Clown_Card + Name: Clown Alphoccio Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + skill "BA_POEMBRAGI",10; bonus bFlee,(readparam(bVit)>=110)?40:20; + - Id: 4561 + AegisName: Professor_Card + Name: Professor Celia Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bMatkRate,(readparam(bDex)>=110)?14:7; bonus5 bAutoSpellWhenHit,"SA_LANDPROTECTOR",5,70,BF_MAGIC,0; + - Id: 4562 + AegisName: Champion_Card + Name: Champion Chen Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddClass,Class_All,(readparam(bAgi)>=110)?14:7; bonus5 bAutoSpellWhenHit,"MO_INVESTIGATE",5,70,BF_WEAPON,1; + - Id: 4563 + AegisName: Creator_Card + Name: Creator Flamel Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bCritical,(readparam(bStr)>=110)?40:20; bonus5 bAutoSpellWhenHit,"AM_ACIDTERROR",5,70,BF_WEAPON,1; + - Id: 4564 + AegisName: Stalker_Card + Name: Stalker Gertie Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bHit,(readparam(bLuk)>=110)?40:20; bonus5 bAutoSpellWhenHit,"ST_FULLSTRIP",1,70,BF_WEAPON,1; + - Id: 4565 + AegisName: Paladin_Card + Name: Paladin Randel Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bMaxHPrate,(readparam(bInt)>=110)?20:10; bonus5 bAutoSpellWhenHit,"CR_GRANDCROSS",10,70,BF_WEAPON,0; + - Id: 4566 + AegisName: Gypsy_Card + Name: Gypsy Trentini Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + skill "DC_FORTUNEKISS",10; bonus bFlee,(readparam(bVit)>=110)?40:20; + - Id: 4567 + AegisName: Alphoccio_Card + Name: Alphoccio Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bFlee,10; if(BaseJob==Job_Bard) { bonus bMaxHPrate,10; bonus bMaxSPrate,5;} + - Id: 4568 + AegisName: Ceila_Card + Name: Celia Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bFlee,10; skill "SA_ABRACADABRA",1; + - Id: 4569 + AegisName: Chen_Card + Name: Chen Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bFlee,10; skill "MO_CALLSPIRITS",2; + - Id: 4570 + AegisName: Flamel_Card + Name: Flamel Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bFlee,10; bonus2 bAddItemGroupHealRate,IG_Flamel_Card,200; + - Id: 4571 + AegisName: Gertie_Card + Name: Gertie Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bFlee,10; skill "RG_CLOSECONFINE",1; + - Id: 4572 + AegisName: Randel_Card + Name: Randel Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bFlee,10; skill "CR_AUTOGUARD",3; + - Id: 4573 + AegisName: Trentini_Card + Name: Trentini Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bFlee,10; if(BaseJob==Job_Dancer) { bonus bMaxHPrate,10; bonus bMaxSPrate,5;} + - Id: 4574 + AegisName: Daehyon_Card + Name: General Daehyon Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + .@i = getiteminfo(getequipid(EQI_HAND_R),11); if(.@i==W_1HSWORD||.@i==W_2HSWORD) { bonus bBaseAtk,100; } + - Id: 4575 + AegisName: Soheon_Card + Name: Armed Guard Soheon Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,10; if(getiteminfo(getequipid(EQI_HAND_R),11) == W_DAGGER) { .@r = getrefine(); if(.@r>=10) { bonus bAspd,1; } if(.@r>=14) { bonus bAspd,1; } } + - Id: 4576 + AegisName: Gioia_Card + Name: Gioia Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus2 bMagicAtkEle,Ele_Wind,100; bonus2 bMagicAtkEle,Ele_Ghost,100; bonus2 bSubEle,Ele_All,-30; + - Id: 4577 + AegisName: Elvira_Card + Name: Elvira Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus2 bMagicAtkEle,Ele_Wind,20; bonus2 bMagicAtkEle,Ele_Ghost,20; + - Id: 4578 + AegisName: Pyuriel_Card + Name: Angry Student Pyuriel Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bCritAtkRate,30; bonus2 bSubRace,RC_All,-10; bonus2 bSubRace,RC_Player_Human,10; + - Id: 4579 + AegisName: Lora_Card + Name: Warrior Lola Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + if(getiteminfo(getequipid(EQI_HAND_R),11) == W_MACE) { bonus bBaseAtk,20; bonus bCritical,10; } .@r = getrefine(); bonus bBaseAtk,.@r; bonus bCritical,.@r; + - Id: 4580 + AegisName: Kades_Card + Name: Dark Guardian Kades Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubEle,Ele_Water,50; bonus2 bSubEle,Ele_Earth,50; bonus2 bSubEle,Ele_Fire,50; bonus2 bSubEle,Ele_Wind,50; bonus2 bSubEle,Ele_Dark,50; bonus2 bSubEle,Ele_Undead,50; bonus2 bSubEle,Ele_Holy,-100; bonus2 bSubEle,Ele_Ghost,-100; + - Id: 4581 + AegisName: Rudo_Card + Name: Rudo Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + autobonus "{ bonus bAgi,44; heal 0,-40; }",500,3000,0,"{ sc_start SC_SPEEDUP1,3000,50; }"; + - Id: 4582 + AegisName: Bungisngis_Card + Name: Bungisngis Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bMaxHPrate,(getrefine()/2); + - Id: 4583 + AegisName: Engkanto_Card + Name: Engkanto Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEle,Ele_Poison,30; bonus2 bMagicAddEle,Ele_Poison,30; bonus2 bIgnoreDefRaceRate,RC_Plant,30; + - Id: 4584 + AegisName: Manananggal_Card + Name: Manananggal Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bSPDrainValue,1; bonus bMaxSPrate,-1; + - Id: 4585 + AegisName: Mangkukulam_Card + Name: Mangkukulam Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bMaxSPrate,10; bonus bHPGainValue,-666; + - Id: 4586 + AegisName: Tikbalang_Card + Name: Tikbalang Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bMatk,10; bonus2 bMagicAtkEle,Ele_Wind,(getrefine()>=9)?10:5; + - Id: 4587 + AegisName: Tiyanak_Card + Name: Tiyanak Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus2 bCriticalAddRace,RC_Brute,12; bonus2 bCriticalAddRace,RC_Player_Doram,12; bonus2 bCriticalAddRace,RC_Fish,12; bonus2 bCriticalAddRace,RC_DemiHuman,12; + - Id: 4588 + AegisName: Wakwak_Card + Name: Wakwak Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,5*readparam(bStr)/10; + - Id: 4589 + AegisName: Jejeling_Card + Name: Jejeling Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bMaxHP,200*readparam(bVit)/10; + - Id: 4590 + AegisName: Bangungot_Card + Name: Bangungot Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bInt,4; bonus5 bAutoSpellWhenHit,"NPC_WIDESLEEP",5,70,BF_MAGIC,0; + - Id: 4591 + AegisName: Bakonawa_Card + Name: Bakonawa Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bStr,4; bonus5 bAutoSpellWhenHit,"NPC_WIDEBLEEDING",5,70,BF_WEAPON,0; + - Id: 4592 + AegisName: Buwaya_Card + Name: Buwaya Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bVit,4; bonus5 bAutoSpellWhenHit,"NPC_WIDESTONE",5,70,BF_MAGIC,0; + - Id: 4593 + AegisName: Menblatt_Card + Name: Menblatt Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bLongAtkRate,readparam(bDex)/10; + - Id: 4594 + AegisName: Petal_Card + Name: Petal Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bCritAtkRate,2*(readparam(bLuk)/10); + - Id: 4595 + AegisName: Cenere_Card + Name: Cenere Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bAspdRate,2*(readparam(bAgi)/10); + - Id: 4596 + AegisName: AntiqueBook_Card + Name: Antique Book Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bMatk,5*(readparam(bInt)/10); + - Id: 4597 + AegisName: LichternB_Card + Name: Lichtern Blue Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bMatk,10; bonus2 bMagicAtkEle,Ele_Water,(getrefine()>=9)?10:5; + - Id: 4598 + AegisName: LichternY_Card + Name: Lichtern Green Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bMatk,10; bonus2 bMagicAtkEle,Ele_Ghost,(getrefine()>=9)?10:5; + - Id: 4599 + AegisName: LichternR_Card + Name: Lichtern Red Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bMatk,10; bonus2 bMagicAtkEle,Ele_Fire,(getrefine()>=9)?10:5; + - Id: 4600 + AegisName: LichternG_Card + Name: Lichtern Yellow Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bMatk,10; bonus2 bMagicAtkEle,Ele_Earth,(getrefine()>=9)?10:5; + - Id: 4601 + AegisName: Amdarais_Card + Name: Amdarais Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddClass,Class_All,15; bonus bMatkRate,15; bonus2 bHPLossRate,666,4000; bonus2 bSPLossRate,66,4000; + UnEquipScript: | + heal -6666,-666; + - Id: 4602 + AegisName: AmdaraisH_Card + Name: Realized Amdarais Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddClass,Class_All,20; bonus bMatkRate,20; bonus2 bHPLossRate,666,6000; bonus2 bSPLossRate,66,6000; + UnEquipScript: | + heal -6666,-666; + - Id: 4603 + AegisName: CorruptionRoot_Card + Name: Corruption Root Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,20; bonus5 bAutoSpell,"NPC_WIDESTONE",1,70,BF_WEAPON,0; bonus5 bAutoSpell,"NPC_WIDESLEEP",1,70,BF_WEAPON,0; bonus5 bAutoSpell,"NPC_WIDECURSE",1,70,BF_WEAPON,0; + - Id: 4604 + AegisName: CorruptionRootH_Card + Name: Realized Corruption Root Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,30; bonus5 bAutoSpell,"NPC_WIDESTONE",2,70,BF_WEAPON,0; bonus5 bAutoSpell,"NPC_WIDESLEEP",2,70,BF_WEAPON,0; bonus5 bAutoSpell,"NPC_WIDECURSE",2,70,BF_WEAPON,0; + - Id: 4605 + AegisName: UndeadKnightM_Card + Name: Agony Of Royal Knight Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bMaxHPrate,-44; bonus bHPGainValue,200+10*getrefine(); + - Id: 4606 + AegisName: UndeadKnightF_Card + Name: Grudge of Royal Knight Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bMaxSPrate,-44; bonus bSPGainValue,20+(getrefine()/2); + UnEquipScript: | + heal 0,-444; + - Id: 4607 + AegisName: FaithfulManager_Card + Name: Faithful Manager Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,5; bonus bMatk,5; if(getiteminfo(getequipid(EQI_HAND_R),11) == W_BOOK) { .@r = getrefine(); if(.@r>=10) { bonus bBaseAtk,20; bonus bMatk,20; } if(.@r>=14) { bonus bBaseAtk,20; bonus bMatk,20; } } + - Id: 4608 + AegisName: White_Knight_Card + Name: White Knight Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,15; bonus2 bAddSize,Size_Medium,20; bonus2 bAddSize,Size_Large,20; + - Id: 4609 + AegisName: Khalitzburg_Knight_Card + Name: Khalitzburg Knight Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bDef,20; bonus2 bSubSize,Size_Medium,25; bonus2 bSubSize,Size_Large,25; + - Id: 4610 + AegisName: Sarah_Card + Name: Sarah Card + Type: Card + Buy: 10 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bAbsorbDmgMaxHP,100; + - Id: 4625 + AegisName: Time_Holder_Card + Name: Time Holder Card + Type: Card + Buy: 10 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bMatkRate,20; bonus bUseSPrate,10; + - Id: 4626 + AegisName: Big_Ben_Card + Name: Big Ben Card + Type: Card + Buy: 10 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bMagicAddRace,RC_Formless,5; bonus2 bMagicAddRace,RC_Demon,5; + - Id: 4627 + AegisName: Big_Bell_Card + Name: Big Bell Card + Type: Card + Buy: 10 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddRace,RC_Formless,10; bonus2 bAddRace,RC_Demon,10; + - Id: 4628 + AegisName: Neo_Punk_Card + Name: Neo Punk Card + Type: Card + Buy: 10 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubRace,RC_Formless,20; bonus2 bSubRace,RC_Demon,20; + - Id: 4629 + AegisName: Arc_Elder_Card + Name: Arc Elder Card + Type: Card + Buy: 10 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubEle,Ele_Neutral,15; bonus2 bMagicAtkEle,Ele_Earth,getrefine()*3; + - Id: 4630 + AegisName: Nightmare_Timer_Keeper_Card + Name: Nightmare Timer Keeper Card + Type: Card + Buy: 10 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus3 bAutoSpell,"NPC_WIDECURSE",2,20; + - Id: 4631 + AegisName: Owl_Viscount_Card + Name: Owl Viscount Card + Type: Card + Buy: 10 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bAspdRate,3; + - Id: 4632 + AegisName: Owl_Marquees_Card + Name: Owl Marquees Card + Type: Card + Buy: 10 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus5 bAutoSpell,"SA_VIOLENTGALE",(getskilllv("SA_VIOLENTGALE")==5?5:1),1,BF_WEAPON,0; + - Id: 4633 + AegisName: Enhanced_Archer_Skeleton_Card + Name: Enhanced Archer Skeleton Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bLongAtkRate,(BaseLevel>=100?12:10); + - Id: 4634 + AegisName: Enhanced_Soldier_Skeleton_Card + Name: Enhanced Soldier Skeleton Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + if (BaseLevel<100) { bonus bCritical,9; } else { bonus bCritical,10; bonus bCritAtkRate,5; } + - Id: 4635 + AegisName: Enhanced_Amdarais_Card + Name: Enhanced Amdarais Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + .@r = getrefine(); bonus bDef,(.@r*10); bonus bFlee,(.@r*-2); if (BaseLevel>=100) bonus bMaxHP,500; + - Id: 4636 + AegisName: Bijou_Card + Name: Bijou Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bResEff,Eff_Freeze,10000; bonus2 bAddClass,Class_All,10; bonus bMatkRate,10; + - Id: 4637 + AegisName: Immortal_Corps_Card + Name: Immortal Corps Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bHPGainValue,50; bonus bSPGainValue,5; bonus bNoRegen,1; bonus bNoRegen,2; + UnEquipScript: | + heal -1000,-100; + - Id: 4638 + AegisName: Watcher_Card + Name: Watcher Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,30; bonus bSPDrainValue,-5; + - Id: 4639 + AegisName: Taffy_Card + Name: Taffy Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddClass,Class_All,1; + - Id: 4640 + AegisName: Frozen_Wolf_Card + Name: Frozen Wolf Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bMatkRate,1; + - Id: 4641 + AegisName: Zombie_Guard_Card + Name: Zombie Guard Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bNoRegen,2; bonus bSPDrainValue,1; + - Id: 4642 + AegisName: Min_Toad_Card + Name: Infinite Toad Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + .@r = getrefine(); if(.@r>6){ .@b+=2; if(.@r>8).@b+=3; } bonus bFlee2,2+.@b; + - Id: 4643 + AegisName: Min_Vagabond_Wolf_Card + Name: Infinite Vagabond Wolf Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + .@r = getrefine(); if(.@r>6){ .@b+=10; if(.@r>8).@b+=15; } bonus bAtk,10+.@b; + - Id: 4644 + AegisName: Min_Vocal_Card + Name: Infinite Vocal Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + .@r = getrefine(); if(.@r>6){ .@b+=10; if(.@r>8) .@b+=15; } bonus bMdef,5+.@b; + - Id: 4645 + AegisName: Min_Eclipse_Card + Name: Infinite Eclipse Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + .@r = getrefine(); if(.@r>6){ .@b+=300; if(.@r>8).@b+=400; } bonus bMaxHP,300+.@b; + - Id: 4646 + AegisName: Min_Chimera_Card + Name: Infinite Chimera Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bMaxHPrate,8; bonus bMaxSPrate,4; + - Id: 4647 + AegisName: Min_Osiris_Card + Name: Infinite Osiris Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bHPGainValue,300; + - Id: 4648 + AegisName: Min_Eddga_Card + Name: Infinite Eddga Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus4 bAutoSpellWhenHit,"SM_PROVOKE",10,500,1; + - Id: 4649 + AegisName: Min_Phreeoni_Card + Name: Infinite Phreeoni Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bCritical,100; + - Id: 4650 + AegisName: Min_Orc_Hero_Card + Name: Infinite Orc Hero Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Flags: + BuyingStore: true + Script: | + bonus bVit,3; bonus3 bAddEffWhenHit,Eff_Stun,10000,ATF_MAGIC; + - Id: 4651 + AegisName: Min_Tao_Gunka_Card + Name: Infinite Tao Gunka Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bMaxHP,10000; bonus bAgi,-10; + - Id: 4652 + AegisName: N_Amon_Ra_Card + Name: Nightmare Amon Ra Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bMagicAddRace,RC_Demon,50; bonus2 bMagicAddRace,RC_Undead,50; bonus2 bMagicAddEle,Ele_Dark,50; bonus2 bMagicAddEle,Ele_Undead,50; + - Id: 4653 + AegisName: N_Arclouse_Card + Name: Nightmare Arclouse Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubRace,RC_Brute,20; bonus2 bSubRace,RC_Player_Doram,20; bonus2 bSubRace,RC_Undead,20; + - Id: 4654 + AegisName: N_Mimic_Card + Name: Nightmare Mimic Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bMagicAddRace,RC_Brute,5; bonus2 bMagicAddRace,RC_Player_Doram,5; bonus2 bMagicAddRace,RC_Undead,5; + - Id: 4655 + AegisName: N_Minorous_Card + Name: Nightmare Minorous Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Player_Doram,10; bonus2 bAddRace,RC_Undead,10; + - Id: 4656 + AegisName: N_Mummy_Card + Name: Nightmare Mummy Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + /* Unofficial chance */ bonus3 bAutoSpellWhenHit,"NPC_WIDESLEEP",2,10; + - Id: 4657 + AegisName: N_Ancient_Mummy_Card + Name: Nightmare Ancient Mummy Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubEle,Ele_Neutral,15; bonus2 bMagicAtkEle,Ele_Fire,getrefine()*3; + - Id: 4658 + AegisName: N_Verit_Card + Name: Nightmare Verit Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus2 bMagicAddClass,Class_All,5; if(getrefine()>6) { bonus2 bMagicAddClass,Class_All,3; } if(getrefine()>8) { bonus2 bMagicAddClass,Class_All,2; } + - Id: 4659 + AegisName: Eggring_Card + Name: Eggring Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Script: | + bonus bLuk,2; bonus bMaxHP,50; + - Id: 4660 + AegisName: Scout_Basilisk_Card + Name: Scout Basilisk Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Script: | + bonus2 bSubSize,Size_Small,5; bonus2 bSubSize,Size_Medium,5; + - Id: 4661 + AegisName: Charge_Basilisk_Card + Name: Charge Basilisk Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Script: | + bonus2 bSubSize,Size_Medium,20; bonus2 bSubSize,Size_Large,20; bonus2 bSubSize,Size_Small,-15; + - Id: 4662 + AegisName: Big_Eggring_Card + Name: Big Eggring Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Script: | + bonus bAtk,25-5*min(readParam(bStr)/10,5); bonus bMatk,25-5*min(readParam(bInt)/10,5); bonus bAspdRate,10-2*min(readParam(bAgi)/10,5); bonus bMaxHP,1000-200*min(readParam(bVit)/10,5); bonus bLongAtkRate,5-1*min(readParam(bDex)/10,5); bonus bCritAtkRate,10-2*min(readParam(bLuk)/10,5); + - Id: 4663 + AegisName: Leaf_Lunatic_Card + Name: Leaf Lunatic Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Script: | + bonus bMaxSP,5; + - Id: 4664 + AegisName: Grass_Fabre_Card + Name: Grass Fabre Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Script: | + bonus bLuk,1; bonus bMaxHP,100; + - Id: 4665 + AegisName: Wild_Hornet_Card + Name: Wild Hornet Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + bonus bAtk,5; + - Id: 4666 + AegisName: Sweet_Roda_Frog_Card + Name: Sweet Roda Frog Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Script: | + bonus bMaxSP,10; bonus bMaxHP,300; + - Id: 4667 + AegisName: Hunter_Wolf_Card + Name: Hunter Wolf Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Script: | + bonus bMaxSP,30; + - Id: 4668 + AegisName: Trance_Spore_Card + Name: Trance Spore Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Script: | + bonus bVit,1; bonus bInt,1; + - Id: 4669 + AegisName: Jungle_Mandragora_Card + Name: Jungle Mandragora Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + .@r = getrefine(); bonus2 bAddEle,Ele_Wind,((.@r>=9)?7:((.@r>=7)?5:3)); + - Id: 4670 + AegisName: Fruit_Pom_Spider_Card + Name: Fruit Pom Spider Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + .@r = getrefine(); bonus2 bAddEle,Ele_Fire,((.@r>=9)?7:((.@r>=7)?5:3)); + - Id: 4671 + AegisName: V_Celia_Card + Name: Sorcerer Celia Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + if(eaclass()&EAJL_THIRD && BaseJob == Job_Sage){ bonus bMaxHPrate,10; bonus bMatkRate,10; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10; + - Id: 4672 + AegisName: V_Chen_Card + Name: Sura Chen Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + if(eaclass()&EAJL_THIRD && BaseJob == Job_Monk){ bonus bMaxHPrate,10; bonus2 bAddClass,Class_All,10; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10; + - Id: 4673 + AegisName: V_Alphoccio_Card + Name: Minstel Alphoccio Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + if(eaclass()&EAJL_THIRD && BaseJob == Job_Bard){ bonus bMaxHPrate,15; bonus bMaxSPrate,10; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10; + - Id: 4674 + AegisName: V_Eremes_Card + Name: Guillotine Cross Eremes Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + if(eaclass()&EAJL_THIRD && BaseJob == Job_Assassin){ bonus bFlee2,10; bonus2 bAddClass,Class_All,15; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10; + - Id: 4675 + AegisName: V_Magaleta_Card + Name: Arch Bishop Magaleta Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + if(eaclass()&EAJL_THIRD && BaseJob == Job_Priest){ bonus bMaxHPrate,10; bonus bHealPower,10; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10; + - Id: 4676 + AegisName: V_Shecil_Card + Name: Ranger Cecil Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + if(eaclass()&EAJL_THIRD && BaseJob == Job_Hunter){ bonus bCritical,20; bonus bLongAtkRate,15; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10; + - Id: 4677 + AegisName: V_Howard_Card + Name: Mechanic Howard Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + if(eaclass()&EAJL_THIRD && BaseJob == Job_Blacksmith){ bonus bHit,20; bonus2 bAddClass,Class_All,15; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10; + - Id: 4678 + AegisName: V_Katrinn_Card + Name: Warlock Kathryne Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + if(eaclass()&EAJL_THIRD && BaseJob == Job_Wizard){ bonus bMdef,80; bonus bMatkRate,15; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10; + - Id: 4679 + AegisName: V_Seyren_Card + Name: Rune Knight Seyren Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + if(eaclass()&EAJL_THIRD && BaseJob == Job_Knight){ bonus bAspd,2; bonus2 bAddClass,Class_All,15; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10; + - Id: 4680 + AegisName: V_Randel_Card + Name: Royal Guard Randel Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + if(eaclass()&EAJL_THIRD && BaseJob == Job_Crusader){ bonus bDef,350; bonus2 bAddClass,Class_All,10; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10; + - Id: 4681 + AegisName: V_Flamel_Card + Name: Genetic Flamel Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + if(eaclass()&EAJL_THIRD && BaseJob == Job_Alchemist){ bonus bFlee,20; bonus2 bAddClass,Class_All,15; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10; + - Id: 4682 + AegisName: V_Gertie_Card + Name: Shadow Chaser Gertie Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + if(eaclass()&EAJL_THIRD && BaseJob == Job_Rogue){ bonus2 bAddClass,Class_All,5; bonus bMatkRate,15; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10; + - Id: 4683 + AegisName: V_Trentini_Card + Name: Wanderer Trentini Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + if(eaclass()&EAJL_THIRD && BaseJob == Job_Dancer){ bonus bMaxHPrate,10; bonus bMaxSPrate,15; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10; + - Id: 4684 + AegisName: V_B_Eremes_Card + Name: True Eremes Guile Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"GC_CROSSIMPACT",20+.@b; + - Id: 4685 + AegisName: V_B_Magaleta_Card + Name: True Margaretha Sorin Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"AB_ADORAMUS",20+.@b; + - Id: 4686 + AegisName: V_B_Katrinn_Card + Name: True Kathryne Keyron Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"WL_CRIMSONROCK",20+.@b; + - Id: 4687 + AegisName: V_B_Shecil_Card + Name: True Cecil Damon Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"RA_CLUSTERBOMB",20+.@b; + - Id: 4688 + AegisName: V_B_Harword_Card + Name: True Howard Alt-Eisen Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"NC_AXETORNADO",20+.@b; + - Id: 4689 + AegisName: V_B_Seyren_Card + Name: True Seyren Windsor Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"RK_IGNITIONBREAK",20+.@b; + - Id: 4690 + AegisName: V_B_Randel_Card + Name: True Randel Lawrence Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"LG_EARTHDRIVE",20+.@b; + - Id: 4691 + AegisName: V_B_Flamel_Card + Name: True Flamel Emure Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"GN_CART_TORNADO",20+.@b; + - Id: 4692 + AegisName: V_B_Celia_Card + Name: True Celia Alde Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"SO_VARETYR_SPEAR",20+.@b; + - Id: 4693 + AegisName: V_B_Chen_Card + Name: True Chen Liu Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",20+.@b; + - Id: 4694 + AegisName: V_B_Gertie_Card + Name: True Gertie Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"SC_FEINTBOMB",20+.@b; + - Id: 4695 + AegisName: V_B_Trentini_Card + Name: True Trentini Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",20+.@b; + - Id: 4696 + AegisName: V_B_Alphoccio_Card + Name: True Alphoccio Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"WM_REVERBERATION",20+.@b; + - Id: 4697 + AegisName: Charleston3_Card + Name: Charleston3 Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + bonus bMaxSP,-300; bonus bBreakArmorRate,1500; /* Custom rate [Secret] */ + - Id: 4698 + AegisName: Step_Card + Name: Step Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + bonus2 bSkillAtk,"NC_AXEBOOMERANG",30+((getrefine() >= 10)*30); + - Id: 4699 + AegisName: Rock_Step_Card + Name: Rock Step Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + bonus2 bSkillAtk,"NC_ARMSCANNON",20+((getrefine()>=10)*20); + - Id: 4700 + AegisName: Strength1 + Name: STR+1 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bStr,1; + - Id: 4701 + AegisName: Strength2 + Name: STR+2 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bStr,2; + - Id: 4702 + AegisName: Strength3 + Name: STR+3 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bStr,3; + - Id: 4703 + AegisName: Strength4 + Name: STR+4 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bStr,4; + - Id: 4704 + AegisName: Strength5 + Name: STR+5 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bStr,5; + - Id: 4705 + AegisName: Strength6 + Name: STR+6 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bStr,6; + - Id: 4706 + AegisName: Strength7 + Name: STR+7 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bStr,7; + - Id: 4707 + AegisName: Strength8 + Name: STR+8 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bStr,8; + - Id: 4708 + AegisName: Strength9 + Name: STR+9 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bStr,9; + - Id: 4709 + AegisName: Strength10 + Name: STR+10 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bStr,10; + - Id: 4710 + AegisName: Inteligence1 + Name: INT+1 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bInt,1; + - Id: 4711 + AegisName: Inteligence2 + Name: INT+2 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bInt,2; + - Id: 4712 + AegisName: Inteligence3 + Name: INT+3 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bInt,3; + - Id: 4713 + AegisName: Inteligence4 + Name: INT+4 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bInt,4; + - Id: 4714 + AegisName: Inteligence5 + Name: INT+5 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bInt,5; + - Id: 4715 + AegisName: Inteligence6 + Name: INT+6 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bInt,6; + - Id: 4716 + AegisName: Inteligence7 + Name: INT+7 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bInt,7; + - Id: 4717 + AegisName: Inteligence8 + Name: INT+8 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bInt,8; + - Id: 4718 + AegisName: Inteligence9 + Name: INT+9 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bInt,9; + - Id: 4719 + AegisName: Inteligence10 + Name: INT+10 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bInt,10; + - Id: 4720 + AegisName: Dexterity1 + Name: DEX+1 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bDex,1; + - Id: 4721 + AegisName: Dexterity2 + Name: DEX+2 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bDex,2; + - Id: 4722 + AegisName: Dexterity3 + Name: DEX+3 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bDex,3; + - Id: 4723 + AegisName: Dexterity4 + Name: DEX+4 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bDex,4; + - Id: 4724 + AegisName: Dexterity5 + Name: DEX+5 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bDex,5; + - Id: 4725 + AegisName: Dexterity6 + Name: DEX+6 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bDex,6; + - Id: 4726 + AegisName: Dexterity7 + Name: DEX+7 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bDex,7; + - Id: 4727 + AegisName: Dexterity8 + Name: DEX+8 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bDex,8; + - Id: 4728 + AegisName: Dexterity9 + Name: DEX+9 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bDex,9; + - Id: 4729 + AegisName: Dexterity10 + Name: DEX+10 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bDex,10; + - Id: 4730 + AegisName: Agility1 + Name: AGI+1 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bAgi,1; + - Id: 4731 + AegisName: Agility2 + Name: AGI+2 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bAgi,2; + - Id: 4732 + AegisName: Agility3 + Name: AGI+3 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bAgi,3; + - Id: 4733 + AegisName: Agility4 + Name: AGI+4 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bAgi,4; + - Id: 4734 + AegisName: Agility5 + Name: AGI+5 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bAgi,5; + - Id: 4735 + AegisName: Agility6 + Name: AGI+6 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bAgi,6; + - Id: 4736 + AegisName: Agility7 + Name: AGI+7 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bAgi,7; + - Id: 4737 + AegisName: Agility8 + Name: AGI+8 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bAgi,8; + - Id: 4738 + AegisName: Agility9 + Name: AGI+9 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bAgi,9; + - Id: 4739 + AegisName: Agility10 + Name: AGI+10 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bAgi,10; + - Id: 4740 + AegisName: Vitality1 + Name: VIT+1 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bVit,1; + - Id: 4741 + AegisName: Vitality2 + Name: VIT+2 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bVit,2; + - Id: 4742 + AegisName: Vitality3 + Name: VIT+3 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bVit,3; + - Id: 4743 + AegisName: Vitality4 + Name: VIT+4 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bVit,4; + - Id: 4744 + AegisName: Vitality5 + Name: VIT+5 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bVit,5; + - Id: 4745 + AegisName: Vitality6 + Name: VIT+6 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bVit,6; + - Id: 4746 + AegisName: Vitality7 + Name: VIT+7 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bVit,7; + - Id: 4747 + AegisName: Vitality8 + Name: VIT+8 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bVit,8; + - Id: 4748 + AegisName: Vitality9 + Name: VIT+9 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bVit,9; + - Id: 4749 + AegisName: Vitality10 + Name: VIT+10 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bVit,10; + - Id: 4750 + AegisName: Luck1 + Name: LUK+1 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bLuk,1; + - Id: 4751 + AegisName: Luck2 + Name: LUK+2 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bLuk,2; + - Id: 4752 + AegisName: Luck3 + Name: LUK+3 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bLuk,3; + - Id: 4753 + AegisName: Luck4 + Name: LUK+4 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bLuk,4; + - Id: 4754 + AegisName: Luck5 + Name: LUK+5 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bLuk,5; + - Id: 4755 + AegisName: Luck6 + Name: LUK+6 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bLuk,6; + - Id: 4756 + AegisName: Luck7 + Name: LUK+7 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bLuk,7; + - Id: 4757 + AegisName: Luck8 + Name: LUK+8 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bLuk,8; + - Id: 4758 + AegisName: Luck9 + Name: LUK+9 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bLuk,9; + - Id: 4759 + AegisName: Luck10 + Name: LUK+10 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bLuk,10; + - Id: 4760 + AegisName: Matk1 + Name: MATK+1% + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bMatkRate,1; bonus bFixedCastrate,-1; + - Id: 4761 + AegisName: Matk2 + Name: MATK+2% + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bMatkRate,2; bonus bFixedCastrate,-1; + - Id: 4762 + AegisName: Evasion6 + Name: FLEE+6 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bFlee,6; + - Id: 4763 + AegisName: Evasion12 + Name: FLEE+12 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bFlee,12; + - Id: 4764 + AegisName: Critical5 + Name: CRI+5 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bCritical,5; + - Id: 4765 + AegisName: Critical7 + Name: CRI+7 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bCritical,7; + - Id: 4766 + AegisName: Atk2 + Name: ATK+2% + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus2 bAddClass,Class_All,2; + - Id: 4767 + AegisName: Atk3 + Name: ATK+3% + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus2 bAddClass,Class_All,3; + - Id: 4768 + AegisName: Str1_J + Name: Str + 1 + Type: Card + Buy: 20 + Weight: 10 + - Id: 4769 + AegisName: Str2_J + Name: Str + 2 + Type: Card + Buy: 20 + Weight: 10 + - Id: 4770 + AegisName: Str3_J + Name: Str + 3 + Type: Card + Buy: 20 + Weight: 10 + - Id: 4771 + AegisName: Int1_J + Name: Int + 1 + Type: Card + Buy: 20 + Weight: 10 + - Id: 4772 + AegisName: Int2_J + Name: Int + 2 + Type: Card + Buy: 20 + Weight: 10 + - Id: 4773 + AegisName: Int3_J + Name: Int + 3 + Type: Card + Buy: 20 + Weight: 10 + - Id: 4774 + AegisName: Vit1_J + Name: Vit + 1 + Type: Card + Buy: 20 + Weight: 10 + - Id: 4775 + AegisName: Vit2_J + Name: Vit + 2 + Type: Card + Buy: 20 + Weight: 10 + - Id: 4776 + AegisName: Vit3_J + Name: Vit + 3 + Type: Card + Buy: 20 + Weight: 10 + - Id: 4777 + AegisName: Agi1_J + Name: Agi + 1 + Type: Card + Buy: 20 + Weight: 10 + - Id: 4778 + AegisName: Agi2_J + Name: Agi + 2 + Type: Card + Buy: 20 + Weight: 10 + - Id: 4779 + AegisName: Agi3_J + Name: Agi + 3 + Type: Card + Buy: 20 + Weight: 10 + - Id: 4780 + AegisName: Dex1_J + Name: Dex + 1 + Type: Card + Buy: 20 + Weight: 10 + - Id: 4781 + AegisName: Dex2_J + Name: Dex + 2 + Type: Card + Buy: 20 + Weight: 10 + - Id: 4782 + AegisName: Dex3_J + Name: Dex + 3 + Type: Card + Buy: 20 + Weight: 10 + - Id: 4783 + AegisName: Luk1_J + Name: Luk + 1 + Type: Card + Buy: 20 + Weight: 10 + - Id: 4784 + AegisName: Luk2_J + Name: Luk + 2 + Type: Card + Buy: 20 + Weight: 10 + - Id: 4785 + AegisName: Luk3_J + Name: Luk + 3 + Type: Card + Buy: 20 + Weight: 10 + - Id: 4786 + AegisName: Mdef2 + Name: MDEF+2 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bMdef,2; + - Id: 4787 + AegisName: Mdef4 + Name: MDEF+4 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bMdef,4; + - Id: 4788 + AegisName: Mdef6 + Name: MDEF+6 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bMdef,6; + - Id: 4789 + AegisName: Mdef8 + Name: MDEF+8 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bMdef,8; + - Id: 4790 + AegisName: Mdef10 + Name: MDEF+10 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bMdef,10; + - Id: 4791 + AegisName: Def3 + Name: DEF+3 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bDef,3; + - Id: 4792 + AegisName: Def6 + Name: DEF+6 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bDef,6; + - Id: 4793 + AegisName: Def9 + Name: DEF+9 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bDef,9; + - Id: 4794 + AegisName: Def12 + Name: DEF+12 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bDef,12; + - Id: 4795 + AegisName: HP100 + Name: HP+100 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bMaxHP,100; + - Id: 4796 + AegisName: HP200 + Name: HP+200 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bMaxHP,200; + - Id: 4797 + AegisName: HP300 + Name: HP+300 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bMaxHP,300; + - Id: 4798 + AegisName: HP400 + Name: HP+400 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bMaxHP,400; + - Id: 4799 + AegisName: HP500 + Name: HP+500 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bMaxHP,500; + - Id: 4800 + AegisName: SP50 + Name: SP+50 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bMaxSP,50; + - Id: 4801 + AegisName: SP100 + Name: SP+100 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bMaxSP,100; + - Id: 4802 + AegisName: SP150 + Name: SP+150 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bMaxSP,150; + - Id: 4803 + AegisName: Highness_Heal_3sec + Name: Cure1Lv. + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus2 bSkillCooldown,"AB_HIGHNESSHEAL",-3000; + - Id: 4804 + AegisName: Coluceo_Heal30 + Name: Catholic1Lv. + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus2 bSkillUseSP,"AB_CHEAL",30; + - Id: 4805 + AegisName: Heal_Amount2 + Name: Archbishop1Lv + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bHealPower,3; + - Id: 4806 + AegisName: Matk3 + Name: MATK+3% + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bMatkRate,3; bonus bFixedCastrate,-1; + - Id: 4807 + AegisName: Atk_Speed1 + Name: Atk Speed1 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bAspd,1; + - Id: 4808 + AegisName: Fighting_Spirit4 + Name: Fighting Spirit4 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bBaseAtk,15; bonus bHit,5; + - Id: 4809 + AegisName: Fighting_Spirit3 + Name: Fighting Spirit3 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bBaseAtk,12; bonus bHit,4; + - Id: 4810 + AegisName: Fighting_Spirit2 + Name: Fighting Spirit2 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bBaseAtk,9; bonus bHit,3; + - Id: 4811 + AegisName: Fighting_Spirit1 + Name: Fighting Spirit1 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bBaseAtk,6; bonus bHit,2; + - Id: 4812 + AegisName: Spell4 + Name: Spell4 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bMatk,15; bonus bVariableCastrate,-10; + - Id: 4813 + AegisName: Spell3 + Name: Spell3 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bMatk,12; bonus bVariableCastrate,-8; + - Id: 4814 + AegisName: Spell2 + Name: Spell2 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bMatk,9; bonus bVariableCastrate,-6; + - Id: 4815 + AegisName: Spell1 + Name: Spell1 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bMatk,6; bonus bVariableCastrate,-4; + - Id: 4816 + AegisName: Sharp3 + Name: Sharp3 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bCritical,12; bonus bHit,4; + - Id: 4817 + AegisName: Sharp2 + Name: Sharp2 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bCritical,9; bonus bHit,3; + - Id: 4818 + AegisName: Sharp1 + Name: Sharp1 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bCritical,6; bonus bHit,2; + - Id: 4819 + AegisName: Atk1 + Name: Atk1 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus2 bAddClass,Class_All,1; + - Id: 4820 + AegisName: Fighting_Spirit5 + Name: Fighting Spirit5 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bBaseAtk,18; bonus bHit,5; + - Id: 4821 + AegisName: Fighting_Spirit6 + Name: Fighting Spirit6 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bBaseAtk,21; bonus bHit,5; + - Id: 4822 + AegisName: Fighting_Spirit7 + Name: Fighting Spirit7 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bBaseAtk,24; bonus bHit,5; + - Id: 4823 + AegisName: Fighting_Spirit8 + Name: Fighting Spirit8 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bBaseAtk,27; bonus bHit,5; + - Id: 4824 + AegisName: Fighting_Spirit9 + Name: Fighting Spirit9 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bBaseAtk,30; bonus bHit,5; + - Id: 4825 + AegisName: Fighting_Spirit10 + Name: Fighting Spirit10 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bBaseAtk,50; bonus bHit,15; + - Id: 4826 + AegisName: Spell5 + Name: Spell5 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bMatk,18; bonus bVariableCastrate,-10; + - Id: 4827 + AegisName: Spell6 + Name: Spell6 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bMatk,21; bonus bVariableCastrate,-10; + - Id: 4828 + AegisName: Spell7 + Name: Spell7 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bMatk,24; bonus bVariableCastrate,-10; + - Id: 4829 + AegisName: Spell8 + Name: Spell8 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bMatk,27; bonus bVariableCastrate,-10; + - Id: 4830 + AegisName: Spell9 + Name: Spell9 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bMatk,30; bonus bVariableCastrate,-10; + - Id: 4831 + AegisName: Spell10 + Name: Spell10 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bMatk,50; bonus bVariableCastrate,-20; + - Id: 4832 + AegisName: Expert_Archer1 + Name: Expert Archer1 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bLongAtkRate,2; + - Id: 4833 + AegisName: Expert_Archer2 + Name: Expert Archer2 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bLongAtkRate,4; + - Id: 4834 + AegisName: Expert_Archer3 + Name: Expert Archer3 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bLongAtkRate,6; + - Id: 4835 + AegisName: Expert_Archer4 + Name: Expert Archer4 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bLongAtkRate,8; + - Id: 4836 + AegisName: Expert_Archer5 + Name: Expert Archer5 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bLongAtkRate,10; + - Id: 4837 + AegisName: Expert_Archer6 + Name: Expert Archer6 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bLongAtkRate,12; + - Id: 4838 + AegisName: Expert_Archer7 + Name: Expert Archer7 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bLongAtkRate,14; + - Id: 4839 + AegisName: Expert_Archer8 + Name: Expert Archer8 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bLongAtkRate,16; + - Id: 4840 + AegisName: Expert_Archer9 + Name: Expert Archer9 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bLongAtkRate,18; + - Id: 4841 + AegisName: Expert_Archer10 + Name: Expert Archer10 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bLongAtkRate,20; bonus bAspd,1; + - Id: 4842 + AegisName: Atk_Speed2 + Name: Atk Speed2 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bAspd,2; + - Id: 4843 + AegisName: Sharp4 + Name: Sharp4 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bCritical,14; bonus bHit,5; + - Id: 4844 + AegisName: Sharp5 + Name: Sharp5 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bCritical,15; bonus bHit,6; + - Id: 4845 + AegisName: Sea_Energy + Name: Strength Of Ocean + Type: Card + - Id: 4846 + AegisName: 2011Valentin_Angel + Name: Fully Loved Stone + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bBaseAtk,10; bonus bMatk,10; + - Id: 4847 + AegisName: 2011Valentin_Devil + Name: Spelled Stone + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bBaseAtk,10; bonus bMatk,10; + - Id: 4848 + AegisName: Immuned1 + Name: Immune Level 1 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus2 bSubEle,Ele_Neutral,5; + - Id: 4849 + AegisName: Cranial1 + Name: Cranial Level 1 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; + - Id: 4850 + AegisName: Heal_Amount3 + Name: Heal Amount2 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bHealPower,6; bonus bUseSPrate,5; + - Id: 4851 + AegisName: Heal_Amount4 + Name: Heal Amount3 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bHealPower,12; bonus bUseSPrate,10; + - Id: 4852 + AegisName: Heal_Amount5 + Name: Heal Amount4 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bHealPower,20; bonus bUseSPrate,15; + - Id: 4853 + AegisName: S_Str + Name: Special Str + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bStr,1; .@r = getrefine(); if(.@r>7) { bonus bStr,3; } if(.@r>8) { bonus2 bAddClass,Class_All,1; } if(.@r>11) { bonus bAspd,1; bonus bFixedCastrate,-7; } + - Id: 4854 + AegisName: S_Agi + Name: Special Agi + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bAgi,1; .@r = getrefine(); if(.@r>7) { bonus bAgi,3; } if(.@r>8) { bonus2 bAddClass,Class_All,1; } if(.@r>11) { bonus bAspd,1; bonus bFixedCastrate,-7; } + - Id: 4855 + AegisName: S_Vital + Name: Special Vit + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bVit,1; .@r = getrefine(); if(.@r>7) { bonus bVit,3; } if(.@r>8) { bonus bMaxSPrate,1; } if(.@r>11) { bonus bAspd,1; bonus bFixedCastrate,-7; } + - Id: 4856 + AegisName: S_Int + Name: Special Int + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bInt,1; .@r = getrefine(); if(.@r>7) { bonus bInt,3; } if(.@r>8) { bonus bMatkRate,1; } if(.@r>11) { bonus bAspd,1; bonus bFixedCastrate,-7; } + - Id: 4857 + AegisName: S_Dex + Name: Special Dex + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bDex,1; .@r = getrefine(); if(.@r>7) { bonus bDex,3; } if(.@r>8) { bonus bMatkRate,1; } if(.@r>11) { bonus bAspd,1; bonus bFixedCastrate,-7; } + - Id: 4858 + AegisName: S_Luck + Name: Special Luk + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bLuk,1; .@r = getrefine(); if(.@r>7) { bonus bLuk,3; } if(.@r>8) { bonus bMaxHPrate,1; } if(.@r>11) { bonus bAspd,1; bonus bFixedCastrate,-7; } + - Id: 4859 + AegisName: Evasion1 + Name: Evasion1 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bFlee,1; + - Id: 4860 + AegisName: Evasion3 + Name: Evasion3 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bFlee,3; + - Id: 4861 + AegisName: MHP1 + Name: MHP+1% + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bMaxHPrate,1; + - Id: 4862 + AegisName: MHP2 + Name: MHP+2% + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bMaxHPrate,2; + - Id: 4863 + AegisName: Fatal1 + Name: Fatal1Lv + Type: Card + Buy: 10 + Script: | + bonus bCritAtkRate,4; bonus bCritical,1; + - Id: 4864 + AegisName: Fatal2 + Name: Fatal2Lv + Type: Card + Buy: 10 + Script: | + bonus bCritAtkRate,6; bonus bCritical,2; + - Id: 4865 + AegisName: Fatal3 + Name: Fatal3Lv + Type: Card + Buy: 10 + Script: | + bonus bCritAtkRate,8; bonus bCritical,3; + - Id: 4866 + AegisName: Fatal4 + Name: Fatal4Lv + Type: Card + Buy: 10 + Script: | + bonus bCritAtkRate,10; bonus bCritical,4; + - Id: 4867 + AegisName: MHP3 + Name: MHP+3% + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bMaxHPrate,3; + - Id: 4868 + AegisName: MHP4 + Name: MHP+4% + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bMaxHPrate,4; + - Id: 4869 + AegisName: Attack_Delay_1 + Name: DelayafterAttack1Lv + Type: Card + Buy: 10 + Script: | + bonus bAspdRate,4; + - Id: 4870 + AegisName: SP25 + Name: SP+25 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bMaxSP,25; + - Id: 4871 + AegisName: SP75 + Name: SP+75 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bMaxSP,75; + - Id: 4872 + AegisName: Attack_Delay_2 + Name: DelayafterAttack2Lv + Type: Card + Buy: 10 + Script: | + bonus bAspdRate,6; + - Id: 4873 + AegisName: Attack_Delay_3 + Name: DelayafterAttack3Lv + Type: Card + Buy: 10 + Script: | + bonus bAspdRate,8; + - Id: 4875 + AegisName: Bear's_Power + Name: Bear's Power + Type: Card + Script: | + autobonus2 "{ bonus bStr,200; bonus2 bHPLossRate,500,1000; }",20,5000,BF_WEAPON,"{ active_transform 1060,5000; specialeffect2 EF_POTION_BERSERK; showscript \"Bigfoot Power !\"; }"; + - Id: 4876 + AegisName: Runaway_Magic + Name: Runaway Magic + Type: Card + Script: | + autobonus "{ bonus bInt,200; bonus2 bSPLossRate,200,1000; }",15,10000,BF_MAGIC,"{ specialeffect2 EF_LAMADAN; }"; + - Id: 4877 + AegisName: Speed_Of_Light + Name: Speed of Light + Type: Card + Script: | + autobonus "{ bonus bAspdRate,100; bonus bFlee,100; bonus2 bHPLossRate,400,1000; bonus2 bSPLossRate,40,1000;}",10,5000,BF_WEAPON,"{ specialeffect2 EF_FLASHER; }"; + - Id: 4878 + AegisName: Muscle_Fool + Name: Muscle Fool + Type: Card + Script: | + autobonus2 "{ bonus bDef,1000; bonus2 bAddRace,RC_All,-50; bonus bMatkRate,-50; }",20,5000,BF_WEAPON,"{ specialeffect2 EF_MAGNUMBREAK; }"; + - Id: 4879 + AegisName: Hawkeye + Name: Hawkeye + Type: Card + Script: | + autobonus "{ bonus bDex,200; bonus2 bSPLossRate,50,1000; }",30,5000,BF_WEAPON,"{ specialeffect2 EF_FLASHER; }"; + - Id: 4880 + AegisName: Lucky_Day + Name: Lucky Day + Type: Card + Script: | + autobonus "{ bonus bLuk,200; bonus2 bAddMonsterDropItem,7444,10; }",15,5000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_MVP; showscript \"LUCKY MAX !!\"; }"; autobonus2 "{ bonus bLuk,200; bonus2 bAddMonsterDropItem,7444,1; }",1,5000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_MVP; showscript \"LUCKY MAX !!\"; }"; + - Id: 4881 + AegisName: Attack_Delay_4 + Name: Attack Delay 4 + Type: Card + Buy: 10 + Script: | + bonus bAspdRate,10; + - Id: 4882 + AegisName: Atk1p + Name: ATK + 1% + Type: Card + Buy: 10 + Script: | + bonus2 bAddClass,Class_All,1; + - Id: 4883 + AegisName: Matk1p + Name: MATK + 1% + Type: Card + Buy: 10 + Script: | + bonus bMatkRate,1; + - Id: 4884 + AegisName: HIT1 + Name: HIT + 1 + Type: Card + Buy: 10 + Script: | + bonus bHit,1; + - Id: 4885 + AegisName: Conjure1 + Name: Spell 1 + Type: Card + Buy: 10 + Script: | + bonus bMatk,5; bonus bVariableCastrate,-3; + - Id: 4886 + AegisName: Conjure2 + Name: Spell 2 + Type: Card + Buy: 10 + Script: | + bonus bMatk,10; bonus bVariableCastrate,-3; + - Id: 4887 + AegisName: Conjure3 + Name: Spell 3 + Type: Card + Buy: 10 + Script: | + bonus bMatk,15; bonus bVariableCastrate,-3; + - Id: 4888 + AegisName: Conjure4 + Name: Spell 4 + Type: Card + Buy: 10 + Script: | + bonus bMatk,20; bonus bVariableCastrate,-3; + - Id: 4889 + AegisName: Conjure5 + Name: Spell 5 + Type: Card + Buy: 10 + Script: | + bonus bMatk,30; bonus bVariableCastrate,-5; + - Id: 4890 + AegisName: Mdef1 + Name: MDEF+1 + Type: Card + Buy: 10 + Script: | + bonus bMdef,1; + - Id: 4891 + AegisName: Mdef3 + Name: MDEF+3 + Type: Card + Buy: 10 + Script: | + bonus bMdef,3; + - Id: 4892 + AegisName: Mdef5 + Name: MDEF+5 + Type: Card + Buy: 10 + Script: | + bonus bMdef,5; + - Id: 4893 + AegisName: Def15 + Name: DEF+15 + Type: Card + Buy: 10 + Script: | + bonus bDef,15; + - Id: 4894 + AegisName: Atk4p + Name: ATK + 4% + Type: Card + Buy: 10 + Script: | + bonus2 bAddClass,Class_All,4; + - Id: 4895 + AegisName: Atk5p + Name: ATK + 5% + Type: Card + Buy: 10 + Script: | + bonus2 bAddClass,Class_All,5; + - Id: 4896 + AegisName: Matk2p + Name: MATK + 2% + Type: Card + Buy: 10 + Script: | + bonus bMatkRate,2; + - Id: 4897 + AegisName: Matk3p + Name: MATK + 3% + Type: Card + Buy: 10 + Script: | + bonus bMatkRate,3; + - Id: 4898 + AegisName: Matk4p + Name: MATK + 4% + Type: Card + Buy: 10 + Script: | + bonus bMatkRate,4; + - Id: 4899 + AegisName: Matk5p + Name: MATK + 5% + Type: Card + Buy: 10 + Script: | + bonus bMatkRate,5; + - Id: 4900 + AegisName: MHP5 + Name: MHP+5% + Type: Card + Buy: 10 + Script: | + bonus bMaxHPrate,5; + - Id: 4902 + AegisName: Def18 + Name: DEF+18 + Type: Card + Buy: 10 + Script: | + bonus bDef,18; + - Id: 4903 + AegisName: Def21 + Name: DEF+21 + Type: Card + Buy: 10 + Script: | + bonus bDef,21; + - Id: 4904 + AegisName: Atk6p + Name: ATK + 6% + Type: Card + Buy: 10 + Script: | + bonus2 bAddClass,Class_All,6; + - Id: 4905 + AegisName: Atk7p + Name: ATK + 7% + Type: Card + Buy: 10 + Script: | + bonus2 bAddClass,Class_All,7; + - Id: 4906 + AegisName: Matk6p + Name: MATK + 6 + Type: Card + Buy: 10 + Script: | + bonus bMatkRate,6; + - Id: 4907 + AegisName: Matk7p + Name: MATK + 7% + Type: Card + Buy: 10 + Script: | + bonus bMatkRate,7; + - Id: 4908 + AegisName: Force1 + Name: Darklord Essence Force1 + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Shoes: true + Right_Hand: true + Left_Hand: true + Armor: true + Garment: true + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bStr,1; bonus bBaseAtk,3; bonus bInt,-1; + - Id: 4909 + AegisName: Force2 + Name: Darklord Essence Force2 + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Shoes: true + Right_Hand: true + Left_Hand: true + Armor: true + Garment: true + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bStr,2; bonus bBaseAtk,6; bonus bInt,-2; + - Id: 4910 + AegisName: Force3 + Name: Darklord Essence Force3 + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Shoes: true + Right_Hand: true + Left_Hand: true + Armor: true + Garment: true + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bStr,4; bonus bBaseAtk,12; bonus bInt,-4; + - Id: 4911 + AegisName: Intellect1 + Name: Darklord Essence Intelligence1 + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Shoes: true + Right_Hand: true + Left_Hand: true + Armor: true + Garment: true + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bInt,1; bonus bMatk,3; bonus bStr,-1; + - Id: 4912 + AegisName: Intellect2 + Name: Darklord Essence Intelligence2 + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Shoes: true + Right_Hand: true + Left_Hand: true + Armor: true + Garment: true + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bInt,2; bonus bMatk,6; bonus bStr,-2; + - Id: 4913 + AegisName: Intellect3 + Name: Darklord Essence Intelligence3 + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Shoes: true + Right_Hand: true + Left_Hand: true + Armor: true + Garment: true + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bInt,4; bonus bMatk,12; bonus bStr,-4; + - Id: 4914 + AegisName: Swiftness1 + Name: Darklord Essence Speed1 + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Shoes: true + Right_Hand: true + Left_Hand: true + Armor: true + Garment: true + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bAgi,1; bonus bFlee,2; bonus bVit,-1; + - Id: 4915 + AegisName: Swiftness2 + Name: Darklord Essence Speed2 + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Shoes: true + Right_Hand: true + Left_Hand: true + Armor: true + Garment: true + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bAgi,2; bonus bFlee,4; bonus bVit,-2; + - Id: 4916 + AegisName: Swiftness3 + Name: Darklord Essence Speed3 + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Shoes: true + Right_Hand: true + Left_Hand: true + Armor: true + Garment: true + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bAgi,4; bonus bFlee,8; bonus bVit,-4; + - Id: 4917 + AegisName: Tough1 + Name: Darklord Essence Vitality1 + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Shoes: true + Right_Hand: true + Left_Hand: true + Armor: true + Garment: true + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bVit,1; bonus bDef,3; bonus bMdef,2; bonus bAgi,-1; + - Id: 4918 + AegisName: Tough2 + Name: Darklord Essence Vitality2 + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Shoes: true + Right_Hand: true + Left_Hand: true + Armor: true + Garment: true + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bVit,2; bonus bDef,6; bonus bMdef,4; bonus bAgi,-2; + - Id: 4919 + AegisName: Tough3 + Name: Darklord Essence Vitality3 + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Shoes: true + Right_Hand: true + Left_Hand: true + Armor: true + Garment: true + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bVit,4; bonus bDef,12; bonus bMdef,8; bonus bAgi,-4; + - Id: 4920 + AegisName: Artful1 + Name: Darklord Essence Concentration1 + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Shoes: true + Right_Hand: true + Left_Hand: true + Armor: true + Garment: true + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bDex,1; bonus bHit,2; bonus bLuk,-1; + - Id: 4921 + AegisName: Artful2 + Name: Darklord Essence Concentration2 + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Shoes: true + Right_Hand: true + Left_Hand: true + Armor: true + Garment: true + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bDex,2; bonus bHit,4; bonus bLuk,-2; + - Id: 4922 + AegisName: Artful3 + Name: Darklord Essence Concentration3 + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Shoes: true + Right_Hand: true + Left_Hand: true + Armor: true + Garment: true + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bDex,4; bonus bHit,8; bonus bLuk,-4; + - Id: 4923 + AegisName: Fortune1 + Name: Darklord Essence Luck1 + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Shoes: true + Right_Hand: true + Left_Hand: true + Armor: true + Garment: true + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bLuk,1; bonus bCritical,1; bonus bDex,-1; + - Id: 4924 + AegisName: Fortune2 + Name: Darklord Essence Luck2 + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Shoes: true + Right_Hand: true + Left_Hand: true + Armor: true + Garment: true + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bLuk,2; bonus bCritical,2; bonus bDex,-2; + - Id: 4925 + AegisName: Fortune3 + Name: Darklord Essence Luck3 + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Shoes: true + Right_Hand: true + Left_Hand: true + Armor: true + Garment: true + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bLuk,4; bonus bCritical,4; bonus bDex,-4; + - Id: 4926 + AegisName: Critical1 + Name: Cri 1Lv + Type: Card + Buy: 10 + Script: | + bonus bCritical,1; + - Id: 4927 + AegisName: HP50 + Name: MaxHP50 + Type: Card + Buy: 10 + Script: | + bonus bMaxHP,50; + - Id: 4928 + AegisName: SP10 + Name: MaxSP+10 + Type: Card + Buy: 10 + Script: | + bonus bMaxSP,10; + - Id: 4929 + AegisName: MSP1 + Name: MSP+1% + Type: Card + Buy: 10 + Script: | + bonus bMaxSPrate,1; + - Id: 4930 + AegisName: HEAL2 + Name: Recovery UP + Type: Card + Buy: 10 + Script: | + bonus bHPrecovRate,2; bonus bSPrecovRate,2; + - Id: 4931 + AegisName: HEALHP1 + Name: Heal 10 + Type: Card + Buy: 10 + Script: | + bonus2 bHPRegenRate,10,10000; + - Id: 4932 + AegisName: HEALSP1 + Name: SP recovery1 + Type: Card + Buy: 10 + Script: | + bonus bSPGainValue,1; + - Id: 4933 + AegisName: Tolerance_Not1 + Name: Neutral Resistance Lv1 + Type: Card + Buy: 10 + Script: | + bonus2 bSubEle,Ele_Neutral,1; + - Id: 4934 + AegisName: Tolerance_Not2 + Name: Neutral Resistance Lv2 + Type: Card + Buy: 10 + Script: | + bonus2 bSubEle,Ele_Neutral,2; + - Id: 4935 + AegisName: Tolerance_Not3 + Name: Neutral Resistance Lv3 + Type: Card + Buy: 10 + Script: | + bonus2 bSubEle,Ele_Neutral,3; + - Id: 4936 + AegisName: ATK_BIG1 + Name: Attack big1 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus2 bAddSize,Size_Large,1; + - Id: 4937 + AegisName: ATK_MEDIUM1 + Name: Attack mid1 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus2 bAddSize,Size_Medium,1; + - Id: 4938 + AegisName: ATK_SMALL1 + Name: Attack small1 + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus2 bAddSize,Size_Small,1; + - Id: 4939 + AegisName: Critical2 + Name: CRI Lv2 + Type: Card + Buy: 10 + Script: | + bonus bCritical,2; + - Id: 4940 + AegisName: Critical3 + Name: CRI Lv3 + Type: Card + Buy: 10 + Script: | + bonus bCritical,4; + - Id: 4941 + AegisName: Critical4 + Name: CRI Lv4 + Type: Card + Buy: 10 + Script: | + bonus bCritical,6; + - Id: 4942 + AegisName: Dodge1 + Name: Parrying Lv1 + Type: Card + Buy: 10 + Script: | + bonus bFlee2,3; + - Id: 4943 + AegisName: Dodge2 + Name: Parrying Lv2 + Type: Card + Buy: 10 + Script: | + bonus bFlee2,4; + - Id: 4944 + AegisName: Dodge3 + Name: Parrying Lv3 + Type: Card + Buy: 10 + Script: | + bonus bFlee2,5; + - Id: 4945 + AegisName: Thrift1 + Name: Economy Lv1 + Type: Card + Buy: 10 + Script: | + bonus bUseSPrate,-2; + - Id: 4946 + AegisName: Thrift2 + Name: Economy Lv2 + Type: Card + Buy: 10 + Script: | + bonus bUseSPrate,-4; + - Id: 4947 + AegisName: Thrift3 + Name: Economy Lv3 + Type: Card + Buy: 10 + Script: | + bonus bUseSPrate,-6; + - Id: 4948 + AegisName: Skill_Delay1 + Name: After Skill Delay Lv1 + Type: Card + Buy: 10 + Script: | + bonus bDelayrate,-2; + - Id: 4949 + AegisName: Skill_Delay2 + Name: After Skill Delay Lv2 + Type: Card + Buy: 10 + Script: | + bonus bDelayrate,-4; + - Id: 4950 + AegisName: Skill_Delay3 + Name: After Skill Delay Lv3 + Type: Card + Buy: 10 + Script: | + bonus bDelayrate,-6; + - Id: 4951 + AegisName: Darkness_Drop + Name: Darkness Drop + Type: Card + Script: | + bonus2 bAddEle,Ele_Dark,2; bonus2 bMagicAtkEle,Ele_Dark,2; bonus2 bSubEle,Ele_Dark,1; + - Id: 4952 + AegisName: Fire_Drop + Name: Fire Drop + Type: Card + Script: | + bonus2 bAddEle,Ele_Fire,2; bonus2 bMagicAtkEle,Ele_Fire,2; bonus2 bSubEle,Ele_Fire,1; + - Id: 4953 + AegisName: Water_Drop + Name: Water Drop + Type: Card + Script: | + bonus2 bAddEle,Ele_Water,2; bonus2 bMagicAtkEle,Ele_Water,2; bonus2 bSubEle,Ele_Water,1; + - Id: 4954 + AegisName: Earth_Drop + Name: Earth Drop + Type: Card + Script: | + bonus2 bAddEle,Ele_Earth,2; bonus2 bMagicAtkEle,Ele_Earth,2; bonus2 bSubEle,Ele_Earth,1; + - Id: 4955 + AegisName: Holy_Drop + Name: Holy Drop + Type: Card + Script: | + bonus2 bAddEle,Ele_Holy,2; bonus2 bMagicAtkEle,Ele_Holy,2; bonus2 bSubEle,Ele_Holy,1; + - Id: 4956 + AegisName: Recovery_Drop + Name: Recovery Drop + Type: Card + Script: | + setarray .@skills$, "AL_HEAL", "PR_SANCTUARY", "AM_POTIONPITCHER", "AB_HIGHNESSHEAL", "AB_CHEAL"; for( .@i = 0; .@i < getarraysize(.@skills$); .@i++ ){ bonus2 bSkillHeal,.@skills$[.@i],2; bonus2 bSkillHeal2,.@skills$[.@i],2; } /* TODO: Depending on some recovery items HP recovery amount + 2% */ + - Id: 4957 + AegisName: Famitsus_Power + Name: Famitsu's Power + Type: Card + Script: | + bonus bMaxHP,832; + - Id: 4958 + AegisName: Gemini + Name: Gemini + Type: Card + Script: | + bonus bDelayrate,-1; + - Id: 4959 + AegisName: Sagittarius + Name: Sagittarius + Type: Card + Script: | + bonus bLongAtkRate,1; + - Id: 4960 + AegisName: Aquarius + Name: Aquarius + Type: Card + Script: | + bonus bUseSPrate,-2; + - Id: 4961 + AegisName: Aries + Name: Aries + Type: Card + Script: | + bonus bMatk,10; + - Id: 4962 + AegisName: Cancer + Name: Cancer + Type: Card + Script: | + bonus bAtk,3; + - Id: 4963 + AegisName: Taurus + Name: Taurus + Type: Card + Script: | + bonus bAtk,4; bonus bHit,1; + - Id: 4964 + AegisName: Capricorn + Name: Capricorn + Type: Card + Script: | + bonus2 bMagicAddRace,RC_All,3; + - Id: 4965 + AegisName: Pisces + Name: Pisces + Type: Card + Script: | + bonus bVariableCastrate,-2; + - Id: 4966 + AegisName: Scorpio + Name: Scorpio + Type: Card + Script: | + bonus2 bAddRace,RC_All,1; + - Id: 4967 + AegisName: Leo + Name: Leo + Type: Card + Script: | + bonus bAspdRate,3; + - Id: 4968 + AegisName: Virgo + Name: Virgo + Type: Card + Script: | + setarray .@skills$, "AL_HEAL", "PR_SANCTUARY", "AM_POTIONPITCHER", "AB_HIGHNESSHEAL", "AB_CHEAL"; for( .@i = 0; .@i < getarraysize(.@skills$); .@i++ ){ bonus2 bSkillHeal,.@skills$[.@i],1; } + - Id: 4969 + AegisName: Libra + Name: Libra + Type: Card + Script: | + setarray .@skills$, "AL_HEAL", "PR_SANCTUARY", "AM_POTIONPITCHER", "AB_HIGHNESSHEAL", "AB_CHEAL"; for( .@i = 0; .@i < getarraysize(.@skills$); .@i++ ){ bonus2 bSkillHeal2,.@skills$[.@i],1; } /* TODO: Depending on some recovery items HP recovery amount + 1% */ + - Id: 4970 + AegisName: Reactor_P_FIRE + Name: Fire Property Reactor + Type: Card + Script: | + bonus bDefEle,Ele_Fire; + - Id: 4971 + AegisName: Reactor_P_WATER + Name: Water Property Reactor + Type: Card + Script: | + bonus bDefEle,Ele_Water; + - Id: 4972 + AegisName: Reactor_P_GROUND + Name: Earth Property Reactor + Type: Card + Script: | + bonus bDefEle,Ele_Earth; + - Id: 4973 + AegisName: Reactor_P_WIND + Name: Wind Property Reactor + Type: Card + Script: | + bonus bDefEle,Ele_Wind; + - Id: 4974 + AegisName: Reactor_T_FIRE + Name: Fire Resistance Reactor + Type: Card + Script: | + bonus2 bSubEle,Ele_Fire,25; bonus2 bSubEle,Ele_Water,-25; + - Id: 4975 + AegisName: Reactor_T_WATER + Name: Water Resistance Reactor + Type: Card + Script: | + bonus2 bSubEle,Ele_Water,25; bonus2 bSubEle,Ele_Wind,-25; + - Id: 4976 + AegisName: Reactor_T_GROUND + Name: Earth Resistance Reactor + Type: Card + Script: | + bonus2 bSubEle,Ele_Earth,25; bonus2 bSubEle,Ele_Fire,-25; + - Id: 4977 + AegisName: Reactor_T_WIND + Name: Wind Resistance Reactor + Type: Card + Script: | + bonus2 bSubEle,Ele_Wind,25; bonus2 bSubEle,Ele_Earth,-25; + - Id: 4978 + AegisName: Reactor_Cure_101 + Name: Recovery Reactor 101 + Type: Card + Script: | + if (getrefine()>=7) bonus2 bHPRegenRate,100,5000; else bonus2 bHPRegenRate,50,5000; + - Id: 4979 + AegisName: Reactor_Cure_102 + Name: Recovery Reactor 102 + Type: Card + Script: | + if (getrefine()>=7) bonus2 bSPRegenRate,5,5000; else bonus2 bHPRegenRate,3,5000; + - Id: 4980 + AegisName: Reactor_Cure_201 + Name: Recovery Reactor 201 + Type: Card + Script: | + if (getrefine()>=7) bonus bHPrecovRate,100; else bonus bHPrecovRate,50; + - Id: 4981 + AegisName: Reactor_Cure_202 + Name: Recovery Reactor 202 + Type: Card + Script: | + if (getrefine()>=7) bonus bSPrecovRate,100; else bonus bSPrecovRate,50; + - Id: 4982 + AegisName: Reactor_A_STR + Name: STR Supplement Reactor + Type: Card + Script: | + if (getrefine()>=7) { .@bonus = 10; } bonus bBaseAtk,.@bonus + 5*(readparam(bStr)/10); + - Id: 4983 + AegisName: Reactor_A_INT + Name: INT Supplement Reactor + Type: Card + Script: | + if (getrefine()>=7) { .@bonus = 10; } bonus bMatk,.@bonus + 5*(readparam(bInt)/10); + - Id: 4984 + AegisName: Reactor_A_DEF + Name: DEF SupplementReactor + Type: Card + Script: | + bonus bDef,100; + - Id: 4985 + AegisName: Reactor_A_AVOI + Name: PD Supplement Reactor + Type: Card + Script: | + bonus bFlee2,3; + - Id: 4986 + AegisName: Reactor_A_ATK + Name: Attack Supplement Reactor + Type: Card + Script: | + bonus bBaseAtk,20; + - Id: 4987 + AegisName: Reactor_A_MATK + Name: Magic Supplement Reactor + Type: Card + Script: | + bonus bMatk,20; + - Id: 4988 + AegisName: Reactor_A_MHP + Name: HP Supplement Reactor + Type: Card + Script: | + bonus bMaxHPrate,5; + - Id: 4989 + AegisName: Reactor_A_MSP + Name: SP Supplement Reactor + Type: Card + Script: | + bonus bMaxSPrate,3; + - Id: 4990 + AegisName: Reactor_A_FROZ + Name: Frozen Supplement Reactor + Type: Card + Script: | + bonus2 bResEff,Eff_Freeze,10000; + - Id: 4991 + AegisName: Reactor_A_ASPD + Name: ASPD Supplement Reactor + Type: Card + Script: | + bonus bAspd,1; + - Id: 4992 + AegisName: HPdrain1 + Name: HP Absorb 1 + Type: Card + Script: | + bonus2 bHPDrainRate,10,1; + - Id: 4993 + AegisName: SPdrain1 + Name: SP Absorb 1 + Type: Card + Script: | + bonus2 bSPDrainRate,10,1; + - Id: 4994 + AegisName: Rune_of_Strength_Lv_1 + Name: Rune of Strength Lv 1 + Type: Card + Buy: 20 + Script: | + .@r = getrefine(); if (.@r>=7) { bonus bStr,5; } if (.@r>=10) { bonus2 bAddClass,Class_All,5; } + - Id: 4995 + AegisName: Rune_of_Strength_Lv_2 + Name: Rune of Strength Lv 2 + Type: Card + Buy: 20 + Script: | + .@r = getrefine(); if (.@r>=7) { bonus bStr,6; } if (.@r>=11) { bonus bStr,1; bonus2 bAddClass,Class_All,7; } + - Id: 4996 + AegisName: Rune_of_Strength_Lv_3 + Name: Rune of Strength_Lv 3 + Type: Card + Buy: 20 + Script: | + .@r = getrefine(); if (.@r>=7) { bonus bStr,7; } if (.@r>=12) { bonus bStr,1; bonus2 bAddClass,Class_All,8; } if (.@r>=13) { bonus bStr,1; bonus2 bAddClass,Class_All,2; } + - Id: 4997 + AegisName: Rune_of_Agility_Lv_1 + Name: Rune of Agility Lv 1 + Type: Card + Buy: 20 + Script: | + .@r = getrefine(); if (.@r>=7) { bonus bAgi,5; } if (.@r>=10) { bonus bFlee2,5; } + - Id: 4998 + AegisName: Rune_of_Agility_Lv_2 + Name: Rune of Agility Lv 2 + Type: Card + Buy: 20 + Script: | + .@r = getrefine(); if (.@r>=7) { bonus bAgi,6; } if (.@r>=11) { bonus bAgi,1; bonus bFlee2,7; } + - Id: 4999 + AegisName: Rune_of_Agility_Lv_3 + Name: Rune of Agility Lv 3 + Type: Card + Buy: 20 + Script: | + .@r = getrefine(); if (.@r>=7) { bonus bAgi,7; } if (.@r>=12) { bonus bAgi,1; bonus bFlee2,5; } if (.@r>=13) { bonus bAgi,1; bonus bFlee2,5; } + - Id: 6000 + AegisName: Dark_Ashes + Name: Ashes of Darkness + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6001 + AegisName: Essence_Of_Fire + Name: Essence of Fire + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 6002 + AegisName: Token_Of_Apostle + Name: Token of Apostle + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 6003 + AegisName: Soul_Pendant + Name: Pendant of Spirit + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 6004 + AegisName: Bapho_Doll + Name: Cursed Baphomet Doll + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 6005 + AegisName: New_Year_Rice_Cake + Name: New Year Rice Cake + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6006 + AegisName: Rice_Cake_Delivery_Box + Name: Rice Cake Delivery Box + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6007 + AegisName: New_Year_Rice_Cake_Soup + Name: New Year Rice Cake Soup + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6008 + AegisName: Wood + Name: Wood + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 6009 + AegisName: Large_Magical_Fan + Name: Big Fan Of Magic + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6010 + AegisName: Pickaxe + Name: Hoe + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 6011 + AegisName: Blue_Card_B + Name: Blue B Card + Type: Etc + Weight: 10 + - Id: 6012 + AegisName: Blue_Card_C + Name: Blue C Card + Type: Etc + Weight: 10 + - Id: 6013 + AegisName: Blue_Card_J + Name: Blue J Card + Type: Etc + Weight: 10 + - Id: 6015 + AegisName: Blue_Card_M + Name: Blue M Card + Type: Etc + Weight: 10 + - Id: 6016 + AegisName: Blue_Card_Q + Name: Blue Q Card + Type: Etc + Weight: 10 + - Id: 6017 + AegisName: Blue_Card_T + Name: Blue T Card + Type: Etc + Weight: 10 + - Id: 6018 + AegisName: Blue_Card_V + Name: Blue V Card + Type: Etc + Weight: 10 + - Id: 6019 + AegisName: Blue_Card_Z + Name: Blue Z Card + Type: Etc + Weight: 10 + - Id: 6020 + AegisName: Fur + Name: Fur + Type: Etc + Buy: 704 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6021 + AegisName: Peaked_Hat + Name: Peaked Hat + Type: Etc + Buy: 433 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6022 + AegisName: Hard_Skin + Name: Hard Skin + Type: Etc + Buy: 884 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6023 + AegisName: Mystic_Horn + Name: Mystic Horn + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6024 + AegisName: 17Carat_Dia + Name: 17Carat Diamond + Type: Etc + Buy: 6000000 + Weight: 10 + Trade: + Override: 100 + NoSell: true + - Id: 6025 + AegisName: Towel_Of_Memory + Name: Towel of Memory + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6026 + AegisName: Marriage_Covenant + Name: Written Oath Of Marriage + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + - Id: 6027 + AegisName: Crystal_Of_Feardoom + Name: Crystal Of Feardom + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6028 + AegisName: Seal_Scroll + Name: Sealed Scroll + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6029 + AegisName: Morocc_Tracing_Log + Name: Morocc Tracing Log + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6030 + AegisName: Glitering_PaperA + Name: Glittering Paper + Type: Etc + Weight: 10 + - Id: 6031 + AegisName: Glitering_PaperB + Name: Glittering Paper + Type: Etc + Weight: 10 + - Id: 6032 + AegisName: Horn_Of_Hilsrion + Name: Horn of Hillslion + Type: Etc + Buy: 500 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6033 + AegisName: Horn_Of_Tendrilion + Name: Horn of Tendrilion + Type: Etc + Buy: 500 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6034 + AegisName: Weird_Part + Name: Weird Part + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6035 + AegisName: Decaying_Stem + Name: Decaying Stem + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6036 + AegisName: Invite_To_Meeting + Name: Meeting Invitation + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6037 + AegisName: Rough_File + Name: Messy File + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6038 + AegisName: Neat_Report + Name: Neat Report + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6039 + AegisName: Piece_Of_Fish + Name: Piece of Fish + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6040 + AegisName: Some_Of_Report + Name: Part of a Report + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6041 + AegisName: Strong_Bine + Name: Strong Vine + Type: Etc + Buy: 30 + Weight: 50 + - Id: 6042 + AegisName: Ordinary_Branch + Name: Ordinary Branch + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6043 + AegisName: Letter_From_Lugen + Name: Letter from Lugen + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6044 + AegisName: Letter_From_Otto + Name: Letter from Otto + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6045 + AegisName: Supply_Box + Name: Supply Box + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6048 + AegisName: Unidentified_Mineral + Name: Unidentified Mineral + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6049 + AegisName: Marlin + Name: Marlin + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6050 + AegisName: Mercenary_Contract + Name: Mercenary Contract + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6051 + AegisName: Gray_Hollow + Name: Gray Hollow + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6052 + AegisName: Ornamental_Hairpin + Name: Ornament Hairpin + Type: Etc + Buy: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6053 + AegisName: Yuanbao + Name: Circle Step + Type: Etc + Buy: 100 + Weight: 100 + - Id: 6054 + AegisName: Blue_Card_6 + Name: Number 6 Card + Type: Etc + Weight: 10 + - Id: 6055 + AegisName: Blue_Card_Annyver + Name: Character Week Card + Type: Etc + Weight: 10 + - Id: 6056 + AegisName: Blue_Card_Sary + Name: Character Year Card + Type: Etc + Weight: 10 + - Id: 6057 + AegisName: Blue_Card_E + Name: Character Lee Card + Type: Etc + Weight: 10 + - Id: 6058 + AegisName: Blue_Card_Ven + Name: Character Ben Card + Type: Etc + Weight: 10 + - Id: 6059 + AegisName: Blue_Card_Nt + Name: Character Project Card + Type: Etc + Weight: 10 + - Id: 6060 + AegisName: Moon_Admin_Ticket + Name: Month Viewing Ticket + Type: Etc + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6061 + AegisName: Plantain + Name: Blood Beginner + Type: Etc + Buy: 100 + Weight: 50 + - Id: 6062 + AegisName: Moon_Cake15 + Name: Letter Moon Cake + Type: Etc + Buy: 10 + Weight: 10 + - Id: 6063 + AegisName: Moon_Cake16 + Name: Letter Moon Cake + Type: Etc + Buy: 10 + Weight: 10 + - Id: 6064 + AegisName: Moon_Cake17 + Name: Letter Moon Cake + Type: Etc + Buy: 10 + Weight: 10 + - Id: 6065 + AegisName: Moon_Cake18 + Name: Letter Moon Cake + Type: Etc + Buy: 10 + Weight: 10 + - Id: 6066 + AegisName: Moon_Cake19 + Name: Letter Moon Cake + Type: Etc + Buy: 10 + Weight: 10 + - Id: 6067 + AegisName: Moon_Cake20 + Name: Letter Moon Cake + Type: Etc + Buy: 10 + Weight: 10 + - Id: 6068 + AegisName: Rabbit_Skin + Name: Leather Rabbit + Type: Etc + Buy: 10 + Weight: 10 + - Id: 6069 + AegisName: ABUNDANCE + Name: Abundance + Type: Etc + Buy: 10 + Weight: 10 + - Id: 6070 + AegisName: Shaman's_Old_Paper + Name: Shaman's Document + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6071 + AegisName: Broken_Sword + Name: Broken Sword + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6072 + AegisName: Wing_Of_Bizofnil + Name: Bijofnil Feather + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6073 + AegisName: Dragon's_Mane + Name: Dragon's Mane + Type: Etc + Flags: + BuyingStore: true + - Id: 6074 + AegisName: Bazett's_Order + Name: Bazett's Order + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6075 + AegisName: Crystalized_Teardrop + Name: Crystalized Teardrop + Type: Etc + Flags: + BuyingStore: true + - Id: 6076 + AegisName: Portable_Toolbox + Name: Portable Toolbox + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6077 + AegisName: Rough_Mineral + Name: Rough Mineral + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6078 + AegisName: Stone_Fragments + Name: Stone Fragment + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6079 + AegisName: Flower_Of_Alfheim + Name: Flower Of Alfheim + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6080 + AegisName: Manuk_Coin + Name: Manuk Coin + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6081 + AegisName: Splendide_Coin + Name: Splendide Coin + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6082 + AegisName: Spirit_Of_Alfheim + Name: Spirit Of Alfheim + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6083 + AegisName: Dolly_Capsule + Name: Capsule Dolls + Type: Etc + Weight: 10 + - Id: 6084 + AegisName: Bradium_Fragments + Name: Bradium Fragments + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6085 + AegisName: Shaggy_Muffler + Name: Shaggy Muffler + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6086 + AegisName: Withered_Flower + Name: Withered Flower + Type: Etc + Buy: 890 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6087 + AegisName: Crystal_Of_Soul_01 + Name: Spiritual Crystal + Type: Etc + Buy: 1050 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6088 + AegisName: Crystal_Of_Soul_02 + Name: Spiritual Crystal + Type: Etc + Buy: 1050 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6089 + AegisName: Piece_Of_Darkness + Name: Dark Piece + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6090 + AegisName: Purified_Bradium + Name: Refined Bradium + Type: Etc + Buy: 1100 + Weight: 50 + Flags: + BuyingStore: true + - Id: 6091 + AegisName: Dark_Red_Scale + Name: Darkred Scale Piece + Type: Etc + Buy: 200000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6092 + AegisName: Singing_Crystal_Piece + Name: Piece Of Singing Crystal + Type: Etc + Weight: 10 + - Id: 6093 + AegisName: Egg_Of_Draco + Name: Draco's Egg + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6094 + AegisName: Traditional_Cookie + Name: Traditional Sweets + Type: Etc + Buy: 20 + Weight: 10 + - Id: 6095 + AegisName: Flavored_Alcohol + Name: Flavored Alcohol + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6096 + AegisName: Fish_With_Blue_Back + Name: Fish With Blue Back + Type: Etc + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6097 + AegisName: Pumpkin_Pie_ + Name: Pumpkin Pie + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6098 + AegisName: Small_Snow_Flower + Name: Small Snow Flower + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6099 + AegisName: Grilled_Rice_Cake + Name: Grilled Rice Cake + Type: Etc + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6100 + AegisName: Damp_Darkness + Name: Damp Darkness + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6101 + AegisName: Attendance_Card + Name: Attendance Card + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6102 + AegisName: Report_On_Splendide + Name: Report On Splendide + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6103 + AegisName: Report_On_Manuk + Name: Report On Manuk + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6104 + AegisName: Big_Cell + Name: Big Cell + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6105 + AegisName: Morning_Dew + Name: Morning Dew + Type: Etc + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6106 + AegisName: Well_Ripened_Berry + Name: Well Ripened Berry + Type: Etc + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6107 + AegisName: Sunset_On_The_Rock + Name: Sunset On The Rock + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6108 + AegisName: Apple_Pudding + Name: Apple Pudding + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6109 + AegisName: Plant_Neutrient + Name: Plant Neutrient + Type: Etc + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6110 + AegisName: Vital_Flower + Name: Vital Flower + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6111 + AegisName: Mystic_Stone + Name: Mystic Stone + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6112 + AegisName: Fresh_Plant + Name: Fresh Plant + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6113 + AegisName: Vital_Flower_ + Name: Vital Flower + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6114 + AegisName: Flame_Gemstone + Name: Flame Gemstone + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6115 + AegisName: Bun_ + Name: Bun + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6116 + AegisName: Succu_Pet_Coupon + Name: Succubus Pet Exchange Coupon + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6117 + AegisName: Imp_Pet_Coupon + Name: Imp Pet Exchange Coupon + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6118 + AegisName: Chung_E_Pet_Coupon + Name: Chung E Exchange Coupon + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6119 + AegisName: Natural_Leather + Name: Cow Leather + Type: Etc + - Id: 6120 + AegisName: Face_Paint + Name: Face Paint + Type: Etc + Buy: 120 + Weight: 20 + Flags: + BuyingStore: true + - Id: 6121 + AegisName: Makeover_Brush + Name: Makeover Brush + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6122 + AegisName: Paint_Brush + Name: Paint Brush + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6123 + AegisName: Surface_Paint + Name: Surface Paint + Type: Etc + Buy: 200 + Weight: 30 + Flags: + BuyingStore: true + - Id: 6124 + AegisName: Wolf's_Flute + Name: Wolf Flute + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6125 + AegisName: Lucky_Box + Name: Spring Time Box + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6126 + AegisName: Happy_Box + Name: Summer Happy Box + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6127 + AegisName: Purification_Stone + Name: Purification Stone + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6128 + AegisName: Guillotine_Antidote + Name: Antidote + Type: Etc + Flags: + BuyingStore: true + - Id: 6129 + AegisName: Ticket_Nightmare + Name: Nightmare Terror Exchange Coupon + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6130 + AegisName: Ticket_Loli_Ruri + Name: Loli Ruri Exchange Coupon + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6131 + AegisName: Ticket_Goblin_Leader + Name: Goblin Leader Exchange Coupon + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6132 + AegisName: Ticket_Incubus + Name: Incubus Exchange Coupon + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6133 + AegisName: Ticket_Miyabi_Ningyo + Name: Miyabi Ningyo Exchange Coupon + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6134 + AegisName: Ticket_Whisper + Name: Giant Whisper Exchange Coupon + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6135 + AegisName: Ticket_Wicked_Nymph + Name: Evil Nymph Exchange Coupon + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6136 + AegisName: Ticket_Medusa + Name: Medusa Exchange Coupon + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6137 + AegisName: Ticket_Stoneshooter + Name: Stone Shooter Exchange Coupon + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6138 + AegisName: Ticket_Marionette + Name: Marionette Exchange Coupon + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6139 + AegisName: Ticket_Leafcat + Name: Leaf Cat Exchange Coupon + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6140 + AegisName: Ticket_Dullahan + Name: Dullahan Exchange Coupon + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6141 + AegisName: Ticket_Shinobi + Name: Shinobi Exchange Coupon + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6142 + AegisName: Ticket_Golem + Name: Golem Exchange Coupon + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6143 + AegisName: Ticket_Civil_Servant + Name: Civil Servant Exchange Coupon + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6144 + AegisName: Heartbroken_Tears + Name: Regrettable Tears + Type: Etc + Buy: 1000 + Weight: 2 + Flags: + BuyingStore: true + - Id: 6145 + AegisName: Vulcan_Bullet + Name: Vulcan Bullet + Type: Etc + Buy: 10 + Weight: 2 + Flags: + BuyingStore: true + - Id: 6146 + AegisName: Magic_Gear_Fuel + Name: Magic Gear Fuel + Type: Etc + Buy: 300 + Weight: 30 + Flags: + BuyingStore: true + - Id: 6147 + AegisName: Liquid_Condensed_Bullet + Name: Liquid Condensed Bullet + Type: Etc + Buy: 100 + Weight: 3 + Flags: + BuyingStore: true + - Id: 6148 + AegisName: Chocolate_Of_Eternity + Name: Eternity Of Chocolate + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6149 + AegisName: Plain_Chocolate + Name: Simple Chocolate + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6150 + AegisName: Key_Of_The_Mansion + Name: Key of The Mansion + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6151 + AegisName: Peice_Of_Great_Bradium + Name: Giant Bradium Fragment + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6152 + AegisName: Glittering_Crystal + Name: Glittering Crystal + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6153 + AegisName: Special_Exchange_Coupon + Name: Special Exchange Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6154 + AegisName: Broken_Horn_Pipe + Name: Broken Horn Pipe + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6155 + AegisName: Coke_Membership_Card + Name: Member Card + Type: Etc + - Id: 6156 + AegisName: Approval_Report + Name: Approval Report + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6157 + AegisName: Poring_Ticket + Name: Poring Exchange Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6158 + AegisName: Drops_Ticket + Name: Drops Exchange Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6159 + AegisName: Poporing_Ticket + Name: Poporing Exchange Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6160 + AegisName: Lunatic_Ticket + Name: Lunatic Exchange Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6161 + AegisName: Picky_Ticket + Name: Picky Exchange Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6162 + AegisName: Pecopeco_Ticket + Name: Peco Peco Exchange Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6163 + AegisName: Savage_Baby_Ticket + Name: Savage Babe Exchange Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6164 + AegisName: Spore_Ticket + Name: Spore Exchange Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6165 + AegisName: Poison_Spore_Ticket + Name: Poison Spore Exchange Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6166 + AegisName: Chonchon_Ticket + Name: Chonchon Exchange Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6167 + AegisName: Steel_Chonchon_Ticket + Name: Steel Chonchon Exchange Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6168 + AegisName: Petit_Ticket + Name: Sky Petite Exchange Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6169 + AegisName: Deviruchi_Ticket + Name: Deviruchi Exchange Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6170 + AegisName: Isis_Ticket + Name: Isis Exchange Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6171 + AegisName: Smokie_Ticket + Name: Smokie Exchange Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6172 + AegisName: Dokebi_Ticket + Name: Dokebi Exchange Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6173 + AegisName: Desert_Wolf_B_Ticket + Name: Baby Desert Wolf Exchange Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6174 + AegisName: Yoyo_Ticket + Name: Yoyo Exchange Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6175 + AegisName: Sohee_Ticket + Name: Sohee Exchange Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6176 + AegisName: Rocker_Ticket + Name: Rocker Exchange Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6177 + AegisName: Hunter_Fly_Ticket + Name: Hunter Fly Exchange Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6178 + AegisName: Orc_Warrior_Ticket + Name: Orc Warrior Exchange Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6179 + AegisName: Bapho_Jr_Ticket + Name: Bapho Jr. Exchange Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6180 + AegisName: Munak_Ticket + Name: Munak Exchange Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6181 + AegisName: Bongun_Ticket + Name: Bongun Exchange Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6182 + AegisName: Goblin_Ticket + Name: Christmas Goblin Exchange Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6183 + AegisName: Hardtack_Ticket + Name: Rice Cake Exchange Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6184 + AegisName: Zherlthsh_Ticket + Name: Zherlthsh Exchange Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6185 + AegisName: Alice_Ticket + Name: Alice Exchange Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6186 + AegisName: Monkey_Wrench + Name: Monkey Wrench + Type: Etc + Buy: 500 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6187 + AegisName: Blank_Card + Name: Blank Card + Type: Etc + Buy: 20 + Weight: 10 + - Id: 6188 + AegisName: Slot_Coupon + Name: Slotting Advertisement + Type: Etc + Buy: 20 + Weight: 10 + - Id: 6189 + AegisName: Magic_Book_FB + Name: Old Spell Book (Fire Bolt) + Type: Etc + Flags: + BuyingStore: true + - Id: 6190 + AegisName: Magic_Book_CB + Name: Old Spell Book (Cold Bolt) + Type: Etc + Flags: + BuyingStore: true + - Id: 6191 + AegisName: Magic_Book_LB + Name: Old Spell Book (Lightening Bolt) + Type: Etc + Flags: + BuyingStore: true + - Id: 6192 + AegisName: Magic_Book_SG + Name: Old Spell Book (Storm Gust) + Type: Etc + Flags: + BuyingStore: true + - Id: 6193 + AegisName: Magic_Book_LOV + Name: Old Spell Book (Lord Of Vermilion) + Type: Etc + Flags: + BuyingStore: true + - Id: 6194 + AegisName: Magic_Book_MS + Name: Old Spell Book (Meteor Storm) + Type: Etc + Flags: + BuyingStore: true + - Id: 6195 + AegisName: Magic_Book_CM + Name: Old Spell Book (Comet) + Type: Etc + Flags: + BuyingStore: true + - Id: 6196 + AegisName: Magic_Book_TV + Name: Old Spell Book (Tetra Vortex) + Type: Etc + Flags: + BuyingStore: true + - Id: 6197 + AegisName: Magic_Book_TS + Name: Old Spell Book (Thunder Storm) + Type: Etc + Flags: + BuyingStore: true + - Id: 6198 + AegisName: Magic_Book_JT + Name: Old Spell Book (Jupitel Thunder) + Type: Etc + Flags: + BuyingStore: true + - Id: 6199 + AegisName: Magic_Book_WB + Name: Old Spell Book (Water Ball) + Type: Etc + Flags: + BuyingStore: true + - Id: 6200 + AegisName: Magic_Book_HD + Name: Old Spell Book (Heaven's Drive) + Type: Etc + Flags: + BuyingStore: true + - Id: 6201 + AegisName: Magic_Book_ES + Name: Old Spell Book (Earth Spike) + Type: Etc + Flags: + BuyingStore: true + - Id: 6202 + AegisName: Magic_Book_ES_ + Name: Old Spell Book (Earth Strain) + Type: Etc + Flags: + BuyingStore: true + - Id: 6203 + AegisName: Magic_Book_CL + Name: Old Spell Book (Chain Lightning) + Type: Etc + Flags: + BuyingStore: true + - Id: 6204 + AegisName: Magic_Book_CR + Name: Old Spell Book (Crimson Rock) + Type: Etc + Flags: + BuyingStore: true + - Id: 6205 + AegisName: Magic_Book_DL + Name: Old Spell Book (Drain Life) + Type: Etc + Flags: + BuyingStore: true + - Id: 6206 + AegisName: I_Love_You + Name: I Love You + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6207 + AegisName: Thank_You + Name: Thank You + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6208 + AegisName: I_Respect_You + Name: I Respect You + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6209 + AegisName: Glory_Of_Knights + Name: Knight's Honor + Type: Etc + - Id: 6210 + AegisName: Seed_Of_Horny_Plant + Name: Seed Of Thorny Plant + Type: Etc + Buy: 600 + Weight: 1 + Flags: + BuyingStore: true + - Id: 6211 + AegisName: Bloodsuck_Plant_Seed + Name: Bloodsuck Plant Seed + Type: Etc + Buy: 800 + Weight: 1 + Flags: + BuyingStore: true + - Id: 6212 + AegisName: Bomb_Mushroom_Spore + Name: Bomb Mushroom Spore + Type: Etc + Buy: 1000 + Weight: 1 + Flags: + BuyingStore: true + - Id: 6213 + AegisName: Explosive_Powder + Name: Explosive Powder + Type: Etc + Buy: 500 + Weight: 1 + Flags: + BuyingStore: true + - Id: 6214 + AegisName: Smoke_Powder + Name: Smoke Powder + Type: Etc + Buy: 500 + Weight: 1 + Flags: + BuyingStore: true + - Id: 6215 + AegisName: Tear_Gas + Name: Tear Gas + Type: Etc + Buy: 500 + Weight: 1 + Flags: + BuyingStore: true + - Id: 6216 + AegisName: Oil_Bottle + Name: Oil Bottle + Type: Etc + Buy: 1000 + Weight: 1 + Flags: + BuyingStore: true + - Id: 6217 + AegisName: Mandragora_Flowerpot + Name: Mandragora Flowerpot + Type: Etc + Buy: 2000 + Weight: 1 + Flags: + BuyingStore: true + - Id: 6218 + AegisName: Disin_Delivery_Box + Name: Delivery Daishin Box + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6219 + AegisName: Para_Team_Mark + Name: Eden Group Mark + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6220 + AegisName: Mysterious_Dyestuff + Name: Mysterious Dyestuff + Type: Etc + Weight: 10 + - Id: 6221 + AegisName: Mystic_Leaf_Cat_Ball + Name: Mystic Leaf Cat Ball + Type: Etc + - Id: 6222 + AegisName: Shining_Beads + Name: Shining Beads + Type: Etc + Buy: 20 + - Id: 6223 + AegisName: Carnium + Name: Carnium + Type: Etc + Buy: 2000 + Weight: 150 + Flags: + BuyingStore: true + - Id: 6224 + AegisName: Bradium + Name: Bradium + Type: Etc + Buy: 2000 + Weight: 150 + Flags: + BuyingStore: true + - Id: 6225 + AegisName: HD_Carnium + Name: HD Carnium + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6226 + AegisName: HD_Bradium + Name: HD Bradium + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6228 + AegisName: Guarantee_Weapon_9Up + Name: +9 Weapon Refine Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6229 + AegisName: Guarantee_Weapon_8Up + Name: +8 Weapon Refine Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6230 + AegisName: Guarantee_Weapon_7Up + Name: +7 Weapon Refine Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6231 + AegisName: Guarantee_Weapon_6Up + Name: +6 Weapon Refine Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6232 + AegisName: Guarantee_Armor_9Up + Name: +9 Armor Refine Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6233 + AegisName: Guarantee_Armor_8Up + Name: +8 Armor Refine Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6234 + AegisName: Guarantee_Armor_7Up + Name: +7 Armor Refine Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6235 + AegisName: Guarantee_Armor_6Up + Name: +6 Armor Refine Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6236 + AegisName: Blue_Card_7 + Name: Blue Card 7 + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6237 + AegisName: Guarana_Fruit + Name: Guarana Fruit + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6238 + AegisName: Guarantee_Weapon_11Up + Name: +11 Weapon Refine Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6239 + AegisName: Guarantee_Armor_11Up + Name: +11 Armor Refine Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6240 + AegisName: HD_Oridecon + Name: HD Oridecon + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6241 + AegisName: HD_Elunium + Name: HD Elunium + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6242 + AegisName: Midgard_Coin + Name: Midgard Coin + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoSell: true + - Id: 6243 + AegisName: Exchange_Coupon + Name: Exchange Coupon + Type: Etc + - Id: 6244 + AegisName: Gun_Powder + Name: Gun Powder + Type: Etc + Buy: 10 + Weight: 1 + Flags: + BuyingStore: true + - Id: 6245 + AegisName: Black_Powder + Name: Black Powder + Type: Etc + Buy: 100 + Weight: 1 + Flags: + BuyingStore: true + - Id: 6246 + AegisName: Yellow_Powder + Name: Yellow Powder + Type: Etc + Buy: 100 + Weight: 1 + Flags: + BuyingStore: true + - Id: 6247 + AegisName: White_Powder + Name: White Powder + Type: Etc + Buy: 100 + Weight: 1 + Flags: + BuyingStore: true + - Id: 6248 + AegisName: Melange_Pot + Name: Melange Pot + Type: Etc + Buy: 600 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6249 + AegisName: Savage_Meat + Name: Savage Meat + Type: Etc + Buy: 100 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6250 + AegisName: Cooking_Skewer + Name: Cooking Skewer + Type: Etc + Buy: 300 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6251 + AegisName: Black_Charcoal + Name: Black Charcoal + Type: Etc + Buy: 300 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6252 + AegisName: Wolf_Blood + Name: Blood Of Wolf + Type: Etc + Buy: 100 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6253 + AegisName: Cold_Ice + Name: Cold Ice + Type: Etc + Buy: 100 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6254 + AegisName: Beef_Head_Meat + Name: Beef Head + Type: Etc + Buy: 100 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6255 + AegisName: Large_Cookpot + Name: Large Cookpot + Type: Etc + Buy: 500 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6256 + AegisName: Ice_Fragment + Name: Ice Piece + Type: Etc + Buy: 100 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6257 + AegisName: Ice_Crystal + Name: Ice Crystal + Type: Etc + Buy: 100 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6258 + AegisName: Comodo_Tropic_Fruit + Name: Comodo Tropical Fruit + Type: Etc + Buy: 800 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6259 + AegisName: Drocera_Tentacle + Name: Drosera Tentacle + Type: Etc + Buy: 100 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6260 + AegisName: Petti_Tail + Name: Petite's Tail + Type: Etc + Buy: 100 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6261 + AegisName: Fine_Noodle + Name: Fine Noodles + Type: Etc + Buy: 500 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6262 + AegisName: Cool_Gravy + Name: Cool Gravy + Type: Etc + Buy: 400 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6263 + AegisName: Coconut_Fruit + Name: Coconut Fruit + Type: Etc + Buy: 100 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6264 + AegisName: Melon + Name: Melon + Type: Etc + Buy: 100 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6265 + AegisName: Pineapple + Name: Pineapple + Type: Etc + Buy: 100 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6266 + AegisName: Cheat_Key + Name: Key Of Deception + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6267 + AegisName: Virtual_Key + Name: Key Of Illusion + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6268 + AegisName: Mirth_Key + Name: Key Of Gaiety + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6269 + AegisName: Master_Brush + Name: A Master's Blush + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6270 + AegisName: Mins_Picture + Name: A Picture Of Minstrel Song + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6271 + AegisName: Mins_Receipt + Name: Receipt + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6272 + AegisName: Experiment_Seed + Name: Experiment Seed + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6273 + AegisName: Altered_Seed + Name: Seed For Experiment + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6274 + AegisName: Saint_Cloth_Piece + Name: A Piece Of Cloth Of A Saint + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6275 + AegisName: King_Shield + Name: Shield Of King + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6276 + AegisName: Clear_Reagent + Name: Clear Reagent + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6277 + AegisName: Red_Reagent + Name: Red Reagent + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6278 + AegisName: Black_Reagent + Name: Black Reagent + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6279 + AegisName: Apple_Bomb_CB + Name: Apple Bomb Guidebook + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6280 + AegisName: Pinepple_Bomb_CB + Name: Pineapple Bomb Guidebook + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6281 + AegisName: Coconut_Bomb_CB + Name: Coconut Fruit Bomb Guidebook + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6282 + AegisName: Melon_Bomb_CB + Name: Melon Bomb Guidebook + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6283 + AegisName: Banana_Bomb_CB + Name: Banana Bomb Guidebook + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6284 + AegisName: Plant_Genetic_Grow + Name: How To Grow Plant Genes + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6285 + AegisName: Quality_Potion_Book + Name: "Manual: How To Make High Quality Potion" + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6286 + AegisName: F_Max_Weight_Up_Scroll + Name: F Max Weight Up Scroll + Type: Etc + Weight: 10 + - Id: 6287 + AegisName: F_Clothing_Dye_Coupon + Name: Omni Clothing Dye + Type: Etc + - Id: 6288 + AegisName: F_Happy_Box + Name: F Happy Box + Type: Etc + Buy: 10 + - Id: 6289 + AegisName: F_Mysterious_Dyestuff + Name: F Mysterious Dyestuff + Type: Etc + Weight: 10 + - Id: 6290 + AegisName: F_New_Style_Coupon + Name: F New Style Coupon + Type: Etc + Weight: 10 + - Id: 6291 + AegisName: F_Enriched_Elunium + Name: F Enriched Elunium + Type: Etc + Buy: 2 + Weight: 10 + - Id: 6292 + AegisName: F_Enriched_Oridecon + Name: F Enriched Oridecon + Type: Etc + Buy: 2 + Weight: 10 + - Id: 6293 + AegisName: F_Token_Of_Siegfried + Name: F Token Of Siegfried + Type: Etc + Buy: 2 + Weight: 10 + - Id: 6294 + AegisName: F_Marriage_Covenant + Name: F Marriage Covenant + Type: Etc + Weight: 10 + - Id: 6295 + AegisName: F_Clothing_Dye_Coupon2 + Name: F Clothing Dye Coupon2 + Type: Etc + - Id: 6296 + AegisName: RF_Taining_Notice + Name: Training Notice + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6297 + AegisName: Bottle_To_Throw + Name: Throwing Bottle + Type: Etc + Buy: 300 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6298 + AegisName: Pumpkin_Head_Crushed + Name: Pumpkin Head Crushed + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6299 + AegisName: Worn_Cloth_Piece + Name: Worn Cloth Piece + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6300 + AegisName: J_7Draw + Name: event + Type: Etc + Buy: 20 + Weight: 10 + - Id: 6301 + AegisName: J_Semi_Draw + Name: event + Type: Etc + Buy: 20 + Weight: 10 + - Id: 6302 + AegisName: GM_Handwriting + Name: GM Handwriting + Type: Etc + Buy: 20004 + - Id: 6303 + AegisName: Changed_Hydra_Ball + Name: Changed Hydra Ball + Type: Etc + - Id: 6304 + AegisName: Sapa_Feat_Cert + Name: Proof Of Sapha's Honor + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6305 + AegisName: Frozen_Skin_Piece + Name: Frozen Piece Of Skin + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6306 + AegisName: Solid_Bloodstain + Name: Hard Bloodstain + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6307 + AegisName: Suspicious_Magic_Stone + Name: Cursed Magical Stone + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6308 + AegisName: Unidentified_Relic + Name: Unidentified Relic + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6309 + AegisName: E_Max_Weight_Up_Scroll + Name: E Max Weight Up Scroll + Type: Etc + Weight: 10 + - Id: 6310 + AegisName: E_Cloth_Dye_Coupon + Name: E Cloth Dye Coupon + Type: Etc + - Id: 6311 + AegisName: E_Happy_Box + Name: E Happy Box + Type: Etc + Buy: 10 + - Id: 6312 + AegisName: E_Mysterious_Dyestuff + Name: E Mysterious Dyestuff + Type: Etc + Weight: 10 + - Id: 6313 + AegisName: E_New_Style_Coupon + Name: E New Style Coupon + Type: Etc + Weight: 10 + - Id: 6314 + AegisName: E_Enriched_Elunium + Name: E Enriched Elunium + Type: Etc + Buy: 2 + Weight: 10 + - Id: 6315 + AegisName: E_Enriched_Oridecon + Name: E Enriched Oridecon + Type: Etc + Buy: 2 + Weight: 10 + - Id: 6316 + AegisName: E_Token_Of_Siegfried + Name: E Token Of Siegfried + Type: Etc + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6317 + AegisName: E_Marriage_Covenant + Name: E Marriage Covenant + Type: Etc + Weight: 10 + - Id: 6318 + AegisName: E_Cloth_Dye_Coupon2 + Name: E Cloth Dye Coupon2 + Type: Etc + - Id: 6319 + AegisName: Small_Bradium + Name: Small Bradium + Type: Etc + Buy: 324 + Weight: 10 + - Id: 6320 + AegisName: Premium_Reset_Stone + Name: Premium Reset Stone + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6321 + AegisName: Rakehorn_Helm + Name: Rakehorn Helm + Type: Etc + Buy: 822 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6322 + AegisName: Antler_Helm + Name: Antler Helmet + Type: Etc + Buy: 800 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6323 + AegisName: Twinhorn_Helm + Name: Two-Horned Helmet + Type: Etc + Buy: 728 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6324 + AegisName: Singlehorn_Helm + Name: Single Horned Helmet + Type: Etc + Buy: 702 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6325 + AegisName: White_Spider_Limb + Name: White Spider Limb + Type: Etc + Buy: 1004 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6326 + AegisName: Queen_Wing_Piece + Name: Queen Wing Piece + Type: Etc + Buy: 1630 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6327 + AegisName: Limited_High_Density_Bradium + Name: (Limited)High Density Bradium + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6328 + AegisName: Calender_January + Name: Calender January + Type: Etc + Buy: 20 + - Id: 6329 + AegisName: Calender_February + Name: Calender February + Type: Etc + Buy: 20 + - Id: 6330 + AegisName: Calender_March + Name: Calender March + Type: Etc + Buy: 20 + - Id: 6331 + AegisName: Calender_April + Name: Calender April + Type: Etc + Buy: 20 + - Id: 6332 + AegisName: Calender_May + Name: Calender May + Type: Etc + Buy: 20 + - Id: 6333 + AegisName: Calender_June + Name: Calender June + Type: Etc + Buy: 20 + - Id: 6334 + AegisName: Calender_July + Name: Calender July + Type: Etc + Buy: 20 + - Id: 6335 + AegisName: Calender_August + Name: Calender August + Type: Etc + Buy: 20 + - Id: 6336 + AegisName: Calender_September + Name: Calender September + Type: Etc + Buy: 20 + - Id: 6337 + AegisName: Calender_October + Name: Calender October + Type: Etc + Buy: 20 + - Id: 6338 + AegisName: Calender_November + Name: Calender November + Type: Etc + Buy: 20 + - Id: 6339 + AegisName: Calender_December + Name: Calender December + Type: Etc + Buy: 20 + - Id: 6340 + AegisName: Fade_Notation_Green + Name: Fade Notation Green + Type: Etc + Weight: 10 + - Id: 6341 + AegisName: Fade_Notation_Red + Name: Fade Notation Red + Type: Etc + Weight: 10 + - Id: 6342 + AegisName: Fade_Notation_Purple + Name: Fade Notation Purple + Type: Etc + Weight: 10 + - Id: 6343 + AegisName: Fade_Notation_Blue + Name: Fade Notation Blue + Type: Etc + Weight: 10 + - Id: 6344 + AegisName: Muscle_Story + Name: Muscle Story + Type: Etc + - Id: 6345 + AegisName: Love_Ball + Name: Love Lump + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6346 + AegisName: Seagate_Mark + Name: Seagate Mark + Type: Etc + - Id: 6347 + AegisName: Bless_Word_Paper1 + Name: Bless Word Paper + Type: Etc + Buy: 4020 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6348 + AegisName: Bless_Word_Paper2 + Name: Bless Word Paper + Type: Etc + Buy: 4020 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6349 + AegisName: Bless_Word_Paper3 + Name: Bless Word Paper + Type: Etc + Buy: 4020 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6350 + AegisName: Bless_Word_Paper4 + Name: Bless Word Paper + Type: Etc + Buy: 4020 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6351 + AegisName: Bless_Word_Paper5 + Name: Bless Word Paper + Type: Etc + Buy: 4020 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6352 + AegisName: Bless_Word_Paper6 + Name: Bless Word Paper + Type: Etc + Buy: 4020 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6353 + AegisName: Bless_Word_Paper7 + Name: Bless Word Paper + Type: Etc + Buy: 4020 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6354 + AegisName: Bless_Word_Paper8 + Name: Bless Word Paper + Type: Etc + Buy: 4020 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6355 + AegisName: Bless_Word_Paper9 + Name: Bless Word Paper + Type: Etc + Buy: 4020 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6356 + AegisName: Bless_Word_Paper10 + Name: Bless Word Paper + Type: Etc + Buy: 4020 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6357 + AegisName: Fortune_Cookie_Fail + Name: Fortune Cookie Fail + Type: Etc + Buy: 4020 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6358 + AegisName: Free_Cash_Coupon + Name: Free Cash Coupon + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6359 + AegisName: Guidebook_Exchange + Name: Guidebook Exchange + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6360 + AegisName: Scarlet_Pts + Name: Scarlet Point + Type: Etc + Buy: 100 + Weight: 5 + Flags: + BuyingStore: true + - Id: 6361 + AegisName: Indigo_Pts + Name: Indigo Point + Type: Etc + Buy: 100 + Weight: 5 + Flags: + BuyingStore: true + - Id: 6362 + AegisName: Yellow_Wish_Pts + Name: Yellow Wish Point + Type: Etc + Buy: 100 + Weight: 5 + Flags: + BuyingStore: true + - Id: 6363 + AegisName: Lime_Green_Pts + Name: Lime Green Point + Type: Etc + Buy: 100 + Weight: 5 + Flags: + BuyingStore: true + - Id: 6364 + AegisName: Woe_Coin + Name: GvG Coin + Type: Etc + - Id: 6365 + AegisName: Arena_Coin + Name: Arena Coin + Type: Etc + - Id: 6366 + AegisName: Turbo_Track_Coin + Name: Turbo Track Coin + Type: Etc + - Id: 6367 + AegisName: Kafra_Coin + Name: Kafra Coin + Type: Etc + - Id: 6368 + AegisName: Endless_Coin + Name: Endless Tower Coin + Type: Etc + - Id: 6369 + AegisName: Amatsu_Bead_A + Name: Amatsu Bead A + Type: Etc + - Id: 6370 + AegisName: Amatsu_Bead_Ma + Name: Amatsu Bead Ma + Type: Etc + - Id: 6371 + AegisName: Amatsu_Bead_Tsu + Name: Amatsu Bead Tsu + Type: Etc + - Id: 6372 + AegisName: Amatsu_Bead_Jam + Name: Amatsu Bead Jam + Type: Etc + - Id: 6373 + AegisName: Amatsu_Bead_Bo + Name: Amatsu Bead Bo + Type: Etc + - Id: 6374 + AegisName: Amatsu_Bead_Ree + Name: Amatsu Bead Ree + Type: Etc + - Id: 6375 + AegisName: Amatsu_Bead_! + Name: Amatsu Bead ! + Type: Etc + - Id: 6376 + AegisName: KVM_Badge + Name: KVM Badge + Type: Etc + - Id: 6377 + AegisName: Buy_Market_Permit + Name: Buy Market Permit + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6378 + AegisName: Winning_Mark + Name: Winning Mark + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6379 + AegisName: Card_Coin + Name: Card Coin + Type: Etc + Buy: 20 + Weight: 10 + - Id: 6380 + AegisName: Mora_Coin + Name: Mora Coin + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6381 + AegisName: Field_Shovel + Name: Field Shovel + Type: Etc + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6382 + AegisName: Urn + Name: Urn + Type: Etc + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6383 + AegisName: Clue_Of_Lope + Name: Lope's Clue + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6384 + AegisName: Ring_Of_Lope + Name: Lope's Ring + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6385 + AegisName: Research_Tool_Bag + Name: Research Tool Bag + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6386 + AegisName: Bathtub_R_Sample + Name: Bath Water Sample + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6387 + AegisName: Teeth_Sample + Name: Teeth Sample + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6388 + AegisName: Scale_Sample + Name: Scale Sample + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6389 + AegisName: Puddle_R_Sample + Name: Sample Of Puddle Research + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6390 + AegisName: Small_Pocket + Name: Small Pocket + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6391 + AegisName: Splendid_Supply_Kit + Name: Splendid Supply Kit + Type: Etc + Buy: 20 + Weight: 2000 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6392 + AegisName: Bradium_Box + Name: Bradium Box + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6393 + AegisName: Round_Feather + Name: Round Feather + Type: Etc + Buy: 525 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6394 + AegisName: Golden_Feather + Name: Golden Feather + Type: Etc + Buy: 487 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6395 + AegisName: Angel_Magic_Power + Name: Angel Magic Powder + Type: Etc + Buy: 615 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6396 + AegisName: Auger_Of_Spirit + Name: Auger Of Spirit + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6397 + AegisName: PR_Team_Ticket + Name: PR Team Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6398 + AegisName: Develop_Team_Ticket + Name: Develop Team Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6399 + AegisName: Marketing_Team_Ticket + Name: Marketing Team Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6400 + AegisName: Operating_Team_Ticket + Name: Operating Team Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6401 + AegisName: Palm_O + Name: Palm Oil + Type: Etc + Weight: 500 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6402 + AegisName: Oil_Palm_F + Name: Palm Oil Fruit + Type: Etc + Weight: 50 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6403 + AegisName: Comodo_L + Name: Comodo Leather + Type: Etc + Buy: 5 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6404 + AegisName: Caress_H + Name: Keris Hilt + Type: Etc + Weight: 100 + Flags: + BuyingStore: true + - Id: 6405 + AegisName: Cendrawasih_F + Name: Cendrawasih Feather + Type: Etc + Buy: 3 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6406 + AegisName: Cendrawasih_SF + Name: Shining Cendrawasih Feather + Type: Etc + Buy: 10 + Weight: 100 + - Id: 6407 + AegisName: Sang_Stone_Fragment + Name: Raw Crystal Stone Fragment + Type: Etc + Buy: 10 + Weight: 10 + - Id: 6408 + AegisName: Sang_Stone + Name: Raw Crystal Stone + Type: Etc + Buy: 10 + Weight: 10 + - Id: 6409 + AegisName: Sang_Stone_Mass + Name: Raw Crystal Stone Mass + Type: Etc + Buy: 20 + Weight: 10 + - Id: 6410 + AegisName: Idul_Fitri_Card + Name: Idul Fitri Card + Type: Etc + Buy: 10 + Weight: 10 + - Id: 6411 + AegisName: Ripe_Watermelon + Name: Ripe Watermelon + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6412 + AegisName: Special_Medal + Name: Special Medal + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6413 + AegisName: New_Insurance + Name: New Insurance + Type: Etc + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6414 + AegisName: Raganta_Card + Name: Ragunta Card + Type: Etc + Buy: 20 + Weight: 10 + - Id: 6415 + AegisName: Strange_Embryo + Name: Strange Embryo + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6416 + AegisName: Pet_Exchange + Name: Pet Exchange + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6417 + AegisName: Silvervine + Name: Silvervine Fruit + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6418 + AegisName: Agrade_Coin + Name: A Grade Coin + Type: Etc + Buy: 20 + - Id: 6419 + AegisName: Bgrade_Coin + Name: B Grade Coin + Type: Etc + Buy: 20 + - Id: 6420 + AegisName: Cgrade_Coin + Name: C Grade Coin + Type: Etc + Buy: 20 + - Id: 6421 + AegisName: Dgrade_Coin + Name: D Grade Coin + Type: Etc + Buy: 20 + - Id: 6422 + AegisName: Egrade_Coin + Name: E Grade Coin + Type: Etc + Buy: 20 + - Id: 6423 + AegisName: Anger_Seagod + Name: Sea God's Wrath + Type: Etc + Buy: 20 + Flags: + BuyingStore: true + - Id: 6424 + AegisName: Halloween_Fragment + Name: Spirit Piece + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6425 + AegisName: Halloween_Certificate + Name: Halloween Certificate + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6426 + AegisName: Bad_Can + Name: Bad Canned Food + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6427 + AegisName: Bad_Can_Sack + Name: Bad Canned Food Sack + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6428 + AegisName: Bravery_Card_A + Name: Adventure Card A + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6429 + AegisName: Bravery_Card_B + Name: Adventure Card B + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6430 + AegisName: Picture_Piece + Name: Picture Fragment + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6431 + AegisName: Bucket + Name: Pail + Type: Etc + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6432 + AegisName: Full_Bucket + Name: Full Pail + Type: Etc + Weight: 3000 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6433 + AegisName: Clean_Brush + Name: Cleaning Brush + Type: Etc + Weight: 300 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6434 + AegisName: Fix_Kit + Name: Fix Kit + Type: Etc + Weight: 1000 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6435 + AegisName: Fresh_Fruit + Name: Fresh Fruit + Type: Etc + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6436 + AegisName: Ptotection_Seagod + Name: Sea God's Call + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6437 + AegisName: Scaraba_Perfume + Name: Scaraba Perfume + Type: Etc + - Id: 6438 + AegisName: Unbreakable_Weap + Name: Unbreakable Weapon + Type: Etc + Weight: 10 + - Id: 6439 + AegisName: Unbreakable_Def + Name: Unbreakable Armor + Type: Etc + Weight: 10 + - Id: 6440 + AegisName: General_Lubricant + Name: General Lubrication + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6441 + AegisName: High_RankLubricant + Name: Advanced Lubrication + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6442 + AegisName: Octopus_Hunt_Stick + Name: Octopus Hunting Skewer + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6443 + AegisName: Sillit_Pong_Bottle + Name: Sillit Pong Bottle + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6444 + AegisName: Emperium_G + Name: Emperium G + Type: Etc + Buy: 2 + Weight: 1000 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6445 + AegisName: Blue_Card_X + Name: Blue Card X + Type: Etc + Weight: 10 + - Id: 6446 + AegisName: Green_Paper + Name: Green Paper + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6447 + AegisName: Red_Paper + Name: Red Paper + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6448 + AegisName: White_Paper + Name: White Paper + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6449 + AegisName: Casual_Diary + Name: Casual Diary + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6450 + AegisName: Honest_Diary + Name: Honest Diary + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6451 + AegisName: Unknown_Fish + Name: Unknown Fish + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6452 + AegisName: Etoile_Ring + Name: Etoile Ring + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6453 + AegisName: Undelivered_Gift + Name: Undelivered Gift + Type: Etc + Buy: 2 + Weight: 10 + - Id: 6454 + AegisName: Santa_Bag + Name: Santa Bag + Type: Etc + Buy: 2 + Weight: 10 + - Id: 6455 + AegisName: Tiny_Ticket + Name: Tiny Ticket + Type: Etc + Buy: 20 + - Id: 6456 + AegisName: Guarantee_Weapon_5Up + Name: +5 Weapon Refine Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6457 + AegisName: Guarantee_Armor_5Up + Name: +5 Armor Refine Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6459 + AegisName: Jae_Sinho_Unpo + Name: Jae Sinho Unpo + Type: Etc + - Id: 6460 + AegisName: Jae_Sinho_Undo + Name: Jae Sinho Undo + Type: Etc + - Id: 6461 + AegisName: Mimong_Sungjin + Name: Mimong Sungjin + Type: Etc + - Id: 6462 + AegisName: Gilsang_Yeoui + Name: Gilsang Yeoui + Type: Etc + - Id: 6463 + AegisName: Sin_Sun_Jeonsul + Name: Sin Sun Jeonsul + Type: Etc + - Id: 6464 + AegisName: Hate_Bundle + Name: Hate Crate + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6465 + AegisName: Guard_Coin + Name: Guard Coin + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6466 + AegisName: Clean_Water + Name: Clean Water + Type: Etc + Buy: 20 + Weight: 10 + - Id: 6467 + AegisName: Perfume + Name: Perfume + Type: Etc + Buy: 20 + Weight: 10 + - Id: 6468 + AegisName: Thai_Perfume + Name: Thai Perfume + Type: Etc + Buy: 20 + Weight: 10 + - Id: 6469 + AegisName: Will_Of_Warrior + Name: Warrior's Will + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6470 + AegisName: Blood_Thirst + Name: Blood Thirst + Type: Etc + Buy: 1200 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6471 + AegisName: Goast_Chill + Name: Chills Of Death + Type: Etc + Buy: 1600 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6472 + AegisName: Holy_Mom_Blaze + Name: Holy Mom Blaze + Type: Etc + - Id: 6473 + AegisName: Amatsu_Orb01 + Name: Amatsu Orb01 + Type: Etc + - Id: 6474 + AegisName: Amatsu_Orb02 + Name: Amatsu Orb02 + Type: Etc + - Id: 6475 + AegisName: Amatsu_Orb03 + Name: Amatsu Orb03 + Type: Etc + - Id: 6476 + AegisName: Amatsu_Orb04 + Name: Amatsu Orb04 + Type: Etc + - Id: 6477 + AegisName: Amatsu_Orb05 + Name: Amatsu Orb05 + Type: Etc + - Id: 6478 + AegisName: Amatsu_Orb06 + Name: Amatsu Orb06 + Type: Etc + - Id: 6479 + AegisName: Amatsu_Orb07 + Name: Amatsu Orb07 + Type: Etc + - Id: 6480 + AegisName: Event_coin + Name: Poring Coin + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6481 + AegisName: Holy_Rock_Piece + Name: Holy Rock Piece + Type: Etc + - Id: 6482 + AegisName: Ancient_City_Key + Name: Ancient City Key + Type: Etc + - Id: 6483 + AegisName: Dream_Scroll + Name: Dream Scroll + Type: Etc + - Id: 6484 + AegisName: Enchant_Book + Name: Enchant Book + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6485 + AegisName: BlueCard_2 + Name: Blue 2 Card + Type: Etc + Weight: 10 + - Id: 6486 + AegisName: BlueCard_0 + Name: Blue 0 Card + Type: Etc + Weight: 10 + - Id: 6487 + AegisName: BlueCard_1 + Name: Blue 1 Card + Type: Etc + Weight: 10 + - Id: 6488 + AegisName: Thanks_Invest_Ticket + Name: Thanks Invest Ticket + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6489 + AegisName: Cats_Invest_Certif + Name: Cats Invest Certificate + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6490 + AegisName: Magic_Clay_Fragment + Name: Magic Clay Fragment + Type: Etc + Weight: 10 + - Id: 6491 + AegisName: Magic_Clay + Name: Magic Clay + Type: Etc + Weight: 10 + - Id: 6492 + AegisName: Magic_Clay_Lump + Name: Magic Clay Lump + Type: Etc + Weight: 10 + - Id: 6493 + AegisName: Makibishi + Name: Makibishi + Type: Etc + Buy: 30 + Weight: 1 + Flags: + BuyingStore: true + - Id: 6494 + AegisName: Kafra_Coin2 + Name: Kafra Coin + Type: Etc + - Id: 6495 + AegisName: Para_Logro_Badge + Name: Eden Merit Badge + Type: Etc + - Id: 6496 + AegisName: Tikbalang_Thick_Spine + Name: Tikbalang's Thick Spine + Type: Etc + Buy: 300 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6497 + AegisName: Lesser_Agimat + Name: Lesser Agimat + Type: Etc + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + - Id: 6498 + AegisName: Jejellopy + Name: Jejellopy + Type: Etc + Buy: 200 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6499 + AegisName: Ancient_Grudge + Name: Ancient Grudge + Type: Etc + Buy: 500 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6500 + AegisName: Sharp_Bamboo + Name: Sharpened Bamboo + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6501 + AegisName: Salt_Bag + Name: Salt Bag + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6502 + AegisName: Silver_Cross + Name: The Cross + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6503 + AegisName: Soul_Protection + Name: Spiritual Protection + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6504 + AegisName: Cast_Iron_Caldron + Name: Cast-Iron Caldron + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6505 + AegisName: Purified_Bone + Name: Purified Spirit Bone + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6506 + AegisName: Memorial_Bouquet + Name: Offering Bouquet + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6507 + AegisName: Evil_Bone + Name: Evil Spirit Bone + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6508 + AegisName: Silver_Bracelet + Name: Silver Bracelet + Type: Etc + Buy: 300 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6509 + AegisName: Mysterious_Flower + Name: Mysterious Flower + Type: Etc + Buy: 500 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6510 + AegisName: Elegant_Flower + Name: Elegant Flower + Type: Etc + Buy: 300 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6511 + AegisName: Beautiful_Flower + Name: Beautiful Flower + Type: Etc + Buy: 300 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6512 + AegisName: Charm_Fire + Name: Fire Amulet + Type: Etc + Buy: 100 + Weight: 1 + Flags: + BuyingStore: true + - Id: 6513 + AegisName: Charm_Ice + Name: Ice Amulet + Type: Etc + Buy: 100 + Weight: 1 + Flags: + BuyingStore: true + - Id: 6514 + AegisName: Charm_Wind + Name: Wind Amulet + Type: Etc + Buy: 100 + Weight: 1 + Flags: + BuyingStore: true + - Id: 6515 + AegisName: Charm_Earth + Name: Earth Amulet + Type: Etc + Buy: 100 + Weight: 1 + Flags: + BuyingStore: true + - Id: 6516 + AegisName: Bakonawa_Doll + Name: Bakonawa Doll + Type: Etc + Buy: 3000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6517 + AegisName: Bangungot_Doll + Name: Bangungot Doll + Type: Etc + Buy: 3000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6518 + AegisName: Buwaya_Doll + Name: Buwaya Doll + Type: Etc + Buy: 3000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6519 + AegisName: Collected_Samples + Name: Collected Sample + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6520 + AegisName: Lost_Belongings + Name: Lost Belongings + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6521 + AegisName: Royal_Certificate + Name: Royal Certificate + Type: Etc + Flags: + BuyingStore: true + - Id: 6522 + AegisName: Royal_Certificate_ + Name: Royal Certificate + Type: Etc + Flags: + BuyingStore: true + - Id: 6523 + AegisName: Bakonawa_Spirit_Piece + Name: Piece of Bakonawa's Spirit + Type: Etc + Buy: 3000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6524 + AegisName: Bangungot_Spirit_Piece + Name: Piece of Bangungot's Spirit + Type: Etc + Buy: 3000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6525 + AegisName: Buwaya_Spirit_Piece + Name: Piece of Buwaya's Spirit + Type: Etc + Buy: 3000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6526 + AegisName: BlueCard_Happy + Name: BlueCard Happy + Type: Etc + Weight: 10 + - Id: 6527 + AegisName: BlueCard_Enjoy + Name: BlueCard Enjoy + Type: Etc + Weight: 10 + - Id: 6528 + AegisName: BlueCard_Light + Name: BlueCard Light + Type: Etc + Weight: 10 + - Id: 6529 + AegisName: BlueCard_Mid + Name: BlueCard Mid + Type: Etc + Weight: 10 + - Id: 6530 + AegisName: BlueCard_Fall + Name: BlueCard Fall + Type: Etc + Weight: 10 + - Id: 6531 + AegisName: Royal_Certificate__ + Name: Royal Certificate + Type: Etc + Flags: + BuyingStore: true + - Id: 6532 + AegisName: Honey_Songpyun + Name: Honey Songpyun + Type: Etc + Weight: 10 + - Id: 6533 + AegisName: Torn_Document + Name: Torn Document + Type: Etc + Buy: 2 + Weight: 500 + - Id: 6534 + AegisName: Fruit_Sundae + Name: Fruit Sundae + Type: Etc + Buy: 2 + Weight: 50 + - Id: 6535 + AegisName: Red_Cloth + Name: Red Cloth + Type: Etc + Weight: 10 + - Id: 6536 + AegisName: Star_Decor + Name: Star Decor + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6537 + AegisName: Sky_Medal + Name: Sky Medal + Type: Etc + Buy: 20 + - Id: 6538 + AegisName: Real_Blank_Card + Name: Real Blank Card + Type: Etc + Buy: 20 + - Id: 6539 + AegisName: Old_Left_Lapine + Name: Old Left Lapine + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6540 + AegisName: Golden_Leaf + Name: Golden Leaf + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6541 + AegisName: Avant_Research_Data + Name: Avant Research Data + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6542 + AegisName: Star_Shape_Mushroom + Name: Star Shape Mushroom + Type: Etc + Buy: 20 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6543 + AegisName: Lv110_Achieved_Coin + Name: Lv110 Achieved Coin + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6544 + AegisName: Lv120_Achieved_Coin + Name: Lv120 Achieved Coin + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6545 + AegisName: Firm_Hair + Name: Firm Hair + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6546 + AegisName: Younger_Bro_Letter + Name: Younger Bro Letter + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6547 + AegisName: Stained_Research_Book + Name: Stained Research Book + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6548 + AegisName: Piece_Of_Lapine_Wing + Name: Piece Of Lapine Wing + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6549 + AegisName: Courtesy_Ticket + Name: Courtesy Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6550 + AegisName: Brownie_Ticket + Name: Brownie Ticket + Type: Etc + Buy: 20 + - Id: 6551 + AegisName: RWC_Spirit_Auger + Name: RWC Spirit Auger + Type: Etc + Weight: 10 + - Id: 6552 + AegisName: Mail_Package + Name: Mail Package + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6553 + AegisName: Leaf_Made_Wood + Name: Leaf Made Wood + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6554 + AegisName: Seed_Box + Name: Seed Box + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6555 + AegisName: Birthday_Candle + Name: Birthday Candle + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6556 + AegisName: Nespresso_Ticket + Name: Nespresso Ticket + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6557 + AegisName: Fancy_Fairy_Wing + Name: Fancy Fairy Wing + Type: Etc + Buy: 2350 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6558 + AegisName: Pile_Of_Acorn + Name: Pile Of Acorn + Type: Etc + Buy: 1500 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6559 + AegisName: Eye_Drops + Name: Eye Drops + Type: Etc + Buy: 1780 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6560 + AegisName: Leaf_Bookmark + Name: Leaf Bookmark + Type: Etc + Buy: 3000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6561 + AegisName: Dustball + Name: Dustball + Type: Etc + Buy: 2000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6562 + AegisName: Tiny_Mouse_Tail + Name: Tiny Mouse Tail + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6563 + AegisName: Weeds + Name: Weeds + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6564 + AegisName: Captive_Hatchling + Name: Captive Hatchling + Type: Etc + Weight: 10 + - Id: 6565 + AegisName: Racy_Spice + Name: Racy Spice + Type: Etc + Buy: 20 + Weight: 10 + - Id: 6566 + AegisName: Cacao99_Recipe + Name: Cacao99 Recipe + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6567 + AegisName: Choco_Drink_Recipe + Name: Choco Drink Recipe + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6581 + AegisName: Holy_Amulet + Name: Holy Amulet + Type: Etc + Buy: 20 + Weight: 10 + - Id: 6583 + AegisName: 3rd_Test_Pass + Name: 3rd Test Pass + Type: Etc + - Id: 6592 + AegisName: Small_Wooden_Chest + Name: Small Wooden Chest + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 6593 + AegisName: Cryptura_Hair_Coupon + Name: Cryptura Hair Coupon + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6594 + AegisName: Magic_Bronze_Bullion + Name: Magic Bronze Bullion + Type: Etc + Weight: 1000 + Flags: + BuyingStore: true + - Id: 6595 + AegisName: Hammer_Of_Velund + Name: Hammer Of Velund + Type: Etc + Weight: 500 + Flags: + BuyingStore: true + - Id: 6596 + AegisName: Anvil_Of_Velund + Name: Anvil Of Velund + Type: Etc + Weight: 2000 + Flags: + BuyingStore: true + - Id: 6597 + AegisName: Bracelet_Of_Velund + Name: Bracelet Of Velund + Type: Etc + Weight: 500 + Flags: + BuyingStore: true + - Id: 6598 + AegisName: Rib_Of_Jormungand + Name: Rib Of Jormungand + Type: Etc + Weight: 10000 + Flags: + BuyingStore: true + - Id: 6599 + AegisName: Spirit_Of_Hugin + Name: Spirit Of Hugin + Type: Etc + Weight: 100 + Flags: + BuyingStore: true + - Id: 6600 + AegisName: Spirit_Of_Munin + Name: Spirit Of Munin + Type: Etc + Weight: 100 + Flags: + BuyingStore: true + - Id: 6601 + AegisName: Chisel_Of_Giant + Name: Chisel Of Giant + Type: Etc + Weight: 1000 + Flags: + BuyingStore: true + - Id: 6602 + AegisName: Secret_Of_Rune + Name: Secret Of Rune + Type: Etc + Weight: 100 + Flags: + BuyingStore: true + - Id: 6603 + AegisName: Skin_Of_Hraesvelg + Name: Skin Of Hraesvelg + Type: Etc + Weight: 500 + Flags: + BuyingStore: true + - Id: 6604 + AegisName: Essence_Rune_Magic + Name: Essence Rune Magic + Type: Etc + Flags: + BuyingStore: true + - Id: 6605 + AegisName: Muspellium + Name: Muspellium + Type: Etc + Flags: + BuyingStore: true + - Id: 6606 + AegisName: P_Cart_C + Name: Cute Cart Remodel Coupon + Type: Etc + Weight: 10 + - Id: 6607 + AegisName: Temporal_Crystal + Name: Temporal Crystal + Type: Etc + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6608 + AegisName: Coagulated_Spell + Name: Coagulated Spell + Type: Etc + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6609 + AegisName: Glast_Decayed_Nail + Name: Glast Decayed Nail + Type: Etc + Buy: 2800 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6610 + AegisName: Glast_Horrendous_Mouth + Name: Glast Horrendous Mouth + Type: Etc + Buy: 3200 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6611 + AegisName: Colorful_Key + Name: Colorful Key + Type: Etc + Buy: 50000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6612 + AegisName: Gold_Coin_Basket + Name: Gold Coin Basket + Type: Etc + Buy: 300000 + Weight: 200 + Flags: + BuyingStore: true + - Id: 6613 + AegisName: Colorful_Brooch + Name: Colorful Brooch + Type: Etc + Buy: 100000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6615 + AegisName: Siege_Guild_Coin + Name: Siege Guild Coin + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 6616 + AegisName: Lmtd_Manny_Card + Name: Limited Manny Card + Type: Etc + Buy: 20 + Weight: 10 + - Id: 6617 + AegisName: Lmtd_Sid_Card + Name: Limited Sid Card + Type: Etc + Buy: 20 + Weight: 10 + - Id: 6618 + AegisName: Lmtd_Diego_Card + Name: Limited Diego Card + Type: Etc + Buy: 20 + Weight: 10 + - Id: 6619 + AegisName: Lmtd_Scrat_Card + Name: Limited Scrat Card + Type: Etc + Buy: 20 + Weight: 10 + - Id: 6623 + AegisName: Rough_Energy_Crystal + Name: Rough Energy Crystal + Type: Etc + Weight: 10 + - Id: 6624 + AegisName: Purified_Energy_Crystal + Name: Purified Energy Crystal + Type: Etc + Weight: 10 + - Id: 6625 + AegisName: High_Purity_Energy_Xtal + Name: High Energy Crystal + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6635 + AegisName: Blacksmith_Blessing + Name: Blacksmith Blessing + Type: Etc + Buy: 20 + Flags: + BuyingStore: true + Trade: + Override: 100 + NoDrop: true + - Id: 6636 + AegisName: STRStone_Top + Name: STR Stone (Upper) + Type: Etc + Buy: 10 + Weight: 100 + - Id: 6637 + AegisName: INTStone_Top + Name: INT Stone (Upper) + Type: Etc + Buy: 10 + Weight: 100 + - Id: 6638 + AegisName: AGIStone_Top + Name: AGI Stone (Upper) + Type: Etc + Buy: 10 + Weight: 100 + - Id: 6639 + AegisName: DEXStone_Top + Name: DEX Stone (Upper) + Type: Etc + Buy: 10 + Weight: 100 + - Id: 6640 + AegisName: VITStone_Top + Name: VIT Stone (Upper) + Type: Etc + Buy: 10 + Weight: 100 + - Id: 6641 + AegisName: LUKStone_Top + Name: LUK Stone (Upper) + Type: Etc + Buy: 10 + Weight: 100 + - Id: 6642 + AegisName: ATKStone_Middle + Name: ATK Stone (Middle) + Type: Etc + Buy: 10 + Weight: 100 + - Id: 6643 + AegisName: MATKStone_Middle + Name: MATK Stone (Middle) + Type: Etc + Buy: 10 + Weight: 100 + - Id: 6644 + AegisName: HITStone_Bottom + Name: HIT Stone (Lower) + Type: Etc + Buy: 10 + Weight: 100 + - Id: 6645 + AegisName: FLEEStone_Bottom + Name: FLEE Stone (Lower) + Type: Etc + Buy: 10 + Weight: 100 + - Id: 6669 + AegisName: Jade_Leaf + Name: Emerald Leaf + Type: Etc + Weight: 10 + - Id: 6697 + AegisName: Costumes_Exchange_Coupons + Name: Costumes Exchange Coupons + Type: Etc + Buy: 10 + Weight: 10 + - Id: 6646 + AegisName: Poring_Badge + Name: Poring Badge + Type: Etc + - Id: 6648 + AegisName: Shabby_Crown + Name: Old Crown + Type: Etc + Buy: 10 + Weight: 10 + - Id: 6649 + AegisName: Broken_Horn + Name: Broken Horn + Type: Etc + Buy: 10 + Weight: 10 + - Id: 6650 + AegisName: Shabby_Ring + Name: Old Ring + Type: Etc + Buy: 10 + Weight: 10 + - Id: 6651 + AegisName: Rusty_Bracelet + Name: Rusty Bracalet + Type: Etc + Buy: 10 + Weight: 10 + - Id: 6652 + AegisName: Old_Photo_Album + Name: Old Photo Album + Type: Etc + Buy: 10 + Weight: 10 + - Id: 6653 + AegisName: Shabby_Pill + Name: Old Pill + Type: Etc + Buy: 10 + Weight: 10 + - Id: 6654 + AegisName: Needle_And_Thread + Name: Needle And Thread + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6655 + AegisName: Firm_Pumpkin + Name: Firm Pumpkin + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6656 + AegisName: Goast_Free_Charm + Name: Goast Free Charm + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6657 + AegisName: Memory_Of_Jack + Name: Memory Of Jack + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6658 + AegisName: Halloween_Coin + Name: Halloween Coin + Type: Etc + - Id: 6665 + AegisName: RWC_Inicializer + Name: RWC Inicializer + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + - Id: 6671 + AegisName: Geffen_Coin_Magic_Tournament + Name: Geffen Coin Magic Tournament + Type: Etc + Buy: 10 + Flags: + BuyingStore: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6672 + AegisName: Shard_of_Gray + Name: Shard of Gray + Type: Etc + Buy: 10 + Flags: + BuyingStore: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6673 + AegisName: Bossnia_Tickets + Name: Bossnia Tickets + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6674 + AegisName: GM_Coin + Name: GM Coin + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6681 + AegisName: XMAS_Cookie + Name: Christmas Cookie + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6682 + AegisName: Bag_Of_Selling_Goods + Name: Bag Of Selling Goods + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6683 + AegisName: Dried_Flower + Name: Dried Flower + Type: Etc + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6684 + AegisName: TokenOfHero + Name: Token Of Hero + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6685 + AegisName: Morocc_Certification + Name: Morocc Certification + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6686 + AegisName: Brick + Name: Brick + Type: Etc + Buy: 10 + Weight: 2000 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6687 + AegisName: Rope__ + Name: Rope + Type: Etc + Buy: 10 + Weight: 2000 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6688 + AegisName: Wood_ + Name: Wood + Type: Etc + Buy: 10 + Weight: 2000 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6689 + AegisName: BurningSkin + Name: Burning Bug Skin + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6690 + AegisName: YummyStem + Name: Yummy Stem + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6691 + AegisName: BurningFeather + Name: Burning Feather + Type: Etc + Buy: 10 + Flags: + BuyingStore: true + - Id: 6692 + AegisName: PatrolLog + Name: Patrol Log + Type: Etc + Buy: 10 + Weight: 1 + Flags: + BuyingStore: true + - Id: 6693 + AegisName: Stone_Of_Blessing + Name: Stone Of Blessing + Type: Etc + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6694 + AegisName: Monster_Blood + Name: Monster Blood + Type: Etc + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6695 + AegisName: ToothOfFlameGolem + Name: Golem's Fiery Stone Tooth + Type: Etc + Buy: 10 + Weight: 100 + Flags: + BuyingStore: true + - Id: 6696 + AegisName: ToothOfFlameFrilldora + Name: Frilldora's Fiery Nape + Type: Etc + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6698 + AegisName: Wooden_Axe + Name: Wooden Axe + Type: Etc + Buy: 10 + Weight: 1000 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6699 + AegisName: Faith_Silence + Name: Faith Silence + Type: Etc + Buy: 10 + Flags: + BuyingStore: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6700 + AegisName: White_Snake_Scale + Name: White Snake Scale + Type: Etc + Buy: 10 + Flags: + BuyingStore: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6701 + AegisName: Treasure_Dwarf + Name: Treasure Dwarf + Type: Etc + Buy: 10 + Flags: + BuyingStore: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6702 + AegisName: Sweat_Dwarf + Name: Sweat Dwarf + Type: Etc + Buy: 10 + Flags: + BuyingStore: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6703 + AegisName: Warrior_Tears + Name: Warrior Tears + Type: Etc + Buy: 10 + Flags: + BuyingStore: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6704 + AegisName: Warrior_Anger + Name: Warrior Anger + Type: Etc + Buy: 10 + Flags: + BuyingStore: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6705 + AegisName: Warrior_Certificate + Name: Warrior Certificate + Type: Etc + Buy: 10 + Flags: + BuyingStore: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6706 + AegisName: Guardian_Flowers + Name: Guardian Flowers + Type: Etc + Buy: 10 + Flags: + BuyingStore: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6707 + AegisName: Jeremy_Beauty_Coupon + Name: Jeremy Beauty Coupon + Type: Etc + Buy: 10 + Weight: 10 + - Id: 6708 + AegisName: Mana_crystal + Name: Mana Crystal + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6709 + AegisName: Crisp_Silk + Name: Crisp Silk + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6710 + AegisName: Tied_Snake + Name: Tied Snake + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6712 + AegisName: Lovely_Stick + Name: Lovely Stick + Type: Etc + - Id: 6713 + AegisName: Heart_of_Soul + Name: Heart of Soul + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6714 + AegisName: Sheenas_Soul + Name: Sheena's Soul + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6715 + AegisName: P_Of_Evil_Soul + Name: Darklord Soulpiece + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6716 + AegisName: Cri_Stone + Name: CRI Stone (Upper) + Type: Card + Buy: 10 + Weight: 100 + - Id: 6717 + AegisName: MaxHP_Stone + Name: Stamina Stone (Middle) + Type: Card + Buy: 10 + Weight: 100 + - Id: 6718 + AegisName: MaxSP_Stone + Name: Magic Stone (Lower) + Type: Card + Buy: 10 + Weight: 100 + - Id: 6719 + AegisName: Jitterbug's_Tooth + Name: Jitterbug's Tooth + Type: Etc + Buy: 10 + Weight: 100 + - Id: 6722 + AegisName: Delicious_Clam_Flesh + Name: Delicious Clam Flesh + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6723 + AegisName: Delicious_Canned_Food + Name: Delicious Canned Food + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6724 + AegisName: Savage_Box + Name: Savage Box + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6725 + AegisName: Grand_Peco_Box + Name: Grand Peco Box + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6726 + AegisName: Desert_Wolf_Box + Name: Desert Wolf Box + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6727 + AegisName: Arranged_Photo_Album + Name: Arranged Photo Album + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6732 + AegisName: Monster_Coin + Name: Monster Coin + Type: Etc + Buy: 10 + - Id: 6733 + AegisName: Tingly_Feather + Name: Tingly Feather + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6734 + AegisName: Unknown_Meal + Name: Unknown Meal + Type: Etc + - Id: 6735 + AegisName: Special_Condiment + Name: Special Condiment + Type: Etc + Weight: 20 + - Id: 6736 + AegisName: Minced_Meat + Name: Minced Meat + Type: Etc + Weight: 20 + - Id: 6737 + AegisName: Fermented_Wheat_Flour + Name: Fermented Wheat Flour + Type: Etc + Weight: 20 + - Id: 6738 + AegisName: Rissole + Name: Rissole + Type: Etc + - Id: 6739 + AegisName: Recipe + Name: Recipe + Type: Etc + - Id: 6740 + AegisName: HealStone_Top + Name: Recovery Stone (Upper) + Type: Card + Buy: 10 + Weight: 100 + - Id: 6741 + AegisName: HealStone2_Top + Name: Recovery Skill Stone (Upper) + Type: Card + Buy: 10 + Weight: 100 + - Id: 6742 + AegisName: HealStone_Middle + Name: Recovery Stone (Middle) + Type: Card + Buy: 10 + Weight: 100 + - Id: 6743 + AegisName: HPStone_Middle + Name: HP Stone (Middle) + Type: Card + Buy: 10 + Weight: 100 + - Id: 6744 + AegisName: SPStone_Middle + Name: SP Stone (Middle) + Type: Card + Buy: 10 + Weight: 100 + - Id: 6745 + AegisName: HealStone_Bottom + Name: Recovery Stone (Low) + Type: Card + Buy: 20 + Weight: 10 + - Id: 6746 + AegisName: Iron_Artifacts + Name: Steel Artifact + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6747 + AegisName: Iron_Artifacts_ + Name: Steel Artifact + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6748 + AegisName: Excavator_Repoet + Name: Daily Report He And His Team + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6749 + AegisName: Power_Control_Device + Name: Operation Control Device + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6750 + AegisName: Failed_Engine + Name: Failed Engine + Type: Etc + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6751 + AegisName: Crushed_Can_Iron_Plate + Name: Crushed Can Iron Plate + Type: Etc + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6752 + AegisName: Charleston_Parts + Name: Charleston Parts + Type: Etc + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6753 + AegisName: Sign_Of_Destruction + Name: Token Of Destruction + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6754 + AegisName: Collected_Herb + Name: Collected Medicinal Herbs + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6755 + AegisName: Contaminated_Magic + Name: Contaminated Magic + Type: Etc + Buy: 20 + Weight: 10 + - Id: 6756 + AegisName: Condensed_Energy + Name: Cohesive Energy + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6757 + AegisName: Memory_Record + Name: The Memory Recorder + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6762 + AegisName: Banana_Can + Name: Banana Can + Type: Etc + Weight: 10 + - Id: 6763 + AegisName: Spicy_Rice_Cake + Name: Spicy Rice Cake + Type: Etc + Weight: 10 + - Id: 6764 + AegisName: Hotdog + Name: Hot Dog + Type: Etc + Weight: 10 + - Id: 6765 + AegisName: Big_Wheel_Cracker + Name: Ferris Wheel Biscuit + Type: Etc + Weight: 10 + - Id: 6766 + AegisName: Ice_World_Ticket + Name: Tickets Ice Kingdom + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6767 + AegisName: Summer_Fes_Coin + Name: Summer Festival Coins + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6768 + AegisName: Red_Beans_Of_Ice + Name: Shaved Ice For Red Beans + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6769 + AegisName: Sweet_Rice_Cake + Name: Sweet Bread + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6770 + AegisName: Shark + Name: Shark + Type: Etc + Buy: 1 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6771 + AegisName: Bluefin_Tuna + Name: Bonito + Type: Etc + Buy: 1 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6772 + AegisName: Octopus + Name: Octopus + Type: Etc + Buy: 1 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6773 + AegisName: Snapper + Name: Sea Bream + Type: Etc + Buy: 1 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6774 + AegisName: Piranha + Name: Piranha + Type: Etc + Buy: 1 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6775 + AegisName: Salmon + Name: Salmon + Type: Etc + Buy: 1 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6776 + AegisName: Eels + Name: Eel + Type: Etc + Buy: 1 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6777 + AegisName: Carp + Name: Carp + Type: Etc + Buy: 1 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6778 + AegisName: Squid_2 + Name: Squid + Type: Etc + Buy: 1 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6779 + AegisName: Mackerel + Name: Mackerel + Type: Etc + Buy: 1 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6780 + AegisName: Crucian_Carp + Name: Crucian Carp + Type: Etc + Buy: 1 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6781 + AegisName: Living_Earthworm + Name: Earthworms Alive + Type: Etc + Buy: 1 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6782 + AegisName: Fresh_Lobster + Name: Fresh Shrimp + Type: Etc + Buy: 1 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6784 + AegisName: Squid_Skewer + Name: Squid Skewer + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6785 + AegisName: Fantastic_Sauce + Name: Source Of Fantasy + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6786 + AegisName: Squid_Of_Bbq + Name: Squid Barbecue + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6787 + AegisName: Good_Firewood + Name: Long Firewood + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6788 + AegisName: Rose_Knife + Name: Rose Knife + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6789 + AegisName: Custom_Pan + Name: Customized Plates + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6790 + AegisName: BigStone_Top + Name: Large Stone (Upper) + Type: Card + Buy: 10 + Weight: 100 + - Id: 6791 + AegisName: MediumStone_Top + Name: Medium Stone (Upper) + Type: Card + Buy: 10 + Weight: 100 + - Id: 6792 + AegisName: SmallStone_Top + Name: Small Stone (Upper) + Type: Card + Buy: 10 + Weight: 100 + - Id: 6795 + AegisName: Ticket_Special_RO2 + Name: Ticket Special RO2 + Type: Etc + Buy: 10 + - Id: 6796 + AegisName: RO2_Name_Card + Name: RO2 Name Card + Type: Etc + Buy: 10 + - Id: 6797 + AegisName: 11th_Coin + Name: 11th Anniversary Coin + Type: Etc + Flags: + BuyingStore: true + - Id: 6803 + AegisName: Fragments_Of_Gigan + Name: Fragments Of Gigan + Type: Etc + Buy: 10 + Weight: 10 + - Id: 6804 + AegisName: ORGANIC_PUMPKIN + Name: Organic Pumpkin + Type: Etc + Buy: 20 + Weight: 10 + - Id: 6805 + AegisName: INORGANIC_PUMPKIN + Name: Inorganic Pumpkin + Type: Etc + Buy: 20 + Weight: 10 + - Id: 6813 + AegisName: Kafra_Ticket + Name: Kafra Ticket + Type: Etc + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + - Id: 6814 + AegisName: Swordman_Soul + Name: Swordman Soul + Type: Etc + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6815 + AegisName: Merchant_Soul + Name: Merchant Soul + Type: Etc + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6816 + AegisName: Thief_Soul + Name: Thief Soul + Type: Etc + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6817 + AegisName: Mage_Soul + Name: Mage Soul + Type: Etc + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6818 + AegisName: Archer_Soul + Name: Archer Soul + Type: Etc + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6819 + AegisName: Acolyte_Soul + Name: Acolyte Soul + Type: Etc + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6820 + AegisName: Particles_Of_Energy + Name: Energy Fragment + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6821 + AegisName: Solo_Troops_Badge + Name: Single Union Badge + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6824 + AegisName: Lab_Memory_Record + Name: Experimental Dong Memory Record + Type: Etc + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6825 + AegisName: Air_Cleaner_Box + Name: Air Cleaner Box + Type: Etc + Buy: 10 + Weight: 10000 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6826 + AegisName: Fresh_Grapes + Name: Fresh Grapes + Type: Etc + Buy: 10 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6827 + AegisName: Normal_Parts + Name: Complete Machine Parts + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6828 + AegisName: Gravity_Parts + Name: Gravity Safety Device + Type: Etc + Buy: 10 + Weight: 100 + - Id: 6832 + AegisName: Questioned_Parts + Name: Questioned Parts + Type: Etc + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6833 + AegisName: Limited_Token_of_Ziegfried + Name: (Limited) Token of Ziegfried + Type: Etc + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6834 + AegisName: Legendary_Fur + Name: Legendary Fur + Type: Etc + Buy: 10 + Weight: 10 + - Id: 6835 + AegisName: Legendary_Mane + Name: Legendary Mane + Type: Etc + Buy: 10 + Weight: 10 + - Id: 6836 + AegisName: Talisman_Of_Soul + Name: Talisman Of Soul + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6837 + AegisName: Piece_Of_Soul_Mouse + Name: Piece Of Soul Mouse + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6838 + AegisName: Secret_Orders_Of_Prophet_K + Name: Secret Orders Of Prophet K + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6839 + AegisName: Gold_Choco_Coin + Name: Gold Choco Coin + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6840 + AegisName: Silver_Choco_Coin + Name: Silver Choco Coin + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6841 + AegisName: Bronze_Choco_Coin + Name: Bronze Choco Coin + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6842 + AegisName: Huge_Jewery + Name: Huge Jewery + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6843 + AegisName: Thin_Ring + Name: Thin Ring + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6844 + AegisName: Mild_Stone + Name: Mild Stone + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6845 + AegisName: That_Thing + Name: That Thing + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6846 + AegisName: Limited_Gym_Membership_Card + Name: (Limited)Gym Membership Card + Type: Card + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6847 + AegisName: Very_Small_Box + Name: Very Small Box + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6848 + AegisName: Light_Box + Name: Light Box + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6849 + AegisName: Request_Complete_Certificate + Name: Request Complete Certificate + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6850 + AegisName: Questionable_Box + Name: Questionable Box + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6851 + AegisName: Questionable_Document + Name: Questionable Document + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6852 + AegisName: Super_Corrector + Name: Super Corrector + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6853 + AegisName: Thanks_Bouquet + Name: Thanks Bouquet + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6854 + AegisName: Novus_Captured + Name: Novus Captured + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6855 + AegisName: Tatacho_Captured + Name: Tatacho Captured + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6856 + AegisName: Manuscript_Written_By_Pigoreum + Name: Manuscript Written By Pigoreum + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6857 + AegisName: Very_Hard_Stone + Name: Very Hard Stone + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6858 + AegisName: Lude_Captured + Name: Lude Captured + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6859 + AegisName: Wanderer_Captured + Name: Wanderer Captured + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6860 + AegisName: Piece_Of_Soul_Cow + Name: Piece Of Soul Cow + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6862 + AegisName: Piece_Of_Soul_Tiger + Name: Piece Of Soul Tiger + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6863 + AegisName: Strong_Piece_Of_Soul_Tiger + Name: Strong Piece Of Soul Tiger + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6864 + AegisName: Safe_to_19_Weapon_Certificate + Name: Safe to 19 Weapon Certificate + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6865 + AegisName: Safe_to_19_Armor_Certificate + Name: Safe to 19 Armor Certificate + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6866 + AegisName: Piece_Of_Soul_Rabbit + Name: Piece Of Soul Rabbit + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6867 + AegisName: Large_Insect_Barrel + Name: Large Insect Barrel + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6868 + AegisName: Medium_Insect_Barrel + Name: Medium Insect Barrel + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6869 + AegisName: Dust + Name: Dust + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6870 + AegisName: Safe_to_13_Weapon_Certificate + Name: Safe to 13 Weapon Certificate + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6871 + AegisName: Safe_to_14_Weapon_Certificate + Name: Safe to 14 Weapon Certificate + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6872 + AegisName: Safe_to_15_Weapon_Certificate + Name: Safe to 15 Weapon Certificate + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6873 + AegisName: Safe_to_16_Weapon_Certificate + Name: Safe to 16 Weapon Certificate + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6874 + AegisName: Safe_to_17_Weapon_Certificate + Name: Safe to 17 Weapon Certificate + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6875 + AegisName: Safe_to_18_Weapon_Certificate + Name: Safe to 18 Weapon Certificate + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6876 + AegisName: Safe_to_13_Armor_Certificate + Name: Safe to 13 Armor Certificate + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6877 + AegisName: Safe_to_14_Armor_Certificate + Name: Safe to 14 Armor Certificate + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6878 + AegisName: Safe_to_15_Armor_Certificate + Name: Safe to 15 Armor Certificate + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6879 + AegisName: Safe_to_16_Armor_Certificate + Name: Safe to 16 Armor Certificate + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6880 + AegisName: Safe_to_17_Armor_Certificate + Name: Safe to 17 Armor Certificate + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6881 + AegisName: Safe_to_18_Armor_Certificate + Name: Safe to 18 Armor Certificate + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6882 + AegisName: Advanced_Bait + Name: Advanced Bait + Type: Etc + Buy: 10 + - Id: 6883 + AegisName: Pet_Snow_Bunny_Exchange_Ticket + Name: Pet Snow Bunny Exchange Ticket + Type: Etc + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6884 + AegisName: Pet_Tikbalang_Exchange_Ticket + Name: Pet Tikbalang Exchange Ticket + Type: Etc + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6885 + AegisName: Piece_Of_Soul_Dragon + Name: Piece Of Soul Dragon + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6886 + AegisName: Strong_Piece_Of_Soul_Dragon + Name: Strong Piece Of Soul Dragon + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6892 + AegisName: Invasion_Plan + Name: Invasion Plan + Type: Etc + Buy: 10 + Weight: 10 + - Id: 6893 + AegisName: Human's_Cookbook + Name: Human's Cookbook + Type: Etc + Buy: 10 + Weight: 10 + - Id: 6894 + AegisName: Champion_Badge + Name: Champion Badge + Type: Etc + Buy: 10 + Weight: 10 + - Id: 6895 + AegisName: Processed_Ancient_Rune + Name: Processed Ancient Rune + Type: Etc + Buy: 10 + - Id: 6896 + AegisName: Processed_Mystic_Rune + Name: Processed Mystic Rune + Type: Etc + Buy: 10 + - Id: 6897 + AegisName: Blue_Whale + Name: Blue Whale + Type: Etc + Buy: 10 + Flags: + BuyingStore: true + - Id: 6898 + AegisName: Whale + Name: Whale + Type: Etc + Buy: 10 + Flags: + BuyingStore: true + - Id: 6899 + AegisName: Giant_Octopus + Name: Giant Octopus + Type: Etc + Buy: 10 + Flags: + BuyingStore: true + - Id: 6900 + AegisName: Giant_Squid + Name: Giant Squid + Type: Etc + Buy: 10 + Flags: + BuyingStore: true + - Id: 6901 + AegisName: Sturgeon + Name: Sturgeon + Type: Etc + Buy: 10 + Flags: + BuyingStore: true + - Id: 6902 + AegisName: King_Lobster + Name: King Lobster + Type: Etc + Buy: 10 + Flags: + BuyingStore: true + - Id: 6903 + AegisName: King_Earthworm + Name: King Earthworm + Type: Etc + Buy: 10 + Flags: + BuyingStore: true + - Id: 6904 + AegisName: Piece_Of_Soul_Snake + Name: Piece Of Soul Snake + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6905 + AegisName: Broken_Magic_Stone + Name: Broken Magic Stone + Type: Etc + Buy: 10 + Flags: + BuyingStore: true + - Id: 6906 + AegisName: Limited_High_Density_Kalunium + Name: (Limited)High Density Kalunium + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6907 + AegisName: Piece_Of_Soul_Horse + Name: Piece Of Soul Horse + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6908 + AegisName: ASPDStone_Robe + Name: Stone ASPD (Garment) + Type: Card + Buy: 20 + Weight: 100 + Script: | + bonus bAspd,1; + - Id: 6909 + AegisName: Actinidia_Cat_Fruit + Name: Actinidia Cat Fruit + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6910 + AegisName: Limited_Purified_Oridecon + Name: (Limited) Purified Oridecon + Type: Etc + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6911 + AegisName: Limited_Purified_Eluminium + Name: (Limited) Purified Eluminium + Type: Etc + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6912 + AegisName: Piece_Of_Soul_Sheep + Name: Piece Of Soul Sheep + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6913 + AegisName: Holy_Rosary + Name: Holy Rosary + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6914 + AegisName: Black_Horn + Name: Black Horn + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6915 + AegisName: Captured_Soul + Name: Captured Soul + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6916 + AegisName: Piece_Of_Soul_Monkey + Name: Piece Of Soul Monkey + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6917 + AegisName: Piece_Of_Soul_Chicken + Name: Piece Of Soul Chicken + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6919 + AegisName: TokenOfHonor + Name: Honor Token + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6920 + AegisName: Rune_Magic_Powder + Name: Rune Magic Powder + Type: Etc + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6921 + AegisName: Dehumidifiers + Name: Dehumidifiers + Type: Etc + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6922 + AegisName: Sandpaper + Name: Sandpaper + Type: Etc + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6923 + AegisName: Bright_Fire_Lights + Name: Bright Fire Lights + Type: Etc + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6924 + AegisName: Red_Eye + Name: Red Eye + Type: Etc + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6925 + AegisName: Letter_Of_Prisoner + Name: Letter Of Prisoner + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6926 + AegisName: Midgards_Histories + Name: Rune-Midgarts History Book + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6927 + AegisName: Stone_That_Contained_Sea + Name: Stone That Contained Sea + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6928 + AegisName: Poring_Scourer + Name: Poring Scourer + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6929 + AegisName: Letter_With_Stamped_Seal + Name: Letter With Stamped Seal + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6930 + AegisName: Samples_New_Business_Items + Name: Samples New Business Items + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6931 + AegisName: Secret_Documents + Name: Secret Documents + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6932 + AegisName: Rare_Book + Name: Rare Book + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6933 + AegisName: Banquet_Invitation_Letter + Name: Banquet Invitation Letter + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6934 + AegisName: Magnificent_Dish + Name: Magnificent Dish + Type: Etc + Buy: 10 + Weight: 1000 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6935 + AegisName: Advanced_Dish + Name: Advanced Dish + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6936 + AegisName: Cold_Core + Name: Cold Core + Type: Etc + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6937 + AegisName: Silicone_Shell + Name: Silicone Shell + Type: Etc + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6938 + AegisName: Hedgehog_Picks + Name: Hedgehog Picks + Type: Etc + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6939 + AegisName: Old_Belt + Name: Worn-Out Belt + Type: Etc + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6940 + AegisName: Moving_Dark_Matter + Name: Moving Black Material + Type: Etc + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6941 + AegisName: Fragments_Valkyrie_Power + Name: Fragments Valkyrie Power + Type: Etc + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6942 + AegisName: Will_Master + Name: Will Master + Type: Etc + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + - Id: 6943 + AegisName: ATKStone_Top + Name: ATK Stone (Upper) + Type: Card + Buy: 10 + Weight: 100 + - Id: 6944 + AegisName: MATKStone_Top + Name: MATK Stone (Upper) + Type: Card + Buy: 10 + Weight: 100 + - Id: 6945 + AegisName: STRStone_Middle + Name: STR Stone (Middle) + Type: Card + Buy: 10 + Weight: 100 + - Id: 6946 + AegisName: INTStone_Middle + Name: INT Stone (Middle) + Type: Card + Buy: 10 + Weight: 100 + - Id: 6947 + AegisName: AGIStone_Middle + Name: AGI Stone (Middle) + Type: Card + Buy: 10 + Weight: 100 + - Id: 6948 + AegisName: DEXStone_Middle + Name: DEX Stone (Middle) + Type: Card + Buy: 10 + Weight: 100 + - Id: 6949 + AegisName: VITStone_Middle + Name: VIT Stone (Middle) + Type: Card + Buy: 10 + Weight: 100 + - Id: 6950 + AegisName: LUKStone_Middle + Name: LUK Stone (Middle) + Type: Card + Buy: 10 + Weight: 100 + - Id: 6951 + AegisName: HPStone_Bottom + Name: HP Stone (Lower) + Type: Card + Buy: 10 + Weight: 100 + - Id: 6953 + AegisName: Ramor_Refine_Ticket + Name: Ramor Refine Ticket + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*Refine succeed guarantee until +9 for item 2598 only*/ + - Id: 6954 + AegisName: Piece_Of_Soul_Dog + Name: Piece Of Soul Dog + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6955 + AegisName: Piece_Of_Soul_Pig + Name: Piece Of Soul Pig + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6956 + AegisName: Captured_Sheep + Name: Captured Sheep + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6957 + AegisName: Lamb_Fleece + Name: Lamb Fleece + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6958 + AegisName: Lamb_Horns + Name: Lamb Horns + Type: Etc + Buy: 10 + - Id: 6960 + AegisName: Air_Stronghold_Key + Name: Sky Fortress Key + Type: Etc + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6961 + AegisName: LargeScrap + Name: Huge Metal Scrap + Type: Etc + Buy: 10 + Weight: 1000 + Flags: + BuyingStore: true + - Id: 6962 + AegisName: OldTank + Name: Old Fuel + Type: Etc + Buy: 10 + Weight: 100 + Flags: + BuyingStore: true + - Id: 6963 + AegisName: HPdrainStone_Robe + Name: HP Absorption Stone (Garment) + Type: Etc + Buy: 10 + Weight: 100 + - Id: 6964 + AegisName: SPdrainStone_Robe + Name: SP Absorption Stone (Garment) + Type: Etc + Buy: 10 + Weight: 100 + - Id: 6965 + AegisName: Reactor_P_FIRE_ + Name: Fire Property Reactor Blueprint + Type: Etc + Weight: 10 + - Id: 6966 + AegisName: Reactor_P_WATER_ + Name: Water Property Reactor Blueprint + Type: Etc + Weight: 10 + - Id: 6967 + AegisName: Reactor_P_GROUND_ + Name: Earth Property Reactor Blueprint + Type: Etc + Weight: 10 + - Id: 6968 + AegisName: Reactor_P_WIND_ + Name: Wind Property Reactor Blueprint + Type: Etc + Weight: 10 + - Id: 6969 + AegisName: Reactor_T_FIRE_ + Name: Fire Resistance Reactor Blueprint + Type: Etc + Weight: 10 + - Id: 6970 + AegisName: Reactor_T_WATER_ + Name: Water Resistance Reactor Blueprint + Type: Etc + Weight: 10 + - Id: 6971 + AegisName: Reactor_T_GROUND_ + Name: Earth Resistance Reactor Blueprint + Type: Etc + Weight: 10 + - Id: 6972 + AegisName: Reactor_T_WIND_ + Name: Wind Resistance Reactor Blueprint + Type: Etc + Weight: 10 + - Id: 6973 + AegisName: Reactor_Cure_101_ + Name: Recovery101 Reactor Blueprint + Type: Etc + Weight: 10 + - Id: 6974 + AegisName: Reactor_Cure_102_ + Name: Recovery102 Reactor Blueprint + Type: Etc + Weight: 10 + - Id: 6975 + AegisName: Reactor_Cure_201_ + Name: Recovery201 Reactor Blueprint + Type: Etc + Weight: 10 + - Id: 6976 + AegisName: Reactor_Cure_202_ + Name: Recovery202 Reactor Blueprint + Type: Etc + Weight: 10 + - Id: 6977 + AegisName: Reactor_A_STR_ + Name: STR Reactor Blueprint + Type: Etc + Weight: 10 + - Id: 6978 + AegisName: Reactor_A_INT_ + Name: INT Reactor Blueprint + Type: Etc + Weight: 10 + - Id: 6979 + AegisName: Reactor_A_DEF_ + Name: DEF Reactor Blueprint + Type: Etc + Weight: 10 + - Id: 6980 + AegisName: Reactor_A_AVOI_ + Name: Perfect Dodge Reactor Blueprint + Type: Etc + Weight: 10 + - Id: 6981 + AegisName: Reactor_A_ATK_ + Name: Attack Reactor Blueprint + Type: Etc + Weight: 10 + - Id: 6982 + AegisName: Reactor_A_MATK_ + Name: Magical Reactor Blueprint + Type: Etc + Weight: 10 + - Id: 6983 + AegisName: Reactor_A_MHP_ + Name: HP Reactor Blueprint + Type: Etc + Weight: 10 + - Id: 6984 + AegisName: Reactor_A_MSP_ + Name: SP Reactor Blueprint + Type: Etc + Weight: 10 + - Id: 6985 + AegisName: Reactor_A_FROZ_ + Name: Frozen Reactor Blueprint + Type: Etc + Weight: 10 + - Id: 6986 + AegisName: Reactor_A_ASPD_ + Name: ASPD Reactor Blueprint + Type: Etc + Weight: 10 + - Id: 6999 + AegisName: HPdrainStone_Top + Name: HP Absorption Stone (Upper) + Type: Etc + Buy: 10 + Weight: 100 + - Id: 7001 + AegisName: Mould_Powder + Name: Mould Powder + Type: Etc + Buy: 466 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7002 + AegisName: Ogre_Tooth + Name: Ogre Tooth + Type: Etc + Buy: 658 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7003 + AegisName: Anolian_Skin + Name: Anolian Skin + Type: Etc + Buy: 968 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7004 + AegisName: Mud_Lump + Name: Mud Lump + Type: Etc + Buy: 876 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7005 + AegisName: Skull + Name: Skull + Type: Etc + Buy: 1044 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7006 + AegisName: Wing_Of_Red_Bat + Name: Wing of Red Bat + Type: Etc + Buy: 168 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7007 + AegisName: Claw_Of_Rat + Name: Claw of Rat + Type: Etc + Buy: 748 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7008 + AegisName: Stiff_Horn + Name: Stiff Horn + Type: Etc + Buy: 636 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7009 + AegisName: Glitter_Shell + Name: Glitter Shell + Type: Etc + Buy: 528 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7010 + AegisName: Tail_Of_Steel_Scorpion + Name: Tail of Steel Scorpion + Type: Etc + Buy: 548 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7011 + AegisName: Claw_Of_Monkey + Name: Claw of Monkey + Type: Etc + Buy: 466 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7012 + AegisName: Tough_Scalelike_Stem + Name: Tough Scalelike Stem + Type: Etc + Buy: 412 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7013 + AegisName: Coral_Reef + Name: Coral Reef + Type: Etc + Buy: 772 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7014 + AegisName: Old_Portrait + Name: Old Portrait + Type: Etc + Buy: 1500 + Weight: 100 + Flags: + BuyingStore: true + - Id: 7015 + AegisName: Bookclip_In_Memory + Name: Bookclip in Memory + Type: Etc + Buy: 3000 + Weight: 20 + Flags: + BuyingStore: true + - Id: 7016 + AegisName: Spoon_Stub + Name: Spoon Stub + Type: Etc + Buy: 2500 + Weight: 20 + Flags: + BuyingStore: true + - Id: 7017 + AegisName: Executioner's_Mitten + Name: Executioner's Mitten + Type: Etc + Buy: 4500 + Weight: 30 + Flags: + BuyingStore: true + - Id: 7018 + AegisName: Young_Twig + Name: Young Twig + Type: Etc + Buy: 50 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7019 + AegisName: Loki's_Whispers + Name: Loki's Whispers + Type: Etc + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7020 + AegisName: Mother's_Nightmare + Name: Mother's Nightmare + Type: Etc + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7021 + AegisName: Foolishness_Of_Blind + Name: Foolishness of the Blind + Type: Etc + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7022 + AegisName: Old_Hilt + Name: Old Hilt + Type: Etc + Buy: 150 + Weight: 30 + Flags: + BuyingStore: true + - Id: 7023 + AegisName: Blade_Lost_In_Darkness + Name: Blade Lost in Darkness + Type: Etc + Buy: 12000 + Weight: 40 + Flags: + BuyingStore: true + - Id: 7024 + AegisName: Bloody_Edge + Name: Bloody Edge + Type: Etc + Buy: 10000 + Weight: 40 + Flags: + BuyingStore: true + - Id: 7025 + AegisName: Lucifer's_Lament + Name: Lucifer's Lament + Type: Etc + Buy: 30000 + Weight: 50 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7026 + AegisName: Key_Of_Clock_Tower + Name: Key of Clock Tower + Type: Etc + Buy: 100 + Weight: 30 + Flags: + BuyingStore: true + - Id: 7027 + AegisName: Underground_Key + Name: Key of Underground + Type: Etc + Buy: 100 + Weight: 30 + Flags: + BuyingStore: true + - Id: 7028 + AegisName: Invite_For_Duel + Name: Invite for Duel + Type: Etc + - Id: 7029 + AegisName: Admission_For_Duel + Name: Admission for Duel + Type: Etc + - Id: 7030 + AegisName: Claw_Of_Desert_Wolf + Name: Claw of Desert Wolf + Type: Etc + Buy: 208 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7031 + AegisName: Old_Frying_Pan + Name: Old Frying Pan + Type: Etc + Buy: 196 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7032 + AegisName: Piece_Of_Egg_Shell + Name: Piece of Egg Shell + Type: Etc + Buy: 168 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7033 + AegisName: Poison_Spore + Name: Poison Spore + Type: Etc + Buy: 114 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7034 + AegisName: Red_Socks_With_Holes + Name: Red Stocking + Type: Etc + Buy: 100 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7035 + AegisName: Matchstick + Name: Matchstick + Type: Etc + Buy: 100 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7036 + AegisName: Fang_Of_Garm + Name: Fang of Hatii + Type: Etc + Buy: 100 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7038 + AegisName: Yarn + Name: Yarn + Type: Etc + Buy: 100 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7039 + AegisName: Novice_Nametag + Name: Newbie Tag + Type: Etc + Weight: 10 + - Id: 7040 + AegisName: Megaphone + Name: Megaphone + Type: Etc + Buy: 1 + Weight: 10 + - Id: 7041 + AegisName: Fine_Grit + Name: Fine Grit + Type: Etc + Buy: 120 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7042 + AegisName: Leather_Bag_Of_Infinity + Name: Leather Bag of Infinity + Type: Etc + Buy: 1 + Weight: 10 + - Id: 7043 + AegisName: Fine_Sand + Name: Fine Sand + Type: Etc + Buy: 100 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7044 + AegisName: Vigorgra + Name: Vigorgra + Type: Etc + Buy: 1 + Weight: 10 + - Id: 7045 + AegisName: Magic_Paint + Name: Magic Paint + Type: Etc + Buy: 1 + Weight: 10 + - Id: 7046 + AegisName: Cart_Parts + Name: Cart Parts + Type: Etc + Buy: 1 + Weight: 10 + - Id: 7047 + AegisName: Alice's_Apron + Name: Alice's Apron + Type: Etc + Buy: 2424 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7048 + AegisName: Talon_Of_Griffin + Name: Talon of Griffon + Type: Etc + Buy: 5418 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7049 + AegisName: Stone + Name: Stone + Type: Etc + Weight: 30 + Flags: + BuyingStore: true + - Id: 7050 + AegisName: Cotton_Mat + Name: Cotton Mat + Type: Etc + Buy: 100 + Weight: 10 + - Id: 7051 + AegisName: Silk_Mat + Name: Silk Mat + Type: Etc + Buy: 100 + Weight: 10 + - Id: 7052 + AegisName: Old_Magazine + Name: Old Papers + Type: Etc + Buy: 100 + Weight: 10 + - Id: 7053 + AegisName: Cyfar + Name: Cyfar + Type: Etc + Buy: 772 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7054 + AegisName: Brigan + Name: Brigan + Type: Etc + Buy: 746 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7055 + AegisName: Animal_Pooopoo + Name: Animal Poop + Type: Etc + Buy: 100 + Weight: 50 + Flags: + BuyingStore: true + - Id: 7056 + AegisName: Payroll_Of_Kafra + Name: Payment Statement for Kafra Employee + Type: Etc + Buy: 1 + Weight: 50 + Flags: + BuyingStore: true + - Id: 7057 + AegisName: Gallar_Horn + Name: Gjallar + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7058 + AegisName: Gullraifnir + Name: Gleipnir + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7059 + AegisName: Cargo_Free_Ticket + Name: Free Ticket for Kafra Storage + Type: Etc + Buy: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7060 + AegisName: Warp_Free_Ticket + Name: Free Ticket for Kafra Transportation + Type: Etc + Buy: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7061 + AegisName: Cart_Free_Ticket + Name: Free Ticket for the Cart Service + Type: Etc + Buy: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7062 + AegisName: Broken_Turtle_Shell + Name: Broken Turtle Shell + Type: Etc + Buy: 280 + Weight: 10 + - Id: 7063 + AegisName: Soft_Feather + Name: Soft Feather + Type: Etc + Buy: 280 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7064 + AegisName: Dragon_Fly_Wing + Name: Wing of Dragonfly + Type: Etc + Buy: 520 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7065 + AegisName: Sea_Otter_Leather + Name: Sea-Otter Fur + Type: Etc + Buy: 820 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7066 + AegisName: Ice_Piece + Name: Ice Cubic + Type: Etc + Buy: 660 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7067 + AegisName: Stone_Piece + Name: Stone Fragment + Type: Etc + Buy: 640 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7068 + AegisName: Burn_Tree + Name: Burnt Tree + Type: Etc + Buy: 722 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7069 + AegisName: Broken_Armor_Piece + Name: Destroyed Armor + Type: Etc + Buy: 1042 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7070 + AegisName: Broken_Shell + Name: Broken Shell + Type: Etc + Buy: 900 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7071 + AegisName: Tatters_Clothes + Name: Tattered Clothes + Type: Etc + Buy: 1280 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7072 + AegisName: Rust_Suriken + Name: Old Shuriken + Type: Etc + Buy: 1780 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7073 + AegisName: Jewel_Of_Prayer + Name: Freya's Jewel + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7074 + AegisName: Iron_Glove + Name: Thor's Gauntlets + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7075 + AegisName: Iron_Maiden + Name: Iron Maiden + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7076 + AegisName: Mystery_Wheel + Name: Wheel of the Unknown + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7077 + AegisName: Silver_Fancy + Name: Silver Ornament + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7078 + AegisName: Anger_Of_Valkurye + Name: Wrath of Valkyrie + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7079 + AegisName: Feather_Of_Angel + Name: Feather of Angel Wing + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7080 + AegisName: Foot_Step_Of_Cat + Name: Cat Tread + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7081 + AegisName: Beard_Of_Women + Name: Woman's Moustache + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7082 + AegisName: Root_Of_Stone + Name: Root of Stone + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7083 + AegisName: Soul_Of_Fish + Name: Spirit of Fish + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7084 + AegisName: Saliva_Of_Bird + Name: Sputum of Bird + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7085 + AegisName: Tendon_Of_Bear + Name: Sinew of Bear + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7086 + AegisName: Symbol_Of_Sun + Name: Emblem of the Sun God + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7087 + AegisName: Breath_Of_Soul + Name: Breath of Spirit + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7088 + AegisName: Crystal_Of_Snow + Name: Snow Crystal + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7089 + AegisName: Indication_Of_Tempest + Name: Omen of Tempest + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7090 + AegisName: Slilince_Wave + Name: Ripple + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7091 + AegisName: Rough_Billows + Name: Billow + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7092 + AegisName: Air_Stream + Name: Drifting Air + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7093 + AegisName: Wheel + Name: Cogwheel + Type: Etc + Buy: 1512 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7094 + AegisName: Mystery_Piece + Name: Fragment + Type: Etc + Buy: 1344 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7095 + AegisName: Broken_Steel_Piece + Name: Metal Fragment + Type: Etc + Buy: 1075 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7096 + AegisName: Cold_Magma + Name: Lava + Type: Etc + Buy: 1109 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7097 + AegisName: Burning_Heart + Name: Burning Heart + Type: Etc + Buy: 924 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7098 + AegisName: Live_Coal + Name: Live Coal + Type: Etc + Buy: 638 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7099 + AegisName: Old_Magic_Circle + Name: Worn-out Magic Scroll + Type: Etc + Buy: 773 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7100 + AegisName: Sharp_Leaf + Name: Sharp Leaf + Type: Etc + Buy: 806 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7101 + AegisName: Peco_Wing_Feather + Name: Peco Peco Feather + Type: Etc + Buy: 454 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7102 + AegisName: Hideous_Dream + Name: Nightmare + Type: Etc + Buy: 1075 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7103 + AegisName: Unknown_Liquid_Bottle + Name: Unknown Liquid Bottle + Type: Etc + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7104 + AegisName: Fake_Angel_Wing + Name: False Angel Wing + Type: Etc + Buy: 756 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7105 + AegisName: Fake_Angel_Loop + Name: False Heaven Ring + Type: Etc + Buy: 924 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7106 + AegisName: Goat's_Horn + Name: Antelope Horn + Type: Etc + Buy: 672 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7107 + AegisName: Gaoat's_Skin + Name: Antelope Skin + Type: Etc + Buy: 756 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7108 + AegisName: Boroken_Shiled_Piece + Name: Piece of Shield + Type: Etc + Buy: 1680 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7109 + AegisName: Shine_Spear_Blade + Name: Shining Spear Blade + Type: Etc + Buy: 840 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7110 + AegisName: Vroken_Sword + Name: Broken Sword + Type: Etc + Buy: 588 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7111 + AegisName: Smooth_Paper + Name: Slick Paper + Type: Etc + Buy: 706 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7112 + AegisName: Fright_Paper_Blade + Name: Sharp Paper + Type: Etc + Buy: 907 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7113 + AegisName: Broken_Pharaoh_Symbol + Name: Broken Pharaoh Emblem + Type: Etc + Buy: 2016 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7114 + AegisName: Tutankhamen's_Mask + Name: Masque of Tutankhamen + Type: Etc + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7115 + AegisName: Harpy's_Feather + Name: Harpy Feather + Type: Etc + Buy: 1142 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7116 + AegisName: Harpy's_Claw + Name: Harpy Talon + Type: Etc + Buy: 1210 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7117 + AegisName: Rent_Spell_Book + Name: Torn Magic Book + Type: Etc + Buy: 1142 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7118 + AegisName: Rent_Scroll + Name: Torn Scroll + Type: Etc + Buy: 1361 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7119 + AegisName: Spawns + Name: Bacillus + Type: Etc + Buy: 1025 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7120 + AegisName: Burning_Horse_Shoe + Name: Burning Horseshoe + Type: Etc + Buy: 823 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7121 + AegisName: Honey_Jar + Name: Honey Pot + Type: Etc + Buy: 622 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7122 + AegisName: Hot_Hair + Name: Burning Hair + Type: Etc + Buy: 974 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7123 + AegisName: Dragon's_Skin + Name: Dragon Skin + Type: Etc + Buy: 1025 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7124 + AegisName: Sand_Lump + Name: Sand Clump + Type: Etc + Buy: 706 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7125 + AegisName: Scropion's_Nipper + Name: Scorpion Claw + Type: Etc + Buy: 706 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7126 + AegisName: Large_Jellopy + Name: Large Jellopy + Type: Etc + Buy: 840 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7127 + AegisName: Alcol_Create_Book + Name: Alcohol Creation Guide + Type: Etc + Buy: 100000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7128 + AegisName: FireBottle_Create_Book + Name: Bottle Grenade Creation Guide + Type: Etc + Buy: 100000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7129 + AegisName: Acid_Create_Book + Name: Acid Bottle Creation Guide + Type: Etc + Buy: 100000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7130 + AegisName: Plant_Create_Book + Name: Plant Bottle Creation Guide + Type: Etc + Buy: 100000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7131 + AegisName: Mine_Create_Book + Name: Marine Sphere Creation Guide + Type: Etc + Buy: 100000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7132 + AegisName: Coating_Create_Book + Name: Glistening Coat Creation Guide + Type: Etc + Buy: 100000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7133 + AegisName: Slim_Potion_Create_Book + Name: Condensed Potion Creation Guide + Type: Etc + Buy: 240000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7134 + AegisName: Medicine_Bowl + Name: Medicine Bowl + Type: Etc + Buy: 8 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7135 + AegisName: Fire_Bottle + Name: Bottle Grenade + Type: Etc + Buy: 200 + Weight: 10 + - Id: 7136 + AegisName: Acid_Bottle + Name: Acid Bottle + Type: Etc + Buy: 200 + Weight: 10 + - Id: 7137 + AegisName: MenEater_Plant_Bottle + Name: Plant Bottle + Type: Etc + Buy: 200 + Weight: 10 + - Id: 7138 + AegisName: Mini_Bottle + Name: Marine Sphere Bottle + Type: Etc + Buy: 200 + Weight: 10 + - Id: 7139 + AegisName: Coating_Bottle + Name: Glistening Coat + Type: Etc + Buy: 200 + Weight: 10 + - Id: 7140 + AegisName: Seed_Of_Life + Name: Seed of Life + Type: Etc + Buy: 60000 + Weight: 10 + Flags: + BuyingStore: true + Trade: + Override: 100 + NoDrop: true + - Id: 7141 + AegisName: Yggdrasilberry_Dew + Name: Morning Dew of Yggdrasil + Type: Etc + Buy: 20000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7142 + AegisName: Germination_Breed + Name: Embryo + Type: Etc + Buy: 10 + Weight: 10 + - Id: 7143 + AegisName: Life_Force_Pot + Name: Glass Tube + Type: Etc + Buy: 5000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7144 + AegisName: Normal_Potion_Book + Name: Potion Creation Guide + Type: Etc + Buy: 100000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7145 + AegisName: Rag_T_Shirts + Name: Ragnarok T-shirt + Type: Etc + Buy: 1 + Weight: 10 + - Id: 7146 + AegisName: Vacance_Ticket + Name: Vacation Ticket + Type: Etc + Buy: 1 + Weight: 10 + - Id: 7147 + AegisName: Jasmin + Name: Jasmine + Type: Etc + Buy: 1 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7148 + AegisName: Mother_Letter + Name: Mother's Letter + Type: Etc + Buy: 1 + Weight: 10 + - Id: 7149 + AegisName: Yellow_Plate + Name: Yellow Plate + Type: Etc + Buy: 220 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7150 + AegisName: Bamboo_Cut + Name: Piece of Bamboo + Type: Etc + Buy: 310 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7151 + AegisName: Oil_Paper + Name: Oil Paper + Type: Etc + Buy: 210 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7152 + AegisName: Glossy_Hair + Name: Glossy Hair + Type: Etc + Buy: 340 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7153 + AegisName: Old_Japaness_Clothes + Name: Worn-out Kimono + Type: Etc + Buy: 590 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7154 + AegisName: Poison_Powder + Name: Poisonous Powder + Type: Etc + Buy: 160 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7155 + AegisName: Poison_Toad's_Skin + Name: Poisonous Toad Skin + Type: Etc + Buy: 280 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7156 + AegisName: Broken_Shuriken + Name: Broken Shuriken + Type: Etc + Buy: 470 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7157 + AegisName: Black_Mask + Name: Dark Mask + Type: Etc + Buy: 315 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7158 + AegisName: Broken_Wine_Vessel + Name: Broken Liquor Jar + Type: Etc + Buy: 160 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7159 + AegisName: Tengu's_Nose + Name: Tengu Nose + Type: Etc + Buy: 400 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7160 + AegisName: Lord's_Passable_Ticket + Name: Feudal Lord Permit + Type: Etc + Buy: 1 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7161 + AegisName: Black_Bear's_Skin + Name: Black Bear Skin + Type: Etc + Buy: 384 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7162 + AegisName: Cloud_Piece + Name: Cloud Crumb + Type: Etc + Buy: 390 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7163 + AegisName: Sharp_Feeler + Name: Hard Feeler + Type: Etc + Buy: 570 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7164 + AegisName: Hard_Peach + Name: Solid Peach + Type: Etc + Buy: 400 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7165 + AegisName: Limpid_Celestial_Robe + Name: Transparent Celestial Robe + Type: Etc + Buy: 650 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7166 + AegisName: Soft_Silk_Cloth + Name: Soft Silk + Type: Etc + Buy: 1200 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7167 + AegisName: Mystery_Iron_Bit + Name: Strange Steel Piece + Type: Etc + Buy: 430 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7168 + AegisName: Great_Wing + Name: Giant Butterfly Wing + Type: Etc + Buy: 614 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7169 + AegisName: Taegeuk_Plate + Name: Ba Gua + Type: Etc + Buy: 2800 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7170 + AegisName: Tuxedo + Name: Tuxedo + Type: Etc + Buy: 43000 + Weight: 10 + Flags: + BuyingStore: true + Trade: + Override: 100 + NoDrop: true + - Id: 7171 + AegisName: Leopard_Skin + Name: Leopard Skin + Type: Etc + Buy: 282 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7172 + AegisName: Leopard_Talon + Name: Leopard Claw + Type: Etc + Buy: 290 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7173 + AegisName: BurnBuster_Bag + Name: iROGM02's Backpack + Type: Etc + Weight: 10 + - Id: 7174 + AegisName: Packing_Ribbon + Name: Wrapping Lace + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 7175 + AegisName: Packing_Paper + Name: Wrapping Paper + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 7176 + AegisName: XMAS_Coupon + Name: Royal Certificate + Type: Etc + Weight: 10 + - Id: 7177 + AegisName: Part_Of_Star's_Sob + Name: Crumb of Sobbing Starlight + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7178 + AegisName: Star's_Sob + Name: Sobbing Starlight + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7179 + AegisName: Donation_Card + Name: Proof of Donation + Type: Etc + Weight: 10 + - Id: 7180 + AegisName: Introduction_Of_Mr.Han + Name: Hahn Sukbong's Recommendation + Type: Etc + Weight: 10 + - Id: 7181 + AegisName: Receipt_01 + Name: Receipt + Type: Etc + Weight: 10 + - Id: 7182 + AegisName: Cacao + Name: Cacao + Type: Etc + Buy: 200 + Weight: 20 + Flags: + BuyingStore: true + - Id: 7183 + AegisName: Sister_Letter + Name: Letter from Sister + Type: Etc + Weight: 10 + - Id: 7184 + AegisName: Piano_Keyboard + Name: Piano Key + Type: Etc + Weight: 10 + - Id: 7185 + AegisName: Quiz_Ticket + Name: Quiz Entry + Type: Etc + Weight: 10 + - Id: 7186 + AegisName: Thin_Stem + Name: Thin Trunk + Type: Etc + Buy: 380 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7187 + AegisName: Festival_Mask + Name: Festival Mask + Type: Etc + Buy: 100 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7188 + AegisName: Browny_Root + Name: Brown Root + Type: Etc + Buy: 560 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7189 + AegisName: Heart_Of_Tree + Name: Wooden Heart + Type: Etc + Buy: 680 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7190 + AegisName: Solid_Peeling + Name: Solid Husk + Type: Etc + Buy: 140 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7191 + AegisName: Lamplight + Name: Lamp + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 7192 + AegisName: Blade_Of_Pinwheel + Name: Vane + Type: Etc + Buy: 160 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7193 + AegisName: Germinating_Sprout + Name: Sprout + Type: Etc + Buy: 230 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7194 + AegisName: Soft_Leaf + Name: Soft Blade of Grass + Type: Etc + Buy: 400 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7195 + AegisName: Air_Rifle + Name: Slingshot + Type: Etc + Buy: 210 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7196 + AegisName: Shoulder_Protection + Name: Shoulder Protector + Type: Etc + Buy: 230 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7197 + AegisName: Tough_Vines + Name: Tough Vines + Type: Etc + Buy: 500 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7198 + AegisName: Great_Leaf + Name: Huge Leaf + Type: Etc + Buy: 610 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7199 + AegisName: Coupon + Name: Coupon + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7200 + AegisName: Flexible_String + Name: Elastic Band + Type: Etc + Buy: 380 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7201 + AegisName: Log + Name: Log + Type: Etc + Buy: 250 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7202 + AegisName: Beetle_Nipper + Name: Pincher of Beetle + Type: Etc + Buy: 290 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7203 + AegisName: Solid_Twig + Name: Strong Branch + Type: Etc + Buy: 190 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7204 + AegisName: Gunpowder + Name: Gunpowder + Type: Etc + Buy: 320 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7205 + AegisName: Piece_Of_Black_Cloth + Name: Piece of Black Cloth + Type: Etc + Buy: 526 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7206 + AegisName: Black_Kitty_Doll + Name: Black Cat Doll + Type: Etc + Buy: 1440 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7207 + AegisName: Old_Manteau + Name: Old Manteau + Type: Etc + Buy: 1050 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7208 + AegisName: Rusty_Cleaver + Name: Rusty Kitchen Knife + Type: Etc + Buy: 1780 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7209 + AegisName: Dullahan's_Helm + Name: Helm of Dullahan + Type: Etc + Buy: 1350 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7210 + AegisName: Dullahan_Armor + Name: Armor Piece of Dullahan + Type: Etc + Buy: 790 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7211 + AegisName: Rojerta_Piece + Name: Fragment of Rossata Stone + Type: Etc + Buy: 2600 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7212 + AegisName: Hanging_Doll + Name: Hung Doll + Type: Etc + Buy: 1020 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7213 + AegisName: Needle_Pouch + Name: Needle Packet + Type: Etc + Buy: 832 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7214 + AegisName: Bat_Cage + Name: Bat Cage + Type: Etc + Buy: 880 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7215 + AegisName: Broken_Needle + Name: Broken Needle + Type: Etc + Buy: 690 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7216 + AegisName: Red_Scarf + Name: Red Muffler + Type: Etc + Buy: 660 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7217 + AegisName: Spool + Name: Spool + Type: Etc + Buy: 424 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7218 + AegisName: Rotten_Rope + Name: Decomposed Rope + Type: Etc + Buy: 390 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7219 + AegisName: Striped_Socks + Name: Striped Sock + Type: Etc + Buy: 920 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7220 + AegisName: Ectoplasm + Name: Ectoplasm + Type: Etc + Buy: 322 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7221 + AegisName: Tangled_Chain + Name: Tangled Chains + Type: Etc + Buy: 740 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7222 + AegisName: Tree_Knot + Name: Wooden Gnarl + Type: Etc + Buy: 468 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7223 + AegisName: Distorted_Portrait + Name: Contorted Self-Portrait + Type: Etc + Buy: 2032 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7224 + AegisName: Stone_Of_Intelligence + Name: Stone of Sage + Type: Etc + Weight: 10 + - Id: 7225 + AegisName: Pumpkin_Bucket + Name: Pumpkin Lantern + Type: Etc + Buy: 486 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7226 + AegisName: Pill + Name: Pellet + Type: Etc + Buy: 2 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7227 + AegisName: TCG_Card + Name: TCG Card + Type: Etc + Weight: 10 + - Id: 7228 + AegisName: Gold_Bullion + Name: Gold Bullion + Type: Etc + Buy: 100000 + Weight: 300 + Flags: + BuyingStore: true + - Id: 7229 + AegisName: Silver_Bullion + Name: Silver Bullion + Type: Etc + Buy: 50000 + Weight: 300 + Flags: + BuyingStore: true + - Id: 7230 + AegisName: White_Gold_Bullion + Name: Platinum Bullion + Type: Etc + Buy: 200000 + Weight: 300 + Flags: + BuyingStore: true + - Id: 7231 + AegisName: Gold_Ore + Name: Gold Ore + Type: Etc + Buy: 20 + Weight: 150 + - Id: 7232 + AegisName: Silver_Ore + Name: Silver Ore + Type: Etc + Buy: 20 + Weight: 150 + - Id: 7233 + AegisName: Mithril_Ore + Name: Mithril Ore + Type: Etc + Buy: 20 + Weight: 150 + - Id: 7234 + AegisName: Soul_Of_Guild + Name: Spirit of Guild + Type: Etc + Weight: 10 + - Id: 7235 + AegisName: Soul_Of_Courage + Name: Spirit of Charge + Type: Etc + Weight: 10 + - Id: 7236 + AegisName: Soul_Of_Guard + Name: Spirit of Protection + Type: Etc + Weight: 10 + - Id: 7237 + AegisName: Soul_Of_Partnership + Name: Spirit of Association + Type: Etc + Weight: 10 + - Id: 7238 + AegisName: Soul_Of_Correspondence + Name: Spirit of Coordination + Type: Etc + Weight: 10 + - Id: 7239 + AegisName: Soul_Of_Proceeding + Name: Spirit of Advance + Type: Etc + Weight: 10 + - Id: 7240 + AegisName: Soul_Of_Confidence + Name: Spirit of Trust + Type: Etc + Weight: 10 + - Id: 7241 + AegisName: Soul_Of_Agreement + Name: Spirit of Union + Type: Etc + Weight: 10 + - Id: 7242 + AegisName: Soul_Of_Harmony + Name: Spirit of Combination + Type: Etc + Weight: 10 + - Id: 7243 + AegisName: Soul_Of_Cooperate + Name: Spirit of Cooperation + Type: Etc + Weight: 10 + - Id: 7244 + AegisName: Soul_Of_Unity + Name: Spirit of Solidarity + Type: Etc + Weight: 10 + - Id: 7245 + AegisName: Soul_Of_Friendship + Name: Spirit of Friendship + Type: Etc + Weight: 10 + - Id: 7246 + AegisName: Soul_Of_Peace + Name: Spirit of Peace + Type: Etc + Weight: 10 + - Id: 7247 + AegisName: Soul_Of_Spirit + Name: Spirit of Determination + Type: Etc + Weight: 10 + - Id: 7248 + AegisName: Soul_Of_Honor + Name: Spirit of Honor + Type: Etc + Weight: 10 + - Id: 7249 + AegisName: Soul_Of_Service + Name: Spirit of Service + Type: Etc + Weight: 10 + - Id: 7250 + AegisName: Soul_Of_Glory + Name: Spirit of Glory + Type: Etc + Weight: 10 + - Id: 7251 + AegisName: Soul_Of_Victory + Name: Spirit of Victory + Type: Etc + Weight: 10 + - Id: 7252 + AegisName: Herb_Medicine + Name: Herbal Medicine + Type: Etc + Weight: 10 + - Id: 7253 + AegisName: Taeguk_Flag + Name: Golden Korean Flag + Type: Etc + Weight: 10 + - Id: 7254 + AegisName: Digital_Print_Ticket + Name: Digital Picture Printing Coupon + Type: Etc + Weight: 10 + - Id: 7255 + AegisName: China_Marble01 + Name: Mystic Orb + Type: Etc + Weight: 100 + - Id: 7256 + AegisName: China_Marble02 + Name: Mystic Orb + Type: Etc + Weight: 100 + - Id: 7257 + AegisName: China_Marble03 + Name: Mystic Orb + Type: Etc + Weight: 100 + - Id: 7258 + AegisName: China_Marble04 + Name: Mystic Orb + Type: Etc + Weight: 100 + - Id: 7259 + AegisName: China_Marble05 + Name: Mystic Orb + Type: Etc + Weight: 100 + - Id: 7260 + AegisName: China_Marble06 + Name: Mystic Orb + Type: Etc + Weight: 100 + - Id: 7261 + AegisName: China_Marble07 + Name: Mystic Orb + Type: Etc + Weight: 100 + - Id: 7262 + AegisName: Fan + Name: Folding Fan of Cat Ghost + Type: Etc + Buy: 466 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7263 + AegisName: Cat_Eyed_Stone + Name: Cat's Eye + Type: Etc + Buy: 954 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7264 + AegisName: Dried_Sand + Name: Dry Sand + Type: Etc + Buy: 322 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7265 + AegisName: Dragon_Horn + Name: Dragon Horn + Type: Etc + Buy: 544 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7266 + AegisName: Dragon_Fang + Name: Denture from Dragon Mask + Type: Etc + Buy: 436 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7267 + AegisName: Tiger_Skin_Panties + Name: Tiger Panty + Type: Etc + Buy: 298 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7268 + AegisName: Little_Blacky_Ghost + Name: Little Ghost Doll + Type: Etc + Buy: 1210 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7269 + AegisName: Bib + Name: Pinafore + Type: Etc + Buy: 960 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7270 + AegisName: Milk_Bottle + Name: Nursing Bottle + Type: Etc + Buy: 1100 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7271 + AegisName: Figure + Name: Novice Figure + Type: Etc + Buy: 10000 + Weight: 10 + - Id: 7272 + AegisName: Meat_Dumpling_Doll + Name: Rice Ball Doll + Type: Etc + Buy: 500 + Weight: 10 + - Id: 7273 + AegisName: Golden_Necklace + Name: RWC Necklace + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7274 + AegisName: Ancient_Translator + Name: Translated Ancient Language + Type: Etc + Weight: 10 + - Id: 7275 + AegisName: Ancient_Document + Name: Record of Ancient Language + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7276 + AegisName: Picture_Letter + Name: Doodled Message + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7277 + AegisName: Munak_Doll + Name: Munak Doll + Type: Etc + Buy: 8900 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7278 + AegisName: Wellbeing_Letter + Name: Letter to Wife + Type: Etc + Weight: 10 + - Id: 7279 + AegisName: Vita500_Lid + Name: Vita500 Lid + Type: Etc + Buy: 10 + Weight: 10 + - Id: 7280 + AegisName: Quiz_Ticket01 + Name: 1st Quiz Entry + Type: Etc + Weight: 10 + - Id: 7281 + AegisName: Quiz_Ticket02 + Name: 2nd Quiz Entry + Type: Etc + Weight: 10 + - Id: 7282 + AegisName: Quiz_Ticket03 + Name: 3rd Quiz Entry + Type: Etc + Weight: 10 + - Id: 7283 + AegisName: Quiz_Ticket04 + Name: 4th Quiz Entry + Type: Etc + Weight: 10 + - Id: 7284 + AegisName: Quiz_Ticket05 + Name: 5th Quiz Entry + Type: Etc + Weight: 10 + - Id: 7285 + AegisName: Thread_Skein + Name: Holy Threads + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7286 + AegisName: Chilli + Name: Red Chile + Type: Etc + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7287 + AegisName: Thread_Skein_ + Name: Holier Threads + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7288 + AegisName: Thai_Ring + Name: Engagement Ring + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7289 + AegisName: Olivine + Name: Peridot + Type: Etc + Buy: 3000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 7290 + AegisName: Phlogopite + Name: Phlogopite + Type: Etc + Buy: 3000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 7291 + AegisName: Agate + Name: Agate + Type: Etc + Buy: 3000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 7292 + AegisName: Muscovite + Name: Muscovite + Type: Etc + Buy: 3000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 7293 + AegisName: Rose_Quartz + Name: Rose Quartz + Type: Etc + Buy: 3000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 7294 + AegisName: Turquoise + Name: Turquoise + Type: Etc + Buy: 3000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 7295 + AegisName: Citrine + Name: Citrin + Type: Etc + Buy: 3000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 7296 + AegisName: Pyroxene + Name: Pyroxene + Type: Etc + Buy: 3000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 7297 + AegisName: Biotite + Name: Biotite + Type: Etc + Buy: 3000 + Weight: 100 + Flags: + BuyingStore: true + - Id: 7298 + AegisName: Leaf_Clothes + Name: Fig Leaf + Type: Etc + Buy: 538 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7299 + AegisName: Bamboo_Basket + Name: Straw Basket + Type: Etc + Buy: 632 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7300 + AegisName: Gemstone + Name: Gemstone + Type: Etc + Buy: 1420 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7301 + AegisName: Sword_Accessory + Name: Tassel + Type: Etc + Buy: 798 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7302 + AegisName: KRATHONG + Name: Krathong + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7303 + AegisName: Bag_Of_Rice + Name: Straw Rice Bag + Type: Etc + Weight: 800 + Flags: + BuyingStore: true + - Id: 7304 + AegisName: Witch's_Spell_Book + Name: Witch's Spell Scroll + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7305 + AegisName: Authority_Of_Nine_World + Name: Symbol of the Nine Realms + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7306 + AegisName: Fragment_Of_Soul + Name: Piece of Spirit + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7307 + AegisName: Whisper_Of_Soul + Name: Spiritual Whispers + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7308 + AegisName: Witch's_Potion + Name: Witch's Tonic + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7309 + AegisName: Wing_Of_Crow + Name: Crow Wing + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7310 + AegisName: Free_Peco_Ticket + Name: Free Ticket for Peco Ride + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7311 + AegisName: Free_Flying_Ship_Ticket + Name: Free Ticket for Flyship + Type: Etc + Buy: 20 + - Id: 7312 + AegisName: Jubilee + Name: Jubilee + Type: Etc + Buy: 32 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7313 + AegisName: Seal_Of_Witch + Name: Witch's Medal + Type: Etc + Buy: 2 + - Id: 7314 + AegisName: The_Sign + Name: The Sign + Type: Etc + Buy: 2 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7315 + AegisName: Dark_Crystal_Fragment + Name: Dark Crystal Fragment + Type: Etc + Buy: 422 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7316 + AegisName: Long_Limb + Name: Insect Leg + Type: Etc + Buy: 658 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7317 + AegisName: Screw + Name: Rusty Screw + Type: Etc + Buy: 534 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7318 + AegisName: Old_Pick + Name: Old Pick + Type: Etc + Buy: 512 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7319 + AegisName: Old_Steel_Plate + Name: Used Iron Plate + Type: Etc + Buy: 1024 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7320 + AegisName: Air_Pollutant + Name: Dust Pollutant + Type: Etc + Buy: 256 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7321 + AegisName: Fragment_Of_Crystal + Name: Crystal Fragment + Type: Etc + Buy: 552 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7322 + AegisName: Poisonous_Gas + Name: Toxic Gas + Type: Etc + Buy: 666 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7323 + AegisName: Battered_Kettle + Name: Battered Kettle + Type: Etc + Buy: 256 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7325 + AegisName: Tube + Name: Flexible Tube + Type: Etc + Buy: 102 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7326 + AegisName: Fluorescent_Liquid + Name: Fluorescent Liquid + Type: Etc + Buy: 712 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7327 + AegisName: Headlamp + Name: Flashlight + Type: Etc + Buy: 1024 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7328 + AegisName: Legendary_Scroll + Name: Legend of Songkran + Type: Etc + Weight: 10 + - Id: 7329 + AegisName: Old_Copper_Key + Name: Old Bronze Key + Type: Etc + Weight: 10 + - Id: 7330 + AegisName: 2anny + Name: Mystic Orb + Type: Etc + Weight: 100 + - Id: 7331 + AegisName: Flower_Of_Heaven + Name: Heaven Flower + Type: Etc + Buy: 500 + Weight: 10 + - Id: 7332 + AegisName: Slate + Name: Complete Tablet + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7333 + AegisName: Piece_Of_Slate_1 + Name: Prontera Tablet + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7334 + AegisName: Piece_Of_Slate_2 + Name: Payon Tablet + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7335 + AegisName: Piece_Of_Slate_3 + Name: Morocc Tablet + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7336 + AegisName: Piece_Of_Slate_4 + Name: Geffen Tablet + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7337 + AegisName: Eye_Of_Hellion + Name: Eye of Hellion + Type: Etc + - Id: 7338 + AegisName: RO_Transportation_Card + Name: One-way Ticket + Type: Etc + - Id: 7339 + AegisName: RO_Transportation_Card_ + Name: Commemorative Travel Card + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7340 + AegisName: Will_Of_Darkness + Name: Will of the Darkness + Type: Etc + Buy: 734 + Weight: 50 + Flags: + BuyingStore: true + - Id: 7341 + AegisName: Worn_Out_Pendant + Name: Old Pendant + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7342 + AegisName: File01 + Name: File Folder + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7343 + AegisName: File02 + Name: Sealed File Folder + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7344 + AegisName: File03 + Name: Shinokas Case File + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7345 + AegisName: Armlet_Of_Prisoner + Name: Handcuffs + Type: Etc + Buy: 724 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7346 + AegisName: Pile_Of_Ymir_Heart + Name: Ymir's Heart Piece + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7347 + AegisName: Lab_Staff_Record + Name: Research Chart + Type: Etc + Buy: 840 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7348 + AegisName: Indication_Of_Member01 + Name: Membership Card + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7349 + AegisName: Indication_Of_Member02 + Name: Archive Permit + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7350 + AegisName: Pass + Name: Pass + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7351 + AegisName: Friend's_Diary + Name: Friend's Diary + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7352 + AegisName: Transparent_Plate01 + Name: Transparent Plate + Type: Etc + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7353 + AegisName: Transparent_Plate02 + Name: Transparent Plate + Type: Etc + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7354 + AegisName: Transparent_Plate03 + Name: Transparent Plate + Type: Etc + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7355 + AegisName: Transparent_Plate04 + Name: Transparent Plate + Type: Etc + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7356 + AegisName: Piece_Of_Crest1 + Name: Crest Piece + Type: Etc + Buy: 5000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7357 + AegisName: Piece_Of_Crest2 + Name: Crest Piece + Type: Etc + Buy: 5000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7358 + AegisName: Piece_Of_Crest3 + Name: Crest Piece + Type: Etc + Buy: 5000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7359 + AegisName: Piece_Of_Crest4 + Name: Crest Piece + Type: Etc + Buy: 5000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7360 + AegisName: RO_Festival_Ticket + Name: RO Festival Invitation + Type: Etc + Weight: 10 + - Id: 7361 + AegisName: Lotto01 + Name: Lotto Ball 01 + Type: Etc + Weight: 10 + - Id: 7362 + AegisName: Lotto02 + Name: Lotto Ball 02 + Type: Etc + Weight: 10 + - Id: 7363 + AegisName: Lotto03 + Name: Lotto Ball 03 + Type: Etc + Weight: 10 + - Id: 7364 + AegisName: Lotto04 + Name: Lotto Ball 04 + Type: Etc + Weight: 10 + - Id: 7365 + AegisName: Lotto05 + Name: Lotto Ball 05 + Type: Etc + Weight: 10 + - Id: 7366 + AegisName: Lotto06 + Name: Lotto Ball 06 + Type: Etc + Weight: 10 + - Id: 7367 + AegisName: Lotto07 + Name: Lotto Ball 07 + Type: Etc + Weight: 10 + - Id: 7368 + AegisName: Lotto08 + Name: Lotto Ball 08 + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7369 + AegisName: Lotto09 + Name: Lotto Ball 09 + Type: Etc + Weight: 10 + - Id: 7370 + AegisName: Lotto10 + Name: Lotto Ball 10 + Type: Etc + Weight: 10 + - Id: 7371 + AegisName: Lotto11 + Name: Lotto Ball 11 + Type: Etc + Weight: 10 + - Id: 7372 + AegisName: Lotto12 + Name: Lotto Ball 12 + Type: Etc + Weight: 10 + - Id: 7373 + AegisName: Lotto13 + Name: Lotto Ball 13 + Type: Etc + Weight: 10 + - Id: 7374 + AegisName: Lotto14 + Name: Lotto Ball 14 + Type: Etc + Weight: 10 + - Id: 7375 + AegisName: Lotto15 + Name: Lotto Ball 15 + Type: Etc + Weight: 10 + - Id: 7376 + AegisName: Lotto16 + Name: Lotto Ball 16 + Type: Etc + Weight: 10 + - Id: 7377 + AegisName: Lotto17 + Name: Lotto Ball 17 + Type: Etc + Weight: 10 + - Id: 7378 + AegisName: Lotto18 + Name: Lotto Ball 18 + Type: Etc + Weight: 10 + - Id: 7379 + AegisName: Lotto19 + Name: Lotto Ball 19 + Type: Etc + Weight: 10 + - Id: 7380 + AegisName: Lotto20 + Name: Lotto Ball 20 + Type: Etc + Weight: 10 + - Id: 7381 + AegisName: Lotto21 + Name: Lotto Ball 21 + Type: Etc + Weight: 10 + - Id: 7382 + AegisName: Lotto22 + Name: Lotto Ball 22 + Type: Etc + Weight: 10 + - Id: 7383 + AegisName: Lotto23 + Name: Lotto Ball 23 + Type: Etc + Weight: 10 + - Id: 7384 + AegisName: Lotto24 + Name: Lotto Ball 24 + Type: Etc + Weight: 10 + - Id: 7385 + AegisName: Lotto25 + Name: Lotto Ball 25 + Type: Etc + Weight: 10 + - Id: 7386 + AegisName: Lotto26 + Name: Lotto Ball 26 + Type: Etc + Weight: 10 + - Id: 7387 + AegisName: Lotto27 + Name: Lotto Ball 27 + Type: Etc + Weight: 10 + - Id: 7388 + AegisName: Lotto28 + Name: Lotto Ball 28 + Type: Etc + Weight: 10 + - Id: 7389 + AegisName: Lotto29 + Name: Lotto Ball 29 + Type: Etc + Weight: 10 + - Id: 7390 + AegisName: Lotto30 + Name: Lotto Ball 30 + Type: Etc + Weight: 10 + - Id: 7391 + AegisName: Lotto31 + Name: Lotto Ball 31 + Type: Etc + Weight: 10 + - Id: 7392 + AegisName: Lotto32 + Name: Lotto Ball 32 + Type: Etc + Weight: 10 + - Id: 7393 + AegisName: Lotto33 + Name: Lotto Ball 33 + Type: Etc + Weight: 10 + - Id: 7394 + AegisName: Lotto34 + Name: Lotto Ball 34 + Type: Etc + Weight: 10 + - Id: 7395 + AegisName: Lotto35 + Name: Lotto Ball 35 + Type: Etc + Weight: 10 + - Id: 7396 + AegisName: Lotto36 + Name: Lotto Ball 36 + Type: Etc + Weight: 10 + - Id: 7397 + AegisName: Lotto37 + Name: Lotto Ball 37 + Type: Etc + Weight: 10 + - Id: 7398 + AegisName: Lotto38 + Name: Lotto Ball 38 + Type: Etc + Weight: 10 + - Id: 7399 + AegisName: Word_Card01 + Name: Selamat + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7400 + AegisName: Word_Card02 + Name: Hari + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7401 + AegisName: Word_Card03 + Name: Kemerdekaan + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7402 + AegisName: Word_Card04 + Name: Republik + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7403 + AegisName: Word_Card05 + Name: Indonesia + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7404 + AegisName: Word_Card06 + Name: Ke-60 + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7405 + AegisName: Crushed_Can + Name: Crushed Can + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7406 + AegisName: Moon_Cake1 + Name: Yuebing + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7407 + AegisName: Moon_Cake2 + Name: Yuebing + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7408 + AegisName: Moon_Cake3 + Name: Yuebing + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7409 + AegisName: Moon_Cake4 + Name: Yuebing + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7410 + AegisName: Moon_Cake5 + Name: Yuebing + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7411 + AegisName: Moon_Cake6 + Name: Yuebing + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7412 + AegisName: Moon_Cake7 + Name: Yuebing + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7413 + AegisName: Moon_Cake8 + Name: Yuebing + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7414 + AegisName: Moon_Cake9 + Name: Yuebing + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7415 + AegisName: Stone_Of_Summons + Name: Summoning Stone + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7416 + AegisName: Letter_Of_Recommend + Name: Letter of Recommendation + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7417 + AegisName: Mission_ScrollA + Name: Written Request(A) + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7418 + AegisName: Mission_ScrollB + Name: Written Request(B) + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7419 + AegisName: Embryo_HandBook + Name: Embryo Creation Guide + Type: Etc + Buy: 48000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7420 + AegisName: Skull_ + Name: Skull + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7421 + AegisName: Key_Red + Name: Red Key + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7422 + AegisName: Key_Yellow + Name: Yellow Key + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7423 + AegisName: Key_Blue + Name: Blue Key + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7424 + AegisName: Key_Green + Name: Green Key + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7425 + AegisName: Key_Black + Name: Black Key + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7426 + AegisName: Magic_Gem_Red + Name: Red Charm Stone + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7427 + AegisName: Magic_Gem_Yellow + Name: Yellow Charm Stone + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7428 + AegisName: Magic_Gem_Blue + Name: Blue Charm Stone + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7429 + AegisName: Magic_Gem_Green + Name: Green Charm Stone + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7430 + AegisName: Magic_Gem_Black + Name: Black Charm Stone + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7431 + AegisName: Several_Books + Name: Pile of Books + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7432 + AegisName: Leather_Pouch + Name: Leather Pouch + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7433 + AegisName: Scroll + Name: Blank Scroll + Type: Etc + Buy: 4000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7434 + AegisName: Elemental_Potion_Book + Name: Elemental Potion Creation Guide + Type: Etc + Buy: 100000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7435 + AegisName: Golden_Bracelet + Name: Golden Ornament + Type: Etc + Buy: 1907 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7436 + AegisName: Piece_Of_Memory_Green + Name: Fragment of Agony + Type: Etc + Buy: 1506 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7437 + AegisName: Piece_Of_Memory_Purple + Name: Fragment of Misery + Type: Etc + Buy: 1506 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7438 + AegisName: Piece_Of_Memory_Blue + Name: Fragment of Hatred + Type: Etc + Buy: 1506 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7439 + AegisName: Piece_Of_Memory_Red + Name: Fragment of Despair + Type: Etc + Buy: 1506 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7440 + AegisName: Red_Feather + Name: Red Feather + Type: Etc + Buy: 1335 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7441 + AegisName: Blue_Feather + Name: Blue Feather + Type: Etc + Buy: 1408 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7442 + AegisName: Cursed_Seal + Name: Cursed Seal + Type: Etc + Buy: 1332 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7443 + AegisName: Tri_Headed_Dragon_Head + Name: Three-Headed Dragon's Head + Type: Etc + Buy: 956 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7444 + AegisName: Treasure_Box + Name: Treasure Box + Type: Etc + Buy: 300000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7445 + AegisName: Dragonball_Green + Name: Green Bijou + Type: Etc + Buy: 887 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7446 + AegisName: Dragonball_Blue + Name: Blue Bijou + Type: Etc + Buy: 887 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7447 + AegisName: Dragonball_Red + Name: Red Bijou + Type: Etc + Buy: 887 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7448 + AegisName: Dragonball_Yellow + Name: Yellow Bijou + Type: Etc + Buy: 887 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7449 + AegisName: Bloody_Page + Name: Bloody Page + Type: Etc + Buy: 681 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7450 + AegisName: Piece_Of_Bone_Armor + Name: Skeletal Armor Piece + Type: Etc + Buy: 2050 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7451 + AegisName: Scale_Of_Red_Dragon + Name: Fire Dragon Scale + Type: Etc + Buy: 1852 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7452 + AegisName: Yellow_Spice + Name: Yellow Spice + Type: Etc + Buy: 750 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7453 + AegisName: Sweet_Sauce + Name: Sweet Sauce + Type: Etc + Buy: 525 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7454 + AegisName: Plain_Sauce + Name: Savory Sauce + Type: Etc + Buy: 525 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7455 + AegisName: Hot_Sauce + Name: Spicy Sauce + Type: Etc + Buy: 525 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7456 + AegisName: Red_Spice + Name: Red Spice + Type: Etc + Buy: 750 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7457 + AegisName: Cooking_Oil + Name: Cooking Oil + Type: Etc + Buy: 375 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7458 + AegisName: Baphomet's_Horn + Name: Fortune Horn + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7459 + AegisName: RAMADAN_ + Name: Idul Fitri Card + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7460 + AegisName: Niflheim_Ticket + Name: Niflheim Express Ticket + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7461 + AegisName: BlueCard_A + Name: Blue A Card + Type: Etc + Weight: 10 + - Id: 7462 + AegisName: BlueCard_E + Name: Blue E Card + Type: Etc + Weight: 10 + - Id: 7463 + AegisName: BlueCard_F + Name: Blue F Card + Type: Etc + Weight: 10 + - Id: 7464 + AegisName: BlueCard_H + Name: Blue H Card + Type: Etc + Weight: 10 + - Id: 7465 + AegisName: BlueCard_L + Name: Blue L Card + Type: Etc + Weight: 10 + - Id: 7466 + AegisName: BlueCard_N + Name: Blue N Card + Type: Etc + Weight: 10 + - Id: 7467 + AegisName: BlueCard_O + Name: Blue O Card + Type: Etc + Weight: 10 + - Id: 7468 + AegisName: BlueCard_P + Name: Blue P Card + Type: Etc + Weight: 10 + - Id: 7469 + AegisName: BlueCard_U + Name: Blue U Card + Type: Etc + Weight: 10 + - Id: 7470 + AegisName: BlueCard_W + Name: Blue W Card + Type: Etc + Weight: 10 + - Id: 7471 + AegisName: BlueCard_Y + Name: Blue Y Card + Type: Etc + Weight: 10 + - Id: 7472 + AegisName: Cookbook01 + Name: Level 1 Cookbook + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7473 + AegisName: Cookbook02 + Name: Level 2 Cookbook + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7474 + AegisName: Cookbook03 + Name: Level 3 Cookbook + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7475 + AegisName: Cookbook04 + Name: Level 4 Cookbook + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7476 + AegisName: Cookbook05 + Name: Level 5 Cookbook + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7477 + AegisName: Cookbook06 + Name: Level 6 Cookbook + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7478 + AegisName: Cookbook07 + Name: Level 7 Cookbook + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7479 + AegisName: Cookbook08 + Name: Level 8 Cookbook + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7480 + AegisName: Cookbook09 + Name: Level 9 Cookbook + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7481 + AegisName: Cookbook10 + Name: Level 10 Cookbook + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7482 + AegisName: Pot + Name: Pot + Type: Etc + Buy: 150 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7483 + AegisName: Key_Of_Seal + Name: Key of the Seal + Type: Etc + - Id: 7484 + AegisName: Warrior_Symbol + Name: Symbol of a Brave Warrior + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7485 + AegisName: 2nd_Floor_Pass + Name: Cloud General + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7486 + AegisName: 3rd_Floor_Pass + Name: Wind General + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7487 + AegisName: Tavern_Wine + Name: Culinary Wine + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7488 + AegisName: Delivery_Box + Name: Delivery Package + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7489 + AegisName: Villa_Spare_Key + Name: Cottage Key + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7490 + AegisName: Kyll_Hire_Letter + Name: Letter to Elly + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7491 + AegisName: Iron_Box + Name: Steel Box + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7492 + AegisName: Yellow_Key_Card + Name: Yellow Keycard + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7493 + AegisName: Golden_Key + Name: Golden Key + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7494 + AegisName: Kiel_Button + Name: Luxurious Button + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7495 + AegisName: Blue_Key_Card + Name: Blue Keycard + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7496 + AegisName: Red_Key_Card + Name: Red Keycard + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7497 + AegisName: Steel_Piece + Name: Metal Fragment + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7498 + AegisName: Rosimier_Key + Name: Rosimier Mansion Keys + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7499 + AegisName: Family_Portrait + Name: Family Portrait + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7500 + AegisName: Elysia_Portrait + Name: Woman's Portrait + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7501 + AegisName: Kyll_Hire_Letter2 + Name: K.H's Letter + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7502 + AegisName: Piece_Memo_Of_James + Name: James's Note + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7503 + AegisName: Man_Portrait + Name: Man's Portrait + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7504 + AegisName: Toy_Motor + Name: Power Device + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7505 + AegisName: Toy_Key + Name: Toy Key + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7506 + AegisName: Black_Key_Card + Name: Black Keycard + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7507 + AegisName: Sturdy_Iron_Piece + Name: Solid Iron Piece + Type: Etc + Buy: 842 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7508 + AegisName: Elysia_Ring + Name: Allysia's Ring + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7509 + AegisName: Fancy_Key_Card + Name: Luxurious Keycard + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7510 + AegisName: Valhalla_Flower + Name: Valhalla's Flower + Type: Etc + Buy: 200000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7511 + AegisName: Rune_Of_Darkness + Name: Rune of Darkness + Type: Etc + Buy: 2526 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7512 + AegisName: Burnt_Parts + Name: Burnt Part + Type: Etc + Buy: 1600 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7513 + AegisName: Pocket_Watch__ + Name: Pocket Watch + Type: Etc + Buy: 3420 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7514 + AegisName: Monster_Ticket + Name: Monster Ticket + Type: Etc + Buy: 2 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7515 + AegisName: Marvelous_Medal + Name: Prize Medal + Type: Etc + Buy: 2 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7516 + AegisName: Green_Key_Card + Name: Green Keycard + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7517 + AegisName: Gold_Coin_ + Name: Gold Coin + Type: Etc + Buy: 1000 + Weight: 100 + - Id: 7518 + AegisName: Women's_Medal + Name: Women's Medal + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7519 + AegisName: Money_Envelope + Name: Handsel + Type: Etc + Weight: 10 + - Id: 7520 + AegisName: Chinese_Scroll + Name: Please Be Rich + Type: Etc + Weight: 10 + - Id: 7521 + AegisName: Flame_Stone + Name: Flame Stone + Type: Etc + Buy: 150 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7522 + AegisName: Ice_Stone + Name: Ice Stone + Type: Etc + Buy: 150 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7523 + AegisName: Wind_Stone + Name: Wind Stone + Type: Etc + Buy: 150 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7524 + AegisName: Shadow_Orb + Name: Shadow Orb + Type: Etc + Buy: 300 + Weight: 20 + Flags: + BuyingStore: true + - Id: 7525 + AegisName: Summer_Feast_Ticket + Name: Summer Festival Ticket + Type: Etc + Buy: 10 + Weight: 10 + - Id: 7526 + AegisName: Manuscript_Paper + Name: Manuscript Paper + Type: Etc + Buy: 2 + - Id: 7527 + AegisName: Life_Book + Name: Book About True Life + Type: Etc + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7528 + AegisName: Id_Lottery_Ticket + Name: Lottery Ticket + Type: Etc + - Id: 7529 + AegisName: Stolen_Sandals + Name: Stolen Sandal + Type: Etc + - Id: 7530 + AegisName: Travel_Brochure_01 + Name: Travel Brochure [Amatsu] + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7531 + AegisName: Travel_Brochure_02 + Name: Travel Brochure [Kunlun] + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7532 + AegisName: Travel_Brochure_03 + Name: Travel Brochure [Luoyang] + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7533 + AegisName: Travel_Brochure_04 + Name: Travel Brochure [Ayothaya] + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7534 + AegisName: Photo_Album_01 + Name: Amatsu Completed Photo Album + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7535 + AegisName: Photo_Album_02 + Name: Kunlun Completed Photo Album + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7536 + AegisName: Photo_Album_03 + Name: Luoyang Completed Photo Album + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7537 + AegisName: Photo_Album_04 + Name: Ayothaya Completed Photo Album + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7538 + AegisName: Sifted_Sand + Name: Sand for Work + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7539 + AegisName: Poring_Coin + Name: Poring Coin + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7540 + AegisName: Lotto39 + Name: Lotto Ball 39 + Type: Etc + Weight: 10 + - Id: 7541 + AegisName: Lotto40 + Name: Lotto Ball 40 + Type: Etc + Weight: 10 + - Id: 7542 + AegisName: Lotto41 + Name: Lotto Ball 41 + Type: Etc + Weight: 10 + - Id: 7543 + AegisName: Lotto42 + Name: Lotto Ball 42 + Type: Etc + Weight: 10 + - Id: 7544 + AegisName: Lotto43 + Name: Lotto Ball 43 + Type: Etc + Weight: 10 + - Id: 7545 + AegisName: Lotto44 + Name: Lotto Ball 44 + Type: Etc + Weight: 10 + - Id: 7546 + AegisName: Lotto45 + Name: Lotto Ball 45 + Type: Etc + Weight: 10 + - Id: 7547 + AegisName: Soccer_Ball + Name: Soccer Ball + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7548 + AegisName: Soccer_Shoes + Name: Soccer Shoes + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7549 + AegisName: Brazilian_Flag + Name: Brazilian Flag + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7550 + AegisName: Ticket01 + Name: 6.13 Ticket + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7551 + AegisName: Ticket02 + Name: 6.18 Ticket + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7552 + AegisName: Ticket03 + Name: 6.22 Ticket + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7553 + AegisName: Lotus_Flower + Name: Lotus Flower + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7554 + AegisName: Striped_Candle + Name: Striped Candle + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7555 + AegisName: Green_Incense + Name: Green Incense + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7556 + AegisName: Longing_Heart + Name: Longing Heart + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7557 + AegisName: Invitation_Letter + Name: Invitation Letter + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7558 + AegisName: Invitation_Ticket + Name: Invitation Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7559 + AegisName: Key_Of_Flower_Garden + Name: Key to the Secret Garden + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7560 + AegisName: Longing_Heart2 + Name: Longing Heart + Type: Etc + - Id: 7561 + AegisName: Ice_Heart + Name: Glacial Heart + Type: Etc + Buy: 606 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7562 + AegisName: Ice_Scale + Name: Ice Scale + Type: Etc + Buy: 3020 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7563 + AegisName: Bloody_Rune + Name: Bloody Rune + Type: Etc + Buy: 2016 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7564 + AegisName: Rotten_Meat + Name: Rotten Meat + Type: Etc + Buy: 102 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7565 + AegisName: Sticky_Poison + Name: Sticky Poison + Type: Etc + Buy: 350 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7566 + AegisName: Will_Of_Darkness_ + Name: Will of Red Darkness + Type: Etc + Buy: 1530 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7567 + AegisName: Suspicious_Hat + Name: Suspicious Hat + Type: Etc + Buy: 1290 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7568 + AegisName: White_Mask + Name: White Mask + Type: Etc + Buy: 1060 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7569 + AegisName: Hammer_Of_Wind + Name: Wind Hammer + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7570 + AegisName: Temple_Lottery_Ticket + Name: Temple Lottery Ticket + Type: Etc + Weight: 10 + - Id: 7571 + AegisName: Diary_Of_Blue + Name: Bruspetti's Diary + Type: Etc + - Id: 7572 + AegisName: Magic_Necklace + Name: Ashy Necklace + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7573 + AegisName: Magic_Necklace_ + Name: Sparkling Necklace + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7574 + AegisName: Ice_Particle + Name: Freezing Snow Powder + Type: Etc + Flags: + BuyingStore: true + - Id: 7575 + AegisName: Red_Jewel_ + Name: Red Jewel + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7576 + AegisName: Blue_Jewel_ + Name: Blue Jewel + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7577 + AegisName: Golden_Jewel_ + Name: Yellow Jewel + Type: Etc + Buy: 20 + Weight: 50 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7578 + AegisName: Anti_Spell_Bead + Name: Countermagic Crystal + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7579 + AegisName: Silk_Handkerchief + Name: Silk Handkerchief of Zhi Nu + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7580 + AegisName: Black_Bead + Name: Black Marble + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7581 + AegisName: Anniversary_Ticket + Name: Celebration Document + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7582 + AegisName: Gem_Of_Ruin + Name: Jewel of Destruction + Type: Etc + Buy: 10 + Weight: 10 + - Id: 7583 + AegisName: Evil_Mind + Name: Evil Mind + Type: Etc + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7584 + AegisName: Proof_Of_Guard1 + Name: Guard's First Proof + Type: Etc + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7585 + AegisName: Proof_Of_Guard2 + Name: Guard's Second Proof + Type: Etc + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7586 + AegisName: Proof_Of_Guard3 + Name: Guard's Third Proof + Type: Etc + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7587 + AegisName: Proof_Of_Guard4 + Name: Guard's Fourth Proof + Type: Etc + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7588 + AegisName: IPOD_Ticker + Name: IPOD Coupon + Type: Etc + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7589 + AegisName: Moon_Cake10 + Name: Lettered Moon Snack 01 + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7590 + AegisName: Moon_Cake11 + Name: Lettered Moon Snack 02 + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7591 + AegisName: Moon_Cake12 + Name: Lettered Moon Snack 03 + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7592 + AegisName: Moon_Cake13 + Name: Lettered Moon Snack 04 + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7593 + AegisName: Moon_Cake14 + Name: Lettered Moon Snack 05 + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7594 + AegisName: Sonia's_Letter + Name: Sonia's Letter + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7595 + AegisName: Unique_Sword + Name: Special Sword + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7596 + AegisName: Unique_Shield + Name: Special Shield + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7597 + AegisName: Magic_Stone + Name: Magic Stone + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7598 + AegisName: BlueCard_I + Name: Blue I Card + Type: Etc + Weight: 10 + - Id: 7599 + AegisName: BlueCard_D + Name: Blue D Card + Type: Etc + Weight: 10 + - Id: 7600 + AegisName: BlueCard_K + Name: Blue K Card + Type: Etc + Weight: 10 + - Id: 7601 + AegisName: BlueCard_S + Name: Blue S Card + Type: Etc + Weight: 10 + - Id: 7602 + AegisName: BlueCard_R + Name: Blue R Card + Type: Etc + Weight: 10 + - Id: 7603 + AegisName: RO_Party_Ticket + Name: RO Party Invitation Ticket + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7604 + AegisName: Flour + Name: Flour + Type: Etc + Weight: 10 + - Id: 7605 + AegisName: Chicken_Egg + Name: Chicken Egg + Type: Etc + Weight: 10 + - Id: 7606 + AegisName: Coin + Name: Token of the Ox + Type: Etc + Weight: 10 + - Id: 7607 + AegisName: Evil_Dragon_Head + Name: Neck of Demon Dragon + Type: Etc + Buy: 10 + Weight: 10 + - Id: 7608 + AegisName: Premium_Ticket + Name: Premium Ticket + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7609 + AegisName: Pumpkin_Mojo + Name: Pumpkin Mojo + Type: Etc + Weight: 10 + - Id: 7610 + AegisName: Food_Ticket + Name: Food Exchange Ticket + Type: Etc + Buy: 1000 + Weight: 10 + - Id: 7611 + AegisName: Fox_Symbol + Name: Symbol of Fox + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7612 + AegisName: Heart_Of_Fox_Queen + Name: Heart of Queen Fox + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7613 + AegisName: Small_Rice_Dough + Name: Small Rice Cake Dough + Type: Etc + - Id: 7614 + AegisName: Special_Packing_Paper + Name: Wrapping Paper + Type: Etc + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7615 + AegisName: MVP_Ticket + Name: MVP Voucher + Type: Etc + Buy: 10 + Weight: 10 + - Id: 7616 + AegisName: Mini_Boss_Ticket + Name: Miniboss Voucher + Type: Etc + Buy: 10 + Weight: 10 + - Id: 7617 + AegisName: Monster_Ticket_ + Name: Monster Voucher + Type: Etc + Buy: 10 + Weight: 10 + - Id: 7618 + AegisName: Monster_Crystal + Name: Monster Crystal + Type: Etc + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7619 + AegisName: Enriched_Elunium + Name: Enriched Elunium + Type: Etc + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7620 + AegisName: Enriched_Oridecon + Name: Enriched Oridecon + Type: Etc + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7621 + AegisName: Token_Of_Siegfried + Name: Token Of Siegfried + Type: Etc + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7622 + AegisName: New_Style_Coupon + Name: Hairstyle Coupon + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7623 + AegisName: Name_Change_Coupon + Name: Ticket Of Identification + Type: Etc + Buy: 2 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7624 + AegisName: Spring_Stanza23 + Name: Spring Stanza23 + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7625 + AegisName: Registration_Ticket + Name: Registration Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7626 + AegisName: Bubble_Gum_Token + Name: Bubble Gum Token + Type: Etc + Buy: 10 + Weight: 10 + - Id: 7627 + AegisName: Sage_Key + Name: Sage Key + Type: Etc + - Id: 7628 + AegisName: Idiot_Key + Name: Idiot Key + Type: Etc + - Id: 7629 + AegisName: Pink_Gift_Box + Name: Pink Gift Box + Type: Etc + - Id: 7630 + AegisName: Clean_Beach_Brush + Name: Clean Beach Brush + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7631 + AegisName: Trash_Debris + Name: Trash Debris + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7632 + AegisName: To_Afterworld_Record + Name: Terrible Report Card + Type: Etc + - Id: 7633 + AegisName: To_Heaven_Record + Name: Heavensent Report Card + Type: Etc + - Id: 7634 + AegisName: Rose_Of_Father + Name: Father Rose + Type: Etc + - Id: 7635 + AegisName: Perfume_Pouch + Name: Incense Bag + Type: Etc + Buy: 100 + - Id: 7636 + AegisName: Magic_Potion_Bottle + Name: Magic Potion Bottle + Type: Etc + - Id: 7637 + AegisName: Father_Giftbox + Name: Father Giftbox + Type: Etc + Weight: 10 + - Id: 7638 + AegisName: TW_Green_Box + Name: TW Green Box + Type: Etc + Weight: 10 + - Id: 7639 + AegisName: TW_Red_Box + Name: TW Red Box + Type: Etc + Weight: 10 + - Id: 7640 + AegisName: Butterfly_Hair_Decoration + Name: Butterfly Hair Decoration + Type: Etc + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7641 + AegisName: Medical_Cure_Box + Name: Medical Cure Box + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7642 + AegisName: Bloody_Coin + Name: Bloody Coin + Type: Etc + Buy: 10 + Flags: + BuyingStore: true + - Id: 7643 + AegisName: Bloody_Letter + Name: Bloody Letter + Type: Etc + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7644 + AegisName: Unsent_Letter + Name: Unsent Letter + Type: Etc + Buy: 10 + Flags: + BuyingStore: true + - Id: 7646 + AegisName: RO_Luk_Bookmark + Name: RO Luk Bookmark + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7647 + AegisName: Taiwan_Luk_Coin + Name: Taiwan Luk Coin + Type: Etc + - Id: 7648 + AegisName: Snake_Bookmark + Name: Snake Bookmark + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7649 + AegisName: Big_Luk_Bookmark + Name: Big Luk Bookmark + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7651 + AegisName: Mystery_Egg + Name: Mystery Egg + Type: Etc + Buy: 10 + Weight: 10 + - Id: 7663 + AegisName: Full_Metal_Jacket + Name: Full Metal Jacket + Type: Etc + Buy: 200 + Weight: 2 + Attack: 10 + - Id: 7664 + AegisName: Shooting_Mine + Name: Grenade Launcher + Type: Etc + Buy: 450 + Weight: 3 + Attack: 10 + - Id: 7665 + AegisName: Dragon_Tail_Missile + Name: Dragon Tail Missile + Type: Etc + Buy: 1500 + Weight: 100 + Attack: 10 + - Id: 7666 + AegisName: TimeTravel_Scroll + Name: Time Travel Scroll + Type: Etc + Buy: 20 + - Id: 7667 + AegisName: Abandoned_Machine + Name: Abandoned Machine + Type: Etc + Buy: 20 + - Id: 7668 + AegisName: Clean_Bandage + Name: Clean Bandage + Type: Etc + Buy: 20 + - Id: 7669 + AegisName: Rubbing_Alchohol + Name: Rubbing Alchohol + Type: Etc + Buy: 20 + - Id: 7670 + AegisName: Sour_Grass + Name: Sour Grass + Type: Etc + Buy: 20 + - Id: 7671 + AegisName: Firstaid_Kit + Name: First Aid Kit + Type: Etc + Buy: 20 + - Id: 7672 + AegisName: Relief_Food + Name: Relief Food + Type: Etc + Buy: 20 + - Id: 7674 + AegisName: Mysterious_Ingredient + Name: Mysterious Ingredient + Type: Etc + Buy: 20 + - Id: 7675 + AegisName: Mysterious_Doll + Name: Mysterious Doll + Type: Etc + - Id: 7676 + AegisName: Transmission_Coupon + Name: Transmission Coupon + Type: Etc + - Id: 7679 + AegisName: Oneclick_Weapon_7UP + Name: One Click Weapon 7UP + Type: Etc + - Id: 7680 + AegisName: Oneclick_Weapon_9UP + Name: One Click Weapon 9UP + Type: Etc + - Id: 7681 + AegisName: Oneclick_Armor_7UP + Name: One Click Armor 7UP + Type: Etc + - Id: 7682 + AegisName: Oneclick_Armor_9UP + Name: One Click Armor 9UP + Type: Etc + - Id: 7690 + AegisName: Special_Exchange_Coupons + Name: Special Exchange Coupons + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7701 + AegisName: Dragon_Spirit + Name: Soul + Type: Etc + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7702 + AegisName: Special_Cogwheel + Name: Special Cogwheel + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7703 + AegisName: Piece_Of_Cogwheel + Name: Piece of Cogwheel + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7704 + AegisName: Broken_Thermometer + Name: Broken Thermometer + Type: Etc + Buy: 2 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7705 + AegisName: Note_Of_Geologist + Name: Note of Geologist + Type: Etc + Buy: 2 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7706 + AegisName: Spoiled_Carrot_Juice + Name: Broken Carrot Juice + Type: Etc + Buy: 20 + Weight: 40 + - Id: 7707 + AegisName: Spoiled_Banana_Juice + Name: Broken Banana Juice + Type: Etc + Buy: 20 + Weight: 40 + - Id: 7708 + AegisName: Spoiled_Apple_Juice + Name: Broken Apple Juice + Type: Etc + Buy: 20 + Weight: 40 + - Id: 7709 + AegisName: Spoiled_Grape_Juice + Name: Broken Grape Juice + Type: Etc + Buy: 20 + Weight: 40 + - Id: 7710 + AegisName: Black_Gemstone + Name: Black Gemstone + Type: Etc + Buy: 600 + Weight: 30 + - Id: 7711 + AegisName: Update_Ticket + Name: Event Ticket + Type: Etc + Weight: 10 + - Id: 7712 + AegisName: Nokia5500 + Name: Nokia 5500 + Type: Etc + Weight: 10 + - Id: 7713 + AegisName: BlueCard_A_ + Name: Blue A(2) Card + Type: Etc + Weight: 10 + - Id: 7714 + AegisName: BlueCard_R_ + Name: Blue R(2) Card + Type: Etc + Weight: 10 + - Id: 7715 + AegisName: Handmade_Choco_Recipe + Name: Handmade Chocolate Recipe + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7716 + AegisName: Strawberry_Choco_Recipe + Name: Chocolate Strawberry Recipe + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7717 + AegisName: Choco_Tart_Recipe + Name: Chocolate Tart Recipe + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7718 + AegisName: Cacao_Bean + Name: Cacao Bean + Type: Etc + Weight: 10 + - Id: 7719 + AegisName: BlueCard_G + Name: Blue G Card + Type: Etc + Weight: 10 + - Id: 7720 + AegisName: Gold_Coin_US + Name: Gold Coin + Type: Etc + Buy: 100 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7721 + AegisName: Treasure_Box_ + Name: Treasure Box + Type: Etc + Buy: 100 + Weight: 500 + - Id: 7722 + AegisName: Debt_Note + Name: Debt Note + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7723 + AegisName: Diamond_Of_Ruin + Name: Diamond of Ruin + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7724 + AegisName: Forbidden_Secret_Art + Name: Forbidden Secret Art + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7725 + AegisName: Unlucky_Emerald + Name: Unlucky Emerald + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7726 + AegisName: Token_Of_King + Name: Token of King + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7727 + AegisName: HP_Doctor_Ticket + Name: HP Doctor Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7728 + AegisName: SP_Doctor_Ticket + Name: SP Doctor Ticket + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7729 + AegisName: Rok_Star_Badge + Name: Rok Star Badge + Type: Etc + Buy: 20 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7730 + AegisName: Mission_Certificate1 + Name: Mission Ticket 1 + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoSell: true + - Id: 7731 + AegisName: Mission_Certificate2 + Name: Mission Ticket 2 + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoSell: true + - Id: 7732 + AegisName: Mission_Certificate3 + Name: Mission Ticket 3 + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoSell: true + - Id: 7733 + AegisName: Mission_Certificate4 + Name: Mission Ticket 4 + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoSell: true + - Id: 7734 + AegisName: Mission_Certificate5 + Name: Mission Ticket 5 + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoSell: true + - Id: 7735 + AegisName: Mission_Certificate6 + Name: Mission Ticket 6 + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoSell: true + - Id: 7736 + AegisName: Mission_Certificate7 + Name: Mission Ticket 7 + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoSell: true + - Id: 7737 + AegisName: Mission_Certificate8 + Name: Mission Ticket 8 + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoSell: true + - Id: 7738 + AegisName: Mission_Certificate9 + Name: Mission Ticket 9 + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoSell: true + - Id: 7739 + AegisName: Mission_Certificate10 + Name: Mission Ticket 10 + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoSell: true + - Id: 7740 + AegisName: Mission_Certificate11 + Name: Mission Ticket 11 + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoSell: true + - Id: 7741 + AegisName: Mission_Certificate12 + Name: Mission Ticket 12 + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoSell: true + - Id: 7742 + AegisName: Kaong + Name: Kaong + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7743 + AegisName: Gulaman + Name: Gulaman + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7744 + AegisName: Leche_Flan + Name: Leche Flan + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7745 + AegisName: Ube_Jam + Name: Ube Jam + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7746 + AegisName: Sago + Name: Sago + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7747 + AegisName: Langka + Name: Langka + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7748 + AegisName: Sweet_Bean + Name: Sweet Beans + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7749 + AegisName: Sweet_Banana + Name: Sweet Bananas + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7750 + AegisName: Macapuno + Name: Macapuno + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7751 + AegisName: Old_White_Cloth + Name: Old White Cloth + Type: Etc + Buy: 550 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7752 + AegisName: Clattering_Skull + Name: Clattering Skull + Type: Etc + Buy: 840 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7753 + AegisName: Broken_Farming_Utensil + Name: Broken Farming Utensil + Type: Etc + Buy: 330 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7754 + AegisName: Broken_Crown + Name: Broken Crown + Type: Etc + Buy: 3000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7755 + AegisName: Research_Note + Name: Research Note + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7756 + AegisName: Sealed_Book + Name: Sealed Book + Type: Etc + Buy: 2000 + Weight: 10 + - Id: 7757 + AegisName: Mithril + Name: Mithril + Type: Etc + Buy: 20 + Weight: 100 + - Id: 7758 + AegisName: Star_Crystal + Name: Star Crystal + Type: Etc + Buy: 20 + Weight: 100 + - Id: 7759 + AegisName: Geology_Report + Name: Geologist's Report + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7760 + AegisName: Yaga_Magic_Book + Name: Yaga's Magic Book + Type: Etc + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7761 + AegisName: Magic_Gourd_Bottle + Name: Magic Gourd Bottle + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7762 + AegisName: Yaga_Pestle + Name: Yaga's Pestle + Type: Etc + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7763 + AegisName: Sticky_Herb + Name: Sticky Herb + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7764 + AegisName: High_Strength_Adhesive + Name: High Strength Adhesive + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7765 + AegisName: Yaga_Secret_Medicine + Name: Baba Yaga's Secret Medicine + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7766 + AegisName: Bok_Choy + Name: Bok Choy + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7767 + AegisName: Chung_E_Cake + Name: Green Maiden's Cake + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7768 + AegisName: Squid + Name: Squid + Type: Etc + Weight: 10 + - Id: 7769 + AegisName: Egg_Yolk + Name: Egg Yolk + Type: Etc + Weight: 10 + - Id: 7770 + AegisName: Sweet_Rice + Name: Sweet Rice + Type: Etc + Weight: 10 + - Id: 7771 + AegisName: Lotus_Leaf + Name: Lotus Leaf + Type: Etc + Weight: 10 + - Id: 7772 + AegisName: String + Name: String + Type: Etc + Weight: 10 + - Id: 7773 + AegisName: War_Badge + Name: Wat Badge + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7774 + AegisName: Chung_E_Ticket + Name: Green Maiden Ticket + Type: Etc + Weight: 10 + - Id: 7775 + AegisName: Spring_Rabbit_Ticket + Name: Spring Rabbit Ticket + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7776 + AegisName: Max_Weight_Up_Scroll + Name: Gym Pass + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7777 + AegisName: Gold_Box + Name: Sealed Golden Box + Type: Etc + Weight: 10 + - Id: 7778 + AegisName: Silver_Box + Name: Sealed Silver Box + Type: Etc + Weight: 10 + - Id: 7779 + AegisName: Gold_Key_TW + Name: Golden Key + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7780 + AegisName: Silver_Key + Name: Silver Key + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7781 + AegisName: Heart_Box + Name: Engrave Treasure Box + Type: Etc + Weight: 10 + - Id: 7782 + AegisName: Gold_Key77 + Name: Episode 13.1 Poporing Key + Type: Etc + Weight: 10 + Flags: + DropAnnounce: true + - Id: 7783 + AegisName: Silver_Key77 + Name: Episode 13.2 Poring Key + Type: Etc + Weight: 10 + Flags: + DropAnnounce: true + - Id: 7784 + AegisName: Fawner_Coupon1 + Name: Free Coupon 1 + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7785 + AegisName: Fawner_Coupon2 + Name: Free Coupon 2 + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7786 + AegisName: Fawner_Coupon3 + Name: Free Coupon 3 + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7787 + AegisName: Fawner_Coupon4 + Name: Free Coupon 4 + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7788 + AegisName: Fawner_Coupon5 + Name: Free Coupon 5 + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7789 + AegisName: Fawner_Coupon6 + Name: Free Coupon 6 + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7790 + AegisName: Fawner_Coupon7 + Name: Free Coupon 7 + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7791 + AegisName: Fawner_Coupon8 + Name: Free Coupon 8 + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7792 + AegisName: Guyak + Name: Guyak + Type: Etc + Weight: 10 + - Id: 7793 + AegisName: Golden_Apple + Name: Golden Apple + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7794 + AegisName: Fate_Of_Crow + Name: The Crow of Destiny + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7795 + AegisName: Mami_Photo_Album + Name: Mammi's Photo Album + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7796 + AegisName: Author_Autograph + Name: Author's Autograph + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7797 + AegisName: Author_Memo + Name: Author's Memo + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7798 + AegisName: Dark_Debris + Name: Fragment of Darkness + Type: Etc + Buy: 500 + Weight: 10 + - Id: 7799 + AegisName: Dark_Crystal + Name: Crystal of Darkness + Type: Etc + Buy: 10 + Weight: 10 + - Id: 7800 + AegisName: Golden_Apple_ + Name: Golden Charm Apple + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7801 + AegisName: Girl_Fan_Letter + Name: Girl's Letter + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7802 + AegisName: Autograph_Book + Name: Signature Notebook + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7803 + AegisName: Battle_Manual_TW + Name: Beginner's Field Manual + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7805 + AegisName: Brown_Ring + Name: Brown Jenoss's Family Ring + Type: Etc + Weight: 10 + - Id: 7806 + AegisName: Black_Anvil + Name: God Anvil + Type: Etc + Weight: 10 + - Id: 7807 + AegisName: Ore + Name: God Mineral + Type: Etc + Weight: 10 + - Id: 7808 + AegisName: Gold_Hammer + Name: God Hammer + Type: Etc + Weight: 10 + - Id: 7809 + AegisName: Gold_Furnace + Name: God Furnace + Type: Etc + Weight: 10 + - Id: 7810 + AegisName: Yellow_Cat_Eyed_Stone + Name: Symbol of Richness + Type: Etc + Weight: 10 + - Id: 7811 + AegisName: Gold_Anvil + Name: Anvil + Type: Etc + Weight: 10 + - Id: 7812 + AegisName: Red_Cat_Eyed_Stone + Name: Symbol of Bravery + Type: Etc + Weight: 10 + - Id: 7813 + AegisName: Th_Red_Ring + Name: Red Jenoss's Family Ring + Type: Etc + Weight: 10 + - Id: 7814 + AegisName: Green_Ring + Name: Green Jenoss's Family Ring + Type: Etc + Weight: 10 + - Id: 7815 + AegisName: Blue_Ring + Name: Blue Jenoss's Family Ring + Type: Etc + Weight: 10 + - Id: 7816 + AegisName: Blue_Cat_Eyed_Stone + Name: Symbol of Faith + Type: Etc + Weight: 10 + - Id: 7817 + AegisName: White_Cat_Eyed_Stone + Name: Symbol of Peace + Type: Etc + Weight: 10 + - Id: 7818 + AegisName: RJC_Golden_Necklace + Name: Jessur's Necklace + Type: Etc + Weight: 10 + - Id: 7819 + AegisName: Nokia5300 + Name: Nokia 5300 + Type: Etc + Weight: 10 + - Id: 7820 + AegisName: Morroc_Skin + Name: Piece of Morocc Skin + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7821 + AegisName: Green_Apple + Name: Green Apple + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7822 + AegisName: Whole_Barbecue + Name: Whole Barbecue + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7823 + AegisName: Meat_Veg_Skewer + Name: Meat Veg Skewer + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7824 + AegisName: Spirit_Liquor + Name: Spirit Liquor + Type: Etc + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7825 + AegisName: Heroic_Stone + Name: Heroic Stone + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7826 + AegisName: Continental_Guard_Paper + Name: Continental Guard Paper + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7827 + AegisName: Mineral_Report + Name: Mineral Evals + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7828 + AegisName: BF_Badge1 + Name: Bravery Badge + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7829 + AegisName: BF_Badge2 + Name: Valor Badge + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7830 + AegisName: Goddess_Tear + Name: Goddess Tear + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7831 + AegisName: Valkyrie_Token + Name: Valkyrie's Token + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7832 + AegisName: Brynhild_Armor_Piece + Name: Brynhild Armor Piece + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7833 + AegisName: Hero_Remains + Name: Hero's Remains + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7834 + AegisName: Andvari_Ring + Name: Andvari's Ring + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7835 + AegisName: Dusk_Glow + Name: Dusk Glow + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7836 + AegisName: Dawn_Essence + Name: Dawn Essence + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7837 + AegisName: Cold_Moonlight + Name: Cold Moonlight + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7838 + AegisName: Hazy_Starlight + Name: Hazy Starlight + Type: Etc + Buy: 1 + Weight: 500 + Flags: + BuyingStore: true + - Id: 7839 + AegisName: Crystal_Key + Name: Crystal Key + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7840 + AegisName: Valkyrie_Gift + Name: Valkyrie's Gift + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7841 + AegisName: Spotted_Paper + Name: Stained Piece Of Paper + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7842 + AegisName: Torn_Paper + Name: Torn Piece Of Paper + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7843 + AegisName: Old_Paper + Name: Old Piece Of Paper + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7844 + AegisName: Burnt_Paper + Name: Burnt Pieces Of Paper + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7845 + AegisName: Copy_Of_Spotted_Paper + Name: Copy Of Spotted Paper + Type: Etc + Weight: 10 + - Id: 7846 + AegisName: Copy_Of_Torn_Paper + Name: Copy Of Torn Paper + Type: Etc + Weight: 10 + - Id: 7847 + AegisName: Copy_Of_Old_Paper + Name: Copy Of Old Paper + Type: Etc + Weight: 10 + - Id: 7848 + AegisName: Copy_Of_Burnt_Paper + Name: Copy Of Burnt Paper + Type: Etc + Weight: 10 + - Id: 7849 + AegisName: Soul_Crystal + Name: Soul Crystal + Type: Etc + Weight: 10 + - Id: 7850 + AegisName: Wooden_Block_ + Name: Wooden Block + Type: Etc + Buy: 20 + Weight: 100 + - Id: 7851 + AegisName: Pass_F1 + Name: Wii Raffle Ticket + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7852 + AegisName: Pass_F2 + Name: Divx Player Raffle Ticket + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7853 + AegisName: Pass_F3 + Name: iPod nano Raffle Ticket + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7854 + AegisName: Pass_CF + Name: Comodo Festival Ticket + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7855 + AegisName: Heart + Name: Heart + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7856 + AegisName: Girl_Bunch_Of_Flower_ + Name: Girl's Bouquet + Type: Etc + Buy: 20 + Weight: 50 + - Id: 7857 + AegisName: Handmade_Kitty_Doll + Name: Hand-made Kitty Doll + Type: Etc + Buy: 20 + Weight: 30 + - Id: 7858 + AegisName: Dragonball_Yellow_ + Name: Dragonball Yellow + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7859 + AegisName: Game_Ticket + Name: Game Ticket + Type: Etc + Buy: 20 + Weight: 100 + - Id: 7860 + AegisName: Peeps + Name: Peeps + Type: Etc + Weight: 50 + - Id: 7861 + AegisName: Jelly_Bean + Name: Jelly Bean + Type: Etc + Weight: 50 + - Id: 7862 + AegisName: Marshmallow + Name: Marshmallow + Type: Etc + Weight: 50 + - Id: 7863 + AegisName: GOLD_ID4 + Name: Special Gold + Type: Etc + Buy: 20 + Weight: 200 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7864 + AegisName: Love_Flower + Name: Love Flower + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7865 + AegisName: Gold_Pouch + Name: Gold Pouch + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7866 + AegisName: Certificate + Name: Certificate + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7867 + AegisName: SesamePouch + Name: Sesame Bag + Type: Etc + Buy: 10 + Weight: 100 + - Id: 7868 + AegisName: Water + Name: Fresh Water + Type: Etc + Buy: 10 + Weight: 100 + - Id: 7869 + AegisName: RicePouch + Name: Rice Pouch + Type: Etc + Buy: 10 + Weight: 100 + - Id: 7870 + AegisName: Corn + Name: Corn + Type: Etc + Buy: 5 + Weight: 20 + - Id: 7871 + AegisName: BeanPouch + Name: Bean Bag + Type: Etc + Buy: 10 + Weight: 20 + - Id: 7872 + AegisName: Grass + Name: Herb + Type: Etc + Buy: 10 + Weight: 30 + - Id: 7873 + AegisName: MVP_Monster_Scroll + Name: MVP Monster Scroll + Type: Etc + Buy: 10 + Weight: 10 + - Id: 7874 + AegisName: Monster_Scroll + Name: Create Monster Scroll + Type: Etc + Buy: 10 + Weight: 10 + - Id: 7875 + AegisName: Pirate_Box + Name: Pirate Treasure + Type: Etc + Buy: 300000 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7876 + AegisName: Gold_Key + Name: Golden Key + Type: Etc + Weight: 50 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7877 + AegisName: Red_Ring + Name: Red Ring + Type: Etc + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7878 + AegisName: Lusalka_Hair + Name: Lusalka's Hair + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7879 + AegisName: Golden_Thread + Name: Golden Thread + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7880 + AegisName: Babayaga_Silver_Spoon + Name: Baba Yaga's Silver Spoon + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7881 + AegisName: Book_Of_Magic + Name: Mystery Magic Book + Type: Etc + Weight: 50 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7882 + AegisName: Pointed_Branch + Name: Sharp Branch + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7883 + AegisName: Pointed_Wooden_Flute + Name: Wooden Flute + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7884 + AegisName: Jade_Plate + Name: Jade Plate + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7885 + AegisName: Sacred_Arrow + Name: Sacred Arrow + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7886 + AegisName: Bean_Paste + Name: Bean Paste + Type: Etc + Weight: 10 + - Id: 7887 + AegisName: Dried_Fruit_Box + Name: Dried Fruit Box + Type: Etc + Weight: 30 + - Id: 7888 + AegisName: Bag_Of_Nuts + Name: Bag of Nuts + Type: Etc + Weight: 30 + - Id: 7889 + AegisName: Chicken_Feed + Name: Chicken Feed + Type: Etc + Weight: 20 + - Id: 7891 + AegisName: Mug + Name: Mug + Type: Etc + Buy: 2 + Weight: 100 + - Id: 7892 + AegisName: Charcoal + Name: Charcoal + Type: Etc + Buy: 10 + Weight: 10 + - Id: 7893 + AegisName: Sulfur + Name: Sulphur + Type: Etc + Buy: 10 + Weight: 10 + - Id: 7894 + AegisName: Nitrate + Name: Nitrogen Acid + Type: Etc + Buy: 10 + Weight: 10 + - Id: 7895 + AegisName: TRO_Memory_Book01 + Name: Rama5 Book + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7896 + AegisName: TRO_Memory_Book02 + Name: Loykrathong Book + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7897 + AegisName: TRO_Memory_Book03 + Name: Constitution Book + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7898 + AegisName: VVS_Balmung + Name: VV Strong Balmung + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7899 + AegisName: Spiritualist_Dagger + Name: Dagger Of Psychic + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7900 + AegisName: Jenoss_Ring1 + Name: Jonathan Family Ring + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7901 + AegisName: Jenoss_Ring2 + Name: Jillberriel Family Ring + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7902 + AegisName: Jenoss_Ring3 + Name: Jessur Family Ring + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7903 + AegisName: Jenoss_Ring4 + Name: Jenoss Family Ring + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7904 + AegisName: Piano_Key + Name: Piano Key + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7905 + AegisName: Rok_Star_Badge_ + Name: Rok Star Badge + Type: Etc + Buy: 20 + Weight: 100 + - Id: 7906 + AegisName: Poppy_Wreath + Name: Poppy Wreath + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7907 + AegisName: Bobbin_Of_Goddess + Name: Bobbin Of Goddess + Type: Etc + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7908 + AegisName: Louis_Hair_Coupon + Name: Louise's Beauty Coupon + Type: Etc + Weight: 10 + - Id: 7909 + AegisName: Stolen_Cookie + Name: Stolen Cookie + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7910 + AegisName: Stolen_Candy + Name: Stolen Candy + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7911 + AegisName: Yulia_Hat + Name: Yulia's Hat + Type: Etc + Weight: 10 + - Id: 7912 + AegisName: Portable_Snowman + Name: Portable Snowman Machine + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7913 + AegisName: Test_Certificate + Name: Battle Test Certificate + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7914 + AegisName: Ancient_Document_TW + Name: Ancient Language Document + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7915 + AegisName: Copper_Coin_ + Name: Bronze Coin + Type: Etc + Weight: 10 + - Id: 7916 + AegisName: Silver_Coin_ + Name: Silver Coin + Type: Etc + Weight: 10 + - Id: 7917 + AegisName: Magic_Potion + Name: Magic Potion + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7918 + AegisName: Particle_Of_Memory + Name: Fragment Of Memory + Type: Etc + Buy: 2000 + Weight: 100 + - Id: 7919 + AegisName: Festival_Ticket + Name: Festival Ticket + Type: Etc + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7920 + AegisName: Hero's_Arsenal + Name: He's Arsenal + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7921 + AegisName: Essence_Of_Dragon + Name: Essence Of Dragon + Type: Etc + Buy: 1000 + Weight: 10 + - Id: 7922 + AegisName: RWC_Ticket + Name: RWC Voucher Items + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7923 + AegisName: KRATHONG_ + Name: Krathong + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7924 + AegisName: Gold_Paper + Name: Gold Paper + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7925 + AegisName: Silver_Paper + Name: Silver Paper + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7926 + AegisName: Incense + Name: Incense + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7927 + AegisName: Candle_TW + Name: Candle TW + Type: Etc + Buy: 20 + Weight: 10 + - Id: 7928 + AegisName: Brazilian_Flag_ + Name: Brazil National Flag + Type: Etc + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7929 + AegisName: Golden_Coin_ + Name: Gold Coin + Type: Etc + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7930 + AegisName: Cowking's_Nose_Ring + Name: Devil's Cattle Ring + Type: Etc + Weight: 1000 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7931 + AegisName: Poison_Kit + Name: Poison Kit + Type: Etc + Buy: 1 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7932 + AegisName: Poison_Herb_Nerium + Name: Poison Herb Nerium + Type: Etc + Buy: 1 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7933 + AegisName: Poison_Herb_Rantana + Name: Poison Herb Rantana + Type: Etc + Buy: 1 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7934 + AegisName: Poison_Herb_Makulata + Name: Poison Herb Makulata + Type: Etc + Buy: 1 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7935 + AegisName: Poison_Herb_Seratum + Name: Poison Herb Seratum + Type: Etc + Buy: 1 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7936 + AegisName: Poison_Herb_Scopolia + Name: Poison Herb Scoporia + Type: Etc + Buy: 1 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7937 + AegisName: Poison_Herb_Amoena + Name: Poison Herb Amoena + Type: Etc + Buy: 1 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7938 + AegisName: Light_Granule + Name: Light Granule + Type: Etc + Buy: 1500 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7939 + AegisName: Elder_Branch + Name: Elder Branch + Type: Etc + Buy: 1500 + Weight: 10 + Flags: + BuyingStore: true + - Id: 7940 + AegisName: Special_Alloy_Trap + Name: Special Alloy Trap + Type: Etc + Buy: 300 + Weight: 2 + Flags: + BuyingStore: true + - Id: 7941 + AegisName: Halloween_Ticket + Name: Halloween Ticket + Type: Etc + Buy: 10 + - Id: 7942 + AegisName: Letter_From_Chico + Name: Chico Cesar Letter + Type: Etc + - Id: 7943 + AegisName: Caskinya + Name: Caskinya + Type: Etc + - Id: 7944 + AegisName: Sealed_Box + Name: Sealed Box + Type: Etc + Buy: 10 + Weight: 10 + - Id: 7945 + AegisName: Almighty_Charm + Name: Universal Amulet + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7946 + AegisName: Valentine_Gold_Ring + Name: Gold Ring Of Valentine + Type: Etc + Buy: 10 + - Id: 7947 + AegisName: Valentine_Silver_Ring + Name: Silver Ring Of Valentine + Type: Etc + Buy: 10 + - Id: 7948 + AegisName: Box + Name: Box + Type: Etc + Buy: 10 + Weight: 10 + - Id: 7949 + AegisName: Woven_Wool + Name: Woven Wool + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7950 + AegisName: Ayothaya_Ticket + Name: Ayothaya Fest Ticket + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7951 + AegisName: Gold_Tulip + Name: Golden Tulip Flower + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7952 + AegisName: Gift_From_Romiros + Name: Gift Of Lomi Ross + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7953 + AegisName: Gift_From_Juliedge + Name: Gift Of Juliet + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7954 + AegisName: Festival_Ticket_ + Name: Summer Festival Ticket + Type: Etc + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7955 + AegisName: Lost_Card1 + Name: Lost Card1 + Type: Etc + Buy: 10 + - Id: 7956 + AegisName: Lost_Card2 + Name: Lost Card2 + Type: Etc + Buy: 10 + - Id: 7957 + AegisName: Lost_Card3 + Name: Lost Card3 + Type: Etc + Buy: 10 + - Id: 7958 + AegisName: Lost_Card4 + Name: Lost Card4 + Type: Etc + Buy: 10 + - Id: 7959 + AegisName: Ancient_Gold_Coin + Name: Ancient Gold Coin + Type: Etc + Trade: + Override: 100 + NoDrop: true + - Id: 7960 + AegisName: Ancient_Silver_Coin + Name: Ancient Silver Coin + Type: Etc + Trade: + Override: 100 + NoDrop: true + - Id: 7961 + AegisName: Weapon_Exchange + Name: Weapon Exchange + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7962 + AegisName: Treasure_Map1 + Name: Treasure Map1 + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7963 + AegisName: Treasure_Map2 + Name: Treasure Map2 + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7964 + AegisName: Treasure_Map3 + Name: Treasure Map3 + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7965 + AegisName: Treasure_Map4 + Name: Treasure Map4 + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7966 + AegisName: Weird_Parchment1 + Name: Weird Parchment1 + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7967 + AegisName: Weird_Parchment2 + Name: Weird Parchment2 + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7968 + AegisName: Weird_Parchment3 + Name: Weird Parchment3 + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7969 + AegisName: Weird_Parchment4 + Name: Weird Parchment4 + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 7970 + AegisName: Unwritten_Letter1 + Name: Unwritten Letter1 + Type: Etc + - Id: 7971 + AegisName: Unwritten_Letter2 + Name: Unwritten Letter2 + Type: Etc + - Id: 7972 + AegisName: Oath_Day_Letter + Name: Oath Day Letter + Type: Etc + - Id: 7973 + AegisName: Immortality_Egg + Name: Immortality Egg + Type: Etc + Buy: 20 + - Id: 7974 + AegisName: Illusion_Piece + Name: Illusion Piece + Type: Etc + Buy: 20 + - Id: 7975 + AegisName: Cupid_Choco + Name: Cupid Choco + Type: Etc + - Id: 7976 + AegisName: Gf_Magic_Coin + Name: Gf Magic Coin + Type: Etc + Buy: 20 + - Id: 7977 + AegisName: Hunting_Medal_Badge + Name: Hunting Medal Badge + Type: Etc + - Id: 7978 + AegisName: Spring_Stanza1 + Name: Spring Stanza1 + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7979 + AegisName: Spring_Stanza2 + Name: Spring Stanza2 + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7980 + AegisName: Spring_Stanza3 + Name: Spring Stanza3 + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7981 + AegisName: Spring_Stanza4 + Name: Spring Stanza4 + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7982 + AegisName: Spring_Stanza5 + Name: Spring Stanza5 + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7983 + AegisName: Spring_Stanza6 + Name: Spring Stanza6 + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7984 + AegisName: Spring_Stanza7 + Name: Spring Stanza7 + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7985 + AegisName: Spring_Stanza8 + Name: Spring Stanza8 + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7986 + AegisName: Spring_Stanza9 + Name: Spring Stanza9 + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7987 + AegisName: Spring_Stanza10 + Name: Spring Stanza10 + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7988 + AegisName: Spring_Stanza11 + Name: Spring Stanza11 + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7989 + AegisName: Spring_Stanza12 + Name: Spring Stanza12 + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7990 + AegisName: Spring_Stanza13 + Name: Spring Stanza13 + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7991 + AegisName: Spring_Stanza14 + Name: Spring Stanza14 + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7992 + AegisName: Spring_Stanza15 + Name: Spring Stanza15 + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7993 + AegisName: Spring_Stanza16 + Name: Spring Stanza16 + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7994 + AegisName: Spring_Stanza17 + Name: Spring Stanza17 + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7995 + AegisName: Spring_Stanza18 + Name: Spring Stanza18 + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7996 + AegisName: Spring_Stanza19 + Name: Spring Stanza19 + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7997 + AegisName: Spring_Stanza20 + Name: Spring Stanza20 + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7998 + AegisName: Spring_Stanza21 + Name: Spring Stanza21 + Type: Etc + Buy: 2 + Weight: 10 + - Id: 7999 + AegisName: Spring_Stanza22 + Name: Spring Stanza22 + Type: Etc + Buy: 2 + Weight: 10 + - Id: 11000 + AegisName: Prontera_Book_01 + Name: History book of Prontera + Type: Etc + Buy: 8000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 11001 + AegisName: Adventure_Story01 + Name: Adventure Story Vol.1 + Type: Etc + Buy: 8000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 11002 + AegisName: Great_Chef_Orleans01 + Name: Chef King Orleans Vol.1 + Type: Etc + Buy: 8000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 11003 + AegisName: Legend_Of_Kafra01 + Name: Kafra Legend Vol.1 + Type: Etc + Buy: 8000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 11004 + AegisName: Mercenary_Rebellion + Name: Old Book + Type: Etc + Buy: 10000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 11005 + AegisName: Tyrant_Schmidt + Name: Rune Royal Family Book + Type: Etc + Buy: 10000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 11006 + AegisName: Blood_Flower01 + Name: Blood Flower Vol.1 + Type: Etc + Buy: 8000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 11007 + AegisName: Blood_Flower02 + Name: Blood Flower Vol.2 + Type: Etc + Buy: 8000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 11008 + AegisName: Barmund + Name: Biographical Dictionary Copy Edition + Type: Etc + Buy: 10000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 11009 + AegisName: Adventure_Story02 + Name: Adventure Story Vol.2 + Type: Etc + Buy: 8000 + Weight: 10 + Flags: + BuyingStore: true + - Id: 11010 + AegisName: Reward_List_Book + Name: Battlegrounds Catalog + Type: Etc + Weight: 10 + - Id: 11011 + AegisName: Barmund_Note + Name: Varmunt's Note + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 11012 + AegisName: Expedition_Report + Name: Expedition Report + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 11013 + AegisName: Expedition_Report_Vol1 + Name: Expedition Report Vol1 + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 11014 + AegisName: Expedition_Report_Vol2 + Name: Expedition Report Vol2 + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 11015 + AegisName: Expedition_Report_Vol3 + Name: Expedition Report Vol3 + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 11016 + AegisName: Expedition_Report_Vol4 + Name: Expedition Report Vol4 + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 11017 + AegisName: Reward_List_Book2 + Name: KVM Reward Items Catalog + Type: Etc + Weight: 10 + - Id: 11018 + AegisName: Splendide_Selling_Item + Name: Splendide Selling Item + Type: Etc + Weight: 10 + - Id: 11019 + AegisName: Manuk_Selling_Item + Name: Manuk Selling Item + Type: Etc + Weight: 10 + - Id: 11020 + AegisName: Japan_Book1 + Name: Japan Book1 + Type: Etc + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + - Id: 11021 + AegisName: Japan_Book2 + Name: Japan Book2 + Type: Etc + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + - Id: 11022 + AegisName: Mix_Cook_Book + Name: Mix Cook Book + Type: Etc + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + - Id: 11023 + AegisName: Increase_Stamina_Study + Name: Increase Stamina Study + Type: Etc + Buy: 10 + Weight: 50 + Flags: + BuyingStore: true + - Id: 11024 + AegisName: Vital_Drink_CB + Name: Vital Drink CB + Type: Etc + Buy: 10 + Weight: 50 + Flags: + BuyingStore: true + - Id: 11025 + AegisName: Swordman_Book_Basic + Name: Swordman Book Basic + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11026 + AegisName: Swordman_Book_Practice + Name: Swordman Book Practice + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11027 + AegisName: Swrodman_Book_Misc + Name: Swrodman Book Misc + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11028 + AegisName: Thief_Book_Basic + Name: Thief Book Basic + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11029 + AegisName: Thief_Book_Practice + Name: Thief Book Practice + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11030 + AegisName: Thief_Book_Misc + Name: Thief Book Misc + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11031 + AegisName: Archer_Book_Basic + Name: Archer Book Basic + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11032 + AegisName: Archer_Book_Practice + Name: Archer Book Practice + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11033 + AegisName: Archer_Book_Misc + Name: Archer Book Misc + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11034 + AegisName: Acol_Book_Basic + Name: Acol Book Basic + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11035 + AegisName: Acol_Book_Practice + Name: Acol Book Practice + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11036 + AegisName: Acol_Book_Misc + Name: Acol Book Misc + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11037 + AegisName: Mage_Book_Basic + Name: Mage Book Basic + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11038 + AegisName: Mage_Book_Practice + Name: Mage Book Practice + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11039 + AegisName: Mage_Book_Misc + Name: Mage Book Misc + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11040 + AegisName: Mer_Book_Basic + Name: Mer Book Basic + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11041 + AegisName: Mer_Book_Practice + Name: Mer Book Practice + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11042 + AegisName: Mer_Book_Misc + Name: Mer Book Misc + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11043 + AegisName: TK_Book_Basic + Name: TK Book Basic + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11044 + AegisName: TK_Book_Practice + Name: TK Book Practice + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11045 + AegisName: TK_Book_Misc + Name: TK Book Misc + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11046 + AegisName: Ninja_Book_Basic + Name: Ninja Book Basic + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11047 + AegisName: Ninja_Book_Practice + Name: Ninja Book Practice + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11048 + AegisName: Ninja_Book_Misc + Name: Ninja Book Misc + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11049 + AegisName: Gun_Book_Basic + Name: Gun Book Basic + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11050 + AegisName: Gun_Book_Practice + Name: Gun Book Practice + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11051 + AegisName: Gun_Book_Misc + Name: Gun Book Misc + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11052 + AegisName: SN_Book_Basic + Name: SN Book Basic + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11053 + AegisName: SN_Book_Practice + Name: SN Book Practice + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11054 + AegisName: SN_Book_Misc + Name: SN Book Misc + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11055 + AegisName: Basic_Adventure + Name: Basic Adventure + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11056 + AegisName: Elemental_Spirit_Guide + Name: Elemental Spirit Guide + Type: Etc + Buy: 1000 + Weight: 10 + - Id: 11057 + AegisName: Feb_Sweets + Name: February Sweets + Type: Etc + Buy: 20 + Weight: 50 + - Id: 11058 + AegisName: Novice_Combi_Book + Name: Novice Combi Book + Type: Etc + Weight: 10 + - Id: 11059 + AegisName: WoE_TE_Rental_List + Name: WoE TE Rental List + Type: Etc + Weight: 10 + - Id: 11060 + AegisName: Energy_Xtal_Combi_Book + Name: Energy Crystal Book + Type: Etc + Weight: 10 + - Id: 11061 + AegisName: Honor_Proof_Exchange_List + Name: Honor Proof Exchange List + Type: Etc + Buy: 20 + Weight: 10 + - Id: 11575 + AegisName: Lucky_Cookie_B + Name: Lucky Cookie + Type: Etc + Buy: 10 + Weight: 30 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 11576 + AegisName: Lucky_Candy_Cane_B + Name: Lucky Lollipop + Type: Etc + Buy: 10 + Weight: 30 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 11579 + AegisName: Lucky_Candy_B + Name: Lucky Candy + Type: Etc + Buy: 10 + Weight: 30 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 13200 + AegisName: Bullet + Name: Bullet + Type: Ammo + SubType: Bullet + Buy: 1 + Weight: 1 + Attack: 25 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Ammo: true + EquipLevelMin: 1 + - Id: 13201 + AegisName: Silver_Bullet + Name: Surplus Silver Bullet + Type: Ammo + SubType: Bullet + Buy: 15 + Weight: 2 + Attack: 15 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Holy; + - Id: 13202 + AegisName: Shell_Of_Blood + Name: Surplus Bloody Shell + Type: Ammo + SubType: Bullet + Buy: 30 + Weight: 2 + Attack: 30 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus2 bAddEff,Eff_Bleeding,100; + - Id: 13203 + AegisName: Flare_Sphere + Name: Surplus Flare Sphere + Type: Ammo + SubType: Grenade + Buy: 80 + Weight: 5 + Attack: 50 + Classes: + All: false + Gender: Female + Locations: + Ammo: true + Script: | + bonus bAtkEle,Ele_Fire; + - Id: 13204 + AegisName: Lighting_Sphere + Name: Surplus Lightning Sphere + Type: Ammo + SubType: Grenade + Buy: 80 + Weight: 5 + Attack: 50 + Classes: + All: false + Gender: Female + Locations: + Ammo: true + Script: | + bonus bAtkEle,Ele_Wind; + - Id: 13205 + AegisName: Poison_Sphere + Name: Surplus Poison Sphere + Type: Ammo + SubType: Grenade + Buy: 80 + Weight: 5 + Attack: 50 + Classes: + All: false + Gender: Female + Locations: + Ammo: true + Script: | + bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,500; + - Id: 13206 + AegisName: Blind_Sphere + Name: Surplus Blind Sphere + Type: Ammo + SubType: Grenade + Buy: 80 + Weight: 5 + Attack: 50 + Classes: + All: false + Gender: Female + Locations: + Ammo: true + Script: | + bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Blind,500; + - Id: 13207 + AegisName: Freezing_Sphere + Name: Surplus Freezing Sphere + Type: Ammo + SubType: Grenade + Buy: 80 + Weight: 5 + Attack: 50 + Classes: + All: false + Gender: Female + Locations: + Ammo: true + Script: | + bonus bAtkEle,Ele_Water; + - Id: 13208 + AegisName: Gong_Bug + Name: Sow Bug + Type: Ammo + SubType: Bullet + Weight: 5 + Attack: 50 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Ammo: true + EquipLevelMin: 50 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus2 bAddEff,Eff_Stun,1000; + - Id: 13210 + AegisName: Slug_Bullet_1 + Name: Slug Ammunition L + Type: Ammo + SubType: Bullet + Buy: 250 + Weight: 250 + Attack: 30 + Classes: + All: false + Gender: Female + Locations: + Ammo: true + - Id: 13211 + AegisName: Slug_Bullet_2 + Name: Slug Ammunition M + Type: Ammo + SubType: Bullet + Buy: 500 + Weight: 500 + Attack: 30 + Classes: + All: false + Gender: Female + Locations: + Ammo: true + - Id: 13212 + AegisName: Slug_Bullet_3 + Name: Slug Ammunition H + Type: Ammo + SubType: Bullet + Buy: 750 + Weight: 750 + Attack: 30 + Classes: + All: false + Gender: Female + Locations: + Ammo: true + - Id: 13213 + AegisName: Slug_Bullet_4 + Name: Slug Ammunition SH + Type: Ammo + SubType: Bullet + Buy: 1000 + Weight: 1000 + Attack: 30 + Classes: + All: false + Gender: Female + Locations: + Ammo: true + - Id: 13214 + AegisName: Slug_Bullet_5 + Name: Slug Ammunition XH + Type: Ammo + SubType: Bullet + Buy: 1200 + Weight: 1200 + Attack: 30 + Classes: + All: false + Gender: Female + Locations: + Ammo: true + - Id: 13215 + AegisName: AP_Ammo + Name: Armor-Piercing Bullet + Type: Ammo + SubType: Bullet + Buy: 15 + Weight: 2 + Attack: 50 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Ammo: true + EquipLevelMin: 100 + Script: | + bonus bAtkEle,Ele_Neutral; + - Id: 13216 + AegisName: Blaze_Bullet + Name: Blazing Bullet + Type: Ammo + SubType: Bullet + Buy: 10 + Weight: 2 + Attack: 40 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Ammo: true + EquipLevelMin: 100 + Script: | + bonus bAtkEle,Ele_Fire; + - Id: 13217 + AegisName: Freezing_Bullet + Name: Freezing Bullet + Type: Ammo + SubType: Bullet + Buy: 10 + Weight: 2 + Attack: 40 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Ammo: true + EquipLevelMin: 100 + Script: | + bonus bAtkEle,Ele_Water; + - Id: 13218 + AegisName: Electric_Shock_Bullet + Name: Lightning Bullet + Type: Ammo + SubType: Bullet + Buy: 10 + Weight: 2 + Attack: 40 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Ammo: true + EquipLevelMin: 100 + Script: | + bonus bAtkEle,Ele_Wind; + - Id: 13219 + AegisName: Magical_Stone_Bullet + Name: Magic Stone Bullet + Type: Ammo + SubType: Bullet + Buy: 10 + Weight: 2 + Attack: 40 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Ammo: true + EquipLevelMin: 100 + Script: | + bonus bAtkEle,Ele_Earth; + - Id: 13220 + AegisName: Sanctified_Bullet + Name: Purifying Bullet + Type: Ammo + SubType: Bullet + Buy: 10 + Weight: 2 + Attack: 40 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Ammo: true + EquipLevelMin: 100 + Script: | + bonus bAtkEle,Ele_Holy; + - Id: 13221 + AegisName: Silver_Bullet_ + Name: Silver Bullet + Type: Ammo + SubType: Bullet + Buy: 5 + Weight: 2 + Attack: 15 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Holy; + - Id: 13222 + AegisName: Shell_Of_Blood_ + Name: Bloody Shell + Type: Ammo + SubType: Bullet + Buy: 10 + Weight: 2 + Attack: 30 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus2 bAddEff,Eff_Bleeding,100; + - Id: 13223 + AegisName: Flare_Sphere_ + Name: Flare Sphere + Type: Ammo + SubType: Grenade + Buy: 15 + Weight: 5 + Attack: 50 + Classes: + All: false + Gender: Female + Locations: + Ammo: true + Script: | + bonus bAtkEle,Ele_Fire; + - Id: 13224 + AegisName: Lighting_Sphere_ + Name: Lightning Sphere + Type: Ammo + SubType: Grenade + Buy: 15 + Weight: 5 + Attack: 50 + Classes: + All: false + Gender: Female + Locations: + Ammo: true + Script: | + bonus bAtkEle,Ele_Wind; + - Id: 13225 + AegisName: Poison_Sphere_ + Name: Poison Sphere + Type: Ammo + SubType: Grenade + Buy: 15 + Weight: 5 + Attack: 50 + Classes: + All: false + Gender: Female + Locations: + Ammo: true + Script: | + bonus bAtkEle,Ele_Poison; + - Id: 13226 + AegisName: Blind_Sphere_ + Name: Blind Sphere + Type: Ammo + SubType: Grenade + Buy: 15 + Weight: 5 + Attack: 50 + Classes: + All: false + Gender: Female + Locations: + Ammo: true + Script: | + bonus bAtkEle,Ele_Dark; + - Id: 13227 + AegisName: Freezing_Sphere_ + Name: Freezing Sphere + Type: Ammo + SubType: Grenade + Buy: 15 + Weight: 5 + Attack: 50 + Classes: + All: false + Gender: Female + Locations: + Ammo: true + Script: | + bonus bAtkEle,Ele_Water; + - Id: 13228 + AegisName: Flare_Bullet + Name: Flare Bullet + Type: Ammo + SubType: Bullet + Buy: 10 + Weight: 2 + Attack: 20 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Fire; + - Id: 13229 + AegisName: Lightning_Bullet + Name: Lightning Bullet + Type: Ammo + SubType: Bullet + Buy: 10 + Weight: 2 + Attack: 20 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Wind; + - Id: 13230 + AegisName: Ice_Bullet + Name: Ice Bullet + Type: Ammo + SubType: Bullet + Buy: 10 + Weight: 2 + Attack: 20 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Water; + - Id: 13231 + AegisName: Poison_Bullet + Name: Poison Bullet + Type: Ammo + SubType: Bullet + Buy: 10 + Weight: 2 + Attack: 20 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,500; + - Id: 13232 + AegisName: Blind_Bullet + Name: Blind Bullet + Type: Ammo + SubType: Bullet + Buy: 10 + Weight: 2 + Attack: 20 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Blind,500; + - Id: 13250 + AegisName: Shuriken + Name: Shuriken + Type: Ammo + SubType: Shuriken + Buy: 4 + Weight: 1 + Attack: 10 + Jobs: + Ninja: true + Locations: + Ammo: true + EquipLevelMin: 1 + - Id: 13251 + AegisName: Nimbus_Shuriken + Name: Nimbus Shuriken + Type: Ammo + SubType: Shuriken + Buy: 10 + Weight: 1 + Attack: 30 + Jobs: + Ninja: true + Locations: + Ammo: true + EquipLevelMin: 20 + - Id: 13252 + AegisName: Flash_Shuriken + Name: Flash Shuriken + Type: Ammo + SubType: Shuriken + Buy: 20 + Weight: 1 + Attack: 45 + Jobs: + Ninja: true + Locations: + Ammo: true + EquipLevelMin: 40 + - Id: 13253 + AegisName: Sharp_Leaf_Shuriken + Name: Sharp Leaf Shuriken + Type: Ammo + SubType: Shuriken + Buy: 40 + Weight: 1 + Attack: 70 + Jobs: + Ninja: true + Locations: + Ammo: true + EquipLevelMin: 60 + - Id: 13254 + AegisName: Thorn_Needle_Shuriken + Name: Thorn Needle Shuriken + Type: Ammo + SubType: Shuriken + Buy: 100 + Weight: 1 + Attack: 100 + Jobs: + Ninja: true + Locations: + Ammo: true + EquipLevelMin: 80 + - Id: 13255 + AegisName: Kunai_Of_Icicle + Name: Icicle Kunai + Type: Ammo + SubType: Kunai + Buy: 10 + Weight: 1 + Attack: 30 + Jobs: + Ninja: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Water; + - Id: 13256 + AegisName: Kunai_Of_Black_Soil + Name: Black Earth Kunai + Type: Ammo + SubType: Kunai + Buy: 10 + Weight: 1 + Attack: 30 + Jobs: + Ninja: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Earth; + - Id: 13257 + AegisName: Kunai_Of_Furious_Wind + Name: High Wind Kunai + Type: Ammo + SubType: Kunai + Buy: 10 + Weight: 1 + Attack: 30 + Jobs: + Ninja: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Wind; + - Id: 13258 + AegisName: Kunai_Of_Fierce_Flame + Name: Heat Wave Kunai + Type: Ammo + SubType: Kunai + Buy: 10 + Weight: 1 + Attack: 30 + Jobs: + Ninja: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Fire; + - Id: 13259 + AegisName: Kunai_Of_Deadly_Poison + Name: Fell Poison Kunai + Type: Ammo + SubType: Kunai + Buy: 10 + Weight: 1 + Attack: 30 + Jobs: + Ninja: true + Locations: + Ammo: true + EquipLevelMin: 1 + Script: | + bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,500; + - Id: 13260 + AegisName: Apple_Bomb + Name: Apple Bomb + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 1 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Ammo: true + EquipLevelMin: 99 + - Id: 13261 + AegisName: Coconut_Bomb + Name: Coconut Bomb + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 1 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Ammo: true + EquipLevelMin: 99 + - Id: 13262 + AegisName: Melon_Bomb + Name: Melon Bomb + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 1 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Ammo: true + EquipLevelMin: 99 + - Id: 13263 + AegisName: Pineapple_Bomb + Name: Pineapple Bomb + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 1 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Ammo: true + EquipLevelMin: 99 + - Id: 13264 + AegisName: Banana_Bomb + Name: Banana Bomb + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 1 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Ammo: true + EquipLevelMin: 99 + - Id: 13265 + AegisName: Black_Lump + Name: Black Lump + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 50 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Ammo: true + EquipLevelMin: 99 + - Id: 13266 + AegisName: Black_Hard_Lump + Name: Hard Black Lump + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 50 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Ammo: true + EquipLevelMin: 99 + - Id: 13267 + AegisName: Very_Hard_Lump + Name: Extremely Hard Black Lump + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 50 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Ammo: true + EquipLevelMin: 99 + - Id: 13268 + AegisName: Mysterious_Powder + Name: Mysterious Powder + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 10 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + sc_start SC_MYSTERIOUS_POWDER,10000,2; + - Id: 13269 + AegisName: Boost500_To_Throw + Name: Throwing Boost 500 + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 10 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + sc_start SC_BOOST500,500000,10; + - Id: 13270 + AegisName: Full_SwingK_To_Throw + Name: Throwing Full Swing K + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 50 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + sc_start SC_FULL_SWING_K,500000,50; + - Id: 13271 + AegisName: Mana_Plus_To_Throw + Name: Throwing Mana Plus + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 50 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + sc_start SC_MANA_PLUS,500000,50; + - Id: 13272 + AegisName: Cure_Free_To_Throw + Name: Throwing Cure Free + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 50 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + 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; + - Id: 13273 + AegisName: Stamina_Up_M_To_Throw + Name: Throwing Muramura M + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 10 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + sc_start SC_MUSTLE_M,500000,5; + - Id: 13274 + AegisName: Digestive_F_To_Throw + Name: Throwing Falmons F + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 10 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + sc_start SC_LIFE_FORCE_F,500000,5; + - Id: 13275 + AegisName: HP_Inc_PotS_To_Throw + Name: Throwing Increase HP Potion (Small) + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 20 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + /* Item bonus in source because of BaseLevel check */ + - Id: 13276 + AegisName: HP_Inc_PotM_To_Throw + Name: Throwing Increase HP Potion (Medium) + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 40 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + /* Item bonus in source because of BaseLevel check */ + - Id: 13277 + AegisName: HP_Inc_PotL_To_Throw + Name: Throwing Increase HP Potion (Large) + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 80 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + /* Item bonus in source because of BaseLevel check */ + - Id: 13278 + AegisName: SP_Inc_PotS_To_Throw + Name: Throwing Increase SP Potion (Small) + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 20 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + /* Item bonus in source because of BaseLevel check */ + - Id: 13279 + AegisName: SP_Inc_PotM_To_Throw + Name: Throwing Increase SP Potion (Medium) + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 40 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + /* Item bonus in source because of BaseLevel check */ + - Id: 13280 + AegisName: SP_Inc_PotL_To_Throw + Name: Throwing Increase SP Potion (Large) + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 80 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + /* Item bonus in source because of BaseLevel check */ + - Id: 13281 + AegisName: En_White_PotZ_To_Throw + Name: Throwing Concentrated White Potion Z + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 70 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + sc_start SC_EXTRACT_WHITE_POTION_Z,500000,20; itemheal 1000,0; + - Id: 13282 + AegisName: Vitata500_To_Throw + Name: Throwing Vitata 500 + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 50 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + sc_start2 SC_VITATA_500,500000,20,5; itemheal 0,200; + - Id: 13283 + AegisName: En_Cel_Juice_To_Throw + Name: Throwing Ceromain Soup + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 50 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + sc_start SC_EXTRACT_SALAMINE_JUICE,500000,10; + - Id: 13284 + AegisName: Savage_BBQ_To_Throw + Name: Throwing Savage Full Roast + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 50 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + sc_start SC_SAVAGE_STEAK,300000,20; + - Id: 13285 + AegisName: Wug_Cocktail_To_Throw + Name: Throwing Cocktail Warg Blood + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 50 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + sc_start SC_COCKTAIL_WARG_BLOOD,300000,20; + - Id: 13286 + AegisName: M_Brisket_To_Throw + Name: Throwing Minor Stew + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 50 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + sc_start SC_MINOR_BBQ,300000,20; + - Id: 13287 + AegisName: Siroma_Icetea_To_Throw + Name: Throwing Siroma Iced Tea + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 50 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + sc_start SC_SIROMA_ICE_TEA,300000,20; + - Id: 13288 + AegisName: Drocera_Stew_To_Throw + Name: Throwing Drosera Herb Salad + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 50 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + sc_start SC_DROCERA_HERB_STEAMED,300000,20; + - Id: 13289 + AegisName: Petti_Noodle_To_Throw + Name: Throwing Petite Tail Soup + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 50 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + sc_start SC_PUTTI_TAILS_NOODLES,300000,20; + - Id: 13290 + AegisName: Black_Thing_To_Throw + Name: Throwing Black Mass + Type: Ammo + SubType: Throwweapon + Buy: 100 + Weight: 50 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + sc_start SC_STOMACHACHE,60000,rand(5,10); + - Id: 13291 + AegisName: Starfish + Name: Starfish + Type: Ammo + SubType: Shuriken + Weight: 5 + Attack: 110 + Jobs: + Ninja: true + Locations: + Ammo: true + EquipLevelMin: 50 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAtkEle,Ele_Neutral; bonus2 bAddEff,Eff_Stun,1000; + - Id: 13292 + AegisName: Dried_Squid + Name: Dried Squid + Type: Ammo + SubType: Kunai + Buy: 10 + Weight: 20 + Attack: 50 + Jobs: + Ninja: true + Locations: + Ammo: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAtkEle,Ele_Neutral; bonus2 bAddEff,Eff_Stun,1000; + - Id: 13293 + AegisName: Flying_Fish + Name: Flying Fish + Type: Ammo + SubType: Kunai + Buy: 10 + Weight: 20 + Attack: 50 + Jobs: + Ninja: true + Locations: + Ammo: true + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bAtkEle,Ele_Neutral; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,3; + - Id: 13294 + AegisName: Explosive_Kunai + Name: Explosive Kunai + Type: Ammo + SubType: Kunai + Buy: 100 + Weight: 1 + Attack: 50 + Jobs: + Ninja: true + Locations: + Ammo: true + EquipLevelMin: 100 + Script: | + bonus bAtkEle,Ele_Neutral; + - Id: 13295 + AegisName: Light_Shuriken + Name: Light Shuriken + Type: Ammo + Weight: 5 + Attack: 5 + Locations: + Ammo: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 16570 + AegisName: Muscles_Story_J_Box + Name: Muscle Knights Summertime Guide Box + Type: Etc + - Id: 17438 + AegisName: Three_Master_Package_II + Name: Three Master Package II + Type: Etc + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /* TODO */ + - Id: 17439 + AegisName: Three_Master_Package_II10 + Name: Three Master Package II(10) + Type: Etc + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /* TODO */ + - Id: 18000 + AegisName: Cannon_Ball + Name: Cannon Ball + Type: Ammo + SubType: Cannonball + Buy: 100 + Weight: 10 + Attack: 100 + Jobs: + Alchemist: true + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Ammo: true + EquipLevelMin: 99 + - Id: 18001 + AegisName: Holy_Cannon_Ball + Name: Holy Cannon Ball + Type: Ammo + SubType: Cannonball + Buy: 200 + Weight: 10 + Attack: 120 + Jobs: + Alchemist: true + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + bonus bAtkEle,Ele_Holy; + - Id: 18002 + AegisName: Dark_Cannon_Ball + Name: Dark Cannon Ball + Type: Ammo + SubType: Cannonball + Buy: 200 + Weight: 10 + Attack: 120 + Jobs: + Alchemist: true + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + bonus bAtkEle,Ele_Dark; + - Id: 18003 + AegisName: Soul_Cannon_Ball + Name: Soul Cannon Ball + Type: Ammo + SubType: Cannonball + Buy: 200 + Weight: 10 + Attack: 120 + Jobs: + Alchemist: true + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Ammo: true + EquipLevelMin: 99 + Script: | + bonus bAtkEle,Ele_Ghost; + - Id: 18004 + AegisName: Iron_Cannon_Ball + Name: Iron Cannon Ball + Type: Ammo + SubType: Cannonball + Buy: 500 + Weight: 10 + Attack: 250 + Jobs: + Alchemist: true + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Ammo: true + EquipLevelMin: 99 + - Id: 22515 + AegisName: Twisted_Key_of_Time + Name: Twisted Key of Time + Type: Etc + Buy: 10 + Weight: 300 + - Id: 22516 + AegisName: Dark_Red_Clot + Name: Black As Night Piece + Type: Etc + Buy: 10 + Flags: + BuyingStore: true + - Id: 22517 + AegisName: Loki_Summon_Scroll + Name: Rocker Summoning Scroll + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 22519 + AegisName: Pc_Stop_Cancel + Name: Stops Buff + Type: Etc + Buy: 10 + - Id: 22520 + AegisName: Stops_Buff_Reset + Name: Stops Buff Reset + Type: Etc + Buy: 10 + - Id: 22566 + AegisName: Frost_Crystal + Name: Last Year's Frost + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoCart: true + NoStorage: true + NoGuildStorage: true + - Id: 22589 + AegisName: Savage_Ora + Name: Savage Ora Ora + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 22590 + AegisName: Grand_Peco_Ora + Name: Grand Peco Ora Ora + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 22591 + AegisName: Dest_Wolf_Ora + Name: Desert Wolf Ora Ora + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 22654 + AegisName: Golden_Seal_Card + Name: Golden Seal Card + Type: Etc + Buy: 20 + Weight: 50 + - Id: 22717 + AegisName: Wanderer_Ball + Name: Wanderer Ball + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 22718 + AegisName: Lude_Ball + Name: Lude Ball + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 22719 + AegisName: Tatacho_Ball + Name: Tatacho Ball + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 22720 + AegisName: Novus_Ball + Name: Novus Ball + Type: Etc + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 22802 + AegisName: Safe_to_6_Equipment_Certificate + Name: Safe to 6 Equipment Certificate + Type: Etc + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 22814 + AegisName: Cat_Hand_Ticket + Name: Cat Hand Ticket + Type: Etc + Buy: 10 + - Id: 22870 + AegisName: Xmas_Package_14 + Name: Christmas Package + Type: Etc + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 22875 + AegisName: Sealed_Beelzebub_Card + Name: Sealed Beelzebub Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus bVariableCastrate,-15; /*Item removed on 2014-12-17*/ + - Id: 25000 + AegisName: SPdrainStone_Top + Name: SP Absorption Stone (Upper) + Type: Etc + Buy: 10 + Weight: 100 + - Id: 25001 + AegisName: DEFStone_Middle + Name: Def Stone(Middle) + Type: Card + Buy: 10 + Weight: 100 + - Id: 25002 + AegisName: ChangeLUK_Middle + Name: LUK Exchange Stone(Middle) + Type: Etc + Buy: 10 + Weight: 100 + - Id: 25003 + AegisName: ChangeSTR_Middle + Name: STR Exchange Stone(Middle) + Type: Etc + Buy: 10 + Weight: 100 + - Id: 25004 + AegisName: ChangeAGI_Middle + Name: AGI Exchange Stone(Middle) + Type: Etc + Buy: 10 + Weight: 100 + - Id: 25005 + AegisName: ChangeINT_Middle + Name: INT Exchange Stone(Middle) + Type: Etc + Buy: 10 + Weight: 100 + - Id: 25006 + AegisName: ChangeVIT_Middle + Name: VIT Exchange Stone(Middle) + Type: Etc + Buy: 10 + Weight: 100 + - Id: 25007 + AegisName: ChangeDEX_Middle + Name: DEX Exchange Stone(Middle) + Type: Etc + Buy: 10 + Weight: 100 + - Id: 25008 + AegisName: ChangeVIT_Bottom + Name: VIT Exchange Stone(Lower) + Type: Etc + Buy: 10 + Weight: 100 + - Id: 25009 + AegisName: ChangeAGI_Bottom + Name: AGI Exchange Stone(Lower) + Type: Etc + Buy: 10 + Weight: 100 + - Id: 25010 + AegisName: ChangeDEX_Bottom + Name: DEX Exchange Stone(Lower) + Type: Etc + Buy: 10 + Weight: 100 + - Id: 25011 + AegisName: ChangeLUK_Bottom + Name: LUK Exchange Stone(Lower) + Type: Etc + Buy: 10 + Weight: 100 + - Id: 25012 + AegisName: ChangeSTR_Bottom + Name: STR Exchange Stone(Lower) + Type: Etc + Buy: 10 + Weight: 100 + - Id: 25013 + AegisName: ChangeINT_Bottom + Name: INT Exchange Stone(Lower) + Type: Etc + Buy: 10 + Weight: 100 + - Id: 25014 + AegisName: MDEFStone_Bottom + Name: Mdef Stone(Lower) + Type: Card + Buy: 10 + Weight: 100 + - Id: 25015 + AegisName: EXPStone_Bottom + Name: EXP Stone(Lower) + Type: Card + Buy: 10 + Weight: 100 + - Id: 25016 + AegisName: ATKStone_Bottom + Name: ATK Stone (Lower) + Type: Etc + Buy: 10 + Weight: 100 + - Id: 25017 + AegisName: MATKStone_Bottom + Name: MATK Stone (Lower) + Type: Etc + Buy: 10 + Weight: 100 + - Id: 25043 + AegisName: Thorny_Vine_Flute + Name: Thorny Vine Flute + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25044 + AegisName: Hard_Thorny_Vine + Name: Hard Thorny Vine + Type: Etc + Weight: 10 + - Id: 25045 + AegisName: Luxurious_Cloth + Name: Luxurious Cloth + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25046 + AegisName: Boarding_Pass + Name: Boarding Pass + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25047 + AegisName: Kahlunac + Name: Kahlunac + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25048 + AegisName: Hearty_Lunchbox + Name: Hearty Lunchbox + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25049 + AegisName: Basilac_Clam + Name: Basilac Clam + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25058 + AegisName: TwinkleEffect_Top + Name: Twinkle Effect (Upper) + Type: Etc + Buy: 10 + Weight: 100 + - Id: 25059 + AegisName: GhostEffect_Middle + Name: Ghost Effect (Middle) + Type: Etc + Buy: 10 + Weight: 100 + - Id: 25060 + AegisName: Critical_Stone + Name: Critical Stone (Middle) + Type: Etc + Buy: 10 + Weight: 100 + - Id: 25061 + AegisName: Range_Stone + Name: Range Stone (Middle) + Type: Etc + Buy: 10 + Weight: 100 + - Id: 25062 + AegisName: Greed_Stone + Name: Greed Stone (Lower) + Type: Etc + Buy: 10 + Weight: 100 + - Id: 25063 + AegisName: MaxHP2_Stone + Name: Health Stone (Lower) + Type: Etc + Buy: 10 + Weight: 100 + - Id: 25064 + AegisName: MaxSP2_Stone + Name: Magic Stone (Lower) + Type: Etc + Buy: 10 + Weight: 100 + - Id: 25065 + AegisName: Detoxify_Stone + Name: Detoxify Stone (Lower) + Type: Etc + Buy: 10 + Weight: 100 + - Id: 25066 + AegisName: Recovery_Stone + Name: Recovery Stone (Lower) + Type: Card + Buy: 20 + Weight: 100 + - Id: 25067 + AegisName: CastingStone_Robe + Name: Casting Stone (Garment) + Type: Etc + Buy: 10 + Weight: 100 + - Id: 25068 + AegisName: ASPDStone_Top + Name: ASPD Stone (Upper) + Type: Etc + Buy: 10 + Weight: 100 + - Id: 25069 + AegisName: ReloadStone_Top + Name: Reload Stone (Upper) + Type: Etc + Buy: 10 + Weight: 100 + - Id: 25070 + AegisName: ReloadStone_Middle + Name: Reload Stone (Middle) + Type: Etc + Buy: 10 + Weight: 100 + - Id: 25071 + AegisName: ReloadStone_Bottom + Name: Reload Stone (Lower) + Type: Etc + Buy: 10 + Weight: 100 + - Id: 25072 + AegisName: Kyrie_Stone + Name: Kyrie Stone (Lower) + Type: Etc + Buy: 10 + Weight: 100 + - Id: 25127 + AegisName: Silent_Energy_Particle + Name: Silent Energy Particle + Type: Etc + - Id: 25128 + AegisName: Weak_Energy_Particle + Name: Weak Energy Particle + Type: Etc + - Id: 25129 + AegisName: Unstable_Energy_Particle + Name: Unstable Energy Particle + Type: Etc + - Id: 25130 + AegisName: Sinister_Energy_Particle + Name: Sinister Energy Particle + Type: Etc + - Id: 25131 + AegisName: Fallen_Energy_Particle + Name: Fallen Energy Particle + Type: Etc + - Id: 25132 + AegisName: Pumpkin_Deco + Name: Pumpkin Deco + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25133 + AegisName: Dried_White_Stem + Name: Dried White Stem + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25136 + AegisName: ElectricEffect_Middle + Name: Electric Effect (Middle) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25137 + AegisName: GreenFloor_Bottom + Name: Green Floor Effect (Lower) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25138 + AegisName: ShrinkEffect_Middle + Name: Shrink Effect (Middle) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25139 + AegisName: Identify_Stone + Name: Identify Stone (Lower) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25141 + AegisName: EXPStone_Middle + Name: Experience Stone (Middle) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25142 + AegisName: Doram_Token + Name: Doram Token + Type: Etc + - Id: 25143 + AegisName: Gift_Stuffed_Doll + Name: Gift Stuffed Doll + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25144 + AegisName: Bridge_Postured_Doll + Name: Bridge Postured Doll + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25145 + AegisName: Burnt_Spector_Doll + Name: Burnt Spector Doll + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25146 + AegisName: Cold_Blooded_Queen_Doll + Name: Cold Blooded Queen Doll + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25147 + AegisName: Well_Eatenl_Rabbit_Doll + Name: Well Eatenl Rabbit Doll + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25148 + AegisName: Cute_Starved_Demon_Doll + Name: Cute Starved Demon Doll + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25149 + AegisName: Doll_With_Warm_Scarf + Name: Doll With Warm Scarf + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25150 + AegisName: Hugging_Alice_Pilow + Name: Hugging Alice Pilow + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25151 + AegisName: Rachels_Revolver + Name: Rachel's Revolver + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25152 + AegisName: Cherish_Bouquet + Name: Cherished Bouquet + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25153 + AegisName: Broken_Gun_Wreck + Name: Broken Gun Wreck + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25154 + AegisName: Antique_Powder + Name: Antique Gunpowder + Type: Etc + Weight: 10 + - Id: 25155 + AegisName: Swz_Honor_Token + Name: Schwarz's Honor Token + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25156 + AegisName: Piece_Of_Chimera + Name: Piece of Chimera + Type: Etc + Weight: 10 + - Id: 25157 + AegisName: Fallen_Leaves_Branch + Name: Fallen Leaves Branch + Type: Etc + Weight: 10 + - Id: 25158 + AegisName: Core_Jelly + Name: Core Jelly + Type: Etc + Weight: 10 + - Id: 25159 + AegisName: Heart_Hunter_Seal + Name: Heart Hunter's Seal + Type: Etc + Weight: 10 + - Id: 25160 + AegisName: Borrow_Book + Name: Borrowed Book + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25161 + AegisName: Handmade_cookie2 + Name: Delicious Handmade Cookie + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25162 + AegisName: Anchovy_cookie + Name: Crispy Anchovy + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25163 + AegisName: Arms_Shop_AD + Name: Arms Shop Ad + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25164 + AegisName: Fresh_Tea_Leaves + Name: Fresh Tea Leaves + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25165 + AegisName: High_Class_Tea + Name: High Class Tea + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25166 + AegisName: Very_Shining_Ring + Name: Very Shining Ring + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25167 + AegisName: Old_Letter + Name: Old Letter + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25170 + AegisName: MinorCastingStone_Robe + Name: Minor Casting Stone (Garment) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25171 + AegisName: EXPStone_Top + Name: Experience Stone (Upper) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25172 + AegisName: CastingStone_Top + Name: Variable Casting Stone (Upper) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25173 + AegisName: CastingStone_Middle + Name: Variable Casting Stone (Middle) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25174 + AegisName: CastingStone_Bottom + Name: Variable Casting Stone (Lower) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25175 + AegisName: LexAeternaStone_Middle + Name: Lex Aeterna Stone (Middle) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25176 + AegisName: BlueAuraEffect_Middle + Name: Blue Aura Effect (Middle) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25177 + AegisName: ShadowEffect_Middle + Name: Shadow Effect (Middle) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25178 + AegisName: PinkGlowEffect_Middle + Name: Pink Glow Effect (Middle) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25179 + AegisName: Blessing_Star + Name: Blessing Star + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25180 + AegisName: Old_Couple_Ring + Name: Old Rings + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25181 + AegisName: Wood_Rosary + Name: Wood Rosary + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25182 + AegisName: Assassin_PT_Dagger + Name: Assassin's Mark Dagger + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25183 + AegisName: Deco_Thimble_Archer + Name: Decorated Archer's Thimble + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25184 + AegisName: Portable_Sewingbox + Name: Portable Sewingbox + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25185 + AegisName: Locket_Pendant + Name: Locket Pendant + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25187 + AegisName: Slug_Bullet + Name: Slug Bullet + Type: Etc + Buy: 1200 + Weight: 1200 + - Id: 25205 + AegisName: ShrinkEffect_Bottom + Name: Shrink Effect (Lower) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25206 + AegisName: ElectricEffect_Top + Name: Electric Effect (Upper) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25223 + AegisName: Para_Team_Coin + Name: Eden Group Coin + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25224 + AegisName: WhiteBodyEffect_Middle + Name: White Body Effect (Middle) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25225 + AegisName: ExplodingEffect_Middle + Name: Crimson Wave Effect (Middle) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25226 + AegisName: WaterFieldEffect_Bottom + Name: Water Field Effect (Lower) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25227 + AegisName: Heal_Stone + Name: Heal Stone (Lower) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25228 + AegisName: Teleport_Stone + Name: Teleport Stone (Lower) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25229 + AegisName: Steal_Stone + Name: Steal Stone (Lower) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25231 + AegisName: Suspicious_Bottle + Name: Suspicious Bottle + Type: Etc + Buy: 1000 + Weight: 10 + - Id: 25232 + AegisName: Cheap_Lubricant + Name: Cheap Lubricant + Type: Etc + Buy: 1000 + Weight: 10 + - Id: 25233 + AegisName: Cotton_Tufts + Name: Cotton Tufts + Type: Etc + Buy: 1000 + Weight: 10 + - Id: 25238 + AegisName: New_Normal_Lubricant + Name: New Normal Lubricant + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25239 + AegisName: New_Advanced_Lubricant + Name: New Advanced Lubricant + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25246 + AegisName: Juice_Mix_Package + Name: Juice Mix Package + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25247 + AegisName: Purple_Ore + Name: Purple Ore + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25248 + AegisName: Purple_Ore_Crate + Name: Purple Ore Crate + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25249 + AegisName: Buffalo_Bandit_Mane + Name: Buffalo Bandit Mane + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25250 + AegisName: Rock_Ridge_Coin + Name: Rock Ridge Coin + Type: Etc + - Id: 25256 + AegisName: Hazy_Dream_Fragment + Name: Hazy Dream Fragment + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 25257 + AegisName: Bloody_Love_Letter + Name: Bloody Love Letter + Type: Etc + Buy: 780 + Weight: 10 + Flags: + BuyingStore: true + - Id: 25258 + AegisName: Broken_Arrow + Name: Broken Arrow + Type: Etc + Buy: 550 + Weight: 10 + Flags: + BuyingStore: true + - Id: 25260 + AegisName: Fragment_of_Purple_Ore + Name: Fragment of Purple Ore + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25271 + AegisName: Illusion_Stone + Name: Illusion Stone + Type: Etc + Buy: 10 + Flags: + BuyingStore: true + - Id: 25272 + AegisName: Illusion_Gemstone + Name: Illusion Gemstone + Type: Etc + Weight: 10 + - Id: 25276 + AegisName: Clean_Bone + Name: Clean Bone + Type: Etc + Buy: 348 + Weight: 10 + - Id: 25277 + AegisName: Deadly_Poison_Powder + Name: Deadly Poison Powder + Type: Etc + Buy: 644 + Weight: 10 + - Id: 25278 + AegisName: Bandits_Scarf + Name: Bandit's Scarf + Type: Etc + Buy: 330 + Weight: 10 + - Id: 25279 + AegisName: Crude_Ammo + Name: Crude Ammo + Type: Etc + Buy: 300 + Weight: 10 + - Id: 25280 + AegisName: Broken_Shotgun + Name: Broken Shotgun + Type: Etc + Buy: 910 + Weight: 10 + - Id: 25281 + AegisName: Crude_Scimitar + Name: Crude Scimitar + Type: Etc + Buy: 970 + Weight: 10 + - Id: 25282 + AegisName: Worn_Revolver + Name: Worn Revolver + Type: Etc + Buy: 820 + Weight: 10 + - Id: 25283 + AegisName: Brown_Muffler + Name: Brown Muffler + Type: Etc + Buy: 420 + Weight: 10 + - Id: 25284 + AegisName: Swamp_Bug_Shell + Name: Swamp Bug Shell + Type: Etc + Buy: 230 + Weight: 10 + - Id: 25285 + AegisName: Brown_Rat_Tail + Name: Brown Rat Tail + Type: Etc + Buy: 210 + Weight: 10 + - Id: 25290 + AegisName: Sweets_Festival_Coin + Name: Sweets Festival Coin + Type: Etc + - Id: 25302 + AegisName: DoubleAttack_Stone + Name: Double Attack Stone (Garment) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25303 + AegisName: Critical_Stone_Robe + Name: Critical Stone (Garment) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25304 + AegisName: Critical_Stone_Top + Name: Critical Stone (Upper) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25305 + AegisName: Critical_Stone_Bottom + Name: Critical Stone (Lower) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25306 + AegisName: CastStone_Robe + Name: Variable Casting Stone (Garment) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25375 + AegisName: Powerful_Soul_Essence + Name: Powerful Soul Essence + Type: Etc + - Id: 25377 + AegisName: Luxurious_Pet_Food + Name: Luxurious Pet Food + Type: Etc + Weight: 10 + - Id: 25409 + AegisName: SuraStone_Top + Name: Champion Stone (Upper) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25410 + AegisName: SuraStone_Middle + Name: Champion Stone (Middle) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25411 + AegisName: SuraStone_Lower + Name: Champion Stone (Lower) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25412 + AegisName: SuraStone_Robe + Name: Sura Stone (Garment) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25413 + AegisName: RangerStone_Top + Name: Sniper Stone (Upper) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25414 + AegisName: RangerStone_Middle + Name: Sniper Stone (Middle) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25415 + AegisName: RangerStone_Lower + Name: Sniper Stone (Lower) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25416 + AegisName: RangerStone_Robe + Name: Ranger Stone (Garment) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25417 + AegisName: SorcererStone_Top + Name: Scholar Stone (Upper) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25418 + AegisName: SorcererStone_Middle + Name: Scholar Stone (Middle) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25419 + AegisName: SorcererStone_Lower + Name: Scholar Stone (Lower) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25420 + AegisName: SorcererStone_Robe + Name: Sorcerer Stone (Garment) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25445 + AegisName: RuneknightStone_Top + Name: Lord Knight Stone (Upper) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25446 + AegisName: RuneknightStone_Middle + Name: Lord Knight Stone (Middle) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25447 + AegisName: RuneknightStone_Lower + Name: Lord Knight Stone (Lower) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25448 + AegisName: RuneknightStone_Robe + Name: Rune Knight Stone (Garment) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25449 + AegisName: GeneticStone_Robe + Name: Genetic Stone (Garment) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25450 + AegisName: GeneticStone_Top + Name: Creator Stone (Upper) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25451 + AegisName: GeneticStone_Middle + Name: Creator Stone (Middle) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25452 + AegisName: GeneticStone_Lower + Name: Creator Stone (Lower) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25453 + AegisName: WarlockStone_Top + Name: High Wizard Stone (Upper) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25454 + AegisName: WarlockStone_Middle + Name: High Wizard Stone (Middle) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25455 + AegisName: WarlockStone_Lower + Name: High Wizard Stone (Lower) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25456 + AegisName: WarlockStone_Robe + Name: Warlock Stone (Garment) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25464 + AegisName: World_Moving_Rights + Name: World Moving Rights + Type: Etc + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25490 + AegisName: ShadowchaserStone_Top + Name: Stalker Stone (Upper) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25491 + AegisName: ShadowchaserStone_Middle + Name: Stalker Stone (Middle) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25492 + AegisName: ShadowchaserStone_Lower + Name: Stalker Stone (Lower) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25493 + AegisName: ShadowchaserStone_Robe + Name: Shadow Chaser Stone (Garment) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25494 + AegisName: MechanicStone_Top + Name: Mastersmith Stone (Upper) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25495 + AegisName: MechanicStone_Middle + Name: Mastersmith Stone (Middle) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25496 + AegisName: MechanicStone_Lower + Name: Mastersmith Stone (Lower) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25497 + AegisName: MechanicStone_Robe + Name: Mechanic Stone (Garment) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25498 + AegisName: WanderMinstrelStone_Top + Name: Clown Gypsy Stone (Upper) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25499 + AegisName: WanderMinstrelStone_Middle + Name: Clown Gypsy Stone (Middle) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25500 + AegisName: WanderMinstrelStone_Lower + Name: Clown Gypsy Stone (Lower) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25501 + AegisName: WanderMinstrelStone_Robe + Name: Wanderer Minstrel Stone (Garment) + Type: Etc + Buy: 20 + Weight: 100 + - Id: 25670 + AegisName: M_M_Defense + Name: Modification Module (Defense) + Type: Card + Buy: 20 + Weight: 10 + Script: | + .@r = getrefine(); .@def = 25; if (.@r >= 9) { .@def += 20; } else if (.@r >= 7) { .@def += 10; } bonus bDef,.@def; + - Id: 25671 + AegisName: M_M_Magic_Defense + Name: Modification Module (Magic Defense) + Type: Card + Buy: 20 + Weight: 10 + Script: | + .@r = getrefine(); .@mdef = 2; if (.@r >= 9) { .@mdef += 6; } else if (.@r >= 7) { .@mdef += 3; } bonus bMDef,.@mdef; + - Id: 25672 + AegisName: M_M_Vit + Name: Modification Module (Vit) + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bVit,3; + - Id: 25673 + AegisName: M_M_Luk + Name: Modification Module (Luk) + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bLuk,3; + - Id: 25674 + AegisName: M_M_Str + Name: Modification Module (Str) + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bStr,3; + - Id: 25675 + AegisName: M_M_Agi + Name: Modification Module (Agi) + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bAgi,3; + - Id: 25676 + AegisName: M_M_Int + Name: Modification Module (Int) + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bInt,3; + - Id: 25677 + AegisName: M_M_Dex + Name: Modification Module (Dex) + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bDex,3; + - Id: 25678 + AegisName: M_M_HP_recovery + Name: Modification Module (HP recovery) + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bHPrecovRate,20; + - Id: 25679 + AegisName: M_M_SP_recovery + Name: Modification Module (SP recovery) + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bSPrecovRate,20; + - Id: 25680 + AegisName: M_M_Spell5 + Name: Modification Module (Spell) + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bMatk,18; bonus bVariableCastrate,-10; + - Id: 25681 + AegisName: M_M_Attack_Delay_4 + Name: Modification Module (Attack Speed) + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bAspdRate,10; + - Id: 25682 + AegisName: M_M_Fatal4 + Name: Modification Module (Fatal) + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bCritAtkRate,10; bonus bCritical,4; + - Id: 25683 + AegisName: M_M_Expert_Archer5 + Name: Modification Module (Expert Archer) + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus bLongAtkRate,10; + - Id: 25684 + AegisName: M_M_Vital + Name: Modification Module (Vital) + Type: Card + Buy: 20 + Weight: 10 + Script: | + .@r = getrefine(); bonus bMaxHPrate,5; if (.@r >= 9) { bonus bMaxHP,1250; } else if (.@r >= 7) { bonus bMaxHP,500; } + - Id: 25685 + AegisName: M_M_Mental + Name: Modification Module (Mental) + Type: Card + Buy: 20 + Weight: 10 + Script: | + .@r = getrefine(); bonus bMaxSPrate,5; if (.@r >= 9) { bonus bMaxSP,250; } else if (.@r >= 7) { bonus bMaxSP,100; } + - Id: 25686 + AegisName: M_M_Heal + Name: Modification Module (Heal) + Type: Card + Buy: 20 + Weight: 10 + Script: | + .@r = getrefine(); .@val = 5; if (.@r >= 9) { .@val += 10; } else if (.@r >= 7) { .@val += 5; } bonus bHealPower,.@val; + - Id: 25687 + AegisName: M_M_Power + Name: Modification Module (Power) + Type: Card + Buy: 20 + Weight: 10 + Script: | + .@r = getrefine(); bonus2 bAddClass,Class_All,5; if (.@r >= 9) { bonus bBaseAtk,50; } else if (.@r >= 7) { bonus bBaseAtk,25; } + - Id: 25688 + AegisName: M_M_Magic + Name: Modification Module (Magic) + Type: Card + Buy: 20 + Weight: 10 + Script: | + .@r = getrefine(); bonus bMatkRate,5; if (.@r >= 9) { bonus bMatk,50; } else if (.@r >= 7) { bonus bMatk,25; } + - Id: 25689 + AegisName: M_M_Shooter + Name: Modification Module (Shooter) + Type: Card + Buy: 20 + Weight: 10 + Script: | + .@r = getrefine(); .@val = 3; if (.@r >= 9) { .@val += 4; } else if (.@r >= 7) { .@val += 2; } bonus bLongAtkRate,.@val; + - Id: 25690 + AegisName: M_M_Fast + Name: Modification Module (Fast) + Type: Card + Buy: 20 + Weight: 10 + Script: | + .@r = getrefine(); bonus bAspd,1; if (.@r >= 9) { bonus bAspdRate,6; } else if (.@r >= 7) { bonus bAspdRate,3; } + - Id: 25691 + AegisName: M_M_Caster + Name: Modification Module (Caster) + Type: Card + Buy: 20 + Weight: 10 + Script: | + .@r = getrefine(); .@val = -5; if (.@r >= 9) { .@val -= 6; } else if (.@r >= 7) { .@val -= 3; } bonus bVariableCastrate,.@val; + - Id: 25692 + AegisName: M_M_Critical + Name: Modification Module (Critical) + Type: Card + Buy: 20 + Weight: 10 + Script: | + .@r = getrefine(); bonus bCritical,5; if (.@r >= 9) { bonus bCritAtkRate,10; } else if (.@r >= 7) { bonus bCritAtkRate,5; } + - Id: 25693 + AegisName: M_M_Delay_After_skill + Name: Modification Module (Delay after skill) + Type: Card + Buy: 20 + Weight: 10 + Script: | + .@r = getrefine(); .@val = -5; if (.@r >= 9) { .@val -= 10; } else if (.@r >= 7) { .@val -= 5; } bonus bDelayrate,.@val; + - Id: 25694 + AegisName: M_M_Fixed_Casting + Name: Modification Module (Fixed Casting) + Type: Card + Buy: 20 + Weight: 10 + Script: | + .@r = getrefine(); .@val = -300; if (.@r >= 9) { .@val -= 400; } else if (.@r >= 7) { .@val -= 200; } bonus bFixedCast,.@val; + - Id: 25695 + AegisName: M_M_Above_All + Name: Modification Module (Above All) + Type: Card + Buy: 20 + Weight: 10 + Script: | + .@r = getrefine(); bonus2 bSubEle,Ele_All,5; if (.@r >= 7) { bonus2 bSubSize,Size_All,5; if (.@r >= 9) { bonus2 bSubRace,RC_All,5; bonus2 bSubRace,RC_Player_Human,-5; } } + - Id: 25696 + AegisName: M_M_Drain_Life + Name: Modification Module (Drain Life) + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus2 bHPDrainRate,20,2; + - Id: 25697 + AegisName: M_M_Drain_Soul + Name: Modification Module (Drain Soul) + Type: Card + Buy: 20 + Weight: 10 + Script: | + bonus2 bSPDrainRate,10,1; + - Id: 25698 + AegisName: M_M_Magic_Healing + Name: Modification Module (Magic Healing) + Type: Card + Buy: 20 + Weight: 10 + Script: | + autobonus "{ bonus2 bHPRegenRate,400,500; }",20,10000,BF_MAGIC; + - Id: 25699 + AegisName: M_M_Magic_Soul + Name: Modification Module (Magic Soul) + Type: Card + Buy: 20 + Weight: 10 + Script: | + autobonus "{ bonus2 bSPRegenRate,80,500; }",10,10000,BF_MAGIC; + - Id: 25700 + AegisName: M_M_Unlimited_Vital + Name: Modification Module (Unlimited Vital) + Type: Card + Buy: 20 + Weight: 10 + Script: | + autobonus2 "{ bonus bVit,50; bonus2 bHPRegenRate,400,500; bonus2 bSPLossRate,20,1000; }",10,10000,BF_WEAPON|BF_MAGIC; /* unknown rate */ + - Id: 25701 + AegisName: M_M_Spell_Buster + Name: Modification Module (Spell Buster) + Type: Card + Buy: 20 + Weight: 10 + Script: | + autobonus "{ bonus bInt,50; bonus bMatkRate,15; bonus2 bAddClass,Class_All,-15; }",20,10000,BF_MAGIC; /* unknown rate */ + - Id: 25702 + AegisName: M_M_Firing_Shot + Name: Modification Module (Firing Shot) + Type: Card + Buy: 20 + Weight: 10 + Script: | + autobonus "{ bonus bDex,50; bonus bLongAtkRate,10; bonus2 bSPLossRate,20,1000; }",20,10000,BF_WEAPON; /* unknown rate */ + - Id: 25703 + AegisName: M_M_Overpower + Name: Modification Module (Overpower) + Type: Card + Buy: 20 + Weight: 10 + Script: | + autobonus "{ bonus bStr,50; bonus2 bAddClass,Class_All,15; bonus bMatkRate,-15; }",20,10000,BF_WEAPON; /* unknown rate */ + - Id: 25704 + AegisName: M_M_Fatal_Flash + Name: Modification Module (Fatal Flash) + Type: Card + Buy: 20 + Weight: 10 + Script: | + autobonus "{ bonus bStr,50; bonus bCritAtkRate,10; bonus2 bHPLossRate,300,1000; }",20,10000,BF_WEAPON; /* unknown rate */ + - Id: 25705 + AegisName: M_M_Lucky_Strike + Name: Modification Module (Lucky Strike) + Type: Card + Buy: 20 + Weight: 10 + Script: | + autobonus "{ bonus bLuk,50; bonus2 bMagicAtkEle,Ele_All,10; bonus2 bHPLossRate,300,1000; }",20,10000,BF_MAGIC; /* unknown rate */ + - Id: 27012 + AegisName: Kick_Step_Card + Name: Kick Step Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Script: | + bonus bMaxHPrate,8; if((eaclass()&EAJ_THIRDMASK) == EAJ_MECHANIC){ bonus bLongAtkDef,30; } + - Id: 27013 + AegisName: Kick_&_Kick_Card + Name: Kick & Kick Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + bonus2 bSkillAtk,"NC_VULCANARM",10+((getrefine()>=10)*20); + - Id: 27014 + AegisName: Green_Cenere_Card + Name: Green Cenere Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Script: | + bonus bMaxHPrate,2; autobonus2 "{ bonus2 bHPRegenRate,1000,1000; }",30,5000; + - Id: 27015 + AegisName: Repair_Robot_Turbo_Card + Name: Repair Robot Turbo Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Script: | + bonus bHPrecovRate,25; bonus bSPrecovRate,25; .@r = getrefine(); bonus bHPGainValue,30+((.@r>=7)*10); bonus bSPGainValue,3+((.@r>=7)*3); + - Id: 27016 + AegisName: Exploration_Rover_Turbo_Card + Name: Exploration Rover Turbo Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + bonus2 bCriticalAddRace,RC_Formless,30; + - Id: 27017 + AegisName: Scrap_Robots_Card + Name: Scrap Robots Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Script: | + bonus2 bSubRace,RC_Formless,10*((getrefine()>=7)*5); /* TODO: Has a chance to gain accessories when a monster is killed. */ + - Id: 27018 + AegisName: GC109_Card + Name: GC109 Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bDelayrate,-(1+(BaseLevel>=90)+(BaseLevel>=120)); + - Id: 27019 + AegisName: DR815_Card + Name: DR815 Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bHit,1+(BaseLevel>=90)+(BaseLevel>=120); + - Id: 27020 + AegisName: T_W_O_Card + Name: T W O Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + bonus2 bAddClass,Class_All,10; bonus3 bAutoSpell,"NPC_WIDESOULDRAIN",2,50+((getrefine()/3)*10); + - Id: 27025 + AegisName: Lich_Lord_Card + Name: Lich Lord Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bDef,30; bonus bMdef,10; bonus2 bAddEff,Eff_Silence,900; if(getequipid() == 28483){ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; } /* TODO: Confirm Mob ID to transform */ autobonus "{ bonus bIgnoreDefClass,Class_All; bonus bIgnoreMdefRace,RC_All; }",20,7000,BF_WEAPON|BF_MAGIC,"{ active_transform 1875,7000; }"; + - Id: 27026 + AegisName: Fire_Condor_Card + Name: Fire Condor Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus2 bVariableCastRate,"MG_FIREBALL",-50; bonus2 bSkillAtk,"MG_FIREBALL",100; + - Id: 27027 + AegisName: Fire_Sandman_Card + Name: Fire Sandman Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Script: | + bonus bDef,50; bonus2 bSubDefEle,Ele_Fire,10; + - Id: 27028 + AegisName: Fire_Frilldora_Card + Name: Fire Frilldora Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + .@r = getrefine(); bonus2 bMagicAddEle,Ele_Earth,3+((.@r>=7)*5)+((.@r>=9)*7); + - Id: 27029 + AegisName: Fire_Golem_Card + Name: Fire Golem Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Script: | + bonus2 bSubDefEle,Ele_Fire,20; bonus2 bAddEle,Ele_Fire,5; + - Id: 27030 + AegisName: Fulbuk_Card + Name: Firebug Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Script: | + bonus3 bAddEff,Eff_Burning,700,ATF_WEAPON|ATF_MAGIC; + - Id: 27081 + AegisName: Angry_Moonlight_Flower_Card + Name: Angry Moonlight Flower Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Script: | + skill "PA_PRESSURE",4; + - Id: 27082 + AegisName: Angry_Nine_Tail_Card + Name: Angry Nine Tail Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Script: | + .@val = 5; bonus bCritAtkRate,10; if (getrefine() >= 10) { .@val += 10; } bonus bCritical,.@val; + - Id: 27083 + AegisName: Resentful_Bongun_Card + Name: Resentful Bongun Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Script: | + bonus bBaseAtk,20; bonus bMatk,20; + - Id: 27084 + AegisName: Resentful_Sohee_Card + Name: Resentful Sohee Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Script: | + bonus bMatk,10; if (getrefine() >= 10) { bonus bMatkRate,2; } + - Id: 27085 + AegisName: Resentful_Munak_Card + Name: Resentful Munak Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + bonus bBaseAtk,15; bonus bMatk,15; + - Id: 27086 + AegisName: Resentful_Soldier_Card + Name: Resentful Soldier Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + if (getiteminfo(getequipid(EQI_COMPOUND_ON),11) == W_BOW) { bonus3 bAutoSpell,"AC_DOUBLE",5,30; if (getrefine() >= 10) { bonus2 bWeaponDamageRate,W_BOW,20; } } + - Id: 27087 + AegisName: Truthful_Wizard_Card + Name: Truthful Wizard Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + bonus bMatk,25; autobonus "{ bonus bNoCastCancel; }",5,5000,BF_MAGIC,"{ showscript \"This is the truth!\"; }"; + - Id: 27088 + AegisName: Fury_Hero_Card + Name: Fury Hero Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Script: | + bonus2 bAddClass,Class_All,2; bonus5 bAutoSpell,"SM_ENDURE",1,5,BF_SHORT,0; + - Id: 27101 + AegisName: Sweet_Nightmare_Card + Name: Sweet Nightmare Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Script: | + bonus bMatk,20; bonus bNoCastCancel; + - Id: 27102 + AegisName: Matt_Drainliar_Card + Name: Matt Drainliar Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Script: | + bonus2 bResEff,Eff_Burning,10000; + - Id: 27103 + AegisName: Living_Dead_Card + Name: Living Dead Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Script: | + bonus bBaseAtk,20; bonus bUnbreakableWeapon; bonus bUnbreakableArmor; + - Id: 27104 + AegisName: Furious_Dracula_Card + Name: Furious Dracula Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Script: | + skill "PF_HPCONVERSION",1; + - Id: 27105 + AegisName: Bomi_Card + Name: Bomi Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Script: | + skill "HW_NAPALMVULCAN",4; + - Id: 27106 + AegisName: Awaken_Pere_Card + Name: Awaken Pere Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Script: | + if (BaseJob == Job_Bard || BaseJob == Job_Dancer) { bonus bMatk,(15*getrefine()); } + - Id: 27107 + AegisName: Playing_Pere_Card + Name: Playing Pere Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Script: | + bonus2 bAddEle,Ele_Neutral,20; + - Id: 27108 + AegisName: Singing_Pere_Card + Name: Singing Pere Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Accessory: true + Script: | + bonus2 bMagicAddEle,Ele_Neutral,20; + - Id: 27109 + AegisName: Jitterbug_Card + Name: Jitterbug Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Script: | + bonus2 bSubDefEle,Ele_Neutral,10; bonus bMaxHP,500; + - Id: 27110 + AegisName: Furious_Gazeti_Card + Name: Furious Gazeti Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Script: | + bonus bLongAtkDef,20; + - Id: 27111 + AegisName: Furious_Snowier_Card + Name: Furious Snowier Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus2 bAddItemHealRate,11522,50; bonus2 bAddItemHealRate,11523,50; bonus2 bAddItemHealRate,11524,50; + - Id: 27112 + AegisName: Furious_Ice Titan_Card + Name: Furious Ice Titan Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Script: | + bonus bDef,(5*(1+getrefine())); + - Id: 27113 + AegisName: Awaken_Ktullanux_Card + Name: Awaken Ktullanux Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Script: | + bonus2 bMagicAtkEle,Ele_Water,(20+(3*getrefine())); + - Id: 27114 + AegisName: Ominous_Solider_Card + Name: Ominous Solider Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Script: | + bonus bMaxHPrate,(10+(getrefine()/3)); .@val = 50; if (BaseLevel >= 160) { .@val += 50; bonus bVit,3; } bonus bDef,.@val; + - Id: 27115 + AegisName: Ominous_Permeter_Card + Name: Ominous Permeter Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Script: | + .@r = getrefine(); bonus bInt,1; bonus bMaxSP,(80+10*(.@r/2)); if (.@r >= 7) { bonus bSPrecovRate,30; } + - Id: 27116 + AegisName: Ominous_Heater_Card + Name: Ominous Heater Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bCritical,3; bonus bCritAtkRate,5; + - Id: 27117 + AegisName: Ominous_Assaulter_Card + Name: Ominous Assaulter Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + .@type = getiteminfo(getequipid(EQI_COMPOUND_ON),11); if (.@type == W_WHIP || .@type == W_MUSICAL || .@type == W_BOOK || .@type == W_2HSWORD || .@type == W_2HSPEAR) { .@r = getrefine(); bonus bCritical,5; bonus bBaseAtk,(3*.@r); } bonus bCritAtkRate,(10+.@r); + - Id: 27118 + AegisName: Ominous_Freezer_Card + Name: Ominous Freezer Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Script: | + bonus bMaxHPrate,10; bonus bStr,2; if (BaseLevel >= 160) { .@val = 10; } if (getrefine() >= 9) { .@val += 10; } if (.@val) { bonus2 bSkillAtk,"RK_HUNDREDSPEAR",.@val; bonus2 bSkillAtk,"LG_OVERBRAND",.@val; } + - Id: 27119 + AegisName: Ominous_Turtle_General_Card + Name: Ominous Turtle General Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Script: | + bonus bDef,30; bonus bMdef,5; bonus2 bSubSize,Size_All,25; + - Id: 27120 + AegisName: Iara_Card + Name: Iara Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + skill "PR_STRECOVERY",1; + - Id: 27121 + AegisName: Piranha_Card + Name: Piranha Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Script: | + .@val = 10; if (getrefine() >= 9) { .@val += 5; } bonus2 bAddRace,RC_Fish,.@val; bonus2 bMagicAddRace,RC_Fish,.@val; + - Id: 27122 + AegisName: Curupira_Card + Name: Curupira Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + .@val = 3; .@r = getrefine(); if (.@r>=7) { .@val += 5; } if (.@r>=9) { .@val += 7; } bonus2 bMagicAddEle,Ele_Water,.@val; + - Id: 27123 + AegisName: Tucan_Card + Name: Toucan Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Script: | + .@val = 10; if (getrefine() >= 9) { .@val += 5; } bonus2 bMagicAddRace,RC_Insect,.@val; + - Id: 27124 + AegisName: Jaguar_Card + Name: Jaguar Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Script: | + .@val = 10; if (getrefine() >= 9) { .@val += 5; } bonus2 bMagicAddRace,RC_Brute,.@val; bonus2 bMagicAddRace,RC_Player_Doram,.@val; + - Id: 27125 + AegisName: Headless_Mule_Card + Name: Headless Mule Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus2 bMagicAtkEle,Ele_Water,20; bonus2 bMagicAtkEle,Ele_Holy,20; + - Id: 27126 + AegisName: Boitata_Card + Name: Boitata Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Script: | + bonus2 bAddEle,Ele_Wind,40; bonus2 bAddEle,Ele_Earth,40; bonus2 bAddRace,RC_Brute,40; bonus2 bAddRace,RC_Player_Doram,40; bonus2 bAddRace,RC_Insect,40; + - Id: 27147 + AegisName: Humanoid_Chimera_Card + Name: Humanoid Chimera Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bHit,(BaseLevel >= 90 ? 15 : 5); + - Id: 27148 + AegisName: Material_Chimera_Card + Name: Material Chimera Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bFlee,(BaseLevel >= 90 ? 20 : 10); + - Id: 27149 + AegisName: Heart_Hunter_Card + Name: Heart Hunter Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + .@type = getiteminfo(getequipid(EQI_COMPOUND_ON),11); .@r = getrefine(); if(.@type == 17 || .@type == 18 || .@type == 21){ bonus bLongAtkRate,5+.@r+(.@r >= 10 ? 5 : 0); } + - Id: 27150 + AegisName: Toxic_Enchanted_Chimera_Card + Name: Toxic Enchanted Chimera Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Script: | + bonus bMaxHP,1000; bonus bMaxSP,200; if(getrefine() >= 12){ bonus bMaxHPrate,15; bonus bMaxSPrate,15; } + - Id: 27151 + AegisName: Heart_Hunter_Evil_Card + Name: Heart Hunter Evil Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Script: | + bonus2 bAddEffWhenHit,Eff_Freeze,3000 + (readparam(bInt) >= 110 ? 1000 : 0); bonus bMdef,5; + - Id: 27152 + AegisName: Cutie_Card + Name: Cutie Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Script: | + bonus bMaxHPrate,10; .@r = getrefine()/2; bonus bAgi,.@r; bonus bAspdRate,.@r; + - Id: 27157 + AegisName: Wood_Goblin_Card + Name: Wood Goblin Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Script: | + .@r = getrefine(); bonus2 bAddEle,Ele_Water,(.@r >= 9 ? 10 : 5); bonus2 bAddEle,Ele_Earth,(.@r >= 9 ? 10 : 5); bonus2 bSubDefEle,Ele_Water,-5; bonus2 bSubDefEle,Ele_Earth,-5; + - Id: 27158 + AegisName: Les_Card + Name: Les Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Script: | + bonus2 bSubEle,Ele_Wind,30; + - Id: 27159 + AegisName: Uzhas_Card + Name: Uzhas Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Script: | + bonus2 bMagicAddRace,RC_Demon,(getrefine() >= 9 ? 15 : 10); + - Id: 27160 + AegisName: Vavayaga_Card + Name: Vavayaga Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Script: | + bonus bFlee,getrefine()*2; + - Id: 27161 + AegisName: Mavka_Card + Name: Mavka Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus2 bMagicAtkEle,Ele_Fire,20; bonus2 bMagicAtkEle,Ele_Earth,20; + - Id: 27162 + AegisName: Gopinich_Card + Name: Gopinich Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Script: | + bonus bSPDrainValue,5; bonus bUseSPrate,50; + - Id: 27163 + AegisName: Faceworm_Card + Name: Faceworm Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bAgi,-1; bonus bDex,-1; bonus bAspdRate,3; + - Id: 27164 + AegisName: Faceworm_Queen_Card + Name: Faceworm Queen Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Script: | + bonus bMaxHPrate,-10; .@r = getrefine(); bonus bCritical,15 + .@r; bonus bCritAtkRate,.@r; + - Id: 27165 + AegisName: Dark_Faceworm_Card + Name: Dark Faceworm Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bVit,-1; bonus bInt,-1; bonus bDelayrate,-3; + - Id: 27166 + AegisName: Faceworm_Egg_Card + Name: Faceworm Egg Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Script: | + .@r = getrefine(); .@sub = 2+(.@r >= 9 ? 3 : .@r >= 7 ? 1 : 0); bonus2 bSubEle,Ele_Fire,.@sub; + - Id: 27167 + AegisName: Faceworm_Larva_Card + Name: Faceworm Larva Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Script: | + bonus2 bSubEle,Ele_Neutral,15; bonus2 bMagicAtkEle,Ele_Water,getrefine()*3; + - Id: 27168 + AegisName: Irene_High_Elder_Card + Name: Irene High Elder Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Script: | + bonus bHit,10 + 5 * (getrefine()/3); + - Id: 27169 + AegisName: Payon_Soldier_Card + Name: Payon Soldier Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + .@atk = 5; .@r = getrefine(); if(getiteminfo(getequipid(EQI_HAND_R),11) == W_SPEAR && .@r >= 10){ .@atk += 20; if(.@r >= 14){ .@atk += 20; } } bonus bAtk,.@atk; bonus bMatk,.@atk; + - Id: 27170 + AegisName: Shotgun_Buffalo_Bandit_Card + Name: Shotgun Buffalo Bandit Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Accessory: true + Script: | + bonus bAgi,7; bonus bHit,7; + - Id: 27171 + AegisName: Revolver_Buffalo_Bandit_Card + Name: Revolver Buffalo Bandit Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Script: | + bonus bStr,4; bonus2 bAddClass,Class_All,4; + - Id: 27172 + AegisName: Scimitar_Buffalo_Bandit_Card + Name: Scimitar Buffalo Bandit Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + .@bonus = 5; .@type = getiteminfo(getequipid(EQI_COMPOUND_ON),11); if (.@type == W_DAGGER) { .@r = getrefine(); if (.@r>=10) { .@bonus += 20; } if (.@r>=14) { .@bonus += 20; } } bonus bBaseAtk,.@bonus; bonus bMatk,.@bonus; + - Id: 27173 + AegisName: Elite_Shotgun_Buffalo_Bandit_Card + Name: Elite Shotgun Buffalo Bandit Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + .@bonus = 10; .@r = getrefine(); if (.@r>=10) { .@bonus += 20; } if (.@r>=14) { .@bonus += 20; } bonus2 bSkillAtk,"GS_SPREADATTACK",.@bonus; + - Id: 27174 + AegisName: Elite_Revolver_Buffalo_Bandit_Card + Name: Elite Revolver Buffalo Bandit Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + .@bonus = 10; .@r = getrefine(); if (.@r>=10) { .@bonus += 20; } if (.@r>=14) { .@bonus += 20; } bonus2 bSkillAtk,"GS_RAPIDSHOWER",.@bonus; + - Id: 27175 + AegisName: Elite_Scimitar_Buffalo_Bandit_Card + Name: Elite Scimitar Buffalo Bandit Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + bonus2 bAddSize,Size_Small,10; bonus2 bMagicAddSize,Size_Small,10; + - Id: 27176 + AegisName: Brown_Rat_Card + Name: Brown Rat Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Script: | + .@str = readparam(bStr); .@bonus = 3*(.@str/10); if (.@str>=120) { .@bonus += 40; } bonus bBaseAtk,.@bonus; bonus bAspdRate,(.@str/10); + - Id: 27177 + AegisName: Marsh_Arclouse_Card + Name: Marsh Arclouse Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Script: | + .@int = readparam(bInt); .@bonus = 3*(.@int/10); if (.@int>=120) { .@bonus += 40; } bonus bMatk,.@bonus; bonus bAspdRate,(.@int/10); + - Id: 27178 + AegisName: Gaster_Card + Name: Gaster Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Script: | + bonus2 bSubClass,Class_Normal,25; bonus2 bSubClass,Class_Boss,-50; + - Id: 27179 + AegisName: Coyote_Card + Name: Coyote Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Script: | + bonus bNoCastCancel; .@hp = -12; .@sp = -6; if (getrefine() >= 10) { .@hp += 6; .@sp += 3; } bonus bMaxHPrate,.@hp; bonus bMaxSPrate,.@sp; + - Id: 27180 + AegisName: Mechaspider_Card + Name: Mechaspider Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Accessory: true + Script: | + bonus bBreakWeaponRate,500; bonus bBreakArmorRate,500; + - Id: 27181 + AegisName: Airship_Raid_Card + Name: Airship Raid Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + .@r = getrefine(); bonus bLongAtkRate,1 + .@r/2; bonus bCritical,.@r/2; + - Id: 27182 + AegisName: Captain_Felock_Card + Name: Captain Felock Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + bonus bAtk,30; .@r = getrefine(); bonus2 bSkillAtk,"RL_AM_BLAST",.@r >= 10 ? 60 : 30; bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",.@r >= 10 ? 60 : 30; + - Id: 27183 + AegisName: Gigantes_Card + Name: Gigantes Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Accessory: true + Script: | + bonus bAtk,20; if(readparam(bStr) >= 120) { bonus bAtk,20; bonus bAspdRate,3; } + - Id: 27184 + AegisName: Knight_Sakray_Card + Name: Knight Sakray Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + bonus bAtk,20; bonus2 bAddRace,RC_Demon,30; bonus2 bAddRace,RC_Undead,30; + - Id: 27196 + AegisName: Nihil_M_Heine_Card + Name: Nihil M. Heine Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + bonus2 bMagicAddSize,Size_Small,15; + - Id: 27197 + AegisName: Agnes_Lugenburg_Card + Name: Agnes Lugenburg Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + bonus2 bAddSize,Size_Small,15; + - Id: 27198 + AegisName: Jurgen_Wigner_Card + Name: Jurgen Wigner Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + bonus2 bAddRace,RC_Brute,15; bonus2 bAddRace,RC_Player_Doram,15; + - Id: 27199 + AegisName: Spica_Nerius_Card + Name: Spica Nerius Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + bonus2 bMagicAddRace,RC_Brute,15; bonus2 bMagicAddRace,RC_Player_Doram,15; + - Id: 27249 + AegisName: Arhi_Card + Name: Arhi Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Script: | + bonus bAtk,15; bonus bMatk,15; bonus bMaxHP,500; bonus bHit,15; bonus bFlee,15; + - Id: 27250 + AegisName: Dio_Anemos_Card + Name: Dio Anemos Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Script: | + bonus bMatkRate,3; bonus2 bMagicAtkEle,Ele_Neutral,5; bonus2 bMagicAtkEle,Ele_Earth,5; + - Id: 27251 + AegisName: Geffen_Gang_Member_Card + Name: Geffen Gang Member Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Script: | + bonus bCritAtkRate,3; bonus bAspdRate,5; + - Id: 27252 + AegisName: Geffen_Bully_Card + Name: Geffen Bully Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Script: | + bonus bCritAtkRate,5; bonus bAspdRate,3; + - Id: 27253 + AegisName: Geffen_Shoplifter_Card + Name: Geffen Shoplifter Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Script: | + bonus bMatkRate,3; bonus2 bMagicAtkEle,Ele_Fire,5; bonus2 bMagicAtkEle,Ele_Holy,5; + - Id: 27254 + AegisName: Faymont_Card + Name: Faymont Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Script: | + bonus bSPrecovRate,10; bonus3 bAutoSpellWhenHit,"CH_SOULCOLLECT",1,10; + - Id: 27255 + AegisName: Ordre_Card + Name: Ordre Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Script: | + bonus bMatkRate,3; bonus2 bMagicAtkEle,Ele_Wind,5; bonus2 bMagicAtkEle,Ele_Water,5; + - Id: 27256 + AegisName: Blut_Hase_Card + Name: Blut Hase Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Script: | + bonus2 bAddClass,Class_All,3; bonus bLongAtkRate,5; + - Id: 27257 + AegisName: Kuro_Akuma_Card + Name: Kuro Akuma Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Script: | + bonus bCastrate,3; bonus bLongAtkRate,5; bonus2 bSkillAtk,"NJ_HUUJIN",5; bonus2 bSkillAtk,"NJ_HYOUSENSOU",5; bonus2 bSkillAtk,"NJ_KOUENKA",5; + - Id: 27258 + AegisName: Ifodes_Card + Name: Ifodes Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Script: | + bonus2 bAddClass,Class_All,3; bonus bAspdRate,5; + - Id: 27259 + AegisName: Licheniyes_Card + Name: Licheniyes Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Script: | + bonus bMatkRate,3; bonus2 bMagicAtkEle,Ele_Holy,5; bonus bHealPower,5; + - Id: 27260 + AegisName: Odoric_Card + Name: Odoric Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Script: | + bonus bAspdRate,3; bonus bLongAtkRate,5; + - Id: 27261 + AegisName: Ju_Card + Name: Ju Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + .@rate = 10 + (getiteminfo(getequipid(EQI_HAND_R),11) == W_BOOK ? 20 : 0) + (getrefine() >= 14 ? 20 : 0); bonus2 bSkillAtk,"MG_FIREBOLT",.@rate; bonus2 bSkillAtk,"MG_COLDBOLT",.@rate; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",.@rate; + - Id: 27262 + AegisName: Dwigh_Card + Name: Dwigh Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus2 bMagicAtkEle,Ele_Dark,20; bonus2 bMagicAtkEle,Ele_Neutral,20; + - Id: 27263 + AegisName: Fay_Kanavian_Card + Name: Fay Kanavian Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Script: | + autobonus "{ bonus bDef,300; }",100,10000,BF_WEAPON|BF_SHORT,"{ active_transform 1040,10000; }"; + - Id: 27264 + AegisName: Evil_Shadow_Card + Name: Evil Shadow Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Script: | + bonus2 bSubEle,Ele_Dark,30; bonus2 bSubEle,Ele_Undead,30; bonus2 bSubEle,Ele_Holy,-30; bonus2 bSubEle,Ele_Fire,-30; + - Id: 27265 + AegisName: Evil_Fanatics_Card + Name: Evil Fanatics Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + bonus2 bAddEle,Ele_Dark,30; bonus2 bAddEle,Ele_Undead,30; bonus2 bMagicAddEle,Ele_Dark,30; bonus2 bMagicAddEle,Ele_Undead,30; bonus2 bAddEle,Ele_Holy,-30; bonus2 bAddEle,Ele_Fire,-30; bonus2 bMagicAddEle,Ele_Holy,-30; bonus2 bMagicAddEle,Ele_Fire,-30; + - Id: 27286 + AegisName: Colorful_Teddy_Bear_Card + Name: Colorful Teddy Bear Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + bonus bMatk,5; bonus2 bMagicAddSize,Size_Large,15; + - Id: 27287 + AegisName: Shiny_Teddy_Bear_Card + Name: Shiny Teddy Bear Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Script: | + bonus bUseSPrate,10; bonus2 bMagicAtkEle,Ele_Holy,(3*getrefine()); + - Id: 27288 + AegisName: Hardworking_Pitman_Card + Name: Hardworking Pitman Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Script: | + .@val = 10; bonus2 bAddClass,Class_All,5; if (getrefine() >= 10) { .@val += 5; } bonus bHit,.@val; + - Id: 27289 + AegisName: Soul_Fragment_Card + Name: Soul Fragment Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + bonus bMatk,5; bonus2 bMagicAddSize,Size_Medium,15; + - Id: 27290 + AegisName: Haunted_Obsidian_Card + Name: Haunted Obsidian Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Script: | + .@agi = readparam(bAgi); .@val = .@agi/10; if (.@val) { bonus bFlee,(3*.@val); bonus bAspdRate,.@val; if (.@agi >= 120) { bonus bAspd,1; } } + - Id: 27291 + AegisName: Ancient_Tri_Joint_Card + Name: Ancient Tri Joint Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + bonus bBaseAtk,30; bonus bMaxHPrate,-1; + - Id: 27292 + AegisName: Ancient_Stalactic_Golem_Card + Name: Ancient Stalactic Golem Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Script: | + .@vit = readparam(bVit); .@val = .@vit/10; if (.@val) { bonus bAspdRate,.@val; bonus bMaxHP,(150*.@val); if (.@vit >= 120) { bonus bDelayrate,-3; } } + - Id: 27293 + AegisName: Ancient_Megalith_Card + Name: Ancient Megalith Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + bonus bMatk,30; bonus bMaxSPrate,-1; + - Id: 27294 + AegisName: Ancient_Tao_Gunka_Card + Name: Ancient Tao Gunka Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Script: | + .@val = 30; if (getrefine() >= 10) { .@val += 20; } bonus2 bIgnoreDefClassRate,Class_Boss,.@val; + - Id: 27295 + AegisName: Ancient_Stone_Shooter_Card + Name: Ancient Stone Shooter Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Script: | + .@luk = readparam(bLuk); .@crit = .@luk/10; if (.@luk >= 120) { .@crit += 5; } bonus bAspdRate,1; bonus bCritAtkRate,.@crit; + - Id: 27296 + AegisName: Ancient_Wootan_Shooter_Card + Name: Ancient Wootan Shooter Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Script: | + .@dex = readparam(bDex); .@val = .@dex/10; if (.@val) { bonus bAspdRate,.@val; bonus2 bWeaponDamageRate,W_BOW,.@val; if (.@dex >= 120) { bonus bBaseAtk,40; } } + - Id: 27297 + AegisName: Ancient_Wootan_Fighter_Card + Name: Ancient Wootan Fighter Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + bonus bCritical,5; bonus bCritAtkRate,10; + - Id: 27298 + AegisName: Ancient_Wootan_Defender_Card + Name: Ancient Wootan Defender Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Script: | + .@val = 30; if (getrefine() >= 10) { .@val += 20; } bonus2 bSubClass,Class_Boss,.@val; + - Id: 27301 + AegisName: Labyrinth_Doppelganger_Card + Name: Labyrinth Doppelganger Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + bonus2 bAddClass,Class_All,10; + - Id: 27304 + AegisName: E_EA2S_Card + Name: E EA2S Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bHPrecovRate,50; + - Id: 27305 + AegisName: EL_A17T_Card + Name: EL A17T Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus5 bAutoSpell,"WL_HELLINFERNO",3,1,ATF_SHORT|ATF_WEAPON,1; /* fix me: unknown rate */ + - Id: 27306 + AegisName: Bellare_Card + Name: Bellare Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + if (getiteminfo(getequipid(EQI_COMPOUND_ON),11) == W_REVOLVER) { .@r = getrefine(); bonus bHit,20; bonus bLongAtkRate,(5+.@r); if (.@r >= 10) { bonus2 bSkillAtk,"RL_FIREDANCE",15; } } + - Id: 27307 + AegisName: Greater_Bellare_Card + Name: Greater Bellare Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + if (getiteminfo(getequipid(EQI_COMPOUND_ON),11) == W_GATLING) { .@r = getrefine(); bonus bHit,20; bonus bLongAtkRate,(5+.@r); if (.@r >= 10) { bonus2 bSkillAtk,"RL_R_TRIP",15; } } + - Id: 27308 + AegisName: Sanare_Card + Name: Sanare Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + .@r = getrefine(); .@val = 2; if (.@r >= 9) { .@val += 3; } if (.@r >= 11) { .@val += 5; } bonus bHealPower,.@val; + - Id: 27309 + AegisName: Greater_Sanare_Card + Name: Greater Sanare Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Script: | + bonus bMatk,10; .@val = 5; if (getrefine() >= 9) { .@val += 5; } bonus2 bMagicAtkEle,Ele_Holy,.@val; + - Id: 27310 + AegisName: Plaga_Card + Name: Plaga Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Script: | + bonus bMatk,10; .@val = 5; if (getrefine() >= 9) { .@val += 5; } bonus2 bMagicAtkEle,Ele_Neutral,.@val; + - Id: 27311 + AegisName: Mutant_Plaga_Card + Name: Mutant Plaga Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + if (getiteminfo(getequipid(EQI_COMPOUND_ON),11) == W_KNUCKLE) { .@r = getrefine(); bonus bHit,20; bonus bBaseAtk,15; if (.@r >= 10) { .@val = 15; } bonus2 bAddSize,Size_Large,(.@r+.@val); } + - Id: 27312 + AegisName: Dolor_Card + Name: Dolor Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus2 bAddRace,RC_Demon,5; + - Id: 27313 + AegisName: Mutant_Dolor_Card + Name: Mutant Dolor Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + if (getiteminfo(getequipid(EQI_COMPOUND_ON),11) == W_KATAR) { .@r = getrefine(); bonus bCritical,7; bonus bBaseAtk,15; bonus bCritAtkRate,(2*.@r); if (.@r >= 10) { bonus2 bAddSize,Size_Large,15; } } + - Id: 27314 + AegisName: Venenum_Card + Name: Venenum Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Script: | + bonus2 bAddRace,RC_Brute,15; bonus2 bAddRace,RC_Player_Doram,15; + - Id: 27315 + AegisName: Mutant_Venenum_Card + Name: Mutant Venenum Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Script: | + bonus2 bMagicAddRace,RC_Brute,15; bonus2 bMagicAddRace,RC_Player_Doram,15; + - Id: 27316 + AegisName: Twin_Caput_Card + Name: Twin Caput Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Script: | + bonus bDef,50; bonus2 bSubDefEle,Ele_Poison,10; + - Id: 27317 + AegisName: Mutant_Twin_Caput_Card + Name: Mutant Twin Caput Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus2 bAddRace,RC_Formless,5; + - Id: 27318 + AegisName: Miguel_Card + Name: Miguel Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Script: | + bonus bCritAtkRate,20; bonus2 bSubRace,RC_All,-10; + - Id: 27319 + AegisName: R48_85_BESTIA_Card + Name: R48-85-BESTIA Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Script: | + bonus2 bAddEle,Ele_Poison,40; + - Id: 27320 + AegisName: E_EA1L_card + Name: E-EA1L card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + .@r = getrefine(); .@val = 3; if (.@r >= 9) { .@val += 2; if (.@r >= 11) { .@val += 5; } } bonus2 bMagicAtkEle,Ele_Fire,.@val; + - Id: 27321 + AegisName: Despair_God_Morocc_Card + Name: Despair God Morocc Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Script: | + bonus2 bAddClass,Class_All,10; bonus bMaxHPRate,-50; bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player_Human,30; bonus2 bAddRace,RC_Angel,30; autobonus3 "{ }",1000,5000,"NV_FIRSTAID","{ active_transform 3097,5000; }"; /* unknown transformation rates */ + - Id: 27322 + AegisName: Demon_God's_Apostle_Ahat_Card + Name: Demon God's Apostle Ahat Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bMaxSPrate,5; + - Id: 27323 + AegisName: Demon_God's_Apostle_Shnaim_Card + Name: Demon God's Apostle Shnaim Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bMaxHPrate,5; + - Id: 27324 + AegisName: Brinaranea_Card + Name: Brinaranea Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + bonus2 bMagicAtkEle,Ele_Water,15; + - Id: 27325 + AegisName: Muspellskoll_Card + Name: Muspellskoll Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Script: | + bonus2 bSubDefEle,Ele_Fire,30; + - Id: 27326 + AegisName: Morocc's_Minion_Card + Name: Morocc's Minion Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Script: | + bonus bBaseAtk,100; bonus bAspdRate,25; bonus bMaxHPrate,-20; + - Id: 27327 + AegisName: Grim_Reaper_Ankou_Card + Name: Grim Reaper Ankou Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Script: | + .@r = getrefine(); bonus3 bAutoSpellWhenHit,"NPC_WIDECURSE",3,(1+.@r); autobonus2 "{ bonus2 bAddClass,Class_All,25; bonus bMatkRate,25; }",(1+.@r),10000,BF_WEAPON|BF_MAGIC; autobonus3 "{ }",1000,5000,"NV_FIRSTAID","{ active_transform 3029,5000; }"; /* unknown rates */ + - Id: 27328 + AegisName: Corrupt_Life_Card + Name: Corrupt Life Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Low: true + Head_Mid: true + Head_Top: true + Script: | + bonus bMaxHP,500; bonus bMaxSP,50; bonus2 bSubRace,RC_Angel,-50; + - Id: 27330 + AegisName: Kronecker_Card + Name: Kronecker Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + - Id: 27331 + AegisName: Kronecker_G_Heine_Card + Name: Kronecker G. Heine Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Script: | + bonus bVariableCastrate,-5; + - Id: 27332 + AegisName: Skia_Card + Name: Skia Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Accessory: true + - Id: 27333 + AegisName: Skia_Nerius_Card + Name: Skia Nerius Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Accessory: true + Script: | + bonus bAspdRate,5; + - Id: 27334 + AegisName: Chaotic_Baphomet_Card + Name: Chaotic Baphomet Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Script: | + bonus2 bAddClass,Class_All,25; bonus2 bSubRace,RC_Demon,-5; + - Id: 27335 + AegisName: Chaotic_Baphomet_Junior_Card + Name: Chaotic Baphomet Junior Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Script: | + bonus bCritical,readparam(bAgi)/15; + - Id: 27336 + AegisName: Chaotic_Sidewinder_Card + Name: Chaotic Sidewinder Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Script: | + bonus2 bSubDefEle,Ele_Poison,15; bonus2 bSubRace,RC_Brute,15; bonus2 bSubRace,RC_Player_Doram,15; + - Id: 27337 + AegisName: Chaotic_Hunter_Fly_Card + Name: Chaotic Hunter Fly Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Script: | + bonus2 bSubDefEle,Ele_Wind,15; bonus2 bSubRace,RC_Insect,15; + - Id: 27338 + AegisName: Chaotic_Mantis_Card + Name: Chaotic Mantis Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bStr,3; + - Id: 27339 + AegisName: Chaotic_Ghostring_Card + Name: Chaotic Ghostring Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + bonus bBaseAtk,20; bonus2 bAddSize,Size_Small,25; bonus2 bAddSize,Size_Large,25; + - Id: 27340 + AegisName: Chaotic_Killer_Mantis_Card + Name: Chaotic Killer Mantis Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bCritAtkRate,3; + - Id: 27341 + AegisName: Chaotic_Poporing_Card + Name: Chaotic Poporing Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Script: | + bonus2 bSubDefEle,Ele_Water,15; bonus2 bSubRace,RC_Fish,15; + - Id: 27342 + AegisName: Chaotic_Stem_Worm_Card + Name: Chaotic Stem Worm Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Script: | + bonus bHit,10; bonus2 bSubDefEle,Ele_Earth,20; bonus2 bSubDefEle,Ele_Neutral,10; + - Id: 27343 + AegisName: Chaotic_Acolyte_Card + Name: Chaotic Acolyte Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Accessory: true + Script: | + bonus bDelayrate,-4; + - Id: 27346 + AegisName: Rigid_Muspellskoll_Card + Name: Rigid Muspellskoll Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Script: | + bonus2 bSubRace,RC_Dragon,30; bonus2 bSubRace,RC_Demon,30; bonus2 bSubRace,RC_Brute,30; bonus2 bSubRace,RC_Player_Doram,30; + - Id: 27347 + AegisName: Rigid_Kaho_Card + Name: Rigid Kaho Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + bonus2 bMagicAddEle,Ele_Earth,10; + - Id: 27348 + AegisName: Rigid_Lava_Golem_Card + Name: Rigid Lava Golem Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + .@r = getrefine(); bonus2 bMagicAddEle,Ele_Neutral,3+((.@r>=7)*5)+((.@r>=9)*7); + - Id: 27349 + AegisName: Rigid_Explosion_Card + Name: Rigid Explosion Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Script: | + bonus2 bSubRace,RC_Dragon,15; bonus2 bSubDefEle,Ele_Fire,15; + - Id: 27350 + AegisName: Rigid_Earth_Deleter_Card + Name: Rigid Earth Deleter Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Mid: true + Head_Top: true + Script: | + .@r = getrefine(); bonus bMaxSPrate,2+(.@r/2); + - Id: 27351 + AegisName: Rigid_Sky_Deleter_Card + Name: Rigid Sky Deleter Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Head_Mid: true + Head_Top: true + Script: | + bonus bMaxHPrate,5; + - Id: 27352 + AegisName: Rigid_Nightmare_Terror_Card + Name: Rigid Nightmare Terror Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Script: | + bonus bMaxSPrate,5; + - Id: 27353 + AegisName: Rigid_Blazer_Card + Name: Rigid Blazer Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Script: | + bonus2 bSubRace,RC_Demon,15; bonus2 bSubDefEle,Ele_Neutral,15; + - Id: 27354 + AegisName: Contaminated_Raydric_Card + Name: Contaminated Raydric Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Script: | + bonus2 bAddClass,Class_All,5; + - Id: 27355 + AegisName: Contaminated_Raydric_Archer_Card + Name: Contaminated Raydric Archer Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + bonus bLongAtkRate,10; + - Id: 27356 + AegisName: Frozen_Gargoyle_Card + Name: Frozen Gargoyle Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Left_Hand: true + Script: | + bonus2 bSubSize,Size_Medium,25; bonus2 bSubSize,Size_Large,25; bonus2 bSubSize,Size_Small,-5; bonus bDef,20; + - Id: 27357 + AegisName: Contaminated_Sting_Card + Name: Contaminated Sting Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Script: | + bonus bDef,100+25*(getrefine()/3); + - Id: 27358 + AegisName: Prison_Breaker_Card + Name: Prison Breaker Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Script: | + bonus2 bSubEle,Ele_Wind,30; bonus2 bSubEle,Ele_Poison,30; bonus2 bSubEle,Ele_Dark,30; bonus2 bSubEle,Ele_Earth,30; bonus2 bSubEle,Ele_Undead,30; bonus2 bSubEle,Ele_Holy,-100; bonus2 bSubEle,Ele_Ghost,-100; bonus2 bSubEle,Ele_Fire,-100; + - Id: 27359 + AegisName: Ice_Ghost_Card + Name: Ice Ghost Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + bonus2 bMagicAddEle,Ele_Water,15; + - Id: 27360 + AegisName: Flame_Ghost_Card + Name: Flame Ghost Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + bonus2 bMagicAddEle,Ele_Fire,15; + - Id: 27361 + AegisName: Contaminated_Wanderer_Card + Name: Contaminated Wanderer Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + bonus2 bAddSize,Size_Large,30; bonus2 bAddSize,Size_Medium,30; + - Id: 27362 + AegisName: Contaminated_Spider_Queen_Card + Name: Contaminated Spider Queen Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Script: | + bonus2 bSubEle,Ele_All,-30; bonus2 bMagicAtkEle,Ele_Earth,100; bonus2 bMagicAtkEle,Ele_Water,100; + - Id: 27363 + AegisName: Contaminated_Dark_Lord_Card + Name: Contaminated Dark Lord Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Script: | + bonus bAspd,1; + - Id: 29000 + AegisName: Rune_of_Intellect_Lv_1 + Name: Rune of Intellect Lv 1 + Type: Card + Buy: 20 + Script: | + .@r = getrefine(); if (.@r>=7) { bonus bInt,5; } if (.@r>=10) { bonus bMatkRate,5; } + - Id: 29001 + AegisName: Rune_of_Intellect_Lv_2 + Name: Rune of Intellect Lv 2 + Type: Card + Buy: 20 + Script: | + .@r = getrefine(); if (.@r>=7) { bonus bInt,6; } if (.@r>=11) { bonus bInt,1; bonus bMatkRate,7; } + - Id: 29002 + AegisName: Rune_of_Intellect_Lv_3 + Name: Rune of Intellect Lv 3 + Type: Card + Buy: 20 + Script: | + .@r = getrefine(); if (.@r>=7) { bonus bInt,7; } if (.@r>=12) { bonus bInt,1; bonus bMatkRate,8; } if (.@r>=13) { bonus bInt,1; bonus bMatkRate,2; } + - Id: 29003 + AegisName: Rune_of_Dexterity_Lv_1 + Name: Rune of Dexterity Lv 1 + Type: Card + Buy: 20 + Script: | + .@r = getrefine(); if (.@r>=7) { bonus bDex,5; } if (.@r>=10) { bonus bLongAtkRate,5; } + - Id: 29004 + AegisName: Rune_of_Dexterity_Lv_2 + Name: Rune of Dexterity Lv 2 + Type: Card + Buy: 20 + Script: | + .@r = getrefine(); if (.@r>=7) { bonus bDex,6; } if (.@r>=11) { bonus bDex,1; bonus bLongAtkRate,7; } + - Id: 29005 + AegisName: Rune_of_Dexterity_Lv_3 + Name: Rune of Dexterity Lv 3 + Type: Card + Buy: 20 + Script: | + .@r = getrefine(); if (.@r>=7) { bonus bDex,7; } if (.@r>=12) { bonus bDex,1; bonus bLongAtkRate,8; } if (.@r>=13) { bonus bDex,1; bonus bLongAtkRate,2; } + - Id: 29006 + AegisName: Rune_of_Luck_Lv_1 + Name: Rune of Luck Lv 1 + Type: Card + Buy: 20 + Script: | + .@r = getrefine(); if (.@r>=7) { bonus bLuk,5; } if (.@r>=10) { bonus bCritAtkRate,5; } + - Id: 29007 + AegisName: Rune_of_Luck_Lv_2 + Name: Rune of Luck Lv 2 + Type: Card + Buy: 20 + Script: | + .@r = getrefine(); if (.@r>=7) { bonus bLuk,6; } if (.@r>=11) { bonus bLuk,1; bonus bCritAtkRate,7; } + - Id: 29008 + AegisName: Rune_of_Luck_Lv_3 + Name: Rune of Luck Lv 3 + Type: Card + Buy: 20 + Script: | + .@r = getrefine(); if (.@r>=7) { bonus bLuk,7; } if (.@r>=12) { bonus bLuk,1; bonus bCritAtkRate,8; } if (.@r>=13) { bonus bLuk,1; bonus bCritAtkRate,6; } + - Id: 29009 + AegisName: Rune_of_Vitality_Lv_1 + Name: Rune of Vitality Lv 1 + Type: Card + Buy: 20 + Script: | + .@r = getrefine(); if (.@r>=7) { bonus bVit,5; } if (.@r>=10) { bonus bMaxHPrate,5; } + - Id: 29010 + AegisName: Rune_of_Vitality_Lv_2 + Name: Rune of Vitality Lv 2 + Type: Card + Buy: 20 + Script: | + .@r = getrefine(); if (.@r>=7) { bonus bVit,6; } if (.@r>=11) { bonus bVit,1; bonus bMaxHPrate,7; } + - Id: 29011 + AegisName: Rune_of_Vitality_Lv_3 + Name: Rune of Vitality Lv 3 + Type: Card + Buy: 20 + Script: | + .@r = getrefine(); if (.@r>=7) { bonus bVit,7; } if (.@r>=12) { bonus bVit,1; bonus bMaxHPrate,8; } if (.@r>=13) { bonus bVit,1; bonus bMaxHPrate,2; } + - Id: 29013 + AegisName: HPdrain3 + Name: HP Absorption 3 + Type: Card + Script: | + bonus2 bHPDrainRate,10,3; + - Id: 29014 + AegisName: STR3INT + Name: STR+3 INT-3 + Type: Card + Script: | + bonus bStr,3; bonus bInt,-3; + - Id: 29015 + AegisName: STR3DEX + Name: STR+3 DEX-3 + Type: Card + Script: | + bonus bStr,3; bonus bDex,-3; + - Id: 29016 + AegisName: INT3DEX + Name: INT+3 DEX-3 + Type: Card + Script: | + bonus bInt,3; bonus bDex,-3; + - Id: 29017 + AegisName: INT3VIT + Name: INT+3 VIT-3 + Type: Card + Script: | + bonus bInt,3; bonus bVit,-3; + - Id: 29018 + AegisName: DEX3VIT + Name: DEX+3 VIT-3 + Type: Card + Script: | + bonus bDex,3; bonus bVit,-3; + - Id: 29019 + AegisName: DEX3AGI + Name: DEX+3 AGI-3 + Type: Card + Script: | + bonus bDex,3; bonus bAgi,-3; + - Id: 29020 + AegisName: VIT3AGI + Name: VIT+3 AGI-3 + Type: Card + Script: | + bonus bVit,3; bonus bAgi,-3; + - Id: 29021 + AegisName: VIT3LUK + Name: VIT+3 LUK-3 + Type: Card + Script: | + bonus bVit,3; bonus bLuk,-3; + - Id: 29022 + AegisName: AGI3LUK + Name: AGI+3 LUK-3 + Type: Card + Script: | + bonus bAgi,3; bonus bLuk,-3; + - Id: 29023 + AegisName: AGI3STR + Name: AGI+3 STR-3 + Type: Card + Script: | + bonus bAgi,3; bonus bStr,-3; + - Id: 29024 + AegisName: LUK3STR + Name: LUK+3 STR-3 + Type: Card + Script: | + bonus bLuk,3; bonus bStr,-3; + - Id: 29025 + AegisName: LUK3INT + Name: LUK+3 INT-3 + Type: Card + Script: | + bonus bLuk,3; bonus bInt,-3; + - Id: 29026 + AegisName: Def20 + Name: DEF+20 + Type: Card + Buy: 10 + Script: | + bonus bDef,20; + - Id: 29027 + AegisName: EXP2 + Name: EXP+2% + Type: Card + Script: | + bonus2 bExpAddClass,Class_All,2; + - Id: 29028 + AegisName: Atk1p_Top + Name: ATK + 1% + Type: Card + Script: | + bonus2 bAddClass,Class_All,1; + - Id: 29029 + AegisName: Atk1p_Bottom + Name: ATK+1%(Lower) + Type: Card + Script: | + bonus2 bAddClass,Class_All,1; + - Id: 29030 + AegisName: Matk1p_Top + Name: MATK+1% + Type: Card + Script: | + bonus bMatkRate,1; + - Id: 29031 + AegisName: Matk1p_Bottom + Name: MATK+1%(Lower) + Type: Card + Script: | + bonus bMatkRate,1; + - Id: 29032 + AegisName: SPdrain1_Top + Name: SP Absorption 1 + Type: Card + Script: | + bonus2 bSPDrainRate,10,1; + - Id: 29033 + AegisName: Mdef4_Bottom + Name: MDEF+4 + Type: Card + Script: | + bonus bMdef,4; + - Id: 29040 + AegisName: Ghost_Effect + Name: Ghost Effect + Type: Card + Script: | + hateffect HAT_EF_C_GHOST_EFFECT,true; + UnEquipScript: | + hateffect HAT_EF_C_GHOST_EFFECT,false; + - Id: 29041 + AegisName: Twinkle_Effect + Name: Twinkle Effect + Type: Card + Script: | + /* todo */ + - Id: 29046 + AegisName: Greed + Name: Greed + Type: Card + Script: | + skill "BS_GREED",1; + - Id: 29047 + AegisName: Fatal0 + Name: Fatal + Type: Card + Script: | + bonus bCritAtkRate,3; + - Id: 29048 + AegisName: Expert_Archer0 + Name: Expert Archer + Type: Card + Script: | + bonus bLongAtkRate,3; + - Id: 29049 + AegisName: HP100_ + Name: HP+100 + Type: Card + Script: | + bonus bMaxHP,100; if (BaseLevel >= 120) { bonus bMaxHPrate,2; } + - Id: 29050 + AegisName: SP50_ + Name: SP+50 + Type: Card + Script: | + bonus bMaxSP,50; if (BaseLevel >= 120) { bonus bMaxSPrate,2; } + - Id: 29051 + AegisName: Detoxify + Name: Detoxify + Type: Card + Script: | + skill "TF_DETOXIFY",1; + - Id: 29052 + AegisName: Recovery + Name: Recovery + Type: Card + Script: | + skill "PR_STRECOVERY",1; + - Id: 29053 + AegisName: Skill_Delay1_Top + Name: After Skill Delay1 Upper + Type: Card + Script: | + bonus bDelayrate,-1; + - Id: 29054 + AegisName: Skill_Delay1_Middle + Name: After Skill Delay1 Middle + Type: Card + Script: | + bonus bDelayrate,-1; + - Id: 29055 + AegisName: Skill_Delay1_Bottom + Name: After Skill Delay1 Lower + Type: Card + Script: | + bonus bDelayrate,-1; + - Id: 29056 + AegisName: FixedCasting05 + Name: Reduces Fixed Cast + Type: Card + Script: | + bonus bFixedCast,-500; + - Id: 29057 + AegisName: Kyrie + Name: Kyrie + Type: Card + Script: | + skill "PR_KYRIE",1; + - Id: 29061 + AegisName: Ambition1Lv + Name: Mettle Lv. 1 + Type: Card + Buy: 10 + Script: | + bonus2 bAddClass,Class_All,3; bonus bHit,3; + - Id: 29062 + AegisName: Ambition2Lv + Name: Mettle Lv. 2 + Type: Card + Buy: 10 + Script: | + bonus2 bAddClass,Class_All,6; bonus bHit,6; + - Id: 29063 + AegisName: Ambition3Lv + Name: Mettle Lv. 3 + Type: Card + Buy: 10 + Script: | + bonus2 bAddClass,Class_All,9; bonus bHit,9; + - Id: 29064 + AegisName: Ambition4Lv + Name: Mettle Lv. 4 + Type: Card + Buy: 10 + Script: | + bonus2 bAddClass,Class_All,12; bonus bHit,12; + - Id: 29065 + AegisName: Ambition5Lv + Name: Mettle Lv. 5 + Type: Card + Buy: 10 + Script: | + bonus2 bAddClass,Class_All,15; bonus bHit,15; + - Id: 29066 + AegisName: Ambition6Lv + Name: Mettle Lv. 6 + Type: Card + Buy: 10 + Script: | + bonus2 bAddClass,Class_All,18; bonus bHit,18; + - Id: 29067 + AegisName: Ambition7Lv + Name: Mettle Lv. 7 + Type: Card + Buy: 10 + Script: | + bonus2 bAddClass,Class_All,21; bonus bHit,21; + - Id: 29068 + AegisName: Ambition8Lv + Name: Mettle Lv. 8 + Type: Card + Buy: 10 + Script: | + bonus2 bAddClass,Class_All,24; bonus bHit,24; + - Id: 29069 + AegisName: Ambition9Lv + Name: Mettle Lv. 9 + Type: Card + Buy: 10 + Script: | + bonus2 bAddClass,Class_All,27; bonus bHit,27; + - Id: 29070 + AegisName: Ambition10Lv + Name: Mettle Lv. 10 + Type: Card + Buy: 10 + Script: | + bonus2 bAddClass,Class_All,33; bonus bHit,30; + - Id: 29071 + AegisName: Tab1Lv + Name: Magic Essence Lv. 1 + Type: Card + Buy: 10 + Script: | + bonus bMatkRate,3; bonus bFixedCast,-100; + - Id: 29072 + AegisName: Tab2Lv + Name: Magic Essence Lv. 2 + Type: Card + Buy: 10 + Script: | + bonus bMatkRate,6; bonus bFixedCast,-200; + - Id: 29073 + AegisName: Tab3Lv + Name: Magic Essence Lv. 3 + Type: Card + Buy: 10 + Script: | + bonus bMatkRate,9; bonus bFixedCast,-300; + - Id: 29074 + AegisName: Tab4Lv + Name: Magic Essence Lv. 4 + Type: Card + Buy: 10 + Script: | + bonus bMatkRate,12; bonus bFixedCast,-400; + - Id: 29075 + AegisName: Tab5Lv + Name: Magic Essence Lv. 5 + Type: Card + Buy: 10 + Script: | + bonus bMatkRate,15; bonus bFixedCast,-500; + - Id: 29076 + AegisName: Tab6Lv + Name: Magic Essence Lv. 6 + Type: Card + Buy: 10 + Script: | + bonus bMatkRate,18; bonus bFixedCast,-600; + - Id: 29077 + AegisName: Tab7Lv + Name: Magic Essence Lv. 7 + Type: Card + Buy: 10 + Script: | + bonus bMatkRate,21; bonus bFixedCast,-700; + - Id: 29078 + AegisName: Tab8Lv + Name: Magic Essence Lv. 8 + Type: Card + Buy: 10 + Script: | + bonus bMatkRate,24; bonus bFixedCast,-800; + - Id: 29079 + AegisName: Tab9Lv + Name: Magic Essence Lv. 9 + Type: Card + Buy: 10 + Script: | + bonus bMatkRate,27; bonus bFixedCast,-900; + - Id: 29080 + AegisName: Tab10Lv + Name: Magic Essence Lv. 10 + Type: Card + Buy: 10 + Script: | + bonus bMatkRate,33; bonus bFixedCast,-1000; + - Id: 29081 + AegisName: Expect1Lv + Name: Acute Lv. 1 + Type: Card + Buy: 10 + Script: | + bonus bCritAtkRate,10; bonus bCritical,3; + - Id: 29082 + AegisName: Expect2Lv + Name: Acute Lv. 2 + Type: Card + Buy: 10 + Script: | + bonus bCritAtkRate,20; bonus bCritical,6; + - Id: 29083 + AegisName: Expect3Lv + Name: Acute Lv. 3 + Type: Card + Buy: 10 + Script: | + bonus bCritAtkRate,30; bonus bCritical,9; + - Id: 29084 + AegisName: Expect4Lv + Name: Acute Lv. 4 + Type: Card + Buy: 10 + Script: | + bonus bCritAtkRate,40; bonus bCritical,12; + - Id: 29085 + AegisName: Expect5Lv + Name: Acute Lv. 5 + Type: Card + Buy: 10 + Script: | + bonus bCritAtkRate,50; bonus bCritical,15; + - Id: 29086 + AegisName: Expect6Lv + Name: Acute Lv. 6 + Type: Card + Buy: 10 + Script: | + bonus bCritAtkRate,60; bonus bCritical,18; + - Id: 29087 + AegisName: Expect7Lv + Name: Acute Lv. 7 + Type: Card + Buy: 10 + Script: | + bonus bCritAtkRate,70; bonus bCritical,21; + - Id: 29088 + AegisName: Expect8Lv + Name: Acute Lv. 8 + Type: Card + Buy: 10 + Script: | + bonus bCritAtkRate,80; bonus bCritical,24; + - Id: 29089 + AegisName: Expect9Lv + Name: Acute Lv. 9 + Type: Card + Buy: 10 + Script: | + bonus bCritAtkRate,90; bonus bCritical,27; + - Id: 29090 + AegisName: Expect10Lv + Name: Acute Lv. 10 + Type: Card + Buy: 10 + Script: | + bonus bCritAtkRate,110; bonus bCritical,30; + - Id: 29091 + AegisName: ArchLine1Lv + Name: Master Archer Lv. 1 + Type: Card + Buy: 10 + Script: | + bonus bLongAtkRate,4; bonus bAspdRate,1; + - Id: 29092 + AegisName: ArchLine2Lv + Name: Master Archer Lv. 2 + Type: Card + Buy: 10 + Script: | + bonus bLongAtkRate,8; bonus bAspdRate,2; + - Id: 29093 + AegisName: ArchLine3Lv + Name: Master Archer Lv. 3 + Type: Card + Buy: 10 + Script: | + bonus bLongAtkRate,12; bonus bAspdRate,3; + - Id: 29094 + AegisName: ArchLine4Lv + Name: Master Archer Lv. 4 + Type: Card + Buy: 10 + Script: | + bonus bLongAtkRate,16; bonus bAspdRate,4; + - Id: 29095 + AegisName: ArchLine5Lv + Name: Master Archer Lv. 5 + Type: Card + Buy: 10 + Script: | + bonus bLongAtkRate,20; bonus bAspdRate,5; + - Id: 29096 + AegisName: ArchLine6Lv + Name: Master Archer Lv. 6 + Type: Card + Buy: 10 + Script: | + bonus bLongAtkRate,24; bonus bAspdRate,6; + - Id: 29097 + AegisName: ArchLine7Lv + Name: Master Archer Lv. 7 + Type: Card + Buy: 10 + Script: | + bonus bLongAtkRate,28; bonus bAspdRate,7; + - Id: 29098 + AegisName: ArchLine8Lv + Name: Master Archer Lv. 8 + Type: Card + Buy: 10 + Script: | + bonus bLongAtkRate,32; bonus bAspdRate,8; + - Id: 29099 + AegisName: ArchLine9Lv + Name: Master Archer Lv. 9 + Type: Card + Buy: 10 + Script: | + bonus bLongAtkRate,36; bonus bAspdRate,9; + - Id: 29100 + AegisName: ArchLine10Lv + Name: Master Archer Lv. 10 + Type: Card + Buy: 10 + Script: | + bonus bLongAtkRate,44; bonus bAspdRate,10; + - Id: 29101 + AegisName: Steel1Lv + Name: Adamantine Lv. 1 + Type: Card + Buy: 10 + Script: | + bonus bMaxHPrate,5; bonus bDef,15; + - Id: 29102 + AegisName: Steel2Lv + Name: Adamantine Lv. 2 + Type: Card + Buy: 10 + Script: | + bonus bMaxHPrate,10; bonus bDef,30; + - Id: 29103 + AegisName: Steel3Lv + Name: Adamantine Lv. 3 + Type: Card + Buy: 10 + Script: | + bonus bMaxHPrate,15; bonus bDef,45; + - Id: 29104 + AegisName: Steel4Lv + Name: Adamantine Lv. 4 + Type: Card + Buy: 10 + Script: | + bonus bMaxHPrate,20; bonus bDef,60; + - Id: 29105 + AegisName: Steel5Lv + Name: Adamantine Lv. 5 + Type: Card + Buy: 10 + Script: | + bonus bMaxHPrate,25; bonus bDef,75; + - Id: 29106 + AegisName: Steel6Lv + Name: Adamantine Lv. 6 + Type: Card + Buy: 10 + Script: | + bonus bMaxHPrate,30; bonus bDef,90; + - Id: 29107 + AegisName: Steel7Lv + Name: Adamantine Lv. 7 + Type: Card + Buy: 10 + Script: | + bonus bMaxHPrate,35; bonus bDef,105; + - Id: 29108 + AegisName: Steel8Lv + Name: Adamantine Lv. 8 + Type: Card + Buy: 10 + Script: | + bonus bMaxHPrate,40; bonus bDef,120; + - Id: 29109 + AegisName: Steel9Lv + Name: Adamantine Lv. 9 + Type: Card + Buy: 10 + Script: | + bonus bMaxHPrate,45; bonus bDef,135; + - Id: 29110 + AegisName: Steel10Lv + Name: Adamantine Lv. 10 + Type: Card + Buy: 10 + Script: | + bonus bMaxHPrate,55; bonus bDef,150; + - Id: 29111 + AegisName: Mercy1Lv + Name: Affection Lv. 1 + Type: Card + Buy: 10 + Script: | + bonus bHealPower,5; bonus bMdef,3; + - Id: 29112 + AegisName: Mercy2Lv + Name: Affection Lv. 2 + Type: Card + Buy: 10 + Script: | + bonus bHealPower,10; bonus bMdef,6; + - Id: 29113 + AegisName: Mercy3Lv + Name: Affection Lv. 3 + Type: Card + Buy: 10 + Script: | + bonus bHealPower,15; bonus bMdef,9; + - Id: 29114 + AegisName: Mercy4Lv + Name: Affection Lv. 4 + Type: Card + Buy: 10 + Script: | + bonus bHealPower,20; bonus bMdef,12; + - Id: 29115 + AegisName: Mercy5Lv + Name: Affection Lv. 5 + Type: Card + Buy: 10 + Script: | + bonus bHealPower,25; bonus bMdef,15; + - Id: 29116 + AegisName: Mercy6Lv + Name: Affection Lv. 6 + Type: Card + Buy: 10 + Script: | + bonus bHealPower,30; bonus bMdef,18; + - Id: 29117 + AegisName: Mercy7Lv + Name: Affection Lv. 7 + Type: Card + Buy: 10 + Script: | + bonus bHealPower,35; bonus bMdef,21; + - Id: 29118 + AegisName: Mercy8Lv + Name: Affection Lv. 8 + Type: Card + Buy: 10 + Script: | + bonus bHealPower,40; bonus bMdef,24; + - Id: 29119 + AegisName: Mercy9Lv + Name: Affection Lv. 9 + Type: Card + Buy: 10 + Script: | + bonus bHealPower,45; bonus bMdef,27; + - Id: 29120 + AegisName: Mercy10Lv + Name: Affection Lv. 10 + Type: Card + Buy: 10 + Script: | + bonus bHealPower,55; bonus bMdef,30; + - Id: 29121 + AegisName: Goddess_of_Justice_A + Name: Goddess of Justice A + Type: Card + Buy: 10 + Script: | + bonus bAtk,20; bonus bHit,2; bonus bMaxHP,300; + - Id: 29122 + AegisName: Goddess_of_Justice_S + Name: Goddess of Justice S + Type: Card + Buy: 10 + Script: | + bonus bAtk,40; bonus bHit,4; bonus bMaxHP,600; + - Id: 29123 + AegisName: Goddess_of_Mercy_A + Name: Goddess of Mercy A + Type: Card + Buy: 10 + Script: | + bonus bMatk,20; bonus bHealPower,4; bonus bMaxSP,20; + - Id: 29124 + AegisName: Goddess_of_Mercy_S + Name: Goddess of Mercy S + Type: Card + Buy: 10 + Script: | + bonus bMatk,40; bonus bHealPower,8; bonus bMaxSP,40; + - Id: 29125 + AegisName: Goddess_of_Insight_A + Name: Goddess of Insight A + Type: Card + Buy: 10 + Script: | + bonus bLongAtkRate,5; bonus bCritical,5; + - Id: 29126 + AegisName: Goddess_of_Insight_S + Name: Goddess of Insight S + Type: Card + Buy: 10 + Script: | + bonus bLongAtkRate,10; bonus bCritical,10; + - Id: 29142 + AegisName: Electric_Effect + Name: Electric Effect + Type: Card + Script: | + hateffect HAT_EF_ELECTRIC,true; + UnEquipScript: | + hateffect HAT_EF_ELECTRIC,false; + - Id: 29143 + AegisName: Green_Floor_Effect + Name: Green Flare Effect + Type: Card + Script: | + hateffect HAT_EF_GREEN_FLOOR,true; + UnEquipScript: | + hateffect HAT_EF_GREEN_FLOOR,false; + - Id: 29144 + AegisName: Shrink_Effect + Name: Shrink Effect + Type: Card + Script: | + hateffect HAT_EF_SHRINK,true; + UnEquipScript: | + hateffect HAT_EF_SHRINK,false; + - Id: 29145 + AegisName: EXP2MIDDLE + Name: Experience+2% + Type: Card + Script: | + bonus2 bExpAddRace,RC_All,2; + - Id: 29146 + AegisName: Identify + Name: Identify + Type: Card + Script: | + skill "MC_IDENTIFY",1; + - Id: 29147 + AegisName: Resurrection + Name: Resurrection + Type: Card + Buy: 10 + Script: | + skill "ALL_RESURRECTION",1; + - Id: 29148 + AegisName: Leo_Stone + Name: Leo Stone + Type: Card + Buy: 10 + Locations: + Shoes: true + Script: | + bonus bStr,1; + - Id: 29149 + AegisName: Pisces_Stone + Name: Pisces Stone + Type: Card + Buy: 10 + Locations: + Shoes: true + Script: | + bonus bInt,1; + - Id: 29150 + AegisName: Capricorn_Stone + Name: Capricorn Stone + Type: Card + Buy: 10 + Locations: + Shoes: true + Script: | + bonus bAgi,1; + - Id: 29151 + AegisName: Aquarius_Stone + Name: Aquarius Stone + Type: Card + Buy: 10 + Locations: + Shoes: true + Script: | + bonus bVit,1; + - Id: 29152 + AegisName: Scorpio_Stone + Name: Scorpio Stone + Type: Card + Buy: 10 + Locations: + Shoes: true + Script: | + bonus bDex,1; + - Id: 29153 + AegisName: Taurus_Stone + Name: Taurus Stone + Type: Card + Buy: 10 + Locations: + Shoes: true + Script: | + bonus bLuk,1; + - Id: 29154 + AegisName: FixedCasting03 + Name: Minor Fixed Cast Reduction + Type: Card + Script: | + bonus bFixedCast,-300; + - Id: 29155 + AegisName: LexAeterna + Name: Lex Aeterna + Type: Card + Script: | + bonus3 bAutoSpell,"PR_LEXAETERNA",1,10; + - Id: 29156 + AegisName: Casting_Top + Name: Variable Cast Reduction Upper + Type: Card + Script: | + bonus bVariableCastrate,-3; + - Id: 29157 + AegisName: Casting_Middle + Name: Variable Cast Reduction Middle + Type: Card + Script: | + bonus bVariableCastrate,-3; + - Id: 29158 + AegisName: Casting_Bottom + Name: Variable Cast Reduction Lower + Type: Card + Script: | + bonus bVariableCastrate,-3; + - Id: 29159 + AegisName: EXP2TOP + Name: Experience + 2% + Type: Card + Script: | + bonus2 bExpAddRace,RC_All,2; + - Id: 29160 + AegisName: BlueAura_Effect + Name: Blue Aura Effect + Type: Card + Script: | + /* todo */ + - Id: 29161 + AegisName: Pink_Glow_Effect + Name: Pink Glow Effect + Type: Card + Script: | + /* todo */ + - Id: 29162 + AegisName: Shadow_Effect + Name: Shadow Effect + Type: Card + Script: | + /* todo */ + - Id: 29166 + AegisName: A-Tolerance + Name: A-Tolerance + Type: Card + Script: | + bonus2 bSubClass,Class_All,1; .@r = getrefine(); bonus2 bSubRace,RC_DemiHuman,.@r/3; bonus2 bSubRace,RC_Formless,.@r/3; + - Id: 29167 + AegisName: A-Hit + Name: A-Hit + Type: Card + Script: | + bonus bHit,20; .@r = getrefine(); if(.@r>=7){ bonus bHit,10; } if(.@r>=8){ bonus bHit,10; } if(.@r>=9){ bonus bHit,10; } + - Id: 29168 + AegisName: A-Flee + Name: A-Flee + Type: Card + Script: | + bonus bFlee,20; .@r = getrefine(); if(.@r>=7){ bonus bFlee,10; } if(.@r>=8){ bonus bFlee,10; } if(.@r>=9){ bonus bFlee,10; } + - Id: 29169 + AegisName: A-Mdef + Name: A-Mdef + Type: Card + Script: | + bonus bMdef,2; .@r = getrefine(); if(.@r>=6){ bonus bMdef,4; } if(.@r>=8){ bonus bMdef,8; } + - Id: 29170 + AegisName: S-Atk + Name: S-Atk + Type: Card + Script: | + bonus bBaseAtk,50; .@r = getrefine(); .@c = 100; .@t = 3000; if(.@r>=8){ .@t += 1000; } if(.@r>=9){ .@c += 100; .@t += 1000; } autobonus2 "{ bonus bBaseAtk,150; }",.@c,.@t; + - Id: 29171 + AegisName: S-Matk + Name: S-Matk + Type: Card + Script: | + bonus bMatk,100; .@r = getrefine(); .@c = 100; .@t = 3000; if(.@r>=8){ .@t += 1000; } if(.@r>=9){ .@c += 100; .@t += 1000; } autobonus2 "{ bonus bMatk,150; }",.@c,.@t,BF_MAGIC; + - Id: 29172 + AegisName: S-Avoid + Name: S-Avoid + Type: Card + Script: | + bonus bFlee2,5; .@r = getrefine(); .@c = 100; .@t = 3000; if(.@r>=8){ .@t += 1000; } if(.@r>=9){ .@c += 100; .@t += 1000; } autobonus2 "{ bonus bFlee2,100; }",.@c,.@t; + - Id: 29173 + AegisName: S-MaxHP + Name: S-MaxHP + Type: Card + Script: | + bonus bMaxHP,2500; .@r = getrefine(); .@c = 100; .@t = 3000; if(.@r>=8){ .@t += 1000; } if(.@r>=9){ .@c += 100; .@t += 1000; } autobonus2 "{ bonus bMaxHP,7500; }",.@c,.@t; + - Id: 29174 + AegisName: S-Quick + Name: S-Quick + Type: Card + Script: | + bonus bVariableCastrate,-10; .@r = getrefine(); .@c = 100; .@t = 3000; if(.@r>=8){ .@t += 1000; } if(.@r>=9){ .@c += 100; .@t += 1000; } autobonus2 "{ bonus bVariableCastrate,-100; bonus bDelayrate,-100; }",.@c,.@t,BF_MAGIC; + - Id: 29175 + AegisName: S-Cri + Name: S-Cri + Type: Card + Script: | + bonus bCritical,10; .@r = getrefine(); .@c = 100; .@t = 3000; if(.@r>=8){ .@t += 1000; } if(.@r>=9){ .@c += 100; .@t += 1000; } autobonus2 "{ bonus bCritical,100; }",.@c,.@t; + - Id: 29176 + AegisName: Tenji + Name: Tenji + Type: Card + Buy: 10 + Locations: + Shoes: true + Script: | + bonus2 bAddRace,RC_Brute,15; bonus2 bAddRace,RC_Plant,15; bonus2 bMagicAddRace,RC_Brute,15; bonus2 bMagicAddRace,RC_Plant,15; bonus2 bAddEle,Ele_Wind,15; bonus2 bAddEle,Ele_Earth,15; bonus2 bMagicAddEle,Ele_Wind,15; bonus2 bMagicAddEle,Ele_Earth,15; autobonus2 "{ bonus bVariableCastrate,-70;bonus bDelayrate,-70; bonus bIgnoreDefRace,RC_All; bonus bIgnoreMDefRace,RC_All; }",1,10000; + - Id: 29224 + AegisName: WhiteBody_Effect + Name: White Body Effect + Type: Card + Script: | + hateffect HAT_EF_WHITEBODY,true; + UnEquipScript: | + hateffect HAT_EF_WHITEBODY,false; + - Id: 29225 + AegisName: WaterField_Effect + Name: Water Field Effect + Type: Card + Script: | + hateffect HAT_EF_WATER_BELOW2,true; + UnEquipScript: | + hateffect HAT_EF_WATER_BELOW2,false; + - Id: 29226 + AegisName: ExplodingWave_Effect + Name: Crimson Wave Effect + Type: Card + Script: | + /* todo */ + - Id: 29227 + AegisName: Heal + Name: Heal + Type: Card + Script: | + skill "AL_HEAL",1; + - Id: 29228 + AegisName: Steal + Name: Steal + Type: Card + Script: | + skill "TF_STEAL",1; + - Id: 29229 + AegisName: Teleport + Name: Teleport + Type: Card + Script: | + skill "AL_TELEPORT",1; + - Id: 29310 + AegisName: Racing_RK_1 + Name: Racing(Rune Knight) 1Lv + Type: Card + Buy: 20 + - Id: 29311 + AegisName: Racing_RK_2 + Name: Racing(Rune Knight) 2Lv + Type: Card + Buy: 20 + - Id: 29312 + AegisName: Racing_RK_3 + Name: Racing(Rune Knight) 3Lv + Type: Card + Buy: 20 + - Id: 29313 + AegisName: Racing_RG_1 + Name: Racing(Royal Guard) 1Lv + Type: Card + Buy: 20 + - Id: 29314 + AegisName: Racing_RG_2 + Name: Racing(Royal Guard) 2Lv + Type: Card + Buy: 20 + - Id: 29315 + AegisName: Racing_RG_3 + Name: Racing(Royal Guard) 3Lv + Type: Card + Buy: 20 + - Id: 29316 + AegisName: Racing_MC_1 + Name: Racing(Mechanic) 1Lv + Type: Card + Buy: 20 + - Id: 29317 + AegisName: Racing_MC_2 + Name: Racing(Mechanic) 2Lv + Type: Card + Buy: 20 + - Id: 29318 + AegisName: Racing_MC_3 + Name: Racing(Mechanic) 3Lv + Type: Card + Buy: 20 + - Id: 29319 + AegisName: Racing_GN_1 + Name: Racing(Geneticist) 1Lv + Type: Card + Buy: 20 + - Id: 29320 + AegisName: Racing_GN_2 + Name: Racing(Geneticist) 2Lv + Type: Card + Buy: 20 + - Id: 29321 + AegisName: Racing_GN_3 + Name: Racing(Geneticist) 3Lv + Type: Card + Buy: 20 + - Id: 29322 + AegisName: Racing_GC_1 + Name: Racing(Guillotine Cross) 1Lv + Type: Card + Buy: 20 + - Id: 29323 + AegisName: Racing_GC_2 + Name: Racing(Guillotine Cross) 2Lv + Type: Card + Buy: 20 + - Id: 29324 + AegisName: Racing_GC_3 + Name: Racing(Guillotine Cross) 3Lv + Type: Card + Buy: 20 + - Id: 29325 + AegisName: Racing_SC_1 + Name: Racing(Shadow Chaser) 1Lv + Type: Card + Buy: 20 + - Id: 29326 + AegisName: Racing_SC_2 + Name: Racing(Shadow Chaser) 2Lv + Type: Card + Buy: 20 + - Id: 29327 + AegisName: Racing_SC_3 + Name: Racing(Shadow Chaser) 3Lv + Type: Card + Buy: 20 + - Id: 29328 + AegisName: Racing_WL_1 + Name: Racing(Warlock) 1Lv + Type: Card + Buy: 20 + - Id: 29329 + AegisName: Racing_WL_2 + Name: Racing(Warlock) 2Lv + Type: Card + Buy: 20 + - Id: 29330 + AegisName: Racing_WL_3 + Name: Racing(Warlock) 3Lv + Type: Card + Buy: 20 + - Id: 29331 + AegisName: Racing_SO_1 + Name: Racing(Sorcerer) 1Lv + Type: Card + Buy: 20 + - Id: 29332 + AegisName: Racing_SO_2 + Name: Racing(Sorcerer) 2Lv + Type: Card + Buy: 20 + - Id: 29333 + AegisName: Racing_SO_3 + Name: Racing(Sorcerer) 3Lv + Type: Card + Buy: 20 + - Id: 29334 + AegisName: Racing_AB_1 + Name: Racing(Archbishop) 1Lv + Type: Card + Buy: 20 + - Id: 29335 + AegisName: Racing_AB_2 + Name: Racing(Archbishop) 2Lv + Type: Card + Buy: 20 + - Id: 29336 + AegisName: Racing_AB_3 + Name: Racing(Archbishop) 3Lv + Type: Card + Buy: 20 + - Id: 29337 + AegisName: Racing_SR_1 + Name: Racing(Sura) 1Lv + Type: Card + Buy: 20 + - Id: 29338 + AegisName: Racing_SR_2 + Name: Racing(Sura) 2Lv + Type: Card + Buy: 20 + - Id: 29339 + AegisName: Racing_SR_3 + Name: Racing(Sura) 3Lv + Type: Card + Buy: 20 + - Id: 29340 + AegisName: Racing_RA_1 + Name: Racing(Ranger) 1Lv + Type: Card + Buy: 20 + - Id: 29341 + AegisName: Racing_RA_2 + Name: Racing(Ranger) 2Lv + Type: Card + Buy: 20 + - Id: 29342 + AegisName: Racing_RA_3 + Name: Racing(Ranger) 3Lv + Type: Card + Buy: 20 + - Id: 29343 + AegisName: Racing_WM_1 + Name: Racing(Wanderers & Minstrel) 1Lv + Type: Card + Buy: 20 + - Id: 29344 + AegisName: Racing_WM_2 + Name: Racing(Wanderers & Minstrel) 2Lv + Type: Card + Buy: 20 + - Id: 29345 + AegisName: Racing_WM_3 + Name: Racing(Wanderers & Minstrel) 3Lv + Type: Card + Buy: 20 + - Id: 29346 + AegisName: Racing_GS_1 + Name: Racing(Gunslinger) 1Lv + Type: Card + Buy: 20 + - Id: 29347 + AegisName: Racing_GS_2 + Name: Racing(Gunslinger) 2Lv + Type: Card + Buy: 20 + - Id: 29348 + AegisName: Racing_GS_3 + Name: Racing(Gunslinger) 3Lv + Type: Card + Buy: 20 + - Id: 29349 + AegisName: Racing_NJ_1 + Name: Racing(Ninja)1Lv + Type: Card + Buy: 20 + - Id: 29350 + AegisName: Racing_NJ_2 + Name: Racing(Ninja)2Lv + Type: Card + Buy: 20 + - Id: 29351 + AegisName: Racing_NJ_3 + Name: Racing(Ninja)3Lv + Type: Card + Buy: 20 + - Id: 29352 + AegisName: Racing_SN_1 + Name: Racing(Super Novice) 1Lv + Type: Card + Buy: 20 + - Id: 29353 + AegisName: Racing_SN_2 + Name: Racing(Super Novice) 2Lv + Type: Card + Buy: 20 + - Id: 29354 + AegisName: Racing_SN_3 + Name: Racing(Super Novice) 3Lv + Type: Card + Buy: 20 + - Id: 29355 + AegisName: Racing_SU_1 + Name: Racing(Summoner) 1Lv + Type: Card + Buy: 20 + - Id: 29356 + AegisName: Racing_SU_2 + Name: Racing(Summoner) 2Lv + Type: Card + Buy: 20 + - Id: 29357 + AegisName: Racing_SU_3 + Name: Racing(Summoner) 3Lv + Type: Card + Buy: 20 + - Id: 29358 + AegisName: Casting_Robe + Name: Variable Casting Garment + Type: Card + Script: | + bonus bVariableCastrate,-10; + - Id: 29359 + AegisName: Fatal_Top + Name: Fatal (Upper) + Type: Card + Script: | + bonus bCritAtkRate,3; + - Id: 29360 + AegisName: Fatal_Bottom + Name: Fatal (Lower) + Type: Card + Script: | + bonus bCritAtkRate,3; + - Id: 29361 + AegisName: Fatal_Robe + Name: Fatal (Garment) + Type: Card + Script: | + bonus bCritAtkRate,20; + - Id: 29362 + AegisName: DoubleAttack + Name: Double Attack + Type: Card + Script: | + skill "TF_DOUBLE",3; bonus bDoubleRate,15; + - Id: 29438 + AegisName: Z-Knockback + Name: Z-Knockback + Type: Card + Script: | + bonus bNoKnockback; + - Id: 29439 + AegisName: Z-Immortal + Name: Z-Immortal + Type: Card + Script: | + bonus bUnbreakableHelm; /* fix me */ + - Id: 29440 + AegisName: Z-Killgain + Name: Z-Killgain + Type: Card + Script: | + bonus bSPGainValue,2; .@r = getrefine(); if(.@r>=7){ bonus bSPGainValue,3; } if(.@r>=8){ bonus bSPGainValue,5; } if(.@r>=9){ bonus bSPGainValue,10; } + - Id: 29441 + AegisName: Z-Reincarnation + Name: Z-Reincarnation + Type: Card + Script: | + bonus bRestartFullRecover; + - Id: 29442 + AegisName: Z-NoDispell + Name: Z-NoDispell + Type: Card + Script: | + bonus bNoCastCancel2; + - Id: 29443 + AegisName: Z-Clairvoyance + Name: Z-Clairvoyance + Type: Card + Script: | + bonus bIntravision; + - Id: 29444 + AegisName: Z-Cast_Fixed + Name: Z-Cast Fixed + Type: Card + Script: | + bonus bFixedCastrate,-50; + - Id: 29579 + AegisName: Racing_SG_1 + Name: Racing (Star Gladiator) 1Lv + Type: Card + Buy: 20 + - Id: 29580 + AegisName: Racing_SG_2 + Name: Racing (Star Gladiator) 2Lv + Type: Card + Buy: 20 + - Id: 29581 + AegisName: Racing_SG_3 + Name: Racing (Star Gladiator) 3Lv + Type: Card + Buy: 20 + - Id: 29582 + AegisName: Racing_SL_1 + Name: Racing (Soul Linker) 1Lv + Type: Card + Buy: 20 + - Id: 29583 + AegisName: Racing_SL_2 + Name: Racing (Soul Linker) 2Lv + Type: Card + Buy: 20 + - Id: 29584 + AegisName: Racing_SL_3 + Name: Racing (Soul Linker) 3Lv + Type: Card + Buy: 20 + - Id: 29594 + AegisName: Seyren_Memory + Name: Seyren's Memory + Type: Card + Buy: 20 + - Id: 29595 + AegisName: Howard_Memory + Name: Howard's Memory + Type: Card + Buy: 20 + - Id: 29596 + AegisName: Eremes_Memory + Name: Eremes's Memory + Type: Card + Buy: 20 + - Id: 29598 + AegisName: Catherine_Memory + Name: Catherine's Memory + Type: Card + Buy: 20 + - Id: 29599 + AegisName: Margaretha_Memory + Name: Margaretha's Memory + Type: Card + Buy: 20 + - Id: 29600 + AegisName: Cecil_Memory + Name: Cecil's Memory + Type: Card + Buy: 20 + - Id: 29601 + AegisName: Randel_Memory + Name: Randel's Memory + Type: Card + Buy: 20 + - Id: 29602 + AegisName: Flamel_Memory + Name: Flamel's Memory + Type: Card + Buy: 20 + - Id: 29603 + AegisName: Gertie_Memory + Name: Gertie's Memory + Type: Card + Buy: 20 + - Id: 29604 + AegisName: Celia_Memory + Name: Celia's Memory + Type: Card + Buy: 20 + - Id: 29605 + AegisName: Chen_Memory + Name: Chen's Memory + Type: Card + Buy: 20 + - Id: 29606 + AegisName: Trentini_Memory + Name: Trentini's Memory + Type: Card + Buy: 20 + - Id: 29607 + AegisName: Alphoccio_Memory + Name: Alphoccio's Memory + Type: Card + Buy: 20 + - Id: 31006 + AegisName: LoVA_Hades_Card + Name: LoVA Hades Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Script: | + bonus2 bSubRace,RC_Undead,10; + - Id: 31007 + AegisName: LoVA_Realization_Hades_Card + Name: LoVA Realization Hades Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Script: | + bonus bDefEle,Ele_Undead; bonus2 bSubRace,RC_Undead,10; + - Id: 31008 + AegisName: LoVA_Lulu_Card + Name: LoVA Lulu Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Script: | + bonus2 bHPRegenRate,BaseLevel,10000; if(getrefine()>=7) { bonus bAtk,6*(readparam(bStr)/60); bonus bMaxHPrate,readparam(bStr)/60; } + - Id: 31009 + AegisName: LoVA_Realization_Lulu_Card + Name: LoVA Realization Lulu Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Script: | + bonus2 bHPRegenRate,BaseLevel,10000; if(getrefine()>=7) { bonus bAtk,6*(readparam(bStr)/20); bonus bMaxHPrate,readparam(bStr)/20; } + - Id: 31010 + AegisName: LoVA_Kima_Card + Name: LoVA Kima Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Script: | + bonus2 bSPRegenRate,BaseLevel/6,10000; if(getrefine()>=7) { bonus bMatk,6*(readparam(bInt)/30); bonus bMaxSPrate,readparam(bInt)/30; } + - Id: 31011 + AegisName: LoVA_Realization_Kima_Card + Name: LoVA Realization Kima Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Script: | + bonus2 bSPRegenRate,BaseLevel/2,10000; if(getrefine()>=7) { bonus bMatk,6*(readparam(bInt)/10); bonus bMaxSPrate,readparam(bInt)/10; } + - Id: 31012 + AegisName: LoVA_Bahamut_Card + Name: LoVA Bahamut Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + bonus2 bSkillAtk,"RK_DRAGONBREATH",5; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",5; if(getrefine()>=7) { bonus bDelayrate,-1; } + - Id: 31013 + AegisName: LoVA_Realization_Bahamut_Card + Name: LoVA Realization Bahamut Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + bonus2 bSkillAtk,"RK_DRAGONBREATH",15; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",15; if(getrefine()>=7) { bonus bDelayrate,-3; } + - Id: 31014 + AegisName: LoVA_Ragnarok_Card + Name: LoVA Ragnarok Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Script: | + bonus bMdef,7; bonus bMaxHPrate,6; if(getrefine()>=7) { bonus2 bSkillAtk,"HW_GRAVITATION",9; } + - Id: 31015 + AegisName: LoVA_Realization_Ragnarok_Card + Name: LoVA Realization Ragnarok Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Garment: true + Script: | + bonus bMdef,10; bonus bMaxHPrate,10; if(getrefine()>=7) { bonus2 bSkillAtk,"HW_GRAVITATION",769; } + - Id: 31016 + AegisName: Decorated_Evil_Tree_Card + Name: Decorated Evil Tree Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Armor: true + Script: | + bonus bMaxHP,1000; bonus bMaxSP,150; bonus bFlee,-25; + - Id: 31017 + AegisName: Vicious_Cookie_Card + Name: Vicious Cookie Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Script: | + .@r = getrefine(); bonus2 bAddClass,Class_All,1+.@r; bonus bMatkRate,1+.@r; bonus bMaxHPrate,-(2+(.@r*2)); + - Id: 31018 + AegisName: Evil_Dwelling_Box_Card + Name: Evil Dwelling Box Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + bonus bMaxHP,-1225; bonus3 bAddEff,Eff_Curse,5000,ATF_MAGIC; + - Id: 31019 + AegisName: Creepy_Demon_Card + Name: Creepy Demon Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bMaxHPrate,-13; bonus3 bAddEffWhenHit,Eff_Curse,4000,ATF_MAGIC; + - Id: 31020 + AegisName: Malicious_Baby_Ghost_Card + Name: Malicious Baby Ghost Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bMaxHPrate,-13; bonus3 bAddEffWhenHit,Eff_Curse,4000,ATF_WEAPON; + - Id: 31021 + AegisName: Dancing_Marionette_Card + Name: Dancing Marionette Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + bonus bAspdRate,10; bonus2 bAddClass,Class_All,-3; + - Id: 31022 + AegisName: Abandoned_Teddy_Bear_Card + Name: Abandoned Teddy Bear Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Script: | + bonus bMaxSPRate,20; bonus2 bAddEff2,Eff_Curse,20; + - Id: 31023 + AegisName: Celine_Kimi_Card + Name: Celine Kimi Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Script: | + bonus bMatkRate,10; bonus5 bAutoSpell,"NPC_CRITICALWOUND",3,5+(10*(getrefine()/3)),BF_MAGIC,1; diff --git a/db/re/item_db_usable.yml b/db/re/item_db_usable.yml new file mode 100644 index 0000000000..b56df9af5c --- /dev/null +++ b/db/re/item_db_usable.yml @@ -0,0 +1,46650 @@ +# This file is a part of rAthena. +# Copyright(C) 2019 rAthena Development Team +# https://rathena.org - https://github.com/rathena +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# +########################################################################### +# Item Database +########################################################################### +# +# Item Settings +# +########################################################################### +# - Id Item ID. +# AegisName Server name to reference the item in scripts and lookups, should use no spaces. +# Name Name in English for displaying as output. +# Type Item type. (Default: Etc) +# SubType Weapon or Ammo type. (Default: 0) +# Buy Buying price. When not specified, becomes double the sell price. (Default: 0) +# Sell Selling price. When not specified, becomes half the buy price. (Default: 0) +# Weight Item weight. Each 10 is 1 weight. (Default: 0) +# Attack Weapon's attack. (Default: 0) +# MagicAttack Weapon's magic attack. (Default: 0) +# Defense Armor's defense. (Default: 0) +# Range Weapon's attack range. (Default: 0) +# Slots Available slots in item. (Default: 0) +# Jobs Jobs that can equip the item. (Map default is 'All: true') +# Classes Upper class types that can equip the item. (Map default is 'All: true') +# Gender Gender that can equip the item. (Default: Both) +# Locations Equipment's placement. (Default: None) +# WeaponLevel Weapon level. (Default: 0) +# EquipLevelMin Minimum required level to equip. (Default: 0) +# EquipLevelMax Maximum level that can equip. (Default: 0) +# Refineable If the item can be refined. (Default: false) +# View View sprite of an item. (Default: 0) +# AliasName Another item's AegisName that will be sent to the client instead of this item's AegisName. (Default: null) +# Flags: Item flags. (Default: null) +# BuyingStore If the item is available for Buyingstores. (Default: false) +# DeadBranch If the item is a Dead Branch. (Default: false) +# Container If the item is part of a container. (Default: false) +# UniqueId If the item is a unique stack. (Default: false) +# BindOnEquip If the item is bound to the character upon equipping. (Default: false) +# DropAnnounce If the item has a special announcement to self on drop. (Default: false) +# NoConsume If the item is consumed on use. (Default: false) +# DropEffect If the item has a special effect when on the ground. (Default: None) +# Delay: Item use delay. (Default: null) +# Duration Duration of delay in seconds. +# Status Status Change used to track delay. (Default: None) +# Stack: Item stack amount. (Default: null) +# Amount Maximum amount that can be stacked. +# Inventory If the stack is applied to player's inventory. (Default: true) +# Cart If the stack is applied to the player's cart. (Default: false) +# Storage If the stack is applied to the player's storage. (Default: false) +# GuildStorage If the stack is applied to the player's guild storage. (Default: false) +# NoUse: Conditions when the item is unusable. (Default: null) +# Override Group level to override these conditions. +# Sitting If the item can not be used while sitting. (Default: false) +# Trade: Trade restrictions. (Default: null) +# Override Group level to override these conditions. +# NoDrop If the item can not be dropped. (Default: false) +# NoTrade If the item can not be traded. (Default: false) +# TradePartner If the item can not be traded to the player's partner. (Default: false) +# NoSell If the item can not be sold. (Default: false) +# NoCart If the item can not be put in a cart. (Default: false) +# NoStorage If the item can not be put in a storage. (Default: false) +# NoGuildStorage If the item can not be put in a guild storage. (Default: false) +# NoMail If the item can not be put in a mail. (Default: false) +# NoAuction If the item can not be put in an auction. (Default: false) +# Script Script to execute when the item is used/equipped. (Default: null) +# EquipScript Script to execute when the item is equipped. (Default: null) +# UnEquipScript Script to execute when the item is unequipped or when a rental item expires. (Default: null) +########################################################################### + +Header: + Type: ITEM_DB + Version: 1 + +Body: + - Id: 500 + AegisName: Choko_Gangjeong + Name: Choko Gangjeong + Type: Healing + Weight: 10 + Script: | + percentheal 10,10; + - Id: 501 + AegisName: Red_Potion + Name: Red Potion + Type: Healing + Buy: 10 + Weight: 70 + Script: | + itemheal rand(45,65),0; + - Id: 502 + AegisName: Orange_Potion + Name: Orange Potion + Type: Healing + Buy: 50 + Weight: 100 + Script: | + itemheal rand(105,145),0; + - Id: 503 + AegisName: Yellow_Potion + Name: Yellow Potion + Type: Healing + Buy: 180 + Weight: 130 + Script: | + itemheal rand(175,235),0; + - Id: 504 + AegisName: White_Potion + Name: White Potion + Type: Healing + Buy: 1200 + Weight: 150 + Script: | + itemheal rand(325,405),0; + - Id: 505 + AegisName: Blue_Potion + Name: Blue Potion + Type: Healing + Buy: 5000 + Weight: 150 + Script: | + itemheal 0,rand(40,60); + - Id: 506 + AegisName: Green_Potion + Name: Green Potion + Type: Healing + Buy: 40 + Weight: 70 + Flags: + BuyingStore: true + Script: | + sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_HALLUCINATION; + - Id: 507 + AegisName: Red_Herb + Name: Red Herb + Type: Healing + Buy: 18 + Weight: 30 + Flags: + BuyingStore: true + Script: | + itemheal rand(18,28),0; + - Id: 508 + AegisName: Yellow_Herb + Name: Yellow Herb + Type: Healing + Buy: 40 + Weight: 50 + Flags: + BuyingStore: true + Script: | + itemheal rand(38,58),0; + - Id: 509 + AegisName: White_Herb + Name: White Herb + Type: Healing + Buy: 120 + Weight: 70 + Flags: + BuyingStore: true + Script: | + itemheal rand(75,115),0; + - Id: 510 + AegisName: Blue_Herb + Name: Blue Herb + Type: Healing + Buy: 60 + Weight: 70 + Flags: + BuyingStore: true + Script: | + itemheal 0,rand(15,30); + - Id: 511 + AegisName: Green_Herb + Name: Green Herb + Type: Healing + Buy: 10 + Weight: 30 + Flags: + BuyingStore: true + Script: | + sc_end SC_POISON; + - Id: 512 + AegisName: Apple + Name: Apple + Type: Healing + Buy: 15 + Weight: 20 + Flags: + BuyingStore: true + Script: | + itemheal rand(16,22),0; + - Id: 513 + AegisName: Banana + Name: Banana + Type: Healing + Buy: 15 + Weight: 20 + Flags: + BuyingStore: true + Script: | + itemheal rand(17,21),0; + - Id: 514 + AegisName: Grape + Name: Grape + Type: Healing + Buy: 200 + Weight: 20 + Flags: + BuyingStore: true + Script: | + itemheal 0,rand(10,15); + - Id: 515 + AegisName: Carrot + Name: Carrot + Type: Healing + Buy: 15 + Weight: 20 + Flags: + BuyingStore: true + Script: | + itemheal rand(18,20),0; + - Id: 516 + AegisName: Sweet_Potato + Name: Potato + Type: Healing + Buy: 15 + Weight: 20 + Flags: + BuyingStore: true + Script: | + itemheal rand(15,23),0; + - Id: 517 + AegisName: Meat + Name: Meat + Type: Healing + Buy: 50 + Weight: 150 + Flags: + BuyingStore: true + Script: | + itemheal rand(70,100),0; + - Id: 518 + AegisName: Honey + Name: Honey + Type: Healing + Buy: 500 + Weight: 100 + Flags: + BuyingStore: true + Script: | + itemheal rand(70,100),rand(20,40); + - Id: 519 + AegisName: Milk + Name: Milk + Type: Healing + Buy: 25 + Weight: 30 + Flags: + BuyingStore: true + Script: | + itemheal rand(27,37),0; + - Id: 520 + AegisName: Leaflet_Of_Hinal + Name: Hinalle Leaflet + Type: Healing + Buy: 150 + Weight: 10 + Flags: + BuyingStore: true + Script: | + itemheal rand(175,235),0; + - Id: 521 + AegisName: Leaflet_Of_Aloe + Name: Aloe Leaflet + Type: Healing + Buy: 360 + Weight: 20 + Flags: + BuyingStore: true + Script: | + itemheal rand(325,405),0; + - Id: 522 + AegisName: Fruit_Of_Mastela + Name: Mastela Fruit + Type: Healing + Buy: 8500 + Weight: 30 + Flags: + BuyingStore: true + Script: | + itemheal rand(400,600),0; + - Id: 523 + AegisName: Holy_Water + Name: Holy Water + Type: Healing + Buy: 20 + Weight: 30 + Flags: + BuyingStore: true + Script: | + sc_end SC_CURSE; + - Id: 525 + AegisName: Panacea + Name: Panacea + Type: Healing + Buy: 500 + Weight: 100 + Flags: + BuyingStore: true + Script: | + sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination; + - Id: 526 + AegisName: Royal_Jelly + Name: Royal Jelly + Type: Healing + Buy: 7000 + Weight: 150 + Flags: + BuyingStore: true + Script: | + itemheal rand(325,405),rand(40,60); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination; + - Id: 528 + AegisName: Monster's_Feed + Name: Monster's Feed + Type: Healing + Buy: 60 + Weight: 150 + Flags: + BuyingStore: true + Script: | + itemheal rand(72,108),0; + - Id: 529 + AegisName: Candy + Name: Candy + Type: Healing + Buy: 10 + Weight: 30 + Flags: + BuyingStore: true + Script: | + itemheal rand(45,65),0; + - Id: 530 + AegisName: Candy_Striper + Name: Candy Cane + Type: Healing + Buy: 20 + Weight: 40 + Flags: + BuyingStore: true + Script: | + itemheal rand(105,145),0; + - Id: 531 + AegisName: Apple_Juice + Name: Apple Juice + Type: Healing + Buy: 20 + Weight: 40 + Flags: + BuyingStore: true + Script: | + itemheal rand(25,35),0; + - Id: 532 + AegisName: Banana_Juice + Name: Banana Juice + Type: Healing + Buy: 20 + Weight: 40 + Flags: + BuyingStore: true + Script: | + itemheal rand(26,34),0; + - Id: 533 + AegisName: Grape_Juice + Name: Grape Juice + Type: Healing + Buy: 250 + Weight: 40 + Flags: + BuyingStore: true + Script: | + itemheal 0,rand(15,25); + - Id: 534 + AegisName: Carrot_Juice + Name: Carrot Juice + Type: Healing + Buy: 20 + Weight: 40 + Flags: + BuyingStore: true + Script: | + itemheal rand(27,33),0; + - Id: 535 + AegisName: Pumpkin + Name: Pumpkin + Type: Healing + Buy: 15 + Weight: 20 + Flags: + BuyingStore: true + Script: | + itemheal 19,0; + - Id: 536 + AegisName: Ice_Cream + Name: Ice Cream + Type: Healing + Buy: 150 + Weight: 80 + Flags: + BuyingStore: true + Script: | + itemheal rand(105,145),0; sc_start SC_FREEZE,10000,0,2500,0; + - Id: 537 + AegisName: Pet_Food + Name: Pet Food + Type: Healing + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + Script: | + itemheal rand(50,90),0; + - Id: 538 + AegisName: Well_Baked_Cookie + Name: Well-baked Cookie + Type: Healing + Buy: 1000 + Weight: 30 + Flags: + BuyingStore: true + Script: | + itemheal rand(160,200),0; + - Id: 539 + AegisName: Piece_Of_Cake + Name: Piece of Cake + Type: Healing + Buy: 3000 + Weight: 100 + Flags: + BuyingStore: true + Script: | + itemheal rand(270,330),0; + - Id: 540 + AegisName: Falcon's_Feed + Name: Falcon Food + Type: Healing + Buy: 2000 + Weight: 50 + Script: | + itemheal rand(185,225),0; + - Id: 541 + AegisName: Pecopeco's_Feed + Name: PecoPeco Food + Type: Healing + Buy: 3000 + Weight: 50 + Script: | + itemheal rand(325,405),0; + - Id: 542 + AegisName: Festive_Cookie + Name: Festival Cookie + Type: Healing + Buy: 10 + Weight: 10 + Script: | + itemheal rand(325,405),0; + - Id: 543 + AegisName: Festive_Rainbow_Cake + Name: Festival Rainbow Cake + Type: Healing + Buy: 10 + Weight: 10 + Script: | + itemheal rand(325,405),0; + - Id: 544 + AegisName: Fish_Slice + Name: Raw Fish + Type: Healing + Buy: 20 + Weight: 30 + Flags: + BuyingStore: true + Script: | + itemheal rand(25,60),0; + - Id: 545 + AegisName: Red_Slim_Potion + Name: Condensed Red Potion + Type: Healing + Buy: 150 + Weight: 20 + Script: | + itemheal rand(45,65),0; + - Id: 546 + AegisName: Yellow_Slim_Potion + Name: Condensed Yellow Potion + Type: Healing + Buy: 600 + Weight: 30 + Script: | + itemheal rand(175,235),0; + - Id: 547 + AegisName: White_Slim_Potion + Name: Condensed White Potion + Type: Healing + Buy: 1650 + Weight: 50 + Trade: + Override: 100 + NoSell: true + Script: | + itemheal rand(325,405),0; + - Id: 548 + AegisName: Cheese + Name: Cheese + Type: Healing + Buy: 2800 + Weight: 50 + Flags: + BuyingStore: true + Script: | + itemheal 0,rand(10,15); + - Id: 549 + AegisName: Nice_Sweet_Potato + Name: Yam + Type: Healing + Buy: 180 + Weight: 80 + Flags: + BuyingStore: true + Script: | + itemheal rand(50,100),0; sc_start SC_STUN,3000,0,1500,0; + - Id: 550 + AegisName: Popped_Rice + Name: Rice Cake + Type: Healing + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + Script: | + itemheal rand(10,15),0; + - Id: 551 + AegisName: Shusi + Name: Sushi + Type: Healing + Buy: 1 + Weight: 50 + Flags: + BuyingStore: true + Script: | + itemheal rand(50,60),0; + - Id: 552 + AegisName: KETUPAT + Name: Ketupat + Type: Healing + Buy: 1 + Weight: 10 + Script: | + itemheal rand(70,90),rand(20,30); + - Id: 553 + AegisName: Bun + Name: Bao + Type: Healing + Buy: 1 + Weight: 50 + Flags: + BuyingStore: true + Script: | + itemheal rand(35,70),0; + - Id: 554 + AegisName: Mojji + Name: Mochi + Type: Healing + Buy: 100 + Weight: 80 + Script: | + itemheal rand(105,145),0; sc_start SC_STUN,3000,0; sc_start SC_BLIND,2000,0,1500,0; + - Id: 555 + AegisName: Rice_Cake + Name: Traditional Rice Cake + Type: Healing + Buy: 100 + Weight: 20 + Script: | + itemheal rand(105,145),0; + - Id: 556 + AegisName: Long_Rice_Cake + Name: Rice Cake Stick + Type: Healing + Buy: 10 + Weight: 10 + Script: | + itemheal rand(20,25),0; + - Id: 557 + AegisName: Hash_Rice_Cake + Name: Neatly Sliced Rice Cake + Type: Healing + Buy: 10 + Weight: 10 + Script: | + itemheal rand(25,30),0; + - Id: 558 + AegisName: Chocolate + Name: Chocolate + Type: Healing + Buy: 1 + Weight: 20 + Script: | + itemheal 1,1; + - Id: 559 + AegisName: HandMade_Chocolate + Name: Hand-made Chocolate + Type: Healing + Buy: 1 + Weight: 80 + Script: | + itemheal 50,50; + - Id: 560 + AegisName: HandMade_Chocolate_ + Name: Handmade White Chocolate + Type: Healing + Buy: 5000 + Weight: 80 + Script: | + itemheal 50,50; + - Id: 561 + AegisName: White_Chocolate + Name: White Chocolate + Type: Healing + Buy: 5000 + Weight: 80 + Script: | + itemheal 50,50; + - Id: 562 + AegisName: Pizza + Name: Doublecrust Swiss Fondue + Type: Healing + Buy: 100 + Weight: 150 + Script: | + itemheal rand(70,100),0; + - Id: 563 + AegisName: Pizza_01 + Name: Doublecrust Swiss Fondue + Type: Healing + Buy: 1200 + Weight: 150 + Script: | + itemheal rand(375,445),0; + - Id: 564 + AegisName: Rice_Ball + Name: Rice Ball + Type: Healing + Buy: 1 + Weight: 30 + Flags: + BuyingStore: true + Script: | + itemheal 200,0; + - Id: 565 + AegisName: Vita500_Bottle + Name: Vita500 + Type: Healing + Buy: 580 + Weight: 100 + Script: | + itemheal rand(142,274),0; + - Id: 566 + AegisName: Tomyumkung + Name: Tom Yum Goong + Type: Healing + Buy: 10000 + Weight: 150 + Flags: + BuyingStore: true + Script: | + itemheal rand(244,350),rand(10,30); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination; + - Id: 567 + AegisName: Prawn + Name: Shrimp + Type: Healing + Buy: 500 + Weight: 40 + Flags: + BuyingStore: true + Script: | + itemheal rand(117,192),0; + - Id: 568 + AegisName: Lemon + Name: Lemon + Type: Healing + Buy: 60 + Weight: 40 + Flags: + BuyingStore: true + Script: | + itemheal 0,rand(10,20); + - Id: 569 + AegisName: Novice_Potion + Name: Novice Potion + Type: Healing + Weight: 10 + Flags: + BuyingStore: true + Script: | + itemheal rand(44,66),0; + - Id: 570 + AegisName: Lucky_Candy + Name: Lucky Candy + Type: Healing + Buy: 10 + Weight: 30 + Flags: + BuyingStore: true + Script: | + itemheal rand(45,65),0; + - Id: 571 + AegisName: Lucky_Candy_Cane + Name: Lucky Candy Cane + Type: Healing + Buy: 20 + Weight: 40 + Flags: + BuyingStore: true + Script: | + itemheal rand(105,145),0; + - Id: 572 + AegisName: Lucky_Cookie + Name: Lucky Cookie + Type: Healing + Buy: 1000 + Weight: 30 + Flags: + BuyingStore: true + Script: | + itemheal rand(160,200),0; + - Id: 573 + AegisName: Chocolate_Drink + Name: Chocolate Drink + Type: Healing + Buy: 7000 + Weight: 150 + Script: | + itemheal rand(330,410),rand(45,65); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination; + - Id: 574 + AegisName: Egg + Name: Egg + Type: Healing + Buy: 20 + Weight: 30 + Flags: + BuyingStore: true + Script: | + itemheal rand(33,42),0; + - Id: 575 + AegisName: Piece_Of_Cake_ + Name: 2nd Anniversary Cake + Type: Healing + Buy: 10 + Weight: 100 + Script: | + itemheal rand(270,330),0; + - Id: 576 + AegisName: Prickly_Fruit + Name: Prickly Fruit + Type: Healing + Buy: 540 + Weight: 60 + Flags: + BuyingStore: true + Script: | + itemheal rand(150,300),rand(20,30); + - Id: 577 + AegisName: Grain + Name: Bag of Grain + Type: Healing + Buy: 200 + Weight: 20 + Flags: + BuyingStore: true + Script: | + itemheal rand(60,70),0; + - Id: 578 + AegisName: Strawberry + Name: Strawberry + Type: Healing + Buy: 200 + Weight: 20 + Flags: + BuyingStore: true + Script: | + itemheal 0,rand(16,28); + - Id: 579 + AegisName: Delicious_Fish + Name: Fresh Fish + Type: Healing + Buy: 700 + Weight: 20 + Flags: + BuyingStore: true + Script: | + itemheal rand(100,150),0; + - Id: 580 + AegisName: Bread + Name: Bread + Type: Healing + Buy: 150 + Weight: 20 + Flags: + BuyingStore: true + Script: | + itemheal rand(50,90),0; + - Id: 581 + AegisName: Mushroom + Name: Edible Mushroom + Type: Healing + Buy: 40 + Weight: 20 + Flags: + BuyingStore: true + Script: | + itemheal rand(20,30),0; + - Id: 582 + AegisName: Orange + Name: Orange + Type: Healing + Buy: 300 + Weight: 20 + Flags: + BuyingStore: true + Script: | + itemheal rand(10,20),rand(10,20); + - Id: 583 + AegisName: KETUPAT_ + Name: Ketupat Sayur + Type: Healing + Buy: 7000 + Weight: 150 + Script: | + itemheal rand(325,405),rand(40,60); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination; + - Id: 584 + AegisName: Fish_Ball_Soup + Name: Fish Cake Soup + Type: Healing + Buy: 100 + Weight: 60 + Flags: + BuyingStore: true + Script: | + itemheal rand(40,70),0; + - Id: 585 + AegisName: Wurst + Name: Brusti + Type: Delayconsume + Buy: 2 + Weight: 40 + Script: | + itemheal rand(15,20),0; itemskill "PR_MAGNIFICAT",3; + - Id: 586 + AegisName: Mother's_Cake + Name: Mother's Cake + Type: Healing + Buy: 20 + Weight: 100 + Script: | + itemheal rand(325,405),0; + - Id: 587 + AegisName: Prickly_Fruit_ + Name: Red Prickly Fruit + Type: Healing + Buy: 880 + Weight: 60 + Flags: + BuyingStore: true + Script: | + itemheal rand(270,330),rand(20,30); + - Id: 588 + AegisName: Spaghetti + Name: Spaghetti + Type: Healing + Buy: 100 + Weight: 100 + Script: | + itemheal rand(40,70),0; + - Id: 589 + AegisName: Pizza_02 + Name: Pizza + Type: Healing + Buy: 1200 + Weight: 150 + Script: | + itemheal rand(375,445),0; + - Id: 590 + AegisName: Brezel_ + Name: Pretzel + Type: Healing + Buy: 2 + Weight: 20 + Script: | + itemheal rand(50,90),0; + - Id: 591 + AegisName: Caviar_Pancake + Name: Caviar Pancake + Type: Healing + Weight: 150 + Flags: + BuyingStore: true + Script: | + itemheal rand(325,405),rand(40,60); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination; + - Id: 592 + AegisName: Jam_Pancake + Name: Jam Pancake + Type: Healing + Weight: 150 + Flags: + BuyingStore: true + Script: | + itemheal rand(325,405),rand(40,60); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination; + - Id: 593 + AegisName: Honey_Pancake + Name: Honey Pancake + Type: Healing + Weight: 150 + Flags: + BuyingStore: true + Script: | + itemheal rand(325,405),rand(40,60); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination; + - Id: 594 + AegisName: Sour_Cream_Pancake + Name: Sour-Cream Pancake + Type: Healing + Weight: 150 + Flags: + BuyingStore: true + Script: | + itemheal rand(325,405),rand(40,60); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination; + - Id: 595 + AegisName: Mushroom_Pancake + Name: Mushroom Pancake + Type: Healing + Weight: 150 + Flags: + BuyingStore: true + Script: | + itemheal rand(325,405),rand(40,60); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination; + - Id: 596 + AegisName: Cute_Strawberry_Choco + Name: Cute Strawberry-Choco + Type: Healing + Buy: 20 + Weight: 100 + Script: | + itemheal 0,rand(1,100); + - Id: 597 + AegisName: Lovely_Choco_Tart + Name: Lovely Choco-Tart + Type: Healing + Buy: 20 + Weight: 100 + Script: | + itemheal rand(10,400),0; + - Id: 598 + AegisName: Light_Red_Pot + Name: Light Red Potion + Type: Healing + Buy: 50 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemheal rand(45,65),0; + - Id: 599 + AegisName: Light_Orange_Pot + Name: Light Orange Potion + Type: Healing + Buy: 200 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemheal rand(105,145),0; + - Id: 601 + AegisName: Wing_Of_Fly + Name: Fly Wing + Type: Delayconsume + Buy: 60 + Weight: 50 + Flags: + BuyingStore: true + Script: | + itemskill "AL_TELEPORT",1; + - Id: 602 + AegisName: Wing_Of_Butterfly + Name: Butterfly Wing + Type: Delayconsume + Buy: 300 + Weight: 50 + Flags: + BuyingStore: true + Script: | + itemskill "AL_TELEPORT",3; + - Id: 603 + AegisName: Old_Blue_Box + Name: Old Blue Box + Type: Usable + Buy: 10000 + Weight: 200 + Flags: + BuyingStore: true + Container: true + Trade: + Override: 100 + NoSell: true + Script: | + getrandgroupitem(IG_BlueBox,1); + - Id: 604 + AegisName: Branch_Of_Dead_Tree + Name: Dead Branch + Type: Usable + Buy: 50 + Weight: 50 + Flags: + BuyingStore: true + DeadBranch: true + Script: | + monster "this",-1,-1,"--ja--",-1-MOBG_Branch_Of_Dead_Tree,1,""; + - Id: 605 + AegisName: Anodyne + Name: Anodyne + Type: Delayconsume + Buy: 2000 + Weight: 100 + Flags: + BuyingStore: true + Script: | + itemskill "SM_ENDURE",1; + - Id: 606 + AegisName: Aloebera + Name: Aloevera + Type: Delayconsume + Buy: 1500 + Weight: 100 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "SM_SELFPROVOKE",1; + - Id: 607 + AegisName: Yggdrasilberry + Name: Yggdrasil Berry + Type: Healing + Buy: 5000 + Weight: 300 + Flags: + BuyingStore: true + Delay: + Duration: 5000 + Status: Reuse_Limit_F + Script: | + percentheal 100,100; + - Id: 608 + AegisName: Seed_Of_Yggdrasil + Name: Yggdrasil Seed + Type: Healing + Buy: 5000 + Weight: 300 + Flags: + BuyingStore: true + Delay: + Duration: 3000 + Status: Reuse_Limit_G + Script: | + percentheal 50,50; + - Id: 609 + AegisName: Amulet + Name: Amulet + Type: Usable + Buy: 100 + Weight: 100 + Flags: + BuyingStore: true + - Id: 610 + AegisName: Leaf_Of_Yggdrasil + Name: Yggdrasil Leaf + Type: Delayconsume + Buy: 4000 + Weight: 100 + Flags: + BuyingStore: true + Script: | + itemskill "ALL_RESURRECTION",1; + - Id: 611 + AegisName: Spectacles + Name: Magnifier + Type: Delayconsume + Buy: 40 + Weight: 50 + Flags: + BuyingStore: true + Script: | + itemskill "MC_IDENTIFY",1; + - Id: 612 + AegisName: Portable_Furnace + Name: Mini Furnace + Type: Usable + Buy: 150 + Weight: 200 + Flags: + BuyingStore: true + Script: | + produce 21; + - Id: 613 + AegisName: Iron_Hammer + Name: Iron Hammer + Type: Usable + Buy: 1000 + Weight: 200 + Flags: + BuyingStore: true + Script: | + produce 1; + - Id: 614 + AegisName: Golden_Hammer + Name: Golden Hammer + Type: Usable + Buy: 3000 + Weight: 300 + Flags: + BuyingStore: true + Script: | + produce 2; + - Id: 615 + AegisName: Oridecon_Hammer + Name: Oridecon Hammer + Type: Usable + Buy: 5000 + Weight: 400 + Flags: + BuyingStore: true + Script: | + produce 3; + - Id: 616 + AegisName: Old_Card_Album + Name: Old Card Album + Type: Usable + Buy: 10000 + Weight: 50 + Flags: + BuyingStore: true + Container: true + Script: | + getrandgroupitem(IG_CardAlbum,1); + - Id: 617 + AegisName: Old_Violet_Box + Name: Old Purple Box + Type: Usable + Buy: 10000 + Weight: 200 + Flags: + BuyingStore: true + Container: true + Trade: + Override: 100 + NoSell: true + Script: | + getrandgroupitem(IG_VioletBox,1); + - Id: 618 + AegisName: Worn_Out_Scroll + Name: Worn Out Scroll + Type: Usable + Buy: 50 + Weight: 20 + Flags: + BuyingStore: true + - Id: 619 + AegisName: Unripe_Apple + Name: Unripe Apple + Type: Usable + Buy: 1000 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1002; + - Id: 620 + AegisName: Orange_Juice + Name: Orange Juice + Type: Usable + Buy: 1500 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1113; + - Id: 621 + AegisName: Bitter_Herb + Name: Bitter Herb + Type: Usable + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1031; + - Id: 622 + AegisName: Rainbow_Carrot + Name: Rainbow Carrot + Type: Usable + Buy: 2500 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1063; + - Id: 623 + AegisName: Earthworm_The_Dude + Name: Earthworm the Dude + Type: Usable + Buy: 4000 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1049; + - Id: 624 + AegisName: Rotten_Fish + Name: Rotten Fish + Type: Usable + Buy: 2500 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1011; + - Id: 625 + AegisName: Lusty_Iron + Name: Rusty Iron + Type: Usable + Buy: 100 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1042; + - Id: 626 + AegisName: Monster_Juice + Name: Monster Juice + Type: Usable + Buy: 1500 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1035; + - Id: 627 + AegisName: Sweet_Milk + Name: Sweet Milk + Type: Usable + Buy: 7000 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1167; + - Id: 628 + AegisName: Well_Dried_Bone + Name: Well-Dried Bone + Type: Usable + Buy: 10000 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1107; + - Id: 629 + AegisName: Singing_Flower + Name: Singing Flower + Type: Usable + Buy: 300 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1052; + - Id: 630 + AegisName: Dew_Laden_Moss + Name: Dew Laden Moss + Type: Usable + Buy: 10 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1014; + - Id: 631 + AegisName: Deadly_Noxious_Herb + Name: Deadly Noxious Herb + Type: Usable + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1077; + - Id: 632 + AegisName: Fatty_Chubby_Earthworm + Name: Fatty Chubby Earthworm + Type: Usable + Buy: 5000 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1019; + - Id: 633 + AegisName: Baked_Yam + Name: Sweet Potato + Type: Usable + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1056; + - Id: 634 + AegisName: Tropical_Banana + Name: Tropical Banana + Type: Usable + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1057; + - Id: 635 + AegisName: Horror_Of_Tribe + Name: Orc Trophy + Type: Usable + Buy: 300 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1023; + - Id: 636 + AegisName: No_Recipient + Name: No Recipient + Type: Usable + Buy: 100 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1026; + - Id: 637 + AegisName: Old_Broom + Name: Old Broom + Type: Usable + Buy: 350 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1110; + - Id: 638 + AegisName: Silver_Knife_Of_Chaste + Name: Silver Knife of Chastity + Type: Usable + Buy: 12000 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1170; + - Id: 639 + AegisName: Armlet_Of_Obedience + Name: Armlet of Obedience + Type: Usable + Buy: 18000 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1029; + - Id: 640 + AegisName: Shining_Stone + Name: Shining Stone + Type: Usable + Buy: 3000 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1155; + - Id: 641 + AegisName: Contracts_In_Shadow + Name: Contract in Shadow + Type: Usable + Buy: 100 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1109; + - Id: 642 + AegisName: Book_Of_Devil + Name: Book of the Devil + Type: Usable + Buy: 1800 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1101; + - Id: 643 + AegisName: Pet_Incubator + Name: Pet Incubator + Type: Usable + Buy: 10000 + Weight: 30 + Flags: + BuyingStore: true + Script: | + bpet; + - Id: 644 + AegisName: Gift_Box + Name: Gift Box + Type: Usable + Buy: 1000 + Weight: 200 + Flags: + BuyingStore: true + Container: true + Script: | + getrandgroupitem(IG_GiftBox,1); + - Id: 645 + AegisName: Center_Potion + Name: Concentration Potion + Type: Usable + Buy: 1200 + Weight: 100 + Flags: + BuyingStore: true + Script: | + sc_start SC_ASPDPOTION0,1800000,4; + - Id: 656 + AegisName: Awakening_Potion + Name: Awakening Potion + Type: Usable + Buy: 2200 + Weight: 150 + Jobs: + Alchemist: true + Archer: true + Assassin: true + Blacksmith: true + Crusader: true + Gunslinger: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Monk: true + Ninja: true + Novice: true + Rebellion: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Summoner: true + SuperNovice: true + Swordman: true + Taekwon: true + Thief: true + Wizard: true + EquipLevelMin: 40 + Flags: + BuyingStore: true + Script: | + sc_start SC_ASPDPOTION1,1800000,6; + - Id: 657 + AegisName: Berserk_Potion + Name: Berserk Potion + Type: Usable + Buy: 4500 + Weight: 200 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Gunslinger: true + Knight: true + Mage: true + Merchant: true + Rebellion: true + Rogue: true + SoulLinker: true + StarGladiator: true + Swordman: true + Taekwon: true + Wizard: true + EquipLevelMin: 85 + Flags: + BuyingStore: true + Script: | + sc_start SC_ASPDPOTION2,1800000,9; + - Id: 658 + AegisName: Union_Of_Tribe + Name: Union of Tribe + Type: Usable + Buy: 2 + Weight: 500 + Flags: + BuyingStore: true + Script: | + guildgetexp rand(600000,1200000); + - Id: 659 + AegisName: Heart_Of_Her + Name: Her Heart + Type: Usable + Buy: 500 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1188; + - Id: 660 + AegisName: Prohibition_Red_Candle + Name: Forbidden Red Candle + Type: Usable + Buy: 20000 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1200; + - Id: 661 + AegisName: Sway_Apron + Name: Soft Apron + Type: Usable + Buy: 20000 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1275; + - Id: 662 + AegisName: Inspector_Certificate + Name: Authoritative Badge + Type: Usable + Buy: 1450 + Weight: 30 + Flags: + BuyingStore: true + Script: | + sc_start SC_SPEEDUP0,180000,25; + - Id: 663 + AegisName: Korea_Rice_Cake + Name: Korean Rice Cake + Type: Healing + Buy: 1 + Weight: 10 + Flags: + BuyingStore: true + Script: | + percentheal 10,0; + - Id: 664 + AegisName: Gift_Box_1 + Name: Gift Box + Type: Usable + Buy: 1000 + Weight: 200 + Flags: + BuyingStore: true + Container: true + Script: | + getrandgroupitem(IG_GiftBox_1,1); + - Id: 665 + AegisName: Gift_Box_2 + Name: Gift Box + Type: Usable + Buy: 1000 + Weight: 200 + Flags: + BuyingStore: true + Container: true + Script: | + getrandgroupitem(IG_GiftBox_2,1); + - Id: 666 + AegisName: Gift_Box_3 + Name: Gift Box + Type: Usable + Buy: 1000 + Weight: 200 + Flags: + BuyingStore: true + Container: true + Script: | + getrandgroupitem(IG_GiftBox_3,1); + - Id: 667 + AegisName: Gift_Box_4 + Name: Gift Box + Type: Usable + Buy: 1000 + Weight: 200 + Flags: + BuyingStore: true + Container: true + Script: | + getrandgroupitem(IG_GiftBox_4,1); + - Id: 668 + AegisName: Handsei + Name: Red Envelope + Type: Usable + Weight: 20 + Flags: + BuyingStore: true + Script: | + Zeny += rand(1000,10000); + - Id: 669 + AegisName: Rice_Cake_Soup + Name: Tempting Rice-Cake Soup + Type: Healing + Buy: 500 + Weight: 100 + Flags: + BuyingStore: true + Script: | + percentheal 10,10; + - Id: 671 + AegisName: Gold_Coin + Name: Gold Coin + Type: Usable + Buy: 10000 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + RouletteGold++; + - Id: 673 + AegisName: Copper_Coin + Name: Bronze Coin + Type: Usable + Buy: 100 + Weight: 40 + Script: | + RouletteBronze++; + - Id: 675 + AegisName: Silver_Coin + Name: Silver Coin + Type: Usable + Buy: 5000 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + RouletteSilver++; + - Id: 678 + AegisName: Poison_Bottle + Name: Poison Bottle + Type: Usable + Buy: 5000 + Weight: 100 + Flags: + BuyingStore: true + Script: | + 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; + - Id: 679 + AegisName: Gold_Pill + Name: Pilule + Type: Usable + Buy: 5000 + Weight: 300 + Flags: + BuyingStore: true + Script: | + sc_start SC_DPOISON,10000,0,1000,0; sc_start SC_POISON,50000,0; + - Id: 680 + AegisName: Magical_Carnation + Name: Magic Carnation + Type: Healing + Weight: 1000 + Script: | + percentheal 0,20; + - Id: 681 + AegisName: Memory_Of_Wedding + Name: Sweet Memory of Marriage + Type: Usable + Buy: 50000 + Weight: 10 + Flags: + BuyingStore: true + Script: | + if (getpartnerid()) sc_start SC_WEDDING,600000,0; + - Id: 682 + AegisName: Realgar_Wine + Name: Distilled Fighting Spirit + Type: Usable + Weight: 100 + Flags: + BuyingStore: true + Script: | + sc_start SC_ATKPOTION,60000,30; + - Id: 683 + AegisName: Exorcize_Herb + Name: Herb of Incantation + Type: Usable + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_MATKPOTION,60000,30; + - Id: 684 + AegisName: Durian + Name: Durian + Type: Usable + Buy: 15000 + Weight: 300 + Flags: + BuyingStore: true + Script: | + sc_start SC_ATKPOTION,60000,10; sc_start SC_MATKPOTION,60000,10; + - Id: 685 + AegisName: RAMADAN + Name: Ramadan + Type: Healing + Buy: 5000 + Weight: 300 + Script: | + percentheal 100,50; + - Id: 686 + AegisName: Earth_Scroll_1_3 + Name: Level 3 Earth Spike + Type: Delayconsume + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "WZ_EARTHSPIKE",3; + - Id: 687 + AegisName: Earth_Scroll_1_5 + Name: Level 5 Earth Spike + Type: Delayconsume + Buy: 2000 + Weight: 10 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "WZ_EARTHSPIKE",5; + - Id: 688 + AegisName: Cold_Scroll_1_3 + Name: Level 3 Cold Bolt + Type: Delayconsume + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "MG_COLDBOLT",3; + - Id: 689 + AegisName: Cold_Scroll_1_5 + Name: Level 5 Cold Bolt + Type: Delayconsume + Buy: 2000 + Weight: 10 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "MG_COLDBOLT",5; + - Id: 690 + AegisName: Fire_Scroll_1_3 + Name: Level 3 Fire Bolt + Type: Delayconsume + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "MG_FIREBOLT",3; + - Id: 691 + AegisName: Fire_Scroll_1_5 + Name: Level 5 Fire Bolt + Type: Delayconsume + Buy: 2000 + Weight: 10 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "MG_FIREBOLT",5; + - Id: 692 + AegisName: Wind_Scroll_1_3 + Name: Level 3 Lightening Bolt + Type: Delayconsume + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "MG_LIGHTNINGBOLT",3; + - Id: 693 + AegisName: Wind_Scroll_1_5 + Name: Level 5 Lightening Bolt + Type: Delayconsume + Buy: 2000 + Weight: 10 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "MG_LIGHTNINGBOLT",5; + - Id: 694 + AegisName: Ghost_Scroll_1_3 + Name: Level 3 Soul Strike + Type: Delayconsume + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "MG_SOULSTRIKE",3; + - Id: 695 + AegisName: Ghost_Scroll_1_5 + Name: Level 5 Soul Strike + Type: Delayconsume + Buy: 2000 + Weight: 10 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "MG_SOULSTRIKE",5; + - Id: 696 + AegisName: Fire_Scroll_2_1 + Name: Level 1 Fire Ball + Type: Delayconsume + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "MG_FIREBALL",1; + - Id: 697 + AegisName: Fire_Scroll_2_5 + Name: Level 5 Fire Ball + Type: Delayconsume + Buy: 2000 + Weight: 10 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "MG_FIREBALL",5; + - Id: 698 + AegisName: Fire_Scroll_3_1 + Name: Level 1 Fire Wall + Type: Delayconsume + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "MG_FIREWALL",1; + - Id: 699 + AegisName: Fire_Scroll_3_5 + Name: Level 5 Fire Wall + Type: Delayconsume + Buy: 2000 + Weight: 10 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "MG_FIREWALL",5; + - Id: 700 + AegisName: Cold_Scroll_2_1 + Name: Level 1 Frost Diver + Type: Delayconsume + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "MG_FROSTDIVER",1; + - Id: 6046 + AegisName: Clothing_Dye_Coupon + Name: Clothing Dye Coupon + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6047 + AegisName: Clothing_Dye_Coupon_II + Name: Clothing Dye Coupon II + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 6720 + AegisName: Status_Reset_Coupon + Name: Status Reset Coupon + Type: Cash + Buy: 10 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + resetstatus; + - Id: 6721 + AegisName: Status_Reset_Coupon_ + Name: Status Reset Coupon + Type: Cash + Buy: 10 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + resetstatus; + - Id: 7037 + AegisName: Trade_Coupon + Name: Coupon + Type: Usable + Buy: 100 + Classes: + All: false + Gender: Female + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*set pcroom,(gettimetick(2)+7200);*/ + - Id: 11500 + AegisName: Light_Yellow_Pot + Name: Light Yellow Potion + Type: Healing + Buy: 550 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemheal rand(175,235),0; + - Id: 11501 + AegisName: Light_White_Pot + Name: Light White Potion + Type: Healing + Buy: 1200 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemheal rand(325,405),0; + - Id: 11502 + AegisName: Light_Blue_Pot + Name: Light Blue Potion + Type: Healing + Buy: 5000 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemheal 0,rand(40,60); + - Id: 11503 + AegisName: Siege_White_Potion + Name: WoE White Potion + Type: Healing + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemheal rand(400,500),0; + - Id: 11504 + AegisName: Siege_Blue_Potion + Name: WoE Blue Potion + Type: Healing + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemheal 0,rand(50,70); + - Id: 11505 + AegisName: Iris + Name: Iris + Type: Healing + Weight: 30 + Script: | + itemheal 0,150; + - Id: 11506 + AegisName: Fanta_Orange + Name: Fanta Orange + Type: Healing + Buy: 800 + Weight: 100 + Script: | + itemheal rand(50,70),rand(10,12); + - Id: 11507 + AegisName: Fanta_Grape + Name: Fanta Grape + Type: Healing + Buy: 800 + Weight: 100 + Script: | + itemheal rand(50,70),rand(10,12); + - Id: 11508 + AegisName: Karada_Meguri_Tea + Name: Karada Meguricha + Type: Healing + Buy: 800 + Weight: 100 + Script: | + itemheal rand(50,70),rand(10,12); + - Id: 11509 + AegisName: Royal_Milk_Tea + Name: Black Tea Kochakaden + Type: Healing + Buy: 800 + Weight: 100 + Script: | + itemheal rand(50,70),rand(10,12); + - Id: 11510 + AegisName: Coke_Zero + Name: Coca Cola Zero + Type: Healing + Buy: 800 + Weight: 100 + Script: | + itemheal rand(50,70),rand(10,12); + - Id: 11511 + AegisName: Coke_No_Cal + Name: Diet Coca Cola + Type: Healing + Buy: 800 + Weight: 100 + Script: | + itemheal rand(50,70),rand(10,12); + - Id: 11512 + AegisName: Coca_Cola + Name: Coca Cola + Type: Healing + Buy: 800 + Weight: 100 + Script: | + itemheal rand(50,70),rand(10,12); + - Id: 11513 + AegisName: Protect_Neck_Candy + Name: Protect Neck Candy + Type: Healing + Buy: 200 + Weight: 1 + Flags: + BuyingStore: true + Script: | + itemheal rand(5,25),0; + - Id: 11514 + AegisName: Enriched_Slim_Pot + Name: Enriched Slim Pot + Type: Healing + Weight: 50 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemheal rand(335,415),0; + - Id: 11515 + AegisName: Coconut + Name: Coconut + Type: Healing + Buy: 1500 + Weight: 120 + Flags: + BuyingStore: true + Script: | + itemheal rand(300,400),0; + - Id: 11516 + AegisName: Asai_Fruit + Name: Asai Fruit + Type: Healing + Buy: 15 + Weight: 20 + Flags: + BuyingStore: true + Script: | + itemheal rand(16,22),0; + - Id: 11517 + AegisName: Puri_Potion + Name: Puri Potion + Type: Healing + Buy: 20 + Weight: 100 + Flags: + BuyingStore: true + Script: | + itemheal rand(400,600),0; + - Id: 11518 + AegisName: N_Blue_Potion + Name: Blue Potion + Type: Healing + Weight: 50 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemheal 0,5; + - Id: 11519 + AegisName: Beef_Toast + Name: Beef Toast + Type: Healing + Buy: 1200 + Weight: 40 + Flags: + BuyingStore: true + Script: | + itemheal rand(170,250),0; + - Id: 11520 + AegisName: Mora_Mandarin + Name: Mora Mandar + Type: Healing + Buy: 500 + Weight: 20 + EquipLevelMin: 100 + Flags: + BuyingStore: true + Script: | + itemheal 0,rand(50,80); + - Id: 11521 + AegisName: Pingui_Berry_Juice + Name: Pingui Berry Juice + Type: Healing + Buy: 500 + Weight: 50 + EquipLevelMin: 100 + Flags: + BuyingStore: true + Script: | + itemheal rand(400,800),rand(50,80); + - Id: 11522 + AegisName: Red_Raffle_Sap + Name: Red Raffle Sap + Type: Healing + Buy: 2500 + Weight: 100 + EquipLevelMin: 100 + Flags: + BuyingStore: true + Delay: + Duration: 1000 + Status: Reuse_Limit_E + Script: | + itemheal rand(400,800),0; + - Id: 11523 + AegisName: Yellow_Raffle_Sap + Name: Yellow Raffle Sap + Type: Healing + Buy: 3000 + Weight: 120 + EquipLevelMin: 110 + Flags: + BuyingStore: true + Delay: + Duration: 2000 + Status: Reuse_Limit_E + Script: | + itemheal rand(600,1000),0; + - Id: 11524 + AegisName: White_Raffle_Sap + Name: White Raffle Sap + Type: Healing + Buy: 3500 + Weight: 140 + EquipLevelMin: 120 + Flags: + BuyingStore: true + Delay: + Duration: 3000 + Status: Reuse_Limit_E + Script: | + itemheal rand(800,1200),0; + - Id: 11525 + AegisName: Mora_Hip_Tea + Name: Mora Hip Tea + Type: Healing + Buy: 20 + Weight: 150 + EquipLevelMin: 120 + Flags: + BuyingStore: true + Delay: + Duration: 5000 + Status: Reuse_Limit_H + Script: | + itemheal rand(1500,2000),0; + - Id: 11526 + AegisName: Rafflecino + Name: Rafflecino + Type: Healing + Buy: 20 + Weight: 100 + EquipLevelMin: 120 + Flags: + BuyingStore: true + Script: | + itemheal 0,rand(120,160); + - Id: 11527 + AegisName: Baklava + Name: Baklava + Type: Healing + Buy: 3500 + Weight: 600 + Script: | + itemheal 1200,440; + - Id: 11528 + AegisName: Kanafeh + Name: Kanafeh + Type: Healing + Buy: 1500 + Weight: 200 + Script: | + itemheal 300,240; + - Id: 11529 + AegisName: MAAMOUL_ + Name: Maamoul + Type: Healing + Buy: 500 + Weight: 100 + Script: | + itemheal 120,60; + - Id: 11530 + AegisName: Jujube + Name: Jujube + Type: Healing + Buy: 10 + Weight: 100 + Script: | + itemheal 30,0; + - Id: 11531 + AegisName: Coffee + Name: Coffee + Type: Healing + Buy: 10 + Weight: 100 + Script: | + itemheal 0,10; + - Id: 11532 + AegisName: Nasi_Goreng + Name: Nasi Goreng + Type: Healing + Buy: 15 + Weight: 20 + Flags: + BuyingStore: true + Script: | + itemheal rand(17,23),0; + - Id: 11533 + AegisName: Satay + Name: Satay + Type: Healing + Buy: 15 + Weight: 20 + Flags: + BuyingStore: true + Script: | + itemheal rand(17,23),0; + - Id: 11534 + AegisName: Coco_Juice + Name: Coconut Juice + Type: Healing + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + Script: | + itemheal rand(17,23),0; + - Id: 11535 + AegisName: Almond_Chocolate + Name: Almond Chocolate + Type: Healing + Buy: 190 + Weight: 200 + Script: | + itemheal 0,rand(8,16); + - Id: 11536 + AegisName: Cat_Hard_Biscuit + Name: Cat Biscuit + Type: Healing + Weight: 10 + Flags: + BuyingStore: true + Script: | + itemheal rand(70,110),0; callfunc "F_Cat_Hard_Biscuit"; + - Id: 11537 + AegisName: Rice_weevil_Bug + Name: Rice Weevil Bug + Type: Healing + Weight: 10 + Flags: + BuyingStore: true + Script: | + itemheal rand(100,150),0; callfunc "F_Rice_Weevil_Bug"; + - Id: 11538 + AegisName: Octupus_Leg + Name: Fresh Octopus Legs + Type: Healing + Buy: 20 + Weight: 30 + Script: | + itemheal rand(35,60),rand(5,10); + - Id: 11539 + AegisName: Athale_Choco + Name: Athale Choco + Type: Healing + Buy: 1 + Weight: 80 + Script: | + itemheal 50,50; + - Id: 11540 + AegisName: Shyai_Choco + Name: Shyai Choco + Type: Healing + Buy: 1 + Weight: 80 + Script: | + itemheal 50,50; + - Id: 11541 + AegisName: Mid_Choco + Name: Mid Choco + Type: Healing + Buy: 1 + Weight: 80 + Script: | + itemheal 50,50; + - Id: 11542 + AegisName: Zonda_Choco + Name: Zonda Choco + Type: Healing + Buy: 1 + Weight: 80 + Script: | + itemheal 50,50; + - Id: 11543 + AegisName: Goedo_Choco + Name: Goedo Choco + Type: Healing + Buy: 1 + Weight: 80 + Script: | + itemheal 50,50; + - Id: 11544 + AegisName: Huike_Choco + Name: Huike Choco + Type: Healing + Buy: 1 + Weight: 80 + Script: | + itemheal 50,50; + - Id: 11545 + AegisName: Rune_Choco + Name: Rune Choco + Type: Healing + Buy: 1 + Weight: 80 + Script: | + itemheal 50,50; + - Id: 11546 + AegisName: Pope_Choco + Name: Pope Choco + Type: Healing + Buy: 1 + Weight: 80 + Script: | + itemheal 50,50; + - Id: 11547 + AegisName: Woe_Violet_Potion + Name: Siege Purple Potion + Type: Healing + Weight: 120 + Flags: + BuyingStore: true + Script: | + itemheal rand(500,700),rand(60,85); + - Id: 11548 + AegisName: Woe_White_Potion + Name: Siege White Potion + Type: Healing + Weight: 80 + Flags: + BuyingStore: true + Script: | + percentheal 10,0; + - Id: 11549 + AegisName: Woe_Blue_Potion + Name: Siege Blue Potion + Type: Healing + Weight: 80 + Flags: + BuyingStore: true + Script: | + percentheal 0,10; + - Id: 11550 + AegisName: Pumpkin_Cake + Name: Pumpkin Cake + Type: Healing + Buy: 10 + Weight: 80 + Script: | + percentheal 5,5; + - Id: 11551 + AegisName: Savory_Herb_Salad + Name: Savory Herb Salad + Type: Healing + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemheal rand(20,30),0; sc_start SC_STRFOOD,180000,1; + - Id: 11552 + AegisName: Apple_Carrot_Salad + Name: Apple Carrot Salad + Type: Healing + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemheal rand(20,30),0; sc_start SC_AGIFOOD,180000,1; + - Id: 11553 + AegisName: Casual_Stew + Name: Casual Stew + Type: Healing + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemheal rand(20,30),0; sc_start SC_VITFOOD,180000,1; + - Id: 11554 + AegisName: Golden_Roasted_Apple + Name: Golden Roasted Apple + Type: Healing + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemheal rand(20,30),0; sc_start SC_DEXFOOD,180000,1; + - Id: 11555 + AegisName: Red_Potion_RG + Name: Red Potion RG + Type: Healing + Weight: 40 + Script: | + itemheal 325,0; + - Id: 11557 + AegisName: TE_White_Potion + Name: TE White Potion + Type: Healing + Buy: 200 + Weight: 300 + Flags: + BuyingStore: true + Script: | + itemheal 325,0; + - Id: 11558 + AegisName: TE_White_Slim_Potion + Name: TE White Slim Potion + Type: Healing + Buy: 275 + Weight: 100 + Flags: + BuyingStore: true + Script: | + itemheal 325,0; + - Id: 11563 + AegisName: Hot_Tee + Name: Hot Tea + Type: Usable + Buy: 10 + Weight: 20 + Flags: + BuyingStore: true + Script: | + itemheal 0,100; + - Id: 11564 + AegisName: Sweet_Canape + Name: Sweet Canape + Type: Usable + Buy: 10 + Weight: 20 + Flags: + BuyingStore: true + Script: | + itemheal 1000,0; + - Id: 11565 + AegisName: White_Potion_B + Name: White Potion + Type: Healing + Buy: 10 + Weight: 150 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemheal rand(325,405),0; + - Id: 11566 + AegisName: Yellow_Potion_ + Name: Yellow Potion + Type: Healing + Buy: 10 + Weight: 130 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemheal rand(175,235),0; + - Id: 11567 + AegisName: Novice_Potion_B + Name: Novice Potion + Type: Healing + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemheal rand(44,66),0; + - Id: 11568 + AegisName: Red_Slim_Potion_B + Name: Red Slim Potion + Type: Healing + Buy: 10 + Weight: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemheal rand(45,65),0; + - Id: 11569 + AegisName: Orange_Potion_ + Name: Orange Potion + Type: Healing + Buy: 10 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemheal rand(105,145),0; + - Id: 11570 + AegisName: Red_Potion_ + Name: Red Potion + Type: Healing + Buy: 10 + Weight: 70 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemheal rand(45,65),0; + - Id: 11571 + AegisName: Green_Potion_ + Name: Green Potion + Type: Healing + Buy: 10 + Weight: 70 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; + - Id: 11572 + AegisName: Blue_Potion_B + Name: Blue Potion + Type: Healing + Buy: 10 + Weight: 150 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemheal 0,rand(40,60); + - Id: 11573 + AegisName: White_Slim_Potion_B + Name: White Slim Potion + Type: Healing + Buy: 10 + Weight: 50 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemheal rand(325,405),0; + - Id: 11574 + AegisName: Yellow_Slim_Potion_ + Name: Yellow Slim Potion + Type: Healing + Buy: 10 + Weight: 30 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemheal rand(175,235),0; + - Id: 11577 + AegisName: Rice_Ball_B + Name: Rice Ball + Type: Healing + Buy: 10 + Weight: 30 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemheal 200,0; + - Id: 11578 + AegisName: Candy_Striper_B + Name: Candy Bar + Type: Healing + Buy: 10 + Weight: 40 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemheal rand(105,145),0; + - Id: 11580 + AegisName: Candy_B + Name: Candy + Type: Healing + Buy: 10 + Weight: 30 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemheal rand(45,65),0; + - Id: 11581 + AegisName: Piece_Of_Cake_B + Name: Piece of Cake + Type: Healing + Buy: 10 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemheal rand(270,330),0; + - Id: 11582 + AegisName: Well_Baked_Cookie_B + Name: Well-baked Cookie + Type: Healing + Buy: 10 + Weight: 30 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemheal rand(160,200),0; + - Id: 11583 + AegisName: Chocolate_Drink_B + Name: Chocolate Drink + Type: Healing + Buy: 10 + Weight: 150 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemheal rand(330,410),rand(45,65); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination; + - Id: 11584 + AegisName: White_Chocolate_B + Name: White Chocolate + Type: Healing + Buy: 10 + Weight: 80 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemheal 50,50; + - Id: 11585 + AegisName: HandMade_Chocolate_B + Name: Hand-made Chocolate + Type: Healing + Buy: 10 + Weight: 80 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemheal 50,50; + - Id: 11586 + AegisName: HandMade_Chocolate_B_ + Name: Hand-made White Chocolate + Type: Healing + Buy: 10 + Weight: 80 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemheal 50,50; + - Id: 11587 + AegisName: Chocolate_B + Name: Chocolate + Type: Healing + Buy: 10 + Weight: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemheal 1,1; + - Id: 11588 + AegisName: Fresh_Strawberries + Name: Fresh Strawberries + Type: Healing + Buy: 10 + Weight: 10 + Script: | + itemheal rand(32,56),rand(16,28); + - Id: 11589 + AegisName: Iceflake + Name: Cold Snow Cone + Type: Healing + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + Script: | + percentheal 5,5; + - Id: 11590 + AegisName: Meat_Skewer5 + Name: Skewer No.5 + Type: Healing + Buy: 5000 + Weight: 300 + Flags: + BuyingStore: true + Script: | + itemheal rand(760,810),10; + - Id: 11592 + AegisName: Trance_Candy_R + Name: Trans Candy Red + Type: Healing + Buy: 20 + Weight: 30 + Script: | + itemheal 45,0; transform 1507,600000,SC_MTF_MHP,1000; + - Id: 11593 + AegisName: Trance_Candy_B + Name: Trans Candy Blue + Type: Healing + Buy: 20 + Weight: 30 + Script: | + itemheal 45,0; transform 1102,600000,SC_MTF_MSP,100; + - Id: 11594 + AegisName: Trance_Candy_Y + Name: Trans Candy Yellow + Type: Healing + Buy: 20 + Weight: 30 + Script: | + itemheal 45,0; transform 1130,600000,SC_MTF_PUMPKIN,2000; + - Id: 11595 + AegisName: Trance_Candy_G + Name: Trans Candy Green + Type: Healing + Buy: 20 + Weight: 30 + Script: | + itemheal 45,0; transform 1508,600000,SC_MTF_HITFLEE,10,20; + - Id: 11596 + AegisName: Blood_In_Skull + Name: Blood In Skull + Type: Healing + Buy: 20 + Weight: 50 + Script: | + itemheal rand(600,800),0; + - Id: 11597 + AegisName: Iron_Bug + Name: Iron Worm + Type: Healing + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + - Id: 11598 + AegisName: Bitter_Cacao_Bean + Name: Bitter Cacao Bean + Type: Healing + Buy: 10 + - Id: 11599 + AegisName: Superstar_Potion + Name: Superstar Potion + Type: Healing + Buy: 10 + Weight: 10 + - Id: 11600 + AegisName: Shining_Holy_Water + Name: Shining Holy Water + Type: Healing + Buy: 10 + Weight: 15 + Flags: + BuyingStore: true + Script: | + 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; } + - Id: 11602 + AegisName: Catnip_Fruit + Name: Catnip Fruit + Type: Healing + Buy: 15 + Weight: 1 + Script: | + itemheal rand(10,40),0; + - Id: 11601 + AegisName: Delicious_Anchovy + Name: Delicious Anchovy + Type: Healing + Buy: 20 + Weight: 30 + Script: | + itemheal rand(30,46),0; + - Id: 11605 + AegisName: Cookies_Bat + Name: Cookie Bat + Type: Healing + Weight: 50 + Script: | + itemheal rand(50,100),0; /*TODO*/ + - Id: 11616 + AegisName: Yummy_Meat + Name: Delicious Meat + Type: Healing + Buy: 1400 + Weight: 50 + Script: | + itemheal rand(100,150),0; + - Id: 11621 + AegisName: Red_Syrup + Name: Red Syrup + Type: Healing + Buy: 800 + Weight: 7 + EquipLevelMin: 60 + Delay: + Duration: 1000 + Script: | + itemheal 325,0; + - Id: 11622 + AegisName: Yellow_Syrup + Name: Yellow Syrup + Type: Healing + Buy: 1200 + Weight: 10 + EquipLevelMin: 60 + Delay: + Duration: 1000 + Script: | + itemheal 900,0; + - Id: 11623 + AegisName: White_Syrup + Name: White Syrup + Type: Healing + Buy: 1500 + Weight: 14 + EquipLevelMin: 60 + Delay: + Duration: 1000 + Script: | + itemheal 1800,0; + - Id: 11624 + AegisName: Blue_Syrup + Name: Blue Syrup + Type: Healing + Buy: 7000 + Weight: 10 + EquipLevelMin: 60 + Delay: + Duration: 10000 + Script: | + itemheal 0,180; + - Id: 11701 + AegisName: Girl_Bunch_Of_Flower + Name: Girl's Bouquet + Type: Healing + Buy: 20 + Weight: 50 + Script: | + itemheal rand(105,145),0; + - Id: 11702 + AegisName: Moon_Cookie + Name: Moon Cookie + Type: Healing + Weight: 300 + NoUse: + Override: 100 + Sitting: true + - Id: 11703 + AegisName: Mysterious_Blood + Name: Mystery Blood + Type: Healing + Weight: 30 + Script: | + itemheal 0,rand(25,35); + - Id: 11704 + AegisName: KETUPAT_F + Name: Ketupat + Type: Healing + Buy: 2 + Weight: 10 + Script: | + itemheal rand(70,90),0; + - Id: 11705 + AegisName: Special_White_Potion + Name: Children's Potion + Type: Healing + Buy: 1 + Weight: 10 + Script: | + itemheal rand(425,425),0; + - Id: 11706 + AegisName: Steak + Name: Steak + Type: Healing + Buy: 1 + Weight: 200 + Script: | + itemheal rand(700,1000),0; + - Id: 11707 + AegisName: Roasted_Beef + Name: Roast Beef + Type: Healing + Buy: 1 + Weight: 200 + Script: | + itemheal 0,rand(100,200); + - Id: 11708 + AegisName: Fore_Flank_Sirloin + Name: Fore Flank Sirloin + Type: Healing + Buy: 20 + Weight: 100 + Script: | + itemheal rand(30,50),rand(1,5); + - Id: 11709 + AegisName: Fanta_Zero_Lemon + Name: Fanta Zero Lemon + Type: Healing + Buy: 800 + Weight: 100 + Script: | + itemheal rand(50,70),rand(10,12); + - Id: 11710 + AegisName: Sakura_Mist + Name: Sakura Mist + Type: Healing + Buy: 800 + Weight: 100 + Script: | + itemheal rand(50,70),rand(10,12); + - Id: 11711 + AegisName: Sakura_Milk_Tea + Name: Sakura Milk Tea + Type: Healing + Buy: 800 + Weight: 100 + Script: | + itemheal rand(50,70),rand(10,12); + - Id: 11712 + AegisName: First_Leaf_Tea + Name: Flower + Type: Healing + Buy: 800 + Weight: 100 + Script: | + itemheal rand(50,70),rand(10,12); + - Id: 11713 + AegisName: Julia's_Candy + Name: Julia's Candy + Type: Healing + Weight: 30 + Script: | + itemheal rand(40,45),0; + - Id: 12000 + AegisName: Cold_Scroll_2_5 + Name: Level 5 Frost Diver + Type: Delayconsume + Buy: 2000 + Weight: 10 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "MG_FROSTDIVER",5; + - Id: 12001 + AegisName: Holy_Scroll_1_3 + Name: Level 3 Heal + Type: Delayconsume + Buy: 2000 + Weight: 10 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "AL_HEAL",3; + - Id: 12002 + AegisName: Holy_Scroll_1_5 + Name: Level 5 Heal + Type: Delayconsume + Buy: 2000 + Weight: 10 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "AL_HEAL",5; + - Id: 12003 + AegisName: Holy_Scroll_2_1 + Name: Level 1 Teleport + Type: Delayconsume + Buy: 1000 + Weight: 10 + Flags: + BuyingStore: true + Script: | + itemskill "AL_TELEPORT",1; + - Id: 12004 + AegisName: Arrow_Container + Name: Quiver + Type: Usable + Buy: 2 + Weight: 250 + Flags: + BuyingStore: true + Script: | + getitem 1750,500; + - Id: 12005 + AegisName: Iron_Arrow_Container + Name: Iron Arrow Quiver + Type: Usable + Buy: 2 + Weight: 250 + Flags: + BuyingStore: true + Script: | + getitem 1770,500; + - Id: 12006 + AegisName: Steel_Arrow_Container + Name: Steel Arrow Quiver + Type: Usable + Buy: 2 + Weight: 250 + Flags: + BuyingStore: true + Script: | + getitem 1753,500; + - Id: 12007 + AegisName: Ori_Arrow_Container + Name: Oridecon Arrow Quiver + Type: Usable + Buy: 2 + Weight: 250 + Flags: + BuyingStore: true + Script: | + getitem 1765,500; + - Id: 12008 + AegisName: Fire_Arrow_Container + Name: Fire Arrow Quiver + Type: Usable + Buy: 2 + Weight: 250 + Flags: + BuyingStore: true + Script: | + getitem 1752,500; + - Id: 12009 + AegisName: Silver_Arrow_Container + Name: Silver Arrow Quiver + Type: Usable + Buy: 2 + Weight: 250 + Flags: + BuyingStore: true + Script: | + getitem 1751,500; + - Id: 12010 + AegisName: Wind_Arrow_Container + Name: Wind Arrow Quiver + Type: Usable + Buy: 2 + Weight: 250 + Flags: + BuyingStore: true + Script: | + getitem 1755,500; + - Id: 12011 + AegisName: Stone_Arrow_Container + Name: Stone Arrow Quiver + Type: Usable + Buy: 2 + Weight: 250 + Flags: + BuyingStore: true + Script: | + getitem 1756,500; + - Id: 12012 + AegisName: Crystal_Arrow_Container + Name: Crystal Arrow Quiver + Type: Usable + Buy: 2 + Weight: 250 + Flags: + BuyingStore: true + Script: | + getitem 1754,500; + - Id: 12013 + AegisName: Shadow_Arrow_Container + Name: Shadow Arrow Quiver + Type: Usable + Buy: 2 + Weight: 250 + Flags: + BuyingStore: true + Script: | + getitem 1767,500; + - Id: 12014 + AegisName: Imma_Arrow_Container + Name: Immaterial Arrow Quiver + Type: Usable + Buy: 2 + Weight: 250 + Flags: + BuyingStore: true + Script: | + getitem 1757,500; + - Id: 12015 + AegisName: Rusty_Arrow_Container + Name: Rusty Arrow Quiver + Type: Usable + Buy: 2 + Weight: 250 + Flags: + BuyingStore: true + Script: | + getitem 1762,500; + - Id: 12016 + AegisName: Speed_Up_Potion + Name: Speed Potion + Type: Usable + Buy: 2 + Weight: 100 + Flags: + BuyingStore: true + Script: | + sc_start SC_SPEEDUP1,5000,50; + - Id: 12017 + AegisName: Slow_Down_Potion + Name: Slow Potion + Type: Usable + Buy: 2 + Weight: 100 + Flags: + BuyingStore: true + Script: | + sc_start SC_SLOWDOWN,5000,100; + - Id: 12018 + AegisName: Fire_Cracker + Name: Firecracker + Type: Usable + Buy: 2 + Weight: 20 + Flags: + BuyingStore: true + - Id: 12019 + AegisName: Holy_Egg + Name: Holy Egg + Type: Delayconsume + Buy: 2 + Weight: 150 + Script: | + itemskill "ALL_RESURRECTION",2; + - Id: 12020 + AegisName: Water_Of_Darkness + Name: Cursed Water + Type: Delayconsume + Buy: 2 + Weight: 30 + Flags: + BuyingStore: true + Script: | + itemskill "ITEM_ENCHANTARMS",8; + - Id: 12021 + AegisName: Pork_Belly + Name: Pork + Type: Healing + Weight: 10 + Script: | + itemheal rand(70,99),0; + - Id: 12022 + AegisName: Spareribs + Name: Galbi + Type: Healing + Weight: 10 + Script: | + itemheal rand(70,99),0; + - Id: 12023 + AegisName: Giftbox_China + Name: Wrapped Box + Type: Usable + Buy: 1000 + Weight: 200 + Flags: + Container: true + Script: | + getrandgroupitem(IG_GiftBoxChina,1); + - Id: 12024 + AegisName: Red_Pouch_Of_Surprise + Name: Red Pouch + Type: Usable + Buy: 50 + Weight: 50 + Flags: + DeadBranch: true + Script: | + monster "this",-1,-1,"--ja--",-1-MOBG_Red_Pouch_Of_Surprise,1,""; + - Id: 12025 + AegisName: Egg_Boy + Name: Dano Festival Egg + Type: Usable + Buy: 1000 + Weight: 200 + Flags: + Container: true + Script: | + getrandgroupitem(IG_EggBoy,1); + - Id: 12026 + AegisName: Egg_Girl + Name: Dano Festival Egg + Type: Usable + Buy: 1000 + Weight: 200 + Flags: + Container: true + Script: | + getrandgroupitem(IG_EggGirl,1); + - Id: 12027 + AegisName: Giggling_Box + Name: Giggling Box + Type: Usable + Buy: 1000 + Weight: 200 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + percentheal 9,0; sc_start SC_CURSE,30000,0,3000,0; + - Id: 12028 + AegisName: Box_Of_Thunder + Name: Box of Thunder + Type: Usable + Buy: 1000 + Weight: 200 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + sc_start SC_SPEEDUP0,20000,25; + - Id: 12029 + AegisName: Gloomy_Box + Name: Box of Gloom + Type: Delayconsume + Buy: 1000 + Weight: 200 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "AC_CONCENTRATION",1; + - Id: 12030 + AegisName: Box_Of_Grudge + Name: Box of Resentment + Type: Usable + Buy: 1000 + Weight: 200 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + sc_start SC_ATKPOTION,60000,20; + - Id: 12031 + AegisName: Sleepy_Box + Name: Box of Drowsiness + Type: Usable + Buy: 1000 + Weight: 200 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + sc_start SC_MATKPOTION,60000,20; + - Id: 12032 + AegisName: Box_Of_Storm + Name: Box of Storms + Type: Delayconsume + Buy: 1000 + Weight: 200 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "ITEM_ENCHANTARMS",2; + - Id: 12033 + AegisName: Box_Of_Sunlight + Name: Box of Sunlight + Type: Usable + Buy: 1000 + Weight: 200 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + sc_start SC_Intravision,30000,0; + - Id: 12034 + AegisName: Painting_Box + Name: Box of Panting + Type: Usable + Buy: 1000 + Weight: 200 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + percentheal 0,9; sc_start SC_SILENCE,30000,0,3000,0; + - Id: 12035 + AegisName: Lotto_Box01 + Name: Lotto Box 01 + Type: Usable + Weight: 20 + Script: | + getrandgroupitem(IG_LottoBox1,1); + - Id: 12036 + AegisName: Lotto_Box02 + Name: Lotto Box 02 + Type: Usable + Weight: 20 + Script: | + getrandgroupitem(IG_LottoBox2,1); + - Id: 12037 + AegisName: Lotto_Box03 + Name: Lotto Box 03 + Type: Usable + Weight: 20 + Script: | + getrandgroupitem(IG_LottoBox3,1); + - Id: 12038 + AegisName: Lotto_Box04 + Name: Lotto Box 04 + Type: Usable + Weight: 20 + Flags: + Container: true + Script: | + getrandgroupitem(IG_LottoBox4,1); + - Id: 12039 + AegisName: Lotto_Box05 + Name: Lotto Box 05 + Type: Usable + Weight: 20 + Script: | + getrandgroupitem(IG_LottoBox5,1); + - Id: 12040 + AegisName: Stone_Of_Intelligence_ + Name: Stone of Sage + Type: Usable + Buy: 100000 + Weight: 300 + Flags: + BuyingStore: true + Script: | + homevolution; + - Id: 12041 + AegisName: Str_Dish01 + Name: Fried Grasshopper Legs + Type: Healing + Buy: 2000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_STRFOOD,1200000,1; percentheal 5,0; + - Id: 12042 + AegisName: Str_Dish02 + Name: Seasoned Sticky Webfoot + Type: Healing + Buy: 4000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_STRFOOD,1200000,2; percentheal 5,0; + - Id: 12043 + AegisName: Str_Dish03 + Name: Bomber Steak + Type: Healing + Buy: 6000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_STRFOOD,1200000,3; percentheal 5,0; + - Id: 12044 + AegisName: Str_Dish04 + Name: Herb Marinade Beef + Type: Healing + Buy: 8000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_STRFOOD,1200000,4; percentheal 5,0; + - Id: 12045 + AegisName: Str_Dish05 + Name: Lutie Lady's Pancake + Type: Healing + Buy: 10000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_STRFOOD,1200000,5; percentheal 10,0; + - Id: 12046 + AegisName: Int_Dish01 + Name: Grape Juice Herbal Tea + Type: Healing + Buy: 2000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_INTFOOD,1200000,1; percentheal 0,5; + - Id: 12047 + AegisName: Int_Dish02 + Name: Autumn Red Tea + Type: Healing + Buy: 4000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_INTFOOD,1200000,2; percentheal 0,5; + - Id: 12048 + AegisName: Int_Dish03 + Name: Honey Herbal Tea + Type: Healing + Buy: 6000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_INTFOOD,1200000,3; percentheal 0,5; + - Id: 12049 + AegisName: Int_Dish04 + Name: Morocc Fruit Wine + Type: Healing + Buy: 8000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_INTFOOD,1200000,4; percentheal 0,5; + - Id: 12050 + AegisName: Int_Dish05 + Name: Mastela Fruit Wine + Type: Healing + Buy: 10000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_INTFOOD,1200000,5; percentheal 0,10; + - Id: 12051 + AegisName: Vit_Dish01 + Name: Steamed Crab Nippers + Type: Healing + Buy: 2000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_VITFOOD,1200000,1; percentheal 5,0; + - Id: 12052 + AegisName: Vit_Dish02 + Name: Assorted Seafood + Type: Healing + Buy: 4000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_VITFOOD,1200000,2; percentheal 5,0; + - Id: 12053 + AegisName: Vit_Dish03 + Name: Clam Soup + Type: Healing + Buy: 6000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_VITFOOD,1200000,3; percentheal 5,0; + - Id: 12054 + AegisName: Vit_Dish04 + Name: Seasoned Jellyfish + Type: Healing + Buy: 8000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_VITFOOD,1200000,4; percentheal 5,0; + - Id: 12055 + AegisName: Vit_Dish05 + Name: Spicy Fried Bao + Type: Healing + Buy: 10000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_VITFOOD,1200000,5; percentheal 10,0; + - Id: 12056 + AegisName: Agi_Dish01 + Name: Frog Egg Squid Ink Soup + Type: Healing + Buy: 2000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_AGIFOOD,1200000,1; percentheal 3,1; + - Id: 12057 + AegisName: Agi_Dish02 + Name: Smooth Noodle + Type: Healing + Buy: 4000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_AGIFOOD,1200000,2; percentheal 3,1; + - Id: 12058 + AegisName: Agi_Dish03 + Name: Tentacle Cheese Gratin + Type: Healing + Buy: 6000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_AGIFOOD,1200000,3; percentheal 3,1; + - Id: 12059 + AegisName: Agi_Dish04 + Name: Lutie Cold Noodle + Type: Healing + Buy: 8000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_AGIFOOD,1200000,4; percentheal 3,1; + - Id: 12060 + AegisName: Agi_Dish05 + Name: Steamed Bat Wing in Pumpkin + Type: Healing + Buy: 10000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_AGIFOOD,1200000,5; percentheal 6,2; + - Id: 12061 + AegisName: Dex_Dish01 + Name: Honey Grape Juice + Type: Healing + Buy: 2000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_DEXFOOD,1200000,1; percentheal 2,2; + - Id: 12062 + AegisName: Dex_Dish02 + Name: Chocolate Mousse Cake + Type: Healing + Buy: 4000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_DEXFOOD,1200000,2; percentheal 2,2; + - Id: 12063 + AegisName: Dex_Dish03 + Name: Fruit Mix + Type: Healing + Buy: 6000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_DEXFOOD,1200000,3; percentheal 2,2; + - Id: 12064 + AegisName: Dex_Dish04 + Name: Cream Sandwich + Type: Healing + Buy: 8000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_DEXFOOD,1200000,4; percentheal 2,2; + - Id: 12065 + AegisName: Dex_Dish05 + Name: Green Salad + Type: Healing + Buy: 10000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_DEXFOOD,1200000,5; percentheal 5,5; + - Id: 12066 + AegisName: Luk_Dish01 + Name: Fried Monkey Tails + Type: Healing + Buy: 2000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_LUKFOOD,1200000,1; percentheal 3,2; + - Id: 12067 + AegisName: Luk_Dish02 + Name: Mixed Juice + Type: Healing + Buy: 4000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_LUKFOOD,1200000,2; percentheal 3,2; + - Id: 12068 + AegisName: Luk_Dish03 + Name: Fried Sweet Potato + Type: Healing + Buy: 6000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_LUKFOOD,1200000,3; percentheal 4,2; + - Id: 12069 + AegisName: Luk_Dish04 + Name: Steamed Ancient Lips + Type: Healing + Buy: 8000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_LUKFOOD,1200000,4; percentheal 4,2; + - Id: 12070 + AegisName: Luk_Dish05 + Name: Fried Scorpion Tails + Type: Healing + Buy: 10000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_LUKFOOD,1200000,5; percentheal 5,2; + - Id: 12071 + AegisName: Str_Dish06 + Name: Shiny Marinade Beef + Type: Healing + Buy: 20000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_STRFOOD,1200000,6; percentheal 10,2; + - Id: 12072 + AegisName: Str_Dish07 + Name: Whole Roast + Type: Healing + Buy: 40000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_STRFOOD,1200000,7; percentheal 10,4; + - Id: 12073 + AegisName: Str_Dish08 + Name: Bearfoot Special + Type: Healing + Buy: 60000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_STRFOOD,1200000,8; percentheal 15,6; + - Id: 12074 + AegisName: Str_Dish09 + Name: Tendon Satay + Type: Healing + Buy: 80000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_STRFOOD,1200000,9; percentheal 15,8; + - Id: 12075 + AegisName: Str_Dish10 + Name: Steamed Tongue + Type: Healing + Buy: 100000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_STRFOOD,1200000,10; percentheal 20,20; + - Id: 12076 + AegisName: Int_Dish06 + Name: Red Mushroom Wine + Type: Healing + Buy: 20000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_INTFOOD,1200000,6; percentheal 2,10; + - Id: 12077 + AegisName: Int_Dish07 + Name: Special Royal Jelly Herbal Tea + Type: Healing + Buy: 40000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_INTFOOD,1200000,7; percentheal 4,10; + - Id: 12078 + AegisName: Int_Dish08 + Name: Royal Family Tea + Type: Healing + Buy: 60000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_INTFOOD,1200000,8; percentheal 6,10; + - Id: 12079 + AegisName: Int_Dish09 + Name: Tristan XII + Type: Healing + Buy: 80000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_INTFOOD,1200000,9; percentheal 8,15; + - Id: 12080 + AegisName: Int_Dish10 + Name: Dragon Breath Cocktail + Type: Healing + Buy: 100000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_INTFOOD,1200000,10; percentheal 10,20; + - Id: 12081 + AegisName: Vit_Dish06 + Name: Awfully Bitter Bracer + Type: Healing + Buy: 20000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_VITFOOD,1200000,6; percentheal 13,0; + - Id: 12082 + AegisName: Vit_Dish07 + Name: Sumptuous Feast + Type: Healing + Buy: 40000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_VITFOOD,1200000,7; percentheal 16,0; + - Id: 12083 + AegisName: Vit_Dish08 + Name: Giant Burito + Type: Healing + Buy: 60000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_VITFOOD,1200000,8; percentheal 19,0; + - Id: 12084 + AegisName: Vit_Dish09 + Name: Ascending Dragon Soup + Type: Healing + Buy: 80000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_VITFOOD,1200000,9; percentheal 22,0; + - Id: 12085 + AegisName: Vit_Dish10 + Name: Immortal Stew + Type: Healing + Buy: 100000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_VITFOOD,1200000,10; percentheal 25,0; + - Id: 12086 + AegisName: Agi_Dish06 + Name: Chile Shrimp Gratin + Type: Healing + Buy: 20000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_AGIFOOD,1200000,6; percentheal 7,2; + - Id: 12087 + AegisName: Agi_Dish07 + Name: Steamed Alligator with Vegetable + Type: Healing + Buy: 40000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_AGIFOOD,1200000,7; percentheal 8,2; + - Id: 12088 + AegisName: Agi_Dish08 + Name: Incredibly Spicy Curry + Type: Healing + Buy: 60000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_AGIFOOD,1200000,8; percentheal 9,2; + - Id: 12089 + AegisName: Agi_Dish09 + Name: Special Meat Stew + Type: Healing + Buy: 80000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_AGIFOOD,1200000,9; percentheal 10,2; + - Id: 12090 + AegisName: Agi_Dish10 + Name: Steamed Desert Scorpions + Type: Healing + Buy: 100000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_AGIFOOD,1200000,10; percentheal 15,5; + - Id: 12091 + AegisName: Dex_Dish06 + Name: Peach Cake + Type: Healing + Buy: 20000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_DEXFOOD,1200000,6; percentheal 5,6; + - Id: 12092 + AegisName: Dex_Dish07 + Name: Soul Haunted Bread + Type: Healing + Buy: 40000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_DEXFOOD,1200000,7; percentheal 5,7; + - Id: 12093 + AegisName: Dex_Dish08 + Name: Special Toast + Type: Healing + Buy: 60000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_DEXFOOD,1200000,8; percentheal 5,8; + - Id: 12094 + AegisName: Dex_Dish09 + Name: Heavenly Fruit Juice + Type: Healing + Buy: 80000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_DEXFOOD,1200000,9; percentheal 5,9; + - Id: 12095 + AegisName: Dex_Dish10 + Name: Hwergelmir's Tonic + Type: Healing + Buy: 100000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_DEXFOOD,1200000,10; percentheal 10,10; + - Id: 12096 + AegisName: Luk_Dish06 + Name: Lucky Soup + Type: Healing + Buy: 20000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_LUKFOOD,1200000,6; percentheal 6,3; + - Id: 12097 + AegisName: Luk_Dish07 + Name: Assorted Shish Kebob + Type: Healing + Buy: 40000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_LUKFOOD,1200000,7; percentheal 7,3; + - Id: 12098 + AegisName: Luk_Dish08 + Name: Strawberry Flavored Rice Ball + Type: Healing + Buy: 60000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_LUKFOOD,1200000,8; percentheal 9,3; + - Id: 12099 + AegisName: Luk_Dish09 + Name: Blood Flavored Soda + Type: Healing + Buy: 80000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_LUKFOOD,1200000,9; percentheal 10,4; + - Id: 12100 + AegisName: Luk_Dish10 + Name: Cooked Nine Tail's Tails + Type: Healing + Buy: 100000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_LUKFOOD,1200000,10; percentheal 14,8; + - Id: 12101 + AegisName: Citron + Name: Citron + Type: Healing + Buy: 20 + Weight: 300 + Flags: + BuyingStore: true + Script: | + sc_start SC_FLEEFOOD,180000,30; + - Id: 12102 + AegisName: Meat_Skewer + Name: Grilled Skewer + Type: Healing + Buy: 20 + Weight: 300 + Flags: + BuyingStore: true + Script: | + sc_start SC_HITFOOD,180000,30; + - Id: 12103 + AegisName: Bloody_Dead_Branch + Name: Bloody Branch + Type: Usable + Buy: 10000 + Weight: 200 + Flags: + BuyingStore: true + DeadBranch: true + Script: | + monster "this",-1,-1,"--ja--",-1-MOBG_Bloody_Dead_Branch,1,""; + - Id: 12104 + AegisName: Random_Quiver + Name: Random Quiver + Type: Usable + Buy: 10000 + Weight: 200 + Flags: + BuyingStore: true + Container: true + Script: | + getrandgroupitem(IG_Quiver,1); + - Id: 12105 + AegisName: Set_Of_Taiming_Item + Name: Taming Gift Set + Type: Usable + Buy: 10000 + Weight: 200 + Flags: + BuyingStore: true + Container: true + Script: | + getrandgroupitem(IG_Taming,1); getrandgroupitem(IG_Taming,1); getrandgroupitem(IG_Taming,1); + - Id: 12106 + AegisName: Accessory_Box + Name: Jewelry Box + Type: Usable + Buy: 10000 + Weight: 200 + Flags: + BuyingStore: true + Container: true + Script: | + getrandgroupitem(IG_Accesory,1); + - Id: 12107 + AegisName: Wrapped_Mask + Name: Wrapped Mask + Type: Usable + Buy: 10000 + Weight: 200 + Flags: + BuyingStore: true + Container: true + Script: | + getrandgroupitem(IG_Mask,1); + - Id: 12108 + AegisName: Bundle_Of_Magic_Scroll + Name: Scroll Package + Type: Usable + Buy: 10000 + Weight: 200 + Flags: + BuyingStore: true + Container: true + Script: | + getrandgroupitem(IG_Scroll,1); getrandgroupitem(IG_Scroll,1); getrandgroupitem(IG_Scroll,1); getrandgroupitem(IG_Scroll,1); getrandgroupitem(IG_Scroll,1); + - Id: 12109 + AegisName: Poring_Box + Name: Poring Box + Type: Usable + Buy: 10000 + Weight: 200 + Flags: + BuyingStore: true + DeadBranch: true + Script: | + monster "this",-1,-1,"--ja--",-1-MOBG_Poring_Box,1,""; + - Id: 12110 + AegisName: First_Aid_Kit + Name: First Aid Kit + Type: Usable + Buy: 10000 + Weight: 200 + Flags: + BuyingStore: true + Container: true + Script: | + getrandgroupitem(IG_FirstAid,1); getrandgroupitem(IG_FirstAid,1); getrandgroupitem(IG_FirstAid,1); getrandgroupitem(IG_FirstAid,1); getrandgroupitem(IG_FirstAid,1); + - Id: 12111 + AegisName: Food_Package + Name: Bundle of Food + Type: Usable + Buy: 10000 + Weight: 200 + Flags: + BuyingStore: true + Container: true + Script: | + getrandgroupitem(IG_FoodBag,1); getrandgroupitem(IG_FoodBag,1); getrandgroupitem(IG_FoodBag,1); + - Id: 12112 + AegisName: Tropical_Sograt + Name: Tropical Sograt + Type: Usable + Buy: 1000 + Weight: 100 + Flags: + BuyingStore: true + Script: | + sc_start SC_CURSE,10000,1; + - Id: 12113 + AegisName: Vermilion_The_Beach + Name: Vermilion on the Beach + Type: Usable + Buy: 1000 + Weight: 100 + Flags: + BuyingStore: true + Script: | + sc_start SC_STUN,10000,1; + - Id: 12114 + AegisName: Elemental_Fire + Name: Elemental Converter + Type: Delayconsume + Buy: 2 + Weight: 10 + Flags: + BuyingStore: true + Script: | + itemskill "ITEM_ENCHANTARMS",4; + - Id: 12115 + AegisName: Elemental_Water + Name: Elemental Converter + Type: Delayconsume + Buy: 2 + Weight: 10 + Flags: + BuyingStore: true + Script: | + itemskill "ITEM_ENCHANTARMS",2; + - Id: 12116 + AegisName: Elemental_Earth + Name: Elemental Converter + Type: Delayconsume + Buy: 2 + Weight: 10 + Flags: + BuyingStore: true + Script: | + itemskill "ITEM_ENCHANTARMS",3; + - Id: 12117 + AegisName: Elemental_Wind + Name: Elemental Converter + Type: Delayconsume + Buy: 2 + Weight: 10 + Flags: + BuyingStore: true + Script: | + itemskill "ITEM_ENCHANTARMS",5; + - Id: 12118 + AegisName: Resist_Fire + Name: Fireproof Potion + Type: Usable + Buy: 2 + Weight: 10 + Flags: + BuyingStore: true + Script: | + sc_start4 SC_ARMOR_ELEMENT_FIRE,1200000,-15,0,20,0; + - Id: 12119 + AegisName: Resist_Water + Name: Coldproof Potion + Type: Usable + Buy: 2 + Weight: 10 + Flags: + BuyingStore: true + Script: | + sc_start4 SC_ARMOR_ELEMENT_WATER,1200000,20,0,0,-15; + - Id: 12120 + AegisName: Resist_Earth + Name: Earthproof Potion + Type: Usable + Buy: 2 + Weight: 10 + Flags: + BuyingStore: true + Script: | + sc_start4 SC_ARMOR_ELEMENT_EARTH,1200000,0,20,-15,0; + - Id: 12121 + AegisName: Resist_Wind + Name: Thunderproof Potion + Type: Usable + Buy: 2 + Weight: 10 + Flags: + BuyingStore: true + Script: | + sc_start4 SC_ARMOR_ELEMENT_WIND,1200000,0,-15,0,20; + - Id: 12122 + AegisName: Sesame_Pastry + Name: Sesame Pastry + Type: Usable + Buy: 2 + Weight: 70 + Flags: + BuyingStore: true + Script: | + sc_start SC_HITFOOD,180000,30; + - Id: 12123 + AegisName: Honey_Pastry + Name: Honey Pastry + Type: Usable + Buy: 2 + Weight: 70 + Flags: + BuyingStore: true + Script: | + sc_start SC_FLEEFOOD,180000,30; + - Id: 12124 + AegisName: Rainbow_Cake + Name: Rainbow Cake + Type: Usable + Buy: 2 + Weight: 70 + Flags: + BuyingStore: true + Script: | + sc_start SC_BATKFOOD,60000,10; sc_start SC_MATKFOOD,60000,10; + - Id: 12125 + AegisName: Outdoor_Cooking_Kits + Name: Outdoor Cooking Kit + Type: Usable + Buy: 500 + Weight: 20 + Flags: + BuyingStore: true + Script: | + cooking 11; + - Id: 12126 + AegisName: Indoor_Cooking_Kits + Name: Home Cooking Kit + Type: Usable + Buy: 1000 + Weight: 30 + Flags: + BuyingStore: true + Script: | + cooking 12; + - Id: 12127 + AegisName: High_end_Cooking_Kits + Name: Professional Cooking Kit + Type: Usable + Buy: 2000 + Weight: 50 + Flags: + BuyingStore: true + Script: | + cooking 13; + - Id: 12128 + AegisName: Imperial_Cooking_Kits + Name: Royal Cooking Kit + Type: Usable + Buy: 5000 + Weight: 70 + Flags: + BuyingStore: true + Script: | + cooking 14; + - Id: 12129 + AegisName: Fantastic_Cooking_Kits + Name: Fantastic Cooking Kit + Type: Usable + Buy: 10000 + Weight: 70 + Flags: + BuyingStore: true + Script: | + cooking 15; + - Id: 12130 + AegisName: Cookie_Bag + Name: Cookie Bag + Type: Usable + Buy: 2 + Weight: 70 + Flags: + BuyingStore: true + Container: true + Script: | + getrandgroupitem(IG_CookieBag,1); getrandgroupitem(IG_CookieBag,1); getrandgroupitem(IG_CookieBag,1); + - Id: 12131 + AegisName: Lucky_Potion + Name: Lucky Potion + Type: Healing + Buy: 2 + Weight: 100 + Script: | + /* sc_start SC_LUKFOOD,180000,15; */ + - Id: 12132 + AegisName: Red_Bag + Name: Santa's Bag + Type: Usable + Weight: 200 + Flags: + BuyingStore: true + Script: | + sc_start SC_XMAS,600000,0; sc_start SC_SPEEDUP0,600000,25; + - Id: 12133 + AegisName: Ice_Cream_ + Name: McDonald's Ice Cone + Type: Healing + Weight: 80 + Script: | + if(gettime(DT_DAYOFMONTH)!=MDiceCone) { MDiceCone = gettime(DT_DAYOFMONTH); percentheal 50,50; } + - Id: 12134 + AegisName: Red_Envelope + Name: Red Envelope + Type: Usable + Buy: 1 + Weight: 10 + Script: | + Zeny += rand(1000,10000); + - Id: 12135 + AegisName: Green_Ale + Name: Green Ale + Type: Usable + Buy: 20 + Weight: 30 + Delay: + Duration: 3000 + Script: | + percentheal 50,50; sc_start SC_CONFUSION,10000,0,1000,0; + - Id: 12136 + AegisName: Women's_Bundle + Name: Women's Bundle + Type: Usable + Weight: 100 + Script: | + getitem callfunc("F_Rand",558,529,2668,7518),1; + - Id: 12137 + AegisName: 1st_Stage_Prize + Name: First Stage Prize + Type: Usable + - Id: 12138 + AegisName: 2nd_Stage_Prize + Name: Second Stage Prize + Type: Usable + - Id: 12139 + AegisName: 3rd_Stage_Prize + Name: Third Stage Prize + Type: Usable + - Id: 12140 + AegisName: 4th_Stage_Prize + Name: Fourth Stage Prize + Type: Usable + - Id: 12141 + AegisName: 5th_Stage_Prize + Name: Fifth Stage Prize + Type: Usable + - Id: 12142 + AegisName: Magic_Book + Name: Book of Magic + Type: Usable + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_AGIFOOD,1800000,10; + - Id: 12143 + AegisName: Red_Can + Name: Red Can + Type: Usable + Buy: 50000 + Weight: 300 + Script: | + percentheal 25,25; + - Id: 12144 + AegisName: Sphere_Case_Wind + Name: Lightning Sphere Pack + Type: Usable + Buy: 2 + Weight: 350 + Flags: + BuyingStore: true + Script: | + getitem 13204,500; + - Id: 12145 + AegisName: Sphere_Case_Darkness + Name: Blind Sphere Pack + Type: Usable + Buy: 2 + Weight: 350 + Flags: + BuyingStore: true + Script: | + getitem 13206,500; + - Id: 12146 + AegisName: Sphere_Case_Poison + Name: Poison Sphere Pack + Type: Usable + Buy: 2 + Weight: 350 + Flags: + BuyingStore: true + Script: | + getitem 13205,500; + - Id: 12147 + AegisName: Sphere_Case_Water + Name: Freezing Sphere Pack + Type: Usable + Buy: 2 + Weight: 350 + Flags: + BuyingStore: true + Script: | + getitem 13207,500; + - Id: 12148 + AegisName: Sphere_Case_Fire + Name: Flare Sphere Pack + Type: Usable + Buy: 2 + Weight: 350 + Flags: + BuyingStore: true + Script: | + getitem 13203,500; + - Id: 12149 + AegisName: Bullet_Case + Name: Cartridge + Type: Usable + Buy: 2 + Weight: 250 + Flags: + BuyingStore: true + Script: | + getitem 13200,500; + - Id: 12150 + AegisName: Bullet_Case_Blood + Name: Blood Cartridge + Type: Usable + Buy: 2 + Weight: 250 + Flags: + BuyingStore: true + Script: | + getitem 13202,500; + - Id: 12151 + AegisName: Bullet_Case_Silver + Name: Silver Cartridge + Type: Usable + Buy: 2 + Weight: 250 + Flags: + BuyingStore: true + Script: | + getitem 13201,500; + - Id: 12152 + AegisName: Special_Box + Name: Special Present + Type: Usable + Weight: 100 + Flags: + Container: true + Script: | + getgroupitem(IG_Special_Box); + - Id: 12153 + AegisName: Bow_Mercenary_Scroll1 + Name: Bowman Scroll 1 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6017,1800000; + - Id: 12154 + AegisName: Bow_Mercenary_Scroll2 + Name: Bowman Scroll 2 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6018,1800000; + - Id: 12155 + AegisName: Bow_Mercenary_Scroll3 + Name: Bowman Scroll 3 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6019,1800000; + - Id: 12156 + AegisName: Bow_Mercenary_Scroll4 + Name: Bowman Scroll 4 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6020,1800000; + - Id: 12157 + AegisName: Bow_Mercenary_Scroll5 + Name: Bowman Scroll 5 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6021,1800000; + - Id: 12158 + AegisName: Bow_Mercenary_Scroll6 + Name: Bowman Scroll 6 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6022,1800000; + - Id: 12159 + AegisName: Bow_Mercenary_Scroll7 + Name: Bowman Scroll 7 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6023,1800000; + - Id: 12160 + AegisName: Bow_Mercenary_Scroll8 + Name: Bowman Scroll 8 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6024,1800000; + - Id: 12161 + AegisName: Bow_Mercenary_Scroll9 + Name: Bowman Scroll 9 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6025,1800000; + - Id: 12162 + AegisName: Bow_Mercenary_Scroll10 + Name: Bowman Scroll 10 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6026,1800000; + - Id: 12163 + AegisName: SwordMercenary_Scroll1 + Name: Fencer Scroll 1 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6037,1800000; + - Id: 12164 + AegisName: SwordMercenary_Scroll2 + Name: Fencer Scroll 2 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6038,1800000; + - Id: 12165 + AegisName: SwordMercenary_Scroll3 + Name: Fencer Scroll 3 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6039,1800000; + - Id: 12166 + AegisName: SwordMercenary_Scroll4 + Name: Fencer Scroll 4 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6040,1800000; + - Id: 12167 + AegisName: SwordMercenary_Scroll5 + Name: Fencer Scroll 5 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6041,1800000; + - Id: 12168 + AegisName: SwordMercenary_Scroll6 + Name: Fencer Scroll 6 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6042,1800000; + - Id: 12169 + AegisName: SwordMercenary_Scroll7 + Name: Fencer Scroll 7 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6043,1800000; + - Id: 12170 + AegisName: SwordMercenary_Scroll8 + Name: Fencer Scroll 8 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6044,1800000; + - Id: 12171 + AegisName: SwordMercenary_Scroll9 + Name: Fencer Scroll 9 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6045,1800000; + - Id: 12172 + AegisName: SwordMercenary_Scroll10 + Name: Fencer Scroll 10 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6046,1800000; + - Id: 12173 + AegisName: SpearMercenary_Scroll1 + Name: Spearman Scroll 1 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6027,1800000; + - Id: 12174 + AegisName: SpearMercenary_Scroll2 + Name: Spearman Scroll 2 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6028,1800000; + - Id: 12175 + AegisName: SpearMercenary_Scroll3 + Name: Spearman Scroll 3 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6029,1800000; + - Id: 12176 + AegisName: SpearMercenary_Scroll4 + Name: Spearman Scroll 4 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6030,1800000; + - Id: 12177 + AegisName: SpearMercenary_Scroll5 + Name: Spearman Scroll 5 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6031,1800000; + - Id: 12178 + AegisName: SpearMercenary_Scroll6 + Name: Spearman Scroll 6 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6032,1800000; + - Id: 12179 + AegisName: SpearMercenary_Scroll7 + Name: Spearman Scroll 7 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6033,1800000; + - Id: 12180 + AegisName: SpearMercenary_Scroll8 + Name: Spearman Scroll 8 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6034,1800000; + - Id: 12181 + AegisName: SpearMercenary_Scroll9 + Name: Spearman Scroll 9 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6035,1800000; + - Id: 12182 + AegisName: SpearMercenary_Scroll10 + Name: Spearman Scroll 10 + Type: Usable + Buy: 2 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 6036,1800000; + - Id: 12183 + AegisName: Holy_Arrow_Quiver + Name: Holy Arrow Quiver + Type: Usable + Buy: 2 + Weight: 250 + Flags: + BuyingStore: true + Script: | + getitem 1772,500; + - Id: 12184 + AegisName: Mercenary_Red_Potion + Name: Mercenary Red Potion + Type: Usable + Buy: 500 + Weight: 100 + Flags: + BuyingStore: true + Script: | + mercenary_heal 1000,0; + - Id: 12185 + AegisName: Mercenary_Blue_Potion + Name: Mercenary Blue Potion + Type: Usable + Buy: 1000 + Weight: 100 + Flags: + BuyingStore: true + Script: | + mercenary_heal 0,100; + - Id: 12186 + AegisName: Red_Box + Name: Old Red Box + Type: Usable + Buy: 50000 + Weight: 200 + Flags: + Container: true + Script: | + getrandgroupitem(IG_RedBox,1); + - Id: 12187 + AegisName: Green_Box + Name: Old Green Box + Type: Usable + Buy: 50000 + Weight: 200 + Flags: + Container: true + Script: | + getrandgroupitem(IG_GreenBox,1); + - Id: 12188 + AegisName: Magical_Moon_Cake + Name: Grace Moon Cake + Type: Healing + Buy: 20 + Weight: 300 + Script: | + percentheal 50,50; + - Id: 12189 + AegisName: Red_Box_ + Name: Old Red Box + Type: Usable + Buy: 50000 + Weight: 200 + Flags: + Container: true + Script: | + getrandgroupitem(IG_RedBox_2,1); + - Id: 12190 + AegisName: Moon_Cake + Name: Moon Cake + Type: Usable + Buy: 2 + Weight: 300 + Script: | + sc_start SC_SPEEDUP0,180000,25; + - Id: 12191 + AegisName: Special_Moon_Cake + Name: Special Moon Cake + Type: Usable + Buy: 2 + Weight: 500 + Script: | + sc_start SC_ASPDPOTION0,600000,4; sc_start SC_SPEEDUP0,600000,25; + - Id: 12192 + AegisName: Pumpkin_Pie + Name: Pumpkin Pie + Type: Healing + Buy: 20 + Weight: 10 + Script: | + percentheal 5,5; + - Id: 12193 + AegisName: Brezel + Name: Pretzel + Type: Usable + Buy: 20 + Weight: 20 + Script: | + percentheal 5,5; + - Id: 12194 + AegisName: Hometown_Gift + Name: Hometown Gift + Type: Usable + Buy: 20 + Weight: 200 + Flags: + BuyingStore: true + Container: true + Script: | + getrandgroupitem(IG_HometownGift,1); getrandgroupitem(IG_HometownGift,1); getrandgroupitem(IG_HometownGift,1); + - Id: 12195 + AegisName: Plain_Rice_Cake + Name: Plain Rice Cake + Type: Healing + Buy: 20 + Weight: 100 + Flags: + BuyingStore: true + Script: | + percentheal 0,20; + - Id: 12196 + AegisName: Hearty_Rice_Cake + Name: Hearty Rice Cake + Type: Healing + Buy: 20 + Weight: 100 + Flags: + BuyingStore: true + Script: | + percentheal 50,0; + - Id: 12197 + AegisName: Salty_Rice_Cake + Name: Salty Rice Cake + Type: Healing + Buy: 20 + Weight: 100 + Flags: + BuyingStore: true + Script: | + percentheal 10,10; + - Id: 12198 + AegisName: Lucky_Rice_Cake + Name: Lucky Rice Cake + Type: Usable + Buy: 20 + Weight: 100 + Flags: + BuyingStore: true + Script: | + sc_start SC_INCLUK,1200000,21; + - Id: 12199 + AegisName: Rice_Scroll + Name: Scroll of Magic + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12200 + AegisName: Event_Cake + Name: X-mas Cake + Type: Delayconsume + Buy: 20 + Weight: 50 + Script: | + percentheal 5,0; itemskill "PR_MAGNIFICAT",3; + - Id: 12201 + AegisName: Red_Box_C + Name: Commonplace Red Box + Type: Usable + Buy: 20 + Weight: 200 + - Id: 12202 + AegisName: Str_Dish10_ + Name: Steamed Tongue + Type: Healing + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_FOOD_STR_CASH,1800000,10; percentheal 15,5; + - Id: 12203 + AegisName: Agi_Dish10_ + Name: Steamed Scorpion + Type: Healing + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_FOOD_AGI_CASH,1800000,10; percentheal 15,5; + - Id: 12204 + AegisName: Int_Dish10_ + Name: Dragon Breath Cocktail + Type: Healing + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_FOOD_INT_CASH,1800000,10; percentheal 15,5; + - Id: 12205 + AegisName: Dex_Dish10_ + Name: Hwergelmir's Tonic + Type: Healing + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_FOOD_DEX_CASH,1800000,10; percentheal 15,5; + - Id: 12206 + AegisName: Luk_Dish10_ + Name: Cooked Nine Tail's Tails + Type: Healing + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_FOOD_LUK_CASH,1800000,10; percentheal 15,5; + - Id: 12207 + AegisName: Vit_Dish10_ + Name: Stew Of Immortality + Type: Healing + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_FOOD_VIT_CASH,1800000,10; percentheal 15,5; + - Id: 12208 + AegisName: Battle_Manual + Name: Battle Manual + Type: Usable + Buy: 2 + Weight: 10 + Delay: + Duration: 60000 + Status: Reuse_Limit_C + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_EXPBOOST,1800000,50; + - Id: 12209 + AegisName: Insurance + Name: Life Insurance + Type: Usable + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_LIFEINSURANCE,1800000,0; + - Id: 12210 + AegisName: Bubble_Gum + Name: Bubble Gum + Type: Usable + Buy: 2 + Weight: 10 + Delay: + Duration: 60000 + Status: Reuse_Limit_D + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_ITEMBOOST,1800000,200; + - Id: 12211 + AegisName: Kafra_Card + Name: Kafra Card + Type: Usable + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + callfunc "F_CashStore"; + - Id: 12212 + AegisName: Giant_Fly_Wing + Name: Giant Fly Wing + Type: Usable + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + callfunc "F_CashPartyCall"; + - Id: 12213 + AegisName: Neuralizer + Name: Neuralizer + Type: Delayconsume + Buy: 2 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + callfunc "F_CashReset"; + - Id: 12214 + AegisName: Convex_Mirror + Name: Convex Mirror + Type: Usable + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_BOSSMAPINFO,600000,0; + - Id: 12215 + AegisName: Blessing_10_Scroll + Name: LV10 Blessing Scroll + Type: Usable + Buy: 2 + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,240000,10; + - Id: 12216 + AegisName: Inc_Agi_10_Scroll + Name: LV10 Agil Scroll + Type: Usable + Buy: 2 + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + if(Hp>15) { skilleffect "AL_INCAGI",0; sc_start SC_INCREASEAGI,240000,10; heal -15,0; } + - Id: 12217 + AegisName: Aspersio_5_Scroll + Name: LV5 Aspersio Scroll + Type: Usable + Buy: 2 + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + if(countitem(523)>0) { skilleffect "PR_ASPERSIO",0; sc_start SC_ASPERSIO,180000,5; delitem 523,1; } + - Id: 12218 + AegisName: Assumptio_5_Scroll + Name: LV5 Assumptio Scroll + Type: Usable + Buy: 2 + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_ASSUMPTIO,100000,5; skilleffect "HP_ASSUMPTIO",0; + - Id: 12219 + AegisName: Wind_Walk_10_Scroll + Name: LV10 Wind Walker Scroll + Type: Usable + Buy: 2 + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + skilleffect "SN_WINDWALK",0; sc_start SC_WINDWALK,250000,5; + - Id: 12220 + AegisName: Adrenaline_Scroll + Name: LV5 Adrenaline Scroll + Type: Usable + Buy: 2 + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@type = getiteminfo(getequipid(EQI_HAND_R),11); if (.@type==W_1HAXE||.@type==W_2HAXE||.@type==W_MACE) { skilleffect "BS_ADRENALINE",0; sc_start SC_ADRENALINE,150000,5; } + - Id: 12221 + AegisName: Megaphone_ + Name: Megaphone + Type: Usable + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + input .@megaphone$; announce strcharinfo(0) + ": " + .@megaphone$,bc_all,0xFF0000; + - Id: 12225 + AegisName: Sweet_Candy_Striper + Name: Sweet Candy Cane + Type: Usable + Buy: 20 + Weight: 50 + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1245; + - Id: 12226 + AegisName: Examination1 + Name: Examination 1 + Type: Healing + Buy: 20 + Weight: 50 + Script: | + 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; + - Id: 12227 + AegisName: Examination2 + Name: Examination 2 + Type: Healing + Buy: 20 + Weight: 50 + Script: | + 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; + - Id: 12228 + AegisName: Examination3 + Name: Examination 3 + Type: Healing + Buy: 20 + Weight: 50 + Script: | + 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; + - Id: 12229 + AegisName: Examination4 + Name: Examination 4 + Type: Healing + Buy: 20 + Weight: 50 + Script: | + 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; + - Id: 12230 + AegisName: Examination5 + Name: Examination 5 + Type: Healing + Buy: 20 + Weight: 50 + Script: | + 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; + - Id: 12231 + AegisName: Examination6 + Name: Examination 6 + Type: Healing + Buy: 20 + Weight: 50 + Script: | + 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; + - Id: 12232 + AegisName: Gingerbread + Name: Ginger Bread + Type: Usable + Buy: 20 + Weight: 150 + Script: | + sc_start SC_ASPDPOTION1,900000,0; sc_start SC_SPEEDUP0,900000,25; + - Id: 12233 + AegisName: Kvass + Name: Kvass + Type: Healing + Buy: 20 + Weight: 200 + Script: | + percentheal 100,100; + - Id: 12234 + AegisName: Cacao99 + Name: Fierce Cacao 99% + Type: Healing + Buy: 20 + Weight: 100 + Script: | + percentheal 25,0; + - Id: 12235 + AegisName: Strawberry_Choco + Name: Chocolate Strawberry + Type: Usable + Buy: 20 + Weight: 100 + NoUse: + Override: 100 + Sitting: true + Script: | + percentheal 0,5; skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,240000,10; + - Id: 12236 + AegisName: Choco_Tart + Name: Chocolate Tart + Type: Delayconsume + Buy: 20 + Weight: 100 + NoUse: + Override: 100 + Sitting: true + Script: | + percentheal 5,0; itemskill "AL_ANGELUS",5; + - Id: 12237 + AegisName: Choco_Lump + Name: Junky Chocolate + Type: Usable + Weight: 100 + NoUse: + Override: 100 + Sitting: true + Script: | + percentheal 0,5; sc_start SC_POISON,18000,0; sc_start SC_BLEEDING,18000,0; + - Id: 12238 + AegisName: New_Year_Rice_Cake_1 + Name: New Year Rice Cake + Type: Usable + Buy: 20 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_DPOISON,10000,0,1000,0; sc_start SC_POISON,50000,0; + - Id: 12239 + AegisName: New_Year_Rice_Cake_2 + Name: New Year Rice Cake + Type: Usable + Buy: 20 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_DPOISON,10000,0,1000,0; sc_start SC_POISON,50000,0; + - Id: 12240 + AegisName: Old_Yellow_Box + Name: Old Yellow Box + Type: Usable + Buy: 20 + Weight: 200 + Flags: + Container: true + Script: | + getrandgroupitem(IG_YellowBox,1); + - Id: 12241 + AegisName: M_Center_Potion + Name: Mercenary Concentration Potion + Type: Usable + Buy: 800 + Weight: 100 + Flags: + BuyingStore: true + Script: | + mercenary_sc_start SC_ASPDPOTION0,1800000,0; + - Id: 12242 + AegisName: M_Awakening_Potion + Name: Mercenary Awakening Potion + Type: Usable + Buy: 1500 + Weight: 150 + Flags: + BuyingStore: true + Script: | + mercenary_sc_start SC_ASPDPOTION1,1800000,0; + - Id: 12243 + AegisName: M_Berserk_Potion + Name: Mercenary Berserk Potion + Type: Usable + Buy: 3000 + Weight: 200 + Flags: + BuyingStore: true + Script: | + mercenary_sc_start SC_ASPDPOTION2,1800000,0; + - Id: 12244 + AegisName: Old_Gift_Box + Name: Old Gift Box + Type: Usable + Buy: 20 + Weight: 200 + Flags: + Container: true + Script: | + getrandgroupitem(IG_OldGiftBox,1); + - Id: 12245 + AegisName: Green_Ale_US + Name: Green Ale + Type: Healing + Buy: 5000 + Weight: 500 + Script: | + percentheal 100,0; + - Id: 12246 + AegisName: Magic_Card_Album + Name: Mystical Card Album + Type: Usable + Buy: 10000 + Weight: 50 + Flags: + BuyingStore: true + Container: true + Script: | + getrandgroupitem(IG_MagicCardAlbum,1); + - Id: 12247 + AegisName: Halohalo + Name: Halo-Halo + Type: Usable + Buy: 2 + Weight: 100 + EquipLevelMin: 20 + Script: | + sc_start SC_INCALLSTATUS,600000,3; + - Id: 12248 + AegisName: Masquerade_Ball_Box + Name: Fancy Ball Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getrandgroupitem(IG_Masquerade,1); + - Id: 12249 + AegisName: Payroll_Of_Kafra_ + Name: Payment Statement for Kafra Employee + Type: Usable + Buy: 20 + Weight: 10 + - Id: 12250 + AegisName: Str_Dish10_M + Name: Steamed Tongue + Type: Usable + Weight: 10 + Script: | + sc_start SC_STRFOOD,3600000,10; percentheal 20,20; + - Id: 12251 + AegisName: Agi_Dish10_M + Name: Steamed Desert Scorpions + Type: Usable + Weight: 10 + Script: | + sc_start SC_AGIFOOD,3600000,10; percentheal 15,5; + - Id: 12252 + AegisName: Int_Dish10_M + Name: Dragon Breath Cocktail + Type: Usable + Weight: 10 + Script: | + sc_start SC_INTFOOD,3600000,10; percentheal 10,20; + - Id: 12253 + AegisName: Dex_Dish10_M + Name: Hwergelmir's Tonic + Type: Usable + Weight: 10 + Script: | + sc_start SC_DEXFOOD,3600000,10; percentheal 10,10; + - Id: 12254 + AegisName: Luk_Dish10_M + Name: Cooked Nine Tail + Type: Usable + Weight: 10 + Script: | + sc_start SC_LUKFOOD,3600000,10; percentheal 14,8; + - Id: 12255 + AegisName: Vit_Dish10_M + Name: Immortal Stew + Type: Usable + Weight: 10 + Script: | + sc_start SC_VITFOOD,3600000,10; percentheal 25,0; + - Id: 12256 + AegisName: PRO_Gift_Box + Name: PRO Gift Box + Type: Usable + Weight: 10 + - Id: 12257 + AegisName: Cold_Medicine + Name: Cold Medicine + Type: Healing + Buy: 20 + Weight: 100 + EquipLevelMin: 50 + Script: | + percentheal 25,25; + - Id: 12258 + AegisName: Bombring_Box + Name: Bomb Poring Box + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + if(strcharinfo(3)=="job3_rang02") { monster "this",-1,-1,"--ja--",1904,1,""; } + - Id: 12259 + AegisName: Miracle_Medicine + Name: Miracle Tonic + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getexp2(3000000,1500000); + - Id: 12260 + AegisName: Cool_Summer_Outfit + Name: Cool Summer Outfit + Type: Usable + Weight: 100 + Flags: + BuyingStore: true + Script: | + sc_start SC_SUMMER,600000,0; + - Id: 12261 + AegisName: Secret_Medicine + Name: Leap of Fantasy + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getexp2(2000000,1000000); + - Id: 12262 + AegisName: Inspector_Certificate_ + Name: Authoritative Badge + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_SPEEDUP0,540000,25; + - Id: 12263 + AegisName: Comp_Battle_Manual + Name: Field Manual + Type: Usable + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_EXPBOOST,1800000,200; + - Id: 12264 + AegisName: Comp_Bubble_Gum + Name: Bubble Gum + Type: Usable + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_ITEMBOOST,1800000,200; + - Id: 12265 + AegisName: Comp_Insurance + Name: Life Insurrance + Type: Usable + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_LIFEINSURANCE,1800000,0; + - Id: 12266 + AegisName: Sesame_Pastry_ + Name: Sesame Pastry + Type: Usable + Buy: 2 + Weight: 70 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_HITFOOD,180000,30; + - Id: 12267 + AegisName: Honey_Pastry_ + Name: Honey Pastry + Type: Usable + Buy: 2 + Weight: 70 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_FLEEFOOD,180000,30; + - Id: 12268 + AegisName: Rainbow_Cake_ + Name: Rainbow Cake + Type: Usable + Buy: 2 + Weight: 70 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_ATKPOTION,60000,10; sc_start SC_MATKFOOD,60000,10; + - Id: 12269 + AegisName: Tasty_Colonel + Name: Tasty Pink Ration + Type: Usable + Buy: 2 + Weight: 70 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_ATKPOTION,600000,15; + - Id: 12270 + AegisName: Tasty_Major + Name: Tasty White Ration + Type: Usable + Buy: 2 + Weight: 70 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_MATKPOTION,600000,15; + - Id: 12271 + AegisName: Mre_A + Name: Military Ration A + Type: Healing + Buy: 2 + Weight: 70 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + percentheal 5,0; + - Id: 12272 + AegisName: Mre_B + Name: Military Ration B + Type: Usable + Buy: 2 + Weight: 70 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_HITFOOD,600000,33; + - Id: 12273 + AegisName: Mre_C + Name: Military Ration C + Type: Usable + Buy: 2 + Weight: 70 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_FLEEFOOD,600000,33; + - Id: 12274 + AegisName: Gold_Pill_1 + Name: Daehwandan + Type: Healing + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start2 SC_INCREASE_MAXHP,3600000,5,10; percentheal 10,0; + - Id: 12275 + AegisName: Gold_Pill_2 + Name: Taecheongdan + Type: Healing + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start2 SC_INCREASE_MAXSP,3600000,5,10; percentheal 0,10; + - Id: 12276 + AegisName: Mimic_Scroll + Name: Mimic Scroll + Type: Usable + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 2058,1800000; + - Id: 12277 + AegisName: Disguise_Scroll + Name: Disguise Scroll + Type: Usable + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 2059,1800000; + - Id: 12278 + AegisName: Alice_Scroll + Name: Alice Scroll + Type: Usable + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 2060,1800000; + - Id: 12279 + AegisName: Undead_Element_Scroll + Name: Undead Elemental Scroll + Type: Usable + Weight: 10 + Script: | + sc_start4 SC_ARMOR_RESIST,300000,20,20,20,20; + - Id: 12280 + AegisName: Holy_Element_Scroll + Name: Holy Elemental Scroll + Type: Usable + Weight: 10 + Script: | + specialeffect2 EF_BENEDICTIO; sc_start SC_BENEDICTIO,300000,1; + - Id: 12281 + AegisName: Tresure_Box_WoE + Name: Event Treasure Box + Type: Usable + Buy: 20 + Weight: 150 + Flags: + Container: true + Script: | + getgroupitem(IG_Tresure_Box_WoE_); + - Id: 12282 + AegisName: Internet_Cafe1 + Name: Internet Cafe1 + Type: Usable + Weight: 10 + Script: | + sc_start SC_INCALLSTATUS,5400000,3; sc_start SC_ATKPOTION,5400000,15; sc_start SC_MATKPOTION,5400000,15; + - Id: 12283 + AegisName: Internet_Cafe2 + Name: Internet Cafe2 + Type: Usable + Weight: 10 + Script: | + sc_start SC_INCSTR,5400000,8; sc_start SC_INCDEX,5400000,4; sc_start SC_INCAGI,5400000,6; sc_start SC_ATKPOTION,5400000,32; sc_start SC_INCFLEE,5400000,5; + - Id: 12284 + AegisName: Internet_Cafe3 + Name: Internet Cafe3 + Type: Usable + Weight: 10 + Script: | + sc_start SC_INCINT,5400000,8; sc_start SC_INCVIT,5400000,4; sc_start SC_INCDEX,5400000,6; sc_start SC_MATKPOTION,5400000,40; + - Id: 12285 + AegisName: Internet_Cafe4 + Name: Internet Cafe4 + Type: Usable + Weight: 10 + Script: | + sc_start SC_INCDEX,5400000,8; sc_start SC_INCLUK,5400000,4; sc_start SC_INCAGI,5400000,6; sc_start SC_ATKPOTION,5400000,24; sc_start SC_MATKPOTION,5400000,24; + - Id: 12286 + AegisName: Masquerade_Ball_Box2 + Name: Masquerade Ball Box2 + Type: Usable + Weight: 10 + Flags: + Container: true + Script: | + getrandgroupitem(IG_Masquerade_2,1); + - Id: 12287 + AegisName: Love_Angel + Name: Love Angel Magic Powder + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + setfont 1; + UnEquipScript: | + setfont 0; + - Id: 12288 + AegisName: Squirrel + Name: Squirrel Magic Powder + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + setfont 2; + UnEquipScript: | + setfont 0; + - Id: 12289 + AegisName: Gogo + Name: Gogo Magic Powder + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + setfont 3; + UnEquipScript: | + setfont 0; + - Id: 12290 + AegisName: Mysterious_Can + Name: Mysterious Can Magic Powder + Type: Usable + Buy: 10 + Weight: 100 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + percentheal 5,0; skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,120000,5; + - Id: 12291 + AegisName: Mysterious_PET_Bottle + Name: Mysterious PET Bottle + Type: Usable + Buy: 10 + Weight: 100 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + percentheal 5,0; skilleffect "AL_INCAGI",0; sc_start SC_INCREASEAGI,120000,5; + - Id: 12292 + AegisName: Unripe_Fruit + Name: Unripe Yggdrasilberry + Type: Healing + Buy: 500 + Weight: 200 + Flags: + BuyingStore: true + Script: | + percentheal 20,0; + - Id: 12293 + AegisName: Dried_Yggdrasilberry + Name: Dried Yggdrasilberry + Type: Healing + Buy: 500 + Weight: 200 + Flags: + BuyingStore: true + Script: | + percentheal 0,20; + - Id: 12294 + AegisName: PC_Bang_Coin_Box1 + Name: PC-Room Coin Box + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2740,1; + - Id: 12295 + AegisName: PC_Bang_Coin_Box2 + Name: PC-Room Coin Box + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2739,1; + - Id: 12296 + AegisName: PC_Bang_Coin_Box3 + Name: PC-Room Coin Box + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2738,1; + - Id: 12297 + AegisName: PC_Bang_Coin_Box4 + Name: PC-Room Coin Box + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2738,2; + - Id: 12298 + AegisName: SP_Potion + Name: SP Consumption Reduction Potion + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_SPCOST_RATE,3600000,15; + - Id: 12299 + AegisName: Mega_Resist_Potion + Name: Mega Resist Potion + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_COMMONSC_RESIST,3600000,10; + - Id: 12300 + AegisName: Wild_Rose_Scroll + Name: Wild Rose Contract + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 1965,1800000; + - Id: 12301 + AegisName: Doppelganger_Scroll + Name: Doppelganger Contract + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 1966,1800000; + - Id: 12302 + AegisName: Ygnizem_Scroll + Name: Egnigem Cenia Contract + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + mercenary_create 1967,1800000; + - Id: 12303 + AegisName: Water_Of_Blessing + Name: Blessing Of Water + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12304 + AegisName: Picture_Diary + Name: Diary Magic Powder + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + setfont 4; + UnEquipScript: | + setfont 0; + - Id: 12305 + AegisName: Mini_Heart + Name: Mini Heart Magic Powder + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + setfont 5; + UnEquipScript: | + setfont 0; + - Id: 12306 + AegisName: Newcomer + Name: Freshman Magic Powder + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + setfont 6; + UnEquipScript: | + setfont 0; + - Id: 12307 + AegisName: Kid + Name: Kid Magic Powder + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + setfont 7; + UnEquipScript: | + setfont 0; + - Id: 12308 + AegisName: Magic_Castle + Name: Magic Magic Powder + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + setfont 8; + UnEquipScript: | + setfont 0; + - Id: 12309 + AegisName: Bulging_Head + Name: JJangu Magic Powder + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + setfont 9; + UnEquipScript: | + setfont 0; + - Id: 12310 + AegisName: Spray_Of_Flowers + Name: Spray Of Flowers + Type: Usable + Weight: 50 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_FLEEFOOD,300000,5; + - Id: 12311 + AegisName: Large_Spray_Of_Flowers + Name: Huge Spray Of Flowers + Type: Delayconsume + Weight: 100 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemskill "ALL_PARTYFLEE",5; + - Id: 12312 + AegisName: Thick_Manual50 + Name: Thick Battle Manual + Type: Usable + Script: | + sc_start SC_EXPBOOST,3600000,50; + - Id: 12313 + AegisName: Protection_Of_Angel + Name: Guardian Angel + Type: Usable + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /* itemskill "ALL_ANGEL_PROTECT",1; */ + - Id: 12314 + AegisName: Noive_Box + Name: Adventurer Returns Support Box + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Noive_Box); + - Id: 12315 + AegisName: Goddess_Bless + Name: Goddess Of Blessing + Type: Usable + Weight: 10 + - Id: 12316 + AegisName: Angel_Bless + Name: Angel Of Blessing + Type: Usable + Weight: 10 + - Id: 12317 + AegisName: Powder_Snow + Name: Snow Powder + Type: Usable + Weight: 10 + - Id: 12318 + AegisName: Little_Heart + Name: Small Hearts + Type: Usable + Weight: 10 + - Id: 12319 + AegisName: Strawberry_Cake + Name: Rune Strawberry Cake + Type: Usable + Weight: 300 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_ATKPOTION,600000,5; sc_start SC_MATKPOTION,600000,5; + - Id: 12320 + AegisName: Pineapple_Juice + Name: Schwarzwald Pine Jubilee + Type: Usable + Weight: 300 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_HITFOOD,600000,10; sc_start SC_FLEEFOOD,600000,20; + - Id: 12321 + AegisName: Spicy_Sandwich + Name: Arunafeltz Desert Sandwich + Type: Usable + Weight: 300 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_INCCRI,600000,7; + - Id: 12322 + AegisName: Chocolate_Pie + Name: Chocolate Pie + Type: Healing + Weight: 50 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + percentheal 5,5; + - Id: 12323 + AegisName: N_Fly_Wing + Name: Novice Fly Wing + Type: Delayconsume + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemskill "AL_TELEPORT",1; + - Id: 12324 + AegisName: N_Butterfly_Wing + Name: Novice Butterfly Wing + Type: Delayconsume + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemskill "AL_TELEPORT",3; + - Id: 12325 + AegisName: N_Magnifier + Name: Novice Magnifier + Type: Delayconsume + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemskill "MC_IDENTIFY",1; + - Id: 12326 + AegisName: J_Firecracker + Name: Large Firecracker + Type: Usable + Buy: 2 + Weight: 20 + - Id: 12327 + AegisName: Charm_Of_Luck + Name: Charm Of Luck + Type: Usable + Buy: 1000 + Weight: 50 + Script: | + sc_start SC_INCLUK,3600000,20; + - Id: 12328 + AegisName: Charm_Of_Happiness + Name: Charm Of Happiness + Type: Usable + Buy: 1800 + Weight: 100 + Script: | + sc_start SC_INCLUK,3600000,20; + - Id: 12329 + AegisName: Recall_MaleGM + Name: Summon Male GameMaster Scroll + Type: Usable + Weight: 10 + Flags: + BuyingStore: true + Script: | + mercenary_create 2000,1800000; + - Id: 12330 + AegisName: Recall_FemaleGM + Name: Summon Female GameMaster Scroll + Type: Usable + Weight: 10 + Flags: + BuyingStore: true + Script: | + mercenary_create 2001,1800000; + - Id: 12331 + AegisName: Ginseng + Name: Ginseng + Type: Healing + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + percentheal 6,0; + - Id: 12332 + AegisName: Fruit_Juice + Name: Fruit Juice + Type: Healing + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + percentheal 0,6; + - Id: 12333 + AegisName: Ansila + Name: Ancilla + Type: Usable + Weight: 10 + Stack: + Amount: 3 + Inventory: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + percentheal 0,15; sc_start SC_ANCILLA,60000,1; + - Id: 12334 + AegisName: Cherish_Box + Name: Treasure Edition Helm Box + Type: Usable + Weight: 10 + Flags: + Container: true + Script: | + getrandgroupitem(IG_Cherish_Box,1); + - Id: 12335 + AegisName: Yummy_Skewered_Dish + Name: Grilled Delicious Skewer + Type: Healing + Buy: 1000 + Weight: 350 + Script: | + percentheal 60,60; + - Id: 12336 + AegisName: Baked_Mushroom + Name: Grilled Mushroom + Type: Healing + Buy: 500 + Weight: 300 + Script: | + percentheal 30,30; + - Id: 12337 + AegisName: Grilled_Sausage + Name: Grilled Sausages + Type: Healing + Buy: 300 + Weight: 200 + Script: | + percentheal 20,20; + - Id: 12338 + AegisName: Grilled_Corn + Name: Grilled Corn + Type: Usable + Buy: 100 + Weight: 100 + Script: | + sc_start SC_INCSTR,180000,2; sc_start SC_INCINT,180000,2; sc_start SC_INCAGI,180000,2; + - Id: 12339 + AegisName: Cherish_Box_Ori + Name: Treasure Edition Box + Type: Usable + Weight: 10 + Flags: + Container: true + Script: | + getrandgroupitem(IG_Cherish_Box_Ori,1); + - Id: 12340 + AegisName: Mysterious_Rice_Powder + Name: Chewy Rice Powder + Type: Usable + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + pet 1815; + - Id: 12341 + AegisName: Special_Alloy_Trap_Box + Name: Special Alloy Trap Box + Type: Usable + Buy: 30000 + Weight: 10 + Flags: + BuyingStore: true + Script: | + getitem 7940,100; + - Id: 12342 + AegisName: Manuk's_Opportunity + Name: Manuk's Opportunity + Type: Usable + Weight: 50 + Flags: + BuyingStore: true + Script: | + specialeffect2 EF_POTION_BERSERK; sc_start SC_MANU_ATK,600000,10; + - Id: 12343 + AegisName: Manuk's_Courage + Name: Manuk's Courage + Type: Usable + Weight: 50 + Flags: + BuyingStore: true + Script: | + specialeffect2 EF_GUARD; sc_start SC_MANU_DEF,600000,10; + - Id: 12344 + AegisName: Pinguicula's_fruit_Jam + Name: Pinguicula's Fruit Jam + Type: Usable + Weight: 50 + Flags: + BuyingStore: true + Script: | + specialeffect2 EF_POTION_BERSERK; sc_start SC_SPL_ATK,600000,10; + - Id: 12345 + AegisName: Luciola's_Honey_Jam + Name: Luciola's Honey Jam + Type: Usable + Weight: 50 + Flags: + BuyingStore: true + Script: | + specialeffect2 EF_GUARD; sc_start SC_SPL_DEF,600000,10; + - Id: 12346 + AegisName: Unripe_Acorn + Name: Unripe Acorn + Type: Usable + Flags: + BuyingStore: true + Script: | + heal -100,0; + - Id: 12347 + AegisName: Acorn_Jelly + Name: Acorn Jelly + Type: Delayconsume + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "ALL_REVERSEORCISH",1; + - Id: 12348 + AegisName: Manuk's_Faith + Name: Manuk's Faith + Type: Usable + Weight: 50 + Flags: + BuyingStore: true + Script: | + specialeffect2 EF_POTION_BERSERK; sc_start SC_MANU_MATK,600000,10; + - Id: 12349 + AegisName: Cornus'_Tears + Name: Cornus' Tears + Type: Usable + Weight: 50 + Flags: + BuyingStore: true + Script: | + specialeffect2 EF_POTION_BERSERK; sc_start SC_SPL_MATK,600000,10; + - Id: 12350 + AegisName: Angeling_Potion + Name: Angeling Potion + Type: Delayconsume + Buy: 20 + Weight: 100 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,120000,5; itemskill "AL_ANGELUS",5; + - Id: 12351 + AegisName: Shout_Megaphone + Name: Scream Megaphone + Type: Delayconsume + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + Script: | + itemskill "MC_LOUD",1; + - Id: 12352 + AegisName: Dun_Tele_Scroll3 + Name: Dungeon Teleport Scroll 3 + Type: Usable + Weight: 10 + Script: | + callfunc "F_CashDungeon",3; + - Id: 12353 + AegisName: Tiny_Waterbottle + Name: Small Bottle + Type: Usable + Buy: 800 + Weight: 10 + Flags: + BuyingStore: true + Script: | + sc_start SC_WATERWEAPON,90000,1; + - Id: 12354 + AegisName: Buche_De_Noel + Name: Buche De Noel + Type: Usable + Buy: 2 + Weight: 50 + Flags: + BuyingStore: true + Script: | + specialeffect2 EF_ANGELUS; bonus_script "{ bonus bHPrecovRate,3; bonus bSPrecovRate,3; bonus bHit,3; bonus bCritical,7; }",600,0,0,EFST_BUCHEDENOEL; + - Id: 12355 + AegisName: Xmas_Gift + Name: Xmas Gift + Type: Usable + Buy: 2 + Weight: 100 + Flags: + BuyingStore: true + Container: true + Script: | + getrandgroupitem(IG_Xmas_Gift,1); + - Id: 12356 + AegisName: Louise_Costume_Box + Name: Louise Costume Box + Type: Usable + Buy: 2 + Weight: 100 + Flags: + BuyingStore: true + Container: true + Script: | + getrandgroupitem(IG_Louise_Costume_Box,1); + - Id: 12357 + AegisName: Shiny_Wing_Gown + Name: Shiny Wing Gown + Type: Usable + Buy: 20 + Weight: 50 + Script: | + pet 1630; + - Id: 12358 + AegisName: Fan_Of_Wind + Name: Fan Of Wind + Type: Usable + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1513; + - Id: 12359 + AegisName: Very_Soft_Plant + Name: Very Soft Plant + Type: Usable + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1586; + - Id: 12360 + AegisName: Very_Red_Juice + Name: Very Red Juice + Type: Usable + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1505; + - Id: 12361 + AegisName: Delicious_Shaved_Ice + Name: Delicious Shaved Ice + Type: Usable + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + pet 1143; + - Id: 12362 + AegisName: Kuloren + Name: Kuloren + Type: Usable + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1401; + - Id: 12363 + AegisName: Fit_Pipe + Name: Fit Pipe + Type: Usable + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + pet 1179; + - Id: 12364 + AegisName: Staff_Of_Leader + Name: Staff Of Leader + Type: Usable + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1299; + - Id: 12365 + AegisName: Charming_Lotus + Name: Charming Lotus + Type: Usable + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1416; + - Id: 12366 + AegisName: Gril_Doll + Name: Girl's Doll + Type: Usable + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1404; + - Id: 12367 + AegisName: Luxury_Whisky_Bottle + Name: Luxury Whisky Bottle + Type: Usable + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1504; + - Id: 12368 + AegisName: Splendid_Mirror + Name: Splendid Mirror + Type: Usable + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1148; + - Id: 12369 + AegisName: Oilpalm_Coconut + Name: Oilpalm Coconut + Type: Usable + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1495; + - Id: 12370 + AegisName: Gril's_Naivety + Name: Girl's Naivety + Type: Usable + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + pet 1374; + - Id: 12371 + AegisName: Magical_Lithography + Name: Magical Lithography + Type: Usable + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1040; + - Id: 12372 + AegisName: Hell_Contract + Name: Hell Contract + Type: Usable + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1379; + - Id: 12373 + AegisName: Boy's_Naivety + Name: Boy's Pure Heart + Type: Usable + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1370; + - Id: 12374 + AegisName: Flaming_Ice + Name: Ice Fireworks + Type: Usable + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + pet 1837; + - Id: 12375 + AegisName: Acaraje + Name: Akaraje + Type: Usable + Weight: 80 + Script: | + specialeffect2 EF_STEAL; bonus_script "{ bonus bHit,5; bonus bAspdRate,10; }",1200,0,0,EFST_ACARAJE; + - Id: 12376 + AegisName: Mysterious_Can2 + Name: Mysterious Can2 + Type: Usable + Buy: 10 + Weight: 100 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + percentheal 3,0; itemskill "PR_GLORIA",2; + - Id: 12377 + AegisName: Mysterious_PET_Bottle2 + Name: Mysterious PET Bottle2 + Type: Usable + Buy: 10 + Weight: 100 + Flags: + BuyingStore: true + NoUse: + Override: 100 + Sitting: true + Script: | + percentheal 0,3; itemskill "PR_MAGNIFICAT",1; + - Id: 12378 + AegisName: 2009_Rice_Cake_Soup + Name: Rice Cake Soup + Type: Usable + Buy: 10 + Weight: 100 + Script: | + percentheal 50,50; + - Id: 12379 + AegisName: Pope's_Cookie + Name: Pope Cookie + Type: Usable + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + Script: | + 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; + - Id: 12380 + AegisName: Desert_Wolf_Babe_Scroll + Name: Job Change Flute + Type: Usable + Buy: 10 + Weight: 10 + Script: | + mercenary_create 2034,1800000; + - Id: 12381 + AegisName: ValkyrieA_Scroll + Name: Ancient Languages Scroll + Type: Usable + Buy: 10 + Weight: 10 + Script: | + if(strcharinfo(3)=="job3_arch02") { mercenary_create 2037,1800000; } + - Id: 12382 + AegisName: ValkyrieB_Scroll + Name: Ancient Languages Scroll + Type: Usable + Buy: 10 + Weight: 10 + Script: | + if(strcharinfo(3)=="job3_arch02") { mercenary_create 2038,1800000; } + - Id: 12383 + AegisName: Vulcan_Bullet_Magazine + Name: Vulcan Bullet Magazine + Type: Usable + Buy: 11000 + Weight: 500 + Flags: + BuyingStore: true + Script: | + getitem 6145,1000; + - Id: 12384 + AegisName: Rainbow_Ruby_Water + Name: Rainbow Ruby + Type: Delayconsume + Weight: 50 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + if(strcharinfo(3)=="job3_war02") { itemskill "WL_FROSTMISTY",5; } + - Id: 12385 + AegisName: Rainbow_Ruby_Fire + Name: Rainbow Ruby + Type: Delayconsume + Weight: 50 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + if(strcharinfo(3)=="job3_war02") { itemskill "WL_CRIMSONROCK",5; } + - Id: 12386 + AegisName: Rainbow_Ruby_Wind + Name: Rainbow Ruby + Type: Delayconsume + Weight: 50 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + if(strcharinfo(3)=="job3_war02") { itemskill "WL_CHAINLIGHTNING",5; } + - Id: 12387 + AegisName: Rainbow_Ruby_Earth + Name: Rainbow Ruby + Type: Delayconsume + Weight: 50 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + if(strcharinfo(3)=="job3_war02") { itemskill "WL_EARTHSTRAIN",5; } + - Id: 12388 + AegisName: Runstone_Crush + Name: Rhydo Runestone For Apprentice + Type: Delayconsume + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + if(strcharinfo(3)=="job3_rune02") { itemskill "RK_CRUSHSTRIKE",1; } + - Id: 12389 + AegisName: Runstone_Storm + Name: Pertz Runestone For Apprentice + Type: Delayconsume + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + if(strcharinfo(3)=="job3_rune02") { itemskill "RK_STORMBLAST",1; } + - Id: 12390 + AegisName: Runstone_Millennium + Name: Verkana Runestone For Apprentice + Type: Delayconsume + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + if(strcharinfo(3)=="job3_rune02") { itemskill "RK_MILLENNIUMSHIELD",1; } + - Id: 12391 + AegisName: Lucky_Egg_C + Name: Lucky Egg C + Type: Usable + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Lucky_Egg_C); + - Id: 12392 + AegisName: RepairA + Name: Repair A + Type: Usable + Buy: 220 + Weight: 100 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Flags: + BuyingStore: true + Script: | + if ( checkmadogear() ) { itemheal rand(200,300),0; } + - Id: 12393 + AegisName: RepairB + Name: Repair B + Type: Usable + Buy: 500 + Weight: 140 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Flags: + BuyingStore: true + Script: | + if ( checkmadogear() ) { itemheal rand(300,400),0; } + - Id: 12394 + AegisName: RepairC + Name: Repair C + Type: Usable + Buy: 1100 + Weight: 180 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Flags: + BuyingStore: true + Script: | + if ( checkmadogear() ) { itemheal rand(400,500),0; } + - Id: 12395 + AegisName: Tantanmen + Name: Tantan Noodle + Type: Usable + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + Script: | + pet 1519; + - Id: 12396 + AegisName: Fools_Day_Box + Name: Gift Box? + Type: Delayconsume + Buy: 20 + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Script: | + .@rnd = rand(1,10); if(.@rnd==1) itemskill "AL_TELEPORT",1; else if(.@rnd==2) itemskill "AL_TELEPORT",3; else if(.@rnd==3) percentheal 50,0; else if(.@rnd==4) percentheal 0,50; else if(.@rnd==5) end; else if(.@rnd==6) getitem 512,1; else if(.@rnd==7) itemskill "ALL_REVERSEORCISH",1; else if(.@rnd==8) specialeffect2 EF_MAPPILLAR2; else if(.@rnd==9) specialeffect2 EF_ANGEL2; else specialeffect2 EF_COIN; + - Id: 12397 + AegisName: Fools_Day_Box2 + Name: Gift Box? + Type: Delayconsume + Buy: 20 + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Script: | + .@rnd = rand(1,10); if(.@rnd==1) itemskill "TF_DETOXIFY",1; else if(.@rnd==2) itemskill "TF_PICKSTONE",1; else if(.@rnd==3) itemskill "BA_FROSTJOKER",1; else if(.@rnd==4) itemskill "DC_SCREAM",1; else if(.@rnd==5) end; else if(.@rnd==6) getitem 909,1; else if(.@rnd==7) itemskill "AL_RUWACH",1; else if(.@rnd==8) specialeffect2 EF_BEGINASURA; else if(.@rnd==9) specialeffect2 EF_MVP; else specialeffect2 EF_CURSEATTACK; + - Id: 12398 + AegisName: PCBang_Gift_Box + Name: PCRoom Gift Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12399 + AegisName: Castle_Treasure_Box + Name: Castle Treasure Box + Type: Usable + Buy: 20 + Weight: 1000 + Script: | + Zeny += 1000000; + - Id: 12400 + AegisName: Water_Of_Blessing_ + Name: Water Of Blessing + Type: Usable + Buy: 20 + Weight: 10 + - Id: 12401 + AegisName: Rune_Kn_Test_Int + Name: Rune Kn Test Int + Type: Usable + Script: | + sc_start SC_INCINT,300000,40; + - Id: 12402 + AegisName: 29Fruit + Name: 29Fruit + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + percentheal 5,5; + - Id: 12403 + AegisName: Lucky_Egg_C2 + Name: Lucky Egg C2 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Lucky_Egg_C2); + - Id: 12404 + AegisName: Acti_Potion + Name: Acti Potion + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_STEAL; bonus_script "{ bonus2 bAddClass,Class_All,3; bonus bMatkRate,3; bonus2 bSubEle,Ele_All,3; }",120,0,0,EFST_POPECOOKIE; + - Id: 12405 + AegisName: Underripe_Yggseed + Name: Underripe Yggseed + Type: Usable + Buy: 20 + Weight: 50 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + percentheal 30,30; skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,140000,5; + - Id: 12406 + AegisName: Psychic_ArmorS + Name: Psychic ArmorS + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_ENERGYCOAT; sc_start4 SC_ELEMENTALCHANGE,10000,1,Ele_Ghost,1,0; + - Id: 12407 + AegisName: PCBang_Coupon_Box + Name: PC Cafe Coupon Box + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12408 + AegisName: Leaf_Cat_Ball + Name: Hydra Ball + Type: Usable + Script: | + pet 2081; + - Id: 12409 + AegisName: Pork_Belly_H + Name: 1st Class Pork Belly + Type: Usable + - Id: 12410 + AegisName: Spareribs_H + Name: Thick Pork Belly + Type: Usable + - Id: 12411 + AegisName: HE_Battle_Manual + Name: HE Battle Manual + Type: Usable + Buy: 2 + Weight: 10 + Script: | + sc_start SC_EXPBOOST,900000,200; + - Id: 12412 + AegisName: HE_Bubble_Gum + Name: HE Bubble Gum + Type: Usable + Buy: 2 + Weight: 10 + Script: | + sc_start SC_ITEMBOOST,900000,300; + - Id: 12413 + AegisName: PCBang_Coupon_Box2 + Name: PC Cafe Coupon Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12414 + AegisName: Guarana_Candy + Name: Guarana Candy + Type: Usable + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + Script: | + sc_start SC_ASPDPOTION0,1800000,0; sc_start SC_INCREASEAGI,140000,5; skilleffect "AL_INCAGI",0; + - Id: 12415 + AegisName: Siege_Teleport_Scroll2 + Name: Siege Teleport Scroll Silver + Type: Usable + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12416 + AegisName: Lucky_Egg_C3 + Name: Lucky Egg C3 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Lucky_Egg_C3); + - Id: 12417 + AegisName: Boost500 + Name: Boost500 + Type: Usable + Buy: 100 + Weight: 50 + Script: | + sc_start SC_BOOST500,500000,10; + - Id: 12418 + AegisName: Full_SwingK + Name: Full SwingK + Type: Usable + Buy: 100 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_FULL_SWING_K,500000,50; + - Id: 12419 + AegisName: Mana_Plus + Name: Mana Plus + Type: Usable + Buy: 100 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_MANA_PLUS,500000,50; + - Id: 12420 + AegisName: Stamina_Up_M + Name: Stamina Up M + Type: Usable + Buy: 100 + Weight: 50 + Script: | + sc_start SC_MUSTLE_M,500000,5; + - Id: 12421 + AegisName: Digestive_F + Name: Falmons F + Type: Usable + Buy: 10 + Weight: 10 + Script: | + sc_start SC_LIFE_FORCE_F,500000,5; + - Id: 12422 + AegisName: HP_Increase_PotionS + Name: HP Increase Potion (Small) + Type: Usable + Buy: 100 + Weight: 20 + Flags: + BuyingStore: true + Script: | + sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,1; percentheal 1,0; + - Id: 12423 + AegisName: HP_Increase_PotionM + Name: HP Increase Potion (Medium) + Type: Usable + Buy: 100 + Weight: 40 + Flags: + BuyingStore: true + Script: | + sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,2; percentheal 2,0; + - Id: 12424 + AegisName: HP_Increase_PotionL + Name: HP Increase Potion (Large) + Type: Usable + Buy: 100 + Weight: 80 + Flags: + BuyingStore: true + Script: | + sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,3; percentheal 5,0; + - Id: 12425 + AegisName: SP_Increase_PotionS + Name: SP Increase Potion (Small) + Type: Usable + Buy: 100 + Weight: 20 + Flags: + BuyingStore: true + Script: | + sc_start2 SC_ENERGY_DRINK_RESERCH,500000,1,1; percentheal 0,2; + - Id: 12426 + AegisName: SP_Increase_PotionM + Name: SP Increase Potion (Medium) + Type: Usable + Buy: 100 + Weight: 40 + Flags: + BuyingStore: true + Script: | + sc_start2 SC_ENERGY_DRINK_RESERCH,500000,1,2; percentheal 0,4; + - Id: 12427 + AegisName: SP_Increase_PotionL + Name: SP Increase Potion (Large) + Type: Usable + Buy: 100 + Weight: 80 + Flags: + BuyingStore: true + Script: | + sc_start2 SC_ENERGY_DRINK_RESERCH,500000,1,3; percentheal 0,8; + - Id: 12428 + AegisName: Enrich_White_PotionZ + Name: Concentrated White Potion Z + Type: Healing + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + Script: | + sc_start SC_EXTRACT_WHITE_POTION_Z,500000,20; heal 1000,0; + - Id: 12429 + AegisName: Savage_BBQ + Name: Savage Full Roast + Type: Usable + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_SAVAGE_STEAK,300000,20; + - Id: 12430 + AegisName: Wug_Blood_Cocktail + Name: Cocktail Warg Blood + Type: Usable + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_COCKTAIL_WARG_BLOOD,300000,20; + - Id: 12431 + AegisName: Minor_Brisket + Name: Minor Stew + Type: Usable + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_MINOR_BBQ,300000,20; + - Id: 12432 + AegisName: Siroma_Icetea + Name: Siroma Iced Tea + Type: Usable + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_SIROMA_ICE_TEA,300000,20; + - Id: 12433 + AegisName: Drocera_Herb_Stew + Name: Drosera Herb Salad + Type: Usable + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_DROCERA_HERB_STEAMED,300000,20; + - Id: 12434 + AegisName: Petti_Tail_Noodle + Name: Petite Tail Noodles + Type: Usable + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_start SC_PUTTI_TAILS_NOODLES,300000,20; + - Id: 12435 + AegisName: Black_Thing + Name: Black Mass + Type: Usable + Weight: 50 + Script: | + sc_start SC_STOMACHACHE,60000,rand(5,10); + - Id: 12436 + AegisName: Vitata500 + Name: Vitata 500 + Type: Healing + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + Script: | + sc_start2 SC_VITATA_500,500000,20,5; itemheal 0,200; + - Id: 12437 + AegisName: Enrich_Celermine_Juice + Name: Concentrated Ceromain Soup + Type: Usable + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + Script: | + sc_start SC_EXTRACT_SALAMINE_JUICE,500000,10; + - Id: 12438 + AegisName: F_Giant_Fly_Wing + Name: F Giant Fly Wing + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12439 + AegisName: F_Battle_Manual + Name: F Old Battle Manual + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12440 + AegisName: F_Insurance + Name: F Insurance + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12441 + AegisName: F_Bubble_Gum + Name: F Old Bubble Gum + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12442 + AegisName: F_Kafra_Card + Name: F Kafra Card + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12443 + AegisName: F_Neuralizer + Name: F Neuralizer + Type: Usable + Buy: 2 + - Id: 12444 + AegisName: F_Dun_Tele_Scroll1 + Name: WoE Telport Scroll + Type: Usable + Weight: 10 + Script: | + callfunc "F_CashSiegeTele"; + - Id: 12445 + AegisName: F_Str_Dish10_ + Name: F Str Dish10 + Type: Usable + Buy: 2 + Weight: 10 + Script: | + sc_start SC_STRFOOD,1800000,10; + - Id: 12446 + AegisName: F_Agi_Dish10_ + Name: F Agi Dish10 + Type: Usable + Buy: 2 + Weight: 10 + Script: | + sc_start SC_AGIFOOD,1800000,10; + - Id: 12447 + AegisName: F_Int_Dish10_ + Name: F Int Dish10 + Type: Usable + Buy: 2 + Weight: 10 + Script: | + sc_start SC_INTFOOD,1800000,10; + - Id: 12448 + AegisName: F_Dex_Dish10_ + Name: F Dex Dish10 + Type: Usable + Buy: 2 + Weight: 10 + Script: | + sc_start SC_DEXFOOD,1800000,10; + - Id: 12449 + AegisName: F_Luk_Dish10_ + Name: F Luk Dish10 + Type: Usable + Buy: 2 + Weight: 10 + Script: | + sc_start SC_LUKFOOD,1800000,10; + - Id: 12450 + AegisName: F_Vit_Dish10_ + Name: F Vit Dish10 + Type: Usable + Buy: 2 + Weight: 10 + Script: | + sc_start SC_VITFOOD,1800000,10; + - Id: 12451 + AegisName: F_WOB_Rune + Name: F WOB Rune + Type: Usable + Weight: 10 + - Id: 12452 + AegisName: F_WOB_Schwaltz + Name: F WOB Schwarz + Type: Usable + Weight: 10 + - Id: 12453 + AegisName: F_WOB_Rachel + Name: F WOB Rachel + Type: Usable + Weight: 10 + - Id: 12454 + AegisName: F_WOB_Local + Name: F WOB Local + Type: Usable + Weight: 10 + - Id: 12456 + AegisName: F_Greed_Scroll + Name: F Greed Scroll + Type: Usable + Weight: 10 + - Id: 12457 + AegisName: F_Glass_Of_Illusion + Name: F Glass Of Illusion + Type: Usable + Weight: 10 + - Id: 12458 + AegisName: F_Abrasive + Name: F Abrasive + Type: Usable + Weight: 10 + - Id: 12459 + AegisName: F_Med_Life_Potion + Name: F Med Life Potion + Type: Usable + Weight: 10 + Script: | + specialeffect2 EF_HEAL3; sc_start2 SC_L_LIFEPOTION,600000,-7,4; + - Id: 12460 + AegisName: F_Small_Life_Potion + Name: F Small Life Potion + Type: Usable + Weight: 10 + Script: | + specialeffect2 EF_HEAL3; sc_start2 SC_S_LIFEPOTION,600000,-5,5; + - Id: 12461 + AegisName: F_Regeneration_Potion + Name: F Regeneration Potion + Type: Usable + Weight: 10 + - Id: 12462 + AegisName: F_B_Mdef_Potion + Name: F B Mdef Potion + Type: Usable + Weight: 10 + Script: | + specialeffect EF_SPELLBREAKER; bonus_script "{ bonus3 bSubEle,Ele_All,3,BF_MAGIC; }",180,0,0,EFST_PROTECT_MDEF; + - Id: 12463 + AegisName: F_S_Mdef_Potion + Name: F S Mdef Potion + Type: Usable + Weight: 10 + Script: | + specialeffect EF_SPELLBREAKER; bonus_script "{ bonus3 bSubEle,Ele_All,3,BF_MAGIC; }",60,0,0,EFST_PROTECT_MDEF; + - Id: 12464 + AegisName: F_B_Def_Potion + Name: F B Def Potion + Type: Usable + Weight: 10 + Script: | + specialeffect EF_GUARD; bonus_script "{ bonus3 bSubEle,Ele_All,3,BF_SHORT; }",180,0,0,EFST_PROTECT_DEF; + - Id: 12465 + AegisName: F_S_Def_Potion + Name: F S Def Potion + Type: Usable + Weight: 10 + Script: | + specialeffect EF_GUARD; bonus_script "{ bonus3 bSubEle,Ele_All,3,BF_SHORT; }",60,0,0,EFST_PROTECT_DEF; + - Id: 12466 + AegisName: F_Blessing_10_Scroll + Name: F Blessing 10 Scroll + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12467 + AegisName: F_Inc_Agi_10_Scroll + Name: F Inc Agi 10 Scroll + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12468 + AegisName: F_Aspersio_5_Scroll + Name: F Aspersio 5 Scroll + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12470 + AegisName: F_Wind_Walk_10_Scroll + Name: F Wind Walk 10 Scroll + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12471 + AegisName: F_Adrenaline_Scroll + Name: F Adrenaline Scroll + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12472 + AegisName: F_Convex_Mirror + Name: F Convex Mirror + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12473 + AegisName: RWC_Parti_Box + Name: RWC Parti Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_RWC_Parti_Box); + - Id: 12474 + AegisName: RWC_Final_Comp_Box + Name: RWC Final Comp Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_RWC_Final_Comp_Box); + - Id: 12475 + AegisName: Cure_Free + Name: Cure Free + Type: Usable + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + Script: | + sc_end SC_SILENCE; sc_end SC_BLEEDING; sc_end SC_POISON; sc_end SC_CURSE; sc_end SC_ORCISH; sc_end SC_CHANGEUNDEAD; itemheal 500,0; + - Id: 12476 + AegisName: PCBang_Coupon_Box3 + Name: PCBang Coupon Box3 + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12477 + AegisName: Gift_Bundle + Name: Gift Bundle + Type: Usable + Flags: + Container: true + Script: | + /*getgroupitem(IG_Gift_Bundle);*/ getitem 547,30; getitem 608,2; getitem 6302,1; + - Id: 12478 + AegisName: Chance_Box + Name: Chance Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12479 + AegisName: Caracas_Ring_Box + Name: Caracas Ring Box + Type: Usable + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*getgroupitem(IG_Caracas_Ring_Box);*/ rentitem 2841,270000; + - Id: 12480 + AegisName: Attend_3Day_Box + Name: Attend 3Day Box + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12481 + AegisName: Attend_7Day_Box + Name: Attend 7Day Box + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12482 + AegisName: Attend_10Day_Box + Name: Attend 10Day Box + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12483 + AegisName: Attend_15Day_Box + Name: Attend 15Day Box + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12484 + AegisName: Attend_20Day_Box + Name: Attend 20Day Box + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12485 + AegisName: Attend_25Day_Box + Name: Attend 25Day Box + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12486 + AegisName: GoldPC_First_Box + Name: GoldPC First Box + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12487 + AegisName: PC_4Leaf_Clover_Box + Name: PC 4Leaf Clover Box + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12488 + AegisName: Ticket_Gift_Box + Name: Ticket Gift Box + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12489 + AegisName: Ticket_Gift_Box2 + Name: Ticket Gift Box2 + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12490 + AegisName: Vivid_Notation + Name: Christmas Music Box + Type: Usable + Buy: 20 + Flags: + BuyingStore: true + Script: | + playbgm rand(53,58)+".mp3"; + - Id: 12491 + AegisName: Curious_Snowball + Name: Curious Snowball + Type: Usable + Buy: 20 + Script: | + callfunc "F_Snowball"; + - Id: 12492 + AegisName: Crumpled_Paper + Name: Crumpled Paper + Type: Usable + Buy: 2 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getrandgroupitem(IG_Crumpled_Paper,1); + - Id: 12493 + AegisName: Lucky_Egg_C4 + Name: Lucky Egg C4 + Type: Usable + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Lucky_Egg_C4); + - Id: 12494 + AegisName: E_Giant_Fly_Wing + Name: E Giant Fly Wing + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12495 + AegisName: E_Battle_Manual + Name: E Battle Manual + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12496 + AegisName: E_Insurance + Name: E Insurance + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12497 + AegisName: E_Bubble_Gum + Name: E Bubble Gum + Type: Usable + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_ITEMBOOST,1800000,100; + - Id: 12498 + AegisName: E_Kafra_Card + Name: E Kafra Card + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12499 + AegisName: E_Neuralizer + Name: E Neuralizer + Type: Usable + Buy: 2 + - Id: 12500 + AegisName: E_Dun_Tele_Scroll1 + Name: E Dun Tele Scroll1 + Type: Usable + Weight: 10 + - Id: 12501 + AegisName: E_Str_Dish10_ + Name: Steamed Tongue + Type: Usable + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_STRFOOD,1800000,10; + - Id: 12502 + AegisName: E_Agi_Dish10_ + Name: Steamed Desert Scorpions + Type: Usable + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_AGIFOOD,1800000,10; + - Id: 12503 + AegisName: E_Int_Dish10_ + Name: Dragon Breath Cocktail + Type: Usable + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_INTFOOD,1800000,10; + - Id: 12504 + AegisName: E_Dex_Dish10_ + Name: Hwergelmir's Tonic + Type: Usable + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_DEXFOOD,1800000,10; + - Id: 12505 + AegisName: E_Luk_Dish10_ + Name: Cooked Nine Tail + Type: Usable + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_LUKFOOD,1800000,10; + - Id: 12506 + AegisName: E_Vit_Dish10_ + Name: Immortal Stew + Type: Usable + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_VITFOOD,1800000,10; + - Id: 12507 + AegisName: E_WOB_Rune + Name: Yellow Butterfly Wing + Type: Usable + Weight: 10 + Flags: + BuyingStore: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + callfunc "F_CashCity",1; + - Id: 12508 + AegisName: E_WOB_Schwaltz + Name: Green Butterfly Wing + Type: Usable + Weight: 10 + Flags: + BuyingStore: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + callfunc "F_CashCity",2; + - Id: 12509 + AegisName: E_WOB_Rachel + Name: Red Butterfly Wing + Type: Usable + Weight: 10 + Flags: + BuyingStore: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + callfunc "F_CashCity",3; + - Id: 12510 + AegisName: E_WOB_Local + Name: Blue Butterfly Wing + Type: Usable + Weight: 10 + Flags: + BuyingStore: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + callfunc "F_CashCity",5; + - Id: 12511 + AegisName: E_Siege_Teleport_Scroll + Name: E Siege Teleport Scroll + Type: Usable + Weight: 10 + - Id: 12512 + AegisName: E_Greed_Scroll + Name: E Greed Scroll + Type: Usable + Weight: 10 + - Id: 12513 + AegisName: E_Glass_Of_Illusion + Name: E Glass Of Illusion + Type: Usable + Weight: 10 + - Id: 12514 + AegisName: E_Abrasive + Name: E Abrasive + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_MAGICALATTHIT; sc_start SC_INCCRI,300000,30; + - Id: 12515 + AegisName: E_Med_Life_Potion + Name: E Med Life Potion + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_HEAL3; sc_start2 SC_L_LIFEPOTION,600000,-7,4; + - Id: 12516 + AegisName: E_Small_Life_Potion + Name: E Small Life Potion + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_HEAL3; sc_start2 SC_S_LIFEPOTION,600000,-5,5; + - Id: 12517 + AegisName: E_Regeneration_Potion + Name: E Regeneration Potion + Type: Usable + Weight: 10 + - Id: 12518 + AegisName: E_B_Mdef_Potion + Name: E B Mdef Potion + Type: Usable + Weight: 10 + - Id: 12519 + AegisName: E_S_Mdef_Potion + Name: E S Mdef Potion + Type: Usable + Weight: 10 + - Id: 12520 + AegisName: E_B_Def_Potion + Name: E B Def Potion + Type: Usable + Weight: 10 + - Id: 12521 + AegisName: E_S_Def_Potion + Name: E S Def Potion + Type: Usable + Weight: 10 + - Id: 12522 + AegisName: E_Blessing_10_Scroll + Name: Blessing Scroll Lv 10 + Type: Usable + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemskill "AL_BLESSING",10; + - Id: 12523 + AegisName: E_Inc_Agi_10_Scroll + Name: Increase Agility Scroll Lv 10 + Type: Usable + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemskill "AL_INCAGI",10; + - Id: 12524 + AegisName: E_Aspersio_5_Scroll + Name: Aspersio Scroll Lv 5 + Type: Usable + Buy: 2 + Weight: 10 + Script: | + itemskill "PR_ASPERSIO",5; + - Id: 12525 + AegisName: E_Assumptio_5_Scroll + Name: Assumptio Scroll Lv 5 + Type: Usable + Buy: 2 + Weight: 10 + Script: | + itemskill "HP_ASSUMPTIO",5; + - Id: 12526 + AegisName: E_Wind_Walk_10_Scroll + Name: Wind Walk Scroll Lv 10 + Type: Usable + Buy: 2 + Weight: 10 + Script: | + itemskill "SN_WINDWALK",10; + - Id: 12527 + AegisName: E_Adrenaline_Scroll + Name: Adrenaline Scroll + Type: Usable + Buy: 2 + Weight: 10 + Script: | + itemskill "BS_ADRENALINE",5; + - Id: 12528 + AegisName: E_Convex_Mirror + Name: Convex Mirror + Type: Usable + Buy: 2 + Weight: 10 + Script: | + sc_start SC_BOSSMAPINFO,600000,0; + - Id: 12529 + AegisName: White_Slim_Potion_Box + Name: White Slim Potion Box + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 547,200; + - Id: 12530 + AegisName: Mastela_Fruit_Box + Name: Mastela Fruit Box + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 522,200; + - Id: 12531 + AegisName: White_Potion_Box + Name: White Potion Box + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 504,100; + - Id: 12532 + AegisName: Royal_Jelly_Box2 + Name: Royal Jelly Box + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 526,100; + - Id: 12533 + AegisName: Blue_Herb_Box2 + Name: Blue Herb Box + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 510,100; + - Id: 12534 + AegisName: Yggdrasil_Seed_Box + Name: Yggdrasil Seed Box + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 608,30; + - Id: 12535 + AegisName: Iggdrasilberry_Box + Name: Iggdrasilberry Box + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 607,15; + - Id: 12536 + AegisName: NY_Rice_Cake_Soup + Name: NY Rice Cake Soup + Type: Usable + Buy: 20 + Weight: 100 + Flags: + BuyingStore: true + - Id: 12537 + AegisName: Solo_Gift_Basket + Name: Solo Gift Basket + Type: Usable + Buy: 1000 + Weight: 10 + Flags: + Container: true + Script: | + /*getgroupitem(IG_Solo_Gift_Basket);*/ getitem 597,5; getitem 596,3; getitem 561,3; getitem 573,4; getitem 559,10; getitem 560,10; + - Id: 12538 + AegisName: Couple_Event_Basket + Name: Couple Event Basket + Type: Usable + Buy: 2000 + Weight: 10 + Flags: + Container: true + Script: | + /*getgroupitem(IG_Couple_Event_Basket);*/ getitem 14546,10; getitem 14547,10; getitem 14548,10; getitem 14549,10; getitem 14550,10; + - Id: 12539 + AegisName: Splendid_Box + Name: Splendid Box + Type: Usable + Buy: 20 + Weight: 100 + Flags: + BuyingStore: true + Script: | + getgroupitem(IG_Splendid_Box); + - Id: 12540 + AegisName: GM_Warp_Box + Name: GM Warp Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_GM_Warp_Box); + - Id: 12541 + AegisName: Fortune_Cookie1 + Name: Fortune Cookie1 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getrandgroupitem(IG_Fortune_Cookie1,1); + - Id: 12542 + AegisName: Fortune_Cookie2 + Name: Fortune Cookie2 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Fortune_Cookie2); + - Id: 12543 + AegisName: Fortune_Cookie3 + Name: Fortune Cookie3 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Fortune_Cookie3); + - Id: 12544 + AegisName: Mystic_Tree_Branch + Name: Mystic Tree Branch + Type: Usable + Buy: 20 + Weight: 10 + - Id: 12545 + AegisName: Lucky_Egg_C5 + Name: Lucky Egg C5 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Lucky_Egg_C5); + - Id: 12546 + AegisName: Suspicious_Dish + Name: Suspicious Dish + Type: Usable + Buy: 100 + Weight: 50 + Script: | + sc_start SC_POISON,50000,0; + - Id: 12547 + AegisName: Chalcenodny_Box + Name: Chalcenodny Box + Type: Usable + Weight: 200 + - Id: 12548 + AegisName: Buy_Market_Permit2 + Name: Shabby Purchase Street Stall License + Type: Usable + Buy: 500 + Weight: 10 + Script: | + buyingstore 2; + - Id: 12549 + AegisName: White_Slim_Pot_Box2 + Name: White Slim Pot Box2 + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 547,100; + - Id: 12550 + AegisName: Poison_Bottle_Box2 + Name: Deadly Poison Box + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 678,30; + - Id: 12551 + AegisName: MVP_Tele_Scroll + Name: MVP Tele Scroll + Type: Usable + Weight: 10 + - Id: 12552 + AegisName: Quest_Tele_Scroll + Name: Quest Tele Scroll + Type: Usable + Weight: 10 + - Id: 12553 + AegisName: Brysinggamen_Piece_Box + Name: Brysinggamen Piece Box + Type: Usable + Buy: 20 + Weight: 10 + - Id: 12554 + AegisName: Asprika_Piece_Box + Name: Asprika Piece Box + Type: Usable + Buy: 20 + Weight: 10 + - Id: 12555 + AegisName: Brynhild_Piece_Box + Name: Brynhild Piece Box + Type: Usable + Buy: 20 + Weight: 10 + - Id: 12556 + AegisName: Sleipnir_Piece_Box + Name: Sleipnir Piece Box + Type: Usable + Buy: 20 + Weight: 10 + - Id: 12557 + AegisName: Mjolnir_Piece_Box + Name: Mjolnir Piece Box + Type: Usable + Buy: 20 + Weight: 10 + - Id: 12558 + AegisName: Magingiorde_Piece_Box + Name: Magingiorde Piece Box + Type: Usable + Buy: 20 + Weight: 10 + - Id: 12559 + AegisName: Tenkaippin_Strong + Name: Tenkaippin Strong + Type: Usable + Buy: 650 + Weight: 200 + - Id: 12560 + AegisName: Tenkaippin_Clean + Name: Tenkaippin Clean + Type: Usable + Buy: 650 + Weight: 200 + - Id: 12561 + AegisName: Mysterious_Seed + Name: Mysterious Seed + Type: Usable + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + Script: | + warp "bif_fild01",32,382; + - Id: 12562 + AegisName: Bubble_Gum_Plus + Name: Bubble Gum Plus + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12563 + AegisName: BM75 + Name: BM75 + Type: Usable + Buy: 2 + Weight: 10 + - Id: 12564 + AegisName: 3D_Glasses_Box + Name: 3D Glasses Box + Type: Usable + Buy: 20 + Weight: 10 + - Id: 12565 + AegisName: Cheer_Scarf_Box + Name: Cheer Scarf Box + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12566 + AegisName: Cheer_Scarf2_Box + Name: Cheer Scarf2 Box + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12567 + AegisName: Cheer_Scarf3_Box + Name: Cheer Scarf3 Box + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12568 + AegisName: Cheer_Scarf4_Box + Name: Cheer Scarf4 Box + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12569 + AegisName: Cheer_Scarf6_Box + Name: Cheer Scarf6 Box + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12570 + AegisName: Cheer_Scarf8_Box + Name: Cheer Scarf8 Box + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12571 + AegisName: Cheer_Scarf10_Box + Name: Cheer Scarf10 Box + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12572 + AegisName: Cheer_Scarf10_Box2 + Name: Cheer Scarf10 Box2 + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12573 + AegisName: Fruit_Basket + Name: Fruit Basket + Type: Usable + Buy: 20 + Weight: 50 + Flags: + Container: true + Script: | + getrandgroupitem(IG_Fruit_Basket,1); getrandgroupitem(IG_Fruit_Basket,1); getrandgroupitem(IG_Fruit_Basket,1); + - Id: 12574 + AegisName: Mora_Berry + Name: Mora Berry + Type: Usable + Weight: 20 + Flags: + BuyingStore: true + Script: | + itemheal 0,rand(50,65); specialeffect2 EF_GUARD; bonus_script "{ bonus2 bAddDefMonster,2137,50; bonus2 bAddDefMonster,2136,50; bonus2 bAddDefMonster,2134,50; bonus2 bAddDefMonster,2133,50; bonus2 bAddDefMonster,2132,50; }",120; + - Id: 12575 + AegisName: Arrow_Of_Elf_Cntr + Name: Arrow Of Elf Cntr + Type: Usable + Buy: 500 + Weight: 250 + Flags: + BuyingStore: true + Script: | + getitem 1773,500; + - Id: 12576 + AegisName: Hunting_Arrow_Cntr + Name: Hunting Arrow Cntr + Type: Usable + Buy: 500 + Weight: 250 + Flags: + BuyingStore: true + Script: | + getitem 1774,500; + - Id: 12577 + AegisName: Lucky_Egg_C6 + Name: Lucky Egg C6 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Lucky_Egg_C6); + - Id: 12578 + AegisName: Rapid_Life_Water + Name: Rapid Life Water + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_HEAL3; bonus_script "{ bonus2 bHPRegenRate,(MaxHp/100*6),3000; }",600; + - Id: 12579 + AegisName: Ring_Of_Valkyrie_Box + Name: Ring Of Valkyrie Box + Type: Usable + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12580 + AegisName: Vending_Search_Scroll + Name: Universal Catalog Silver + Type: Usable + Weight: 10 + Script: | + searchstores 10,0; + - Id: 12581 + AegisName: Vending_Search_Scroll2 + Name: Universal Catalog Gold + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + searchstores 10,1; + - Id: 12582 + AegisName: Siege_Supply_Box + Name: WoE Supply Box + Type: Delayconsume + Weight: 100 + Flags: + BuyingStore: true + - Id: 12583 + AegisName: PR_Team_Box + Name: Public Relations box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6397,1; + - Id: 12584 + AegisName: Develop_Team_box + Name: Development Team box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6398,1; + - Id: 12585 + AegisName: Marketing_Team_Box + Name: Marketing Team box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6399,1; + - Id: 12586 + AegisName: Operating_Team_Box + Name: Operation Team box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6400,1; + - Id: 12587 + AegisName: Summer_Night_box + Name: A Summer Night's Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12246,1; + - Id: 12588 + AegisName: Summer_Night_box2 + Name: A Summer Night's Box2 + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12103,1; + - Id: 12589 + AegisName: Summer_Night_box3 + Name: A Summer Night's Box3 + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12106,1; + - Id: 12591 + AegisName: Uni_Catalog_Bz + Name: Universal Catalog Bronze + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + searchstores 10,1; + - Id: 12592 + AegisName: Cyclops_Box1 + Name: Cyclops Box1 + Type: Delayconsume + Buy: 20 + Weight: 10 + - Id: 12593 + AegisName: Cyclops_Box2 + Name: Cyclops Box2 + Type: Delayconsume + Buy: 20 + Weight: 10 + - Id: 12594 + AegisName: Cyclops_Box3 + Name: Cyclops Box3 + Type: Delayconsume + Buy: 20 + Weight: 10 + - Id: 12595 + AegisName: Lucky_Egg_C7 + Name: Lucky Egg C7 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Lucky_Egg_C7); + - Id: 12596 + AegisName: Magic_Candy + Name: Magic Candy + Type: Usable + Weight: 10 + Delay: + Duration: 180000 + Status: Reuse_Limit_B + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_HASTEUP; bonus_script "{ bonus bMatk,30; bonus bFixedCastrate,-70; bonus bNoCastCancel; bonus2 bSPLossRate,90,10000; }",60,0,0,EFST_MAGIC_CANDY; + - Id: 12597 + AegisName: Opor_Ayam + Name: Opor Ayam + Type: Delayconsume + Buy: 20 + Weight: 150 + - Id: 12598 + AegisName: Dendeng_Balado + Name: Dendeng Balado + Type: Delayconsume + Buy: 20 + Weight: 150 + - Id: 12599 + AegisName: Kurma + Name: Kurma + Type: Delayconsume + Buy: 20 + Weight: 100 + - Id: 12600 + AegisName: Treasure_Box_Scroll + Name: Treasure Chest Summoned + Type: Delayconsume + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12601 + AegisName: Cold_Watermelon_Juice + Name: Fresh Watermelon Juice + Type: Healing + Buy: 20 + Weight: 100 + Script: | + percentheal 5,5; + - Id: 12602 + AegisName: Special_Box1 + Name: Special Box I + Type: Delayconsume + Buy: 100 + Weight: 100 + - Id: 12603 + AegisName: Special_Box2 + Name: Special Box II + Type: Delayconsume + Buy: 100 + Weight: 100 + - Id: 12604 + AegisName: Special_Box3 + Name: Special Box III + Type: Delayconsume + Buy: 100 + Weight: 100 + - Id: 12605 + AegisName: Special_Box4 + Name: Special Box IV + Type: Delayconsume + Buy: 100 + Weight: 100 + - Id: 12606 + AegisName: Special_Box5 + Name: Special Box V + Type: Delayconsume + Buy: 100 + Weight: 100 + - Id: 12607 + AegisName: Lolli_Pop_Box + Name: Delicious Lollipop Box + Type: Delayconsume + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12608 + AegisName: Splendid_Box2 + Name: Splendid Box2 + Type: Delayconsume + Buy: 20 + Weight: 100 + Flags: + BuyingStore: true + - Id: 12609 + AegisName: Old_Ore_Box + Name: Old Ore Box + Type: Usable + Buy: 20 + Weight: 100 + Flags: + BuyingStore: true + Script: | + getgroupitem(IG_Old_Ore_Box); + - Id: 12610 + AegisName: Mysterious_Egg + Name: Mysterious Egg + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem callfunc("F_Rand",12545,12493,12577,12391,12403,12416),1; + - Id: 12612 + AegisName: Old_Coin_Pocket + Name: Old Coin Bag + Type: Usable + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + Container: true + Script: | + getgroupitem(IG_Old_Coin_Pocket); + - Id: 12613 + AegisName: High_Coin_Pocket + Name: Improved Coin Bag + Type: Usable + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + Container: true + Script: | + getgroupitem(IG_High_Coin_Pocket); + - Id: 12614 + AegisName: Mid_Coin_Pocket + Name: Intermediate Coin Bag + Type: Usable + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + Container: true + Script: | + getgroupitem(IG_Mid_Coin_Pocket); + - Id: 12615 + AegisName: Low_Coin_Pocket + Name: Minor Coin Bag + Type: Usable + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + Container: true + Script: | + getgroupitem(IG_Low_Coin_Pocket); + - Id: 12616 + AegisName: Sgrade_Pocket + Name: S Grade Coin Bag + Type: Usable + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + Container: true + Script: | + getgroupitem(IG_Sgrade_Pocket); + - Id: 12617 + AegisName: Agrade_Pocket + Name: A Grade Coin Bag + Type: Usable + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + Container: true + Script: | + getgroupitem(IG_Agrade_Pocket); + - Id: 12618 + AegisName: Bgrade_Pocket + Name: B Grade Coin Bag + Type: Usable + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + Container: true + Script: | + getgroupitem(IG_Bgrade_Pocket); + - Id: 12619 + AegisName: Cgrade_Pocket + Name: C Grade Coin Bag + Type: Usable + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + Container: true + Script: | + getgroupitem(IG_Cgrade_Pocket); + - Id: 12620 + AegisName: Dgrade_Pocket + Name: D Grade Coin Bag + Type: Usable + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + Container: true + Script: | + getgroupitem(IG_Dgrade_Pocket); + - Id: 12621 + AegisName: Egrade_Pocket + Name: E Grade Coin Bag + Type: Usable + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + Container: true + Script: | + getgroupitem(IG_Egrade_Pocket); + - Id: 12622 + AegisName: Boarding_Halter + Name: Reins Of Mount + Type: Usable + Flags: + NoConsume: true + Delay: + Duration: 3000 + Status: All_Riding_Reuse_Limit + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + setmounting(); + UnEquipScript: | + if (ismounting()) setmounting(); + - Id: 12623 + AegisName: High_Weapon_Box + Name: Advanced Weapons Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + Container: true + Script: | + getrandgroupitem(IG_Advanced_Weapons_Box,1); + - Id: 12624 + AegisName: Delicious_Jelly + Name: Delicious Jelly + Type: Healing + Buy: 20 + Weight: 50 + Script: | + percentheal 3,3; + - Id: 12625 + AegisName: Sapa_Feat_Cert_Pack + Name: Sapa Feat Cert Pack + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12626 + AegisName: Wander_Man_Scroll + Name: Wander Man Scroll + Type: Usable + Buy: 20 + Weight: 10 + Script: | + mercenary_create 2213,1800000; + - Id: 12627 + AegisName: Wicked_Nymph_Scroll + Name: Wicked Nymph Scroll + Type: Usable + Buy: 20 + Weight: 10 + Script: | + mercenary_create 2214,1800000; + - Id: 12628 + AegisName: Kasa_Scroll + Name: Kasa Scroll + Type: Usable + Buy: 20 + Weight: 10 + Script: | + mercenary_create 2215,1800000; + - Id: 12629 + AegisName: Salamander_Scroll + Name: Salamander Scroll + Type: Usable + Buy: 20 + Weight: 10 + Script: | + mercenary_create 2216,1800000; + - Id: 12630 + AegisName: Teddy_Bear_Scroll + Name: Teddy Bear Scroll + Type: Usable + Buy: 20 + Weight: 10 + Script: | + mercenary_create 2217,1800000; + - Id: 12631 + AegisName: Macro_Stone_A + Name: Macro Stone A + Type: Usable + - Id: 12632 + AegisName: Macro_Stone_B + Name: Macro Stone B + Type: Usable + - Id: 12633 + AegisName: Malang_Cat_Can + Name: Malangdo Cat Can + Type: Usable + Buy: 20 + Weight: 50 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_MAGICALATTHIT; bonus_script "{ bonus2 bExpAddRace,RC_All,10; bonus2 bDropAddRace,RC_All,20; }",1200,1,0,EFST_OVERLAPEXPUP; + - Id: 12634 + AegisName: Macro_Stone_A1 + Name: Macro Stone A1 + Type: Usable + - Id: 12635 + AegisName: Macro_Stone_A2 + Name: Macro Stone A2 + Type: Usable + - Id: 12636 + AegisName: Malang_Sp_Can + Name: Malangdo Canned Specialties + Type: Usable + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + warp "malangdo",140,114; + - Id: 12637 + AegisName: Gong_Bug_Pocket + Name: Sow Bug Pocket + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 13208,200; + - Id: 12638 + AegisName: Dried_Squid_Box + Name: Dried Squid Box + Type: Usable + Buy: 20 + Weight: 2000 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 13292,200; + - Id: 12639 + AegisName: Flying_Fish_Box + Name: Flying Fish Box + Type: Usable + Buy: 20 + Weight: 2000 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 13293,200; + - Id: 12640 + AegisName: Starfish_Box + Name: Starfish Box + Type: Usable + Buy: 20 + Weight: 500 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 13291,200; + - Id: 12641 + AegisName: Lucky_Egg_C8 + Name: Lucky Egg C8 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Lucky_Egg_C8); + - Id: 12642 + AegisName: Fruit_Of_Mastela_Box2 + Name: Fruit Of Mastela 100 Box + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 522,100; + - Id: 12643 + AegisName: E_Coin_Pack50 + Name: E Coin Pack50 + Type: Usable + Script: | + getitem 6422,50; + - Id: 12644 + AegisName: PCBang_Coupon_Box4 + Name: PCBang Coupon Box4 + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12645 + AegisName: J_Aspersio_5_Scroll_C + Name: J Aspersio 5 Scroll C + Type: Usable + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_ASPERSIO,180000,1; + - Id: 12646 + AegisName: Takoyaki + Name: Fried Octopus Legs + Type: Usable + Buy: 20 + Weight: 30 + Script: | + percentheal 5,5; sc_start SC_LUKFOOD,600000,9; sc_start SC_ATKPOTION,600000,20; sc_start SC_MATKPOTION,600000,20; + - Id: 12647 + AegisName: Ink_Ball + Name: Sea Ink + Type: Usable + Buy: 20 + Weight: 30 + Script: | + getgroupitem(IG_Ink_Ball); + - Id: 12648 + AegisName: Special_Potion_Set + Name: Comprehensive Set Of Potions + Type: Usable + Buy: 20 + Weight: 100 + Script: | + getitem 501,10; getitem 502,10; getitem 503,10; getitem 504,10; getitem 505,10; + - Id: 12649 + AegisName: Lv70_Imperial_Gift + Name: Level 70 Bounty + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12073,5; getitem 12088,5; getitem 12078,5; getitem 12083,5; getitem 12093,5; getitem 12098,5; + - Id: 12650 + AegisName: Lv90_Imperial_Gift + Name: Level 90 Bounty + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12263,5; + - Id: 12651 + AegisName: Lv110_Imperial_Gift + Name: Level 110 Bounty + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12623,1; getitem 16765,1; getitem 16765,1; getitem 16765,1; + - Id: 12652 + AegisName: Lv130_Imperial_Gift + Name: Level 130 Bounty + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12613,10; + - Id: 12653 + AegisName: Lv150_Imperial_Gift + Name: Level 150 Bounty + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 16740,1; getitem 16740,1; getitem 16740,1; getitem 5364,1; + - Id: 12654 + AegisName: Lucky_Egg_C9 + Name: Lucky Egg C9 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Lucky_Egg_C9); + - Id: 12655 + AegisName: Brain_Powder + Name: Brain Powder + Type: Usable + Buy: 2000 + Weight: 100 + - Id: 12656 + AegisName: Magical_Powder + Name: Magical Powder + Type: Usable + Buy: 3000 + Weight: 200 + - Id: 12657 + AegisName: Madness_Powder + Name: Madness Powder + Type: Usable + Buy: 4000 + Weight: 300 + - Id: 12658 + AegisName: Trans_Scroll_Devi + Name: Transformation Scroll(Deviruchi) + Type: Usable + Buy: 20 + Weight: 10 + Delay: + Duration: 10000 + Status: Reuse_Limit_Mtf + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + transform 1109,1200000,SC_MTF_ASPD,10,5; showscript "Traaaansformation-!! Deviruchi form!!"; + - Id: 12659 + AegisName: Trans_Scroll_Ray_Arch + Name: Transformation Scroll(Raydric) + Type: Usable + Buy: 20 + Weight: 10 + Delay: + Duration: 10000 + Status: Reuse_Limit_Mtf + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + transform 1276,1200000,SC_MTF_RANGEATK,25; showscript "Traaaansformation-!! Raydric form!!"; + - Id: 12660 + AegisName: Trans_Scroll_Mavka + Name: Transformation Scroll(Mavka) + Type: Usable + Buy: 20 + Weight: 10 + Delay: + Duration: 10000 + Status: Reuse_Limit_Mtf + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + transform 1884,1200000,SC_MTF_RANGEATK,25; showscript "Traaaansformation-!! Mavka form!!"; + - Id: 12661 + AegisName: Trans_Scroll_Marduk + Name: Transformation Scroll(Marduk) + Type: Usable + Buy: 20 + Weight: 10 + Delay: + Duration: 10000 + Status: Reuse_Limit_Mtf + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + transform 1140,1200000,SC_MTF_MATK,25; showscript "Traaaansformation-!! Marduk form!!"; + - Id: 12662 + AegisName: Trans_Scroll_Banshee + Name: Transformation Scroll(Banshee) + Type: Usable + Buy: 20 + Weight: 10 + Delay: + Duration: 10000 + Status: Reuse_Limit_Mtf + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + transform 1867,1200000,SC_MTF_MATK,25; showscript "Traaaansformation-!! Banshee form!!"; + - Id: 12663 + AegisName: Trans_Scroll_Poring + Name: Transformation Scroll(Poring) + Type: Usable + Buy: 20 + Weight: 10 + Delay: + Duration: 10000 + Status: Reuse_Limit_Mtf + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + transform 1002,1200000,SC_MTF_CRIDAMAGE,25; showscript "Traaaansformation-!! Poring form!!"; + - Id: 12664 + AegisName: Trans_Scroll_Golem + Name: Transformation Scroll(Golem) + Type: Usable + Buy: 20 + Weight: 10 + Delay: + Duration: 10000 + Status: Reuse_Limit_Mtf + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + transform 1040,1200000,SC_MTF_MLEATKED,5,20,2; showscript "Traaaansformation-!! Golem form!!"; + - Id: 12665 + AegisName: Grovel_Buff + Name: Grovel Buff + Type: Usable + - Id: 12666 + AegisName: Thai_Perfume_MATK + Name: Thai Perfume MATK + Type: Usable + Buy: 20 + Weight: 10 + Script: | + specialeffect2 EF_MAGICALATTHIT; bonus_script "{ bonus bMatk,24; }",600,0,0,EFST_SKF_MATK; + - Id: 12667 + AegisName: Thai_Perfume_ATK + Name: Thai Perfume ATK + Type: Usable + Buy: 20 + Weight: 10 + Script: | + specialeffect2 EF_MAGICALATTHIT; bonus_script "{ bonus bBaseAtk,24; }",600,0,0,EFST_SKF_ATK; + - Id: 12668 + AegisName: Thai_Perfume_ASPD + Name: Thai Perfume ASPD + Type: Usable + Buy: 20 + Weight: 10 + Script: | + specialeffect2 EF_MAGICALATTHIT; bonus_script "{ bonus bAspdRate,3; }",600,0,0,EFST_SKF_ASPD; + - Id: 12669 + AegisName: Thai_Perfume_CAST + Name: Thai Perfume CAST + Type: Usable + Buy: 20 + Weight: 10 + Script: | + specialeffect2 EF_MAGICALATTHIT; bonus_script "{ bonus bVariableCastrate,-5; }",600,0,0,EFST_SKF_CAST; + - Id: 12670 + AegisName: Beast_Powder + Name: Beast Powder + Type: Usable + Buy: 20 + Weight: 100 + - Id: 12671 + AegisName: 99lv_Battle_Manual + Name: 99lv Battle Manual + Type: Usable + Buy: 20 + Weight: 10 + - Id: 12672 + AegisName: Start_New_Box + Name: Start New Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 617,2; getitem 12263,2; getitem 12329,3; getitem 12330,2; + - Id: 12673 + AegisName: Lucky_Egg_C10 + Name: Lucky Egg C10 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Lucky_Egg_C10); + - Id: 12674 + AegisName: God_Material_Box + Name: God Material Box + Type: Usable + Buy: 20 + Weight: 500 + Script: | + getgroupitem(IG_God_Material_Box); + - Id: 12675 + AegisName: Sg_Weapon_Supply_Box + Name: WoE Weapon Supply Box + Type: Usable + Buy: 20 + Weight: 500 + Flags: + BuyingStore: true + Container: true + Script: | + getgroupitem(IG_Sg_Weapon_Supply_Box); + - Id: 12676 + AegisName: Sg_Violet_Potion_Box + Name: Siege Violet Potion Box + Type: Usable + Buy: 20 + Weight: 500 + Flags: + BuyingStore: true + Script: | + getitem 11547,50; + - Id: 12677 + AegisName: Siege_Arrow_Quiver_S + Name: Siege Arrow Quiver S + Type: Usable + Buy: 2 + Weight: 100 + EquipLevelMin: 130 + Flags: + BuyingStore: true + Script: | + getitem 1775,200; + - Id: 12678 + AegisName: Siege_Arrow_Quiver_A + Name: Siege Arrow Quiver A + Type: Usable + Buy: 2 + Weight: 100 + EquipLevelMin: 95 + Flags: + BuyingStore: true + Script: | + getitem 1776,200; + - Id: 12679 + AegisName: Sg_White_Potion_Box + Name: Siege White Potion Box + Type: Usable + Buy: 20 + Weight: 200 + Flags: + BuyingStore: true + Script: | + getitem 11548,30; + - Id: 12680 + AegisName: Sg_Blue_Potion_Box + Name: Siege Blue Potion Box + Type: Usable + Buy: 20 + Weight: 200 + Flags: + BuyingStore: true + Script: | + getitem 11549,10; + - Id: 12681 + AegisName: Nestea_Lemon + Name: Nestea Lemon + Type: Usable + Weight: 50 + - Id: 12682 + AegisName: Nestea_Blacktea + Name: Nestea Black Tea + Type: Usable + Weight: 30 + - Id: 12683 + AegisName: Sg_Vi_Potion_Box200 + Name: Siege Violet Potion Box (200) + Type: Usable + Buy: 20 + Weight: 200 + Flags: + BuyingStore: true + Script: | + getitem 11547,200; + - Id: 12684 + AegisName: ASPD_Potion + Name: ASPD Potion + Type: Usable + Weight: 10 + Delay: + Duration: 900000 + Status: Reuse_Limit_Aspd_Potion + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_ATTHASTE_CASH,900000,3; + - Id: 12685 + AegisName: Gryphon_Egg_Scroll + Name: Gryphon Egg Scroll + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12686 + AegisName: Str_Dish20 + Name: Str Dish20 + Type: Usable + Weight: 10 + - Id: 12687 + AegisName: Int_Dish20 + Name: Int Dish20 + Type: Usable + Weight: 10 + - Id: 12688 + AegisName: Vit_Dish20 + Name: Vit Dish20 + Type: Usable + Weight: 10 + - Id: 12689 + AegisName: Dex_Dish20 + Name: Dex Dish20 + Type: Usable + Weight: 10 + - Id: 12690 + AegisName: Old_C_Album_Helm + Name: Headgear Card Album + Type: Usable + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + Container: true + Script: | + getrandgroupitem(IG_CardAlbum_Helm,1); + - Id: 12691 + AegisName: Old_C_Album_Armor + Name: Armor Card Album + Type: Usable + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + Container: true + Script: | + getrandgroupitem(IG_CardAlbum_Armor,1); + - Id: 12692 + AegisName: Old_C_Album_Shield + Name: Shield Card Album + Type: Usable + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + Container: true + Script: | + getrandgroupitem(IG_CardAlbum_Shield,1); + - Id: 12693 + AegisName: Old_C_Album_Garment + Name: Garment Card Album + Type: Usable + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + Container: true + Script: | + getrandgroupitem(IG_CardAlbum_Garment,1); + - Id: 12694 + AegisName: Old_C_Album_Shoes + Name: Shoes Card Album + Type: Usable + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + Container: true + Script: | + getrandgroupitem(IG_CardAlbum_Shoes,1); + - Id: 12695 + AegisName: Old_C_Album_Acc + Name: Accessory Card Album + Type: Usable + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + Container: true + Script: | + getrandgroupitem(IG_CardAlbum_Acc,1); + - Id: 12696 + AegisName: RWC_Cele_Fire + Name: RWC Celebration Firecracker + Type: Usable + Weight: 20 + Script: | + bonus_script "{ bonus bAllStats,3; bonus2 bAddClass,Class_All,5; bonus2 bMagicAddClass,Class_All,5; bonus bMatkRate,5; }",10,0,0,EFST_2011RWC; + - Id: 12697 + AegisName: RWC_Cele_Fire2 + Name: RWC Celebration Firecracker + Type: Usable + Weight: 20 + Script: | + bonus_script "{ bonus bAllStats,3; bonus2 bAddClass,Class_All,5; bonus2 bMagicAddClass,Class_All,5; bonus bMatkRate,5; }",10,0,0,EFST_2011RWC; + - Id: 12698 + AegisName: Old_C_Album_Weapon + Name: Weapon Card Album + Type: Usable + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + Container: true + Script: | + getrandgroupitem(IG_CardAlbum_Weapon,1); + - Id: 12699 + AegisName: Tikbalang_Belt + Name: Tikbalang Harness + Type: Usable + Buy: 20 + Weight: 50 + Flags: + BuyingStore: true + Script: | + pet 2313; + - Id: 12700 + AegisName: Insideout_Shirt + Name: Inside-out Shirt + Type: Usable + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + Script: | + warp "malaya",242,211; + - Id: 12701 + AegisName: Old_Blue_Box_F + Name: Old Blue Box + Type: Usable + Weight: 10 + - Id: 12702 + AegisName: Old_Bleu_Box + Name: Old Navy Box + Type: Usable + Weight: 200 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getrandgroupitem(IG_BleuBox,1); getrandgroupitem(IG_BleuBox,1); + - Id: 12703 + AegisName: Holy_Egg_2 + Name: Holy Egg + Type: Usable + Weight: 50 + Flags: + Container: true + Script: | + getrandgroupitem(IG_Holy_Egg_2,1); + - Id: 12704 + AegisName: Elixir_Of_Life + Name: Elixir of Life + Type: Healing + Weight: 10 + EquipLevelMin: 85 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + percentheal 100,0; + - Id: 12705 + AegisName: Noble_Nameplate + Name: Noble Nameplate + Type: Usable + Weight: 100 + EquipLevelMin: 90 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_EXPBOOST,1800000,100; + - Id: 12706 + AegisName: Lucky_Cookie01 + Name: Lucky Cookie + Type: Delayconsume + Weight: 100 + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "PR_GLORIA",5; + - Id: 12707 + AegisName: Lucky_Cookie02 + Name: Lucky Cookie + Type: Delayconsume + Weight: 100 + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "PR_MAGNIFICAT",1; + - Id: 12708 + AegisName: Lucky_Cookie03 + Name: Lucky Cookie + Type: Delayconsume + Weight: 100 + NoUse: + Override: 100 + Sitting: true + Script: | + itemskill "PR_IMPOSITIO",3; + - Id: 12709 + AegisName: Guyak_Candy + Name: Guyak Candy + Type: Healing + Weight: 150 + Script: | + percentheal 30,30; + - Id: 12710 + AegisName: Guyak_Pudding + Name: Guyak Pudding + Type: Usable + Weight: 200 + Script: | + sc_start SC_SPEEDUP1,300000,50; + - Id: 12711 + AegisName: Pretzel + Name: Pretzel + Type: Healing + Buy: 2 + Weight: 100 + Script: | + itemheal rand(50,90),0; + - Id: 12712 + AegisName: Green_Beer + Name: Green Beer + Type: Usable + Buy: 2 + Weight: 100 + Script: | + percentheal 0,50; + - Id: 12713 + AegisName: Monster_Extract + Name: Monster Extract + Type: Usable + Buy: 20 + Weight: 10 + - Id: 12714 + AegisName: Easter_Scroll + Name: Easter Scroll + Type: Usable + Buy: 1 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getrandgroupitem(IG_Easter_Scroll,1); + - Id: 12715 + AegisName: Black_Treasure_Box + Name: Black Treasure Box + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12716 + AegisName: Indian_Rice_Cake + Name: Indian Rice Cake + Type: Usable + Weight: 10 + - Id: 12717 + AegisName: Poison_Paralysis + Name: Paralyze + Type: Usable + Buy: 2 + Weight: 20 + Flags: + BuyingStore: true + - Id: 12718 + AegisName: Poison_Leech + Name: Leech End + Type: Usable + Buy: 2 + Weight: 20 + Flags: + BuyingStore: true + - Id: 12719 + AegisName: Poison_Oblivion + Name: Oblivion Curse + Type: Usable + Buy: 2 + Weight: 20 + Flags: + BuyingStore: true + - Id: 12720 + AegisName: Poison_Contamination + Name: Disheart + Type: Usable + Buy: 2 + Weight: 20 + Flags: + BuyingStore: true + - Id: 12721 + AegisName: Poison_Numb + Name: Toxin + Type: Usable + Buy: 2 + Weight: 20 + Flags: + BuyingStore: true + - Id: 12722 + AegisName: Poison_Fever + Name: Pyrexia + Type: Usable + Buy: 2 + Weight: 20 + Flags: + BuyingStore: true + - Id: 12723 + AegisName: Poison_Laughing + Name: Magic Mushroom + Type: Usable + Buy: 2 + Weight: 20 + Flags: + BuyingStore: true + - Id: 12724 + AegisName: Poison_Fatigue + Name: Venom Bleed + Type: Usable + Buy: 2 + Weight: 20 + Flags: + BuyingStore: true + - Id: 12725 + AegisName: Runstone_Nosiege + Name: Nauthiz Rune + Type: Usable + Buy: 100 + Weight: 10 + Delay: + Duration: 120000 + Status: Reuse_Refresh + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_REFRESH",1; + - Id: 12726 + AegisName: Runstone_Rhydo + Name: Raido Rune + Type: Usable + Buy: 100 + Weight: 10 + Delay: + Duration: 30000 + Status: Reuse_Crushstrike + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_CRUSHSTRIKE",1; + - Id: 12727 + AegisName: Runstone_Verkana + Name: Berkana Rune + Type: Usable + Buy: 100 + Weight: 10 + Delay: + Duration: 60000 + Status: Reuse_Millenniumshield + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_MILLENNIUMSHIELD",1; + - Id: 12728 + AegisName: Runstone_Isia + Name: Isa Rune + Type: Usable + Buy: 100 + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_VITALITYACTIVATION",1; + - Id: 12729 + AegisName: Runstone_Asir + Name: Othila Rune + Type: Usable + Buy: 100 + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_FIGHTINGSPIRIT",1; + - Id: 12730 + AegisName: Runstone_Urj + Name: Uruz Rune + Type: Usable + Buy: 100 + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_ABUNDANCE",1; + - Id: 12731 + AegisName: Runstone_Turisus + Name: Thurisaz Rune + Type: Usable + Buy: 100 + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_GIANTGROWTH",1; + - Id: 12732 + AegisName: Runstone_Pertz + Name: Wyrd Rune + Type: Usable + Buy: 100 + Weight: 10 + Delay: + Duration: 1000 + Status: Reuse_Stormblast + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_STORMBLAST",1; + - Id: 12733 + AegisName: Runstone_Hagalas + Name: Hagalaz Rune + Type: Usable + Buy: 100 + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_STONEHARDSKIN",1; + - Id: 12734 + AegisName: Runstone_Quality + Name: Luxurious Rune + Type: Healing + Buy: 2 + Weight: 100 + Jobs: + Knight: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Flags: + BuyingStore: true + Script: | + makerune 8; + - Id: 12735 + AegisName: Runstone_Ancient + Name: Ancient Rune + Type: Healing + Buy: 2 + Weight: 100 + Jobs: + Knight: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Flags: + BuyingStore: true + Script: | + makerune 30; + - Id: 12736 + AegisName: Runstone_Mystic + Name: Mystic Rune + Type: Healing + Buy: 2 + Weight: 100 + Jobs: + Knight: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Flags: + BuyingStore: true + Script: | + makerune 60; + - Id: 12737 + AegisName: Runstone_Ordinary + Name: General Rune + Type: Healing + Buy: 2 + Weight: 100 + Jobs: + Knight: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Flags: + BuyingStore: true + Script: | + makerune 4; + - Id: 12738 + AegisName: Runstone_Rare + Name: Rare Rune + Type: Healing + Buy: 2 + Weight: 100 + Jobs: + Knight: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Flags: + BuyingStore: true + Script: | + makerune 15; + - Id: 12739 + AegisName: Snow_Flower + Name: Snow Flowers + Type: Usable + Weight: 10 + Flags: + BuyingStore: true + Script: | + percentheal 10,10; + - Id: 12740 + AegisName: Inc_Str_Scroll + Name: Amplification Scroll + Type: Usable + Buy: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_POTION_BERSERK; bonus_script "{ bonus bStr,20; }",60,0,0,EFST_STR_SCROLL; + - Id: 12741 + AegisName: Inc_Int_Scroll + Name: Intellect Amplification Scroll + Type: Usable + Buy: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_SPELLBREAKER; bonus_script "{ bonus bInt,20; }",60,0,0,EFST_INT_SCROLL; + - Id: 12742 + AegisName: Valentine_Gift_Box1 + Name: Valentine Gift Box + Type: Usable + Script: | + getitem 7946,1; + - Id: 12743 + AegisName: Valentine_Gift_Box2 + Name: Valentine Gift Box + Type: Usable + Script: | + getitem 7947,1; + - Id: 12744 + AegisName: Chocotate_Box + Name: Chocolate Box + Type: Usable + Script: | + getitem 558,1; + - Id: 12745 + AegisName: Skull_Scroll + Name: Skull Scroll + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12746 + AegisName: Destruction_Scroll + Name: Destruction Scroll + Type: Usable + Buy: 20 + Weight: 10 + - Id: 12747 + AegisName: Royal_Scroll + Name: Royal Scroll + Type: Usable + Buy: 20 + Weight: 10 + - Id: 12748 + AegisName: Immune_Scroll + Name: Immune Scroll + Type: Usable + Buy: 20 + Weight: 10 + - Id: 12749 + AegisName: Mystic_Scroll + Name: Mystic Scroll + Type: Usable + Buy: 20 + Weight: 10 + - Id: 12750 + AegisName: Battle_Scroll + Name: Battle Scroll + Type: Usable + Buy: 20 + Weight: 10 + - Id: 12751 + AegisName: Armor_Scroll + Name: Armor Scroll + Type: Usable + Buy: 20 + Weight: 10 + - Id: 12752 + AegisName: Prayer_Scroll + Name: Prayer Scroll + Type: Usable + Buy: 20 + Weight: 10 + - Id: 12753 + AegisName: Soul_Scroll + Name: Soul Scroll + Type: Usable + Buy: 20 + Weight: 10 + - Id: 12754 + AegisName: New_Year_Bun + Name: Chinese Pastel + Type: Usable + Weight: 10 + Script: | + percentheal 50,50; + - Id: 12755 + AegisName: Traditional_Firecrack + Name: Chinese Fireworks + Type: Usable + Buy: 2 + Weight: 10 + Script: | + specialeffect2 EF_POK_JAP; /* itemskill "MO_CALLSPIRITS",3; itemskill "MO_FINGEROFFENSIVE",5; */ + - Id: 12756 + AegisName: New_Gift_Envelope + Name: Chinese New Year Envelope + Type: Usable + Buy: 2 + Weight: 10 + Flags: + Container: true + Script: | + /*getgroupitem(IG_New_Gift_Envelope);*/ getrandgroupitem(IG_New_Gift_Envelope,0); + - Id: 12757 + AegisName: Loyal_Ring1_Box + Name: Loyal Ring1 Box + Type: Usable + Buy: 10 + - Id: 12758 + AegisName: Loyal_Ring2_Box + Name: Loyal Ring2 Box + Type: Usable + Buy: 10 + - Id: 12759 + AegisName: Loyal_Ring3_Box + Name: Loyal Ring3 Box + Type: Usable + Buy: 10 + - Id: 12760 + AegisName: Bubble_Gum_Green + Name: Bubble Gum Green + Type: Usable + Buy: 20 + Weight: 10 + Script: | + sc_start SC_INCSTR,1200000,10; + - Id: 12761 + AegisName: Bubble_Gum_Yellow + Name: Bubble Gum Yellow + Type: Usable + Buy: 20 + Weight: 10 + Script: | + sc_start SC_INCINT,1200000,10; + - Id: 12762 + AegisName: Bubble_Gum_Orange + Name: Bubble Gum Orange + Type: Usable + Buy: 20 + Weight: 10 + Script: | + sc_start SC_INCDEX,1200000,10; + - Id: 12763 + AegisName: Bubble_Gum_Red + Name: Bubble Gum Red + Type: Usable + Buy: 20 + Weight: 10 + Script: | + sc_start SC_INCAGI,1200000,10; + - Id: 12764 + AegisName: Fools_Day_Box_Tw + Name: Fools Day Box Tw + Type: Usable + - Id: 12765 + AegisName: Summer_Knight_Box + Name: Summer Knight Box + Type: Usable + Buy: 20 + Weight: 10 + - Id: 12766 + AegisName: Reward_Job_BM25 + Name: Reward Job BM25 + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12767 + AegisName: Passion_FB_Hat_Box + Name: Passion FB Hat Box + Type: Usable + Flags: + Container: true + Script: | + /*getgroupitem(IG_Passion_FB_Hat_Box);*/ rentitem 5856,3600; + - Id: 12768 + AegisName: Cool_FB_Hat_Box + Name: Cool FB Hat Box + Type: Usable + Flags: + Container: true + Script: | + /*getgroupitem(IG_Cool_FB_Hat_Box);*/ rentitem 5857,3600; + - Id: 12769 + AegisName: Victory_FB_Hat_Box + Name: Victory FB Hat Box + Type: Usable + Flags: + Container: true + Script: | + /*getgroupitem(IG_Victory_FB_Hat_Box);*/ rentitem 5858,3600; + - Id: 12770 + AegisName: Glory_FB_Hat_Box + Name: Glory FB Hat Box + Type: Usable + Flags: + Container: true + Script: | + /*getgroupitem(IG_Glory_FB_Hat_Box);*/ rentitem 5859,86400; + - Id: 12771 + AegisName: Passion_Hat_Box2 + Name: Passion Hat Box2 + Type: Usable + Flags: + Container: true + Script: | + /*getgroupitem(IG_Passion_Hat_Box2);*/ rentitem 5856,21600; + - Id: 12772 + AegisName: Cool_Hat_Box2 + Name: Cool Hat Box2 + Type: Usable + Flags: + Container: true + Script: | + /*getgroupitem(IG_Cool_Hat_Box2);*/ rentitem 5857,21600; + - Id: 12773 + AegisName: Victory_Hat_Box2 + Name: Victory Hat Box2 + Type: Usable + Flags: + Container: true + Script: | + /*getgroupitem(IG_Victory_Hat_Box2);*/ rentitem 5858,21600; + - Id: 12774 + AegisName: Empty_Potion_Bottle + Name: Empty Potion Bottle + Type: Usable + - Id: 12775 + AegisName: Ancient_Spirit_Agimat + Name: Greater Agimat of Ancient Spirit + Type: Usable + Buy: 20 + Weight: 600 + Flags: + BuyingStore: true + Script: | + specialeffect2 EF_PROVIDENCE; bonus_script "{ bonus2 bAddRace,RC_Demon,10; bonus2 bMagicAddRace,RC_Demon,10; }",1200; + - Id: 12776 + AegisName: Agi_Dish20 + Name: Agi Dish20 + Type: Usable + Weight: 10 + - Id: 12777 + AegisName: Luk_Dish20 + Name: Luk Dish20 + Type: Usable + Weight: 10 + - Id: 12778 + AegisName: Bapho_Jr_Scroll + Name: Bapho Jr Scroll + Type: Usable + Buy: 20 + Weight: 10 + Script: | + mercenary_create 2325,1800000; + - Id: 12779 + AegisName: Galapago_Scroll + Name: Galapago Scroll + Type: Usable + Buy: 20 + Weight: 10 + Script: | + mercenary_create 2326,1800000; + - Id: 12780 + AegisName: 10M_Zeny_Check + Name: 10M Zeny Check + Type: Usable + - Id: 12781 + AegisName: 1M_Zeny_Check + Name: 1M Zeny Check + Type: Usable + - Id: 12782 + AegisName: 100T_Zeny_Check + Name: 100T Zeny Check + Type: Usable + - Id: 12783 + AegisName: 10000_Zeny_Check + Name: 10000 Zeny Check + Type: Usable + - Id: 12784 + AegisName: 1000_Zeny_Check + Name: 1000 Zeny Check + Type: Usable + - Id: 12785 + AegisName: Dragon_Egg_Scroll + Name: Dragon Egg Scroll + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12786 + AegisName: Change_Slot_Card + Name: Character Position Change Coupon + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + CharMoves++; + - Id: 12787 + AegisName: Diabolic_Scroll + Name: Diabolic Scroll + Type: Usable + Buy: 20 + Weight: 10 + Script: | + mercenary_create 2342,1800000; + - Id: 12788 + AegisName: No100_Firecracker + Name: No100 Firecracker + Type: Usable + Buy: 2 + Weight: 20 + - Id: 12789 + AegisName: Juicy_Fruit + Name: Juicy Fruit + Type: Usable + Buy: 2 + Weight: 100 + - Id: 12790 + AegisName: Change_Name_Card + Name: Character Name Change Coupon + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + CharRename++; + - Id: 12791 + AegisName: Combat_Pill + Name: Combat Pill + Type: Usable + Buy: 20 + Weight: 150 + Script: | + specialeffect2 EF_POTION_BERSERK; bonus_script "{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bMaxHPrate,3; bonus bMaxSPrate,3; }",60,0,0,EFST_GM_BATTLE; /* showscript */ + - Id: 12792 + AegisName: P_Combat_Pill + Name: P Combat Pill + Type: Usable + Buy: 20 + Weight: 150 + Script: | + specialeffect2 EF_POTION_BERSERK; bonus_script "{ bonus2 bAddClass,Class_All,10; bonus bMatkRate,10; bonus bMaxHPrate,5; bonus bMaxSPrate,5; }",60,0,0,EFST_GM_BATTLE; + - Id: 12793 + AegisName: Combat_Pill_Box10 + Name: Combat Pill Box10 + Type: Usable + Buy: 20 + Script: | + getitem 12791,10; + - Id: 12794 + AegisName: P_Combat_Pill_Box10 + Name: P Combat Pill Box10 + Type: Usable + Buy: 20 + Script: | + getitem 12792,10; + - Id: 12795 + AegisName: 2011_RWC_Scroll_Kr + Name: 2011 RWC Scroll Kr + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12796 + AegisName: Red_Booster + Name: Red Booster + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemskill "AC_CONCENTRATION",max(getskilllv("AC_CONCENTRATION"),3); specialeffect2 EF_POTION_BERSERK; showscript "Oh My GOODNESS!!! I FEEL AWESOMELY STRONG!!! WOWOW"; + - Id: 12797 + AegisName: Wish_Maiden_Scroll + Name: Wish Maiden Scroll + Type: Usable + Buy: 20 + Weight: 10 + Script: | + mercenary_create 2344,1800000; + - Id: 12798 + AegisName: Zealotus_Scroll + Name: Zealotus Scroll + Type: Usable + Buy: 20 + Weight: 10 + Script: | + mercenary_create 2345,1800000; + - Id: 12799 + AegisName: PCBang_Coupon_Box5 + Name: PCBang Coupon Box5 + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12800 + AegisName: Ktullanux_Scroll + Name: Ktullanux Scroll + Type: Usable + Buy: 20 + Weight: 10 + Script: | + mercenary_create 2346,1800000; + - Id: 12801 + AegisName: Eddga_Scroll + Name: Eddga Scroll + Type: Usable + Buy: 20 + Weight: 10 + Script: | + mercenary_create 2347,1800000; + - Id: 12802 + AegisName: Time_Guardian_Box + Name: Time Guardian Box + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12803 + AegisName: Beginner_Kit_Box + Name: Beginner Kit Box + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12804 + AegisName: Cru_Scroll + Name: Cru Scroll + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12805 + AegisName: Mystic_Powder + Name: Mystic Powder + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12806 + AegisName: Scaraba_Scroll + Name: Scaraba Scroll + Type: Usable + Buy: 20 + Weight: 10 + Script: | + mercenary_create 2378,1800000; + - Id: 12807 + AegisName: Mercenary_Casting_ + Name: Mercenary Casting + Type: Usable + EquipLevelMin: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12160,5; getitem 12170,5; getitem 12180,5; getitem 12808,1; + - Id: 12808 + AegisName: Mother_Love_Box + Name: Mother Love Box + Type: Usable + EquipLevelMin: 40 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12809 + AegisName: Level_Up_Box + Name: Level Up Box + Type: Usable + EquipLevelMin: 120 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12263,5; getitem 12264,5; getitem 12265,5; getitem 12766,5; getitem 12819,1; + - Id: 12810 + AegisName: Event_Gift_Box + Name: Event Gift Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12811 + AegisName: Event_Gift_Box_ + Name: Event Gift Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 607,3; getitem callfunc("F_Rand",22528,22802,12246,6228,6229,6230,6232,6233,6234),1; + - Id: 12812 + AegisName: Snow_Flip + Name: Snow Flip + Type: Delayconsume + Weight: 10 + Flags: + BuyingStore: true + Delay: + Duration: 5000 + Status: Reuse_Limit_Ecl + Script: | + itemskill "ECL_SNOWFLIP",1; + - Id: 12813 + AegisName: Peony_Mommy + Name: Peony Mamy + Type: Delayconsume + Weight: 10 + Flags: + BuyingStore: true + Delay: + Duration: 5000 + Status: Reuse_Limit_Ecl + Script: | + itemskill "ECL_PEONYMAMY",1; + - Id: 12814 + AegisName: Slapping_Herb + Name: Slapping Herb + Type: Delayconsume + Weight: 10 + Flags: + BuyingStore: true + Delay: + Duration: 5000 + Status: Reuse_Limit_Ecl + Script: | + itemskill "ECL_SADAGUI",1; + - Id: 12815 + AegisName: Yggdrasil_Dust + Name: Yggdrasil Dust + Type: Delayconsume + Weight: 10 + Flags: + BuyingStore: true + Delay: + Duration: 5000 + Status: Reuse_Limit_Ecl + Script: | + itemskill "ECL_SEQUOIADUST",1; + - Id: 12816 + AegisName: Old_Ore_Box_ + Name: Old Ore Box + Type: Usable + EquipLevelMin: 60 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12817 + AegisName: Old_Card_Album_ + Name: Old Card Album + Type: Usable + EquipLevelMin: 80 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getrandgroupitem(IG_CardAlbum,1); getitem 12818,1; + - Id: 12818 + AegisName: High_Weapon_Box_ + Name: High Weapon Box + Type: Usable + EquipLevelMin: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getrandgroupitem(IG_Advanced_Weapons_Box,1); getitem 12809,1; + - Id: 12819 + AegisName: Zherlthsh_Tck_Box_ + Name: Zherlthsh Tck Box + Type: Usable + EquipLevelMin: 150 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6184,1; + - Id: 12820 + AegisName: Mao_Guai_Scroll + Name: Mao Guai Scroll + Type: Usable + Buy: 20 + Weight: 10 + Script: | + mercenary_create 2348,1800000; + - Id: 12821 + AegisName: Loli_Ruri_Scroll + Name: Loli Ruri Scroll + Type: Usable + Buy: 20 + Weight: 10 + Script: | + mercenary_create 2349,1800000; + - Id: 12822 + AegisName: Songpyun_Box50 + Name: Songpyun Box50 + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 663,50; + - Id: 12823 + AegisName: Sedora_Scroll + Name: Sedora Scroll + Type: Usable + Buy: 20 + Weight: 10 + Script: | + mercenary_create 2350,1800000; + - Id: 12824 + AegisName: Chepet_Scroll + Name: Chepet Scroll + Type: Usable + Buy: 20 + Weight: 10 + Script: | + mercenary_create 2351,1800000; + - Id: 12826 + AegisName: Wind_Type_Scroll + Name: Wind Type Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Wind_Type_Scroll); + - Id: 12827 + AegisName: Water_Type_Scroll + Name: Water Type Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Water_Type_Scroll); + - Id: 12828 + AegisName: Fire_Type_Scroll + Name: Fire Type Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Fire_Type_Scroll); + - Id: 12829 + AegisName: Earth_Type_Scroll + Name: Earth Type Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Earth_Type_Scroll); + - Id: 12831 + AegisName: Potion_Box + Name: Potion Box + Type: Usable + Weight: 50 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 545,100; getitem 546,100; getitem 547,100; getitem 505,100; + - Id: 12834 + AegisName: Undead_Egg + Name: Undead Egg + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12835 + AegisName: Girls_Heart + Name: Girls Heart + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12837 + AegisName: Wooden_Treasure_Box + Name: Wooden Treasure Box + Type: Usable + - Id: 12838 + AegisName: Iron_Treasure_Box + Name: Iron Treasure Box + Type: Usable + EquipLevelMin: 10 + - Id: 12839 + AegisName: bronze_Treasure_Box + Name: bronze Treasure Box + Type: Usable + EquipLevelMin: 20 + - Id: 12840 + AegisName: Silver_Treasure_Box + Name: Silver Treasure Box + Type: Usable + EquipLevelMin: 30 + - Id: 12841 + AegisName: Golden_Treasure_Box + Name: Golden Treasure Box + Type: Usable + EquipLevelMin: 40 + - Id: 12842 + AegisName: Platinum_Treasure_Box + Name: Platinum Treasure Box + Type: Usable + EquipLevelMin: 50 + - Id: 12843 + AegisName: Pearl_Treasure_Box + Name: Pearl Treasure Box + Type: Usable + EquipLevelMin: 60 + - Id: 12844 + AegisName: Diamond_Treasure_Box + Name: Diamond Treasure Box + Type: Usable + EquipLevelMin: 70 + - Id: 12845 + AegisName: WOB_Amatsu + Name: Amatsu_Butterfly_Wing + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12846 + AegisName: Unripe_Apple2 + Name: Little Unripe Apple + Type: Usable + Buy: 10 + Weight: 50 + Script: | + pet 2398; + - Id: 12847 + AegisName: Old_Equipment_Box + Name: Old Equipment Box + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12848 + AegisName: Falcon_Flute + Name: Falcon Flute + Type: Delayconsume + Weight: 10 + Script: | + if(getskilllv("HT_FALCON")) { if(!checkoption(Option_Wug) && !checkoption(Option_Wugrider)) setfalcon (!checkfalcon()); } + - Id: 12849 + AegisName: Combination_Kit + Name: Combination Kit + Type: Usable + Buy: 40 + Weight: 10 + Script: | + cooking 30; + - Id: 12850 + AegisName: Heaven_Scroll + Name: Heaven Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Heaven_Scroll); + - Id: 12851 + AegisName: Vocation_Scroll + Name: Vocation Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Vocation_Scroll); + - Id: 12852 + AegisName: Wisdom_Scroll + Name: Wisdom Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Wisdom_Scroll); + - Id: 12853 + AegisName: Patron_Scroll + Name: Patron Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Patron_Scroll); + - Id: 12860 + AegisName: Mommy_Day_Cake + Name: Mommy Day Cake + Type: Usable + Weight: 200 + Script: | + percentheal 50,50; skilleffect "HP_ASSUMPTIO",0; sc_start SC_ASSUMPTIO,100000,5; + - Id: 12863 + AegisName: Treasure_Chest_Summoned_II + Name: Treasure Chest Summoned II + Type: Usable + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + monster "this",-1,-1,"--ja--",rand(1324,1363),1,""; + - Id: 12873 + AegisName: TE_Potion_Box + Name: TE Potion Box + Type: Cash + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem(11558,10); + - Id: 12874 + AegisName: Frost_Giant_Blood + Name: Frost Giant Blood + Type: Usable + Weight: 100 + Script: | + specialeffect2 EF_POTION_CON; sc_start4 SC_GVG_GIANT,10000,3000,0,100,100; + - Id: 12875 + AegisName: Golem_Stone + Name: Golem Stone + Type: Usable + Weight: 10 + Script: | + specialeffect2 EF_POTION_CON; sc_start4 SC_GVG_GOLEM,10000,0,200,50,50; + - Id: 12876 + AegisName: Elf_Tear_Stun + Name: Elf Tear Stun + Type: Usable + Weight: 10 + Script: | + sc_start2 SC_GVG_STUN,10000,3000,0; + - Id: 12877 + AegisName: Elf_Tear_Stone_Curse + Name: Elf Tear Stone Curse + Type: Usable + Weight: 10 + Script: | + sc_start2 SC_GVG_STONE,10000,3000,0; + - Id: 12878 + AegisName: Elf_Tear_Freezing + Name: Elf Tear Freezing + Type: Usable + Weight: 10 + Script: | + sc_start2 SC_GVG_FREEZ,10000,3000,0; + - Id: 12879 + AegisName: Elf_Tear_Sleep + Name: Elf Tear Sleep + Type: Usable + Weight: 10 + Script: | + sc_start2 SC_GVG_SLEEP,10000,3000,0; + - Id: 12880 + AegisName: Elf_Tear_Curse + Name: Elf Tear Curse + Type: Usable + Weight: 10 + Script: | + sc_start2 SC_GVG_CURSE,10000,3000,0; + - Id: 12881 + AegisName: Elf_Tear_Silence + Name: Elf Tear Silence + Type: Usable + Weight: 10 + Script: | + sc_start2 SC_GVG_SILENCE,10000,3000,0; + - Id: 12882 + AegisName: Elf_Tear_Blind + Name: Elf Tear Blind + Type: Usable + Weight: 10 + Script: | + sc_start2 SC_GVG_BLIND,10000,3000,0; + - Id: 12883 + AegisName: Almighty + Name: Almighty + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_BASH3D; sc_start SC_2011RWC_SCROLL,1800000,10; + - Id: 12884 + AegisName: Infinite_Concentration_Potion + Name: Infinite Concentration Potion + Type: Delayconsume + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_ASPDPOTION0,1800000,4; + - Id: 12885 + AegisName: Infinite_Awakening_Potion + Name: Infinite Awakening Potion + Type: Delayconsume + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_ASPDPOTION1,1800000,6; + - Id: 12886 + AegisName: Infinite_Berserk_Potion + Name: Infinite Berserk Potion + Type: Delayconsume + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_ASPDPOTION2,1800000,9; + - Id: 12887 + AegisName: C_Wing_Of_Fly + Name: Infinite Flywing + Type: Usable + Flags: + NoConsume: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemskill "AL_TELEPORT",1; + - Id: 12888 + AegisName: Siege_Kit_Box + Name: Siege Kit Box + Type: Cash + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 12889 + AegisName: Weapon_Box_Spear + Name: Weapon Box(Spear) + Type: Usable + Buy: 10 + Weight: 200 + - Id: 12890 + AegisName: Weapon_Box_Mace + Name: Weapon Box(Mace) + Type: Usable + Buy: 10 + Weight: 200 + - Id: 12891 + AegisName: Weapon_Box_Dagger + Name: Weapon Box(Dagger) + Type: Usable + Buy: 10 + Weight: 200 + - Id: 12892 + AegisName: Weapon_Box_Axe + Name: Weapon Box(Axe) + Type: Usable + Buy: 10 + Weight: 200 + - Id: 12893 + AegisName: Weapon_Box_Bow + Name: Weapon Box(Bow) + Type: Usable + Buy: 10 + Weight: 200 + - Id: 12894 + AegisName: Weapon_Box_Sword + Name: Weapon Box(Sword) + Type: Usable + Buy: 10 + Weight: 200 + - Id: 12895 + AegisName: Weapon_Box_Knuckle + Name: Weapon Box(Knuckle) + Type: Usable + Buy: 10 + Weight: 200 + - Id: 12896 + AegisName: Weapon_Box_Book + Name: Weapon Box(Book) + Type: Usable + Buy: 10 + Weight: 200 + - Id: 12897 + AegisName: Weapon_Box_Guitar + Name: Weapon Box(Guitar) + Type: Usable + Buy: 10 + Weight: 200 + - Id: 12898 + AegisName: Weapon_Box_Whip + Name: Weapon Box(Whip) + Type: Usable + Buy: 10 + Weight: 200 + - Id: 12899 + AegisName: Weapon_Box_Staff + Name: Weapon Box(Staff) + Type: Usable + Buy: 10 + Weight: 200 + - Id: 12900 + AegisName: Battle_Manual_Box + Name: Battle Manual Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12208,10; + - Id: 12901 + AegisName: Insurance_Package + Name: Insurance Package + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12209,10; + - Id: 12902 + AegisName: Bubble_Gum_Box + Name: Bubble Gum Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12210,10; + - Id: 12903 + AegisName: Str_Dish_Box + Name: Steamed Tongue Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12202,10; + - Id: 12904 + AegisName: Agi_Dish_Box + Name: Steamed Scorpion Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12203,10; + - Id: 12905 + AegisName: Int_Dish_Box + Name: Dragon Breath Cocktail Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12204,10; + - Id: 12906 + AegisName: Dex_Dish_Box + Name: Hwergelmir's Tonic Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12205,10; + - Id: 12907 + AegisName: Luk_Dish_Box + Name: Nine Tail Dish Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12206,10; + - Id: 12908 + AegisName: Vit_Dish_Box + Name: Stew Of Immortality Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12207,10; + - Id: 12909 + AegisName: Kafra_Card_Box + Name: Kafra Card Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12211,10; + - Id: 12910 + AegisName: Giant_Fly_Wing_Box + Name: Giant Fly Wing Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12212,10; + - Id: 12911 + AegisName: Neuralizer_Box + Name: Neuralizer Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12213,1; + - Id: 12912 + AegisName: Convex_Mirror_Box + Name: Convex Mirror Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12214,10; + - Id: 12913 + AegisName: Blessing_10_Scroll_Box + Name: Blessing 10 Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12215,10; + - Id: 12914 + AegisName: Inc_Agi_10_Scroll_Box + Name: Increase AGI 10 scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12216,10; + - Id: 12915 + AegisName: Aspersio_5_Scroll_Box + Name: Aspersio 5 Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Aspersio_5_Scroll_Box); + - Id: 12916 + AegisName: Assumptio_5_Scroll_Box + Name: Assumptio 5 Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12218,10; + - Id: 12917 + AegisName: Wind_Walk_10_Scroll_Box + Name: Wind Walk 10 Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12219,10; + - Id: 12918 + AegisName: Adrenaline_Scroll_Box + Name: Adrenaline 5 Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12220,10; + - Id: 12919 + AegisName: Megaphone_Box + Name: Megaphone Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12221,10; + - Id: 12920 + AegisName: Enriched_Elunium_Box + Name: Enriched Elunium Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7619,10; + - Id: 12921 + AegisName: Enriched_Oridecon_Box + Name: Enriched Oridecon Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7620,10; + - Id: 12922 + AegisName: Token_Of_Siegfried_Box + Name: Token of Siegfried Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7621,10; + - Id: 12923 + AegisName: Pet_Egg_Scroll_Box1 + Name: December Lucky Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + Script: | + getgroupitem(IG_Pet_Egg_Scroll_Box1); + - Id: 12924 + AegisName: Pet_Egg_Scroll_Box2 + Name: Pet Egg Box 2 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + Script: | + getgroupitem(IG_Pet_Egg_Scroll_Box2); + - Id: 12925 + AegisName: Pet_Egg_Scroll1 + Name: Kafra Item Mall Prize Package + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + Script: | + getgroupitem(IG_Pet_Egg_Scroll1); + - Id: 12926 + AegisName: Pet_Egg_Scroll2 + Name: December Lucky Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + Script: | + getgroupitem(IG_Pet_Egg_Scroll2); + - Id: 12927 + AegisName: J_Aspersio_5_Scroll_Box + Name: Aspersio Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12928,10; + - Id: 12928 + AegisName: J_Aspersio_5_Scroll + Name: Sacred Scroll + Type: Delayconsume + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemskill "PR_ASPERSIO",5; + - Id: 12929 + AegisName: Pet_Egg_Scroll_Box3 + Name: Pet Egg Box 3 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Pet_Egg_Scroll_Box3); + - Id: 12930 + AegisName: Pet_Egg_Scroll_Box4 + Name: Pet Egg Box 4 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Pet_Egg_Scroll_Box4); + - Id: 12931 + AegisName: Pet_Egg_Scroll_Box5 + Name: Pet Egg Box 5 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Pet_Egg_Scroll_Box5); + - Id: 12932 + AegisName: Pet_Egg_Scroll3 + Name: Episode 13.2 Key Package + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Pet_Egg_Scroll3); + - Id: 12933 + AegisName: Pet_Egg_Scroll4 + Name: Summer Hat Pack + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Pet_Egg_Scroll4); + - Id: 12934 + AegisName: Pet_Egg_Scroll5 + Name: Pet Egg Scroll5 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Pet_Egg_Scroll5); + - Id: 12935 + AegisName: Infiltrator_Box + Name: Infiltrator Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Infiltrator_Box); + - Id: 12936 + AegisName: Muramasa_Box + Name: Muramasa Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Muramasa_Box); + - Id: 12937 + AegisName: Excalibur_Box + Name: Excalibur Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Excalibur_Box); + - Id: 12938 + AegisName: Combat_Knife_Box + Name: Combat Knife Box + Type: Cash + Buy: 20 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Combat_Knife_Box); + - Id: 12939 + AegisName: Counter_Dagger_Box + Name: Dagger of Counter Box + Type: Cash + Buy: 20 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Counter_Dagger_Box); + - Id: 12940 + AegisName: Kaiser_Knuckle_Box + Name: Kaiser Knuckle Box + Type: Cash + Buy: 20 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Kaiser_Knuckle_Box); + - Id: 12941 + AegisName: Pole_Axe_Box + Name: Poll Axe Box + Type: Cash + Buy: 20 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Pole_Axe_Box); + - Id: 12942 + AegisName: Mighty_Staff_Box + Name: Mighty Staff Box + Type: Cash + Buy: 20 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Mighty_Staff_Box); + - Id: 12943 + AegisName: Right_Epsilon_Box + Name: Light Epsilon Box + Type: Cash + Buy: 20 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Right_Epsilon_Box); + - Id: 12944 + AegisName: Balistar_Box + Name: Ballista Box + Type: Cash + Buy: 20 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Balistar_Box); + - Id: 12945 + AegisName: Diary_Of_Great_Sage_Box + Name: Sage's Diary Box + Type: Cash + Buy: 20 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Diary_Of_Great_Sage_Box); + - Id: 12946 + AegisName: Asura_Box + Name: Asura Box + Type: Cash + Buy: 20 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Asura_Box); + - Id: 12947 + AegisName: Apple_Of_Archer_Box + Name: Apple of Archer Box + Type: Cash + Buy: 20 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Apple_Of_Archer_Box); + - Id: 12948 + AegisName: Bunny_Band_Box + Name: Bunny Band Box + Type: Cash + Buy: 20 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Bunny_Band_Box); + - Id: 12949 + AegisName: Sahkkat_Box + Name: Sakkat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Sahkkat_Box); + - Id: 12950 + AegisName: Lord_Circlet_Box + Name: Grand Circlet Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Lord_Circlet_Box); + - Id: 12951 + AegisName: Elven_Ears_Box + Name: Elven Ears Box + Type: Cash + Buy: 20 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Elven_Ears_Box); + - Id: 12952 + AegisName: Steel_Flower_Box + Name: Steel Flower Box + Type: Cash + Buy: 20 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Steel_Flower_Box); + - Id: 12953 + AegisName: Critical_Ring_Box + Name: Critical Ring Box + Type: Cash + Buy: 20 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Critical_Ring_Box); + - Id: 12954 + AegisName: Earring_Box + Name: Earring Box + Type: Cash + Buy: 20 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Earring_Box); + - Id: 12955 + AegisName: Ring_Box + Name: Ring Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Ring_Box); + - Id: 12956 + AegisName: Necklace_Box + Name: Necklace Box + Type: Cash + Buy: 20 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Necklace_Box); + - Id: 12957 + AegisName: Glove_Box + Name: Glove Box + Type: Cash + Buy: 20 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Glove_Box); + - Id: 12958 + AegisName: Brooch_Box + Name: Brooch Box + Type: Cash + Buy: 20 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Brooch_Box); + - Id: 12959 + AegisName: Rosary_Box + Name: Rosary Box + Type: Cash + Buy: 20 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Rosary_Box); + - Id: 12960 + AegisName: Safety_Ring_Box + Name: Safety Ring Box + Type: Cash + Buy: 20 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Safety_Ring_Box); + - Id: 12961 + AegisName: Vesper_Core01_Box + Name: Vesper Core 01 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Vesper_Core01_Box); + - Id: 12962 + AegisName: Vesper_Core02_Box + Name: Vesper Core 02 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Vesper_Core02_Box); + - Id: 12963 + AegisName: Vesper_Core03_Box + Name: Vesper Core 03 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Vesper_Core03_Box); + - Id: 12964 + AegisName: Vesper_Core04_Box + Name: Vesper Core 04 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Vesper_Core04_Box); + - Id: 12965 + AegisName: Emergency_Box1 + Name: Emergency Level 1 Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12968,1; + - Id: 12966 + AegisName: Emergency_Box2 + Name: Emergency Level 2 Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12969,1; + - Id: 12967 + AegisName: Emergency_Box3 + Name: Emergency Level 3 Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12970,1; + - Id: 12968 + AegisName: Emergency_Scroll1 + Name: Emergency Level 1 Scroll + Type: Usable + Buy: 2 + Weight: 10 + Delay: + Duration: 300000 + Status: Reuse_Limit_Recall + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + unitskilluseid getcharid(3),"GD_ITEMEMERGENCYCALL",1; + - Id: 12969 + AegisName: Emergency_Scroll2 + Name: Emergency Level 2 Scroll + Type: Usable + Buy: 2 + Weight: 10 + Delay: + Duration: 300000 + Status: Reuse_Limit_Recall + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + unitskilluseid getcharid(3),"GD_ITEMEMERGENCYCALL",2; + - Id: 12970 + AegisName: Emergency_Scroll3 + Name: Emergency Level 3 Scroll + Type: Usable + Buy: 2 + Weight: 10 + Delay: + Duration: 300000 + Status: Reuse_Limit_Recall + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + unitskilluseid getcharid(3),"GD_ITEMEMERGENCYCALL",3; + - Id: 12971 + AegisName: Teleport_Box1 + Name: Teleport Scroll Box 1 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12977,10; + - Id: 12972 + AegisName: Teleport_Box2 + Name: Teleport Scroll Box 2 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12978,10; + - Id: 12973 + AegisName: Teleport_Box3 + Name: Teleport Scroll Box 3 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12979,10; + - Id: 12974 + AegisName: Teleport_Box4 + Name: Teleport Scroll Box 4 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12980,10; + - Id: 12975 + AegisName: Teleport_Box5 + Name: Teleport Scroll Box 5 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12981,10; + - Id: 12976 + AegisName: Teleport_Box6 + Name: Teleport Scroll Box 6 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12982,10; + - Id: 12977 + AegisName: Teleport_Scroll1 + Name: Teleport Scroll 1 + Type: Usable + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + callfunc "F_CashTele",1; + - Id: 12978 + AegisName: Teleport_Scroll2 + Name: Teleport Scroll 2 + Type: Usable + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + callfunc "F_CashTele",2; + - Id: 12979 + AegisName: Teleport_Scroll3 + Name: Teleport Scroll 3 + Type: Usable + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + callfunc "F_CashTele",3; + - Id: 12980 + AegisName: Teleport_Scroll4 + Name: Teleport Scroll 4 + Type: Usable + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + callfunc "F_CashTele",4; + - Id: 12981 + AegisName: Teleport_Scroll5 + Name: Teleport Scroll 5 + Type: Usable + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + callfunc "F_CashTele",5; + - Id: 12982 + AegisName: Teleport_Scroll6 + Name: Teleport Scroll 6 + Type: Usable + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + callfunc "F_CashTele",6; + - Id: 12983 + AegisName: Pet_Egg_Scroll_Box6 + Name: Pet Egg Scroll Box 6 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Pet_Egg_Scroll_Box6); + - Id: 12984 + AegisName: Pet_Egg_Scroll_Box7 + Name: Pet Egg Scroll Box 7 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Pet_Egg_Scroll_Box7); + - Id: 12985 + AegisName: Pet_Egg_Scroll_Box8 + Name: Pet Egg Scroll Box 8 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Pet_Egg_Scroll_Box8); + - Id: 12986 + AegisName: Pet_Egg_Scroll_Box9 + Name: Adventurer Pack Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Pet_Egg_Scroll_Box9); + - Id: 12987 + AegisName: Pet_Egg_Scroll_Box10 + Name: Pet Egg Scroll Box 10 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Pet_Egg_Scroll_Box10); + - Id: 12988 + AegisName: Pet_Egg_Scroll_Box11 + Name: Pet Egg Scroll Box 11 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Pet_Egg_Scroll_Box11); + - Id: 12989 + AegisName: Pet_Egg_Scroll6 + Name: Pet Egg Scroll 6 + Type: Cash + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Pet_Egg_Scroll6); + - Id: 12990 + AegisName: Pet_Egg_Scroll7 + Name: Pet Egg Scroll 7 + Type: Cash + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Pet_Egg_Scroll7); + - Id: 12991 + AegisName: Pet_Egg_Scroll8 + Name: Party Hard Pack + Type: Cash + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Pet_Egg_Scroll8); + - Id: 12992 + AegisName: Pet_Egg_Scroll9 + Name: Adventurer Pack + Type: Cash + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Pet_Egg_Scroll9); + - Id: 12993 + AegisName: Pet_Egg_Scroll10 + Name: Pet Egg Scroll 10 + Type: Cash + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Pet_Egg_Scroll10); + - Id: 12994 + AegisName: Pet_Egg_Scroll11 + Name: Pet Egg Scroll 11 + Type: Cash + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Pet_Egg_Scroll11); + - Id: 12995 + AegisName: White_Herb_Box + Name: White Herb Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 509,15; + - Id: 12996 + AegisName: Blue_Herb_Box + Name: Blue Herb Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 510,15; + - Id: 12997 + AegisName: Elunium_Box + Name: Elunium Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 985,5; + - Id: 12998 + AegisName: Oridecon_Box + Name: Oridecon Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 984,5; + - Id: 12999 + AegisName: Branch_Of_Dead_Tree_Box + Name: Dead Branch Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 604,3; + - Id: 13500 + AegisName: Insurance60_Package + Name: Life Insurrance Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14500,10; + - Id: 13501 + AegisName: Assorted_Scroll_Box + Name: Experience Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 13502 + AegisName: Drooping_Kitty_Box + Name: Refined Drooping Cat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5279,604800; + - Id: 13503 + AegisName: Magestic_Goat_Box + Name: Baphomet Horns Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5280,604800; + - Id: 13504 + AegisName: Deviruchi_Cap_Box + Name: Refined Deviruchi Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5281,604800; + - Id: 13505 + AegisName: Executioner_Box + Name: Executioner Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1174,604800; + - Id: 13506 + AegisName: Brood_Axe_Box + Name: Refined Bloody Axe Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1373,604800; + - Id: 13507 + AegisName: Tomahawk_Box + Name: Tomahawk Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1374,604800; + - Id: 13508 + AegisName: Bow_Of_Rudra_Box + Name: Rudra Bow Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1729,604800; + - Id: 13509 + AegisName: Cutlas_Box + Name: Cutlus Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13402,604800; + - Id: 13510 + AegisName: Solar_Sword_Box + Name: Solar Sword Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13403,604800; + - Id: 13511 + AegisName: Sword_Breaker_Box + Name: Refined Swordbreaker Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13024,604800; + - Id: 13512 + AegisName: Mail_Breaker_Box + Name: Refined Mailbreaker Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13025,604800; + - Id: 13513 + AegisName: Moonlight_Sword_Box + Name: Moonlight Dagger Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13026,604800; + - Id: 13514 + AegisName: Spanner_Box + Name: Wrench Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1534,604800; + - Id: 13515 + AegisName: Grape_Box + Name: Grape Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 514,10; + - Id: 13516 + AegisName: Royal_Jelly_Box + Name: Royal Jelly Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 526,5; + - Id: 13517 + AegisName: Yggdrasilberry_Box + Name: Yggdrasil Berry Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 607,3; + - Id: 13518 + AegisName: Weapon_Card_Scroll_Box + Name: Weapon Card Pet Egg Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 13558,1; + - Id: 13519 + AegisName: Armor_Card_Scroll_Box + Name: Armor Card Pet Egg Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 13559,1; + - Id: 13520 + AegisName: Helmet_Card_Scroll_Box + Name: Helmet Card Pet Egg Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 13560,1; + - Id: 13521 + AegisName: Hood_Card_Scroll_Box + Name: Garment Card Pet Egg Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 13561,1; + - Id: 13522 + AegisName: Hood_Card_Scroll_Box2 + Name: Shield Card Pet Egg Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 13562,1; + - Id: 13523 + AegisName: Shoes_Card_Scroll_Box + Name: Shoes Card Pet Egg Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 13563,1; + - Id: 13524 + AegisName: Accy_Card_Scroll_Box + Name: Accessory Card Pet Egg Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 13564,1; + - Id: 13525 + AegisName: Zeny_Scroll_Box + Name: Zeny Pet Egg Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14508,1; + - Id: 13526 + AegisName: Pet_Egg_Scroll_Box1_ + Name: Pet Egg Scroll Box 12 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12925,30; + - Id: 13527 + AegisName: Pet_Egg_Scroll_Box2_ + Name: Pet Egg Scroll Box 13 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12926,30; + - Id: 13528 + AegisName: Pet_Egg_Scroll_Box3_ + Name: Pet Egg Scroll Box 14 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12932,30; + - Id: 13529 + AegisName: Pet_Egg_Scroll_Box4_ + Name: Pet Egg Scroll Box 15 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12933,30; + - Id: 13530 + AegisName: Pet_Egg_Scroll_Box5_ + Name: Pet Egg Scroll Box 16 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12934,30; + - Id: 13531 + AegisName: Light_Red_Pot_Box + Name: Light Red Potion Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 598,50; + - Id: 13532 + AegisName: Light_Orange_Pot_Box + Name: Light Orange Potion Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 599,50; + - Id: 13533 + AegisName: Light_Yellow_Pot_Box + Name: Light Yellow Potion Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 11500,50; + - Id: 13534 + AegisName: Light_White_Pot_Box + Name: Light White Potion Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 11501,50; + - Id: 13535 + AegisName: Light_Center_Pot_Box + Name: Light Concentration Potion Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14509,20; + - Id: 13536 + AegisName: Light_Awakening_Pot_Box + Name: Light Awakening Potion Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14510,20; + - Id: 13537 + AegisName: Light_Berserk_Pot_Box + Name: Light Berserk Potion Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14511,20; + - Id: 13538 + AegisName: Meteor_10_Scroll_Box + Name: Meteor Storm Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14512,10; + - Id: 13539 + AegisName: Storm_10_Scroll_Box + Name: Storm Gust Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14513,10; + - Id: 13540 + AegisName: Vermilion_10_Scroll_Box + Name: Lord of Vermilion Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14514,10; + - Id: 13541 + AegisName: Lex_Aeterna_Scroll_Box + Name: Lex Aeterna Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14515,10; + - Id: 13542 + AegisName: Magnificat_5_Scroll_Box + Name: Magnificat Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14516,10; + - Id: 13543 + AegisName: CP_Helm_Scroll_Box + Name: Chemical Protection Helm Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_CP_Helm_Scroll_Box); + - Id: 13544 + AegisName: CP_Shield_Scroll_Box + Name: Chemical Protection Shield Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_CP_Shield_Scroll_Box); + - Id: 13545 + AegisName: CP_Armor_Scroll_Box + Name: Chemical Protection Armor Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_CP_Armor_Scroll_Box); + - Id: 13546 + AegisName: CP_Weapon_Scroll_Box + Name: Chemical Protection Weapon Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_CP_Weapon_Scroll_Box); + - Id: 13547 + AegisName: Repair_Scroll_Box + Name: Repair Weapon Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Repair_Scroll_Box); + - Id: 13548 + AegisName: Big_Bun_Box + Name: Big Bun Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14522,10; + - Id: 13549 + AegisName: Pill__Box + Name: Pill Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14523,10; + - Id: 13550 + AegisName: Superb_Fish_Slice_Box + Name: Fish Slice Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14524,10; + - Id: 13551 + AegisName: Chewy_Ricecake_Box + Name: Chewy Ricecake Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14525,10; + - Id: 13552 + AegisName: Oriental_Pastry_Box + Name: Pastry Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14526,10; + - Id: 13553 + AegisName: Dun_Tele_Scroll1_Box + Name: Dungeon Teleport Scroll 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14527,5; + - Id: 13554 + AegisName: Weapon_Card_Scroll_Box2 + Name: Weapon Card Pet Egg Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 13565,1; + - Id: 13555 + AegisName: Weapon_Card_Scroll_Box3 + Name: Weapon Card Pet Egg Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 13566,1; + - Id: 13556 + AegisName: Armor_Card_Scroll_Box2 + Name: Armor Card Pet Egg Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 13567,1; + - Id: 13557 + AegisName: Accy_Card_Scroll_Box2 + Name: Accessory Card Pet Egg Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 13568,1; + - Id: 13558 + AegisName: Weapon_Card_Scroll + Name: Weapon Card Pet Egg Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 13559 + AegisName: Armor_Card_Scroll + Name: Armor Card Pet Egg Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 13560 + AegisName: Helmet_Card_Scroll + Name: Helmet Card Pet Egg Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 13561 + AegisName: Hood_Card_Scroll + Name: Garment Card Pet Egg Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 13562 + AegisName: Hood_Card_Scroll2 + Name: Shield Card Pet Egg Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 13563 + AegisName: Shoes_Card_Scroll + Name: Shoes Card Pet Egg Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 13564 + AegisName: Accy_Card_Scroll + Name: Accessory Card Pet Egg Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 13565 + AegisName: Weapon_Card_Scroll2 + Name: Weapon Card Pet Egg Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 13566 + AegisName: Weapon_Card_Scroll3 + Name: Weapon Card Pet Egg Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 13567 + AegisName: Armor_Card_Scroll2 + Name: Armor Card Pet Egg Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 13568 + AegisName: Accy_Card_Scroll2 + Name: Accessory Card Pet Egg Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 13569 + AegisName: PVP_Tele_Scroll_Box + Name: PVP Teleport Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14528,10; + - Id: 13570 + AegisName: Giant_Fly_Wing_Box50 + Name: Giant Fly Wing 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12212,50; + - Id: 13571 + AegisName: Giant_Fly_Wing_Box100 + Name: Giant Fly Wing 100 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12212,100; + - Id: 13572 + AegisName: Dex_Dish_Box30 + Name: Hwergelmir's Tonic 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12205,30; + - Id: 13573 + AegisName: Dex_Dish_Box50 + Name: Hwergelmir's Tonic 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12205,50; + - Id: 13574 + AegisName: Luk_Dish_Box30 + Name: Nine Tail Dish 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12206,30; + - Id: 13575 + AegisName: Luk_Dish_Box50 + Name: Nine Tail Dish 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12206,50; + - Id: 13576 + AegisName: Inc_Agi_10_Box30 + Name: Increase Agility Scroll 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12216,30; + - Id: 13577 + AegisName: Inc_Agi_10_Box50 + Name: Increase Agility Scroll 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12216,50; + - Id: 13578 + AegisName: Vit_Dish_Box30 + Name: Stew of Immortality 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12207,30; + - Id: 13579 + AegisName: Vit_Dish_Box50 + Name: Stew of Immortality 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12207,50; + - Id: 13580 + AegisName: Insurance_Package30 + Name: Life Insurrance 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12209,30; + - Id: 13581 + AegisName: Insurance_Package50 + Name: Life Insurrance 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12209,50; + - Id: 13582 + AegisName: Convex_Mirror_Box5 + Name: Convex Mirror 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12214,5; + - Id: 13583 + AegisName: Convex_Mirror_Box30 + Name: Convex Mirror 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12214,30; + - Id: 13584 + AegisName: Blessing10_Box30 + Name: Blessing Scroll 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12215,30; + - Id: 13585 + AegisName: Blessing10_Box50 + Name: Blessing Scroll 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12215,50; + - Id: 13586 + AegisName: Adrenaline10_Box30 + Name: Adrenaline Rush Scroll 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12220,30; + - Id: 13587 + AegisName: Adrenaline10_Box50 + Name: Adrenaline Rush Scroll 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12220,50; + - Id: 13588 + AegisName: Assumptio_5_Box30 + Name: Assumptio Scroll 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12218,30; + - Id: 13589 + AegisName: Assumptio_5_Box50 + Name: Assumptio Scroll 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12218,50; + - Id: 13590 + AegisName: Aspersio_5_Box30 + Name: Aspersio Scroll 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12217,30; + - Id: 13591 + AegisName: Aspersio_5_Box50 + Name: Aspersio Scroll 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12217,50; + - Id: 13592 + AegisName: Agi_Dish_Box30 + Name: Steamed Scorpion 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12203,30; + - Id: 13593 + AegisName: Agi_Dish_Box50 + Name: Steamed Scorpion 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12203,50; + - Id: 13594 + AegisName: Wind_Walk10_Box30 + Name: Wind Walk Scroll 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12219,30; + - Id: 13595 + AegisName: Wind_Walk10_Box50 + Name: Wind Walk Scroll 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12219,50; + - Id: 13596 + AegisName: Int_Dish_Box30 + Name: Dragon Breath Cocktail 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12204,30; + - Id: 13597 + AegisName: Int_Dish_Box50 + Name: Dragon Breath Cocktail 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12204,50; + - Id: 13598 + AegisName: Battle_Manual_Box1 + Name: Field Manual Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12208,1; + - Id: 13599 + AegisName: Battle_Manual_Box5 + Name: Field Manual 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12208,5; + - Id: 13600 + AegisName: Siegfried_Box5 + Name: Token of Siegfried 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7621,5; + - Id: 13601 + AegisName: Siegfried_Box20 + Name: Token of Siegfried 20 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7621,20; + - Id: 13602 + AegisName: Kafra_Card_Box30 + Name: Kafra Card 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12211,30; + - Id: 13603 + AegisName: Kafra_Card_Box50 + Name: Kafra Card 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12211,50; + - Id: 13604 + AegisName: Str_Dish_Box30 + Name: Steamed Tongue 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12202,30; + - Id: 13605 + AegisName: Str_Dish_Box50 + Name: Steamed Tongue 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12202,50; + - Id: 13606 + AegisName: Bubble_Gum_Box1 + Name: Bubble Gum Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12210,1; + - Id: 13607 + AegisName: Bubble_Gum_Box5 + Name: Bubble Gum 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12210,5; + - Id: 13608 + AegisName: Megaphone_Box1 + Name: Megaphone Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12221,1; + - Id: 13609 + AegisName: Megaphone_Box5 + Name: Megaphone 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12221,5; + - Id: 13610 + AegisName: Enriched_Elunium_Box5 + Name: Enriched Elunium 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7619,5; + - Id: 13611 + AegisName: Enriched_Oridecon_Box5 + Name: Enriched Oridecon 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7620,5; + - Id: 13612 + AegisName: Handcuff_Box + Name: Arrest Handcuffs Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2706,1; + - Id: 13613 + AegisName: Super_Pet_Egg_Box1 + Name: Super Pet Egg Box 1 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 13617,1; + - Id: 13614 + AegisName: Super_Pet_Egg_Box2 + Name: Super Pet Egg Box 2 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 13618,1; + - Id: 13615 + AegisName: Super_Pet_Egg_Box3 + Name: Super Pet Egg Box 3 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 13619,1; + - Id: 13616 + AegisName: Super_Pet_Egg_Box4 + Name: Super Pet Egg Box 4 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 13620,1; + - Id: 13617 + AegisName: Super_Pet_Egg1 + Name: Super Pet Egg 1 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Super_Pet_Egg1); + - Id: 13618 + AegisName: Super_Pet_Egg2 + Name: Super Pet Egg 2 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Super_Pet_Egg2); + - Id: 13619 + AegisName: Super_Pet_Egg3 + Name: Super Pet Egg 3 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Super_Pet_Egg3); + - Id: 13620 + AegisName: Super_Pet_Egg4 + Name: Super Pet Egg 4 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Super_Pet_Egg4); + - Id: 13621 + AegisName: Greed_Box30 + Name: Greed Scroll 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14529,30; + - Id: 13622 + AegisName: Greed_Box50 + Name: Greed Scroll 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14529,50; + - Id: 13623 + AegisName: Greed_Box100 + Name: Greed Scroll 100 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14529,100; + - Id: 13624 + AegisName: Flee_30_Scroll_Box + Name: Evasion Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14530,1; + - Id: 13625 + AegisName: Accuracy_30_Scroll_Box + Name: Concentration Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14531,1; + - Id: 13626 + AegisName: Super_Card_Pet_Egg_Box1 + Name: Super Card Pet Egg Box 1 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 13630,1; + - Id: 13627 + AegisName: Super_Card_Pet_Egg_Box2 + Name: Super Card Pet Egg Box 2 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 13631,1; + - Id: 13628 + AegisName: Super_Card_Pet_Egg_Box3 + Name: Super Card Pet Egg Box 3 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 13632,1; + - Id: 13629 + AegisName: Super_Card_Pet_Egg_Box4 + Name: Super Card Pet Egg Box 4 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 13633,1; + - Id: 13630 + AegisName: Super_Card_Pet_Egg1 + Name: Super Card Pet Egg 1 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Super_Card_Pet_Egg1); + - Id: 13631 + AegisName: Super_Card_Pet_Egg2 + Name: Super Card Pet Egg 2 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Super_Card_Pet_Egg2); + - Id: 13632 + AegisName: Super_Card_Pet_Egg3 + Name: Super Card Pet Egg 3 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Super_Card_Pet_Egg3); + - Id: 13633 + AegisName: Super_Card_Pet_Egg4 + Name: Super Card Pet Egg 4 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Super_Card_Pet_Egg4); + - Id: 13634 + AegisName: Vigorgra_Package1 + Name: 1 Hour Package Vol. 1 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Vigorgra_Package1); + - Id: 13635 + AegisName: Vigorgra_Package2 + Name: 1 Hour Package Vol. 2 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Vigorgra_Package2); + - Id: 13636 + AegisName: Vigorgra_Package3 + Name: 1 Hour Package Vol. 3 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Vigorgra_Package3); + - Id: 13637 + AegisName: Vigorgra_Package4 + Name: 1 Hour Package Vol. 4 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Vigorgra_Package4); + - Id: 13638 + AegisName: Vigorgra_Package5 + Name: 1 Hour Package Vol. 5 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Vigorgra_Package5); + - Id: 13639 + AegisName: Vigorgra_Package6 + Name: 1 Hour Package Vol. 6 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Vigorgra_Package6); + - Id: 13640 + AegisName: Vigorgra_Package7 + Name: 2 Hour Package Vol. 1 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Vigorgra_Package7); + - Id: 13641 + AegisName: Vigorgra_Package8 + Name: 2 Hour Package Vol. 2 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Vigorgra_Package8); + - Id: 13642 + AegisName: Vigorgra_Package9 + Name: 2 Hour Package Vol. 3 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Vigorgra_Package9); + - Id: 13643 + AegisName: Vigorgra_Package10 + Name: 2 Hour Package Vol. 4 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Vigorgra_Package10); + - Id: 13644 + AegisName: Vigorgra_Package11 + Name: 2 Hour Package Vol. 5 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Vigorgra_Package11); + - Id: 13645 + AegisName: Vigorgra_Package12 + Name: 2 Hour Package Vol. 6 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Vigorgra_Package12); + - Id: 13646 + AegisName: Infiltrator_Box1 + Name: Refined Infiltrator Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1267,604800; + - Id: 13647 + AegisName: Muramasa_Box1 + Name: Refined Muramasa Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1173,604800; + - Id: 13648 + AegisName: Excalibur_Box1 + Name: Refined Excalibur Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13401,604800; + - Id: 13649 + AegisName: Combat_Knife_Box1 + Name: Refined Combat Knife Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13021,604800; + - Id: 13650 + AegisName: Counter_Dagger_Box1 + Name: Refined Dagger of Counter Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13022,604800; + - Id: 13651 + AegisName: Kaiser_Knuckle_Box1 + Name: Refined Kaiser Knuckle Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1817,604800; + - Id: 13652 + AegisName: Pole_Axe_Box1 + Name: Refined Pole Axe Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1419,604800; + - Id: 13653 + AegisName: Mighty_Staff_Box1 + Name: Refined Mighty Staff Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1623,604800; + - Id: 13654 + AegisName: Right_Epsilon_Box1 + Name: Refined Light Epsilon Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1372,604800; + - Id: 13655 + AegisName: Balistar_Box1 + Name: Refined Ballista Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1728,604800; + - Id: 13656 + AegisName: Diary_Of_Sage_Box1 + Name: Refined Sage's Diary Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1563,604800; + - Id: 13657 + AegisName: Asura_Box1 + Name: Refined Ashura Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13023,604800; + - Id: 13658 + AegisName: Apple_Of_Archer_Box1 + Name: Refined Apple of Archer Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5265,1209600; + - Id: 13659 + AegisName: Bunny_Band_Box1 + Name: Refined Bunny Band Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5266,1209600; + - Id: 13660 + AegisName: Sahkkat_Box1 + Name: Refined Sakkat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5267,1209600; + - Id: 13661 + AegisName: Lord_Circlet_Box1 + Name: Refined Grand Circlet Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5268,1209600; + - Id: 13662 + AegisName: Elven_Ears_Box1 + Name: Refined Elven Ears Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2686,1209600; + - Id: 13663 + AegisName: Steel_Flower_Box1 + Name: Refined Romantic Flower Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2687,1209600; + - Id: 13664 + AegisName: Critical_Ring_Box1 + Name: Refined Critical Ring Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2688,604800; + - Id: 13665 + AegisName: Earring_Box1 + Name: Refined Earring Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2689,604800; + - Id: 13666 + AegisName: Ring_Box1 + Name: Refined Ring Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2690,604800; + - Id: 13667 + AegisName: Necklace_Box1 + Name: Refined Necklace Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2691,604800; + - Id: 13668 + AegisName: Glove_Box1 + Name: Refined Glove Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2692,604800; + - Id: 13669 + AegisName: Brooch_Box1 + Name: Refined Brooch Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2693,604800; + - Id: 13670 + AegisName: Rosary_Box1 + Name: Refined Rosary Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2694,604800; + - Id: 13671 + AegisName: Safety_Ring_Box1 + Name: Refined Safety Ring Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2695,604800; + - Id: 13672 + AegisName: Vesper_Core01_Box1 + Name: Refined Vesper Core 01 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2696,604800; + - Id: 13673 + AegisName: Vesper_Core02_Box1 + Name: Refined Vesper Core 02 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2697,604800; + - Id: 13674 + AegisName: Vesper_Core03_Box1 + Name: Refined Vesper Core 03 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2698,604800; + - Id: 13675 + AegisName: Vesper_Core04_Box1 + Name: Refined Vesper Core 04 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2699,604800; + - Id: 13676 + AegisName: Drooping_Kitty_Box1 + Name: Refined Drooping Cat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5279,1209600; + - Id: 13677 + AegisName: Magestic_Goat_Box1 + Name: Refined Majestic Goat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5280,1209600; + - Id: 13678 + AegisName: Deviruchi_Cap_Box1 + Name: Refined Deviruchi Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5281,1209600; + - Id: 13679 + AegisName: Executioner_Box1 + Name: Refined Executioner Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1174,604800; + - Id: 13680 + AegisName: Brood_Axe_Box1 + Name: Refined Bloody Axe Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1373,604800; + - Id: 13681 + AegisName: Tomahawk_Box1 + Name: Refined Tomahawk Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1374,604800; + - Id: 13682 + AegisName: Bow_Of_Rudra_Box1 + Name: Refined Rudra Bow Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1729,604800; + - Id: 13683 + AegisName: Cutlas_Box1 + Name: Refined Cutlus Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13402,604800; + - Id: 13684 + AegisName: Solar_Sword_Box1 + Name: Refined Solar Sword Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13403,604800; + - Id: 13685 + AegisName: Sword_Breaker_Box1 + Name: Refined Swordbreaker Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13024,604800; + - Id: 13686 + AegisName: Mail_Breaker_Box1 + Name: Refined Mailbreaker Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13025,604800; + - Id: 13687 + AegisName: Moonlight_Sword_Box1 + Name: Refined Moonlight Dagger Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13026,604800; + - Id: 13688 + AegisName: Spanner_Box1 + Name: Refined Wrench Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1534,604800; + - Id: 13689 + AegisName: Bok_Choy_Box + Name: Bok Choy Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7766,100; + - Id: 13690 + AegisName: Chung_E_Cake_Box + Name: Green Maiden Cake Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7767,100; + - Id: 13691 + AegisName: Freyja_Overcoat_Box + Name: Freya's Clothes Box + Type: Cash + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2369,604800; + - Id: 13692 + AegisName: Freyja_Boots_Box + Name: Freya's Boots Box + Type: Cash + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2428,604800; + - Id: 13693 + AegisName: Freyja_Cape_Box + Name: Freya's Manteau Box + Type: Cash + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2533,604800; + - Id: 13694 + AegisName: Freyja_Crown_Box + Name: Freya's Crown Box + Type: Cash + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5306,604800; + - Id: 13695 + AegisName: Battle_Manual25_Box + Name: Field Manual 25% Box + Type: Cash + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14532,10; + - Id: 13696 + AegisName: Battle_Manual100_Box + Name: Field Manual 100% Box + Type: Cash + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14533,10; + - Id: 13697 + AegisName: J_Blessing10_Box + Name: Blessing Scroll 10 Box + Type: Cash + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12215,10; + - Id: 13698 + AegisName: J_Inc_Agi10_Box + Name: Increase Agility Scroll 10 Box + Type: Cash + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12216,10; + - Id: 13699 + AegisName: J_Wind_Walk10_Box + Name: Wind Walk Scroll 10 Box + Type: Cash + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12219,10; + - Id: 13700 + AegisName: J_Adrenaline10_Box + Name: Adrenaline Rush Scroll 10 Box + Type: Cash + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12220,10; + - Id: 13701 + AegisName: Pet_Egg_Scroll12 + Name: Pet Egg Scroll 12 + Type: Usable + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Pet_Egg_Scroll12); + - Id: 13702 + AegisName: Pet_Egg_Scroll13 + Name: Pet Egg Scroll 13 + Type: Usable + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Pet_Egg_Scroll13); + - Id: 13703 + AegisName: Pet_Egg_Scroll14 + Name: Pet Egg Scroll 14 + Type: Usable + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Pet_Egg_Scroll14); + - Id: 13704 + AegisName: Super_Pet_Egg5 + Name: Super Pet Egg 5 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Super_Pet_Egg5); + - Id: 13705 + AegisName: Super_Pet_Egg6 + Name: Super Pet Egg 6 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Super_Pet_Egg6); + - Id: 13706 + AegisName: Super_Pet_Egg7 + Name: Super Pet Egg 7 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Super_Pet_Egg7); + - Id: 13707 + AegisName: Super_Pet_Egg8 + Name: Super Pet Egg 8 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Super_Pet_Egg8); + - Id: 13708 + AegisName: Pet_Egg_Scroll_E + Name: Pet Egg Scroll E + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Pet_Egg_Scroll_E); + - Id: 13709 + AegisName: BRO_Package_1 + Name: BRO Package Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 13710 + AegisName: Max_Weight_Up_Box + Name: Gym Pass Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7776,10; + - Id: 13711 + AegisName: Small_Life_Potion_Box + Name: Small Life Potion 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14534,10; + - Id: 13712 + AegisName: Small_Life_Potion_Box30 + Name: Small Life Potion 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14534,30; + - Id: 13713 + AegisName: Small_Life_Potion_Box50 + Name: Small Life Potion 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14534,50; + - Id: 13714 + AegisName: Med_Life_Potion_Box + Name: Medium Life Potion 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14535,10; + - Id: 13715 + AegisName: Med_Life_Potion_Box30 + Name: Medium Life Potion 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14535,30; + - Id: 13716 + AegisName: Med_Life_Potion_Box50 + Name: Medium Life Potion 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14535,50; + - Id: 13717 + AegisName: Abrasive_Box5 + Name: Abrasive 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14536,5; + - Id: 13718 + AegisName: Abrasive_Box10 + Name: Abrasive 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14536,10; + - Id: 13719 + AegisName: Regeneration_Box5 + Name: Regeneration Potion 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14537,5; + - Id: 13720 + AegisName: Regeneration_Box10 + Name: Regeneration 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14537,10; + - Id: 13721 + AegisName: Dun_Tele_Scroll_Box10 + Name: Dungeon Teleport Scroll 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14527,10; + - Id: 13722 + AegisName: Pecopeco_Hairband_Box + Name: Peco Peco Hairband Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5286,1; + - Id: 13723 + AegisName: Red_Glasses_Box + Name: Red Glasses Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5288,1; + - Id: 13724 + AegisName: Whisper_Mask_Box + Name: Whisper Mask Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5294,1; + - Id: 13725 + AegisName: Ramen_Hat_Box + Name: Ramen Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Ramen_Hat_Box); + - Id: 13726 + AegisName: Gold_Box_ + Name: Golden Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7777,1; + - Id: 13727 + AegisName: Silver_Box_ + Name: Silver Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7778,1; + - Id: 13728 + AegisName: Gold_Key1_Box + Name: Golden Key 1 Box + Type: Cash + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7779,1; + - Id: 13729 + AegisName: Gold_Key5_Box + Name: Golden Key 5 Box + Type: Cash + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7779,5; + - Id: 13730 + AegisName: Silver_Key1_Box + Name: Silver Key 1 Box + Type: Cash + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7780,1; + - Id: 13731 + AegisName: Silver_Key5_Box + Name: Silver Key 5 Box + Type: Cash + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7780,5; + - Id: 13734 + AegisName: Pecopeco_Hairband_Box1 + Name: Peco Peco Hairband Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5286,1; + - Id: 13735 + AegisName: Red_Glasses_Box1 + Name: Red Glasses Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5288,1; + - Id: 13736 + AegisName: Whisper_Mask_Box1 + Name: Whisper Mask Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5294,1; + - Id: 13737 + AegisName: Ramen_Hat_Box1 + Name: Ramen Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5293,1; + - Id: 13738 + AegisName: Glass_Of_Illusion_Box5 + Name: Glass of Illusion 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14538,5; + - Id: 13739 + AegisName: Glass_Of_Illusion_Box10 + Name: Glass of Illusion 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14538,10; + - Id: 13740 + AegisName: Shadow_Armor_S_Box5 + Name: Shadow Armor Scroll 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14539,5; + - Id: 13741 + AegisName: Shadow_Armor_S_Box10 + Name: Shadow Armor Scroll 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14539,10; + - Id: 13742 + AegisName: Shadow_Armor_S_Box30 + Name: Shadow Armor Scroll 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14539,30; + - Id: 13743 + AegisName: Holy_Armor_S_Box5 + Name: Holy Armor Scroll 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14540,5; + - Id: 13744 + AegisName: Holy_Armor_S_Box10 + Name: Holy Armor Scroll 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14540,10; + - Id: 13745 + AegisName: Holy_Armor_S_Box30 + Name: Holy Armor Scroll 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14540,30; + - Id: 13746 + AegisName: S_Def_Potion_Box10 + Name: Small Defense Potion 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14541,10; + - Id: 13747 + AegisName: S_Def_Potion_Box30 + Name: Small Defense Potion 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14541,30; + - Id: 13748 + AegisName: S_Def_Potion_Box50 + Name: Small Defense Potion 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14541,50; + - Id: 13749 + AegisName: B_Def_Potion_Box10 + Name: Big Defense Potion 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14542,10; + - Id: 13750 + AegisName: B_Def_Potion_Box30 + Name: Big Defense Potion 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14542,30; + - Id: 13751 + AegisName: B_Def_Potion_Box50 + Name: Big Defense Potion 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14542,50; + - Id: 13752 + AegisName: S_Mdef_Potion_Box10 + Name: Small Magic Defense Potion 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14543,10; + - Id: 13753 + AegisName: S_Mdef_Potion_Box30 + Name: Small Magic Defense Potion 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14543,30; + - Id: 13754 + AegisName: S_Mdef_Potion_Box50 + Name: Small Magic Defense Potion 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14543,50; + - Id: 13755 + AegisName: B_Mdef_Potion_Box10 + Name: Big Magic Defense Potion 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14544,10; + - Id: 13756 + AegisName: B_Mdef_Potion_Box30 + Name: Big Magic Defense Potion 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14544,30; + - Id: 13757 + AegisName: B_Mdef_Potion_Box50 + Name: Big Magic Defense Potion 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14544,50; + - Id: 13758 + AegisName: Battle_Manual_X3_Box + Name: Field Manual 300% Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14545,20; + - Id: 13759 + AegisName: In_Blue_Herb_Box + Name: Blue Herb Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 510,50; + - Id: 13760 + AegisName: Honey_Box + Name: Honey Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 518,100; + - Id: 13761 + AegisName: Empty_Bottle_Box + Name: Empty Bottle Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 713,500; + - Id: 13762 + AegisName: In_Royal_Jelly_Box + Name: Royal Jelly Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 526,70; + - Id: 13763 + AegisName: 5_Anniversary_Coin_Box + Name: Coin Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2709,1; + - Id: 13764 + AegisName: Battle_Manual_Box_TW + Name: Beginner's Field Manual 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7803,5; + - Id: 13765 + AegisName: Certificate_TW_Box + Name: Certificate Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*getitem 7804,1;*/ + - Id: 13766 + AegisName: Nagan_Box + Name: Refined Nagan Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13407,604800; + - Id: 13767 + AegisName: Skewer_Box + Name: Refined Brocca Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1424,604800; + - Id: 13768 + AegisName: Survival_Rod_Box + Name: Refined Survivor's Rod Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1628,604800; + - Id: 13769 + AegisName: Quadrille_Box + Name: Refined Quadrille Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1537,604800; + - Id: 13770 + AegisName: Great_Axe_Box + Name: Refined Great Axe Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1378,604800; + - Id: 13771 + AegisName: Bloody_Roar_Box + Name: Refined Bloody Roar Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1273,604800; + - Id: 13772 + AegisName: Hardback_Box + Name: Refined Hardcover Book Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1567,604800; + - Id: 13773 + AegisName: Fire_Brand_Box + Name: Refined Fireblend Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Fire_Brand_Box); /*rentitem 13408,604800;*/ + - Id: 13774 + AegisName: Immaterial_Sword_Box + Name: Refined Immaterial Sword Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13409,604800; + - Id: 13775 + AegisName: Unholy_Touch_Box + Name: Refined Unholy Touch Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1274,604800; + - Id: 13776 + AegisName: Cloak_Of_Survival_Box + Name: Refined Survivor's Manteau Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2535,1209600; + - Id: 13777 + AegisName: Masquerade_Box + Name: Refined Masquerade Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5326,1209600; + - Id: 13778 + AegisName: Orc_Hero_Helm_Box + Name: Refined Helmet of Orc Hero Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5327,1209600; + - Id: 13779 + AegisName: Evil_Wing_Ears_Box + Name: Refined Wing of Diablo Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5328,1209600; + - Id: 13780 + AegisName: Dark_Blindfold_Box + Name: Refined Dark Blinder Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5329,1209600; + - Id: 13781 + AegisName: kRO_Drooping_Kitty_Box + Name: Refined Drooping Cat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5330,1209600; + - Id: 13782 + AegisName: Corsair_Box + Name: Refined Corsair Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5331,1209600; + - Id: 13783 + AegisName: Bloody_Iron_Ball_Box + Name: Refined Bloodied Shackle Ball Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2710,604800; + - Id: 13784 + AegisName: Spiritual_Ring_Box + Name: Refined Spiritual Ring Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2711,604800; + - Id: 13785 + AegisName: Nagan_Box1 + Name: Refined Nagan Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13407,86400; + - Id: 13786 + AegisName: Skewer_Box1 + Name: Refined Brocca Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1424,86400; + - Id: 13787 + AegisName: Survival_Rod_Box1 + Name: Refined Survivor's Rod Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1628,86400; + - Id: 13788 + AegisName: Quadrille_Box1 + Name: Refined Quadrille Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1537,86400; + - Id: 13789 + AegisName: Great_Axe_Box1 + Name: Refined Great Axe Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1378,86400; + - Id: 13790 + AegisName: Bloody_Roar_Box1 + Name: Refined Bloody Roar Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1273,86400; + - Id: 13791 + AegisName: Hardback_Box1 + Name: Refined Hardcover Book Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1567,86400; + - Id: 13792 + AegisName: Fire_Brand_Box1 + Name: Refined Fireblend Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13408,86400; + - Id: 13793 + AegisName: Immaterial_Sword_Box1 + Name: Refined Immaterial Sword Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13409,86400; + - Id: 13794 + AegisName: Unholy_Touch_Box1 + Name: Refined Unholy Touch Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1274,86400; + - Id: 13795 + AegisName: Cloak_Of_Survival_Box1 + Name: Refined Survivor's Manteau Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2535,86400; + - Id: 13796 + AegisName: Masquerade_Box1 + Name: Refined Masquerade Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5326,86400; + - Id: 13797 + AegisName: Orc_Hero_Helm_Box1 + Name: Refined Helmet of Orc Hero Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5327,86400; + - Id: 13798 + AegisName: Evil_Wing_Ears_Box1 + Name: Refined Wing of Diablo Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5328,86400; + - Id: 13799 + AegisName: Dark_Blindfold_Box1 + Name: Refined Dark Blinder Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5329,86400; + - Id: 13800 + AegisName: kRO_Drooping_Kitty_Box1 + Name: Refined Drooping Cat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5330,86400; + - Id: 13801 + AegisName: Corsair_Box1 + Name: Refined Corsair Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5331,86400; + - Id: 13802 + AegisName: Bloody_Iron_Ball_Box1 + Name: Refined Bloodied Shackle Ball Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2710,86400; + - Id: 13803 + AegisName: Spiritual_Ring_Box1 + Name: Refined Spiritual Ring Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2711,86400; + - Id: 13804 + AegisName: Fire_Cracker_Love_Box + Name: I Love You Firecracker Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14546,10; + - Id: 13805 + AegisName: Fire_Cracker_Wday_Box + Name: Whiteday Firecracker Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14547,10; + - Id: 13806 + AegisName: Fire_Cracker_Vday_Box + Name: Valentine's Day Firecracker Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14548,10; + - Id: 13807 + AegisName: Fire_Cracker_Bday_Box + Name: Birthday Firecracker Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14549,10; + - Id: 13808 + AegisName: Fire_Cracker_Xmas_Box + Name: Xmas Firecracker Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14550,10; + - Id: 13809 + AegisName: Blue_Gemstone_Box + Name: Blue Gemstone Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 717,100; + - Id: 13810 + AegisName: Blue_Potion_Box + Name: Light Blue Potion Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 11502,25; + - Id: 13811 + AegisName: Food_Box_Lv1 + Name: Food Box Vol 1 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14551,1; getitem 14554,1; getitem 14557,1; getitem 14560,1; getitem 14563,1; getitem 14566,1; + - Id: 13812 + AegisName: Food_Box_Lv2 + Name: Food Box Vol 2 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14552,1; getitem 14555,1; getitem 14558,1; getitem 14561,1; getitem 14564,1; getitem 14567,1; + - Id: 13813 + AegisName: Food_Box_Lv3 + Name: Food Box Vol 3 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14553,1; getitem 14556,1; getitem 14559,1; getitem 14562,1; getitem 14565,1; getitem 14568,1; + - Id: 13814 + AegisName: Indonesia_Box + Name: Healing Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 503,100; getitem 12684,10; getitem 607,5; + - Id: 13815 + AegisName: Knife_Goblin_Box + Name: Knife Goblin Taming Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14569,10; + - Id: 13816 + AegisName: Flail_Goblin_Box + Name: Flail Goblin Taming Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14570,10; + - Id: 13817 + AegisName: Hammer_Goblin_Box + Name: Hammer Goblin Taming Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14571,10; + - Id: 13818 + AegisName: Red_Deleter_Box + Name: Red Deleter Taming Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14572,10; + - Id: 13819 + AegisName: Diabolic_Box + Name: Diabolic Taming Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14573,10; + - Id: 13820 + AegisName: Wanderer_Box + Name: Wanderer Taming Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14574,10; + - Id: 13821 + AegisName: Green_Apple_Box + Name: Green Apple Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7821,10; + - Id: 13822 + AegisName: Whole_Barbecue_Box + Name: Barbeque Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7822,10; + - Id: 13823 + AegisName: Meat_Veg_Skewer_Box + Name: Meat Skewer Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7823,10; + - Id: 13824 + AegisName: Spirit_Liquor_Box + Name: Spirit Liquor Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7824,10; + - Id: 13825 + AegisName: Green_Box_ + Name: Old Green Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + - Id: 13826 + AegisName: Power_Box1 + Name: Power Box 1 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 682,1; getitem 12123,1; getitem 12122,1; + - Id: 13827 + AegisName: Power_Box2 + Name: Power Box 2 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 683,1; getitem 12123,1; getitem 12122,1; + - Id: 13828 + AegisName: Resist_Box1 + Name: Resist Box 1 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12118,1; getitem 12119,1; + - Id: 13829 + AegisName: Resist_Box2 + Name: Resist Box 2 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12120,1; getitem 12121,1; + - Id: 13830 + AegisName: Stat_Boost1 + Name: Stat Boost 1 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_INCSTR,60000,5; sc_start SC_INCAGI,60000,5; sc_start SC_INCVIT,60000,5; + - Id: 13831 + AegisName: Stat_Boost2 + Name: Stat Boost 2 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_INCINT,60000,5; sc_start SC_INCLUK,60000,5; sc_start SC_INCDEX,60000,5; + - Id: 13832 + AegisName: Stat_Boost3 + Name: Stat Boost 3 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_INCAGI,60000,5; sc_start SC_INCVIT,60000,5; sc_start SC_INCDEX,60000,5; + - Id: 13833 + AegisName: Stat_Boost4 + Name: Stat Boost 4 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_INCINT,60000,5; sc_start SC_INCVIT,60000,5; sc_start SC_INCDEX,60000,5; + - Id: 13834 + AegisName: Dun_Tele_Scroll2_Box5 + Name: Dungeon Teleport Scroll II 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14581,5; + - Id: 13835 + AegisName: Dun_Tele_Scroll2_Box10 + Name: Dungeon Teleport Scroll II 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14581,10; + - Id: 13836 + AegisName: Mbl_Str_Dish_Box + Name: Steamed Tongue Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12250,1; + - Id: 13837 + AegisName: Mbl_Agi_Dish_Box + Name: Steamed Desert Scorpions Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12251,1; + - Id: 13838 + AegisName: Mbl_Int_Dish_Box + Name: Dragon Breath Cocktail Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12252,1; + - Id: 13839 + AegisName: Mbl_Dex_Dish_Box + Name: Hwergelmir's Tonic Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12253,1; + - Id: 13840 + AegisName: Mbl_Luk_Dish_Box + Name: Cooked Nine Tail Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12254,1; + - Id: 13841 + AegisName: Mbl_Vit_Dish_Box + Name: Immortal Stew Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12255,1; + - Id: 13842 + AegisName: Mbl_Kafra_Card_Box + Name: Payment Statement for Kafra Employee Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12249,1; + - Id: 13843 + AegisName: Mbl_Battle_Manual_Box + Name: Field Manual Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14532,1; + - Id: 13844 + AegisName: Heroic_Stone_Box + Name: Heroic Stone Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7825,1; + - Id: 13845 + AegisName: Mysterious_Travel_Sack1 + Name: Mystery Travel Sack A + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Mysterious_Travel_Sack1); + - Id: 13846 + AegisName: Mysterious_Travel_Sack2 + Name: Mystery Travel Sack B + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Mysterious_Travel_Sack2); + - Id: 13847 + AegisName: Mysterious_Travel_Sack3 + Name: Mystery Travel Sack C + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Mysterious_Travel_Sack3); + - Id: 13848 + AegisName: Mysterious_Travel_Sack4 + Name: Mystery Travel Sack D + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Mysterious_Travel_Sack4); + - Id: 13849 + AegisName: WOB_Box_Rune5 + Name: Yellow Butterfly Wing 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14582,5; + - Id: 13850 + AegisName: WOB_Box_Rune10 + Name: Yellow Butterfly Wing Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14582,10; + - Id: 13851 + AegisName: WOB_Box_Schawaltz5 + Name: Green Butterfly Wing 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14583,5; + - Id: 13852 + AegisName: WOB_Box_Schawaltz10 + Name: Green Butterfly Wing Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14583,10; + - Id: 13853 + AegisName: WOB_Box_Rachel5 + Name: Red Butterfly Wing 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14584,5; + - Id: 13854 + AegisName: WOB_Box_Rachel10 + Name: Red Butterfly Wing Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14584,10; + - Id: 13855 + AegisName: WOB_Box_Local5 + Name: Blue Butterfly Wing 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14585,5; + - Id: 13856 + AegisName: WOB_Box_Local10 + Name: Blue Butterfly Wing Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14585,10; + - Id: 13857 + AegisName: Spark_Candy_Box5 + Name: Candy 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14586,5; + - Id: 13858 + AegisName: Spark_Candy_Box10 + Name: Candy 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14586,10; + - Id: 13859 + AegisName: Directive_A_Envelope + Name: Directive Envelope A + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2734,1; + - Id: 13860 + AegisName: Directive_B_Envelope + Name: Directive Envelope B + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2735,1; + - Id: 13861 + AegisName: Mini_Battle_Manual_Box + Name: Small Field Manual Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12208,4; + - Id: 13862 + AegisName: Trial_Box + Name: Trial Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12208,2; getitem 12215,15; getitem 12216,15; + - Id: 13863 + AegisName: Repair_Scroll_Box10 + Name: Repair Weapon Scroll 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14521,10; getitem 1002,10; getitem 998,10; getitem 756,10; getitem 999,10; + - Id: 13864 + AegisName: Hockey_Mask_Box + Name: Hockey Mask Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5314,604800; + - Id: 13865 + AegisName: Observer_Box + Name: Observer Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5315,604800; + - Id: 13866 + AegisName: Flying_Angel_Box + Name: Flying Angel Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5210,1; + - Id: 13867 + AegisName: Neko_Mimi_Box + Name: Neko Mimi Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5099,1; + - Id: 13868 + AegisName: MFH_Box + Name: Moonlight Flower Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5214,1; + - Id: 13869 + AegisName: Chick_Hat_Box + Name: Baby Chick Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5283,1; + - Id: 13870 + AegisName: New_Style_Box + Name: Beauty Gift Certificate Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7622,1; + - Id: 13871 + AegisName: Magician_Card_Box + Name: Mage Card Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Magician_Card_Box); /*getitem 4327,1; getitem 4309,1; getitem 4325,1; getitem 4208,1; getitem 4258,1; getitem 4191,1;*/ + - Id: 13872 + AegisName: Acolyte_Card_Box + Name: Acolyte Card Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Acolyte_Card_Box); /*getitem 4185,1; getitem 4312,1; getitem 4217,1; getitem 4280,1; getitem 4293,1;*/ + - Id: 13873 + AegisName: Archer_Card_Box + Name: Archer Card Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Archer_Card_Box); /*getitem 4297,1; getitem 4234,1; getitem 4199,1; getitem 4178,1; getitem 4252,1;*/ + - Id: 13874 + AegisName: Swordman_Card_Box + Name: Swordman Card Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Swordman_Card_Box); /*getitem 4319,1; getitem 4331,1; getitem 4220,1; getitem 4311,1; getitem 4246,1;*/ + - Id: 13875 + AegisName: Thief_Card_Box + Name: Thief Card Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Thief_Card_Box); /*getitem 4230,1; getitem 4210,1; getitem 4257,1; getitem 4172,1; getitem 4272,1;*/ + - Id: 13876 + AegisName: Merchant_Card_Box + Name: Merchant Card Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Merchant_Card_Box); /*getitem 4206,1; getitem 4281,1; getitem 4186,1; getitem 4233,1; getitem 4321,1;*/ + - Id: 13877 + AegisName: Clock_Tower_Card_Box + Name: Clock Tower Card Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4244,1; getitem 4299,1; getitem 4313,1; getitem 4229,1; + - Id: 13878 + AegisName: Geffenia_Card_Box + Name: Geffenia Card Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4218,1; getitem 4269,1; + - Id: 13879 + AegisName: Owl_Card_Box + Name: Owl Card Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4237,1; getitem 4238,1; + - Id: 13880 + AegisName: Ghost_Card_Box + Name: Ghost Card Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4193,1; getitem 4294,1; + - Id: 13881 + AegisName: Nightmare_Card_Box + Name: Nightmare Card Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4127,1; getitem 4166,1; + - Id: 13882 + AegisName: Curse_Card_Box + Name: Curse Card Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4076,4; + - Id: 13883 + AegisName: Sleep_Card_Box + Name: Sleep Card Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4024,4; + - Id: 13884 + AegisName: Freeze_Card_Box + Name: Freeze Card Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4055,4; + - Id: 13885 + AegisName: Stun_Card_Box + Name: Stun Card Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4017,4; + - Id: 13886 + AegisName: Silence_Card_Box + Name: Silence Card Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4057,4; + - Id: 13887 + AegisName: Blind_Card_Box + Name: Blind Card Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4020,4; + - Id: 13888 + AegisName: Chaos_Card_Box + Name: Chaos Card Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4104,4; + - Id: 13889 + AegisName: Elunium_Box_ + Name: Elunium Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 985,10; + - Id: 13890 + AegisName: Oridecon_Box_ + Name: Oridecon Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 984,10; + - Id: 13891 + AegisName: Fire_Converter_Box + Name: Fire Converter Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12114,10; + - Id: 13892 + AegisName: Water_Converter_Box + Name: Water Converter Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12115,10; + - Id: 13893 + AegisName: Wind_Converter_Box + Name: Wind Converter Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12117,10; + - Id: 13894 + AegisName: Earth_Converter_Box + Name: Earth Converter Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12116,10; + - Id: 13895 + AegisName: Starter_Pack + Name: Starter Pack + Type: Cash + Buy: 20 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7229,2; getitem 569,300; getitem 504,20; getitem 505,20; getitem 7060,30; getitem 2403,1; getitem 5039,1; getitem 2503,1; getitem 2307,1; getitem 616,1; getitem 603,1; getitem 617,1; getitem 610,5; getitem 604,5; + - Id: 13896 + AegisName: Mimic_Summon_Box5 + Name: Mimic Summoning 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12276,5; + - Id: 13897 + AegisName: Disguise_Summon_Box5 + Name: Disguise Summoning 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12277,5; + - Id: 13898 + AegisName: Alice_Summon_Box5 + Name: Alice Summoning 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12278,5; + - Id: 13899 + AegisName: Mimic_Summon_Box10 + Name: Mimic Summoning 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12276,10; + - Id: 13900 + AegisName: Disguise_Summon_Box10 + Name: Disguise Summoning 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12277,10; + - Id: 13901 + AegisName: Alice_Summon_Box10 + Name: Alice Summoning 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12278,10; + - Id: 13902 + AegisName: Fish_Head_Hat_Box + Name: Fish Head Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5380,1; + - Id: 13903 + AegisName: Santa_Poring_Hat_Box + Name: Santa Poring Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5381,1; + - Id: 13904 + AegisName: Bell_Ribbon_Box + Name: Bell Ribbon Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5382,1; + - Id: 13905 + AegisName: Hard_Core_Set_Box + Name: XM Hardcore Set Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Hard_Core_Set_Box); /*getitem 12208,10; getitem 12209,10; getitem 12210,10;*/ + - Id: 13906 + AegisName: Kitty_Set_Box + Name: XM Kitty Set Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Kitty_Set_Box); /*getitem 5230,1; getitem 5231,1; getitem 5232,1; getitem 5233,1; getitem 5234,1;*/ + - Id: 13907 + AegisName: Soft_Core_Set_Box + Name: XM Softcore Set Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Soft_Core_Set_Box); /*getitem 12208,5; getitem 12209,5; getitem 12210,5;*/ + - Id: 13908 + AegisName: Deviruchi_Set_Box + Name: XM Deviruchi Set Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Deviruchi_Set_Box); /*getitem 5227,1; getitem 5228,1; getitem 5229,1;*/ + - Id: 13909 + AegisName: MVP_Hunt_Box + Name: MVP Hunting Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_MVP_Hunt_Box); /*getitem 7621,1; getitem 12210,1; getitem 12221,1; getitem 12214,3;*/ + - Id: 13910 + AegisName: Brewing_Box + Name: XM Brewing Set Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Brewing_Box); /*getitem 12204,10; getitem 12205,10; getitem 12206,10;*/ + - Id: 13911 + AegisName: Xmas_Pet_Scroll + Name: Christmas Pet Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Xmas_Pet_Scroll); + - Id: 13912 + AegisName: Party_Blessing_Box + Name: Party Blessing 10 Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14588,10; + - Id: 13913 + AegisName: Party_Inc_Agi_Box + Name: Party Increase Agi 10 Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14589,10; + - Id: 13914 + AegisName: Party_Assumptio_Box + Name: Party Assumptio 5 Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14590,10; + - Id: 13915 + AegisName: Love_Angel_Box + Name: Love Angel Magic Powder Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12287,604800; + - Id: 13916 + AegisName: Squirrel_Box + Name: Squirrel Magic Powder Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12288,604800; + - Id: 13917 + AegisName: Gogo_Box + Name: Gogo Magic Powder Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12289,604800; + - Id: 13918 + AegisName: Drooping_W_Kitty_Box + Name: Koneko Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5372,1; + - Id: 13919 + AegisName: L_Magestic_Goat_Box + Name: Baphomet Horns Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5374,1; + - Id: 13920 + AegisName: Satanic_Chain_P_Box + Name: Flying Evil Wing Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5376,1; + - Id: 13921 + AegisName: Antique_Pipe_Box + Name: Gentleman's Pipe Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5377,1; + - Id: 13922 + AegisName: Rabbit_Ear_Hat_Box + Name: Bunny Top Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5378,1; + - Id: 13923 + AegisName: Darkness_Helm_Box + Name: Dark Randgris Helm Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5373,1; + - Id: 13924 + AegisName: L_Orc_Hero_Helm_Box + Name: Orc Hero Headdress Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5375,1; + - Id: 13925 + AegisName: Lucky_Scroll08 + Name: Lucky Scroll08 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Lucky_Scroll08); + - Id: 13926 + AegisName: Crusader_Card_Box + Name: Crusader Card Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4371,1; getitem 4311,1; getitem 4319,1; getitem 4331,1; + - Id: 13927 + AegisName: Alchemist_Card_Box + Name: Alchemist Card Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4281,1; getitem 4233,1; getitem 4343,1; getitem 4186,1; getitem 4036,1; + - Id: 13928 + AegisName: Rogue_Card_Box + Name: Rogue Card Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4039,1; getitem 4210,1; getitem 4257,1; getitem 4230,1; getitem 4348,1; + - Id: 13929 + AegisName: Bard_Dancer_Card_Box + Name: Bard Dancer Card Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4297,1; getitem 4234,1; getitem 4178,1; getitem 4381,1; getitem 4252,1; + - Id: 13930 + AegisName: Sage_Card_Box + Name: Sage card box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4382,1; getitem 4258,1; getitem 4325,1; getitem 4208,1; getitem 4327,1; + - Id: 13931 + AegisName: Monk_Card_Box + Name: Monk Card Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4312,1; getitem 4332,1; getitem 4185,1; getitem 4293,1; + - Id: 13932 + AegisName: Sylph_Box + Name: Sylph Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4345,4; + - Id: 13933 + AegisName: Undine_Box + Name: Undine Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4350,4; + - Id: 13934 + AegisName: Salamander_Box + Name: Salamander Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4380,4; + - Id: 13935 + AegisName: Soul_Box + Name: Soul Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4388,4; + - Id: 13936 + AegisName: Noum_Bpx + Name: Gnome Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 4335,4; + - Id: 13937 + AegisName: Robo_Eye_Box + Name: Robo Eye Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5325,1; + - Id: 13938 + AegisName: Twin_Ribbon_Box + Name: Maiden's Twin Ribbon Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5187,1; + - Id: 13939 + AegisName: Diadem_Box + Name: Diadem Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5313,1; + - Id: 13940 + AegisName: Siege_Tele_Scroll_Box + Name: WoE Teleport Scroll 100 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14591,100; + - Id: 13941 + AegisName: Valentine_Scroll_TW + Name: Taiwan Valentine Scroll + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 13942 + AegisName: Love_Angel_Box_1m + Name: Love Angel Magic Powder Box 30 Days + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14009,1; + - Id: 13943 + AegisName: Squirrel_Box_1m + Name: Squirrel Magic Powder Box 30 Days + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14010,1; + - Id: 13944 + AegisName: Gogo_Box_1m + Name: Gogo Magic Powder Box 30 Days + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14011,1; + - Id: 13945 + AegisName: Br_SwordPackage + Name: Swordman Package + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Br_SwordPackage); + - Id: 13946 + AegisName: Br_MagePackage + Name: Magician Package + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Br_MagePackage); + - Id: 13947 + AegisName: Br_AcolPackage + Name: Acolyte Package + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Br_AcolPackage); + - Id: 13948 + AegisName: Br_ArcherPackage + Name: Archer Package + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Br_ArcherPackage); + - Id: 13949 + AegisName: Br_MerPackage + Name: Merchant Package + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Br_MerPackage); + - Id: 13950 + AegisName: Br_ThiefPackage + Name: Thief Package + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Br_ThiefPackage); + - Id: 13951 + AegisName: Wasteland_Outlaw_Box + Name: Western Outlaw Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13109,604800; + - Id: 13952 + AegisName: Lever_Action_Rifle_Box + Name: Lever Action Rifle Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13170,604800; + - Id: 13953 + AegisName: All_In_One_Ring_Box + Name: All In One Ring Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_All_In_One_Ring_Box); /*rentitem All_In_One_Ring,604800;*/ + - Id: 13954 + AegisName: Spiritual_Tunic_Box + Name: Spiritual Tunic Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2384,604800; + - Id: 13955 + AegisName: Recuperative_Armor_Box + Name: Recuvative Armor Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2385,604800; + - Id: 13956 + AegisName: Shelter_Resistance_Box + Name: Shell Of Resistance Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2132,604800; + - Id: 13957 + AegisName: Sylphid_Manteau_Box + Name: Silf Manteau Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2543,604800; + - Id: 13958 + AegisName: Refresh_Shoes_Box + Name: Refresh Shoes Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2439,604800; + - Id: 13959 + AegisName: Toast_Box + Name: Crunch Toast Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5391,604800; + - Id: 13960 + AegisName: Name_Change_Coupon_Box + Name: Identification Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7623,1; + - Id: 13961 + AegisName: Mojji_Box + Name: Mochi Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 554,5; + - Id: 13962 + AegisName: Deprotai_Doll_Hat_Box + Name: Defolty Doll Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5340,1; + - Id: 13963 + AegisName: Claris_Doll_Hat_Box + Name: Glaris Doll Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5341,1; + - Id: 13964 + AegisName: Sorin_Doll_Hat_Box + Name: Sorin Doll Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5342,1; + - Id: 13965 + AegisName: Tayelin_Doll_Hat_Box + Name: Tailring Doll Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5343,1; + - Id: 13966 + AegisName: Binit_Doll_Hat_Box + Name: Vinit Doll Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5344,1; + - Id: 13967 + AegisName: Debril_Doll_Hat_Box + Name: W Doll Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5345,1; + - Id: 13968 + AegisName: Bubblegum_Lower_Box + Name: Bubble Gum Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5394,86400; + - Id: 13969 + AegisName: Lucky_Clip_Box + Name: Lucky Clip Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2742,86400; + - Id: 13970 + AegisName: Iron_10_Box + Name: Iron Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 998,10; + - Id: 13971 + AegisName: Steel_10_Box + Name: Steel Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 999,10; + - Id: 13972 + AegisName: Coal_10_Box + Name: Coal Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 1003,10; + - Id: 13973 + AegisName: Poison_Bottle_30_Box + Name: Poison Bottle Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 678,30; + - Id: 13974 + AegisName: TW_Scroll01 + Name: Fisherman Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 13975 + AegisName: Picture_Diary_Box + Name: Diary Magic Powder Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12304,604800; + - Id: 13976 + AegisName: Mini_Heart_Box + Name: Mini Heart Magic Powder Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12305,604800; + - Id: 13977 + AegisName: Newcomer_Box + Name: Freshman Magic Powder Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12306,604800; + - Id: 13978 + AegisName: Kid_Box + Name: Kid Magic Powder Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12307,604800; + - Id: 13979 + AegisName: Magic_Castle_Box + Name: Magic Magic Powder Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12308,604800; + - Id: 13980 + AegisName: Bulging_Head_Box + Name: JJangu Magic Powder Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12309,604800; + - Id: 13981 + AegisName: Picture_Diary_Box_1m + Name: Diary Magic Powder Box 30 Days + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12304,2592000; + - Id: 13982 + AegisName: Mini_Heart_Box_1m + Name: Mini Heart Magic Powder Box 30 Days + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12305,2592000; + - Id: 13983 + AegisName: Newcomer_Box_1m + Name: Freshman Magic Powder Box 30 Days + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12306,2592000; + - Id: 13984 + AegisName: Kid_Box_1m + Name: Kid Magic Powder Box 30 Days + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12307,2592000; + - Id: 13985 + AegisName: Magic_Castle_Box_1m + Name: Magic Magic Powder Box 30 Days + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12308,2592000; + - Id: 13986 + AegisName: Bulging_Head_Box_1m + Name: JJangu Magic Powder Box 30 Days + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12309,2592000; + - Id: 13987 + AegisName: Ori_Stone_5_Box + Name: Rough Oridecon 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 756,5; + - Id: 13988 + AegisName: Ori_Stone_50_Box + Name: Rough Oridecon 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 756,50; + - Id: 13989 + AegisName: Acidbomb_10_Box + Name: Acid Bomb 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Acidbomb_10_Box); /*getitem 7135,10; getitem 7136,10;*/ + - Id: 13990 + AegisName: Job_Manual50_Box + Name: JOB Battle Manual Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14592,10; + - Id: 13991 + AegisName: Tiger_Mask_Box + Name: Tiger Mask Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5098,1; + - Id: 13992 + AegisName: Cat_Hat_Box + Name: Pussy Cat Bell Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5099,1; + - Id: 13993 + AegisName: Alice_Doll_Box + Name: Alice Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5137,1; + - Id: 13994 + AegisName: Speed_Up_Potion_Box5 + Name: Speed Potion 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12016,5; + - Id: 13995 + AegisName: Speed_Up_Potion_Box10 + Name: Speed Potion 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12016,10; + - Id: 13996 + AegisName: Big_Bun_Box100 + Name: Big Bun 100 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14522,100; + - Id: 13997 + AegisName: Big_Bun_Box500 + Name: Big Bun 500 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14522,500; + - Id: 13998 + AegisName: Giant_Fly_Wing_Box500 + Name: Giant Fly Wing 500 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12212,500; + - Id: 13999 + AegisName: Pill__Box100 + Name: Pill 100 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14523,100; + - Id: 14000 + AegisName: Pill__Box500 + Name: Pill 500 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14523,500; + - Id: 14001 + AegisName: Basic_Siege_Supply_Box + Name: Recruit Siege Supply Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Basic_Siege_Supply_Box); /*getitem 11503,25; getitem 11504,10;*/ + - Id: 14002 + AegisName: Adv_Siege_Supply_Box + Name: Veteran Siege Supply Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Adv_Siege_Supply_Box); /*getitem 11503,50; getitem 11504,20;*/ + - Id: 14003 + AegisName: Elite_Siege_Supply_Box + Name: Elite Siege Supply Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Elite_Siege_Supply_Box); /*getitem 11503,100; getitem 11504,50;*/ + - Id: 14004 + AegisName: Poison_Bottle_10_Box + Name: Poison Bottle 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 678,10; + - Id: 14005 + AegisName: Poison_Bottle_5_Box + Name: Poison Bottle 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 678,5; + - Id: 14006 + AegisName: F_Drooping_W_Kitty_Box + Name: Evolved Drooping Cat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5372,1; + - Id: 14007 + AegisName: F_Rabbit_Ear_Hat_Box + Name: Evolved Rabbits Headband Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5378,1; + - Id: 14008 + AegisName: F_L_Orc_Hero_Helm_Box + Name: Evolved Helmet Of Orc Hero Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5375,1; + - Id: 14009 + AegisName: F_Love_Angel_Box + Name: Love Angel Magic Powder Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12287,604800; + - Id: 14010 + AegisName: F_Squirrel_Box + Name: Squillroll Magic Powder Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12288,604800; + - Id: 14011 + AegisName: F_Gogo_Box + Name: Gogo Magic Powder Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12289,604800; + - Id: 14012 + AegisName: F_Love_Angel_Box_1m + Name: Love Angel Magic Powder Box 30 Days + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13915,2592000; + - Id: 14013 + AegisName: F_Squirrel_Box_1m + Name: Squillroll Magic Powder Box 30 Days + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13916,2592000; + - Id: 14014 + AegisName: F_Gogo_Box_1m + Name: Gogo Magic Powder Box 30 Days + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13917,2592000; + - Id: 14015 + AegisName: F_Wasteland_Outlaw_Box + Name: Western Outlaw Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13107,604800; + - Id: 14016 + AegisName: F_Lever_Action_Rifle_Box + Name: Lever Action Rifle Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13170,604800; + - Id: 14017 + AegisName: F_All_In_One_Ring_Box + Name: All In One Ring Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2741,604800; + - Id: 14018 + AegisName: F_Spritual_Tunic_Box + Name: Spiritual Tunic Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2384,604800; + - Id: 14019 + AegisName: F_Recuperative_Box + Name: Recuvative Armor Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2385,604800; + - Id: 14020 + AegisName: F_Shelter_Resist_Box + Name: Shell Of Resistance Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2132,604800; + - Id: 14021 + AegisName: F_Sylphid_Manteau_Box + Name: Silf Manteau Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2543,604800; + - Id: 14022 + AegisName: F_Refresh_Shoes_Box + Name: Refresh Shoes Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2439,604800; + - Id: 14023 + AegisName: F_Toast_Box + Name: Crunch Toast Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5391,604800; + - Id: 14024 + AegisName: F_Robo_Eye_Box + Name: Robo Eye Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5325,1; + - Id: 14025 + AegisName: F_Twin_Ribbon_Box + Name: Maiden's Twin Ribbon Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5187,1; + - Id: 14026 + AegisName: F_Diadem_Box + Name: Diadem Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5313,1; + - Id: 14027 + AegisName: F_Fish_Head_Hat_Box + Name: Fish Head Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5380,1; + - Id: 14028 + AegisName: F_Santa_Poring_Hat_Box + Name: SantaPoring Cap Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5381,1; + - Id: 14029 + AegisName: F_Bell_Ribbon_Box + Name: Bell Ribbon Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5382,1; + - Id: 14030 + AegisName: F_Mimic_Scroll_Box5 + Name: Mimic Summoning 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12276,5; + - Id: 14031 + AegisName: F_Disguise_Scroll_Box5 + Name: Disguise Summoning 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12277,5; + - Id: 14032 + AegisName: F_Alice_Scroll_Box5 + Name: Alice Summoning 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12278,5; + - Id: 14033 + AegisName: F_Mimic_Scroll_Box10 + Name: Mimic Summoning 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12276,10; + - Id: 14034 + AegisName: F_Disguise_Scroll_Box10 + Name: Disguise Summoning 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12277,10; + - Id: 14035 + AegisName: F_Alice_Scroll_Box10 + Name: Alice Summoning 10 Box) + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12278,10; + - Id: 14036 + AegisName: F_New_Style_Coupon_Box + Name: New Style Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7622,1; + - Id: 14037 + AegisName: F_Repair_Scroll_Box + Name: Repair Weapon Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14521,5; getitem 1002,5; getitem 998,5; getitem 756,5; getitem 999,5; + - Id: 14038 + AegisName: F_Repair_Scroll_Box10 + Name: Repair Weapon Scroll 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14521,10; getitem 1002,10; getitem 998,10; getitem 756,10; getitem 999,10; + - Id: 14039 + AegisName: F_Hockey_Mask_Box + Name: Hockey Mask Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5314,604800; + - Id: 14040 + AegisName: F_Observer_Box + Name: Observer Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5315,604800; + - Id: 14041 + AegisName: F_WOB_Rune_Box5 + Name: Yellow Butterfly Wing 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14582,5; + - Id: 14042 + AegisName: F_WOB_Rune_Box10 + Name: Yellow Butterfly Wing Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14582,10; + - Id: 14043 + AegisName: F_WOB_Schwaltz_Box5 + Name: Green Butterfly Wing 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14583,5; + - Id: 14044 + AegisName: F_WOB_Schwaltz_Box10 + Name: Green Butterfly Wing Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14583,10; + - Id: 14045 + AegisName: F_WOB_Rachel_Box5 + Name: Red Butterfly Wing 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14584,5; + - Id: 14046 + AegisName: F_WOB_Rachel_Box10 + Name: Red Butterfly Wing Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14584,10; + - Id: 14047 + AegisName: F_WOB_Local_Box5 + Name: Blue Butterfly Wing 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14585,5; + - Id: 14048 + AegisName: F_WOB_Local_Box10 + Name: Blue Butterfly Wing Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14585,10; + - Id: 14049 + AegisName: F_Spark_Candy_Box5 + Name: Candy 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14586,5; + - Id: 14050 + AegisName: F_Spark_Candy_Box10 + Name: Candy 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14586,10; + - Id: 14051 + AegisName: F_Dun_Tel_Scroll2_Box5 + Name: Dungeon Teleport Scroll II 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14581,5; + - Id: 14052 + AegisName: F_Dun_Tel_Scroll2_Box10 + Name: Dungeon Teleport Scroll II 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14581,10; + - Id: 14053 + AegisName: F_Little_Angel_Doll_Box + Name: Little Angel Doll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5324,1; + - Id: 14054 + AegisName: F_Triple_Poring_Hat_Box + Name: Poring 3 Hats Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5255,1; + - Id: 14055 + AegisName: F_Nagan_Box + Name: Refined Nagan Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13407,604800; + - Id: 14056 + AegisName: F_Skewer_Box + Name: Refined Brocca Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1424,604800; + - Id: 14057 + AegisName: F_Survival_Rod_Box + Name: Refined Survivor's Rod Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1628,604800; + - Id: 14058 + AegisName: F_Quadrille_Box + Name: Refined Quadrille Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1537,604800; + - Id: 14059 + AegisName: F_Great_Axe_Box + Name: Refined Great Axe Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1378,604800; + - Id: 14060 + AegisName: F_Bloody_Roar_Box + Name: Refined Bloody Roar Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1273,604800; + - Id: 14061 + AegisName: F_Hardback_Box + Name: Refined Hardcover Book Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1567,604800; + - Id: 14062 + AegisName: F_Fire_Brand_Box + Name: Refined Fireblend Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13408,604800; + - Id: 14063 + AegisName: F_Immaterial_Sword_Box + Name: Refined Immaterial Sword Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13409,604800; + - Id: 14064 + AegisName: F_Unholy_Touch_Box + Name: Refined Unholy Touch Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1274,604800; + - Id: 14065 + AegisName: F_Clack_Of_Servival_Box + Name: Refined Survivor's Manteau Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2535,1209600; + - Id: 14066 + AegisName: F_Masquerade_Box + Name: Refined Masquerade Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5326,1209600; + - Id: 14067 + AegisName: F_Orc_Hero_Helm_Box + Name: Refined Helmet of Orc Hero Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5327,1209600; + - Id: 14068 + AegisName: F_Ear_Of_Devil_Wing_Box + Name: Refined Wing of Diablo Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5328,1209600; + - Id: 14069 + AegisName: F_Dark_Blindfold_Box + Name: Refined Dark Blinder Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5329,1209600; + - Id: 14070 + AegisName: F_K_Drooping_Kitty_Box + Name: Refined Drooping Cat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5330,1209600; + - Id: 14071 + AegisName: F_Corsair_Box + Name: Refined Corsair Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5331,1209600; + - Id: 14072 + AegisName: F_Bloody_Iron_Ball_Box + Name: Refined Bloodied Shackle Ball Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2710,604800; + - Id: 14073 + AegisName: F_Spiritual_Ring_Box + Name: Refined Spiritual Ring Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2711,604800; + - Id: 14074 + AegisName: F_G_O_I_Box5 + Name: Wine Glass of Illusion 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14538,5; + - Id: 14075 + AegisName: F_G_O_I_Box10 + Name: Glass Of Illusion 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14538,10; + - Id: 14076 + AegisName: F_Shadow_Armor_S_Box5 + Name: Scroll of Shadow Armor 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14539,5; + - Id: 14077 + AegisName: F_Shadow_Armor_S_Box10 + Name: Scroll of Shadow Armor 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14539,10; + - Id: 14078 + AegisName: F_Shadow_Armor_S_Box30 + Name: Scroll of Shadow Armor 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14539,30; + - Id: 14079 + AegisName: F_Holy_Armor_S_Box5 + Name: Scroll of Holy Armor 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14540,5; + - Id: 14080 + AegisName: F_Holy_Armor_S_Box10 + Name: Scroll of Holy Armor 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14540,10; + - Id: 14081 + AegisName: F_Holy_Armor_S_Box30 + Name: Scroll of Holy Armor 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14540,30; + - Id: 14082 + AegisName: FS_Def_Potion_Box10 + Name: Small Defense Potion 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14541,10; + - Id: 14083 + AegisName: FS_Def_Potion_Box30 + Name: Small Physical Defense Potion 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14541,30; + - Id: 14084 + AegisName: FS_Def_Potion_Box50 + Name: Small Physical Defense Potion 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14541,50; + - Id: 14085 + AegisName: FB_Def_Potion_Box10 + Name: Big Defense Potion 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14542,10; + - Id: 14086 + AegisName: FB_Def_Potion_Box30 + Name: Large Physical Defense Potion 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14542,30; + - Id: 14087 + AegisName: FB_Def_Potion_Box50 + Name: Large Physical Defense Potion 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14542,50; + - Id: 14088 + AegisName: FS_Mdef_Potion_Box10 + Name: Small Magic Defense Potion 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14543,10; + - Id: 14089 + AegisName: FS_Mdef_Potion_Box30 + Name: Small Magical Defense Potion 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14543,30; + - Id: 14090 + AegisName: FS_Mdef_Potion_Box50 + Name: Small Magical Defense Potion 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14543,50; + - Id: 14091 + AegisName: FB_Mdef_Potion_Box10 + Name: Big Magic Defense Potion 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14544,10; + - Id: 14092 + AegisName: FB_Mdef_Potion_Box30 + Name: Large Magical Defense Potion 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14544,30; + - Id: 14093 + AegisName: FB_Mdef_Potion_Box50 + Name: Large Magical Defense Potion 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14544,50; + - Id: 14094 + AegisName: F_Flying_Angel_Box + Name: Flying Angel Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5210,1; + - Id: 14095 + AegisName: F_Cat_Hat_Box + Name: Neko Mimi Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5099,1; + - Id: 14096 + AegisName: F_M_F_H_Box + Name: Moonlight Flower Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5214,1; + - Id: 14097 + AegisName: F_Chick_Hat_Box + Name: Baby Chick Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5283,1; + - Id: 14098 + AegisName: F_Pecopeco_Hairband_Box + Name: Peco Peco Hairband Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5286,1209600; + - Id: 14099 + AegisName: F_Red_Glasses_Box + Name: Red Glasses Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5288,1209600; + - Id: 14100 + AegisName: F_Whisper_Mask_Box + Name: Whisper Mask Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5294,1209600; + - Id: 14101 + AegisName: F_Ramen_Hat_Box + Name: Ramen Hat Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5293,1209600; + - Id: 14102 + AegisName: F_Dun_Tele_Scroll1_Box + Name: Dungeon Teleport Scroll 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14527,5; + - Id: 14103 + AegisName: F_Max_Weight_Up_Box + Name: Gym Membership Card Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7776,1; + - Id: 14104 + AegisName: F_S_Life_Potion_Box + Name: Small Life Potion 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14534,10; + - Id: 14105 + AegisName: F_S_Life_Potion_Box30 + Name: Small Life Potion 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14534,30; + - Id: 14106 + AegisName: F_S_Life_Potion_Box50 + Name: Small Life Potion 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14534,50; + - Id: 14107 + AegisName: F_M_Life_Potion_Box + Name: Medium Life Potion 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14535,10; + - Id: 14108 + AegisName: F_M_Life_Potion_Box30 + Name: Large Life Potion 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14535,30; + - Id: 14109 + AegisName: F_M_Life_Potion_Box50 + Name: Large Life Potion 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14535,50; + - Id: 14110 + AegisName: F_Abrasive_Box5 + Name: Abrasive 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14536,5; + - Id: 14111 + AegisName: F_Abrasive_Box10 + Name: Abrasive 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14536,10; + - Id: 14112 + AegisName: F_Regeneration_Box5 + Name: Regeneration Potion 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14537,5; + - Id: 14113 + AegisName: F_Regeneration_Box10 + Name: Regeneration Potion 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14537,10; + - Id: 14114 + AegisName: F_Dun_Tele_Scroll_Box10 + Name: Dungeon Teleport Scroll 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14527,10; + - Id: 14115 + AegisName: F_Infiltrator_Box + Name: Refined Infiltrator Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1267,604800; + - Id: 14116 + AegisName: F_Muramasa_Box + Name: Refined Muramasa Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1173,604800; + - Id: 14117 + AegisName: F_Excalibur_Box + Name: Refined Excalibur Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13401,604800; + - Id: 14118 + AegisName: F_Combat_Knife_Box + Name: Combat Knife Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13021,604800; + - Id: 14119 + AegisName: F_Counter_Dagger_Box + Name: Counter Dagger Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13022,604800; + - Id: 14120 + AegisName: F_Kaiser_Knuckle_Box + Name: Refined Kaiser Knuckle Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1817,604800; + - Id: 14121 + AegisName: F_Mighty_Staff_Box + Name: Refined Mighty Staff Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1623,604800; + - Id: 14122 + AegisName: F_Right_Epsilon_Box + Name: Light Epsilon Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1372,604800; + - Id: 14123 + AegisName: F_Balistar_Box + Name: Refined Ballista Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1728,604800; + - Id: 14124 + AegisName: F_Diary_Of_Great_Sage + Name: Sage's Diary Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1563,604800; + - Id: 14125 + AegisName: F_Asura_Box + Name: Asura Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13023,604800; + - Id: 14126 + AegisName: F_Apple_Of_Archer_Box + Name: Apple of Archer Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5265,1209600; + - Id: 14127 + AegisName: F_Bunny_Band_Box + Name: Bunny Band Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5266,1209600; + - Id: 14128 + AegisName: F_Sahkkat_Box + Name: Refined Sakkat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5267,1209600; + - Id: 14129 + AegisName: F_Lord_Circlet_Box + Name: Refined Grand Circlet Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5268,1209600; + - Id: 14130 + AegisName: F_Elven_Ears_Box + Name: Elven Ears Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2686,1209600; + - Id: 14131 + AegisName: F_Steel_Flower_Box + Name: Steel Flower Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2687,1209600; + - Id: 14132 + AegisName: F_Critical_Ring_Box + Name: Critical Ring Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2688,604800; + - Id: 14133 + AegisName: F_Earring_Box + Name: Earring Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2689,604800; + - Id: 14134 + AegisName: F_Ring_Box + Name: Ring Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2690,604800; + - Id: 14135 + AegisName: F_Necklace_Box + Name: Necklace Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2691,604800; + - Id: 14136 + AegisName: F_Glove_Box + Name: Glove Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2692,604800; + - Id: 14137 + AegisName: F_Brooch_Box + Name: Brooch Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2693,604800; + - Id: 14138 + AegisName: F_Rosary_Box + Name: Rosary Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2694,604800; + - Id: 14139 + AegisName: F_Safety_Ring_Box + Name: Safety Ring Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2695,604800; + - Id: 14140 + AegisName: F_Vesper_Core_Box01 + Name: Refined Vesper Core 01 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2696,604800; + - Id: 14141 + AegisName: F_Vesper_Core_Box02 + Name: Refined Vesper Core 02 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2697,604800; + - Id: 14142 + AegisName: F_Vesper_Core_Box03 + Name: Refined Vesper Core 03 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2698,604800; + - Id: 14143 + AegisName: F_Vesper_Core_Box04 + Name: Refined Vesper Core 04 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2699,604800; + - Id: 14144 + AegisName: F_Vigorgra_Package1 + Name: Vigorgra Box1 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12250,2; getitem 12251,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; + - Id: 14145 + AegisName: F_Vigorgra_Package2 + Name: Vigorgra Box2 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12250,2; getitem 12255,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; + - Id: 14146 + AegisName: F_Vigorgra_Package3 + Name: Vigorgra Box3 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12252,2; getitem 12253,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; + - Id: 14147 + AegisName: F_Vigorgra_Package4 + Name: Vigorgra Box4 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12252,2; getitem 12255,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; + - Id: 14148 + AegisName: F_Vigorgra_Package5 + Name: Vigorgra Box5 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12252,2; getitem 12250,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1; + - Id: 14149 + AegisName: F_Vigorgra_Package6 + Name: Vigorgra Box6 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12250,2; getitem 12251,2; getitem 12208,2; getitem 12215,15; getitem 12217,20; getitem 12211,1; getitem 7621,1; + - Id: 14150 + AegisName: F_Vigorgra_Package7 + Name: Vigorgra Box7 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12250,4; getitem 12251,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; + - Id: 14151 + AegisName: F_Vigorgra_Package8 + Name: Vigorgra Box8 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12250,4; getitem 12255,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; + - Id: 14152 + AegisName: F_Vigorgra_Package9 + Name: Start your Journey Pack + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12252,4; getitem 12253,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; + - Id: 14153 + AegisName: F_Vigorgra_Package10 + Name: Siege Mode Pack + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12252,4; getitem 12255,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; + - Id: 14154 + AegisName: F_Vigorgra_Package11 + Name: 1 Hour Survival Pack + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12252,4; getitem 12250,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2; + - Id: 14155 + AegisName: F_Vigorgra_Package12 + Name: Weekend Hunting Pack + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12250,4; getitem 12251,4; getitem 12208,4; getitem 12215,30; getitem 12217,40; getitem 12211,2; getitem 7621,2; + - Id: 14156 + AegisName: F_Battle_Manual_Box + Name: Battle Manual Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12208,10; + - Id: 14157 + AegisName: F_Insurance_Package + Name: Insurance Package + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12209,10; + - Id: 14158 + AegisName: F_Bubble_Gum_Box + Name: Bubble Gum Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12210,10; + - Id: 14159 + AegisName: F_Str_Dish_Box + Name: Steamed Tongue Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12202,10; + - Id: 14160 + AegisName: F_Agi_Dish_Box + Name: Steamed Scorpion Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12203,10; + - Id: 14161 + AegisName: F_Int_Dish_Box + Name: Dragon Breath Cocktail Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12204,10; + - Id: 14162 + AegisName: F_Dex_Dish_Box + Name: Hwergelmir's Tonic Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12205,10; + - Id: 14163 + AegisName: F_Luk_Dish_Box + Name: Nine Tail Dish Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12206,10; + - Id: 14164 + AegisName: F_Vit_Dish_Box + Name: Stew Of Immortality Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12207,10; + - Id: 14165 + AegisName: F_Kafra_Card_Box + Name: Kafra Card Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12211,10; + - Id: 14166 + AegisName: F_Giant_Fly_Wing_Box + Name: Giant Fly Wing Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12212,10; + - Id: 14167 + AegisName: F_Neuralizer_Box + Name: Neuralizer Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12213,1; + - Id: 14168 + AegisName: F_Convex_Mirror_Box + Name: Convex Mirror Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12214,10; + - Id: 14169 + AegisName: F_Blessing_10_Scroll_Box + Name: Blessing 10 Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12215,10; + - Id: 14170 + AegisName: F_Inc_Agi_10_Scroll_Box + Name: Increase AGI 10 scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12216,10; + - Id: 14171 + AegisName: F_Aspersio_5_Scroll_Box + Name: Aspersio 5 Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12217,10; getitem 523,10; + - Id: 14172 + AegisName: F_Assumptio_5_Scroll_Box + Name: Assumptio 5 Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12218,10; + - Id: 14173 + AegisName: F_Wind_Walk_10_Scroll_Box + Name: Wind Walk 10 Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12219,10; + - Id: 14174 + AegisName: F_Adrenaline_Scroll_Box + Name: Adrenaline 5 Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12220,10; + - Id: 14175 + AegisName: F_Megaphone_Box + Name: Megaphone 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12221,10; + - Id: 14176 + AegisName: F_Enriched_Elunium_Box + Name: Enriched Elunium Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7619,10; + - Id: 14177 + AegisName: F_Enriched_Oridecon_Box + Name: Enriched Oridecon Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7620,10; + - Id: 14178 + AegisName: F_Token_Of_Siegfried_Box + Name: Token of Siegfried Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7621,10; + - Id: 14179 + AegisName: F_Giant_Fly_Wing_Box50 + Name: Giant Fly Wing 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12212,50; + - Id: 14180 + AegisName: F_Giant_Fly_Wing_Box100 + Name: Giant Fly Wing 100 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12212,100; + - Id: 14181 + AegisName: F_Dex_Dish_Box30 + Name: Hwergelmir's Tonic 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12205,30; + - Id: 14182 + AegisName: F_Dex_Dish_Box50 + Name: Hwergelmir's Tonic 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12205,50; + - Id: 14183 + AegisName: F_Luk_Dish_Box30 + Name: Nine Tail Dish 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12206,30; + - Id: 14184 + AegisName: F_Luk_Dish_Box50 + Name: Nine Tail Dish 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12206,50; + - Id: 14185 + AegisName: F_Inc_Agi_10_Box30 + Name: Increase Agility Scroll 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12216,30; + - Id: 14186 + AegisName: F_Inc_Agi_10_Box50 + Name: Increase Agility Scroll 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12216,50; + - Id: 14187 + AegisName: F_Vit_Dish_Box30 + Name: Stew of Immortality 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12207,30; + - Id: 14188 + AegisName: F_Vit_Dish_Box50 + Name: Stew of Immortality 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12207,50; + - Id: 14189 + AegisName: F_Insurance_Package30 + Name: Life Insurrance 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12209,30; + - Id: 14190 + AegisName: F_Insurance_Package50 + Name: Life Insurrance 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12209,50; + - Id: 14191 + AegisName: F_Convex_Mirror_Box5 + Name: Convex Mirror 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12214,5; + - Id: 14192 + AegisName: F_Convex_Mirror_Box30 + Name: Convex Mirror 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12214,30; + - Id: 14193 + AegisName: F_Blessing10_Box30 + Name: Blessing Scroll 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12215,30; + - Id: 14194 + AegisName: F_Blessing10_Box50 + Name: Lv10 Blessing Scroll Box 50 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12215,50; + - Id: 14195 + AegisName: F_Adrenaline10_Box30 + Name: Adrenaline Rush Scroll 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12220,30; + - Id: 14196 + AegisName: F_Adrenaline10_Box50 + Name: Adrenaline Rush Scroll 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12220,50; + - Id: 14197 + AegisName: F_Assumptio_5_Box30 + Name: Assumptio Scroll 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12218,30; + - Id: 14198 + AegisName: F_Assumptio_5_Box50 + Name: Lv5 Assumptio Scroll Box 50 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12218,50; + - Id: 14199 + AegisName: F_Aspersio_5_Box30 + Name: Aspersio Scroll 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12217,30; getitem 523,30; + - Id: 14200 + AegisName: F_Aspersio_5_Box50 + Name: Aspersio Scroll 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12217,50; getitem 523,50; + - Id: 14201 + AegisName: F_Agi_Dish_Box30 + Name: Steamed Scorpion 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12203,30; + - Id: 14202 + AegisName: F_Agi_Dish_Box50 + Name: Steamed Scorpion 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12203,50; + - Id: 14203 + AegisName: F_Wind_Walk10_Box30 + Name: Wind Walk Scroll 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12219,30; + - Id: 14204 + AegisName: F_Wind_Walk10_Box50 + Name: Wind Walk Scroll 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12219,50; + - Id: 14205 + AegisName: F_Int_Dish_Box30 + Name: Dragon Breath Cocktail 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12204,30; + - Id: 14206 + AegisName: F_Int_Dish_Box50 + Name: Dragon Breath Cocktail 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12204,50; + - Id: 14207 + AegisName: F_Battle_Manual_Box1 + Name: Field Manual Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12208,1; + - Id: 14208 + AegisName: F_Battle_Manual_Box5 + Name: Battle Manual 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12208,5; + - Id: 14209 + AegisName: F_Siegfried_Box5 + Name: Token of Siegfried 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7621,5; + - Id: 14210 + AegisName: F_Siegfried_Box20 + Name: Token of Siegfried 20 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7621,20; + - Id: 14211 + AegisName: F_Kafra_Card_Box30 + Name: Kafra Card 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12211,30; + - Id: 14212 + AegisName: F_Kafra_Card_Box50 + Name: Kafra Card 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12211,50; + - Id: 14213 + AegisName: F_Str_Dish_Box30 + Name: Steamed Tongue 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12202,30; + - Id: 14214 + AegisName: F_Str_Dish_Box50 + Name: Steamed Tongue 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12202,50; + - Id: 14215 + AegisName: F_Bubble_Gum_Box1 + Name: Bubble Gum Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12210,1; + - Id: 14216 + AegisName: F_Bubble_Gum_Box5 + Name: Bubble Gum 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12210,5; + - Id: 14217 + AegisName: F_Megaphone_Box1 + Name: Megaphone Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12221,1; + - Id: 14218 + AegisName: F_Megaphone_Box5 + Name: Megaphone 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12221,5; + - Id: 14219 + AegisName: F_Enriched_Elunium_Box5 + Name: Enriched Elunium 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7619,5; + - Id: 14220 + AegisName: F_Enriched_Oridecon_Box5 + Name: Enriched Oridecon 5 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7620,5; + - Id: 14221 + AegisName: MP_Scroll_Box + Name: Mystical Amplification Scroll 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14593,10; + - Id: 14222 + AegisName: MP_Scroll_Box30 + Name: Mystical Amplification Scroll 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14593,30; + - Id: 14223 + AegisName: MP_Scroll_Box50 + Name: Mystical Amplification Scroll 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14593,50; + - Id: 14224 + AegisName: Quagmire_Scroll_Box + Name: Quagmire Scroll 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14594,10; + - Id: 14225 + AegisName: Quagmire_Scroll_Box30 + Name: Quagmire Scroll 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14594,30; + - Id: 14226 + AegisName: Quagmire_Scroll_Box50 + Name: Quagmire Scroll 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14594,50; + - Id: 14227 + AegisName: Healing_Staff_Box + Name: Healing Staff Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1638,604800; + - Id: 14228 + AegisName: Praxinus_Box + Name: Praccsinos Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2752,604800; + - Id: 14229 + AegisName: Cherry_Blossom_Scroll + Name: Cherry Blossom Scroll + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Sakura_Scroll); + - Id: 14230 + AegisName: Note_Headphones_Box + Name: Note Headphones Box + Type: Cash + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5151,1; + - Id: 14231 + AegisName: Novice_Breastplate_Boxes + Name: Novice Breastplate Boxes + Type: Cash + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 14232 + AegisName: Yggdrasilberry_Box_ + Name: Yggdrasil Berry 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 607,10; + - Id: 14233 + AegisName: Dead_Tree_Branch_Box1 + Name: Dead Branch 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 604,10; + - Id: 14234 + AegisName: Dead_Tree_Branch_Box2 + Name: Dead Branch 25 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 604,25; + - Id: 14235 + AegisName: Field_Manual_Box_2 + Name: Field Manual 2 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12208,2; + - Id: 14236 + AegisName: Steamed_Tongue_Box_20 + Name: Steamed Tongue 20 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12202,20; + - Id: 14237 + AegisName: Steamed_Desert_Scorpions_Box_20 + Name: Steamed Desert Scorpions Box(20) + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12203,20; + - Id: 14238 + AegisName: Stew_Of_Immortality_Box_20 + Name: Immortal Stew 20 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12207,20; + - Id: 14239 + AegisName: Dragon_Breath_Cocktail_Box_20 + Name: Dragon Breath Cocktail 20 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12204,20; + - Id: 14240 + AegisName: Hwergelmir's_Tonic_Box_20 + Name: Hwergelmir's Tonic 20 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12205,20; + - Id: 14241 + AegisName: Nine_Tail_Dish_Box_20 + Name: Nine Tail Dish 20 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12206,20; + - Id: 14242 + AegisName: Beholder_Ring_Box + Name: Beholder Ring Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Beholder_Ring_Box); /*rentitem 2753,604800;*/ + - Id: 14243 + AegisName: Hallow_Ring_Box + Name: Hallow Ring Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Hallow_Ring_Box); /*rentitem 2754,604800;*/ + - Id: 14244 + AegisName: Clamorous_Ring_Box + Name: Clamorous Ring Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Clamorous_Ring_Box); /*rentitem 2755,604800;*/ + - Id: 14245 + AegisName: Chemical_Ring_Box + Name: Chemical Ring Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Chemical_Ring_Box); /*rentitem 2756,604800;*/ + - Id: 14246 + AegisName: Insecticide_Ring_Box + Name: Insecticide Ring Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Insecticide_Ring_Box); /*rentitem 2757,604800;*/ + - Id: 14247 + AegisName: Fisher_Ring_Box + Name: Fisher Ring Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Fisher_Ring_Box); /*rentitem 2758,604800;*/ + - Id: 14248 + AegisName: Decussate_Ring_Box + Name: Decussate Ring Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Decussate_Ring_Box); /*rentitem 2759,604800;*/ + - Id: 14249 + AegisName: Bloody_Ring_Box + Name: Bloody Ring Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Bloody_Ring_Box); /*rentitem 2760,604800;*/ + - Id: 14250 + AegisName: Satanic_Ring_Box + Name: Satanic Ring Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Satanic_Ring_Box); /*rentitem 2761,604800;*/ + - Id: 14251 + AegisName: Dragoon_Ring_Box + Name: Dragon Ring Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Dragoon_Ring_Box); /*rentitem 2762,604800;*/ + - Id: 14252 + AegisName: Beholder_Ring_Box2 + Name: Beholder Ring Box II + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2753,1; + - Id: 14253 + AegisName: Hallow_Ring_Box2 + Name: Hallow Ring Box II + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2754,1; + - Id: 14254 + AegisName: Clamorous_Ring_Box2 + Name: Clamorous Ring Box II + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2755,1; + - Id: 14255 + AegisName: Chemical_Ring_Box2 + Name: Chemical Ring Box II + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2756,1; + - Id: 14256 + AegisName: Insecticide_Ring_Box2 + Name: Insecticide Ring Box II + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2757,1; + - Id: 14257 + AegisName: Fisher_Ring_Box2 + Name: Fisher Ring Box II + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2758,1; + - Id: 14258 + AegisName: Decussate_Ring_Box2 + Name: Decussate Ring Box II + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2759,1; + - Id: 14259 + AegisName: Bloody_Ring_Box2 + Name: Bloody Ring Box II + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2760,1; + - Id: 14260 + AegisName: Satanic_Ring_Box2 + Name: Satanic Ring Box II + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2761,1; + - Id: 14261 + AegisName: Dragoon_Ring_Box2 + Name: Dragon Ring Box II + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2762,1; + - Id: 14262 + AegisName: Diary_Magic_Powder_Box + Name: Diary Magic Powder Box + Type: Cash + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12304,604800; + - Id: 14263 + AegisName: Mini_Heart_Magic_Powder_Box + Name: Mini Heart Magic Powder Box + Type: Cash + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12305,604800; + - Id: 14264 + AegisName: Freshman_Magic_Powder_Box + Name: Freshman Magic Powder Box + Type: Cash + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12306,604800; + - Id: 14265 + AegisName: Kid_Magic_Powder_Box + Name: Kid Magic Powder Box + Type: Cash + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12307,604800; + - Id: 14266 + AegisName: Magic_Magic_Powder_Box + Name: Magic Magic Powder Box + Type: Cash + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12308,604800; + - Id: 14267 + AegisName: JJangu_Magic_Powder_Box + Name: JJangu Magic Powder Box + Type: Cash + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12309,604800; + - Id: 14268 + AegisName: Diary_Magic_Powder_Box4 + Name: Diary Magic Powder Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 14269 + AegisName: Mini_Heart_Magic_Powder_Box4 + Name: Mini Heart Magic Powder Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 14270 + AegisName: Freshman_Magic_Powder_Box4 + Name: Freshman Magic Powder Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 14271 + AegisName: Kid_Magic_Powder_Box4 + Name: Kid Magic Powder Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 14272 + AegisName: Magic_Magic_Powder_Box4 + Name: Magic Magic Powder Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 14273 + AegisName: JJangu_Magic_Powder_Box4 + Name: JJangu Magic Powder Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 14274 + AegisName: Amplification_10_Scroll_Box2 + Name: Mystical Amplification Scroll 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14593,10; + - Id: 14275 + AegisName: Amplification_30_Scroll_Box2 + Name: Mystical Amplification Scroll 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14593,30; + - Id: 14276 + AegisName: Amplification_50_Scroll_Box2 + Name: Mystical Amplification Scroll 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14593,50; + - Id: 14277 + AegisName: Quagmire_10_Scroll_Box2 + Name: Quagmire Scroll 10 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14594,10; + - Id: 14278 + AegisName: Quagmire_30_Scroll_Box2 + Name: Quagmire Scroll 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14594,30; + - Id: 14279 + AegisName: Quagmire_50_Scroll_Box2 + Name: Quagmire Scroll 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14594,50; + - Id: 14280 + AegisName: Healing_Staff_Box2 + Name: Healing Staff Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 1638,1; + - Id: 14281 + AegisName: Praccsinos_Box + Name: Praccsinos Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2752,1; + - Id: 14282 + AegisName: Emperium_Box + Name: Emperium Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 714,1; + - Id: 14283 + AegisName: Marriage_Certificate_Box + Name: Written Oath Of Marriage Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6026,1; + - Id: 14284 + AegisName: Muffler_Box + Name: Muffler Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2548,1; + - Id: 14285 + AegisName: Balkiriah_Shield_Box + Name: Balkiriah Shield Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2137,1; + - Id: 14286 + AegisName: Skull_Ring_Box + Name: Skull Ring Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2763,1; + - Id: 14287 + AegisName: Baricade_Repair_Kit + Name: Barricade Repair Kit + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 1019,30; getitem 999,10; getitem 1011,10; getitem 984,5; + - Id: 14288 + AegisName: Guardian_Stone_Repair_Kit + Name: Guardian Stone Repair Kit + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 984,1; getitem 985,1; getitem 7049,30; getitem 717,5; getitem 716,5; getitem 715,5; + - Id: 14289 + AegisName: Cloth_Dye_Coupon_Box + Name: New Clothing Dye Coupon Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6046,1; + - Id: 14290 + AegisName: Cloth_Dye_Coupon2_Box + Name: Original Clothing Dye Coupon Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6047,1; + - Id: 14291 + AegisName: Cloth_Dye_Coupon3_Box + Name: Clothing Dye Coupon Box + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6046,1; + - Id: 14292 + AegisName: Cloth_Dye_Coupon4_Box + Name: Clothing Dye Coupon Box II + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6047,1; + - Id: 14293 + AegisName: Mercenary_Contract_Box + Name: Mercenary Contract Box + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6050,1; + - Id: 14294 + AegisName: Mercenary_Contract_Box5 + Name: Mercenary Contract Box 5ea + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6050,5; + - Id: 14295 + AegisName: Mercenary_Contract_Box10 + Name: Mercenary Contract Box 10ea + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6050,10; + - Id: 14296 + AegisName: Angel_Scroll + Name: Angel Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Angel_Scroll); + - Id: 14297 + AegisName: Devil_Scroll + Name: Devil Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Devil_Scroll); + - Id: 14298 + AegisName: Surprise_Scroll + Name: Surprise Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Surprise_Scroll); + - Id: 14300 + AegisName: Mask_Of_Ifrit_Box + Name: Mask Of Ifrit Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5420,1; + - Id: 14301 + AegisName: Ifrit's_Ear_Box + Name: Ears Of Ifrit Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5421,1; + - Id: 14304 + AegisName: Scuba_Mask_Box + Name: Scuba Mask Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5397,1; + - Id: 14306 + AegisName: RWC_Special_Scroll + Name: RWC Special Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_RWC_Special_Scroll); + - Id: 14307 + AegisName: RWC_Limited_Scroll + Name: RWC Limited Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_RWC_Limited_Scroll); + - Id: 14308 + AegisName: Ardor_Scroll + Name: Ardor Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 14314 + AegisName: PhreeoniS_Box + Name: Phreeoni Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14597,10; + - Id: 14315 + AegisName: GhostringS_Box + Name: Ghostring Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14598,10; + - Id: 14316 + AegisName: July7_Scroll + Name: July7 Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_July7_Scroll); + - Id: 14317 + AegisName: Bacsojin_Scroll + Name: Bacsojin Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Bacsojin_Scroll); + - Id: 14321 + AegisName: Holy_Sabre_Box + Name: Holy Sabre Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13419,86400; + - Id: 14322 + AegisName: Book_Of_Prayer_Box + Name: Book of Prayer Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1578,86400; + - Id: 14323 + AegisName: Phenomena_Whip_Box + Name: Phenomena Whip Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1982,86400; + - Id: 14324 + AegisName: Staff_Of_Darkness_Box + Name: Staff of Darkness Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1642,86400; + - Id: 14325 + AegisName: Monk_Knuckle_Box + Name: Monk Knuckle Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1828,86400; + - Id: 14326 + AegisName: Mace_Of_Madness_Box + Name: Mace of Madness Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1547,86400; + - Id: 14327 + AegisName: Spear_Of_Excellent_Box + Name: Spear of Excellent Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1427,86400; + - Id: 14328 + AegisName: Bow_Of_Evil_Box + Name: Bow of Evil Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1744,86400; + - Id: 14329 + AegisName: Katar_Of_Speed_Box + Name: Katar of Speed Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1283,86400; + - Id: 14330 + AegisName: Sharpshooter_Revolver_Box + Name: Sharpshooter Revolver Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13111,86400; + - Id: 14343 + AegisName: Spiked_Scarf_Box + Name: Spiked Scarf Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5462,1; + - Id: 14344 + AegisName: Rainbow_Scarf_Box + Name: Rainbow Scarf Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5463,1; + - Id: 14345 + AegisName: Animal_Scroll + Name: Animal Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Animal_Scroll); + - Id: 14349 + AegisName: Mental_Potion20_Box + Name: Mental Potion 20 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14600,20; + - Id: 14350 + AegisName: Mental_Potion50_Box + Name: Mental Potion 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14600,50; + - Id: 14351 + AegisName: Tyr's_Blessing20_Box + Name: Tyr's Blessing 20 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14601,20; + - Id: 14352 + AegisName: Tyr's_Blessing50_Box + Name: Tyr's Blessing 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14601,50; + - Id: 14361 + AegisName: Orc_HeroS_Box + Name: Orc HeroS Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14604,10; + - Id: 14362 + AegisName: Orc_LoadS_Box + Name: Orc LoadS Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14605,10; + - Id: 14363 + AegisName: Heart_Scroll + Name: Heart Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Heart_Scroll); + - Id: 14372 + AegisName: Powder_Snow_Box + Name: Powder Snow Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 12317,1; + - Id: 14375 + AegisName: Holy_Celestial_Axe_Box + Name: Celestial Axe Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 1383,1; + - Id: 14376 + AegisName: Angeling_Pot_Box + Name: Angeling Potion Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 12350,1; + - Id: 14377 + AegisName: Shout_Megaphone_Box + Name: Scream Megaphone Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 12351,1; + - Id: 14379 + AegisName: Love_Daddy_Box + Name: Love Daddy Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 5489,1; + - Id: 14380 + AegisName: Anubis_Helm_Box + Name: Anubis Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 5490,1; + - Id: 14381 + AegisName: Piercing_Box_M + Name: Piercing Box M + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 1644,1; + - Id: 14382 + AegisName: Lich_Bone_Box_M + Name: Lich Bone Box M + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 1645,1; + - Id: 14383 + AegisName: Long_Horn_Box_M + Name: Long Horn Box M + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 1428,1; + - Id: 14384 + AegisName: Hunting_Spear_Box_M + Name: Hunting Spear Box M + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 1429,1; + - Id: 14385 + AegisName: Death_Note_Box_M + Name: Death Note Box M + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 1579,1; + - Id: 14386 + AegisName: Destruction_Box_M + Name: Destruction Box M + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2003,1; + - Id: 14387 + AegisName: Rider_Insignia_Box_M + Name: Rider Insignia Box M + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2551,1; + - Id: 14388 + AegisName: Mithril_Cape_Box_M + Name: Mithril Cape Box M + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2552,1; + - Id: 14389 + AegisName: Sniping_Box_M + Name: Sniping Box M + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2398,1; + - Id: 14390 + AegisName: Orleans_Box_M + Name: Orleans Box M + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2785,1; + - Id: 14391 + AegisName: Spiritual_Box_M + Name: Spiritual Box M + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2786,1; + - Id: 14392 + AegisName: Variant_Box_M + Name: Variant Box M + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2449,1; + - Id: 14393 + AegisName: Almighty_Charm_Box + Name: Universal Amulet Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7945,1; + - Id: 14407 + AegisName: Xmas_Scroll + Name: Xmas Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 14408 + AegisName: New_Year_Scroll + Name: New Year Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_New_Year_Scroll); + - Id: 14426 + AegisName: Fortune_Sword_Box + Name: Neo Fortune Sword Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13043,86400; + - Id: 14427 + AegisName: House_Auger_Box + Name: Neo House Auger + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13044,86400; + - Id: 14428 + AegisName: Kamaitachi_Box + Name: Neo Kamaitachi Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13045,86400; + - Id: 14429 + AegisName: Berserk_Guitar_Box + Name: Neo Berserk Guitar Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1928,86400; + - Id: 14430 + AegisName: Doom_Slayer_Box + Name: Neo Doom Slayer Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 1386,86400; + - Id: 14431 + AegisName: Huuma_Blaze_Shuriken_Box + Name: Neo Huuma Blaze Shuriken Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13308,86400; + - Id: 14432 + AegisName: Odin's_Blessing_Box + Name: Neo Odin's Blessing Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 15001,86400; + - Id: 14433 + AegisName: Ring_Of_Flame_Lord_Box + Name: Neo Ring of Flame Lord Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2792,86400; + - Id: 14434 + AegisName: Ring_Of_Resonance_Box + Name: Neo Ring of Resonance Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2793,86400; + - Id: 14435 + AegisName: Boys_Cap_Box + Name: Neo Boys Cap Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5492,86400; + - Id: 14436 + AegisName: Ulle's_Cap_Box + Name: Neo Ulle's Cap Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5493,86400; + - Id: 14437 + AegisName: Sphinx_Helm_Box + Name: Neo Sphinx Helm Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 5494,86400; + - Id: 14438 + AegisName: Honglyun's_Sword_Box + Name: Honglyun's Sword Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 13420,1; + - Id: 14439 + AegisName: Power_Of_Thor_Box + Name: Power Of Thor Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5495,1; + - Id: 14440 + AegisName: Dice_Hat_Box + Name: Dice Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5496,1; + - Id: 14441 + AegisName: King_Tiger_Doll_Hat_Box + Name: King Tiger Doll Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5497,1; + - Id: 14442 + AegisName: Wondering_Wolf_Helm_Box + Name: Wondering Wolf Helm Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5498,1; + - Id: 14443 + AegisName: Pizza_Hat_Box + Name: Pizza Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5499,1; + - Id: 14444 + AegisName: Icecream_Hat_Box + Name: Icecream Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5500,1; + - Id: 14447 + AegisName: Pirate's_Pride_Box + Name: Pirate's Pride Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5501,1; + - Id: 14448 + AegisName: Necromencer's_Hood_Box + Name: Necromancer's Hood Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5502,1; + - Id: 14459 + AegisName: Rabbit_Magic_Hat_Box + Name: Magic Rabbit Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5503,1; + - Id: 14460 + AegisName: China_Wedding_Veil_Box + Name: RO 5th Wedding Anniversary Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5504,1; + - Id: 14461 + AegisName: Asara_Fairy_Hat_Box + Name: Ashura Fairy Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5505,1; + - Id: 14466 + AegisName: Valentine_Pledge_Box + Name: Valentine's Emblem Box + Type: Usable + Flags: + Container: true + Script: | + getgroupitem(IG_Valentine_Pledge_Box); /*rentitem 5817,525600;*/ + - Id: 14469 + AegisName: Ox_Tail_Scroll + Name: Ox Tail Egg + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Ox_Tail_Scroll); + - Id: 14485 + AegisName: Academy_Badge_Box + Name: Academy Badge Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 2751,1; + - Id: 14486 + AegisName: Academy_Fresh_Hat_Box + Name: Academy Fresh Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 5406,1; + - Id: 14487 + AegisName: Academy_Gradu_Cap_Box + Name: Academy Gradu Cap Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 5407,1; + - Id: 14488 + AegisName: Blue_Pajamas_Hat_Box + Name: Blue Pajamas Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5506,1; + - Id: 14489 + AegisName: Pink_Pajamas_Hat_Box + Name: Pink Pajamas Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5507,1; + - Id: 14490 + AegisName: Shark_Hat_Box + Name: Shark Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5508,1; + - Id: 14494 + AegisName: Samambaia_Box + Name: Samambaia Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5511,1; + - Id: 14495 + AegisName: Aquarius_Diadem_Box + Name: Aquarius Diadem Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 5512,1; + - Id: 14496 + AegisName: Aquarius_Crown_Box + Name: Aquarius Crown Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 5513,1; + - Id: 14497 + AegisName: Pisces_Diadem_Box + Name: Pisces Diadem Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 5514,1; + - Id: 14498 + AegisName: Pisces_Crown_Box + Name: Pisces Crown Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 5515,1; + - Id: 14499 + AegisName: Peacock_Feather_Box + Name: Peacock Feather Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5519,1; + - Id: 14500 + AegisName: Insurance60 + Name: Life Insurrance Certificate + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_LIFEINSURANCE,3600000,0; + - Id: 14505 + AegisName: Dungeon_1_hour_Ticket + Name: Dungeon 1 Hour Ticket + Type: Usable + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + warp "1@sthb",0,0; /*No map+coord info*/ + - Id: 14506 + AegisName: Dungeon_Ticket + Name: Dungeon Ticket + Type: Usable + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + warp "1@sthc",0,0; /*No map+coord info*/ + - Id: 14508 + AegisName: Zeny_Scroll + Name: Zeny Pet Egg Scroll + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + Zeny += rand(1000,77777); + - Id: 14509 + AegisName: Light_Center_Pot + Name: Light Concentration Potion + Type: Usable + Buy: 800 + Weight: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_ASPDPOTION0,1800000,4; + - Id: 14510 + AegisName: Light_Awakening_Pot + Name: Light Awakening Potion + Type: Usable + Buy: 1500 + Weight: 20 + Jobs: + Alchemist: true + Archer: true + Assassin: true + Blacksmith: true + Crusader: true + Gunslinger: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true + Merchant: true + Monk: true + Ninja: true + Novice: true + Rebellion: true + Rogue: true + Sage: true + SoulLinker: true + StarGladiator: true + Summoner: true + SuperNovice: true + Swordman: true + Taekwon: true + Thief: true + Wizard: true + EquipLevelMin: 40 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_ASPDPOTION1,1800000,6; + - Id: 14511 + AegisName: Light_Berserk_Pot + Name: Light Berserk Potion + Type: Usable + Buy: 3000 + Weight: 20 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Gunslinger: true + Knight: true + Mage: true + Merchant: true + Rebellion: true + Rogue: true + SoulLinker: true + StarGladiator: true + Swordman: true + Taekwon: true + Wizard: true + EquipLevelMin: 85 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_ASPDPOTION2,1800000,9; + - Id: 14512 + AegisName: Meteor_10_Scroll + Name: Meteor Storm Scroll + Type: Delayconsume + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemskill "WZ_METEOR",10; + - Id: 14513 + AegisName: Storm_10_Scroll + Name: Storm Gust Scroll + Type: Delayconsume + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemskill "WZ_STORMGUST",10; + - Id: 14514 + AegisName: Vermilion_10_Scroll + Name: Lord of Vermilion Scroll + Type: Delayconsume + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemskill "WZ_VERMILION",10; + - Id: 14515 + AegisName: Lex_Aeterna_Scroll + Name: Lex Aeterna Scroll + Type: Delayconsume + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemskill "PR_LEXAETERNA",1; + - Id: 14516 + AegisName: Magnificat_5_Scroll + Name: Magnificat Scroll + Type: Delayconsume + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemskill "PR_MAGNIFICAT",5; + - Id: 14517 + AegisName: CP_Helm_Scroll + Name: Chemical Protection Helm Scroll + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + unitskilluseid getcharid(3),"AM_CP_HELM",5; + - Id: 14518 + AegisName: CP_Shield_Scroll + Name: Chemical Protection Shield Scrol + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + unitskilluseid getcharid(3),"AM_CP_SHIELD",5; + - Id: 14519 + AegisName: CP_Armor_Scroll + Name: Chemical Protection Armor Scroll + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + unitskilluseid getcharid(3),"AM_CP_ARMOR",5; + - Id: 14520 + AegisName: CP_Weapon_Scroll + Name: Chemical Protection Weapon Scroll + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + unitskilluseid getcharid(3),"AM_CP_WEAPON",5; + - Id: 14521 + AegisName: Repair_Scroll + Name: Repair Weapon Scroll + Type: Usable + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + unitskilluseid getcharid(3),"BS_REPAIRWEAPON",1; + - Id: 14522 + AegisName: Big_Bun + Name: Big Bun + Type: Healing + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + percentheal 100,0; + - Id: 14523 + AegisName: Pill_ + Name: Pill + Type: Healing + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + percentheal 0,100; + - Id: 14524 + AegisName: Superb_Fish_Slice + Name: Superb Fish Slice + Type: Healing + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + percentheal 100,100; + - Id: 14525 + AegisName: Chewy_Ricecake + Name: Chewy Ricecake + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_ATKPOTION,1800000,10; + - Id: 14526 + AegisName: Oriental_Pastry + Name: Oriental Pastry + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_MATKPOTION,1800000,10; + - Id: 14527 + AegisName: Dun_Tele_Scroll1 + Name: Dungeon Teleport Scroll + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + callfunc "F_CashDungeon",1; + - Id: 14528 + AegisName: PVP_Tele_Scroll + Name: PVP Teleport Scroll + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + warp "pvp_n_room",52,25; + - Id: 14529 + AegisName: Greed_Scroll + Name: Greed Scroll + Type: Delayconsume + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemskill "BS_GREED",1; + - Id: 14530 + AegisName: Flee_30_Scroll + Name: Evasion Scroll + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_FLEEFOOD,1800000,30; + - Id: 14531 + AegisName: Accuracy_30_Scroll + Name: Concentration Scroll + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_HITFOOD,1800000,30; + - Id: 14532 + AegisName: Battle_Manual25 + Name: Field Manual 25% + Type: Usable + Buy: 2 + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_EXPBOOST,1800000,25; + - Id: 14533 + AegisName: Battle_Manual100 + Name: Field Manual 100% + Type: Usable + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_EXPBOOST,1800000,100; + - Id: 14534 + AegisName: Small_Life_Potion + Name: Small Life Potion + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_HEAL3; sc_start4 SC_S_LIFEPOTION,600000,-5,5,0,0; + - Id: 14535 + AegisName: Med_Life_Potion + Name: Medium Life Potion + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_HEAL3; sc_start4 SC_L_LIFEPOTION,600000,-7,4,0,0; + - Id: 14536 + AegisName: Abrasive + Name: Abrasive + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_MAGICALATTHIT; sc_start SC_INCCRI,300000,30; + - Id: 14537 + AegisName: Regeneration_Potion + Name: Regeneration Potion + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_LIGHTSPHERE; sc_start SC_INCHEALRATE,1800000,20; + - Id: 14538 + AegisName: Glass_Of_Illusion + Name: Glass of Illusion + Type: Usable + Weight: 10 + Delay: + Duration: 300000 + Status: Reuse_Limit_A + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_STEAL; sc_start SC_INCFLEE2,60000,20; + - Id: 14539 + AegisName: Shadow_Armor_S + Name: Shadow Armor Scroll + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_CLOAKING; sc_start4 SC_ELEMENTALCHANGE,1800000,1,Ele_Dark,1,0; + - Id: 14540 + AegisName: Holy_Armor_S + Name: Holy Armor Scroll + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_BENEDICTIO; sc_start4 SC_ELEMENTALCHANGE,1800000,1,Ele_Holy,1,0; + - Id: 14541 + AegisName: S_Def_Potion + Name: Small Defense Potion + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_GUARD; sc_start SC_DEF_RATE,60000,3; + - Id: 14542 + AegisName: B_Def_Potion + Name: Big Defense Potion + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_GUARD; sc_start SC_DEF_RATE,180000,3; + - Id: 14543 + AegisName: S_Mdef_Potion + Name: Small Magic Defense Potion + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_SPELLBREAKER; sc_start SC_MDEF_RATE,60000,3; + - Id: 14544 + AegisName: B_Mdef_Potion + Name: Big Magic Defense Potion + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_SPELLBREAKER; sc_start SC_MDEF_RATE,180000,3; + - Id: 14545 + AegisName: Battle_Manual_X3 + Name: Field Manual 300% + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_EXPBOOST,1800000,300; + - Id: 14546 + AegisName: Fire_Cracker_Love + Name: I Love You Firecracker + Type: Usable + Buy: 2 + Weight: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 14547 + AegisName: Fire_Cracker_Wday + Name: Whiteday Firecracker + Type: Usable + Buy: 2 + Weight: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 14548 + AegisName: Fire_Cracker_Vday + Name: Valentine's Day Firecracker + Type: Usable + Buy: 2 + Weight: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 14549 + AegisName: Fire_Cracker_Bday + Name: Birthday Firecracker + Type: Usable + Buy: 2 + Weight: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 14550 + AegisName: Fire_Cracker_Xmas + Name: Xmas Firecracker + Type: Usable + Buy: 2 + Weight: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 14551 + AegisName: Str_Dish01_ + Name: Fried Grasshopper Legs + Type: Healing + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_STRFOOD,1200000,1; percentheal 5,0; + - Id: 14552 + AegisName: Str_Dish02_ + Name: Seasoned Sticky Webfoot + Type: Healing + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_STRFOOD,1200000,2; percentheal 5,0; + - Id: 14553 + AegisName: Str_Dish03_ + Name: Bomber Steak + Type: Healing + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_STRFOOD,1200000,3; percentheal 5,0; + - Id: 14554 + AegisName: Int_Dish01_ + Name: Grape Juice Herbal Tea + Type: Healing + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_INTFOOD,1200000,1; percentheal 0,5; + - Id: 14555 + AegisName: Int_Dish02_ + Name: Autumn Red Tea + Type: Healing + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_INTFOOD,1200000,2; percentheal 0,5; + - Id: 14556 + AegisName: Int_Dish03_ + Name: Honey Herbal Tea + Type: Healing + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_INTFOOD,1200000,3; percentheal 0,5; + - Id: 14557 + AegisName: Vit_Dish01_ + Name: Steamed Crab Nippers + Type: Healing + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_VITFOOD,1200000,1; percentheal 5,0; + - Id: 14558 + AegisName: Vit_Dish02_ + Name: Assorted Seafood + Type: Healing + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_VITFOOD,1200000,2; percentheal 5,0; + - Id: 14559 + AegisName: Vit_Dish03_ + Name: Clam Soup + Type: Healing + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_VITFOOD,1200000,3; percentheal 5,0; + - Id: 14560 + AegisName: Agi_Dish01_ + Name: Frog Egg Squid Ink Soup + Type: Healing + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_AGIFOOD,1200000,1; percentheal 3,1; + - Id: 14561 + AegisName: Agi_Dish02_ + Name: Smooth Noodle + Type: Healing + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_AGIFOOD,1200000,2; percentheal 3,1; + - Id: 14562 + AegisName: Agi_Dish03_ + Name: Tentacle Cheese Gratin + Type: Healing + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_AGIFOOD,1200000,3; percentheal 3,1; + - Id: 14563 + AegisName: Dex_Dish01_ + Name: Honey Grape Juice + Type: Healing + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_DEXFOOD,1200000,1; percentheal 2,2; + - Id: 14564 + AegisName: Dex_Dish02_ + Name: Chocolate Mousse Cake + Type: Healing + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_DEXFOOD,1200000,2; percentheal 2,2; + - Id: 14565 + AegisName: Dex_Dish03_ + Name: Fruit Mix + Type: Healing + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_DEXFOOD,1200000,3; percentheal 2,2; + - Id: 14566 + AegisName: Luk_Dish01_ + Name: Fried Monkey Tails + Type: Healing + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_LUKFOOD,1200000,1; percentheal 3,2; + - Id: 14567 + AegisName: Luk_Dish02_ + Name: Mixed Juice + Type: Healing + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_LUKFOOD,1200000,2; percentheal 3,2; + - Id: 14568 + AegisName: Luk_Dish03_ + Name: Fried Sweet Potato + Type: Healing + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_LUKFOOD,1200000,3; percentheal 4,2; + - Id: 14569 + AegisName: Knife_Goblin_Ring + Name: Knife Goblin Ring + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + pet 1122; + - Id: 14570 + AegisName: Flail_Goblin_Ring + Name: Flail Goblin Ring + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + pet 1123; + - Id: 14571 + AegisName: Hammer_Goblin_Ring + Name: Hammer Goblin Ring + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + pet 1125; + - Id: 14572 + AegisName: Holy_Marble + Name: Holy Marble + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + pet 1385; + - Id: 14573 + AegisName: Red_Burning_Stone + Name: Red Burning Stone + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + pet 1382; + - Id: 14574 + AegisName: Skull_Of_Vagabond + Name: Vagabond's Skull + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + Script: | + pet 1208; + - Id: 14575 + AegisName: Str_Dish05_ + Name: Lutie Lady's Pancake + Type: Healing + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_STRFOOD,1200000,5; percentheal 10,0; + - Id: 14576 + AegisName: Int_Dish05_ + Name: Mastela Fruit Wine + Type: Healing + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_INTFOOD,1200000,5; percentheal 0,10; + - Id: 14577 + AegisName: Vit_Dish05_ + Name: Spicy Fried Bao + Type: Healing + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_VITFOOD,1200000,5; percentheal 10,0; + - Id: 14578 + AegisName: Agi_Dish05_ + Name: Steamed Bat Wing in Pumpkin + Type: Healing + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_AGIFOOD,1200000,5; percentheal 6,2; + - Id: 14579 + AegisName: Dex_Dish05_ + Name: Green Salad + Type: Healing + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_DEXFOOD,1200000,5; percentheal 5,5; + - Id: 14580 + AegisName: Luk_Dish05_ + Name: Fried Scorpion Tails + Type: Healing + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_LUKFOOD,1200000,5; percentheal 5,2; + - Id: 14581 + AegisName: Dun_Tele_Scroll2 + Name: Dungeon Teleport Scroll II + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + callfunc "F_CashDungeon",2; + - Id: 14582 + AegisName: WOB_Rune + Name: Yellow Butterfly Wing + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + callfunc "F_CashCity",1; + - Id: 14583 + AegisName: WOB_Schwaltz + Name: Green Butterfly Wing + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + callfunc "F_CashCity",2; + - Id: 14584 + AegisName: WOB_Rachel + Name: Red Butterfly Wing + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + callfunc "F_CashCity",3; + - Id: 14585 + AegisName: WOB_Local + Name: Blue Butterfly Wing + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + callfunc "F_CashCity",4; + - Id: 14586 + AegisName: Spark_Candy + Name: Jumping Candy + Type: Usable + Weight: 10 + Delay: + Duration: 180000 + Status: Reuse_Limit_B + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_HASTEUP; bonus_script "{ bonus2 bHPLossRate,100,10000; bonus bBaseAtk,20; bonus bAspdRate,25; bonus bNoWalkDelay; }",60,0,0,EFST_STEAMPACK; + - Id: 14587 + AegisName: Repair_Scroll_ + Name: Equipment Repair Spell Book + Type: Delayconsume + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemskill "BS_REPAIRWEAPON",1; + - Id: 14588 + AegisName: Pty_Blessing_Scroll + Name: Party Blessing 10 Scroll + Type: Delayconsume + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemskill "CASH_BLESSING",10; + - Id: 14589 + AegisName: Pty_Inc_Agi_Scroll + Name: Party Increase Agi 10 Scroll + Type: Delayconsume + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemskill "CASH_INCAGI",10; + - Id: 14590 + AegisName: Pty_Assumptio_Scroll + Name: Party Assumptio 5 Scroll + Type: Delayconsume + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemskill "CASH_ASSUMPTIO",5; + - Id: 14591 + AegisName: Siege_Teleport_Scroll + Name: WoE Teleport Scroll + Type: Usable + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + callfunc "F_CashSiegeTele"; + - Id: 14592 + AegisName: Job_Manual50 + Name: JOB Battle Manual + Type: Usable + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_JEXPBOOST,1800000,50; + - Id: 14593 + AegisName: Magic_Power_Scroll + Name: Mystical Amplification Scroll + Type: Delayconsume + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemskill "HW_MAGICPOWER",10; + - Id: 14594 + AegisName: Quagmire_Scroll + Name: Quagmire Scroll + Type: Delayconsume + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemskill "WZ_QUAGMIRE",5; + - Id: 14595 + AegisName: Unsealed_Magic_Spell + Name: Unsealed Magic Spell + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + warp "yuno_fild09",255,127; + - Id: 14596 + AegisName: Pierre_Treasurebox + Name: Pierre's Treasure Box + Type: Usable + Weight: 100 + Flags: + Container: true + Script: | + getrandgroupitem(IG_Pierre_Treasurebox,1); getrandgroupitem(IG_Pierre_Treasurebox,1); getrandgroupitem(IG_Pierre_Treasurebox,1); getrandgroupitem(IG_Pierre_Treasurebox,1); getrandgroupitem(IG_Pierre_Treasurebox,1); getrandgroupitem(IG_Pierre_Treasurebox,1); + - Id: 14597 + AegisName: PhreeoniS + Name: Phreeoni Scroll + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start2 SC_ITEMSCRIPT,180000,4121,EFST_FOOD_BASICHIT; + - Id: 14598 + AegisName: GhostringS + Name: Ghostring Scroll + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start2 SC_ITEMSCRIPT,60000,4047,EFST_ARMOR_PROPERTY; + - Id: 14599 + AegisName: Greed_Scroll_C + Name: Greed Scroll + Type: Usable + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemskill "BS_GREED",1; + - Id: 14600 + AegisName: Mental_Potion + Name: Mental Potion + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_SPELLBREAKER; bonus_script "{ bonus bUseSPrate,-10; bonus bMaxSPrate,10; }",1800; + - Id: 14601 + AegisName: Tyr's_Blessing + Name: Tyr's Blessing + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_FLEEFOOD,300000,30; sc_start SC_HITFOOD,300000,30; sc_start SC_ATKPOTION,300000,20; sc_start SC_MATKPOTION,300000,20; + - Id: 14602 + AegisName: TaogunkaS + Name: Tao Gunka Scroll + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_LIGHTSPHERE; bonus_script "{ bonus bMaxHPrate,100; bonus bDefRate,-50; bonus bMdefRate,-50; }",180,0,0,EFST_MVPCARD_TAOGUNKA; + - Id: 14603 + AegisName: MistressS + Name: Mistress Scroll + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_SPELLBREAKER; bonus_script "{ bonus bNoGemStone; bonus bUseSPrate,25; }",180,0,0,EFST_MVPCARD_MISTRESS; + - Id: 14604 + AegisName: Orc_HeroS + Name: Orc Hero Scroll + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_LIGHTSPHERE; bonus_script "{ bonus2 bResEff,Eff_Stun,10000; }",180,0,0,EFST_MVPCARD_ORCHERO; + - Id: 14605 + AegisName: Orc_LoadS + Name: Orc Lord Scroll + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_LIGHTSPHERE; bonus_script "{ bonus bShortWeaponDamageReturn,30; }",180,0,0,EFST_MVPCARD_ORCLORD; + - Id: 14606 + AegisName: Job_Manual25 + Name: JOB Battle Manual + Type: Usable + Weight: 10 + NoUse: + Override: 100 + Sitting: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 14607 + AegisName: Luxurious_Dinner_W + Name: Luxurious Western Food + Type: Usable + Buy: 10000 + Weight: 600 + Script: | + sc_start SC_INCALLSTATUS,3600000,3; + - Id: 14608 + AegisName: Luxurious_Dinner_E + Name: Manchu-Han Imperial Feast + Type: Usable + Buy: 20000 + Weight: 1200 + Script: | + sc_start SC_INCALLSTATUS,3600000,6; + - Id: 14609 + AegisName: Spoiled_Cuisine + Name: Spoiled Cuisine + Type: Usable + Buy: 5000 + Weight: 300 + Script: | + percentheal 10,10; + - Id: 14611 + AegisName: M_Def_Potion + Name: M Def Potion + Type: Delayconsume + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_GUARD; sc_start SC_DEF_RATE,120000,3; + - Id: 14612 + AegisName: M_Mdef_Potion + Name: M Mdef Potion + Type: Delayconsume + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_SPELLBREAKER; sc_start SC_MDEF_RATE,120000,3; + - Id: 14613 + AegisName: RWC_Scroll_2012 + Name: RWC Scroll 2012 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_RWC_Scroll_2012); + - Id: 14614 + AegisName: Ex_Def_Potion + Name: Ex Def Potion + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + specialeffect2 EF_GUARD; sc_start SC_DEF_RATE,1800000,3; sc_start SC_MDEF_RATE,1800000,3; + - Id: 14616 + AegisName: STR_Biscuit_Stick + Name: Bar Cookie Of Strength + Type: Usable + Buy: 1 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_FOOD_STR_CASH,1800000,15; sc_start SC_ATKPOTION,600000,rand(11,111); + - Id: 14617 + AegisName: VIT_Biscuit_Stick + Name: Bar Cookie Of Vitality + Type: Usable + Buy: 1 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_FOOD_VIT_CASH,1800000,15; bonus_script "{ bonus bHPRecovRate,rand(11,33); }",1800,1; + - Id: 14618 + AegisName: AGI_Biscuit_Stick + Name: Bar Cookie Of Agility + Type: Usable + Buy: 1 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_FOOD_AGI_CASH,1800000,15; sc_start SC_FLEEFOOD,600000,rand(11,33); + - Id: 14619 + AegisName: INT_Biscuit_Stick + Name: Bar Cookie Of Intelligence + Type: Usable + Buy: 1 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_FOOD_INT_CASH,1800000,15; sc_start SC_MATKPOTION,600000,rand(11,111); + - Id: 14620 + AegisName: DEX_Biscuit_Stick + Name: Bar Cookie Of Dexterity + Type: Usable + Buy: 1 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_FOOD_DEX_CASH,1800000,15; sc_start SC_HITFOOD,600000,rand(11,33); + - Id: 14621 + AegisName: LUK_Biscuit_Stick + Name: Bar Cookie Of Lucky + Type: Usable + Buy: 1 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_FOOD_LUK_CASH,1800000,15; sc_start SC_CRIFOOD,600000,rand(11,33); + - Id: 14623 + AegisName: Golden_Treasure_Box_ + Name: Golden Treasure Box + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*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)*/ + - Id: 14624 + AegisName: Blue_Scroll + Name: Blue Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Blue_Scroll); + - Id: 14626 + AegisName: Indigo_Scroll + Name: Indigo Scroll + Type: Usable + Buy: 20 + Flags: + Container: true + Script: | + getgroupitem(IG_Indigo_Scroll); + - Id: 14627 + AegisName: Christmas_Scroll + Name: Christmas Scroll + Type: Usable + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 14628 + AegisName: Costume_Festival_Box + Name: Costume Festival Box + Type: Usable + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 14629 + AegisName: Costume_Enchantment_Stone_Box + Name: Costume Enchantment Stone Box + Type: Usable + Buy: 10 + Weight: 10 + Script: | + getitem callfunc("F_Rand",6636,6637,6638,6639,6640,6641,6642,6643,6644,6645),1; + - Id: 14643 + AegisName: Violet_Scroll + Name: Violet Scroll + Type: Cash + Buy: 20 + Flags: + Container: true + Script: | + getgroupitem(IG_Violet_Scroll); + - Id: 14663 + AegisName: Scroll_Sealed_Dark_Lord + Name: Scroll Sealed Dark Lord + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*TODO: Confirm the rates*/ getitem callfunc("F_Rand",6228,6232,4488,4169,19739,24032,24033,24031,24030,24028,24029,24028,24027),1; + - Id: 14664 + AegisName: Bi_Hwang_Scroll + Name: Bi Hwang Scroll + Type: Cash + Buy: 20 + Flags: + Container: true + Script: | + getgroupitem(IG_Bi_Hwang_Scroll); + - Id: 14665 + AegisName: Jung_Bi_Scroll + Name: Jung Bi Scroll + Type: Cash + Buy: 20 + Flags: + Container: true + Script: | + getgroupitem(IG_Jung_Bi_Scroll); + - Id: 14666 + AegisName: Je_Un_Scroll + Name: Je Un Scroll + Type: Cash + Buy: 20 + Flags: + Container: true + Script: | + getgroupitem(IG_Je_Un_Scroll); + - Id: 14667 + AegisName: Yong_Kwang_Scroll + Name: Yong Kwang Scroll + Type: Cash + Buy: 20 + Flags: + Container: true + Script: | + getgroupitem(IG_Yong_Kwang_Scroll); + - Id: 14672 + AegisName: Steel_Fighter_Scroll_Lv20 + Name: Steel Fighter Scroll (Lv20) + Type: Healing + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 14673 + AegisName: Steel_Fighter_Scroll_Lv25 + Name: Steel Fighter Scroll (Lv25) + Type: Healing + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 14674 + AegisName: Cup_Of_Boza + Name: Cup Of Boza + Type: Usable + Buy: 20 + Weight: 10 + Script: | + bonus_script "{ bonus bVit,10; bonus2 bSubEle,Ele_Fire,5; }",120; /*EFST_CUP_OF_BOZA 120000*/ + - Id: 14675 + AegisName: Shadow_Box_II + Name: Shadow Box II + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 14679 + AegisName: Article_Sealed_Storm_Scroll + Name: Article Sealed Storm Scroll + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 14681 + AegisName: Costume_Enchantment_Stone_Box_II + Name: Costume Enchantment Stone Box II + Type: Cash + Buy: 10 + Weight: 10 + - Id: 14682 + AegisName: Sealed_Beelzebub_Scroll + Name: Sealed Beelzebub Scroll + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 14689 + AegisName: Sealed_Kiel-D-01_Scroll + Name: Sealed Kiel-D-01 Scroll + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 14695 + AegisName: Costume_Enchant_Stone_Box_3 + Name: Costume Enchant Stone Box III + Type: Cash + Weight: 10 + Script: | + getitem rand(6790,6792),1; getitem 4936,1; getitem 4937,1; getitem 4938,1; + - Id: 14696 + AegisName: Sealed_Gloom_Under_Night_Gachapon + Name: Sealed Gloom Under Night Gachapon + Type: Cash + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /* 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); */ + - Id: 14699 + AegisName: Garuda_Scroll + Name: Memorial Garuda Lucky Egg + Type: Cash + Buy: 10 + Weight: 10 + EquipLevelMin: 1 + Flags: + Container: true + Script: | + getgroupitem(IG_Garuda_Scroll); + - Id: 14701 + AegisName: TW_13y_Lucky_Egg_06 + Name: Midgard Immortal Lucky Egg + Type: Cash + Buy: 10 + Weight: 10 + EquipLevelMin: 1 + Flags: + Container: true + Script: | + getgroupitem(IG_TW_13y_Lucky_Egg_06); + - Id: 14704 + AegisName: Gemstone_Shadow_Box + Name: Gemstone Shadow Box + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 24084,1; getitem 24085,1; getitem 24086,1; getitem 24087,1; getitem 24088,1; getitem 24089,1; + - Id: 14705 + AegisName: Sealed_Fallen_Bishop_Hibram_Scroll + Name: Sealed Fallen Bishop Hibram Scroll + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*TODO: COnfirm the rates*/ getitem callfunc("F_Rand",6228,6232,14704,19884,14695,6697),1; + - Id: 14713 + AegisName: Sealed_Ifrit_Scroll + Name: Sealed Ifrit Scroll + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /* getitem callfunc("F_Rand",Sealed ifrit card, 9 weapons smelting ticket, Armor 9 smelting ticket, costume Noah's hats, costumes Enchantment Stone Box); */ + - Id: 14717 + AegisName: 2013_RWC_Scroll + Name: 2013 RWC Scroll + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_2013_RWC_Scroll); + - Id: 14718 + AegisName: Scroll_Turtle_General_Sealed + Name: Scroll Turtle General Sealed + Type: Usable + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*TODO: Confirm the rates*/ getitem callfunc("F_Rand",6228,6232,19751,14695),1; + - Id: 14723 + AegisName: Limited_Neuralizer_I + Name: (Limited)Neuralizer I + Type: Delayconsume + Buy: 2 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + callfunc "F_CashReset"; + - Id: 14724 + AegisName: Limited_Neuralizer_II + Name: (Limited)Neuralizer II + Type: Delayconsume + Buy: 2 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + callfunc "F_CashReset"; + - Id: 14725 + AegisName: Sealed_Bacsojin_Scroll + Name: Sealed Bacsojin Scroll + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*TODO: Confirm the rates*/ getitem callfunc("F_Rand",4372,6228,6232,19750,14730,17474),1; + - Id: 14726 + AegisName: Grid_Shadow_Box + Name: Grid Shadow Box + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 24114,1; getitem 24115,1; getitem 24116,1; getitem 24117,1; getitem 24118,1; getitem 24119,1; + - Id: 14727 + AegisName: Heal_Shadow_Box + Name: Heal Shadow Box + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 24120,1; getitem 24121,1; getitem 24122,1; getitem 24123,1; getitem 24124,1; getitem 24125,1; + - Id: 14728 + AegisName: Hiding_Shadow_Box + Name: Hiding Shadow Box + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 24126,1; getitem 24127,1; getitem 24128,1; getitem 24129,1; getitem 24130,1; getitem 24131,1; + - Id: 14729 + AegisName: Cloaking_Shadow_Box + Name: Cloaking Shadow Box + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 24132,1; getitem 24133,1; getitem 24134,1; getitem 24135,1; getitem 24136,1; getitem 24137,1; + - Id: 14730 + AegisName: Costume_Festival_Box_II + Name: Costume Festival Box II + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*TODO: No clue yet*/ + - Id: 14731 + AegisName: Teleport_Shadow_Box + Name: Teleport Shadow Box + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 24138,1; getitem 24139,1; getitem 24140,1; getitem 24141,1; getitem 24142,1; getitem 24143,1; + - Id: 14732 + AegisName: Steal_Shadow_Box + Name: Steal Shadow Box + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 24144,1; getitem 24145,1; getitem 24146,1; getitem 24147,1; getitem 24148,1; getitem 24149,1; + - Id: 14733 + AegisName: Sealed_Pharaoh_Scroll + Name: Sealed Pharaoh Scroll + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*TODO: Confirm the rates*/ getitem callfunc("F_Rand",6228,6232,14726,20034,17474),1; + - Id: 14735 + AegisName: Costama_Egg22 + Name: Shapeshifter Costume + Type: Cash + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Shapeshifter_Costume); + - Id: 14739 + AegisName: Sealed_General_Egnigem_Cenia_Scroll + Name: Sealed General Egnigem Cenia Scroll + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*TODO: Confirm the rates*/ getitem callfunc("F_Rand",4482,6228,6232,24156,19935),1; + - Id: 14740 + AegisName: Sealed_Vesper_Scroll + Name: Sealed Vesper Scroll + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 14741 + AegisName: Imortal_Midgard_Scroll + Name: Midgard Celebration Lucky Egg + Type: Cash + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Imortal_Midgard_Scroll); + - Id: 14753 + AegisName: Hero_Midgard_Egg + Name: Hero Midgard Egg + Type: Cash + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Hero_Midgard_Egg); + - Id: 14758 + AegisName: Safe_To_Smelting_Scroll + Name: Safe To Smelting Scroll + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem callfunc("F_Rand",6238,6239,6228,6232,24216,17474,969),1; + - Id: 14765 + AegisName: Limited_Edition_JOB_Battle_Manual + Name: Limited Edition JOB Battle Manual + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_JEXPBOOST,3600000,35; + - Id: 14766 + AegisName: Limited_Power_Booster + Name: Limited Power Booster + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus_script "{ bonus bBaseAtk,30; bonus bMatk,30; bonus2 bAddClass,Class_All,1; bonus bMatkRate,1; bonus bHit,30; bonus bFlee,30; bonus bAspd,1; bonus bUseSPrate,-5; bonus bFixedCastrate,-30; }",1800,1,1; + - Id: 14805 + AegisName: July_Lucky_Scroll + Name: Almighty Lucky Egg + Type: Cash + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_July_Lucky_Scroll); + - Id: 16131 + AegisName: Lady_Tanee_Doll_Box + Name: Lady Tanee Doll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5526,1; + - Id: 16132 + AegisName: Lunatic_Hat_Box + Name: Lunatic Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5527,1; + - Id: 16133 + AegisName: G_Staff_Of_Light_Box + Name: Staff Of Light Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2006,1; + - Id: 16134 + AegisName: King_Frog_Hat_Box + Name: Frog King Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5528,1; + - Id: 16135 + AegisName: Evil's_Bone_Hat_Box + Name: Satanic Bone Helm Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5529,1; + - Id: 16185 + AegisName: Raven_Cap_Box + Name: Raven Cap Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5530,1; + - Id: 16186 + AegisName: B_Dragon_Hat_Box + Name: Baby Dragon Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5531,1; + - Id: 16192 + AegisName: Quati_Hat_Box + Name: Kwati Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5537,1; + - Id: 16193 + AegisName: Tucan_Hat_Box + Name: Tucan Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5538,1; + - Id: 16194 + AegisName: Jaguar_Hat_Box + Name: Jaguar Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5539,1; + - Id: 16195 + AegisName: Tw_March_Scroll + Name: Tw March Scroll + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + - Id: 16226 + AegisName: Aries_Diadem_Box + Name: Aries Diadem Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5545,1; + - Id: 16227 + AegisName: Aries_Crown_Box + Name: Aries Crown Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5546,1; + - Id: 16228 + AegisName: RJC_Katusa_Box + Name: RJC Katusa Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5547,1; + - Id: 16229 + AegisName: Scarlet_Rose_Box + Name: Scarlet Rose Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5548,1; + - Id: 16230 + AegisName: Taurus_Diadem_Box + Name: Taurus Diadem Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5549,1; + - Id: 16231 + AegisName: Taurus_Crown_Box + Name: Taurus Crown Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5550,1; + - Id: 16232 + AegisName: Reginleif_Box + Name: Reginleif Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoSell: true + NoCart: true + Script: | + getitem 5471,1; + - Id: 16235 + AegisName: Octopus_Hat_Box + Name: Octopus Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5554,1; + - Id: 16236 + AegisName: Leaf_Cat_Hat_Box + Name: Leaf Cat Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5555,1; + - Id: 16237 + AegisName: Fur_Seal_Hat_Box + Name: Fur Seal Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5556,1; + - Id: 16238 + AegisName: Wild_Rose_Hat_Box + Name: Wild Rose Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5557,1; + - Id: 16239 + AegisName: Saci_Hat_Box + Name: Saci Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 5558,1; + - Id: 16244 + AegisName: Dolor_Hat_Box + Name: Dolor Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 5563,1; + - Id: 16245 + AegisName: Tw_April_Scroll + Name: Tw April Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Tw_April_Scroll); + - Id: 16246 + AegisName: Crown_Of_Deceit_Box + Name: Crown Of Deceit Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5564,1; + - Id: 16247 + AegisName: Dragon_Arhat_Mask_Box + Name: Dragon Arhat Mask Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5565,1; + - Id: 16248 + AegisName: Tiger_Arhat_Mask_Box + Name: Tiger Arhat Mask Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5566,1; + - Id: 16249 + AegisName: Knight_Gift_Box + Name: Knight Gift Box + Type: Usable + Flags: + UniqueId: true + - Id: 16250 + AegisName: Valkyrie's_Gift_Box + Name: Valkyrie's Gift Box + Type: Cash + Buy: 10 + EquipLevelMin: 1 + Script: | + getitem 5826,1; + - Id: 16251 + AegisName: Gemini_Diadem_Box + Name: Gemini Diadem Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5569,1; + - Id: 16252 + AegisName: Gemini_Crown_Box + Name: Gemini Crown Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5570,1; + - Id: 16253 + AegisName: Rabbit_Scroll + Name: Rabbit Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + - Id: 16254 + AegisName: Energizing_Potion_Box + Name: Energizing Potion Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 16257 + AegisName: Buddah_Scroll + Name: Buddah Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Buddah_Scroll); + - Id: 16258 + AegisName: HD_Bradium_Box5 + Name: HD Bradium 5 Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6226,5; + - Id: 16259 + AegisName: HD_Carnium_Box5 + Name: HD Carnium 5 Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6225,5; + - Id: 16260 + AegisName: HD_Bradium_Box10 + Name: HD Bradium 10 Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6226,10; + - Id: 16261 + AegisName: HD_Carnium_Box10 + Name: HD Carnium 10 Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6225,10; + - Id: 16262 + AegisName: F_HD_Bradium_Box5 + Name: HD Bradium 5 Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6226,5; + - Id: 16263 + AegisName: F_HD_Carnium_Box5 + Name: HD Carnium 5 Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6225,5; + - Id: 16264 + AegisName: HD_Bradium_10_Box2 + Name: HD Bradium 10 Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6226,10; + - Id: 16265 + AegisName: HD_Carnium_10_Box2 + Name: HD Carnium 10 Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6225,10; + - Id: 16266 + AegisName: Indonesia_Beret_Box + Name: Indonesia Beret Box + Type: Cash + Buy: 10 + Weight: 10 + EquipLevelMin: 1 + Script: | + getitem 5580,1; + - Id: 16267 + AegisName: HE_Battle_Manual_Box + Name: HE Battle Manual Box + Type: Usable + Buy: 20 + Weight: 1 + Script: | + getitem 12411,10; + - Id: 16268 + AegisName: HE_Bubble_Gum_Box + Name: HE Bubble Gum Box + Type: Usable + Buy: 20 + Weight: 1 + Script: | + getitem 12412,10; + - Id: 16269 + AegisName: Cancer_Diadem_Box + Name: Cancer Diadem Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 5581,1; + - Id: 16270 + AegisName: Cancer_Crown_Box + Name: Cancer Crown Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 5582,1; + - Id: 16304 + AegisName: Evil_Incarnation_Disable + Name: Evil Incarnation + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Evil_Incarnation); + - Id: 16305 + AegisName: Upg_Guard_Box + Name: Upg Guard Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2149,1; + - Id: 16306 + AegisName: F_Upg_Guard_Box + Name: F Upg Guard Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2149,1; + - Id: 16307 + AegisName: Upg_Buckler_Box + Name: Upg Buckler Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2150,1; + - Id: 16308 + AegisName: F_Upg_Buckler_Box + Name: F Upg Buckler Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2150,1; + - Id: 16309 + AegisName: Upg_Shield_Box + Name: Upg Shield Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2151,1; + - Id: 16310 + AegisName: F_Upg_Shield_Box + Name: F Upg Shield Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2151,1; + - Id: 16311 + AegisName: Upg_Shoes_Box + Name: Upg Shoes Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2459,1; + - Id: 16312 + AegisName: F_Upg_Shoes_Box + Name: F Upg Shoes Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2459,1; + - Id: 16313 + AegisName: Upg_Boots_Box + Name: Upg Boots Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2460,1; + - Id: 16314 + AegisName: F_Upg_Boots_Box + Name: F Upg Boots Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2460,1; + - Id: 16315 + AegisName: Upg_Greave_Box + Name: Upg Greave Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2461,1; + - Id: 16316 + AegisName: F_Upg_Greave_Box + Name: F Upg Greave Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2461,1; + - Id: 16317 + AegisName: Upg_Hood_Box + Name: Upg Hood Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2561,1; + - Id: 16318 + AegisName: F_Upg_Hood_Box + Name: F Upg Hood Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2561,1; + - Id: 16319 + AegisName: Upg_Muffler_Box + Name: Upg Muffler Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2562,1; + - Id: 16320 + AegisName: F_Upg_Muffler_Box + Name: F Upg Muffler Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2562,1; + - Id: 16321 + AegisName: Upg_Manteau_Box + Name: Upg Manteau Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2563,1; + - Id: 16322 + AegisName: F_Upg_Manteau_Box + Name: F Upg Manteau Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2563,1; + - Id: 16323 + AegisName: Upg_Clip_Box + Name: Upg Clip Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2828,1; + - Id: 16324 + AegisName: F_Upg_Clip_Box + Name: F Upg Clip Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2828,1; + - Id: 16327 + AegisName: Upg_Adv_Suit_Box + Name: Upg Adv Suit Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 15015,1; + - Id: 16328 + AegisName: F_Upg_Adv_Suit_Box + Name: F Upg Adv Suit Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 15015,1; + - Id: 16329 + AegisName: Upg_Coat_Box + Name: Upg Coat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 15016,1; + - Id: 16330 + AegisName: F_Upg_Coat_Box + Name: F Upg Coat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 15016,1; + - Id: 16331 + AegisName: Upg_Saint_Robe_Box + Name: Upg Saint Robe Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 15017,1; + - Id: 16332 + AegisName: F_Upg_Saint_Robe_Box + Name: F Upg Saint Robe Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 15017,1; + - Id: 16333 + AegisName: Upg_Tights_Box + Name: Upg Tights Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 15018,1; + - Id: 16334 + AegisName: F_Upg_Tights_Box + Name: F Upg Tights Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 15018,1; + - Id: 16335 + AegisName: Upg_Thief_Cloth_Box + Name: Upg Thief Cloth Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 15019,1; + - Id: 16336 + AegisName: F_Upg_Thief_Cloth_Box + Name: F Upg Thief Cloth Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 15019,1; + - Id: 16337 + AegisName: Upg_Mail_Box + Name: Upg Mail Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 15020,1; + - Id: 16338 + AegisName: F_Upg_Mail_Box + Name: F Upg Mail Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 15020,1; + - Id: 16339 + AegisName: Upg_Formal_Dress_Box + Name: Upg Formal Dress Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 15021,1; + - Id: 16340 + AegisName: F_Upg_Formal_Dress_Box + Name: F Upg Formal Dress Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 15021,1; + - Id: 16341 + AegisName: Greed_Clip_Box + Name: Greed Clip Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 2829,1; + - Id: 16342 + AegisName: F_Greed_Clip_Box + Name: F Greed Clip Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 2829,1; + - Id: 16343 + AegisName: Leo_Crown_Box + Name: Leo Crown Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 5588,1; + - Id: 16344 + AegisName: Leo_Diadem_Box + Name: Leo Diadem Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 5589,1; + - Id: 16345 + AegisName: F_Leo_Crown_Box + Name: F Leo Crown Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 5588,1; + - Id: 16346 + AegisName: F_Leo_Diadem_Box + Name: F Leo Diadem Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 5589,1; + - Id: 16360 + AegisName: Desert_Prince_Box + Name: Desert Prince Box + Type: Cash + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5591,1; + - Id: 16361 + AegisName: FDesert_Prince_Box + Name: FDesert Prince Box + Type: Cash + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5591,1; + - Id: 16362 + AegisName: Sigrun's_Wing_Box + Name: Sigrun's Wing Box + Type: Cash + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5592,1; + - Id: 16363 + AegisName: FSigrun's_Wing_Box + Name: FSigrun's Wing Box + Type: Cash + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5592,1; + - Id: 16368 + AegisName: Virgo_Crown_Box + Name: Virgo Crown Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5598,1; + - Id: 16371 + AegisName: Tw_Aug_Scroll + Name: Tw Aug Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Tw_Aug_Scroll); + - Id: 16372 + AegisName: F_Clover_Box_Mouth + Name: F Clover Box Mouth + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_F_Clover_Box_Mouth); /*rentitem 4Leaf_Clover_In_Mouth,3600;*/ + - Id: 16374 + AegisName: Mouth_Bubble_Gum_Box + Name: Mouth Bubble Gum Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Mouth_Bubble_Gum_Box); /*rentitem Bubble_Gum_In_Mouth,3600;*/ + - Id: 16378 + AegisName: Siege_Tele_Scroll_Box_30 + Name: Siege Teleport Scroll 30 Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14591,30; + - Id: 16379 + AegisName: Siege_Teleport_Scroll_Silver_10Box + Name: Siege Teleport Scroll Silver 10Box + Type: Cash + Buy: 10 + Weight: 10 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12415,10; + - Id: 16380 + AegisName: Siege_Teleport_Scroll_Silver_30Box + Name: Siege Teleport Scroll Silver 30Box + Type: Cash + Buy: 10 + Weight: 10 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12415,30; + - Id: 16381 + AegisName: WoE_Teleport_Scroll_100_Box + Name: WoE Teleport Scroll 100 Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12444,100; + - Id: 16382 + AegisName: WoE_Teleport_Scroll_30_Box + Name: WoE Teleport Scroll 30 Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12444,30; + - Id: 16385 + AegisName: F_Clover_Box_Mouth2 + Name: F Clover Box Mouth2 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_F_Clover_Box_Mouth2); /*rentitem 4Leaf_Clover_In_Mouth,7200;*/ + - Id: 16386 + AegisName: F_Clover_Box_Mouth4 + Name: F Clover Box Mouth4 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_F_Clover_Box_Mouth4); /*rentitem 4Leaf_Clover_In_Mouth,14400;*/ + - Id: 16389 + AegisName: BGum_Box_In_Mouth2 + Name: BGum Box In Mouth2 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_BGum_Box_In_Mouth2); /*rentitem Bubble_Gum_In_Mouth,7200;*/ + - Id: 16390 + AegisName: BGum_Box_In_Mouth4 + Name: BGum Box In Mouth4 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_BGum_Box_In_Mouth4); /*rentitem Bubble_Gum_In_Mouth,14400;*/ + - Id: 16393 + AegisName: HD_Ori_Box5 + Name: HD Oridecon 5 Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6240,5; + - Id: 16394 + AegisName: HD_Ori_Box10 + Name: HD Oridecon 10 Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6240,10; + - Id: 16395 + AegisName: HD_Elu_Box5 + Name: HD Elunium 5 Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6241,5; + - Id: 16396 + AegisName: HD_Elu_Box10 + Name: HD Elunium 10 Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6241,10; + - Id: 16397 + AegisName: Virgo_Diadem_Box + Name: Virgo Diadem Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5599,1; + - Id: 16398 + AegisName: Virgo_Crown_Box_ + Name: Virgo Crown Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5598,1; + - Id: 16399 + AegisName: Virgo_Diadem_Box_ + Name: Virgo Diadem Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5599,1; + - Id: 16405 + AegisName: Midgard_Coin_Box_ + Name: Midgard Coin Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6242,1; + - Id: 16406 + AegisName: FMidgard_Coin_Box + Name: FMidgard Coin Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6242,1; + - Id: 16409 + AegisName: Tw_Sep_Scroll + Name: Tw Sep Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Tw_Sep_Scroll); + - Id: 16410 + AegisName: Chung_Hairband_Box + Name: Chung Hairband Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 5609,1; + - Id: 16411 + AegisName: FChung_Hairband_Box + Name: FChung Hairband Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 5609,1; + - Id: 16412 + AegisName: Ice_Wing_Ear_Box + Name: Ice Wing Ear Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 5610,1; + - Id: 16413 + AegisName: FIce_Wing_Ear_Box + Name: FIce Wing Ear Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 5610,1; + - Id: 16414 + AegisName: Turtle_Hat_Box + Name: Turtle Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 5611,1; + - Id: 16415 + AegisName: FTurtle_Hat_Box + Name: FTurtle Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 5611,1; + - Id: 16418 + AegisName: Giant_Fly_Wing_Box_500 + Name: Giant Fly Wing Box 500 + Type: Usable + Buy: 20 + Weight: 1 + Script: | + getitem 12212,500; + - Id: 16419 + AegisName: Greed_Scroll_Box_30 + Name: Greed Scroll Box 30 + Type: Usable + Buy: 20 + Weight: 1 + Script: | + getitem 14529,30; + - Id: 16420 + AegisName: Adventurer_Pack + Name: Adventurer Pack + Type: Usable + Buy: 20 + Weight: 1 + Script: | + getitem 12208,10; getitem 12210,10; getitem 12216,20; getitem 12215,20; getitem 7621,10; getitem 12209,10; getitem 12211,5; getitem 12445,10; getitem 12446,10; getitem 12447,10; getitem 12448,10; getitem 12449,10; getitem 12450,10; + - Id: 16421 + AegisName: Written_Oath_Of_Marriage_Box + Name: Written Oath Of Marriage Box + Type: Usable + Buy: 20 + Weight: 1 + Script: | + getitem 6026,1; + - Id: 16422 + AegisName: Magestic_Goat_Box_ + Name: Magestic Goat Box + Type: Usable + Buy: 20 + Weight: 1 + Script: | + rentitem 5280,604800; + - Id: 16423 + AegisName: Episode_13.1_Key_Package + Name: Episode 13.1 Key Package + Type: Usable + Buy: 20 + Weight: 1 + Script: | + getitem 7782,1; getitem 12208,2; getitem 14582,10; + - Id: 16424 + AegisName: Executioner_Box_ + Name: Executioner Box + Type: Usable + Buy: 20 + Weight: 1 + Script: | + rentitem 1174,604800; + - Id: 16425 + AegisName: Cutlus_Box + Name: Cutlus Box + Type: Usable + Buy: 20 + Weight: 1 + Script: | + rentitem 13402,604800; + - Id: 16426 + AegisName: Moonlight_Dagger_Box + Name: Moonlight Dagger Box + Type: Usable + Buy: 20 + Weight: 1 + Script: | + rentitem 13026,604800; + - Id: 16427 + AegisName: Wrench_Box + Name: Wrench Box + Type: Usable + Buy: 20 + Weight: 1 + Script: | + rentitem 1534,604800; + - Id: 16428 + AegisName: Solar_Sword_Box_ + Name: Solar Sword Box + Type: Usable + Buy: 20 + Weight: 1 + Script: | + rentitem 13403,604800; + - Id: 16429 + AegisName: Tomahawk_Box_ + Name: Tomahawk Box + Type: Usable + Buy: 20 + Weight: 1 + Script: | + rentitem 1374,604800; + - Id: 16430 + AegisName: Rudra_Bow_Box + Name: Rudra Bow Box + Type: Usable + Buy: 20 + Weight: 1 + Script: | + rentitem 1729,604800; + - Id: 16431 + AegisName: Pole_Axe_Box_ + Name: Pole Axe Box + Type: Usable + Buy: 20 + Weight: 1 + Script: | + rentitem 1419,604800; + - Id: 16436 + AegisName: Libra_Crown_Box + Name: Libra Crown Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 5662,1; + - Id: 16437 + AegisName: Libra_Crown_Box_ + Name: Libra Crown Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 5662,1; + - Id: 16438 + AegisName: Libra_Diadem_Box + Name: Libra Diadem Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 5663,1; + - Id: 16439 + AegisName: Libra_Diadem_Box_ + Name: Libra Diadem Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 5663,1; + - Id: 16440 + AegisName: Filir_Wing_Box + Name: Filir Wing Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 5664,1; + - Id: 16446 + AegisName: Tw_October_Scroll + Name: Tw October Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Tw_October_Scroll); + - Id: 16447 + AegisName: Scorpio_Crown_Box + Name: Scorpio Crown Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5676,1; + - Id: 16448 + AegisName: Scorpio_Diadem_Box + Name: Scorpio Diadem Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5677,1; + - Id: 16449 + AegisName: Scorpio_Crown_Box_ + Name: Scorpio Crown Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5676,1; + - Id: 16450 + AegisName: FScorpio_Diadem_Box + Name: FScorpio Diadem Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5677,1; + - Id: 16456 + AegisName: My_Scroll1 + Name: My Scroll1 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_My_Scroll1); + - Id: 16457 + AegisName: Tw_Nov_Scroll + Name: Tw Nov Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Tw_Nov_Scroll); + - Id: 16461 + AegisName: Red_Wing_Hat_Box + Name: Red Wing Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 5690,1; + - Id: 16462 + AegisName: FRed_Wing_Hat_Box + Name: FRed Wing Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 5690,1; + - Id: 16466 + AegisName: My_Scroll2 + Name: My Scroll2 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_My_Scroll2); + - Id: 16481 + AegisName: Small_Life_Potion_Box_10 + Name: Small Life Potion Box (10) + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12516,10; + - Id: 16483 + AegisName: Abrasive_Box_10 + Name: Abrasive Box (10) + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12514,10; + - Id: 16503 + AegisName: E_Insurance_Package + Name: E Insurance Package + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 12209,10; + - Id: 16504 + AegisName: Bubble_Gum_Box_10 + Name: Bubble Gum Box(10) + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12210,10; + - Id: 16505 + AegisName: Steamed_Tongue_Box_10 + Name: Steamed Tongue Box (10) + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12501,10; + - Id: 16506 + AegisName: Steamed_Desert_Scorpions_Box_10 + Name: Steamed Desert Scorpions Box (10) + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12502,10; + - Id: 16507 + AegisName: Dragon_Breath_Cocktail_Box_10 + Name: Dragon Breath Cocktail Box (10) + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12503,10; + - Id: 16508 + AegisName: Hwergelmir's_Tonic_Box_10 + Name: Hwergelmir's Tonic Box (10) + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12504,10; + - Id: 16509 + AegisName: Cooked_Nine_Tail_Box_10 + Name: Cooked Nine Tail Box (10) + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12505,10; + - Id: 16510 + AegisName: Immortal_Stew_Box_10 + Name: Immortal Stew Box (10) + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12506,10; + - Id: 16514 + AegisName: Blessing_Scroll_Box_10 + Name: Blessing Scroll Box (10) + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12522,10; + - Id: 16515 + AegisName: Increase_Agility_Scroll_Box_10 + Name: Increase Agility Scroll Box (10) + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12523,10; + - Id: 16542 + AegisName: Xmas_Bless + Name: Xmas Bless + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Xmas_Bless); + - Id: 16543 + AegisName: Snowman_Hat_Box + Name: Snowman Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5738,1; + - Id: 16544 + AegisName: FSnowman_Hat_Box + Name: FSnowman Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5738,1; + - Id: 16548 + AegisName: Sagittarius_Crown_Box + Name: Sagittarius Crown Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 5739,1; + - Id: 16549 + AegisName: Sagittarius_Diadem_Box + Name: Sagittarius Diadem Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 5740,1; + - Id: 16550 + AegisName: Sagittarius_Crown_Box_ + Name: Sagittarius Crown Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 5739,1; + - Id: 16551 + AegisName: Sagittarius_Diadem_Box_ + Name: Sagittarius Diadem Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 5740,1; + - Id: 16554 + AegisName: Elven_Sunglasses_Box + Name: Elven Sunglasses Box + Type: Usable + Buy: 20 + Weight: 1 + Script: | + getitem 5245,1; + - Id: 16555 + AegisName: Pr_Reset_Stone_Box + Name: Pr Reset Stone Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*getgroupitem(IG_Pr_Reset_Stone_Box);*/ getitem 6320,1; + - Id: 16556 + AegisName: FPremium_Reset_Stone_Box + Name: Reset Stone Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + /*getgroupitem(IG_FPr_Reset_Stone_Box);*/ getitem 6320,1; + - Id: 16557 + AegisName: CP_Helm_Scroll10 + Name: CP Helm Scroll10 + Type: Cash + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 14517,10; + - Id: 16558 + AegisName: CP_Shield_Scroll10 + Name: CP Shield Scroll10 + Type: Cash + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 14518,10; + - Id: 16559 + AegisName: CP_Armor_Scroll10 + Name: CP Armor Scroll10 + Type: Cash + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 14519,10; + - Id: 16560 + AegisName: CP_Weapon_Scroll10 + Name: CP Weapon Scroll10 + Type: Cash + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 14520,10; + - Id: 16561 + AegisName: CP_Scroll_Package + Name: CP Scroll Package + Type: Usable + Weight: 10 + Flags: + UniqueId: true + - Id: 16562 + AegisName: Majestic_Devil_Scroll + Name: Majestic Devil Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Majestic_Devil_Scroll); + - Id: 16563 + AegisName: BM100_Box_5 + Name: BM100 Box 5 + Type: Cash + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 14533,5; + - Id: 16565 + AegisName: Capricorn_Crown_Box + Name: Capricorn Crown Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 5744,1; + - Id: 16566 + AegisName: Capricorn_Crown_Box_ + Name: Capricorn Crown Box + Type: Cash + Buy: 20 + Weight: 10 + Script: | + getitem 5744,1; + - Id: 16567 + AegisName: Capricorn_Diadem_Box + Name: Capricorn Diadem Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 5745,1; + - Id: 16568 + AegisName: FCapricorn_Diadem_Box + Name: FCapricorn Diadem Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 5745,1; + - Id: 16569 + AegisName: Summer_Scroll + Name: Summer Scroll + Type: Usable + Buy: 20 + Weight: 100 + Flags: + UniqueId: true + - Id: 16571 + AegisName: Rice_Ball_Hat_Box + Name: Rice Ball Hat Box + Type: Cash + Buy: 10 + Weight: 10 + EquipLevelMin: 1 + Script: | + getitem 5575,1; + - Id: 16576 + AegisName: Illusion_Nothing + Name: Illusion Nothing + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Illusion_Nothing); + - Id: 16577 + AegisName: Dragon_Captain + Name: Dragon Captain + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + - Id: 16582 + AegisName: Red_Bunny_Band_Box + Name: Red Bunny Band Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 5763,1; + - Id: 16584 + AegisName: Sloth_Hat_Box + Name: Sloth Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 5761,1; + - Id: 16585 + AegisName: F_Sloth_Hat_Box + Name: F Sloth Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 5761,1; + - Id: 16586 + AegisName: Duneyrr_Helm_Box + Name: Duneyrr Helm Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 5762,1; + - Id: 16587 + AegisName: F_Duneyrr_Helm_Box + Name: F Duneyrr Helm Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 5762,1; + - Id: 16588 + AegisName: Thoughtful_Hat_Box + Name: Thoughtful Hat Box + Type: Usable + Buy: 20 + Weight: 1 + Script: | + getitem callfunc("F_Rand",5336,5337,5338,5346,5339,5474),1; + - Id: 16589 + AegisName: Thoughtful_Hat_Box_ + Name: Thoughtful Hat Box + Type: Usable + Buy: 20 + Weight: 1 + Script: | + getitem callfunc("F_Rand",5336,5337,5338,5346,5339,5474),1; + - Id: 16590 + AegisName: Thoughtful_Hat_Box__ + Name: Thoughtful Hat Box + Type: Usable + Buy: 20 + Weight: 1 + Script: | + getitem callfunc("F_Rand",5336,5337,5338,5346,5339,5474),1; + - Id: 16598 + AegisName: Activation_Potion_Box_II + Name: Activation Potion Box II + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 16659 + AegisName: Zodiac_Diadem_Pack + Name: Zodiac Diadem Box + Type: Usable + Buy: 20 + Weight: 1 + Script: | + getitem callfunc("F_Rand",5545,5549,5569,5581,5589,5599,5663,5677,5740,5745,5512,5514),1; + - Id: 16600 + AegisName: Spring_Flower_Scr_Tw + Name: Spring Flower Scr Tw + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + - Id: 16601 + AegisName: Blue_Arara_Hat_Box + Name: Blue Arara Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 5778,1; + - Id: 16602 + AegisName: F_Blue_Arara_Hat_Box + Name: F Blue Arara Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 5778,1; + - Id: 16603 + AegisName: Drooping_Votto_Box + Name: Drooping Votto Box + Type: Cash + Buy: 10 + Script: | + /* getitem drooping votto hat,1; */ + - Id: 16604 + AegisName: Drooping_Votto_Box_ + Name: Drooping Votto Box + Type: Cash + Buy: 10 + Script: | + /* getitem drooping votto hat[1],1; */ + - Id: 16606 + AegisName: Tendrilrion_Hat_Box + Name: Tendrilrion Hat Box + Type: Cash + Buy: 10 + Weight: 10 + Script: | + getitem 5780,1; + - Id: 16619 + AegisName: Yellow_Bunnyband_Box + Name: Yellow Bunnyband Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 5783,1; + - Id: 16620 + AegisName: Yellow_Bunny_Headband_Box + Name: Yellow Bunny Headband Box + Type: Cash + Buy: 10 + Weight: 10 + Script: | + getitem 5783,1; + - Id: 16622 + AegisName: Pink_Bunny_Band_Box + Name: Pink Bunny Band Box + Type: Cash + Buy: 10 + Weight: 10 + Script: | + getitem 5784,1; + - Id: 16623 + AegisName: Green_Bunny_Band_Box + Name: Green Bunny Band Box + Type: Cash + Buy: 10 + Script: | + getitem 5785,1; + - Id: 16625 + AegisName: Half_Asprika_box7 + Name: Half Asprika Box7 + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 2566,604800; + - Id: 16628 + AegisName: Brynhild_Box + Name: Half Brynhild Box + Type: Usable + Buy: 20 + EquipLevelMin: 47 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 15023,604800; + - Id: 16631 + AegisName: Aributa_Scroll + Name: Aributa Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + - Id: 16638 + AegisName: Ribbon_Of_Life_Box + Name: Life Ribbon Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Life_Ribbon_Box); + - Id: 16639 + AegisName: Ribbon_Of_Life_Box2 + Name: Life Ribbon Box2 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Life_Ribbon_Box2); + - Id: 16640 + AegisName: Ribbon_Of_Life_Box3 + Name: Life Ribbon Box3 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Life_Ribbon_Box3); + - Id: 16652 + AegisName: Flame_Light + Name: Flame Light + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Flame_Light); + - Id: 16653 + AegisName: BM75_10Box + Name: BM75 10Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 12563,10; + - Id: 16654 + AegisName: Valiant_Will + Name: Valiant Will + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + - Id: 16655 + AegisName: Rapid_Life_Potion_10_Box + Name: Rapid Life Potion 10 Box + Type: Cash + Buy: 10 + Weight: 10 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12578,10; + - Id: 16658 + AegisName: Rapid_Water_Box_10 + Name: Rapid Water Box(10) + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12578,10; + - Id: 16664 + AegisName: Leo_Scroll + Name: Leo Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + - Id: 16665 + AegisName: Virgo_Scroll + Name: Virgo Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + - Id: 16666 + AegisName: Magic_Candy_Box10 + Name: Magic Candy Box10 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Magic_Candy_Box10); /*getitem Magic_Candy,10;*/ + - Id: 16668 + AegisName: Kotak_Ketupat_Warna_Warni + Name: Kotak Ketupat Warna Warni + Type: Cash + Buy: 10 + Weight: 10 + EquipLevelMin: 1 + Script: | + rentitem 2869,20160000; + - Id: 16670 + AegisName: Field_Manual_Box_A + Name: Field Manual Box A + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 14532,10; if (!rand(10)) getitem callfunc("F_Rand",603,617),1; + - Id: 16673 + AegisName: Libra_Scroll + Name: Libra Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Libra_Scroll); + - Id: 16675 + AegisName: Splash_Scroll + Name: Splash Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Splash_Scroll); + - Id: 16676 + AegisName: Zodiac_Crown_Pack + Name: Zodiac Crown Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem callfunc("F_Rand",5546,5550,5570,5582,5588,5598,5662,5676,5739,5744,5513,5515),1; + - Id: 16677 + AegisName: Universal_Catalog_Gold_Box10 + Name: Universal Catalog Gold 10 Box + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12581,10; + - Id: 16678 + AegisName: Universal_Catalog_Gold_Box50 + Name: Universal Catalog Gold 50 Box + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12581,50; + - Id: 16679 + AegisName: Universal_Catalog_Gold_Box10_ + Name: Universal Catalog Gold 10 Box + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12581,10; + - Id: 16680 + AegisName: Universal_Catalog_Gold_Box50_ + Name: Universal Catalog Gold 50 Box + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12581,50; + - Id: 16681 + AegisName: BR_Independence_Scroll + Name: BR Independence Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_BR_Independence_Scroll); + - Id: 16682 + AegisName: Boarding_Halter_Box + Name: Boarding Halter Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Boarding_Halter_Box); /*rentitem 12622,604800;*/ + - Id: 16683 + AegisName: B_Halter_Box_30Days + Name: B Halter Box 30Days + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12622,2592000; + - Id: 16684 + AegisName: Wing_Of_Fly_Box10 + Name: Wing Of Fly Box10 + Type: Usable + Buy: 20 + Flags: + UniqueId: true + Script: | + getitem 601,10; + - Id: 16685 + AegisName: Wing_Of_Fly_Box50 + Name: Wing Of Fly Box50 + Type: Usable + Buy: 20 + Flags: + UniqueId: true + Script: | + getitem 601,50; + - Id: 16686 + AegisName: Wing_Of_Fly_Box100 + Name: Wing Of Fly Box100 + Type: Usable + Buy: 20 + Flags: + UniqueId: true + Script: | + getitem 601,100; + - Id: 16687 + AegisName: RWC2010_SuitcaseA + Name: RWC2010 SuitcaseA + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_RWC2010_SuitcaseA); + - Id: 16688 + AegisName: RWC2010_SuitcaseB + Name: RWC2010 SuitcaseB + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_RWC2010_SuitcaseB); + - Id: 16691 + AegisName: Scorpius_Scroll + Name: Scorpius Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + - Id: 16692 + AegisName: Alice_Hat_Box + Name: Alice Hat Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 5137,1; + - Id: 16693 + AegisName: Crescent_Helm_Box + Name: Crescent Helm Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 5142,1; + - Id: 16694 + AegisName: Crescent_Helm_Box_ + Name: Crescent Helm Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 5142,1; + - Id: 16695 + AegisName: Dragon_Skull_Box + Name: Dragon Skull Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 5292,1; + - Id: 16696 + AegisName: Dragon_Skull_Box_ + Name: Dragon Skull Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 5292,1; + - Id: 16697 + AegisName: Drooping_Bunny_Box + Name: Drooping Bunny Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 5290,1; + - Id: 16698 + AegisName: Drooping_Bunny_Box_ + Name: Drooping Bunny Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 5290,1; + - Id: 16699 + AegisName: Evolved_Blue_Fish_Box + Name: Evolved Blue Fish Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 5222,1; + - Id: 16701 + AegisName: Evolved_Pair_of_Red_Ribbon_Box + Name: Evolved Pair of Red Ribbon Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 5221,1; + - Id: 16702 + AegisName: Evolved_Pair_of_Red_Ribbon_Box_ + Name: Evolved Pair of Red Ribbon Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 5221,1; + - Id: 16703 + AegisName: Evolved_Pipe_Box + Name: Evolved Pipe Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 5220,1; + - Id: 16704 + AegisName: Evolved_Pipe_Box_ + Name: Evolved Pipe Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 5220,1; + - Id: 16705 + AegisName: Hibiscus_Box + Name: Hibiscus Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 5139,1; + - Id: 16706 + AegisName: Hibiscus_Box_ + Name: Hibiscus Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 5139,1; + - Id: 16707 + AegisName: Jumping_Poring_Box + Name: Jumping Poring Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 5335,1; + - Id: 16708 + AegisName: Jumping_Poring_Box_ + Name: Jumping Poring Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 5335,1; + - Id: 16709 + AegisName: Kettle_Hat_Box + Name: Kettle Hat Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 5291,1; + - Id: 16710 + AegisName: Kettle_Hat_Box_ + Name: Kettle Hat Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 5291,1; + - Id: 16711 + AegisName: Magic_Eyes_Box + Name: Magic Eyes Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 5138,1; + - Id: 16712 + AegisName: Magic_Eyes_Box_ + Name: Magic Eyes Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 5138,1; + - Id: 16713 + AegisName: Mini_Propeller_Box + Name: Mini Propeller Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 5226,1; + - Id: 16714 + AegisName: Mini_Propeller_Box_ + Name: Mini Propeller Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 5226,1; + - Id: 16715 + AegisName: Puppy_Hat_Box + Name: Puppy Hat Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 5182,1; + - Id: 16716 + AegisName: Puppy_Hat_Box_ + Name: Puppy Hat Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 5182,1; + - Id: 16717 + AegisName: Sheep_Hat_Box + Name: Sheep Hat Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 5133,1; + - Id: 16718 + AegisName: Sheep_Hat_Box_ + Name: Sheep Hat Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 5133,1; + - Id: 16719 + AegisName: Tiger_Mask_Box_ + Name: Tiger Mask Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 5098,1; + - Id: 16720 + AegisName: Tiger_Mask_Box__ + Name: Tiger Mask Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 5098,1; + - Id: 16721 + AegisName: Vaccation_Hat_Box + Name: Vacation Hat Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 5629,1; + - Id: 16722 + AegisName: Vane_Hairpin_Box + Name: Vane Hairpin Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 5285,1; + - Id: 16723 + AegisName: Vane_Hairpin_Box_ + Name: Vane Hairpin Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 5285,1; + - Id: 16724 + AegisName: Vanilmirth_Hat_Box + Name: Vanilmirth Hat Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 5289,1; + - Id: 16725 + AegisName: Vanilmirth_Hat_Box_ + Name: Vanilmirth Hat Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 5289,1; + - Id: 16726 + AegisName: Water_Lily_Crown_Box + Name: Water Lily Crown Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 5284,1; + - Id: 16727 + AegisName: Water_Lily_Crown_Box_ + Name: Water Lily Crown Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 5284,1; + - Id: 16728 + AegisName: Pink_Beanie_Hat_Box + Name: Pink Beanie Hat Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 5237,1; + - Id: 16729 + AegisName: Pink_Beanie_Hat_Box_ + Name: Pink Beanie Hat Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 5237,1; + - Id: 16730 + AegisName: Green_Ribbon_Box + Name: Green Ribbon Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 5193,1; + - Id: 16731 + AegisName: Green_Ribbon_Box_ + Name: Green Ribbon Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 5193,1; + - Id: 16732 + AegisName: Gray_Deviruchi_Hat_Box + Name: Gray Deviruchi Hat Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 5229,1; + - Id: 16733 + AegisName: Gray_Deviruchi_Hat_Box_ + Name: Gray Deviruchi Hat Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 5229,1; + - Id: 16734 + AegisName: Blue_Drooping_Cat_Box + Name: Blue Drooping Cat Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 5233,1; + - Id: 16735 + AegisName: Blue_Drooping_Cat_Box_ + Name: Blue Drooping Cat Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 5233,1; + - Id: 16736 + AegisName: Fantastic_Wig_Box + Name: Fantastic Wig Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 5276,1; + - Id: 16737 + AegisName: Fantastic_Wig_Box_ + Name: Fantastic Wig Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 5276,1; + - Id: 16738 + AegisName: Yellow_Mage_Hat_Box + Name: Yellow Mage Hat Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 5242,1; + - Id: 16739 + AegisName: Yellow_Mage_Hat_Box_ + Name: Yellow Mage Hat Box + Type: Usable + Buy: 20 + Weight: 10 + Script: | + getitem 5242,1; + - Id: 16740 + AegisName: Ptotection_Seagod_Box + Name: The Sea God's Call 23 Hour Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 6436,86400; + - Id: 16741 + AegisName: Hairtail_Box1 + Name: Cutlass 1 Hour Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*getgroupitem(IG_Hairtail_Box1);*/ rentitem 1198,3600; + - Id: 16742 + AegisName: Hairtail_Box2 + Name: Cutlass 7 Day Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*getgroupitem(IG_Hairtail_Box2);*/ rentitem 1198,604800; + - Id: 16743 + AegisName: Spearfish_Box1 + Name: Marlin 1 Hour Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*getgroupitem(IG_Spearfish_Box1);*/ rentitem 1489,3600; + - Id: 16744 + AegisName: Spearfish_Box2 + Name: Marlin 7 Day Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*getgroupitem(IG_Spearfish_Box2);*/ rentitem 1489,604800; + - Id: 16745 + AegisName: Saurel_Box1 + Name: Pompano 1 Hour Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*getgroupitem(IG_Saurel_Box1);*/ rentitem 13068,3600; + - Id: 16746 + AegisName: Saurel_Box2 + Name: Pompano 7 Day Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*getgroupitem(IG_Saurel_Box2);*/ rentitem 13068,604800; + - Id: 16747 + AegisName: Tuna_Box1 + Name: Tuna 1 Hour Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*getgroupitem(IG_Tuna_Box1);*/ rentitem 16016,3600; + - Id: 16748 + AegisName: Tuna_Box2 + Name: Tuna 7 Day Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*getgroupitem(IG_Tuna_Box2);*/ rentitem 16016,604800; + - Id: 16749 + AegisName: Malang_Crab_Box1 + Name: Malangdo Crab 1 Hour Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*getgroupitem(IG_Malang_Crab_Box1);*/ rentitem 18107,3600; + - Id: 16750 + AegisName: Malang_Crab_Box2 + Name: Malangdo Crab 7 Day Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*getgroupitem(IG_Malang_Crab_Box2);*/ rentitem 18107,604800; + - Id: 16751 + AegisName: Brindle_Eel_Box1 + Name: Zebra Eel 1 Hour Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*getgroupitem(IG_Brindle_Eel_Box1);*/ rentitem 18108,3600; + - Id: 16752 + AegisName: Brindle_Eel_Box2 + Name: Zebra Eel 7 Day Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*getgroupitem(IG_Brindle_Eel_Box2);*/ rentitem 18108,604800; + - Id: 16753 + AegisName: Unbreak_Weap_Box + Name: Unbreakable Weapon Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 6438,1; + - Id: 16754 + AegisName: F_Unbreak_Weap_Box + Name: Unbreakable Weapon Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 6438,1; + - Id: 16755 + AegisName: Unbreak_Def_Box + Name: Unbreakable Armor Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 6439,1; + - Id: 16756 + AegisName: F_Unbreak_Def_Box + Name: Unbreakable Armor Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 6439,1; + - Id: 16757 + AegisName: Hallo_Scroll + Name: Hallo Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Hallo_Scroll); + - Id: 16760 + AegisName: Umbala_Spirit_Box2 + Name: Umbala Spirit Box2 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Umbala_Spirit_Box2); /*rentitem Umbala_Spirit,604800;*/ + - Id: 16761 + AegisName: F_Umbala_Spirit_Box2 + Name: F Umbala Spirit Box2 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_F_Umbala_Spirit_Box2); /*rentitem Umbala_Spirit,604800;*/ + - Id: 16763 + AegisName: Ptotection_Seagod_Box2 + Name: The Sea God's Call 7 Day Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*getgroupitem(IG_Ptotection_Seagod_Box2);*/ rentitem 6436,604800; + - Id: 16764 + AegisName: Ptotection_Seagod_Box3 + Name: The Sea God's Call 15 Day Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*getgroupitem(IG_Ptotection_Seagod_Box3);*/ rentitem 6436,1209600; + - Id: 16765 + AegisName: Octo_Hstick_Box + Name: Octopus Hunting Skewer 23 Hour Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*getgroupitem(IG_Octo_Hstick_Box);*/ rentitem 6442,86400; + - Id: 16766 + AegisName: Octo_Hstick_Box2 + Name: Octopus Hunting Skewer 3 Day Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*getgroupitem(IG_Octo_Hstick_Box2);*/ rentitem 6442,259200; + - Id: 16767 + AegisName: Octo_Hstick_Box3 + Name: Octopus Hunting Skewer 7 Day Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*getgroupitem(IG_Octo_Hstick_Box3);*/ rentitem 6442,604800; + - Id: 16770 + AegisName: Silvervine_Fruit_Box10 + Name: Silvervine 10 Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*getgroupitem(IG_Silvervine_Fruit_Box10);*/ getitem 6417,10; getitem 12636,30; + - Id: 16771 + AegisName: Silvervine_Fruit_Box40 + Name: Silvervine 40 Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*getgroupitem(IG_Silvervine_Fruit_Box40);*/ getitem 6417,40; getitem 12636,120; + - Id: 16774 + AegisName: Asgard_Scroll + Name: Asgard Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Asgard_Scroll); + - Id: 16775 + AegisName: Sagittarius_Scroll + Name: Sagittarius Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Sagittarius_Scroll); + - Id: 16776 + AegisName: Universal_Catalog_Gold_Box10__ + Name: Universal Catalog Gold 10 Box + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12581,10; + - Id: 16777 + AegisName: Universal_Catalog_Gold_Box50__ + Name: Universal Catalog Gold 50 Box + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12581,50; + - Id: 16821 + AegisName: Dungeon_Teleport_Scroll_Box_5 + Name: Dungeon Teleport Scroll Box(5) + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 16822 + AegisName: Dungeon_Teleport_Scroll_Box_10 + Name: Dungeon Teleport Scroll Box(10) + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 16826 + AegisName: Sagittarius_Scr_Box + Name: Sagittarius Scr Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Sagittarius_Scr_Box); + - Id: 16837 + AegisName: Dungeon_Teleport_Scroll_II_Box_5 + Name: Dungeon Teleport Scroll II Box(5) + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 16838 + AegisName: Dungeon_Teleport_Scroll_II_Box_10 + Name: Dungeon Teleport Scroll II Box(10) + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 16864 + AegisName: Siege_Map_Teleport_Scroll_Box_10 + Name: Siege Map Teleport Scroll Box(10) + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14591,10; + - Id: 16865 + AegisName: Siege_Map_Teleport_Scroll_Box_30 + Name: Siege Map Teleport Scroll Box(30) + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14591,30; + - Id: 16866 + AegisName: Siege_Map_Teleport_Scroll_II_Box_10 + Name: Siege Map Teleport Scroll II Box(10) + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14591,10; + - Id: 16867 + AegisName: Siege_Map_Teleport_Scroll_II_Box_30 + Name: Siege Map Teleport Scroll II Box(30) + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14591,30; + - Id: 16972 + AegisName: Weather_Report_Box + Name: Weather Report Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*getgroupitem(IG_Weather_Report_Box);*/ getitem 19507,1; getitem 19518,1; getitem 19520,1; getitem 19519,1; + - Id: 16973 + AegisName: Yellow_Hat_Box + Name: Yellow Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 19515,1; + - Id: 16974 + AegisName: Comin_Actor_Box + Name: Comin Actor Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*getgroupitem(IG_Comin_Actor_Box);*/ getitem 19514,1; getitem 19521,1; + - Id: 16975 + AegisName: Singing_Bird_Box + Name: Singing Bird Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 19516,1; + - Id: 16976 + AegisName: Hen_Set_Box + Name: Hen Set Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*getgroupitem(IG_Hen_Set_Box);*/ getitem 19513,1; getitem 19517,1; + - Id: 16977 + AegisName: Red_Minicrown_Box + Name: Red Minicrown Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 19522,1; + - Id: 16979 + AegisName: Silvervine_Fruit_Box4 + Name: Silvervine 4 Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*getgroupitem(IG_Silvervine_Fruit_Box4);*/ getitem 6417,4; getitem 12636,12; + - Id: 16990 + AegisName: Sagittar_Diadem_Scroll + Name: Sagittar Diadem Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Sagittar_Diadem_Scroll); + - Id: 16991 + AegisName: Sagittar_Di_Scroll_Box + Name: Sagittar Di Scroll Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Sagittar_Di_Scroll_Box); + - Id: 16992 + AegisName: Butterfly_Wing_Box20 + Name: Butterfly Wing Box20 + Type: Cash + Buy: 20 + Flags: + UniqueId: true + Script: | + getitem 602,20; + - Id: 16993 + AegisName: Butterfly_Wing_Box50 + Name: Butterfly Wing Box50 + Type: Cash + Buy: 20 + Flags: + UniqueId: true + Script: | + getitem 602,50; + - Id: 16995 + AegisName: Old_Hat_Box + Name: Old Hat Box + Type: Cash + Buy: 20 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 16996 + AegisName: Capri_Crown_Scroll + Name: Capri Crown Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Capri_Crown_Scroll); + - Id: 16997 + AegisName: Capri_Crown_Scroll_Box + Name: Capri Crown Scroll Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Capri_Crown_Scroll_Box); + - Id: 16998 + AegisName: Archangel_Wing_Box + Name: Archangel Wings Box + Type: Usable + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2573,1; + - Id: 16999 + AegisName: Bravery_Bag_Box + Name: Bravery Bag Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2576,1; + - Id: 17000 + AegisName: Wander_Man_Box5 + Name: Wander Man Box5 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 12626,5; + - Id: 17001 + AegisName: Wander_Man_Box10 + Name: Wander Man Box10 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 12626,10; + - Id: 17002 + AegisName: Wicked_Nymph_Box5 + Name: Wicked Nymph Box5 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 12627,5; + - Id: 17003 + AegisName: Wicked_Nymph_Box10 + Name: Wicked Nymph Box10 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 12627,10; + - Id: 17004 + AegisName: Kasa_Scroll_Box5 + Name: Kasa Scroll Box5 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 12628,5; + - Id: 17005 + AegisName: Kasa_Scroll_Box10 + Name: Kasa Scroll Box10 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 12628,10; + - Id: 17006 + AegisName: Salamander_Box5 + Name: Salamander Box5 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 12629,5; + - Id: 17007 + AegisName: Salamander_Box10 + Name: Salamander Box10 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 12629,10; + - Id: 17008 + AegisName: Teddy_Bear_Box5 + Name: Teddy Bear Box5 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 12630,5; + - Id: 17009 + AegisName: Teddy_Bear_Box10 + Name: Teddy Bear Box10 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 12630,10; + - Id: 17011 + AegisName: Capricon_Di_Scroll + Name: Capricon Di Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Capricon_Di_Scroll); + - Id: 17012 + AegisName: Capricon_Di_Scroll_Box + Name: Capricon Di Scroll Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Capricon_Di_Scroll_Box); + - Id: 17013 + AegisName: Malang_Woe_Encard_Box + Name: Malang Woe Encard Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*getgroupitem(IG_Malang_Woe_Encard_Box);*/ getitem 16740,1; getitem 16765,1; + - Id: 17014 + AegisName: Butterfly_ear_Box + Name: Butterfly ear Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 19509,1; + - Id: 17015 + AegisName: Stuckhead_Screw_Box + Name: Stuckhead Screw Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 19510,1; + - Id: 17016 + AegisName: Aquarius_Diadem_Scroll + Name: Aquarius Diadem Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Aquarius_Diadem_Scroll); + - Id: 17017 + AegisName: Aquarius_Di_Scroll_Box + Name: Aquarius Di Scroll Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Aquarius_Di_Scroll_Box); + - Id: 17018 + AegisName: Libra_Scroll2 + Name: Libra Scroll2 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + - Id: 17019 + AegisName: Scorpio_Scroll2 + Name: Scorpio Scroll2 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + - Id: 17020 + AegisName: Tw_Nov_Scroll2 + Name: Tw Nov Scroll2 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Tw_Nov_Scroll2); + - Id: 17021 + AegisName: Summer_Scroll3 + Name: Summer Scroll3 + Type: Usable + Buy: 20 + Weight: 100 + Flags: + Container: true + Script: | + getgroupitem(IG_Summer_Scroll3); + - Id: 17022 + AegisName: Super_Pet_Egg1_2 + Name: Super Pet Egg1 2 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Super_Pet_Egg1_2); + - Id: 17023 + AegisName: Super_Pet_Egg4_2 + Name: Super Pet Egg4 2 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Super_Pet_Egg4_2); + - Id: 17024 + AegisName: Lovely_Aquarius_Scroll + Name: Lovely Aquarius Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Lovely_Aquarius_Scroll); + - Id: 17025 + AegisName: Lovely_Aquarius_Box + Name: Lovely Aquarius Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Lovely_Aquarius_Box); + - Id: 17026 + AegisName: Boitata_Scroll + Name: Boitata Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Boitata_Scroll); + - Id: 17028 + AegisName: Pisces_Diadem_Scroll + Name: Pisces Diadem Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Pisces_Diadem_Scroll); + - Id: 17029 + AegisName: Pisces_Diadem_Box_ + Name: Pisces Diadem Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Pisces_Diadem_Box); + - Id: 17030 + AegisName: St_Pat_Hat_box + Name: St Pat Hat box + Type: Cash + Buy: 20 + Weight: 100 + Flags: + UniqueId: true + Script: | + getitem 18565,1; + - Id: 17035 + AegisName: Energetic_Pisces_Scroll + Name: Energetic Pisces Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Energetic_Pisces_Scroll); + - Id: 17036 + AegisName: Energetic_Pisces_Box + Name: Energetic Pisces Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Energetic_Pisces_Box); + - Id: 17037 + AegisName: Trans_Box_Devi + Name: Trans Box Devi + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12658,10; + - Id: 17038 + AegisName: Trans_Box_Ray_Arch + Name: Trans Box Ray Arch + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12659,10; + - Id: 17039 + AegisName: Trans_Box_Mavka + Name: Trans Box Mavka + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12660,10; + - Id: 17040 + AegisName: Trans_Box_Marduk + Name: Trans Box Marduk + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12661,10; + - Id: 17041 + AegisName: Trans_Box_Banshee + Name: Trans Box Banshee + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12662,10; + - Id: 17042 + AegisName: Trans_Box_Poring + Name: Trans Box Poring + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12663,10; + - Id: 17043 + AegisName: Trans_Box_Golem + Name: Trans Box Golem + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12664,10; + - Id: 17050 + AegisName: Aries_Scroll_ + Name: Aries Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Aries_Scroll); + - Id: 17051 + AegisName: Aries_Scroll_Box + Name: Aries Scroll Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Aries_Scroll_Box); + - Id: 17052 + AegisName: Holy_Mom_Blaze_Box + Name: Holy Mom Blaze Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 6472,1; + - Id: 17056 + AegisName: Wiz_Card_Album + Name: Wiz Card Album + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + - Id: 17057 + AegisName: Swordman_Card_Album + Name: Swordman Card Album + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + - Id: 17058 + AegisName: Thief_Card_Album + Name: Thief Card Album + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + - Id: 17059 + AegisName: Acolyte_Card_Album + Name: Acolyte Card Album + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + - Id: 17060 + AegisName: Merchant_Card_Album + Name: Merchant Card Album + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + - Id: 17061 + AegisName: Archer_Card_Album + Name: Archer Card Album + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + - Id: 17062 + AegisName: Taurus_Diadem_Scroll + Name: Taurus Diadem Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Taurus_Diadem_Scroll); + - Id: 17063 + AegisName: Taurus_Di_Scroll_Box + Name: Taurus Di Scroll Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Taurus_Di_Scroll_Box); + - Id: 17064 + AegisName: Tw_Sagitt_Scroll + Name: Tw Sagitt Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + - Id: 17066 + AegisName: Poison_Bottle_Box50 + Name: Poison Bottle Box50 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 678,50; + - Id: 17067 + AegisName: Poison_Bottle_Box100 + Name: Poison Bottle Box100 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 678,100; + - Id: 17068 + AegisName: Acidbomb_Box50 + Name: Acidbomb Box50 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 7135,50; getitem 7136,50; + - Id: 17069 + AegisName: Acidbomb_Box100 + Name: Acidbomb Box100 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 7135,100; getitem 7136,100; + - Id: 17070 + AegisName: Acidbomb_Box500 + Name: Acidbomb Box500 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 7135,500; getitem 7136,500; + - Id: 17071 + AegisName: Superb_Fish_Box50 + Name: Superb Fish Box50 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 14524,50; + - Id: 17072 + AegisName: Superb_Fish_Box100 + Name: Superb Fish Box100 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 14524,100; + - Id: 17073 + AegisName: Superb_Fish_Box500 + Name: Superb Fish Box500 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 14524,500; + - Id: 17074 + AegisName: Empty_Bottle_Box10 + Name: Empty Bottle Box10 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 713,10; + - Id: 17075 + AegisName: Empty_Bottle_Box100 + Name: Empty Bottle Box100 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 713,100; + - Id: 17076 + AegisName: Empty_Bottle_Box500 + Name: Empty Bottle Box500 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 713,500; + - Id: 17077 + AegisName: Taurus_Crown_Scroll + Name: Taurus Crown Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Taurus_Crown_Scroll); + - Id: 17078 + AegisName: Taurus_Crown_Scroll_Box + Name: Taurus Crown Scroll Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Taurus_Crown_Scroll_Box); + - Id: 17079 + AegisName: Indonesia_Box2 + Name: Indonesia Box2 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 602,5; getitem 601,50; getitem 12118,3; getitem 12119,3; getitem 12120,3; getitem 12121,3; + - Id: 17080 + AegisName: Scorpio_Scroll3 + Name: Scorpio Scroll3 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + - Id: 17081 + AegisName: Yggdrasil_Crown_Box + Name: Yggdrasil Crown Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 18580,1; + - Id: 17082 + AegisName: Gemi_Diadem_Scroll + Name: Gemi Diadem Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Gemi_Diadem_Scroll); + - Id: 17083 + AegisName: Gemi_Diadem_Scroll_Box + Name: Gemi Diadem Scroll Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Gemi_Diadem_Scroll_Box); + - Id: 17084 + AegisName: Upg_Katar_Box + Name: Upg Katar Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 1292,1; + - Id: 17085 + AegisName: Upg_Two_Handed_Axe_Box + Name: Upg Two Handed Axe Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 1394,1; + - Id: 17086 + AegisName: Upg_Lance_Box + Name: Upg Lance Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 1491,1; + - Id: 17087 + AegisName: Upg_Book_Box + Name: Upg Book Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 1585,1; + - Id: 17088 + AegisName: Upg_Staff_Box + Name: Upg Staff Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2015,1; + - Id: 17089 + AegisName: Upg_Dagger_Box + Name: Upg Dagger Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 13071,1; + - Id: 17090 + AegisName: Upg_Revolver_Box + Name: Upg Revolver + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 13115,1; + - Id: 17091 + AegisName: Upg_Mace_Box + Name: Upg Mace Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 16019,1; + - Id: 17092 + AegisName: Upg_Bow_Box + Name: Upg Bow Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 18112,1; + - Id: 17093 + AegisName: Upg_Twohand_Sword_Box + Name: Upg Two-Handed Sword Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 21000,1; + - Id: 17094 + AegisName: Upg_Katar_Box2 + Name: Upg Katar Box + Type: Cash + Buy: 20 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 17095 + AegisName: Upg_Two_Handed_Axe_Box2 + Name: Upg Two-Hand Axe Box2 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 17096 + AegisName: Upg_Lance_Box2 + Name: Upg Lance Box2 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 17097 + AegisName: Upg_Book_Box2 + Name: Upg_Book_Box2 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 17098 + AegisName: Upg_Staff_Box2 + Name: Upg_Staff_Box2 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 17099 + AegisName: Upg_Dagger_Box2 + Name: Upg_Dagger_Box2 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 17100 + AegisName: Upg_Revolver_Box2 + Name: Upg_Revolver_Box2 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 17101 + AegisName: Upg_Mace_Box2 + Name: Upg_Mace_Box2 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 17102 + AegisName: Upg_Bow_Box2 + Name: Upg_Bow_Box2 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 17103 + AegisName: Upg_Twohand_Sword_Box2 + Name: Upg_Twohand_Sword_Box2 + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 17104 + AegisName: HD_Oridecon_50Box + Name: HD Oridecon 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 6240,50; + - Id: 17105 + AegisName: HD_Elunium_50Box + Name: HD Elunium 50 Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 6241,50; + - Id: 17106 + AegisName: Max_Weight_Up_10Box + Name: Heavy Lifter Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7776,10; + - Id: 17107 + AegisName: Gemi_Crown_Scroll + Name: Gemi Crown Scroll + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Gemi_Crown_Scroll); + - Id: 17108 + AegisName: Gemi_Crown_Scroll_Box + Name: Gemi Crown Scroll Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Gemi_Crown_Scroll_Box); + - Id: 17109 + AegisName: Capri_Scroll + Name: Capri Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + - Id: 17110 + AegisName: Aquarius_Scroll + Name: Aquarius Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + - Id: 17113 + AegisName: Pisces_Scroll + Name: Pisces Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + - Id: 17114 + AegisName: Horn_Of_Ancient_Box + Name: Horn Of Ancient Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 18595,1; + - Id: 17115 + AegisName: Sprout_Hat_Box + Name: Sprout Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 18596,1; + - Id: 17116 + AegisName: Mercury_Helm_Box + Name: Mercury Helm Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 18597,1; + - Id: 17117 + AegisName: Aries_Scroll + Name: Aries Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + - Id: 17118 + AegisName: ASPD_Potion_Box10 + Name: ASPD Enhanced Potion Box + Type: Cash + Buy: 20 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12684,10; + - Id: 17120 + AegisName: Taurus_Scroll + Name: Taurus Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + - Id: 17121 + AegisName: Starry_Scroll + Name: Starry Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + - Id: 17122 + AegisName: Immuned_Shield_Box + Name: Immuned Shield Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2168,1; + - Id: 17123 + AegisName: Black_Devil_Mask_Box + Name: Black Devil Mask Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 18599,1; + - Id: 17124 + AegisName: Cat_Ears_Beret_Box + Name: Cat Ears Beret Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 18600,1; + - Id: 17125 + AegisName: Red_Bread_Hat_Box + Name: Red Bread Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 18601,1; + - Id: 17126 + AegisName: ASPD_Potion_Box10_2 + Name: ASPD Enhanced Potion Box + Type: Cash + Buy: 20 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12684,10; + - Id: 17127 + AegisName: Leo_Scroll2 + Name: Leo Scroll2 + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + - Id: 17134 + AegisName: RWC_Scroll + Name: RWC Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + - Id: 17138 + AegisName: Ms_Cancer_Scroll + Name: Ms Cancer Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Ms_Cancer_Scroll); + - Id: 17139 + AegisName: RWC_Super_Scroll + Name: RWC Super Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_RWC_Super_Scroll); + - Id: 17140 + AegisName: Leo_Scroll_ + Name: Leo Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Leo_Scroll); + - Id: 17141 + AegisName: Ms_Virgo_Scroll + Name: Ms Virgo Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Ms_Virgo_Scroll); + - Id: 17143 + AegisName: Ms_Scorpio_Scroll + Name: Ms Scorpio Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Ms_Scorpio_Scroll); + - Id: 17146 + AegisName: Dep_Alice_Hat_Box + Name: Dep Alice Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 18630,1; + - Id: 17147 + AegisName: Ribbon_Chef_Hat_Box + Name: Ribbon Chef Hat Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 18631,1; + - Id: 17152 + AegisName: Bridal_Ribbon_Box + Name: Bridal Ribbon Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 18636,1; + - Id: 17155 + AegisName: Upg_Huuma_Shuriken_Box + Name: Upg Huuma Shuriken Box + Type: Usable + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 13316,86400; + - Id: 17156 + AegisName: TCG_Card_Scroll + Name: Bossnia Ticket Scroll + Type: Usable + Buy: 20 + Flags: + Container: true + Script: | + getgroupitem(IG_TCG_Card_Scroll); + - Id: 17157 + AegisName: Vital_Flower_Box + Name: Vital Flower Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 6113,10; + - Id: 17158 + AegisName: Flame_Gemstone_Box + Name: Flame Gemstone Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getitem 6114,10; + - Id: 17159 + AegisName: Change_Name_Card_Box + Name: Name Change Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 17160 + AegisName: Character_Name_Change_Card_Box + Name: Character Name Change Card Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 17162 + AegisName: Boarding_Halter_Box7 + Name: Boarding Halter Box7 + Type: Cash + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12622,604800; + - Id: 17165 + AegisName: Challenge_Kit + Name: Challenge Kit + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Challenge_Kit); /*getitem Blessing_10_Scroll,20; getitem Inc_Agi_10_Scroll,20;*/ + - Id: 17176 + AegisName: Boarding_Halter_Box3 + Name: Halter Lead Box[Trial] + Type: Cash + Buy: 20 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 17181 + AegisName: Jan_Groove_Box + Name: Jan Groove Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + - Id: 17184 + AegisName: 3rd_Test_Pass_Box + Name: 3rd Test Pass Box + Type: Cash + Flags: + UniqueId: true + Script: | + getitem 6583,1; + - Id: 17203 + AegisName: Free_Pass_Box + Name: Free Pass Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + - Id: 17204 + AegisName: Shining_Egg + Name: Shining Egg + Type: Cash + Buy: 10 + Weight: 10 + EquipLevelMin: 1 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Shining_Egg); + - Id: 17207 + AegisName: Idn_Heart_Scroll + Name: Idn Heart Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Script: | + getgroupitem(IG_Idn_Heart_Scroll); + - Id: 17209 + AegisName: Tw_Rainbow_Scroll + Name: Tw Rainbow Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Tw_Rainbow_Scroll); + - Id: 17210 + AegisName: Tw_Red_Scroll + Name: Tw Red Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Tw_Red_Scroll); + - Id: 17211 + AegisName: Tw_Orange_Scroll + Name: Tw Orange Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Tw_Orange_Scroll); + - Id: 17212 + AegisName: Tw_Yellow_Scroll + Name: Tw Yellow Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Tw_Yellow_Scroll); + - Id: 17226 + AegisName: Infinite_Concentration_Potion_ + Name: Infinite Concentration Potion + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12884,604800; + - Id: 17227 + AegisName: Infinite_Awakening_Potion_ + Name: Infinite Awakening Potion + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12885,604800; + - Id: 17228 + AegisName: Infinite_Berserk_Potion_ + Name: Infinite Berserk Potion + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12886,604800; + - Id: 17229 + AegisName: Infinite_Flywing_Box + Name: Infinite Flywing Box + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12887,604800; + - Id: 17230 + AegisName: Valerian_Scroll + Name: Valerian Egg + Type: Cash + Buy: 10 + Weight: 10 + EquipLevelMin: 1 + Script: | + getgroupitem(IG_Valerian_Scroll); + - Id: 17231 + AegisName: Refinement_Ore_Box + Name: Refinement Ore Box + Type: Usable + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7619,1; getitem 7620,1; + - Id: 17232 + AegisName: Refinement_Box_7 + Name: Refinement box(7) + Type: Usable + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6230,1; getitem 6234,1; + - Id: 17233 + AegisName: Scroll_Of_Death + Name: Scroll Of Death + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Scroll_Of_Death); + - Id: 17234 + AegisName: Scroll_Of_Life + Name: Scroll Of Life + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Scroll_Of_Life); + - Id: 17235 + AegisName: Scroll_Of_Magic + Name: Scroll Of Magic + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Scroll_Of_Magic); + - Id: 17236 + AegisName: Scroll_Of_Thews + Name: Scroll Of Thews + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Scroll_Of_Thews); + - Id: 17237 + AegisName: Scroll_Of_Darkness + Name: Scroll Of Darkness + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Scroll_Of_Darkness); + - Id: 17238 + AegisName: Scroll_Of_Holiness + Name: Scroll Of Holiness + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Scroll_Of_Holiness); + - Id: 17239 + AegisName: Horned_Scroll + Name: Horned Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Horned_Scroll); + - Id: 17240 + AegisName: Mercury_Scroll + Name: Mercury Scroll + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Mercury_Scroll); + - Id: 17241 + AegisName: Amistr_Cap_Box + Name: Amistir Cap Box + Type: Usable + Buy: 10 + Weight: 10 + Defense: 4 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 5766,1; + - Id: 17244 + AegisName: Event_Almighty_Box + Name: Event Almighty Box + Type: Usable + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12883,10; + - Id: 17242 + AegisName: Immortal_Egg + Name: Immortal Egg + Type: Cash + Buy: 10 + Weight: 10 + EquipLevelMin: 1 + Script: | + getgroupitem(IG_Immortal_Egg); + - Id: 17245 + AegisName: Idn_Independ_Scroll + Name: Idn Independ Scroll + Type: Cash + Buy: 20 + Flags: + UniqueId: true + - Id: 17246 + AegisName: HD_Elunium_Box_30 + Name: HD Elunium Box(30) + Type: Usable + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6241,30; + - Id: 17247 + AegisName: HD_Oridecon_Box_30 + Name: HD Oridecon Box(30) + Type: Usable + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6240,30; + - Id: 17251 + AegisName: C_Wing_Of_Fly_3Day_Box + Name: C Wing Of Fly 3Day Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_C_Wing_Of_Fly_3Day_Box); + - Id: 17252 + AegisName: RWC_2012_Set_Box + Name: RWC 2012 Set Box + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_RWC_2012_Set_Box); + - Id: 17253 + AegisName: RWC_2012_Ring_Box + Name: RWC 2012 Ring Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2966,1; + - Id: 17254 + AegisName: RWC_2012_Pendant_Box + Name: RWC 2012 Pendant Box + Type: Cash + Buy: 20 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2968,1; + - Id: 17255 + AegisName: Sapphire_Egg + Name: Sapphire Egg + Type: Cash + Buy: 10 + Weight: 10 + EquipLevelMin: 1 + Script: | + getgroupitem(IG_Sapphire_Egg); + - Id: 17256 + AegisName: Good_Student_Gift_Box + Name: Good Student Gift Box + Type: Cash + Buy: 20 + Flags: + Container: true + Script: | + getgroupitem(IG_Good_Student_Gift_Box); + - Id: 17257 + AegisName: Bad_Student_Gift_Box + Name: Bad Student Gift Box + Type: Cash + Buy: 20 + Flags: + Container: true + Script: | + getgroupitem(IG_Bad_Student_Gift_Box); + - Id: 17262 + AegisName: Ex_Def_Potion_Box + Name: Special Defense Potion Box + Type: Cash + Buy: 20 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Ex_Def_Potion_Box); /*getitem Ex_Def_Potion,5; getitem RWC_Scroll_2012,1;*/ + - Id: 17263 + AegisName: Infinite_Concentration_Potion_3rd_Box + Name: Infinite Concentration Potion 3rd Box + Type: Usable + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12884,259200; + - Id: 17264 + AegisName: Infinite_Awakening_Potion_3rd_Box + Name: Infinite Awakening Potion 3rd Box + Type: Usable + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12885,259200; + - Id: 17265 + AegisName: Infinite_Berserk_Potion_3rd_Box + Name: Infinite Berserk Potion 3rd Box + Type: Usable + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12886,259200; + - Id: 17266 + AegisName: Limited_Battle_Manual_Package + Name: Limited Battle Manual Package + Type: Usable + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 17263,1; getitem 17264,1; getitem 17265,1; + - Id: 17270 + AegisName: STR_Biscuit_Stick_Box + Name: Bar Cookie Of Strength Box + Type: Cash + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14616,20; + - Id: 17271 + AegisName: VIT_Biscuit_Stick_Box + Name: Bar Cookie Of Vitality Box + Type: Cash + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14617,20; + - Id: 17272 + AegisName: AGI_Biscuit_Stick_Box + Name: Bar Cookie Of Agility Box + Type: Cash + Buy: 10 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14618,20; + - Id: 17273 + AegisName: INT_Biscuit_Stick_Box + Name: Bar Cookie Of Intellgence Box + Type: Cash + Buy: 10 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14619,20; + - Id: 17274 + AegisName: DEX_Biscuit_Stick_Box + Name: Bar Cookie Of Dexterity Box + Type: Cash + Buy: 10 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14620,20; + - Id: 17275 + AegisName: LUK_Biscuit_Stick_Box + Name: Bar Cookie Of Luck Box + Type: Cash + Buy: 10 + Weight: 10 + Flags: + UniqueId: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14621,20; + - Id: 17277 + AegisName: Unlimited_Box + Name: Unlimited Box + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Unlimited_Box); + - Id: 17278 + AegisName: Unlimited_Box_10 + Name: Unlimited Box(10) + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Unlimited_Box_10); + - Id: 17281 + AegisName: Refinement_Ore_Box_IV + Name: Refinement Ore Box IV + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7619,5; getitem 7620,5; getitem 14627,1; + - Id: 17282 + AegisName: Refinement_Ore_Box_IV_10 + Name: Refinement Ore Box IV(10) + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7619,50; getitem 7620,50; getitem 14627,11; + - Id: 17283 + AegisName: Refinement_Ore_Box_IV_20 + Name: Refinement Ore Box IV(20) + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7619,100; getitem 7620,100; getitem 14627,23; + - Id: 17285 + AegisName: Events_Beauty_Gift_Box + Name: Events Beauty Gift Box + Type: Cash + Buy: 10 + Weight: 10 + Classes: + All: false + Gender: Female + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*TODO*/ + - Id: 17292 + AegisName: Shadow_Box + Name: Shadow Box + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem callfunc("F_Rand",24018,24019,24020,24021,24022,24023,24024,24025,24026),1; + - Id: 17293 + AegisName: Shadow_Physical_Package + Name: Shadow Physical Package + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem callfunc("F_Rand",24018,24019,24020,24024,24025,24026),1; + - Id: 17294 + AegisName: Shadow_Magical_Package + Name: Shadow Magical Package + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem callfunc("F_Rand",24021,24022,24023,24024,24025,24026),1; + - Id: 17298 + AegisName: Support_Package + Name: Support Package + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Support_Package); + - Id: 17299 + AegisName: Support_Package_10 + Name: Support Package(10) + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Support_Package_10); + - Id: 17302 + AegisName: Shadow_Box_II_ + Name: Shadow Box II + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 17303 + AegisName: Shadow_Set_Box_II + Name: Shadow Set Box II + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 17304 + AegisName: Neuralizer_Box_3 + Name: Neuralizer Box 3 + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12213,3; + - Id: 17306 + AegisName: Status_Reset_Coupon_Box + Name: Status Reset Coupon Box + Type: Cash + Buy: 10 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem callfunc("F_Rand",6720,6721),1; + - Id: 17307 + AegisName: Midgard_Scroll + Name: Midgard Egg + Type: Cash + Buy: 10 + Weight: 10 + EquipLevelMin: 1 + Flags: + Container: true + Script: | + getgroupitem(IG_Midgard_Scroll); + - Id: 17308 + AegisName: Half_Asprika_box1 + Name: Half Asprika box1 + Type: Usable + Buy: 20 + Weight: 10 + Script: | + rentitem 2566,86400; + - Id: 17311 + AegisName: Half_Brynhild_box1 + Name: Half Brynhild box1 + Type: Usable + Buy: 20 + EquipLevelMin: 47 + Script: | + rentitem 15023,86400; + - Id: 17314 + AegisName: Infinite_Giant_Fly_Wing_Box + Name: Infinite Giant Fly Wing Box + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12212,86400; + - Id: 17315 + AegisName: Lucky_Silvervine_Fruit_Box_10 + Name: Lucky Silvervine Fruit Box(10) + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6417,10; + - Id: 17316 + AegisName: Lucky_Silvervine_Fruit_Box_110 + Name: Lucky Silvervine Fruit Box(110) + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6417,110; + - Id: 17317 + AegisName: Sweet_Midgard_Scroll + Name: Sweet Midgard Egg + Type: Cash + Buy: 10 + Weight: 10 + EquipLevelMin: 1 + Flags: + Container: true + Script: | + getgroupitem(IG_Sweet_Midgard_Scroll); + - Id: 17320 + AegisName: IdRO10th_Scroll + Name: Birthday IdRO10th Scroll + Type: Cash + Buy: 10 + Weight: 10 + EquipLevelMin: 1 + Flags: + Container: true + Script: | + getgroupitem(IG_IdRO10th_Scroll); + - Id: 17321 + AegisName: Three_Master_Package + Name: Three Master Package + Type: Cash + Buy: 10 + Weight: 10 + Classes: + All: false + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*TODO: Confirm the items and rates*/ getitem 14534,20; getitem 14535,20; + - Id: 17322 + AegisName: Three_Master_Package_10 + Name: Three Master Package(10) + Type: Cash + Buy: 10 + Weight: 10 + Classes: + All: false + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*TODO: Confirm the items and rates*/ getitem 14534,200; getitem 14535,200; + - Id: 17326 + AegisName: Requiem_Scroll + Name: Requiem Egg + Type: Cash + Buy: 10 + Weight: 10 + EquipLevelMin: 1 + Flags: + Container: true + Script: | + getgroupitem(IG_Requiem_Scroll); + - Id: 17331 + AegisName: Event_Almighty_Box_ + Name: Event Almighty Box + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Event_Almighty_Box); + - Id: 17332 + AegisName: Event_Almighty_Box_100 + Name: Event Almighty Box(100) + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Event_Almighty_Box_100); + - Id: 17337 + AegisName: Holy_Spirit_Scroll + Name: Holy Spirit Egg + Type: Cash + Buy: 10 + Weight: 10 + EquipLevelMin: 1 + Flags: + Container: true + Script: | + getgroupitem(IG_Holy_Spirit_Scroll); + - Id: 17338 + AegisName: Ore_Box_V + Name: Ore Box V + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7619,5; getitem 7620,5; getitem 14696,1; + - Id: 17339 + AegisName: Ore_Box_V_10 + Name: Ore Box V(10) + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7619,50; getitem 7620,50; getitem 14696,11; + - Id: 17394 + AegisName: Event_Old_Headgear_Box + Name: Event Old Headgear Box + Type: Usable + Buy: 20 + Weight: 50 + Script: | + /* TODO */ + - Id: 17396 + AegisName: Half_L_Magestic_Goat_Box1 + Name: Half L Magestic Goat Box1 + Type: Usable + Buy: 20 + Weight: 10 + Script: | + rentitem 5887,86400; + - Id: 17397 + AegisName: Half_L_Magestic_Goat_Box7 + Name: Half L Magestic Goat Box7 + Type: Usable + Buy: 20 + Weight: 10 + Script: | + rentitem 5887,604800; + - Id: 17398 + AegisName: Half_BF_Spear1_Box1 + Name: Half BF Spear1 Box1 + Type: Usable + Buy: 20 + Weight: 10 + Script: | + rentitem 1439,86400; + - Id: 17399 + AegisName: Half_BF_Spear1_Box7 + Name: Half BF Spear1 Box7 + Type: Usable + Buy: 20 + Weight: 10 + Script: | + rentitem 1439,604800; + - Id: 17400 + AegisName: Half_BF_Book2_Box1 + Name: Half BF Book2 Box1 + Type: Usable + Buy: 20 + Weight: 10 + Script: | + rentitem 1597,86400; + - Id: 17401 + AegisName: Half_BF_Book2_Box7 + Name: Half BF Book2 Box7 + Type: Usable + Buy: 20 + Weight: 10 + Script: | + rentitem 1597,604800; + - Id: 17402 + AegisName: Half_BF_Staff4_Box1 + Name: Half BF Staff4 Box1 + Type: Usable + Buy: 20 + Weight: 10 + Script: | + rentitem 1673,86400; + - Id: 17403 + AegisName: Half_BF_Staff4_Box7 + Name: Half BF Staff4 Box7 + Type: Usable + Buy: 20 + Weight: 10 + Script: | + rentitem 1673,604800; + - Id: 17404 + AegisName: Half_BF_Staff2_Box1 + Name: Half BF Staff2 Box1 + Type: Usable + Buy: 20 + Weight: 10 + Script: | + rentitem 1674,86400; + - Id: 17405 + AegisName: Half_BF_Staff2_Box7 + Name: Half BF Staff2 Box7 + Type: Usable + Buy: 20 + Weight: 10 + Script: | + rentitem 1674,604800; + - Id: 17406 + AegisName: Half_BF_Knuckle1_Box1 + Name: Half BF Knuckle1 Box1 + Type: Usable + Buy: 20 + Weight: 10 + Script: | + rentitem 1838,86400; + - Id: 17407 + AegisName: Half_BF_Knuckle1_Box7 + Name: Half BF Knuckle1 Box7 + Type: Usable + Buy: 20 + Weight: 10 + Script: | + rentitem 1838,604800; + - Id: 17408 + AegisName: Half_BF_Dagger2_Box1 + Name: Half BF Dagger2 Box1 + Type: Usable + Buy: 20 + Weight: 10 + Script: | + rentitem 13096,86400; + - Id: 17409 + AegisName: Half_BF_Dagger2_Box7 + Name: Half BF Dagger2 Box1s + Type: Usable + Buy: 20 + Weight: 10 + Script: | + rentitem 13096,604800; + - Id: 17410 + AegisName: Half_BF_Huuma_Shuriken2_Box1 + Name: Half BF Huuma Shuriken2 Box1 + Type: Usable + Buy: 20 + Weight: 10 + Script: | + rentitem 13321,86400; + - Id: 17411 + AegisName: Half_BF_Huuma_Shuriken2_Box7 + Name: Half BF Huuma Shuriken2 Box7 + Type: Usable + Buy: 20 + Weight: 10 + Script: | + rentitem 13321,604800; + - Id: 17412 + AegisName: Half_BF_Sword1_Box1 + Name: Half BF Sword1 Box1 + Type: Usable + Buy: 20 + Weight: 10 + Script: | + rentitem 13445,86400; + - Id: 17413 + AegisName: Half_BF_Sword1_Box7 + Name: Half BF Sword1 Box7 + Type: Usable + Buy: 20 + Weight: 10 + Script: | + rentitem 13445,604800; + - Id: 17414 + AegisName: Half_Mjolnir_Box1 + Name: Half Mjolnir Box1 + Type: Usable + Buy: 20 + Weight: 10 + Script: | + rentitem 16034,86400; + - Id: 17415 + AegisName: Half_Mjolnir_Box7 + Name: Half Mjolnir Box7 + Type: Usable + Buy: 20 + Weight: 10 + Script: | + rentitem 16034,604800; + - Id: 17416 + AegisName: Half_BF_Morning_Star1_Box1 + Name: Half BF Morning Star1 Box1 + Type: Usable + Buy: 20 + Weight: 10 + Script: | + rentitem 16035,86400; + - Id: 17417 + AegisName: Half_BF_Morning_Star1_Box7 + Name: Half BF Morning Star1 Box1 + Type: Usable + Buy: 20 + Weight: 10 + Script: | + rentitem 16035,604800; + - Id: 17418 + AegisName: Half_BF_Bow1_Box1 + Name: Half BF Bow1 Box1 + Type: Usable + Buy: 20 + Weight: 10 + Script: | + rentitem 18124,86400; + - Id: 17419 + AegisName: Half_BF_Bow1_Box7 + Name: Half BF Bow1 Box7 + Type: Usable + Buy: 20 + Weight: 10 + Script: | + rentitem 18124,604800; + - Id: 17420 + AegisName: Half_BF_Katar2_Box1 + Name: Half BF Katar2 Box1 + Type: Usable + Buy: 20 + Weight: 10 + Script: | + rentitem 28002,86400; + - Id: 17421 + AegisName: Half_BF_Katar2_Box7 + Name: Half BF Katar2 Box7 + Type: Usable + Buy: 20 + Weight: 10 + Script: | + rentitem 28002,604800; + - Id: 17422 + AegisName: Half_BF_Two_Handed_Axe1Box1 + Name: Half BF Two Handed Axe1Box1 + Type: Usable + Buy: 20 + Weight: 10 + Script: | + rentitem 28102,86400; + - Id: 17423 + AegisName: Half_BF_Two_Handed_Axe1Box7 + Name: Half BF Two Handed Axe1Box7 + Type: Usable + Buy: 20 + Weight: 10 + Script: | + rentitem 28102,604800; + - Id: 17424 + AegisName: Half_BF_Rifle1_Box1 + Name: Half BF Rifle1 Box1 + Type: Usable + Buy: 20 + Weight: 10 + Script: | + rentitem 28203,86400; + - Id: 17425 + AegisName: Half_BF_Rifle1_Box7 + Name: Half BF Rifle1 Box7 + Type: Usable + Buy: 20 + Weight: 10 + Script: | + rentitem 28203,604800; + - Id: 17426 + AegisName: Half_BF_Shotgun1_Box1 + Name: Half BF Shotgun1 Box1 + Type: Usable + Buy: 20 + Weight: 10 + Script: | + rentitem 28204,86400; + - Id: 17427 + AegisName: Half_BF_Shotgun1_Box7 + Name: Half BF Shotgun1 Box7 + Type: Usable + Buy: 20 + Weight: 10 + Script: | + rentitem 28204,604800; + - Id: 17429 + AegisName: 11_Anniversary_Shadow_Box + Name: 11 Anniversary Shadow Box + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /* getitem callfunc("F_Rand",Ritual's Flute (weapon, earrings, pendants), every risyeo's (shields, armor, shoes)),1; */ + - Id: 17430 + AegisName: 11_Anniversary_Shadow_Package + Name: 11 Anniversary Shadow Package + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /* getitem Ritual's Flute (weapon, earrings, pendants),1; getitem every risyeo's (shields, armor, shoes)),1; */ + - Id: 17431 + AegisName: Thanks_Giving_Scroll + Name: Miracle Lucky Egg + Type: Cash + Buy: 10 + Weight: 10 + EquipLevelMin: 1 + Flags: + Container: true + Script: | + getgroupitem(IG_Thanks_Giving_Scroll); + - Id: 17432 + AegisName: Lucky_Silvervine_Fruit_Box_II_10 + Name: Lucky Silvervine Fruit Box II(10) + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*getgroupitem(Lucky_Silvervine_Fruit_Box_II10);*/ getitem 6417,10; getitem 14705,1; + - Id: 17433 + AegisName: Lucky_Silvervine_Fruit_Box_II_110 + Name: Lucky Silvervine Fruit Box II(110) + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*getgroupitem(Lucky_Silvervine_Fruit_Box_II110);*/ getitem 6417,110; getitem 14705,11; + - Id: 17435 + AegisName: Idn_Legend_Hero_Scroll + Name: Legend Hero Lucky Egg + Type: Cash + Buy: 10 + Weight: 10 + EquipLevelMin: 1 + Flags: + Container: true + Script: | + getgroupitem(IG_Idn_Legend_Hero_Scroll); + - Id: 17440 + AegisName: Name_Change_Card_Box + Name: Name Change Card Box + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12790,1; + - Id: 17441 + AegisName: Halter_Lead_Box + Name: Halter Lead Box + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12622,1; + - Id: 17443 + AegisName: Reinforcement_Buckler_Box + Name: Reinforcement Buckler Box + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 2150,1; + - Id: 17442 + AegisName: Emperium_G_Box + Name: Emperium G Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6444,1; + - Id: 17447 + AegisName: Blessing_Midgard_Scroll + Name: Blessing Midgard Lucky Egg + Type: Cash + Buy: 10 + EquipLevelMin: 1 + Flags: + Container: true + Script: | + getgroupitem(IG_Blessing_Midgard_Scroll); + - Id: 17449 + AegisName: Cookies_Bar_Set + Name: Set Bar Cookies + Type: Usable + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + for (.@i = 14616; .@i <= 14621; .@i++) getitem .@i,1; + - Id: 17455 + AegisName: Premium_Battle_Manual_Box + Name: Premium Battle Manual Box + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 22614,1; + - Id: 17456 + AegisName: Support_Package_II + Name: Support Package II + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Support_Package_II); + - Id: 17457 + AegisName: Support_Package_II_10 + Name: Support Package II(10) + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Support_Package_II_10); + - Id: 17461 + AegisName: Costama_Egg18 + Name: Frozen Egg Costume + Type: Cash + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Costama_Egg18); + - Id: 17464 + AegisName: Winter_Midgard_Scroll + Name: Winter Midgard Egg + Type: Cash + Buy: 10 + Weight: 10 + EquipLevelMin: 1 + Flags: + Container: true + Script: | + getgroupitem(IG_Winter_Midgard_Scroll); + - Id: 17465 + AegisName: Refinement_Ore_Box_VI + Name: Refinement Ore Box VI + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7619,5; getitem 7620,5; getitem 14718,1; + - Id: 17466 + AegisName: Refinement_Ore_Box_VI_10 + Name: Refinement Ore Box VI(10) + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7619,50; getitem 7620,50; getitem 14718,11; + - Id: 17467 + AegisName: Limited_Token_of_Ziegfried_Box_50 + Name: (Limited) Token of Ziegfried Box(50) + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6833,50; + - Id: 17468 + AegisName: Neuralizer_II_Box_3 + Name: Neuralizer II Box (3) + Type: Usable + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14724,3; + - Id: 17469 + AegisName: Neuralizer_I_Box + Name: Neuralizer I Box + Type: Usable + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14723,1; + - Id: 17470 + AegisName: Costama_Egg19 + Name: Headgear Costume Scroll + Type: Cash + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Costama_Egg19); + - Id: 17471 + AegisName: Spring_Festival_Scroll + Name: Spring Festival Lucky Egg + Type: Cash + Buy: 10 + Weight: 10 + EquipLevelMin: 1 + Flags: + Container: true + Script: | + getgroupitem(IG_Spring_Festival_Scroll); + - Id: 17472 + AegisName: Support_Package_III + Name: Support Package III + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Support_Package_III); + - Id: 17473 + AegisName: Support_Package_III_10 + Name: Support Package III(10) + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Support_Package_III_10); + - Id: 17474 + AegisName: Infinite_Giant_Fly_Wing_Box_V + Name: Infinite Giant Fly Wing Box V + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 12212,86400; + - Id: 17475 + AegisName: Limited_Gym_Membership_Card_Box_10 + Name: (Limited)Gym Membership Card Box(10) + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 17475,10; + - Id: 17477 + AegisName: Unlimited_Box_II + Name: Unlimited Box II + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Unlimited_Box_II); + - Id: 17478 + AegisName: Unlimited_Box_II_10 + Name: Unlimited Box II(10) + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Unlimited_Box_II_10); + - Id: 17479 + AegisName: Midgard_Fes_Scroll + Name: Midgard Festival Egg + Type: Usable + Buy: 10 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Midgard_Fes_Scroll); + - Id: 17481 + AegisName: Costama_Egg21 + Name: Flower Blossom Scroll + Type: Cash + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Costama_Egg21); + - Id: 17482 + AegisName: Solaris_Festival_Scroll + Name: Solaris Festival Scroll + Type: Usable + Buy: 10 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Solaris_Festival_Scroll); + - Id: 17483 + AegisName: Three_Master_Package_III + Name: Three Master Package III + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Three_Master_Package_III); + - Id: 17484 + AegisName: Three_Master_Package_III_10 + Name: Three Master Package III(10) + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Three_Master_Package_III_10); + - Id: 17490 + AegisName: Time_Travel_Scroll + Name: Time Travel Lucky Egg + Type: Usable + Buy: 10 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Time_Travel_Scroll); + - Id: 17491 + AegisName: Refinement_Ore_Box_VII + Name: Refinement Ore Box VII + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7619,5; getitem 7620,5; getitem 4482,1; + - Id: 17492 + AegisName: Refinement_Ore_Box_VII_10 + Name: Refinement Ore Box VII(10) + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7619,50; getitem 7620,50; getitem 4482,11; + - Id: 17493 + AegisName: Costama_Egg23 + Name: Burning Feather Costume Scroll + Type: Cash + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Costama_Egg23); + - Id: 17494 + AegisName: Happy_Time_Scroll + Name: Rise Midgard Lucky Egg + Type: Cash + Buy: 10 + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Happy_Time_Scroll); + - Id: 17495 + AegisName: Lucky_Silvervine_Fruit_Box_III10 + Name: Lucky Silvervine Fruit Box III(10) + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Lucky_Silvervine_Fruit_Box_III10); + - Id: 17496 + AegisName: Lucky_Silvervine_Fruit_Box_III110 + Name: Lucky Silvervine Fruit Box III(110) + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Lucky_Silvervine_Fruit_Box_III110); + - Id: 17497 + AegisName: Costama_Egg24 + Name: Seaside Costume Scroll + Type: Cash + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Costama_Egg24); + - Id: 17498 + AegisName: Three_Master_Package_IV + Name: Three Master Package IV + Type: Usable + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14534,20; getitem 14535,20; getitem 12578,20; getitem 22812,1; + - Id: 17499 + AegisName: Three_Master_Package_IV_10 + Name: Three Master Package IV(10) + Type: Usable + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14534,200; getitem 14535,200; getitem 12578,200; getitem 22812,11; + - Id: 17501 + AegisName: Support_Package_IV + Name: Support Package IV + Type: Usable + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12208,2; getitem 12210,2; getitem 12883,2; getitem 14600,2; /*getitem Mysterious Water of Life,6;*/ if(!rand(100)) getitem 22823,1; + - Id: 17502 + AegisName: Support_Package_IV_10 + Name: Support Package IV(10) + Type: Usable + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12208,20; getitem 12210,20; getitem 12883,20; getitem 14600,20; /*getitem Mysterious Water of Life,60;*/ if(!rand(100)) getitem 22823,11; + - Id: 17507 + AegisName: Nyangvine_Box4 + Name: Actinidia Cat Fruit Box(4) + Type: Usable + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6909,4; + - Id: 17508 + AegisName: Nyangvine_Box10 + Name: Actinidia Cat Fruit Box(10) + Type: Usable + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6909,10; + - Id: 17509 + AegisName: Nyangvine_Box40 + Name: Actinidia Cat Fruit Box(40) + Type: Usable + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6909,40; + - Id: 17510 + AegisName: Smelting_Ore_Box_VIII + Name: Smelting Ore Box VIII + Type: Usable + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7619,5; getitem 7620,5; getitem 22828,1; + - Id: 17511 + AegisName: Smelting_Ore_Box_VIII_10 + Name: Smelting Ore Box VIII(10) + Type: Usable + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7619,50; getitem 7620,50; getitem 22828,11; + - Id: 17512 + AegisName: Limited_Purified_Eluminium_Box_30 + Name: (Limited) Purified Eluminium Box(30) + Type: Usable + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6911,30; getitem 6635,1; + - Id: 17513 + AegisName: Limited_Purified_Oridecon_Box_30 + Name: (Limited) Purified Oridecon Box(30) + Type: Usable + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6910,30; getitem 6635,1; + - Id: 17515 + AegisName: Unlimited_Box_III + Name: Unlimited Box III + Type: Usable + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12684,5; getitem 12796,10; if(!rand(30)) getitem 14758,1; + - Id: 17516 + AegisName: Unlimited_Box_III_10 + Name: Unlimited Box III(10) + Type: Usable + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12684,50; getitem 12796,100; if(!rand(30)) getitem 14758,11; + - Id: 17517 + AegisName: Costama_Egg28 + Name: Animal Costume Scroll + Type: Cash + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Costama_Egg28); + - Id: 17519 + AegisName: Epic_Heroes_Scroll + Name: Epic Heroes Scroll + Type: Cash + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Epic_Heroes_Lucky_Egg); + - Id: 17520 + AegisName: Limited_Edition_Manual_Box + Name: Limited Edition Manual Box + Type: Usable + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14765,3; /*getitem (limited edition battle manual),2;*/ + - Id: 17521 + AegisName: Three_Master_Package_V + Name: Three Master Package V + Type: Usable + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14534,20; getitem 14535,20; /*getitem Mysterious Water of Life,20;*/ getitem 22842,1; + - Id: 17522 + AegisName: Three_Master_Package_V_10 + Name: Three Master Package V(10) + Type: Usable + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14534,200; getitem 14535,200; /*getitem Mysterious Water of Life,200;*/ getitem 22842,11; + - Id: 17523 + AegisName: Costama_Egg29 + Name: Mystical Costume Scroll + Type: Cash + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Costama_Egg29); + - Id: 17524 + AegisName: Limited_Power_Booster_Box + Name: Limited Power Booster Box + Type: Usable + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14766,1; getitem 22873,1; + - Id: 17525 + AegisName: Limited_Power_Booster_Box_100 + Name: Limited Power Booster Box(100) + Type: Usable + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14766,100; getitem 22873,11; + - Id: 17526 + AegisName: Majestic_Lucky_Scroll + Name: Majestic Lucky Egg + Type: Cash + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Majestic_Lucky_Scroll); + - Id: 17527 + AegisName: Nyangvine_Box200 + Name: Actinidia Cat Fruit Box(200) + Type: Usable + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6909,200; getitem 12636,rand(1,5); /*TODO: Fix the 12636 amount*/ + - Id: 17532 + AegisName: Blessing_Lucky_Scroll + Name: Blessing Lucky Egg + Type: Cash + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Blessing_Lucky_Scroll); + - Id: 17544 + AegisName: Smelting_Ore_Box_IX + Name: Smelting Ore Box IX + Type: Usable + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7619,5; getitem 7620,5; getitem 22888,1; + - Id: 17545 + AegisName: Smelting_Ore_Box_IX_10 + Name: Smelting Ore Box IX(10) + Type: Usable + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 7619,50; getitem 7620,50; getitem 22888,11; + - Id: 17547 + AegisName: Limited_2015_Neuralizer_Box + Name: (Limited)2015 Neuralizer Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 22894,1; + - Id: 17548 + AegisName: Limited_2015_Status_Initialization_Volume_Box + Name: (Limited)2015 Status Initialization Volume Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 22895,1; + - Id: 17549 + AegisName: Limited_High_Density_Bradium_Box_30 + Name: (Limited)High Density Bradium Box(30) + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6327,30; + - Id: 17550 + AegisName: Limited_High_Density_Kalunium_Box_30 + Name: (Limited)High Density Kalunium Box(30) + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6906,30; + - Id: 17552 + AegisName: Garnet_Lucky_Scroll + Name: Garnet Lucky Egg + Type: Cash + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Garnet_Lucky_Scroll); + - Id: 17567 + AegisName: Event_Almighty_Box__ + Name: Event Almighty Box + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 22902,1; bonus_script "{ bonus bAllStats,10; bonus bBaseAtk,30; bonus bMatk,30; }",1800; + - Id: 17568 + AegisName: Event_Almighty_Box_100_ + Name: Event Almighty Box(100) + Type: Cash + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 22902,11; bonus_script "{ bonus bAllStats,10; bonus bBaseAtk,30; bonus bMatk,30; }",1800; + - Id: 17569 + AegisName: Dungeon_1_hour_Ticket_Box + Name: Dungeon 1 Hour Ticket Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 14505,1; + - Id: 17572 + AegisName: Erzulie_Lucky_Scroll + Name: Erzulie Lucky Egg + Type: Cash + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Erzulie_Lucky_Scroll); + - Id: 17584 + AegisName: Venus_Lucky_Scroll + Name: Venus Lucky Egg + Type: Cash + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Venus_Lucky_Scroll); + - Id: 17588 + AegisName: Amora_Lucky_Scroll + Name: Amora Lucky Egg + Type: Cash + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Amora_Lucky_Scroll); + - Id: 17598 + AegisName: Sograt_Lucky_Scroll + Name: Sograt Lucky Scroll + Type: Cash + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Sograt_Lucky_Scroll); + - Id: 17607 + AegisName: Sanctuary_Lucky_Scroll + Name: Sanctuary Lucky Egg + Type: Cash + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Sanctuary_Lucky_Scroll); + - Id: 17613 + AegisName: Chronosian_Lucky_Scroll + Name: Chronosian Lucky Egg + Type: Cash + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Chronosian_Lucky_Scroll); + - Id: 17628 + AegisName: Cyborg_Lucky_Scroll + Name: Cyborg Lucky Egg + Type: Cash + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Cyborg_Lucky_Scroll); + - Id: 17633 + AegisName: Undine_Lucky_Scroll + Name: Undine Lucky Egg + Type: Cash + Weight: 10 + Flags: + Container: true + Script: | + getgroupitem(IG_Undine_Lucky_Scroll); + - Id: 17648 + AegisName: Smithy_Lucky_Scroll + Name: Smithy Lucky Egg + Type: Cash + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Smithy_Lucky_Scroll); + - Id: 17659 + AegisName: Ganymede_Lucky_Scroll + Name: Ganymede Lucky Egg + Type: Cash + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Ganymede_Lucky_Scroll); + - Id: 17665 + AegisName: LastAngel_LuckyScroll + Name: LastAngel LuckyScroll + Type: Cash + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_LastAngel_LuckyScroll); + - Id: 17671 + AegisName: Valkyrie_Lucky_Scroll + Name: Valkyrie Lucky Egg + Type: Cash + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Valkyrie_Lucky_Scroll); + - Id: 17674 + AegisName: Rainbow_Lucky_Scroll + Name: Splash Rainbow Lucky Egg + Type: Cash + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Splash_Rainbow_Lucky_Scroll); + - Id: 17681 + AegisName: Midgard_Lucky_Scroll + Name: Midgard Lucky Scroll + Type: Cash + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Midgard_Lucky_Scroll); + - Id: 17692 + AegisName: June_Lucky_Scroll + Name: Blessing Scarlet Egg + Type: Cash + Weight: 10 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Blessing_Scarlet_Scroll); + - Id: 22508 + AegisName: Para_Team_Mark_ + Name: Eden Group Mark + Type: Usable + Flags: + NoConsume: true + Delay: + Duration: 1200000 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + warp "moc_para01",171,115; + - Id: 22507 + AegisName: ShabbyOldScroll + Name: Old Scroll + Type: Usable + Buy: 10 + Weight: 10 + Script: | + callfunc "F_22507"; + - Id: 22510 + AegisName: King_Wolf_Scroll + Name: King Wolf Scroll + Type: Usable + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*TODO, confirm the rates*/ getitem callfunc("F_Rand",6635,19598,5658,6238,6239),1; + - Id: 22511 + AegisName: Fenrir_Card__ + Name: Fenrir's Power Scroll + Type: Usable + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus_script "{ bonus bMatk,25; bonus bFixedCastRate,-50; }",300,1025; + - Id: 22513 + AegisName: King_of_Gift_Box + Name: King of Gift Box + Type: Usable + Buy: 10 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*TODO, confirm the rates*/ getitem callfunc("F_Rand",12817,4403,14512),1; + - Id: 22514 + AegisName: Candy_Holder + Name: Candy Holder + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getrandgroupitem(IG_Candy_Holder,1); getrandgroupitem(IG_Candy_Holder,1); getrandgroupitem(IG_Candy_Holder,1); + - Id: 22518 + AegisName: Idn_Wisdom_Egg + Name: Egg Of Wisdom + Type: Cash + Buy: 10 + Weight: 10 + EquipLevelMin: 1 + Script: | + getgroupitem(IG_Idn_Wisdom_Egg); + - Id: 22521 + AegisName: Level_Up_Box_ + Name: Level Up Box + Type: Cash + Buy: 10 + EquipLevelMin: 80 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*TODO*/ + - Id: 22522 + AegisName: Level_Up_Box100 + Name: Level Up Box(100) + Type: Cash + Buy: 10 + EquipLevelMin: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Level_Up_Box100); + - Id: 22523 + AegisName: Level_Up_Box120 + Name: Level Up Box(120) + Type: Cash + Buy: 10 + EquipLevelMin: 120 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Level_Up_Box120); + - Id: 22524 + AegisName: Level_Up_Box130 + Name: Level Up Box(130) + Type: Cash + Buy: 10 + EquipLevelMin: 130 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Level_Up_Box130); + - Id: 22525 + AegisName: Level_Up_Box140 + Name: Level Up Box(140) + Type: Cash + Buy: 10 + EquipLevelMin: 140 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Level_Up_Box140); + - Id: 22526 + AegisName: Level_Up_Box150 + Name: Level Up Box(150) + Type: Cash + Buy: 10 + EquipLevelMin: 150 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Level_Up_Box150); + - Id: 22527 + AegisName: Level_Up_Box160 + Name: Level Up Box(160) + Type: Cash + Buy: 10 + EquipLevelMin: 160 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Level_Up_Box160); + - Id: 22528 + AegisName: Pet_Exchange_Ticket_Box + Name: Pet Exchange Ticket Box + Type: Cash + Buy: 10 + Weight: 20 + Classes: + All: false + Gender: Female + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*TODO*/ + - Id: 22530 + AegisName: Christmas_Box + Name: Christmas Box + Type: Cash + Buy: 10 + Weight: 200 + EquipLevelMin: 1 + Script: | + getgroupitem(IG_Christmas_Box); + - Id: 22531 + AegisName: Special_Christmas_Box + Name: Special Christmas Box + Type: Cash + Buy: 10 + Weight: 200 + EquipLevelMin: 1 + Script: | + getgroupitem(IG_Special_Christmas_Box); + - Id: 22532 + AegisName: Santa_Gift + Name: Santa Gift + Type: Cash + Buy: 10 + Weight: 200 + EquipLevelMin: 1 + Script: | + getgroupitem(IG_Santa_Gift); + - Id: 22533 + AegisName: New_Year_Gift_Box + Name: New Year Gift Box + Type: Cash + Buy: 10 + Weight: 200 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*TODO*/ + - Id: 22534 + AegisName: Closedmind_Box + Name: Closed Mind Box + Type: Cash + Buy: 10 + Weight: 1000 + EquipLevelMin: 1 + Flags: + BuyingStore: true + Script: | + getgroupitem(IG_Sealed_Mind_Box); + - Id: 22535 + AegisName: WorkerScroll_A + Name: Scroll Summoning Workers(Male) + Type: Usable + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 22536 + AegisName: WorkerScroll_B + Name: Scroll Summoning Workers(Female) + Type: Usable + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 22537 + AegisName: PrizeOfHero + Name: Prize Of Hero + Type: Usable + Weight: 100 + EquipLevelMin: 1 + Flags: + Container: true + Script: | + getrandgroupitem(IG_PrizeOfHero,1); + - Id: 22538 + AegisName: Hanbok_bag + Name: Hanbok bag + Type: Usable + Weight: 10 + Script: | + sc_start SC_HANBOK,600000,0; + - Id: 22540 + AegisName: Runstone_Lux + Name: Lux Anima Runestone + Type: Delayconsume + Buy: 2 + Weight: 10 + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Delay: + Duration: 5000 + Status: Reuse_Limit_Luxanima + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemskill "RK_LUXANIMA",1; + - Id: 22541 + AegisName: PC_Room_Coupon_Box_VI + Name: PC Room Coupon Box VI + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 22542 + AegisName: Center_Potion_B + Name: Concentration Potion + Type: Usable + Buy: 10 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_ASPDPOTION0,1800000,4; + - Id: 22543 + AegisName: Berserk_Potion_B + Name: Berserk Potion + Type: Usable + Buy: 10 + Weight: 200 + Jobs: + Mage: true + Swordman: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_ASPDPOTION2,1800000,9; + - Id: 22544 + AegisName: Awakening_Potion_B + Name: Awakening Potion + Type: Usable + Buy: 10 + Weight: 150 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_ASPDPOTION1,1800000,6; + - Id: 22545 + AegisName: Speed_Potion + Name: Speed Potion + Type: Usable + Buy: 10 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_SPEEDUP1,5000,50; + - Id: 22546 + AegisName: Slow_Potion + Name: Slow Potion + Type: Usable + Buy: 10 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_SLOWDOWN,5000,100; + - Id: 22547 + AegisName: Anti-Payne_Moment + Name: Anti-Payne Moment + Type: Usable + Buy: 10 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 22548 + AegisName: Wed_Cursed + Name: Wed Cursed + Type: Usable + Buy: 10 + Weight: 30 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 22549 + AegisName: Poison_Bottle_ + Name: Poison Bottle + Type: Usable + Buy: 10 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + 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; + - Id: 22550 + AegisName: Cookie_Bag_B + Name: Sweets Pocket + Type: Usable + Buy: 10 + Weight: 70 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 22551 + AegisName: Sesame_Pastry_B + Name: Teacake + Type: Usable + Buy: 10 + Weight: 70 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 22552 + AegisName: Honey_Pastry_B + Name: Fried Pastry + Type: Usable + Buy: 10 + Weight: 70 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 22553 + AegisName: Rainbow_Cake_B + Name: Rainbow Bread + Type: Usable + Buy: 10 + Weight: 70 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 22554 + AegisName: First_Aid_Box + Name: First Aid Box + Type: Cash + Buy: 10 + Weight: 200 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getrandgroupitem(IG_FirstAid,1); getrandgroupitem(IG_FirstAid,1); getrandgroupitem(IG_FirstAid,1); getrandgroupitem(IG_FirstAid,1); getrandgroupitem(IG_FirstAid,1); + - Id: 22555 + AegisName: Gourmet_Chocolate + Name: Gourmet Chocolate + Type: Healing + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoSell: true + NoCart: true + - Id: 22556 + AegisName: Luxury_Chocolate + Name: Luxury Chocolate + Type: Healing + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoSell: true + NoCart: true + - Id: 22557 + AegisName: Masterpieces_of_Artisan_Chocolate + Name: Masterpieces of Artisan Chocolate + Type: Healing + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoSell: true + NoCart: true + - Id: 22558 + AegisName: Lucky_Bag + Name: Lucky Bag + Type: Usable + Buy: 20 + Weight: 10 + Flags: + Container: true + Script: | + getrandgroupitem(IG_Lucky_Bag,1); + - Id: 22559 + AegisName: Mock_Strawberry + Name: Mock Strawberry + Type: Delayconsume + Buy: 20 + Weight: 100 + Delay: + Duration: 3000 + Status: Reuse_Limit_G + Script: | + percentheal 50,50; itemskill "SM_ENDURE",3; + - Id: 22563 + AegisName: Lucky_Bag_Of_New_Era + Name: Lucky Bag Of New Era + Type: Usable + Script: | + /* TODO */ + - Id: 22567 + AegisName: Squad_Prize + Name: Expedition Award Box + Type: Healing + Buy: 20 + Weight: 100 + Trade: + Override: 100 + NoMail: true + NoAuction: true + - Id: 22568 + AegisName: Nyd_Summon_Scroll + Name: Nidhoggur Summon Scroll + Type: Healing + Buy: 20 + Weight: 100 + Gender: Female + Locations: + Right_Hand: true + - Id: 22569 + AegisName: Gift_New_start + Name: Gift New start + Type: Cash + Buy: 10 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 22571 + AegisName: Easter_Egg + Name: Easter Egg + Type: Delayconsume + Buy: 10 + Weight: 10 + - Id: 22592 + AegisName: Happy_Call_Box + Name: Happy Call Box + Type: Cash + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 22605 + AegisName: Gingerbread2 + Name: Ginger Bread + Type: Usable + Buy: 10 + Weight: 10 + - Id: 22610 + AegisName: New_Beginnings_Box + Name: New Beginnings Box + Type: Usable + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12803,1; getitem 12802,1; getitem 12809,1; + - Id: 22611 + AegisName: Packing_Envelope + Name: Packed Envelope + Type: Delayconsume + Buy: 10 + Weight: 10 + Script: | + /* TODO */ + - Id: 22612 + AegisName: Corrupt_Reagents + Name: Corrupt Reagents + Type: Delayconsume + Buy: 10 + Weight: 50 + Script: | + /* TODO */ + - Id: 22613 + AegisName: Contaminated_Reagents + Name: Contaminated Reagents + Type: Delayconsume + Buy: 10 + Weight: 50 + Script: | + /* TODO */ + - Id: 22614 + AegisName: Premium_Manual + Name: Premium Manual + Type: Usable + Buy: 2 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_EXPBOOST,8640000,50; sc_start SC_ITEMBOOST,8640000,200; + - Id: 22617 + AegisName: Clear_Box_S + Name: Clear Box S + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 22618 + AegisName: Clear_Box_A + Name: Clear Box A + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 22619 + AegisName: Ghost_Summon_Scroll + Name: Ghost Scroll + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /* mercenary_create M_E_DEVILING,1800000; */ + - Id: 22620 + AegisName: Memorial_Box + Name: Box Of Memories + Type: Usable + Flags: + BuyingStore: true + Script: | + /* TODO */ + - Id: 22621 + AegisName: Squid_Bbq + Name: Barbecued Squid + Type: Usable + Buy: 5000 + Weight: 250 + Flags: + BuyingStore: true + Script: | + specialeffect2 EF_EXIT; sc_start SC_JP_EVENT04,300000,25; percentheal 5,5; + - Id: 22623 + AegisName: New_Start_Box + Name: New Start Box + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12803,1; getitem 12802,1; getitem 12809,1; + - Id: 22624 + AegisName: Riesen_Bretzel + Name: Riesen Bretzel + Type: Healing + Script: | + percentheal 100,0; + - Id: 22625 + AegisName: Oktoberfest_Bag + Name: Oktoberfest Bag + Type: Usable + Weight: 100 + Script: | + sc_start SC_OKTOBERFEST,600000,0; + - Id: 22626 + AegisName: January_Gift_Box + Name: January Gift Box + Type: Usable + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 19052,604800; + - Id: 22627 + AegisName: February_Gift_Box + Name: February Gift Box + Type: Usable + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12105,2; + - Id: 22628 + AegisName: Green_Package + Name: Green Package + Type: Cash + Weight: 100 + Script: | + getitem 17162,1; getitem 14534,5; getitem 12323,20; getitem 12324,20; getitem 12325,10; getitem 14533,2; getitem 22629,1; + - Id: 22629 + AegisName: Green_Package40 + Name: Green Package 40 + Type: Cash + Weight: 100 + Script: | + getitem 14289,1; getitem 12215,10; getitem 12216,10; getitem 14534,10; getitem 14533,5; getitem 12766,5; getitem 22630,1; + - Id: 22630 + AegisName: Green_Package80 + Name: Green Package 80 + Type: Cash + Weight: 100 + Script: | + getitem 7621,5; getitem 12209,5; getitem 14527,10; getitem 14533,5; getitem 12766,5; getitem 22631,1; + - Id: 22631 + AegisName: Green_Package99 + Name: Green Package 99 + Type: Cash + Weight: 100 + Script: | + getitem 12213,1; getitem 7676,1; getitem 5883,1; + - Id: 22640 + AegisName: 17173_Green_Package + Name: Green Package + Type: Cash + Weight: 100 + Script: | + getitem 17162,1; getitem 14534,5; getitem 12323,20; getitem 12324,20; getitem 12325,10; getitem 14533,2; getitem 22641,1; + - Id: 22641 + AegisName: 17173_Green_Package40 + Name: Green Package 40 + Type: Cash + Weight: 100 + Script: | + getitem 14289,1; getitem 12215,10; getitem 12216,10; getitem 14534,10; getitem 14533,5; getitem 12766,5; getitem 22642,1; + - Id: 22642 + AegisName: 17173_Green_Package80 + Name: Green Package 80 + Type: Cash + Weight: 100 + Script: | + getitem 7621,5; getitem 12209,5; getitem 14527,10; getitem 14533,5; getitem 12766,5; getitem 22643,1; + - Id: 22643 + AegisName: 17173_Green_Package99 + Name: Green Package 99 + Type: Cash + Weight: 100 + Script: | + getitem 12213,1; getitem 7676,1; getitem 5883,1; + - Id: 22644 + AegisName: S_Green_Package + Name: Green Package + Type: Cash + Weight: 100 + Script: | + getitem 17162,1; getitem 14534,5; getitem 12323,20; getitem 12324,20; getitem 12325,10; getitem 14533,2; getitem 22645,1; + - Id: 22645 + AegisName: S_Green_Package40 + Name: Green Package 40 + Type: Cash + Weight: 100 + Script: | + getitem 14289,1; getitem 12215,10; getitem 12216,10; getitem 14534,10; getitem 14533,5; getitem 12766,5; getitem 22646,1; + - Id: 22646 + AegisName: S_Green_Package80 + Name: Green Package 80 + Type: Cash + Weight: 100 + Script: | + getitem 7621,5; getitem 12209,5; getitem 14527,10; getitem 14533,5; getitem 12766,5; getitem 22647,1; + - Id: 22647 + AegisName: S_Green_Package99 + Name: Green Package 99 + Type: Cash + Weight: 100 + Script: | + getitem 12213,1; getitem 7676,1; getitem 5883,1; + - Id: 22648 + AegisName: Angeling_Package + Name: Angel Ring Package + Type: Usable + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + Script: | + getitem callfunc("F_Rand",12539,6230,6234/*,Angeling Balloon*/),1; + - Id: 22649 + AegisName: Deviling_Package + Name: Devil Ring Package + Type: Usable + Buy: 20 + Weight: 10 + Flags: + BuyingStore: true + Script: | + getitem callfunc("F_Rand",603,6230,6234/*,Angeling Balloon*/),1; + - Id: 22652 + AegisName: Briliant_Hat_Box + Name: Brilliant Hat Box + Type: Usable + Buy: 10 + Weight: 200 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /* TODO */ + - Id: 22653 + AegisName: Wet_Card_Album + Name: Wet Card Album + Type: Usable + Buy: 10000 + Weight: 50 + Script: | + /* TODO */ + - Id: 22657 + AegisName: Honey_Songpyun_ + Name: Honey Songpyun + Type: Healing + Buy: 20 + Weight: 200 + Script: | + percentheal 20,0; + - Id: 22659 + AegisName: Pig_Steamed_Ribs + Name: Pig Steamed Ribs + Type: Healing + Buy: 20 + Weight: 100 + Script: | + bonus_script "{ bonus bAspdRate,5; bonus bUseSPrate,-2; }",180; + - Id: 22658 + AegisName: Cow_Steamed_Ribs + Name: Cow Steamed Ribs + Type: Healing + Buy: 20 + Weight: 100 + Script: | + bonus_script "{ bonus bVariableCastrate,5; bonus bUseSPrate,-3; }",180; + - Id: 22669 + AegisName: HALLOWEEN_G_BOX + Name: Halloween Box + Type: Usable + Weight: 200 + Flags: + Container: true + Script: | + getgroupitem(IG_HALLOWEEN_G_BOX); + - Id: 22670 + AegisName: DARK_INVITATION + Name: Invitation of Darkness + Type: Usable + Buy: 10 + Weight: 10 + Script: | + .@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; } + - Id: 22671 + AegisName: March_Gift_Box + Name: March Gift Box + Type: Usable + Buy: 10 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*2 Lucky Eggs*/ + - Id: 22672 + AegisName: April_Gift_Box + Name: April Gift Box + Type: Usable + Buy: 10 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem callfunc("F_Rand",2566,2856,2857,15023),1209600; + - Id: 22673 + AegisName: May_Gift_Box + Name: May Gift Box + Type: Usable + Buy: 10 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 22777,2; + - Id: 22674 + AegisName: June_Gift_Box + Name: June Gift Box + Type: Usable + Buy: 10 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*1 Potion Box*/ + - Id: 22676 + AegisName: Hangul_Day_Event_Box + Name: Hangul Day Event Box + Type: Usable + Buy: 20 + Script: | + getitem 22675,10; getitem 607,9; + - Id: 22675 + AegisName: Mysterious_Scroll + Name: Mysterious Scroll + Type: Usable + Buy: 20 + Weight: 10 + Script: | + sc_start SC_INTFOOD,3600000,30; + - Id: 22679 + AegisName: Chest_Of_Death + Name: Death's Chest + Type: Usable + EquipLevelMin: 170 + Flags: + BuyingStore: true + Script: | + getitem rand(6814,6819),1; + - Id: 22685 + AegisName: Solo_Christmas_Gift + Name: Single Union Christmas Gift + Type: Usable + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Solo_Christmas_Gift); + - Id: 22686 + AegisName: Solo_Cookie + Name: Single Cookie + Type: Healing + Weight: 50 + Script: | + percentheal 5,5; + - Id: 22687 + AegisName: Pieces_Of_Sentiment + Name: Sentimental Fragment + Type: Delayconsume + Weight: 1 + EquipLevelMin: 100 + Flags: + BuyingStore: true + Delay: + Duration: 5000 + Status: Reuse_Limit_F + Script: | + callfunc("F_Pieces_Of_Sentiment"); + - Id: 22691 + AegisName: Piece_Of_Record1 + Name: Record Fragment + Type: Healing + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + warp "un_bk_q",98,143; + - Id: 22692 + AegisName: Piece_Of_Record2 + Name: Record Fragment + Type: Healing + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + warp "un_bk_q",45,276; + - Id: 22693 + AegisName: Piece_Of_Record3 + Name: Record Fragment + Type: Healing + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + warp "un_bk_q",217,346; + - Id: 22694 + AegisName: Piece_Of_Record4 + Name: Record Fragment + Type: Healing + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + warp "un_bk_q",273,235; + - Id: 22695 + AegisName: Piece_Of_Record5 + Name: Record Fragment + Type: Healing + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + warp "un_bk_q",275,290; + - Id: 22699 + AegisName: Test_Reagent + Name: Test Reagent + Type: Usable + Weight: 30 + Flags: + BuyingStore: true + Script: | + bonus_script "bonus bFlee,100;",5,9; sc_start SC_BLIND,5000,0,10000,0; + - Id: 22700 + AegisName: Jumping_Support_Box + Name: Jumping Support Box + Type: Cash + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*TODO: getitem 12529,1; getitem 12323,200; getitem 12324,50; and 5 boxes that containing quivers + oridecons*/ + - Id: 22702 + AegisName: STR_Soul_Potion + Name: STR Reduction Potion + Type: Delayconsume + Buy: 10 + Script: | + callfunc "F_CashReduceStat",bStr,-1,22702; + - Id: 22703 + AegisName: AGI_Soul_Potion + Name: STR Reduction Potion + Type: Delayconsume + Buy: 10 + Script: | + callfunc "F_CashReduceStat",bAgi,-1,22703; + - Id: 22704 + AegisName: VIT_Soul_Potion + Name: STR Reduction Potion + Type: Delayconsume + Buy: 10 + Script: | + callfunc "F_CashReduceStat",bVit,-1,22704; + - Id: 22705 + AegisName: INT_Soul_Potion + Name: STR Reduction Potion + Type: Delayconsume + Buy: 10 + Script: | + callfunc "F_CashReduceStat",bInt,-1,22705; + - Id: 22706 + AegisName: DEX_Soul_Potion + Name: STR Reduction Potion + Type: Delayconsume + Buy: 10 + Script: | + callfunc "F_CashReduceStat",bDex,-1,22706; + - Id: 22707 + AegisName: LUK_Soul_Potion + Name: STR Reduction Potion + Type: Delayconsume + Buy: 10 + Script: | + callfunc "F_CashReduceStat",bLuk,-1,22707; + - Id: 22708 + AegisName: Pitapat_Box + Name: Thrilling Box + Type: Usable + Buy: 10 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*No clue the random item yet*/ + - Id: 22721 + AegisName: ?_Box + Name: "? Box" + Type: Cash + Buy: 10 + Script: | + /*No clue the random item yet*/ + - Id: 22734 + AegisName: Revolution_Quiz_Box + Name: Revolution Quiz Box + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 6635,2; getitem 6423,1; /*1x Enchanted Letter Introduction*/ + - Id: 22735 + AegisName: Sealed_Moonlight_Flower_Scroll + Name: Sealed Moonlight Flower Scroll + Type: Cash + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*TODO: Confirm the rates*/ getitem callfunc("F_Rand",6228,6232,24150,19934,6635,17474),1; + - Id: 22736 + AegisName: July_Gift_Box + Name: July Gift Box + Type: Usable + Buy: 10 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 20212,1; + - Id: 22737 + AegisName: Bullet_Case_Blood_ + Name: Bloody Cartridge + Type: Usable + Buy: 10 + Weight: 250 + Script: | + getitem 13222,500; + - Id: 22738 + AegisName: Bullet_Case_Silver_ + Name: Silver Cartridge + Type: Usable + Buy: 10 + Weight: 250 + Script: | + getitem 13221,500; + - Id: 22739 + AegisName: Sphere_Case_Wind_ + Name: Lightning Sphere Pack + Type: Usable + Buy: 10 + Weight: 350 + Script: | + getitem 13224,500; + - Id: 22740 + AegisName: Sphere_Case_Darkness_ + Name: Blind Sphere Pack + Type: Usable + Buy: 10 + Weight: 350 + Script: | + getitem 13226,500; + - Id: 22741 + AegisName: Sphere_Case_Poison_ + Name: Poison Sphere Pack + Type: Usable + Buy: 10 + Weight: 350 + Script: | + getitem 13225,500; + - Id: 22742 + AegisName: Sphere_Case_Water_ + Name: Freezing Sphere Pack + Type: Usable + Buy: 10 + Weight: 350 + Script: | + getitem 13227,500; + - Id: 22743 + AegisName: Sphere_Case_Fire_ + Name: Flare Sphere Pack + Type: Usable + Buy: 10 + Weight: 350 + Script: | + getitem 13223,500; + - Id: 22744 + AegisName: Bullet_Case_AP + Name: Armor-Piercing Cartridge + Type: Usable + Buy: 10 + Weight: 250 + Script: | + getitem 13215,500; + - Id: 22745 + AegisName: Bullet_Case_Blaze + Name: Incandescence Shot Cartridge + Type: Usable + Buy: 10 + Weight: 250 + Script: | + getitem 13216,500; + - Id: 22746 + AegisName: Bullet_Case_Fleeze + Name: Glaciation Shot Cartridge + Type: Usable + Buy: 10 + Weight: 250 + Script: | + getitem 13217,500; + - Id: 22747 + AegisName: Bullet_Case_Electric + Name: Dengeki Shot Cartridge + Type: Usable + Buy: 10 + Weight: 250 + Script: | + getitem 13218,500; + - Id: 22748 + AegisName: Bullet_Case_Stone + Name: Hearthstone Shot Cartridge + Type: Usable + Buy: 10 + Weight: 250 + Script: | + getitem 13219,500; + - Id: 22749 + AegisName: Sanctified_Bullet_Case + Name: Purification Shot Cartridge + Type: Usable + Buy: 10 + Weight: 250 + Script: | + getitem 13220,500; + - Id: 22750 + AegisName: Trans_Scroll_Horn_Scaraba + Name: Transformation Scroll(Horn Scaraba) + Type: Usable + Buy: 10 + Weight: 10 + Script: | + transform 2161,1200000,SC_MTF_ASPD2,2,10; + - Id: 22751 + AegisName: Trans_Scroll_Wanderer + Name: Transformation Scroll(Wanderer) + Type: Usable + Buy: 10 + Weight: 10 + Script: | + transform 1208,1200000,SC_MTF_ASPD2,2,10; + - Id: 22752 + AegisName: Trans_Scroll_Gazeti + Name: Transformation Scroll(Gazeti) + Type: Usable + Buy: 10 + Weight: 10 + Script: | + transform 1778,1200000,SC_MTF_RANGEATK2,30; + - Id: 22753 + AegisName: Trans_Scroll_Kobold_Archer + Name: Transformation Scroll(Kobold Archer) + Type: Usable + Buy: 10 + Weight: 10 + Script: | + transform 1282,1200000,SC_MTF_RANGEATK2,30; + - Id: 22754 + AegisName: Trans_Scroll_Necromancer + Name: Transformation Scroll(Necromancer) + Type: Usable + Buy: 10 + Weight: 10 + Script: | + transform 1870,1200000,SC_MTF_RANGEATK2,30; + - Id: 22755 + AegisName: Trans_Scroll_Wind_Ghost + Name: Transformation Scroll(Wind Ghost) + Type: Usable + Buy: 10 + Weight: 10 + Script: | + transform 1263,1200000,SC_MTF_MATK2,50; + - Id: 22756 + AegisName: August_Gift_Box + Name: August Gift Box + Type: Usable + Buy: 10 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12246,1; + - Id: 22757 + AegisName: Collection_Of_Scrolls_Magical_Transformation + Name: Collection Of Scrolls Magical Transformation + Type: Cash + Buy: 10 + Weight: 200 + Script: | + getitem 22755,1; getitem 22754,1; + - Id: 22758 + AegisName: Collection_Of_Scrolls_Shooting_Transformation + Name: Collection Of Scrolls Shooting Transformation + Type: Cash + Buy: 10 + Weight: 200 + Script: | + getitem 22753,1; getitem 22752,1; + - Id: 22759 + AegisName: Collection_Of_Scrolls_Attack_Speed_Transformation + Name: Collection Of Scrolls Attack Speed Transformation + Type: Cash + Buy: 10 + Script: | + getitem 22751,1; getitem 22750,1; + - Id: 22760 + AegisName: Argiope_Transportin + Name: Argiope Transportin + Type: Usable + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*No Info*/ + - Id: 22761 + AegisName: Luciola_Vespa_Transportin + Name: Luciola Vespa Transportin + Type: Usable + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*No Info*/ + - Id: 22762 + AegisName: Centipede_Transportin + Name: Centipede Transportin + Type: Usable + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*No Info*/ + - Id: 22764 + AegisName: Pet_Exchange_Ticket_Box_ + Name: Pet Exchange Ticket Box + Type: Cash + Buy: 10 + Weight: 10 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*TODO: Confirm the allowed pet_id and chance*/ getitem callfunc("F_Rand",6116,6117,6118,6129,6130,6130,6132,6133,6134,6135,6136,6137,6138,6139,6140,6141,6142,6143),1; + - Id: 22770 + AegisName: Shark_Skewer + Name: Shark Skewer + Type: Healing + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + Script: | + /*No Info*/ + - Id: 22771 + AegisName: Bluefin_Tuna_Skewer + Name: Bluefin Tuna Skewer + Type: Healing + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + Script: | + sc_start SC_INCATKRATE,5000,30; + - Id: 22772 + AegisName: Sea_Bream_Skewer + Name: Sea Bream Skewer + Type: Healing + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + Script: | + sc_start SC_INCMATKRATE,5000,30; + - Id: 22773 + AegisName: Piranha_Skewer + Name: Piranha Skewer + Type: Healing + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + Script: | + sc_start SC_ASPDPOTION0,5000,5; + - Id: 22774 + AegisName: Salmon_Skewer + Name: Salmon Skewer + Type: Healing + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + Script: | + sc_start SC_SPEEDUP0,5000,25; + - Id: 22775 + AegisName: Eels_Skewer + Name: Eels Skewer + Type: Healing + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + Script: | + sc_start SC_DEF_RATE,5000,30; + - Id: 22776 + AegisName: Carp_Skewer + Name: Carp Skewer + Type: Healing + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + Script: | + sc_start SC_MDEF_RATE,5000,30; + - Id: 22777 + AegisName: Gift_Buff_Set + Name: Gift Buff Set + Type: Usable + Buy: 10 + Weight: 100 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Gift_Buff_Set); + - Id: 22781 + AegisName: PC_Bang_Normal_Box + Name: PC Bang Normal Box + Type: Usable + Buy: 10 + Weight: 200 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 547,20; /*No Info*/ + - Id: 22782 + AegisName: PC_Bang_Wooden_Box + Name: PC Bang Wooden Box + Type: Usable + Buy: 10 + Weight: 200 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 547,30; /*No Info*/ + - Id: 22783 + AegisName: PC_Bang_Golden_Box + Name: PC Bang Golden Box + Type: Usable + Buy: 10 + Weight: 200 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 547,1; getitem 985,10; /*No Info*/ + - Id: 22784 + AegisName: PC_Bang_Platinum_Box + Name: PC Bang Platinum Box + Type: Usable + Buy: 10 + Weight: 200 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 547,1; getitem 12017,10; getitem 678,12; /*No Info*/ + - Id: 22979 + AegisName: C_Battle_Gum_2 + Name: "[Sale] Battle Manual and Bubble Gum" + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_EXPBOOST,1800000,50; sc_start SC_ITEMBOOST,1800000,100; + - Id: 22808 + AegisName: Special_Gift_Box + Name: Special Gift Box + Type: Usable + Buy: 10 + Weight: 100 + Classes: + All: false + Gender: Female + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 22812 + AegisName: Sealed_Dracula_Scroll + Name: Sealed Dracula Scroll + Type: Usable + Buy: 10 + Weight: 10 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem callfunc("F_Rand",6228,6232,22813,19937,17314, 6635),1; + - Id: 22813 + AegisName: Bearer's_Shadow_Box + Name: Bearer's Shadow Box + Type: Usable + Buy: 10 + Weight: 10 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem callfunc("F_Rand",24180,24181,24182,24183,24184,24185),1; + - Id: 22822 + AegisName: Summer_Vacation_Costumes + Name: Summer Vacation Costumes + Type: Usable + Weight: 100 + EquipLevelMin: 1 + Script: | + sc_start SC_DRESSUP,600000,1; + - Id: 22823 + AegisName: Sealed_Sniper_Scroll + Name: Sealed Sniper Scroll + Type: Usable + Buy: 10 + Weight: 10 + Classes: + All: false + Gender: Female + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*getitem callfunc("F_Rand",4491,6228,6232,24196, Hasty Shadow Armor, 19882, 17474, 6635),1;*/ + - Id: 22826 + AegisName: Enchant_Stone_Box4 + Name: Costume Enchantment Stone Box 4 + Type: Usable + Buy: 10 + Weight: 100 + EquipLevelMin: 1 + Script: | + getitem callfunc("F_Rand",6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6740,6741,6742,6743,6744,6745,6790,6791,6792,6908),1; + - Id: 22827 + AegisName: Shadow_Cube + Name: Shadow Cube + Type: Usable + Buy: 10 + Weight: 10 + Classes: + All: false + Gender: Female + Script: | + /*No Info*/ + - Id: 22828 + AegisName: Sealed_Album_Scroll + Name: Sealed Album Scroll + Type: Usable + Buy: 10 + Weight: 100 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem callfunc("F_Rand",22829,6232,6228,24208,24209,17474/*,Enchanted Letter*/),1; + - Id: 22829 + AegisName: Sealed_Card_Album + Name: Sealed Card Album + Type: Usable + Buy: 10 + Weight: 100 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem callfunc("F_Rand",4488,4497,4486,4480,4485,4539,4487,4494,4538,4489,4490,4482,4503,4483,4491),1; + - Id: 22837 + AegisName: Integer_Time + Name: Integer Time + Type: Usable + Buy: 10 + Weight: 50 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 673,5; + - Id: 22838 + AegisName: Something_Candy_Holder + Name: Something Candy Holders + Type: Usable + Buy: 10 + Weight: 10 + EquipLevelMin: 1 + Script: | + getgroupitem(IG_Something_Candy_Holder); + - Id: 22842 + AegisName: Sealed_Dracula_Scroll_II + Name: Sealed Dracula Scroll II + Type: Usable + Buy: 10 + Weight: 10 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem callfunc("F_Rand",22846,6228,6232,24223,24227,17474/*, Enchant Letter*/),1; + - Id: 22843 + AegisName: Superstar_Snack + Name: Superstar Snack + Type: Usable + Buy: 10 + Weight: 10 + Script: | + bonus_script "{ bonus bAtk2,50; bonus bMatk,50; }",300; + - Id: 22844 + AegisName: Sealed_Dracula_Card_Album + Name: Sealed Dracula Card Album + Type: Usable + Buy: 10 + Weight: 10 + Classes: + All: false + Gender: Female + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*No Info*/ + - Id: 22845 + AegisName: Sealed_Fortune_Egg + Name: Sealed Fortune Egg + Type: Usable + Buy: 10 + Weight: 10 + EquipLevelMin: 1 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem callfunc("F_Rand",4488,4497,4486,4480,4485,4539,4487,4494,4538,4489,4490,4482,4503,22846),1; + - Id: 22846 + AegisName: Sealed_Dracula_Card_ + Name: Sealed Dracula Card + Type: Usable + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus_script "{ bonus2 bSPDrainRate,50,5; }",300; + - Id: 22847 + AegisName: Prontera_Medal + Name: Prontera Medal + Type: Usable + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + Script: | + warp "prontera",159,192; /*No coord info*/ + - Id: 22848 + AegisName: Prison_Key + Name: Prison Key + Type: Usable + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + Script: | + warp "prt_prison",0,0; /*No coord info*/ + - Id: 22849 + AegisName: Prontera_Time_Crystal + Name: Prontera Time Crystal + Type: Usable + Buy: 10 + Weight: 10 + Flags: + BuyingStore: true + Script: | + warp "prt_q",155,27; + - Id: 22850 + AegisName: January_Gift_Box_ + Name: January Gift Box + Type: Usable + Buy: 10 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem 19052,604800; + - Id: 22851 + AegisName: February_Gift_Box_ + Name: February Gift Box + Type: Usable + Buy: 10 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12105,2; + - Id: 22852 + AegisName: March_Gift_Box_ + Name: March Gift Box + Type: Usable + Buy: 10 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*2 Lucky Eggs*/ + - Id: 22853 + AegisName: April_Gift_Box_ + Name: April Gift Box + Type: Usable + Buy: 10 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem callfunc("F_Rand",2566,2856,2857,15023),1209600; + - Id: 22854 + AegisName: May_Gift_Box_ + Name: May Gift Box + Type: Usable + Buy: 10 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 22777,2; + - Id: 22855 + AegisName: June_Gift_Box_ + Name: June Gift Box + Type: Usable + Buy: 10 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*1 Potion Box*/ + - Id: 22856 + AegisName: July_Gift_Box_ + Name: July Gift Box + Type: Usable + Buy: 10 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 20212,1; + - Id: 22857 + AegisName: August_Gift_Box_ + Name: August Gift Box + Type: Usable + Buy: 10 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12246,1; + - Id: 22858 + AegisName: September_Gift_Box + Name: September Gift Box + Type: Usable + Buy: 10 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*2 Lucky Eggs*/ + - Id: 22859 + AegisName: October_Gift_Box + Name: October Gift Box + Type: Usable + Buy: 10 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12529,5; + - Id: 22860 + AegisName: November_Gift_Box + Name: November Gift Box + Type: Usable + Buy: 10 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem callfunc("F_Rand",2566,2856,2857,15023),1209600; + - Id: 22861 + AegisName: December_Gift_Box + Name: December Gift Box + Type: Usable + Buy: 10 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 22869,10; + - Id: 22868 + AegisName: Enchant_Stone_Box5 + Name: Costume Enchantment Stone Box 5 + Type: Usable + Buy: 20 + Weight: 10 + EquipLevelMin: 1 + Script: | + getgroupitem(IG_Enchant_Stone_Box5); + - Id: 22869 + AegisName: Lucky_Roulette_Tickets + Name: Lucky Roulette Ticket + Type: Usable + Buy: 10 + Weight: 100 + EquipLevelMin: 50 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + RouletteBronze++; + - Id: 22873 + AegisName: Sealed_Beelzebub_Scroll_II + Name: Sealed Beelzebub Scroll II + Type: Usable + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem callfunc("F_Rand",22875,6238,6239,6228,6232,24231,24232,17474,6635),1; + - Id: 22874 + AegisName: Sealed_Beelzebub_Card_Album + Name: Sealed Beelzebub Card Album + Type: Usable + Buy: 10 + Weight: 50 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*No Info*/ + - Id: 22876 + AegisName: Old_Money_Pocket + Name: Old Money Pocket + Type: Usable + Script: | + Zeny += rand(500,550); + - Id: 22881 + AegisName: Binding_Rope + Name: Rope Gallows + Type: Usable + Buy: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*Used to catch a Lost Sheep*/ + - Id: 22882 + AegisName: Choco_Tteokguk + Name: Chocolate Rice Cake Soup + Type: Usable + Buy: 10 + Script: | + percentheal 10,10; + - Id: 22883 + AegisName: September_Gift_Box_ + Name: September Gift Box + Type: Usable + Buy: 10 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*2 Lucky Eggs*/ + - Id: 22884 + AegisName: October_Gift_Box_ + Name: October Gift Box + Type: Usable + Buy: 10 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12529,5; + - Id: 22885 + AegisName: November_Gift_Box_ + Name: November Gift Box + Type: Usable + Buy: 10 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + rentitem callfunc("F_Rand",2566,2856,2857,15023),1209600; + - Id: 22886 + AegisName: December_Gift_Box_ + Name: December Gift Box + Type: Usable + Buy: 10 + Weight: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 22869,10; + - Id: 22887 + AegisName: PC-Room_Box + Name: PC-Room Box + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 12531,1; getitem callfunc("F_Rand",6230,6234,22654),1; + - Id: 22888 + AegisName: New_Year's_Scroll + Name: New Year's Scroll + Type: Usable + Buy: 10 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem callfunc("F_Rand",6238,6239,6228,6232,24240,24241,24242,17474),1; + - Id: 22893 + AegisName: New_Year's_Shadow_Cube + Name: New Year's Shadow Cube + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*Get a random Shadow Equip (No info which one)*/ + - Id: 22894 + AegisName: Limited_2015_Neuralizer + Name: (Limited)2015 Neuralizer + Type: Usable + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + callfunc "F_CashReset"; + - Id: 22895 + AegisName: Limited_2015_Status_Initialization_Volume + Name: (Limited)2015 Status Initialization Volume + Type: Usable + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*Works like item 6320, can reset up to 3x within 1 hour*/ + - Id: 22896 + AegisName: Limited_Old_Status_Initialization_Volume + Name: (Limited)Old Status Initialization Volume + Type: Usable + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*Works like item 6320, can reset up to 3x within 1 hour*/ + - Id: 22899 + AegisName: Parchment_City + Name: Parchment City + Type: Usable + Buy: 20 + Script: | + itemskill "AL_INCAGI",1; heal -15,0; + - Id: 22901 + AegisName: Question_Old_Blue_Box + Name: Mysterious Blue Box + Type: Usable + Buy: 20 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + callfunc("F_Mysterious_box"); + - Id: 22902 + AegisName: Sealed_Card_Album_Scroll_II + Name: Sealed Card Album Scroll II + Type: Usable + Buy: 20 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem callfunc("F_Rand",6238,6239,17474,22829,24243,24244,24245),1; + - Id: 22905 + AegisName: Enchant_Stone_Box6 + Name: Costume Enchantment Stone Box 6 + Type: Usable + Buy: 10 + Weight: 10 + EquipLevelMin: 1 + Script: | + getgroupitem(IG_Enchant_Stone_Box6); + - Id: 22953 + AegisName: Enchant_Stone_Box7 + Name: Costume Enchantment Stone Box 7 + Type: Usable + Buy: 10 + Weight: 10 + EquipLevelMin: 1 + Script: | + getgroupitem(IG_Enchant_Stone_Box7); + - Id: 22984 + AegisName: Kahluna_Milk + Name: Kahluna Milk + Type: Healing + Buy: 6 + Weight: 10 + Script: | + sc_start SC_DORAM_BUF_01, 180000, 0; + - Id: 22985 + AegisName: Basil + Name: Basil + Type: Healing + Buy: 10 + Weight: 10 + Script: | + sc_start SC_DORAM_BUF_02, 180000, 0; + - Id: 23001 + AegisName: Enchant_Stone_Box8 + Name: Costume Enchantment Stone Box 8 + Type: Usable + Buy: 10 + Weight: 10 + EquipLevelMin: 1 + Script: | + getgroupitem(IG_Enchant_Stone_Box8); + - Id: 23012 + AegisName: S_Small_Mana_Potion + Name: "[Sale] Small Mana Potion" + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus_script "bonus2 bRegenPercentSP,5,5000;",600,9; /* fix me: unknown flag and specialeffect ; disabled when LK_BERSERK */ + - Id: 23016 + AegisName: Cursed_Fragment + Name: Cursed Fragment + Type: Usable + Buy: 1 + Weight: 1 + Script: | + callfunc("F_Cursed_Fragment"); + - Id: 23038 + AegisName: S_Slim_White_Box + Name: "[Sale] Slim White Potion Box" + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 11573,200; + - Id: 23042 + AegisName: S_Seed_Of_Yggdrasil + Name: "[NotForSale]Yggdrasil Seed" + Type: Healing + Weight: 300 + Delay: + Duration: 3000 + Status: Reuse_Limit_G + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + percentheal 50,50; + - Id: 23043 + AegisName: S_Seed_Of_Yggdrasil_Box + Name: "[Sale] Yggdrasil Seed Box" + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 23042,30; + - Id: 23046 + AegisName: S_Mystic_Powder + Name: "[Sale] Mystic Powder" + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus_script "{ bonus bFlee,20; bonus bLuk,10; }",300,9; /* fix me: unknown flag and specialeffect */ + - Id: 23047 + AegisName: S_Blessing_Tyr + Name: "[Sale] Blessing of Tyr" + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + sc_start SC_FLEEFOOD,300000,30; sc_start SC_HITFOOD,300000,30; sc_start SC_ATKPOTION,300000,20; sc_start SC_MATKPOTION,300000,20; + - Id: 23048 + AegisName: S_Resilience_Potion + Name: "[Sale] Resilience Enhancement Potion" + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus_script "bonus bAddItemHealRate,20;",1800,9; /* fix me: unknown flag and specialeffect */ + - Id: 23058 + AegisName: Enchant_Stone_Box9 + Name: Costume Enchantment Stone Box 9 + Type: Usable + Buy: 10 + Weight: 10 + EquipLevelMin: 1 + Script: | + getgroupitem(IG_Enchant_Stone_Box9); + - Id: 23076 + AegisName: Build_Up_Potion_SS + Name: Build Up Potion SS + Type: Usable + Buy: 10 + Weight: 10 + Script: | + if (strcharinfo(3) == "slabw01") { sc_start SC_EP16_2_BUFF_SS,10000,0; } + - Id: 23077 + AegisName: Build_Up_Potion_SC + Name: Build Up Potion SC + Type: Usable + Buy: 10 + Weight: 10 + Script: | + if (strcharinfo(3) == "slabw01") { sc_start SC_EP16_2_BUFF_SC,10000,0; } + - Id: 23078 + AegisName: Build_Up_Potion_AC + Name: Build Up Potion AC + Type: Usable + Buy: 10 + Weight: 10 + Script: | + if (strcharinfo(3) == "slabw01") { sc_start SC_EP16_2_BUFF_AC,10000,0; } + - Id: 23080 + AegisName: Cursed_Crystal + Name: Cursed Crystal + Type: Usable + Buy: 1 + Weight: 500 + Script: | + callfunc("F_Cursed_Crystal"); + - Id: 23086 + AegisName: Enchant_Stone_Box10 + Name: Costume Enchantment Stone Box 10 + Type: Usable + Buy: 10 + Weight: 10 + EquipLevelMin: 1 + Script: | + getgroupitem(IG_Enchant_Stone_Box10); + - Id: 23087 + AegisName: Small_Leather_Bag + Name: Small Leather Bag + Type: Usable + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getitem 25180,1; getitem 25181,1; getitem 25182,1; getitem 25183,1; getitem 25184,1; getitem 25185,1; + - Id: 23123 + AegisName: Bullet_Case_Flare + Name: Flare Bullet Cartridge + Type: Usable + Buy: 10 + Weight: 250 + Script: | + getitem 13228,500; + - Id: 23124 + AegisName: Bullet_Case_Lighting + Name: Lightning Bullet Cartridge + Type: Usable + Buy: 10 + Weight: 250 + Script: | + getitem 13229,500; + - Id: 23125 + AegisName: Bullet_Case_Ice + Name: Ice Bullet Cartridge + Type: Usable + Buy: 10 + Weight: 250 + Script: | + getitem 13230,500; + - Id: 23126 + AegisName: Bullet_Case_Poison + Name: Poison Bullet Cartridge + Type: Usable + Buy: 10 + Weight: 250 + Script: | + getitem 13231,500; + - Id: 23127 + AegisName: Bullet_Case_Blind + Name: Blind Bullet Cartridge + Type: Usable + Buy: 10 + Weight: 250 + Script: | + getitem 13232,500; + - Id: 23174 + AegisName: Enchant_Stone_Box11 + Name: Costume Enchantment Stone Box 11 + Type: Usable + Buy: 10 + Weight: 10 + EquipLevelMin: 1 + Script: | + getgroupitem(IG_Enchant_Stone_Box11); + - Id: 23177 + AegisName: Kafra_Card_ + Name: Kafra Card + Type: Usable + Buy: 2 + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + callfunc "F_CashStore"; + - Id: 23188 + AegisName: Unprocessed_Parts + Name: Unprocessed Parts + Type: Usable + Buy: 10 + Script: | + pet 1632; + - Id: 23189 + AegisName: Small_Needle_Kit + Name: Small Needle Kit + Type: Usable + Buy: 10 + Script: | + pet 1622; + - Id: 23187 + AegisName: Sap_Liquid + Name: Sap Liquid + Type: Usable + Buy: 10 + Script: | + pet 1180; + - Id: 23191 + AegisName: Varetyr_Spear_Scroll_1_5 + Name: Level 5 Varetyr Spear + Type: Delayconsume + Buy: 10 + Weight: 10 + Script: | + itemskill "SO_VARETYR_SPEAR",5; + - Id: 23192 + AegisName: Diamond_Dust_Scroll_1_5 + Name: Level 5 Diamond Dust + Type: Delayconsume + Buy: 10 + Weight: 10 + Script: | + itemskill "SO_DIAMONDDUST",5; + - Id: 23193 + AegisName: Crimson_Rock_Scroll_1_5 + Name: Level 5 Crimson Rock + Type: Delayconsume + Buy: 10 + Weight: 10 + Script: | + itemskill "WL_CRIMSONROCK",5; + - Id: 23194 + AegisName: Sienna_Execrate_Scroll_1_5 + Name: Level 5 Sienna Execrate + Type: Delayconsume + Buy: 10 + Weight: 10 + Script: | + itemskill "WL_SIENNAEXECRATE",5,true; + - Id: 23196 + AegisName: Agust_Lucky_Scroll + Name: Shining Blue Lucky Egg + Type: Cash + Buy: 10 + Weight: 10 + EquipLevelMin: 1 + Flags: + Container: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + getgroupitem(IG_Agust_Lucky_Scroll); + - Id: 23228 + AegisName: Hazy_Mooncake + Name: Hazy Mooncake + Type: Healing + Buy: 768 + Weight: 10 + Flags: + BuyingStore: true + Script: | + /* unknown */ + - Id: 23256 + AegisName: Elixir_Bandages + Name: Elixir Bandages + Type: Usable + Buy: 10 + Script: | + pet 1041; + - Id: 23277 + AegisName: Mado_Box + Name: Emergency Magic Gear + Type: Usable + Buy: 10000 + Weight: 3000 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + EquipLevelMin: 100 + Delay: + Duration: 180000 + Script: | + setmadogear 1; + - Id: 23280 + AegisName: N_Fly_Wing_ + Name: Novice Fly Wing + Type: Delayconsume + Buy: 10 + EquipLevelMin: 1 + EquipLevelMax: 98 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + itemskill "AL_TELEPORT",1; + - Id: 23288 + AegisName: Compressed_Wing_Of_Fly + Name: Compressed Fly Wing + Type: Delayconsume + Buy: 1000 + Weight: 10 + Script: | + itemskill "AL_TELEPORT",1; + - Id: 23299 + AegisName: Enchant_Stone_Box12 + Name: Costume Enchantment Stone Box 12 + Type: Usable + Buy: 10 + Weight: 10 + EquipLevelMin: 1 + Script: | + getgroupitem(IG_Enchant_Stone_Box12); + - Id: 23307 + AegisName: S_Shining_Def_Scroll + Name: "[Sale] Shining Defense Scroll" + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + bonus_script "{ bonus bDef,500; bonus bMdef,200; }",600; /* fix me: unknown flag and specialeffect */ + - Id: 23340 + AegisName: S_Megaphone + Name: "[Sale] Megaphone" + Type: Usable + Weight: 10 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + input .@megaphone$; announce strcharinfo(0) + ": " + .@megaphone$,bc_all,0xFF0000; + - Id: 23524 + AegisName: Enchant_Stone_Box13 + Name: Costume Enchantment Stone Box 13 + Type: Usable + Buy: 10 + Weight: 10 + EquipLevelMin: 1 + Script: | + getgroupitem(IG_Enchant_Stone_Box13); + - Id: 23629 + AegisName: Enchant_Stone_Box14 + Name: Costume Enchantment Stone Box 14 + Type: Usable + Buy: 10 + Weight: 10 + EquipLevelMin: 1 + Script: | + getgroupitem(IG_Enchant_Stone_Box14); + - Id: 23682 + AegisName: Enchant_Stone_Box15 + Name: Costume Enchantment Stone Box 15 + Type: Usable + Buy: 10 + Weight: 10 + EquipLevelMin: 1 + Script: | + getgroupitem(IG_Enchant_Stone_Box15); + - Id: 100065 + AegisName: WL_MB_SG + Name: Spell Book (Storm Gust) + Type: Delayconsume + Flags: + NoConsume: true + Script: | + itemskill "WL_READING_SB_READING",1; + - Id: 100066 + AegisName: WL_MB_LOV + Name: Spell Book (Lord of Vermilion) + Type: Delayconsume + Flags: + NoConsume: true + Script: | + itemskill "WL_READING_SB_READING",2; + - Id: 100067 + AegisName: WL_MB_MS + Name: Spell Book (Meteor Storm) + Type: Delayconsume + Flags: + NoConsume: true + Script: | + itemskill "WL_READING_SB_READING",3; + - Id: 100068 + AegisName: WL_MB_DL + Name: Spell Book (Drain Life) + Type: Delayconsume + Flags: + NoConsume: true + Script: | + itemskill "WL_READING_SB_READING",4; + - Id: 100069 + AegisName: WL_MB_JF + Name: Spell Book (Jack Frost) + Type: Delayconsume + Flags: + NoConsume: true + Script: | + itemskill "WL_READING_SB_READING",5; + - Id: 100070 + AegisName: WL_MB_ES + Name: Spell Book (Earth Strain) + Type: Delayconsume + Flags: + NoConsume: true + Script: | + itemskill "WL_READING_SB_READING",6; + - Id: 100071 + AegisName: WL_MB_CR + Name: Spell Book (Crimson Rock) + Type: Delayconsume + Flags: + NoConsume: true + Script: | + itemskill "WL_READING_SB_READING",7; + - Id: 100072 + AegisName: WL_MB_CL + Name: Spell Book (Chain Lightning) + Type: Delayconsume + Flags: + NoConsume: true + Script: | + itemskill "WL_READING_SB_READING",8; + - Id: 100073 + AegisName: WL_MB_CM + Name: Spell Book (Comet) + Type: Delayconsume + Flags: + NoConsume: true + Script: | + itemskill "WL_READING_SB_READING",9; + - Id: 100074 + AegisName: WL_MB_TV + Name: Spell Book (Tetra Vortex) + Type: Delayconsume + Flags: + NoConsume: true + Script: | + itemskill "WL_READING_SB_READING",10; + - Id: 100128 + AegisName: Noblesses_Refine_Ticket + Name: Noblesses Refine Ticket + Type: Delayconsume + Buy: 20 + EquipLevelMin: 100 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*upgradeui 100128;*/ + - Id: 100129 + AegisName: Imperial_Refine_Ticket + Name: Imperial Refine Ticket + Type: Delayconsume + Buy: 20 + EquipLevelMin: 125 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*upgradeui 100129;*/ + - Id: 100130 + AegisName: Grace_Refine_Ticket + Name: Grace Refine Ticket + Type: Delayconsume + Buy: 20 + EquipLevelMin: 150 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*upgradeui 100130;*/ + - Id: 100131 + AegisName: Imperial_P_Mo_Garment + Name: Imperial Physical Modification Permit (Garment) + Type: Delayconsume + Buy: 20 + EquipLevelMin: 125 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*upgradeui 100131;*/ + - Id: 100132 + AegisName: Imperial_M_Mo_Garment + Name: Imperial Magical Modification Permit (Garment) + Type: Delayconsume + Buy: 20 + EquipLevelMin: 125 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*upgradeui 100132;*/ + - Id: 100133 + AegisName: Grace_P_Mo_Garment + Name: Grace Physical Modification Permit (Garment) + Type: Delayconsume + Buy: 20 + EquipLevelMin: 150 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*upgradeui 100133;*/ + - Id: 100134 + AegisName: Grace_M_Mo_Garment + Name: Grace Magical Modification Permit (Garment) + Type: Delayconsume + Buy: 20 + EquipLevelMin: 150 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*upgradeui 100134;*/ + - Id: 100135 + AegisName: Imperial_P_Mo_Armor + Name: Imperial Physical Modification Permit (Armor) + Type: Delayconsume + Buy: 20 + EquipLevelMin: 125 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*upgradeui 100135;*/ + - Id: 100136 + AegisName: Imperial_M_Mo_Armor + Name: Imperial Magical Modification Permit (Armor) + Type: Delayconsume + Buy: 20 + EquipLevelMin: 125 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*upgradeui 100136;*/ + - Id: 100137 + AegisName: Grace_P_Mo_Armor + Name: Grace Physical Modification Permit (Armor) + Type: Delayconsume + Buy: 20 + EquipLevelMin: 150 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*upgradeui 100137;*/ + - Id: 100138 + AegisName: Grace_M_Mo_Armor + Name: Grace Magical Modification Permit (Armor) + Type: Delayconsume + Buy: 20 + EquipLevelMin: 150 + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + /*upgradeui 100138;*/ + - Id: 100231 + AegisName: Ref_T_Potion + Name: Golden X + Type: Healing + Buy: 10 + Weight: 30 + Script: | + sc_start SC_REF_T_POTION,30000,0; + - Id: 100232 + AegisName: Add_Atk_Potion + Name: Red Herb Activator + Type: Healing + Buy: 10 + Weight: 30 + Script: | + sc_start SC_ADD_ATK_DAMAGE,500000,15; + - Id: 100233 + AegisName: Add_Matk_Potion + Name: Blue Herb Activator + Type: Healing + Buy: 10 + Weight: 30 + Script: | + sc_start SC_ADD_MATK_DAMAGE,500000,15; + - Id: 100402 + AegisName: Thousand_Sun_Cube + Name: Thousand Sun Modification Cube + Type: Delayconsume + Weight: 10 + Script: | + /*synthesisui 100402;*/ + - Id: 100403 + AegisName: Spirit_Pendulum_Cube + Name: Spirit Pendulum Modification Cube + Type: Delayconsume + Weight: 10 + Script: | + /*synthesisui 100403;*/ + - Id: 100404 + AegisName: Crimson_Rose_Cube + Name: Crimson Rose Modification Cube + Type: Delayconsume + Weight: 10 + Script: | + /*synthesisui 100404;*/ + - Id: 100405 + AegisName: Master_Soul_Rifle_Cube + Name: Master Soul Rifle Modification Cube + Type: Delayconsume + Weight: 10 + Script: | + /*synthesisui 100405;*/ + - Id: 100406 + AegisName: Golden_Lord_Launcher_Cube + Name: Golden Lord Launcher Modification Cube + Type: Delayconsume + Weight: 10 + Script: | + /*synthesisui 100406;*/ + - Id: 100407 + AegisName: The_Black_Cube + Name: The Black Modification Cube + Type: Delayconsume + Weight: 10 + Script: | + /*synthesisui 100407;*/ + - Id: 100408 + AegisName: Demon_Slayer_Shot_Cube + Name: Demon Slayer Shot Modification Cube + Type: Delayconsume + Weight: 10 + Script: | + /*synthesisui 100408;*/ + - Id: 1100003 + AegisName: Concentrated_R_P + Name: Concentrated Red Potion + Type: Healing + Buy: 10 + Weight: 2 + EquipLevelMin: 120 + Script: | + itemheal rand(655,675),0; + - Id: 1100004 + AegisName: Concentrated_B_P + Name: Concentrated Blue Potion + Type: Healing + Buy: 10 + Weight: 2 + EquipLevelMin: 120 + Script: | + itemheal 0,rand(340,360); + - Id: 1100005 + AegisName: Concentrated_G_P + Name: Concentrated Gold Potion + Type: Healing + Buy: 10 + Weight: 2 + EquipLevelMin: 180 + Script: | + itemheal rand(2730,2750),0; diff --git a/db/re/item_delay.txt b/db/re/item_delay.txt deleted file mode 100644 index 5b5afb6ca3..0000000000 --- a/db/re/item_delay.txt +++ /dev/null @@ -1,108 +0,0 @@ -// Item Delay Database -// -// Structure of Database: -// ,{,} -// -// -// 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,SC_REUSE_LIMIT_MTF // Transformation Scroll(Deviruchi) -// 12659,10000,SC_REUSE_LIMIT_MTF // 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.hpp as MAX_ITEMDELAYS. - -// SC_REUSE_REFRESH -12725,120000,SC_REUSE_REFRESH //Runstone_Nosiege - -// SC_REUSE_LIMIT_A -14538,300000,SC_REUSE_LIMIT_A //Glass_Of_Illusion - -// SC_REUSE_LIMIT_B -12596,180000,SC_REUSE_LIMIT_B //Magic_Candy -14586,180000,SC_REUSE_LIMIT_B //Spark_Candy - -// SC_REUSE_LIMIT_C -12208,60000,SC_REUSE_LIMIT_C //Battle_Manual - -// SC_REUSE_LIMIT_D -12210,60000,SC_REUSE_LIMIT_D //Bubble_Gum - -// SC_REUSE_LIMIT_E -11522,1000,SC_REUSE_LIMIT_E //Red_Raffle_Sap -11523,2000,SC_REUSE_LIMIT_E //Yellow_Raffle_Sap -11524,3000,SC_REUSE_LIMIT_E //White_Raffle_Sap - -// SC_REUSE_LIMIT_F -607,5000,SC_REUSE_LIMIT_F //Yggdrasil_Berry - -// SC_REUSE_LIMIT_G -608,3000,SC_REUSE_LIMIT_G //Yggdrasil_Seed -22559,3000,SC_REUSE_LIMIT_G //Mock_Strawberry -23042,3000,SC_REUSE_LIMIT_G //S_Seed_Of_Yggdrasil - -// SC_REUSE_LIMIT_H -11525,5000,SC_REUSE_LIMIT_H //Mora_Hip_Tea - -// SC_REUSE_LIMIT_MTF -12658,10000,SC_REUSE_LIMIT_MTF //Transformation Scroll(Deviruchi) -12659,10000,SC_REUSE_LIMIT_MTF //Transformation Scroll(Raydric) -12660,10000,SC_REUSE_LIMIT_MTF //Transformation Scroll(Mavka) -12661,10000,SC_REUSE_LIMIT_MTF //Transformation Scroll(Marduk) -12662,10000,SC_REUSE_LIMIT_MTF //Transformation Scroll(Banshee) -12663,10000,SC_REUSE_LIMIT_MTF //Transformation Scroll(Poring) -12664,10000,SC_REUSE_LIMIT_MTF //Transformation Scroll(Golem) - -// SC_REUSE_LIMIT_ASPD_POTION -12684,900000,SC_REUSE_LIMIT_ASPD_POTION //ASPD_Potion - -// SC_REUSE_MILLENNIUMSHIELD -12727,60000,SC_REUSE_MILLENNIUMSHIELD //Runstone_Verkana - -// SC_REUSE_CRUSHSTRIKE -12726,30000,SC_REUSE_CRUSHSTRIKE //Runstone_Rhydo - -// SC_REUSE_STORMBLAST -12732,1000,SC_REUSE_STORMBLAST //Runstone_Pertz - -// SC_ALL_RIDING_REUSE_LIMIT -12622,3000,SC_ALL_RIDING_REUSE_LIMIT //Boarding_Halter - -// SC_REUSE_LIMIT_ECL -12812,5000,SC_REUSE_LIMIT_ECL //Snow_Flip -12813,5000,SC_REUSE_LIMIT_ECL //Peony_Mommy -12814,5000,SC_REUSE_LIMIT_ECL //Slapping_Herb -12815,5000,SC_REUSE_LIMIT_ECL //Yggdrasil_Dust - -// SC_REUSE_LIMIT_RECALL -12968,300000,SC_REUSE_LIMIT_RECALL //Emergency_Scroll1 -12969,300000,SC_REUSE_LIMIT_RECALL //Emergency_Scroll2 -12970,300000,SC_REUSE_LIMIT_RECALL //Emergency_Scroll3 - -// Misc -11621,1000 //Red_Syrup -11622,1000 //Yellow_Syrup -11623,1000 //White_Syrup -11624,10000 //Blue_Syrup -12135,3000 //Green_Ale -//12202,60000 //Str_Dish10_ -//12203,60000 //Agi_Dish10_ -//12204,60000 //Int_Dish10_ -//12205,60000 //Dex_Dish10_ -//12206,60000 //Luk_Dish10_ -//12207,60000 //Vit_Dish10_ -22508,1200000 //Para_Team_Mark_ - -22540,5000,SC_REUSE_LIMIT_LUXANIMA //Runstone_Lux - -// Bed of Honor -22687,5000,SC_REUSE_LIMIT_F // Pieces_Of_Sentiment - -23277,180000 //Mado_Box - diff --git a/db/re/item_flag.txt b/db/re/item_flag.txt deleted file mode 100644 index ab88902b46..0000000000 --- a/db/re/item_flag.txt +++ /dev/null @@ -1,1797 +0,0 @@ -// Flagged Items -// , -// -// : -// 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! -// 32 - Item will not be removed on consumption. Also supports 'itemskill' -// 64 - Item will be displayed with a client side defined drop -// 128 - Item will be displayed with a white pillar drop effect -// 256 - Item will be displayed with a blue pillar drop effect -// 512 - Item will be displayed with a yellow pillar drop effect -// 1024 - Item will be displayed with a purple pillar drop effect -// 2048 - Item will be displayed with a orange pillar drop effect -// 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 -604,1 //Branch_Of_Dead_Tree -12103,1 //Bloody_Dead_Branch -12109,1 //Poring_Box -12024,1 //Red_Pouch_Of_Surprise - -// Item group container -603,2 //Old_Blue_Box -616,2 //Old_Card_Album -617,2 //Old_Violet_Box -644,2 //Gift_Box -664,2 //Gift_Box_1 -665,2 //Gift_Box_2 -666,2 //Gift_Box_3 -667,2 //Gift_Box_4 -12023,2 //Giftbox_China -12025,2 //Egg_Boy -12026,2 //Egg_Girl -12038,2 //Lotto_Box04 -12104,2 //Random_Quiver -12105,2 //Set_Of_Taiming_Item -12106,2 //Accessory_Box -12107,2 //Wrapped_Mask -12108,2 //Bundle_Of_Magic_Scroll -12110,2 //First_Aid_Kit -12111,2 //Food_Package -12130,2 //Cookie_Bag -12152,2 //Special_Box -12186,2 //Red_Box -12187,2 //Green_Box -12189,2 //Red_Box_ -12194,2 //Hometown_Gift -12240,2 //Old_Yellow_Box -12244,2 //Old_Gift_Box -12246,2 //Magic_Card_Album -12248,2 //Masquerade_Ball_Box -12281,2 //Tresure_Box_WoE -12286,2 //Masquerade_Ball_Box2 -12334,2 //Cherish_Box -12339,2 //Cherish_Box_Ori -12355,2 //Xmas_Gift -12356,2 //Louise_Costume_Box -12391,2 //Lucky_Egg_C -12403,2 //Lucky_Egg_C2 -12416,2 //Lucky_Egg_C3 -12473,2 //RWC_Parti_Box -12474,2 //RWC_Final_Comp_Box -12477,2 //Gift_Bundle -12479,2 //Caracas_Ring_Box -12492,2 //Crumpled_Paper -12493,2 //Lucky_Egg_C4 -12537,2 //Solo_Gift_Basket -12538,2 //Couple_Event_Basket -12540,2 //GM_Warp_Box -12541,2 //Fortune_Cookie1 -12542,2 //Fortune_Cookie2 -12543,2 //Fortune_Cookie3 -12545,2 //Lucky_Egg_C5 -12573,2 //Fruit_Basket -12577,2 //Lucky_Egg_C6 -12595,2 //Lucky_Egg_C7 -12612,2 //Old_Coin_Pocket -12613,2 //High_Coin_Pocket -12614,2 //Mid_Coin_Pocket -12615,2 //Low_Coin_Pocket -12616,2 //Sgrade_Pocket -12617,2 //Agrade_Pocket -12618,2 //Bgrade_Pocket -12619,2 //Cgrade_Pocket -12620,2 //Dgrade_Pocket -12621,2 //Egrade_Pocket -12623,2 //High_Weapon_Box -12641,2 //Lucky_Egg_C8 -12654,2 //Lucky_Egg_C9 -12673,2 //Lucky_Egg_C10 -12675,2 //Sg_Weapon_Supply_Box -12690,2 //Old_C_Album_Helm -12691,2 //Old_C_Album_Armor -12692,2 //Old_C_Album_Shield -12693,2 //Old_C_Album_Garment -12694,2 //Old_C_Album_Shoes -12695,2 //Old_C_Album_Acc -12698,2 //Old_C_Album_Weapon -12702,2 //Old_Bleu_Box -12703,2 //Holy_Egg_2 -12714,2 //Easter_Scroll -12756,2 //New_Gift_Envelope -12767,2 //Passion_FB_Hat_Box -12768,2 //Cool_FB_Hat_Box -12769,2 //Victory_FB_Hat_Box -12770,2 //Glory_FB_Hat_Box -12771,2 //Passion_Hat_Box2 -12772,2 //Cool_Hat_Box2 -12773,2 //Victory_Hat_Box2 -12826,2 //Wind_Type_Scroll -12827,2 //Water_Type_Scroll -12828,2 //Fire_Type_Scroll -12829,2 //Earth_Type_Scroll -12850,2 //Heaven_Scroll -12851,2 //Vocation_Scroll -12852,2 //Wisdom_Scroll -12853,2 //Patron_Scroll -12915,2 //Aspersio_5_Scroll_Box -12923,2 //Pet_Egg_Scroll_Box1 -12924,2 //Pet_Egg_Scroll_Box2 -12925,2 //Pet_Egg_Scroll1 -12926,2 //Pet_Egg_Scroll2 -12929,2 //Pet_Egg_Scroll_Box3 -12930,2 //Pet_Egg_Scroll_Box4 -12931,2 //Pet_Egg_Scroll_Box5 -12932,2 //Pet_Egg_Scroll3 -12933,2 //Pet_Egg_Scroll4 -12934,2 //Pet_Egg_Scroll5 -12935,2 //Infiltrator_Box -12936,2 //Muramasa_Box -12937,2 //Excalibur_Box -12938,2 //Combat_Knife_Box -12939,2 //Counter_Dagger_Box -12940,2 //Kaiser_Knuckle_Box -12941,2 //Pole_Axe_Box -12942,2 //Mighty_Staff_Box -12943,2 //Right_Epsilon_Box -12944,2 //Balistar_Box -12945,2 //Diary_Of_Great_Sage_Box -12946,2 //Asura_Box -12947,2 //Apple_Of_Archer_Box -12948,2 //Bunny_Band_Box -12949,2 //Sahkkat_Box -12950,2 //Lord_Circlet_Box -12951,2 //Elven_Ears_Box -12952,2 //Steel_Flower_Box -12953,2 //Critical_Ring_Box -12954,2 //Earring_Box -12955,2 //Ring_Box -12956,2 //Necklace_Box -12957,2 //Glove_Box -12958,2 //Brooch_Box -12959,2 //Rosary_Box -12960,2 //Safety_Ring_Box -12961,2 //Vesper_Core01_Box -12962,2 //Vesper_Core02_Box -12963,2 //Vesper_Core03_Box -12964,2 //Vesper_Core04_Box -12983,2 //Pet_Egg_Scroll_Box6 -12984,2 //Pet_Egg_Scroll_Box7 -12985,2 //Pet_Egg_Scroll_Box8 -12986,2 //Pet_Egg_Scroll_Box9 -12987,2 //Pet_Egg_Scroll_Box10 -12988,2 //Pet_Egg_Scroll_Box11 -12989,2 //Pet_Egg_Scroll6 -12990,2 //Pet_Egg_Scroll7 -12991,2 //Pet_Egg_Scroll8 -12992,2 //Pet_Egg_Scroll9 -12993,2 //Pet_Egg_Scroll10 -12994,2 //Pet_Egg_Scroll11 -13543,2 //CP_Helm_Scroll_Box -13544,2 //CP_Shield_Scroll_Box -13545,2 //CP_Armor_Scroll_Box -13546,2 //CP_Weapon_Scroll_Box -13547,2 //Repair_Scroll_Box -13617,2 //Super_Pet_Egg1 -13618,2 //Super_Pet_Egg2 -13619,2 //Super_Pet_Egg3 -13620,2 //Super_Pet_Egg4 -13630,2 //Super_Card_Pet_Egg1 -13631,2 //Super_Card_Pet_Egg2 -13632,2 //Super_Card_Pet_Egg3 -13633,2 //Super_Card_Pet_Egg4 -13634,2 //Vigorgra_Package1 -13635,2 //Vigorgra_Package2 -13636,2 //Vigorgra_Package3 -13637,2 //Vigorgra_Package4 -13638,2 //Vigorgra_Package5 -13639,2 //Vigorgra_Package6 -13640,2 //Vigorgra_Package7 -13641,2 //Vigorgra_Package8 -13642,2 //Vigorgra_Package9 -13643,2 //Vigorgra_Package10 -13644,2 //Vigorgra_Package11 -13645,2 //Vigorgra_Package12 -13701,2 //Pet_Egg_Scroll12 -13702,2 //Pet_Egg_Scroll13 -13703,2 //Pet_Egg_Scroll14 -13704,2 //Super_Pet_Egg5 -13705,2 //Super_Pet_Egg6 -13706,2 //Super_Pet_Egg7 -13707,2 //Super_Pet_Egg8 -13708,2 //Pet_Egg_Scroll_E -13725,2 //Ramen_Hat_Box -13773,2 //Fire_Brand_Box -13845,2 //Mysterious_Travel_Sack1 -13846,2 //Mysterious_Travel_Sack2 -13847,2 //Mysterious_Travel_Sack3 -13848,2 //Mysterious_Travel_Sack4 -13871,2 //Magician_Card_Box -13872,2 //Acolyte_Card_Box -13873,2 //Archer_Card_Box -13874,2 //Swordman_Card_Box -13875,2 //Thief_Card_Box -13876,2 //Merchant_Card_Box -13905,2 //Hard_Core_Set_Box -13906,2 //Kitty_Set_Box -13907,2 //Soft_Core_Set_Box -13908,2 //Deviruchi_Set_Box -13909,2 //MVP_Hunt_Box -13910,2 //Brewing_Box -13911,2 //Christmas_Pet_Scroll -13925,2 //Lucky_Scroll08 -13945,2 //Br_SwordPackage -13946,2 //Br_MagePackage -13947,2 //Br_AcolPackage -13948,2 //Br_ArcherPackage -13949,2 //Br_MerPackage -13950,2 //Br_ThiefPackage -13953,2 //All_In_One_Ring_Box -13989,2 //Acidbomb_10_Box -14001,2 //Basic_Siege_Supply_Box -14002,2 //Adv_Siege_Supply_Box -14003,2 //Elite_Siege_Supply_Box -14229,2 //Sakura_Scroll -14242,2 //Beholder_Ring_Box -14243,2 //Hallow_Ring_Box -14244,2 //Clamorous_Ring_Box -14245,2 //Chemical_Ring_Box -14246,2 //Insecticide_Ring_Box -14247,2 //Fisher_Ring_Box -14248,2 //Decussate_Ring_Box -14249,2 //Bloody_Ring_Box -14250,2 //Satanic_Ring_Box -14251,2 //Dragoon_Ring_Box -14296,2 //Angel_Scroll -14297,2 //Devil_Scroll -14298,2 //Surprise_Scroll -14306,2 //RWC_Special_Scroll -14307,2 //RWC_Limited_Scroll -14316,2 //July7_Scroll -14317,2 //Bacsojin_Scroll -14345,2 //Animal_Scroll -14363,2 //Heart_Scroll -14408,2 //New_Year_Scroll -14466,2 //Valentine_Pledge_Box -14469,2 //Ox_Tail_Scroll -14596,2 //Pierre_Treasurebox -14613,2 //RWC_Scroll_2012 -14624,2 //Blue_Scroll -14626,2 //Indigo_Scroll -14643,2 //Violet_Scroll -14664,2 //Bi_Hwang_Scroll -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 -14735,2 //Shapeshifter_Costume -14741,2 //Midgard_Celebration_Lucky_Egg -14753,2 //Hero_Midgard_Egg -14805,2 //Almighty_Lucky_Egg -16245,2 //Tw_April_Scroll -16257,2 //Buddah_Scroll -16304,2 //Evil_Incarnation -16371,2 //Tw_Aug_Scroll -16372,2 //F_Clover_Box_Mouth -16374,2 //Mouth_Bubble_Gum_Box -16385,2 //F_Clover_Box_Mouth2 -16386,2 //F_Clover_Box_Mouth4 -16389,2 //BGum_Box_In_Mouth2 -16390,2 //BGum_Box_In_Mouth4 -16409,2 //Tw_Sep_Scroll -16446,2 //Tw_October_Scroll -16456,2 //My_Scroll1 -16457,2 //Tw_Nov_Scroll -16466,2 //My_Scroll2 -16542,2 //Xmas_Bless -16555,2 //Pr_Reset_Stone_Box -16556,2 //FPr_Reset_Stone_Box -16562,2 //Majestic_Devil_Scroll -16576,2 //Illusion_Nothing -16638,2 //Life_Ribbon_Box -16639,2 //Life_Ribbon_Box2 -16640,2 //Life_Ribbon_Box3 -16652,2 //Flame_Light -16666,2 //Magic_Candy_Box10 -16673,2 //Libra_Scroll -16675,2 //Splash_Scroll -16681,2 //BR_Independence_Scroll -16682,2 //Boarding_Halter_Box -16687,2 //RWC2010_SuitcaseA -16688,2 //RWC2010_SuitcaseB -16741,2 //Hairtail_Box1 -16742,2 //Hairtail_Box2 -16743,2 //Spearfish_Box1 -16744,2 //Spearfish_Box2 -16745,2 //Saurel_Box1 -16746,2 //Saurel_Box2 -16747,2 //Tuna_Box1 -16748,2 //Tuna_Box2 -16749,2 //Malang_Crab_Box1 -16750,2 //Malang_Crab_Box2 -16751,2 //Brindle_Eel_Box1 -16752,2 //Brindle_Eel_Box2 -16757,2 //Hallo_Scroll -16760,2 //Umbala_Spirit_Box2 -16761,2 //F_Umbala_Spirit_Box2 -16763,2 //Ptotection_Seagod_Box2 -16764,2 //Ptotection_Seagod_Box3 -16765,2 //Octo_Hstick_Box -16766,2 //Octo_Hstick_Box2 -16767,2 //Octo_Hstick_Box3 -16770,2 //Silvervine_Fruit_Box10 -16771,2 //Silvervine_Fruit_Box40 -16774,2 //Asgard_Scroll -16775,2 //Sagittarius_Scroll -16826,2 //Sagittarius_Scr_Box -16972,2 //Weather_Report_Box -16974,2 //Comin_Actor_Box -16976,2 //Hen_Set_Box -16979,2 //Silvervine_Fruit_Box4 -16990,2 //Sagittar_Diadem_Scroll -16991,2 //Sagittar_Di_Scroll_Box -16996,2 //Capri_Crown_Scroll -16997,2 //Capri_Crown_Scroll_Box -17011,2 //Capricon_Di_Scroll -17012,2 //Capricon_Di_Scroll_Box -17013,2 //Malang_Woe_Encard_Box -17016,2 //Aquarius_Diadem_Scroll -17017,2 //Aquarius_Di_Scroll_Box -17020,2 //Tw_Nov_Scroll2 -17021,2 //Summer_Scroll3 -17022,2 //Super_Pet_Egg1_2 -17023,2 //Super_Pet_Egg4_2 -17024,2 //Lovely_Aquarius_Scroll -17025,2 //Lovely_Aquarius_Box -17026,2 //Boitata_Scroll -17028,2 //Pisces_Diadem_Scroll -17029,2 //Pisces_Diadem_Box -17035,2 //Energetic_Pisces_Scroll -17036,2 //Energetic_Pisces_Box -17050,2 //Aries_Scroll -17051,2 //Aries_Scroll_Box -17062,2 //Taurus_Diadem_Scroll -17063,2 //Taurus_Di_Scroll_Box -17077,2 //Taurus_Crown_Scroll -17078,2 //Taurus_Crown_Scroll_Box -17082,2 //Gemi_Diadem_Scroll -17083,2 //Gemi_Diadem_Scroll_Box -17107,2 //Gemi_Crown_Scroll -17108,2 //Gemi_Crown_Scroll_Box -17138,2 //Ms_Cancer_Scroll -17139,2 //RWC_Super_Scroll -17140,2 //Leo_Scroll -17141,2 //Ms_Virgo_Scroll -17143,2 //Ms_Scorpio_Scroll -17156,2 //TCG_Card_Scroll -17165,2 //Challenge_Kit -17204,2 // Shining_Egg -17209,2 //Tw_Rainbow_Scroll -17210,2 //Tw_Red_Scroll -17211,2 //Tw_Orange_Scroll -17212,2 //Tw_Yellow_Scroll -17233,2 //Scroll_Of_Death -17234,2 //Scroll_Of_Life -17235,2 //Scroll_Of_Magic -17236,2 //Scroll_Of_Thews -17237,2 //Scroll_Of_Darkness -17238,2 //Scroll_Of_Holiness -17239,2 //Horned_Scroll -17240,2 //Mercury_Scroll -17251,2 //C_Wing_Of_Fly_3Day_Box -17252,2 //RWC_2012_Set_Box -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 -17337,2 //Holy_Spirit_Egg -17431,2 //Miracle_Lucky_Egg -17435,2 //Legend_Hero_Lucky_Egg -17447,2 //Blessing_Midgard_Lucky_Egg -17461,2 //Frozen_Egg_Costume -17464,2 //Winter_Midgard_Egg -17470,2 //Headgear_Costume_Scroll -17471,2 //Spring_Festival_Lucky_Egg -17479,2 //Midgard_Festival_Egg -17481,2 //Flower_Blossom_Scroll -17482,2 //Solaris_Festival_Scroll -17490,2 //Time_Travel_Lucky_Egg -17493,2 //Burning_Feather_Costume_Scroll -17494,2 //Rise_Midgard_Lucky_Egg -17497,2 //Seaside_Costume_Scroll -17517,2 //Animal_Costume_Scroll -17519,2 //Epic_Heroes_Scroll -17523,2 //Mystical_Costume_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 -17607,2 //Sanctuary_Lucky_Egg -17613,2 //Chronosian_Lucky_Egg -17628,2 //Cyborg_Lucky_Egg -17633,2 //Undine_Lucky_Egg -17648,2 //Smithy_Lucky_Egg -17659,2 //Ganymede_Lucky_Egg -17665,2 //LastAngel_LuckyScroll -17671,2 //Valkyrie_Lucky_Egg -17674,2 //Splash_Rainbow_Lucky_Egg -17681,2 //Midgard_Lucky_Scroll -17692,2 //Blessing_Scarlet_Egg -22514,2 //Candy_Holder -22537,2 //PrizeOfHero -22558,2 //Lucky_Bag -22669,2 //HALLOWEEN_G_BOX -22685,2 //Solo_Christmas_Gift -23196,2 // Shining_Blue_Lucky_Egg - -// 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 -12932,4 //Pet_Egg_Scroll3 -12933,4 //Pet_Egg_Scroll4 -12934,4 //Pet_Egg_Scroll5 -12935,4 //Infiltrator_Box -12936,4 //Muramasa_Box -12937,4 //Excalibur_Box -12938,4 //Combat_Knife_Box -12939,4 //Counter_Dagger_Box -12940,4 //Kaiser_Knuckle_Box -12941,4 //Pole_Axe_Box -12942,4 //Mighty_Staff_Box -12943,4 //Right_Epsilon_Box -12944,4 //Balistar_Box -12945,4 //Diary_Of_Great_Sage_Box -12946,4 //Asura_Box -12947,4 //Apple_Of_Archer_Box -12948,4 //Bunny_Band_Box -12949,4 //Sahkkat_Box -12950,4 //Lord_Circlet_Box -12951,4 //Elven_Ears_Box -12952,4 //Steel_Flower_Box -12953,4 //Critical_Ring_Box -12954,4 //Earring_Box -12955,4 //Ring_Box -12956,4 //Necklace_Box -12957,4 //Glove_Box -12958,4 //Brooch_Box -12959,4 //Rosary_Box -12960,4 //Safety_Ring_Box -12961,4 //Vesper_Core01_Box -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 -12986,4 //Pet_Egg_Scroll_Box9 -12987,4 //Pet_Egg_Scroll_Box10 -12988,4 //Pet_Egg_Scroll_Box11 -12989,4 //Pet_Egg_Scroll6 -12990,4 //Pet_Egg_Scroll7 -12991,4 //Pet_Egg_Scroll8 -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 -13633,4 //Super_Card_Pet_Egg4 -13634,4 //Vigorgra_Package1 -13635,4 //Vigorgra_Package2 -13636,4 //Vigorgra_Package3 -13637,4 //Vigorgra_Package4 -13638,4 //Vigorgra_Package5 -13639,4 //Vigorgra_Package6 -13640,4 //Vigorgra_Package7 -13641,4 //Vigorgra_Package8 -13642,4 //Vigorgra_Package9 -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 -13704,4 //Super_Pet_Egg5 -13705,4 //Super_Pet_Egg6 -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 -13908,4 //Deviruchi_Set_Box -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 -14245,4 //Chemical_Ring_Box -14246,4 //Insecticide_Ring_Box -14247,4 //Fisher_Ring_Box -14248,4 //Decussate_Ring_Box -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 -14699,4 //Memorial_Garuda_Lucky_Egg -14701,4 //Rune_Midgard_Imortal_Lucky_Egg -14735,4 //Shapeshifter_Costume -14741,4 //Midgard_Celebration_Lucky_Egg -14753,4 //Hero_Midgard_Egg -14805,4 //Almighty_Lucky_Egg -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 -16385,4 //F_Clover_Box_Mouth2 -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 -16744,4 //Spearfish_Box2 -16745,4 //Saurel_Box1 -16746,4 //Saurel_Box2 -16747,4 //Tuna_Box1 -16748,4 //Tuna_Box2 -16749,4 //Malang_Crab_Box1 -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 -16763,4 //Ptotection_Seagod_Box2 -16764,4 //Ptotection_Seagod_Box3 -16765,4 //Octo_Hstick_Box -16766,4 //Octo_Hstick_Box2 -16767,4 //Octo_Hstick_Box3 -16770,4 //Silvervine_Fruit_Box10 -16771,4 //Silvervine_Fruit_Box40 -16774,4 //Asgard_Scroll -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 -17023,4 //Super_Pet_Egg4_2 -17024,4 //Lovely_Aquarius_Scroll -17025,4 //Lovely_Aquarius_Box -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 -17204,4 // Shining_Egg -17207,4 //Idn_Heart_Scroll -17209,4 //Tw_Rainbow_Scroll -17210,4 //Tw_Red_Scroll -17211,4 //Tw_Orange_Scroll -17212,4 //Tw_Yellow_Scroll -17233,4 //Scroll_Of_Death -17234,4 //Scroll_Of_Life -17235,4 //Scroll_Of_Magic -17236,4 //Scroll_Of_Thews -17237,4 //Scroll_Of_Darkness -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 -17307,4 //Midgard_Egg -17317,4 //Sweet_Midgard_Egg -17320,4 //Birthday_IdRO10th_Scroll -17337,4 //Holy_Spirit_Egg -17431,4 //Miracle_Lucky_Egg -17435,4 //Legend_Hero_Lucky_Egg -17447,4 //Blessing_Midgard_Lucky_Egg -17461,4 //Frozen_Egg_Costume -17464,4 //Winter_Midgard_Egg -17470,4 //Headgear_Costume_Scroll -17471,4 //Spring_Festival_Lucky_Egg -17479,4 //Midgard_Festival_Egg -17481,4 //Flower_Blossom_Scroll -17482,4 //Solaris_Festival_Scroll -17490,4 //Time_Travel_Lucky_Egg -17493,4 //Burning_Feather_Costume_Scroll -17494,4 //Rise_Midgard_Lucky_Egg -17497,4 //Seaside_Costume_Scroll -17517,4 //Animal_Costume_Scroll -17519,4 //Epic_Heroes_Scroll -17523,4 //Mystical_Costume_Scroll -17526,4 //Majestic_Lucky_Egg -17532,4 //Blessing_Lucky_Egg -17552,4 //Garnet_Lucky_Egg -17572,4 //Erzulie_Lucky_Egg -17584,4 //Venus_Lucky_Egg -17588,4 //Amora_Lucky_Egg -17598,4 //Sograt_Lucky_Scroll -17607,4 //Sanctuary_Lucky_Egg -17613,4 //Chronosian_Lucky_Egg -17628,4 //Cyborg_Lucky_Egg -17633,4 //Undine_Lucky_Egg -17648,4 //Smithy_Lucky_Egg -17659,4 //Ganymede_Lucky_Egg -17665,4 //LastAngel_LuckyScroll -17671,4 //Valkyrie_Lucky_Egg -17674,4 //Splash_Rainbow_Lucky_Egg -17681,4 //Midgard_Lucky_Scroll -17692,4 //Blessing_Scarlet_Egg -//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 -23196,4 // Shining_Blue_Lucky_Egg - -// Special Broadcast -7782,16 //Gold_Key77 -7783,16 //Silver_Key77 - -// Not removed after consumption -12622,32 //Boarding_Halter -12887,32 //C_Wing_Of_Fly -22508,32 //Para_Team_Mark_ -100065,32 //WL_MB_SG -100066,32 //WL_MB_LOV -100067,32 //WL_MB_MS -100068,32 //WL_MB_DL -100069,32 //WL_MB_JF -100070,32 //WL_MB_ES -100071,32 //WL_MB_CR -100072,32 //WL_MB_CL -100073,32 //WL_MB_CM -100074,32 //WL_MB_TV diff --git a/db/re/item_stack.txt b/db/re/item_stack.txt deleted file mode 100644 index e61f69b0cd..0000000000 --- a/db/re/item_stack.txt +++ /dev/null @@ -1,21 +0,0 @@ -// Item Stacking Restriction File -// Prevents an item to be stacked more than x times in given -// inventory types. Generally used by 3rd class related skill items. -// -// Structure of Database: -// ItemID,MaxStackAmount,Type -// -// MaxStackAmount: -// Stack limit for the item. Use 0 to disable a restriction. -// -// Type mask values: -// &1: Character inventory restriction -// &2: Character cart restriction -// &4: Account storage restriction -// &8: Guild storage restriction -// -// Example: -// 512,4,12 // Will not allow more than 4 Apples in storages. - -// Arch Bishop -12333,3,1 // Ancilla diff --git a/db/re/item_trade.txt b/db/re/item_trade.txt deleted file mode 100644 index 7fb4317168..0000000000 --- a/db/re/item_trade.txt +++ /dev/null @@ -1,4943 +0,0 @@ -// Item Trade Restrictions Database -// Defines special trade rules for individual items. -// -// Structure of Database: -// Item ID, TradeMask,Group Level Override -// -// Legend for 'TradeMask' field (bitmask): -// 1 - item can't be dropped -// 2 - item can't be traded (nor vended) -// 4 - wedded partner can override restriction 2 -// 8 - item can't be sold to npcs -// 16 - item can't be placed in the cart -// 32 - item can't be placed in the storage -// 64 - item can't be placed in the guild storage -// 128 - item can't be attached to mail -// 256 - item can't be auctioned -// -// Example: -// 1161,67,50 -// 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,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 -1292,1,100 // Upg_Katar -1296,499,100 // Metal_Katar -1299,499,100 // TE_Woe_Katar -1310,499,100 // Krieger_Onehand_Axe1 -1312,507,100 // Orcish_Axe_C -1313,499,100 // Tourist_Axe -1319,499,100 // TE_Woe_Axe -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 -1394,1,100 // Upg_Two_Handed_Axe -1398,499,100 // Metal_Two_Handed_Axe -1399,499,100 // TE_Woe_Two_Handed_Axe -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_Sphere1 -1437,499,100 // TE_Woe_Pike -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_ -1491,1,100 // Upg_Lance -1493,499,100 // Metal_Lance -1495,499,100 // TE_Woe_Lance -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_Dic1 -1585,1,100 // Upg_Book -1588,499,100 // Metal_Book -1591,499,100 // TE_Woe_Book -//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 // TE_Woe_Staff -1670,1,100 // RWC_Memory_Staff -1681,467,100 // Short_Foxtail_Staff -1687,467,100 // Beginner_Foxtail_Staff -1699,499,100 // Paradise_Foxtail_Staff_I -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 // TE_Woe_Fist -//1845,499,100 // -//1848,499,100 // -//1864,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_String_Inst1 -1932,499,100 // TE_Woe_Guitar -1938,467,100 // Infinity_Violin -1941,467,100 // Unity_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 // TE_Woe_Rope -1994,467,100 // Infinity_Whip -1997,467,100 // Unity_Whip -2002,499,100 // Krieger_Twohand_Staff1 -2003,475,100 // Destruction_Rod_M -2015,1,100 // Upg_Staff -2018,499,100 // Metal_Staff -2019,499,100 // TE_Woe_Two_Hand_Staff -2024,467,100 // Infinity_Two-handed_Stick -2030,467,100 // Unity_Two-Handed_Staff -//2033,499,100 // -//2040,499,100 // -//2046,499,100 // -//2054,499,100 // -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 -2149,1,100 // Upg_Guard -2150,1,100 // Upg_Buckler -2151,1,100 // Upg_Shield -2152,507,100 // Anti_Demon_Shield_C -2168,1,100 // Immuned_Shield -2178,499,100 // TE_Woe_Buckler -2179,499,100 // TE_Woe_Shield -2180,499,100 // TE_Woe_Magic_Guard -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 -2459,1,100 // Upg_Shoes -2460,1,100 // Upg_Boots -2461,1,100 // Upg_Greave -2463,499,100 // Feral_Boots -2473,499,100 // Para_Team_Boots4 -2496,499,100 // TE_Woe_Shoes -2497,499,100 // TE_Woe_Boots -2498,499,100 // TE_Woe_Magic_Sandal -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_Manteau -2561,1,100 // Upg_Hood -2562,1,100 // Upg_Muffler -2563,1,100 // Upg_Manteau -2564,499,100 // Feral_Tail -2566,499,100 // Half_Asprika -2568,467,100 // Muffler_Of_Roki -2571,499,100 // Para_Team_Manteau2 -2573,1,100 // Archangel_Wing -2576,1,100 // Bravery_Bag -2589,1,100 // Fallen_Angel_Wing -2634,507,100 // Bridegroom_Ring -2635,507,100 // Bride_Ring -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 -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 // Morocc_Seal -2731,467,100 // Morocc_Charm_Stone -2732,467,100 // Morocc_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 -2786,1,100 // Spiritual_Ring_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 -2799,1,100 // Kuirpenring -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 -2824,499,100 // Mage_Manual -2825,1,100 // Shaman_EaringB -2826,1,100 // Dark_Knight_BeltB -2827,1,100 // Dark_Knight_GloveB -2828,1,100 // Upg_Clip -2832,507,100 // Freyja_Ring -2841,507,100 // Caracas_Ring -2843,499,100 // Gold_Trickle -2844,475,100 // El_Dicastes_Light -2856,499,100 // Half_Megin -2857,499,100 // Half_Brysing -2858,475,100 // Pendant_Of_Guardian -2863,507,100 // Ring_Of_Valkyrie -2872,475,100 // G_Honor_Certificate -2875,475,100 // RO_Appreciation_Ring -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 // TE_Ring_Of_Protection -2945,499,100 // TE_Ring_Of_Rage -2946,499,100 // TE_Ring_Of_Defiance -2950,507,100 // Rune_Ring -2966,1,100 // RWC_2012_Ring -2967,1,100 // RWC_2012_Ring_ -2968,1,100 // RWC_2012_Pendant -2969,1,100 // RWC_2012_Pendant_ -2981,467,100 // RingOfHero -2997,475,100 // RWC_Gold_Brooch -2999,475,100 // RWC_Brooch -5099,1,100 // Cat_Hat -5106,467,100 // Cone_Hat_INA -5132,475,100 // Angeling_Hat -5142,1,100 // Crescent_Helm -5143,1,100 // Kabuki_Mask -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 -5187,1,100 // Twin_Ribbon -5210,1,100 // Flying_Angel -5214,1,100 // Moonlight_Flower_Hat -5225,1,100 // Marcher_Hat -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 -5283,1,100 // Chick_Hat -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 -5312,1,100 // Ayothaya_Hat -5313,1,100 // Diadem -5314,507,100 // Hockey_Mask -5315,507,100 // Observer -5318,467,100 // Poring_Party_Hat -5319,1,100 // Hellomother_Hat -5320,475,100 // Champion_Wreath -5322,475,100 // Scarf -5323,475,100 // Misstrance_Crown -5324,1,100 // Little_Angel_Doll -5325,1,100 // Robo_Eye -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 -5340,1,100 // Deprotai_Doll_Hat -5341,1,100 // Claris_Doll_Hat -5342,1,100 // Sorin_Doll_Hat -5343,1,100 // Tayelin_Doll_Hat -5344,1,100 // Binit_Doll_Hat -5345,1,100 // Debril_Doll_Hat -5346,507,100 // Gf_Recruiter_Hat -5357,475,100 // Wings_Of_Victory -5359,1,100 // J_Captain_Hat -5360,1,100 // Whikebain_Ears -5361,1,100 // Gang_Scarf -5362,1,100 // Ninja_Scroll -5363,1,100 // Helm_Of_Abyss -5365,1,100 // Fried_Egg -5368,475,100 // White_Wing -5369,475,100 // Dark_Wing -5372,1,100 // Drooping_White_Kitty -5373,1,100 // Darkness_Helm -5375,1,100 // L_Orc_Hero_Helm -5378,1,100 // Rabbit_Ear_Hat -5380,1,100 // Fish_Head_Hat -5381,1,100 // Santa_Poring_Hat -5382,1,100 // Bell_Ribbon -5384,1,100 // Santa_Hat_1 -5389,1,100 // Angel_Spirit -5391,507,100 // Toast_C -5393,1,100 // Valentine_Hat -5394,507,100 // Bubblegum_Lower -5396,1,100 // Jasper_Crest -5406,467,100 // Academy_Freshman_Hat -5407,467,100 // Academy_Graduating_Cap -5408,507,100 // Old_Bandanna -5409,1,100 // New_Cowboy_Hat -5410,499,100 // Bread_Bag2 -5412,507,100 // Sweet_Candy -5413,467,100 // Popcorn_Hat -5414,467,100 // Campfire_Hat -5419,1,100 // Evolved_Leaf -5420,1,100 // Mask_Of_Ifrit -5421,1,100 // Ifrit's_Ear -5423,9,100 // Lovecap_China -5428,475,100 // Bread_Bag1 -5430,1,100 // Sacred_Torch_Coronet -5431,1,100 // Chicken_Hat -5435,1,100 // Coke_Hat -5450,475,100 // Sun_Cap -5451,475,100 // Dragonhelm_Gold -5452,475,100 // Dragonhelm_Silver -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 -5464,1,100 // Zaha_Doll_Hat -5467,1,100 // Helm_Of_Dragoon -5469,1,100 // Noble_Hat -5476,1,100 // Hairband_Of_Grandpeco -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 -5495,1,100 // Power_Of_Thor -5497,1,100 // King_Tiger_Doll_Hat -5498,1,100 // Wondering_Wolf_Helm -5502,1,100 // Necromencer's_Hood -5503,1,100 // Rabbit_Magic_Hat -5508,1,100 // Shark_Hat -5509,1,100 // Sting_Hat -5520,1,100 // Rabbit_Earplug -5521,507,100 // Angry_Mouth_C -5527,1,100 // Lunatic_Hat -5529,1,100 // Evil's_Bone_Hat -5530,1,100 // Raven_Cap -5531,1,100 // B_Dragon_Hat -5535,1,100 // Side_Cap -5536,507,100 // Spare_Card -5537,1,100 // Quati_Hat -5538,1,100 // Tucan_Hat -5539,1,100 // Jaguar_Hat -5544,467,100 // Time_Keeper_Hat -5545,1,100 // Aries_Diadem -5546,1,100 // Aries_Crown -5547,1,100 // RJC_Katusa -5548,1,100 // Scarlet_Rose -5549,1,100 // Taurus_Diadem -5550,1,100 // Taurus_Crown -5551,499,100 // Holy_Egg_Hat -5554,1,100 // Octopus_Hat -5555,1,100 // Leaf_Cat_Hat -5556,1,100 // Fur_Seal_Hat -5557,1,100 // Wild_Rose_Hat -5565,1,100 // Dragon_Arhat_Mask -5566,1,100 // Tiger_Arhat_Mask -5567,1,100 // Bright_Fury -5569,1,100 // Gemini_Diadem -5570,1,100 // Gemini_Crown -5572,1,100 // Savage_Baby_Hat -5573,1,100 // Bogy_Horn -5577,1,100 // Dark_Knight_MaskB -5583,499,100 // Para_Team_Hat -5584,1,100 // Majestic_Evil_Horn -5585,1,100 // Rune_Hairband -5587,499,100 // Mosquito_Coil_1Use -5592,475,100 // Sigrun's_Wing -5593,1,100 // K_Rabbit_Bonnet -5594,1,100 // Donut_In_Mouth -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 -5609,1,100 // Chung_Hairband -5654,1,100 // Holy_Marching_Hat_J -5658,1,100 // Imp_Hat -5660,1,100 // Gryphon_Hat -5665,1,100 // Shaman_Hat -5666,1,100 // Golden_Crown -5667,1,100 // Skull_Hood -5668,499,100 // Weird_Pumpkin_Hat -5682,1,100 // Triangle_Rune_Cap -5738,1,100 // Snowman_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_ -5766,1,100 // Amistr_Cap -5767,1,100 // Samurai_Mask -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 -5856,1,100 // Passion_FB_Hat -5857,1,100 // Cool_FB_Hat -5858,1,100 // Victory_FB_Hat -5859,1,100 // Glory_FB_Hat -5864,475,100 // Shadow_Booster -5900,467,100 // Divine Guard Hat -5901,467,100 // Focus Beret -5902,467,100 // Harvester Hat -5903,467,100 // Deadman Bandana -5904,467,100 // Inconspicuous Hat -5905,467,100 // Lyrica Hat -5906,467,100 // Oni Horns -5907,467,100 // Sea Captain Hat -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,1,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,467,100 // Manuk_Coin -6081,467,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 -6130,507,100 // Ticket_Loli_Ruri -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,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,475,100 // Ticket_Golem -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 -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 -6316,475,100 // E_Token_Of_Siegfried -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 -6413,475,100 // New_Insurance -6415,507,100 // Strange_Embryo -6416,499,100 // Pet_Exchange -6417,475,100 // Silvervine -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,499,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 // -//6585,475,100 // -//6586,507,100 // -6593,499,100 // Cryptura_Hair_Coupon -6625,467,100 // High_Purity_Energy_Xtal -6635,1,100 // Blacksmith_Blessing -6654,499,100 // Needle_And_Thread -6655,499,100 // Firm_Pumpkin -6656,499,100 // Goast_Free_Charm -6657,499,100 // Memory_Of_Jack -6665,1,100 // RWC_Inicializer -6671,467,100 // Geffen_Coin_Magic_Tournament -6672,467,100 // Black_As_Night_Piece -6673,507,100 // Bossnia_Tickets -6674,499,100 // GM_Coin -6681,467,100 // XMAS_Cookie -6682,499,100 // Bag_Of_Selling_Goods -6684,467,100 // TokenOfHero -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 // Mana_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 // P_Of_Evil_Soul -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 // Iron_Artifacts_ -6748,507,100 // Daily_Report_He_And_His_Team -6749,507,100 // Operation_Control_Device -6752,467,100 // Charleston_Parts -6753,467,100 // Token_Of_Destruction -6754,507,100 // Collected_Medicinal_Herbs -6756,507,100 // Cohesive_Energy -6757,507,100 // The_Memory_Recorder -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 -6813,1,100 // Kafra_Ticket -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 // Particles_Of_Energy -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 // Rune_Magic_Powder -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 -//6959,499,100 // -6960,467,100 // Key_Air_Fortress -//6993,475,100 // -//6994,475,100 // -//6995,499,100 // -//6996,499,100 // -//6997,499,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 -7199,499,100 // Coupon -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 -7514,499,100 // Monster_Ticket -7515,499,100 // Marvelous_Medal -7516,499,100 // Green_Key_Card -7518,499,100 // Women's_Medal -7527,507,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,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_ -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,499,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 // Morocc_Skin -7821,475,100 // Green_Apple -7822,475,100 // Whole_Barbecue -7823,475,100 // Meat_Veg_Skewer -7825,475,100 // Heroic_Stone -7826,499,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 -11518,499,100 // N_Blue_Potion -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_B -11566,475,100 // Yellow_Potion_ -11567,475,100 // Novice_Potion_B -11568,475,100 // Red_Slim_Potion_B -11569,475,100 // Orange_Potion_ -11570,475,100 // Red_Potion_ -11571,475,100 // Green_Potion_ -11572,475,100 // Blue_Potion_B -11573,475,100 // White_Slim_Potion_B -11574,475,100 // Yellow_Slim_Potion_ -11575,475,100 // Lucky_Cookie_B -11576,475,100 // Lucky_Candy_Cane_B -11577,475,100 // Rice_Ball_B -11578,475,100 // Candy_Striper_B -11579,475,100 // Lucky_Candy_B -11580,475,100 // Candy_B -11581,475,100 // Piece_Of_Cake_B -11582,475,100 // Well_Baked_Cookie_B -11583,475,100 // Chocolate_Drink_B -11584,475,100 // White_Chocolate_B -11585,475,100 // HandMade_Chocolate_B -11586,475,100 // HandMade_Chocolate_B_ -11587,475,100 // Chocolate_B -//11603,475,100 // -//11604,475,100 // -//11606,499,100 // -//11614,499,100 // -//11615,499,100 // -12142,507,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 -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 -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 -12515,475,100 // E_Med_Life_Potion -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,475,100 // Cheer_Scarf_Box -12566,475,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 // Mysterious_Egg -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,467,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 -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 // -12863,507,100 // Treasure_Chest_Summoned_II -//12871,475,100 // -//12872,475,100 // -12873,475,100 // TE_Potion_Box -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 // Siege_Kit_Box -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 -12923,1,100 // Pet_Egg_Scroll_Box1 -12924,1,100 // Pet_Egg_Scroll_Box2 -12925,1,100 // Pet_Egg_Scroll1 -12926,1,100 // Pet_Egg_Scroll2 -12927,475,100 // J_Aspersio_5_Scroll_Box -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 -13071,1,100 // Upg_Dagger -13074,507,100 // Ninja_Cutter -13079,499,100 // Metal_Dagger -13083,499,100 // TE_Woe_Knife -13092,1,100 // RWC_Memory_Knife -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 -13115,1,100 // Upg_Revolver -13117,499,100 // TE_Woe_Pistol -13118,499,100 // Tiny_Flame -13119,467,100 // Freedom_Flame -13125,499,100 // Metal_Revolver -13126,467,100 // Infinity_Pistol -13129,467,100 // Unity_Revolver -//13132,499,100 // -//13136,499,100 // -//13144,499,100 // -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 // TE_Woe_Rifle -13185,499,100 // TE_Woe_Gatling -13186,499,100 // TE_Woe_Shotgun -13187,499,100 // TE_Woe_Grenade -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_Shuriken1 -13312,507,100 // Huuma_Job_Test -13316,1,100 // Upg_Huuma_Shuriken -13317,499,100 // TE_Woe_Huuma -13322,499,100 // Huuma_Metal_Shuriken -13323,467,100 // Infinity_Shuriken -13329,467,100 // Unity_Huuma_Shuriken -//13330,499,100 // -//13336,499,100 // -//13341,499,100 // -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 -13420,1,100 // Honglyun's_Sword -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 // TE_Woe_Sword -13450,1,100 // Saber__ -13456,467,100 // Unity_Sword -13457,467,100 // Unity_Dagger -//13483,499,100 // -//13495,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 // Hood_Card_Scroll_Box -13522,475,100 // Hood_Card_Scroll_Box2 -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 // Xmas_Pet_Scroll -13912,475,100 // Party_Blessing_Box -13913,475,100 // Party_Inc_Agi_Box -13914,475,100 // Party_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_Bpx -13937,475,100 // Robo_Eye_Box -13938,475,100 // Twin_Ribbon_Box -13939,475,100 // Diadem_Box -13940,475,100 // Siege_Tele_Scroll_Box -13941,475,100 // Valentine_Scroll_TW -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_Fly_Wing_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 // Cherry_Blossom_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 -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_Vday -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 -14574,1,100 // Skull_Of_Vagabond -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 -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 -//14622,1,100 // -14623,475,100 // Golden_Treasure_Box_ -14627,475,100 // Christmas_Scroll -14628,475,100 // Costume_Festival_Box -//14630,1,100 // -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 -14735,475,100 // Shapeshifter_Costume -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 -//14780,475,100 // -//14781,475,100 // -//14799,507,100 // -14805,475,100 // Almighty_Lucky_Egg -//14826,475,100 // -15001,507,100 // Odin's_Blessing_I -15002,507,100 // Rune_Plate -15007,467,100 // Time_Keepr_Robe -15008,1,100 // Flame_Sprits_Armor__ -15009,499,100 // Para_Team_Uniform1 -15010,499,100 // Para_Team_Uniform2 -15011,499,100 // Para_Team_Uniform3 -15015,1,100 // Upg_Adv_Suit -15016,1,100 // Upg_Coat -15017,1,100 // Upg_Saint_Robe -15018,1,100 // Upg_Tights -15019,1,100 // Upg_Thief_Cloth -15020,1,100 // Upg_Mail -15021,1,100 // Upg_Formal_Dress -15023,499,100 // Half_Brynhild -15031,499,100 // Para_Team_Armor -15033,507,100 // Tutorial_Mattle -15034,507,100 // Tutorial_Mattle_ -15062,499,100 // TE_Woe_Coat -15063,499,100 // TE_Woe_Chain_Mail -15064,499,100 // TE_Woe_Mage_Coat -15067,507,100 // Rune_Suit -15116,467,100 // Airship_Armor -15141,467,100 // Rift_Ancient_Armor -15152,467,100 // Unity_Mail -15153,467,100 // Unity_Mantle -15154,467,100 // Unity_Suit -15155,467,100 // Unity_Robe -//15167,467,100 // -15181,467,100 // Para_Team_Uniform100 -15182,467,100 // Para_Team_Uniform115 -15183,467,100 // Para_Team_Uniform130 -15184,467,100 // Para_Team_Uniform145 -15185,467,100 // Para_Team_Uniform160 -//15210,499,100 // -//15247,499,100 // -//15250,499,100 // -//15383,499,100 // -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 -16019,1,100 // Upg_Mace -16023,499,100 // Metal_Mace -16025,499,100 // TE_Woe_Mace -16026,1,100 // RWC_Memory_Mace -16038,467,100 // Infinity_Mace -16048,467,100 // Unity_Mace -//16054,499,100 // -//16064,499,100 // -//16075,499,100 // -//16076,499,100 // -//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 -16230,475,100 // Taurus_Diadem_Box -16231,475,100 // Taurus_Crown_Box -16232,25,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_Box5 -16259,475,100 // HD_Carnium_Box5 -16260,475,100 // HD_Bradium_Box10 -16261,475,100 // HD_Carnium_Box10 -16262,475,100 // F_HD_Bradium_Box5 -16263,475,100 // F_HD_Carnium_Box5 -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_Disable -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 // -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 // Ribbon_Of_Life_Box -16639,475,100 // Ribbon_Of_Life_Box2 -16640,475,100 // Ribbon_Of_Life_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 // Ptotection_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 // -//16842,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 // -17081,475,100 // Yggdrasil_Crown_Box -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 // Upg_Book_Box2 -17098,475,100 // Upg_Staff_Box2 -17099,475,100 // Upg_Dagger_Box2 -17100,475,100 // Upg_Revolver_Box2 -17101,475,100 // Upg_Mace_Box2 -17102,475,100 // Upg_Bow_Box2 -17103,475,100 // Upg_Twohand_Sword_Box2 -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 // -//17145,1,100 // -//17153,475,100 // -//17154,475,100 // -17155,475,100 // Upg_Huuma_Shuriken_Box -17159,475,100 // Change_Name_Card_Box -17160,475,100 // Character_Name_Change_Card_Box -17162,475,100 // Boarding_Halter_Box7 -//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 // -17204,475,100 // Shining_Egg -//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 -17461,475,100 // Frozen_Egg_Costume -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 -17470,475,100 // Headgear_Costume_Scroll -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 -17481,475,100 // Flower_Blossom_Scroll -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 -17493,475,100 // Burning_Feather_Costume_Scroll -17495,475,100 // Lucky_Silvervine_Fruit_Box_III10 -17496,475,100 // Lucky_Silvervine_Fruit_Box_III110 -17497,475,100 // Seaside_Costume_Scroll -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 // Nyangvine_Box4 -17508,475,100 // Nyangvine_Box10 -17509,475,100 // Nyangvine_Box40 -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 -17517,475,100 // Animal_Costume_Scroll -17520,475,100 // Limited_Edition_Manual_Box -17521,475,100 // Three_Master_Package_V -17522,475,100 // Three_Master_Package_V_10 -17523,475,100 // Mystical_Costume_Scroll -17524,475,100 // Limited_Power_Booster_Box -17525,475,100 // Limited_Power_Booster_Box_100 -17527,475,100 // Nyangvine_Box200 -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 // Dungeon_1_hour_Ticket_Box -//17570,475,100 // -//17573,475,100 // -//17574,475,100 // -//17575,475,100 // -//17576,475,100 // -//17582,475,100 // -//17583,475,100 // -//17586,475,100 // -//17587,475,100 // -//17590,475,100 // -//17591,475,100 // -//17592,475,100 // -//17593,475,100 // -//17599,475,100 // -//17601,475,100 // -//17602,475,100 // -//17609,475,100 // -//17610,475,100 // -//17616,475,100 // -//17617,475,100 // -//17631,475,100 // -//17632,475,100 // -//17639,475,100 // -//17640,475,100 // -17648,475,100 // Smithy_Lucky_Egg -//17646,475,100 // -//17650,475,100 // -//17651,475,100 // -17659,475,100 // Ganymede_Lucky_Egg -//17662,475,100 // -//17663,475,100 // -17665,475,100 // LastAngel_LuckyScroll -//17668,475,100 // -//17669,475,100 // -17671,475,100 // Valkyrie_Lucky_Egg -//17672,475,100 // -//17673,475,100 // -17674,475,100 // Splash_Rainbow_Lucky_Egg -//17675,475,100 // -//17676,475,100 // -//17677,475,100 // -17681,475,100 // Midgard_Lucky_Scroll -//17683,475,100 // -//17684,475,100 // -//17689,475,100 // -//17690,475,100 // -//17691,475,100 // -17692,475,100 // Blessing_Scarlet_Egg -//17712,475,100 // -//17713,475,100 // -//17716,475,100 // -//17717,475,100 // -//17718,475,100 // -//17726,475,100 // -//17727,475,100 // -//17742,475,100 // -//17743,475,100 // -//17748,475,100 // -//17749,475,100 // -//17756,475,100 // -//17759,475,100 // -//17760,475,100 // -//17761,475,100 // -//17764,475,100 // -//17765,475,100 // -//17774,475,100 // -//17775,475,100 // -//17776,475,100 // -//17777,475,100 // -//17783,475,100 // -//17784,475,100 // -//17792,475,100 // -//17793,475,100 // -//17794,475,100 // -//17795,475,100 // -//17799,475,100 // -//17800,475,100 // -//17832,475,100 // -//17833,475,100 // -//17881,507,100 // -//17882,475,100 // -//17883,475,100 // -//17884,475,100 // -//17885,475,100 // -//17886,475,100 // -//17887,475,100 // -//17894,475,100 // -//17895,475,100 // -//17901,475,100 // -//17902,475,100 // -//17914,475,100 // -//17920,475,100 // -//17921,475,100 // -//17923,475,100 // -//17924,475,100 // -//17925,475,100 // -//17926,475,100 // -//17935,475,100 // -//17936,475,100 // -//17940,475,100 // -//17941,475,100 // -//17944,475,100 // -//17945,475,100 // -//17948,475,100 // -//17949,475,100 // -//17950,475,100 // -//17951,475,100 // -//17959,475,100 // -//17960,475,100 // -//17961,475,100 // -//17962,475,100 // -//17967,475,100 // -//17968,475,100 // -//17969,475,100 // -//17970,475,100 // -//17971,475,100 // -//17972,475,100 // -//17973,475,100 // -//17974,475,100 // -//17975,475,100 // -//17976,475,100 // -//17977,475,100 // -//17978,475,100 // -//17979,475,100 // -//17980,475,100 // -//17981,475,100 // -//17982,475,100 // -//17983,475,100 // -//17984,475,100 // -//17985,475,100 // -//17986,475,100 // -18100,507,100 // Shooting_Star_C -18106,499,100 // P_Bow3 -18107,507,100 // Malang_Snow_Crab -18108,507,100 // Brindle_Eel -18112,1,100 // Upg_Bow -18116,499,100 // Metal_Bow -18118,499,100 // TE_Woe_Bow -18128,467,100 // Infinity_Bow -18132,467,100 // Unity_Bow -//18141,499,100 // -//18150,499,100 // -//18151,499,100 // -//18165,499,100 // -//18166,499,100 // -//18182,499,100 // -//18183,499,100 // -18500,507,100 // Cheer_Scarf6 -18501,507,100 // Cheer_Scarf8 -18502,507,100 // Cheer_Scarf10 -18505,507,100 // Umbala_Spirit -18506,1,100 // Hattah_Black -18508,1,100 // Garuda_Hat -18514,499,100 // Para_Team_Hat2 -18520,475,100 // Jaty_C -18526,507,100 // Yummy_Lollipop -18528,1,100 // Tare_Neko_Cru -18536,1,100 // Foxtail -18556,499,100 // Angel_Helmet -18557,499,100 // Devil_Helmet -18563,1,100 // Heart_Wing_Hairband -18566,507,100 // Nut_Donut_In_Mouth -18569,1,100 // Soft_Sheep_Hat -18572,1,100 // Korean_Judge_Hat -18574,1,100 // Lord_of_Death -18579,467,100 // 9th_Anni_Hat -18580,1,100 // Yggdrasil_Crown -18595,1,100 // Horn_Of_Ancient -18596,1,100 // Sprout_Hat -18597,1,100 // Mercury_Helm -18599,1,100 // Black_Devil_Mask -18600,1,100 // Cat_Ears_Beret -18601,1,100 // Red_Bread_Hat -18603,1,100 // Black_Devil_Mask_ -18612,1,100 // White_Musang_Hat -18613,1,100 // Black_Musang_Hat -18673,1,100 // Tare_Pope_ -//18731,499,100 // -18732,499,100 // TE_Woe_Cap -18733,499,100 // TE_Woe_Bone_Helm -18734,499,100 // TE_Woe_Magic_Eyes -18742,1,100 // C_MoonStar_Accessory -18779,475,100 // RWC_Champ_Crown_Red -18780,475,100 // RWC_Champ_Crown_Blue -18781,475,100 // RWC_Champ_Crown_Black -18796,475,100 // RWC_Champ_Crown_QF -18821,1,100 // Rainbow_Feather_Deco -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_R -18974,475,100 // Old_Driver_Band_Y -18975,475,100 // Old_Shadow_Handicraft -18976,475,100 // Old_Minstrel_Song_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_Bone -18983,475,100 // Old_Protect_Of_Crown -18984,475,100 // Old_Camo_RabbitHood -19033,467,100 // Rift_Ancient_Decoration -19051,475,100 // Warrior_Moon_Cat -19052,507,100 // Sigruns_Wing -19053,475,100 // Fighter_Moon_Cat -19084,467,100 // Parfaille_Vigilante_Hat -//19119,467,100 // -19164,467,100 // Para_Team_Hat100 -19165,467,100 // Para_Team_Hat160 -//19169,1,100 // -19189,475,100 // Racing_Cap_MC -19190,475,100 // Racing_Cap_GN -19191,475,100 // Racing_Cap_GC -19192,475,100 // Racing_Cap_SC -19193,475,100 // Racing_Cap_WL -19194,475,100 // Racing_Cap_SO -19195,475,100 // Racing_Cap_RK -19196,475,100 // Racing_Cap_RG -19197,475,100 // Racing_Cap_AB -19198,475,100 // Racing_Cap_SR -19199,475,100 // Racing_Cap_RA -19200,475,100 // Racing_Cap_MI -19201,475,100 // Racing_Cap_WA -19202,475,100 // Racing_Cap_GS -19203,475,100 // Racing_Cap_NJ -19204,475,100 // Racing_Cap_SN -19205,475,100 // Racing_Cap_SU -//19218,499,100 // -//19256,475,100 // -//19275,499,100 // -//19283,1,100 // -//19284,1,100 // -//19310,499,100 // -//19389,507,100 // -19396,475,100 // Racing_Cap_SG -19397,475,100 // Racing_Cap_SL -//19404,499,100 // -19507,1,100 // Fine_Sun -19509,1,100 // Butterfly_Wing_Ear -19510,1,100 // Nut_On_Head -19511,1,100 // Heart_Eye_Patch1 -19512,1,100 // Heart_Eye_Patch2 -19513,1,100 // Chicken_Beak -19514,1,100 // Charlie_Beard -19515,1,100 // Yellow_Hat -19516,1,100 // Singing_Bird -19517,1,100 // Cocks_Comb -19518,1,100 // Rainbow -19519,1,100 // Lightning_Cloud -19520,1,100 // Rain_Cloud -19521,1,100 // Charlie_Hat -19522,1,100 // Mini_Crown1 -19523,475,100 // Donation_Ribbon -19530,1,100 // C_Wild_Rose -19531,475,100 // C_Cube_Mask -19532,475,100 // C_Red_Bunny_Band -19533,1,100 // C_Spore_Hat -19534,1,100 // C_Tha_Despero_Mask -19535,1,100 // C_Sinsuncho_Hat -19536,1,100 // C_Rose_Corsage -19544,1,100 // C_Tare_Neko_Cru -19555,1,100 // C_Crescent_Moon_Helm -19556,1,100 // C_Kabuki_Mask -19557,1,100 // C_Ayothaya_Hat -19558,1,100 // C_Crow_Hat -19559,1,100 // C_Baby_Dragon_Hat -19560,1,100 // C_Coati_Hat -19561,1,100 // C_Tucan_Hat -19562,1,100 // C_Jaguar_Hat -19563,1,100 // C_Dragon_Arhat_Mask -19564,1,100 // C_Tiger_Arhat_Mask -19565,1,100 // C_Chung_Hairband -19566,1,100 // C_Samurai_Mask -19567,1,100 // C_Hatta_Black -19568,1,100 // C_Ancient_Horns -19569,1,100 // C_Sprout_Hat -19570,1,100 // C_Mercury_Riser -19571,1,100 // C_White_Musang_Hat -19572,1,100 // C_Black_Musang_Hat -19573,1,100 // C_Heart_Wing_Hairband -19574,1,100 // C_Lord_of_Death -19576,1,100 // C_Tare_Pope -19586,1,100 // C_Pink_Bunny_Band_J -19598,1,100 // C_Wondering_Wolf_Helm -19599,1,100 // C_Imp_Hat -19650,1,100 // C_Rainbow_Feather_Deco -19710,1,100 // C_Wings_Of_Victory -19764,475,100 // C_Monster_Card -19765,475,100 // C_Wing_Angels_Ears -19853,507,100 // C_Filir_Wing_Ears -19871,1,100 // C_Music_Decoration -19938,1,100 // C_Love_Rabbit_Hood -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 -20062,1,100 // C_Angel_Stair -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 // C_Coiledup_Snake_Hat2 -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_Husky_Hat -20228,467,100 // C_Pig_MoneyBox -20285,1,100 // C_Blossom_Fluttering -20702,499,100 // TE_Woe_Muffler -20703,499,100 // TE_Woe_Manteau -20704,499,100 // TE_Woe_Magic_Manteau -20709,507,100 // Mana_Manteau -20727,1,100 // Brilliant_Golden_Wings -20743,467,100 // Airship_Cape -20779,467,100 // Rift_Manteau -20780,467,100 // Unity_STR_Manteau -20781,467,100 // Unity_AGI_Manteau -20782,467,100 // Unity_INT_Muffler -20787,467,100 // Unity_Exquisite_Muffler -//20801,467,100 // -20823,467,100 // Para_Team_Manteau100 -20824,467,100 // Para_Team_Manteau130 -20825,467,100 // Para_Team_Manteau160 -20834,256,100 // Drifter's_Cape -//20835,1,100 // -//20855,499,100 // -//20903,499,100 // -//20906,499,100 // -//20939,499,100 // -21000,1,100 // Upg_Twohand_Sword -21005,499,100 // Metal_Two_Hand_Sword -21006,499,100 // TE_Woe_Two_Hand_Sword -21014,467,100 // Infinity_Two-Handed_Sword -//21023,499,100 // -//21030,499,100 // -//21037,499,100 // -//21049,499,100 // -22012,507,100 // Mana_Boots -22046,467,100 // Airship_Boots -22075,467,100 // Rift_Shoes -22078,467,100 // Unity_STR_Boots -22079,467,100 // Unity_AGI_Boots -22080,467,100 // Unity_DEX_Boots -22081,467,100 // Unity_INT_Boots -//22102,467,100 // -22122,467,100 // Para_Team_Boots100 -22123,467,100 // Para_Team_Boots115 -22124,467,100 // Para_Team_Boots130 -22125,467,100 // Para_Team_Boots145 -22126,467,100 // Para_Team_Boots160 -22131,256,100 // Spurred_Boots -//22169,499,100 // -//22173,499,100 // -//22204,499,100 // -22508,507,100 // Para_Team_Mark_ -22510,475,100 // King_Wolf_Scroll -22511,467,100 // Fenrir_Card__ -22513,499,100 // King_of_Gift_Box -22517,507,100 // Loki_Summon_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 // WorkerScroll_A -22536,499,100 // WorkerScroll_B -//22539,467,100 // -22540,475,100 // Runstone_Lux -22541,475,100 // PC_Room_Coupon_Box_VI -22542,467,100 // Center_Potion_B -22543,467,100 // Berserk_Potion_B -22544,467,100 // Awakening_Potion_B -22545,475,100 // Speed_Potion -22546,475,100 // Slow_Potion -22547,475,100 // Anti-Payne_Moment -22548,475,100 // Wed_Cursed -22549,467,100 // Poison_Bottle_ -22550,475,100 // Cookie_Bag_B -22551,475,100 // Sesame_Pastry_B -22552,475,100 // Honey_Pastry_B -22553,475,100 // Rainbow_Cake_B -22554,467,100 // First_Aid_Box -22555,24,100 // Gourmet_Chocolate -22556,24,100 // Luxury_Chocolate -22557,24,100 // Masterpieces_of_Artisan_Chocolate -22566,112,100 // Frost_Crystal -22567,384,100 // Squad_Prize -22569,499,100 // Gift_New_start -22589,499,100 // Savage_Ora -22590,499,100 // Grand_Peco_Ora -22591,499,100 // Dest_Wolf_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 // Pitapat_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 // Xmas_Package_14 -22873,475,100 // Sealed_Beelzebub_Scroll_II -22874,475,100 // Sealed_Beelzebub_Card_Album -22875,467,100 // Sealed_Beelzebub_Card -22881,499,100 // Binding_Rope -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 // Question_Old_Blue_Box -22902,475,100 // Sealed_Card_Album_Scroll_II -//22906,475,100 // -//22907,507,100 // -//22908,507,100 // -//22914,507,100 // -//22929,507,100 // -//22946,475,100 // -//22947,475,100 // -//22948,475,100 // -//22949,475,100 // -//22950,475,100 // -//22951,475,100 // -//22952,475,100 // -//22971,475,100 // -//22972,475,100 // -22979,475,100 // C_Battle_Gum_2 -//22982,507,100 // -//22983,507,100 // -//22988,475,100 // -//22989,475,100 // -//22997,507,100 // -//22998,507,100 // -//23007,475,100 // -//23008,507,100 // -//23010,507,100 // -//23011,507,100 // -23012,475,100 // S_Small_Mana_Potion -//23013,475,100 // -//23014,475,100 // -//23015,475,100 // -//23021,507,100 // -//23022,507,100 // -//23023,507,100 // -//23024,475,100 // -//23025,507,100 // -//23026,507,100 // -//23027,467,100 // -//23028,499,100 // -//23034,475,100 // -//23036,507,100 // -//23037,507,100 // -23038,475,100 // S_Slim_White_Box -//23039,475,100 // -//23040,475,100 // -//23041,475,100 // -23042,475,100 // S_Seed_Of_Yggdrasil -23043,475,100 // S_Seed_Of_Yggdrasil_Box -23046,475,100 // S_Mystic_Powder -23047,475,100 // S_Blessing_Tyr -23048,475,100 // S_Resilience_Potion -//23049,475,100 // -//23050,475,100 // -//23051,475,100 // -//23052,475,100 // -//23062,499,100 // -//23063,507,100 // -//23069,475,100 // -//23070,475,100 // -//23072,475,100 // -//23073,475,100 // -//23074,475,100 // -//23075,475,100 // -23087,499,100 // Small_Leather_Bag -//23094,475,100 // -//23095,475,100 // -//23096,475,100 // -//23097,507,100 // -//23098,507,100 // -//23106,475,100 // -//23116,475,100 // -//23119,475,100 // -//23120,475,100 // -//23134,475,100 // -//23137,507,100 // -//23142,467,100 // -//23143,467,100 // -//23148,475,100 // -//23149,475,100 // -//23159,475,100 // -//23160,467,100 // -//23162,475,100 // -//23165,475,100 // -//23167,475,100 // -//23171,467,100 // -//23172,467,100 // -//23173,467,100 // -//23176,475,100 // -23177,475,100 // Kafra_Card_ -23196,475,100 // Shining_Blue_Lucky_Egg -//23198,475,100 // -//23199,475,100 // -//23200,475,100 // -//23201,475,100 // -//23202,467,100 // -//23203,475,100 // -//23204,475,100 // -//23206,475,100 // -//23207,475,100 // -//23209,475,100 // -//23210,475,100 // -//23211,475,100 // -//23212,475,100 // -//23213,475,100 // -//23214,475,100 // -//23215,475,100 // -//23216,475,100 // -//23217,475,100 // -//23218,475,100 // -//23235,475,100 // -//23245,475,100 // -//23267,507,100 // -//23268,507,100 // -//23269,507,100 // -//23270,507,100 // -//23271,507,100 // -//23272,507,100 // -//23273,507,100 // -//23274,507,100 // -//23275,507,100 // -//23276,507,100 // -//23278,507,100 // -23280,499,100 // N_Fly_Wing_ -//23283,475,100 // -//23296,499,100 // -//23305,475,100 // -23307,475,100 // S_Shining_Def_Scroll -//23317,467,100 // -//23318,475,100 // -//23325,507,100 // -//23328,499,100 // -//23332,475,100 // -//23333,475,100 // -//23338,499,100 // -23340,467,100 // S_Megaphone -//23348,507,100 // -//23349,507,100 // -//23350,507,100 // -//23351,507,100 // -//23352,507,100 // -//23353,507,100 // -//23364,499,100 // -//23365,499,100 // -//23383,475,100 // -//23405,475,100 // -//23440,475,100 // -//23444,475,100 // -//23446,499,100 // -//23473,475,100 // -//23475,475,100 // -//23484,499,100 // -//23485,499,100 // -//23486,499,100 // -//23487,499,100 // -//23488,499,100 // -//23489,499,100 // -//23490,499,100 // -//23491,499,100 // -//23492,499,100 // -//23493,499,100 // -//23494,499,100 // -//23495,499,100 // -//23496,499,100 // -//23497,499,100 // -//23498,499,100 // -//23499,499,100 // -//23500,499,100 // -//23501,499,100 // -//23502,499,100 // -//23503,499,100 // -//23504,499,100 // -//23505,499,100 // -//23506,499,100 // -//23537,475,100 // -//23575,499,100 // -//23576,499,100 // -//23577,499,100 // -//23578,499,100 // -//23579,499,100 // -//23580,499,100 // -//23581,499,100 // -//23582,499,100 // -//23583,499,100 // -//23584,499,100 // -//23585,499,100 // -//23586,499,100 // -//23587,499,100 // -//23618,475,100 // -//23619,475,100 // -//23647,507,100 // -//23648,507,100 // -//23650,475,100 // -//23661,475,100 // -//23683,499,100 // -//23700,475,100 // -//23710,475,100 // -//23718,475,100 // -//23719,475,100 // -//23751,475,100 // -//23752,475,100 // -//23754,475,100 // -//23763,475,100 // -//23764,475,100 // -//23765,475,100 // -//23771,499,100 // -//23772,507,100 // -//23773,507,100 // -//23774,507,100 // -//23775,507,100 // -//23784,475,100 // -//23804,475,100 // -//23878,475,100 // -//23896,475,100 // -//23897,507,100 // -//23897,507,100 // -//23898,475,100 // -//23899,475,100 // -//23900,499,100 // -//23901,507,100 // -//23914,475,100 // -//23919,475,100 // -24387,499,100 // S_Beginner's_Armor -24388,499,100 // S_Beginner's_Shield -24389,499,100 // S_Beginner's_Shoes -24390,499,100 // S_Beginner's_Weapon -24391,499,100 // S_Beginner's_Earring -24392,499,100 // S_Beginner's_Pendant -24416,499,100 // S_Temporal_Transcendent_Weapon -24417,499,100 // S_Temporal_Transcendent_Armor -24418,499,100 // S_Temporal_Transcendent_Shield -24419,499,100 // S_Temporal_Transcendent_Shoes -24420,499,100 // S_Temporal_Transcendent_Earring -24421,499,100 // S_Temporal_Transcendent_Pendant -//25038,499,100 // -//25039,499,100 // -//25042,475,100 // -25043,499,100 // Thorny_Vine_Flute -25045,499,100 // Luxurious_Cloth -25046,499,100 // Boarding_Pass -25047,499,100 // Kahlunac -25048,499,100 // Hearty_Lunchbox -25049,499,100 // Basilac_Clam -//25051,499,100 // -//25073,499,100 // -//25074,499,100 // -//25075,499,100 // -//25076,499,100 // -//25077,499,100 // -//25078,499,100 // -//25079,499,100 // -//25080,499,100 // -//25083,499,100 // -//25084,499,100 // -//25085,499,100 // -//25086,499,100 // -//25087,499,100 // -//25088,467,100 // -//25089,499,100 // -//25098,16,100 // -//25099,16,100 // -//25100,16,100 // -//25101,16,100 // -//25102,16,100 // -//25103,16,100 // -//25104,16,100 // -//25105,16,100 // -//25106,16,100 // -//25107,16,100 // -//25108,16,100 // -//25109,16,100 // -//25110,16,100 // -//25111,16,100 // -//25112,16,100 // -//25113,16,100 // -//25114,16,100 // -//25115,16,100 // -//25116,16,100 // -//25117,16,100 // -//25118,16,100 // -//25119,16,100 // -//25120,16,100 // -//25121,16,100 // -//25122,16,100 // -//25123,16,100 // -25132,499,100 // Pumpkin_Deco -25133,499,100 // Dried_White_Stem -25143,499,100 // Gift_Stuffed_Doll -25144,499,100 // Bridge_Postured_Doll -25145,499,100 // Burnt_Spector_Doll -25146,499,100 // Cold_Blooded_Queen_Doll -25147,499,100 // Well_Eatenl_Rabbit_Doll -25148,499,100 // Cute_Starved_Demon_Doll -25149,499,100 // Doll_With_Warm_Scarf -25150,499,100 // Hugging_Alice_Pilow -25151,499,100 // Rachel's_Revolver -25152,499,100 // Cherished_Bouquet -25153,499,100 // Broken_Gun_Wreck -25155,499,100 // Schwartz's_Honor_Token -25160,499,100 // Borrowed_Book -25161,499,100 // Delicious_Handmade_Cookie -25162,499,100 // Crispy_Anchovy -25163,499,100 // Arms_Shop_Ad -25164,499,100 // Fresh_Tea_Leaves -25165,499,100 // High_Class_Tea -25166,499,100 // Very_Shining_Ring -25167,499,100 // Old_Letter -//25169,499,100 // -25179,499,100 // Blessing_Star -25180,499,100 // Old_Rings -25181,499,100 // Wood_Rosary -25182,499,100 // Assassin's_Mark_Dagger -25183,499,100 // Decorated_Archer's_Thimble -25184,499,100 // Portable_Sewingbox -25185,499,100 // Locket_Pendant -//25188,499,100 // -//25200,499,100 // -//25201,499,100 // -//25218,499,100 // -//25219,499,100 // -//25220,499,100 // -//25221,499,100 // -//25222,499,100 // -25223,467,100 // Para_Team_Coin -//25235,467,100 // -25238,475,100 // New_Normal_Lubricant -25239,475,100 // New_Advanced_Lubricant -//25245,499,100 // -25246,467,100 // Juice_Mix_Package -25247,467,100 // Purple_Ore -25248,467,100 // Purple_Ore_Crate -25249,467,100 // Buffalo_Bandit_Mane -//25252,467,100 // -//25253,507,100 // -//25254,467,100 // -25260,499,100 // Fragment_of_Purple_Ore -//25268,499,100 // -//25269,499,100 // -//25270,499,100 // -//25274,467,100 // -//25287,499,100 // -//25291,507,100 // -//25295,499,100 // -//25296,499,100 // -//25307,499,100 // -//25309,499,100 // -//25315,499,100 // -//25316,499,100 // -//25319,499,100 // -//25344,499,100 // -//25358,499,100 // -//25359,499,100 // -//25360,499,100 // -//25365,499,100 // -//25366,499,100 // -//25367,499,100 // -//25390,499,100 // -//25391,499,100 // -//25392,499,100 // -//25393,499,100 // -//25394,499,100 // -//25395,499,100 // -//25401,499,100 // -//25408,499,100 // -//25421,499,100 // -//25422,499,100 // -//25425,499,100 // -//25426,499,100 // -//25427,499,100 // -//25428,499,100 // -25464,475,100 // World_Moving_Rights -//25479,499,100 // -//25504,507,100 // -//25511,499,100 // -//25512,499,100 // -//25643,499,100 // -//25656,499,100 // -//25657,499,100 // -//25658,499,100 // -//25659,499,100 // -//25664,499,100 // -//25665,499,100 // -//25666,499,100 // -//25733,475,100 // -//25734,499,100 // -//25735,499,100 // -//26001,499,100 // -//26015,499,100 // -26100,499,100 // Paradise_Foxtail_Staff_II -26101,499,100 // Paradise_Foxtail_Staff_III -//26111,499,100 // -//26112,499,100 // -//26119,499,100 // -//26120,499,100 // -//26156,499,100 // -28011,467,100 // Unity_Katar -//28015,499,100 // -//28024,499,100 // -//28027,499,100 // -//28040,499,100 // -28105,467,100 // Infinity_Axe -28110,467,100 // Unity_Two-Handed_Axe -//28113,499,100 // -//28120,499,100 // -//28137,499,100 // -//28215,499,100 // -//28216,499,100 // -//28217,499,100 // -//28218,499,100 // -28310,467,100 // Earring_Of_Sarah_L -28311,467,100 // Earring_Of_Sarah_R -28333,475,100 // Gold_PC_Room_Ring -28374,467,100 // Foxtail_Ring -//28412,507,100 // -28413,467,100 // Lesser_Mackerel_Talisman -28414,467,100 // Intermediate_Mackerel_Talisman -28415,467,100 // Greater_Mackerel_Talisman -28416,467,100 // Lesser_Leaf_Talisman -28417,467,100 // Intermediate_Leaf_Talisman -28418,467,100 // Greater_Leaf_Talisman -28419,467,100 // Lesser_Rabbit_Talisman -28420,467,100 // Intermediate_Rabbit_Talisman -28421,467,100 // Greater_Rabbit_Talisman -28422,467,100 // Shiny_Branch_Talisman -28423,467,100 // Fresh_Tuna_Talisman -28424,467,100 // Chubby_Worm_Talisman -28443,467,100 // Para_Team_Str_Ring100 -28444,467,100 // Para_Team_Str_Necklace100 -28445,467,100 // Para_Team_Str_Ring115 -28446,467,100 // Para_Team_Str_Necklace115 -28447,467,100 // Para_Team_Str_Ring130 -28448,467,100 // Para_Team_Str_Necklace130 -28449,467,100 // Para_Team_Str_Ring145 -28450,467,100 // Para_Team_Str_Necklace145 -28451,467,100 // Para_Team_Str_Ring160 -28452,467,100 // Para_Team_Str_Necklace160 -28453,467,100 // Para_Team_Magic_Ring100 -28454,467,100 // Para_Team_Magic_Necklace100 -28455,467,100 // Para_Team_Magic_Ring115 -28456,467,100 // Para_Team_Magic_Necklace115 -28457,467,100 // Para_Team_Magic_Ring130 -28458,467,100 // Para_Team_Magic_Necklace130 -28459,467,100 // Para_Team_Magic_Ring145 -28460,467,100 // Para_Team_Magic_Necklace145 -28461,467,100 // Para_Team_Magic_Ring160 -28462,467,100 // Para_Team_Magic_Necklace160 -28463,467,100 // Para_Team_Agi_Ring100 -28464,467,100 // Para_Team_Agi_Necklace100 -28465,467,100 // Para_Team_Agi_Ring115 -28466,467,100 // Para_Team_Agi_Necklace115 -28467,467,100 // Para_Team_Agi_Ring130 -28468,467,100 // Para_Team_Agi_Necklace130 -28469,467,100 // Para_Team_Agi_Ring145 -28470,467,100 // Para_Team_Agi_Necklace145 -28471,467,100 // Para_Team_Agi_Ring160 -28472,467,100 // Para_Team_Agi_Necklace160 -//28473,467,100 // -//28474,467,100 // -//28475,467,100 // -//28476,467,100 // -//28477,467,100 // -//28478,467,100 // -//28479,467,100 // -//28480,467,100 // -//28481,467,100 // -//28482,467,100 // -28495,467,100 // Sheriffs_Left_Badge -28496,467,100 // Sheriffs_Right_Badge -//28511,499,100 // -//28514,467,100 // -//28534,467,100 // -//28535,467,100 // -//28566,499,100 // -28606,467,100 // Unity_Bible -//28607,499,100 // -//28613,499,100 // -//28614,499,100 // -//28616,499,100 // -//28632,499,100 // -28703,467,100 // Infinity_Dagger -//28714,499,100 // -//28726,499,100 // -//28740,499,100 // -//28759,499,100 // -28904,467,100 // Unity_Guard -28905,467,100 // Unity_Buckler -//28914,467,100 // -//28953,499,100 // -31105,507,100 // C_RO_Celebration_Hat -31140,467,100 // C_Cowboy_Hat_ -31141,467,100 // C_Rose_Corsage_ -31262,499,100 // C_Disposable_3D_Glasses -31263,499,100 // C_Disposable_Popcorn_Hat -31319,499,100 // C_Summer_Fan_ -31320,499,100 // C_Pinwheel_Hat -//32004,499,100 // -//32021,499,100 // -//32202,507,100 // -//32221,499,100 // -100128,499,100 // Noblesses_Refine_Ticket -100129,499,100 // Imperial_Refine_Ticket -100130,499,100 // Grace_Refine_Ticket -100131,499,100 // Imperial_P_Mo_Garment -100132,499,100 // Imperial_M_Mo_Garment -100133,499,100 // Grace_P_Mo_Garment -100134,499,100 // Grace_M_Mo_Garment -100135,499,100 // Imperial_P_Mo_Armor -100136,499,100 // Imperial_M_Mo_Armor -100137,499,100 // Grace_P_Mo_Armor -100138,499,100 // Grace_M_Mo_Armor -450018,499,100 // Noblesse_Breath_Armor -450019,499,100 // Noblesse_Knight_Armor -450020,499,100 // Noblesse_Spear_Armor -450021,499,100 // Noblesse_Genesis_Armor -450022,499,100 // Noblesse_Sharp_Suit -450023,499,100 // Noblesse_Aimed_suit -450024,499,100 // Noblesse_Severe_Suit -450025,499,100 // Noblesse_Reverb_Suit -450026,499,100 // Noblesse_Adora_Robe -450027,499,100 // Noblesse_Duple_Robe -450028,499,100 // Noblesse_Tornado_Armor -450029,499,100 // Noblesse_Vulcan_Armor -450030,499,100 // Noblesse_Cart_Cannon_Suit -450031,499,100 // Noblesse_Cart_Tornado_Suit -450032,499,100 // Noblesse_Rolling_Suit -450033,499,100 // Noblesse_Assassin_Suit -450034,499,100 // Noblesse_Fatal_Suit -450035,499,100 // Noblesse_Stalker_Suit -450036,499,100 // Noblesse_Picky_Robe -450037,499,100 // Noblesse_Catnip_Robe -450038,499,100 // Noblesse_Trip_Suit -450039,499,100 // Noblesse_Fire_Rain_Suit -450040,499,100 // Noblesse_Crimson_Robe -450041,499,100 // Noblesse_Frost_Robe -450042,499,100 // Noblesse_Psychic_Robe -450043,499,100 // Noblesse_Dust_Robe -450044,499,100 // Noblesse_Sun_Suit -450045,499,100 // Noblesse_Moon_Suit -450046,499,100 // Noblesse_Ninja_Suit -450047,499,100 // Noblesse_Kunai_Suit -450048,499,100 // Noblesse_Eswhoo_Robe -450049,499,100 // Noblesse_Explosion_Robe -450050,499,100 // Noblesse_Knuckle_Suit -450051,499,100 // Noblesse_Tiger_Suit -450052,499,100 // Imperial_Breath_Armor -450053,499,100 // Imperial_Knight_Armor -450054,499,100 // Imperial_Spear_Armor -450055,499,100 // Imperial_Genesis_Armor -450056,499,100 // Imperial_Sharp_Suit -450057,499,100 // Imperial_Aimed_Suit -450058,499,100 // Imperial_Severe_Suit -450059,499,100 // Imperial_Reverb_Suit -450060,499,100 // Imperial_Adora_Robe -450061,499,100 // Imperial_Duple_Robe -450062,499,100 // Imperial_Knuckle_Suit -450063,499,100 // Imperial_Tiger_Suit -450064,499,100 // Imperial_Tornado_Armor -450065,499,100 // Imperial_Vulcan_Armor -450066,499,100 // Imperial_Cart_Cannon_Suit -450067,499,100 // Imperial_Cart_Tornado_Suit -450068,499,100 // Imperial_Rolling_Suit -450069,499,100 // Imperial_Assassin_Suit -450070,499,100 // Imperial_Fatal_Suit -450071,499,100 // Imperial_Stalker_Suit -450072,499,100 // Imperial_Picky_Robe -450073,499,100 // Imperial_Catnip_Robe -450074,499,100 // Imperial_Trip_Suit -450075,499,100 // Imperial_Fire_Rain_Suit -450076,499,100 // Imperial_Crimson_Robe -450077,499,100 // Imperial_Frost_Robe -450078,499,100 // Imperial_Psychic_Robe -450079,499,100 // Imperial_Dust_Robe -450080,499,100 // Imperial_Sun_Suit -450081,499,100 // Imperial_Moon_Suit -450082,499,100 // Imperial_Ninja_Suit -450083,499,100 // Imperial_Kunai_Suit -450084,499,100 // Imperial_Eswhoo_Robe -450085,499,100 // Imperial_Explosion_Robe -450086,499,100 // Grace_Breath_Armor -450087,499,100 // Grace_Knight_Armor -450088,499,100 // Grace_Spear_Armor -450089,499,100 // Grace_Genesis_Armor -450090,499,100 // Grace_Sharp_Suit -450091,499,100 // Grace_Aimed_Suit -450092,499,100 // Grace_Severe_Suit -450093,499,100 // Grace_Reverb_Suit -450094,499,100 // Grace_Adora_Robe -450095,499,100 // Grace_Duple_Robe -450096,499,100 // Grace_Knuckle_Suit -450097,499,100 // Grace_Tiger_Suit -450098,499,100 // Grace_Tornado_Armor -450099,499,100 // Grace_Vulcan_Armor -450100,499,100 // Grace_Cart_Cannon_Suit -450101,499,100 // Grace_Cart_Tornado_Suit -450102,499,100 // Grace_Rolling_Suit -450103,499,100 // Grace_Assassin_Suit -450104,499,100 // Grace_Fatal_Suit -450105,499,100 // Grace_Stalker_Suit -450106,499,100 // Grace_Picky_Robe -450107,499,100 // Grace_Catnip_Robe -450108,499,100 // Grace_Trip_Suit -450109,499,100 // Grace_Fire_Rain_Suit -450110,499,100 // Grace_Crimson_Robe -450111,499,100 // Grace_Frost_Robe -450112,499,100 // Grace_Psychic_Robe -450113,499,100 // Grace_Dust_Robe -450114,499,100 // Grace_Sun_Suit -450115,499,100 // Grace_Moon_Suit -450116,499,100 // Grace_Ninja_Suit -450117,499,100 // Grace_Kunai_Suit -450118,499,100 // Grace_Eswhoo_Robe -450119,499,100 // Grace_Explosion_Robe -450121,499,100 // Noblesse_Super_Novice_Suit -450122,499,100 // Noblesse_Super_Novice_Robe -450123,499,100 // Imperial_Super_Novice_Suit -450124,499,100 // Imperial_Super_Novice_Robe -450125,499,100 // Grace_Super_Novice_Suit -450126,499,100 // Grace_Super_Novice_Robe -470016,499,100 // Noblesse_Attack_Boots -470017,499,100 // Noblesse_Magic_Boots -470018,499,100 // Imperial_Attack_Boots -470019,499,100 // Imperial_Magic_Boots -470020,499,100 // Grace_Attack_Boots -470021,499,100 // Grace_Magic_Boots -480012,499,100 // Noblesse_Attack_Manteau -480014,499,100 // Noblesse_Magic_Manteau -480016,499,100 // Imperial_Attack_Manteau -480017,499,100 // Imperial_Magic_Manteau -480018,499,100 // Grace_Attack_Manteau -480019,499,100 // Grace_Magic_Manteau -490014,499,100 // Noblesse_Attack_Ring -490015,499,100 // Noblesse_Magic_Ring -490017,499,100 // Imperial_Attack_Ring -490018,499,100 // Imperial_Magic_Ring -490019,499,100 // Grace_Attack_Ring -490020,499,100 // Grace_Magic_Ring diff --git a/doc/atcommands.txt b/doc/atcommands.txt index db045e7b91..f8ee1b58eb 100644 --- a/doc/atcommands.txt +++ b/doc/atcommands.txt @@ -1368,7 +1368,7 @@ Affected files: -- atcommand: atcommand_athena.conf, groups.conf -- battleconf: battle_athena.conf, battle_conf.txt -- instancedb: instance_db.txt --- itemdb: item_db.txt, item_group_db.txt, item_trade.txt, item_noequip.txt, item_nouse.txt, item_combo_db.txt, item_avail.txt, item_stack.txt, item_delay.txt, item_buyingstore.txt, item_flag.txt, item_randomopt_db.txt, item_randomopt_group.txt +-- itemdb: item_db.yml, item_group_db.txt, item_noequip.txt, item_combo_db.txt, item_randomopt_db.txt, item_randomopt_group.txt -- mobdb: mob_db.txt, mob_item_ratio.txt, mob_chat_db.txt, mob_avail.txt, mob_race2_db.txt, mob_branch.txt, mob_poring.txt, mob_boss.txt, mob_pouch.txt, mob_classchange.txt, pet_db.yml, homunculus_db.txt, homun_skill_tree.txt, exp_homun.txt, mercenary_db.txt, mercenary_skill_db.txt, elemental_db.txt, elemental_skill_db.txt -- motd: motd.txt -- msgconf: atcommand_athena.conf diff --git a/doc/item_bonus.txt b/doc/item_bonus.txt index f4b504a7ff..ae4714bb02 100644 --- a/doc/item_bonus.txt +++ b/doc/item_bonus.txt @@ -67,9 +67,9 @@ This list contains all available constants referenced in the 'bonus' commands. * Other values: Skill (sk): see 'db/(pre-)re/skill_db.yml' (NOTE: Both skill IDs and names, in quotes, are supported.) Monster id (mid): see 'db/(pre-)re/mob_db.txt' - Item id (iid): see 'db/(pre-)re/item_db.txt' + Item id (iid): see 'db/item_db.yml' Item group (ig): see 'db/(pre-)re/item_group_db.txt' and the constants in 'db/const.txt', prefixed with IG_* - Weapon type (w): see 'doc/item_db.txt' -> View -> Weapons + Weapon type (w): see 'doc/item_db.txt' -> SubType Bonuses diff --git a/doc/item_db.txt b/doc/item_db.txt index d79332efb8..348e9e57dd 100644 --- a/doc/item_db.txt +++ b/doc/item_db.txt @@ -1,44 +1,82 @@ //===== rAthena Documentation ================================ -//= Item Database +//= Item Database Structure //===== By: ================================================== //= rAthena Dev Team //===== Last Updated: ======================================== -//= 20160319 +//= 20200602 //===== Description: ========================================= -//= Explanation of the item_db.txt file and structure. +//= Explanation of the item_db.yml file and structure. //============================================================ --------------------------------------- -ID: Item id +Id: Item ID. --------------------------------------- -AegisName: Server name to reference the item in scripts and lookups, - should use no spaces. +AegisName: Server name to reference the item in scripts and lookups, should use no spaces. --------------------------------------- -Name: Name in English for displaying as output for @ and script commands. +Name: Name in English for displaying as output for atcommands and script commands. --------------------------------------- -Type: - 0 Healing item. - 2 Usable item. - 3 Etc item - 4 Armor/Garment/Boots/Headgear/Accessory - 5 Weapon - 6 Card - 7 Pet egg - 8 Pet equipment - 10 Ammo (Arrows/Bullets/etc) - 11 Usable with delayed consumption (intended for 'itemskill') - Items using the 'itemskill' script command are consumed after - selecting a target. Any other command will NOT consume the item. - 12 Shadow Equipment - 18 Another delayed consume that requires user confirmation before - using item. +Type: Item's type. + +Healing - Healing item. +Usable - Usable item. +Etc - Etc item. +Armor - Armor/Garment/Boots/Headgear/Accessory item. +Weapon - Weapon item. +Card - Card item. +PetEgg - Pet egg item. +PetArmor - Pet equipment item. +Ammo - Ammo (Arrows/Bullets/etc) item. +DelayConsume - Usable with delayed consumption (intended for 'itemskill'). + Items using the 'itemskill' script command are consumed after selecting a target. Any other command will NOT consume the item. +ShadowGear - Shadow Equipment item. +Cash - Another delayed consume that requires user confirmation before using the item. + +--------------------------------------- + +SubType: Indicates the weapon-class of the item. + +For weapons, the types are: +Fist +Dagger +1hSword +2hSword +1hSpear +2hSpear +1hAxe +2hAxe +Mace +Staff +Bow +Knuckle +Musical +Whip +Book +Katar +Revolver +Rifle +Gatling +Shotgun +Grenade +Huuma +2hStaff + +For ammo, the types are: +Arrow +Dagger +Bullet +Shell +Grenade +Shuriken +Kunai +CannonBall +ThrowWeapon --------------------------------------- @@ -54,17 +92,19 @@ Weight: Item's weight. Each 10 is 1 weight. --------------------------------------- -ATK: Weapon's attack - -MATK: Weapon's magic attack (Renewal only) +Attack: Weapon's attack. --------------------------------------- -DEF: Armor's defense +MagicAttack: Weapon's magic attack. (Renewal only) --------------------------------------- -Range: Weapon's attack range +Defense: Armor's defense. + +--------------------------------------- + +Range: Weapon's attack range. --------------------------------------- @@ -72,146 +112,156 @@ Slots: Amount of slots the item possesses. --------------------------------------- -Job: Equippable jobs. Uses the following bitmask table: - (S.) Novice (2^00): 0x00000001 - Swordman (2^01): 0x00000002 - Magician (2^02): 0x00000004 - Archer (2^03): 0x00000008 - Acolyte (2^04): 0x00000010 - Merchant (2^05): 0x00000020 - Thief (2^06): 0x00000040 - Knight (2^07): 0x00000080 - Priest (2^08): 0x00000100 - Wizard (2^09): 0x00000200 - Blacksmith (2^10): 0x00000400 - Hunter (2^11): 0x00000800 - Assassin (2^12): 0x00001000 - Unused (2^13): 0x00002000 - Crusader (2^14): 0x00004000 - Monk (2^15): 0x00008000 - Sage (2^16): 0x00010000 - Rogue (2^17): 0x00020000 - Alchemist (2^18): 0x00040000 - Bard/Dancer (2^19): 0x00080000 - Unused (2^20): 0x00100000 - Taekwon (2^21): 0x00200000 - Star Gladiator (2^22): 0x00400000 - Soul Linker (2^23): 0x00800000 - Gunslinger (2^24): 0x01000000 - Ninja (2^25): 0x02000000 - Gangsi (2^26): 0x04000000 - Death Knight (2^27): 0x08000000 - Dark Collector (2^28): 0x10000000 - Kagerou/Oboro (2^29): 0x20000000 - Rebellion (2^30): 0x40000000 - Summoner (2^31): 0x80000000 +Jobs: Equippable jobs. - Novice + Swordman + Magician + Archer = 0x0000000F, why? - Because: 10 = A, 11 = B, 12 = C, 13 = D, 14 = E, and 15 = F - It's using hexadecimal. +All - Applies to all jobs listed below. +Acolyte +Alchemist +Archer +Assassin +BardDancer - Applies to Bard and Dancer. +Blacksmith +Crusader +Gunslinger +Hunter +KagerouOboro - Applies to Kagerou and Oboro. +Knight +Mage +Merchant +Monk +Ninja +Novice +Priest +Rebellion +Rogue +Sage +SoulLinker +StarGladiator +Summoner +SuperNovice +Swordman +Taekwon +Thief +Wizard --------------------------------------- -Class: Equippable upper-types. Uses the following bitmasks: - 1: Normal classes (no Baby/Transcendent/Third classes) - 2: Transcedent classes (no Transcedent-Third classes) - 4: Baby classes (no Third-Baby classes) - 8: Third classes (no Transcedent-Third or Third-Baby classes) - 16: Transcedent-Third classes - 32: Third-Baby classes +Classes: Equippable upper-types. + +All - Applies to all classes. +Normal - Normal classes (no Baby/Transcendent/Third classes). +Upper - Transcedent classes (no Transcedent-Third classes). +Baby - Baby classes (no Third-Baby classes). +Third - Third classes (no Transcedent-Third or Third-Baby classes). +Third_Upper - Transcedent-Third classes. +Third_Baby - Third-Baby classes. --------------------------------------- -Gender: Gender restriction. 0 is female, 1 is male, 2 for both. +Gender: Gender restriction. + +Female +Male +Both --------------------------------------- -Loc: Equipment's placement. Values are: - 2^8 256 = Upper Headgear - 2^9 512 = Middle Headgear - 2^0 001 = Lower Headgear - 2^4 016 = Armor - 2^1 002 = Weapon - 2^5 032 = Shield - 2^2 004 = Garment - 2^6 064 = Footgear - 2^3 008 = Accessory Right - 2^7 128 = Accessory Left - 2^10 1024 = Costume Top Headgear - 2^11 2048 = Costume Mid Headgear - 2^12 4096 = Costume Low Headgear - 2^13 8192 = Costume Garment/Robe - 2^15 32768 = Ammo - 2^16 65536 = Shadow Armor - 2^17 131072 = Shadow Weapon - 2^18 262144 = Shadow Shield - 2^19 524288 = Shadow Shoes - 2^20 1048576 = Shadow Accessory Right (Earring) - 2^21 2097152 = Shadow Accessory Left (Pendant) +Locations: Equipment's placement. + +Head_Top - Upper Headgear +Head_Mid - Middle Headgear +Head_Low - Lower Headgear +Armor - Armor +Right_Hand - Weapon +Left_Hand - Shield +Garment - Garment/Robe +Shoes - Shoes +Right_Accessory - Accessory Right +Left_Accessory - Accessory Left +Costume_Head_Top - Costume Top Headgear +Costume_Head_Mid - Costume Mid Headgear +Costume_Head_Low - Costume Low Headgear +Costume_Garment - Costume Garment/Robe +Ammo - Ammo +Shadow_Armor - Shadow Armor +Shadow_Weapon - Shadow Weapon +Shadow_Shield - Shadow Shield +Shadow_Shoes - Shadow Shoes +Shadow_Right_Accessory - Shadow Accessory Right (Earring) +Shadow_Left_Accessory - Shadow Accessory Left (Pendant) --------------------------------------- -wLV: Weapon level. +WeaponLevel: Weapon level. Used for refinement. --------------------------------------- -eLV: Base level required to be able to equip. - -maxLevel: Only able to equip if base level is lower than this. +EquipLevelMin: Base level required to be able to equip. --------------------------------------- -Refineable: 1 if the item can be refined, 0 otherwise. +EquipLevelMax: Only able to equip if base level is lower than this. --------------------------------------- -View: For normal items, defines a replacement view-sprite for the item (eg: - Making apples look like apple juice). The special case are weapons - and ammo where this value indicates the weapon-class of the item. +Refineable: Defines if the item can be refined. - For weapons, the types are: - 0: bare fist - 1: Daggers - 2: One-handed swords - 3: Two-handed swords - 4: One-handed spears - 5: Two-handed spears - 6: One-handed axes - 7: Two-handed axes - 8: Maces - 9: Unused - 10: Staves - 11: Bows - 12: Knuckles - 13: Musical Instruments - 14: Whips - 15: Books - 16: Katars - 17: Revolvers - 18: Rifles - 19: Gatling guns - 20: Shotguns - 21: Grenade launchers - 22: Fuuma Shurikens - 23: Two-handed staves - 24: Max Type - 25: Dual-wield Daggers - 26: Dual-wield Swords - 27: Dual-wield Axes - 28: Dagger + Sword - 29: Dagger + Axe - 30: Sword + Axe +--------------------------------------- - For ammo, the types are: - 1: Arrows - 2: Throwable daggers - 3: Bullets - 4: Shells - 5: Grenades - 6: Shuriken - 7: Kunai - 8: Cannonballs - 9: Throwable Items (Sling Item) +View: For normal items, defines a replacement view-sprite for the item. + +--------------------------------------- + +AliasName: Use the AegisName of another item which will be sent to the client instead of this item. + This makes items visually appear as another without having to change the client data. + +--------------------------------------- + +Flags: Different types of flags for an item. + +BuyingStore - If the item is available to Buying Stores. +DeadBranch - If the item is a Dead Branch type. +Container - If the item is part of a Container. +UniqueId - If the item is a unique stack. +BindOnEquip - If the item is bound to the character upon equipping. +DropAnnounce - If the item has a special announcement to self on drop. +NoConsume - If the item is consumed on use. +DropEffect - If the item has a special effect when on the ground. + +--------------------------------------- + +Delay: Item use delay. + Duration - Duration of delay in seconds. + Status - Status Change used to keep track of the delay. + +--------------------------------------- + +Stack: Item stack amount. + Amount - Maximum amount that can be stacked. + Inventory - If the stack is applied to player's inventory. + Cart - If the stack is applied to the player's cart. + Storage - If the stack is applied to the player's storage. + GuildStorage - If the stack is applied to the player's guild storage. + +--------------------------------------- + +NoUse: Conditions when the item is unusable. + Override - Group level to override these conditions. + Sitting - If the item can not be used while sitting. + +--------------------------------------- + +Trade: Trade restrictions. + Override - Group level to override these conditions. + NoDrop - If the item can not be dropped. + NoTrade - If the item can not be traded. + TradePartner - If the item can not be traded to the player's partner. + NoSell - If the item can not be sold. + NoCart - If the item can not be put in a cart. + NoStorage - If the item can not be put in a storage. + NoGuildStorage - If the item can not be put in a guild storage. + NoMail - If the item can not be put in a mail. + NoAuction - If the item can not be put in an auction. --------------------------------------- @@ -224,8 +274,5 @@ OnEquip_Script: Script to execute when the item is equipped. --------------------------------------- -OnUnequip_Script: Script to execute when the item is unequipped - or when a rental item expires. +OnUnequip_Script: Script to execute when the item is unequipped or when a rental item expires. Warning, not all item bonuses will work here as expected. - ---------------------------------------- diff --git a/doc/script_commands.txt b/doc/script_commands.txt index 2e741aad15..280abee5ad 100644 --- a/doc/script_commands.txt +++ b/doc/script_commands.txt @@ -296,7 +296,7 @@ clicking) will cause a shop window to come up. No code whatsoever runs in shop NPCs and you can't change the prices otherwise than by editing the script itself. -The Item ID is the number of item in the 'item_db.txt' database. If Price is set +The Item ID is the number of item in the 'db/item_db.yml' database. If Price is set to -1, the 'buy price' given in the item database will be used. Otherwise, the price you gave will be used for this item, which is how you create differing prices for items in different shops. @@ -1901,7 +1901,7 @@ Example 3: Example 4: mes "[Quest Person]"; - if (countitem(512) < 1) { // 512 is the item ID for Apple, found in item_db + if (countitem(512) < 1) { // 512 is the item ID for Apple, found in db/item_db.yml mes "Can you please bring me an apple?"; close; } @@ -4596,7 +4596,7 @@ online, items will be created in their inventory instead. If they are not online, nothing will happen. In the first and most commonly used version of this command, items are -referred to by their database ID number found inside 'db/(pre-)re/item_db.txt'. +referred to by their database ID number found inside 'db/item_db.yml'. getitem 502,10 // The person will receive 10 apples getitem 617,1 // The person will receive 1 Old Violet Box @@ -4902,7 +4902,7 @@ the results array is limited to 10 items. *delitem "",{,}; This command will remove a specified amount of items from the invoking/target character. -Like all the item commands, it uses the item ID found inside 'db/(pre-)re/item_db.txt'. +Like all the item commands, it uses the item ID found inside 'db/item_db.yml'. delitem 502,10; // The person will lose 10 apples delitem 617,1; // The person will lose 1 Old Violet Box @@ -5239,7 +5239,7 @@ a rune and has the appropriate raw materials in their inventory. *successremovecards ; -This command will remove all cards of the cards slots defined by item_db.txt +This command will remove all cards of the cards slots defined in db/item_db.yml from the item found in the specified equipment slot of the invoking character, create new card items and give them to the character. If any cards were removed in this manner, it will also show a success effect. diff --git a/doc/yaml/db/item_db.yml b/doc/yaml/db/item_db.yml new file mode 100644 index 0000000000..7c4dc617ff --- /dev/null +++ b/doc/yaml/db/item_db.yml @@ -0,0 +1,66 @@ +########################################################################### +# Item Database +########################################################################### +# +# Item Settings +# +########################################################################### +# - Id Item ID. +# AegisName Server name to reference the item in scripts and lookups, should use no spaces. +# Name Name in English for displaying as output. +# Type Item type. (Default: Etc) +# SubType Weapon or Ammo type. (Default: 0) +# Buy Buying price. When not specified, becomes double the sell price. (Default: 0) +# Sell Selling price. When not specified, becomes half the buy price. (Default: 0) +# Weight Item weight. Each 10 is 1 weight. (Default: 0) +# Attack Weapon's attack. (Default: 0) +# MagicAttack Weapon's magic attack. (Default: 0) +# Defense Armor's defense. (Default: 0) +# Range Weapon's attack range. (Default: 0) +# Slots Available slots in item. (Default: 0) +# Jobs Jobs that can equip the item. (Map default is 'All: true') +# Classes Upper class types that can equip the item. (Map default is 'All: true') +# Gender Gender that can equip the item. (Default: Both) +# Locations Equipment's placement. (Default: None) +# WeaponLevel Weapon level. (Default: 0) +# EquipLevelMin Minimum required level to equip. (Default: 0) +# EquipLevelMax Maximum level that can equip. (Default: 0) +# Refineable If the item can be refined. (Default: false) +# View View sprite of an item. (Default: 0) +# AliasName Another item's AegisName that will be sent to the client instead of this item's AegisName. (Default: null) +# Flags: Item flags. (Default: null) +# BuyingStore If the item is available for Buyingstores. (Default: false) +# DeadBranch If the item is a Dead Branch. (Default: false) +# Container If the item is part of a container. (Default: false) +# UniqueId If the item is a unique stack. (Default: false) +# BindOnEquip If the item is bound to the character upon equipping. (Default: false) +# DropAnnounce If the item has a special announcement to self on drop. (Default: false) +# NoConsume If the item is consumed on use. (Default: false) +# DropEffect If the item has a special effect when on the ground. (Default: None) +# Delay: Item use delay. (Default: null) +# Duration Duration of delay in seconds. +# Status Status Change used to track delay. (Default: None) +# Stack: Item stack amount. (Default: null) +# Amount Maximum amount that can be stacked. +# Inventory If the stack is applied to player's inventory. (Default: true) +# Cart If the stack is applied to the player's cart. (Default: false) +# Storage If the stack is applied to the player's storage. (Default: false) +# GuildStorage If the stack is applied to the player's guild storage. (Default: false) +# NoUse: Conditions when the item is unusable. (Default: null) +# Override Group level to override these conditions. +# Sitting If the item can not be used while sitting. (Default: false) +# Trade: Trade restrictions. (Default: null) +# Override Group level to override these conditions. +# NoDrop If the item can not be dropped. (Default: false) +# NoTrade If the item can not be traded. (Default: false) +# TradePartner If the item can not be traded to the player's partner. (Default: false) +# NoSell If the item can not be sold. (Default: false) +# NoCart If the item can not be put in a cart. (Default: false) +# NoStorage If the item can not be put in a storage. (Default: false) +# NoGuildStorage If the item can not be put in a guild storage. (Default: false) +# NoMail If the item can not be put in a mail. (Default: false) +# NoAuction If the item can not be put in an auction. (Default: false) +# Script Script to execute when the item is used/equipped. (Default: null) +# EquipScript Script to execute when the item is equipped. (Default: null) +# UnEquipScript Script to execute when the item is unequipped or when a rental item expires. (Default: null) +########################################################################### diff --git a/doc/yaml/sql/item_db.sql b/doc/yaml/sql/item_db.sql new file mode 100644 index 0000000000..2286d0b9ba --- /dev/null +++ b/doc/yaml/sql/item_db.sql @@ -0,0 +1,109 @@ +# +# Table structure for table `item_db` +# + +DROP TABLE IF EXISTS `item_db`; +CREATE TABLE `item_db` ( + `id` int(10) unsigned NOT NULL DEFAULT '0', + `name_aegis` varchar(50) NOT NULL DEFAULT '', + `name_english` varchar(50) NOT NULL DEFAULT '', + `type` varchar(20) DEFAULT NULL, + `subtype` varchar(20) DEFAULT NULL, + `price_buy` mediumint(8) unsigned DEFAULT NULL, + `price_sell` mediumint(8) unsigned DEFAULT NULL, + `weight` smallint(5) unsigned DEFAULT NULL, + `attack` smallint(5) unsigned DEFAULT NULL, + `defense` smallint(5) unsigned DEFAULT NULL, + `range` tinyint(2) unsigned DEFAULT NULL, + `slots` tinyint(2) unsigned DEFAULT NULL, + `job_all` tinyint(1) unsigned DEFAULT NULL, + `job_acolyte` tinyint(1) unsigned DEFAULT NULL, + `job_alchemist` tinyint(1) unsigned DEFAULT NULL, + `job_archer` tinyint(1) unsigned DEFAULT NULL, + `job_assassin` tinyint(1) unsigned DEFAULT NULL, + `job_barddancer` tinyint(1) unsigned DEFAULT NULL, + `job_blacksmith` tinyint(1) unsigned DEFAULT NULL, + `job_crusader` tinyint(1) unsigned DEFAULT NULL, + `job_gunslinger` tinyint(1) unsigned DEFAULT NULL, + `job_hunter` tinyint(1) unsigned DEFAULT NULL, + `job_knight` tinyint(1) unsigned DEFAULT NULL, + `job_mage` tinyint(1) unsigned DEFAULT NULL, + `job_merchant` tinyint(1) unsigned DEFAULT NULL, + `job_monk` tinyint(1) unsigned DEFAULT NULL, + `job_ninja` tinyint(1) unsigned DEFAULT NULL, + `job_novice` tinyint(1) unsigned DEFAULT NULL, + `job_priest` tinyint(1) unsigned DEFAULT NULL, + `job_rogue` tinyint(1) unsigned DEFAULT NULL, + `job_sage` tinyint(1) unsigned DEFAULT NULL, + `job_soullinker` tinyint(1) unsigned DEFAULT NULL, + `job_stargladiator` tinyint(1) unsigned DEFAULT NULL, + `job_supernovice` tinyint(1) unsigned DEFAULT NULL, + `job_swordman` tinyint(1) unsigned DEFAULT NULL, + `job_taekwon` tinyint(1) unsigned DEFAULT NULL, + `job_thief` tinyint(1) unsigned DEFAULT NULL, + `job_wizard` tinyint(1) unsigned DEFAULT NULL, + `class_all` tinyint(1) unsigned DEFAULT NULL, + `class_normal` tinyint(1) unsigned DEFAULT NULL, + `class_upper` tinyint(1) unsigned DEFAULT NULL, + `class_baby` tinyint(1) unsigned DEFAULT NULL, + `gender` varchar(10) DEFAULT NULL, + `location_head_top` tinyint(1) unsigned DEFAULT NULL, + `location_head_mid` tinyint(1) unsigned DEFAULT NULL, + `location_head_low` tinyint(1) unsigned DEFAULT NULL, + `location_armor` tinyint(1) unsigned DEFAULT NULL, + `location_right_hand` tinyint(1) unsigned DEFAULT NULL, + `location_left_hand` tinyint(1) unsigned DEFAULT NULL, + `location_garment` tinyint(1) unsigned DEFAULT NULL, + `location_shoes` tinyint(1) unsigned DEFAULT NULL, + `location_right_accessory` tinyint(1) unsigned DEFAULT NULL, + `location_left_accessory` tinyint(1) unsigned DEFAULT NULL, + `location_costume_head_top` tinyint(1) unsigned DEFAULT NULL, + `location_costume_head_mid` tinyint(1) unsigned DEFAULT NULL, + `location_costume_head_low` tinyint(1) unsigned DEFAULT NULL, + `location_costume_garment` tinyint(1) unsigned DEFAULT NULL, + `location_ammo` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_armor` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_weapon` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_shield` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_shoes` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_right_accessory` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_left_accessory` tinyint(1) unsigned DEFAULT NULL, + `weapon_level` tinyint(1) unsigned DEFAULT NULL, + `equip_level_min` tinyint(3) unsigned DEFAULT NULL, + `equip_level_max` tinyint(3) unsigned DEFAULT NULL, + `refineable` tinyint(1) unsigned DEFAULT NULL, + `view` smallint(5) unsigned DEFAULT NULL, + `alias_name` varchar(50) DEFAULT NULL, + `flag_buyingstore` tinyint(1) unsigned DEFAULT NULL, + `flag_deadbranch` tinyint(1) unsigned DEFAULT NULL, + `flag_container` tinyint(1) unsigned DEFAULT NULL, + `flag_uniqueid` tinyint(1) unsigned DEFAULT NULL, + `flag_bindonequip` tinyint(1) unsigned DEFAULT NULL, + `flag_dropannounce` tinyint(1) unsigned DEFAULT NULL, + `flag_noconsume` tinyint(1) unsigned DEFAULT NULL, + `flag_dropeffect` varchar(20) DEFAULT NULL, + `delay_duration` bigint(20) unsigned DEFAULT NULL, + `delay_status` varchar(30) DEFAULT NULL, + `stack_amount` smallint(5) unsigned DEFAULT NULL, + `stack_inventory` tinyint(1) unsigned DEFAULT NULL, + `stack_cart` tinyint(1) unsigned DEFAULT NULL, + `stack_storage` tinyint(1) unsigned DEFAULT NULL, + `stack_guildstorage` tinyint(1) unsigned DEFAULT NULL, + `nouse_override` smallint(5) unsigned DEFAULT NULL, + `nouse_sitting` tinyint(1) unsigned DEFAULT NULL, + `trade_override` smallint(5) unsigned DEFAULT NULL, + `trade_nodrop` tinyint(1) unsigned DEFAULT NULL, + `trade_notrade` tinyint(1) unsigned DEFAULT NULL, + `trade_tradepartner` tinyint(1) unsigned DEFAULT NULL, + `trade_nosell` tinyint(1) unsigned DEFAULT NULL, + `trade_nocart` tinyint(1) unsigned DEFAULT NULL, + `trade_nostorage` tinyint(1) unsigned DEFAULT NULL, + `trade_noguildstorage` tinyint(1) unsigned DEFAULT NULL, + `trade_nomail` tinyint(1) unsigned DEFAULT NULL, + `trade_noauction` tinyint(1) unsigned DEFAULT NULL, + `script` text, + `equip_script` text, + `unequip_script` text, + PRIMARY KEY (`id`), + UNIQUE INDEX `UniqueAegisName` (`name_aegis`) +) ENGINE=MyISAM; diff --git a/doc/yaml/sql/item_db2.sql b/doc/yaml/sql/item_db2.sql new file mode 100644 index 0000000000..b93274947f --- /dev/null +++ b/doc/yaml/sql/item_db2.sql @@ -0,0 +1,109 @@ +# +# Table structure for table `item_db2` +# + +DROP TABLE IF EXISTS `item_db2`; +CREATE TABLE `item_db2` ( + `id` int(10) unsigned NOT NULL DEFAULT '0', + `name_aegis` varchar(50) NOT NULL DEFAULT '', + `name_english` varchar(50) NOT NULL DEFAULT '', + `type` varchar(20) DEFAULT NULL, + `subtype` varchar(20) DEFAULT NULL, + `price_buy` mediumint(8) unsigned DEFAULT NULL, + `price_sell` mediumint(8) unsigned DEFAULT NULL, + `weight` smallint(5) unsigned DEFAULT NULL, + `attack` smallint(5) unsigned DEFAULT NULL, + `defense` smallint(5) unsigned DEFAULT NULL, + `range` tinyint(2) unsigned DEFAULT NULL, + `slots` tinyint(2) unsigned DEFAULT NULL, + `job_all` tinyint(1) unsigned DEFAULT NULL, + `job_acolyte` tinyint(1) unsigned DEFAULT NULL, + `job_alchemist` tinyint(1) unsigned DEFAULT NULL, + `job_archer` tinyint(1) unsigned DEFAULT NULL, + `job_assassin` tinyint(1) unsigned DEFAULT NULL, + `job_barddancer` tinyint(1) unsigned DEFAULT NULL, + `job_blacksmith` tinyint(1) unsigned DEFAULT NULL, + `job_crusader` tinyint(1) unsigned DEFAULT NULL, + `job_gunslinger` tinyint(1) unsigned DEFAULT NULL, + `job_hunter` tinyint(1) unsigned DEFAULT NULL, + `job_knight` tinyint(1) unsigned DEFAULT NULL, + `job_mage` tinyint(1) unsigned DEFAULT NULL, + `job_merchant` tinyint(1) unsigned DEFAULT NULL, + `job_monk` tinyint(1) unsigned DEFAULT NULL, + `job_ninja` tinyint(1) unsigned DEFAULT NULL, + `job_novice` tinyint(1) unsigned DEFAULT NULL, + `job_priest` tinyint(1) unsigned DEFAULT NULL, + `job_rogue` tinyint(1) unsigned DEFAULT NULL, + `job_sage` tinyint(1) unsigned DEFAULT NULL, + `job_soullinker` tinyint(1) unsigned DEFAULT NULL, + `job_stargladiator` tinyint(1) unsigned DEFAULT NULL, + `job_supernovice` tinyint(1) unsigned DEFAULT NULL, + `job_swordman` tinyint(1) unsigned DEFAULT NULL, + `job_taekwon` tinyint(1) unsigned DEFAULT NULL, + `job_thief` tinyint(1) unsigned DEFAULT NULL, + `job_wizard` tinyint(1) unsigned DEFAULT NULL, + `class_all` tinyint(1) unsigned DEFAULT NULL, + `class_normal` tinyint(1) unsigned DEFAULT NULL, + `class_upper` tinyint(1) unsigned DEFAULT NULL, + `class_baby` tinyint(1) unsigned DEFAULT NULL, + `gender` varchar(10) DEFAULT NULL, + `location_head_top` tinyint(1) unsigned DEFAULT NULL, + `location_head_mid` tinyint(1) unsigned DEFAULT NULL, + `location_head_low` tinyint(1) unsigned DEFAULT NULL, + `location_armor` tinyint(1) unsigned DEFAULT NULL, + `location_right_hand` tinyint(1) unsigned DEFAULT NULL, + `location_left_hand` tinyint(1) unsigned DEFAULT NULL, + `location_garment` tinyint(1) unsigned DEFAULT NULL, + `location_shoes` tinyint(1) unsigned DEFAULT NULL, + `location_right_accessory` tinyint(1) unsigned DEFAULT NULL, + `location_left_accessory` tinyint(1) unsigned DEFAULT NULL, + `location_costume_head_top` tinyint(1) unsigned DEFAULT NULL, + `location_costume_head_mid` tinyint(1) unsigned DEFAULT NULL, + `location_costume_head_low` tinyint(1) unsigned DEFAULT NULL, + `location_costume_garment` tinyint(1) unsigned DEFAULT NULL, + `location_ammo` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_armor` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_weapon` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_shield` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_shoes` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_right_accessory` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_left_accessory` tinyint(1) unsigned DEFAULT NULL, + `weapon_level` tinyint(1) unsigned DEFAULT NULL, + `equip_level_min` tinyint(3) unsigned DEFAULT NULL, + `equip_level_max` tinyint(3) unsigned DEFAULT NULL, + `refineable` tinyint(1) unsigned DEFAULT NULL, + `view` smallint(5) unsigned DEFAULT NULL, + `alias_name` varchar(50) DEFAULT NULL, + `flag_buyingstore` tinyint(1) unsigned DEFAULT NULL, + `flag_deadbranch` tinyint(1) unsigned DEFAULT NULL, + `flag_container` tinyint(1) unsigned DEFAULT NULL, + `flag_uniqueid` tinyint(1) unsigned DEFAULT NULL, + `flag_bindonequip` tinyint(1) unsigned DEFAULT NULL, + `flag_dropannounce` tinyint(1) unsigned DEFAULT NULL, + `flag_noconsume` tinyint(1) unsigned DEFAULT NULL, + `flag_dropeffect` varchar(20) DEFAULT NULL, + `delay_duration` bigint(20) unsigned DEFAULT NULL, + `delay_status` varchar(30) DEFAULT NULL, + `stack_amount` smallint(5) unsigned DEFAULT NULL, + `stack_inventory` tinyint(1) unsigned DEFAULT NULL, + `stack_cart` tinyint(1) unsigned DEFAULT NULL, + `stack_storage` tinyint(1) unsigned DEFAULT NULL, + `stack_guildstorage` tinyint(1) unsigned DEFAULT NULL, + `nouse_override` smallint(5) unsigned DEFAULT NULL, + `nouse_sitting` tinyint(1) unsigned DEFAULT NULL, + `trade_override` smallint(5) unsigned DEFAULT NULL, + `trade_nodrop` tinyint(1) unsigned DEFAULT NULL, + `trade_notrade` tinyint(1) unsigned DEFAULT NULL, + `trade_tradepartner` tinyint(1) unsigned DEFAULT NULL, + `trade_nosell` tinyint(1) unsigned DEFAULT NULL, + `trade_nocart` tinyint(1) unsigned DEFAULT NULL, + `trade_nostorage` tinyint(1) unsigned DEFAULT NULL, + `trade_noguildstorage` tinyint(1) unsigned DEFAULT NULL, + `trade_nomail` tinyint(1) unsigned DEFAULT NULL, + `trade_noauction` tinyint(1) unsigned DEFAULT NULL, + `script` text, + `equip_script` text, + `unequip_script` text, + PRIMARY KEY (`id`), + UNIQUE INDEX `UniqueAegisName` (`name_aegis`) +) ENGINE=MyISAM; diff --git a/doc/yaml/sql/item_db2_re.sql b/doc/yaml/sql/item_db2_re.sql new file mode 100644 index 0000000000..b545d132da --- /dev/null +++ b/doc/yaml/sql/item_db2_re.sql @@ -0,0 +1,116 @@ +# +# Table structure for table `item_db2_re` +# + +DROP TABLE IF EXISTS `item_db2_re`; +CREATE TABLE `item_db2_re` ( + `id` int(10) unsigned NOT NULL DEFAULT '0', + `name_aegis` varchar(50) NOT NULL DEFAULT '', + `name_english` varchar(50) NOT NULL DEFAULT '', + `type` varchar(20) DEFAULT NULL, + `subtype` varchar(20) DEFAULT NULL, + `price_buy` mediumint(8) unsigned DEFAULT NULL, + `price_sell` mediumint(8) unsigned DEFAULT NULL, + `weight` smallint(5) unsigned DEFAULT NULL, + `attack` smallint(5) unsigned DEFAULT NULL, + `magic_attack` smallint(5) unsigned DEFAULT NULL, + `defense` smallint(5) unsigned DEFAULT NULL, + `range` tinyint(2) unsigned DEFAULT NULL, + `slots` tinyint(2) unsigned DEFAULT NULL, + `job_all` tinyint(1) unsigned DEFAULT NULL, + `job_acolyte` tinyint(1) unsigned DEFAULT NULL, + `job_alchemist` tinyint(1) unsigned DEFAULT NULL, + `job_archer` tinyint(1) unsigned DEFAULT NULL, + `job_assassin` tinyint(1) unsigned DEFAULT NULL, + `job_barddancer` tinyint(1) unsigned DEFAULT NULL, + `job_blacksmith` tinyint(1) unsigned DEFAULT NULL, + `job_crusader` tinyint(1) unsigned DEFAULT NULL, + `job_gunslinger` tinyint(1) unsigned DEFAULT NULL, + `job_hunter` tinyint(1) unsigned DEFAULT NULL, + `job_kagerouoboro` tinyint(1) unsigned DEFAULT NULL, + `job_knight` tinyint(1) unsigned DEFAULT NULL, + `job_mage` tinyint(1) unsigned DEFAULT NULL, + `job_merchant` tinyint(1) unsigned DEFAULT NULL, + `job_monk` tinyint(1) unsigned DEFAULT NULL, + `job_ninja` tinyint(1) unsigned DEFAULT NULL, + `job_novice` tinyint(1) unsigned DEFAULT NULL, + `job_priest` tinyint(1) unsigned DEFAULT NULL, + `job_rebellion` tinyint(1) unsigned DEFAULT NULL, + `job_rogue` tinyint(1) unsigned DEFAULT NULL, + `job_sage` tinyint(1) unsigned DEFAULT NULL, + `job_soullinker` tinyint(1) unsigned DEFAULT NULL, + `job_stargladiator` tinyint(1) unsigned DEFAULT NULL, + `job_summoner` tinyint(1) unsigned DEFAULT NULL, + `job_supernovice` tinyint(1) unsigned DEFAULT NULL, + `job_swordman` tinyint(1) unsigned DEFAULT NULL, + `job_taekwon` tinyint(1) unsigned DEFAULT NULL, + `job_thief` tinyint(1) unsigned DEFAULT NULL, + `job_wizard` tinyint(1) unsigned DEFAULT NULL, + `class_all` tinyint(1) unsigned DEFAULT NULL, + `class_normal` tinyint(1) unsigned DEFAULT NULL, + `class_upper` tinyint(1) unsigned DEFAULT NULL, + `class_baby` tinyint(1) unsigned DEFAULT NULL, + `class_third` tinyint(1) unsigned DEFAULT NULL, + `class_third_upper` tinyint(1) unsigned DEFAULT NULL, + `class_third_baby` tinyint(1) unsigned DEFAULT NULL, + `gender` varchar(10) DEFAULT NULL, + `location_head_top` tinyint(1) unsigned DEFAULT NULL, + `location_head_mid` tinyint(1) unsigned DEFAULT NULL, + `location_head_low` tinyint(1) unsigned DEFAULT NULL, + `location_armor` tinyint(1) unsigned DEFAULT NULL, + `location_right_hand` tinyint(1) unsigned DEFAULT NULL, + `location_left_hand` tinyint(1) unsigned DEFAULT NULL, + `location_garment` tinyint(1) unsigned DEFAULT NULL, + `location_shoes` tinyint(1) unsigned DEFAULT NULL, + `location_right_accessory` tinyint(1) unsigned DEFAULT NULL, + `location_left_accessory` tinyint(1) unsigned DEFAULT NULL, + `location_costume_head_top` tinyint(1) unsigned DEFAULT NULL, + `location_costume_head_mid` tinyint(1) unsigned DEFAULT NULL, + `location_costume_head_low` tinyint(1) unsigned DEFAULT NULL, + `location_costume_garment` tinyint(1) unsigned DEFAULT NULL, + `location_ammo` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_armor` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_weapon` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_shield` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_shoes` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_right_accessory` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_left_accessory` tinyint(1) unsigned DEFAULT NULL, + `weapon_level` tinyint(1) unsigned DEFAULT NULL, + `equip_level_min` tinyint(3) unsigned DEFAULT NULL, + `equip_level_max` tinyint(3) unsigned DEFAULT NULL, + `refineable` tinyint(1) unsigned DEFAULT NULL, + `view` smallint(5) unsigned DEFAULT NULL, + `alias_name` varchar(50) DEFAULT NULL, + `flag_buyingstore` tinyint(1) unsigned DEFAULT NULL, + `flag_deadbranch` tinyint(1) unsigned DEFAULT NULL, + `flag_container` tinyint(1) unsigned DEFAULT NULL, + `flag_uniqueid` tinyint(1) unsigned DEFAULT NULL, + `flag_bindonequip` tinyint(1) unsigned DEFAULT NULL, + `flag_dropannounce` tinyint(1) unsigned DEFAULT NULL, + `flag_noconsume` tinyint(1) unsigned DEFAULT NULL, + `flag_dropeffect` varchar(20) DEFAULT NULL, + `delay_duration` bigint(20) unsigned DEFAULT NULL, + `delay_status` varchar(30) DEFAULT NULL, + `stack_amount` smallint(5) unsigned DEFAULT NULL, + `stack_inventory` tinyint(1) unsigned DEFAULT NULL, + `stack_cart` tinyint(1) unsigned DEFAULT NULL, + `stack_storage` tinyint(1) unsigned DEFAULT NULL, + `stack_guildstorage` tinyint(1) unsigned DEFAULT NULL, + `nouse_override` smallint(5) unsigned DEFAULT NULL, + `nouse_sitting` tinyint(1) unsigned DEFAULT NULL, + `trade_override` smallint(5) unsigned DEFAULT NULL, + `trade_nodrop` tinyint(1) unsigned DEFAULT NULL, + `trade_notrade` tinyint(1) unsigned DEFAULT NULL, + `trade_tradepartner` tinyint(1) unsigned DEFAULT NULL, + `trade_nosell` tinyint(1) unsigned DEFAULT NULL, + `trade_nocart` tinyint(1) unsigned DEFAULT NULL, + `trade_nostorage` tinyint(1) unsigned DEFAULT NULL, + `trade_noguildstorage` tinyint(1) unsigned DEFAULT NULL, + `trade_nomail` tinyint(1) unsigned DEFAULT NULL, + `trade_noauction` tinyint(1) unsigned DEFAULT NULL, + `script` text, + `equip_script` text, + `unequip_script` text, + PRIMARY KEY (`id`), + UNIQUE INDEX `UniqueAegisName` (`name_aegis`) +) ENGINE=MyISAM; diff --git a/doc/yaml/sql/item_db_re.sql b/doc/yaml/sql/item_db_re.sql new file mode 100644 index 0000000000..36c5a37e74 --- /dev/null +++ b/doc/yaml/sql/item_db_re.sql @@ -0,0 +1,116 @@ +# +# Table structure for table `item_db_re` +# + +DROP TABLE IF EXISTS `item_db_re`; +CREATE TABLE `item_db_re` ( + `id` int(10) unsigned NOT NULL DEFAULT '0', + `name_aegis` varchar(50) NOT NULL DEFAULT '', + `name_english` varchar(50) NOT NULL DEFAULT '', + `type` varchar(20) DEFAULT NULL, + `subtype` varchar(20) DEFAULT NULL, + `price_buy` mediumint(8) unsigned DEFAULT NULL, + `price_sell` mediumint(8) unsigned DEFAULT NULL, + `weight` smallint(5) unsigned DEFAULT NULL, + `attack` smallint(5) unsigned DEFAULT NULL, + `magic_attack` smallint(5) unsigned DEFAULT NULL, + `defense` smallint(5) unsigned DEFAULT NULL, + `range` tinyint(2) unsigned DEFAULT NULL, + `slots` tinyint(2) unsigned DEFAULT NULL, + `job_all` tinyint(1) unsigned DEFAULT NULL, + `job_acolyte` tinyint(1) unsigned DEFAULT NULL, + `job_alchemist` tinyint(1) unsigned DEFAULT NULL, + `job_archer` tinyint(1) unsigned DEFAULT NULL, + `job_assassin` tinyint(1) unsigned DEFAULT NULL, + `job_barddancer` tinyint(1) unsigned DEFAULT NULL, + `job_blacksmith` tinyint(1) unsigned DEFAULT NULL, + `job_crusader` tinyint(1) unsigned DEFAULT NULL, + `job_gunslinger` tinyint(1) unsigned DEFAULT NULL, + `job_hunter` tinyint(1) unsigned DEFAULT NULL, + `job_kagerouoboro` tinyint(1) unsigned DEFAULT NULL, + `job_knight` tinyint(1) unsigned DEFAULT NULL, + `job_mage` tinyint(1) unsigned DEFAULT NULL, + `job_merchant` tinyint(1) unsigned DEFAULT NULL, + `job_monk` tinyint(1) unsigned DEFAULT NULL, + `job_ninja` tinyint(1) unsigned DEFAULT NULL, + `job_novice` tinyint(1) unsigned DEFAULT NULL, + `job_priest` tinyint(1) unsigned DEFAULT NULL, + `job_rebellion` tinyint(1) unsigned DEFAULT NULL, + `job_rogue` tinyint(1) unsigned DEFAULT NULL, + `job_sage` tinyint(1) unsigned DEFAULT NULL, + `job_soullinker` tinyint(1) unsigned DEFAULT NULL, + `job_stargladiator` tinyint(1) unsigned DEFAULT NULL, + `job_summoner` tinyint(1) unsigned DEFAULT NULL, + `job_supernovice` tinyint(1) unsigned DEFAULT NULL, + `job_swordman` tinyint(1) unsigned DEFAULT NULL, + `job_taekwon` tinyint(1) unsigned DEFAULT NULL, + `job_thief` tinyint(1) unsigned DEFAULT NULL, + `job_wizard` tinyint(1) unsigned DEFAULT NULL, + `class_all` tinyint(1) unsigned DEFAULT NULL, + `class_normal` tinyint(1) unsigned DEFAULT NULL, + `class_upper` tinyint(1) unsigned DEFAULT NULL, + `class_baby` tinyint(1) unsigned DEFAULT NULL, + `class_third` tinyint(1) unsigned DEFAULT NULL, + `class_third_upper` tinyint(1) unsigned DEFAULT NULL, + `class_third_baby` tinyint(1) unsigned DEFAULT NULL, + `gender` varchar(10) DEFAULT NULL, + `location_head_top` tinyint(1) unsigned DEFAULT NULL, + `location_head_mid` tinyint(1) unsigned DEFAULT NULL, + `location_head_low` tinyint(1) unsigned DEFAULT NULL, + `location_armor` tinyint(1) unsigned DEFAULT NULL, + `location_right_hand` tinyint(1) unsigned DEFAULT NULL, + `location_left_hand` tinyint(1) unsigned DEFAULT NULL, + `location_garment` tinyint(1) unsigned DEFAULT NULL, + `location_shoes` tinyint(1) unsigned DEFAULT NULL, + `location_right_accessory` tinyint(1) unsigned DEFAULT NULL, + `location_left_accessory` tinyint(1) unsigned DEFAULT NULL, + `location_costume_head_top` tinyint(1) unsigned DEFAULT NULL, + `location_costume_head_mid` tinyint(1) unsigned DEFAULT NULL, + `location_costume_head_low` tinyint(1) unsigned DEFAULT NULL, + `location_costume_garment` tinyint(1) unsigned DEFAULT NULL, + `location_ammo` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_armor` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_weapon` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_shield` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_shoes` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_right_accessory` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_left_accessory` tinyint(1) unsigned DEFAULT NULL, + `weapon_level` tinyint(1) unsigned DEFAULT NULL, + `equip_level_min` tinyint(3) unsigned DEFAULT NULL, + `equip_level_max` tinyint(3) unsigned DEFAULT NULL, + `refineable` tinyint(1) unsigned DEFAULT NULL, + `view` smallint(5) unsigned DEFAULT NULL, + `alias_name` varchar(50) DEFAULT NULL, + `flag_buyingstore` tinyint(1) unsigned DEFAULT NULL, + `flag_deadbranch` tinyint(1) unsigned DEFAULT NULL, + `flag_container` tinyint(1) unsigned DEFAULT NULL, + `flag_uniqueid` tinyint(1) unsigned DEFAULT NULL, + `flag_bindonequip` tinyint(1) unsigned DEFAULT NULL, + `flag_dropannounce` tinyint(1) unsigned DEFAULT NULL, + `flag_noconsume` tinyint(1) unsigned DEFAULT NULL, + `flag_dropeffect` varchar(20) DEFAULT NULL, + `delay_duration` bigint(20) unsigned DEFAULT NULL, + `delay_status` varchar(30) DEFAULT NULL, + `stack_amount` smallint(5) unsigned DEFAULT NULL, + `stack_inventory` tinyint(1) unsigned DEFAULT NULL, + `stack_cart` tinyint(1) unsigned DEFAULT NULL, + `stack_storage` tinyint(1) unsigned DEFAULT NULL, + `stack_guildstorage` tinyint(1) unsigned DEFAULT NULL, + `nouse_override` smallint(5) unsigned DEFAULT NULL, + `nouse_sitting` tinyint(1) unsigned DEFAULT NULL, + `trade_override` smallint(5) unsigned DEFAULT NULL, + `trade_nodrop` tinyint(1) unsigned DEFAULT NULL, + `trade_notrade` tinyint(1) unsigned DEFAULT NULL, + `trade_tradepartner` tinyint(1) unsigned DEFAULT NULL, + `trade_nosell` tinyint(1) unsigned DEFAULT NULL, + `trade_nocart` tinyint(1) unsigned DEFAULT NULL, + `trade_nostorage` tinyint(1) unsigned DEFAULT NULL, + `trade_noguildstorage` tinyint(1) unsigned DEFAULT NULL, + `trade_nomail` tinyint(1) unsigned DEFAULT NULL, + `trade_noauction` tinyint(1) unsigned DEFAULT NULL, + `script` text, + `equip_script` text, + `unequip_script` text, + PRIMARY KEY (`id`), + UNIQUE INDEX `UniqueAegisName` (`name_aegis`) +) ENGINE=MyISAM; diff --git a/npc/custom/card_seller.txt b/npc/custom/card_seller.txt index 2dfa0ea415..0af6ea30b9 100644 --- a/npc/custom/card_seller.txt +++ b/npc/custom/card_seller.txt @@ -41,9 +41,9 @@ OnInit: .@item_db$ = "item_db"; } freeloop 1; - .@total = query_sql( "SELECT DISTINCT LEFT( `name_japanese`, 1 ) AS alphabets FROM `"+ .@item_db$ +"` WHERE `type` = " + IT_CARD + " AND `id` IN ( SELECT DISTINCT `dropcardid` FROM `"+ .@mob_db$ +"` WHERE ~(`MODE`) & " + MD_MVP + " ) ORDER BY alphabets;", .@alphabet$ ); + .@total = query_sql( "SELECT DISTINCT LEFT( `name_english`, 1 ) AS alphabets FROM `"+ .@item_db$ +"` WHERE `type` = " + IT_CARD + " AND `id` IN ( SELECT DISTINCT `dropcardid` FROM `"+ .@mob_db$ +"` WHERE ~(`MODE`) & " + MD_MVP + " ) ORDER BY alphabets;", .@alphabet$ ); for ( .@i = 0; .@i < .@total; .@i++ ) { - .@nb = query_sql( "SELECT `"+ .@item_db$ +"`.`id` FROM `"+ .@item_db$ +"` WHERE `type` = " + IT_CARD + " AND LEFT( `name_japanese`, 1 ) = '"+ .@alphabet$[.@i] +"' AND `id` IN ( SELECT DISTINCT `dropcardid` FROM `"+ .@mob_db$ +"` WHERE ~(`MODE`) & " + MD_MVP + " ) ORDER BY `name_japanese` LIMIT 128;", .@id ); + .@nb = query_sql( "SELECT `"+ .@item_db$ +"`.`id` FROM `"+ .@item_db$ +"` WHERE `type` = " + IT_CARD + " AND LEFT( `name_english`, 1 ) = '"+ .@alphabet$[.@i] +"' AND `id` IN ( SELECT DISTINCT `dropcardid` FROM `"+ .@mob_db$ +"` WHERE ~(`MODE`) & " + MD_MVP + " ) ORDER BY `name_english` LIMIT 128;", .@id ); if (.@nb > 0) { .alphabet$[.@size_alphabet++] = .@alphabet$[.@i]; .alphabet_menu$ = .alphabet_menu$ + .@alphabet$[.@i] +" Cards:"; diff --git a/rAthena.sln b/rAthena.sln index c05ec93627..2676123bb4 100644 --- a/rAthena.sln +++ b/rAthena.sln @@ -77,6 +77,12 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "csv2yaml", "src\tool\csv2ya {352B45B3-FE88-4431-9D89-48CF811446DB} = {352B45B3-FE88-4431-9D89-48CF811446DB} EndProjectSection EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "yaml2sql", "src\tool\yaml2sql.vcxproj", "{CDBBB260-B245-44EC-80FB-3F9421885E40}" + ProjectSection(ProjectDependencies) = postProject + {61D6A599-6BED-4154-A9FC-40553BD972E0} = {61D6A599-6BED-4154-A9FC-40553BD972E0} + {352B45B3-FE88-4431-9D89-48CF811446DB} = {352B45B3-FE88-4431-9D89-48CF811446DB} + EndProjectSection +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Win32 = Debug|Win32 @@ -157,6 +163,14 @@ Global {5A9059F2-4933-49A2-BEE6-CC67F66FA070}.Release|Win32.Build.0 = Release|Win32 {5A9059F2-4933-49A2-BEE6-CC67F66FA070}.Release|x64.ActiveCfg = Release|x64 {5A9059F2-4933-49A2-BEE6-CC67F66FA070}.Release|x64.Build.0 = Release|x64 + {CDBBB260-B245-44EC-80FB-3F9421885E40}.Debug|Win32.ActiveCfg = Debug|Win32 + {CDBBB260-B245-44EC-80FB-3F9421885E40}.Debug|Win32.Build.0 = Debug|Win32 + {CDBBB260-B245-44EC-80FB-3F9421885E40}.Debug|x64.ActiveCfg = Debug|x64 + {CDBBB260-B245-44EC-80FB-3F9421885E40}.Debug|x64.Build.0 = Debug|x64 + {CDBBB260-B245-44EC-80FB-3F9421885E40}.Release|Win32.ActiveCfg = Release|Win32 + {CDBBB260-B245-44EC-80FB-3F9421885E40}.Release|Win32.Build.0 = Release|Win32 + {CDBBB260-B245-44EC-80FB-3F9421885E40}.Release|x64.ActiveCfg = Release|x64 + {CDBBB260-B245-44EC-80FB-3F9421885E40}.Release|x64.Build.0 = Release|x64 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -172,6 +186,7 @@ Global {FC4C071B-2C26-4B03-948A-335C94A88B5E} = {9F328FE9-129D-4C0C-820B-BE4AA5996652} {61D6A599-6BED-4154-A9FC-40553BD972E0} = {6ABA1767-6242-4CA0-BA22-A30972DC8918} {5A9059F2-4933-49A2-BEE6-CC67F66FA070} = {9F328FE9-129D-4C0C-820B-BE4AA5996652} + {CDBBB260-B245-44EC-80FB-3F9421885E40} = {9F328FE9-129D-4C0C-820B-BE4AA5996652} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {026DA20F-820C-40AA-983E-0E231EA90AD5} diff --git a/sql-files/README.md b/sql-files/README.md new file mode 100644 index 0000000000..05a38d3df3 --- /dev/null +++ b/sql-files/README.md @@ -0,0 +1,60 @@ +# SQL Imports + +## Explanation of SQL import files + +The files in this directory are basic SQL table building scripts. The contained scripts are needed for initial installs as well as subsequent updates. + +### New Install +--- +For a new install, the following needs to be imported into the 'ragnarok' schema: +Note: The schema name is defined in `conf/inter_athena.conf::map_server_db`. + +* main.sql - Contains tables for normal server usage. +* roulette_default_data.sql - Contains data for the client's roulette game. + +For a new install, the following needs to be imported into the 'log' schema: +Note: The schema name is defined in `conf/inter_athena.conf::log_db_db`. + +* logs.sql - Contains tables for logging of server events. + +If your server is setup to read SQL database data, import the following: +Note: If `conf/inter_athena.conf::use_sql_db` is set to yes continue with these imports else these can be skipped. Not all files have to be imported, only the ones that apply to the same mode as the server being ran. + +* item_cash_db.sql - Used for client's cash shop. +* item_cash_db2.sql - Used for client's cash shop (import). +* item_db.sql - Contains __pre-renewal__ item data. +* item_db2.sql - Contains __pre-renewal__ item data (import). +* item_db_re.sql - Contains __renewal__ item data. +* item_db2_re.sql - Contains __renewal__ item data (import). +* mob_db.sql - Contains __pre-renewal__ mob data. +* mob_db2.sql - Contains __pre-renewal__ mob data (import). +* mob_db_re.sql - Contains __renewal__ mob data. +* mob_db2_re.sql - Contains __renewal__ mob data (import). +* mob_skill_db.sql - Contains __pre-renewal__ mob skill data. +* mob_skill_db2.sql - Contains __pre-renewal__ mob skill data (import). +* mob_skill_db_re.sql - Contains __renewal__ mob skill data. +* mob_skill_db2_re.sql - Contains __renewal__ mob skill data (import). + +### Updates +--- +Over the course of time new features and optimizations will take place. This may require SQL changes to happen. In the `upgrades` folder will be upgrade files with an attached date. +These imports only have to executed if an update has occurred after the initial installation. Many times a SQL error will be displayed on the server console stating the format differs from what is required. + +### Compatibility +--- +The `compatibility` folder contains SQL views which are used with helping control panels or websites grab prevalent data for a table that may have changed structure. + +These are optional imports but website data such as item databases will not work properly when using the new YAML format without these views: + +* item_db_compat.sql - Creates a view for the item_db. +* item_db2_compat.sql - Creates a view for the item_db2 (import). +* item_db_re_compat.sql - Creates a view for the item_db_re. +* item_db2_re_compat.sql - Creates a view for the item_db2_re (import). + +### Tools +--- +The `tools` folder contains some simple adjustments if needed for an administrator's personal preferences. + +* convert_engine_innodb.sql - Converts the SQL table engine setting to InnoDB. +* convert_engine_myiasm.sql - Converts the SQL table engine setting to MyISAM. +* convert_passwords.sql - Converts the login table's password value to MD5. diff --git a/sql-files/compatibility/item_db2_compat.sql b/sql-files/compatibility/item_db2_compat.sql new file mode 100644 index 0000000000..ff8afdcc9e --- /dev/null +++ b/sql-files/compatibility/item_db2_compat.sql @@ -0,0 +1,200 @@ +# +# View structure for view `item_db2_compat` +# + +DROP VIEW IF EXISTS `item_db2_compat`; +CREATE VIEW `item_db2_compat` AS ( + SELECT + `id`, + `name_aegis` AS `name_english`, + `name_english` AS `name_japanese`, + case + when `type` = 'Healing' then + 0 + when `type` = 'Usable' then + 2 + when `type` = 'Etc' then + 3 + when `type` = 'Armor' then + 4 + when `type` = 'Weapon' then + 5 + when `type` = 'Card' then + 6 + when `type` = 'Petegg' then + 7 + when `type` = 'Petarmor' then + 8 + when `type` = 'Ammo' then + 10 + when `type` = 'Delayconsume' then + 11 + when `type` = 'Shadowgear' then + 12 + when `type` = 'Cash' then + 18 + else + 3 -- etc + end as `type`, + `price_buy`, + `price_sell`, + `weight`, + `attack`, + `defense` as `defence`, + `range`, + `slots`, + case + when `job_all` > 0 then + 4294967295 + else + IF( + IF( `job_acolyte` > 0, 16, 0 ) + + IF( `job_alchemist` > 0, 262144, 0 ) + + IF( `job_archer` > 0, 8, 0 ) + + IF( `job_assassin` > 0, 4096, 0 ) + + IF( `job_barddancer` > 0, 524288, 0 ) + + IF( `job_blacksmith` > 0, 1024, 0 ) + + IF( `job_crusader` > 0, 16384, 0 ) + + IF( `job_gunslinger` > 0, 16777216, 0 ) + + IF( `job_hunter` > 0, 2048, 0 ) + + IF( `job_knight` > 0, 128, 0 ) + + IF( `job_mage` > 0, 4, 0 ) + + IF( `job_merchant` > 0, 32, 0 ) + + IF( `job_monk` > 0, 32768, 0 ) + + IF( `job_ninja` > 0, 33554432, 0 ) + + IF( `job_novice` > 0 OR `job_supernovice` > 0, 1, 0 ) + + IF( `job_priest` > 0, 256, 0 ) + + IF( `job_rogue` > 0, 131072, 0 ) + + IF( `job_sage` > 0, 65536, 0 ) + + IF( `job_soullinker` > 0, 8388608, 0 ) + + IF( `job_stargladiator` > 0, 4194304, 0 ) + + IF( `job_swordman` > 0, 2, 0 ) + + IF( `job_taekwon` > 0, 2097152, 0 ) + + IF( `job_thief` > 0, 64, 0 ) + + IF( `job_wizard` > 0, 512, 0 ) > 0 + , + IF( `job_acolyte` > 0, 16, 0 ) + + IF( `job_alchemist` > 0, 262144, 0 ) + + IF( `job_archer` > 0, 8, 0 ) + + IF( `job_assassin` > 0, 4096, 0 ) + + IF( `job_barddancer` > 0, 524288, 0 ) + + IF( `job_blacksmith` > 0, 1024, 0 ) + + IF( `job_crusader` > 0, 16384, 0 ) + + IF( `job_gunslinger` > 0, 16777216, 0 ) + + IF( `job_hunter` > 0, 2048, 0 ) + + IF( `job_knight` > 0, 128, 0 ) + + IF( `job_mage` > 0, 4, 0 ) + + IF( `job_merchant` > 0, 32, 0 ) + + IF( `job_monk` > 0, 32768, 0 ) + + IF( `job_ninja` > 0, 33554432, 0 ) + + IF( `job_novice` > 0 OR `job_supernovice` > 0, 1, 0 ) + + IF( `job_priest` > 0, 256, 0 ) + + IF( `job_rogue` > 0, 131072, 0 ) + + IF( `job_sage` > 0, 65536, 0 ) + + IF( `job_soullinker` > 0, 8388608, 0 ) + + IF( `job_stargladiator` > 0, 4194304, 0 ) + + IF( `job_swordman` > 0, 2, 0 ) + + IF( `job_taekwon` > 0, 2097152, 0 ) + + IF( `job_thief` > 0, 64, 0 ) + + IF( `job_wizard` > 0, 512, 0 ) + , + null + ) + end as `equip_jobs`, + case + when `class_all` > 0 then + 7 + else + IF( + IF( `class_normal` > 0, 1, 0 ) + + IF( `class_upper` > 0, 2, 0 ) + + IF( `class_baby` > 0, 4, 0 ) > 0 + , + IF( `class_normal` > 0, 1, 0 ) + + IF( `class_upper` > 0, 2, 0 ) + + IF( `class_baby` > 0, 4, 0 ) + , + null + ) + end as `equip_upper`, + case + when `gender` = 'Female' then + 0 + when `gender` = 'Male' then + 1 + when `gender` = 'Both' then + 2 + else + null + end as `equip_genders`, + IF( + IF( `location_head_top` > 0, 256, 0 ) + + IF( `location_head_mid` > 0, 512, 0 ) + + IF( `location_head_low` > 0, 1, 0 ) + + IF( `location_armor` > 0, 16, 0 ) + + IF( `location_right_hand` > 0, 2, 0 ) + + IF( `location_left_hand` > 0, 32, 0 ) + + IF( `location_garment` > 0, 4, 0 ) + + IF( `location_shoes` > 0, 64, 0 ) + + IF( `location_right_accessory` > 0, 8, 0 ) + + IF( `location_left_accessory` > 0, 128, 0 ) + + IF( `location_costume_head_top` > 0, 1024, 0 ) + + IF( `location_costume_head_mid` > 0, 2048, 0 ) + + IF( `location_costume_head_low` > 0, 4096, 0 ) + + IF( `location_costume_garment` > 0, 8192, 0 ) + + IF( `location_ammo` > 0, 32768, 0 ) + + IF( `location_shadow_armor` > 0, 65536, 0 ) + + IF( `location_shadow_weapon` > 0, 131072, 0 ) + + IF( `location_shadow_shield` > 0, 262144, 0 ) + + IF( `location_shadow_shoes` > 0, 524288, 0 ) + + IF( `location_shadow_right_accessory` > 0, 1048576, 0 ) + + IF( `location_shadow_left_accessory` > 0, 2097152, 0 ) > 0 + , + IF( `location_head_top` > 0, 256, 0 ) + + IF( `location_head_mid` > 0, 512, 0 ) + + IF( `location_head_low` > 0, 1, 0 ) + + IF( `location_armor` > 0, 16, 0 ) + + IF( `location_right_hand` > 0, 2, 0 ) + + IF( `location_left_hand` > 0, 32, 0 ) + + IF( `location_garment` > 0, 4, 0 ) + + IF( `location_shoes` > 0, 64, 0 ) + + IF( `location_right_accessory` > 0, 8, 0 ) + + IF( `location_left_accessory` > 0, 128, 0 ) + + IF( `location_costume_head_top` > 0, 1024, 0 ) + + IF( `location_costume_head_mid` > 0, 2048, 0 ) + + IF( `location_costume_head_low` > 0, 4096, 0 ) + + IF( `location_costume_garment` > 0, 8192, 0 ) + + IF( `location_ammo` > 0, 32768, 0 ) + + IF( `location_shadow_armor` > 0, 65536, 0 ) + + IF( `location_shadow_weapon` > 0, 131072, 0 ) + + IF( `location_shadow_shield` > 0, 262144, 0 ) + + IF( `location_shadow_shoes` > 0, 524288, 0 ) + + IF( `location_shadow_right_accessory` > 0, 1048576, 0 ) + + IF( `location_shadow_left_accessory` > 0, 2097152, 0 ) + , + null + ) + as `equip_locations`, + `weapon_level`, + case + when `equip_level_min` > 0 and `equip_level_max` > 0 then + CONCAT( `equip_level_min`, ':', `equip_level_max` ) + when `equip_level_min` > 0 then + `equip_level_min` + when `equip_level_min` > 0 then + `equip_level_min` + else + null + end as `equip_level`, + `refineable`, + case + when `view` > 0 then + `view` + else + null + end as `view`, + `script`, + `equip_script`, + `unequip_script` + FROM `item_db2` +); diff --git a/sql-files/compatibility/item_db2_re_compat.sql b/sql-files/compatibility/item_db2_re_compat.sql new file mode 100644 index 0000000000..840d9b642e --- /dev/null +++ b/sql-files/compatibility/item_db2_re_compat.sql @@ -0,0 +1,221 @@ +# +# View structure for view `item_db2_re_compat` +# + +DROP VIEW IF EXISTS `item_db2_re_compat`; +CREATE VIEW `item_db2_re_compat` AS ( + SELECT + `id`, + `name_aegis` AS `name_english`, + `name_english` AS `name_japanese`, + case + when `type` = 'Healing' then + 0 + when `type` = 'Usable' then + 2 + when `type` = 'Etc' then + 3 + when `type` = 'Armor' then + 4 + when `type` = 'Weapon' then + 5 + when `type` = 'Card' then + 6 + when `type` = 'Petegg' then + 7 + when `type` = 'Petarmor' then + 8 + when `type` = 'Ammo' then + 10 + when `type` = 'Delayconsume' then + 11 + when `type` = 'Shadowgear' then + 12 + when `type` = 'Cash' then + 18 + else + 3 -- etc + end as `type`, + `price_buy`, + `price_sell`, + `weight`, + case + when `attack` > 0 and `magic_attack` > 0 then + CONCAT( `attack`, ':', `magic_attack` ) + when `attack` > 0 then + `attack` + when `magic_attack` > 0 then + CONCAT( '0:', `magic_attack` ) + else + null + end as `atk:matk`, + `defense` as `defence`, + `range`, + `slots`, + case + when `job_all` > 0 then + 4294967295 + else + IF( + IF( `job_acolyte` > 0, 16, 0 ) + + IF( `job_alchemist` > 0, 262144, 0 ) + + IF( `job_archer` > 0, 8, 0 ) + + IF( `job_assassin` > 0, 4096, 0 ) + + IF( `job_barddancer` > 0, 524288, 0 ) + + IF( `job_blacksmith` > 0, 1024, 0 ) + + IF( `job_crusader` > 0, 16384, 0 ) + + IF( `job_gunslinger` > 0, 16777216, 0 ) + + IF( `job_hunter` > 0, 2048, 0 ) + + IF( `job_kagerouoboro` > 0, 536870912, 0 ) + + IF( `job_knight` > 0, 128, 0 ) + + IF( `job_mage` > 0, 4, 0 ) + + IF( `job_merchant` > 0, 32, 0 ) + + IF( `job_monk` > 0, 32768, 0 ) + + IF( `job_ninja` > 0, 33554432, 0 ) + + IF( `job_novice` > 0 OR `job_supernovice` > 0, 1, 0 ) + + IF( `job_priest` > 0, 256, 0 ) + + IF( `job_rebellion` > 0, 1073741824, 0 ) + + IF( `job_rogue` > 0, 131072, 0 ) + + IF( `job_sage` > 0, 65536, 0 ) + + IF( `job_soullinker` > 0, 8388608, 0 ) + + IF( `job_stargladiator` > 0, 4194304, 0 ) + + IF( `job_summoner` > 0, 2147483648, 0 ) + + IF( `job_swordman` > 0, 2, 0 ) + + IF( `job_taekwon` > 0, 2097152, 0 ) + + IF( `job_thief` > 0, 64, 0 ) + + IF( `job_wizard` > 0, 512, 0 ) > 0 + , + IF( `job_acolyte` > 0, 16, 0 ) + + IF( `job_alchemist` > 0, 262144, 0 ) + + IF( `job_archer` > 0, 8, 0 ) + + IF( `job_assassin` > 0, 4096, 0 ) + + IF( `job_barddancer` > 0, 524288, 0 ) + + IF( `job_blacksmith` > 0, 1024, 0 ) + + IF( `job_crusader` > 0, 16384, 0 ) + + IF( `job_gunslinger` > 0, 16777216, 0 ) + + IF( `job_hunter` > 0, 2048, 0 ) + + IF( `job_kagerouoboro` > 0, 536870912, 0 ) + + IF( `job_knight` > 0, 128, 0 ) + + IF( `job_mage` > 0, 4, 0 ) + + IF( `job_merchant` > 0, 32, 0 ) + + IF( `job_monk` > 0, 32768, 0 ) + + IF( `job_ninja` > 0, 33554432, 0 ) + + IF( `job_novice` > 0 OR `job_supernovice` > 0, 1, 0 ) + + IF( `job_priest` > 0, 256, 0 ) + + IF( `job_rebellion` > 0, 1073741824, 0 ) + + IF( `job_rogue` > 0, 131072, 0 ) + + IF( `job_sage` > 0, 65536, 0 ) + + IF( `job_soullinker` > 0, 8388608, 0 ) + + IF( `job_stargladiator` > 0, 4194304, 0 ) + + IF( `job_summoner` > 0, 2147483648, 0 ) + + IF( `job_swordman` > 0, 2, 0 ) + + IF( `job_taekwon` > 0, 2097152, 0 ) + + IF( `job_thief` > 0, 64, 0 ) + + IF( `job_wizard` > 0, 512, 0 ) + , + null + ) + end as `equip_jobs`, + case + when `class_all` > 0 then + 63 + else + IF( + IF( `class_normal` > 0, 1, 0 ) + + IF( `class_upper` > 0, 2, 0 ) + + IF( `class_baby` > 0, 4, 0 ) + + IF( `class_third` > 0, 8, 0 ) + + IF( `class_third_upper` > 0, 16, 0 ) + + IF( `class_third_baby` > 0, 32, 0 ) > 0 + , + IF( `class_normal` > 0, 1, 0 ) + + IF( `class_upper` > 0, 2, 0 ) + + IF( `class_baby` > 0, 4, 0 ) + + IF( `class_third` > 0, 8, 0 ) + + IF( `class_third_upper` > 0, 16, 0 ) + + IF( `class_third_baby` > 0, 32, 0 ) + , + null + ) + end as `equip_upper`, + case + when `gender` = 'Female' then + 0 + when `gender` = 'Male' then + 1 + when `gender` = 'Both' then + 2 + else + null + end as `equip_genders`, + IF( + IF( `location_head_top` > 0, 256, 0 ) + + IF( `location_head_mid` > 0, 512, 0 ) + + IF( `location_head_low` > 0, 1, 0 ) + + IF( `location_armor` > 0, 16, 0 ) + + IF( `location_right_hand` > 0, 2, 0 ) + + IF( `location_left_hand` > 0, 32, 0 ) + + IF( `location_garment` > 0, 4, 0 ) + + IF( `location_shoes` > 0, 64, 0 ) + + IF( `location_right_accessory` > 0, 8, 0 ) + + IF( `location_left_accessory` > 0, 128, 0 ) + + IF( `location_costume_head_top` > 0, 1024, 0 ) + + IF( `location_costume_head_mid` > 0, 2048, 0 ) + + IF( `location_costume_head_low` > 0, 4096, 0 ) + + IF( `location_costume_garment` > 0, 8192, 0 ) + + IF( `location_ammo` > 0, 32768, 0 ) + + IF( `location_shadow_armor` > 0, 65536, 0 ) + + IF( `location_shadow_weapon` > 0, 131072, 0 ) + + IF( `location_shadow_shield` > 0, 262144, 0 ) + + IF( `location_shadow_shoes` > 0, 524288, 0 ) + + IF( `location_shadow_right_accessory` > 0, 1048576, 0 ) + + IF( `location_shadow_left_accessory` > 0, 2097152, 0 ) > 0 + , + IF( `location_head_top` > 0, 256, 0 ) + + IF( `location_head_mid` > 0, 512, 0 ) + + IF( `location_head_low` > 0, 1, 0 ) + + IF( `location_armor` > 0, 16, 0 ) + + IF( `location_right_hand` > 0, 2, 0 ) + + IF( `location_left_hand` > 0, 32, 0 ) + + IF( `location_garment` > 0, 4, 0 ) + + IF( `location_shoes` > 0, 64, 0 ) + + IF( `location_right_accessory` > 0, 8, 0 ) + + IF( `location_left_accessory` > 0, 128, 0 ) + + IF( `location_costume_head_top` > 0, 1024, 0 ) + + IF( `location_costume_head_mid` > 0, 2048, 0 ) + + IF( `location_costume_head_low` > 0, 4096, 0 ) + + IF( `location_costume_garment` > 0, 8192, 0 ) + + IF( `location_ammo` > 0, 32768, 0 ) + + IF( `location_shadow_armor` > 0, 65536, 0 ) + + IF( `location_shadow_weapon` > 0, 131072, 0 ) + + IF( `location_shadow_shield` > 0, 262144, 0 ) + + IF( `location_shadow_shoes` > 0, 524288, 0 ) + + IF( `location_shadow_right_accessory` > 0, 1048576, 0 ) + + IF( `location_shadow_left_accessory` > 0, 2097152, 0 ) + , + null + ) + as `equip_locations`, + `weapon_level`, + case + when `equip_level_min` > 0 and `equip_level_max` > 0 then + CONCAT( `equip_level_min`, ':', `equip_level_max` ) + when `equip_level_min` > 0 then + `equip_level_min` + when `equip_level_min` > 0 then + `equip_level_min` + else + null + end as `equip_level`, + `refineable`, + case + when `view` > 0 then + `view` + else + null + end as `view`, + `script`, + `equip_script`, + `unequip_script` + FROM `item_db2_re` +); diff --git a/sql-files/compatibility/item_db_compat.sql b/sql-files/compatibility/item_db_compat.sql new file mode 100644 index 0000000000..aa1c7c1e92 --- /dev/null +++ b/sql-files/compatibility/item_db_compat.sql @@ -0,0 +1,200 @@ +# +# View structure for view `item_db_compat` +# + +DROP VIEW IF EXISTS `item_db_compat`; +CREATE VIEW `item_db_compat` AS ( + SELECT + `id`, + `name_aegis` AS `name_english`, + `name_english` AS `name_japanese`, + case + when `type` = 'Healing' then + 0 + when `type` = 'Usable' then + 2 + when `type` = 'Etc' then + 3 + when `type` = 'Armor' then + 4 + when `type` = 'Weapon' then + 5 + when `type` = 'Card' then + 6 + when `type` = 'Petegg' then + 7 + when `type` = 'Petarmor' then + 8 + when `type` = 'Ammo' then + 10 + when `type` = 'Delayconsume' then + 11 + when `type` = 'Shadowgear' then + 12 + when `type` = 'Cash' then + 18 + else + 3 -- etc + end as `type`, + `price_buy`, + `price_sell`, + `weight`, + `attack`, + `defense` as `defence`, + `range`, + `slots`, + case + when `job_all` > 0 then + 4294967295 + else + IF( + IF( `job_acolyte` > 0, 16, 0 ) + + IF( `job_alchemist` > 0, 262144, 0 ) + + IF( `job_archer` > 0, 8, 0 ) + + IF( `job_assassin` > 0, 4096, 0 ) + + IF( `job_barddancer` > 0, 524288, 0 ) + + IF( `job_blacksmith` > 0, 1024, 0 ) + + IF( `job_crusader` > 0, 16384, 0 ) + + IF( `job_gunslinger` > 0, 16777216, 0 ) + + IF( `job_hunter` > 0, 2048, 0 ) + + IF( `job_knight` > 0, 128, 0 ) + + IF( `job_mage` > 0, 4, 0 ) + + IF( `job_merchant` > 0, 32, 0 ) + + IF( `job_monk` > 0, 32768, 0 ) + + IF( `job_ninja` > 0, 33554432, 0 ) + + IF( `job_novice` > 0 OR `job_supernovice` > 0, 1, 0 ) + + IF( `job_priest` > 0, 256, 0 ) + + IF( `job_rogue` > 0, 131072, 0 ) + + IF( `job_sage` > 0, 65536, 0 ) + + IF( `job_soullinker` > 0, 8388608, 0 ) + + IF( `job_stargladiator` > 0, 4194304, 0 ) + + IF( `job_swordman` > 0, 2, 0 ) + + IF( `job_taekwon` > 0, 2097152, 0 ) + + IF( `job_thief` > 0, 64, 0 ) + + IF( `job_wizard` > 0, 512, 0 ) > 0 + , + IF( `job_acolyte` > 0, 16, 0 ) + + IF( `job_alchemist` > 0, 262144, 0 ) + + IF( `job_archer` > 0, 8, 0 ) + + IF( `job_assassin` > 0, 4096, 0 ) + + IF( `job_barddancer` > 0, 524288, 0 ) + + IF( `job_blacksmith` > 0, 1024, 0 ) + + IF( `job_crusader` > 0, 16384, 0 ) + + IF( `job_gunslinger` > 0, 16777216, 0 ) + + IF( `job_hunter` > 0, 2048, 0 ) + + IF( `job_knight` > 0, 128, 0 ) + + IF( `job_mage` > 0, 4, 0 ) + + IF( `job_merchant` > 0, 32, 0 ) + + IF( `job_monk` > 0, 32768, 0 ) + + IF( `job_ninja` > 0, 33554432, 0 ) + + IF( `job_novice` > 0 OR `job_supernovice` > 0, 1, 0 ) + + IF( `job_priest` > 0, 256, 0 ) + + IF( `job_rogue` > 0, 131072, 0 ) + + IF( `job_sage` > 0, 65536, 0 ) + + IF( `job_soullinker` > 0, 8388608, 0 ) + + IF( `job_stargladiator` > 0, 4194304, 0 ) + + IF( `job_swordman` > 0, 2, 0 ) + + IF( `job_taekwon` > 0, 2097152, 0 ) + + IF( `job_thief` > 0, 64, 0 ) + + IF( `job_wizard` > 0, 512, 0 ) + , + null + ) + end as `equip_jobs`, + case + when `class_all` > 0 then + 7 + else + IF( + IF( `class_normal` > 0, 1, 0 ) + + IF( `class_upper` > 0, 2, 0 ) + + IF( `class_baby` > 0, 4, 0 ) > 0 + , + IF( `class_normal` > 0, 1, 0 ) + + IF( `class_upper` > 0, 2, 0 ) + + IF( `class_baby` > 0, 4, 0 ) + , + null + ) + end as `equip_upper`, + case + when `gender` = 'Female' then + 0 + when `gender` = 'Male' then + 1 + when `gender` = 'Both' then + 2 + else + null + end as `equip_genders`, + IF( + IF( `location_head_top` > 0, 256, 0 ) + + IF( `location_head_mid` > 0, 512, 0 ) + + IF( `location_head_low` > 0, 1, 0 ) + + IF( `location_armor` > 0, 16, 0 ) + + IF( `location_right_hand` > 0, 2, 0 ) + + IF( `location_left_hand` > 0, 32, 0 ) + + IF( `location_garment` > 0, 4, 0 ) + + IF( `location_shoes` > 0, 64, 0 ) + + IF( `location_right_accessory` > 0, 8, 0 ) + + IF( `location_left_accessory` > 0, 128, 0 ) + + IF( `location_costume_head_top` > 0, 1024, 0 ) + + IF( `location_costume_head_mid` > 0, 2048, 0 ) + + IF( `location_costume_head_low` > 0, 4096, 0 ) + + IF( `location_costume_garment` > 0, 8192, 0 ) + + IF( `location_ammo` > 0, 32768, 0 ) + + IF( `location_shadow_armor` > 0, 65536, 0 ) + + IF( `location_shadow_weapon` > 0, 131072, 0 ) + + IF( `location_shadow_shield` > 0, 262144, 0 ) + + IF( `location_shadow_shoes` > 0, 524288, 0 ) + + IF( `location_shadow_right_accessory` > 0, 1048576, 0 ) + + IF( `location_shadow_left_accessory` > 0, 2097152, 0 ) > 0 + , + IF( `location_head_top` > 0, 256, 0 ) + + IF( `location_head_mid` > 0, 512, 0 ) + + IF( `location_head_low` > 0, 1, 0 ) + + IF( `location_armor` > 0, 16, 0 ) + + IF( `location_right_hand` > 0, 2, 0 ) + + IF( `location_left_hand` > 0, 32, 0 ) + + IF( `location_garment` > 0, 4, 0 ) + + IF( `location_shoes` > 0, 64, 0 ) + + IF( `location_right_accessory` > 0, 8, 0 ) + + IF( `location_left_accessory` > 0, 128, 0 ) + + IF( `location_costume_head_top` > 0, 1024, 0 ) + + IF( `location_costume_head_mid` > 0, 2048, 0 ) + + IF( `location_costume_head_low` > 0, 4096, 0 ) + + IF( `location_costume_garment` > 0, 8192, 0 ) + + IF( `location_ammo` > 0, 32768, 0 ) + + IF( `location_shadow_armor` > 0, 65536, 0 ) + + IF( `location_shadow_weapon` > 0, 131072, 0 ) + + IF( `location_shadow_shield` > 0, 262144, 0 ) + + IF( `location_shadow_shoes` > 0, 524288, 0 ) + + IF( `location_shadow_right_accessory` > 0, 1048576, 0 ) + + IF( `location_shadow_left_accessory` > 0, 2097152, 0 ) + , + null + ) + as `equip_locations`, + `weapon_level`, + case + when `equip_level_min` > 0 and `equip_level_max` > 0 then + CONCAT( `equip_level_min`, ':', `equip_level_max` ) + when `equip_level_min` > 0 then + `equip_level_min` + when `equip_level_min` > 0 then + `equip_level_min` + else + null + end as `equip_level`, + `refineable`, + case + when `view` > 0 then + `view` + else + null + end as `view`, + `script`, + `equip_script`, + `unequip_script` + FROM `item_db` +); diff --git a/sql-files/compatibility/item_db_re_compat.sql b/sql-files/compatibility/item_db_re_compat.sql new file mode 100644 index 0000000000..238cfc7a0f --- /dev/null +++ b/sql-files/compatibility/item_db_re_compat.sql @@ -0,0 +1,221 @@ +# +# View structure for view `item_db_re_compat` +# + +DROP VIEW IF EXISTS `item_db_re_compat`; +CREATE VIEW `item_db_re_compat` AS ( + SELECT + `id`, + `name_aegis` AS `name_english`, + `name_english` AS `name_japanese`, + case + when `type` = 'Healing' then + 0 + when `type` = 'Usable' then + 2 + when `type` = 'Etc' then + 3 + when `type` = 'Armor' then + 4 + when `type` = 'Weapon' then + 5 + when `type` = 'Card' then + 6 + when `type` = 'Petegg' then + 7 + when `type` = 'Petarmor' then + 8 + when `type` = 'Ammo' then + 10 + when `type` = 'Delayconsume' then + 11 + when `type` = 'Shadowgear' then + 12 + when `type` = 'Cash' then + 18 + else + 3 -- etc + end as `type`, + `price_buy`, + `price_sell`, + `weight`, + case + when `attack` > 0 and `magic_attack` > 0 then + CONCAT( `attack`, ':', `magic_attack` ) + when `attack` > 0 then + `attack` + when `magic_attack` > 0 then + CONCAT( '0:', `magic_attack` ) + else + null + end as `atk:matk`, + `defense` as `defence`, + `range`, + `slots`, + case + when `job_all` > 0 then + 4294967295 + else + IF( + IF( `job_acolyte` > 0, 16, 0 ) + + IF( `job_alchemist` > 0, 262144, 0 ) + + IF( `job_archer` > 0, 8, 0 ) + + IF( `job_assassin` > 0, 4096, 0 ) + + IF( `job_barddancer` > 0, 524288, 0 ) + + IF( `job_blacksmith` > 0, 1024, 0 ) + + IF( `job_crusader` > 0, 16384, 0 ) + + IF( `job_gunslinger` > 0, 16777216, 0 ) + + IF( `job_hunter` > 0, 2048, 0 ) + + IF( `job_kagerouoboro` > 0, 536870912, 0 ) + + IF( `job_knight` > 0, 128, 0 ) + + IF( `job_mage` > 0, 4, 0 ) + + IF( `job_merchant` > 0, 32, 0 ) + + IF( `job_monk` > 0, 32768, 0 ) + + IF( `job_ninja` > 0, 33554432, 0 ) + + IF( `job_novice` > 0 OR `job_supernovice` > 0, 1, 0 ) + + IF( `job_priest` > 0, 256, 0 ) + + IF( `job_rebellion` > 0, 1073741824, 0 ) + + IF( `job_rogue` > 0, 131072, 0 ) + + IF( `job_sage` > 0, 65536, 0 ) + + IF( `job_soullinker` > 0, 8388608, 0 ) + + IF( `job_stargladiator` > 0, 4194304, 0 ) + + IF( `job_summoner` > 0, 2147483648, 0 ) + + IF( `job_swordman` > 0, 2, 0 ) + + IF( `job_taekwon` > 0, 2097152, 0 ) + + IF( `job_thief` > 0, 64, 0 ) + + IF( `job_wizard` > 0, 512, 0 ) > 0 + , + IF( `job_acolyte` > 0, 16, 0 ) + + IF( `job_alchemist` > 0, 262144, 0 ) + + IF( `job_archer` > 0, 8, 0 ) + + IF( `job_assassin` > 0, 4096, 0 ) + + IF( `job_barddancer` > 0, 524288, 0 ) + + IF( `job_blacksmith` > 0, 1024, 0 ) + + IF( `job_crusader` > 0, 16384, 0 ) + + IF( `job_gunslinger` > 0, 16777216, 0 ) + + IF( `job_hunter` > 0, 2048, 0 ) + + IF( `job_kagerouoboro` > 0, 536870912, 0 ) + + IF( `job_knight` > 0, 128, 0 ) + + IF( `job_mage` > 0, 4, 0 ) + + IF( `job_merchant` > 0, 32, 0 ) + + IF( `job_monk` > 0, 32768, 0 ) + + IF( `job_ninja` > 0, 33554432, 0 ) + + IF( `job_novice` > 0 OR `job_supernovice` > 0, 1, 0 ) + + IF( `job_priest` > 0, 256, 0 ) + + IF( `job_rebellion` > 0, 1073741824, 0 ) + + IF( `job_rogue` > 0, 131072, 0 ) + + IF( `job_sage` > 0, 65536, 0 ) + + IF( `job_soullinker` > 0, 8388608, 0 ) + + IF( `job_stargladiator` > 0, 4194304, 0 ) + + IF( `job_summoner` > 0, 2147483648, 0 ) + + IF( `job_swordman` > 0, 2, 0 ) + + IF( `job_taekwon` > 0, 2097152, 0 ) + + IF( `job_thief` > 0, 64, 0 ) + + IF( `job_wizard` > 0, 512, 0 ) + , + null + ) + end as `equip_jobs`, + case + when `class_all` > 0 then + 63 + else + IF( + IF( `class_normal` > 0, 1, 0 ) + + IF( `class_upper` > 0, 2, 0 ) + + IF( `class_baby` > 0, 4, 0 ) + + IF( `class_third` > 0, 8, 0 ) + + IF( `class_third_upper` > 0, 16, 0 ) + + IF( `class_third_baby` > 0, 32, 0 ) > 0 + , + IF( `class_normal` > 0, 1, 0 ) + + IF( `class_upper` > 0, 2, 0 ) + + IF( `class_baby` > 0, 4, 0 ) + + IF( `class_third` > 0, 8, 0 ) + + IF( `class_third_upper` > 0, 16, 0 ) + + IF( `class_third_baby` > 0, 32, 0 ) + , + null + ) + end as `equip_upper`, + case + when `gender` = 'Female' then + 0 + when `gender` = 'Male' then + 1 + when `gender` = 'Both' then + 2 + else + null + end as `equip_genders`, + IF( + IF( `location_head_top` > 0, 256, 0 ) + + IF( `location_head_mid` > 0, 512, 0 ) + + IF( `location_head_low` > 0, 1, 0 ) + + IF( `location_armor` > 0, 16, 0 ) + + IF( `location_right_hand` > 0, 2, 0 ) + + IF( `location_left_hand` > 0, 32, 0 ) + + IF( `location_garment` > 0, 4, 0 ) + + IF( `location_shoes` > 0, 64, 0 ) + + IF( `location_right_accessory` > 0, 8, 0 ) + + IF( `location_left_accessory` > 0, 128, 0 ) + + IF( `location_costume_head_top` > 0, 1024, 0 ) + + IF( `location_costume_head_mid` > 0, 2048, 0 ) + + IF( `location_costume_head_low` > 0, 4096, 0 ) + + IF( `location_costume_garment` > 0, 8192, 0 ) + + IF( `location_ammo` > 0, 32768, 0 ) + + IF( `location_shadow_armor` > 0, 65536, 0 ) + + IF( `location_shadow_weapon` > 0, 131072, 0 ) + + IF( `location_shadow_shield` > 0, 262144, 0 ) + + IF( `location_shadow_shoes` > 0, 524288, 0 ) + + IF( `location_shadow_right_accessory` > 0, 1048576, 0 ) + + IF( `location_shadow_left_accessory` > 0, 2097152, 0 ) > 0 + , + IF( `location_head_top` > 0, 256, 0 ) + + IF( `location_head_mid` > 0, 512, 0 ) + + IF( `location_head_low` > 0, 1, 0 ) + + IF( `location_armor` > 0, 16, 0 ) + + IF( `location_right_hand` > 0, 2, 0 ) + + IF( `location_left_hand` > 0, 32, 0 ) + + IF( `location_garment` > 0, 4, 0 ) + + IF( `location_shoes` > 0, 64, 0 ) + + IF( `location_right_accessory` > 0, 8, 0 ) + + IF( `location_left_accessory` > 0, 128, 0 ) + + IF( `location_costume_head_top` > 0, 1024, 0 ) + + IF( `location_costume_head_mid` > 0, 2048, 0 ) + + IF( `location_costume_head_low` > 0, 4096, 0 ) + + IF( `location_costume_garment` > 0, 8192, 0 ) + + IF( `location_ammo` > 0, 32768, 0 ) + + IF( `location_shadow_armor` > 0, 65536, 0 ) + + IF( `location_shadow_weapon` > 0, 131072, 0 ) + + IF( `location_shadow_shield` > 0, 262144, 0 ) + + IF( `location_shadow_shoes` > 0, 524288, 0 ) + + IF( `location_shadow_right_accessory` > 0, 1048576, 0 ) + + IF( `location_shadow_left_accessory` > 0, 2097152, 0 ) + , + null + ) + as `equip_locations`, + `weapon_level`, + case + when `equip_level_min` > 0 and `equip_level_max` > 0 then + CONCAT( `equip_level_min`, ':', `equip_level_max` ) + when `equip_level_min` > 0 then + `equip_level_min` + when `equip_level_min` > 0 then + `equip_level_min` + else + null + end as `equip_level`, + `refineable`, + case + when `view` > 0 then + `view` + else + null + end as `view`, + `script`, + `equip_script`, + `unequip_script` + FROM `item_db_re` +); diff --git a/sql-files/item_db.sql b/sql-files/item_db.sql deleted file mode 100644 index 86890da8ce..0000000000 --- a/sql-files/item_db.sql +++ /dev/null @@ -1,6626 +0,0 @@ -# -# Table structure for table `item_db` -# - -DROP TABLE IF EXISTS `item_db`; -CREATE TABLE `item_db` ( - `id` int(10) unsigned NOT NULL DEFAULT '0', - `name_english` varchar(50) NOT NULL DEFAULT '', - `name_japanese` varchar(50) NOT NULL DEFAULT '', - `type` tinyint(2) unsigned NOT NULL DEFAULT '0', - `price_buy` mediumint(8) unsigned DEFAULT NULL, - `price_sell` mediumint(8) unsigned DEFAULT NULL, - `weight` smallint(5) unsigned NOT NULL DEFAULT '0', - `attack` smallint(5) unsigned DEFAULT NULL, - `defence` smallint(5) unsigned DEFAULT NULL, - `range` tinyint(2) unsigned DEFAULT NULL, - `slots` tinyint(2) unsigned DEFAULT NULL, - `equip_jobs` bigint(20) unsigned DEFAULT NULL, - `equip_upper` tinyint(2) unsigned DEFAULT NULL, - `equip_genders` tinyint(1) unsigned DEFAULT NULL, - `equip_locations` mediumint(7) unsigned DEFAULT NULL, - `weapon_level` tinyint(1) unsigned DEFAULT NULL, - `equip_level` tinyint(3) unsigned DEFAULT NULL, - `refineable` tinyint(1) unsigned DEFAULT NULL, - `view` smallint(5) unsigned DEFAULT NULL, - `script` text, - `equip_script` text, - `unequip_script` text, - PRIMARY KEY (`id`), - UNIQUE INDEX `UniqueAegisName` (`name_english`) -) ENGINE=MyISAM; - -# Items Database -# -# Structure of Database: -#REPLACE INTO `item_db` VALUES ( ID,'AegisName','Name',Type,Buy,Sell,Weight,ATK,DEF,Range,Slots,Job,Class,Gender,Loc,wLV,eLV[:maxLevel],Refineable,View,'Script','OnEquip_Script','OnUnequip_Script'); -# -# Healing Items -#============================================================= -REPLACE INTO `item_db` VALUES (501,'Red_Potion','Red Potion',0,50,NULL,70,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(45,65),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (502,'Orange_Potion','Orange Potion',0,200,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(105,145),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (503,'Yellow_Potion','Yellow Potion',0,550,NULL,130,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(175,235),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (504,'White_Potion','White Potion',0,1200,NULL,150,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(325,405),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (505,'Blue_Potion','Blue Potion',0,5000,NULL,150,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal 0,rand(40,60);',NULL,NULL); -REPLACE INTO `item_db` VALUES (506,'Green_Potion','Green Potion',0,40,NULL,70,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion;',NULL,NULL); -REPLACE INTO `item_db` VALUES (507,'Red_Herb','Red Herb',0,18,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(18,28),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (508,'Yellow_Herb','Yellow Herb',0,40,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(38,58),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (509,'White_Herb','White Herb',0,120,NULL,70,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(75,115),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (510,'Blue_Herb','Blue Herb',0,60,NULL,70,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal 0,rand(15,30);',NULL,NULL); -REPLACE INTO `item_db` VALUES (511,'Green_Herb','Green Herb',0,10,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_end SC_Poison;',NULL,NULL); -REPLACE INTO `item_db` VALUES (512,'Apple','Apple',0,15,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(16,22),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (513,'Banana','Banana',0,15,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(17,21),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (514,'Grape','Grape',0,200,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal 0,rand(10,15);',NULL,NULL); -REPLACE INTO `item_db` VALUES (515,'Carrot','Carrot',0,15,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(18,20),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (516,'Sweet_Potato','Potato',0,15,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(15,23),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (517,'Meat','Meat',0,50,NULL,150,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(70,100),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (518,'Honey','Honey',0,500,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(70,100),rand(20,40);',NULL,NULL); -REPLACE INTO `item_db` VALUES (519,'Milk','Milk',0,25,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(27,37),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (520,'Leaflet_Of_Hinal','Hinalle Leaflet',0,150,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(175,235),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (521,'Leaflet_Of_Aloe','Aloe Leaflet',0,360,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(325,405),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (522,'Fruit_Of_Mastela','Mastela Fruit',0,8500,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(400,600),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (523,'Holy_Water','Holy Water',0,20,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_end SC_Curse;',NULL,NULL); -REPLACE INTO `item_db` VALUES (525,'Panacea','Panacea',0,500,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination;',NULL,NULL); -REPLACE INTO `item_db` VALUES (526,'Royal_Jelly','Royal Jelly',0,7000,NULL,150,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(325,405),rand(40,60); sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination;',NULL,NULL); -REPLACE INTO `item_db` VALUES (528,'Monster\'s_Feed','Monster\'s Feed',0,60,NULL,150,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(72,108),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (529,'Candy','Candy',0,10,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(45,65),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (530,'Candy_Striper','Candy Cane',0,20,NULL,40,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(105,145),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (531,'Apple_Juice','Apple Juice',0,20,NULL,40,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(25,35),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (532,'Banana_Juice','Banana Juice',0,20,NULL,40,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(26,34),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (533,'Grape_Juice','Grape Juice',0,250,NULL,40,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal 0,rand(15,25);',NULL,NULL); -REPLACE INTO `item_db` VALUES (534,'Carrot_Juice','Carrot Juice',0,20,NULL,40,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(27,33),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (535,'Pumpkin','Pumpkin',0,15,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal 19,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (536,'Ice_Cream','Ice Cream',0,150,NULL,80,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(105,145),0; sc_start SC_Freeze,10000,0,2500,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (537,'Pet_Food','Pet Food',0,1000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(50,90),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (538,'Well_Baked_Cookie','Well-baked Cookie',0,1000,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(160,200),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (539,'Piece_Of_Cake','Piece of Cake',0,3000,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(270,330),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (540,'Falcon\'s_Feed','Falcon Food',0,2000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(185,225),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (541,'Pecopeco\'s_Feed','PecoPeco Food',0,3000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(325,405),0;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (542,'Festive_Cookie','Festival Cookie',0,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(325,405),0;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (543,'Festive_Rainbow_Cake','Festival Rainbow Cake',0,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(325,405),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (544,'Fish_Slice','Raw Fish',0,20,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(25,60),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (545,'Red_Slim_Potion','Condensed Red Potion',0,150,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(45,65),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (546,'Yellow_Slim_Potion','Condensed Yellow Potion',0,600,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(175,235),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (547,'White_Slim_Potion','Condensed White Potion',0,1650,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(325,405),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (548,'Cheese','Cheese',0,2800,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal 0,rand(10,15);',NULL,NULL); -REPLACE INTO `item_db` VALUES (549,'Nice_Sweet_Potato','Yam',0,180,NULL,80,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(50,100),0; sc_start SC_Stun,3000,0,1500,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (550,'Popped_Rice','Rice Cake',0,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(10,15),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (551,'Shusi','Sushi',0,1,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(50,60),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (552,'KETUPAT','Ketupat',0,1,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(70,90),rand(20,30);',NULL,NULL); -REPLACE INTO `item_db` VALUES (553,'Bun','Bao',0,1,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(35,70),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (554,'Mojji','Mochi',0,400,NULL,80,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(105,145),0; sc_start SC_Stun,3000,0; sc_start SC_Blind,2000,0,1500,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (555,'Rice_Cake','Traditional Rice Cake',0,100,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(105,145),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (556,'Long_Rice_Cake','Rice Cake Stick',0,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(20,25),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (557,'Hash_Rice_Cake','Neatly Sliced Rice Cake',0,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(25,30),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (558,'Chocolate','Chocolate',0,1,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal 1,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (559,'HandMade_Chocolate','Hand-made Chocolate',0,1,NULL,80,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal 50,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (560,'HandMade_Chocolate_','Handmade White Chocolate',0,5000,NULL,80,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal 50,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (561,'White_Chocolate','White Chocolate',0,5000,NULL,80,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal 50,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (562,'Pizza','Doublecrust Swiss Fondue',0,100,NULL,150,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(70,100),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (563,'Pizza_01','Doublecrust Swiss Fondue',0,1200,NULL,150,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(375,445),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (564,'Rice_Ball','Rice Ball',0,1,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal 200,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (565,'Vita500_Bottle','Vita500',0,580,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(142,274),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (566,'Tomyumkung','Tom Yum Goong',0,10000,NULL,150,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(244,350),rand(10,30); sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination;',NULL,NULL); -REPLACE INTO `item_db` VALUES (567,'Prawn','Shrimp',0,500,NULL,40,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(117,192),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (568,'Lemon','Lemon',0,60,NULL,40,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal 0,rand(10,20);',NULL,NULL); -REPLACE INTO `item_db` VALUES (569,'Novice_Potion','Novice Potion',0,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(22,33),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (570,'Lucky_Candy','Lucky Candy',0,10,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(45,65),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (571,'Lucky_Candy_Cane','Lucky Candy Cane',0,20,NULL,40,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(105,145),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (572,'Lucky_Cookie','Lucky Cookie',0,1000,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(160,200),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (573,'Chocolate_Drink','Chocolate Drink',0,7000,NULL,150,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(330,410),rand(45,65); sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination;',NULL,NULL); -REPLACE INTO `item_db` VALUES (574,'Egg','Egg',0,20,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(33,42),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (575,'Piece_Of_Cake_','2nd Anniversary Cake',0,10,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(270,330),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (576,'Prickly_Fruit','Prickly Fruit',0,540,NULL,60,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(150,300),rand(20,30);',NULL,NULL); -REPLACE INTO `item_db` VALUES (577,'Grain','Bag of Grain',0,200,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(60,70),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (578,'Strawberry','Strawberry',0,200,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal 0,rand(16,28);',NULL,NULL); -REPLACE INTO `item_db` VALUES (579,'Delicious_Fish','Fresh Fish',0,250,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(100,150),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (580,'Bread','Bread',0,150,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(50,90),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (581,'Mushroom','Edible Mushroom',0,40,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(20,30),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (582,'Orange','Orange',0,300,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(10,20),rand(10,20);',NULL,NULL); -REPLACE INTO `item_db` VALUES (583,'KETUPAT_','Ketupat Sayur',0,7000,NULL,150,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(325,405),rand(40,60); sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination;',NULL,NULL); -REPLACE INTO `item_db` VALUES (584,'Fish_Ball_Soup','Fish Cake Soup',0,100,NULL,60,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(40,70),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (585,'Wurst','Brusti',11,2,NULL,40,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(15,20),0; itemskill "PR_MAGNIFICAT",3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (586,'Mother\'s_Cake','Mother\'s Cake',0,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(325,405),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (587,'Prickly_Fruit_','Red Prickly Fruit',0,880,NULL,60,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(270,330),rand(20,30);',NULL,NULL); -REPLACE INTO `item_db` VALUES (588,'Spaghetti','Spaghetti',0,100,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(40,70),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (589,'Pizza_02','Pizza',0,1200,NULL,150,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(375,445),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (590,'Brezel_','Pretzel',0,2,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(50,90),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (591,'Caviar_Pancake','Caviar Pancake',0,0,NULL,150,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(325,405),rand(40,60); sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination;',NULL,NULL); -REPLACE INTO `item_db` VALUES (592,'Jam_Pancake','Jam Pancake',0,0,NULL,150,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(325,405),rand(40,60); sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination;',NULL,NULL); -REPLACE INTO `item_db` VALUES (593,'Honey_Pancake','Honey Pancake',0,0,NULL,150,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(325,405),rand(40,60); sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination;',NULL,NULL); -REPLACE INTO `item_db` VALUES (594,'Sour_Cream_Pancake','Sour-Cream Pancake',0,0,NULL,150,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(325,405),rand(40,60); sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination;',NULL,NULL); -REPLACE INTO `item_db` VALUES (595,'Mushroom_Pancake','Mushroom Pancake',0,0,NULL,150,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(325,405),rand(40,60); sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination;',NULL,NULL); -REPLACE INTO `item_db` VALUES (596,'Cute_Strawberry_Choco','Cute Strawberry-Choco',0,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal 0,rand(1,100);',NULL,NULL); -REPLACE INTO `item_db` VALUES (597,'Lovely_Choco_Tart','Lovely Choco-Tart',0,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(10,400),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (598,'Light_Red_Pot','Light Red Potion',0,50,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(45,65),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (599,'Light_Orange_Pot','Light Orange Potion',0,200,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(105,145),0;',NULL,NULL); -# Usable Items -#=================================================================== -REPLACE INTO `item_db` VALUES (601,'Wing_Of_Fly','Fly Wing',11,60,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "AL_TELEPORT",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (602,'Wing_Of_Butterfly','Butterfly Wing',11,300,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "AL_TELEPORT",3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (603,'Old_Blue_Box','Old Blue Box',2,10000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_BlueBox),1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (604,'Branch_Of_Dead_Tree','Dead Branch',2,50,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'monster "this",-1,-1,"--ja--",-1,1,"";',NULL,NULL); -REPLACE INTO `item_db` VALUES (605,'Anodyne','Anodyne',11,2000,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "SM_ENDURE",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (606,'Aloebera','Aloevera',11,1500,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "SM_SELFPROVOKE",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (607,'Yggdrasilberry','Yggdrasil Berry',0,5000,NULL,300,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal 100,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (608,'Seed_Of_Yggdrasil','Yggdrasil Seed',0,5000,NULL,300,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal 50,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (609,'Amulet','Amulet',2,100,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (610,'Leaf_Of_Yggdrasil','Yggdrasil Leaf',11,4000,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "ALL_RESURRECTION",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (611,'Spectacles','Magnifier',11,40,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "MC_IDENTIFY",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (612,'Portable_Furnace','Mini Furnace',2,150,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'produce 21;',NULL,NULL); -REPLACE INTO `item_db` VALUES (613,'Iron_Hammer','Iron Hammer',2,1000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'produce 1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (614,'Golden_Hammer','Golden Hammer',2,3000,NULL,300,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'produce 2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (615,'Oridecon_Hammer','Oridecon Hammer',2,5000,NULL,400,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'produce 3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (616,'Old_Card_Album','Old Card Album',2,10000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_CardAlbum),1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (617,'Old_Violet_Box','Old Purple Box',2,10000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_VioletBox),1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (618,'Worn_Out_Scroll','Worn Out Scroll',2,50,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (619,'Unripe_Apple','Unripe Apple',2,1000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1002;',NULL,NULL); -REPLACE INTO `item_db` VALUES (620,'Orange_Juice','Orange Juice',2,1500,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1113;',NULL,NULL); -REPLACE INTO `item_db` VALUES (621,'Bitter_Herb','Bitter Herb',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1031;',NULL,NULL); -REPLACE INTO `item_db` VALUES (622,'Rainbow_Carrot','Rainbow Carrot',2,2500,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1063;',NULL,NULL); -REPLACE INTO `item_db` VALUES (623,'Earthworm_The_Dude','Earthworm the Dude',2,4000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1049;',NULL,NULL); -REPLACE INTO `item_db` VALUES (624,'Rotten_Fish','Rotten Fish',2,2500,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1011;',NULL,NULL); -REPLACE INTO `item_db` VALUES (625,'Lusty_Iron','Rusty Iron',2,100,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1042;',NULL,NULL); -REPLACE INTO `item_db` VALUES (626,'Monster_Juice','Monster Juice',2,1500,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1035;',NULL,NULL); -REPLACE INTO `item_db` VALUES (627,'Sweet_Milk','Sweet Milk',2,7000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1167;',NULL,NULL); -REPLACE INTO `item_db` VALUES (628,'Well_Dried_Bone','Well-Dried Bone',2,10000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1107;',NULL,NULL); -REPLACE INTO `item_db` VALUES (629,'Singing_Flower','Singing Flower',2,300,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1052;',NULL,NULL); -REPLACE INTO `item_db` VALUES (630,'Dew_Laden_Moss','Dew Laden Moss',2,10,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1014;',NULL,NULL); -REPLACE INTO `item_db` VALUES (631,'Deadly_Noxious_Herb','Deadly Noxious Herb',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1077;',NULL,NULL); -REPLACE INTO `item_db` VALUES (632,'Fatty_Chubby_Earthworm','Fatty Chubby Earthworm',2,5000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1019;',NULL,NULL); -REPLACE INTO `item_db` VALUES (633,'Baked_Yam','Sweet Potato',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1056;',NULL,NULL); -REPLACE INTO `item_db` VALUES (634,'Tropical_Banana','Tropical Banana',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1057;',NULL,NULL); -REPLACE INTO `item_db` VALUES (635,'Horror_Of_Tribe','Orc Trophy',2,300,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1023;',NULL,NULL); -REPLACE INTO `item_db` VALUES (636,'No_Recipient','No Recipient',2,100,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1026;',NULL,NULL); -REPLACE INTO `item_db` VALUES (637,'Old_Broom','Old Broom',2,350,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1110;',NULL,NULL); -REPLACE INTO `item_db` VALUES (638,'Silver_Knife_Of_Chaste','Silver Knife of Chastity',2,12000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1170;',NULL,NULL); -REPLACE INTO `item_db` VALUES (639,'Armlet_Of_Obedience','Armlet of Obedience',2,18000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1029;',NULL,NULL); -REPLACE INTO `item_db` VALUES (640,'Shining_Stone','Shining Stone',2,3000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1155;',NULL,NULL); -REPLACE INTO `item_db` VALUES (641,'Contracts_In_Shadow','Contract in Shadow',2,100,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1109;',NULL,NULL); -REPLACE INTO `item_db` VALUES (642,'Book_Of_Devil','Book of the Devil',2,1800,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1101;',NULL,NULL); -REPLACE INTO `item_db` VALUES (643,'Pet_Incubator','Pet Incubator',2,3000,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'bpet;',NULL,NULL); -REPLACE INTO `item_db` VALUES (644,'Gift_Box','Gift Box',2,1000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_GiftBox),1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (645,'Center_Potion','Concentration Potion',2,800,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_ASPDPOTION0,1800000,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (656,'Awakening_Potion','Awakening Potion',2,1500,NULL,150,NULL,NULL,NULL,NULL,0xFFF7FEEF,7,2,NULL,NULL,40,NULL,NULL,'sc_start SC_ASPDPOTION1,1800000,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (657,'Berserk_Potion','Berserk Potion',2,3000,NULL,200,NULL,NULL,NULL,NULL,0x41E646A6,7,2,NULL,NULL,85,NULL,NULL,'sc_start SC_ASPDPOTION2,1800000,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (658,'Union_Of_Tribe','Union of Tribe',2,2,NULL,500,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'guildgetexp rand(600000,1200000);',NULL,NULL); -REPLACE INTO `item_db` VALUES (659,'Heart_Of_Her','Her Heart',2,500,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1188;',NULL,NULL); -REPLACE INTO `item_db` VALUES (660,'Prohibition_Red_Candle','Forbidden Red Candle',2,20000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1200;',NULL,NULL); -REPLACE INTO `item_db` VALUES (661,'Sway_Apron','Soft Apron',2,20000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1275;',NULL,NULL); -REPLACE INTO `item_db` VALUES (662,'Inspector_Certificate','Authoritative Badge',2,1450,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_SPEEDUP0,180000,25;',NULL,NULL); -REPLACE INTO `item_db` VALUES (663,'Korea_Rice_Cake','Korean Rice Cake',0,1,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal 10,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (664,'Gift_Box_1','Gift Box',2,1000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_GiftBox_1),1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (665,'Gift_Box_2','Gift Box',2,1000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_GiftBox_2),1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (666,'Gift_Box_3','Gift Box',2,1000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_GiftBox_3),1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (667,'Gift_Box_4','Gift Box',2,1000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_GiftBox_4),1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (668,'Handsei','Red Envelope',2,0,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'set Zeny,Zeny+rand(1000,10000);',NULL,NULL); -REPLACE INTO `item_db` VALUES (669,'Rice_Cake_Soup','Tempting Rice-Cake Soup',0,500,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal -100,-100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (670,'Gold_Coin_Moneybag','Bag of Gold Coins',3,100000,NULL,400,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (671,'Gold_Coin','Gold Coin',3,10000,NULL,40,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (672,'Copper_Coin_Moneybag','Bag of Bronze Coins',3,1000,NULL,400,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (673,'Copper_Coin','Bronze Coin',3,100,NULL,40,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (674,'Mithril_Coin','Mithril Coin',3,5000,NULL,40,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (675,'Silver_Coin','Silver Coin',3,5000,NULL,40,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (676,'Silver_Coin_Moneybag','Bag of Silver Coins',3,50000,NULL,400,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (677,'White_Gold_Coin','Platinum Coin',3,2000,NULL,40,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (678,'Poison_Bottle','Poison Bottle',2,5000,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'if(Class==Job_Assassin_Cross) { sc_start SC_DPoison,60000,0; sc_start SC_ASPDPOTION3,60000,0; } else percentheal -100,-100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (679,'Gold_Pill','Pilule',2,5000,NULL,300,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_DPoison,10000,0,1000,0; sc_start SC_Poison,50000,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (680,'Magical_Carnation','Magic Carnation',0,0,NULL,1000,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal 0,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (681,'Memory_Of_Wedding','Sweet Memory of Marriage',2,50000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'if(getpartnerid()) sc_start SC_WEDDING,600000,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (682,'Realgar_Wine','Distilled Fighting Spirit',2,0,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_ATKPOTION,60000,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (683,'Exorcize_Herb','Herb of Incantation',2,0,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_MATKPOTION,60000,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (684,'Durian','Durian',2,15000,NULL,300,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_ATKPOTION,60000,10; sc_start SC_MATKPOTION,60000,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (685,'RAMADAN','Ramadan',0,5000,NULL,300,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal 100,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (686,'Earth_Scroll_1_3','Level 3 Earth Spike',11,1000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "WZ_EARTHSPIKE",3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (687,'Earth_Scroll_1_5','Level 5 Earth Spike',11,2000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "WZ_EARTHSPIKE",5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (688,'Cold_Scroll_1_3','Level 3 Cold Bolt',11,1000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "MG_COLDBOLT",3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (689,'Cold_Scroll_1_5','Level 5 Cold Bolt',11,2000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "MG_COLDBOLT",5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (690,'Fire_Scroll_1_3','Level 3 Fire Bolt',11,1000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "MG_FIREBOLT",3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (691,'Fire_Scroll_1_5','Level 5 Fire Bolt',11,2000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "MG_FIREBOLT",5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (692,'Wind_Scroll_1_3','Level 3 Lightening Bolt',11,1000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "MG_LIGHTNINGBOLT",3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (693,'Wind_Scroll_1_5','Level 5 Lightening Bolt',11,2000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "MG_LIGHTNINGBOLT",5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (694,'Ghost_Scroll_1_3','Level 3 Soul Strike',11,1000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "MG_SOULSTRIKE",3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (695,'Ghost_Scroll_1_5','Level 5 Soul Strike',11,2000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "MG_SOULSTRIKE",5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (696,'Fire_Scroll_2_1','Level 1 Fire Ball',11,1000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "MG_FIREBALL",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (697,'Fire_Scroll_2_5','Level 5 Fire Ball',11,2000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "MG_FIREBALL",5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (698,'Fire_Scroll_3_1','Level 1 Fire Wall',11,1000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "MG_FIREWALL",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (699,'Fire_Scroll_3_5','Level 5 Fire Wall',11,2000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "MG_FIREWALL",5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (700,'Cold_Scroll_2_1','Level 1 Frost Diver',11,1000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "MG_FROSTDIVER",1;',NULL,NULL); -# Etc Items -#=================================================================== -REPLACE INTO `item_db` VALUES (701,'Ora_Ora','Ora Ora',3,55000,NULL,200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (702,'Animal_Blood','Animal Gore',3,450,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (703,'Hinalle','Hinalle',3,500,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (704,'Aloe','Aloe',3,500,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (705,'Clover','Clover',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (706,'Four_Leaf_Clover','Four Leaf Clover',3,80000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (707,'Singing_Plant','Singing Plant',3,500,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (708,'Ment','Ment',3,500,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (709,'Izidor','Izidor',3,500,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (710,'Illusion_Flower','Illusion Flower',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (711,'Shoot','Shoot',3,16,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (712,'Flower','Flower',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (713,'Empty_Bottle','Empty Bottle',3,6,NULL,20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (714,'Emperium','Emperium',3,2,NULL,1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (715,'Yellow_Gemstone','Yellow Gemstone',3,600,NULL,30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (716,'Red_Gemstone','Red Gemstone',3,600,NULL,30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (717,'Blue_Gemstone','Blue Gemstone',3,600,NULL,30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (718,'Dark_Red_Jewel','Garnet',3,6000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (719,'Violet_Jewel','Amethyst',3,6000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (720,'Skyblue_Jewel','Aquamarine',3,6000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (721,'Azure_Jewel','Emerald',3,6000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (722,'Scarlet_Jewel','Pearl',3,6000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (723,'Cardinal_Jewel','Ruby',3,6000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (724,'Cardinal_Jewel_','Cursed Ruby',3,600,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (725,'Red_Jewel','Sardonyx',3,6000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (726,'Blue_Jewel','Sapphire',3,6000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (727,'White_Jewel','Opal',3,6000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (728,'Golden_Jewel','Topaz',3,6000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (729,'Bluish_Green_Jewel','Zircon',3,6000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (730,'Crystal_Jewel','1carat Diamond',3,10000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (731,'Crystal_Jewel_','2carat Diamond',3,25000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (732,'Crystal_Jewel__','3carat Diamond',3,55000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (733,'Crystal_Jewel___','Cracked Diamond',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (734,'Red_Frame','Red Frame',3,3000,NULL,200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (735,'Blue_Porcelain','Chung Jah',3,5000,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (736,'White_Platter','China',3,1000,NULL,300,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (737,'Black_Ladle','Black Ladle',3,400,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (738,'Pencil_Case','Pencil Case',3,400,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (739,'Rouge','Rouge',3,10000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (740,'Stuffed_Doll','Puppet',3,1000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (741,'Poring_Doll','Poring Doll',3,1800,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (742,'Chonchon_Doll','Chonchon Doll',3,3000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (743,'Spore_Doll','Spore Doll',3,5500,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (744,'Bunch_Of_Flowers','Bouquet',3,2000,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (745,'Wedding_Bouquet','Wedding Bouquet',3,12000,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (746,'Glass_Bead','Glass Bead',3,1400,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (747,'Crystal_Mirror','Crystal Mirror',3,15000,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (748,'Witherless_Rose','Witherless Rose',3,55000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (749,'Frozen_Rose','Frozen Rose',3,35000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (750,'Baphomet_Doll','Baphomet Doll',3,18000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (751,'Osiris_Doll','Osiris Doll',3,14000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (752,'Grasshopper_Doll','Rocker Doll',3,4000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (753,'Monkey_Doll','Yoyo Doll',3,6000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (754,'Raccoondog_Doll','Raccoon Doll',3,5000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (756,'Oridecon_Stone','Rough Oridecon',3,550,NULL,200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (757,'Elunium_Stone','Rough Elunium',3,650,NULL,200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (901,'Danggie','Daenggie',3,260,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (902,'Tree_Root','Tree Root',3,12,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (903,'Reptile_Tongue','Reptile Tongue',3,140,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (904,'Scorpion\'s_Tail','Scorpion Tail',3,124,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (905,'Stem','Stem',3,46,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (906,'Pointed_Scale','Pointed Scale',3,68,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (907,'Resin','Resin',3,120,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (908,'Spawn','Spawn',3,140,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (909,'Jellopy','Jellopy',3,6,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (910,'Garlet','Garlet',3,40,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (911,'Scell','Scell',3,160,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (912,'Zargon','Zargon',3,480,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (913,'Tooth_Of_Bat','Tooth of Bat',3,34,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (914,'Fluff','Fluff',3,8,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (915,'Chrysalis','Chrysalis',3,8,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (916,'Feather_Of_Birds','Feather of Birds',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (917,'Talon','Talon',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (918,'Sticky_Webfoot','Sticky Webfoot',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (919,'Animal\'s_Skin','Animal Skin',3,36,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (920,'Claw_Of_Wolves','Wolf Claw',3,58,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (921,'Mushroom_Spore','Mushroom Spore',3,36,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (922,'Orcish_Cuspid','Orc\'s Fang',3,220,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (923,'Evil_Horn','Evil Horn',3,1200,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (924,'Powder_Of_Butterfly','Powder of Butterfly',3,90,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (925,'Bill_Of_Birds','Bill of Birds',3,64,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (926,'Scale_Of_Snakes','Snake Scale',3,82,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (928,'Insect_Feeler','Insect Feeler',3,114,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (929,'Immortal_Heart','Immortal Heart',3,374,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (930,'Rotten_Bandage','Rotten Bandage',3,350,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (931,'Orcish_Voucher','Orcish Voucher',3,142,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (932,'Skel_Bone','Skel-Bone',3,232,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (934,'Mementos','Memento',3,600,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (935,'Shell','Shell',3,14,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (936,'Scales_Shell','Scale Shell',3,466,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (937,'Posionous_Canine','Venom Canine',3,148,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (938,'Sticky_Mucus','Sticky Mucus',3,70,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (939,'Bee_Sting','Bee Sting',3,32,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (940,'Grasshopper\'s_Leg','Grasshopper\'s Leg',3,36,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (941,'Nose_Ring','Nose Ring',3,568,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (942,'Yoyo_Tail','Yoyo Tail',3,114,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (943,'Solid_Shell','Solid Shell',3,448,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (944,'Horseshoe','Horseshoe',3,588,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (945,'Raccoon_Leaf','Raccoon Leaf',3,106,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (946,'Snail\'s_Shell','Snail\'s Shell',3,64,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (947,'Horn','Horn',3,116,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (948,'Bear\'s_Foot','Bear\'s Footskin',3,174,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (949,'Feather','Feather',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (950,'Heart_Of_Mermaid','Heart of Mermaid',3,264,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (951,'Fin','Fin',3,412,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (952,'Cactus_Needle','Cactus Needle',3,82,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (953,'Stone_Heart','Stone Heart',3,184,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (954,'Shining_Scales','Shining Scale',3,466,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (955,'Worm_Peelings','Worm Peeling',3,52,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (956,'Gill','Gill',3,342,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (957,'Decayed_Nail','Decayed Nail',3,82,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (958,'Horrendous_Mouth','Horrendous Mouth',3,390,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (959,'Rotten_Scale','Stinky Scale',3,168,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (960,'Nipper','Nipper',3,114,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (961,'Conch','Conch',3,158,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (962,'Tentacle','Tentacle',3,70,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (963,'Sharp_Scale','Sharp Scale',3,250,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (964,'Crap_Shell','Crab Shell',3,90,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (965,'Clam_Shell','Clam Shell',3,56,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (966,'Flesh_Of_Clam','Clam Flesh',3,158,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (967,'Turtle_Shell','Turtle Shell',3,680,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (968,'Voucher_Of_Orcish_Hero','Heroic Emblem',3,3000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (969,'Gold','Gold',3,200000,NULL,200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (970,'Alchol','Alcohol',3,400,NULL,30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (971,'Detrimindexta','Detrimindexta',3,400,NULL,30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (972,'Karvodailnirol','Karvodailnirol',3,400,NULL,30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (973,'Counteragent','Counteragent',3,800,NULL,70,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (974,'Mixture','Mixture',3,800,NULL,70,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (975,'Scarlet_Dyestuffs','Scarlet Dyestuffs',3,8000,NULL,150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (976,'Lemon_Dyestuffs','Lemon Dyestuffs',3,8000,NULL,150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (978,'Cobaltblue_Dyestuffs','Cobaltblue Dyestuffs',3,8000,NULL,150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (979,'Darkgreen_Dyestuffs','Darkgreen Dyestuffs',3,8000,NULL,150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (980,'Orange_Dyestuffs','Orange Dyestuffs',3,8000,NULL,150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (981,'Violet_Dyestuffs','Violet Dyestuffs',3,8000,NULL,150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (982,'White_Dyestuffs','White Dyestuffs',3,8000,NULL,150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (983,'Black_Dyestuffs','Black Dyestuffs',3,8000,NULL,150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (984,'Oridecon','Oridecon',3,1100,NULL,200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (985,'Elunium','Elunium',3,1100,NULL,200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (986,'Anvil','Anvil',3,30000,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (987,'Oridecon_Anvil','Oridecon Anvil',3,120000,NULL,700,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (988,'Golden_Anvil','Golden Anvil',3,300000,NULL,900,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (989,'Emperium_Anvil','Emperium Anvil',3,600000,NULL,1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (990,'Boody_Red','Red Blood',3,1000,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (991,'Crystal_Blue','Crystal Blue',3,1000,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (992,'Wind_Of_Verdure','Wind of Verdure',3,1000,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (993,'Yellow_Live','Green Live',3,1000,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (994,'Flame_Heart','Flame Heart',3,3000,NULL,300,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (995,'Mistic_Frozen','Mystic Frozen',3,3000,NULL,300,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (996,'Rough_Wind','Rough Wind',3,3000,NULL,300,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (997,'Great_Nature','Great Nature',3,3000,NULL,300,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (998,'Iron','Iron',3,100,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (999,'Steel','Steel',3,1000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1000,'Star_Crumb','Star Crumb',3,4500,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1001,'Sparkling_Dust','Star Dust',3,1500,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1002,'Iron_Ore','Iron Ore',3,50,NULL,150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1003,'Coal','Coal',3,500,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1004,'Patriotism_Marks','Chivalry Emblem',3,2,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1005,'Hammer_Of_Blacksmith','Hammer of Blacksmith',3,2,NULL,800,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1006,'Old_Magic_Book','Old Magicbook',3,2,NULL,30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1007,'Penetration','Necklace of Wisdom',3,2,NULL,40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1008,'Frozen_Heart','Necklace of Oblivion',3,2,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1009,'Sacred_Marks','Hand of God',3,2,NULL,20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1010,'Phracon','Phracon',3,200,NULL,200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1011,'Emveretarcon','Emveretarcon',3,1000,NULL,200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1012,'Lizard_Scruff','Frill',3,250,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1013,'Colorful_Shell','Rainbow Shell',3,90,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1014,'Jaws_Of_Ant','Ant Jaw',3,232,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1015,'Thin_N\'_Long_Tongue','Tongue',3,528,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1016,'Rat_Tail','Rat Tail',3,52,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1017,'Moustache_Of_Mole','Mole Whiskers',3,106,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1018,'Nail_Of_Mole','Mole Claw',3,210,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1019,'Wooden_Block','Trunk',3,60,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1020,'Long_Hair','Black Hair',3,292,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1021,'Dokkaebi_Horn','Dokebi Horn',3,292,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1022,'Fox_Tail','Nine Tails',3,650,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1023,'Fish_Tail','Fish Tail',3,196,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1024,'Chinese_Ink','Squid Ink',3,264,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1025,'Spiderweb','Cobweb',3,184,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1026,'Acorn','Acorn',3,98,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1027,'Porcupine_Spike','Porcupine Quill',3,158,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1028,'Wild_Boar\'s_Mane','Mane',3,196,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1029,'Tiger\'s_Skin','Tiger Skin',3,548,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1030,'Tiger_Footskin','Tiger\'s Footskin',3,1500,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1031,'Limb_Of_Mantis','Mantis Scythe',3,196,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1032,'Blossom_Of_Maneater','Maneater Blossom',3,196,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1033,'Root_Of_Maneater','Maneater Root',3,208,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1034,'Cobold_Hair','Blue Hair',3,342,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1035,'Dragon_Canine','Dragon Canine',3,484,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1036,'Dragon_Scale','Dragon Scale',3,500,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1037,'Dragon_Train','Dragon Tail',3,1200,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1038,'Petite_DiablOfs_Horn','Little Evil Horn',3,528,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1039,'Petite_DiablOfs_Wing','Little Evil Wing',3,2000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1040,'Elder_Pixie\'s_Beard','Elder Pixie\'s Moustache',3,232,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1041,'Lantern','Lantern',3,250,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1042,'Short_Leg','Bug Leg',3,430,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1043,'Nail_Of_Orc','Orc Claw',3,168,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1044,'Tooth_Of_','Zenorc\'s Fang',3,264,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1045,'Sacred_Masque','Cultish Masque',3,412,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1046,'Tweezer','Scorpion Nipper',3,614,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1047,'Head_Of_Medusa','Dead Medusa',3,548,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1048,'Slender_Snake','Horrendous Hair',3,800,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1049,'Skirt_Of_Virgin','Skirt of Virgin',3,1700,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1050,'Tendon','Tendon',3,220,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1051,'Detonator','Detonator',3,450,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1052,'Single_Cell','Single Cell',3,46,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1053,'Tooth_Of_Ancient_Fish','Ancient Tooth',3,548,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1054,'Lip_Of_Ancient_Fish','Ancient Lips',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1055,'Earthworm_Peeling','Earthworm Peeling',3,196,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1056,'Grit','Grit',3,306,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1057,'Moth_Dust','Moth Dust',3,138,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1058,'Wing_Of_Moth','Moth Wings',3,200,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1059,'Transparent_Cloth','Fabric',3,306,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1060,'Golden_Hair','Golden Hair',3,430,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1061,'Starsand_Of_Witch','Witched Starsand',3,484,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1062,'Pumpkin_Head','Jack o\' Pumpkin',3,374,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1063,'Sharpened_Cuspid','Fang',3,680,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1064,'Reins','Reins',3,802,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1065,'Booby_Trap','Trap',3,100,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1066,'Tree_Of_Archer_1','Fine-grained Trunk',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1067,'Tree_Of_Archer_2','Solid Trunk',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1068,'Tree_Of_Archer_3','Barren Trunk',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1069,'Mushroom_Of_Thief_1','Orange Net Mushroom',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1070,'Mushroom_Of_Thief_2','Orange Gooey Mushroom',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1071,'Mage_Test_1','Unknown Test Tube',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1072,'Delivery_Message','Delivery Message',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1073,'Merchant_Voucher_1','Voucher',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1074,'Merchant_Voucher_2','Voucher',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1075,'Merchant_Voucher_3','Voucher',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1076,'Merchant_Voucher_4','Voucher',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1077,'Merchant_Voucher_5','Voucher',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1078,'Merchant_Voucher_6','Voucher',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1079,'Merchant_Voucher_7','Voucher',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1080,'Merchant_Voucher_8','Voucher',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1081,'Merchant_Box_1','Delivery Box',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1082,'Merchant_Box_2','Delivery Box',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1083,'Merchant_Box_3','Delivery Box',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1084,'Kapra\'s_Pass','Kafra Pass',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1085,'Mage_Test_2','Unknown Test Tube',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1086,'Mage_Test_3','Unknown Test Tube',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1087,'Mage_Test_4','Unknown Test Tube',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1088,'Morocc_Potion','Morocc Solution',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1089,'Payon_Potion','Payon Solution',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1090,'Mage_Test_Etc','Unknown Test Tube',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1091,'Merchant_Box_Etc','Delivery Box',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1092,'Empty_Cylinder','Empty Test Tube',3,3,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1093,'Empty_Potion','Empty Potion Bottle',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1094,'Short_Daenggie','Short Daenggie',3,278,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1095,'Needle_Of_Alarm','Needle of Alarm',3,546,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1096,'Round_Shell','Round Shell',3,780,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1097,'Worn_Out_Page','Worn Out Page',3,948,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1098,'Manacles','Manacles',3,658,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1099,'Worn_Out_Prison_Uniform','Worn-out Prison Uniform',3,680,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -# Weapons -#=================================================================== -# 1-Handed Swords -REPLACE INTO `item_db` VALUES (1101,'Sword','Sword',5,100,NULL,500,25,NULL,1,3,0x000654E3,7,2,2,1,2,1,2,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1102,'Sword_','Sword',5,100,NULL,500,25,NULL,1,4,0x000654E3,7,2,2,1,2,1,2,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1103,'Sword__','Sword',5,100,NULL,500,25,NULL,1,0,0x000654E3,7,2,2,1,2,1,2,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1104,'Falchion','Falchion',5,1500,NULL,600,39,NULL,1,3,0x000654E3,7,2,2,1,2,1,2,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1105,'Falchion_','Falchion',5,1500,NULL,600,39,NULL,1,4,0x000654E3,7,2,2,1,2,1,2,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1106,'Falchion__','Falchion',5,1500,NULL,600,39,NULL,1,0,0x000654E3,7,2,2,1,2,1,2,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1107,'Blade','Blade',5,2900,NULL,700,53,NULL,1,3,0x000654E3,7,2,2,1,2,1,2,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1108,'Blade_','Blade',5,2900,NULL,700,53,NULL,1,4,0x000654E3,7,2,2,1,2,1,2,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1109,'Blade__','Blade',5,2900,NULL,700,53,NULL,1,0,0x000654E3,7,2,2,1,2,1,2,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1110,'Lapier','Rapier',5,10000,NULL,500,70,NULL,1,2,0x000654E3,7,2,2,2,14,1,2,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1111,'Lapier_','Rapier',5,10000,NULL,500,70,NULL,1,3,0x000654E3,7,2,2,2,14,1,2,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1112,'Lapier__','Rapier',5,10000,NULL,500,70,NULL,1,0,0x000654E3,7,2,2,2,14,1,2,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1113,'Scimiter','Scimitar',5,17000,NULL,700,85,NULL,1,2,0x000654E3,7,2,2,2,14,1,2,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1114,'Scimiter_','Scimitar',5,17000,NULL,700,85,NULL,1,3,0x000654E3,7,2,2,2,14,1,2,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1115,'Scimiter__','Scimitar',5,17000,NULL,700,85,NULL,1,3,0x000654E3,7,2,2,2,14,1,2,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1116,'Katana','Katana',5,2000,NULL,1000,60,NULL,1,3,0x00004082,7,2,34,1,4,1,3,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1117,'Katana_','Katana',5,2000,NULL,1000,60,NULL,1,4,0x00004082,7,2,34,1,4,1,3,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1118,'Katana__','Katana',5,2000,NULL,1000,60,NULL,1,0,0x00004082,7,2,34,1,4,1,3,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1119,'Tsurugi','Tsurugi',5,51000,NULL,1200,130,NULL,1,1,0x000654E2,7,2,2,3,27,1,2,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1120,'Tsurugi_','Tsurugi',5,51000,NULL,1200,130,NULL,1,2,0x000654E2,7,2,2,3,27,1,2,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1121,'Tsurugi__','Tsurugi',5,51000,NULL,1200,130,NULL,1,0,0x000654E2,7,2,2,3,27,1,2,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1122,'Ring_Pommel_Saber','Ring Pommel Saber',5,24000,NULL,900,100,NULL,1,2,0x000654E2,7,2,2,2,14,1,2,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1123,'Haedonggum','Haedonggum',5,50000,NULL,900,120,NULL,1,1,0x000654E2,7,2,2,3,27,1,2,'bonus bInt,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1124,'Orcish_Sword','Orcish Sword',5,20,NULL,800,90,NULL,1,0,0x000654E3,7,2,2,3,5,1,2,'bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1125,'Ring_Pommel_Saber_','Ring Pommel Saber',5,24000,NULL,900,100,NULL,1,3,0x000654E2,7,2,2,2,14,1,2,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1126,'Saber','Saber',5,49000,NULL,1000,115,NULL,1,2,0x000654E2,7,2,2,3,27,1,2,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1127,'Saber_','Saber',5,49000,NULL,1000,115,NULL,1,3,0x000654E2,7,2,2,3,27,1,2,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1128,'Hae_Dong_Gum_','Haedonggum',5,50000,NULL,900,120,NULL,1,2,0x000654E2,7,2,2,3,27,1,2,'bonus bInt,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1129,'Flamberge','Flamberge',5,60000,NULL,1500,150,NULL,1,0,0x00004080,7,2,2,3,27,1,2,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1130,'Nagan','Nagan',5,20,NULL,500,120,NULL,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_Human,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1131,'Ice_Falchon','Ice Falchion',5,20,NULL,600,100,NULL,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;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1132,'Edge','Edge',5,20,NULL,700,115,NULL,1,0,0x000654E2,7,2,2,4,40,1,2,'bonus2 bAddEff,Eff_Curse,30; bonus2 bComaClass,Class_Normal,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1133,'Fire_Brand','Fireblend',5,20,NULL,500,100,NULL,1,0,0x000654E2,7,2,2,4,40,1,2,'bonus bAtkEle,Ele_Fire; skill "MG_FIREBOLT",3; bonus3 bAutoSpell,"MG_FIREBOLT",3,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1134,'Scissores_Sword','Caesar\'s Sword',5,20,NULL,700,140,NULL,1,0,0x000654E2,7,2,2,4,40,1,2,'bonus2 bAddRace,RC_Plant,25; bonus bIgnoreDefRace,RC_Plant;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1135,'Cutlas','Cutlus',5,20,NULL,900,150,NULL,1,0,0x000654E2,7,2,2,4,40,1,2,'skill "SM_BASH",5; bonus bStr,2; bonus bDef,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1136,'Solar_Sword','Solar Sword',5,20,NULL,1200,85,NULL,1,0,0x000654E2,7,2,2,4,40,1,2,'bonus bAtkEle,Ele_Fire; bonus2 bHPDrainRate,1000,1; bonus2 bSPLossRate,15,10000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1137,'Excalibur','Excalibur',5,20,NULL,1200,150,NULL,1,0,0x000654E2,7,2,2,4,40,1,2,'bonus bInt,5; bonus bLuk,10; bonus bDex,-1; bonus bAtkEle,Ele_Holy;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1138,'Mysteltainn_','Mysteltainn',5,20,NULL,1000,170,NULL,1,0,0x000654E2,7,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;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1139,'Tale_Fing_','Tirfing',5,20,NULL,1000,200,NULL,1,0,0x000654E2,7,2,2,4,40,1,2,'bonus bAtkEle,Ele_Dark; bonus2 bHPLossRate,35,10000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1140,'Byeorrun_Gum','Byeollungum',5,20,NULL,900,150,NULL,1,0,0x000654E2,7,2,2,4,40,1,2,'bonus2 bSubClass,Class_Normal,-10; bonus2 bAddClass,Class_Boss,50; bonus bAllStats,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1141,'Immaterial_Sword','Immaterial Sword',5,20,NULL,900,140,NULL,1,0,0x000654E2,7,2,2,4,40,1,2,'bonus bAtkEle,Ele_Ghost; bonus2 bSPVanishRate,30,30; bonus bSPDrainValue,-1; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1142,'Jewel_Sword','Jeweled Sword',5,20,NULL,2200,104,NULL,1,0,0x000654E2,7,2,2,3,68,1,2,'bonus2 bAddMonsterDropItemGroup,IG_Jewel,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1143,'Gaia_Sword','Gaia Sword',5,20,NULL,2500,140,NULL,1,0,0x000654E2,7,2,2,3,74,1,2,'bonus2 bAddMonsterDropItemGroup,IG_Ore,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1144,'Sasimi','Sashimi',5,20,NULL,1400,75,NULL,1,0,0x000654E2,7,2,2,3,48,1,2,'bonus bAtkEle,Ele_Wind; bonus3 bAddMonsterDropItem,544,RC_Fish,4000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1145,'Holy_Avenger','Holy Avenger',5,450000,NULL,1350,125,NULL,1,0,0x00004000,7,2,2,3,75,1,2,'bonus bAtkEle,Ele_Holy; bonus bVit,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1146,'Town_Sword','Town Sword',5,42000,NULL,800,100,NULL,1,1,0x00000001,7,2,2,3,30,1,2,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1147,'Town_Sword_','Town Sword',5,42000,NULL,800,100,NULL,1,2,0x00000001,7,2,2,3,30,1,2,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1148,'Star_Dust_Blade','Star Dust Blade',5,20,NULL,1000,140,NULL,1,1,0x00000001,7,2,2,4,45,1,2,'bonus2 bAddEff,Eff_Stun,500; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1149,'Flamberge_','Flamberge',5,60000,NULL,1500,150,NULL,1,2,0x00004080,7,2,2,3,27,1,2,NULL,NULL,NULL); -# 2-Handed Swords -REPLACE INTO `item_db` VALUES (1151,'Slayer','Slayer',5,15000,NULL,1300,90,NULL,1,2,0x00004082,7,2,34,2,18,1,3,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1152,'Slayer_','Slayer',5,15000,NULL,1300,90,NULL,1,3,0x00004082,7,2,34,2,18,1,3,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1153,'Slayer__','Slayer',5,15000,NULL,1300,90,NULL,1,0,0x00004082,7,2,34,2,18,1,3,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1154,'Bastard_Sword','Bastard Sword',5,22500,NULL,1600,115,NULL,1,2,0x00004082,7,2,34,2,18,1,3,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1155,'Bastard_Sword_','Bastard Sword',5,22500,NULL,1600,115,NULL,1,3,0x00004082,7,2,34,2,18,1,3,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1156,'Bastard_Sword__','Bastard Sword',5,22500,NULL,1600,115,NULL,1,0,0x00004082,7,2,34,2,18,1,3,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1157,'Two_Hand_Sword','Two-Handed Sword',5,60000,NULL,2200,160,NULL,1,1,0x00004082,7,2,34,3,33,1,3,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1158,'Two_Hand_Sword_','Two-Handed Sword',5,60000,NULL,2200,160,NULL,1,2,0x00004082,7,2,34,3,33,1,3,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1159,'Two_Hand_Sword__','Two-Handed Sword',5,60000,NULL,2200,160,NULL,1,0,0x00004082,7,2,34,3,33,1,3,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1160,'Broad_Sword','Broad Sword',5,65000,NULL,2000,140,NULL,1,1,0x00004082,7,2,34,3,33,1,3,'bonus bDef,5; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1161,'Balmung','Balmung',5,20,NULL,1000,250,NULL,1,0,0xFFFFFFFF,7,2,34,4,48,1,3,'bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Holy;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1162,'Broad_Sword_','Broad Sword',5,65000,NULL,2000,140,NULL,1,2,0x00004082,7,2,34,3,33,1,3,'bonus bDef,5; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1163,'Claymore','Claymore',5,74000,NULL,2500,180,NULL,1,0,0x00004080,7,2,34,3,33,1,3,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1164,'Muramasa','Muramasa',5,20,NULL,1000,155,NULL,1,0,0x00004082,7,2,34,4,48,1,3,'bonus bCritical,30; bonus bAspdRate,8; bonus2 bAddEff2,Eff_Curse,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1165,'Masamune','Masamune',5,20,NULL,1000,200,NULL,1,0,0x00004082,7,2,34,4,48,1,3,'bonus bFlee,30; bonus bStr,-5; bonus bAspd,2; bonus bDefRate,-67; bonus bDef2Rate,-67;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1166,'Dragon_Slayer','Dragon Slayer',5,20,NULL,1300,150,NULL,1,0,0x00004082,7,2,34,4,48,1,3,'bonus bIgnoreDefRace,RC_Dragon; bonus2 bAddRace,RC_Dragon,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1167,'Schweizersabel','Schweizersabel',5,20,NULL,1600,160,NULL,1,0,0x00004082,7,2,34,4,48,1,3,'bonus bAtkEle,Ele_Wind; bonus bDef,1; bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",3,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1168,'Zweihander','Zweihander',5,20,NULL,2200,200,NULL,1,0,0x00004082,7,2,34,4,48,1,3,'bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1169,'Executioner_','Executioner',5,20,NULL,2200,155,NULL,1,0,0x00004082,7,2,34,4,48,1,3,'bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player_Human,-10; bonus bAtkEle,Ele_Dark;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1170,'Katzbalger','Katzbalger',5,20,NULL,2000,175,NULL,1,0,0x00004082,7,2,34,4,48,1,3,'bonus bVit,5; bonus bDef,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1171,'Zweihander_','Zweihander',5,20,NULL,2200,200,NULL,1,2,0x00004082,7,2,34,4,48,1,3,'bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1172,'Claymore_','Claymore',5,74000,NULL,2500,180,NULL,1,2,0x00004080,7,2,34,3,33,1,3,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1173,'Muramasa_C','Muramasa',5,1,NULL,0,204,NULL,1,0,0x00004082,7,2,34,4,1,0,3,'bonus bCritical,30; bonus bAspdRate,8;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1174,'Executioner_C','Executioner',5,2,NULL,0,190,NULL,1,0,0x00004082,7,2,34,4,0,0,3,'bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player_Human,-10; bonus bAtkEle,Ele_Dark;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1175,'Altas_Weapon','Atlas Weapon',5,20,NULL,3500,200,NULL,1,1,0x00004082,2,2,34,4,55,1,3,'bonus bCritical,10; if(readparam(bStr)>=80) bonus bBreakArmorRate,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1176,'Muscle_Cutter','Muscle Cutter',5,20,NULL,2200,160,NULL,1,2,0x00004082,2,2,34,4,55,1,3,'bonus2 bAddEff,Eff_Bleeding,800; bonus3 bAutoSpell,"AL_DECAGI",1,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1177,'Muramash','Muramash',5,20,NULL,0,120,NULL,1,0,0x00004082,7,2,34,1,0,0,3,'bonus2 bAddClass,Class_All,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1178,'Schweizersabel_','Schweizersabel',5,20,NULL,1600,160,NULL,1,2,0x00004082,7,2,34,4,48,1,3,'bonus bAtkEle,Ele_Wind; bonus bDef,1; bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",3,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1179,'Executioner__','Executioner',5,20,NULL,2200,155,NULL,1,1,0x00004082,7,2,34,4,48,1,3,'bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player_Human,-10; bonus bAtkEle,Ele_Dark;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1180,'Dragon_Slayer_','Dragon Slayer',5,20,NULL,1300,150,NULL,1,2,0x00004082,7,2,34,4,48,1,3,'bonus bIgnoreDefRace,RC_Dragon; bonus2 bAddRace,RC_Dragon,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1181,'Tae_Goo_Lyeon','Tae Goo Lyeon',5,20,NULL,2000,250,NULL,1,2,0x00004082,2,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 bCastrate,-20; bonus bDelayRate,-20; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (1182,'Bloody_Eater','Bloody Eater',5,20,NULL,1200,200,NULL,1,2,0x00004082,2,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;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1183,'BF_Two_Handed_Sword1','Brave Assaulter\'s Katzbalger',5,20,NULL,0,200,NULL,1,0,0x00004082,7,2,34,3,80,1,3,'bonus bStr,2; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1184,'BF_Two_Handed_Sword2','Valorous Assaulter\'s Katzbalger',5,20,NULL,0,200,NULL,1,0,0x00004082,7,2,34,3,80,1,3,'bonus bCritical,20; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus bCritAtkRate,20; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1185,'Violet_Fear','Violet Fear',5,20,NULL,2200,275,NULL,1,2,0x00004082,2,2,34,4,80,1,3,'bonus3 bAutoSpell,"WZ_METEOR",3,30; bonus3 bAutoSpell,"WZ_FROSTNOVA",5,50; autobonus "{ bonus bIgnoreDefClass,Class_Normal; }",50,5000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1186,'Death_Guidance','Death Guidance',5,20,NULL,2000,200,NULL,1,2,0x00004082,2,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;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1187,'Krieger_Twohand_Sword1','Glorious Claymore',5,20,NULL,0,220,NULL,1,0,0x00004082,7,2,34,4,80,1,3,'bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-3)*(getrefine()-3); bonus2 bAddRace,RC_Player_Human,(getrefine()-3)*(getrefine()-3); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) { bonus3 bAutoSpell,"LK_CONCENTRATION",max(getskilllv("LK_CONCENTRATION"),1),30; bonus3 bAutoSpell,"LK_AURABLADE",max(getskilllv("LK_AURABLADE"),1),30; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (1188,'Veteran_Sword','Veteran Sword',5,10000,NULL,2000,180,NULL,1,1,0x00004082,7,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;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1189,'Krasnaya','Krasnaya',5,20,NULL,3800,200,NULL,2,3,0x00004082,2,2,34,2,50,1,3,'if(readparam(bStr)>=95) { bonus bBaseAtk,20; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (1190,'Claymore_C','Claymore',5,0,NULL,0,220,NULL,1,0,0x00004080,7,2,34,3,1,0,3,'bonus2 bAddSize,Size_All,40;',NULL,NULL); -# Daggers -REPLACE INTO `item_db` VALUES (1201,'Knife','Knife',5,50,NULL,400,17,NULL,1,3,0x3E9F7EEF,7,2,2,1,1,1,1,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1202,'Knife_','Knife',5,50,NULL,400,17,NULL,1,4,0x3E9F7EEF,7,2,2,1,1,1,1,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1203,'Knife__','Knife',5,50,NULL,400,17,NULL,1,0,0x3E9F7EEF,7,2,2,1,1,1,1,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1204,'Cutter','Cutter',5,1250,NULL,500,30,NULL,1,3,0x3E9F7EEF,7,2,2,1,1,1,1,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1205,'Cutter_','Cutter',5,1250,NULL,500,30,NULL,1,4,0x3E9F7EEF,7,2,2,1,1,1,1,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1206,'Cutter__','Cutter',5,1250,NULL,500,30,NULL,1,0,0x3E9F7EEF,7,2,2,1,1,1,1,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1207,'Main_Gauche','Main Gauche',5,2400,NULL,600,43,NULL,1,3,0x3E9F7EEF,7,2,2,1,1,1,1,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1208,'Main_Gauche_','Main Gauche',5,2400,NULL,600,43,NULL,1,4,0x3E9F7EEF,7,2,2,1,1,1,1,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1209,'Main_Gauche__','Main Gauche',5,2400,NULL,600,43,NULL,1,0,0x3E9F7EEF,7,2,2,1,1,1,1,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1210,'Dirk','Dirk',5,8500,NULL,500,59,NULL,1,2,0x3E9F7EEF,7,2,2,2,12,1,1,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1211,'Dirk_','Dirk',5,8500,NULL,500,59,NULL,1,3,0x3E9F7EEF,7,2,2,2,12,1,1,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1212,'Dirk__','Dirk',5,8500,NULL,500,59,NULL,1,0,0x3E9F7EEF,7,2,2,2,12,1,1,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1213,'Dagger','Dagger',5,14000,NULL,600,73,NULL,1,2,0x3E9F7EEF,7,2,2,2,12,1,1,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1214,'Dagger_','Dagger',5,14000,NULL,600,73,NULL,1,3,0x3E9F7EEF,7,2,2,2,12,1,1,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1215,'Dagger__','Dagger',5,14000,NULL,600,73,NULL,1,0,0x3E9F7EEF,7,2,2,2,12,1,1,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1216,'Stiletto','Stiletto',5,19500,NULL,700,87,NULL,1,2,0x3E9F7EEF,7,2,2,2,12,1,1,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1217,'Stiletto_','Stiletto',5,19500,NULL,700,87,NULL,1,3,0x3E9F7EEF,7,2,2,2,12,1,1,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1218,'Stiletto__','Stiletto',5,19500,NULL,700,87,NULL,1,0,0x3E9F7EEF,7,2,2,2,12,1,1,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1219,'Gladius','Gladius',5,43000,NULL,700,105,NULL,1,2,0x028F5EEE,7,2,2,3,24,1,1,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1220,'Gladius_','Gladius',5,43000,NULL,700,105,NULL,1,3,0x028F5EEE,7,2,2,3,24,1,1,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1221,'Gladius__','Gladius',5,43000,NULL,700,105,NULL,1,0,0x028F5EEE,7,2,2,3,24,1,1,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1222,'Damascus','Damascus',5,49000,NULL,800,118,NULL,1,1,0x028F5EEE,7,2,2,3,24,1,1,'bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1223,'Forturn_Sword','Fortune Sword',5,20,NULL,500,90,NULL,1,0,0x028F5EEE,7,2,2,4,24,1,1,'bonus bLuk,5; bonus bFlee2,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1224,'Sword_Breaker','Swordbreaker',5,20,NULL,1000,70,NULL,1,0,0x028F5EEE,7,2,2,4,36,1,1,'bonus bBreakWeaponRate,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1225,'Mail_Breaker','Mailbreaker',5,20,NULL,1000,70,NULL,1,0,0x028F5EEE,7,2,2,4,36,1,1,'bonus bBreakArmorRate,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1226,'Damascus_','Damascus',5,49000,NULL,800,118,NULL,1,2,0x028F5EEE,7,2,2,3,24,1,1,'bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1227,'Weeder_Knife','Weeder Knife',5,20,NULL,400,80,NULL,1,0,0x028F5EEE,7,2,2,4,36,1,1,'bonus bIgnoreDefRace,RC_Plant; bonus2 bAddRace,RC_Plant,15; bonus2 bSubRace,RC_Plant,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1228,'Combat_Knife','Combat Knife',5,20,NULL,400,80,NULL,1,0,0x028F5EEE,7,2,2,4,36,1,1,'bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Demon,-10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1229,'Mama\'s_Knife','Kitchen Knife',5,20,NULL,500,75,NULL,1,0,0x028F5EEE,7,2,2,4,36,1,1,'bonus bCritical,30; bonus3 bAddMonsterDropItem,517,RC_Brute,5000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1230,'House_Auger','Ice Pick',5,20,NULL,600,80,NULL,1,0,0x028F5EEE,7,2,2,4,36,1,1,'bonus bDefRatioAtkClass,Class_All;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1231,'Bazerald','Bazerald',5,20,NULL,500,70,NULL,1,0,0x028F5EEE,7,2,2,4,36,1,1,'bonus bAtkEle,Ele_Fire; bonus bInt,5; bonus bMatkRate,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1232,'Assasin_Dagger','Assassin Dagger',5,20,NULL,600,140,NULL,1,0,0x00001000,7,2,2,4,36,1,1,'bonus bMaxHPrate,20; bonus bMaxSPrate,15; bonus bAspdRate,2; bonus bAtkEle,Ele_Dark;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1233,'Exercise','Exorciser',5,20,NULL,700,90,NULL,1,0,0x028F5EEE,7,2,2,4,36,1,1,'bonus bIgnoreDefRace,RC_Demon; bonus2 bSubRace,RC_Demon,5; bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player_Human,-10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1234,'Moonlight_Sword','Moonlight Dagger',5,20,NULL,700,50,NULL,1,0,0x028F5EEE,7,2,2,4,36,1,1,'bonus bMaxSPrate,10; bonus bSPDrainValue,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1235,'Azoth','Azoth',5,20,NULL,700,110,NULL,1,0,0x00040000,7,2,2,4,36,1,1,'bonus bClassChange,300;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1236,'Sucsamad','Sucsamad',5,20,NULL,800,140,NULL,1,0,0x028F5EEE,7,2,2,4,36,1,1,'bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Wind,10; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1237,'Grimtooth_','Grimtooth',5,20,NULL,800,180,NULL,1,0,0x028F5EEE,7,2,2,4,36,1,1,'bonus bFlee,10; bonus bFlee2,5; bonus bDefRate,-50; bonus bDef2Rate,-50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1238,'Zeny_Knife','Zeny Knife',5,20,NULL,1200,64,NULL,1,0,0x028F5EEE,7,2,2,3,70,1,1,'bonus2 bGetZenyNum,100,40;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1239,'Poison_Knife','Poison Knife',5,20,NULL,800,64,NULL,1,0,0x028F5EEE,7,2,2,3,65,1,1,'bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,3000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1240,'Princess_Knife','Princess Knife',5,20,NULL,400,84,NULL,1,0,0x028F5EEE,7,2,2,4,1,1,1,'bonus bAllStats,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1241,'Cursed_Dagger','Cursed Dagger',5,80000,NULL,400,55,NULL,1,0,0x00810204,7,2,2,4,85,1,1,'bonus2 bAddEff,Eff_Curse,5000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1242,'Counter_Dagger','Dagger of Counter',5,120000,NULL,550,140,NULL,1,0,0x00810204,7,2,2,4,55,1,1,'bonus bCritical,90;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1243,'Novice_Knife','Novice Main-Gauche',5,1,NULL,1,45,NULL,1,0,0x00000001,7,2,2,1,1,0,1,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1244,'Holy_Dagger','Holy Dagger',5,20,NULL,800,100,NULL,1,0,0x02021040,7,2,2,4,55,1,1,'bonus bAtkEle,Ele_Holy; bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1245,'Cinquedea','Cinquedea',5,40000,NULL,700,110,NULL,1,1,0x00000001,7,2,2,3,30,1,1,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1246,'Cinquedea_','Cinquedea',5,40000,NULL,700,110,NULL,1,2,0x00000001,7,2,2,3,30,1,1,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1247,'Kindling_Dagger','Kindle Dagger',5,10000,NULL,600,39,NULL,1,0,0x3E9F7EEF,7,2,2,1,1,1,1,'bonus bAtkEle,Ele_Fire;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1248,'Obsidian_Dagger','Obsidian Dagger',5,10000,NULL,600,39,NULL,1,0,0x3E9F7EEF,7,2,2,1,1,1,1,'bonus bAtkEle,Ele_Earth;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1249,'Fisherman\'s_Dagger','Fisherman\'s Dagger',5,10000,NULL,600,39,NULL,1,0,0x3E9F7EEF,7,2,2,1,1,1,1,'bonus bAtkEle,Ele_Water;',NULL,NULL); -# Katars -REPLACE INTO `item_db` VALUES (1250,'Jur','Jur',5,19500,NULL,800,125,NULL,1,2,0x00001000,7,2,34,2,18,1,16,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1251,'Jur_','Jur',5,19500,NULL,800,125,NULL,1,3,0x00001000,7,2,34,2,18,1,16,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1252,'Katar','Katar',5,41000,NULL,1200,148,NULL,1,1,0x00001000,7,2,34,3,33,1,16,'bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1253,'Katar_','Katar',5,41000,NULL,1200,148,NULL,1,2,0x00001000,7,2,34,3,33,1,16,'bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1254,'Jamadhar','Jamadhar',5,37200,NULL,1500,165,NULL,1,0,0x00001000,7,2,34,3,33,1,16,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1255,'Jamadhar_','Jamadhar',5,37200,NULL,1500,165,NULL,1,1,0x00001000,7,2,34,3,33,1,16,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1256,'Katar_Of_Cold_Icicle','Katar of Frozen Icicle',5,45000,NULL,1200,105,NULL,1,0,0x00001000,7,2,34,3,55,1,16,'bonus bAtkEle,Ele_Water; bonus2 bAddEff,Eff_Freeze,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1257,'Katar_Of_Thornbush','Katar of Quaking',5,45000,NULL,1200,105,NULL,1,0,0x00001000,7,2,34,3,55,1,16,'bonus bAtkEle,Ele_Earth; bonus2 bAddEff,Eff_Blind,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1258,'Katar_Of_Raging_Blaze','Katar of Raging Blaze',5,45000,NULL,1200,105,NULL,1,0,0x00001000,7,2,34,3,55,1,16,'bonus bAtkEle,Ele_Fire; bonus2 bAddEff,Eff_Silence,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1259,'Katar_Of_Piercing_Wind','Katar of Piercing Wind',5,45000,NULL,1200,105,NULL,1,0,0x00001000,7,2,34,3,55,1,16,'bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Sleep,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1260,'Ghoul_Leg','Sharpened Legbone of Ghoul',5,52500,NULL,1700,150,NULL,1,0,0x00001000,7,2,34,3,65,1,16,'bonus bAtkEle,Ele_Undead;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1261,'Infiltrator','Infiltrator',5,57000,NULL,1500,140,NULL,1,0,0x00001000,7,2,34,4,75,1,16,'bonus2 bAddRace,RC_DemiHuman,50; bonus2 bAddRace,RC_Player_Human,50; bonus bDef,3; bonus bFlee,5; bonus bFlee2,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1262,'Nail_Of_Loki','Loki\'s Nail',5,20,NULL,1200,115,NULL,1,0,0x00001000,7,2,34,3,55,1,16,'bonus2 bAddEff,Eff_Bleeding,300;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1263,'Unholy_Touch','Unholy Touch',5,20,NULL,1250,151,NULL,1,0,0x00001000,7,2,34,4,70,1,16,'bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Curse,200; bonus bCritical,-1; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1264,'Various_Jur','Specialty Jur',5,20,NULL,800,90,NULL,1,4,0x00001000,7,2,34,1,1,1,16,'bonus2 bAddEff2,Eff_Bleeding,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1265,'Bloody_Roar','Bloody Roar',5,20,NULL,1000,120,NULL,1,0,0x00001000,7,2,34,4,75,1,16,'bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus bFlee,-(readparam(bAgi)+BaseLevel); bonus bHPrecovRate,-100; bonus bSPrecovRate,-100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1266,'Infiltrator_','Infiltrator',5,57000,NULL,1500,140,NULL,1,1,0x00001000,7,2,34,4,75,1,16,'bonus2 bAddRace,RC_DemiHuman,50; bonus2 bAddRace,RC_Player_Human,50; bonus bDef,3; bonus bFlee,5; bonus bFlee2,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1267,'Infiltrator_C','Infiltrator',5,1,NULL,0,189,NULL,1,0,0x00001000,7,2,34,4,1,0,16,'bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus bDef,3; bonus bFlee,5; bonus bFlee2,2; bonus bAspdRate,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1268,'Wild_Beast_Claw','Wild Beast Claw',5,20,NULL,1450,160,NULL,1,1,0x00001000,2,2,34,4,55,1,16,'if(getrefine()>=9){ bonus3 bAutoSpell,"NPC_CRITICALWOUND",2,100; } else bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1269,'Inverse_Scale','Inverse Scale',5,20,NULL,1500,140,NULL,1,0,0x00001000,2,2,34,4,55,1,16,'bonus bAtkEle,Ele_Holy; bonus3 bAutoSpell,"NPC_DRAGONFEAR",1,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1270,'Drill_Katar','Drill Katar',5,20,NULL,1400,110,NULL,1,1,0x00001000,2,2,34,4,55,1,16,'bonus bHit,30; bonus3 bAutoSpell,"ST_FULLSTRIP",1,150;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1271,'Blood_Tears','Blood Tears',5,20,NULL,1700,120,NULL,1,2,0x00001000,2,2,34,4,55,1,16,'if(getrefine()>=9){ bonus3 bAutoSpell,"NPC_WIDEBLEEDING",2,30; } else bonus3 bAutoSpell,"NPC_WIDEBLEEDING",1,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1272,'Scratcher','Scratcher',5,20,NULL,0,120,NULL,1,0,0x00001000,7,2,34,1,0,0,16,'bonus2 bAddClass,Class_All,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1273,'Bloody_Roar_C','Refined Bloody Roar',5,1,NULL,0,148,NULL,1,0,0x00001000,7,2,34,4,0,0,16,'bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bHPRegenRate,3,5000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1274,'Unholy_Touch_C','Refined Unholy Touch',5,1,NULL,0,179,NULL,1,0,0x00001000,7,2,34,4,0,0,16,'bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Curse,5000; bonus bCritical,-1; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1275,'Katar_Of_Cold_Icicle_','Katar of Frozen Icicle',5,45000,NULL,1200,105,NULL,1,3,0x00001000,7,2,34,3,55,1,16,'bonus bAtkEle,Ele_Water; bonus2 bAddEff,Eff_Freeze,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1276,'Katar_Of_Thornbush_','Katar of Quaking',5,45000,NULL,1200,105,NULL,1,3,0x00001000,7,2,34,3,55,1,16,'bonus bAtkEle,Ele_Earth; bonus2 bAddEff,Eff_Blind,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1277,'Katar_Of_Raging_Blaze_','Katar of Raging Blaze',5,45000,NULL,1200,105,NULL,1,3,0x00001000,7,2,34,3,55,1,16,'bonus bAtkEle,Ele_Fire; bonus2 bAddEff,Eff_Silence,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1278,'Katar_Of_Piercing_Wind_','Katar of Piercing Wind',5,45000,NULL,1200,105,NULL,1,3,0x00001000,7,2,34,3,55,1,16,'bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Sleep,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1279,'BF_Katar1','Brave Carnage Katar',5,20,NULL,0,130,NULL,1,0,0x00001000,7,2,34,3,80,1,16,'bonus bStr,1; bonus bDex,1; bonus bLuk,1; bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1280,'BF_Katar2','Valorous Carnage Katar',5,20,NULL,0,130,NULL,1,0,0x00001000,7,2,34,3,80,1,16,'bonus bStr,1; bonus bDex,1; bonus bLuk,1; bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus bCritAtkRate,20; bonus bAspdRate,5; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1281,'Krieger_Katar1','Glorious Bloody Roar',5,20,NULL,0,140,NULL,1,0,0x00001000,7,2,34,4,80,1,16,'bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) autobonus "{ bonus bAspdRate,100; }",70,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }";',NULL,NULL); -REPLACE INTO `item_db` VALUES (1282,'Krieger_Katar2','Glorious Jamadhar',5,20,NULL,0,140,NULL,1,0,0x00001000,7,2,34,4,80,1,16,'bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bCriticalAddRace,RC_DemiHuman,5; bonus2 bCriticalAddRace,RC_Player_Human,5; } if(getrefine()>8) autobonus "{ bonus bAspdRate,100; }",70,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }";',NULL,NULL); -REPLACE INTO `item_db` VALUES (1283,'Katar_Of_Speed','Katar Of Speed',5,20,NULL,0,175,NULL,1,0,0x00001000,7,2,34,4,0,0,16,'bonus2 bSkillAtk,"AS_SONICBLOW",25; bonus bAspdRate,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1284,'Krishna','Krishna',5,20,NULL,1200,120,NULL,1,2,0x00001000,2,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; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (1285,'Cakram','Chakram',5,20,NULL,1000,130,NULL,1,2,0x00001000,2,2,34,3,50,1,16,'if(getskilllv("AS_KATAR")==10) { bonus bHit,10; } bonus2 bSkillAtk,"ASC_METEORASSAULT",20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1286,'Jamadhar_C','Jamadhar',5,0,NULL,0,200,NULL,1,0,0x00001000,7,2,34,3,1,0,16,'bonus bUnbreakableWeapon; bonus2 bAddSize,Size_All,40;',NULL,NULL); -# 1-Handed Axes -REPLACE INTO `item_db` VALUES (1301,'Axe','Axe',5,500,NULL,800,38,NULL,1,3,0x000654E3,7,2,2,1,3,1,6,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1302,'Axe_','Axe',5,500,NULL,800,38,NULL,1,4,0x000654E3,7,2,2,1,3,1,6,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1303,'Axe__','Axe',5,500,NULL,800,38,NULL,1,0,0x000654E3,7,2,2,1,3,1,6,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1304,'Orcish_Axe','Orcish Axe',5,20,NULL,1500,75,NULL,1,0,0x000654E3,7,2,2,3,3,1,6,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1305,'Cleaver','Cleaver',5,20,NULL,1200,140,NULL,1,0,0x000444A2,7,2,2,4,44,1,6,'bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus3 bAddMonsterDropItem,517,RC_Brute,3000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1306,'War_Axe','War Axe',5,20,NULL,4200,140,NULL,1,1,0x00040400,7,2,2,3,76,1,6,'bonus bDex,2; bonus bLuk,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1307,'Windhawk','Windhawk',5,18000,NULL,1500,115,NULL,1,0,0x000654E2,7,2,2,2,14,1,6,'bonus bAtkEle,Ele_Wind; bonus bAspdRate,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1308,'Golden_Axe','Golden Axe',5,20,NULL,3000,170,NULL,1,0,0x00000001,7,2,2,4,45,1,6,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1309,'Orcish_Axe_','Orcish Axe',5,20,NULL,1500,75,NULL,1,4,0x000654E3,7,2,2,3,3,1,6,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1310,'Krieger_Onehand_Axe1','Glorious Cleaver',5,20,NULL,0,130,NULL,1,0,0x000444A2,7,2,2,4,80,1,6,'bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus bAspdRate,5; } if(getrefine()>8) { bonus bAspdRate,5; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,50; bonus4 bAutoSpellOnSkill,"MC_MAMMONITE","NPC_CRITICALWOUND",2,200; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (1311,'Vecer_Axe','Vecer Axe',5,20,NULL,1500,140,NULL,1,2,0x000444A2,2,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; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (1312,'Orcish_Axe_C','Orcish Axe',5,0,NULL,0,110,NULL,1,0,0x000654E3,7,2,2,3,1,0,6,'bonus2 bAddSize,Size_All,70;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1313,'Tourist_Axe','Tourist Axe',5,0,NULL,500,77,NULL,1,0,0x000654E3,7,2,2,1,1,0,6,'bonus bStr,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1314,'F_Tomahawk_C','Tomahawk',5,2,NULL,0,200,NULL,1,0,0x000444A2,7,2,34,4,0,0,7,'bonus bAtkEle,Ele_Wind;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1315,'F_Right_Epsilon_C','Light Epsilon',5,1,NULL,0,229,NULL,1,0,0x000444A2,7,2,34,4,1,0,7,'bonus bAtkEle,Ele_Holy; bonus bStr,10;',NULL,NULL); -# 2-Handed Axes -REPLACE INTO `item_db` VALUES (1351,'Battle_Axe','Battle Axe',5,5400,NULL,1500,80,NULL,1,3,0x000444A2,7,2,34,1,3,1,7,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1352,'Battle_Axe_','Battle Axe',5,5400,NULL,1500,80,NULL,1,4,0x000444A2,7,2,34,1,3,1,7,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1353,'Battle_Axe__','Battle Axe',5,5400,NULL,1500,80,NULL,1,0,0x000444A2,7,2,34,1,3,1,7,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1354,'Hammer','Hammer',5,15500,NULL,2000,120,NULL,1,2,0x000444A2,7,2,34,2,16,1,7,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1355,'Hammer_','Hammer',5,15500,NULL,2000,120,NULL,1,3,0x000444A2,7,2,34,2,16,1,7,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1356,'Hammer__','Hammer',5,15500,NULL,2000,120,NULL,1,0,0x000444A2,7,2,34,2,16,1,7,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1357,'Buster','Buster',5,34000,NULL,2200,155,NULL,1,1,0x000444A2,7,2,34,3,30,1,7,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1358,'Buster_','Buster',5,34000,NULL,2200,155,NULL,1,2,0x000444A2,7,2,34,3,30,1,7,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1359,'Buster__','Buster',5,34000,NULL,2200,155,NULL,1,0,0x000444A2,7,2,34,3,30,1,7,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1360,'Two_Handed_Axe','Two-Handed Axe',5,55000,NULL,2500,185,NULL,1,1,0x000444A2,7,2,34,3,30,1,7,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1361,'Two_Handed_Axe_','Two-Handed Axe',5,55000,NULL,2500,185,NULL,1,2,0x000444A2,7,2,34,3,30,1,7,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1362,'Two_Handed_Axe__','Two-Handed Axe',5,55000,NULL,2500,185,NULL,1,0,0x000444A2,7,2,34,3,30,1,7,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1363,'Brood_Axe','Bloody Axe',5,20,NULL,4000,170,NULL,1,0,0x000444A2,7,2,34,4,44,1,7,'bonus bStr,10; bonus bSpeedRate,25;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1364,'Great_Axe','Great Axe',5,20,NULL,1800,187,NULL,1,0,0x000444A2,7,2,34,4,44,1,7,'bonus2 bAddSkillBlow,"MC_MAMMONITE",5; bonus2 bAddEff,Eff_Stun,1500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1365,'Sabbath','Sabbath',5,20,NULL,2300,120,NULL,1,0,0x000444A2,7,2,34,4,44,1,7,'bonus bAtkEle,Ele_Dark; bonus2 bComaRace,RC_Demon,50; bonus2 bCriticalAddRace,RC_Undead,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1366,'Right_Epsilon','Light Epsilon',5,20,NULL,2300,180,NULL,1,0,0x000444A2,7,2,34,4,44,1,7,'bonus bAtkEle,Ele_Holy; skill "AL_HEAL",3; bonus2 bAddRace,RC_Demon,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1367,'Slaughter','Slaughter',5,20,NULL,2500,120,NULL,1,0,0x000444A2,7,2,34,4,44,1,7,'bonus bAtkEle,Ele_Earth; bonus bIgnoreDefRace,RC_Brute; bonus2 bComaRace,RC_Brute,40; bonus bIgnoreDefRace,RC_Player_Doram; bonus2 bComaRace,RC_Player_Doram,40;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1368,'Tomahawk','Tomahawk',5,20,NULL,2500,165,NULL,1,0,0x000444A2,7,2,34,4,44,1,7,'bonus bAtkEle,Ele_Wind; skill "ITM_TOMAHAWK",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1369,'Guillotine','Guillotine',5,20,NULL,3000,215,NULL,1,0,0x000444A2,7,2,34,4,44,1,7,'bonus2 bComaRace,RC_DemiHuman,30; bonus2 bComaRace,RC_Player_Human,30; bonus2 bSPDrainValueRace,RC_DemiHuman,2; bonus2 bSPDrainValueRace,RC_Player_Human,2; bonus2 bSPGainRace,RC_DemiHuman,20; bonus2 bSPGainRace,RC_Player_Human,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1370,'Doom_Slayer','Doom Slayer',5,20,NULL,6000,10,NULL,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; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (1371,'Doom_Slayer_','Doom Slayer',5,20,NULL,6000,10,NULL,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; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (1372,'Right_Epsilon_C','Light Epsilon',5,1,NULL,0,229,NULL,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;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1373,'Brood_Axe_C','Refined Bloody Axe',5,2,NULL,0,205,NULL,1,0,0x000444A2,7,2,34,4,0,0,7,'bonus bStr,20; bonus bSpeedRate,25; bonus bAspdRate,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1374,'Tomahawk_C','Tomahawk',5,2,NULL,0,200,NULL,1,0,0x000444A2,7,2,34,4,0,0,7,'bonus bAtkEle,Ele_Wind; skill "ITM_TOMAHAWK",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1375,'Berdysz','Berdysz',5,20,NULL,2500,200,NULL,1,2,0x000444A2,2,2,34,3,70,1,7,'bonus2 bSubSize,Size_Medium,13; bonus2 bSubSize,Size_Large,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1376,'Heart_Breaker','Heart Breaker',5,20,NULL,2000,175,NULL,1,1,0x000444A2,2,2,34,4,70,1,7,'bonus bCritical,20+getrefine(); bonus bAspdRate,5; if((Class==Job_Whitesmith)||(Class==Job_Creator)) bonus3 bAutoSpell,"BS_HAMMERFALL",3,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1377,'Hurricane_Fury','Hurricane\'s Fury',5,20,NULL,3500,332,NULL,1,1,0x000444A2,2,2,34,4,80,1,7,'bonus2 bSubSize,Size_Medium,10+getrefine(); bonus bAspdRate,getrefine(); bonus3 bAutoSpell,"NPC_PULSESTRIKE",5,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1378,'Great_Axe_C','Refined Great Axe',5,1,NULL,0,215,NULL,1,0,0x000444A2,7,2,34,4,0,0,7,'bonus bStr,5; bonus bHit,20; bonus2 bAddSkillBlow,"MC_MAMMONITE",5; bonus2 bAddEff,Eff_Stun,2000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1379,'BF_Two_Handed_Axe1','Valorous Insane Battle Axe',5,20,NULL,0,200,NULL,1,0,0x000444A2,7,2,34,3,80,1,7,'bonus bStr,3; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1380,'BF_Two_Handed_Axe2','Brave Insane Battle Axe',5,20,NULL,0,200,NULL,1,0,0x000444A2,7,2,34,3,80,1,7,'bonus bStr,3; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; autobonus "{ bonus bBreakArmorRate,10000; }",20,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1381,'N_Battle_Axe','Novice Battle Axe',5,0,NULL,0,100,NULL,1,3,0x000444A2,7,2,34,1,3,0,7,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1382,'Krieger_Twohand_Axe1','Glorious Two-Handed Axe',5,20,NULL,0,220,NULL,1,0,0x000444A2,7,2,34,4,80,1,7,'bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-3)*(getrefine()-3); bonus2 bAddRace,RC_Player_Human,(getrefine()-3)*(getrefine()-3); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,50; } if(getrefine()>8) { bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,100; bonus4 bAutoSpellOnSkill,"MC_MAMMONITE","NPC_CRITICALWOUND",2,200; bonus4 bAutoSpellOnSkill,"WS_CARTTERMINATION","NPC_CRITICALWOUND",2,200; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (1383,'Holy_Celestial_Axe','Celestial Axe',5,20,NULL,1500,200,NULL,1,0,0x000444A2,7,2,34,4,60,1,7,'bonus bAtkEle,Ele_Holy; bonus bVit,10; bonus2 bAddRace,RC_Undead,10; bonus3 bAutoSpell,"AL_BLESSING",5,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1384,'Veteran_Axe','Veteran Axe',5,10000,NULL,3000,250,NULL,1,2,0x000444A2,7,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;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1385,'Bradium_Stonehammer','Bradium Stone Hammer',5,20,NULL,2700,210,NULL,1,0,0x000444A2,2,2,34,4,75,1,7,'bonus3 bAddEffOnSkill,"BS_HAMMERFALL",Eff_Stun,500+(200*getrefine());',NULL,NULL); -REPLACE INTO `item_db` VALUES (1386,'Doom_Slayer_I','Doom Slayer',5,0,NULL,0,20,NULL,1,0,0x000444A2,7,2,34,4,0,0,7,'if(readparam(bStr)>=95){ bonus bBaseAtk,400; bonus2 bAddEff,Eff_Stun,3000; bonus bAspdRate,-25; bonus bUseSPrate,100; bonus bBreakArmorRate,500; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (1387,'Giant_Axe','Giant Axe',5,20,NULL,4000,330,NULL,1,1,0x000444A2,2,2,34,3,50,1,7,'bonus2 bSkillAtk,"WS_CARTTERMINATION",15; if(readparam(bStr)>=95) { bonus bHit,10; bonus bAspdRate,3; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (1388,'Two_Handed_Axe_C','Two-Handed Axe',5,0,NULL,0,220,NULL,1,0,0x000444A2,7,2,34,3,1,0,7,'bonus2 bAddSize,Size_All,40;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1389,'E_Tomahawk_C','Tomahawk',5,2,NULL,0,200,NULL,1,0,0x000444A2,7,2,34,4,0,0,7,'bonus bAtkEle,Ele_Wind;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1390,'E_Right_Epsilon_C','Light Epsilon',5,1,NULL,0,229,NULL,1,0,0x000444A2,7,2,34,4,1,0,7,'bonus bAtkEle,Ele_Holy; bonus bStr,10;',NULL,NULL); -# 1-Handed Spears -REPLACE INTO `item_db` VALUES (1401,'Javelin','Javelin',5,150,NULL,700,28,NULL,3,3,0x00004082,7,2,2,1,4,1,4,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1402,'Javelin_','Javelin',5,150,NULL,700,28,NULL,3,4,0x00004082,7,2,2,1,4,1,4,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1403,'Javelin__','Javelin',5,150,NULL,700,28,NULL,3,0,0x00004082,7,2,2,1,4,1,4,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1404,'Spear','Spear',5,1700,NULL,850,44,NULL,3,3,0x00004082,7,2,2,1,4,1,4,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1405,'Spear_','Spear',5,1700,NULL,850,44,NULL,3,4,0x00004082,7,2,2,1,4,1,4,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1406,'Spear__','Spear',5,1700,NULL,850,44,NULL,3,0,0x00004082,7,2,2,1,4,1,4,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1407,'Pike','Pike',5,3450,NULL,1000,60,NULL,3,3,0x00004082,7,2,2,1,4,1,4,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1408,'Pike_','Pike',5,3450,NULL,1000,60,NULL,3,4,0x00004082,7,2,2,1,4,1,4,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1409,'Pike__','Pike',5,3450,NULL,1000,60,NULL,3,0,0x00004082,7,2,2,1,4,1,4,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1410,'Lance','Lance',5,60000,NULL,2500,185,NULL,3,0,0x00004082,7,2,34,3,33,1,5,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1411,'Lance_','Lance',5,60000,NULL,2500,185,NULL,3,0,0x00004082,7,2,34,3,33,1,5,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1412,'Lance__','Lance',5,60000,NULL,2500,185,NULL,3,0,0x00004082,7,2,34,3,33,1,5,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1413,'Gungnir','Gungnir',5,20,NULL,500,120,NULL,3,0,0x00004082,7,2,2,4,4,1,4,'bonus bAtkEle,Ele_Wind; bonus bPerfectHitRate,25; bonus bHit,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1414,'Gelerdria','Gelerdria',5,20,NULL,700,145,NULL,3,0,0x00004082,7,2,2,4,48,1,4,'bonus bAtkEle,Ele_Earth; bonus bMaxHP,800; bonus bMaxSP,-50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1415,'Skewer','Brocca',5,20,NULL,850,100,NULL,3,0,0x00004082,7,2,2,4,48,1,4,'bonus bIgnoreDefClass,Class_Normal; bonus2 bAddEle,Ele_Neutral,25;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1416,'Tjungkuletti','Tjungkuletti',5,20,NULL,1000,95,NULL,3,0,0x00004082,7,2,2,4,48,1,4,'bonus bSPDrainValue,1; bonus bSPGainValue,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1417,'Pole_Axe','Pole Axe',5,20,NULL,3800,160,NULL,3,1,0x00004082,7,2,2,3,71,1,4,'bonus bStr,1; bonus bInt,2; bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1418,'Gungnir_','Gungnir',5,20,NULL,500,120,NULL,3,2,0x00004082,7,2,2,4,4,1,4,'bonus bAtkEle,Ele_Wind; bonus bPerfectHitRate,25; bonus bHit,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1419,'Pole_Axe_C','Pole Axe',5,1,NULL,4800,159,NULL,3,0,0x00004082,7,2,2,3,1,0,4,'bonus bStr,1; bonus bInt,2; bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1420,'Long_Horn','Long Horn',5,20,NULL,1000,150,NULL,3,1,0x00004082,2,2,2,4,65,1,4,'bonus bAtkEle,Ele_Holy; bonus2 bAddEff,Eff_Bleeding,500; skill "TF_DETOXIFY",1; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1421,'Battle_Hook','Battle Hook',5,20,NULL,900,140,NULL,3,1,0x00004082,2,2,2,4,65,1,4,'bonus2 bAddEff,Eff_Stun,500; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; skill "KN_PIERCE",3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1422,'Hunting_Spear','Hunting Spear',5,20,NULL,4200,180,NULL,3,1,0x00004082,2,2,2,4,60,1,4,'bonus bIgnoreDefRace,RC_Brute; bonus bIgnoreDefRace,RC_Player_Doram; bonus3 bAddMonsterDropItem,517,RC_Brute,1000; bonus3 bAutoSpell,"LK_JOINTBEAT",3,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1423,'Pole_XO','Pole XO',5,20,NULL,0,120,NULL,3,0,0x00004082,7,2,2,1,0,0,4,'bonus2 bAddClass,Class_All,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1424,'Skewer_C','Refined Brocca',5,1,NULL,0,149,NULL,3,0,0x00004082,7,2,2,4,0,0,4,'bonus bIgnoreDefClass,Class_Normal; bonus2 bAddSize,Size_Medium,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1425,'BF_Spear1','Assaulter Spear',5,20,NULL,0,60,NULL,3,0,0x00004082,7,2,2,3,80,1,4,'bonus bStr,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(BaseJob==Job_Crusader) bonus bAspdRate,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1426,'Krieger_Onehand_Spear1','Glorious Spear',5,20,NULL,0,130,NULL,3,0,0x00004082,7,2,2,4,80,1,4,'bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus bAspdRate,10; } if(getrefine()>8) { if(BaseJob==Job_Knight) bonus4 bAutoSpellOnSkill,"KN_PIERCE","NPC_CRITICALWOUND",2,200; else if(BaseJob==Job_Crusader) bonus3 bAutoSpell,"PA_PRESSURE",5,100; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (1427,'Spear_Of_Excellent','Spear Of Excellent',5,20,NULL,0,160,NULL,3,0,0x00004082,7,2,2,3,0,0,4,'bonus2 bSkillAtk,"SM_MAGNUM",25; bonus bStr,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1428,'Long_Horn_M','Long Horn',5,20,NULL,1000,150,NULL,3,1,0x00004082,2,2,2,4,65,1,4,'bonus bAtkEle,Ele_Holy; bonus2 bAddEff,Eff_Bleeding,500; skill "TF_DETOXIFY",1; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1429,'Hunting_Spear_M','Hunting Spear',5,20,NULL,4200,180,NULL,3,1,0x00004082,2,2,2,4,60,1,4,'bonus bIgnoreDefRace,RC_Brute; bonus bIgnoreDefRace,RC_Player_Doram; bonus3 bAddMonsterDropItem,517,RC_Brute,1000; bonus3 bAutoSpell,"LK_JOINTBEAT",3,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1430,'Pike_C','Pike',5,0,NULL,0,74,NULL,3,0,0x00004082,7,2,2,1,1,0,4,'bonus2 bAddSize,Size_All,70;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1431,'F_Pole_Axe_C','Pole Axe',5,1,NULL,4800,195,NULL,3,0,0x00004082,7,2,2,3,1,0,4,'bonus bStr,1; bonus bInt,2; bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1432,'E_Pole_Axe_C','Pole Axe',5,1,NULL,4800,195,NULL,3,0,0x00004082,7,2,2,3,1,0,4,'bonus bStr,1; bonus bInt,2; bonus bDex,1;',NULL,NULL); -# 2-Handed Spears -REPLACE INTO `item_db` VALUES (1451,'Guisarme','Guisarme',5,13000,NULL,1000,84,NULL,3,2,0x00004082,7,2,34,2,18,1,5,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1452,'Guisarme_','Guisarme',5,13000,NULL,1000,84,NULL,3,3,0x00004082,7,2,34,2,18,1,5,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1453,'Guisarme__','Guisarme',5,13000,NULL,1000,84,NULL,3,0,0x00004082,7,2,34,2,18,1,5,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1454,'Glaive','Glaive',5,20000,NULL,1200,104,NULL,3,2,0x00004082,7,2,34,2,18,1,5,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1455,'Glaive_','Glaive',5,20000,NULL,1200,104,NULL,3,3,0x00004082,7,2,34,2,18,1,5,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1456,'Glaive__','Glaive',5,20000,NULL,1200,104,NULL,3,0,0x00004082,7,2,34,2,18,1,5,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1457,'Partizan','Partizan',5,27000,NULL,2000,124,NULL,3,1,0x00004082,7,2,34,2,18,1,5,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1458,'Partizan_','Partizan',5,27000,NULL,2000,124,NULL,3,2,0x00004082,7,2,34,2,18,1,5,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1459,'Partizan__','Partizan',5,27000,NULL,2000,124,NULL,3,0,0x00004082,7,2,34,2,18,1,5,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1460,'Trident','Trident',5,51000,NULL,1200,150,NULL,3,2,0x00004082,7,2,34,3,33,1,5,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1461,'Trident_','Trident',5,51000,NULL,1200,150,NULL,3,3,0x00004082,7,2,34,3,33,1,5,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1462,'Trident__','Trident',5,51000,NULL,1200,150,NULL,3,0,0x00004082,7,2,34,3,33,1,5,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1463,'Halberd','Halberd',5,54000,NULL,2500,165,NULL,3,1,0x00004082,7,2,34,3,33,1,5,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1464,'Halberd_','Halberd',5,54000,NULL,2500,165,NULL,3,2,0x00004082,7,2,34,3,33,1,5,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1465,'Halberd__','Halberd',5,54000,NULL,2500,165,NULL,3,0,0x00004082,7,2,34,3,33,1,5,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1466,'Crescent_Scythe','Crescent Scythe',5,20,NULL,2500,180,NULL,3,0,0x00004082,7,2,34,4,48,1,5,'bonus bCritical,30; bonus bHit,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1467,'Bill_Guisarme','Bill Guisarme',5,20,NULL,1000,183,NULL,3,0,0x00004082,7,2,34,4,48,1,5,'bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Player_Doram,10; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1468,'Zephyrus','Zephyrus',5,20,NULL,2000,170,NULL,3,0,0x00004082,7,2,34,4,48,1,5,'bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Silence,200; bonus3 bAutoSpell,"MG_THUNDERSTORM",3,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1469,'Longinus\'s_Spear','Longinus\'s Spear',5,20,NULL,2500,180,NULL,3,0,0x00004082,7,2,34,4,48,1,5,'bonus bAtkEle,Ele_Dark; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus2 bAddRace,RC_Angel,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1470,'Brionac','Brionac',5,20,NULL,3000,190,NULL,3,0,0x00004082,7,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;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1471,'Hell_Fire','Hellfire',5,20,NULL,3500,200,NULL,3,0,0x00004082,7,2,34,4,48,1,5,'bonus bAtkEle,Ele_Fire; bonus3 bAutoSpell,"MG_FIREBALL",3,100; bonus bStr,3;',NULL,NULL); -# 2-Handed Staffs -REPLACE INTO `item_db` VALUES (1472,'Staff_Of_Soul','Soul Staff',5,20,NULL,1400,25,NULL,1,0,0x00810204,7,2,34,3,73,1,23,'bonus bInt,5; bonus bAgi,2; bonus bMatkRate,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1473,'Wizardy_Staff','Wizardry Staff',5,20,NULL,2400,120,NULL,1,0,0x00810204,7,2,34,4,90,1,23,'bonus bInt,6; bonus bDex,2; bonus bMatkRate,15;',NULL,NULL); -# 2-Handed Spears -REPLACE INTO `item_db` VALUES (1474,'Gae_Bolg','Gae Bolg',5,20,NULL,2000,160,NULL,3,0,0x00004082,7,2,34,4,60,1,5,'bonus bIgnoreDefRace,RC_Dragon; bonus2 bAddClass,Class_Boss,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1475,'Horseback_Lance','Equestrian\'s Spear',5,20,NULL,3700,200,NULL,4,0,0x00004082,7,2,34,4,75,1,5,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1476,'Crescent_Scythe_','Crescent Scythe',5,20,NULL,2500,180,NULL,3,1,0x00004082,7,2,34,4,48,1,5,'bonus bCritical,30; bonus bHit,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1477,'Spectral_Spear','Spectral Spear',5,20,NULL,2000,170,NULL,3,0,0x00004082,7,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;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1478,'Ahlspiess','Ahlspiess',5,20,NULL,1000,120,NULL,3,0,0x00004080,7,2,34,4,65,1,5,'bonus bIgnoreDefClass,Class_Normal; bonus bIgnoreDefClass,Class_Boss; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus3 bAutoSpell,"KN_PIERCE",5,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1479,'Spectral_Spear_','Spectral Spear',5,20,NULL,2000,170,NULL,3,1,0x00004082,7,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;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1480,'Gae_Bolg_','Gae Bolg',5,20,NULL,2000,160,NULL,3,2,0x00004082,7,2,34,4,60,1,5,'bonus bIgnoreDefRace,RC_Dragon; bonus2 bAddClass,Class_Boss,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1481,'Zephyrus_','Zephyrus',5,20,NULL,2000,170,NULL,3,3,0x00004082,7,2,34,4,48,1,5,'bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Silence,200; bonus3 bAutoSpell,"MG_THUNDERSTORM",3,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1482,'BF_Lance1','Assaulter Lance',5,NULL,NULL,0,160,NULL,3,0,0x00004082,7,2,34,3,80,1,5,'bonus bStr,2; bonus2 bAddRace,RC_DemiHuman,25; bonus2 bAddRace,RC_Player_Human,25; bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1483,'Ivory_Lance','Ivory Lance',5,20,NULL,1000,160,NULL,3,1,0x00004082,2,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;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1484,'Cardo','Cardo',5,20,NULL,5600,150,NULL,3,1,0x00000080,2,2,34,4,70,1,5,'bonus bAspdRate,-10; bonus bDef,getrefine()/2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1485,'Battle_Fork','Battle Fork',5,20,NULL,700,112,NULL,3,4,0x00004082,2,2,34,2,50,1,5,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1486,'Krieger_Twohand_Spear1','Glorious Lance',5,20,NULL,0,220,NULL,3,0,0x00004082,7,2,34,4,80,1,5,'bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) { if(BaseJob==Job_Knight) bonus4 bAutoSpellOnSkill,"KN_PIERCE","NPC_CRITICALWOUND",2,200; else if(BaseJob==Job_Crusader) bonus3 bAutoSpell,"PA_PRESSURE",5,200; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (1487,'Lance_C','Lance',5,0,NULL,0,220,NULL,3,0,0x00004082,7,2,34,3,1,0,5,'bonus2 bAddSize,Size_All,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1488,'Ahlspiess_C','Ahlspiess',5,20,NULL,0,135,NULL,3,0,0x00004080,7,2,34,4,1,1,5,'bonus bIgnoreDefClass,Class_Normal; bonus bIgnoreDefClass,Class_Boss; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus3 bAutoSpell,"KN_PIERCE",5,30;',NULL,NULL); -# Maces -REPLACE INTO `item_db` VALUES (1501,'Club','Club',5,120,NULL,700,23,NULL,1,3,0x0004C5B3,7,2,2,1,2,1,8,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1502,'Club_','Club',5,120,NULL,700,23,NULL,1,4,0x0004C5B3,7,2,2,1,2,1,8,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1503,'Club__','Club',5,120,NULL,700,23,NULL,1,0,0x0004C5B3,7,2,2,1,2,1,8,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1504,'Mace','Mace',5,1600,NULL,800,37,NULL,1,3,0x0004C5B3,7,2,2,1,2,1,8,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1505,'Mace_','Mace',5,1600,NULL,800,37,NULL,1,4,0x0004C5B3,7,2,2,1,2,1,8,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1506,'Mace__','Mace',5,1600,NULL,800,37,NULL,1,0,0x0004C5B3,7,2,2,1,2,1,8,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1507,'Smasher','Smasher',5,9000,NULL,1000,54,NULL,1,2,0x0004C5B3,7,2,2,2,14,1,8,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1508,'Smasher_','Smasher',5,9000,NULL,1000,54,NULL,1,3,0x0004C5B3,7,2,2,2,14,1,8,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1509,'Smasher__','Smasher',5,9000,NULL,1000,54,NULL,1,3,0x0004C5B3,7,2,2,2,14,1,8,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1510,'Flail','Flail',5,16000,NULL,900,69,NULL,1,2,0x0004C5B2,7,2,2,2,14,1,8,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1511,'Flail_','Flail',5,16000,NULL,900,69,NULL,1,3,0x0004C5B2,7,2,2,2,14,1,8,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1512,'Flail__','Flail',5,16000,NULL,900,69,NULL,1,3,0x0004C5B2,7,2,2,2,14,1,8,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1513,'Morning_Star','Morning Star',5,41000,NULL,1500,110,NULL,1,1,0x0004C5B2,7,2,2,3,27,1,8,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1514,'Morning_Star_','Morning Star',5,41000,NULL,1500,110,NULL,1,2,0x0004C5B2,7,2,2,3,27,1,8,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1515,'Morning_Star__','Morning Star',5,41000,NULL,1500,110,NULL,1,2,0x0004C5B2,7,2,2,3,27,1,8,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1516,'Sword_Mace','Sword Mace',5,50000,NULL,1200,130,NULL,1,0,0x0004C5B2,7,2,2,3,27,1,8,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1517,'Sword_Mace_','Sword Mace',5,50000,NULL,1200,130,NULL,1,1,0x0004C5B2,7,2,2,3,27,1,8,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1518,'Sword_Mace__','Sword Mace',5,50000,NULL,1200,130,NULL,1,1,0x0004C5B2,7,2,2,3,27,1,8,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1519,'Chain','Chain',5,23000,NULL,800,84,NULL,1,2,0x0004C5B2,7,2,2,2,14,1,8,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1520,'Chain_','Chain',5,23000,NULL,800,84,NULL,1,3,0x0004C5B2,7,2,2,2,14,1,8,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1521,'Chain__','Chain',5,23000,NULL,800,84,NULL,1,3,0x0004C5B2,7,2,2,2,14,1,8,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1522,'Stunner','Stunner',5,60000,NULL,2000,140,NULL,1,0,0x00008110,7,2,2,3,27,1,8,'bonus2 bAddEff,Eff_Stun,1000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1523,'Spike','Spike',5,20,NULL,700,85,NULL,1,0,0x00008110,7,2,2,4,40,1,8,'bonus bCritical,40; bonus bDefRate,-67; bonus bDef2Rate,-67;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1524,'Golden_Mace','Golden Mace',5,20,NULL,800,110,NULL,1,1,0x00008110,7,2,2,4,40,1,8,'bonus2 bAddRace,RC_Undead,10; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1525,'Long_Mace','Long Mace',5,20,NULL,800,135,NULL,3,0,0x00008110,7,2,2,4,40,1,8,'bonus bLongAtkDef,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1526,'Slash','Slash',5,20,NULL,1000,145,NULL,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;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1527,'Quadrille','Quadrille',5,20,NULL,900,165,NULL,1,0,0x00008110,7,2,2,4,40,1,8,'bonus2 bAddRace,RC_Undead,10; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus2 bAddEle,Ele_Earth,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1528,'Grand_Cross','Grand Cross',5,20,NULL,1500,140,NULL,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;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1529,'Iron_Driver','Iron Driver',5,20,NULL,3000,155,NULL,2,0,0x00008100,7,2,2,3,78,1,8,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1530,'Mjolnir','Mjolnir',5,20,NULL,6000,250,NULL,1,0,0x000444A2,7,2,2,4,95,0,8,'bonus bAtkEle,Ele_Wind; bonus bDex,40; bonus bStr,15; bonus bAspdRate,10; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1531,'Spanner','Wrench',5,20,NULL,2500,115,NULL,1,0,0x00008110,7,2,2,3,55,1,8,'bonus2 bAddEff,Eff_Blind,100; bonus2 bAddEff,Eff_Stun,100; bonus2 bAddEff,Eff_Poison,100; bonus2 bAddEff,Eff_Freeze,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1532,'Stunner_','Stunner',5,60000,NULL,2000,140,NULL,1,2,0x00008110,7,2,2,3,27,1,8,'bonus2 bAddEff,Eff_Stun,1000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1533,'Warrior_Balmung','Warrior\'s Balmung',5,20,NULL,1000,170,NULL,1,0,0xFFFFFFFF,7,2,2,4,48,1,8,'bonus bAllStats,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1534,'Spanner_C','Wrench',5,2,NULL,0,150,NULL,1,0,0x00008110,7,2,2,3,0,0,8,'bonus2 bAddEff,Eff_Blind,100; bonus2 bAddEff,Eff_Stun,100; bonus2 bAddEff,Eff_Poison,100; bonus2 bAddEff,Eff_Freeze,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1535,'Hollgrehenn_Hammer','Hollgrehenn\'s Hammer',5,4444,NULL,44,4,NULL,1,1,0x0004C5B2,7,2,2,4,44,1,8,'bonus bBreakArmorRate,100; bonus bBreakWeaponRate,100; if(readparam(bStr)>=44) { bonus bBaseAtk,44; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (1536,'Good_Morning_Star','Good Morning Star',5,20,NULL,0,120,NULL,1,0,0x0004C5B2,7,2,2,1,0,0,8,'bonus2 bAddClass,Class_All,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1537,'Quadrille_C','Refined Quadrille',5,1,NULL,0,193,NULL,1,0,0x00008110,7,2,2,4,0,0,8,'bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player_Human,30; bonus2 bAddRace,RC_Demon,40; bonus2 bAddRace,RC_Undead,40;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1538,'Spike_','Spike',5,20,NULL,700,85,NULL,1,2,0x00008110,7,2,2,4,40,1,8,'bonus bCritical,40; bonus bDefRate,-67; bonus bDef2Rate,-67;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1539,'Golden_Mace_','Golden Mace',5,20,NULL,800,110,NULL,1,2,0x00008110,7,2,2,4,40,1,8,'bonus2 bAddRace,RC_Undead,10; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1540,'Grand_Cross_','Grand Cross',5,20,NULL,1500,140,NULL,1,1,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;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1541,'Nemesis','Nemesis',5,20,NULL,900,120,NULL,1,0,0x00008110,7,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; }";',NULL,NULL); -REPLACE INTO `item_db` VALUES (1542,'BF_Morning_Star1','Valorous Battlefield Morning Star',5,20,NULL,0,105,NULL,1,0,0x0004C5B3,7,2,2,3,80,1,8,'bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1543,'BF_Morning_Star2','Brave Battlefield Morning Star',5,20,NULL,0,105,NULL,1,0,0x0004C5B3,7,2,2,3,80,1,8,'bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus bUnbreakableWeapon; autobonus "{ bonus2 bAddEff,Eff_Stun,5000; }",10,6000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }";',NULL,NULL); -REPLACE INTO `item_db` VALUES (1544,'Lunakaligo','Lunakaligo',5,20,NULL,700,110,NULL,1,3,0x00008110,2,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; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (1545,'N_Mace','Novice Mace',5,0,NULL,0,57,NULL,1,3,0x0004C5B3,7,2,2,1,2,0,8,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1546,'Krieger_Onehand_Mace1','Glorious Morning Star',5,20,NULL,0,130,NULL,1,0,0x0004C5B3,7,2,2,4,80,1,8,'bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus bAspdRate,5; } if(getrefine()>8) { bonus2 bAddEff,Eff_Stun,2000; bonus bAspdRate,5; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (1547,'Mace_Of_Madness','Mace Of Madness',5,20,NULL,0,150,NULL,1,0,0x0004C5B2,7,2,2,3,0,0,8,'bonus2 bSkillAtk,"MC_CARTREVOLUTION",25; bonus bStr,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1548,'Veteran_Hammer','Veteran Hammer',5,10000,NULL,1800,160,NULL,1,2,0x00008110,7,2,2,3,80,1,8,'bonus bHealPower,getskilllv("AL_DP"); bonus bCritical,getskilllv("PR_MACEMASTERY")*2; bonus bInt,1; bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1549,'Pilebuncker','Pile Bunker',5,10000,NULL,3500,450,NULL,1,0,0x00000400,7,2,2,3,99,1,8,NULL,NULL,NULL); -# Books -REPLACE INTO `item_db` VALUES (1550,'Book','Book',5,30000,NULL,600,85,NULL,1,3,0x00410100,7,2,2,2,14,1,15,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1551,'Bible','Bible',5,60000,NULL,1000,115,NULL,1,2,0x00410100,7,2,2,3,27,1,15,'bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1552,'Tablet','Tablet',5,51000,NULL,800,125,NULL,1,1,0x00410100,7,2,2,3,27,1,15,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1553,'Book_Of_Billows','Book of Billows',5,35000,NULL,750,90,NULL,1,0,0x00410100,7,2,2,3,27,1,15,'bonus bAtkEle,Ele_Water;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1554,'Book_Of_Mother_Earth','Book of Mother Earth',5,35000,NULL,750,90,NULL,1,0,0x00410100,7,2,2,3,27,1,15,'bonus bAtkEle,Ele_Earth;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1555,'Book_Of_Blazing_Sun','Book of the Blazing Sun',5,35000,NULL,750,90,NULL,1,0,0x00410100,7,2,2,3,27,1,15,'bonus bAtkEle,Ele_Fire;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1556,'Book_Of_Gust_Of_Wind','Book of Gust of Wind',5,35000,NULL,750,90,NULL,1,0,0x00410100,7,2,2,3,27,1,15,'bonus bAtkEle,Ele_Wind;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1557,'Book_Of_The_Apocalypse','Book of the Apocalypse',5,60000,NULL,800,120,NULL,1,0,0x00410100,7,2,2,4,40,1,15,'bonus bAtkEle,Ele_Dark; bonus2 bAddEle,Ele_Holy,5; bonus2 bAddEle,Ele_Water,7; bonus2 bAddEle,Ele_Earth,7; bonus2 bAddEle,Ele_Fire,7; bonus2 bAddEle,Ele_Wind,7;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1558,'Girl\'s_Diary','Girl\'s Diary',5,1500,NULL,300,60,NULL,1,1,0x00410100,7,2,2,4,40,1,15,'bonus2 bAddDamageClass,1188,150;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1559,'Legacy_Of_Dragon','Legacy of Dragon',5,20,NULL,700,130,NULL,1,0,0x00410100,7,2,2,4,70,1,15,'bonus bInt,3; bonus bIgnoreDefRace,RC_Dragon; bonus2 bSPGainRace,RC_Dragon,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1560,'Diary_Of_Great_Sage','Sage\'s Diary',5,20,NULL,1100,100,NULL,1,2,0x00410100,7,2,2,3,60,1,15,'bonus bMatkRate,15; if(readparam(bStr)>=50) bonus bAspdRate,5; if(readparam(bInt)>=70) bonus bMatkRate,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1561,'Hardback','Hardcover Book',5,20,NULL,1500,140,NULL,1,1,0x00410100,7,2,2,4,55,1,15,'bonus bStr,3; bonus bDex,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1562,'Bible_Of_Battlefield','Battlefield Textbook',5,20,NULL,700,110,NULL,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;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1563,'Diary_Of_Great_Sage_C','Sage\'s Diary',5,1,NULL,0,135,NULL,1,2,0x00410100,7,2,2,3,1,0,15,'bonus bMatkRate,20; bonus bAspdRate,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1564,'Encyclopedia','Encyclopedia',5,20,NULL,2000,110,NULL,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);',NULL,NULL); -REPLACE INTO `item_db` VALUES (1565,'Death_Note','Ledger of Death',5,20,NULL,1000,137,NULL,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_Human,10; bonus bAspdRate,getrefine(); if(BaseJob==Job_Sage) bonus3 bAutoSpell,"NPC_HELLJUDGEMENT",5,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1566,'Diary_Of_Great_Basil','Diary Of Great Basil',5,20,NULL,0,120,NULL,1,0,0x00410100,7,2,2,1,0,0,15,'bonus2 bAddClass,Class_All,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1567,'Hardback_C','Refined Hardcover Book',5,1,NULL,0,168,NULL,1,0,0x00410100,7,2,2,4,0,0,15,'bonus bStr,5; bonus bDex,2; bonus bMatkRate,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1568,'Book_Of_Billows_','Book of Billows',5,35000,NULL,750,90,NULL,1,3,0x00410100,7,2,2,3,27,1,15,'bonus bAtkEle,Ele_Water;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1569,'Book_Of_Mother_Earth_','Book of Mother Earth',5,35000,NULL,750,90,NULL,1,3,0x00410100,7,2,2,3,27,1,15,'bonus bAtkEle,Ele_Earth;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1570,'Book_Of_Blazing_Sun_','Book of Blazing Sun',5,35000,NULL,750,90,NULL,1,3,0x00410100,7,2,2,3,27,1,15,'bonus bAtkEle,Ele_Fire;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1571,'Book_Of_Gust_Of_Wind_','Book of Gust of Wind',5,35000,NULL,750,90,NULL,1,3,0x00410100,7,2,2,3,27,1,15,'bonus bAtkEle,Ele_Wind;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1572,'Principles_Of_Magic','Principles of Magic',5,20,NULL,300,60,NULL,1,2,0x00410100,7,2,2,3,60,1,15,'bonus bMatkRate,20; bonus bInt,3; bonus bSPrecovRate,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1573,'Ancient_Magic','Ancient Magic',5,20,NULL,700,30,NULL,1,2,0x00410100,7,2,2,3,70,1,15,'bonus bMatkRate,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1574,'BF_Book1','Brave Battle Strategy Book',5,20,NULL,0,90,NULL,1,0,0x00410100,7,2,2,3,80,1,15,'bonus bStr,2; bonus bInt,1; bonus bMatkRate,15; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1575,'BF_Book2','Valorous Battle Strategy Book',5,20,NULL,0,90,NULL,1,0,0x00410100,7,2,2,3,80,1,15,'bonus bStr,2; bonus bInt,1; bonus bMatkRate,15; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1576,'Krieger_Book1','Glorious Tablet',5,20,NULL,0,90,NULL,1,0,0x00410100,7,2,2,4,80,1,15,'bonus bMatkRate,15; bonus2 bAddRace,RC_DemiHuman,80; bonus2 bAddRace,RC_Player_Human,80; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) autobonus "{ bonus bBaseAtk,200; }",30,3000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }";',NULL,NULL); -REPLACE INTO `item_db` VALUES (1577,'Krieger_Book2','Glorious Apocalypse',5,20,NULL,0,90,NULL,1,0,0x00410100,7,2,2,4,80,1,15,'bonus bMatkRate,15; bonus2 bAddRace,RC_DemiHuman,80; bonus2 bAddRace,RC_Player_Human,80; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; if(getrefine()>5) bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; if(getrefine()>8) { bonus bMatkRate,5; bonus bCastrate,-5; bonus bDelayRate,-5; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (1578,'Book_Of_Prayer','Book Of Prayer',5,20,NULL,0,140,NULL,1,0,0x00410100,7,2,2,3,0,0,15,'bonus bVit,2; bonus bMdef,2; bonus bMaxSPrate,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1579,'Death_Note_M','Book of the Dead',5,20,NULL,1000,137,NULL,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_Human,10; bonus bAspdRate,getrefine(); if(BaseJob==Job_Sage) bonus3 bAutoSpell,"NPC_HELLJUDGEMENT",5,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1580,'Encyclopedia_C','Giant Encyclopedia',5,0,NULL,0,145,NULL,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;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1581,'F_Diary_Of_Great_Sage_C','Diary Of Great Sage',5,1,NULL,0,135,NULL,1,2,0x00410100,7,2,2,3,1,0,15,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1582,'E_Diary_Of_Great_Sage_C','Diary Of Great Sage',5,1,NULL,0,135,NULL,1,2,0x00410100,7,2,2,3,1,0,15,NULL,NULL,NULL); -# GM Weapon -REPLACE INTO `item_db` VALUES (1599,'Angra_Manyu','Angra Manyu',5,1,NULL,10,200,NULL,2,0,0xFFFFFFFF,7,2,2,1,1,1,8,'bonus bAllStats,50; bonus bBaseAtk,3800; 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;',NULL,NULL); -# Staffs -REPLACE INTO `item_db` VALUES (1601,'Rod','Rod',5,50,NULL,400,15,NULL,1,3,0x00818315,7,2,2,1,1,1,10,'bonus bMatkRate,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1602,'Rod_','Rod',5,50,NULL,400,15,NULL,1,4,0x00818315,7,2,2,1,1,1,10,'bonus bMatkRate,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1603,'Rod__','Rod',5,50,NULL,400,15,NULL,1,0,0x00818315,7,2,2,1,1,1,10,'bonus bMatkRate,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1604,'Wand','Wand',5,2500,NULL,400,25,NULL,1,2,0x00818315,7,2,2,2,12,1,10,'bonus bInt,1; bonus bMatkRate,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1605,'Wand_','Wand',5,2500,NULL,400,25,NULL,1,3,0x00818315,7,2,2,2,12,1,10,'bonus bInt,1; bonus bMatkRate,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1606,'Wand__','Wand',5,2500,NULL,400,25,NULL,1,0,0x00818315,7,2,2,2,12,1,10,'bonus bInt,1; bonus bMatkRate,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1607,'Staff','Staff',5,9500,NULL,400,40,NULL,1,2,0x00818314,7,2,2,2,12,1,10,'bonus bInt,2; bonus bMatkRate,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1608,'Staff_','Staff',5,9500,NULL,400,40,NULL,1,3,0x00818314,7,2,2,2,12,1,10,'bonus bInt,2; bonus bMatkRate,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1609,'Staff__','Staff',5,9500,NULL,400,40,NULL,1,0,0x00818314,7,2,2,2,12,1,10,'bonus bInt,2; bonus bMatkRate,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1610,'Arc_Wand','Arc Wand',5,45000,NULL,400,60,NULL,1,1,0x00818314,7,2,2,3,24,1,10,'bonus bInt,3; bonus bMatkRate,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1611,'Arc_Wand_','Arc Wand',5,45000,NULL,400,60,NULL,1,2,0x00818314,7,2,2,3,24,1,10,'bonus bInt,3; bonus bMatkRate,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1612,'Arc_Wand__','Arc Wand',5,45000,NULL,400,60,NULL,1,0,0x00818314,7,2,2,3,24,1,10,'bonus bInt,3; bonus bMatkRate,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1613,'Mighty_Staff','Mighty Staff',5,20,NULL,700,130,NULL,1,0,0x00818314,7,2,2,3,24,1,10,'bonus bStr,10; bonus bMatkRate,15; bonus bSPDrainValue,-2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1614,'Blessed_Wand','Wand of Occult',5,20,NULL,700,75,NULL,1,0,0x00818314,7,2,2,3,24,1,10,'bonus bInt,3; bonus bMatkRate,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1615,'Bone_Wand','Evil Bone Wand',5,20,NULL,700,40,NULL,1,0,0x00818314,7,2,2,3,24,1,10,'bonus bInt,4; bonus bAtkEle,Ele_Undead; bonus bMatkRate,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1616,'Staff_Of_Wing','Wing Staff',5,20,NULL,500,60,NULL,1,0,0x00810204,7,2,2,4,40,1,10,'bonus bMatkRate,15; bonus bCastrate,-5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1617,'Survival_Rod','Survivor\'s Rod',5,85000,NULL,1000,50,NULL,1,0,0x00818314,7,2,2,3,24,1,10,'bonus bDex,2; bonus bMatkRate,15; bonus bMaxHP,300;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1618,'Survival_Rod_','Survivor\'s Rod',5,85000,NULL,1000,50,NULL,1,1,0x00818314,7,2,2,3,24,1,10,'bonus bDex,3; bonus bMatkRate,15; bonus bMaxHP,400;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1619,'Survival_Rod2','Survivor\'s Rod',5,85000,NULL,1000,50,NULL,1,0,0x00818314,7,2,2,3,24,1,10,'bonus bInt,2; bonus bMatkRate,15; bonus bMaxHP,300;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1620,'Survival_Rod2_','Survivor\'s Rod',5,85000,NULL,1000,50,NULL,1,1,0x00818314,7,2,2,3,24,1,10,'bonus bInt,3; bonus bMatkRate,15; bonus bMaxHP,400;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1621,'Hypnotist\'s_Staff','Hypnotist\'s Staff',5,43000,NULL,500,70,NULL,1,1,0x00000001,7,2,2,3,30,1,10,'bonus bInt,1; bonus bMatkRate,25;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1622,'Hypnotist\'s_Staff_','Hypnotist\'s Staff',5,20,NULL,500,70,NULL,1,2,0x00000001,7,2,2,3,30,1,10,'bonus bInt,1; bonus bMatkRate,25;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1623,'Mighty_Staff_C','Mighty Staff',5,1,NULL,0,165,NULL,1,0,0x00818314,7,2,2,3,1,0,10,'bonus bStr,10; bonus bInt,4; bonus bMatkRate,20; bonus bSPDrainValue,-1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1624,'Lich_Bone_Wand','Lich\'s Bone Wand',5,20,NULL,800,60,NULL,1,2,0x00018314,2,2,2,3,70,1,10,'bonus bInt,1; bonus bDex,1; bonus bAtkEle,Ele_Undead; bonus bMatkRate,20; bonus3 bAutoSpellWhenHit,"NPC_WIDECURSE",5,10+getrefine(); if(getrefine()>=9){ bonus bMatkRate,3; bonus bMaxSP,300; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (1625,'Healing_Staff','Healing Staff',5,20,NULL,400,10,NULL,1,0,0x00008110,7,2,2,3,55,1,10,'bonus bAtkEle,Ele_Holy; bonus bMatkRate,15; bonus bHealPower,(getrefine()*3/2);',NULL,NULL); -REPLACE INTO `item_db` VALUES (1626,'Piercing_Staff','Piercing Staff',5,20,NULL,500,80,NULL,1,0,0x00018314,2,2,2,3,70,1,10,'bonus bInt,4; bonus bMatkRate,15; bonus2 bIgnoreMdefClassRate,Class_Normal,10+getrefine(); bonus2 bIgnoreMdefClassRate,Class_Boss,10+getrefine();',NULL,NULL); -REPLACE INTO `item_db` VALUES (1627,'Staffy','Staffy',5,20,NULL,0,40,NULL,1,0,0x00818314,7,2,2,1,0,0,10,'bonus bMatkRate,15; bonus2 bAddClass,Class_All,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1628,'Survival_Rod_C','Refined Survivor\'s Rod',5,1,NULL,0,71,NULL,1,0,0x00818314,7,2,2,3,0,0,10,'bonus bDex,4; bonus bMatkRate,20; bonus bMaxHP,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1629,'Walking_Stick','Gentleman\'s Staff',5,20,NULL,500,40,NULL,1,1,0x00818314,7,2,2,4,50,1,10,'bonus bMatkRate,15; bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1630,'Release_Of_Wish','Release of Wish',5,20,NULL,500,30,NULL,1,0,0x00810204,7,2,2,3,50,1,10,'bonus bMatkRate,15; bonus bInt,3; bonus bHealPower,5; autobonus "{ bonus2 bSPRegenRate,100,2000; bonus2 bHPRegenRate,50,2000; }",10,10000,BF_MAGIC,"{ specialeffect2 EF_HEAL; }";',NULL,NULL); -REPLACE INTO `item_db` VALUES (1631,'Holy_Stick','Holy Stick',5,20,NULL,500,50,NULL,1,1,0x00008100,7,2,2,4,70,1,10,'bonus bAtkEle,Ele_Holy; bonus bMatkRate,15; bonus2 bCastrate,"AL_HOLYLIGHT",-25; bonus2 bCastrate,"PR_TURNUNDEAD",-25; bonus2 bCastrate,"PR_MAGNUS",-25;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1632,'BF_Staff1','Warlock\'s Magic Wand',5,20,NULL,0,70,NULL,1,0,0x00818314,7,2,2,3,80,1,10,'bonus bInt,4; bonus bDex,3; bonus bMatkRate,15; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; bonus3 bAddEff,Eff_Stun,500,ATF_SKILL; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1633,'BF_Staff2','Warlock\'s Battle Wand',5,20,NULL,0,70,NULL,1,0,0x00818314,7,2,2,3,80,1,10,'bonus bInt,3; bonus bDex,3; bonus bMatkRate,15; bonus2 bMagicAddRace,RC_DemiHuman,15; bonus2 bMagicAddRace,RC_Player_Human,15; bonus3 bAddEff,Eff_Stun,500,ATF_SKILL; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1634,'BF_Staff3','Strong Recovery Wand',5,20,NULL,0,70,NULL,1,0,0x00818314,7,2,2,3,80,1,10,'bonus bMatkRate,15; bonus bHealPower,14; bonus2 bSPRegenRate,5,10000; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1635,'BF_Staff4','Speedy Recovery Wand',5,20,NULL,0,70,NULL,1,0,0x00818314,7,2,2,3,80,1,10,'bonus bInt,3; bonus bDex,2; bonus bMatkRate,15; bonus bDelayRate,-15; bonus2 bSPRegenRate,5,10000; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1636,'Thorn_Staff','Thorn Staff of Darkness',5,20,NULL,700,60,NULL,1,0,0x00018314,2,2,2,4,75,1,10,'bonus bInt,3; bonus bDex,3; bonus bMatkRate,20; bonus2 bIgnoreMdefClassRate,Class_Normal,getrefine(); bonus2 bIgnoreMdefClassRate,Class_Boss,getrefine(); bonus bDelayRate,-(getrefine()*3/2);',NULL,NULL); -REPLACE INTO `item_db` VALUES (1637,'Eraser','Eraser',5,20,NULL,500,80,NULL,1,0,0x00018314,2,2,2,4,70,1,10,'bonus bMatkRate,20; 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;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1638,'Healing_Staff_C','Staff Of Healing',5,20,NULL,0,10,NULL,1,0,0x00008110,7,2,2,3,1,1,10,'bonus bAtkEle,Ele_Holy; bonus bMatkRate,15; bonus bHealPower,(getrefine()*3/2);',NULL,NULL); -REPLACE INTO `item_db` VALUES (1639,'N_Rod','Novice Rod',5,0,NULL,0,15,NULL,1,3,0x00818315,7,2,2,1,1,0,10,'bonus bMatkRate,16;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1640,'Krieger_Onehand_Staff1','Glorious Arc Wand',5,20,NULL,0,70,NULL,1,0,0x00818314,7,2,2,4,80,1,10,'bonus2 bMagicAddRace,RC_DemiHuman,15; bonus2 bMagicAddRace,RC_Player_Human,15; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25 + ((getrefine()>5) ? 5 : 0); bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25 + ((getrefine()>5) ? 5 : 0); bonus bUnbreakableWeapon; if(getrefine()>8) { bonus bCastrate,-5; bonus bDelayRate,-5; bonus bMatkRate,5; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (1641,'Krieger_Onehand_Staff2','Glorious Cure Wand',5,20,NULL,0,70,NULL,1,0,0x00818314,7,2,2,4,80,1,10,'bonus bHealPower,14; bonus bDelayRate,-10; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,5; bonus bHealPower,5+(getrefine()-5)*2; } if(getrefine()>8) bonus5 bAutoSpellOnSkill,"AL_HEAL","AL_HEAL",10,100,1; if(getrefine()>9) { bonus bHealPower,10; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (1642,'Staff_Of_Darkness','Staff Of Darkness',5,20,NULL,0,100,NULL,1,0,0x00818314,7,2,2,2,0,0,10,'bonus bCastrate,-5; bonus bMatkRate,15; bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1643,'Dead_Tree_Cane','Dead Tree Cane',5,20,NULL,100,100,NULL,1,0,0x00818314,7,2,2,4,70,1,10,'bonus bMatk,15; bonus bInt,4; if(getrefine()>5) { bonus bInt,getrefine()-5; bonus bMaxHP,-200; bonus bMaxSP,-100; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (1644,'Piercing_Staff_M','Staff of Piercing',5,20,NULL,500,80,NULL,1,0,0x00018314,2,2,2,3,70,1,10,'bonus bInt,4; bonus bMatkRate,15; bonus2 bIgnoreMdefClassRate,Class_Normal,10+getrefine(); bonus2 bIgnoreMdefClassRate,Class_Boss,10+getrefine();',NULL,NULL); -REPLACE INTO `item_db` VALUES (1645,'Lich_Bone_Wand_M','Lich\'s Bone Wand',5,20,NULL,800,60,NULL,1,2,0x00018314,2,2,2,3,70,1,10,'bonus bInt,1; bonus bDex,1; bonus bAtkEle,Ele_Undead; bonus bMatkRate,20; bonus3 bAutoSpellWhenHit,"NPC_WIDECURSE",5,10+getrefine(); if(getrefine()>=9){ bonus bMatkRate,3; bonus bMaxSP,300; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (1646,'La\'cryma_Stick','La\'cryma Stick',5,20,NULL,500,30,NULL,1,2,0x00010204,2,2,2,3,50,1,10,'bonus bInt,4; bonus bMatkRate,15; bonus bMdef,getrefine(); bonus2 bSkillAtk,"WZ_STORMGUST",getrefine(); if(getrefine()>9) bonus2 bCastrate,"WZ_STORMGUST",-8;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1647,'Croce_Staff','Croce Staff',5,20,NULL,500,30,NULL,1,1,0x00008110,2,2,2,3,50,1,10,'bonus bAtkEle,Ele_Holy; bonus bMatkRate,15; bonus bInt,4; bonus4 bAutoSpellOnSkill,"AL_HEAL","AL_BLESSING",max(getskilllv("AL_BLESSING"),1),20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1648,'Staff_Of_Bordeaux','Staff Of Bordeaux',5,20,NULL,500,30,NULL,1,0,0x00010204,2,2,2,4,50,1,10,'bonus bMatkRate,15; bonus bInt,2; bonus bDex,1; if(getskilllv("SA_DRAGONOLOGY")==5) { bonus bUseSPrate,-15; bonus bInt,3; }',NULL,NULL); -# Bows -REPLACE INTO `item_db` VALUES (1701,'Bow','Bow',5,1000,NULL,500,15,NULL,5,3,0x000A0848,7,2,34,1,4,1,11,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1702,'Bow_','Bow',5,1000,NULL,500,15,NULL,5,4,0x000A0848,7,2,34,1,4,1,11,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1703,'Bow__','Bow',5,1000,NULL,0,15,NULL,5,0,0x000A0848,7,2,34,1,4,1,11,'bonus2 bAddDamageClass,1002,500; bonus2 bAddDamageClass,1113,500; bonus2 bAddDamageClass,1031,500; bonus2 bAddDamageClass,1242,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1704,'Composite_Bow','Composite Bow',5,2500,NULL,600,29,NULL,5,3,0x000A0848,7,2,34,1,4,1,11,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1705,'Composite_Bow_','Composite Bow',5,2500,NULL,600,29,NULL,5,4,0x000A0848,7,2,34,1,4,1,11,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1706,'Composite_Bow__','Composite Bow',5,2500,NULL,600,29,NULL,5,0,0x000A0848,7,2,34,1,4,1,11,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1707,'Great_Bow','Great Bow',5,10000,NULL,1000,50,NULL,5,2,0x000A0848,7,2,34,2,18,1,11,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1708,'Great_Bow_','Great Bow',5,10000,NULL,1000,50,NULL,5,3,0x000A0848,7,2,34,2,18,1,11,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1709,'Great_Bow__','Great Bow',5,10000,NULL,1000,50,NULL,5,0,0x000A0848,7,2,34,2,18,1,11,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1710,'CrossBow','Crossbow',5,17000,NULL,900,65,NULL,5,2,0x000A0848,7,2,34,2,18,1,11,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1711,'CrossBow_','Crossbow',5,17000,NULL,900,65,NULL,5,3,0x000A0848,7,2,34,2,18,1,11,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1712,'CrossBow__','Crossbow',5,17000,NULL,900,65,NULL,5,0,0x000A0848,7,2,34,2,18,1,11,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1713,'Arbalest','Arbalest',5,48000,NULL,1000,90,NULL,5,1,0x000A0848,7,2,34,3,33,1,11,'bonus bDex,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1714,'Kakkung','Gakkung Bow',5,42000,NULL,1100,100,NULL,5,1,0x000A0848,7,2,34,3,33,1,11,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1715,'Arbalest_','Arbalest',5,48000,NULL,1000,90,NULL,5,2,0x000A0848,7,2,34,3,33,1,11,'bonus bDex,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1716,'Kakkung_','Gakkung Bow',5,42000,NULL,1100,100,NULL,5,2,0x000A0848,7,2,34,3,33,1,11,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1718,'Hunter_Bow','Hunter Bow',5,64000,NULL,1500,125,NULL,5,0,0x00000800,7,2,34,3,33,1,11,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1719,'Bow_Of_Roguemaster','Roguemaster\'s Bow',5,20,NULL,500,75,NULL,11,0,0x00000040,7,2,34,4,48,1,11,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1720,'Bow_Of_Rudra','Rudra Bow',5,20,NULL,1200,150,NULL,5,0,0x000A0808,7,2,34,4,48,1,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;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1721,'Repeting_CrossBow','Repeating Crossbow',5,89000,NULL,2000,95,NULL,9,1,0x00020840,7,2,34,3,65,1,11,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1722,'Balistar','Ballista',5,124000,NULL,3500,145,NULL,5,0,0x00080800,7,2,34,4,77,1,11,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1723,'Luna_Bow','Luna Bow',5,20,NULL,2000,100,NULL,5,2,0x00000800,7,2,34,3,30,1,11,'bonus bDef,2+3*(getrefine()>5)+2*(getrefine()>8);',NULL,NULL); -REPLACE INTO `item_db` VALUES (1724,'Dragon_Wing','Dragon Wing',5,20,NULL,1200,100,NULL,5,0,0x000A0848,7,2,34,4,60,1,11,'bonus3 bAddMonsterDropItem,1765,RC_Dragon,300; bonus bIgnoreDefRace,RC_Dragon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1725,'Bow_Of_Minstrel','Minstrel Bow',5,20,NULL,1700,120,NULL,5,1,0x00080800,7,2,34,4,70,1,11,'bonus bInt,2; bonus bSPrecovRate,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1726,'Hunter_Bow_','Hunter Bow',5,64000,NULL,1500,125,NULL,5,1,0x00000800,7,2,34,3,33,1,11,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1727,'Balistar_','Ballista',5,124000,NULL,3500,145,NULL,5,1,0x00080800,7,2,34,4,77,1,11,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1728,'Balistar_C','Ballista',5,1,NULL,0,194,NULL,5,0,0x00080800,7,2,34,4,1,0,11,'bonus bLongAtkRate,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1729,'Bow_Of_Rudra_C','Rudra Bow',5,2,NULL,0,185,NULL,5,0,0x000A0808,7,2,34,4,1,0,11,'bonus bAtkEle,Ele_Holy; bonus bInt,5; skill "AL_CURE",1; skill "AL_HEAL",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1730,'Burning_Bow','Burning Bow',5,20,NULL,1400,95,NULL,5,1,0x000A0808,7,2,34,3,55,1,11,'bonus2 bSubEle,Ele_Fire,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1731,'Frozen_Bow','Frozen Bow',5,20,NULL,1400,100,NULL,5,1,0x000A0808,7,2,34,3,55,1,11,'bonus2 bAddEff,Eff_Freeze,1000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1732,'Earth_Bow','Earth Bow',5,20,NULL,1400,105,NULL,5,1,0x000A0808,7,2,34,3,55,1,11,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1733,'Gust_Bow','Gust Bow',5,20,NULL,1400,95,NULL,5,1,0x000A0808,7,2,34,3,55,1,11,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1734,'Orc_Archer_Bow','Orc Archer Bow',5,20,NULL,1600,120,NULL,5,0,0x000A0808,7,2,34,3,65,1,11,'bonus2 bAddMonsterDropItem,1753,200;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1735,'Kkakkung','Kkakkung',5,20,NULL,0,120,NULL,5,0,0x000A0848,7,2,34,1,1,0,11,'bonus2 bAddClass,Class_All,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1736,'Double_Bound','Double Bound',5,20,NULL,900,70,NULL,5,3,0x00000800,2,2,34,3,70,1,11,'bonus3 bAutoSpell,"AC_DOUBLE",GetSkillLv("AC_DOUBLE"),10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1737,'Ixion_Wing','Ixion Wings',5,20,NULL,300,135,NULL,5,1,0x00000800,2,2,34,4,70,1,11,'autobonus "{ bonus bAspdRate,7; }",10+(getrefine()*2),7000,BF_WEAPON,"{ specialeffect2 EF_HASTEUP; }"; bonus2 bAddSkillBlow,"AC_CHARGEARROW",3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1738,'BF_Bow1','Valorous Battle CrossBow',5,0,NULL,0,100,NULL,5,0,0x000A0848,7,2,34,3,80,1,11,'bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1739,'BF_Bow2','Brave Battle CrossBow',5,0,NULL,0,100,NULL,5,0,0x000A0848,7,2,34,3,80,1,11,'bonus bDex,2; bonus bInt,10; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1740,'Nepenthes_Bow','Nepenthes Bow',5,20,NULL,1000,105,NULL,5,2,0x00000800,2,2,34,4,60,1,11,'bonus4 bAutoSpellOnSkill,"AC_DOUBLE","AC_CHARGEARROW",1,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1741,'Cursed_Lyre','Cursed Lyre',5,20,NULL,1250,125,NULL,5,1,0x00080808,2,2,34,4,80,1,11,'bonus bLuk,-2; bonus2 bAddEff,Eff_Curse,400;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1742,'N_Composite_Bow','Novice Composite Bow',5,1,NULL,0,49,NULL,5,3,0x000A0848,7,2,34,1,4,0,11,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1743,'Krieger_Bow1','Glorious Hunter Bow',5,0,NULL,0,100,NULL,5,0,0x001A0848,7,2,34,4,80,1,11,'bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bCritAtkRate,getrefine() * 2; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) bonus2 bSkillAtk,"AC_DOUBLE",20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1744,'Bow_Of_Evil','Bow Of Evil',5,0,NULL,0,170,NULL,5,0,0x000A0848,7,2,34,4,1,0,11,'bonus2 bSkillAtk,"AC_DOUBLE",25; bonus bDex,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1745,'Falken_Blitz','Falken Blitz',5,0,NULL,1000,100,NULL,5,2,0x00080808,2,2,34,3,50,1,11,'bonus2 bSkillAtk,"SN_SHARPSHOOTING",10; bonus2 bSkillAtk,"AC_DOUBLE",10; bonus2 bSkillAtk,"AC_CHARGEARROW",10;',NULL,NULL); -# Arrows -REPLACE INTO `item_db` VALUES (1750,'Arrow','Arrow',10,1,NULL,1,25,NULL,NULL,NULL,0x000A1848,7,2,32768,NULL,1,NULL,1,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1751,'Silver_Arrow','Silver Arrow',10,3,NULL,2,30,NULL,NULL,NULL,0x000A1848,7,2,32768,NULL,1,NULL,1,'bonus bAtkEle,Ele_Holy;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1752,'Fire_Arrow','Fire Arrow',10,3,NULL,2,30,NULL,NULL,NULL,0x000A1848,7,2,32768,NULL,1,NULL,1,'bonus bAtkEle,Ele_Fire;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1753,'Steel_Arrow','Steel Arrow',10,4,NULL,2,40,NULL,NULL,NULL,0x000A1848,7,2,32768,NULL,1,NULL,1,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1754,'Crystal_Arrow','Crystal Arrow',10,3,NULL,2,30,NULL,NULL,NULL,0x000A1848,7,2,32768,NULL,1,NULL,1,'bonus bAtkEle,Ele_Water;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1755,'Arrow_Of_Wind','Arrow of Wind',10,3,NULL,2,30,NULL,NULL,NULL,0x000A1848,7,2,32768,NULL,1,NULL,1,'bonus bAtkEle,Ele_Wind;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1756,'Stone_Arrow','Stone Arrow',10,3,NULL,2,30,NULL,NULL,NULL,0x000A1848,7,2,32768,NULL,1,NULL,1,'bonus bAtkEle,Ele_Earth;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1757,'Immatrial_Arrow','Immaterial Arrow',10,3,NULL,1,30,NULL,NULL,NULL,0x000A1848,7,2,32768,NULL,1,NULL,1,'bonus bAtkEle,Ele_Ghost;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1758,'Stun_Arrow','Stun Arrow',10,10,NULL,3,1,NULL,NULL,NULL,0x000A1848,7,2,32768,NULL,1,NULL,1,'bonus2 bAddEff,Eff_Stun,1000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1759,'Freezing_Arrow','Frozen Arrow',10,10,NULL,3,1,NULL,NULL,NULL,0x000A1848,7,2,32768,NULL,1,NULL,1,'bonus bAtkEle,Ele_Water; bonus2 bAddEff,Eff_Freeze,1000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1760,'Flash_Arrow','Flash Arrow',10,10,NULL,3,1,NULL,NULL,NULL,0x000A1848,7,2,32768,NULL,1,NULL,1,'bonus2 bAddEff,Eff_Blind,1000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1761,'Curse_Arrow','Cursed Arrow',10,10,NULL,3,1,NULL,NULL,NULL,0x000A1848,7,2,32768,NULL,1,NULL,1,'bonus2 bAddEff,Eff_Curse,1000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1762,'Rusty_Arrow','Rusty Arrow',10,3,NULL,2,30,NULL,NULL,NULL,0x000A1848,7,2,32768,NULL,1,NULL,1,'bonus bAtkEle,Ele_Poison;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1763,'Poison_Arrow','Poison Arrow',10,10,NULL,3,1,NULL,NULL,NULL,0x000A1848,7,2,32768,NULL,1,NULL,1,'bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,2000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1764,'Incisive_Arrow','Sharp Arrow',10,20,NULL,3,10,NULL,NULL,NULL,0x000A1848,7,2,32768,NULL,1,NULL,1,'bonus bCriticalLong,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1765,'Oridecon_Arrow','Oridecon Arrow',10,30,NULL,3,50,NULL,NULL,NULL,0x000A1848,7,2,32768,NULL,1,NULL,1,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1766,'Arrow_Of_Counter_Evil','Arrow of Counter Evil',10,40,NULL,3,50,NULL,NULL,NULL,0x000A1848,7,2,32768,NULL,1,NULL,1,'bonus bAtkEle,Ele_Holy;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1767,'Arrow_Of_Shadow','Arrow of Shadow',10,3,NULL,2,30,NULL,NULL,NULL,0x000A1848,7,2,32768,NULL,1,NULL,1,'bonus bAtkEle,Ele_Dark;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1768,'Sleep_Arrow','Sleep Arrow',10,10,NULL,3,1,NULL,NULL,NULL,0x000A1848,7,2,32768,NULL,1,NULL,1,'bonus2 bAddEff,Eff_Sleep,2000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1769,'Silence_Arrow','Mute Arrow',10,10,NULL,3,1,NULL,NULL,NULL,0x000A1848,7,2,32768,NULL,1,NULL,1,'bonus2 bAddEff,Eff_Silence,1000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1770,'Iron_Arrow','Iron Arrow',10,2,NULL,1,30,NULL,NULL,NULL,0x000A1848,7,2,32768,NULL,1,NULL,1,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1771,'Venom_Knife','Venom Knife',10,50,NULL,5,30,NULL,NULL,NULL,0x00001000,7,2,32768,NULL,1,NULL,2,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1772,'Holy_Arrow','Holy Arrow',10,3,NULL,2,50,NULL,NULL,NULL,0x000A1848,7,2,32768,NULL,1,NULL,1,'bonus bAtkEle,Ele_Holy; bonus2 bAddRace,RC_Demon,5;',NULL,NULL); -# Knuckles -REPLACE INTO `item_db` VALUES (1801,'Waghnakh','Waghnak',5,8000,NULL,400,30,NULL,1,3,0x00008100,7,2,2,1,1,1,12,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1802,'Waghnakh_','Waghnak',5,8000,NULL,400,30,NULL,1,4,0x00008100,7,2,2,1,1,1,12,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1803,'Knuckle_Duster','Knuckle Dusters',5,25000,NULL,450,50,NULL,1,2,0x00008100,7,2,2,2,12,1,12,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1804,'Knuckle_Duster_','Knuckle Dusters',5,25000,NULL,450,50,NULL,1,3,0x00008100,7,2,2,2,12,1,12,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1805,'Hora','Studded Knuckles',5,32000,NULL,450,65,NULL,1,2,0x00008100,7,2,2,2,12,1,12,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1806,'Hora_','Studded Knuckles',5,32000,NULL,450,65,NULL,1,3,0x00008100,7,2,2,2,12,1,12,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1807,'Fist','Fist',5,53000,NULL,650,115,NULL,1,0,0x00008100,7,2,2,3,24,1,12,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1808,'Fist_','Fist',5,53000,NULL,650,115,NULL,1,1,0x00008100,7,2,2,3,24,1,12,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1809,'Claw','Claw',5,67000,NULL,500,86,NULL,1,1,0x00008100,7,2,2,3,24,1,12,'bonus bStr,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1810,'Claw_','Claw',5,67000,NULL,500,86,NULL,1,2,0x00008100,7,2,2,3,24,1,12,'bonus bStr,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1811,'Finger','Finger',5,58000,NULL,500,97,NULL,1,1,0x00008100,7,2,2,3,24,1,12,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1812,'Finger_','Finger',5,58000,NULL,500,97,NULL,1,2,0x00008100,7,2,2,3,24,1,12,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1813,'Kaiser_Knuckle','Kaiser Knuckle',5,20,NULL,450,110,NULL,1,0,0x00008100,7,2,2,4,36,1,12,'bonus bAtkEle,Ele_Wind; bonus2 bAddRace,RC_Undead,5; bonus2 bAddEle,Ele_Water,10; bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Fire,10; bonus2 bAddEle,Ele_Wind,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1814,'Berserk','Berserk',5,20,NULL,500,120,NULL,1,0,0x00008100,7,2,2,4,36,1,12,'bonus bAspdRate,12;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1815,'Claw_Of_Garm','Hatii Claw',5,20,NULL,550,152,NULL,1,1,0x00008100,7,2,2,4,70,1,12,'bonus bAtkEle,Ele_Dark; bonus bMaxHPrate,-2; bonus2 bAddEff,Eff_Bleeding,200;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1816,'Berserk_','Berserk',5,20,NULL,500,120,NULL,1,1,0x00008100,7,2,2,4,36,1,12,'bonus bAspdRate,12;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1817,'Kaiser_Knuckle_C','Kaiser Knuckle',5,1,NULL,0,159,NULL,1,0,0x00008100,7,2,2,4,1,0,12,'bonus bAtkEle,Ele_Wind; bonus2 bAddRace,RC_Undead,5; bonus2 bAddEle,Ele_Water,10; bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Fire,10; bonus2 bAddEle,Ele_Wind,10; bonus bAspdRate,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1818,'Magma_Fist','Magma Fist',5,20,NULL,650,80,NULL,1,3,0x00008100,7,2,2,3,75,1,12,'bonus3 bAutoSpell,"SA_FLAMELAUNCHER",5,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1819,'Icicle_Fist','Icicle Fist',5,20,NULL,650,80,NULL,1,3,0x00008100,7,2,2,3,75,1,12,'bonus3 bAutoSpell,"SA_FROSTWEAPON",5,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1820,'Electric_Fist','Electric Fist',5,20,NULL,650,80,NULL,1,3,0x00008100,7,2,2,3,75,1,12,'bonus3 bAutoSpell,"SA_LIGHTNINGLOADER",5,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1821,'Seismic_Fist','Seismic Fist',5,20,NULL,650,80,NULL,1,3,0x00008100,7,2,2,3,75,1,12,'bonus3 bAutoSpell,"SA_SEISMICWEAPON",5,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1822,'Combo_Battle_Glove','Combo Battle Glove',5,20,NULL,500,30,NULL,1,4,0x00008100,7,2,2,3,60,1,12,'bonus2 bSkillAtk,"MO_TRIPLEATTACK",15; bonus2 bSkillAtk,"MO_CHAINCOMBO",15; bonus2 bSkillAtk,"MO_COMBOFINISH",20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1823,'BF_Knuckle1','Valorous Battle Fist',5,20,NULL,0,30,NULL,1,0,0x00008100,7,2,2,3,80,1,12,'bonus bStr,2; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus4 bAutoSpell,"CH_SOULCOLLECT",1,5,0; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1824,'BF_Knuckle2','Brave Battle Fist',5,20,NULL,0,30,NULL,1,0,0x00008100,7,2,2,3,80,1,12,'bonus bStr,2; bonus bInt,1; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bCastrate,"MO_EXTREMITYFIST",-25; autobonus "{ bonus2 bCastrate,\\\"MO_EXTREMITYFIST\\\",-100; }",50,6000,BF_WEAPON,"{ specialeffect2 EF_SUFFRAGIUM; }"; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1825,'Horn_Of_Hilthrion','Horn of Hillslion',5,20,NULL,600,95,NULL,1,3,0x00008000,2,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;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1826,'Krieger_Knuckle1','Glorious Claw',5,20,NULL,0,30,NULL,1,0,0x00008100,7,2,2,4,80,1,12,'bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) { bonus3 bAutoSpell,"MO_INVESTIGATE",5,(getrefine()*10-50); bonus3 bAutoSpell,"AL_DECAGI",1,(getrefine()*10-50); }',NULL,NULL); -REPLACE INTO `item_db` VALUES (1827,'Krieger_Knuckle2','Glorious Fist',5,20,NULL,0,30,NULL,1,0,0x00008100,7,2,2,4,80,1,12,'bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) { bonus2 bCastrate,"MO_EXTREMITYFIST",-100; bonus4 bautospellonskill,"MO_EXPLOSIONSPIRITS","CH_SOULCOLLECT",1,1000; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (1828,'Monk_Knuckle','Monk Knuckle',5,20,NULL,0,150,NULL,1,0,0x00008100,7,2,2,4,0,0,12,'bonus bInt,2; bonus2 bSkillAtk,"MO_FINGEROFFENSIVE",25;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1829,'Fist_C','Fist',5,0,NULL,0,150,NULL,1,0,0x00008100,7,2,2,3,1,0,12,'bonus2 bAddSize,Size_All,40;',NULL,NULL); -# Instruments -REPLACE INTO `item_db` VALUES (1901,'Violin','Violin',5,4000,NULL,700,50,NULL,1,3,0x00080000,7,1,2,1,2,1,13,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1902,'Violin_','Violin',5,4000,NULL,700,50,NULL,1,4,0x00080000,7,1,2,1,2,1,13,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1903,'Mandolin','Mandolin',5,18000,NULL,400,90,NULL,1,2,0x00080000,7,1,2,2,14,1,13,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1904,'Mandolin_','Mandolin',5,18000,NULL,400,90,NULL,1,3,0x00080000,7,1,2,2,14,1,13,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1905,'Lute','Lute',5,24500,NULL,500,105,NULL,1,2,0x00080000,7,1,2,2,14,1,13,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1906,'Lute_','Lute',5,24500,NULL,500,105,NULL,1,3,0x00080000,7,1,2,2,14,1,13,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1907,'Guitar','Guitar',5,47000,NULL,900,142,NULL,1,0,0x00080000,7,1,2,3,27,1,13,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1908,'Guitar_','Guitar',5,47000,NULL,900,142,NULL,1,1,0x00080000,7,1,2,3,27,1,13,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1909,'Harp','Harp',5,62000,NULL,900,114,NULL,1,1,0x00080000,7,1,2,3,27,1,13,'bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1910,'Harp_','Harp',5,62000,NULL,900,114,NULL,1,2,0x00080000,7,1,2,3,27,1,13,'bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1911,'Guh_Moon_Goh','Gumoongoh',5,54000,NULL,1300,126,NULL,1,1,0x00080000,7,1,2,3,27,1,13,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1912,'Guh_Moon_Goh_','Gumoongoh',5,54000,NULL,1300,126,NULL,1,2,0x00080000,7,1,2,3,27,1,13,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1913,'Electronic_Guitar','Electric Guitar',5,20,NULL,1800,110,NULL,1,0,0x00080000,7,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;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1914,'Guitar_Of_Passion','Burning Passion Guitar',5,20,NULL,900,110,NULL,1,0,0x00080000,7,1,2,3,27,1,13,'bonus bAtkEle,Ele_Fire;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1915,'Guitar_Of_Blue_Solo','Loner\'s Guitar',5,20,NULL,900,110,NULL,1,0,0x00080000,7,1,2,3,27,1,13,'bonus bAtkEle,Ele_Water;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1916,'Guitar_Of_Vast_Land','Green Acre Guitar',5,20,NULL,900,110,NULL,1,0,0x00080000,7,1,2,3,27,1,13,'bonus bAtkEle,Ele_Earth;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1917,'Guitar_Of_Gentle_Breeze','Gentle Breeze Guitar',5,20,NULL,900,110,NULL,1,0,0x00080000,7,1,2,3,27,1,13,'bonus bAtkEle,Ele_Wind;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1918,'Oriental_Lute','Oriental Lute',5,20,NULL,1200,150,NULL,1,0,0x00080000,7,1,2,4,65,1,13,'bonus2 bSkillAtk,"CG_ARROWVULCAN",10; bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1919,'Base_Guitar','Bass Guitar',5,20,NULL,1500,130,NULL,1,1,0x00080000,2,1,2,3,70,1,13,'bonus bSPGainValue,3; bonus4 bAutoSpellWhenHit,"WZ_HEAVENDRIVE",3,30,1; bonus3 bAutoSpell,"NPC_WIDECONFUSE",2,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1920,'Berserk_Guitar','Berserk Guitar',5,20,NULL,1800,10,NULL,1,0,0x00080000,2,1,2,4,70,1,13,'bonus bAspdRate,100; bonus bHPrecovRate,-100; bonus2 bHPLossRate,50,5000; bonus bDex,-readparam(bDex);',NULL,NULL); -REPLACE INTO `item_db` VALUES (1921,'Guh_Moon_Gom','Gun Moon Gom',5,20,NULL,0,120,NULL,1,0,0x00080000,7,1,2,1,0,0,13,'bonus2 bAddClass,Class_All,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1922,'Oriental_Lute_','Oriental Lute',5,20,NULL,1200,150,NULL,1,2,0x00080000,7,1,2,4,65,1,13,'bonus2 bSkillAtk,"CG_ARROWVULCAN",10; bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1923,'BF_Instrument1','Valorous Battlefield Guitar',5,20,NULL,0,50,NULL,1,0,0x00080000,7,1,2,3,80,1,13,'bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1924,'BF_Instrument2','Brave Battlefield Guitar',5,20,NULL,0,50,NULL,1,0,0x00080000,7,1,2,3,80,1,13,'bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bSkillAtk,"CG_ARROWVULCAN",20; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1925,'Cello','Cello',5,20,NULL,700,110,NULL,1,3,0x00080000,2,1,2,3,70,1,13,'bonus bAgi,2; bonus bDex,3; bonus2 bAddSkillBlow,"BA_MUSICALSTRIKE",2; bonus2 bAddSkillBlow,"CG_ARROWVULCAN",3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1926,'Harp_Of_Nepenthes','Harp of Nepenthes',5,20,NULL,1000,120,NULL,1,2,0x00080000,2,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; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (1927,'Krieger_Instrument1','Glorious Guitar',5,20,NULL,0,50,NULL,1,0,0x00080000,7,1,2,4,80,1,13,'bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) bonus4 bAutoSpellOnSkill,"CG_ARROWVULCAN","CG_TAROTCARD",5,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1928,'Berserk_Guitar_I','Spirited Guitar',5,0,NULL,0,40,NULL,1,0,0x00080000,2,1,2,4,0,0,13,'bonus bAspdRate,100; bonus bHPrecovRate,-100; bonus2 bHPLossRate,50,5000; bonus bDex,-readparam(bDex);',NULL,NULL); -REPLACE INTO `item_db` VALUES (1929,'Guitar_C','Guitar',5,0,NULL,0,177,NULL,1,0,0x00080000,7,1,2,3,1,0,13,'bonus2 bAddSize,Size_All,40;',NULL,NULL); -# Whips -REPLACE INTO `item_db` VALUES (1950,'Rope','Rope',5,2500,NULL,400,45,NULL,2,3,0x00080000,7,0,2,1,3,1,14,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1951,'Rope_','Rope',5,2500,NULL,400,45,NULL,2,4,0x00080000,7,0,2,1,3,1,14,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1952,'Line','Whip',5,12000,NULL,300,80,NULL,2,2,0x00080000,7,0,2,2,16,1,14,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1953,'Line_','Whip',5,12000,NULL,300,80,NULL,2,3,0x00080000,7,0,2,2,16,1,14,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1954,'Wire','Wire Whip',5,17500,NULL,1000,95,NULL,2,2,0x00080000,7,0,2,2,16,1,14,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1955,'Wire_','Wire Whip',5,17500,NULL,1000,95,NULL,2,3,0x00080000,7,0,2,2,16,1,14,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1956,'Rante','Rante Whip',5,32000,NULL,900,135,NULL,2,0,0x00080000,7,0,2,3,30,1,14,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1957,'Rante_','Rante Whip',5,32000,NULL,900,135,NULL,2,1,0x00080000,7,0,2,3,30,1,14,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1958,'Tail','Tail Whip',5,41000,NULL,700,105,NULL,2,1,0x00080000,7,0,2,3,30,1,14,'bonus bLuk,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1959,'Tail_','Tail Whip',5,41000,NULL,700,105,NULL,2,2,0x00080000,7,0,2,3,30,1,14,'bonus bLuk,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1960,'Whip','Whip',5,38000,NULL,700,120,NULL,2,1,0x00080000,7,0,2,3,30,1,14,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1961,'Whip_','Whip',5,38000,NULL,700,120,NULL,2,2,0x00080000,7,0,2,3,30,1,14,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (1962,'Lariat','Lariat Whip',5,20,NULL,400,100,NULL,2,0,0x00080000,7,0,2,4,44,1,14,'bonus bDex,5; bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1963,'Rapture_Rose','Rapture Rose',5,20,NULL,300,115,NULL,2,0,0x00080000,7,0,2,4,44,1,14,'bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,5000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1964,'Chemeti','Chemeti Whip',5,20,NULL,700,135,NULL,2,0,0x00080000,7,0,2,4,44,1,14,'bonus bCritical,5; bonus bFlee,10; bonus bFlee2,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1965,'Whip_Of_Red_Flame','Red Flame Whip',5,20,NULL,700,110,NULL,2,0,0x00080000,7,0,2,3,30,1,14,'bonus bAtkEle,Ele_Fire;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1966,'Whip_Of_Ice_Piece','Icicle Whip',5,20,NULL,700,110,NULL,2,0,0x00080000,7,0,2,3,30,1,14,'bonus bAtkEle,Ele_Water;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1967,'Whip_Of_Earth','Gaia Whip',5,20,NULL,700,110,NULL,2,0,0x00080000,7,0,2,3,30,1,14,'bonus bAtkEle,Ele_Earth;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1968,'Jump_Rope','Skipping Rope',5,20,NULL,400,120,NULL,2,0,0x00080000,7,0,2,3,30,1,14,'bonus bCritical,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1969,'Bladed_Whip','Blade Whip',5,20,NULL,1200,140,NULL,2,0,0x00080000,7,0,2,4,30,1,14,'bonus2 bAddEff,Eff_Bleeding,300;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1970,'Queen\'s_Whip','Queen\'s Whip',5,20,NULL,1100,150,NULL,2,0,0x00080000,7,0,2,4,65,1,14,'bonus2 bSkillAtk,"CG_ARROWVULCAN",10; bonus2 bSkillAtk,"DC_THROWARROW",10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1971,'Electric_Wire','Electric Wire',5,20,NULL,700,110,NULL,2,0,0x00080000,7,0,2,3,30,1,14,'bonus bAtkEle,Ele_Wind;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1972,'Electric_Eel','Electric Eel',5,20,NULL,2000,100,NULL,2,2,0x00080000,2,0,2,4,70,1,14,'bonus bAtkEle,Ele_Wind; bonus bInt,2; bonus bAgi,2; bonus3 bAutoSpell,"WZ_JUPITEL",3,20; if(getrefine()>0) bonus3 bAutoSpell,"CG_ARROWVULCAN",getrefine(),50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1973,'Sea_Witch_Foot','Sea Witch\'s Foot',5,20,NULL,1500,110,NULL,2,1,0x00080000,2,0,2,4,70,1,14,'bonus bSPGainValue,5; bonus4 bAutoSpellWhenHit,"WZ_FROSTNOVA",3,50,1; bonus3 bAutoSpell,"NPC_WIDESILENCE",2,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1974,'Carrot_Whip','Carrot Whip',5,20,NULL,1300,185,NULL,2,0,0x00080000,2,0,2,4,70,1,14,'if(getrefine()>0) bonus3 bAutoSpell,"AL_INCAGI",getrefine(),10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1975,'Queen_Is_Whip','Queen Is Whip',5,20,NULL,0,120,NULL,2,0,0x00080000,7,0,2,1,0,0,14,'bonus2 bAddClass,Class_All,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1976,'Queen\'s_Whip_','Queen\'s Whip',5,20,NULL,1100,150,NULL,2,2,0x00080000,7,0,2,4,65,1,14,'bonus2 bSkillAtk,"CG_ARROWVULCAN",10; bonus2 bSkillAtk,"DC_THROWARROW",10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1977,'BF_Whip1','Valorous Battle Lariat',5,20,NULL,0,50,NULL,2,0,0x00080000,7,0,2,3,80,1,14,'bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1978,'BF_Whip2','Brave Battle Lariat',5,20,NULL,0,50,NULL,2,0,0x00080000,7,0,2,3,80,1,14,'bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bSkillAtk,"CG_ARROWVULCAN",20; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1979,'Stem_Of_Nepenthes','Stem of Nepenthes',5,20,NULL,1000,120,NULL,2,2,0x00080000,2,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; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (1980,'Whip_Of_Balance','Whip of Balance',5,20,NULL,700,110,NULL,2,3,0x00080000,2,0,2,3,70,1,14,'bonus bAgi,2; bonus bDex,3; bonus2 bAddSkillBlow,"DC_THROWARROW",2; bonus2 bAddSkillBlow,"CG_ARROWVULCAN",3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1981,'Krieger_Whip1','Glorious Lariat',5,20,NULL,0,50,NULL,2,0,0x00080000,7,0,2,4,80,1,14,'bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) bonus4 bAutoSpellOnSkill,"CG_ARROWVULCAN","CG_TAROTCARD",5,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1982,'Phenomena_Whip','Phenomena Whip',5,20,NULL,0,160,NULL,2,0,0x00080000,7,0,2,4,0,0,14,'bonus bDex,2; bonus2 bSkillAtk,"DC_THROWARROW",25;',NULL,NULL); -REPLACE INTO `item_db` VALUES (1983,'Rante_C','Rante Whip',5,0,NULL,0,170,NULL,2,0,0x00080000,7,0,2,3,1,0,14,'bonus2 bAddSize,Size_All,40;',NULL,NULL); -# Additional 2-Handed Staffs -REPLACE INTO `item_db` VALUES (2000,'Destruction_Rod','Staff of Destruction',5,20,NULL,2500,130,NULL,1,1,0x00000200,2,2,34,4,80,1,23,'bonus bMatkRate,25+getrefine()/2; bonus bInt,3; bonus bAgi,10; bonus bUseSPrate,(getrefine()*2); bonus3 bAutoSpellWhenHit,"WZ_JUPITEL",5,(getrefine()*20); bonus2 bCastrate,"HW_MAGICPOWER",-50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2001,'Divine_Cross','Divine Cross',5,20,NULL,1500,120,NULL,1,0,0x00008100,7,2,34,4,70,1,23,'bonus bAtkEle,Ele_Holy; bonus bMatkRate,15; bonus bDex,4; bonus2 bSubRace,RC_Demon,15; bonus2 bSubRace,RC_Undead,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2002,'Krieger_Twohand_Staff1','Glorious Destruction Staff',5,20,NULL,0,70,NULL,1,0,0x00018314,7,2,34,4,80,1,23,'bonus bMatkRate,getrefine(); bonus2 bMagicAddRace,RC_DemiHuman,15; bonus2 bMagicAddRace,RC_Player_Human,15; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bMagicAddRace,RC_DemiHuman,(getrefine()-5)*2; bonus2 bMagicAddRace,RC_Player_Human,(getrefine()-5)*2; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5+(getrefine()-5)*2; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,5+(getrefine()-5)*2; } if(getrefine()>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; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (2003,'Destruction_Rod_M','Staff of Destruction',5,20,NULL,2500,130,NULL,1,1,0x00000200,2,2,34,4,80,1,23,'bonus bMatkRate,25+getrefine()/2; bonus bInt,3; bonus bAgi,10; bonus bUseSPrate,(getrefine()*2); bonus3 bAutoSpellWhenHit,"WZ_JUPITEL",5,(getrefine()*20); bonus2 bCastrate,"HW_MAGICPOWER",-50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2004,'Kronos','Kronos',5,20,NULL,1000,30,NULL,1,0,0x00010204,2,2,34,4,50,1,23,'bonus bMatkRate,20; bonus bInt,3+(getrefine()/2); bonus bMaxHP,300+(50*getrefine()/2); autobonus "{ bonus bMatkRate,12; bonus buseSPRate,20; }",1,5000,BF_MAGIC,"{ specialeffect2 EF_ENHANCE; }";',NULL,NULL); -REPLACE INTO `item_db` VALUES (2005,'Dea_Staff','Dea Staff',5,20,NULL,1000,30,NULL,1,1,0x00008110,2,2,34,3,50,1,23,'bonus bAtkEle,Ele_Holy; bonus bMatkRate,15+getrefine()/2; bonus bInt,6; bonus bVit,2; autobonus3 "{ }",20,1000,"AL_HEAL","{ specialeffect2 EF_MAGICALATTHIT; heal 0,200; }";',NULL,NULL); -REPLACE INTO `item_db` VALUES (2006,'G_Staff_Of_Light','Staff Of Light',5,20,NULL,1900,80,NULL,1,0,0x00810204,7,2,34,4,60,1,23,'/* bonus bMatk,150; */ bonus bAtkEle,Ele_Holy; bonus bInt,6;',NULL,NULL); -# Shields -#=================================================================== -REPLACE INTO `item_db` VALUES (2101,'Guard','Guard',4,500,NULL,300,NULL,3,NULL,0,0xFFFFFFFF,7,2,32,NULL,0,1,1,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2102,'Guard_','Guard',4,500,NULL,300,NULL,3,NULL,1,0xFFFFFFFF,7,2,32,NULL,0,1,1,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2103,'Buckler','Buckler',4,14000,NULL,600,NULL,4,NULL,0,0x000ED5F2,7,2,32,NULL,0,1,2,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2104,'Buckler_','Buckler',4,14000,NULL,600,NULL,4,NULL,1,0x000ED5F2,7,2,32,NULL,0,1,2,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2105,'Shield','Shield',4,56000,NULL,1300,NULL,6,NULL,0,0x00004082,7,2,32,NULL,0,1,3,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2106,'Shield_','Shield',4,56000,NULL,1300,NULL,6,NULL,1,0x00004082,7,2,32,NULL,0,1,3,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2107,'Mirror_Shield','Mirror Shield',4,60000,NULL,1000,NULL,4,NULL,0,0x00404082,7,2,32,NULL,0,1,4,'bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2108,'Mirror_Shield_','Mirror Shield',4,60000,NULL,1000,NULL,4,NULL,1,0x00404082,7,2,32,NULL,0,1,4,'bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2109,'Memorize_Book','Memory Book',4,20,NULL,1000,NULL,3,NULL,0,0x00810204,7,2,32,NULL,0,1,5,'bonus bInt,1; bonus bMdef,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2110,'Holy_Guard','Holy Guard',4,85000,NULL,1400,NULL,5,NULL,0,0x00004000,7,2,32,NULL,68,0,4,'bonus bVit,2; bonus bMdef,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2111,'Herald_Of_GOD','Sacred Mission',4,128000,NULL,1600,NULL,5,NULL,0,0x00004000,7,2,32,NULL,83,1,4,'bonus bVit,3; bonus bInt,2; bonus bMdef,3; bonus bUnbreakableShield;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2112,'Novice_Guard','Novice Guard',4,1,NULL,1,NULL,3,NULL,0,0x00000001,7,2,32,NULL,0,0,1,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2113,'Novice_Shield','Novice Shield',4,5000,NULL,1000,NULL,3,NULL,1,0x00000001,7,2,32,NULL,40,1,3,'bonus2 bSubEle,Ele_Water,20; bonus2 bSubEle,Ele_Earth,20; bonus2 bSubEle,Ele_Fire,20; bonus2 bSubEle,Ele_Wind,20; bonus2 bSubEle,Ele_Poison,20; bonus2 bSubEle,Ele_Ghost,20; bonus2 bSubEle,Ele_Undead,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2114,'Stone_Buckler','Stone Buckler',4,30000,NULL,1500,NULL,3,NULL,1,0xFFFFFFFE,7,2,32,NULL,65,1,2,'bonus2 bSubSize,Size_Large,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2115,'Valkyrja\'s_Shield','Valkyrja\'s Shield',4,30000,NULL,500,NULL,3,NULL,1,0xFFFFFFFE,7,2,32,NULL,65,1,4,'bonus2 bSubEle,Ele_Water,20; bonus2 bSubEle,Ele_Fire,20; bonus2 bSubEle,Ele_Dark,20; bonus2 bSubEle,Ele_Undead,20; bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2116,'Angel\'s_Safeguard','Angelic Guard',4,10000,NULL,400,NULL,3,NULL,1,0x00000001,7,2,32,NULL,20,1,1,'bonus2 bSubRace,RC_Demon,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2117,'Arm_Guard','Arm Guard',4,10000,NULL,150,NULL,5,NULL,0,0x02000000,7,2,32,NULL,20,1,1,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2118,'Arm_Guard_','Arm Guard',4,10000,NULL,150,NULL,5,NULL,1,0x02000000,7,2,32,NULL,20,1,1,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2119,'Improved_Arm_Guard','Advanced Arm Guard',4,40000,NULL,150,NULL,4,NULL,0,0x02000000,7,2,32,NULL,50,1,1,'bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2120,'Improved_Arm_Guard_','Advanced Arm Guard',4,40000,NULL,150,NULL,4,NULL,1,0x02000000,7,2,32,NULL,50,1,1,'bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2121,'Memorize_Book_','Memory Book',4,20,NULL,1000,NULL,3,NULL,1,0x00810204,7,2,32,NULL,0,1,5,'bonus bInt,1; bonus bMdef,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2122,'Platinum_Shield','Platinum Shield',4,20,NULL,1200,NULL,5,NULL,0,0xFFFFFFFE,2,2,32,NULL,68,1,4,'bonus bMdef,5; bonus2 bSubSize,Size_Medium,15; bonus2 bSubSize,Size_Large,15; bonus2 bSubRace,RC_Undead,10; bonus5 bAutoSpellWhenHit,"NPC_MAGICMIRROR",7,150,BF_MAGIC,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2123,'Orleans_Server','Orleans\'s Server',4,20,NULL,1000,NULL,5,NULL,1,0xFFFFFFFE,2,2,32,NULL,55,1,4,'bonus bMdef,2; bonus bMagicDamageReturn,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2124,'Thorny_Buckler','Thorny Buckler',4,20,NULL,1000,NULL,5,NULL,1,0xFFFFFFFE,2,2,32,NULL,55,1,2,'bonus bMdef,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2125,'Strong_Shield','Strong Shield',4,20,NULL,2500,NULL,4,NULL,1,0x000654E2,2,2,32,NULL,75,1,4,'bonus bNoKnockback; 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;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2126,'Guyak_Shield','Guyak Shield',4,20,NULL,700,NULL,3,NULL,0,0xFFFFFFFE,7,2,32,NULL,75,1,2,'bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2127,'Secular_Mission','Secular Mission',4,20,NULL,0,NULL,10,NULL,0,0xFFFFFFFF,7,2,32,NULL,0,0,4,'bonus2 bSubClass,Class_All,25;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2128,'Herald_Of_GOD_','Sacred Mission',4,128000,NULL,1600,NULL,5,NULL,1,0x00004000,7,2,32,NULL,83,1,4,'bonus bVit,3; bonus bInt,2; bonus bMdef,3; bonus bUnbreakableShield;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2129,'Exorcism_Bible','Exorcism Bible',4,20,NULL,600,NULL,5,NULL,0,0x00008100,7,2,32,NULL,50,1,5,'bonus bHPrecovRate,3; bonus bSPrecovRate,3; bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2130,'Cross_Shield','Cross Shield',4,20,NULL,2000,NULL,6,NULL,1,0x00004000,7,2,32,NULL,80,1,4,'bonus bStr,1; bonus2 bSkillAtk,"PA_SHIELDCHAIN",30; bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",30; bonus bUseSPrate,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2131,'Magic_Study_Vol1','Magic Bible Vol1',4,20,NULL,1000,NULL,2,NULL,1,0x00810204,2,2,32,NULL,70,1,5,'bonus bMdef,3; bonus bInt,2; bonus2 bAddEffWhenHit,Eff_Stun,1000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2132,'Shelter_Resistance','Shell Of Resistance',4,20,NULL,0,NULL,9,NULL,0,0xFFFFFFFF,7,2,32,NULL,0,0,2,'bonus2 bSubEle,Ele_All,20; bonus bShortWeaponDamageReturn,1; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bAllStats,1; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (2133,'Tournament_Shield','Tournament Shield',4,20,NULL,1000,NULL,5,NULL,1,0x00004082,2,2,32,NULL,50,1,4,'bonus2 bAddClass,Class_All,1; if( Class==Job_Lord_Knight ) bonus bAspdRate,-5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2134,'Shield_Of_Naga','Shield of Naga',4,20,NULL,500,NULL,3,NULL,1,0x00CFFF80,2,2,32,NULL,70,1,2,'bonus bMdef,3; autobonus2 "{ bonus bShortWeaponDamageReturn,(getrefine()*3); }",10,5000,BF_WEAPON,"{ specialeffect2 EF_GUARD; }";',NULL,NULL); -REPLACE INTO `item_db` VALUES (2135,'Shadow_Guard','Shadow Guard',4,20,NULL,800,NULL,4,NULL,1,0x00020000,2,2,32,NULL,70,1,2,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2136,'Cracked_Buckler','Cracked Buckler',4,0,NULL,0,NULL,5,NULL,0,0xFFFFFFFF,7,2,32,NULL,0,0,2,'bonus bAgi,2; bonus2 bAddEle,Ele_Neutral,-10; bonus3 bAutoSpellWhenHit,"PR_KYRIE",1,50; bonus bMdef,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2137,'Valkyrja\'s_Shield_C','Neo Valkyrja\'s Shield',4,0,NULL,0,NULL,5,NULL,0,0xFFFFFFFE,2,2,32,NULL,95,0,4,'bonus2 bSubEle,Ele_Water,20; bonus2 bSubEle,Ele_Fire,20; bonus2 bSubEle,Ele_Dark,20; bonus2 bSubEle,Ele_Undead,20; bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2138,'Bradium_Shield','Bradium Shield',4,20,NULL,1800,NULL,5,NULL,1,0x00CFFF80,2,2,32,NULL,65,1,3,'bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",60; bonus bAgi,-1; bonus bMaxHP,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2139,'Flame_Thrower','Flame Thrower',4,20000,NULL,2000,NULL,60,NULL,0,0x00000400,63,2,32,NULL,99,0,1,NULL,NULL,NULL); -# GM Shield -REPLACE INTO `item_db` VALUES (2199,'Ahura_Mazda','Ahura Mazdah',4,1,NULL,10,NULL,100,NULL,0,0xFFFFFFFF,7,2,32,NULL,1,1,0,'bonus bAllStats,50; bonus bMdef,99; bonus bShortWeaponDamageReturn,100; bonus2 bSubRace,RC_DemiHuman,95; bonus2 bSubRace,RC_Player_Human,95; skill "CR_FULLPROTECTION",5; Skill "WZ_ESTIMATION",1; Skill "ST_FULLSTRIP",5; Skill "HW_MAGICPOWER",10; bonus bMaxHPRate,200; bonus bNoGemStone; bonus bSpeedRate,25; bonus bNoWalkDelay;',NULL,NULL); -# Headgears -#=================================================================== -REPLACE INTO `item_db` VALUES (2201,'Sunglasses','Sunglasses',4,5000,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,512,NULL,0,0,12,'bonus2 bResEff,Eff_Blind,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2202,'Sunglasses_','Sunglasses',4,5000,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,7,2,512,NULL,0,0,12,'bonus2 bResEff,Eff_Blind,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2203,'Glasses','Glasses',4,4000,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,512,NULL,0,0,3,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2204,'Glasses_','Glasses',4,4000,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,7,2,512,NULL,0,0,3,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2205,'Diver\'s_Goggles','Diver Goggles',4,3500,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,512,NULL,0,0,10,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2206,'Wedding_Veil','Wedding Veil',4,23000,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,0,256,NULL,0,1,44,'bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2207,'Fancy_Flower','Fancy Flower',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,0,4,'bonus2 bSubRace,RC_Plant,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2208,'Ribbon','Ribbon',4,800,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,0,256,NULL,0,1,17,'bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2209,'Ribbon_','Ribbon',4,800,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,7,0,256,NULL,0,1,17,'bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2210,'Hair_Band','Hair Band',4,500,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,0,9,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2211,'Bandana','Bandana',4,400,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,6,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2212,'Eye_Bandage','Eye Patch',4,1000,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,512,NULL,0,0,13,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2213,'Cat_Hairband','Kitty Band',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,2,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2214,'Bunny_Band','Bunny Band',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,15,'bonus bLuk,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2215,'Flower_Hairband','Flower Band',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,5,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2216,'Biretta','Biretta',4,9000,NULL,100,NULL,4,NULL,0,0x00008110,7,2,256,NULL,0,1,11,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2217,'Biretta_','Biretta',4,9000,NULL,100,NULL,4,NULL,1,0x00008110,7,2,256,NULL,0,1,11,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2218,'Flu_Mask','Flu Mask',4,300,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,1,NULL,0,0,8,'bonus2 bResEff,Eff_Silence,1000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2219,'Flu_Mask_','Flu Mask',4,300,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,1,NULL,0,0,8,'bonus2 bResEff,Eff_Silence,1000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2220,'Hat','Hat',4,1000,NULL,200,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,16,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2221,'Hat_','Hat',4,1000,NULL,200,NULL,2,NULL,1,0xFFFFFFFF,7,2,256,NULL,0,1,16,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2222,'Turban','Turban',4,4500,NULL,300,NULL,3,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,1,7,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2223,'Turban_','Turban',4,4500,NULL,300,NULL,3,NULL,1,0xFFFFFFFE,7,2,256,NULL,0,1,7,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2224,'Goggle','Goggles',4,20,NULL,300,NULL,5,NULL,0,0x000E5CEA,7,2,768,NULL,0,1,1,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2225,'Goggle_','Goggles',4,20,NULL,300,NULL,5,NULL,1,0x000E5CEA,7,2,768,NULL,0,1,1,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2226,'Cap','Cap',4,12000,NULL,400,NULL,4,NULL,0,0x000E5CEA,7,2,256,NULL,0,1,14,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2227,'Cap_','Cap',4,12000,NULL,400,NULL,4,NULL,1,0x000E5CEA,7,2,256,NULL,0,1,14,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2228,'Helm','Helm',4,44000,NULL,600,NULL,6,NULL,0,0x00004082,7,2,256,NULL,0,1,40,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2229,'Helm_','Helm',4,44000,NULL,600,NULL,6,NULL,1,0x00004082,7,2,256,NULL,0,1,40,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2230,'Gemmed_Sallet','Gemmed Sallet',4,50000,NULL,500,NULL,4,NULL,0,0x000654E2,7,2,256,NULL,0,1,0,'bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2231,'Gemmed_Sallet_','Gemmed Sallet',4,50000,NULL,500,NULL,4,NULL,1,0x000654E2,7,2,256,NULL,0,1,0,'bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2232,'Circlet','Circlet',4,7500,NULL,300,NULL,3,NULL,0,0x00818314,7,2,256,NULL,0,1,18,'bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2233,'Circlet_','Circlet',4,7500,NULL,300,NULL,3,NULL,1,0x00818314,7,2,256,NULL,0,1,18,'bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2234,'Tiara','Tiara',4,20,NULL,400,NULL,4,NULL,0,0xFFFFFFFE,7,0,256,NULL,45,1,19,'bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2235,'Crown','Crown',4,20,NULL,400,NULL,4,NULL,0,0xFFFFFFFE,7,1,256,NULL,45,1,45,'bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2236,'Santa\'s_Hat','Santa Hat',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,20,'bonus bMdef,1; bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2237,'Weird_Goatee','Bandit Beard',4,2,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,1,NULL,0,0,21,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (2238,'Weird_Moustache','Moustache',4,2,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,1,NULL,0,0,22,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2239,'One_Eyed_Glass','Monocle',4,10000,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,512,NULL,0,0,23,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2240,'Beard','Beard',4,2,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,1,NULL,0,0,24,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2241,'Granpa_Beard','Grampa Beard',4,5000,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,1,NULL,0,0,25,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2242,'Luxury_Sunglasses','Purple Glasses',4,24000,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,512,NULL,0,0,26,'bonus2 bResEff,Eff_Blind,1000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2243,'Spinning_Eyes','Geek Glasses',4,20000,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,512,NULL,0,0,27,'bonus2 bResEff,Eff_Blind,1500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2244,'Big_Sis\'_Ribbon','Big Ribbon',4,15000,NULL,200,NULL,2,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,1,28,'bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2245,'Sweet_Gents','Sweet Gent',4,15000,NULL,400,NULL,3,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,1,29,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2246,'Golden_Gear','Golden Gear',4,20,NULL,900,NULL,5,NULL,0,0xFFFFFFFE,7,2,256,NULL,40,1,30,'bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2247,'Oldman\'s_Romance','Romantic Gent',4,15000,NULL,400,NULL,3,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,1,31,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2248,'Western_Grace','Western Grace',4,15000,NULL,400,NULL,3,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,1,32,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2249,'Coronet','Coronet',4,20,NULL,300,NULL,3,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,1,33,'bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2250,'Fillet','Cute Ribbon',4,500,NULL,100,NULL,1,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,0,34,'bonus bMaxSP,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2251,'Holy_Bonnet','Monk Hat',4,30000,NULL,100,NULL,5,NULL,0,0x00008110,7,2,256,NULL,0,1,35,'bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2252,'Star_Sparkling','Wizard Hat',4,20,NULL,300,NULL,4,NULL,0,0x00810204,7,2,256,NULL,0,1,36,'bonus bMaxSP,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2253,'Sunflower','Sunflower',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,0,37,'bonus2 bSubRace,RC_Insect,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2254,'Angelic_Chain','Angel Wing',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,1,38,'bonus bMdef,3; bonus bAgi,1; bonus bLuk,1; bonus2 bSubRace,RC_Demon,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2255,'Satanic_Chain','Evil Wing',4,20,NULL,100,NULL,3,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,1,39,'bonus bMdef,2; bonus bStr,1; bonus2 bSubRace,RC_Angel,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2256,'Magestic_Goat','Majestic Goat',4,20,NULL,800,NULL,5,NULL,0,0x006444A2,7,2,256,NULL,0,1,41,'bonus bStr,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2257,'Snowy_Horn','Unicorn Horn',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,42,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2258,'Sharp_Gear','Spiky Band',4,20,NULL,1000,NULL,6,NULL,0,0x0066D5F2,7,2,256,NULL,50,1,43,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2259,'Mini_Propeller','Mini Propeller',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,46,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2260,'Mini_Glasses','Mini Glasses',4,28000,NULL,100,NULL,1,NULL,0,0xFFFFFFFE,7,2,512,NULL,0,0,47,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2261,'Prontera_Army_Cap','Army Cap',4,20,NULL,400,NULL,4,NULL,0,0x000654E2,7,2,256,NULL,0,1,48,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2262,'Pierrot_Nose','Clown Nose',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,1,NULL,0,0,49,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2263,'Gangster_Patch','Zorro Masque',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,7,2,512,NULL,0,0,50,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2264,'Munak_Turban','Munak Hat',4,20,NULL,300,NULL,5,NULL,0,0xFFFFFFFF,7,2,769,NULL,0,0,51,'bonus2 bSubRace,RC_Undead,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2265,'Ganster_Mask','Gangster Mask',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,1,NULL,0,0,52,'bonus2 bResEff,Eff_Silence,1500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2266,'Iron_Cane','Iron Cain',4,20,NULL,300,NULL,1,NULL,0,0x00004082,7,2,1,NULL,50,0,53,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2267,'Cigar','Cigarette',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,7,2,1,NULL,0,0,54,'bonus2 bSubRace,RC_Insect,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2268,'Smoking_Pipe','Pipe',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,7,2,1,NULL,0,0,55,'bonus2 bSubRace,RC_Insect,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2269,'Centimental_Flower','Romantic Flower',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,7,2,1,NULL,0,0,56,'bonus2 bSubRace,RC_Plant,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2270,'Centimental_Leaf','Romantic Leaf',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,7,2,1,NULL,0,0,57,'bonus2 bSubRace,RC_Plant,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2271,'Jack_A_Dandy','Jack be Dandy',4,45000,NULL,100,NULL,1,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,0,58,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2272,'Stop_Post','Stop Post',4,20,NULL,400,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,59,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2273,'Doctor_Cap','Doctor Band',4,20,NULL,100,NULL,3,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,1,60,'bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2274,'Ghost_Bandana','Ghost Bandana',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,1,61,'bonus bAgi,2; bonus2 bSubEle,Ele_Ghost,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2275,'Red_Bandana','Red Bandana',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,62,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2276,'Eagle_Eyes','Angled Glasses',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,512,NULL,0,0,63,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2277,'Nurse_Cap','Nurse Cap',4,20,NULL,100,NULL,2,NULL,0,0x00008110,7,2,256,NULL,0,1,64,'bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2278,'Mr_Smile','Mr. Smile',4,60,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,513,NULL,0,0,65,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2279,'Bomb_Wick','Bomb Wick',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,0,66,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2280,'Sahkkat','Sakkat',4,20,NULL,300,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,67,'bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2281,'Phantom_Of_Opera','Opera Masque',4,20,NULL,200,NULL,2,NULL,0,0xFFFFFFFE,7,2,513,NULL,0,0,68,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2282,'Spirit_Chain','Halo',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,0,69,'bonus2 bSubEle,Ele_Holy,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2283,'Ear_Mufs','Ear Muffs',4,20,NULL,200,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,70,'bonus2 bResEff,Eff_Curse,1000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2284,'Antler','Antlers',4,20,NULL,500,NULL,4,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,1,71,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2285,'Apple_Of_Archer','Apple of Archer',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFE,7,2,256,NULL,30,1,72,'bonus bDex,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2286,'Elven_Ears','Elven Ears',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,7,2,512,NULL,70,0,73,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2287,'Pirate_Bandana','Pirate Bandana',4,20,NULL,100,NULL,3,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,1,74,'bonus bStr,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2288,'Mr_Scream','Mr. Scream',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFE,7,2,513,NULL,0,0,75,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2289,'Poo_Poo_Hat','Poo Poo Hat',4,20,NULL,700,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,0,76,'bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2290,'Funeral_Costume','Funeral Hat',4,3000,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,0,77,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2291,'Masquerade','Masquerade',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,7,2,512,NULL,0,0,78,'bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player_Human,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2292,'Welding_Mask','Welding Mask',4,20,NULL,300,NULL,2,NULL,0,0x00040420,7,2,513,NULL,50,0,79,'bonus2 bSubEle,Ele_Fire,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2293,'Pretend_Murdered','Pretend Murdered',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,0,80,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2294,'Star_Dust','Stellar',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,81,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2295,'Blinker','Blinker',4,1500,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,7,2,512,NULL,0,0,82,'bonus2 bResEff,Eff_Blind,10000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2296,'Binoculars','Binoculars',4,20,NULL,100,NULL,1,NULL,0,0x00080808,7,2,512,NULL,50,0,83,'bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2297,'Goblini_Mask','Goblin Mask',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFE,7,2,513,NULL,0,0,84,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2298,'Green_Feeler','Green Feeler',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,0,85,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2299,'Viking_Helm','Orc Helm',4,20,NULL,500,NULL,5,NULL,0,0x000654E2,7,2,256,NULL,0,1,86,NULL,NULL,NULL); -# Armors -#=================================================================== -REPLACE INTO `item_db` VALUES (2301,'Cotton_Shirt','Cotton Shirt',4,10,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,16,NULL,0,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2302,'Cotton_Shirt_','Cotton Shirt',4,10,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,7,2,16,NULL,0,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2303,'Leather_Jacket','Jacket',4,200,NULL,200,NULL,2,NULL,0,0xFFFFFFFF,7,2,16,NULL,0,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2304,'Leather_Jacket_','Jacket',4,200,NULL,200,NULL,2,NULL,1,0xFFFFFFFF,7,2,16,NULL,0,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2305,'Adventure_Suit','Adventurer\'s Suit',4,1000,NULL,300,NULL,3,NULL,0,0xFFFFFFFF,7,2,16,NULL,0,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2306,'Adventurere\'s_Suit_','Adventurer\'s Suit',4,1000,NULL,300,NULL,3,NULL,1,0xFFFFFFFF,7,2,16,NULL,0,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2307,'Mantle','Mantle',4,10000,NULL,600,NULL,4,NULL,0,0xFFFFFFFE,7,2,16,NULL,0,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2308,'Mantle_','Mantle',4,10000,NULL,600,NULL,4,NULL,1,0xFFFFFFFE,7,2,16,NULL,0,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2309,'Coat','Coat',4,22000,NULL,1200,NULL,5,NULL,0,0xFFFFFFFE,7,2,16,NULL,0,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2310,'Coat_','Coat',4,22000,NULL,1200,NULL,5,NULL,1,0xFFFFFFFE,7,2,16,NULL,0,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2311,'Mink_Coat','Mink Coat',4,20,NULL,2300,NULL,6,NULL,1,0xFFFFFFFE,7,2,16,NULL,30,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2312,'Padded_Armor','Padded Armor',4,48000,NULL,2800,NULL,7,NULL,0,0x000654E2,7,2,16,NULL,0,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2313,'Padded_Armor_','Padded Armor',4,48000,NULL,2800,NULL,7,NULL,1,0x000654E2,7,2,16,NULL,0,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2314,'Chain_Mail','Chain Mail',4,65000,NULL,3300,NULL,8,NULL,0,0x000654E2,7,2,16,NULL,0,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2315,'Chain_Mail_','Chain Mail',4,65000,NULL,3300,NULL,8,NULL,1,0x000654E2,7,2,16,NULL,0,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2316,'Plate_Armor','Full Plate',4,80000,NULL,4500,NULL,10,NULL,0,0x00004082,7,2,16,NULL,40,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2317,'Plate_Armor_','Full Plate',4,80000,NULL,4500,NULL,10,NULL,1,0x00004082,7,2,16,NULL,40,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2318,'Clothes_Of_The_Lord','Lord\'s Clothes',4,20,NULL,2500,NULL,8,NULL,1,0x00040420,7,2,16,NULL,70,1,0,'bonus bMdef,5; bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2319,'Glittering_Clothes','Glittering Jacket',4,20,NULL,2500,NULL,7,NULL,1,0xFFFFFFFE,7,2,16,NULL,60,1,0,'bonus bMdef,5; bonus2 bAddEff,Eff_Blind,300;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2320,'Formal_Suit','Formal Suit',4,20,NULL,300,NULL,5,NULL,1,0xFFFFFFFE,7,2,16,NULL,0,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2321,'Silk_Robe','Silk Robe',4,8000,NULL,400,NULL,3,NULL,0,0x0085C7B6,7,2,16,NULL,0,1,0,'bonus bMdef,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2322,'Silk_Robe_','Silk Robe',4,8000,NULL,400,NULL,3,NULL,1,0x0085C7B6,7,2,16,NULL,0,1,0,'bonus bMdef,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2323,'Scapulare','Scapulare',4,6500,NULL,400,NULL,4,NULL,0,0x00008110,7,2,16,NULL,0,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2324,'Scapulare_','Scapulare',4,6500,NULL,400,NULL,4,NULL,1,0x00008110,7,2,16,NULL,0,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2325,'Saint_Robe','Saint\'s Robe',4,54000,NULL,600,NULL,6,NULL,0,0x00048530,7,2,16,NULL,0,1,0,'bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2326,'Saint_Robe_','Saint\'s Robe',4,54000,NULL,600,NULL,6,NULL,1,0x00048530,7,2,16,NULL,0,1,0,'bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2327,'Holy_Robe','Holy Robe',4,20,NULL,1700,NULL,7,NULL,0,0x00008110,7,2,16,NULL,60,1,0,'bonus bMdef,5; bonus2 bSubRace,RC_Demon,15; bonus2 bSubEle,Ele_Dark,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2328,'Wooden_Mail','Wooden Mail',4,5500,NULL,1000,NULL,4,NULL,0,0x000444A2,7,2,16,NULL,0,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2329,'Wooden_Mail_','Wooden Mail',4,5500,NULL,1000,NULL,4,NULL,1,0x000444A2,7,2,16,NULL,0,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2330,'Tights','Tights',4,71000,NULL,500,NULL,6,NULL,0,0x00080808,7,2,16,NULL,45,1,0,'bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2331,'Tights_','Tights',4,71000,NULL,500,NULL,6,NULL,1,0x00080808,7,2,16,NULL,45,1,0,'bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2332,'Silver_Robe','Silver Robe',4,7000,NULL,700,NULL,4,NULL,0,0x00810204,7,2,16,NULL,0,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2333,'Silver_Robe_','Silver Robe',4,7000,NULL,700,NULL,4,NULL,1,0x00810204,7,2,16,NULL,0,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2334,'Mage_Coat','Mage Coat',4,20,NULL,600,NULL,5,NULL,0,0x00810204,7,2,16,NULL,50,1,0,'bonus bMdef,5; bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2335,'Thief_Clothes','Thief Clothes',4,74000,NULL,100,NULL,6,NULL,0,0x02021040,7,2,16,NULL,0,1,0,'bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2336,'Thief_Clothes_','Thief Clothes',4,74000,NULL,100,NULL,6,NULL,1,0x02021040,7,2,16,NULL,0,1,0,'bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2337,'Ninja_Suit','Ninja Suit',4,20,NULL,1500,NULL,7,NULL,0,0x02021040,7,2,16,NULL,50,1,0,'bonus bAgi,1; bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2338,'Wedding_Dress','Wedding Dress',4,43000,NULL,500,NULL,0,NULL,0,0xFFFFFFFE,7,2,16,NULL,0,1,0,'bonus bMdef,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2339,'G_Strings','Pantie',4,1000,NULL,100,NULL,4,NULL,0,0xFFFFFFFF,7,2,16,NULL,0,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2340,'Novice_Breast','Novice Breastplate',4,89000,NULL,500,NULL,4,NULL,1,0x00000001,7,2,16,NULL,10,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2341,'Full_Plate_Armor','Legion Plate Armor',4,94000,NULL,5500,NULL,11,NULL,0,0x00004000,7,2,16,NULL,70,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2342,'Full_Plate_Armor_','Legion Plate Armor',4,102500,NULL,5500,NULL,11,NULL,1,0x00004000,7,2,16,NULL,70,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2343,'Robe_Of_Casting','Robe of Cast',4,124800,NULL,1100,NULL,5,NULL,0,0x00810200,7,2,16,NULL,75,1,0,'bonus bCastrate,-3; bonus bMdef,4;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2344,'Flame_Sprits_Armor','Lucius\'s Fierce Armor of Volcano',4,136000,NULL,2200,NULL,4,NULL,0,0x000444A2,7,2,16,NULL,45,1,0,'bonus bDefEle,Ele_Fire;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2345,'Flame_Sprits_Armor_','Lucius\'s Fierce Armor of Volcano',4,136000,NULL,2200,NULL,4,NULL,1,0xFFFFFFFE,7,2,16,NULL,45,1,0,'bonus bDefEle,Ele_Fire;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2346,'Water_Sprits_Armor','Saphien\'s Armor of Ocean',4,136000,NULL,2200,NULL,4,NULL,0,0x000444A2,7,2,16,NULL,45,1,0,'bonus bDefEle,Ele_Water;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2347,'Water_Sprits_Armor_','Saphien\'s Armor of Ocean',4,136000,NULL,2200,NULL,4,NULL,1,0xFFFFFFFE,7,2,16,NULL,45,1,0,'bonus bDefEle,Ele_Water;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2348,'Wind_Sprits_Armor','Aebecee\'s Raging Typhoon Armor',4,136000,NULL,2200,NULL,4,NULL,0,0x000444A2,7,2,16,NULL,45,1,0,'bonus bDefEle,Ele_Wind;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2349,'Wind_Sprits_Armor_','Aebecee\'s Raging Typhoon Armor',4,136000,NULL,2200,NULL,4,NULL,1,0xFFFFFFFE,7,2,16,NULL,45,1,0,'bonus bDefEle,Ele_Wind;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2350,'Earth_Sprits_Armor','Claytos Cracking Earth Armor',4,136000,NULL,2200,NULL,4,NULL,0,0x000444A2,7,2,16,NULL,45,1,0,'bonus bDefEle,Ele_Earth;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2351,'Earth_Sprits_Armor_','Claytos Cracking Earth Armor',4,136000,NULL,2200,NULL,4,NULL,1,0xFFFFFFFE,7,2,16,NULL,45,1,0,'bonus bDefEle,Ele_Earth;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2352,'Novice_Plate','Tattered Novice Ninja Suit',4,1,NULL,1,NULL,4,NULL,0,0x00000001,7,2,16,NULL,0,0,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2353,'Odin\'s_Blessing','Odin\'s Blessing',4,30000,NULL,2500,NULL,6,NULL,1,0xFFFFFFFE,7,2,16,NULL,65,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2354,'Goibne\'s_Armor','Goibne\'s Armor',4,50000,NULL,3500,NULL,7,NULL,0,0xFFFFFFFE,7,2,16,NULL,54,1,0,'bonus bVit,2; bonus bMaxHPrate,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2355,'Angel\'s_Protection','Angelic Protection',4,10000,NULL,600,NULL,4,NULL,1,0x00000001,7,2,16,NULL,40,1,0,'bonus bMdef,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2356,'Vestment_Of_Grace','Blessed Holy Robe',4,20,NULL,2500,NULL,5,NULL,1,0x00008100,7,2,16,NULL,70,1,0,'bonus bMdef,5; bonus2 bResEff,Eff_Blind,8000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2357,'Valkyrie_Armor','Valkyrian Armor',4,0,NULL,2800,NULL,6,NULL,1,0xFFFFFFFE,2,2,16,NULL,1,1,0,'bonus bAllStats,1; bonus bUnbreakableArmor; 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;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2358,'Dress_Of_Angel','Angel\'s Dress',4,20,NULL,1000,NULL,5,NULL,0,0xFFFFFFFF,7,2,16,NULL,1,0,0,'bonus bLuk,4;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2359,'Ninja_Suit_','Ninja Suit',4,20,NULL,1500,NULL,7,NULL,1,0x02021040,7,2,16,NULL,50,1,0,'bonus bAgi,1; bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2360,'Robe_Of_Casting_','Robe of Cast',4,124800,NULL,1100,NULL,5,NULL,1,0x00810200,7,2,16,NULL,75,1,0,'bonus bCastrate,-3; bonus bMdef,4;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (2361,'Blue_Aodai','Blue Robe',4,20,NULL,500,NULL,0,NULL,0,0xFFFFFFFE,7,2,16,NULL,1,1,0,'bonus bAllStats,3; bonus bMdef,5;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (2362,'Red_Aodai','Red Robe',4,20,NULL,500,NULL,0,NULL,0,0xFFFFFFFE,7,2,16,NULL,1,1,0,'bonus bAllStats,3; bonus bMdef,5;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (2363,'White_Aodai','White Robe',4,20,NULL,500,NULL,0,NULL,0,0x00000001,7,2,16,NULL,1,1,0,'bonus bAllStats,3; bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2364,'Meteo_Plate_Armor','Meteo Plate Armor',4,20,NULL,3000,NULL,10,NULL,1,0x000444A2,2,2,16,NULL,55,1,0,'bonus2 bResEff,Eff_Stun,3000; bonus2 bResEff,Eff_Freeze,3000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2365,'Orleans_Gown','Orleans\'s Gown',4,20,NULL,300,NULL,2,NULL,1,0xFFFFFFFE,2,2,16,NULL,55,1,0,'bonus bCastrate,15; bonus bNoCastCancel;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2366,'Divine_Cloth','Divine Cloth',4,20,NULL,1500,NULL,6,NULL,1,0xFFFFFFFE,2,2,16,NULL,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;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2367,'Sniping_Suit','Sniping Suit',4,20,NULL,750,NULL,5,NULL,1,0x00000800,2,2,16,NULL,50,1,0,'bonus bMdef,5; bonus bCritical,6+(readparam(bLuk)/10); bonus bDelayRate,-23;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2368,'Golden_Armor','Golden Armor',4,20,NULL,2000,NULL,4,NULL,0,0xFFFFFFFF,7,2,16,NULL,0,0,0,'bonus bMdef,4;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2369,'Freyja_Overcoat','Freyja Overcoat',4,0,NULL,500,NULL,12,NULL,0,0xFFFFFFFE,7,2,16,NULL,0,0,0,'bonus bUnbreakableArmor; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2370,'Used_Mage_Coat','Used Mage Coat',4,0,NULL,0,NULL,15,NULL,0,0xFFFFFFFF,7,2,16,NULL,0,0,0,'bonus bMaxHP,300; bonus bMaxSP,30; bonus bBaseAtk,10; bonus bAGI,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2371,'G_Strings_','Pantie',4,1000,NULL,100,NULL,4,NULL,1,0xFFFFFFFF,7,2,16,NULL,0,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2372,'Mage_Coat_','Mage Coat',4,20,NULL,600,NULL,5,NULL,1,0x00810204,7,2,16,NULL,50,1,0,'bonus bMdef,5; bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2373,'Holy_Robe_','Holy Robe',4,20,NULL,1700,NULL,7,NULL,1,0x00008110,7,2,16,NULL,60,1,0,'bonus bMdef,5; bonus2 bSubRace,RC_Demon,15; bonus2 bSubEle,Ele_Dark,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2374,'Diabolus_Robe','Diabolus Robe',4,20,NULL,300,NULL,6,NULL,1,0x00098B1C,2,2,16,NULL,55,1,0,'bonus bMaxSP,150; bonus bMdef,5; bonus bHealPower,6; bonus bDelayRate,-10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2375,'Diabolus_Armor','Diabolus Armor',4,20,NULL,600,NULL,7,NULL,1,0x000654E2,2,2,16,NULL,55,1,0,'bonus bStr,2; bonus bDex,1; bonus bMaxHP,150; bonus2 bResEff,Eff_Stun,500; bonus2 bResEff,Eff_Stone,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2376,'Assaulter_Plate','Assaulter Plate',4,10,NULL,0,NULL,7,NULL,1,0x006444A2,7,2,16,NULL,80,1,0,'bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2377,'Elite_Engineer_Armor','Elite Engineer Armor',4,10,NULL,0,NULL,7,NULL,1,0x00040420,7,2,16,NULL,80,1,0,'bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2378,'Assassin_Robe','Assassin Robe',4,10,NULL,0,NULL,7,NULL,1,0x02021040,7,2,16,NULL,80,1,0,'bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2379,'Warlock_Battle_Robe','Warlock\'s Battle Robe',4,10,NULL,0,NULL,3,NULL,1,0x00810204,7,2,16,NULL,80,1,0,'bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2380,'Medic_Robe','Medic\'s Robe',4,10,NULL,0,NULL,3,NULL,1,0x00008110,7,2,16,NULL,80,1,0,'bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2381,'Elite_Archer_Suit','Elite Archer Suit',4,10,NULL,0,NULL,3,NULL,1,0x00080808,7,2,16,NULL,80,1,0,'bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2382,'Elite_Shooter_Suit','Elite Shooter Suit',4,10,NULL,0,NULL,3,NULL,1,0x41000000,7,2,16,NULL,80,1,0,'bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2383,'Brynhild','Brynhild',4,20,NULL,400,NULL,10,NULL,0,0xFFFFFFFF,7,2,16,NULL,94,0,0,'bonus bMdef,10; bonus bMaxHP,20*BaseLevel; bonus bMaxSP,5*BaseLevel; bonus2 bAddClass,Class_All,10; bonus bMatkRate,10; bonus bUnbreakableArmor; bonus bNoKnockback;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2384,'Spritual_Tunic','Spiritual Tunic',4,20,NULL,0,NULL,10,NULL,0,0xFFFFFFFF,7,2,16,NULL,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;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2385,'Recuperative_Armor','Recuperative Armor',4,20,NULL,0,NULL,12,NULL,0,0xFFFFFFFF,7,2,16,NULL,0,0,0,'bonus bNoRegen,1; bonus bNoRegen,2; bonus bHPGainValue,60; bonus bSPGainValue,6; bonus bMagicHPGainValue,60; bonus bMagicSPGainValue,6;',NULL,'heal 0,-100;'); -REPLACE INTO `item_db` VALUES (2386,'Chameleon_Armor','Chameleon Armor',4,20,NULL,1700,NULL,5,NULL,0,0x00CFFF80,2,2,16,NULL,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;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2387,'Sprint_Mail','Sprint Mail',4,20,NULL,1000,NULL,3,NULL,1,0x00CFFF80,2,2,16,NULL,70,1,0,'bonus bVit,1; bonus bHPrecovRate,5; bonus bAddItemHealRate,3; bonus2 bSkillHeal,"AL_HEAL",3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2388,'Kandura','Kandura',4,20,NULL,300,NULL,4,NULL,1,0x00001000,2,2,16,NULL,70,1,0,'bonus bAgi,1; bonus bFlee,5; bonus bAspdRate,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2389,'Armor_Of_Naga','Armor of Naga',4,20,NULL,1000,NULL,5,NULL,1,0x00CFFF80,2,2,16,NULL,70,1,0,'bonus bMdef,2; autobonus "{ bonus bBaseAtk,20; }",10,10000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }";',NULL,NULL); -REPLACE INTO `item_db` VALUES (2390,'Improved_Tights','Improved Tights',4,20,NULL,400,NULL,6,NULL,1,0x00080808,2,2,16,NULL,75,1,0,'bonus bMdef,2; bonus bFlee2,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2391,'Life_Link','Life Link',4,20,NULL,3500,NULL,9,NULL,1,0x00004082,2,2,16,NULL,82,1,0,'bonus bVit,2; bonus bMdef,5; bonus bHPrecovRate,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2392,'Old_Pant','Old Green Pantie',4,0,NULL,0,NULL,10,NULL,0,0xFFFFFFFF,7,2,16,NULL,0,0,0,'bonus bStr,2; bonus bVit,2; bonus bMaxHP,200; bonus3 bAutoSpellWhenHit,"MO_CALLSPIRITS",5,20; bonus bMdef,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2393,'N_Adventurer\'s_Suit','Novice Adventurer\'s Suit',4,0,NULL,0,NULL,8,NULL,1,0xFFFFFFFF,7,2,16,NULL,0,0,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2394,'Krieger_Suit1','Glorious Suit',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,7,2,16,NULL,81,1,0,'bonus bMaxHPRate,20; bonus2 bSubRace,RC_DemiHuman,7; bonus2 bSubRace,RC_Player_Human,7;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2395,'Krieger_Suit2','Glorious Popularized Suit',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,7,2,16,NULL,61,1,0,'bonus bMaxHP,600; bonus bSPrecovRate,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2396,'Krieger_Suit3','Glorious Mass-Production Suit',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,7,2,16,NULL,0,1,0,'bonus bMaxHP,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2397,'Incredible_Coat','Incredible Event Resignation Coat',4,10,NULL,900,NULL,2,NULL,0,0xFFFFFFFE,7,2,16,NULL,0,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2398,'Sniping_Suit_M','Sniping Suit',4,20,NULL,750,NULL,5,NULL,1,0x00000800,2,2,16,NULL,50,1,0,'bonus bMdef,5; bonus bCritical,6+(readparam(bLuk)/10); bonus bDelayRate,-23;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2399,'Dragon_Vest','Dragon Vest',4,20,NULL,500,NULL,3,NULL,1,0xFFFFFFFE,2,2,16,NULL,0,1,0,'bonus bMdef,3;',NULL,NULL); -# Footgears -#=================================================================== -REPLACE INTO `item_db` VALUES (2401,'Sandals','Sandals',4,400,NULL,200,NULL,1,NULL,0,0xFFFFFFFF,7,2,64,NULL,0,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2402,'Sandals_','Sandals',4,400,NULL,200,NULL,1,NULL,1,0xFFFFFFFF,7,2,64,NULL,0,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2403,'Shoes','Shoes',4,3500,NULL,400,NULL,2,NULL,0,0xFFFFFFFE,7,2,64,NULL,0,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2404,'Shoes_','Shoes',4,3500,NULL,400,NULL,2,NULL,1,0xFFFFFFFE,7,2,64,NULL,0,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2405,'Boots','Boots',4,18000,NULL,600,NULL,4,NULL,0,0x016E5CEA,7,2,64,NULL,0,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2406,'Boots_','Boots',4,18000,NULL,600,NULL,4,NULL,1,0x016E5CEA,7,2,64,NULL,0,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2407,'Chrystal_Pumps','Crystal Pumps',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,7,0,64,NULL,0,1,0,'bonus bMdef,10; bonus bLuk,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2408,'Cuffs','Shackles',4,5000,NULL,3000,NULL,3,NULL,0,0xFFFFFFFF,7,2,64,NULL,0,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2409,'Spiky_Heel','High Heels',4,8500,NULL,600,NULL,2,NULL,0,0xFFFFFFFE,7,2,64,NULL,0,1,0,'bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2410,'Sleipnir','Sleipnir',4,20,NULL,3500,NULL,5,NULL,0,0xFFFFFFFF,7,2,64,NULL,94,0,0,'bonus bMdef,10; bonus bMaxHPrate,20; bonus bMaxSPrate,20; bonus bSPrecovRate,15; bonus bSpeedRate,25;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2411,'Grave','Greaves',4,48000,NULL,750,NULL,5,NULL,0,0x00004080,7,2,64,NULL,65,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2412,'Grave_','Greaves',4,54000,NULL,750,NULL,5,NULL,1,0x00004080,7,2,64,NULL,65,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2413,'Safty_Boots','Safety Boots',4,34000,NULL,350,NULL,6,NULL,0,0x00004082,7,2,64,NULL,30,0,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2414,'Novice_Boots','Novice Slippers',4,1,NULL,1,NULL,2,NULL,0,0x00000001,7,2,64,NULL,0,0,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2415,'Slipper','Bunny Slipper',4,34000,NULL,300,NULL,3,NULL,1,0xFFFFFFFE,7,0,64,NULL,30,1,0,'bonus bLuk,3; bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2416,'Novice_Shoes','Novice Shoes',4,35000,NULL,500,NULL,2,NULL,1,0x00000001,7,2,64,NULL,40,1,0,'bonus bMaxHPrate,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2417,'Fricco_Shoes','Fricco\'s Shoes',4,30000,NULL,500,NULL,3,NULL,0,0xFFFFFFFE,7,2,64,NULL,65,1,0,'bonus bAgi,2; bonus2 bAddItemGroupHealRate,IG_Potion,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2418,'Vidar\'s_Boots','Vidar\'s Boots',4,30000,NULL,650,NULL,4,NULL,0,0xFFFFFFFE,7,2,64,NULL,65,1,0,'bonus bMaxHPrate,9; bonus bMaxSPrate,9;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2419,'Goibne\'s_Combat_Boots','Goibne\'s Greaves',4,30000,NULL,700,NULL,4,NULL,0,0xFFFFFFFE,7,2,64,NULL,54,1,0,'bonus bMdef,3; bonus bMaxHPrate,5; bonus bMaxSPrate,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2420,'Angel\'s_Arrival','Angel\'s Reincarnation',4,10000,NULL,300,NULL,2,NULL,1,0x00000001,7,2,64,NULL,25,1,0,'bonus bMaxHP,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2421,'Valkyrie_Shoes','Valkyrian Shoes',4,0,NULL,500,NULL,4,NULL,1,0xFFFFFFFE,2,2,64,NULL,1,1,0,'bonus bUnbreakableShoes; 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);',NULL,NULL); -REPLACE INTO `item_db` VALUES (2422,'High_Fashion_Sandals','High Fashion Sandals',4,24000,NULL,200,NULL,2,NULL,1,0x00818314,7,2,64,NULL,40,1,0,'bonus bMdef,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2423,'Variant_Shoes','Variant Shoes',4,20,NULL,500,NULL,3,NULL,0,0xFFFFFFFE,2,2,64,NULL,85,1,0,'bonus bMaxHPRate,20-getrefine(); bonus bMaxSPRate,20-getrefine(); bonus bDef,getrefine()/2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2424,'Tidal_Shoes','Tidal Shoes',4,20,NULL,300,NULL,3,NULL,1,0xFFFFFFFE,2,2,64,NULL,55,1,0,'bonus2 bSubEle,Ele_Water,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2425,'Black_Leather_Boots','Black Leather Boots',4,20,NULL,500,NULL,4,NULL,0,0xFFFFFFFE,2,2,64,NULL,55,1,0,'bonus bAgi,1; if(getrefine()>=9) bonus bAgi,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2426,'Shadow_Walk','Shadow Walk',4,20,NULL,2000,NULL,0,NULL,0,0xFFFFFFFE,2,2,64,NULL,75,1,0,'bonus bMdef,10; if(getskilllv("AS_CLOAKING")<2){ bonus5 bAutoSpellWhenHit,"AS_CLOAKING",2,100,BF_MAGIC,0; } else bonus5 bAutoSpellWhenHit,"AS_CLOAKING",getskilllv("AS_CLOAKING"),100,BF_MAGIC,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2427,'Golden_Shoes','Golden Shoes',4,20,NULL,300,NULL,4,NULL,0,0xFFFFFFFF,7,2,64,NULL,0,0,0,'bonus bMdef,4;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2428,'Freyja_Boots','Freyja Boots',4,0,NULL,300,NULL,10,NULL,0,0xFFFFFFFE,7,2,64,NULL,0,0,0,'bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2429,'Iron_Boots01','Iron Boots',4,0,NULL,1500,NULL,5,NULL,0,0x000E5CEA,7,2,64,NULL,0,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2430,'Iron_Boots02','Iron Boots',4,0,NULL,800,NULL,5,NULL,0,0xFFFFFFFF,7,2,64,NULL,0,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2431,'Valley_Shoes','Valley Shoes',4,20,NULL,0,NULL,10,NULL,0,0xFFFFFFFF,7,2,64,NULL,0,0,0,'bonus bMaxHPRate,7; bonus bMaxSPRate,7;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2432,'Spiky_Heel_','High Heels',4,8500,NULL,600,NULL,2,NULL,1,0xFFFFFFFE,7,2,64,NULL,0,1,0,'bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2433,'Diabolus_Boots','Diabolus Boots',4,20,NULL,250,NULL,4,NULL,1,0x00CFFF80,2,2,64,NULL,0,1,0,'bonus bMaxHP,(BaseLevel*10);',NULL,NULL); -REPLACE INTO `item_db` VALUES (2434,'Black_Leather_Boots_','Black Leather Boots',4,20,NULL,500,NULL,4,NULL,1,0xFFFFFFFE,2,2,64,NULL,55,1,0,'bonus bAgi,1; if(getrefine()>=9) bonus bAgi,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2435,'Battle_Greave','Battle Greaves',4,10,NULL,0,NULL,4,NULL,1,0x026654E2,7,2,64,NULL,80,1,0,'bonus bMaxHP,100; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2436,'Combat_Boots','Combat Boots',4,10,NULL,0,NULL,3,NULL,1,0x00898B1C,7,2,64,NULL,80,1,0,'bonus bMaxHP,100; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2437,'Battle_Boots','Battle Boots',4,10,NULL,0,NULL,3,NULL,1,0x41000000,7,2,64,NULL,80,1,0,'bonus bMaxHP,100; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2438,'Paw_Of_Cat','Paw Of Cat',4,10,NULL,300,NULL,0,NULL,0,0xFFFFFFFF,7,2,64,NULL,80,1,0,'bonus bFlee,5; bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2439,'Refresh_Shoes','Refresh Shoes',4,20,NULL,0,NULL,9,NULL,0,0xFFFFFFFF,7,2,64,NULL,0,0,0,'bonus bMaxHPRate,17; bonus bMaxSPRate,8; bonus2 bHPRegenRate,20,10000; bonus2 bSPRegenRate,3,10000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2440,'Sprint_Shoes','Sprint Shoes',4,20,NULL,300,NULL,2,NULL,1,0x00CFFF80,2,2,64,NULL,70,1,0,'bonus bAgi,1; bonus bSPrecovRate,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2441,'Beach_Sandal','Beach Sandals',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFF,7,2,64,NULL,0,1,0,'bonus bStr,1; bonus bInt,1; bonus bAgi,1; bonus2 bSubEle,Ele_Fire,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2442,'Boots_Perforated','Red Stocking Boots',4,0,NULL,0,NULL,7,NULL,0,0xFFFFFFFF,7,2,64,NULL,0,0,0,'bonus bLuk,2; bonus bHPrecovRate,10; bonus bSPrecovRate,10; bonus3 bAutoSpellWhenHit,"WZ_QUAGMIRE",3,20; bonus bMdef,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2443,'Fish_Shoes','Fisher\'s Boots',4,10,NULL,250,NULL,0,NULL,0,0xFFFFFFFF,7,2,64,NULL,0,0,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2444,'Krieger_Shoes1','Glorious Shoes',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,7,2,64,NULL,81,1,0,'bonus bMaxHPRate,10; bonus2 bSubRace,RC_DemiHuman,4; bonus2 bSubRace,RC_Player_Human,4; bonus3 bAutoSpellWhenHit,"AL_INCAGI",1,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2445,'Krieger_Shoes2','Glorious Popularized Shoes',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,7,2,64,NULL,61,1,0,'bonus bMaxHPRate,5; bonus bMaxSPRate,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2446,'Krieger_Shoes3','Glorious Mass-Production Shoes',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,7,2,64,NULL,0,1,0,'bonus bMaxHPRate,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2447,'Military_Boots','Army Boots',4,0,NULL,1000,NULL,5,NULL,0,0xFFFFFFFE,7,2,64,NULL,0,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2448,'Air_Boss','Air Boss',4,0,NULL,500,NULL,2,NULL,0,0xFFFFFFFF,7,2,64,NULL,0,1,0,'bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2449,'Variant_Shoes_M','Variant Shoes',4,20,NULL,500,NULL,3,NULL,0,0xFFFFFFFE,2,2,64,NULL,85,1,0,'bonus bMaxHPRate,20-getrefine(); bonus bMaxSPRate,20-getrefine(); bonus bDef,getrefine()/2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2450,'Vital_Tree_Shoes','Vital Tree Shoes',4,20,NULL,500,NULL,4,NULL,0,0xFFFFFFFE,2,2,64,NULL,60,1,0,'bonus bMaxHPrate,10; bonus2 bHPRegenRate,30,10000; bonus bHealpower2,5; bonus bAddItemHealRate,5; bonus bMdef,3; bonus bVit,2;',NULL,NULL); -# Garments -#=================================================================== -REPLACE INTO `item_db` VALUES (2501,'Hood','Hood',4,1000,NULL,200,NULL,1,NULL,0,0xFFFFFFFF,7,2,4,NULL,0,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2502,'Hood_','Hood',4,1000,NULL,200,NULL,1,NULL,1,0xFFFFFFFF,7,2,4,NULL,0,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2503,'Muffler','Muffler',4,5000,NULL,400,NULL,2,NULL,0,0xFFFFFFFE,7,2,4,NULL,0,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2504,'Muffler_','Muffler',4,5000,NULL,400,NULL,2,NULL,1,0xFFFFFFFE,7,2,4,NULL,0,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2505,'Manteau','Manteau',4,32000,NULL,600,NULL,4,NULL,0,0x006654E2,7,2,4,NULL,0,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2506,'Manteau_','Manteau',4,32000,NULL,600,NULL,4,NULL,1,0x006654E2,7,2,4,NULL,0,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2507,'Cape_Of_Ancient_Lord','Ancient Cape',4,82000,NULL,600,NULL,2,NULL,0,0xFFFFFFFE,7,2,4,NULL,40,1,0,'bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2508,'Ragamuffin_Cape','Ragamuffin Manteau',4,56000,NULL,500,NULL,1,NULL,0,0xFFFFFFFE,7,2,4,NULL,0,1,0,'bonus bUnbreakableGarment; bonus bMdef,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2509,'Clack_Of_Servival','Survivor\'s Manteau',4,20000,NULL,550,NULL,0,NULL,0,0x00810204,7,2,4,NULL,75,1,0,'bonus bMdef,5; bonus bVit,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2510,'Novice_Hood','Somber Novice Hood',4,1,NULL,1,NULL,2,NULL,0,0x00000001,7,2,4,NULL,0,0,0,'bonus2 bSubEle,Ele_Neutral,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2511,'Skeleton\'s_Cape','Skeleton Manteau',4,5000,NULL,700,NULL,1,NULL,0,0xFFFFFFFE,7,2,4,NULL,75,1,0,'bonus bStr,2; bonus bInt,-3; bonus bDex,2; bonus bVit,-3; bonus bLuk,2; bonus bAgi,-4;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2512,'Novice_Manteau','Novice Manteau',4,50000,NULL,500,NULL,2,NULL,1,0x00000001,7,2,4,NULL,40,1,0,'bonus2 bSubEle,Ele_Neutral,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2513,'Celestial_Robe','Heavenly Maiden Robe',4,20,NULL,500,NULL,3,NULL,1,0xFFFFFFFE,7,2,4,NULL,80,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2514,'Pauldron','Pauldron',4,20,NULL,800,NULL,5,NULL,1,0x000654E2,7,2,4,NULL,80,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2515,'Wing_Of_Eagle','Eagle Wing',4,20000,NULL,300,NULL,1,NULL,1,0x00810204,7,2,4,NULL,85,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2516,'Falcon_Robe','Falcon Muffler',4,30000,NULL,400,NULL,3,NULL,0,0xFFFFFFFE,7,2,4,NULL,65,1,0,'bonus bFlee,15; bonus bFlee2,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2517,'Vali\'s_Manteau','Vali\'s Manteau',4,30000,NULL,600,NULL,4,NULL,0,0xFFFFFFFE,7,2,4,NULL,65,1,0,'bonus2 bSubEle,Ele_Neutral,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2518,'Morpheus\'s_Shawl','Morpheus\'s Shawl',4,30000,NULL,600,NULL,3,NULL,0,0xFFFFFFFE,7,2,4,NULL,33,1,0,'bonus bMaxSPrate,10; bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2519,'Morrigane\'s_Manteau','Morrigane\'s Manteau',4,30000,NULL,600,NULL,3,NULL,0,0xFFFFFFFE,7,2,4,NULL,61,1,0,'bonus bLuk,2; bonus bFlee2,8;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2520,'Goibne\'s_Shoulder_Arms','Goibne\'s Spaulders',4,30000,NULL,700,NULL,3,NULL,0,0xFFFFFFFE,7,2,4,NULL,54,1,0,'bonus bLongAtkDef,10; bonus bMdef,2; bonus bVit,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2521,'Angel\'s_Warmth','Angelic Cardigan',4,10000,NULL,400,NULL,2,NULL,1,0x00000001,7,2,4,NULL,20,1,0,'bonus bHPrecovRate,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2522,'Undershirt','Undershirt',4,20000,NULL,150,NULL,2,NULL,0,0xFFFFFFFF,7,2,4,NULL,1,1,0,'bonus bMdef,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2523,'Undershirt_','Undershirt',4,20000,NULL,150,NULL,2,NULL,1,0xFFFFFFFF,7,2,4,NULL,1,1,0,'bonus bMdef,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2524,'Valkyrie_Manteau','Valkyrian Manteau',4,0,NULL,500,NULL,3,NULL,1,0xFFFFFFFE,2,2,4,NULL,1,1,0,'bonus bUnbreakableGarment; 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);',NULL,NULL); -REPLACE INTO `item_db` VALUES (2525,'Cape_Of_Ancient_Lord_','Ancient Cape',4,82000,NULL,600,NULL,2,NULL,1,0xFFFFFFFE,7,2,4,NULL,40,1,0,'bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2526,'Dragon_Scale_Coat','Coat of Dragon Scale',4,20,NULL,10,NULL,4,NULL,0,0xFFFFFFFF,7,2,4,NULL,50,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2527,'Dragon_Breath','Dragon Breath',4,20,NULL,600,NULL,4,NULL,1,0xFFFFFFFE,2,2,4,NULL,48,1,0,'bonus2 bSubRace,RC_Dragon,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2528,'Wool_Scarf','Wool Scarf',4,20,NULL,500,NULL,3,NULL,1,0xFFFFFFFE,2,2,4,NULL,55,1,0,'bonus bMdef,4;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2529,'Rider_Insignia','Rider Insignia',4,20,NULL,500,NULL,4,NULL,0,0xFFFFFFFE,2,2,4,NULL,55,1,0,'bonus bAgi,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2530,'Rider_Insignia_','Rider Insignia',4,20,NULL,500,NULL,4,NULL,1,0xFFFFFFFE,2,2,4,NULL,55,1,0,'bonus bAgi,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2531,'Ulfhedinn','Ulfhedinn',4,20,NULL,700,NULL,3,NULL,1,0x000654E2,2,2,4,NULL,70,1,0,'bonus3 bAutoSpellWhenHit,"NPC_STONESKIN",6,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2532,'Mithril_Magic_Cape','Mithril Magic Cape',4,20,NULL,400,NULL,3,NULL,1,0x00098B1C,2,2,4,NULL,70,1,0,'bonus bMdef,3; bonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,200,BF_MAGIC,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2533,'Freyja_Cape','Freyja Cape',4,0,NULL,200,NULL,10,NULL,0,0xFFFFFFFE,7,2,4,NULL,0,0,0,'bonus2 bSubRace,RC_DemiHuman,15; bonus2 bSubRace,RC_Player_Human,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2534,'Ruffler','Ruffler',4,20,NULL,0,NULL,10,NULL,0,0xFFFFFFFF,7,2,4,NULL,0,0,0,'bonus2 bSubEle,Ele_Neutral,17; bonus bFlee,17;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2535,'Cloak_Of_Survival_C','Cloak Of Survival',4,1,NULL,0,NULL,5,NULL,0,0x00810204,7,2,4,NULL,0,0,0,'bonus bVit,10; bonus bMdef,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2536,'Skin_Of_Ventus','Skin of Ventus',4,20,NULL,250,NULL,2,NULL,1,0xFFFFFFFE,7,2,4,NULL,60,1,0,'bonus bMdef,2; bonus bMaxHP,200; bonus bFlee,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2537,'Diabolus_Manteau','Diabolus Manteau',4,20,NULL,250,NULL,5,NULL,1,0x00CFFF80,2,2,4,NULL,0,1,0,'bonus2 bSubEle,Ele_Neutral,5; bonus bMaxHP,100; bonus2 bAddDamageClass,1916,10; bonus2 bAddDamageClass,1917,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2538,'Commander_Manteau','Captain\'s Manteau',4,10,NULL,0,NULL,4,NULL,1,0x026654E2,7,2,4,NULL,80,1,0,'bonus bMaxHP,50; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2539,'Commander_Manteau_','Commander\'s Manteau',4,10,NULL,0,NULL,3,NULL,1,0x00898B1C,7,2,4,NULL,80,1,0,'bonus bMaxHP,50; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2540,'Sheriff_Manteau','Sheriff\'s Manteau',4,10,NULL,0,NULL,3,NULL,1,0x41000000,7,2,4,NULL,80,1,0,'bonus bMaxHP,50; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2541,'Asprika','Asprika',4,20,NULL,400,NULL,5,NULL,0,0xFFFFFFFF,7,2,4,NULL,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;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2542,'Flame_Manteau','Flame Manteau of Naght Sieger',4,20,NULL,70,NULL,4,NULL,1,0xFFFFFFFE,2,2,4,NULL,70,1,0,'bonus bMaxHPRate,5; bonus bMdef,2; bonus bMatkRate,1; bonus2 bAddEle,Ele_Fire,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2543,'Sylphid_Manteau','Sylphid Manteau',4,20,NULL,0,NULL,9,NULL,0,0xFFFFFFFF,7,2,4,NULL,0,0,0,'bonus bFlee,13; bonus2 bSubEle,Ele_Neutral,13; bonus bFlee2,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2544,'Leather_Of_Tendrilion','Leather of Tendrilion',4,20,NULL,300,NULL,3,NULL,1,0x00CFDF80,2,2,4,NULL,0,1,0,'bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Earth,5; bonus2 bSubRace,RC_Plant,5; bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2545,'Musika','Musika',4,20,NULL,500,NULL,2,NULL,1,0x00008100,2,2,4,NULL,70,1,0,'bonus bMdef,3; bonus3 bAutoSpellwhenhit,"AL_HEAL",max(1,getskilllv("AL_HEAL")),20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2546,'Beach_Manteau','Beach Manteau',4,20,NULL,600,NULL,0,NULL,1,0xFFFFFFFF,7,2,4,NULL,0,1,0,'bonus bStr,1; bonus bInt,1; bonus2 bSubEle,Ele_Fire,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2547,'Cheap_Running_Shirts','Cheap Undershirt',4,0,NULL,0,NULL,8,NULL,0,0xFFFFFFFF,7,2,4,NULL,0,1,0,'bonus bDex,2; bonus bFlee,10; bonus2 bSubEle,Ele_Neutral,10; bonus bMdef,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2548,'Muffler_C','Neo Muffler',4,0,NULL,0,NULL,5,NULL,0,0xFFFFFFFE,2,2,4,NULL,95,0,0,'bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus bMaxHPrate,10; bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Fire,5; bonus2 bSubEle,Ele_Holy,5; bonus2 bSubEle,Ele_Dark,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2549,'Krieger_Muffler1','Glorious Muffler',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,7,2,4,NULL,81,1,0,'bonus bMaxHPRate,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2550,'Fisher\'s_Muffler','Fisher\'s Muffler',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFF,7,2,4,NULL,0,1,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2551,'Rider_Insignia_M','Crest of the Rider',4,20,NULL,500,NULL,4,NULL,1,0xFFFFFFFE,2,2,4,NULL,55,1,0,'bonus bAgi,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2552,'Mithril_Magic_Cape_M','Mithril Magic Manteau',4,20,NULL,400,NULL,3,NULL,1,0x00098B1C,2,2,4,NULL,70,1,0,'bonus bMdef,3; bonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,200,BF_MAGIC,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2553,'Dragon_Manteau','Dragon Manteau',4,20,NULL,1000,NULL,5,NULL,1,0xFFFFFFFE,2,2,4,NULL,0,1,0,'bonus bAgi,1; bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2554,'Piece_Of_Angent_Skin','Nydhorgg\'s Shadow Garb',4,20,NULL,400,NULL,5,NULL,1,0xFFFFFFFE,2,2,4,NULL,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;',NULL,NULL); -# Accessories -#=================================================================== -REPLACE INTO `item_db` VALUES (2601,'Ring','Ring',4,30000,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,7,2,136,NULL,20,0,0,'bonus bStr,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2602,'Earring','Earring',4,30000,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,7,2,136,NULL,20,0,0,'bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2603,'Necklace','Necklace',4,30000,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,7,2,136,NULL,20,0,0,'bonus bVit,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2604,'Glove','Glove',4,30000,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,7,2,136,NULL,20,0,0,'bonus bDex,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2605,'Brooch','Brooch',4,30000,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,7,2,136,NULL,20,0,0,'bonus bAgi,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2607,'Clip','Clip',4,30000,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,7,2,136,NULL,0,0,0,'bonus bMaxSP,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2608,'Rosary','Rosary',4,15000,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,7,2,136,NULL,20,0,0,'bonus bMdef,5; bonus bLuk,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2609,'Skul_Ring','Skull Ring',4,10000,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,0,0,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2610,'Gold_Ring','Gold Ring',4,30000,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,0,0,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2611,'Silver_Ring','Silver Ring',4,20000,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,0,0,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2612,'Flower_Ring','Flower Ring',4,1500,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,0,0,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2613,'Diamond_Ring','Diamond Ring',4,45000,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,0,0,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2614,'An_Eye_Of_Dullahan','Eye of Dullahan',4,90000,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,7,2,136,NULL,50,0,0,'bonus2 bResEff,Eff_Poison,10000; bonus2 bSubRace,RC_Undead,4; bonus2 bSubRace,RC_Demon,4;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2615,'Safety_Ring','Safety Ring',4,75000,NULL,100,NULL,3,NULL,0,0xFFFFFFFE,7,2,136,NULL,40,0,0,'bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2616,'Critical_Ring','Critical Ring',4,75000,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,7,2,136,NULL,40,0,0,'bonus bCritical,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2617,'Mitten_Of_Presbyter','Celebrant\'s Mitten',4,2,NULL,100,NULL,1,NULL,0,0xFFFFFFFE,7,2,136,NULL,35,0,0,'bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2618,'Matyr\'s_Flea_Guard','Matyr\'s Leash',4,2,NULL,100,NULL,1,NULL,0,0xFFFFFFFE,7,2,136,NULL,35,0,0,'bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2619,'Thimble_Of_Archer','Bow Thimble',4,10000,NULL,100,NULL,0,NULL,0,0x00080808,7,2,136,NULL,65,0,0,'bonus bLongAtkRate,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2620,'Ring_Of_Rogue','Rogue\'s Treasure',4,10000,NULL,100,NULL,0,NULL,0,0x02021040,7,2,136,NULL,70,0,0,'if(readparam(bStr)>=90){ bonus bHit,10; bonus bFlee,10; } if(readparam(bAgi)>=90){ bonus bBaseAtk,10; bonus bCritical,10; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (2621,'Ring_','Ring',4,30000,NULL,200,NULL,0,NULL,1,0xFFFFFFFE,7,2,136,NULL,90,0,0,'bonus bStr,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2622,'Earring_','Earring',4,30000,NULL,200,NULL,0,NULL,1,0xFFFFFFFE,7,2,136,NULL,90,0,0,'bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2623,'Necklace_','Necklace',4,30000,NULL,200,NULL,0,NULL,1,0xFFFFFFFE,7,2,136,NULL,90,0,0,'bonus bVit,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2624,'Glove_','Glove',4,30000,NULL,200,NULL,0,NULL,1,0xFFFFFFFE,7,2,136,NULL,90,0,0,'bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2625,'Brooch_','Brooch',4,30000,NULL,200,NULL,0,NULL,1,0xFFFFFFFE,7,2,136,NULL,90,0,0,'bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2626,'Rosary_','Rosary',4,15000,NULL,200,NULL,0,NULL,1,0xFFFFFFFE,7,2,136,NULL,90,0,0,'bonus bMdef,3; bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2627,'Belt','Belt',4,20000,NULL,1200,NULL,0,NULL,1,0xFFFFFFFF,7,2,136,NULL,25,0,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2628,'Novice_Armlet','Novice Armlet',4,400,NULL,200,NULL,0,NULL,1,0x00000001,7,2,136,NULL,1,0,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2629,'Magingiorde','Megingjard',4,20,NULL,8000,NULL,2,NULL,0,0xFFFFFFFF,7,2,136,NULL,94,0,0,'bonus bStr,40; bonus bMdef,7;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2630,'Brysinggamen','Brisingamen',4,20,NULL,1500,NULL,1,NULL,0,0xFFFFFFFF,7,2,136,NULL,94,0,0,'bonus bStr,6; bonus bAgi,6; bonus bVit,6; bonus bInt,6; bonus bLuk,10; bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2631,'First_Age_Ring','Celebration Ring',4,1,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,1,0,0,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (2632,'Korean_Trinket','Korean Trinket',4,125000,NULL,100,NULL,1,NULL,0,0xFFFFFFFE,7,2,136,NULL,65,0,0,'bonus bVit,1; bonus bDex,1; bonus bLuk,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (2633,'Jade_Ring','Jade Ring',4,204000,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,7,2,136,NULL,80,0,0,'bonus bStr,2; bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2634,'Bridegroom_Ring','Wedding Ring',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,1,136,NULL,0,0,0,'skill "WE_MALE",1; skill "WE_FEMALE",1; skill "WE_CALLPARTNER",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2635,'Bride_Ring','Wedding Ring',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,0,136,NULL,0,0,0,'skill "WE_MALE",1; skill "WE_FEMALE",1; skill "WE_CALLPARTNER",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2636,'Gold_Ring_','Gold Christmas Ring',4,30000,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,0,0,0,'bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2637,'Silver_Ring_','Silver Christmas Ring',4,20000,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,0,0,0,'bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2638,'Exorcize_Sachet','Sacred Incense',4,20000,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,0,0,0,'bonus bStr,1; bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2639,'Purification_Sachet','Occult Incense',4,20000,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,0,0,0,'bonus bInt,1; bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2640,'Kafra_Ring','Kafra Ring',4,40000,NULL,200,NULL,1,NULL,0,0xFFFFFFFE,7,2,136,NULL,0,0,0,'bonus bStr,1; bonus bInt,1; bonus bAgi,1; bonus bLuk,1; bonus bMdef,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2641,'Fashionable_Sack','Fashion Hip Sack',4,20,NULL,700,NULL,0,NULL,0,0x00040420,7,2,136,NULL,50,0,0,'bonus bStr,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2642,'Serin\'s_Gold_Ring','Serin\'s Gold Ring',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,0,0,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2643,'Serin\'s_Gold_Ring_','Serin\'s Gold Ring',4,45000,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,0,0,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2644,'The_Sign_','The Sign',4,2,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,0,0,0,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2645,'Moonlight_Ring','Moonlight Ring',4,40000,NULL,200,NULL,0,NULL,0,0x02021040,7,2,136,NULL,60,0,0,'bonus bMdef,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2646,'Bunch_Of_Carnation','Bunch of Carnations',4,2,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,0,0,0,'bonus bAllStats,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2647,'Nile_Rose','Nile Rose',4,2,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,7,2,136,NULL,0,0,0,'bonus bMaxHP,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2648,'Morpheus\'s_Ring','Morpheus\'s Ring',4,30000,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,7,2,136,NULL,33,0,0,'bonus bInt,1; bonus bMaxSPrate,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2649,'Morpheus\'s_Armlet','Morpheus\'s Bracelet',4,30000,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,7,2,136,NULL,33,0,0,'bonus bInt,1; bonus bMaxSPrate,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2650,'Morrigane\'s_Belt','Morrigane\'s Belt',4,30000,NULL,200,NULL,0,NULL,0,0xFFFFFFFE,7,2,136,NULL,61,0,0,'bonus bBaseAtk,5; bonus bCritical,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2651,'Morrigane\'s_Pendant','Morrigane\'s Pendant',4,30000,NULL,200,NULL,0,NULL,0,0xFFFFFFFE,7,2,136,NULL,61,0,0,'bonus bStr,2; bonus bCritical,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2652,'Cursed_Lucky_Brooch','Goddess of Fortune\'s Cursed Brooch',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,40,0,0,'bonus bCritical,6; bonus2 bAddEff2,Eff_Curse,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2653,'Sacrifice_Ring','Sacrifice Ring',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,90,0,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2654,'Shinobi\'s_Sash','Shinobi Sash',4,20000,NULL,300,NULL,1,NULL,0,0x02021040,7,2,136,NULL,30,0,0,'bonus bStr,1; bonus bAgi,1; bonus bMdef,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2655,'Bloody_Iron_Ball','Bloodied Shackle Ball',4,50000,NULL,4000,NULL,0,NULL,0,0xFFFFFFFE,7,2,136,NULL,1,0,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2656,'Hyper_Changer','Armor Charm',4,20000,NULL,1000,NULL,1,NULL,0,0x000654E2,7,2,136,NULL,1,0,0,'bonus bMaxHP,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2657,'Lab_Passport','Laboratory Permit',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,1,0,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2658,'Nile_Rose_','Nile Rose',4,2,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,7,2,136,NULL,0,0,0,'bonus bMaxHP,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2659,'Vesper_Core01','Vesper Core 01',4,20,NULL,100,NULL,1,NULL,0,0x00CFFF80,2,2,136,NULL,1,0,0,'bonus bMdef,3; bonus bInt,2; bonus bMaxSPrate,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2660,'Vesper_Core02','Vesper Core 02',4,20,NULL,100,NULL,1,NULL,0,0x00CFFF80,2,2,136,NULL,1,0,0,'bonus bMdef,3; bonus bStr,3; bonus bBaseAtk,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2661,'Vesper_Core03','Vesper Core 03',4,20,NULL,100,NULL,1,NULL,0,0x00CFFF80,2,2,136,NULL,1,0,0,'bonus bMdef,3; bonus bAgi,3; bonus bFlee,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2662,'Vesper_Core04','Vesper Core 04',4,20,NULL,100,NULL,1,NULL,0,0x00CFFF80,2,2,136,NULL,1,0,0,'bonus bMdef,3; bonus bDex,3; bonus bHit,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2663,'Gauntlet_Of_Accuracy','Gauntlet of Hit',4,20,NULL,900,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,75,0,0,'bonus bHit,15; bonus bStr,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2664,'Scarf_Belt','Belcarf',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFE,7,2,136,NULL,75,0,0,'bonus bDex,2; bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2665,'Ring_Of_Exorcism','Exorcising Ring',4,20,NULL,500,NULL,0,NULL,0,0x00008110,7,2,136,NULL,60,0,0,'bonus bMdef,1; bonus2 bExpAddRace,RC_Undead,5; bonus2 bExpAddRace,RC_Demon,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2666,'Lamp_Of_Hope','Lantern of Hope',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,1,0,0,'bonus bStr,2; bonus2 bResEff,Eff_Blind,1000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2667,'Glove_Of_Archer','Renown Archer\'s Gloves',4,20,NULL,300,NULL,0,NULL,0,0xFFFFFFFE,7,2,136,NULL,60,0,0,'bonus bHit,5; bonus bCritical,5; bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2668,'Women\'s_Glory','Woman Glory',4,0,NULL,500,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,1,0,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2669,'Golden_Necklace_','RJC Necklace',4,30000,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,7,2,136,NULL,0,0,0,'bonus bMaxSP,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2670,'Ring_Of_Longing','Ring of Longing',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,136,NULL,30,0,0,'bonus bFlee,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2671,'Thimble_Of_Archer_','Bow Thimble',4,10000,NULL,100,NULL,0,NULL,1,0x00080808,7,2,136,NULL,65,0,0,'bonus bLongAtkRate,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2672,'Anniversary_Ring','3rd Anniversary Celebration Ring',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,7,2,136,NULL,0,0,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2673,'Shining_Ring','Warrior\'s Shining Ring',4,0,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,7,2,136,NULL,48,0,0,'bonus bBaseAtk,10; bonus bSPrecovRate,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2674,'Honor_Ring','Ring of Honor',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,1,0,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2675,'Lord_Ring','Lord Ring',4,0,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,1,0,0,'bonus bAllStats,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2676,'Hunter_Earring','Hunter\'s Earring',4,20,NULL,300,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,1,0,0,'bonus2 bAddMonsterDropItem,7618,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2677,'Spiritual_Ring','Spiritual Ring',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,0,0,0,'bonus bInt,2; bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2678,'Ring_Of_Flame_Lord','Ring Of Flame Lord',4,20,NULL,100,NULL,0,NULL,0,0x00CFFF80,2,2,136,NULL,0,0,0,'bonus bStr,2; bonus bVit,1; bonus bBaseAtk,15; 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;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2679,'Ring_Of_Resonance','Ring Of Resonance',4,20,NULL,100,NULL,2,NULL,0,0x00CFFF80,2,2,136,NULL,0,0,0,'bonus bAgi,2; bonus bVit,1; bonus bMdef,2; 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;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2680,'Lesser_Elemental_Ring','Lesser Elemental Ring',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,0,0,0,'bonus bAllStats,1; bonus3 bAutoSpell,"WZ_ESTIMATION",1,80; bonus3 bAutoSpell,"MC_IDENTIFY",1,50; bonus3 bAutoSpell,"TF_PICKSTONE",1,100; bonus3 bAutoSpell,"BS_GREED",1,10; bonus3 bAutoSpellWhenHit,"TK_RUN",5,20; bonus3 bAutoSpellWhenHit,"TK_HIGHJUMP",3,30; bonus3 bAutoSpellWhenHit,"NV_FIRSTAID",1,100; bonus3 bAutoSpellWhenHit,"TF_BACKSLIDING",1,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2681,'Republic_Ring','Republic Anniversary Ring',4,20,NULL,1000,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,0,0,0,'bonus bAllStats,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2682,'Ring_Of_Water','Ring of Water',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFE,7,2,136,NULL,20,0,0,'bonus2 bSubEle,Ele_Water,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2683,'Ring_Of_Fire','Ring of Fire',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFE,7,2,136,NULL,20,0,0,'bonus2 bSubEle,Ele_Fire,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2684,'Ring_Of_Wind','Ring of Wind',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFE,7,2,136,NULL,20,0,0,'bonus2 bSubEle,Ele_Wind,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2685,'Ring_Of_Earth','Ring of Earth',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFE,7,2,136,NULL,20,0,0,'bonus2 bSubEle,Ele_Earth,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2686,'Elven_Ears_C','Elven Ears',4,1,NULL,0,NULL,2,NULL,0,0xFFFFFFFE,7,2,512,NULL,1,0,73,'bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2687,'Steel_Flower_C','Steel Flower',4,1,NULL,0,NULL,1,NULL,0,0xFFFFFFFE,7,2,1,NULL,1,0,56,'bonus2 bSubRace,RC_Plant,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2688,'Critical_Ring_C','Critical Ring',4,1,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,7,2,136,NULL,1,0,0,'bonus bCritical,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2689,'Earring_C','Earring',4,1,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,7,2,136,NULL,1,0,0,'bonus bInt,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2690,'Ring_C','Ring',4,1,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,7,2,136,NULL,1,0,0,'bonus bStr,4;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2691,'Necklace_C','Necklace',4,1,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,7,2,136,NULL,1,0,0,'bonus bVit,4;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2692,'Glove_C','Glove',4,1,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,7,2,136,NULL,1,0,0,'bonus bDex,4;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2693,'Brooch_C','Brooch',4,1,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,7,2,136,NULL,1,0,0,'bonus bAgi,4;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2694,'Rosary_C','Rosary',4,1,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,7,2,136,NULL,1,0,0,'bonus bMdef,5; bonus bLuk,4;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2695,'Safety_Ring_C','Safety Ring',4,1,NULL,0,NULL,5,NULL,0,0xFFFFFFFE,7,2,136,NULL,1,0,0,'bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2696,'Vesper_Core01_C','Vesper Core 01',4,1,NULL,0,NULL,1,NULL,0,0xFFFFFFFE,7,2,136,NULL,1,0,0,'bonus bMdef,3; bonus bInt,2; bonus bMaxSPrate,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2697,'Vesper_Core02_C','Vesper Core 02',4,1,NULL,0,NULL,1,NULL,0,0xFFFFFFFE,7,2,136,NULL,1,0,0,'bonus bMdef,3; bonus bStr,3; bonus bBaseAtk,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2698,'Vesper_Core03_C','Vesper Core 03',4,1,NULL,0,NULL,1,NULL,0,0xFFFFFFFE,7,2,136,NULL,1,0,0,'bonus bMdef,3; bonus bAgi,3; bonus bFlee,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2699,'Vesper_Core04_C','Vesper Core 04',4,1,NULL,0,NULL,1,NULL,0,0xFFFFFFFE,7,2,136,NULL,1,0,0,'bonus bMdef,3; bonus bDex,3; bonus bHit,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2700,'Red_Silk_Seal','Red Silk Seal',4,20,NULL,100,NULL,0,NULL,0,0x00004082,2,2,136,NULL,60,0,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2701,'Orleans_Glove','Orleans\'s Glove',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFE,2,2,136,NULL,90,0,0,'bonus bDex,2; bonus bMatkRate,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2702,'Bison_Horn','Bison Horn',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFE,2,2,136,NULL,90,0,0,'bonus bAgi,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2703,'Expert_Ring','Expert Ring',4,20,NULL,150,NULL,0,NULL,1,0xFFFFFFFE,2,2,136,NULL,50,0,0,'bonus bDelayRate,-5; bonus bUseSPrate,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2704,'Golden_Accessory','Golden Accessories',4,20,NULL,100,NULL,4,NULL,0,0xFFFFFFFF,7,2,136,NULL,0,0,0,'bonus bMdef,4;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2705,'Golden_Accessory2','Golden Accessories',4,20,NULL,100,NULL,4,NULL,0,0xFFFFFFFF,7,2,136,NULL,NULL,NULL,NULL,'bonus2 bAddMonsterDropItem,12018,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2706,'Handcuff','Arrest Handcuffs',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,0,0,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2707,'Gusli','GUSLI',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,0,0,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2708,'Chinese_Handicraft','Chinese Handicraft',4,0,NULL,50,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,0,0,0,'bonus3 bAutoSpell,"MG_FIREBOLT",5,300;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2709,'5_Anniversary_Coin','5th Anniversary Coin',4,2,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,0,0,0,'bonus bAtkRate,5; bonus bMatkRate,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2710,'Bloody_Iron_Ball_C','Bloody Iron Ball',4,1,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,7,2,136,NULL,0,0,0,'bonus bBaseAtk,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2711,'Spiritual_Ring_C','Spiritual Ring',4,1,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,0,0,0,'bonus bInt,2; bonus bDex,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2712,'Ragnarok_Limited_Ed','Ragnarok Limited Edition',4,0,NULL,300,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,30,0,0,'bonus bVit,3; bonus bAgi,3; bonus bLuk,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2713,'Certificate_TW','Certificate',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,0,0,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2714,'Marvelous_Pandent','Marvelous Pendant',4,0,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,7,2,136,NULL,0,0,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2715,'Skul_Ring_','Skull Ring',4,10000,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,7,2,136,NULL,0,0,0,'bonus2 bSubRace,RC_Undead,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2716,'Librarian_Glove','Librarian Glove',4,20,NULL,100,NULL,0,NULL,1,0x00810200,7,2,136,NULL,80,0,0,'bonus bMaxSP,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2717,'Pocket_Watch_','Pocket Watch',4,20,NULL,200,NULL,0,NULL,0,0x00810204,7,2,136,NULL,80,0,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2718,'Lunatic_Brooch','Lunatic Brooch',4,20,NULL,200,NULL,0,NULL,1,0x00080808,7,2,136,NULL,65,0,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2719,'Iron_Wrist','Iron Wrist',4,20,NULL,700,NULL,1,NULL,0,0x000444A2,7,2,136,NULL,50,0,0,'bonus2 bSkillAtk,"SM_BASH",6; bonus2 bSkillAtk,"MC_MAMMONITE",6;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2720,'Medal_Swordman','Medal of Honor',4,20,NULL,0,NULL,1,NULL,0,0x00404082,7,2,136,NULL,70,0,0,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bHit,10; bonus bMaxHP,500; bonus bMaxSP,50; bonus3 bAddEff,Eff_Stun,100,ATF_SHORT;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2721,'Medal_Thief','Medal of Honor',4,20,NULL,0,NULL,1,NULL,0,0x02021040,7,2,136,NULL,70,0,0,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bFlee,10; bonus bMaxHP,300; bonus bMaxSP,80; bonus3 bAddEff,Eff_Poison,100,ATF_SHORT;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2722,'Medal_Acolyte','Medal of Honor',4,20,NULL,0,NULL,1,NULL,0,0x00008110,7,2,136,NULL,70,0,0,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bMdef,6; bonus bMaxHP,600; bonus3 bAddEff,Eff_Silence,100,ATF_SHORT;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2723,'Medal_Mage','Medal of Honor',4,20,NULL,0,NULL,1,NULL,0,0x00810204,7,2,136,NULL,70,0,0,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bMdef,6; bonus bMaxHP,600; bonus2 bAddEffWhenHit,Eff_Stone,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2724,'Medal_Archer','Medal of Honor',4,20,NULL,0,NULL,1,NULL,0,0x00080808,7,2,136,NULL,70,0,0,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bCritical,10; bonus bMaxHP,300; bonus bMaxSP,80; bonus3 bAddEff,Eff_Blind,100,ATF_LONG;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2725,'Medal_Merchant','Medal of Honor',4,20,NULL,0,NULL,1,NULL,0,0x00040420,7,2,136,NULL,70,0,0,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bAspdRate,10; bonus bMaxHP,500; bonus bMaxSP,50; bonus3 bAddEff,Eff_Curse,100,ATF_SHORT;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2726,'Icarus_Wing','Icarus Wings',4,20,NULL,100,NULL,0,NULL,0,0x00000800,2,2,136,NULL,70,0,0,'bonus bMaxSP,50; bonus bDex,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2727,'Bowman_Scarf','Bowman Scarf',4,20,NULL,200,NULL,0,NULL,0,0x00000800,2,2,136,NULL,70,0,0,'bonus bMaxSP,50; bonus bDex,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2728,'Cursed_Hand','Cursed Hand',4,20,NULL,50,NULL,0,NULL,1,0xFFFFFFFE,7,2,136,NULL,80,0,0,'bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,30; bonus bHit,10; bonus bHPrecovRate,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2729,'Diabolus_Ring','Diabolus Ring',4,20,NULL,50,NULL,0,NULL,1,0x00CFFF80,2,2,136,NULL,0,0,0,'bonus bMaxHP,100; bonus bMaxSP,100; bonus bHealPower,5; bonus2 bAddDamageClass,1916,10; bonus2 bAddDamageClass,1917,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2730,'Morroc_Seal','Seal of Continental Guard',4,20,NULL,50,NULL,0,NULL,1,0xFFFFFFFE,7,2,136,NULL,80,0,0,'bonus bMaxHP,50; bonus bAspdRate,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2731,'Morroc_Charm_Stone','Rune Spellstone',4,20,NULL,50,NULL,0,NULL,1,0xFFFFFFFE,7,2,136,NULL,80,0,0,'bonus bMaxSP,50; bonus bCastRate,-1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2732,'Morroc_Ring','Death Loop',4,20,NULL,50,NULL,0,NULL,1,0xFFFFFFFE,7,2,136,NULL,80,0,0,'bonus bCritical,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2733,'Medal_Gunner','Sheriff Badge',4,20,NULL,0,NULL,1,NULL,0,0x41000000,7,2,136,NULL,70,0,0,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bCritical,10; bonus bMaxHP,300; bonus bMaxSP,80; bonus3 bAddEff,Eff_Blind,100,ATF_LONG;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2734,'Directive_A','Directive',4,0,NULL,0,NULL,1,NULL,0,0x00000001,7,2,136,NULL,0,0,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2735,'Directive_B','Directive',4,0,NULL,0,NULL,1,NULL,0,0x00000001,7,2,136,NULL,0,0,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2736,'Navel_Ring','Navel Ring',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,7,2,136,NULL,75,0,0,'bonus bDex,3; bonus bLuk,3; bonus bMdef,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2737,'Foot_Ring','Foot Ring',4,20,NULL,150,NULL,0,NULL,0,0xFFFFFFFE,7,2,136,NULL,75,0,0,'bonus bVit,3; bonus bMaxHPRate,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2738,'Shiny_Coin','Shiny Coin',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,0,0,0,'bonus2 bAddClass,Class_All,6; bonus bMatkRate,6;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2739,'Ordinary_Coin','Ordinary Coin',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,0,0,0,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2740,'Rusty_Coin','Rusty Coin',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,0,0,0,'bonus2 bAddClass,Class_All,3; bonus bMatkRate,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2741,'All_In_One_Ring','All In One Ring',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,0,0,0,'bonus bAllStats,1; bonus bNoCastCancel; bonus bCastRate,10; skill "AL_HEAL",1; skill "AL_TELEPORT",1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (2742,'Lucky_Clip','Lucky Clip',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,0,0,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2743,'Angelic_Ring','Angelic Ring',4,20,NULL,100,NULL,0,NULL,0,0x00CFFF80,2,2,136,NULL,70,0,0,'bonus bInt,2; bonus bDex,1; bonus bMdef,2; autobonus3 "{ bonus bHealPower,20; }",100,3000,"AL_HEAL","{ specialeffect2 EF_HEAL3; }"; autobonus3 "{ bonus bHealPower,20; }",100,3000,"AM_POTIONPITCHER","{ specialeffect2 EF_HEAL3; }"; autobonus3 "{ bonus bHealPower,20; }",100,3000,"PR_SANCTUARY","{ specialeffect2 EF_HEAL3; }";',NULL,NULL); -REPLACE INTO `item_db` VALUES (2744,'Sprint_Ring','Sprint Ring',4,20,NULL,100,NULL,0,NULL,0,0x00CFFF80,2,2,136,NULL,70,0,0,'bonus bCastrate,-10; bonus bDelayRate,-5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2745,'Pinguicula_Corsage','Pinguicula Corsage',4,20,NULL,200,NULL,0,NULL,1,0x00CFFF80,2,2,136,NULL,70,0,0,'bonus bMdef,2; bonus bMaxSP,25;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2746,'Cold_Heart','Cold Heart',4,20,NULL,100,NULL,1,NULL,0,0x00001000,2,2,136,NULL,80,0,0,'bonus bAgi,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2747,'Black_Cat','Black Cat',4,20,NULL,100,NULL,1,NULL,0,0x00020000,2,2,136,NULL,80,0,0,'bonus bDex,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2748,'Cursed_Star','Cursed Star',4,20,NULL,200,NULL,0,NULL,0,0x00080808,2,2,136,NULL,84,0,0,'bonus bMdef,3; bonus bDex,2; bonus bLuk,-1; bonus2 bHPLossRate,50,10000; bonus3 bAddEff,Eff_Curse,200,ATF_WEAPON|ATF_LONG|ATF_TARGET;',NULL,'heal -300,0;'); -REPLACE INTO `item_db` VALUES (2749,'Linen_Glove','Linen Glove',4,20,NULL,120,NULL,1,NULL,1,0x00CFFF80,2,2,136,NULL,90,0,0,'bonus bMdef,2; bonus bAgi,2; bonus bDex,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (2750,'Summer_Night_Dream','Summer Night Dream',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,0,0,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2751,'Academy_Badge','Academy Of Badge',4,0,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,0,0,0,'if(BaseLevel<80) { bonus bMaxHP,400; bonus bMaxSP,200; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (2752,'Praxinus_C','Praccsinos',4,2,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,1,0,0,'bonus2 bAddClass,Class_All,5; bonus bMatkrate,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2753,'Beholder_Ring','Beholder Ring',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,1,0,0,'bonus2 bExpAddRace,RC_Formless,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2754,'Hallow_Ring','Hallow Ring',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,1,0,0,'bonus2 bExpAddRace,RC_undead,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2755,'Clamorous_Ring','Clamorous Ring',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,1,0,0,'bonus2 bExpAddRace,RC_Brute,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2756,'Chemical_Ring','Chemical Ring',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,1,0,0,'bonus2 bExpAddRace,RC_Plant,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2757,'Insecticide_Ring','Insecticide Ring',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,1,0,0,'bonus2 bExpAddRace,RC_Insect,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2758,'Fisher_Ring','Fischer Ring',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,1,0,0,'bonus2 bExpAddRace,RC_Fish,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2759,'Decussate_Ring','Decussate Ring',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,1,0,0,'bonus2 bExpAddRace,RC_Demon,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2760,'Bloody_Ring','Bloody Ring',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,1,0,0,'bonus2 bExpAddRace,RC_DemiHuman,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2761,'Satanic_Ring','Satanic Ring',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,1,0,0,'bonus2 bExpAddRace,RC_Angel,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2762,'Dragoon_Ring','Dragon Ring',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,1,0,0,'bonus2 bExpAddRace,RC_Dragon,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2763,'Skul_Ring_C','Neo Skull Ring',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,2,2,136,NULL,95,0,0,'bonus bAtkRate,5; bonus bMatkrate,5; bonus bMaxHPrate,5; bonus2 bSkillHeal,"AL_HEAL",5; skill "MG_SIGHT",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2764,'Small_Fishing_Rod','Small Fishing Rod',4,10,NULL,250,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,0,0,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2765,'Novice_Figure','Novice Figure',4,0,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,0,0,0,'bonus bMaxHP,70; if(BaseJob==Job_Novice||BaseJob==Job_SuperNovice) bonus bMaxHP,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2766,'Swordman_Figure','Swordman Figure',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,0,0,0,'bonus bVit,1; if(Class==Job_Swordman) bonus bDef,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2767,'Acolyte_Figure','Acolyte Figure',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,0,0,0,'bonus bInt,1; if(Class==Job_Acolyte) bonus bMaxSP,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2768,'Mage_Figure','Mage Figure',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,0,0,0,'bonus bInt,1; if(Class==Job_Mage) bonus bSPrecovRate,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2769,'Archer_Figure','Archer Figure',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,0,0,0,'bonus bDex,1; if(Class==Job_Archer) bonus bBaseAtk,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2770,'Thief_Figure','Thief Figure',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,0,0,0,'bonus bAgi,1; if(Class==Job_Thief) bonus bAspdRate,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2771,'Merchant_Figure','Merchant Figure',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,0,0,0,'bonus bStr,1; if(Class==Job_Merchant) bonus bCritical,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2772,'Krieger_Ring1','Glorious Ring',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,7,2,136,NULL,81,0,0,'bonus bMaxHP,300; bonus2 bSubEle,Ele_Water,10; bonus2 bSubEle,Ele_Wind,10; bonus2 bSubEle,Ele_Earth,10; bonus2 bSubEle,Ele_Fire,10; bonus bAspdRate,5; bonus bCastrate,-3; bonus bHealPower,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2773,'Krieger_Ring2','Glorious Mass-Production Ring',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,7,2,136,NULL,61,0,0,'bonus bAllStats,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2774,'Krieger_Ring3','Glorious Popularized Ring',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,7,2,136,NULL,0,0,0,'bonus bAllStats,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2775,'Lure','Lure',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,0,0,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2776,'Cool_Towel','Adventurer\'s Trusty Towel',4,20,NULL,100,NULL,NULL,NULL,0,0xFFFFFFFF,7,2,136,NULL,0,0,0,NULL,'sc_start SC_SUMMER,INFINITE_TICK,0;','sc_end SC_SUMMER;'); -REPLACE INTO `item_db` VALUES (2777,'Shaman_Ring','Shaman Ring',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,7,2,136,NULL,30,0,0,'bonus bUseSPrate,-5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2778,'Shaman_Earing','Shaman Earrings',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,30,0,0,'bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2779,'Dark_Knight_Belt','Dark Knight Belt',4,20,NULL,500,NULL,1,NULL,0,0xFFFFFFFF,7,2,136,NULL,30,0,0,'bonus bStr,2; bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2780,'Dark_Knight_Glove','Dark Knight Glove',4,20,NULL,500,NULL,1,NULL,0,0xFFFFFFFF,7,2,136,NULL,80,0,0,'autobonus "{ bonus bAspdRate,2; }",10,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }";',NULL,NULL); -REPLACE INTO `item_db` VALUES (2781,'Aumdura\'s_Grace','Aumdura\'s Benefit',4,0,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,7,2,136,NULL,1,0,0,'bonus bAllStats,1; bonus bMdef,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2782,'Ring_Of_Wise_King','Ring of the Ancient Wise King',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,0,0,0,'bonus bMaxHP,50; bonus bMaxSP,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2783,'Eyes_Stone_Ring','Eye Stone Ring',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,7,2,136,NULL,70,0,0,'bonus bCritical,2; bonus bMaxSP,25;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2784,'Oh_Holy_Night','Christmas Musicbox',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,1,0,0,'skill "ALL_WEWISH",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2785,'Orleans_Glove_M','Orlean\'s Gloves',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFE,2,2,136,NULL,90,0,0,'bonus bDex,2; bonus bMatkRate,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2786,'Spiritual_Ring_M','Spiritual Ring',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,0,0,0,'bonus bInt,2; bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2787,'Waterdrop_Brooch','Waterdrop Brooch',4,20,NULL,200,NULL,0,NULL,1,0xFFFFFFFE,2,2,136,NULL,75,0,0,'bonus2 bSubEle,Ele_Water,5; bonus bMaxHP,80; bonus bMdef,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2788,'Bradium_Earing','Bradium Earring',4,20,NULL,200,NULL,0,NULL,1,0xFFFFFFFE,2,2,136,NULL,60,0,0,'bonus bMatkRate,2; bonus bInt,1; bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2789,'Bradium_Ring','Bradium Ring',4,20,NULL,200,NULL,0,NULL,1,0xFFFFFFFE,2,2,136,NULL,60,0,0,'bonus2 bAddClass,Class_All,2; bonus bStr,1; bonus bVit,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2790,'Bradium_Brooch','Bradium Brooch',4,20,NULL,200,NULL,0,NULL,1,0xFFFFFFFE,2,2,136,NULL,60,0,0,'bonus bFlee,4; bonus bAspdRate,2; bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2791,'Just_Got_Fish','Fresh Fish',4,20,NULL,500,NULL,0,NULL,1,0xFFFFFFFF,7,2,136,NULL,1,0,0,'bonus bHit,3;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (2792,'Ring_Of_Flame_Lord_I','Ring of Flame Lord',4,0,NULL,0,NULL,0,NULL,0,0x00CFFF80,2,2,136,NULL,0,0,0,'bonus bStr,2; bonus bVit,1; bonus bBaseAtk,15; 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;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (2793,'Ring_Of_Resonance_I','Ring of Resonance',4,0,NULL,0,NULL,2,NULL,0,0x00CFFF80,2,2,136,NULL,0,0,0,'bonus bAgi,2; bonus bVit,1; bonus bMdef,2; 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;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2794,'Magic_Stone_Ring','Magic Stone Ring',4,0,NULL,0,NULL,0,NULL,1,0x00004082,7,2,136,NULL,99,0,0,'bonus bStr,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2795,'Green_Apple_Ring','Green Apple Ring',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,7,2,136,NULL,99,0,0,'bonus bAllStats,6; if(JobLevel <30) { bonus bAllStats,(JobLevel/5); }',NULL,NULL); -REPLACE INTO `item_db` VALUES (2796,'Magical_Stone','Rocks',4,0,NULL,200,NULL,0,NULL,0,0x00810204,7,2,136,NULL,99,0,0,'bonus2 bAddDamageClass,2047,10; bonus2 bAddDefMonster,2048,-10; bonus3 bAddMonsterIdDropItem,6152,2047,70;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2797,'Magical_Stone_','Rocks',4,0,NULL,200,NULL,0,NULL,0,0x00810204,7,2,136,NULL,99,0,0,'bonus2 bAddDamageClass,2049,10; bonus2 bAddDefMonster,2050,-10; bonus3 bAddMonsterIdDropItem,6151,2049,70;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2798,'Will_Of_Exhausted_Angel','Will Of Exhausted Angel',4,0,NULL,200,NULL,0,NULL,0,0x00008100,7,2,136,NULL,99,0,0,'if(strcharinfo(3)=="job3_arch02") { bonus2 bAddDefMonster,1761,50; bonus2 bAddDefMonster,1762,50; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (2799,'Kuirpenring','Kuirpenring',4,0,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,7,2,136,NULL,0,0,0,'bonus bMdef,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2800,'Accelerator','Accelerator',4,100000,NULL,100,NULL,0,NULL,1,0x00000400,7,2,136,NULL,99,0,0,'bonus bAgi,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2801,'Hovering_Booster','Hovering Booster',4,100000,NULL,2000,NULL,0,NULL,1,0x00000400,7,2,136,NULL,99,0,0,'bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2802,'Suicidal_Device','Suicidal Device',4,500000,NULL,1000,NULL,0,NULL,1,0x00000400,7,2,136,NULL,99,0,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2803,'Shape_Shifter','Shape Shifter',4,100000,NULL,500,NULL,0,NULL,1,0x00000400,7,2,136,NULL,99,0,0,'bonus bInt,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2804,'Cooling_Device','Cooling Device',4,100000,NULL,2500,NULL,0,NULL,1,0x00000400,7,2,136,NULL,99,0,0,'bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2805,'Mag_Field_Generator','Magnetic Field Generator',4,100000,NULL,6000,NULL,0,NULL,1,0x00000400,7,2,136,NULL,99,0,0,'bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2806,'Barrier_Builder','Barrier Builder',4,150000,NULL,8000,NULL,3,NULL,1,0x00000400,7,2,136,NULL,99,0,0,'bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2807,'Repair_Kit','Repair Kit',4,200000,NULL,400,NULL,0,NULL,1,0x00000400,7,2,136,NULL,99,0,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (2808,'Camouflage_Generator','Camouflague Generator',4,250000,NULL,1000,NULL,0,NULL,1,0x00000400,7,2,136,NULL,99,0,0,'bonus bAgi,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2809,'High_Quality_Cooler','High Quality Cooler',4,100000,NULL,2500,NULL,0,NULL,1,0x00000400,7,2,136,NULL,99,0,0,'bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2810,'Special_Cooler','Special Cooler',4,100000,NULL,2500,NULL,0,NULL,1,0x00000400,7,2,136,NULL,99,0,0,'bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2819,'Swordman_Manual','Swordsman Manual',4,0,NULL,100,NULL,0,NULL,0,0x00000001,7,2,136,NULL,1,0,0,'bonus bMaxSP,100; skill "SM_BASH",1; skill "SM_PROVOKE",1; skill "SM_MAGNUM",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2820,'Thief_Manual','Thief Manual',4,0,NULL,100,NULL,0,NULL,0,0x00000001,7,2,136,NULL,1,0,0,'bonus bMaxSP,100; skill "TF_DOUBLE",3; bonus bDoubleRate,15; skill "TF_STEAL",1; skill "TF_HIDING",1; skill "TF_POISON",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2821,'Acolyte_Manual','Acolyte Manual',4,0,NULL,100,NULL,0,NULL,0,0x00000001,7,2,136,NULL,1,0,0,'bonus bMaxSP,100; skill "AL_HEAL",1; skill "AL_INCAGI",1; skill "AL_BLESSING",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2822,'Archer_Manual','Archer Manual',4,0,NULL,100,NULL,0,NULL,0,0x00000001,7,2,136,NULL,1,0,0,'bonus bMaxSP,100; skill "AC_OWL",1; skill "AC_CONCENTRATION",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2823,'Merchant_Manual','Merchant Manual',4,0,NULL,100,NULL,0,NULL,0,0x00000001,7,2,136,NULL,1,0,0,'bonus bMaxSP,100; skill "MC_DISCOUNT",1; skill "MC_OVERCHARGE",10; skill "MC_IDENTIFY",1; skill "MC_MAMMONITE",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (2824,'Mage_Manual','Mage Manual',4,0,NULL,100,NULL,0,NULL,0,0x00000001,7,2,136,NULL,1,0,0,'bonus bMaxSP,100; skill "MG_SRECOVERY",1; skill "MG_COLDBOLT",1; skill "MG_FIREWALL",1; skill "MG_FIREBOLT",1;',NULL,NULL); -# Cards -#=================================================================== -REPLACE INTO `item_db` VALUES (4001,'Poring_Card','Poring Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bLuk,2; bonus bFlee2,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4002,'Fabre_Card','Fabre Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bVit,1; bonus bMaxHP,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4003,'Pupa_Card','Pupa Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bMaxHP,700;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4004,'Drops_Card','Drops Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bDex,1; bonus bHit,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4005,'Poring__Card','Santa Poring Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddEle,Ele_Dark,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4006,'Lunatic_Card','Lunatic Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bLuk,1; bonus bCritical,1; bonus bFlee2,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4007,'Pecopeco_Egg_Card','Peco Peco Egg Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddRace,RC_Formless,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4008,'Picky_Card','Picky Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bStr,1; bonus bBaseAtk,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4009,'Chonchon_Card','Chonchon Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bAgi,1; bonus bFlee,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4010,'Wilow_Card','Willow Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bMaxSP,80;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4011,'Picky__Card','Picky Egg Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bVit,1; bonus bMaxHP,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4012,'Thief_Bug_Egg_Card','Thief Bug Egg Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus bMaxHP,400;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4013,'Andre_Egg_Card','Andre Egg Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4014,'Roda_Frog_Card','Roda Frog Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bMaxHP,400; bonus bMaxSP,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4015,'Condor_Card','Condor Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bFlee,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4016,'Thief_Bug_Card','Thief Bug Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4017,'Savage_Babe_Card','Savage Babe Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddEff,Eff_Stun,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4018,'Andre_Larva_Card','Andre Larva Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bInt,1; bonus bMaxSP,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4019,'Hornet_Card','Hornet Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bStr,1; bonus bBaseAtk,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4020,'Farmiliar_Card','Familiar Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddEff,Eff_Blind,500; bonus bBaseAtk,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4021,'Rocker_Card','Rocker Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bDex,1; bonus bBaseAtk,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4022,'Spore_Card','Spore Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bVit,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4023,'Desert_Wolf_Babe_Card','Baby Desert Wolf Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4024,'Plankton_Card','Plankton Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddEff,Eff_Sleep,500; bonus bBaseAtk,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4025,'Skeleton_Card','Skeleton Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bBaseAtk,10; bonus2 bAddEff,Eff_Stun,200;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4026,'Thief_Bug_Female_Card','Female Thief Bug Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bAgi,1; bonus bFlee,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4027,'Kukre_Card','Kukre Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bAgi,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4028,'Tarou_Card','Tarou Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bStr,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4029,'Wolf_Card','Wolf Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bBaseAtk,15; bonus bCritical,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4030,'Mandragora_Card','Mandragora Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddEle,Ele_Wind,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4031,'Pecopeco_Card','Peco Peco Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4032,'Ambernite_Card','Ambernite Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus bDef,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4033,'Poporing_Card','Poporing Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'skill "TF_DETOXIFY",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4034,'Worm_Tail_Card','Wormtail Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bDex,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4035,'Hydra_Card','Hydra Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4036,'Muka_Card','Muka Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bHPrecovRate,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4037,'Snake_Card','Snake Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddEff,Eff_Poison,500; bonus bBaseAtk,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4038,'Zombie_Card','Zombie Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bHPrecovRate,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4039,'Stainer_Card','Stainer Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus2 bResEff,Eff_Silence,2000; bonus bDef,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4040,'Creamy_Card','Creamy Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'skill "AL_TELEPORT",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4041,'Coco_Card','Coco Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus2 bResEff,Eff_Sleep,2000; bonus bDef,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4042,'Steel_Chonchon_Card','Steel Chonchon Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Wind,10; bonus bDef,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4043,'Andre_Card','Andre Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bBaseAtk,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4044,'Smokie_Card','Smokie Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'skill "TF_HIDING",1;',NULL,'sc_end SC_HIDING;'); -REPLACE INTO `item_db` VALUES (4045,'Horn_Card','Horn Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus bLongAtkDef,35;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4046,'Martin_Card','Martin Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus2 bResEff,Eff_Blind,2000; bonus bDef,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4047,'Ghostring_Card','Ghostring Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bDefEle,Ele_Ghost; bonus bHPrecovRate,-25;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4048,'Poison_Spore_Card','Poison Spore Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'skill "TF_POISON",3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4049,'Vadon_Card','Vadon Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddEle,Ele_Fire,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4050,'Thief_Bug_Male_Card','Male Thief Bug Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bAgi,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4051,'Yoyo_Card','Yoyo Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bFlee2,5; bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4052,'Elder_Wilow_Card','Elder Willow Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4053,'Vitata_Card','Vitata Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'skill "AL_HEAL",1; bonus bUseSPrate,25;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4054,'Angeling_Card','Angeling Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bDefEle,Ele_Holy;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4055,'Marina_Card','Marina Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddEff,Eff_Freeze,500; bonus bBaseAtk,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4056,'Dustiness_Card','Dustiness Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Wind,30; bonus bFlee,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4057,'Metaller_Card','Metaller Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddEff,Eff_Silence,500; bonus bBaseAtk,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4058,'Thara_Frog_Card','Thara Frog Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_DemiHuman,30; bonus2 bSubRace,RC_Player_Human,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4059,'Soldier_Andre_Card','Soldier Andre Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_Plant,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4060,'Goblin_Card','Goblin Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddRace,RC_Brute,20; bonus2 bAddRace,RC_Player_Doram,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4061,'Cornutus_Card','Cornutus Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bUnbreakableArmor; bonus bDef,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4062,'Anacondaq_Card','Anacondaq Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddEle,Ele_Poison,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4063,'Caramel_Card','Caramel Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddRace,RC_Insect,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4064,'Zerom_Card','Zerom Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bDex,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4065,'Kaho_Card','Kaho Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddEle,Ele_Earth,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4066,'Orc_Warrior_Card','Orc Warrior Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_Brute,30; bonus2 bSubRace,RC_Player_Doram,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4067,'Megalodon_Card','Megalodon Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bResEff,Eff_Freeze,2000; bonus bDef,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4068,'Scorpion_Card','Scorpion Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddRace,RC_Plant,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4069,'Drainliar_Card','Drainliar Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddEle,Ele_Water,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4070,'Eggyra_Card','Eggyra Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bSPrecovRate,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4071,'Orc_Zombie_Card','Orc Zombie Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Undead,30; bonus bFlee,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4072,'Golem_Card','Golem Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bUnbreakableWeapon; bonus bBaseAtk,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4073,'Pirate_Skel_Card','Pirate Skeleton Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'skill "MC_DISCOUNT",5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4074,'BigFoot_Card','Bigfoot Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_Insect,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4075,'Argos_Card','Argos Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bResEff,Eff_Stone,2000; bonus bDef,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4076,'Magnolia_Card','Magnolia Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddEff,Eff_Curse,500; bonus bBaseAtk,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4077,'Phen_Card','Phen Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bNoCastCancel; bonus bCastrate,25;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4078,'Savage_Card','Savage Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bVit,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4079,'Mantis_Card','Mantis Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bStr,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4080,'Flora_Card','Flora Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddRace,RC_Fish,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4081,'Hode_Card','Hode Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Earth,30; bonus bFlee,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4082,'Desert_Wolf_Card','Desert Wolf Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddSize,Size_Small,15; bonus bBaseAtk,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4083,'Rafflesia_Card','Rafflesia Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_Fish,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4084,'Marine_Sphere_Card','Marine Sphere Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'skill "SM_MAGNUM",3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4085,'Orc_Skeleton_Card','Orc Skeleton Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddEle,Ele_Holy,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4086,'Soldier_Skeleton_Card','Soldier Skeleton Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bCritical,9;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4087,'Giearth_Card','Giearth Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus2 bResEff,Eff_Confusion,10000; bonus2 bSubEle,Ele_Earth,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4088,'Frilldora_Card','Frilldora Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'skill "AS_CLOAKING",1;',NULL,'sc_end SC_CLOAKING;'); -REPLACE INTO `item_db` VALUES (4089,'Sword_Fish_Card','Swordfish Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bDefEle,Ele_Water; bonus bDef,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4090,'Munak_Card','Munak Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bResEff,Eff_Stone,1500; bonus2 bSubEle,Ele_Earth,5; bonus bDef,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4091,'Kobold_Card','Kobold Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bStr,1; bonus bCritical,4;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4092,'Skel_Worker_Card','Skeleton Worker Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddSize,Size_Medium,15; bonus bBaseAtk,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4093,'Obeaune_Card','Obeaune Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'skill "AL_CURE",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4094,'Archer_Skeleton_Card','Archer Skeleton Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bLongAtkRate,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4095,'Marse_Card','Marse Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Water,30; bonus bFlee,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4096,'Zenorc_Card','Zenorc Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddEff,Eff_Poison,400; bonus bBaseAtk,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4097,'Matyr_Card','Matyr Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,10; bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4098,'Dokebi_Card','Dokebi Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bDefEle,Ele_Wind; bonus bDef,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4099,'Pasana_Card','Pasana Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bDefEle,Ele_Fire; bonus bDef,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4100,'Sohee_Card','Sohee Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bMaxSPrate,15; bonus bSPrecovRate,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4101,'Sand_Man_Card','Sandman Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bDefEle,Ele_Earth; bonus bDef,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4102,'Whisper_Card','Whisper Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bFlee,20; bonus2 bSubEle,Ele_Ghost,-50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4103,'Horong_Card','Horong Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'skill "MG_SIGHT",1;',NULL,'sc_end SC_SIGHT;'); -REPLACE INTO `item_db` VALUES (4104,'Requiem_Card','Requiem Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddEff,Eff_Confusion,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4105,'Marc_Card','Marc Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Water,5; bonus2 bResEff,Eff_Freeze,10000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4106,'Mummy_Card','Mummy Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bHit,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4107,'Verit_Card','Verit Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,8; bonus bMaxSPrate,8;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4108,'Myst_Card','Myst Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Poison,30; bonus bFlee,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4109,'Jakk_Card','Jakk Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Fire,30; bonus bFlee,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4110,'Ghoul_Card','Ghoul Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus2 bResEff,Eff_Poison,2000; bonus bDef,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4111,'Strouf_Card','Strouf Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddRace,RC_Demon,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4112,'Marduk_Card','Marduk Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus2 bResEff,Eff_Silence,10000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4113,'Marionette_Card','Marionette Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Ghost,30; bonus bFlee,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4114,'Argiope_Card','Argiope Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bDefEle,Ele_Poison; bonus bDef,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4115,'Hunter_Fly_Card','Hunter Fly Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bHPDrainRate,30,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4116,'Isis_Card','Isis Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Dark,30; bonus bFlee,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4117,'Side_Winder_Card','Sidewinder Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'skill "TF_DOUBLE",1; bonus bDoubleRate,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4118,'Petit_Card','Earth Petite Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddRace,RC_Dragon,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4119,'Bathory_Card','Bathory Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bDefEle,Ele_Dark;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4120,'Petit__Card','Sky Petite Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_Dragon,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4121,'Phreeoni_Card','Phreeoni Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bHit,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4122,'Deviruchi_Card','Deviruchi Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bStr,1; bonus2 bResEff,Eff_Blind,10000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4123,'Eddga_Card','Eddga Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,-25; bonus bNoWalkDelay;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4124,'Medusa_Card','Medusa Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_Demon,15; bonus2 bResEff,Eff_Stone,10000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4125,'Deviace_Card','Deviace Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddRace,RC_DemiHuman,7; bonus2 bAddRace,RC_Player_Human,7; bonus2 bAddRace,RC_Brute,7; bonus2 bAddRace,RC_Player_Doram,7; bonus2 bAddRace,RC_Plant,7; bonus2 bAddRace,RC_Insect,7;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4126,'Minorous_Card','Minorous Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddSize,Size_Large,15; bonus bBaseAtk,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4127,'Nightmare_Card','Nightmare Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus2 bResEff,Eff_Sleep,10000; bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4128,'Golden_Bug_Card','Golden Thief Bug Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus bNoMagicDamage,100; bonus bUseSPrate,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4129,'Baphomet__Card','Bapho Jr. Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bAgi,3; bonus bCritical,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4130,'Scorpion_King_Card','Scorpion King Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddEle,Ele_Undead,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4131,'Moonlight_Flower_Card','Moonlight Flower Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bSpeedRate,25;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4132,'Mistress_Card','Mistress Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bNoGemStone; bonus bUseSPrate,25;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4133,'Daydric_Card','Raydric Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Neutral,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4134,'Dracula_Card','Dracula Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bSPDrainRate,100,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4135,'Orc_Load_Card','Orc Lord Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bShortWeaponDamageReturn,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4136,'Khalitzburg_Card','Khalitzburg Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_Demon,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4137,'Drake_Card','Drake Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bNoSizeFix;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4138,'Anubis_Card','Anubis Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_Angel,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4139,'Joker_Card','Joker Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'skill "TF_STEAL",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4140,'Knight_Of_Abyss_Card','Abysmal Knight Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddClass,Class_Boss,25;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4141,'Evil_Druid_Card','Evil Druid Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bDefEle,Ele_Undead; bonus bInt,1; bonus bDef,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4142,'Doppelganger_Card','Doppelganger Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bAspdRate,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4143,'Orc_Hero_Card','Orc Hero Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bVit,3; bonus2 bResEff,Eff_Stun,10000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4144,'Osiris_Card','Osiris Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bRestartFullRecover;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4145,'Berzebub_Card','Berzebub Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bCastrate,-30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4146,'Maya_Card','Maya Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus bMagicDamageReturn,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4147,'Baphomet_Card','Baphomet Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bHit,-10; bonus bSplashRange,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4148,'Pharaoh_Card','Pharaoh Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bUseSPrate,-30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4149,'Gargoyle_Card','Gargoyle Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus3 bAddMonsterDropItem,12028,RC_Insect,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4150,'Goat_Card','Goat Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'if(getrefine()<6) { bonus bDef,2; bonus bMdef,5; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (4151,'Gajomart_Card','Gajomart Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_Plant,-20; bonus2 bExpAddRace,RC_Plant,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4152,'Galapago_Card','Galapago Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus2 bAddItemGroupHealRate,IG_Juice,50; bonus3 bAddMonsterDropItem,531,RC_Insect,300; bonus3 bAddMonsterDropItem,532,RC_Insect,300; bonus3 bAddMonsterDropItem,534,RC_Insect,300;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4153,'Crab_Card','Crab Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bBaseAtk,5; bonus2 bAddDamageClass,1266,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4154,'Rice_Cake_Boy_Card','Dumpling Child Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus2 bAddItemGroupHealRate,IG_Candy,50; bonus3 bAddMonsterDropItem,529,RC_DemiHuman,300; bonus3 bAddMonsterDropItem,530,RC_DemiHuman,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4155,'Goblin_Leader_Card','Goblin Leader Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddRace2,RC2_Goblin,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4156,'Steam_Goblin_Card','Goblin Steamrider Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Formless,7;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4157,'Goblin_Archer_Card','Goblin Archer Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Undead,7;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4158,'Flying_Deleter_Card','Sky Deleter Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bHPrecovRate,-100; bonus bHPGainValue,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4159,'Nine_Tail_Card','Nine Tail Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bAgi,2; if(getrefine()>8) bonus bFlee,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4160,'Antique_Firelock_Card','Firelock Soldier Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bStr,2; if(getrefine()>8) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (4161,'Grand_Peco_Card','Grand Peco Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus3 bAutoSpellWhenHit,"PR_GLORIA",1,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4162,'Grizzly_Card','Grizzly Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddEffWhenHit,Eff_Blind,300;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4163,'Gryphon_Card','Gryphon Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bFlee,2; bonus bCritical,7; if(BaseClass==Job_Swordman) bonus3 bAutoSpell,"KN_BOWLINGBASH",5,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4164,'Gullinbursti_Card','Gullinbursti Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_Fish,-20; bonus2 bExpAddRace,RC_Fish,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4165,'Gig_Card','Gig Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bSPGainRace,RC_Insect,5;',NULL,'heal 0,-5;'); -REPLACE INTO `item_db` VALUES (4166,'Nightmare_Terror_Card','Nightmare Terror Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddEffWhenHit,Eff_Curse,300;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4167,'Neraid_Card','Nereid Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bSPGainRace,RC_Brute,5; bonus2 bSPGainRace,RC_Player_Doram,5;',NULL,'heal 0,-5;'); -REPLACE INTO `item_db` VALUES (4168,'Dark_Lord_Card','Dark Lord Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus3 bAutoSpellWhenHit,"WZ_METEOR",5,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4169,'Dark_Illusion_Card','Dark Illusion Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,-10; bonus bMaxSPrate,-10; bonus bCastrate,-10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4170,'Dark_Frame_Card','Dark Frame Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddEffWhenHit,Eff_Stone,600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4171,'Dark_Priest_Card','Dark Priest Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bSPVanishRate,50,10; if(BaseJob==Job_Sage) bonus bSPDrainValue,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4172,'The_Paper_Card','The Paper Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,20; bonus bSPDrainValue,-1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4173,'Demon_Pungus_Card','Demon Pungus Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddEffWhenHit,Eff_Sleep,600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4174,'Deviling_Card','Deviling Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'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;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4175,'Poison_Toad_Card','Poisonous Toad Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus3 bAutoSpell,"TF_POISON",1,20; bonus2 bAddSkillBlow,52,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4176,'Dullahan_Card','Dullahan Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Dragon,7;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4177,'Dryad_Card','Dryad Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus3 bAddMonsterDropItem,993,RC_Plant,100; bonus2 bSubEle,Ele_Earth,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4178,'Dragon_Tail_Card','Dragon Tail Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bAgi,1; bonus bFlee,10; bonus2 bSkillAtk,"AC_DOUBLE",5; bonus2 bSkillAtk,"AC_SHOWER",5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4179,'Dragon_Fly_Card','Dragon Fly Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4180,'Driller_Card','Driller Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bSPGainRace,RC_Dragon,5;',NULL,'heal 0,-5;'); -REPLACE INTO `item_db` VALUES (4181,'Disguise_Card','Disguise Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddEffWhenHit,Eff_Silence,300+600*(readparam(bVit)>=77);',NULL,NULL); -REPLACE INTO `item_db` VALUES (4182,'Diabolic_Card','Diabolic Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bSPGainRace,RC_Demon,5;',NULL,'heal 0,-5;'); -REPLACE INTO `item_db` VALUES (4183,'Vagabond_Wolf_Card','Vagabond Wolf Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bStr,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4184,'Lava_Golem_Card','Lava Golem Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddRace2,RC2_Golem,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4185,'Rideword_Card','Rideword Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bInt,1; if(BaseClass==Job_Acolyte) { bonus bInt,1; bonus bMdef,1; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (4186,'Raggler_Card','Raggler Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bStr,1; bonus bVit,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4187,'Raydric_Archer_Card','Raydric Archer Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus3 bAddMonsterDropItem,12030,RC_Demon,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4188,'Leib_Olmai_Card','Leib Olmai Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Fire,10; bonus3 bAddMonsterDropItem,990,RC_Brute,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4189,'Wraith_Dead_Card','Wraith Dead Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddEffWhenHit,Eff_Curse,600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4190,'Wraith_Card','Wraith Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus3 bAddMonsterDropItem,12027,RC_Undead,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4191,'Loli_Ruri_Card','Loli Ruri Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus3 bAutoSpellWhenHit,"AL_HEAL",3,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4192,'Rotar_Zairo_Card','Rotar Zairo Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Fish,7;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4193,'Lude_Card','Lude Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'if(BaseJob==Job_Novice||BaseJob==Job_SuperNovice) bonus3 bAutoSpellWhenHit,"SM_ENDURE",1,200;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4194,'Rybio_Card','Rybio Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddEffWhenHit,Eff_Stun,300+600*(readparam(bDex)>=77);',NULL,NULL); -REPLACE INTO `item_db` VALUES (4195,'Leaf_Cat_Card','Leaf Cat Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Water,10; bonus3 bAddMonsterDropItem,991,RC_Fish,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4196,'Marin_Card','Marin Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus2 bAddMonsterDropItem,909,2000; bonus2 bAddMonsterDropItem,7126,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4197,'Mastering_Card','Mastering Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4198,'Maya_Puple_Card','Maya Purple Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bIntravision;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4199,'Merman_Card','Merman Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bHPrecovRate,10; bonus bSPrecovRate,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4200,'Megalith_Card','Megalith Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'if(getrefine()<6) bonus bMdef,7;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4201,'Majoruros_Card','Majoruros Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddEffWhenHit,Eff_Stun,600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4202,'Civil_Servant_Card','Mao Guai Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddEle,Ele_Ghost,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4203,'Mutant_Dragon_Card','Mutant Dragonoid Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bBaseAtk,15; bonus3 bAutoSpell,"MG_FIREBALL",3+2*(getskilllv("MG_FIREBALL")==10),50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4204,'Mini_Demon_Card','Mini Demon Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_Brute,-20; bonus2 bSubRace,RC_Player_Doram,-20; bonus2 bExpAddRace,RC_Brute,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4205,'Mimic_Card','Mimic Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus2 bAddMonsterDropItem,603,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4206,'Mystcase_Card','Myst Case Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus2 bAddMonsterDropItem,644,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4207,'Mysteltainn_Card','Mysteltainn Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubSize,Size_Small,25; bonus bDef,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4208,'Miyabi_Ningyo_Card','Miyabi Doll Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bMaxSPrate,10; bonus2 bSkillAtk,"MG_FROSTDIVER",5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4209,'Violy_Card','Violy Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus3 bAutoSpell,"BA_FROSTJOKER",1+4*(getskilllv("BA_FROSTJOKER")==5),20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4210,'Wander_Man_Card','Wanderer Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'if(!isequipped(4172,4257,4230,4272)) bonus3 bAutoSpell,"RG_INTIMIDATE",1,20; if(BaseClass==Job_Thief) bonus bFlee,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4211,'Vocal_Card','Vocal Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4212,'Bon_Gun_Card','Bongun Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus3 bAutoSpell,"SM_BASH",1,20; bonus2 bAddSkillBlow,"SM_BASH",5; bonus2 bAddDefMonster,1026,-100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4213,'Brilight_Card','Brilight Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddEffWhenHit,Eff_Silence,600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4214,'Bloody_Murderer_Card','Bloody Murderer Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Insect,7;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4215,'Blazzer_Card','Blazer Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus2 bAddMonsterDropItemGroup,IG_Food,600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4216,'Sasquatch_Card','Sasquatch Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddEffWhenHit,Eff_Freeze,600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4217,'Live_Peach_Tree_Card','Enchanted Peach Tree Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus3 bAutoSpell,"AL_HEAL",1+9*(getskilllv("AL_HEAL")==10),20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4218,'Succubus_Card','Succubus Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bVit,-3; bonus bHPrecovRate,-20; bonus bMaxHP,1000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4219,'Sageworm_Card','Sage Worm Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus2 bAddMonsterDropItem,715,30; bonus2 bAddMonsterDropItem,716,30; bonus2 bAddMonsterDropItem,717,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4220,'Solider_Card','Solider Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bDef,2; bonus bMdef,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4221,'Skeleton_General_Card','Skeleton General Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_Insect,-20; bonus2 bExpAddRace,RC_Insect,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4222,'Skel_Prisoner_Card','Skeleton Prisoner Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddEffWhenHit,Eff_Sleep,300;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4223,'Stalactic_Golem_Card','Stalactic Golem Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bDef,1; bonus2 bResEff,Eff_Stun,2000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4224,'Stem_Worm_Card','Stem Worm Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus3 bAddMonsterDropItem,12032,RC_Brute,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4225,'Stone_Shooter_Card','Stone Shooter Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bBaseAtk,10; bonus bHit,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4226,'Sting_Card','Sting Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus bDef,2; if(getrefine()>8) bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4227,'Spring_Rabbit_Card','Spring Rabbit Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus2 bAddItemGroupHealRate,IG_Meat,50; bonus3 bAddMonsterDropItem,517,RC_Brute,200; bonus3 bAddMonsterDropItem,528,RC_Brute,200;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4228,'Sleeper_Card','Sleeper Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus3 bAddMonsterDropItem,12031,RC_Fish,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4229,'C_Tower_Manager_Card','Tower Keeper Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bInt,1; bonus bCastrate,-5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4230,'Shinobi_Card','Shinobi Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bAgi,1; bonus3 bAutoSpellWhenHit,"AS_CLOAKING",5,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4231,'Increase_Soil_Card','Mi Gao Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubRace2,RC2_Guardian,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4232,'Wild_Ginseng_Card','Hermit Plant Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus2 bAddItemGroupHealRate,IG_Herb,50; bonus3 bAddMonsterDropItem,507,RC_Plant,300; bonus3 bAddMonsterDropItem,508,RC_Plant,200; bonus3 bAddMonsterDropItem,509,RC_Plant,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4233,'Baby_Leopard_Card','Baby Leopard Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bLuk,3; if(BaseClass==Job_Merchant) bonus bUnbreakableArmor;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4234,'Anolian_Card','Anolian Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus3 bAutoSpellWhenHit,"AC_CONCENTRATION",1+9*(getskilllv("AC_CONCENTRATION")==10),30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4235,'Cookie_XMAS_Card','Christmas Cookie Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_Angel,-20; bonus2 bExpAddRace,RC_Angel,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4236,'Amon_Ra_Card','Amon Ra Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bAllStats,1; bonus3 bAutoSpellWhenHit,"PR_KYRIE",10,(30+70*(readparam(bInt)>=99));',NULL,NULL); -REPLACE INTO `item_db` VALUES (4237,'Owl_Duke_Card','Owl Duke Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus3 bAutoSpell,"PR_IMPOSITIO",3,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4238,'Owl_Baron_Card','Owl Baron Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus3 bAutoSpell,"PR_LEXAETERNA",1,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4239,'Iron_Fist_Card','Iron Fist Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_Formless,-20; bonus2 bExpAddRace,RC_Formless,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4240,'Arclouse_Card','Arclouze Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'if(getrefine()<6) { bonus bDef,2; bonus bMdef,3; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (4241,'Archangeling_Card','Arc Angeling Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bMaxHP,300; if(readparam(bLuk)>=77) { bonus bHPrecovRate,100; bonus bSPrecovRate,100; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (4242,'Apocalips_Card','Apocalipse Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bVit,2; if(getrefine()>8) bonus bMaxHP,800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4243,'Antonio_Card','Antonio Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus3 bAutoSpellWhenHit,"AL_TELEPORT",1,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4244,'Alarm_Card','Alarm Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus3 bAutoSpellWhenHit,"MG_SIGHT",1,200; bonus bMaxHP,300; bonus bVit,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4245,'Am_Mut_Card','Am Mut Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_DemiHuman,-20; bonus2 bSubRace,RC_Player_Human,-20; bonus2 bExpAddRace,RC_DemiHuman,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4246,'Assulter_Card','Assaulter Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_DemiHuman,7; bonus2 bCriticalAddRace,RC_Player_Human,7;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4247,'Aster_Card','Aster Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bBaseAtk,5; bonus2 bAddDamageClass,1074,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4248,'Ancient_Mummy_Card','Ancient Mummy Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus3 bAutoSpellWhenHit,"AL_CRUCIS",5,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4249,'Ancient_Worm_Card','Ancient Worm Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_Demon,-20; bonus2 bExpAddRace,RC_Demon,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4250,'Executioner_Card','Executioner Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubSize,Size_Large,25; bonus bDef,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4251,'Elder_Card','Elder Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddRace2,RC2_Guardian,40;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4252,'Alligator_Card','Alligator Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bLongAtkDef,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4253,'Alice_Card','Alice Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubClass,Class_Boss,40; bonus2 bSubClass,Class_Normal,-40;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4254,'Tirfing_Card','Ogretooth Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubSize,Size_Medium,25; bonus bDef,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4255,'Orc_Lady_Card','Orc Lady Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddRace2,3,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4256,'Orc_Archer_Card','Orc Archer Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus3 bAddMonsterDropItem,12034,RC_DemiHuman,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4257,'Wild_Rose_Card','Wild Rose Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bAgi,1; if(BaseClass==Job_Thief) bonus bFlee2,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4258,'Wicked_Nymph_Card','Evil Nymph Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bInt,1; bonus bMaxSP,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4259,'Wooden_Golem_Card','Wooden Golem Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bDef,1; bonus bHPrecovRate,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4260,'Wootan_Shooter_Card','Wootan Shooter Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bDef,1; bonus2 bResEff,Eff_Confusion,2000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4261,'Wootan_Fighter_Card','Wootan Fighter Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bDef,1; bonus2 bResEff,Eff_Bleeding,2000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4262,'Evil_Cloud_Hermit_Card','Cloud Hermit Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus3 bAddMonsterDropItem,12029,RC_Plant,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4263,'Incant_Samurai_Card','Samurai Spector Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bIgnoreDefClass,Class_Normal; bonus bHPrecovRate,-100; bonus2 bHPLossRate,666,10000;',NULL,'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; }'); -REPLACE INTO `item_db` VALUES (4264,'Wind_Ghost_Card','Wind Ghost Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus3 bAutoSpell,"WZ_JUPITEL",3+7*(getskilllv("WZ_JUPITEL")==10),20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4265,'Li_Me_Mang_Ryang_Card','Jing Guai Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus3 bAddMonsterDropItem,12033,RC_Angel,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4266,'Eclipse_Card','Eclipse Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bVit,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4267,'Explosion_Card','Explosion Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_Dragon,-20; bonus2 bExpAddRace,RC_Dragon,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4268,'Injustice_Card','Injustice Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus3 bAutoSpell,"AS_SONICBLOW",1,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4269,'Incubus_Card','Incubus Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bInt,-3; bonus bSPrecovRate,-20; bonus bMaxSP,150;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4270,'Giant_Spider_Card','Giant Spider Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddEffWhenHit,Eff_Poison,600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4271,'Giant_Honet_Card','Giant Hornet Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Wind,10; bonus3 bAddMonsterDropItem,992,RC_Insect,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4272,'Dancing_Dragon_Card','Zhu Po Long Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bAgi,1; bonus bCritical,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4273,'Shellfish_Card','Shell Fish Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bBaseAtk,5; bonus2 bAddDamageClass,1073,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4274,'Zombie_Master_Card','Zombie Master Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bSPGainRace,RC_Undead,5;',NULL,'heal 0,-5;'); -REPLACE INTO `item_db` VALUES (4275,'Zombie_Prisoner_Card','Zombie Prisoner Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_Undead,-20; bonus2 bExpAddRace,RC_Undead,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4276,'Lord_Of_Death_Card','Lord of The Dead Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'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;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4277,'Zherlthsh_Card','Zealotus Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus bLuk,2; bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10; bonus2 bSkillAtk,"DC_THROWARROW",10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4278,'Gibbet_Card','Gibbet Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'if(getrefine()<6) bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4279,'Deleter_Card','Earth Deleter Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bSPrecovRate,-100; bonus bSPGainValue,10;',NULL,'heal 0,-100;'); -REPLACE INTO `item_db` VALUES (4280,'Geographer_Card','Geographer Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus3 bAutoSpellWhenHit,"AL_BLESSING",2+8*(getskilllv("AL_BLESSING")==10),30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4281,'Zipper_Bear_Card','Zipper Bear Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bBaseAtk,30; bonus bSPDrainValue,-1; if(BaseClass==Job_Merchant) bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4282,'Tengu_Card','Tengu Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus2 bAddMonsterDropItemGroup,IG_Recovery,600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4283,'Greatest_General_Card','Greatest General Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus3 bAutoSpell,"MO_CALLSPIRITS",5,2+18*(BaseClass==Job_Acolyte);',NULL,NULL); -REPLACE INTO `item_db` VALUES (4284,'Chepet_Card','Chepet Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus4 bAutoSpell,"AL_HEAL",5,50,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4285,'Choco_Card','Choco Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bFlee2,5; bonus bFlee,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4286,'Karakasa_Card','Karakasa Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddEffWhenHit,Eff_Confusion,300+600*(readparam(bStr)>=77);',NULL,NULL); -REPLACE INTO `item_db` VALUES (4287,'Kapha_Card','Kapha Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'if(getrefine()<6) bonus bMdef,8;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4288,'Carat_Card','Carat Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bInt,2; if(getrefine()>8) bonus bMaxSP,150;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4289,'Caterpillar_Card','Caterpillar Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bSPGainRace,RC_Plant,5;',NULL,'heal 0,-5;'); -REPLACE INTO `item_db` VALUES (4290,'Cat_O_Nine_Tail_Card','Cat O\' Nine Tails Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bMdef,3; bonus bMagicDamageReturn,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4291,'Kobold_Leader_Card','Kobold Leader Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddRace2,RC2_Kobold,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4292,'Kobold_Archer_Card','Kobold Archer Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Plant,7;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4293,'Cookie_Card','Cookie Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bLuk,2; bonus2 bSkillAtk,"AL_HOLYLIGHT",10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4294,'Quve_Card','Quve Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'if(BaseJob==Job_Novice||BaseJob==Job_SuperNovice) bonus3 bAutoSpellWhenHit,"AL_INCAGI",1,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4295,'Kraben_Card','Kraben Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddEffWhenHit,Eff_Blind,600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4296,'Cramp_Card','Cramp Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus2 bGetZenyNum,500,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4297,'Cruiser_Card','Cruiser Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Brute,7; bonus2 bCriticalAddRace,RC_Player_Doram,7;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4298,'Cremy_Fear_Card','Creamy Fear Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddEffWhenHit,Eff_Confusion,600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4299,'Clock_Card','Clock Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus3 bAutoSpellWhenHit,"CR_AUTOGUARD",3+7*(getskilllv("CR_AUTOGUARD")==10),30;',NULL,'sc_end SC_AUTOGUARD;'); -REPLACE INTO `item_db` VALUES (4300,'Chimera_Card','Chimera Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddEffWhenHit,Eff_Poison,300+600*(BaseJob==Job_Assassin);',NULL,NULL); -REPLACE INTO `item_db` VALUES (4301,'Killer_Mantis_Card','Killer Mantis Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddEffWhenHit,Eff_Bleeding,600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4302,'Tao_Gunka_Card','Tao Gunka Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,100; bonus bDef,-50; bonus bMdef,-50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4303,'Whisper_Boss_Card','Giant Whisper Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bFlee,10; if(readparam(bStr)>=80) bonus bBaseAtk,20; if(readparam(bVit)>=80) bonus bMaxHPrate,3; if(readparam(bLuk)>=80) bonus bCritical,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4304,'Tamruan_Card','Tamruan Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus bDef,2; bonus2 bSkillAtk,"CR_SHIELDCHARGE",10; bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4305,'Turtle_General_Card','Turtle General Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddClass,Class_All,20; bonus3 bAutoSpell,"SM_MAGNUM",10,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4306,'Toad_Card','Toad Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bFlee2,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4307,'Kind_Of_Beetle_Card','Beetle King Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bSPGainRace,RC_Fish,5;',NULL,'heal 0,-5;'); -REPLACE INTO `item_db` VALUES (4308,'Tri_Joint_Card','Tri Joint Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bSPGainRace,RC_Formless,5;',NULL,'heal 0,-5;'); -REPLACE INTO `item_db` VALUES (4309,'Parasite_Card','Parasite Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus bDef,1; bonus2 bSubRace,RC_Formless,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4310,'Panzer_Goblin_Card','Panzer Goblin Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Demon,7;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4311,'Permeter_Card','Permeter Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Dark,15; bonus2 bSubEle,Ele_Undead,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4312,'Fur_Seal_Card','Seal Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bFlee,3; bonus bHit,10; if(BaseClass==Job_Acolyte) { bonus2 bCriticalAddRace,RC_Undead,9; bonus2 bCriticalAddRace,RC_Demon,9; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (4313,'Punk_Card','Punk Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus4 bAutoSpellWhenHit,"WZ_QUAGMIRE",1+4*(getskilllv("WZ_QUAGMIRE")==5),50,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4314,'Penomena_Card','Penomena Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_Formless,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4315,'Pest_Card','Pest Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddEffWhenHit,Eff_Stone,300+600*(readparam(bInt)>=77);',NULL,NULL); -REPLACE INTO `item_db` VALUES (4316,'Fake_Angel_Card','False Angel Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bSPGainRace,RC_Angel,5;',NULL,'heal 0,-5;'); -REPLACE INTO `item_db` VALUES (4317,'Mobster_Card','Mobster Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,15; if(BaseClass==Job_Thief) bonus bCritical,4;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4318,'Knight_Windstorm_Card','Stormy Knight Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus3 bAutoSpell,"WZ_STORMGUST",2,20; bonus2 bAddEff,Eff_Freeze,2000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4319,'Freezer_Card','Freezer Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bMaxHP,300; if(getrefine()>=9) bonus2 bSkillAtk,"SM_BASH",10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4320,'Bloody_Knight_Card','Bloody Knight Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus3 bAutoSpell,"WZ_METEOR",1,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4321,'Hylozoist_Card','Hylozoist Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bClassChange,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4322,'High_Orc_Card','High Orc Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus bDef,1; bonus bShortWeaponDamageReturn,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4323,'Garm_Baby_Card','Hatii Babe Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus3 bAutoSpell,"MG_FROSTDIVER",3,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4324,'Garm_Card','Hatii Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddEffWhenHit,Eff_Freeze,5000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4325,'Harpy_Card','Harpy Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Neutral,15; bonus2 bSkillAtk,"MG_NAPALMBEAT",5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4326,'See_Otter_Card','Sea-Otter Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus2 bAddItemGroupHealRate,IG_Fish,50; bonus3 bAddMonsterDropItem,551,RC_Fish,300; bonus3 bAddMonsterDropItem,544,RC_Fish,300;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4327,'Blood_Butterfly_Card','Bloody Butterfly Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bCastrate,30; bonus bNoCastCancel; bonus2 bSkillAtk,"MG_FIREWALL",5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4328,'Hyegun_Card','Yao Jun Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bFlee,15; bonus bCritical,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4329,'Phendark_Card','Phendark Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bSPGainRace,RC_DemiHuman,5; bonus2 bSPGainRace,RC_Player_Human,5;',NULL,'heal 0,-5;'); -REPLACE INTO `item_db` VALUES (4330,'Dark_Snake_Lord_Card','Evil Snake Lord Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bInt,3; bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Curse,10000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4331,'Heater_Card','Heater Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bCritical,3; if(BaseClass==Job_Swordman) bonus bFlee2,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4332,'Waste_Stove_Card','Waste Stove Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bBaseAtk,5; bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4333,'Venomous_Card','Venomous Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus3 bAddEffWhenHit,Eff_Poison,3000,ATF_TARGET|ATF_SELF;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4334,'Noxious_Card','Noxious Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bLongAtkDef,10; bonus2 bSubEle,Ele_Neutral,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4335,'Pitman_Card','Pitman Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bSkillAtk,"WZ_EARTHSPIKE",5; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",5;',NULL,'heal 0,-50;'); -REPLACE INTO `item_db` VALUES (4336,'Ungoliant_Card','Ungoliant Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bHPrecovRate,10; bonus2 bResEff,Eff_Bleeding,10000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4337,'Porcellio_Card','Porcellio Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bBaseAtk,25; bonus bDef,-5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4338,'Obsidian_Card','Obsidian Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bVit,readparam(bDex)/18;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4339,'Mineral_Card','Mineral Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bBaseAtk,-25; bonus bDef,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4340,'Teddy_Bear_Card','Teddy Bear Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_Undead,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4341,'Metaling_Card','Metaling Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus3 bAutoSpell,"RG_STRIPWEAPON",1,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4342,'Rsx_0806_Card','RSX-0806 Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bVit,3; bonus bUnbreakableArmor; bonus bNoKnockback;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4343,'Mole_Card','Holden Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bLuk,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4344,'Anopheles_Card','Anopheles Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus3 bAddMonsterDropItem,12058,RC_Insect,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4345,'Hill_Wind_Card','Hill Wind Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bSkillAtk,"MG_THUNDERSTORM",5; bonus2 bSkillAtk,"WZ_JUPITEL",5; bonus2 bSkillAtk,"WZ_VERMILION",5;',NULL,'heal 0,-50;'); -REPLACE INTO `item_db` VALUES (4346,'Ygnizem_Card','Egnigem Cenia Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bStr,readparam(bInt)/18;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4347,'Armaia_Card','Armeyer Dinze Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus3 bAddMonsterDropItem,12053,RC_Fish,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4348,'Whikebain_Card','Wickebine Tres Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus3 bAutoSpell,"RG_STRIPARMOR",1,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4349,'Erend_Card','Errende Ebecee Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus4 bAutoSpellWhenHit,"AL_PNEUMA",1,50,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4350,'Rawrel_Card','Laurell Weinder Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bSkillAtk,"WZ_FROSTNOVA",3; bonus2 bSkillAtk,"WZ_STORMGUST",3;',NULL,'heal 0,-50;'); -REPLACE INTO `item_db` VALUES (4351,'Kavac_Card','Kavach Icarus Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'if(getrefine()<=4) { bonus bFlee,20; bonus bFlee2,1; } else { bonus bFlee,10; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (4352,'B_Ygnizem_Card','General Egnigem Cenia Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bHPRegenRate,50,10000; bonus2 bSPRegenRate,10,10000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4353,'Removal_Card','Remover Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bMaxHP,800-40*getrefine(); bonus bHPrecovRate,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4354,'Gemini_Card','Gemini-S58 Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'if(readparam(bAgi)>=90) { bonus2 bResEff,Eff_Silence,3000; bonus2 bResEff,Eff_Stun,3000; } if(readparam(bVit)>=80) { bonus2 bResEff,Eff_Stone,5000; bonus2 bResEff,Eff_Sleep,5000; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (4355,'Gremlin_Card','Gremlin Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus3 bAddMonsterDropItem,12043,RC_Brute,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4356,'Beholder_Card','Beholder Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'skill "SA_CASTCANCEL",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4357,'B_Seyren_Card','Lord Knight Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'skill "LK_BERSERK",1; bonus bMaxHPrate,-50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4358,'Seyren_Card','Seyren Windsor Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bStr,getrefine()-6;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4359,'B_Eremes_Card','Assassin Cross Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'skill "AS_CLOAKING",3;',NULL,'sc_end SC_CLOAKING;'); -REPLACE INTO `item_db` VALUES (4360,'Eremes_Card','Eremes Guile Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bCriticalAddRace,RC_DemiHuman,10; bonus2 bCriticalAddRace,RC_Player_Human,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4361,'B_Harword_Card','MasterSmith Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bBreakWeaponRate,1000; bonus bBreakArmorRate,700;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4362,'Harword_Card','Howard Alt-Eisen Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bAspdRate,-5; bonus bHit,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4363,'B_Magaleta_Card','High Priest Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus5 bAutoSpellWhenHit,"HP_ASSUMPTIO",1,50,BF_WEAPON|BF_MAGIC,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4364,'Magaleta_Card','Margaretha Sorin Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bInt,1; bonus5 bAutoSpellWhenHit,"PR_LEXDIVINA",5,150,BF_MAGIC,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4365,'B_Katrinn_Card','High Wizard Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus2 bIgnoreMdefClassRate,Class_Normal,100; bonus bCastrate,100; bonus bSPrecovRate,-100;',NULL,'heal 0,-2000;'); -REPLACE INTO `item_db` VALUES (4366,'Katrinn_Card','Kathryne Keyron Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bCastrate,getrefine()*-1; if(getrefine()>=9) { bonus bMatkRate,2; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (4367,'B_Shecil_Card','Sniper Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bHPDrainRate,50,20; bonus bHPrecovRate,-10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4368,'Shecil_Card','Cecil Damon Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bAspdRate,5; bonus bHit,-30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4369,'Venatu_Card','Venatu Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bLuk,readparam(bAgi)/18;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4370,'Dimik_Card','Dimik Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bVit,getrefine()-5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4371,'Archdam_Card','Archdam Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bBaseAtk,10; bonus bCastrate,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4372,'Bacsojin_Card','White Lady Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bHealPower,30; bonus bUseSPrate,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4373,'Chung_E_Card','Green Maiden Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bLuk,getrefine()-5; bonus bCritical,getrefine();',NULL,NULL); -REPLACE INTO `item_db` VALUES (4374,'Apocalips_H_Card','Vesper Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bDex,2; bonus2 bIgnoreMdefClassRate,Class_Boss,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4375,'Orc_Baby_Card','Orc Baby Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'if(getrefine()>=9) { bonus2 bSubEle,Ele_Neutral,15; bonus bFlee,15; } else { bonus2 bSubEle,Ele_Neutral,10; bonus bFlee,10; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (4376,'Lady_Tanee_Card','Lady Tanee Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,-40; bonus bMaxSPrate,50; bonus2 bAddMonsterDropItem,513,200; bonus2 bAddItemHealRate,513,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4377,'Green_Iguana_Card','Grove Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus3 bAddMonsterDropItem,12063,RC_Formless,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4378,'Acidus_Card','Gold Acidus Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'if(getrefine()<=4) { bonus bMaxHPrate,8; bonus bMaxSPrate,8; bonus bHPrecovRate,5; bonus bSPrecovRate,5; } else { bonus bMaxHPrate,4; bonus bMaxSPrate,4; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (4379,'Acidus__Card','Blue Acidus Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'if(getrefine()<=4) { bonus bSPrecovRate,5; bonus bMaxSP,80; } else { bonus bMaxSP,40; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (4380,'Ferus_Card','Red Ferus Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bSkillAtk,"WZ_FIREPILLAR",5; bonus2 bSkillAtk,"WZ_METEOR",5;',NULL,'heal 0,-50;'); -REPLACE INTO `item_db` VALUES (4381,'Ferus__Card','Green Ferus Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bVit,1; bonus bMaxHPrate,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4382,'Novus__Card','Yellow Novus Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bMaxHP,500; bonus bHPrecovRate,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4383,'Novus_Card','Red Novus Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus3 bAddEffWhenHit,Eff_Confusion,3000,ATF_TARGET|ATF_SELF;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4384,'Hydro_Card','Hydrolancer Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus3 bAutoSpell,"SA_SPELLBREAKER",1,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4385,'Dragon_Egg_Card','Dragon Egg Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus3 bAddMonsterDropItem,12048,RC_Dragon,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4386,'Detale_Card','Detardeurus Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bMdef,-20; bonus2 bResEff,Eff_Freeze,10000; bonus5 bAutoSpellWhenHit,"SA_LANDPROTECTOR",1,70,BF_MAGIC,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4387,'Ancient_Mimic_Card','Ancient Mimic Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bAgi,readparam(bLuk)/18;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4388,'Deathword_Card','Death Word Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bSkillAtk,"MG_NAPALMBEAT",5; bonus2 bSkillAtk,"MG_SOULSTRIKE",5; bonus2 bSkillAtk,"HW_NAPALMVULCAN",5;',NULL,'heal 0,-50;'); -REPLACE INTO `item_db` VALUES (4389,'Plasma_Card','Plasma Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus2 bAddMonsterDropItem,12118,50; bonus2 bAddMonsterDropItem,12119,50; bonus2 bAddMonsterDropItem,12120,50; bonus2 bAddMonsterDropItem,12121,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4390,'Breeze_Card','Breeze Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bBaseAtk,5; bonus2 bAddEff,Eff_Bleeding,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4391,'Retribution_Card','Baroness of Retribution Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus3 bAddMonsterDropItem,12068,RC_Angel,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4392,'Observation_Card','Dame of Sentinel Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bDex,readparam(bVit)/18;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4393,'Shelter_Card','Mistress of Shelter Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bInt,readparam(bStr)/18;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4394,'Solace_Card','Lady Solace Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'if(BaseJob==Job_Priest) bonus3 bAutoSpell,"CR_GRANDCROSS",5,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4395,'Tha_Maero_Card','Maero of Thanatos Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bBaseAtk,5; bonus3 bAutoSpell,"AL_DECAGI",3,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4396,'Tha_Odium_Card','Odium of Thanatos Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bAgi,getrefine()-5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4397,'Tha_Despero_Card','Despero of Thanatos Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus bInt,getrefine()-6;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4398,'Tha_Dolor_Card','Dolor of Thanatos Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bMagicAddRace,RC_Angel,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4399,'Thanatos_Card','Memory of Thanatos Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bDefRatioAtkClass,Class_All; bonus bSPDrainValue,-1; bonus bDef,-30; bonus bFlee,-30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4400,'Aliza_Card','Aliza Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus3 bAutoSpellWhenHit,"DC_WINKCHARM",1,50+50*(BaseJob==Job_Dancer);',NULL,NULL); -REPLACE INTO `item_db` VALUES (4401,'Alicel_Card','Alicel Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bFlee,10; bonus bDef,-5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4402,'Aliot_Card','Aliot Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'if(BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Thief) { bonus bStr,2; bonus bMaxHPrate,5; } if(BaseClass==Job_Mage||BaseClass==Job_Archer||BaseClass==Job_Acolyte) { bonus bInt,2; bonus bMaxSPrate,5; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (4403,'Kiel_Card','Kiel-D-01 Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bDelayRate,-30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4404,'Skogul_Card','Skogul Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus3 bAddEffWhenHit,Eff_Bleeding,3000,ATF_TARGET|ATF_SELF;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4405,'Frus_Card','Frus Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bMagicDamageReturn,getrefine()*2; if(BaseClass==Job_Mage) bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4406,'Skeggiold_Card','Skeggiold Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bMagicAddRace,RC_Demon,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4407,'Randgris_Card','Randgris Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bUnbreakableWeapon; bonus2 bAddClass,Class_All,10; bonus3 bAutoSpell,"SA_DISPELL",1,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4408,'Gloom_Under_Night_Card','Gloom Under Night Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddEle,Ele_Holy,40; bonus2 bAddEle,Ele_Dark,40; bonus2 bAddRace,RC_Angel,40; bonus2 bAddRace,RC_Demon,40;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4409,'Agav_Card','Agav Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bMatkRate,5; bonus bDef,-10; if(BaseClass==Job_Mage) bonus bMaxSP,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4410,'Echio_Card','Echio Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bBaseAtk,15; if(BaseClass==Job_Swordman) bonus bMaxHP,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4411,'Vanberk_Card','Vanberk Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bStr,2; autobonus "{ bonus bCritical,100; }",5,5000,0,"{ specialeffect2 EF_ENHANCE; }";',NULL,NULL); -REPLACE INTO `item_db` VALUES (4412,'Isilla_Card','Isilla Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bInt,2; autobonus "{ bonus bCastrate,-50; bonus bFlee,30; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }";',NULL,NULL); -REPLACE INTO `item_db` VALUES (4413,'Hodremlin_Card','Hodremlin Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubSize,Size_All,15; autobonus2 "{ bonus bFlee2,30; }",3,10000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_WIND; }";',NULL,NULL); -REPLACE INTO `item_db` VALUES (4414,'Seeker_Card','Seeker Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'skill "MG_STONECURSE",1; bonus2 bResEff,Eff_Stone,3000; bonus bMdef,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4415,'Snowier_Card','Snowier Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus2 bAddMonsterDropItem,536,2000; bonus2 bAddItemHealRate,536,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4416,'Siroma_Card','Siroma Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus2 bSkillAtk,"MG_COLDBOLT",25; bonus2 bCastrate,"MG_COLDBOLT",-25;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4417,'Ice_Titan_Card','Ice Titan Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bVit,2; autobonus2 "{ bonus bDef,10; }",3,10000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_FREEZED; }";',NULL,NULL); -REPLACE INTO `item_db` VALUES (4418,'Gazeti_Card','Gazeti Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus3 bAutoSpell,"MG_COLDBOLT",2,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4419,'Ktullanux_Card','Ktullanux Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddEle,Ele_Fire,50; bonus5 bAutoSpellWhenHit,"WZ_FROSTNOVA",10,20,BF_WEAPON|BF_MAGIC,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4420,'Muscipular_Card','Muscipular Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus3 bAutoSpellWhenHit,"AL_HEAL",1,100; bonus3 bAutoSpellWhenHit,"AL_INCAGI",1,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4421,'Drosera_Card','Drosera Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bCriticalLong,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4422,'Roween_Card','Roween Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bFlee,5; bonus bFlee2,3; bonus2 bAddEle,Ele_Water,10; bonus2 bCriticalAddRace,RC_Fish,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4423,'Galion_Card','Galion Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bHit,5; bonus2 bAddEle,Ele_Water,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4424,'Stapo_Card','Stapo Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'skill "TF_PICKSTONE",1; skill "TF_THROWSTONE",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4425,'Atroce_Card','Atroce Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bBaseAtk,25; autobonus "{ bonus bAspdRate,100; }",5,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }";',NULL,NULL); -REPLACE INTO `item_db` VALUES (4426,'Byorgue_Card','Byorgue Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'if(BaseJob==Job_Rogue) { bonus bMatkRate,10; bonus2 bAddClass,Class_All,10; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (4427,'Sword_Guardian_Card','Sword Guardian Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'if(getiteminfo(getequipid(EQI_HAND_R),11)==W_1HSWORD||getiteminfo(getequipid(EQI_HAND_R),11)==W_2HSWORD) { bonus bHit,5; bonus bCritical,5; bonus2 bSkillAtk,62,25; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (4428,'Bow_Guardian_Card','Bow Guardian Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'if(getiteminfo(getequipid(EQI_HAND_R),11)==W_BOW) { bonus bHit,5; bonus bCritical,5; bonus2 bSkillAtk,47,50; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (4429,'Salamander_Card','Salamander Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus2 bSkillAtk,"WZ_FIREPILLAR",40; bonus2 bSkillAtk,"WZ_METEOR",40;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4430,'Ifrit_Card','Ifrit Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bBaseAtk,(JobLevel/10); bonus bCritical,(JobLevel/10); bonus bHit,(JobLevel/10); bonus3 bAutoSpellWhenHit,"NPC_EARTHQUAKE",2,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4431,'Kasa_Card','Kasa Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus3 bAutoSpell,"MG_FIREBALL",5,20; bonus3 bAutoSpell,"MG_FIREBOLT",5,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4432,'Magmaring_Card','Magmaring Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bBaseAtk,5; bonus2 bAddEle,Ele_Earth,10; bonus2 bCriticalAddRace,RC_Brute,15; bonus2 bCriticalAddRace,RC_Player_Doram,15; bonus2 bCriticalAddRace,RC_Plant,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4433,'Imp_Card','Imp Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus2 bSkillAtk,"MG_FIREBOLT",25; bonus2 bCastrate,"MG_FIREBOLT",-25;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4434,'Knocker_Card','Knocker Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus2 bAddRace,RC_Formless,5; bonus3 bAddMonsterDropItem,756,RC_Formless,10; bonus3 bAddMonsterDropItem,757,RC_Formless,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4435,'Zombie_Slaughter_Card','Zombie Slaughter Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus2 bAddRace,RC_DemiHuman,1; bonus2 bAddRace,RC_Player_Human,1; bonus2 bMagicAddRace,RC_DemiHuman,1; bonus2 bMagicAddRace,RC_Player_Human,1; bonus bHPGainValue,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4436,'Ragged_Zombie_Card','Ragged Zombie Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus2 bCriticalAddRace,RC_DemiHuman,5; bonus2 bCriticalAddRace,RC_Player_Human,5; bonus2 bAddRace,RC_DemiHuman,1; bonus2 bAddRace,RC_Player_Human,1; bonus2 bMagicAddRace,RC_DemiHuman,1; bonus2 bMagicAddRace,RC_Player_Human,1; bonus2 bAddEff2,Eff_Bleeding,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4437,'Hell_Poodle_Card','Hell Poodle Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bHit,1; bonus2 bAddItemHealRate,517,100; bonus3 bAddEff,Eff_Bleeding,50,ATF_SHORT;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4438,'Banshee_Card','Banshee Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'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; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (4439,'Flame_Skull_Card','Flame Skull Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'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;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4440,'Necromancer_Card','Necromancer Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'if(getiteminfo(getequipid(EQI_HAND_R),11)==W_STAFF) { bonus bInt,1; bonus2 bIgnoreMdefClassRate,Class_Normal,2; bonus2 bIgnoreMdefClassRate,Class_Boss,2; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (4441,'Fallen_Bishop_Card','Fallen Bishop Hibram Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bMatkRate,10; bonus bMaxSPrate,-50; bonus2 bMagicAddRace,RC_Angel,50; bonus2 bMagicAddRace,RC_DemiHuman,50; bonus2 bMagicAddRace,RC_Player_Human,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4442,'Tatacho_Card','Tatacho Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Neutral,20; bonus2 bAddEle,Ele_Neutral,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4443,'Aqua_Elemental_Card','Aqua Elemental Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Water,20; bonus2 bAddEle,Ele_Water,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4444,'Draco_Card','Draco Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Earth,20; bonus2 bAddEle,Ele_Earth,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4445,'Luciola_Vespa_Card','Luciola Vespa Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Wind,20; bonus2 bAddEle,Ele_Wind,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4447,'Centipede_Card','Centipede Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Poison,20; bonus2 bAddEle,Ele_Poison,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4448,'Cornus_Card','Cornus Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Holy,20; bonus2 bAddEle,Ele_Holy,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4449,'Dark_Shadow_Card','Dark Shadow Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Dark,20; bonus2 bAddEle,Ele_Dark,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4450,'Banshee_Master_Card','Banshee Master Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bInt,1; bonus bMatk,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4451,'Ant_Buyanne_Card','Entweihen Crothen Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bMatk,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4452,'Centipede_Larva_Card','Centipede Larva Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bInt,1; bonus bMatk,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4453,'Hilsrion_Card','Hillsrion Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bBaseAtk,25;',NULL,NULL); -# Armor Enchant System -#=================================================================== -REPLACE INTO `item_db` VALUES (4700,'Strength1','STR+1',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bStr,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4701,'Strength2','STR+2',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bStr,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4702,'Strength3','STR+3',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bStr,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4703,'Strength4','STR+4',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bStr,4;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4704,'Strength5','STR+5',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bStr,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4705,'Strength6','STR+6',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bStr,6;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4706,'Strength7','STR+7',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bStr,7;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4707,'Strength8','STR+8',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bStr,8;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4708,'Strength9','STR+9',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bStr,9;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4709,'Strength10','STR+10',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bStr,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4710,'Inteligence1','INT+1',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4711,'Inteligence2','INT+2',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4712,'Inteligence3','INT+3',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bInt,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4713,'Inteligence4','INT+4',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bInt,4;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4714,'Inteligence5','INT+5',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bInt,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4715,'Inteligence6','INT+6',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bInt,6;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4716,'Inteligence7','INT+7',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bInt,7;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4717,'Inteligence8','INT+8',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bInt,8;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4718,'Inteligence9','INT+9',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bInt,9;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4719,'Inteligence10','INT+10',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bInt,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4720,'Dexterity1','DEX+1',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4721,'Dexterity2','DEX+2',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bDex,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4722,'Dexterity3','DEX+3',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bDex,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4723,'Dexterity4','DEX+4',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bDex,4;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4724,'Dexterity5','DEX+5',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bDex,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4725,'Dexterity6','DEX+6',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bDex,6;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4726,'Dexterity7','DEX+7',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bDex,7;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4727,'Dexterity8','DEX+8',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bDex,8;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4728,'Dexterity9','DEX+9',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bDex,9;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4729,'Dexterity10','DEX+10',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bDex,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4730,'Agility1','AGI+1',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4731,'Agility2','AGI+2',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bAgi,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4732,'Agility3','AGI+3',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bAgi,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4733,'Agility4','AGI+4',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bAgi,4;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4734,'Agility5','AGI+5',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bAgi,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4735,'Agility6','AGI+6',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bAgi,6;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4736,'Agility7','AGI+7',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bAgi,7;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4737,'Agility8','AGI+8',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bAgi,8;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4738,'Agility9','AGI+9',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bAgi,9;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4739,'Agility10','AGI+10',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bAgi,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4740,'Vitality1','VIT+1',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bVit,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4741,'Vitality2','VIT+2',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bVit,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4742,'Vitality3','VIT+3',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bVit,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4743,'Vitality4','VIT+4',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bVit,4;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4744,'Vitality5','VIT+5',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bVit,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4745,'Vitality6','VIT+6',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bVit,6;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4746,'Vitality7','VIT+7',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bVit,7;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4747,'Vitality8','VIT+8',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bVit,8;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4748,'Vitality9','VIT+9',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bVit,9;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4749,'Vitality10','VIT+10',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bVit,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4750,'Luck1','LUK+1',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4751,'Luck2','LUK+2',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bLuk,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4752,'Luck3','LUK+3',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bLuk,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4753,'Luck4','LUK+4',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bLuk,4;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4754,'Luck5','LUK+5',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bLuk,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4755,'Luck6','LUK+6',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bLuk,6;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4756,'Luck7','LUK+7',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bLuk,7;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4757,'Luck8','LUK+8',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bLuk,8;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4758,'Luck9','LUK+9',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bLuk,9;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4759,'Luck10','LUK+10',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bLuk,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4760,'Matk1','MATK+1%',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMatkRate,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4761,'Matk2','MATK+2%',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMatkRate,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4762,'Evasion6','FLEE+6',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bFlee,6;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4763,'Evasion12','FLEE+12',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bFlee,12;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4764,'Critical5','CRI+5',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bCritical,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4765,'Critical7','CRI+7',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bCritical,7;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4766,'Atk2','ATK+2%',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bAddClass,Class_All,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4767,'Atk3','ATK+3%',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bAddClass,Class_All,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (4768,'Str1_J','STR+1',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (4769,'Str2_J','STR+2',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (4770,'Str3_J','STR+3',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (4771,'Int1_J','INT+1',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (4772,'Int2_J','INT+2',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (4773,'Int3_J','INT+3',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (4774,'Vit1_J','VIT+1',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (4775,'Vit2_J','VIT+2',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (4776,'Vit3_J','VIT+3',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (4777,'Agi1_J','AGI+1',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (4778,'Agi2_J','AGI+2',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (4779,'Agi3_J','AGI+3',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (4780,'Dex1_J','DEX+1',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (4781,'Dex2_J','DEX+2',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (4782,'Dex3_J','DEX+3',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (4783,'Luk1_J','LUK+1',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (4784,'Luk2_J','LUK+2',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (4785,'Luk3_J','LUK+3',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -# More Headgears -#=================================================================== -REPLACE INTO `item_db` VALUES (5001,'Headset','Headset',4,20,NULL,200,NULL,3,NULL,0,0xFFFFFFFE,7,2,256,NULL,1,1,87,'bonus2 bResEff,Eff_Curse,1000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5002,'Gemmed_Crown','Jewel Crown',4,20,NULL,600,NULL,4,NULL,0,0x000654E2,7,2,256,NULL,60,1,88,'bonus bInt,2; bonus bLuk,1; bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5003,'Joker_Jester','Joker Jester',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,1,89,'bonus bLuk,2; bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5004,'Oxygen_Mask','Oxygen Mask',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFE,7,2,1,NULL,0,0,90,'bonus2 bResEff,Eff_Poison,2000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5005,'Gas_Mask','Gas Mask',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFE,7,2,513,NULL,0,0,91,'bonus2 bResEff,Eff_Poison,3000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5006,'Machoman_Glasses','Machoman\'s Glasses',4,36000,NULL,100,NULL,1,NULL,0,0xFFFFFFFE,7,2,512,NULL,0,0,92,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5007,'Loard_Circlet','Grand Circlet',4,20,NULL,200,NULL,3,NULL,0,0xFFFFFFFE,7,2,256,NULL,55,1,93,'bonus bStr,1; bonus bInt,1; bonus bLuk,1; bonus bMdef,4;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5008,'Puppy_Love','Puppy Love',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,0,94,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5009,'Safety_Helmet','Safety Helmet',4,20,NULL,500,NULL,3,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,1,95,'bonus bMdef,3; bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5010,'Indian_Hair_Piece','Indian Fillet',4,20,NULL,100,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,96,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5011,'Antenna','Aerial',4,20,NULL,100,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,97,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5012,'Ph.D_Hat','Ph.D Hat',4,20,NULL,200,NULL,3,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,1,98,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5013,'Horn_Of_Lord_Kaho','Lord Kaho\'s Horn',4,20,NULL,100,NULL,5,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,99,'bonus bMdef,10; bonus bStr,5; bonus bAgi,10; bonus bVit,10; bonus bInt,5; bonus bLuk,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5014,'Fin_Helm','Fin Helm',4,20,NULL,300,NULL,2,NULL,0,0x00004082,7,2,512,NULL,65,0,100,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5015,'Egg_Shell','Egg Shell',4,20,NULL,200,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,0,101,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5016,'Boy\'s_Cap','Boy\'s Cap',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,1,102,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5017,'Bone_Helm','Bone Helm',4,20,NULL,800,NULL,7,NULL,0,0x000444A2,7,2,256,NULL,70,1,103,'bonus2 bSubEle,Ele_Dark,-15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5018,'Feather_Bonnet','Feather Bonnet',4,20,NULL,300,NULL,4,NULL,0,0x00080808,7,2,256,NULL,0,1,104,'bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5019,'Corsair','Corsair',4,20,NULL,500,NULL,5,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,1,105,'bonus bVit,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5020,'Kafra_Band','Kafra Band',4,20,NULL,500,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,106,'bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5021,'Bankruptcy_Of_Heart','Grief for Greed',4,20,NULL,1200,NULL,4,NULL,0,0x00040420,7,2,256,NULL,38,1,107,'bonus bInt,1; bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5022,'Helm_Of_Sun','Hat of the Sun God',4,20,NULL,2400,NULL,4,NULL,0,0x00CFDF80,7,2,768,NULL,0,1,138,'bonus bStr,3; bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5023,'Hat_Of_Bundle','Parcel Hat',4,20,NULL,1000,NULL,0,NULL,0,0x00040420,7,2,256,NULL,0,1,108,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5024,'Hat_Of_Cake','Cake Hat',4,20,NULL,1000,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,109,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5025,'Helm_Of_Angel','Helm of Angel',4,20,NULL,1600,NULL,5,NULL,0,0x00CFDF80,7,2,256,NULL,74,1,110,'bonus bAgi,1; bonus bLuk,1; bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5026,'Hat_Of_Cook','Chef Hat',4,20,NULL,300,NULL,1,NULL,0,0xFFFFFFFE,7,2,256,NULL,50,1,111,'bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5027,'Wizardry_Hat','Mage Hat',4,20,NULL,300,NULL,1,NULL,0,0x00810204,7,2,256,NULL,0,1,112,'bonus bInt,2; bonus bMaxSP,150;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5028,'Candle','Candle',4,20,NULL,150,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,113,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5029,'Spore_Hat','Spore Hat',4,20,NULL,900,NULL,3,NULL,0,0xFFFFFFFE,7,2,256,NULL,20,1,114,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5030,'Panda_Cap','Panda Hat',4,20,NULL,800,NULL,3,NULL,0,0xFFFFFFFE,7,2,256,NULL,40,1,115,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5031,'Mine_Helm','Mine Hat',4,20,NULL,1500,NULL,4,NULL,0,0x0006D5F2,7,2,256,NULL,55,1,116,'bonus bDex,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5032,'Picnic_Hat','Sunday Hat',4,20,NULL,800,NULL,1,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,1,117,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5033,'Smokie_Hat','Raccoon Hat',4,20,NULL,900,NULL,3,NULL,0,0xFFFFFFFE,7,2,256,NULL,50,1,118,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5034,'Light_Bulb_Band','Bulb Band',4,20,NULL,500,NULL,0,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,1,119,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5035,'Poring_Hat','Poring Hat',4,20,NULL,700,NULL,2,NULL,0,0xFFFFFFFE,7,2,256,NULL,38,1,120,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5036,'Cross_Band','Cross Hat',4,20,NULL,250,NULL,1,NULL,0,0xFFFFFFFE,7,2,256,NULL,10,1,121,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5037,'Fruit_Shell','Nut Shell',4,20,NULL,150,NULL,4,NULL,0,0xFFFFFFFF,7,2,256,NULL,5,0,122,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5038,'Deviruchi_Cap','Deviruchi Hat',4,20,NULL,800,NULL,2,NULL,0,0xFFFFFFFE,7,2,256,NULL,64,1,123,'bonus bStr,1; bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5039,'Mottled_Egg_Shell','Rainbow Eggshell',4,20,NULL,400,NULL,4,NULL,0,0xFFFFFFFF,7,2,256,NULL,19,0,124,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5040,'Blush','Blush',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,512,NULL,0,0,125,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5041,'Heart_Hair_Pin','Heart Hairpin',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,126,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5042,'Hair_Protector','Bao Bao',4,20,NULL,150,NULL,0,NULL,0,0xFFFFFFFE,7,2,256,NULL,14,1,127,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5043,'Opera_Ghost_Mask','Opera Phantom Mask',4,20,NULL,200,NULL,1,NULL,0,0xFFFFFFFE,7,2,512,NULL,20,0,128,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5044,'Devil\'s_Wing','Evil Wing Ears',4,20,NULL,350,NULL,2,NULL,0,0x0,7,2,256,NULL,45,1,129,'bonus bVit,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5045,'Magician_Hat','Magician Hat',4,20,NULL,500,NULL,3,NULL,0,0x00818314,7,2,256,NULL,50,1,130,'bonus bDex,1; bonus bAgi,1; bonus bMaxSP,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5046,'Bongun_Hat','Bongun Hat',4,20,NULL,300,NULL,5,NULL,0,0xFFFFFFFF,7,2,769,NULL,0,0,139,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5047,'Fashion_Sunglass','Fashionable Glasses',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,1,131,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5048,'First_Moon_Hair_Pin','Cresent Hairpin',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,132,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5049,'Stripe_Band','Striped Hairband',4,20,NULL,150,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,0,133,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5050,'Mystery_Fruit_Shell','Wonder Nutshell',4,20,NULL,300,NULL,5,NULL,0,0xFFFFFFFF,7,2,256,NULL,30,0,134,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5051,'Kitty_Bell','Pussy Cat Bell',4,20,NULL,100,NULL,0,NULL,0,0x0,7,2,1,NULL,0,0,135,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5052,'Blue_Hair_Band','Blue Hairband',4,20,NULL,150,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,136,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5053,'Spinx_Helm','Sphinx Hat',4,20,NULL,3000,NULL,5,NULL,0,0x00004082,7,2,257,NULL,65,0,137,'bonus bStr,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5054,'Assassin_Mask','Assassin Mask',4,20,NULL,100,NULL,0,NULL,0,0x00001100,7,2,1,NULL,70,0,180,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5055,'Novice_Egg_Cap','Novice False Eggshell',4,1,NULL,1,NULL,3,NULL,0,0x00000001,7,2,256,NULL,0,0,101,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5056,'Love_Berry','Fruit of Love',4,1,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,0,140,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5057,'Ear_Of_Black_Cat','Black Cat Ears',4,16000,NULL,200,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,45,1,141,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5058,'Drooping_Kitty','Drooping Cat',4,250000,NULL,500,NULL,1,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,1,142,'bonus bMdef,15; bonus2 bResEff,Eff_Curse,3000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5059,'Brown_Bear_Cap','Teddybear Hat',4,20,NULL,800,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,50,1,143,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5060,'Party_Hat','Party Hat',4,20,NULL,300,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,144,'bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5061,'Flower_Hairpin','Flower Hairpin',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,145,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5062,'Straw_Hat','Straw Hat',4,20,NULL,200,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,50,1,146,'bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5063,'Plaster','Giant Band Aid',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,1,147,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5064,'Leaf_Headgear','Smokie Leaf',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,148,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5065,'Fish_On_Head','Blue Fish',4,20,NULL,500,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,50,1,149,'bonus2 bAddRace,RC_Fish,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5066,'Horn_Of_Succubus','Succubus Horn',4,20,NULL,800,NULL,4,NULL,0,0xFFFFFFFE,7,2,256,NULL,70,1,150,'bonus bInt,1; bonus bMdef,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5067,'Sombrero','Sombrero',4,20,NULL,350,NULL,4,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,1,151,'bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5068,'Ear_Of_Devil\'s_Wing','Evil Wing Ears',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,512,NULL,70,0,152,'bonus bStr,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5069,'Mask_Of_Fox','Kitsune Mask',4,20,NULL,300,NULL,1,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,1,153,'bonus bAgi,1; bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5070,'Headband_Of_Power','Hot-blooded Headband',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,1,154,'bonus bStr,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5071,'Indian_Headband','Indian Headband',4,20,NULL,200,NULL,1,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,1,155,'bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5072,'Inccubus_Horn','Incubus Horn',4,20,NULL,800,NULL,4,NULL,0,0xFFFFFFFE,7,2,256,NULL,70,1,156,'bonus bAgi,1; bonus bMdef,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5073,'Cap_Of_Concentration','Model Training Hat',4,20,NULL,700,NULL,2,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,1,157,'bonus bDex,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5074,'Ear_Of_Angel\'s_Wing','Angel Wing Ears',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,512,NULL,70,0,158,'bonus bStr,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5075,'Cowboy_Hat','Cowboy Hat',4,20,NULL,500,NULL,4,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,159,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5076,'Fur_Hat','Beanie',4,20,NULL,350,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,160,'bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5077,'Tulip_Hairpin','Tulip Hairpin',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,161,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5078,'Sea_Otter_Cap','Sea-Otter Hat',4,20,NULL,800,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,50,1,162,'bonus bVit,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5079,'Crossed_Hair_Band','X Hairpin',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,163,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5080,'Headgear_Of_Queen','Crown of Ancient Queen',4,20,NULL,400,NULL,4,NULL,0,0xFFFFFFFF,7,2,256,NULL,45,1,164,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5081,'Mistress_Crown','Crown of Mistress',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,7,2,256,NULL,75,1,165,'bonus bMaxSP,100; bonus bInt,2; bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5082,'Mushroom_Band','Decorative Mushroom',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,166,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5083,'Red_Tailed_Ribbon','Red Ribbon',4,20,NULL,200,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,45,1,167,'bonus bMdef,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5084,'Lazy_Raccoon','Lazy Smokie',4,20,NULL,500,NULL,1,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,1,168,'bonus2 bResEff,Eff_Sleep,2000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5085,'Pair_Of_Red_Ribbon','Small Ribbons',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,512,NULL,45,0,169,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5086,'Alarm_Mask','Alarm Mask',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFE,7,2,513,NULL,0,0,170,'bonus2 bResEff,Eff_Blind,5000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5087,'Goblin_Mask_01','Poker Face',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,513,NULL,0,0,171,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5088,'Goblin_Mask_02','Surprised Mask',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,513,NULL,0,0,172,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5089,'Goblin_Mask_03','Annoyed Mask',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,513,NULL,0,0,173,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5090,'Goblin_Mask_04','Goblin Leader Mask',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,7,2,513,NULL,0,0,174,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5091,'Big_Golden_Bell','Decorative Golden Bell',4,20,NULL,200,NULL,2,NULL,0,0xFFFFFFFE,7,2,768,NULL,35,1,175,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5092,'Blue_Coif','Coif',4,150000,NULL,300,NULL,5,NULL,0,0x00001100,7,2,768,NULL,65,1,176,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5093,'Blue_Coif_','Coif',4,150000,NULL,300,NULL,5,NULL,1,0x00001100,7,2,768,NULL,65,1,177,'bonus bMaxSP,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5094,'Orc_Hero_Helm','Helmet of Orc Hero',4,500000,NULL,900,NULL,5,NULL,0,0xFFFFFFFE,7,2,768,NULL,55,1,178,'bonus bStr,2; bonus bVit,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5095,'Orc_Hero_Helm_','Helmet of Orc Hero',4,800000,NULL,1000,NULL,5,NULL,1,0xFFFFFFFE,7,2,768,NULL,55,1,179,'bonus bStr,2; bonus bVit,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5096,'Assassin_Mask_','Assassin Mask',4,20,NULL,100,NULL,0,NULL,0,0x00001100,7,2,1,NULL,70,0,180,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5097,'Cone_Hat_','Holiday Hat',4,0,NULL,400,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,144,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5098,'Tiger_Mask','Tiger Mask',4,20,NULL,400,NULL,2,NULL,0,0xFFFFFFFF,7,2,768,NULL,50,0,181,'bonus bStr,3; bonus bMaxHP,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5099,'Cat_Hat','Neko Mimi',4,20,NULL,300,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,182,'bonus bLuk,2; bonus bMdef,10; bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5100,'Sales_Signboard','Sales Banner',4,20,NULL,800,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,75,1,183,'bonus bStr,1; bonus bAgi,1; bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5101,'Takius_Blindfold','Takius\'s Blindfold',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,512,NULL,0,0,184,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5102,'Round_Eyes','Blank Eyes',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,512,NULL,0,0,185,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5103,'Sunflower_Hairpin','Sunflower Hairpin',4,20,NULL,600,NULL,1,NULL,0,0xFFFFFFFE,7,2,256,NULL,30,0,186,'bonus bAgi,2; bonus bCritical,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5104,'Dark_Blindfold','Dark Blinder',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,7,2,512,NULL,0,0,187,'bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Stun,200;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5105,'Hat_Of_Cake_','2nd Anniversary Hat',4,20,NULL,1000,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,24,1,109,'bonus bDex,1; bonus bMaxSP,80; bonus3 bAddMonsterDropItem,7864,7,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5106,'Cone_Hat_INA','2nd Anniversary Hat',4,20,NULL,300,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,1,0,144,'bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5107,'Well_Baked_Toast','Crunch Toast',4,20,NULL,50,NULL,0,NULL,0,0xFFFFFFFF,7,2,1,NULL,0,0,188,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5108,'Detective_Hat','Renown Detective\'s Cap',4,20,NULL,350,NULL,3,NULL,1,0xFFFFFFFF,7,2,256,NULL,0,1,189,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5109,'Red_Bonnet','Red Bonnet',4,20,NULL,400,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,190,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5110,'Baby_Pacifier','Baby Pacifier',4,20,NULL,50,NULL,0,NULL,0,0xFFFFFFFF,7,2,1,NULL,0,0,191,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5111,'Galapago_Cap','Galapago Cap',4,20,NULL,500,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,55,1,192,'bonus2 bAddMonsterDropItem,605,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5112,'Super_Novice_Hat','Super Novice Hat',4,8500,NULL,400,NULL,4,NULL,0,0x00000001,7,2,256,NULL,40,1,193,'bonus bAllStats,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5113,'Angry_Mouth','Angry Snarl',4,20,NULL,50,NULL,0,NULL,0,0xFFFFFFFF,7,2,1,NULL,0,0,194,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5114,'Fedora','Bucket Hat',4,6000,NULL,300,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,195,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5115,'Winter_Hat','Winter Hat',4,20,NULL,500,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,196,'bonus2 bResEff,Eff_Freeze,1000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5116,'Banana_Hat','Banana Hat',4,20,NULL,200,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,197,'bonus3 bAutoSpell,"SM_PROVOKE",3,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5117,'Mistic_Rose','Mystic Rose',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,198,'bonus2 bSubRace,RC_Plant,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5118,'Ear_Of_Puppy','Puppy Headband',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,199,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5119,'Super_Novice_Hat_','Super Novice Hat',4,8500,NULL,400,NULL,4,NULL,1,0x00000001,7,2,256,NULL,40,1,193,'bonus bAllStats,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5120,'Fedora_','Bucket Hat',4,6000,NULL,300,NULL,3,NULL,1,0xFFFFFFFF,7,2,256,NULL,0,1,195,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5121,'Zherlthsh_Mask','Zealotus Mask',4,20,NULL,400,NULL,3,NULL,0,0xFFFFFFFE,7,2,768,NULL,70,1,200,'bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5122,'Magni_Cap','Magni\'s Cap',4,30000,NULL,1000,NULL,5,NULL,0,0xFFFFFFFE,7,2,256,NULL,65,1,250,'bonus bStr,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5123,'Ulle_Cap','Ulle\'s Cap',4,30000,NULL,500,NULL,3,NULL,1,0xFFFFFFFE,7,2,256,NULL,65,1,254,'bonus bDex,2; bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5124,'Fricca_Circlet','Fricca\'s Circlet',4,30000,NULL,300,NULL,3,NULL,0,0xFFFFFFFE,7,2,256,NULL,65,1,251,'bonus bMdef,10; bonus bInt,2; bonus bMaxSP,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5125,'Kiss_Of_Angel','Angel\'s Kiss',4,10000,NULL,300,NULL,3,NULL,1,0x00000001,7,2,256,NULL,50,1,255,'bonus bSPrecovRate,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5126,'Morpheus\'s_Hood','Morpheus\'s Hood',4,30000,NULL,200,NULL,1,NULL,0,0xFFFFFFFE,7,2,256,NULL,33,1,256,'bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5127,'Morrigane\'s_Helm','Morrigane\'s Helm',4,30000,NULL,500,NULL,4,NULL,0,0xFFFFFFFE,7,2,256,NULL,61,1,257,'bonus bLuk,2; bonus bBaseAtk,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5128,'Goibne\'s_Helmet','Goibne\'s Helm',4,30000,NULL,500,NULL,5,NULL,0,0xFFFFFFFE,7,2,256,NULL,54,1,258,'bonus bVit,3; bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5129,'Bird_Nest','Bird Nest',4,20,NULL,400,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,50,0,201,'bonus bAgi,2; bonus2 bSubRace,RC_Brute,10; bonus2 bSubRace,RC_Player_Doram,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5130,'Lion_Mask','Lion Mask',4,20,NULL,700,NULL,0,NULL,0,0x00CFDF80,7,2,768,NULL,75,1,202,'bonus2 bAddEffWhenHit,Eff_Silence,500; bonus bMdef,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5131,'Close_Helmet','Close Helmet',4,20,NULL,1200,NULL,8,NULL,0,0x00004082,7,2,769,NULL,75,1,203,'bonus bVit,3; bonus bMaxHPrate,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5132,'Angeling_Hat','Angeling Hat',4,20,NULL,700,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,0,204,'bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5133,'Sheep_Hat','Sheep Hat',4,20,NULL,150,NULL,1,NULL,0,0x00008110,7,2,256,NULL,0,0,205,'bonus bShortWeaponDamageReturn,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5134,'Pumpkin_Hat','Pumpkin-Head',4,20,NULL,200,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,206,'bonus2 bSubRace,RC_Demon,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5135,'Cyclops_Visor','Cyclop\'s Eye',4,0,NULL,200,NULL,0,NULL,0,0xFFFFFFFE,7,2,512,NULL,75,0,207,'bonus bMaxSP,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5136,'Santa\'s_Hat_','Antonio\'s Santa Hat',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,20,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5137,'Alice_Doll','Alice Doll',4,20,NULL,500,NULL,0,NULL,1,0xFFFFFFFE,7,2,256,NULL,30,0,208,'bonus bStr,1; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus2 bAddEff2,Eff_Sleep,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5138,'Magic_Eyes','Magic Eyes',4,20,NULL,300,NULL,1,NULL,0,0x00810204,7,2,256,NULL,30,1,209,'bonus bMdef,5; bonus bCastrate,-10; bonus bUseSPrate,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5139,'Hibiscus','Hibiscus',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,10,0,210,'bonus bDex,1; bonus bInt,1; bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5140,'Charming_Ribbon','Charming Ribbon',4,20,NULL,400,NULL,1,NULL,1,0xFFFFFFFF,7,2,256,NULL,10,1,211,'bonus2 bSubRace,RC_Undead,5; bonus2 bSubRace,RC_Demon,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5141,'Marionette_Doll','Marionette Doll',4,20,NULL,400,NULL,0,NULL,1,0xFFFFFFFE,7,2,256,NULL,30,1,212,'bonus bStr,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5142,'Crescent_Helm','Crescent Helm',4,20,NULL,3000,NULL,8,NULL,0,0x000444A2,7,2,768,NULL,50,1,213,'bonus bVit,1; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5143,'Kabuki_Mask','Kabuki Mask',4,20,NULL,1000,NULL,5,NULL,1,0xFFFFFFFE,7,1,769,NULL,30,1,214,'bonus2 bResEff,Eff_Silence,3000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5144,'Gambler_Hat','Gambler Hat',4,20,NULL,200,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,16,'bonus bLuk,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5145,'Carnival_Joker_Jester','Carnival Joker Jester',4,10,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,89,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5146,'Elephant_Hat','Elephant Hat',4,0,NULL,500,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,215,'bonus bVit,1; bonus2 bSubRace,RC_Brute,7; skill "WZ_WATERBALL",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5147,'Baseball_Cap','Baseball Cap',4,0,NULL,200,NULL,3,NULL,1,0xFFFFFFFF,7,2,256,NULL,0,1,216,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5148,'Phrygian_Cap','Phrygian Cap',4,0,NULL,500,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,217,'bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5149,'Silver_Tiara','Silver Tiara',4,0,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,218,'bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5150,'Joker_Jester_','Joker Jester',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,0,219,'bonus bSpeedRate,25;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5151,'Headset_OST','Note Headphones',4,20,NULL,200,NULL,4,NULL,1,0xFFFFFFFF,7,2,768,NULL,0,1,220,'bonus bMdef,3; bonus2 bResEff,Eff_Stun,1000; bonus2 bResEff,Eff_Freeze,1000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5152,'Chinese_Crown','Chinese Crown',4,20,NULL,2000,NULL,2,NULL,0,0xFFFFFFFF,7,2,768,NULL,1,1,221,'bonus2 bResEff,Eff_Stun,1000; bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5153,'Angeling_Hairpin','Angeling Hairpin',4,20,NULL,700,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,222,'bonus bFlee,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5154,'Sunglasses_F','Father\'s Sunglasses',4,20,NULL,100,NULL,3,NULL,0,0xFFFFFFFF,7,2,512,NULL,0,0,12,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5155,'Granpa_Beard_F','Father\'s White Moustache',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,1,NULL,0,0,25,'bonus bBaseAtk,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5156,'Flu_Mask_F','Father\'s Mask',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,1,NULL,0,0,8,'bonus bMatkRate,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5157,'Viking_Helm_','Orc Helm',4,20,NULL,500,NULL,5,NULL,1,0x000654E2,7,2,256,NULL,0,1,86,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5158,'Holy_Bonnet_','Monk Hat',4,30000,NULL,100,NULL,5,NULL,1,0x00008110,7,2,256,NULL,0,1,35,'bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5159,'Golden_Gear_','Golden Gear',4,20,NULL,900,NULL,5,NULL,1,0xFFFFFFFE,7,2,256,NULL,40,1,30,'bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5160,'Magestic_Goat_','Majestic Goat',4,20,NULL,800,NULL,5,NULL,1,0x006444A2,7,2,256,NULL,0,1,41,'bonus bStr,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5161,'Sharp_Gear_','Spiky Band',4,20,NULL,1000,NULL,6,NULL,1,0x0066D5F2,7,2,256,NULL,50,1,43,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5162,'Bone_Helm_','Bone Helm',4,20,NULL,800,NULL,7,NULL,1,0x000444A2,7,2,256,NULL,70,1,103,'bonus2 bSubEle,Ele_Dark,-15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5163,'Corsair_','Corsair',4,20,NULL,500,NULL,5,NULL,1,0xFFFFFFFE,7,2,256,NULL,0,1,105,'bonus bVit,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5164,'Tiara_','Tiara',4,20,NULL,400,NULL,4,NULL,1,0xFFFFFFFE,7,0,256,NULL,45,1,19,'bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5165,'Crown_','Crown',4,20,NULL,400,NULL,4,NULL,1,0xFFFFFFFE,7,1,256,NULL,45,1,45,'bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5166,'Spinx_Helm_','Sphinx Hat',4,20,NULL,3000,NULL,5,NULL,1,0x00004082,7,2,257,NULL,65,0,137,'bonus bStr,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5167,'Munak_Turban_','Munak Hat',4,20,NULL,300,NULL,5,NULL,1,0xFFFFFFFF,7,2,769,NULL,0,0,51,'bonus2 bSubRace,RC_Undead,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5168,'Bongun_Hat_','Bongun Hat',4,20,NULL,300,NULL,5,NULL,1,0xFFFFFFFF,7,2,769,NULL,0,0,139,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5169,'Bride_Mask','Bride Mask',4,30000,NULL,500,NULL,4,NULL,1,0xFFFFFFFF,7,2,768,NULL,40,1,223,'if(BaseClass==Job_Taekwon){ bonus bLuk,2; bonus bCritical,5; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (5170,'Feather_Beret','Feather Beret',4,30000,NULL,600,NULL,1,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,1,224,'bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5171,'Valkyrie_Helm','Valkyrie Helm',4,100000,NULL,1000,NULL,5,NULL,1,0xFFFFFFFE,2,2,256,NULL,0,1,225,'bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5172,'Beret','Beret',4,30000,NULL,700,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,0,226,'bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5173,'Satto_Hat','Magistrate Hat',4,30000,NULL,400,NULL,3,NULL,1,0xFFFFFFFF,7,2,256,NULL,60,1,227,'if(BaseClass==Job_Taekwon){ bonus bAgi,1; bonus bHPrecovRate,3; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (5174,'Ayam','Ayam',4,30000,NULL,400,NULL,3,NULL,1,0xFFFFFFFF,7,2,256,NULL,60,1,228,'if(BaseClass==Job_Taekwon){ bonus bInt,1; bonus bSPrecovRate,3; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (5175,'Censor_Bar','Censor Bar',4,30000,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,512,NULL,0,0,229,'bonus2 bResEff,Eff_Curse,500; bonus bMdef,1; bonus bHit,-5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5176,'Hahoe_Mask','Hahoe Mask',4,30000,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,7,2,513,NULL,30,0,230,'if(BaseClass==Job_Taekwon){ bonus bLuk,1; bonus bFlee2,2; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (5177,'Guardian_Lion_Mask','Mythical Lion Mask',4,30000,NULL,500,NULL,5,NULL,1,0xFFFFFFFF,7,2,768,NULL,40,1,231,'if(BaseClass==Job_Taekwon){ bonus bDex,2; bonus bBaseAtk,2*getrefine(); bonus3 bAddEff,Eff_Stun,1000,ATF_SHORT; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (5178,'Candle_','Candle',4,20,NULL,150,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,113,'bonus bAllStats,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5179,'Gold_Tiara','Golden Tiara',4,0,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,232,'bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5180,'Phrygian_Cap_','France Holiday Hat',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,217,'bonus bVit,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5181,'Helm_Of_Darkness','Helm of Darkness',4,20,NULL,2000,NULL,3,NULL,1,0x000654E2,7,2,768,NULL,50,1,233,'bonus bStr,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5182,'Puppy_Hat','Puppy Hat',4,20,NULL,500,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,30,0,234,'bonus bAgi,1; bonus3 bAutoSpell,"PR_GLORIA",1,10+20*(readparam(bAgi)>=77);',NULL,NULL); -REPLACE INTO `item_db` VALUES (5183,'Bird_Nest_Hat','Bird Nest Hat',4,20,NULL,500,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,10,1,235,'bonus bDex,1; bonus bAgi,1; bonus2 bResEff,Eff_Stun,1000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5184,'Captain_Hat','Captain\'s Hat',4,20,NULL,500,NULL,4,NULL,0,0xFFFFFFFE,7,2,256,NULL,30,1,236,'bonus2 bSubEle,Ele_Water,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5185,'Laurel_Wreath','Laurel Wreath',4,20,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,7,2,256,NULL,10,1,237,'bonus bLuk,3; bonus2 bResEff,Eff_Blind,500; bonus2 bResEff,Eff_Curse,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5186,'Geographer_Band','Geographer Band',4,20,NULL,500,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,30,0,238,'bonus bInt,1; bonus3 bAutoSpellWhenHit,"AL_HEAL",1,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5187,'Twin_Ribbon','Twin Ribbon',4,20,NULL,200,NULL,0,NULL,1,0xFFFFFFFF,7,2,256,NULL,30,1,239,'bonus bMaxSP,30; bonus bMdef,3; bonus3 bAutoSpellWhenHit,"NPC_STONESKIN",6,10; bonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,120,BF_MAGIC,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5188,'Minstrel_Hat','Wandering Minstrel Hat',4,20,NULL,500,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,50,1,240,'bonus bInt,1; bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5189,'Fallen_Leaves','Autumn Leaves',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,241,'bonus bMaxHP,40; bonus bMaxSP,40;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5190,'Baseball_Cap_','Independence Memorial Hat',4,20,NULL,20,NULL,3,NULL,1,0xFFFFFFFF,7,2,256,NULL,0,1,216,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5191,'Ribbon_Black','Black Ribbon',4,800,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,7,0,256,NULL,0,1,242,'bonus bInt,1; bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5192,'Ribbon_Yellow','Yellow Ribbon',4,800,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,7,0,256,NULL,0,1,243,'bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5193,'Ribbon_Green','Green Ribbon',4,800,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,7,0,256,NULL,0,1,244,'bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5194,'Ribbon_Pink','Pink Ribbon',4,800,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,7,0,256,NULL,0,1,245,'bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5195,'Ribbon_Red','Red Ribbon',4,800,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,7,0,256,NULL,0,1,246,'bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5196,'Ribbon_Orange','Orange Ribbon',4,800,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,7,0,256,NULL,0,1,247,'bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5197,'Ribbon_White','White Ribbon',4,800,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,7,0,256,NULL,0,1,248,'bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5198,'Drooping_Bunny','Drooping Bunny',4,10,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,249,'bonus bDex,1; bonus bFlee,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5199,'Baseball_Cap_I','Baseball Cap',4,0,NULL,200,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,216,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5200,'Coppola','Coppola',4,10,NULL,300,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,252,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5201,'Party_Hat_B','Party Hat',4,20,NULL,300,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,144,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5202,'Pumpkin_Hat_','Fantastic Pumpkin-Head',4,20,NULL,200,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,206,'bonus2 bSubRace,RC_Demon,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5203,'Tongue_Mask','Smiling Mask',4,20,NULL,200,NULL,2,NULL,0,0xFFFFFFFF,7,2,513,NULL,0,0,253,'bonus bSpeedRate,25;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5204,'Event_Pierrot_Nose','Rudolph\'s Nose',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,1,NULL,0,0,49,'bonus2 bResEff,Eff_Blind,3000; bonus2 bAddMonsterDropItem,12130,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5205,'Wreath','Emperor\'s Laurel Crown',4,20,NULL,1000,NULL,3,NULL,0,0xFFFFFFFF,7,2,768,NULL,0,1,261,'bonus bAllStats,1; bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5206,'Romantic_White_Flower','Romantic White Flower',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,7,2,1,NULL,0,0,259,'bonus2 bSubRace,RC_Plant,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5207,'Gold_Spirit_Chain','Angel Blessing',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,0,260,'bonus bLuk,1; bonus2 bSubEle,Ele_Holy,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5208,'Rideword_Hat','Rideword Hat',4,20,NULL,300,NULL,2,NULL,1,0xFFFFFFFE,7,2,256,NULL,40,1,262,'bonus2 bHPDrainRate,50,8; bonus2 bSPDrainRate,10,4; bonus2 bHPLossRate,10,5000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5209,'Yellow_Baseball_Cap','Love Dad Cap',4,20,NULL,300,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,263,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5210,'Flying_Angel','Flapping Angel Wing',4,20,NULL,300,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,10,1,264,'bonus bCastrate,-3; bonus bAspdRate,3; bonus bInt,1; bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5211,'Dress_Hat','Dress Hat',4,0,NULL,200,NULL,2,NULL,1,0xFFFFFFFF,7,2,256,NULL,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; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (5212,'Satellite_Hairband','Satellite Hairband',4,0,NULL,1000,NULL,3,NULL,1,0xFFFFFFFF,7,2,256,NULL,30,1,266,'bonus bMaxHP,50; bonus bMaxSP,10; skill "AL_RUWACH",1;',NULL,'sc_end SC_RUWACH;'); -REPLACE INTO `item_db` VALUES (5213,'Black_Bunny_Band','Sheila Hairnet',4,0,NULL,200,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,1,1,267,'bonus bAgi,2; bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5214,'Moonlight_Flower_Hat','Moonlight Flower Hat',4,0,NULL,200,NULL,3,NULL,0,0xFFFFFFFF,7,2,768,NULL,1,1,268,'bonus bDex,2; bonus3 bAutoSpell,"AL_INCAGI",1,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5215,'Angelic_Chain_','Evolved Angel Wing',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,1,38,'bonus bMdef,3; bonus bDex,1; bonus bInt,1; bonus2 bSubRace,RC_Demon,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5216,'Satanic_Chain_','Evolved Evil Wing',4,20,NULL,100,NULL,3,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,1,39,'bonus bStr,1; bonus bAgi,1; bonus bFlee,3; bonus2 bSubRace,RC_Angel,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5217,'Magestic_Goat_TW','Evolved Majestic Goat',4,20,NULL,800,NULL,5,NULL,0,0x006444A2,7,2,256,NULL,0,1,41,'bonus bStr,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5218,'Bunny_Band_','Evolved Bunny Band',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,15,'bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5219,'Drooping_Kitty_','Evolved Drooping Cat',4,250000,NULL,500,NULL,1,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,1,142,'bonus bMdef,18; bonus bFlee,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5220,'Smoking_Pipe_','Evolved Pipe',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,7,2,1,NULL,0,0,55,'bonus bVit,1; bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5221,'Pair_Of_Red_Ribbon_','Evolved Pair of Red Ribbon',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,0,512,NULL,45,0,169,'bonus bFlee,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5222,'Fish_On_Head_','Evolved Blue Fish',4,20,NULL,500,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,50,1,149,'bonus bAgi,1; bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5223,'Big_Golden_Bell_','Evolved Big Golden Bell',4,20,NULL,200,NULL,2,NULL,0,0xFFFFFFFE,7,2,768,NULL,35,1,175,'bonus bAgi,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5224,'Orc_Hero_Helm_TW','Evolved Orc Hero Helm',4,500000,NULL,900,NULL,5,NULL,0,0xFFFFFFFE,7,2,768,NULL,55,1,178,'bonus bStr,2; bonus bVit,1; bonus bMaxHPrate,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5225,'Marcher_Hat','Parade Hat',4,20,NULL,200,NULL,2,NULL,1,0xFFFFFFFF,7,2,256,NULL,10,1,269,'bonus bMdef,2; bonus bStr,2; bonus4 bAutoSpellWhenHit,"AL_ANGELUS",5,30,0; bonus4 bAutoSpellWhenHit,"HP_ASSUMPTIO",1,1,0; bonus2 bResEff,Eff_Stun,1000; if(BaseClass==Job_Acolyte) bonus4 bAutoSpellOnSkill,"AL_HEAL","PR_LEXAETERNA",1,1000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5226,'Mini_Propeller_','Mini Propeller',4,20,NULL,200,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,270,'bonus bAgi,2; bonus bDex,1; bonus bFlee,10; bonus bCastrate,-getrefine();',NULL,NULL); -REPLACE INTO `item_db` VALUES (5227,'Red_Deviruchi_Cap','Red Deviruchi Hat',4,20,NULL,800,NULL,2,NULL,0,0xFFFFFFFE,7,2,256,NULL,64,1,271,'bonus bStr,1; bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5228,'White_Deviruchi_Cap','Gray Deviruchi Hat',4,20,NULL,800,NULL,2,NULL,0,0xFFFFFFFE,7,2,256,NULL,64,1,272,'bonus bStr,1; bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5229,'Gray_Deviruchi_Cap','Brown Deviruchi Hat',4,20,NULL,800,NULL,2,NULL,0,0xFFFFFFFE,7,2,256,NULL,64,1,273,'bonus bStr,1; bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5230,'White_Drooping_Kitty','Gray Drooping Cat',4,250000,NULL,500,NULL,1,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,1,274,'bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5231,'Gray_Drooping_Kitty','Brown Drooping Cat',4,250000,NULL,500,NULL,1,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,1,275,'bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5232,'Pink_Drooping_Kitty','Pink Drooping Cat',4,250000,NULL,500,NULL,1,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,1,276,'bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5233,'Blue_Drooping_Kitty','Blue Drooping Cat',4,250000,NULL,500,NULL,1,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,1,277,'bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5234,'Yellow_Drooping_Kitty','Yellow Drooping Cat',4,250000,NULL,500,NULL,1,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,1,278,'bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5235,'Gray_Fur_Hat','Brown Beanie',4,20,NULL,350,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,279,'bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5236,'Blue_Fur_Hat','Blue Beanie',4,20,NULL,350,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,280,'bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5237,'Pink_Fur_Hat','Pink Beanie',4,20,NULL,350,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,281,'bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5238,'Red_Wizardry_Hat','Red Mage Hat',4,20,NULL,300,NULL,1,NULL,0,0x00810204,7,2,256,NULL,0,1,282,'bonus bInt,2; bonus bMaxSP,150;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5239,'White_Wizardry_Hat','Gray Mage Hat',4,20,NULL,300,NULL,1,NULL,0,0x00810204,7,2,256,NULL,0,1,283,'bonus bInt,2; bonus bMaxSP,150;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5240,'Gray_Wizardry_Hat','Brown Mage Hat',4,20,NULL,300,NULL,1,NULL,0,0x00810204,7,2,256,NULL,0,1,284,'bonus bInt,2; bonus bMaxSP,150;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5241,'Blue_Wizardry_Hat','Blue Mage Hat',4,20,NULL,300,NULL,1,NULL,0,0x00810204,7,2,256,NULL,0,1,285,'bonus bInt,2; bonus bMaxSP,150;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5242,'Yellow_Wizardry_Hat','Yellow Mage Hat',4,20,NULL,300,NULL,1,NULL,0,0x00810204,7,2,256,NULL,0,1,286,'bonus bInt,2; bonus bMaxSP,150;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5243,'Chullos','Shafka',4,20,NULL,800,NULL,2,NULL,1,0xFFFFFFFF,7,2,768,NULL,0,1,287,'bonus2 bResEff,Eff_Freeze,1000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5244,'Elven_Blindfold','Elven Blindfold',4,20,NULL,200,NULL,1,NULL,0,0xFFFFFFFF,7,2,512,NULL,0,0,288,'bonus2 bResEff,Eff_Blind,10000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5245,'Elven_Sunglasses','Elven Sunglasses',4,20,NULL,200,NULL,1,NULL,0,0xFFFFFFFF,7,2,512,NULL,0,0,289,'bonus2 bResEff,Eff_Blind,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5246,'Angelic_Helm','Angelic Helm',4,20,NULL,700,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,290,'bonus bAgi,1; bonus bLuk,1; bonus bMdef,3; bonus2 bSubRace,RC_Demon,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5247,'Satanic_Helm','Satanic Helm',4,20,NULL,700,NULL,4,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,291,'bonus bAgi,1; bonus bLuk,1; bonus bMdef,3; bonus2 bSubRace,RC_Demon,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5248,'Robotic_Blindfold','Robotic Blindfold',4,20,NULL,200,NULL,1,NULL,0,0xFFFFFFFF,7,2,512,NULL,0,0,292,'bonus2 bResEff,Eff_Blind,10000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5249,'Human_Blindfold','Human Blindfold',4,20,NULL,200,NULL,1,NULL,0,0xFFFFFFFF,7,2,512,NULL,0,0,293,'bonus2 bResEff,Eff_Blind,10000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5250,'Robotic_Ears','Robotic Ears',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,7,2,512,NULL,0,0,294,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5251,'Round_Ears','Round Ears',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,7,2,512,NULL,0,0,295,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5252,'Drooping_Nine_Tail','Drooping Ninetail',4,20,NULL,300,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,20,1,296,'bonus bAgi,1; bonus bDex,1; bonus3 bAutoSpellWhenHit,"PR_GLORIA",1,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5253,'Lif_Doll_Hat','Lif Doll Hat',4,20,NULL,200,NULL,1,NULL,1,0xFFFFFFFF,7,2,256,NULL,20,1,297,'bonus bInt,1; bonus bMdef,getrefine(); bonus bDef,getrefine()*-1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5254,'Deviling_Hat','Deviling Hat',4,20,NULL,500,NULL,1,NULL,1,0xFFFFFFFF,7,2,256,NULL,20,1,298,'bonus bStr,1; bonus bCritical,3; bonus2 bSubRace,RC_Angel,-20; if(getrefine()>=6){ bonus bCritical,getrefine()-5; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (5255,'Triple_Poring_Hat','Triple Poring Hat',4,20,NULL,600,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,20,0,299,'bonus bLuk,3; bonus3 bAutoSpell,"BS_GREED",1,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5256,'Valkyrie_Feather_Band','Valkyrie Feather Band',4,20,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,7,2,256,NULL,20,1,300,'bonus bInt,1; bonus3 bAutoSpellWhenHit,"AL_HEAL",1,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5257,'Soulless_Wing','Soul Ring',4,20,NULL,300,NULL,2,NULL,0,0xFFFFFFFE,7,2,256,NULL,20,1,301,'bonus bMdef,2; bonus3 bAutoSpellWhenHit,"HP_ASSUMPTIO",1,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5258,'Afro_Wig','Afro Wig',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,7,2,768,NULL,10,1,302,'bonus3 bAutoSpellWhenHit,"NV_FIRSTAID",1,300; bonus2 bSubEle,Ele_Neutral,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5259,'Elephant_Hat_','Elephant Hat',4,20,NULL,500,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,215,'bonus bVit,1; bonus3 bAutoSpell,"WZ_WATERBALL",3,10; skill "AL_HOLYWATER",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5260,'Cookie_Hat','Cookie Hat',4,20,NULL,500,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,217,'bonus bAgi,1; bonus bFlee2,5; bonus bCritAtkRate,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5261,'Silver_Tiara_','Silver Tiara',4,20,NULL,500,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,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);',NULL,NULL); -REPLACE INTO `item_db` VALUES (5262,'Gold_Tiara_','Golden Tiara',4,20,NULL,500,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,232,'bonus bStr,2; bonus bUnbreakableHelm; if((readparam(bDex)<56)&&(BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Thief)) bonus bDex,JobLevel/7;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5263,'Ati_Atihan_Hat','Pagdayaw',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFE,7,2,769,NULL,20,1,303,'bonus2 bSubEle,Ele_Water,1; bonus2 bSubEle,Ele_Earth,1; bonus2 bSubEle,Ele_Fire,1; bonus2 bSubEle,Ele_Wind,1; bonus2 bAddEff,Eff_Curse,300;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5264,'Aussie_Flag_Hat','Australian Flag Hat',4,20,NULL,500,NULL,4,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,304,'bonus bAllStats,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5265,'Apple_Of_Archer_C','Apple of Archer',4,1,NULL,0,NULL,7,NULL,0,0xFFFFFFFE,7,2,256,NULL,1,0,72,'bonus bDex,4;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5266,'Bunny_Band_C','Bunny Band',4,1,NULL,0,NULL,9,NULL,0,0xFFFFFFFF,7,2,256,NULL,1,0,15,'bonus bMdef,5; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5267,'Sahkkat_C','Sakkat',4,1,NULL,0,NULL,10,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,0,67,'bonus bAgi,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5268,'Lord_Circlet_C','Grand Circlet',4,1,NULL,0,NULL,10,NULL,0,0xFFFFFFFE,7,2,256,NULL,1,0,93,'bonus bStr,3; bonus bInt,3; bonus bLuk,3; bonus bMdef,4;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5269,'Flying_Angel_','Flapping Angel Wing',4,20,NULL,300,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,10,1,264,'bonus bInt,1; bonus bAgi,1; bonus bAspdRate,3; bonus bSpeedRate,25;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5270,'Fallen_Leaves_','Autumn Leaves',4,20,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,7,2,256,NULL,0,1,241,'bonus bFlee2,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5271,'Chinese_Crown_','Phoenix Crown',4,20,NULL,500,NULL,4,NULL,1,0xFFFFFFFF,7,2,768,NULL,0,1,221,'bonus bMdef,3; bonus2 bSubClass,Class_Boss,getrefine();',NULL,NULL); -REPLACE INTO `item_db` VALUES (5272,'Tongue_Mask_','Tongue Mask',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,7,2,513,NULL,0,0,253,'bonus3 bAutoSpell,"SM_PROVOKE",5,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5273,'Happy_Wig','Happy Wig',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,768,NULL,0,1,305,'bonus bSpeedRate,25; bonus bDef,4; skill "TF_HIDING",1;',NULL,'sc_end SC_HIDING;'); -REPLACE INTO `item_db` VALUES (5274,'Shiny_Wig','Shiny Wig',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,768,NULL,0,1,306,'bonus bSpeedRate,25; bonus bDef,4; skill "TF_HIDING",1;',NULL,'sc_end SC_HIDING;'); -REPLACE INTO `item_db` VALUES (5275,'Marvelous_Wig','Marvelous Wig',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,768,NULL,0,1,307,'bonus bSpeedRate,25; bonus bDef,4; skill "TF_HIDING",1;',NULL,'sc_end SC_HIDING;'); -REPLACE INTO `item_db` VALUES (5276,'Fantastic_Wig','Fantastic Wig',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,768,NULL,0,1,308,'bonus bSpeedRate,25; bonus bDef,4; skill "TF_HIDING",1;',NULL,'sc_end SC_HIDING;'); -REPLACE INTO `item_db` VALUES (5277,'Yellow_Bandana','Yellow Bandana',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFE,7,2,256,NULL,20,1,309,'bonus bLuk,2; bonus bVit,2; bonus bLongAtkDef,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5278,'Yellow_Ribbon','Yellow Ribbon',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFE,7,2,256,NULL,20,1,310,'bonus bLuk,2; bonus bVit,2; bonus bLongAtkDef,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5279,'Drooping_Kitty_C','Refined Drooping Cat',4,2,NULL,0,NULL,1,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,0,142,'bonus bMdef,15; bonus2 bResEff,Eff_Curse,3000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5280,'Magestic_Goat_C','Baphomet Horns',4,2,NULL,0,NULL,5,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,0,41,'bonus bStr,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5281,'Deviruchi_Cap_C','Refined Deviruchi Hat',4,2,NULL,0,NULL,2,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,0,123,'bonus bStr,1; bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5282,'euRO_Baseball_Cap','Europe Baseball Cap',4,0,NULL,200,NULL,3,NULL,1,0xFFFFFFFF,7,2,256,NULL,0,1,216,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5283,'Chick_Hat','Chick Hat',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,10,0,311,'bonus bLuk,2; bonus bMaxHP,50; bonus bMaxSP,50; skill "TF_DOUBLE",2; bonus bDoubleRate,10; bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5284,'Water_Lily_Crown','Water Lily Crown',4,20,NULL,200,NULL,0,NULL,1,0xFFFFFFFF,7,2,256,NULL,30,0,312,'bonus bDex,1; bonus bAgi,1; bonus bHPrecovRate,5; bonus bSPrecovRate,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5285,'Vane_Hairpin','Vane Hairpin',4,20,NULL,300,NULL,3,NULL,1,0xFFFFFFFF,7,2,256,NULL,30,0,313,'bonus bAgi,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5286,'Pecopeco_Hairband','Pecopeco Hairband',4,20,NULL,0,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,70,0,314,'bonus bSpeedRate,25; bonus bAspdRate,-10; bonus bCastrate,25;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5287,'Vacation_Hat','Vacation Hat',4,20,NULL,200,NULL,1,NULL,1,0xFFFFFFFF,7,2,256,NULL,30,0,315,'bonus bVit,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5288,'Red_Glasses','Red Glasses',4,20,NULL,0,NULL,1,NULL,0,0xFFFFFFFF,7,2,512,NULL,0,0,316,'bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5289,'Vanilmirth_Hat','Vanilmirth Hat',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,30,0,317,'bonus bUnbreakableHelm; bonus3 bAutoSpell,"MG_FIREBOLT",1,10; bonus3 bAutoSpell,"MG_COLDBOLT",1,10; bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",1,10; bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5290,'Drooping_Bunny_','Drooping Bunny',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,249,'bonus bDex,1; bonus bFlee,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5291,'Kettle_Hat','Kettle Hat',4,20,NULL,600,NULL,4,NULL,0,0xFFFFFFFF,7,2,256,NULL,30,1,318,'bonus4 bAutoSpell,"SA_DELUGE",2,10,0; bonus3 bAutoSpell,"WZ_WATERBALL",3,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5292,'Dragon_Skull','Dragon Skull',4,20,NULL,800,NULL,5,NULL,0,0xFFFFFFFF,7,2,256,NULL,50,1,319,'bonus2 bSubRace,RC_Dragon,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5293,'Ramen_Hat','Ramen Hat',4,20,NULL,0,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,0,320,'bonus bDex,4; bonus4 bAutoSpellWhenHit,"AL_DECAGI",1,30,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5294,'Whisper_Mask','Whisper Mask',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,769,NULL,0,0,321,'bonus bAgi,3; bonus2 bSubEle,Ele_Ghost,-10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5295,'Golden_Bandana','Golden Bandana',4,20,NULL,2400,NULL,4,NULL,0,0xFFFFFFFF,7,2,768,NULL,0,0,138,'bonus bMdef,4;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5296,'Drooping_Nine_Tail_','Drooping Nine Tail',4,20,NULL,300,NULL,1,NULL,1,0xFFFFFFFF,7,2,256,NULL,0,1,296,'bonus bAgi,1; bonus bCritical,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5297,'Soulless_Wing_','Soul Wing',4,20,NULL,300,NULL,2,NULL,1,0xFFFFFFFF,7,2,256,NULL,0,1,301,'bonus bAllStats,1; bonus2 bSPRegenRate,2,10000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5298,'Marvelous_Wig_','Dokebi\'s Wig',4,20,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,7,2,768,NULL,0,1,307,'bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubEle,Ele_Fire,-5; bonus2 bSubEle,Ele_Water,-5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5299,'Ati_Atihan_Hat_','Pagdayaw',4,20,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,7,2,769,NULL,0,0,303,'bonus3 bAutoSpell,"DC_SCREAM",1,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5300,'Bullock_Helm','Bullock Helm',4,20,NULL,800,NULL,2,NULL,0,0xFFFFFFFE,7,2,256,NULL,45,1,322,'bonus bMaxHP,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5301,'Russian_Ribbon','Victory Hairband',4,0,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,323,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5302,'Lotus_Flower_Hat','Flower Lily',4,0,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,30,1,324,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5303,'Flower_Coronet','Flower Crown',4,20,NULL,300,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,325,'bonus bMdef,3; bonus bMaxHP,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5304,'Cap_Of_Blindness','Cap Of Blindness',4,20,NULL,800,NULL,4,NULL,1,0xFFFFFFFF,7,2,769,NULL,50,1,326,'bonus2 bResEff,Eff_Curse,700; bonus2 bResEff,Eff_Blind,10000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5305,'Pirate_Dagger','Pirate Dagger',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,1,NULL,0,0,327,'bonus bBaseAtk,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5306,'Freyja_Crown','Freya\'s Crown',4,0,NULL,500,NULL,12,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,0,328,'bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5307,'Carmen_Miranda\'s_Hat','Carmen Miranda\'s Hat',4,20,NULL,400,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,329,'bonus bMdef,3; bonus3 bAutoSpellWhenHit,"DC_WINKCHARM",1,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5308,'Brazilian_Flag_Hat','Brazil National Flag Hat',4,20,NULL,300,NULL,3,NULL,1,0xFFFFFFFF,7,2,256,NULL,0,1,330,'bonus bSpeedAddRate,25;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5309,'Mahican','Wool Mask',4,20,NULL,200,NULL,1,NULL,0,0xFFFFFFFF,7,2,769,NULL,0,1,331,'skill "RG_GRAFFITI",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5310,'Bulb_Hairband','Shining Electric Bulb Hairband',4,20,NULL,100,NULL,3,NULL,1,0xFFFFFFFF,7,2,256,NULL,0,1,332,'bonus2 bSubEle,Ele_Dark,10; skill "MG_SIGHT",1;',NULL,'sc_end SC_SIGHT;'); -REPLACE INTO `item_db` VALUES (5311,'Large_Hibiscus','Large Hisbiscus',4,20,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,7,2,256,NULL,0,1,333,'bonus bMdef,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5312,'Ayothaya_Hat','Ayothaya King\'s Hat',4,20,NULL,100,NULL,5,NULL,1,0x000654E2,7,2,256,NULL,0,1,334,'bonus bStr,1; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5313,'Diadem','Diadem',4,20,NULL,100,NULL,3,NULL,1,0xFFFFFFFF,7,2,768,NULL,0,1,335,'bonus bInt,1; bonus bMatkRate,3; bonus bCastrate,-3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5314,'Hockey_Mask','Hockey Mask',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,513,NULL,50,0,336,'bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5315,'Observer','Observer',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,512,NULL,35,0,337,'skill "WZ_ESTIMATION",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5316,'Umbrella_Hat','Umbrella Hat',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,50,1,338,'bonus2 bSubEle,Ele_Water,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5317,'Fisherman_Hat','Fisherman\'s Hat',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,50,1,339,'bonus3 bAutoSpell,"WZ_WATERBALL",3,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5318,'Poring_Party_Hat','Poring Party Hat',4,20,NULL,0,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,340,'bonus bAllStats,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5319,'Hellomother_Hat','Hello Mother Hat',4,20,NULL,200,NULL,2,NULL,0,0xFFFFFFFE,7,2,256,NULL,10,1,341,'bonus bLuk,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5320,'Champion_Wreath','Champion Wreath',4,20,NULL,500,NULL,4,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,1,261,'bonus bAllStats,2; bonus4 bAutoSpellWhenHit,"AL_HEAL",1,50,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5321,'Indonesian_Bandana','Bandana Merah Putih',4,20,NULL,500,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,342,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5322,'Scarf','Kerchief',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,24,1,343,'bonus bMdef,2; bonus bFlee,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5323,'Misstrance_Crown','Misstrance Crown',4,20,NULL,0,NULL,10,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,0,165,'bonus bAllStats,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5324,'Little_Angel_Doll','Little Angel Doll',4,20,NULL,300,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,10,1,344,'bonus bDex,3; bonus4 bAutoSpellWhenHit,"CR_GRANDCROSS",3,30,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5325,'Robo_Eye','Robo Eye',4,20,NULL,200,NULL,2,NULL,0,0xFFFFFFFF,7,2,512,NULL,10,0,345,'bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5326,'Masquerade_C','Masquerade C',4,1,NULL,0,NULL,1,NULL,0,0xFFFFFFFF,7,2,512,NULL,0,0,78,'bonus2 bAddRace,RC_DemiHuman,7; bonus2 bAddRace,RC_Player_Human,7;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5327,'Orc_Hero_Helm_C','Refined Helmet of Orc Hero',4,1,NULL,0,NULL,10,NULL,0,0xFFFFFFFE,7,2,768,NULL,0,0,178,'bonus bStr,5; bonus bVit,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5328,'Evil_Wing_Ears_C','Evil Wing Ears C',4,1,NULL,0,NULL,2,NULL,0,0xFFFFFFFF,7,2,512,NULL,0,0,152,'bonus bStr,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5329,'Dark_Blindfold_C','Dark Blindfold C',4,1,NULL,0,NULL,1,NULL,0,0xFFFFFFFF,7,2,512,NULL,0,0,187,'bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Stun,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5330,'kRO_Drooping_Kitty_C','kRO Drooping Kitty C',4,1,NULL,0,NULL,6,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,0,142,'bonus bMdef,15; bonus2 bResEff,Eff_Curse,4000; bonus2 bResEff,Eff_Curse,1000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5331,'Corsair_C','Corsair C',4,1,NULL,0,NULL,10,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,0,105,'bonus bVit,3; bonus bInt,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5332,'Loki_Mask','Loki Mask',4,0,NULL,200,NULL,0,NULL,0,0xFFFFFFFF,7,2,513,NULL,20,0,346,'bonus bFlee2,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5333,'Radio_Antenna','Radio Antenna',4,0,NULL,1500,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,50,1,347,'bonus bMdef,5; bonus bCritical,5; bonus bFlee,5; skill "MG_LIGHTNINGBOLT",1; bonus4 bAutoSpellWhenHit,"MG_THUNDERSTORM",5,30,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5334,'Angeling_Wanna_Fly','Flapping Angeling',4,0,NULL,700,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,38,0,348,'bonus bLuk,2; bonus bMdef,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5335,'Jumping_Poring','Jumping Poring',4,0,NULL,300,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,0,349,'bonus bLuk,1; bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5336,'Guildsman_Recruiter','Guildsman Recruiter Hat',4,NULL,NULL,0,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,10,1,350,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5337,'Party_Recruiter_Hat','Party Recruiter Hat',4,0,NULL,0,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,10,1,351,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5338,'Bf_Recruiter_Hat','Bf Recruiter Hat',4,0,NULL,0,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,10,1,352,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5339,'Friend_Recruiter_Hat','Friend Recruiter Hat',4,0,NULL,0,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,10,1,353,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5340,'Deprotai_Doll_Hat','Defolty Doll Hat',4,0,NULL,500,NULL,0,NULL,1,0xFFFFFFFF,7,2,256,NULL,60,0,354,'bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bStr,2; bonus3 bAutoSpellWhenHit,"AL_ANGELUS",10,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5341,'Claris_Doll_Hat','Glaris Doll Hat',4,0,NULL,500,NULL,0,NULL,1,0xFFFFFFFF,7,2,256,NULL,60,0,355,'bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bInt,2; bonus bMagicHPGainValue,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5342,'Sorin_Doll_Hat','Sorin Doll Hat',4,0,NULL,500,NULL,0,NULL,1,0xFFFFFFFF,7,2,256,NULL,60,0,356,'bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bDex,2; autobonus "{ bonus bBaseAtk,50; }",20,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }";',NULL,NULL); -REPLACE INTO `item_db` VALUES (5343,'Tayelin_Doll_Hat','Telling Doll Hat',4,0,NULL,500,NULL,0,NULL,1,0xFFFFFFFF,7,2,256,NULL,60,0,357,'bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bAgi,2; bonus2 bAddItemHealRate,504,10; bonus2 bAddItemHealRate,547,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5344,'Binit_Doll_Hat','Bennit Doll Hat',4,0,NULL,500,NULL,0,NULL,1,0xFFFFFFFF,7,2,256,NULL,60,0,358,'bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bVit,2; autobonus "{ bonus bAspdRate,5; }",20,30000,0,"{ specialeffect2 EF_HASTEUP; }";',NULL,NULL); -REPLACE INTO `item_db` VALUES (5345,'Debril_Doll_Hat','W Doll Hat',4,0,NULL,500,NULL,0,NULL,1,0xFFFFFFFF,7,2,256,NULL,60,0,359,'bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bLuk,2; bonus2 bAddRace,RC_Undead,5; bonus2 bMagicAddRace,RC_Undead,5; bonus2 bSubRace,RC_Undead,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5346,'Gf_Recruiter_Hat','Gf Recruiter Hat',4,0,NULL,0,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,10,1,360,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5347,'Ph.D_Hat_','Ph.D Hat',4,20,NULL,200,NULL,3,NULL,1,0xFFFFFFFE,7,2,256,NULL,0,1,98,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5348,'Big_Sis\'_Ribbon_','Big Ribbon',4,15000,NULL,200,NULL,2,NULL,1,0xFFFFFFFE,7,2,256,NULL,0,1,28,'bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5349,'Boy\'s_Cap_','Boy\'s Cap',4,20,NULL,100,NULL,2,NULL,1,0xFFFFFFFE,7,2,256,NULL,0,1,102,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5350,'Pirate_Bandana_','Pirate Bandana',4,20,NULL,100,NULL,3,NULL,1,0xFFFFFFFE,7,2,256,NULL,0,1,74,'bonus bStr,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5351,'Sunflower_','Sunflower',4,20,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,7,2,256,NULL,0,0,37,'bonus2 bSubRace,RC_Insect,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5352,'Poporing_Cap','Poporing Cap',4,20,NULL,700,NULL,2,NULL,0,0xFFFFFFFE,7,2,256,NULL,38,1,361,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5353,'Helm_Of_Sun_','Hat of the Sun God',4,20,NULL,2400,NULL,4,NULL,1,0x00CFDF80,7,2,768,NULL,0,1,138,'bonus bStr,3; bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5354,'Muslim_Hat_M','Muslim Hat M',4,0,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,7,1,256,NULL,0,0,362,'bonus bCastrate,-5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5355,'Muslim_Hat_F','Selendang',4,0,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,7,0,256,NULL,0,0,363,'bonus bCastrate,-5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5356,'Pumpkin_Hat_H','Festival Pumpkin Hat',4,20,NULL,200,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,206,'bonus2 bSubRace,RC_Demon,5; bonus2 bAddRace,RC_Demon,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5357,'Wings_Of_Victory','Wings Of Victory',4,20,NULL,200,NULL,10,NULL,0,0xFFFFFFFF,7,2,768,NULL,0,0,365,'bonus bMdef,10; bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5358,'Pecopeco_Wing_Ears','Peco Ears',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,512,NULL,70,0,366,'bonus bAgi,1; bonus bMdef,2; bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5359,'J_Captain_Hat','Ship Captain Hat',4,20,NULL,300,NULL,3,NULL,1,0xFFFFFFFF,7,2,256,NULL,60,1,367,'bonus bDex,1; bonus bLongAtkRate,7; bonus bMaxHP,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5360,'Whikebain_Ears','Hyuke\'s Black Cat Ears',4,20,NULL,200,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,45,1,368,'bonus bFlee,10; bonus bCritical,3; bonus bCritAtkRate,10; bonus bDefRate,-50; bonus bDef2Rate,-50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5361,'Gang_Scarf','Gangster Scarf',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,1,NULL,60,0,369,'bonus bBaseAtk,5; if(BaseJob==Job_Rogue) skill "RG_GANGSTER",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5362,'Ninja_Scroll','Ninja Scroll',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFF,7,2,1,NULL,60,0,370,'bonus bMatkRate,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5363,'Helm_Of_Abyss','Helm Of Abyss',4,20,NULL,1000,NULL,2,NULL,1,0x000654E2,7,2,256,NULL,70,1,371,'bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player_Human,-10; bonus2 bSubClass,Class_Boss,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5364,'Dark_Snake_Lord_Hat','Evil Snake Lord Hat',4,20,NULL,500,NULL,2,NULL,1,0xFFFFFFFF,7,2,256,NULL,60,1,372,'bonus bStr,1; bonus bInt,1; bonus bAgi,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5365,'Fried_Egg','Magnolia Hat',4,20,NULL,100,NULL,3,NULL,1,0xFFFFFFFF,7,2,256,NULL,1,0,373,'bonus2 bResEff,Eff_Stun,500; skill "HT_FLASHER",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5366,'Hat_0f_King','Love Dad Bandana',4,20,NULL,200,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,374,'bonus bAllStats,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5367,'Hyegun_Hat','Hyegun Hat',4,20,NULL,100,NULL,5,NULL,1,0xFFFFFFFF,7,2,769,NULL,10,0,375,'bonus bMdef,3; bonus2 bSubRace,RC_Demon,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5368,'White_Wing','White Wing',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,38,'bonus2 bAddMonsterDropItem,12280,300;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5369,'Dark_Wing','Dark Wing',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,39,'bonus2 bAddMonsterDropItem,12279,300;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5370,'Orchid_Hairband','Orchid Hairband',4,20,NULL,200,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,376,'bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5371,'Hat_Of_Judge','Judge Hat',4,20,NULL,300,NULL,2,NULL,0,0xFFFFFFFF,7,2,768,NULL,0,1,377,'bonus bLuk,1; bonus bMaxSP,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5372,'Drooping_White_Kitty','Koneko Hat',4,20,NULL,500,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,378,'bonus bInt,1; bonus bDelayRate,-3; bonus bMatkRate,3; bonus bMaxSPrate,3; bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5373,'Darkness_Helm','Dark Randgris Helm',4,20,NULL,300,NULL,2,NULL,1,0xFFFFFFFF,7,2,768,NULL,0,1,379,'bonus bDex,3; bonus bMdef,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5374,'L_Magestic_Goat','Gigantic Majestic Goat',4,20,NULL,800,NULL,5,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,380,'bonus2 bAddRace,RC_DemiHuman,12; bonus2 bAddRace,RC_Player_Human,12; bonus bBaseAtk,(JobLevel*2)/7;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5375,'L_Orc_Hero_Helm','Orc Hero Headdress',4,20,NULL,900,NULL,5,NULL,1,0xFFFFFFFF,7,2,768,NULL,0,1,381,'bonus bStr,2; bonus3 bAutoSpellWhenHit,"BS_WEAPONPERFECT",3,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5376,'Satanic_Chain_P','Flying Evil Wing',4,20,NULL,100,NULL,3,NULL,1,0xFFFFFFFF,7,2,256,NULL,0,1,382,'bonus bMaxSP,120; bonus2 bAddEff2,Eff_Curse,300;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5377,'Antique_Pipe','Gentleman\'s Pipe',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,1,NULL,0,0,383,'bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5378,'Rabbit_Ear_Hat','Bunny Top Hat',4,20,NULL,300,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,384,'bonus bAgi,3; bonus3 bAutoSpellWhenHit,"AL_INCAGI",5,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5379,'Balloon_Hat','Tam',4,0,NULL,800,NULL,3,NULL,1,0xFFFFFFFF,7,2,256,NULL,50,1,385,'bonus bMdef,2; bonus bMatkRate,2+(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db` VALUES (5380,'Fish_Head_Hat','Fish Head Hat',4,20,NULL,400,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,386,'bonus3 bAutoSpell,"SA_FROSTWEAPON",1,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5381,'Santa_Poring_Hat','Santa Poring Hat',4,20,NULL,100,NULL,2,NULL,1,0xFFFFFFFF,7,2,256,NULL,0,0,387,'bonus bMdef,2; bonus2 bAddEle,Ele_Dark,3; bonus2 bSubEle,Ele_Dark,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5382,'Bell_Ribbon','Bell Ribbon',4,20,NULL,200,NULL,3,NULL,1,0xFFFFFFFF,7,2,256,NULL,0,1,388,'bonus bVit,1; skill "AL_ANGELUS",1;',NULL,'sc_end SC_ANGELUS;'); -REPLACE INTO `item_db` VALUES (5383,'Hunting_Cap','Hunter\'s Cap',4,20,NULL,250,NULL,3,NULL,1,0xFFFFFFFE,7,2,256,NULL,50,1,389,'bonus bLuk,1; bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Player_Doram,10; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5384,'Santa_Hat_1','Twin Pompom By JB',4,20,NULL,200,NULL,1,NULL,1,0xFFFFFFFF,7,2,256,NULL,20,1,390,'bonus bLuk,3; skill "WZ_ESTIMATION",1; bonus3 bAutoSpell,"AL_INCAGI",1,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5385,'Yoyo_Hat','Yoyo Hat',4,20,NULL,300,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,20,1,391,'skill "TF_HIDING", 1;',NULL,'sc_end SC_HIDING;'); -REPLACE INTO `item_db` VALUES (5386,'Ayam_','Ayam',4,0,NULL,70,NULL,7,NULL,0,0xFFFFFFFF,7,2,256,NULL,1,0,228,'bonus bMdef,7; bonus bFlee,7; bonus2 bAddMonsterDropItem,12198,200;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5387,'Neko_Mimi_Kafra','Neko Mimi Kafra',4,20,NULL,200,NULL,1,NULL,1,0xFFFFFFFF,7,2,256,NULL,30,1,392,'bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5388,'Snake_Head','Snake Head Hat',4,20,NULL,200,NULL,1,NULL,1,0xFFFFFFFF,7,2,256,NULL,30,1,393,'skill "TF_DOUBLE",5; bonus bDoubleRate,25;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5389,'Angel_Spirit','Angel Spirit',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFF,7,2,512,NULL,30,0,394,'bonus bStr,2; bonus bHit,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5390,'Santa_Hat_2','Frozen Twin Pompom',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,395,'bonus2 bResEff, Eff_Freeze, 3000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5391,'Toast_C','Toast',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,1,NULL,0,0,188,'bonus bMaxHP,100; bonus2 bAddMonsterDropItem,617,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5392,'Louyang_Cap','Luoyang NewYear Hat',4,20,NULL,300,NULL,3,NULL,1,0xFFFFFFFF,7,2,256,NULL,0,1,396,'bonus bLuk,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5393,'Valentine_Hat','Love Valentine\'s Hat',4,20,NULL,200,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,0,397,'bonus bMaxSPrate, 7; bonus bMaxHPrate, 7;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5394,'Bubblegum_Lower','Bubblegum',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,1,NULL,0,0,0,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5395,'Tiraya_Bonnet','Striped Hat',4,20,NULL,500,NULL,2,NULL,1,0xFFFFFFFF,7,2,256,NULL,50,1,398,'bonus bMaxHP,100+(getrefine()*20); bonus bLuk,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5396,'Jasper_Crest','Jasper Crest',4,20,NULL,700,NULL,2,NULL,1,0xFFFFFFFF,7,2,256,NULL,0,1,399,'bonus bDex,3; bonus bVit,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5397,'Scuba_Mask','Scuba Gear',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,512,NULL,0,0,400,'bonus2 bSubEle,Ele_Water, 10; bonus bUnbreakableHelm, 0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5398,'Bone_Head','Bone Head',4,20,NULL,1200,NULL,5,NULL,1,0x000444A2,2,2,256,NULL,85,1,401,'bonus bStr,2; bonus bMdef,5; bonus2 bResEff,Eff_Stun,500; bonus2 bResEff,Eff_Bleeding,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5399,'Mandragora_Cap','Mandragora Cap',4,20,NULL,300,NULL,1,NULL,1,0x00CFFF80,2,2,256,NULL,85,0,402,'bonus bVit,3; bonus3 bAutoSpellWhenHit,"DC_SCREAM",5,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5400,'Fox_Hat','Fox Hat',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFF,7,0,769,NULL,0,0,403,'bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5401,'Black_Glasses','Black Frame Glasses',4,20,NULL,200,NULL,1,NULL,0,0xFFFFFFFF,7,2,512,NULL,70,0,404,'bonus bInt,1; bonus bMdef,2; bonus bUnbreakableHelm, 0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5402,'Mischievous_Fairy','Mischievous Fairy',4,10,NULL,200,NULL,1,NULL,0,0xFFFFFFFF,7,2,512,NULL,70,0,405,'bonus bUnbreakableHelm, 0; bonus bFlee2, 3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5403,'Fish_In_Mouth','Fish In Mouth',4,10,NULL,200,NULL,0,NULL,0,0xFFFFFFFF,7,2,1,NULL,30,0,406,'bonus2 bAddMonsterDropItem,579,500; bonus2 bAddItemHealRate,579,25;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5404,'Blue_Ribbon','Blue Ribbon',4,10,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,7,2,256,NULL,45,1,407,'bonus4 bAutoSpellWhenHit,"AC_CONCENTRATION",2,7,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5405,'Filir_Hat','Filir Hat',4,10,NULL,200,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,80,0,408,'bonus bShortWeaponDamageReturn, 1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5406,'Academy_Freshman_Hat','Academy Freshman Hat',4,0,NULL,500,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,409,'bonus bMaxHP,80; bonus bMaxSP,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5407,'Academy_Graduating_Cap','Academy Completion Hat',4,0,NULL,200,NULL,2,NULL,1,0xFFFFFFFF,7,2,256,NULL,0,1,410,'bonus bMaxSP,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5408,'Old_Bandanna','Old Bandana',4,0,NULL,0,NULL,5,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,0,6,'bonus bInt,2; bonus bMaxSP,50; bonus bCastrate,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5409,'New_Cowboy_Hat','Purple Cowboy Hat',4,20,NULL,500,NULL,4,NULL,1,0xFFFFFFFF,7,2,256,NULL,0,1,411,'bonus bInt,2; bonus bVit,2; bonus bMaxSP,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5410,'Bread_Bag2','Brown Paperbag Hat',4,20,NULL,200,NULL,6,NULL,0,0xFFFFFFFF,7,2,769,NULL,0,0,412,'bonus bMaxHP,100; bonus2 bResEff, Eff_Stun, 400; bonus2 bSubRace,RC_DemiHuman,4; bonus2 bSubRace,RC_Player_Human,4;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5411,'White_Snake_Hat','White Snake Hat',4,20,NULL,500,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,413,'bonus bDex,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5412,'Sweet_Candy','Sweet Candy',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,1,NULL,0,0,414,'bonus bUnbreakableHelm, 0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5413,'Popcorn_Hat','Pop Corn Hat',4,20,NULL,300,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,0,415,'bonus2 bSubEle,Ele_Wind, 10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5414,'Campfire_Hat','Camp Fire Hat',4,20,NULL,300,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,0,416,'bonus2 bSubEle,Ele_Fire,10; bonus4 bAutoSpellWhenHit,"MG_FIREBALL",5,100,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5415,'Poring_Cake_Cap','Poring Cake Hat',4,20,NULL,1000,NULL,5,NULL,0,0xFFFFFFFF,7,2,256,NULL,40,1,417,'bonus bMdef,5; bonus bCritical,5; bonus bFlee,5; bonus bFlee2,5; bonus bAspdRate,5; bonus bCastrate,-5; bonus bDelayRate,-5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5416,'Beer_Cap','Beer Hat',4,20,NULL,600,NULL,2,NULL,0,0xFFFFFFFE,7,2,256,NULL,18,1,418,'bonus bFlee2,5; skill "SM_RECOVERY",3; skill "MG_SRECOVERY",3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5417,'Crown_Parrot','Crown Parrots',4,20,NULL,200,NULL,1,NULL,1,0xFFFFFFFF,7,2,256,NULL,0,0,419,'bonus bInt,1; bonus2 bResEff,Eff_Silence,10000; bonus3 bAutoSpell,"DC_SCREAM",1,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5418,'Soldier_Hat','Legionnaire Hat',4,20,NULL,400,NULL,4,NULL,1,0xFFFFFFFF,7,2,256,NULL,0,1,420,'bonus bStr,1; bonus2 bAddClass,Class_All,3; bonus bUseSPrate,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5419,'Evolved_Leaf','Leaves Of Grass',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,1,NULL,0,0,57,'bonus bVit,1; bonus2 bSubRace,RC_Plant,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5420,'Mask_Of_Ifrit','Mask Of Ifrit',4,NULL,NULL,0,NULL,8,NULL,0,0xFFFFFFFE,7,2,769,NULL,70,0,421,'bonus bStr,1; bonus bInt,1; bonus bMdef,5; bonus2 bSubEle,Ele_Fire,10; bonus2 bSubEle,Ele_Water,-10; skill "MG_SIGHT",1; bonus3 bAutoSpellWhenHit,"WZ_METEOR",3,50; bonus3 bAutoSpell,"MG_FIREBOLT",3,50;',NULL,'sc_end SC_SIGHT;'); -REPLACE INTO `item_db` VALUES (5421,'Ifrit\'s_Ear','Ears Of Ifrit',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,7,2,512,NULL,70,0,422,'bonus bStr,1; bonus bMdef,3; bonus2 bSkillAtk,"MG_FIREBOLT",2; bonus2 bSkillAtk,"WZ_FIREPILLAR",2; bonus2 bSkillAtk,"WZ_METEOR",2; bonus2 bSkillAtk,"SM_BASH",2; bonus2 bSkillAtk,"SM_MAGNUM",2; bonus2 bSkillAtk,"KN_PIERCE",2; bonus2 bSubEle,Ele_Fire,5; bonus2 bSubEle,Ele_Water,-5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5422,'Linguistic_Book_Cap','Linguistic Book Hat',4,20,NULL,70,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,423,'bonus bInt,1; bonus bMdef,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5423,'Lovecap_China','I Love China',4,20,NULL,250,NULL,5,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,0,424,'bonus bDex,3; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5424,'Fanta_Orange_Can','Fanta Orange Can Hat',4,20,NULL,100,NULL,2,NULL,1,0xFFFFFFFF,7,2,256,NULL,0,1,425,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5425,'Fanta_Grape_Can','Fanta Grape Can Hat',4,20,NULL,100,NULL,2,NULL,1,0xFFFFFFFF,7,2,256,NULL,0,1,426,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5426,'Karada_Meguri_Tea_Hat','Karada Meguricha Hat',4,20,NULL,100,NULL,2,NULL,1,0xFFFFFFFF,7,2,256,NULL,0,1,427,'bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5427,'Royal_Milk_Tea_Hat','Black Tea Kochakaden Hat',4,20,NULL,100,NULL,2,NULL,1,0xFFFFFFFF,7,2,256,NULL,0,1,428,'bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5428,'Bread_Bag1','RWC Anniversary Bread Envelope',4,NULL,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,769,NULL,0,1,429,'bonus2 bSubRace,RC_DemiHuman,12; bonus2 bSubRace,RC_Player_Human,12;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5429,'Bogy_Cap','Bogy Cap',4,20,NULL,100,NULL,2,NULL,1,0xFFFFFFFF,7,2,256,NULL,0,1,430,'bonus bHPrecovRate, 5; bonus bSPrecovRate, 5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5430,'Sacred_Torch_Coronet','Torch Cap',4,20,NULL,0,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,0,431,'bonus2 bSubEle,Ele_Fire,20; skill "MG_FIREBOLT",5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5431,'Chicken_Hat','Chicken Hat',4,20,NULL,1000,NULL,0,NULL,1,0xFFFFFFFF,7,2,256,NULL,30,1,432,'bonus3 bAutoSpell,"MC_LOUD",1,30; bonus bAspdRate,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5432,'Brazil_Baseball_Cap','bRO 4th Anniversary Hat',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,433,'if(gettime(DT_MONTH)==SEPTEMBER&&gettime(DT_DAYOFMONTH)>=10&&gettime(DT_DAYOFMONTH)<=24) bonus bAllStats, 4;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5433,'Golden_Wreath','Golden Laurel',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,434,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5434,'Cola_Can','Cola Can',4,20,NULL,100,NULL,2,NULL,1,0xFFFFFFFF,7,2,256,NULL,0,1,435,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5435,'Coke_Hat','Red Minstrel Hat',4,20,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,7,2,256,NULL,40,1,436,'bonus bInt,1; bonus bMaxSP,80; bonus bMdef,3; if(getrefine()>5) { bonus bMdef,getrefine()-5; bonus bMaxSP,(getrefine()-5)*10; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (5436,'Bride\'s_Corolla','Bride\'s Corolla',4,20,NULL,200,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,437,'bonus bLuk,3; bonus bMdef,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5437,'Flower_Of_Fairy','Fairy Flower',4,20,NULL,200,NULL,1,NULL,1,0xFFFFFFFF,7,2,256,NULL,0,1,438,'bonus bInt,1; bonus bMdef,1; bonus2 bSubRace,RC_Insect,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5438,'Fillet_Green','Cute Green Ribbon',4,500,NULL,100,NULL,1,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,0,439,'bonus bMaxSP,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5439,'Fillet_Red','Cute Red Ribbon',4,500,NULL,100,NULL,1,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,0,440,'bonus bMaxSP,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5440,'Fillet_Blue','Cute Blue Ribbon',4,500,NULL,100,NULL,1,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,0,441,'bonus bMaxSP,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5441,'Fillet_White','Cute White Ribbon',4,500,NULL,100,NULL,1,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,0,442,'bonus bMaxSP,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5442,'Necktie','Necktie',4,20,NULL,100,NULL,3,NULL,1,0xFFFFFFFF,7,2,256,NULL,70,1,443,'bonus bVit,1; bonus bHit,-5; bonus bUseSPrate,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5443,'Status_Of_Baby_Angel','Statue Of Baby Angel',4,20,NULL,600,NULL,3,NULL,1,0xFFFFFFFF,7,2,256,NULL,70,1,444,'bonus bMdef,2; bonus4 bAutoSpellWhenHit,"PR_STRECOVERY",1,20,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5444,'Hair_Brush','Hair Brush',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,445,'bonus bCritical,6;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5445,'Candy_Cane_In_The_Mouth','Candy Cane In Mouth',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,1,NULL,0,0,446,'bonus bMaxSP,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5446,'Cat_Foot_Hairpin','Catfoot Hairpin',4,20,NULL,200,NULL,0,NULL,1,0xFFFFFFFF,7,2,256,NULL,0,1,447,'bonus bFlee,5; bonus bFlee2,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5447,'Frog_Cap','Frog Hat',4,20,NULL,500,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,70,1,448,'bonus bMdef,1; bonus2 bAddRace,RC_Insect,12; bonus2 bMagicAddRace,RC_Insect,12;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5448,'Solo_Play_Box1','Soloplay Box1',4,NULL,NULL,300,NULL,0,NULL,1,0xFFFFFFFF,7,2,769,NULL,0,1,449,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5449,'Solo_Play_Box2','Soloplay Box2',4,NULL,NULL,300,NULL,0,NULL,1,0xFFFFFFFF,7,2,769,NULL,0,1,450,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5450,'Sun_Cap','Solar Hat',4,20,NULL,1000,NULL,0,NULL,0,0xFFFFFFFE,7,2,256,NULL,20,1,451,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5451,'Dragonhelm_Gold','RWC 2008 Dragon Helm Gold',4,20,NULL,2500,NULL,7,NULL,1,0xFFFFFFFF,7,2,256,NULL,1,0,452,'bonus bAspdRate,10; bonus bAllStats,3; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5452,'Dragonhelm_Silver','RWC 2008 Dragon Helm Silver',4,20,NULL,2500,NULL,5,NULL,1,0xFFFFFFFF,7,2,256,NULL,1,0,453,'bonus bAspdRate,7; bonus bAllStats,2; bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player_Human,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5453,'Dragonhelm_Copper','RWC 2008 Dragon Helm Copper',4,20,NULL,2500,NULL,0,NULL,1,0xFFFFFFFF,7,2,256,NULL,1,0,454,'bonus bAspdRate,5; bonus bAllStats,2; bonus2 bAddRace,RC_DemiHuman,1; bonus2 bAddRace,RC_Player_Human,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5454,'Dog_Cap_','Puppy Hat',4,20,NULL,500,NULL,3,NULL,1,0xFFFFFFFF,7,2,256,NULL,0,1,234,'bonus bStr,1; bonus bInt,1; autobonus "{ bonus bCritical,100; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; autobonus "{ bonus2 bIgnoreMdefClassRate,Class_Normal,100; bonus2 bIgnoreMdefClassRate,Class_Boss,100; }",10,3000,BF_MAGIC,"{ specialeffect2 EF_MAGICALATTHIT; }";',NULL,NULL); -REPLACE INTO `item_db` VALUES (5455,'Geographer_Band_','Decorative Geographer',4,20,NULL,500,NULL,1,NULL,1,0xFFFFFFFF,7,2,256,NULL,0,1,238,'bonus bInt,1; bonus3 bAutoSpell,"AL_HEAL",5,50; bonus3 bAutoSpellWhenHit,"AL_HEAL",5,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5456,'Vacation_Hat_','Summer Hat',4,20,NULL,200,NULL,0,NULL,1,0xFFFFFFFF,7,2,256,NULL,0,1,315,'bonus bVit,5; bonus bHPrecovRate,20; bonus bSPrecovRate,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5457,'Spring_Rabbit_Hat','Moon Rabbit Hat',4,20,NULL,300,NULL,2,NULL,1,0xFFFFFFFF,7,2,256,NULL,1,1,455,'bonus bAgi,3; bonus bBaseAtk,5; bonus bMatkRate,5; if(getrefine()>4) { bonus bBaseAtk,getrefine()-4; bonus bMatkRate,getrefine()-4; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (5458,'Pinwheel_Cap','Pinwheel Hat',4,20,NULL,200,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,456,'bonus bMaxHPrate,5; bonus bMaxSPrate,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5459,'Drooping_Bunny_Chusuk','Drooping Bunny',4,0,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,249,'bonus bDex,1; bonus bFlee,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5460,'Adv_Dragon_Skull','Evolved Dragon Skull Hat',4,20,NULL,1000,NULL,7,NULL,0,0xFFFFFFFF,7,2,256,NULL,60,1,457,'bonus bAllStats, 2; bonus bMaxHPrate, 3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5461,'Adv_Whisper_Mask','Evolved Whisper Mask',4,20,NULL,300,NULL,1,NULL,0,0xFFFFFFFF,7,2,769,NULL,50,1,458,'bonus bDex,3; bonus2 bSubEle,Ele_Ghost, 20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5462,'Spiked_Scarf','Spiked Scarf',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,1,NULL,90,0,459,'bonus bVit,1; bonus2 bAddRace,RC_DemiHuman,1; bonus2 bAddRace,RC_Player_Human,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5463,'Rainbow_Scarf','Rainbow Scarf',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,1,NULL,90,0,460,'bonus bInt,1; bonus bMdef,2; bonus bMatkRate,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5464,'Zaha_Doll_Hat','Zaha Doll Hat',4,20,NULL,0,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,0,461,'bonus bInt,2; skill "PR_MAGNIFICAT", 3;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5465,'Celestial_Hat','Hat Of Fortune',4,20,NULL,500,NULL,3,NULL,1,0xFFFFFFFF,7,2,256,NULL,40,1,462,'bonus bLuk,2; bonus bMdef,5; if(getrefine()>4) bonus bLuk,getrefine()-4;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5466,'Wind_Milestone','Wind Milestone',4,20,NULL,100,NULL,2,NULL,1,0xFFFFFFFF,7,2,256,NULL,30,1,463,'bonus bAgi,2; skill "AL_TELEPORT",1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5467,'Helm_Of_Dragoon','Helm Of Dragon',4,20,NULL,2000,NULL,5,NULL,0,0xFFFFFFFF,7,2,256,NULL,50,1,464,'bonus2 bAddRace,RC_Dragon,20; bonus3 bAutoSpell,"NPC_DRAGONFEAR",1,30;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5468,'Parade_Cap','Parade Hat',4,20,NULL,800,NULL,3,NULL,1,0xFFFFFFFF,7,2,256,NULL,0,1,465,'bonus bDelayRate,-5; bonus bMdef,2; if(getrefine()>5) bonus bCastrate,-(getrefine()-5);',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5469,'Noble_Hat','Musketeer Hat',4,20,NULL,300,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,30,1,466,'bonus bStr,2; bonus3 bAutoSpellWhenHit,"BS_ADRENALINE",1,7;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5470,'Eyes_Of_Darkness','Eye Of Darkness',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,512,NULL,50,0,467,'bonus bDex,1; bonus2 bResEff,Eff_Blind,10000;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5471,'Hairband_Of_Reginleif','Hairband Of Reginleif',4,20,NULL,800,NULL,1,NULL,0,0xFFFFFFFF,7,2,512,NULL,50,0,468,'bonus2 bSubEle,Ele_Water,3; bonus2 bSubEle,Ele_Fire,3; bonus2 bSubEle,Ele_Undead,3; bonus2 bSubEle,Ele_Ghost,3;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5472,'Red_White_Hat','Red Hat',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,469,'bonus3 bAddMonsterDropItem,550,RC_DemiHuman,3;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5473,'Forceps_Hairpin','Nipper Crab Hairpin',4,20,NULL,500,NULL,4,NULL,0,0xFFFFFFFF,7,2,256,NULL,30,1,470,'bonus3 bAutoSpellWhenHit,"MG_COLDBOLT",1,100; bonus3 bAddMonsterDropItem,991,RC_Fish,3;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5474,'Notice_Board','AFK Hat',4,20,NULL,700,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,10,0,471,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5475,'Cube_Mask','Mask Cube',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,513,NULL,0,0,472,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5476,'Hairband_Of_Grandpeco','Grand Peco Hairband',4,20,NULL,800,NULL,2,NULL,0,0xFFFFFFFF,7,2,768,NULL,30,1,473,'bonus bStr,2; bonus bMaxHPrate,-10; bonus2 bAddRace2,RC2_Orc,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5477,'Bro_Flag','Brazilian Flag Hat',4,20,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,7,2,256,NULL,30,1,474,'skill "SM_BASH", 1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5478,'Classic_Hat','Classic Hat',4,20,NULL,500,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,475,'bonus bStr,2; bonus bMaxHP,300;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5479,'Shaman\'s_Hair_Ornament','Shaman\'s Hair Decoration',4,20,NULL,300,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,30,1,476,'bonus bMdef,3; bonus bMaxHP,50; bonus2 bSubEle,Ele_Neutral,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5480,'Bizofnil_Wing_Deco','Bijofnil Wings',4,20,NULL,1000,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,30,1,477,'bonus bAllStats,2; bonus3 bAutoSpell,"PR_IMPOSITIO",3,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5481,'Hermose_Cap','Hermode Cap',4,20,NULL,1000,NULL,1,NULL,1,0xFFFFFFFF,7,2,256,NULL,1,1,478,'bonus bAspdRate,10; bonus bBaseAtk,-20; bonus bMatkRate,-10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5482,'Dark_Knight_Mask','Dark Knight Mask',4,NULL,NULL,3000,NULL,5,NULL,0,0xFFFFFFFF,7,2,769,NULL,80,1,479,'bonus bStr,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5483,'Odin_Mask','Odin Mask',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,513,NULL,50,0,480,'bonus bHit,-10; bonus2 bAddRace,RC_DemiHuman,6; bonus2 bAddRace,RC_Player_Human,6;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5484,'Taiwan_Flag_Hat','Holidays Hat',4,20,NULL,500,NULL,4,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,0,482,'bonus bAllStats,5; bonus2 bResEff,Eff_Stun,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5485,'Tiger_Face','Tiger Face',4,20,NULL,1000,NULL,3,NULL,0,0xFFFFFFFF,7,2,769,NULL,60,1,483,'bonus2 bSubRace,RC_Brute,5; bonus2 bAddRace,RC_Brute,5; bonus2 bMagicAddRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5; bonus2 bAddRace,RC_Player_Doram,5; bonus2 bMagicAddRace,RC_Player_Doram,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5486,'J_Anniversary_Hat','Anniversary Hat',4,20,NULL,300,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,395,'bonus bAllStats, 2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5487,'J_Poringcake_Hat','Poring Cake Hat',4,20,NULL,500,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,417,'bonus bLuk,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5488,'J_Twin_Santahat','Twin Santa Hat',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,390,'bonus bLuk,1; bonus bMdef,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5489,'Love_Daddy','Love Daddy Hat',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,484,'bonus bDex,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5490,'Anubis_Helm','Anubis Helm',4,20,NULL,0,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,70,0,485,'bonus bMdef,5; bonus2 bSubClass,Class_Boss,10; bonus bHealpower2,10; bonus bAddItemHealRate,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5491,'Hat_Of_Outlaw','Bandit Hat',4,20,NULL,800,NULL,3,NULL,1,0xFFFFFFFF,7,2,256,NULL,0,1,486,'bonus bStr,2; bonus2 bSubEle,Ele_Fire, 10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5492,'Boy\'s_Cap_I','Student Cap',4,0,NULL,0,NULL,5,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,0,102,'bonus bMdef,3; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5493,'Ulle_Cap_I','Ulle\'s Cap',4,0,NULL,0,NULL,3,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,0,254,'bonus bDex,2; bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5494,'Spinx_Helm_I','Sphinx Hat',4,0,NULL,0,NULL,5,NULL,0,0x00004082,7,2,257,NULL,0,0,137,'bonus bStr,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5495,'Power_Of_Thor','Power Of Thor',4,20,NULL,100,NULL,6,NULL,1,0xFFFFFFFF,7,2,256,NULL,75,1,493,'bonus bInt,1; bonus bDex,1; bonus bMdef,3; bonus bFlee,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5496,'Dice_Hat','Dice Hat',4,20,NULL,300,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,50,0,494,'bonus bLuk,4;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5497,'King_Tiger_Doll_Hat','King Tiger Doll Hat',4,20,NULL,400,NULL,3,NULL,1,0xFFFFFFFE,7,2,256,NULL,30,1,495,'bonus bStr,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5498,'Wondering_Wolf_Helm','Wandering Wolf Helm',4,20,NULL,600,NULL,5,NULL,0,0xFFFFFFFE,7,2,768,NULL,50,1,490,'bonus bVit,5; bonus bFlee,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5499,'Pizza_Hat','Pizza Hat',4,20,NULL,600,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,0,487,'skill "SM_PROVOKE", 1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5500,'Icecream_Hat','Icecream Hat',4,0,NULL,300,NULL,6,NULL,0,0xFFFFFFFF,7,2,256,NULL,30,1,488,'bonus bMdef,3; skill "MG_FROSTDIVER",3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5501,'Pirate\'s_Pride','Pirate\'s Pride',4,0,NULL,100,NULL,6,NULL,0,0xFFFFFFFF,7,2,256,NULL,10,0,496,'bonus2 bAddRace2,RC2_Ninja,5; bonus2 bSubRace2,RC2_Ninja,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5502,'Necromencer\'s_Hood','Necromancer\'s Hood',4,0,NULL,500,NULL,2,NULL,0,0xFFFFFFFF,7,2,768,NULL,1,1,491,'bonus5 bAutoSpellWhenHit,"NPC_DARKSTRIKE",5,5,BF_WEAPON|BF_MAGIC,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5503,'Rabbit_Magic_Hat','Magic Rabit Hat',4,0,NULL,800,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,497,'bonus bDex,2; bonus bAgi,2; bonus bMdef,1; bonus bMaxSP,50; bonus3 bAutoSpellWhenHit,"MG_FIREBOLT",1,20; bonus3 bAutoSpellWhenHit,"MG_COLDBOLT",1,20; bonus3 bAutoSpellWhenHit,"MG_LIGHTNINGBOLT",1,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5504,'China_Wedding_Veil','Wedding Weil',4,20,NULL,500,NULL,5,NULL,0,0xFFFFFFFF,7,2,768,NULL,70,1,489,'bonus bMdef,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5505,'Asara_Fairy_Hat','Asara Fairy Hat',4,0,NULL,500,NULL,2,NULL,0,0xFFFFFFFF,7,2,768,NULL,50,1,492,'skill "DC_DONTFORGETME",1; bonus bDex,2; bonus bLuk,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5506,'Blue_Pajamas_Hat','Blue Night Cap',4,0,NULL,100,NULL,4,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,501,'bonus bBaseAtk,5; bonus bMatkRate,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5507,'Pink_Pajamas_Hat','Pink Night Cap',4,0,NULL,100,NULL,4,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,502,'bonus bBaseAtk,5; bonus bMatkRate,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5508,'Shark_Hat','Shark Hat',4,20,NULL,500,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,503,'bonus bStr,1; bonus bAgi,2; bonus bMdef,1; bonus2 bAddEle,Ele_Water,5; bonus2 bSubEle,Ele_Water,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5509,'Sting_Hat','Sting hat',4,20,NULL,1000,NULL,5,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,504,'bonus bStr,2; bonus bVit,1; bonus bMdef,3; bonus2 bAddEle,Ele_Fire,5; bonus2 bSubEle,Ele_Earth,5; bonus3 bAutoSpell,"WZ_EARTHSPIKE",1,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5510,'Shower_Cap','Shower Cap',4,20,NULL,0,NULL,4,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,507,'bonus bMdef,3; bonus bFlee,3; bonus2 bAddEle,Ele_Water,10; bonus2 bSubRace,RC_Fish,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5511,'Samambaia','Samambaia',4,20,NULL,200,NULL,5,NULL,1,0xFFFFFFFF,7,2,768,NULL,30,1,508,'bonus bSPrecovRate,8;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5512,'Aquarius_Diadem','Aquarius Diadem',4,20,NULL,300,NULL,6,NULL,0,0xFFFFFFFF,7,2,256,NULL,70,1,509,'bonus bStr,2; bonus bFlee,10; bonus2 bSubEle,Ele_Wind, 5; if(getrefine()>6) { bonus bDef, 1; bonus bBaseAtk,15; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (5513,'Aquarius_Crown','Aquarius Crown',4,20,NULL,300,NULL,6,NULL,0,0xFFFFFFFF,7,2,256,NULL,70,1,510,'bonus bStr,2; bonus bFlee,10; bonus2 bSubEle,Ele_Wind, 5; if(getrefine()>6) { bonus bDef, 1; bonus bBaseAtk,15; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (5514,'Pisces_Diadem','Pisces Diadem',4,20,NULL,300,NULL,6,NULL,0,0xFFFFFFFF,7,2,256,NULL,70,1,511,'bonus bInt,2; bonus bMdef,5; bonus2 bSubEle,Ele_Water, 5; if(getrefine()>6) { bonus bDef, 1; bonus bMatkRate,2; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (5515,'Pisces_Crown','Pisces Crown',4,20,NULL,300,NULL,6,NULL,0,0xFFFFFFFF,7,2,256,NULL,70,1,512,'bonus bInt,2; bonus bMdef,5; bonus2 bSubEle,Ele_Water, 5; if(getrefine()>6) { bonus bDef, 1; bonus bMatkRate,2; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (5516,'Hawk_Eyes01','hawk Eyes',4,10,NULL,100,NULL,0,NULL,0,0x00000800,2,2,512,NULL,60,0,23,'bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5517,'Hawk_Eyes02','Hawk Eyes',4,10,NULL,100,NULL,0,NULL,0,0x00080808,7,2,512,NULL,60,0,23,'bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5518,'L_Magestic_Goat2','Gigantic Majestic Goat',4,20,NULL,800,NULL,5,NULL,0,0xFFFFFFFF,7,2,256,NULL,50,1,513,'bonus2 bSubRace,RC_DemiHuman,12; bonus2 bSubRace,RC_Player_Human,12; bonus bBaseAtk,(JobLevel*2)/7;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5519,'Peacock_Feather','Peacock Feather',4,20,NULL,800,NULL,4,NULL,1,0xFFFFFFFF,7,2,256,NULL,1,1,514,'bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5520,'Rabbit_Earplug','Rabbit Earplugs',4,NULL,NULL,400,NULL,0,NULL,1,0xFFFFFFFF,7,2,768,NULL,1,1,515,'bonus2 bAddClass,Class_All,4; bonus bMatkRate,4;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5521,'Angry_Mouth_C','Angry Mouth',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,1,NULL,0,0,194,'bonus bDelayRate,-3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5522,'Fanta_Zero_Lemon_Hat','Fanta Zero Lemon Hat',4,20,NULL,100,NULL,4,NULL,1,0xFFFFFFFF,7,2,256,NULL,0,1,516,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5523,'Sakura_Mist_Hat','Sakura Mist Hat',4,20,NULL,100,NULL,4,NULL,1,0xFFFFFFFF,7,2,256,NULL,0,1,517,'bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5524,'Sakura_Milk_Tea_Hat','Sakura Milk Tea Hat',4,20,NULL,100,NULL,4,NULL,1,0xFFFFFFFF,7,2,256,NULL,0,1,518,'bonus bVit,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5525,'First_Leaf_Tea_Hat','Flower Hat',4,20,NULL,100,NULL,4,NULL,1,0xFFFFFFFF,7,2,256,NULL,0,1,519,'bonus bMaxHP,80; bonus bMaxSP,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5526,'Lady_Tanee_Doll','Tanigumi Girl Doll',4,20,NULL,300,NULL,4,NULL,0,0xFFFFFFFF,7,2,256,NULL,60,0,520,'bonus bAgi,2; bonus bFlee,3; bonus2 bSubEle,Ele_Wind, 5; bonus2 bAddMonsterDropItem, 513, 200;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5527,'Lunatic_Hat','Lunatic Hat',4,20,NULL,300,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,1,1,521,'bonus bLuk,5; bonus bMdef,2; bonus bFlee2,5; bonus2 bAddMonsterDropItem,622,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5528,'King_Frog_Hat','Frog King Hat',4,20,NULL,500,NULL,4,NULL,1,0xFFFFFFFE,7,2,256,NULL,30,0,522,'bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5529,'Evil\'s_Bone_Hat','Satanic Bone Helm',4,20,NULL,600,NULL,6,NULL,1,0xFFFFFFFF,7,2,768,NULL,70,1,523,'bonus bDex,3; bonus2 bSubEle,Ele_Neutral,5; skill "WZ_FROSTNOVA",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5530,'Raven_Cap','Raven Cap',4,20,NULL,100,NULL,6,NULL,1,0xFFFFFFFF,7,2,256,NULL,30,1,524,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5531,'B_Dragon_Hat','Baby Dragon Hat',4,45000,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,7,2,256,NULL,0,1,525,'bonus bDex,2; .@bonus = max(getskilllv("TF_DOUBLE"), 5); skill "TF_DOUBLE",.@bonus; bonus bDoubleRate,.@bonus * 5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5532,'Pirate_Dagger_J','Pirate Dagger',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,1,NULL,0,1,327,'bonus bShortWeaponDamageReturn,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5533,'Emperor_Wreath_J','Emperor Wreath',4,20,NULL,800,NULL,3,NULL,1,0xFFFFFFFF,7,2,256,NULL,80,1,261,'bonus bAllStats,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5534,'Fox_Hat_J','Fox Hat',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,513,NULL,70,0,403,'bonus bAgi,1; bonus bFlee2,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5535,'Side_Cap','Side Cap',4,0,NULL,500,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,529,'bonus bVit,1; bonus bDex,1; bonus bMdef,3; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player_Human,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5536,'Spare_Card','Spare Card',4,20,NULL,10,NULL,1,NULL,0,0xFFFFFFFF,7,2,1,NULL,1,0,526,'bonus2 bAddMonsterDropItem,6187,1000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5537,'Quati_Hat','Kwati Hat',4,20,NULL,700,NULL,2,NULL,1,0xFFFFFFFF,7,2,256,NULL,45,0,527,'bonus bAgi,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5538,'Tucan_Hat','Tucan Hat',4,20,NULL,600,NULL,2,NULL,1,0xFFFFFFFF,7,2,768,NULL,45,0,528,'bonus bDex,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5539,'Jaguar_Hat','Jaguar Hat',4,20,NULL,400,NULL,4,NULL,1,0xFFFFFFFF,7,2,769,NULL,25,1,530,'bonus bMdef,2; skill "MC_LOUD", 1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5540,'Freyja_SCirclet7','Freyja SCirclet7',4,20,NULL,700,NULL,8,NULL,0,0xFFFFFFFF,7,2,256,NULL,20,0,18,'bonus bStr,1; bonus bInt,1; bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5541,'Freyja_SCirclet30','Freyja SCirclet30',4,20,NULL,700,NULL,8,NULL,0,0xFFFFFFFF,7,2,256,NULL,20,0,18,'bonus bStr,1; bonus bInt,1; bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5542,'Freyja_SCirclet60','Freyja SCirclet60',4,20,NULL,700,NULL,8,NULL,0,0xFFFFFFFF,7,2,256,NULL,20,0,18,'bonus bStr,1; bonus bInt,1; bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5543,'Freyja_SCirclet90','Freyja SCirclet90',4,20,NULL,700,NULL,8,NULL,0,0xFFFFFFFF,7,2,256,NULL,20,0,18,'bonus bStr,1; bonus bInt,1; bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5544,'Time_Keeper_Hat','Time Keeper Hat',4,30000,NULL,0,NULL,6,NULL,0,0xFFFFFFFF,7,2,256,NULL,1,1,240,'bonus bInt,2; bonus bMaxSP,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5545,'Aries_Diadem','Aries Diadem',4,20,NULL,400,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,70,1,531,'bonus bVit,2; bonus2 bSubEle,Ele_fire,5; if(getrefine()>6) { bonus bDef,1; bonus bVit,1; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (5546,'Aries_Crown','Aries Crown',4,20,NULL,400,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,70,1,532,'bonus bVit,2; bonus2 bSubEle,Ele_fire,5; if(getrefine()>6) { bonus bDef,1; bonus bVit,1; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (5547,'RJC_Katusa','RJC Katusa Flower',4,20,NULL,200,NULL,1,NULL,1,0xFFFFFFFF,7,2,256,NULL,0,1,533,'bonus2 bSkillAtk, "WZ_HEAVENDRIVE", 15 + getequiprefinerycnt(EQI_HAND_R); bonus2 bSkillAtk, "WZ_EARTHSPIKE", 15 + getequiprefinerycnt(EQI_HAND_R); bonus2 bCastrate, "WZ_HEAVENDRIVE", -25; bonus2 bCastrate, "WZ_EARTHSPIKE", -25; ;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5548,'Scarlet_Rose','Scarlet Rose',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,1,NULL,50,1,534,'bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5549,'Taurus_Diadem','Taurus Diadem',4,20,NULL,300,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,70,1,535,'bonus bDex,2; bonus bDelayRate,-2; bonus2 bSubEle,Ele_earth,5; if(getrefine()>6) { bonus bDex,1; bonus bMatkRate,1; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (5550,'Taurus_Crown','Taurus Crown',4,20,NULL,300,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,70,1,536,'bonus bDex,2; bonus bDelayRate,-2; bonus2 bSubEle,Ele_earth,5; if(getrefine()>6) { bonus bDex,1; bonus bMatkRate,1; }',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5551,'Holy_Egg_Hat','Holy Egg Hat',4,20,NULL,0,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,537,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5552,'Fest_Lord_Circlet','Festival Grand Circlet',4,0,NULL,0,NULL,8,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,0,93,'bonus bStr,3; bonus bInt,3; bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5553,'Fest_Bunny_Band','Festival Bunny Band',4,0,NULL,0,NULL,7,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,0,15,'bonus bMdef,4; bonus2 bSubRace,RC_DemiHuman,9; bonus2 bSubRace,RC_Player_Human,9;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5554,'Octopus_Hat','Octopus Hat',4,20,NULL,200,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,20,1,538,'bonus3 bAutoSpell,"SM_PROVOKE",5,10; bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5555,'Leaf_Cat_Hat','Leaf Cat Hat',4,20,NULL,100,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,539,'bonus bAgi,1; bonus3 bAutoSpellWhenHit,"AL_HEAL",3,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5556,'Fur_Seal_Hat','Seal Hat',4,20,NULL,500,NULL,3,NULL,0,0xFFFFFFFF,7,2,769,NULL,55,1,540,'bonus bInt,1; bonus3 bAutoSpell,"WZ_FROSTNOVA",1,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5557,'Wild_Rose_Hat','Wild Rose Hat',4,20,NULL,500,NULL,6,NULL,1,0xFFFFFFFE,7,2,256,NULL,20,1,541,'bonus bAgi,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5558,'Saci_Hat','Luxury Hat',4,20,NULL,100,NULL,6,NULL,1,0xFFFFFFFF,7,2,256,NULL,30,1,542,'bonus3 bAddMonsterDropItem,510,RC_Plant,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5559,'Piece_Of_White_Cloth_E','Piece Of White Cloth',4,0,NULL,0,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,543,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5560,'Bullock_Helm_J','Bullock Helm',4,20,NULL,3000,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,75,1,322,'bonus bMaxHP,100; bonus bNoKnockback; 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;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5561,'Rabbit_Magic_Hat_J','Magic Rabbit Hat',4,0,NULL,800,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,497,'bonus bInt,1; bonus bMaxSP,50; bonus4 bAutoSpellWhenHit,"MG_FIREBOLT",3,10,3; bonus4 bAutoSpellWhenHit,"MG_COLDBOLT",3,10,3; bonus4 bAutoSpellWhenHit,"MG_LIGHTNINGBOLT",3,10,3; bonus3 bAutoSpellWhenHit,"AL_HEAL",1,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5562,'Good_Wedding_Veil_J','Luxurious Wedding Veil',4,0,NULL,500,NULL,0,NULL,1,0xFFFFFFFF,7,2,768,NULL,45,0,489,'bonus bMdef,10; bonus bCastRate,-3; bonus bUseSPrate,-5;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5563,'Dolor_Hat','Dolor Hat',4,20,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,7,2,256,NULL,0,0,547,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5564,'Crown_Of_Deceit','Crown of Deceit',4,20,NULL,300,NULL,3,NULL,1,0xFFFFFFFF,7,2,768,NULL,85,1,544,'bonus bInt,4; bonus bCastRate,-10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5565,'Dragon_Arhat_Mask','Dragon Arhat Mask',4,0,NULL,0,NULL,5,NULL,0,0xFFFFFFFF,7,2,513,NULL,1,0,545,'bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5566,'Tiger_Arhat_Mask','Tiger Arhat Mask',4,0,NULL,0,NULL,1,NULL,0,0xFFFFFFFF,7,2,513,NULL,1,0,546,'bonus2 bAddRace,RC_DemiHuman,2; bonus2 bAddRace,RC_Player_Human,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5567,'Bright_Fury','Bright Fury',4,20,NULL,300,NULL,1,NULL,1,0xFFFFFFFF,7,2,256,NULL,1,1,548,'bonus bStr,1; bonus2 bAddClass,Class_All,2; bonus bAspdRate,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5568,'Rabbit_Bonnet','Rabbit Bonnet',4,20,NULL,1000,NULL,1,NULL,1,0xFFFFFFFF,7,2,768,NULL,0,1,549,'bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5569,'Gemini_Diadem','Gemini Diadem',4,20,NULL,300,NULL,4,NULL,0,0xFFFFFFFF,7,2,256,NULL,70,1,550,'bonus bAgi,2; bonus bMatkRate,2; if(getrefine()>6) { bonus bMdef,7; bonus bMAtkRate,8; bonus2 bSubEle,Ele_Wind,5; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (5570,'Gemini_Crown','Gemini Crown',4,20,NULL,300,NULL,4,NULL,0,0xFFFFFFFF,7,2,256,NULL,70,1,551,'bonus bAgi,2; bonus bBaseAtk,2; bonus bMdef,5; if(getrefine()>6) { bonus bDef,1; bonus bMatk,15; bonus bFlee,10; bonus2 bSubEle,Ele_Wind,5; }',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5571,'Rasta_Wig','Rasta_Wig',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,552,'bonus bStr,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5572,'Savage_Baby_Hat','Savage Babe Hat',4,20,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,7,2,256,NULL,1,1,553,'bonus bVit,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5573,'Bogy_Horn','Dokebi Horn',4,20,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,7,2,256,NULL,0,1,554,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5574,'Pencil_In_Mouth','Well-Chewed Pencil',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,1,NULL,10,0,555,'bonus bdex,2; bonus bHitRate,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5575,'Onigiri_Hat','Rice Ball Hat',4,20,NULL,100,NULL,6,NULL,1,0xFFFFFFFF,7,2,256,NULL,30,0,556,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5576,'Japan_Winecup','Wine Cup',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,1,NULL,0,0,557,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5577,'Dark_Knight_MaskB','Dark Knight Mask',4,NULL,NULL,3000,NULL,5,NULL,0,0xFFFFFFFF,7,2,769,NULL,80,1,479,'bonus bStr,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5578,'Voyage_Hat','Voyage_Hat',4,200,NULL,10,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,236,'bonus bAgi,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5579,'Wanderer\'s_Sakkat','Wanderer\'s Sakkat',4,20,NULL,300,NULL,2,NULL,1,0xFFFFFFFF,7,2,768,NULL,70,1,558,'bonus bAgi,2;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5580,'Red_Beret','Red Beret',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,0,559,'bonus bAllStats,3; bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5581,'Cancer_Diadem','Cancer Diadem',4,20,NULL,300,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,70,1,560,'bonus bInt,2; bonus2 bSubEle,Ele_water, 5; if(getrefine()>6) { bonus bMdef,1; bonus bHealPower, 3; bonus bMatkRate,2; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (5582,'Cancer_Crown','Cancer Crown',4,20,NULL,300,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,70,1,561,'bonus bStr,2; bonus2 bSubEle,Ele_water, 5; if(getrefine()>6) { bonus bDef, 1; bonus bBaseAtk,15; bonus bFlee,10; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (5583,'Para_Team_Hat','Eden Team Hat',4,0,NULL,0,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,12,1,465,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5584,'Majestic_Evil_Horn','Majestic Evil Horns',4,0,NULL,400,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,1,1,562,'bonus2 bSubRace,RC_Demon,3; bonus2 bHPDrainRate,3,15; bonus2 bSPDrainRate,1,7;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5585,'Rune_Hairband','Rune Cloth Circlet',4,20,NULL,400,NULL,1,NULL,1,0xFFFFFFFF,7,2,768,NULL,1,1,564,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5586,'Mosquito_Coil','Mosquito Coil',4,20,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,7,2,256,NULL,1,1,563,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5587,'Mosquito_Coil_1Use','Mosquito Coil',4,0,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,1,1,563,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5588,'Leo_Crown','Leo Crown',4,20,NULL,300,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,70,1,565,'bonus bStr,2; bonus2 bSubEle,Ele_Fire,5; if(getrefine()>6) { bonus bDef,1; bonus bFlee,10; bonus3 bAutoSpell,"TK_SEVENWIND",4,50; }',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5589,'Leo_Diadem','Leo Diadem',4,20,NULL,300,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,70,1,566,'bonus bDex,2; bonus2 bSubEle,Ele_Fire,5; if(getrefine()>6) { bonus bFlee,10; bonus bAspdRate,3; autobonus "{ bonus bSplashRange,1; }",10,10000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (5590,'K_Poring_Cake_Cap','Poring Cake Hat',4,20,NULL,200,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,417,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5591,'Desert_Prince','Desert Prince',4,20,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,7,2,256,NULL,30,0,567,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5592,'Sigrun\'s_Wing','Sigrun\'s Wings',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,7,2,512,NULL,80,0,568,'if(BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Thief||(BaseJob==Job_Taekwon&&Class!=Job_Soul_Linker)) bonus bStr,1; else if(BaseClass==Job_Mage||BaseClass==Job_Acolyte||class==Job_Ninja||class==Job_Soul_Linker) bonus bInt,1; else if(BaseClass==Job_Archer||BaseClass==Job_Gunslinger) bonus bDex,1; else if(BaseJob==Job_Novice||BaseJob==Job_SuperNovice) { bonus bMaxHP,80; bonus bMaxSP,30; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (5593,'K_Rabbit_Bonnet','Rabbit Bonnet',4,20,NULL,200,NULL,1,NULL,1,0xFFFFFFFF,7,2,768,NULL,1,1,549,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5594,'Donut_In_Mouth','Donut In Mouth',4,20,NULL,50,NULL,1,NULL,0,0xFFFFFFFF,7,2,1,NULL,1,0,569,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5595,'Eye_Of_Juno','Eye Of Juno',4,20,NULL,400,NULL,2,NULL,1,0xFFFFFFFF,7,2,256,NULL,1,1,570,'bonus bMdef,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5596,'4Leaf_Clover_In_Mouth','4Leaf Clover In Mouth',4,20,NULL,0,NULL,2,NULL,0,0xFFFFFFFF,7,2,1,NULL,1,0,571,'bonus bMdef,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5597,'Bubble_Gum_In_Mouth','Bubble Gum In Mouth',4,20,NULL,0,NULL,2,NULL,0,0xFFFFFFFF,7,2,1,NULL,1,0,572,'bonus bMdef,2;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5598,'Virgo_Crown','Virgo Crown',4,20,NULL,300,NULL,3,NULL,1,0xFFFFFFFF,7,2,256,NULL,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; }"; }',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5599,'Virgo_Diadem','Virgo Diadem',4,20,NULL,300,NULL,3,NULL,1,0xFFFFFFFF,7,2,256,NULL,70,1,574,'bonus bAspdRate,3; bonus2 bSubEle,Ele_Earth,5; if(getrefine()>6) bonus3 bAutoSpell,"MO_BALKYOUNG",1,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5600,'Br_Twin_Ribbon','Brazil Twin Ribbon',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,1,1,575,'bonus bAllStats,3; bonus bMdef,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5601,'Br_Beret','Brazil Beret',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,1,1,576,'bonus bAllStats,3; bonus bMdef,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5602,'Jaguar_Hat_J','Jaguar Hat J',4,20,NULL,300,NULL,0,NULL,1,0xFFFFFFFF,7,2,513,NULL,50,0,530,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5603,'RTC_Winner_Only','RTC First Place',4,0,NULL,250,NULL,8,NULL,1,0xFFFFFFFF,7,2,256,NULL,1,1,577,'bonus bAllStats, 3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5604,'RTC_Second_Best','RTC Second Place',4,0,NULL,250,NULL,6,NULL,1,0xFFFFFFFF,7,2,256,NULL,1,1,578,'bonus bAllStats, 2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5605,'RTC_Third_Best','RTC Third Place',4,0,NULL,250,NULL,4,NULL,1,0xFFFFFFFF,7,2,256,NULL,1,1,579,'bonus bAllStats, 1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5606,'Campume_Hat','Champune Hat',4,500,NULL,1200,NULL,4,NULL,1,0xFFFFFFFF,7,2,256,NULL,3,1,580,'bonus bAllStats,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5607,'Lyria_Doll_Hat','Lyria Doll Hat',4,0,NULL,500,NULL,0,NULL,1,0xFFFFFFFF,7,2,256,NULL,60,0,581,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5608,'Dorothy_Doll_Hat','Dorothy Doll Hat',4,0,NULL,500,NULL,0,NULL,1,0xFFFFFFFF,7,2,256,NULL,60,0,582,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5609,'Chung_Hairband','Chung Hairband',4,0,NULL,500,NULL,5,NULL,1,0xFFFFFFFF,7,2,256,NULL,60,0,583,'bonus bLuk,3; bonus bMdef,4;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5610,'Ice_Wing_Ear','Ice Wing Ear',4,0,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,512,NULL,10,0,584,'bonus bLuk,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5611,'Turtle_Hat','Turtle_Hat',4,0,NULL,300,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,10,1,585,'bonus bAgi,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5612,'F_Blue_Drooping_Kitty','F Blue Drooping Kitty',4,250000,NULL,500,NULL,1,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,1,277,'bonus bMdef,15;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5613,'F_Flying_Angel','F Flying Angel',4,20,NULL,300,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,10,1,264,'bonus bInt,1; bonus bAgi,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5614,'F_Smoking_Pipe_','F Smoking Pipe',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,7,2,1,NULL,0,0,55,'bonus bVit,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5615,'F_Pair_Of_Red_Ribbon_','F Pair Of Red Ribbon',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,512,NULL,45,0,169,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5616,'F_Fish_On_Head_','F Fish On Head',4,20,NULL,500,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,50,1,149,'bonus bDex,1; bonus bAgi,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5617,'F_Hibiscus','F Hibiscus',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,10,0,210,'bonus bInt,1; bonus bDex,1; bonus bMdef,5;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5618,'F_Cat_Hat','F Cat Hat',4,20,NULL,300,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,182,'bonus bLuk,2; bonus bMdef,10;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5619,'F_Bunny_Band_','F Bunny Band',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,15,'bonus bInt,2;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5620,'F_Magestic_Goat_TW','F Magestic Goat TW',4,20,NULL,800,NULL,5,NULL,0,0x006444A2,7,2,256,NULL,0,1,41,'bonus bStr,2;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5621,'F_Sheep_Hat','F Sheep Hat',4,20,NULL,150,NULL,1,NULL,0,0x00008110,7,2,256,NULL,0,0,205,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5622,'F_Mini_Propeller_','F Mini Propeller',4,20,NULL,200,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,270,'bonus bDex,1; bonus bAgi,2;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5623,'F_Alice_Doll','F Alice Doll',4,20,NULL,500,NULL,0,NULL,1,0xFFFFFFFE,7,2,256,NULL,30,0,208,'bonus bStr,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5624,'F_Red_Glasses','F Red Glasses',4,20,NULL,0,NULL,1,NULL,0,0xFFFFFFFF,7,2,512,NULL,0,0,316,'bonus bInt,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5625,'F_Chick_Hat','F Chick Hat',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,10,0,311,'bonus bLuk,2;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5626,'F_White_Deviruchi_Cap','F White Deviruchi Cap',4,20,NULL,800,NULL,2,NULL,0,0xFFFFFFFE,7,2,256,NULL,64,1,272,'bonus bStr,1; bonus bInt,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5627,'F_Vane_Hairpin','F Vane Hairpin',4,20,NULL,300,NULL,2,NULL,1,0xFFFFFFFF,7,2,256,NULL,30,0,313,'bonus bAgi,2;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5628,'F_Pecopeco_Hairband','F Pecopeco Hairband',4,20,NULL,0,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,0,314,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5629,'F_Vacation_Hat','F Vacation Hat',4,20,NULL,200,NULL,1,NULL,1,0xFFFFFFFF,7,2,256,NULL,30,0,315,'bonus bVit,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5630,'F_Charming_Ribbon','F Charming Ribbon',4,20,NULL,400,NULL,1,NULL,1,0xFFFFFFFF,7,2,256,NULL,10,1,211,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5631,'F_Water_Lily_Crown','F Water Lily Crown',4,20,NULL,200,NULL,0,NULL,1,0xFFFFFFFF,7,2,256,NULL,30,0,312,'bonus bDex,1; bonus bAgi,1; bonus bMdef,3;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5632,'F_Vanilmirth_Hat','F Vanilmirth Hat',4,20,NULL,1000,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,30,0,317,'bonus bMdef,5;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5633,'F_Drooping_Bunny_','F Drooping Bunny',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,249,'bonus bDex,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5634,'F_Kettle_Hat','F Kettle Hat',4,20,NULL,600,NULL,4,NULL,0,0xFFFFFFFF,7,2,256,NULL,30,1,318,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5635,'F_Dragon_Skull','F Dragon Skull',4,20,NULL,800,NULL,5,NULL,0,0xFFFFFFFF,7,2,256,NULL,50,1,319,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5636,'F_Ramen_Hat','F Ramen Hat',4,20,NULL,0,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,0,320,'bonus bDex,4;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5637,'F_Pink_Fur_Hat','F Pink Fur Hat',4,20,NULL,350,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,281,'bonus bLuk,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5638,'F_Puppy_Hat','F Puppy Hat',4,20,NULL,500,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,30,0,234,'bonus bAgi,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5639,'F_Magic_Eyes','F Magic Eyes',4,20,NULL,300,NULL,1,NULL,0,0x00810204,7,2,256,NULL,30,1,209,'bonus bMdef,5;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5640,'F_Jumping_Poring','F Jumping Poring',4,0,NULL,300,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,0,349,'bonus bLuk,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5641,'F_Robo_Eye','F Robo Eye',4,20,NULL,200,NULL,1,NULL,0,0xFFFFFFFF,7,2,512,NULL,10,0,345,'bonus bDex,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5642,'F_Yellow_Wizardry_Hat','F Yellow Wizardry Hat',4,20,NULL,300,NULL,1,NULL,0,0x00810204,7,2,256,NULL,0,1,286,'bonus bInt,2;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5643,'F_Crescent_Helm','F Crescent Helm',4,20,NULL,3000,NULL,8,NULL,0,0x000444A2,7,2,768,NULL,50,1,213,'bonus bVit,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5644,'F_Tiger_Mask','F Tiger Mask',4,20,NULL,400,NULL,2,NULL,0,0xFFFFFFFF,7,2,768,NULL,50,0,181,'bonus bStr,3;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5645,'F_Fantastic_Wig','F Fantastic Wig',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,768,NULL,0,1,308,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5646,'F_Whisper_Mask','F Whisper Mask',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,769,NULL,0,0,321,'bonus bAgi,3;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5647,'F_Bunny_Band_C','F Bunny Band C',4,1,NULL,0,NULL,9,NULL,0,0xFFFFFFFF,7,2,256,NULL,1,0,15,'bonus bMdef,5;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5648,'F_Centimental_Flower_C','F Centimental Flower C',4,1,NULL,0,NULL,1,NULL,0,0xFFFFFFFE,7,2,1,NULL,1,0,56,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5649,'F_Apple_Of_Archer_C','F Apple Of Archer C',4,1,NULL,0,NULL,7,NULL,0,0xFFFFFFFE,7,2,256,NULL,1,0,72,'bonus bDex,4;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5650,'F_Elven_Ears_C','F Elven Ears C',4,1,NULL,0,NULL,2,NULL,0,0xFFFFFFFE,7,2,512,NULL,1,0,73,'bonus bInt,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5651,'F_Brooch_C','F Brooch C',4,1,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,7,2,136,NULL,1,0,0,'bonus bAgi,4;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5652,'F_Magestic_Goat_C','F Magestic Goat C',4,2,NULL,0,NULL,5,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,0,41,'bonus bStr,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5653,'Darkness_Helm_J','Darkness Helm',4,20,NULL,500,NULL,3,NULL,1,0xFFFFFFFF,7,2,256,NULL,70,1,586,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5654,'Holy_Marching_Hat_J','Holy Marching Hat',4,20,NULL,200,NULL,2,NULL,1,0xFFFFFFFF,7,2,256,NULL,10,1,587,'bonus bStr,2; bonus3 bAutoSpell,"PR_ASPERSIO",2,30;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5655,'Dark_Snake_Lord_Hat_J','Evil Snake Lord Hat',4,20,NULL,500,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,60,1,372,'bonus bInt,2; bonus bAgi,2; bonus bDex,-2; autobonus "{ bonus bCastrate,-50; bonus bFlee,30; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }";',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5656,'Scooter_Hat_J','Scooter Helmet',4,20,NULL,1000,NULL,7,NULL,1,0xFFFFFFFF,7,2,256,NULL,50,1,588,'bonus bUnbreakableHelm;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5657,'Antique_Pipe_J','Captain\'s Pipe',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,1,NULL,30,0,383,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5658,'Imp_Hat','Imp Hat',4,20,NULL,400,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,1,1,589,'bonus3 bAutoSpell,"SA_FLAMELAUNCHER",1,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5659,'Sleepr_Hat','Sleeper Hat',4,20,NULL,400,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,1,1,590,'bonus3 bAutoSpell,"SA_SEISMICWEAPON",1,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5660,'Gryphon_Hat','Gryphon Hat',4,20,NULL,400,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,1,1,591,'bonus3 bAutoSpell,"SA_LIGHTNINGLOADER",1,5;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5661,'Red_Pirate_Bandana','Red Pirate Banada',4,0,NULL,0,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,10,1,592,'bonus bStr,1; bonus bDex,1; bonus bAspdRate,2; bonus bCastRate,-2; bonus3 bAutoSpell,"MO_EXTREMITYFIST",1,30;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5662,'Libra_Crown','Libra Crown',4,10,NULL,300,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,1,1,593,'bonus bDex,3;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5663,'Libra_Diadem','Libra Diadem',4,10,NULL,300,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,1,1,594,'bonus bDex,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5664,'Filir_Wing','Filir\'s Pinions',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,512,NULL,70,0,595,'bonus bAspdRate,2; bonus bCastRate,-2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5665,'Shaman_Hat','Shaman Hat',4,20,NULL,400,NULL,1,NULL,1,0xFFFFFFFF,7,2,256,NULL,1,1,596,'bonus2 bSubEle,Ele_Neutral,3; bonus2 bSubEle,Ele_Water,3; bonus2 bSubEle,Ele_Earth,3; bonus2 bSubEle,Ele_Fire,3; bonus2 bSubEle,Ele_Wind,3; bonus2 bSubEle,Ele_Poison,3; bonus2 bSubEle,Ele_Holy,3; bonus2 bSubEle,Ele_Dark,3; bonus2 bSubEle,Ele_Ghost,3; bonus2 bSubEle,Ele_Undead,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5666,'Golden_Crown','Golden Crown',4,20,NULL,500,NULL,8,NULL,1,0xFFFFFFFF,7,2,256,NULL,1,1,597,'bonus bInt,1; bonus bDex,1; bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5667,'Skull_Hood','Skull Hood',4,20,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,7,2,768,NULL,30,1,598,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5668,'Weird_Pumpkin_Hat','Weird Pumpkin Hat',4,20,NULL,0,NULL,5,NULL,0,0xFFFFFFFF,7,2,256,NULL,1,1,206,'bonus bMdef,5;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5669,'Poring_Party_Hat_J','Poring Party Hat J',4,20,NULL,300,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,1,1,340,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5670,'Aniv_Star_Hat','Aniv Star Hat',4,20,NULL,300,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,1,1,599,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5671,'Drooping_Morocc_Minion','Drooping Morocc Minion',4,20,NULL,300,NULL,0,NULL,1,0xFFFFFFFF,7,2,256,NULL,70,0,600,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5672,'Southern_Cross','Southern Cross',4,20,NULL,600,NULL,3,NULL,1,0xFFFFFFFF,7,2,256,NULL,50,1,601,'bonus bInt,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5673,'Home_Cherry_Blossom','Home Cherry Blossom',4,20,NULL,100,NULL,2,NULL,1,0xFFFFFFFF,7,2,256,NULL,30,1,602,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5674,'Pig_Moneybox','Pig Moneybox',4,20,NULL,1000,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,10,0,603,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5675,'Poring_Letter','Poring Letter',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,1,NULL,10,0,604,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5676,'Scorpio_Crown','Scorpio Crown',4,20,NULL,300,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,1,1,605,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5677,'Scorpio_Diadem','Scorpio Diadem',4,20,NULL,300,NULL,3,NULL,1,0xFFFFFFFF,7,2,256,NULL,1,1,606,'bonus bDex,2;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5678,'Notation_Hairband','Notation Hairband',4,200,NULL,100,NULL,5,NULL,0,0xFFFFFFFF,7,2,256,NULL,1,1,607,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5679,'Engineer_Cap','Engineer Cap',4,20,NULL,200,NULL,2,NULL,1,0xFFFFFFFF,7,2,256,NULL,10,1,608,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5680,'Hawkeyes','Hawkeyes',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,512,NULL,10,0,609,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5681,'F_Ribbon_Green','Green Ribbon',4,800,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,0,256,NULL,0,1,244,'bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5682,'Triangle_Rune_Cap','Triangle Rune Cap',4,20,NULL,300,NULL,5,NULL,1,0xFFFFFFFF,7,2,256,NULL,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; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (5683,'Majestic_Goat_Repl','Baphomet Horns',4,20,NULL,100,NULL,5,NULL,0,0xFFFFFFFF,7,2,256,NULL,1,1,41,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5684,'Jewel_Crown_Repl','Ornate Crown',4,20,NULL,100,NULL,5,NULL,0,0xFFFFFFFF,7,2,256,NULL,1,1,88,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5685,'Prontera_Army_Cap_Repl','Army Cap',4,20,NULL,100,NULL,5,NULL,0,0xFFFFFFFF,7,2,256,NULL,1,1,48,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5686,'Feather_Bonnet_Repl','Nice Hat Feather',4,20,NULL,100,NULL,5,NULL,0,0xFFFFFFFF,7,2,256,NULL,1,1,104,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5687,'Viking_Helm_Repl','Orc Helm',4,20,NULL,100,NULL,5,NULL,0,0xFFFFFFFF,7,2,256,NULL,1,1,86,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5688,'2009_Love_Dad','2009 Love Dad',4,20,NULL,100,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,1,1,611,'bonus bVit,2;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5689,'Queen_Ant_Diadem','Queen Ant Diadem',4,20,NULL,300,NULL,1,NULL,1,0xFFFFFFFF,7,2,256,NULL,75,1,612,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5690,'Red_Wing_Hat','Red Wing Hat',4,20,NULL,600,NULL,2,NULL,1,0xFFFFFFFF,7,2,256,NULL,50,1,613,'if(getrefine()>6) { bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; } if(getrefine()>8) { bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (5691,'Catain_Bandanna','Sailor\'s Bandana',4,20,NULL,10,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,1,1,542,'bonus bDex,1; bonus2 bSubEle,Ele_Poison,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5692,'Sea_Cat_Hat','Sea Cat Hat',4,20,NULL,10,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,1,1,539,'bonus bDex,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5693,'No_Fear_Underware','No Fear Underwear',4,0,NULL,0,NULL,10,NULL,0,0xFFFFFFFF,7,2,256,NULL,20,0,30,'bonus bStr,1; bonus bInt,1; bonus bDex,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5694,'No_Fear_P_Headgear','No Fear P Headgear',4,0,NULL,0,NULL,1,NULL,1,0xFFFFFFFE,7,2,256,NULL,20,0,614,'bonus bVit,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5695,'E_Blue_Drooping_Kitty','E Blue Drooping Kitty',4,250000,NULL,500,NULL,1,NULL,0,0,7,2,256,NULL,0,1,277,'bonus bMdef,15;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5696,'E_Flying_Angel','E Flying Angel',4,20,NULL,300,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,10,1,264,'bonus bInt,1; bonus bAgi,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5697,'E_Smoking_Pipe_','E Smoking Pipe',4,20,NULL,100,NULL,0,NULL,0,0,7,2,1,NULL,0,0,55,'bonus bVit,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5698,'E_Pair_OE_Red_Ribbon_','E Pair OE Red Ribbon',4,20,NULL,100,NULL,1,NULL,0,0,7,2,512,NULL,45,0,169,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5699,'E_Fish_On_Head_','E Fish On Head',4,20,NULL,500,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,50,1,149,'bonus bDex,1; bonus bAgi,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5700,'E_Hibiscus','E Hibiscus',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,10,0,210,'bonus bInt,1; bonus bDex,1; bonus bMdef,5;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5701,'E_Cat_Hat','E Cat Hat',4,20,NULL,300,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,182,'bonus bLuk,2; bonus bMdef,10;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5702,'E_Bunny_Band_','E Bunny Band',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,15,'bonus bInt,2;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5703,'E_Magestic_Goat_TW','E Magestic Goat TW',4,20,NULL,800,NULL,5,NULL,0,0x006444A2,7,2,256,NULL,0,1,41,'bonus bStr,2;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5704,'E_Sheep_Hat','E Sheep Hat',4,20,NULL,150,NULL,1,NULL,0,0x00008110,7,2,256,NULL,0,0,205,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5705,'E_Mini_Propeller_','E Mini Propeller',4,20,NULL,200,NULL,2,NULL,0,0,7,2,256,NULL,0,1,270,'bonus bDex,1; bonus bAgi,2;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5706,'E_Alice_Doll','E Alice Doll',4,20,NULL,500,NULL,0,NULL,1,0xFFFFFFFE,7,2,256,NULL,30,0,208,'bonus bStr,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5707,'E_Red_Glasses','E Red Glasses',4,20,NULL,0,NULL,1,NULL,0,0xFFFFFFFF,7,2,512,NULL,0,0,316,'bonus bInt,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5708,'E_Chick_Hat','E Chick Hat',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,10,0,311,'bonus bLuk,2;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5709,'E_White_Deviruchi_Cap','E White Deviruchi Cap',4,20,NULL,800,NULL,2,NULL,0,0xFFFFFFFE,7,2,256,NULL,64,1,272,'bonus bStr,1; bonus bInt,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5710,'E_Vane_Hairpin','E Vane Hairpin',4,20,NULL,300,NULL,2,NULL,1,0xFFFFFFFF,7,2,256,NULL,30,0,313,'bonus bAgi,2;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5711,'E_Pecopeco_Hairband','E Pecopeco Hairband',4,20,NULL,0,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,0,314,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5712,'E_Vacation_Hat','E Vacation Hat',4,20,NULL,200,NULL,1,NULL,1,0xFFFFFFFF,7,2,256,NULL,30,0,315,'bonus bVit,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5713,'E_Charming_Ribbon','E Charming Ribbon',4,20,NULL,400,NULL,1,NULL,1,0xFFFFFFFF,7,2,256,NULL,10,1,211,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5714,'E_Water_Lily_Crown','E Water Lily Crown',4,20,NULL,200,NULL,0,NULL,1,0,7,2,256,NULL,30,0,312,'bonus bDex,1; bonus bAgi,1; bonus bMdef,3;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5715,'E_Vanilmirth_Hat','E Vanilmirth Hat',4,20,NULL,1000,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,30,0,317,'bonus bMdef,5;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5716,'E_Drooping_Bunny_','E Drooping Bunny',4,20,NULL,100,NULL,1,NULL,0,0,7,2,256,NULL,0,1,249,'bonus bDex,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5717,'E_Kettle_Hat','E Kettle Hat',4,20,NULL,600,NULL,4,NULL,0,0xFFFFFFFF,7,2,256,NULL,30,1,318,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5718,'E_Dragon_Skull','E Dragon Skull',4,20,NULL,800,NULL,5,NULL,0,0xFFFFFFFF,7,2,256,NULL,50,1,319,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5719,'E_Ramen_Hat','E Ramen Hat',4,20,NULL,0,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,0,320,'bonus bDex,4;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5720,'E_Pink_Fur_Hat','E Pink Fur Hat',4,20,NULL,350,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,281,'bonus bLuk,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5721,'E_Puppy_Hat','E Puppy Hat',4,20,NULL,500,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,30,0,234,'bonus bAgi,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5722,'E_Magic_Eyes','E Magic Eyes',4,20,NULL,300,NULL,1,NULL,0,0x00810204,7,2,256,NULL,30,1,209,'bonus bMdef,5;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5723,'E_Jumping_Poring','E Jumping Poring',4,0,NULL,300,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,0,349,'bonus bLuk,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5724,'E_Robo_Eye','E Robo Eye',4,20,NULL,200,NULL,1,NULL,0,0xFFFFFFFF,7,2,512,NULL,10,0,345,'bonus bDex,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5725,'E_Yellow_Wizardry_Hat','E Yellow Wizardry Hat',4,20,NULL,300,NULL,1,NULL,0,0x00810204,7,2,256,NULL,0,1,286,'bonus bInt,2;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5726,'E_Crescent_Helm','E Crescent Helm',4,20,NULL,3000,NULL,8,NULL,0,0x000444A2,7,2,768,NULL,50,1,213,'bonus bVit,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5727,'E_Tiger_Mask','E Tiger Mask',4,20,NULL,400,NULL,2,NULL,0,0xFFFFFFFF,7,2,768,NULL,50,0,181,'bonus bStr,3;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5728,'E_Fantastic_Wig','E Fantastic Wig',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,768,NULL,0,1,308,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5729,'E_Bunny_Band_C','E Bunny Band C',4,1,NULL,0,NULL,9,NULL,0,0xFFFFFFFF,7,2,256,NULL,1,0,15,'bonus bMdef,5;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5730,'E_Centimental_Flower_C','E Centimental Flower C',4,1,NULL,0,NULL,1,NULL,0,0xFFFFFFFE,7,2,1,NULL,1,0,56,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5731,'E_Apple_OE_Archer_C','E Apple OE Archer C',4,1,NULL,0,NULL,7,NULL,0,0xFFFFFFFE,7,2,256,NULL,1,0,72,'bonus bDex,4;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5732,'E_Elven_Ears_C','E Elven Ears C',4,1,NULL,0,NULL,2,NULL,0,0xFFFFFFFE,7,2,512,NULL,1,0,73,'bonus bInt,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5733,'E_Brooch_C','E Brooch C',4,1,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,7,2,136,NULL,1,0,0,'bonus bAgi,4;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5734,'E_Magestic_Goat_C','E Magestic Goat C',4,2,NULL,0,NULL,5,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,0,41,'bonus bStr,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5735,'E_Ribbon_Green','Green Ribbon',4,800,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,0,256,NULL,0,1,244,'bonus bMdef,3;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5736,'EF_Whisper_Mask','Whisper Mask',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,769,NULL,0,0,321,'bonus bAgi,3; bonus2 bSubEle,Ele_Ghost,-10;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5737,'Cactus_Hat','Cactus Hat',4,20,NULL,300,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,1,0,615,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5738,'Snowman_Hat','Snowman Hat',4,20,NULL,300,NULL,4,NULL,1,0xFFFFFFFF,7,2,256,NULL,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; }',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5739,'Sagittarius_Crown','Sagittarius Crown',4,20,NULL,300,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,1,1,617,'bonus bDex,2;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5740,'Sagittarius_Diadem','Sagittarius Diadem',4,20,NULL,300,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,1,1,618,'bonus bDex,2; bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5741,'Im_Egg_Shell_Hat','Eternal Egg Shell',4,20,NULL,0,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,10,1,101,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5742,'Rudolf_Santa_Hat','Rudolph Santa Hat',4,20,NULL,400,NULL,5,NULL,0,0xFFFFFFFF,7,2,256,NULL,10,1,619,'bonus bLuk,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5743,'Orange_Stem_Hat','Orange Stem Hat',4,20,NULL,100,NULL,0,NULL,0,0x00000000,7,2,256,NULL,1,0,620,'bonus bLuk,3;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5744,'Capricon_Crown','Capricon Crown',4,20,NULL,300,NULL,3,NULL,1,0xFFFFFFFF,7,2,256,NULL,1,1,621,'bonus bVit,2; bonus bDex,2;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5745,'Capricon_Diadem','Capricon Diadem',4,20,NULL,300,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,1,1,622,'bonus bDex,2; bonus bMdef,5;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5746,'Rune_Circlet','Rune Circlet',4,20,NULL,100,NULL,12,NULL,1,0x00000080,8,2,256,NULL,100,1,623,'bonus bStr,1; bonus bInt,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,10; bonus bMatk,5; }',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5747,'Mitra','Mitra',4,20,NULL,100,NULL,12,NULL,1,0x00000100,8,2,256,NULL,100,1,624,'bonus bVit,1; bonus bInt,1; bonus bMdef,5; bonus bHealPower,5; if(readparam(bInt)>=120){ bonus bMatk,10; }',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5748,'Sniper_Goggles','Sniper Goggles',4,20,NULL,100,NULL,12,NULL,1,0x00000800,8,2,768,NULL,100,1,625,'bonus bAgi,1; bonus bDex,1; bonus bMdef,5; if(readparam(bAgi)>=120){ bonus bLongAtkRate,4; bonus bAspd,1; }',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5749,'Driver_Band_M','Driver Band',4,20,NULL,100,NULL,12,NULL,1,0x00000400,8,1,256,NULL,100,1,626,'bonus bStr,1; bonus bDex,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,10; bonus bCritical,3; }',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5750,'Shadow_Crown','Shadow Crown',4,20,NULL,100,NULL,12,NULL,1,0x00020000,8,2,256,NULL,100,1,627,'bonus bAgi,1; bonus bInt,1; bonus bMdef,1; if(readparam(bAgi)>=120){ bonus bBaseAtk,10; bonus bFlee,3; }',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5751,'Minstrel_Song_Hat','Minstrel Song Hat',4,20,NULL,100,NULL,12,NULL,1,0x00080000,8,1,256,NULL,100,1,628,'bonus bInt,1; bonus bLuk,1; bonus bMdef,5; bonus bLongAtkRate,4; bonus bUseSPrate,-10;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5752,'Midas_Whispers','Midas Whispers',4,20,NULL,100,NULL,12,NULL,1,0x00040000,8,2,256,NULL,100,1,629,'bonus bStr,1; bonus bDex,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,5; bonus bAspd,1; }',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5753,'Magic_Stone_Hat','Magic Stone Hat',4,20,NULL,100,NULL,12,NULL,1,0x00000200,8,2,256,NULL,100,1,630,'bonus bInt,1; bonus bDex,1; bonus bMdef,5; if(readparam(bDex)>=120){ bonus bMatkRate,10; bonus bCastrate,-2; }',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5754,'Burning_Spirit','Burning Spirit',4,20,NULL,100,NULL,12,NULL,1,0x00008000,8,2,256,NULL,100,1,631,'bonus bStr,1; bonus bVit,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,10; bonus bHit,3; }',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5755,'Silent_Enforcer','Silent Enforcer',4,20,NULL,100,NULL,12,NULL,0,0x00001000,8,2,513,NULL,100,1,632,'bonus bAgi,1; bonus bMdef,5; if(readparam(bAgi)>=120){ bonus bBaseAtk,10; bonus bFlee2,5; }',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5756,'Wispers_of_Wind','Wispers of Wind',4,20,NULL,100,NULL,12,NULL,1,0x00010000,8,2,256,NULL,100,1,633,'bonus bInt,1; bonus bDex,1; bonus bMdef,5; if(readparam(bInt)>=120){ bonus bMatkRate,10; bonus bFlee,3; }',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5757,'Reissue_Schmitz_Helm','Reissue Schmitz Helm',4,20,NULL,100,NULL,12,NULL,1,0x00004000,8,2,768,NULL,100,1,634,'bonus bVit,2; bonus bInt,1; bonus bMdef,5; if(readparam(bInt)>=120){ bonus bMatkRate,10; bonus bDef,5; }',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5758,'Resting_Swan','Resting Swan',4,20,NULL,100,NULL,17,NULL,1,0x00080000,8,0,256,NULL,100,1,635,'bonus bInt,1; bonus bLuk,1; bonus bMdef,5; bonus bAtkRate,5; bonus bUseSPrate,-10;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5759,'Noah_Hat','Noah Hat',4,20,NULL,500,NULL,1,NULL,1,0xFFFFFFFF,7,2,256,NULL,1,1,636,'bonus bMdef,3;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5760,'Driver_Band_F','Driver Band',4,20,NULL,100,NULL,12,NULL,1,0x00000400,8,0,256,NULL,100,1,637,'bonus bStr,1; bonus bDex,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,10; bonus bCritical,3; }',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5761,'Sloth_Hat','Sloth Hat',4,20,NULL,800,NULL,3,NULL,1,0xFFFFFFFF,7,2,256,NULL,1,1,638,'bonus bAgi,2; bonus3 bAutoSpell,"AS_SONICBLOW",5,50;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5762,'Duneyrr_Helm','Duneyrr Helm',4,20,NULL,100,NULL,5,NULL,0,0xFFFFFFFF,7,2,256,NULL,1,1,639,'bonus bAllStats,1; bonus bMdef,5;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5763,'Red_Bunny_Band','Red Bunny Band',4,0,NULL,200,NULL,4,NULL,0,0xFFFFFFFF,7,2,256,NULL,1,1,640,'bonus bAgi,2; bonus bMdef,3;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5765,'Black_Tail_Ribbon','Black Tail Ribbon',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,7,2,256,NULL,10,1,642,'bonus bMdef,5;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5766,'Amistr_Cap','Amistr Cap',4,20,NULL,500,NULL,4,NULL,0,0xFFFFFFFF,7,2,256,NULL,50,1,643,'bonus bVit,5;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5767,'Samurai_Mask','Samurai Mask',4,20,NULL,300,NULL,1,NULL,0,0xFFFFFFFF,7,2,1,NULL,50,0,644,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5768,'Sakura_Coronet','Sakura Coronet',4,20,NULL,800,NULL,1,NULL,1,0xFFFFFFFF,7,2,256,NULL,1,1,645,'bonus bMdef,3;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5769,'Gold_Angel_Sculpture','Gold Angel Sculpture',4,100,NULL,0,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,70,0,646,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5770,'Splash_Hat','Splash Hat',4,20,NULL,100,NULL,3,NULL,1,0xFFFFFFFF,7,2,256,NULL,1,1,349,'autobonus "{ sc_start SC_WINDWEAPON, 180000, 1; }", 3, 180000, BF_WEAPON, "{ specialeffect2 EF_ENHANCE; }";',NULL,NULL); -REPLACE INTO `item_db` VALUES (5771,'Family_Hat','Family Hat',4,20,NULL,100,NULL,3,NULL,1,0xFFFFFFFF,7,2,256,NULL,1,1,109,'bonus bDex,1; bonus bMdef,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5772,'Red_Navy_Hat','Red Navy Hat',4,3000,NULL,500,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,95,1,651,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5773,'Navy_Beret','Navy Beret',4,3000,NULL,500,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,95,1,652,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5774,'Red_Pirate_Hat','Red Pirate Hat',4,3000,NULL,500,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,95,1,496,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5775,'Choco_Donut_In_Mouth','Choco Donut In Mouth',4,20,NULL,50,NULL,1,NULL,0,0xFFFFFFFF,7,2,1,NULL,1,0,653,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5776,'Blazing_Sun','Blazing Sun',4,0,NULL,500,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,1,1,654,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5777,'Remover_Hat','Remover Hat',4,20,NULL,800,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,30,0,655,'bonus bMdef,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5778,'Blue_Arara_Hat','Blue Arara Hat',4,20,NULL,100,NULL,3,NULL,1,0xFFFFFFFF,7,2,256,NULL,1,1,656,'bonus bStr,2;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5779,'Drooping_Boto','Drooping Boto',4,20,NULL,100,NULL,3,NULL,1,0xFFFFFFFF,7,2,256,NULL,1,1,657,'bonus bInt,2;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5780,'Tendrilion_Hat','Tendrilion Hat',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,1,1,658,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5781,'Persika','Persika',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,7,2,256,NULL,0,0,659,NULL,NULL,NULL); -# -#REPLACE INTO `item_db` VALUES (5783,'YellowBunny_Hairband','YellowBunny Hairband',4,20,NULL,200,NULL,0,NULL,1,0xFFFFFFFF,7,2,256,NULL,1,1,662,'bonus bStr,1; bonus bInt,1; bonus bDex,2;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5784,'PinkBunny_Hairband','PinkBunny Hairband',4,20,NULL,200,NULL,0,NULL,1,0xFFFFFFFF,7,2,256,NULL,1,1,663,'bonus bStr,1; bonus bInt,2; bonus bDex,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5785,'Green_Bunny_Hairband','Green Bunny Hairband',4,20,NULL,200,NULL,0,NULL,1,0xFFFFFFFF,7,2,256,NULL,1,1,664,'bonus bStr,2; bonus bInt,1; bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5786,'Ancient_Elven_Ear','Ancient Elven Ear',4,10,NULL,200,NULL,1,NULL,0,0xFFFFFFFF,7,2,512,NULL,1,0,665,'bonus bLuk,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5787,'Tha_Maero_Mask','Tha Maero Mask',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,513,NULL,30,0,666,'bonus bMdef,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5788,'3D_Glasses','3D Glasses',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,512,NULL,1,0,661,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5789,'Thanatos_Mal_Mask','Thanatos Mal Mask',4,20,NULL,100,NULL,3,NULL,0,0xFFFFFFFF,7,2,513,NULL,30,0,667,'bonus bVit,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5790,'Holy_Mom_Love','TM',4,20,NULL,500,NULL,0,NULL,1,0xFFFFFFFF,7,2,768,NULL,45,1,610,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5791,'Tenkaippin_Ramen','Tenkaippin Ramen',4,20,NULL,500,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,30,0,668,'bonus bInt,-1; bonus bDex,4;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5792,'Fish_Pin','Fish Pin',4,20,NULL,100,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,1,1,669,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5793,'Ribbon_Of_Life','Ribbon Of Life',4,20,NULL,0,NULL,2,NULL,0,0xFFFFFFFF,7,2,512,NULL,1,0,575,'bonus bInt,1; bonus bMdef,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5794,'3D_Glasses_','3D Glasses',4,20,NULL,0,NULL,1,NULL,0,0xFFFFFFFF,7,2,512,NULL,1,0,661,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5795,'Red_Dress_Hat','Red Dress Hat',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,1,1,670,'bonus bMdef,7;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5796,'Cheer_Scarf','Cheer Scarf',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,1,NULL,1,0,369,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5797,'Cheer_Scarf2','Cheer Scarf2',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,1,NULL,1,0,369,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5798,'Cheer_Scarf3','Cheer Scarf3',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,1,NULL,1,0,369,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5799,'Cheer_Scarf4','Cheer Scarf4',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,1,NULL,1,0,369,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5800,'Blush_Of_Groom','Blush of Groom',4,20,NULL,50,NULL,0,NULL,0,0xFFFFFFFF,7,2,512,NULL,0,0,125,'bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5801,'Ribbon_Of_Bride','Red Tailed Ribbon',4,20,NULL,100,NULL,5,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,167,'bonus bAllStats,2; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; if(getskilllv("AL_HEAL")==10) { bonus3 bAutoSpellWhenHit,"AL_HEAL",10,20; } else { bonus3 bAutoSpellWhenHit,"AL_HEAL",5,20; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (5802,'Upgrade_Elephant_Hat','Upgraded Elephant Hat',4,0,NULL,500,NULL,3,NULL,1,0xFFFFFFFF,7,2,256,NULL,0,1,215,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5803,'Flower_Love_Hat','Love Flower Hat',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,5,'bonus2 bAddMonsterDropItem,608,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5804,'Pirate_Eyepatch','Pirate Eye Bandage',4,1000,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,512,NULL,0,0,13,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5805,'Victorious_Coronet','Victorious Coronet',4,0,NULL,150,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,70,0,43,'bonus bMaxHPrate,15; bonus bSPrecovRate,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5806,'Poem_Natalia_Hat','Poet Natalie\'s Hat',4,20,NULL,300,NULL,5,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,0,67,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5807,'October_Fest_Cap','October Fest Cap',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFE,7,2,256,NULL,50,1,104,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5808,'Diabolus_Helmet','Dark Bacilium',4,20,NULL,250,NULL,5,NULL,1,0x000FDF80,2,2,769,NULL,0,1,364,'bonus2 bResEff,Eff_Stone,2000+(getrefine()*200); bonus2 bResEff,Eff_Freeze,2000+(getrefine()*200); bonus2 bResEff,Eff_Stun,2000+(getrefine()*200);',NULL,NULL); -REPLACE INTO `item_db` VALUES (5809,'Boom_Boom_Hat','Boom Boom Hat',4,0,NULL,100,NULL,6,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,0,216,'bonus bAllStats,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5810,'Ph.D_Hat_V','Ph.D Hat V',4,20,NULL,100,NULL,3,NULL,0,0xFFFFFFFE,7,2,256,NULL,0,1,98,'bonus bInt,5; bonus bVit,3; bonus bDex,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5811,'Santa_Beard','Santa\'s Beard',4,20,NULL,100,NULL,5,NULL,0,0xFFFFFFFF,7,2,1,NULL,0,0,25,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5812,'Hat_Of_Expert','Hat Of Expert',4,0,NULL,0,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,16,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5813,'Red_Ph.D_Hat','Red Ph.D Hat',4,1000,NULL,500,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,481,'bonus bInt,1;',NULL,NULL); -#5814,Ati_Atihan_Hat3 -REPLACE INTO `item_db` VALUES (5815,'Classic_Hat_J','Classic Hat',4,20,NULL,500,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,475,'bonus bStr,1; bonus2 bSubSize, 0, 5; bonus2 bSubSize, 1, 5; bonus2 bSubSize, 2, 5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5816,'Cowboy_Hat_J','Purple Cowboy Hat',4,20,NULL,500,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,411,'bonus bBaseAtk,15; bonus bFlee,-5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5817,'Valentine_Pledge','Valentine Pledge',4,20,NULL,0,NULL,3,NULL,0,0xFFFFFFFF,7,2,136,NULL,0,0,0,'bonus bAllStats,2; bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5818,'Carnival_Hat','Carnival Hat',4,0,NULL,0,NULL,6,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,505,'bonus bAllStats, 3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5819,'Carnival_Circlet','Carnival Circlet',4,0,NULL,0,NULL,6,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,506,'bonus bAllStats, 3;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5820,'Black_Elven_Ears','Black Elven Ears',4,10,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,7,2,512,NULL,0,0,498,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5821,'Gold_Tulip_Hairpin','Gold Tulip Hairpin',4,10,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,499,'bonus2 bExpAddClass,Class_All,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5822,'Love_Chick_Hat','Love Chick Hat',4,10000,NULL,100,NULL,4,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,500,'bonus bLuk,4; bonus bMaxHP,100; bonus bMaxSP,100; bonus2 bSubRace,RC_DemiHuman,7; bonus2 bSubRace,RC_Player_Human,7; bonus2 bSubRace,RC_Undead,7;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5823,'Love_Arrow','Love Arrow',4,5000,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,136,NULL,0,0,0,'bonus bDex,5; bonus bAgi,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5824,'Fools_Day_Hat','Fools Day Hat',4,20,NULL,300,NULL,6,NULL,1,0xFFFFFFFF,7,2,256,NULL,30,1,265,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5825,'Badge_Of_Order_Grace','Badge Of Order Grace',4,0,NULL,0,NULL,1,NULL,0,0xFFFFFFFF,7,2,136,NULL,0,0,0,'bonus bMdef,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5826,'Valkyrie_Helmet','Valkyrie Helmet',4,0,NULL,0,NULL,10,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,0,225,'bonus bStr,2; bonus bInt,2; bonus bDex,2; bonus bAgi,2; bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5827,'Book_File_Hat','Book File Hat',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,256,NULL,1,1,423,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5828,'Honor_Gold_Ring','Honor Gold Ring',4,0,NULL,50,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,1,0,0,'bonus bAllStats,1; bonus bMdef,5;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5829,'Ordinary_Armor','Ordinary Armor',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,16,NULL,30,1,0,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5830,'Woe_Sahkkat','Woe Sahkkat',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,60,1,67,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5831,'Woe_Big_Sis_Ribbon','Woe Big Sis Ribbon',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,60,1,28,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5832,'Woe_Vane_Hairpin','Woe Vane Hairpin',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,60,1,313,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5833,'Woe_Picnic_Hat','Woe Picnic Hat',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,60,1,117,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5834,'Woe_Crown','Woe Crown',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,60,1,45,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5835,'Woe_Tiara','Woe Tiara',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,60,1,19,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5836,'Woe_Boys_Cap','Woe Boys Cap',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,60,1,102,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5837,'Woe_Sunglass','Woe Sunglass',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,7,2,512,NULL,70,0,12,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5838,'Woe_Fin_Helm','Woe Fin Helm',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,7,2,512,NULL,70,0,100,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5839,'Woe_Blush','Woe Blush',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,7,2,512,NULL,70,0,125,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5840,'Woe_Elven_Ears','Woe Elven Ears',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,7,2,512,NULL,70,0,73,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5841,'Shaman_Hat_','Shaman_Hat',4,20,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,7,2,256,NULL,30,1,596,'bonus bLuk,2;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5842,'Loyal_Ring1','Loyal Ring1',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,1,1,0,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5843,'Loyal_Ring2','Loyal Ring2',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,1,1,0,'bonus bAllStats,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5844,'Loyal_Ring3','Loyal Ring3',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,1,0,0,'bonus bAllStats,3;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5845,'Buzzy_Ball_Board','Buzzy Ball Board',4,50,NULL,400,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,1,1,641,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5846,'Buzzy_Ball_Gum','Buzzy Ball Gum',4,50,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,7,2,1,NULL,1,0,572,'bonus bMdef,5;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5847,'Fools_Day_Helmet','Fools Day Helmet',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,1,0,647,'bonus bInt,5; bonus bVit,-3;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (5848,'Robin_Eyepatch','Robin Eyepatch',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,512,NULL,1,0,50,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5849,'Doctor_Hairband','Doctor Hairband',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,1,0,60,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5850,'Golden_Savage_Hat','Golden Savage Hat',4,20,NULL,500,NULL,5,NULL,0,0xFFFFFFFF,7,2,256,NULL,50,1,648,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (5851,'Summer_Knight','Summer Knight',4,20,NULL,0,NULL,1,NULL,0,0xFFFFFFFF,7,2,768,NULL,60,0,138,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (5852,'Resurrect_Egg_Shell','Resurrect Egg Shell',4,20,NULL,500,NULL,-7,NULL,0,0xFFFFFFFF,7,2,256,NULL,40,1,537,'bonus bMdef,-7;',NULL,NULL); -# -REPLACE INTO `item_db` VALUES (5856,'Passion_FB_Hat','Passion FB Hat',4,20,NULL,600,NULL,2,NULL,1,0xFFFFFFFF,7,2,256,NULL,1,1,671,'bonus bStr,2; bonus bDex,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5857,'Cool_FB_Hat','Cool FB Hat',4,20,NULL,600,NULL,2,NULL,1,0xFFFFFFFF,7,2,256,NULL,1,1,672,'bonus bInt,2; bonus bVit,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5858,'Victory_FB_Hat','Victory FB Hat',4,20,NULL,600,NULL,2,NULL,1,0xFFFFFFFF,7,2,256,NULL,1,1,673,'bonus bInt,2; bonus bDex,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (5859,'Glory_FB_Hat','Glory FB Hat',4,20,NULL,600,NULL,2,NULL,1,0xFFFFFFFF,7,2,256,NULL,1,1,674,'bonus bAllStats,1;',NULL,NULL); -# More Etc Items -#=================================================================== -REPLACE INTO `item_db` VALUES (6000,'Dark_Ashes','Ashes of Darkness',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6001,'Essence_Of_Fire','Essence of Fire',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6002,'Token_Of_Apostle','Token of Apostle',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6003,'Soul_Pendant','Pendant of Spirit',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6004,'Bapho_Doll','Cursed Baphomet Doll',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6005,'New_Year_Rice_Cake','New Year Rice Cake',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6006,'Rice_Cake_Delivery_Box','Rice Cake Delivery Box',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6007,'New_Year_Rice_Cake_Soup','New Year Rice Cake Soup',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6008,'Wood','Wood',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6009,'Large_Magical_Fan','Big Fan Of Magic',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6010,'Pickaxe','Hoe',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6011,'Blue_Card_B','Blue B Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6012,'Blue_Card_C','Blue C Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6013,'Blue_Card_J','Blue J Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6015,'Blue_Card_M','Blue M Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6016,'Blue_Card_Q','Blue Q Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6017,'Blue_Card_T','Blue T Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6018,'Blue_Card_V','Blue V Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6019,'Blue_Card_Z','Blue Z Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6020,'Fur','Fur',3,704,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6021,'Peaked_Hat','Peaked Hat',3,433,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6022,'Hard_Skin','Hard Skin',3,884,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6023,'Mystic_Horn','Mystic Horn',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6024,'17Carat_Dia','17Carat Diamond',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6025,'Towel_Of_Memory','Towel of Memory',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6026,'Marriage_Covenant','Written Oath Of Marriage',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6027,'Crystal_Of_Feardoom','Crystal Of Feardom',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6028,'Seal_Scroll','Sealed Scroll',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6029,'Morocc_Tracing_Log','Morocc Tracing Log',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6030,'Glitering_PaperA','Glittering Paper',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6031,'Glitering_PaperB','Glittering Paper',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6032,'Horn_Of_Hilsrion','Horn of Hillslion',3,500,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6033,'Horn_Of_Tendrilion','Horn of Tendrilion',3,500,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6034,'Weird_Part','Weird Part',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6035,'Decaying_Stem','Decaying Stem',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6036,'Invite_To_Meeting','Meeting Invitation',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6037,'Rough_File','Messy File',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6038,'Neat_Report','Neat Report',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6039,'Piece_Of_Fish','Piece of Fish',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6040,'Some_Of_Report','Part of a Report',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6041,'Strong_Bine','Strong Vine',3,30,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6042,'Ordinary_Branch','Ordinary Branch',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6043,'Letter_From_Lugen','Letter from Lugen',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6044,'Letter_From_Otto','Letter from Otto',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6045,'Supply_Box','Supply Box',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6046,'Clothing_Dye_Coupon','Clothing Dye Coupon',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6047,'Clothing_Dye_Coupon_II','Clothing Dye Coupon II',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6048,'Unidentified_Mineral','Unidentified Mineral',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6049,'Marlin','Marlin',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6050,'Mercenary_Contract','Mercenary Contract',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6051,'Gray_Hollow','Gray Hollow',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6052,'Ornamental_Hairpin','Ornament Hairpin',3,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6053,'Yuanbao','Circle Step',3,100,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6054,'Blue_Card_6','Number 6 Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6055,'Blue_Card_Annyver','Character Week Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6056,'Blue_Card_Sary','Character Year Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6057,'Blue_Card_E','Character Lee Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6058,'Blue_Card_Ven','Character Ben Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6059,'Blue_Card_Nt','Character Project Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6060,'Moon_Admin_Ticket','Month Viewing Ticket',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6061,'Plantain','Blood Beginner',3,100,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6062,'Moon_Cake15','Letter Moon Cake',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6063,'Moon_Cake16','Letter Moon Cake',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6064,'Moon_Cake17','Letter Moon Cake',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6065,'Moon_Cake18','Letter Moon Cake',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6066,'Moon_Cake19','Letter Moon Cake',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6067,'Moon_Cake20','Letter Moon Cake',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6068,'Rabbit_Skin','Leather Rabbit',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6069,'ABUNDANCE','Abundance',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6070,'Shaman\'s_Old_Paper','Shaman\'s Document',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6071,'Broken_Sword','Broken Sword',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6072,'Wing_Of_Bizofnil','Bijofnil Feather',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6073,'Dragon\'s_Mane','Dragon\'s Mane',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6074,'Bazett\'s_Order','Bazett\'s Order',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6075,'Crystalized_Teardrop','Crystalized Teardrop',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6076,'Portable_Toolbox','Portable Toolbox',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6077,'Rough_Mineral','Rough Mineral',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6078,'Stone_Fragments','Stone Fragment',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6079,'Flower_Of_Alfheim','Flower Of Alfheim',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6080,'Manuk_Coin','Manuk Coin',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6081,'Splendide_Coin','Splendide Coin',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6082,'Spirit_Of_Alfheim','Spirit Of Alfheim',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6083,'Dolly_Capsule','Capsule Dolls',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6084,'Bradium_Fragments','Bradium Fragments',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6085,'Shaggy_Muffler','Shaggy Muffler',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6086,'Withered_Flower','Withered Flower',3,890,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6087,'Crystal_Of_Soul_01','Spiritual Crystal',3,1050,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6088,'Crystal_Of_Soul_02','Spiritual Crystal',3,1050,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6089,'Piece_Of_Darkness','Dark Piece',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6090,'Purified_Bradium','Refined Bradium',3,1100,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6091,'Dark_Red_Scale','Dark Red Scale',3,200000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6092,'Singing_Crystal_Piece','Piece Of Singing Crystal',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6093,'Egg_Of_Draco','Draco\'s Egg',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6094,'Traditional_Cookie','Traditional Sweets',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6095,'Flavored_Alcohol','Flavored Alcohol',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6096,'Fish_With_Blue_Back','Fish With Blue Back',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6097,'Pumpkin_Pie_','Pumpkin Pie',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6098,'Small_Snow_Flower','Small Snow Flower',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6099,'Grilled_Rice_Cake','Grilled Rice Cake',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6100,'Damp_Darkness','Damp Darkness',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6101,'Attendance_Card','Attendance Card',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6102,'Report_On_Splendide','Report On Splendide',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6103,'Report_On_Manuk','Report On Manuk',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6104,'Big_Cell','Big Cell',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6105,'Morning_Dew','Morning Dew',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6106,'Well_Ripened_Berry','Well Ripened Berry',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6107,'Sunset_On_The_Rock','Sunset On The Rock',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6108,'Apple_Pudding','Apple Pudding',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6109,'Plant_Neutrient','Plant Neutrient',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6110,'Vital_Flower','Vital Flower',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6111,'Mystic_Stone','Mystic Stone',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6112,'Fresh_Plant','Fresh Plant',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6113,'Vital_Flower_','Vital Flower',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6114,'Flame_Gemstone','Flame Gemstone',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6115,'Bun_','Bun',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6116,'Succu_Pet_Coupon','Succubus Pet Exchange Coupon',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6117,'Imp_Pet_Coupon','Imp Pet Exchange Coupon',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6118,'Chung_E_Pet_Coupon','Chung E Exchange Coupon',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6119,'Natural_Leather','Cow Leather',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6120,'Face_Paint','Face Paint',3,120,NULL,20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6121,'Makeover_Brush','Makeover Brush',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6122,'Paint_Brush','Paint Brush',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6123,'Surface_Paint','Surface Paint',3,200,NULL,30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6124,'Wolf\'s_Flute','Wolf Flute',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6125,'Lucky_Box','Spring Time Box',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6126,'Happy_Box','Summer Happy Box',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6127,'Purification_Stone','Purification Stone',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6128,'Guillotine_Antidote','Antidote',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6129,'Ticket_Nightmare','Nightmare Terror Exchange Coupon',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6130,'Ticket_Loli_Ruri','Loli Ruri Exchange Coupon',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6131,'Ticket_Goblin_Leader','Goblin Leader Exchange Coupon',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6132,'Ticket_Incubus','Incubus Exchange Coupon',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6133,'Ticket_Miyabi_Ningyo','Miyabi Ningyo Exchange Coupon',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6134,'Ticket_Whisper','Giant Whisper Exchange Coupon',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6135,'Ticket_Wicked_Nymph','Evil Nymph Exchange Coupon',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6136,'Ticket_Medusa','Medusa Exchange Coupon',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6137,'Ticket_Stoneshooter','Stone Shooter Exchange Coupon',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6138,'Ticket_Marionette','Marionette Exchange Coupon',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6139,'Ticket_Leafcat','Leaf Cat Exchange Coupon',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6140,'Ticket_Dullahan','Dullahan Exchange Coupon',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6141,'Ticket_Shinobi','Shinobi Exchange Coupon',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6142,'Ticket_Golem','Golem Exchange Coupon',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6143,'Ticket_Civil_Servant','Civil Servant Exchange Coupon',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6144,'Heartbroken_Tears','Regrettable Tears',3,1000,NULL,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6145,'Vulcan_Bullet','Vulcan Bullet',3,10,NULL,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6146,'Magic_Gear_Fuel','Magic Gear Fuel',3,300,NULL,30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6147,'Liquid_Condensed_Bullet','Liquid Condensed Bullet',3,100,NULL,3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6148,'Chocolate_Of_Eternity','Eternity Of Chocolate',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6149,'Plain_Chocolate','Simple Chocolate',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6150,'Key_Of_The_Mansion','Key of The Mansion',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6151,'Peice_Of_Great_Bradium','Giant Bradium Fragment',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6152,'Glittering_Crystal','Glittering Crystal',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6153,'Special_Exchange_Coupon','Special Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6154,'Broken_Horn_Pipe','Broken Horn Pipe',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6155,'Coke_Membership_Card','Member Card',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6156,'Approval_Report','Approval Report',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6157,'Poring_Ticket','Poring Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6158,'Drops_Ticket','Drops Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6159,'Poporing_Ticket','Poporing Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6160,'Lunatic_Ticket','Lunatic Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6161,'Picky_Ticket','Picky Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6162,'Pecopeco_Ticket','Peco Peco Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6163,'Savage_Baby_Ticket','Savage Babe Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6164,'Spore_Ticket','Spore Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6165,'Poison_Spore_Ticket','Poison Spore Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6166,'Chonchon_Ticket','Chonchon Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6167,'Steel_Chonchon_Ticket','Steel Chonchon Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6168,'Petit_Ticket','Sky Petite Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6169,'Deviruchi_Ticket','Deviruchi Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6170,'Isis_Ticket','Isis Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6171,'Smokie_Ticket','Smokie Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6172,'Dokebi_Ticket','Dokebi Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6173,'Desert_Wolf_B_Ticket','Baby Desert Wolf Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6174,'Yoyo_Ticket','Yoyo Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6175,'Sohee_Ticket','Sohee Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6176,'Rocker_Ticket','Rocker Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6177,'Hunter_Fly_Ticket','Hunter Fly Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6178,'Orc_Warrior_Ticket','Orc Warrior Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6179,'Bapho_Jr_Ticket','Bapho Jr. Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6180,'Munak_Ticket','Munak Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6181,'Bongun_Ticket','Bongun Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6182,'Goblin_Ticket','Christmas Goblin Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6183,'Hardtack_Ticket','Rice Cake Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6184,'Zherlthsh_Ticket','Zherlthsh Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6185,'Alice_Ticket','Alice Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6186,'Monkey_Wrench','Monkey Wrench',3,500,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6187,'Blank_Card','Blank Card',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6188,'Slot_Coupon','Slotting Advertisement',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6189,'Magic_Book_FB','Spell Book (Fire Bolt)',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6190,'Magic_Book_CB','Spell Book (Cold Bolt)',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6191,'Magic_Book_LB','Spell Book (Lightening Bolt)',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6192,'Magic_Book_SG','Spell Book (Storm Gust)',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6193,'Magic_Book_LOV','Spell Book (Lord Of Vermilion)',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6194,'Magic_Book_MS','Spell Book (Meteor Storm)',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6195,'Magic_Book_CM','Spell Book (Comet)',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6196,'Magic_Book_TV','Spell Book (Tetra Vortex)',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6197,'Magic_Book_TS','Spell Book (Thunder Storm)',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6198,'Magic_Book_JT','Spell Book (Jupitel Thunder)',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6199,'Magic_Book_WB','Spell Book (Water Ball)',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6200,'Magic_Book_HD','Spell Book (Heaven\'s Drive)',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6201,'Magic_Book_ES','Spell Book (Earth Spike)',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6202,'Magic_Book_ES_','Spell Book (Earth Strain)',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6203,'Magic_Book_CL','Spell Book (Chain Lightning)',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6204,'Magic_Book_CR','Spell Book (Crimson Rock)',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6205,'Magic_Book_DL','Spell Book (Drain Life)',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6206,'I_Love_You','I Love You',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6207,'Thank_You','Thank You',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6208,'I_Respect_You','I Respect You',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6209,'Glory_Of_Knights','Knight\'s Honor',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6210,'Seed_Of_Horny_Plant','Seed Of Thorny Plant',3,600,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6211,'Bloodsuck_Plant_Seed','Bloodsuck Plant Seed',3,800,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6212,'Bomb_Mushroom_Spore','Bomb Mushroom Spore',3,1000,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6213,'Explosive_Powder','Explosive Powder',3,500,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6214,'Smoke_Powder','Smoke Powder',3,500,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6215,'Tear_Gas','Tear Gas',3,500,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6216,'Oil_Bottle','Oil Bottle',3,1000,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6217,'Mandragora_Flowerpot','Mandragora Flowerpot',3,2000,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6218,'Disin_Delivery_Box','Delivery_Daishin_Box',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6219,'Para_Team_Mark','Eden Group Mark',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6220,'Mysterious_Dyestuff','Mysterious Dyestuff',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6221,'Mystic_Leaf_Cat_Ball','Mystic Leaf Cat Ball',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6222,'Shining_Beads','Shining Beads',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6223,'Carnium','Carnium',3,2000,NULL,150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6224,'Bradium','Bradium',3,2000,NULL,150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6225,'HD_Carnium','HD Carnium',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6226,'HD_Bradium','HD Bradium',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6228,'Guarantee_Weapon_9Up','+9 Weapon Refine Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6229,'Guarantee_Weapon_8Up','+8 Weapon Refine Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6230,'Guarantee_Weapon_7Up','+7 Weapon Refine Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6231,'Guarantee_Weapon_6Up','+6 Weapon Refine Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6232,'Guarantee_Armor_9Up','+9 Armor Refine Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6233,'Guarantee_Armor_8Up','+8 Armor Refine Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6234,'Guarantee_Armor_7Up','+7 Armor Refine Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6235,'Guarantee_Armor_6Up','+6 Armor Refine Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6236,'Blue_Card_7','Blue Card 7',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6237,'Guarana_Fruit','Guarana Fruit',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6238,'Guarantee_Weapon_11Up','+11 Weapon Refine Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6239,'Guarantee_Armor_11Up','+11 Armor Refine Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6240,'HD_Oridecon','HD Oridecon',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6241,'HD_Elunium','HD Elunium',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6242,'Midgard_Coin','Midgard Coin',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6243,'Exchange_Coupon','Exchange Coupon',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6244,'Gun_Powder','Gun Powder',3,10,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6245,'Black_Powder','Black Powder',3,100,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6246,'Yellow_Powder','Yellow Powder',3,100,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6247,'White_Powder','White Powder',3,100,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6248,'Melange_Pot','Melange Pot',3,600,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6249,'Savage_Meat','Savage Meat',3,100,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6250,'Cooking_Skewer','Cooking Skewer',3,300,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6251,'Black_Charcoal','Black Charcoal',3,300,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6252,'Wolf_Blood','Blood Of Wolf',3,100,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6253,'Cold_Ice','Cold Ice',3,100,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6254,'Beef_Head_Meat','Beef Head',3,100,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6255,'Large_Cookpot','Large Cookpot',3,500,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6256,'Ice_Fragment','Ice Piece',3,100,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6257,'Ice_Crystal','Ice Crystal',3,100,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6258,'Comodo_Tropic_Fruit','Comodo Tropical Fruit',3,800,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6259,'Drocera_Tentacle','Drosera Tentacle',3,100,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6260,'Petti_Tail','Petite\'s Tail',3,100,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6261,'Fine_Noodle','Fine Noodles',3,500,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6262,'Cool_Gravy','Cool Gravy',3,400,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6263,'Coconut_Fruit','Coconut Fruit',3,100,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6264,'Melon','Melon',3,100,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6265,'Pineapple','Pineapple',3,100,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6266,'Cheat_Key','Key Of Deception',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6267,'Virtual_Key','Key Of Illusion',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6268,'Mirth_Key','Key Of Gaiety',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6269,'Master_Brush','A Master\'s Blush',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6270,'Mins_Picture','A Picture Of Minstrel Song',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6271,'Mins_Receipt','Receipt',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6272,'Experiment_Seed','Experiment Seed',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6273,'Altered_Seed','Seed For Experiment',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6274,'Saint_Cloth_Piece','A Piece Of Cloth Of A Saint',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6275,'King_Shield','Shield Of King',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6276,'Clear_Reagent','Clear Reagent',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6277,'Red_Reagent','Red Reagent',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6278,'Black_Reagent','Black Reagent',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6279,'Apple_Bomb_CB','Apple Bomb Guidebook',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6280,'Pinepple_Bomb_CB','Pineapple Bomb Guidebook',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6281,'Coconut_Bomb_CB','Coconut Fruit Bomb Guidebook',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6282,'Melon_Bomb_CB','Melon Bomb Guidebook',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6283,'Banana_Bomb_CB','Banana Bomb Guidebook',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6284,'Plant_Genetic_Grow','How To Grow Plant Genes',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6285,'Quality_Potion_Book','Manual: How To Make High Quality Potion',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6286,'F_Max_Weight_Up_Scroll','F Max Weight Up Scroll',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6287,'F_Clothing_Dye_Coupon','F Clothing Dye Coupon',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6288,'F_Happy_Box','F Happy Box',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6289,'F_Mysterious_Dyestuff','F Mysterious Dyestuff',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6290,'F_New_Style_Coupon','F New Style Coupon',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6291,'F_Enriched_Elunium','F Enriched Elunium',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6292,'F_Enriched_Oridecon','F Enriched Oridecon',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6293,'F_Token_Of_Siegfried','F Token Of Siegfried',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6294,'F_Marriage_Covenant','F Marriage Covenant',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6295,'F_Clothing_Dye_Coupon2','F Clothing Dye Coupon2',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6296,'RF_Taining_Notice','Training Notice',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6297,'Bottle_To_Throw','Throwing Bottle',3,300,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6298,'Pumpkin_Head_Crushed','Pumpkin Head Crushed',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6299,'Worn_Cloth_Piece','Worn Cloth Piece',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6300,'J_7Draw','event',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6301,'J_Semi_Draw','event',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6302,'GM_Handwriting','GM Handwriting',3,20004,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6303,'Changed_Hydra_Ball','Changed Hydra Ball',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6304,'Sapa_Feat_Cert','Proof Of Sapha\'s Honor',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6305,'Frozen_Skin_Piece','Frozen Piece Of Skin',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6306,'Solid_Bloodstain','Hard Bloodstain',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6307,'Suspicious_Magic_Stone','Cursed Magical Stone',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6308,'Unidentified_Relic','Unidentified Relic',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6309,'E_Max_Weight_Up_Scroll','E Max Weight Up Scroll',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6310,'E_Cloth_Dye_Coupon','E Cloth Dye Coupon',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6311,'E_Happy_Box','E Happy Box',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6312,'E_Mysterious_Dyestuff','E Mysterious Dyestuff',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6313,'E_New_Style_Coupon','E New Style Coupon',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6314,'E_Enriched_Elunium','E Enriched Elunium',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6315,'E_Enriched_Oridecon','E Enriched Oridecon',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6316,'E_Token_Of_Siegfried','E Token Of Siegfried',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6317,'E_Marriage_Covenant','E Marriage Covenant',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6318,'E_Cloth_Dye_Coupon2','E Cloth Dye Coupon2',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6319,'Small_Bradium','Small Bradium',3,324,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6320,'Premium_Reset_Stone','Premium Reset Stone',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6321,'Rakehorn_Helm','Rakehorn Helm',3,822,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6322,'Antler_Helm','Antler Helmet',3,800,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6323,'Twinhorn_Helm','Two-Horned Helmet',3,728,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6324,'Singlehorn_Helm','Single Horned Helmet',3,702,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6325,'White_Spider_Limb','White Spider Limb',3,1004,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6326,'Queen_Wing_Piece','Queen Wing Piece',3,1630,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6328,'Calender_January','Calender January',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6329,'Calender_February','Calender February',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6330,'Calender_March','Calender March',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6331,'Calender_April','Calender April',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6332,'Calender_May','Calender May',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6333,'Calender_June','Calender June',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6334,'Calender_July','Calender July',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6335,'Calender_August','Calender August',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6336,'Calender_September','Calender September',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6337,'Calender_October','Calender October',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6338,'Calender_November','Calender November',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6339,'Calender_December','Calender December',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6340,'Fade_Notation_Green','Fade Notation Green',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6341,'Fade_Notation_Red','Fade Notation Red',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6342,'Fade_Notation_Purple','Fade Notation Purple',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6343,'Fade_Notation_Blue','Fade Notation Blue',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6344,'Muscle_Story','Muscle Story',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6345,'Love_Ball','Love Ball',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6346,'Seagate_Mark','Seagate Mark',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6347,'Bless_Word_Paper1','Bless Word Paper',3,4020,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6348,'Bless_Word_Paper2','Bless Word Paper',3,4020,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6349,'Bless_Word_Paper3','Bless Word Paper',3,4020,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6350,'Bless_Word_Paper4','Bless Word Paper',3,4020,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6351,'Bless_Word_Paper5','Bless Word Paper',3,4020,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6352,'Bless_Word_Paper6','Bless Word Paper',3,4020,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6353,'Bless_Word_Paper7','Bless Word Paper',3,4020,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6354,'Bless_Word_Paper8','Bless Word Paper',3,4020,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6355,'Bless_Word_Paper9','Bless Word Paper',3,4020,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6356,'Bless_Word_Paper10','Bless Word Paper',3,4020,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6357,'Fortune_Cookie_Fail','Fortune Cookie Fail',3,4020,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6358,'Free_Cash_Coupon','Free Cash Coupon',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6359,'Guidebook_Exchange','Guidebook Exchange',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6360,'Scarlet_Pts','Scarlet Point',3,100,NULL,5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6361,'Indigo_Pts','Indigo Point',3,100,NULL,5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6362,'Yellow_Wish_Pts','Yellow Wish Point',3,100,NULL,5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6363,'Lime_Green_Pts','Lime Green Point',3,100,NULL,5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6369,'Amatsu_Bead_A','Amatsu Bead A',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6370,'Amatsu_Bead_Ma','Amatsu Bead Ma',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6371,'Amatsu_Bead_Tsu','Amatsu Bead Tsu',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6372,'Amatsu_Bead_Jam','Amatsu Bead Jam',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6373,'Amatsu_Bead_Bo','Amatsu Bead Bo',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6374,'Amatsu_Bead_Ree','Amatsu Bead Ree',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6375,'Amatsu_Bead_!','Amatsu Bead !',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6376,'KVM_Badge','KVM Badge',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6377,'Buy_Market_Permit','Buy Market Permit',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6378,'Winning_Mark','Winning Mark',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6379,'7Star_Board','7Star Board',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6380,'Mora_Coin','Mora Coin',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6381,'Field_Shovel','Field Shovel',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6382,'Urn','Urn',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6383,'Clue_Of_Lope','Lope\'s Clue',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6384,'Ring_Of_Lope','Lope\'s Ring',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6385,'Research_Tool_Bag','Research Tool Bag',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6386,'Bathtub_R_Sample','Bath Water Sample',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6387,'Teeth_Sample','Teeth Sample',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6388,'Scale_Sample','Scale Sample',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6389,'Puddle_R_Sample','Sample Of Puddle Research',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6390,'Small_Pocket','Small Pocket',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6391,'Splendid_Supply_Kit','Splendid Supply Kit',3,20,NULL,2000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6392,'Bradium_Box','Bradium Box',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6393,'Round_Feather','Round Feather',3,700,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6394,'Golden_Feather','Golden Feather',3,650,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6395,'Angel_Magic_Power','Angel Magic Power',3,820,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6396,'Auger_Of_Spirit','Auger Of Spirit',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -# -REPLACE INTO `item_db` VALUES (6456,'Guarantee_Weapon_5Up','+5 Weapon Refine Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6457,'Guarantee_Armor_5Up','+5 Armor Refine Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6493,'Makibishi','Makibishi',3,30,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6499,'Ancient_Grudge','Ancient Grudge',3,500,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6512,'Charm_Fire','Fire Amulet',3,100,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6513,'Charm_Ice','Ice Amulet',3,100,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6514,'Charm_Wind','Wind Amulet',3,100,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (6515,'Charm_Earth','Earth Amulet',3,100,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -# -REPLACE INTO `item_db` VALUES (7001,'Mould_Powder','Mould Powder',3,466,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7002,'Ogre_Tooth','Ogre Tooth',3,658,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7003,'Anolian_Skin','Anolian Skin',3,968,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7004,'Mud_Lump','Mud Lump',3,876,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7005,'Skull','Skull',3,1044,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7006,'Wing_Of_Red_Bat','Wing of Red Bat',3,168,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7007,'Claw_Of_Rat','Claw of Rat',3,748,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7008,'Stiff_Horn','Stiff Horn',3,636,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7009,'Glitter_Shell','Glitter Shell',3,528,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7010,'Tail_Of_Steel_Scorpion','Tail of Steel Scorpion',3,548,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7011,'Claw_Of_Monkey','Claw of Monkey',3,466,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7012,'Tough_Scalelike_Stem','Tough Scalelike Stem',3,412,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7013,'Coral_Reef','Coral Reef',3,772,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7014,'Old_Portrait','Old Portrait',3,1500,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7015,'Bookclip_In_Memory','Bookclip in Memory',3,3000,NULL,20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7016,'Spoon_Stub','Spoon Stub',3,2500,NULL,20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7017,'Executioner\'s_Mitten','Executioner\'s Mitten',3,4500,NULL,30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7018,'Young_Twig','Young Twig',3,50,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7019,'Loki\'s_Whispers','Loki\'s Whispers',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7020,'Mother\'s_Nightmare','Mother\'s Nightmare',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7021,'Foolishness_Of_Blind','Foolishness of the Blind',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7022,'Old_Hilt','Old Hilt',3,150,NULL,30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7023,'Blade_Lost_In_Darkness','Blade Lost in Darkness',3,12000,NULL,40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7024,'Bloody_Edge','Bloody Edge',3,10000,NULL,40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7025,'Lucifer\'s_Lament','Lucifer\'s Lament',3,30000,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7026,'Key_Of_Clock_Tower','Key of Clock Tower',3,100,NULL,30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7027,'Underground_Key','Key of Underground',3,100,NULL,30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7028,'Invite_For_Duel','Invite for Duel',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7029,'Admission_For_Duel','Admission for Duel',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7030,'Claw_Of_Desert_Wolf','Claw of Desert Wolf',3,208,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7031,'Old_Frying_Pan','Old Frying Pan',3,196,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7032,'Piece_Of_Egg_Shell','Piece of Egg Shell',3,168,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7033,'Poison_Spore','Poison Spore',3,114,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7034,'Red_Socks_With_Holes','Red Stocking',3,100,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7035,'Matchstick','Matchstick',3,100,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7036,'Fang_Of_Garm','Fang of Hatii',3,100,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7037,'Trade_Coupon','Coupon',3,100,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7038,'Yarn','Yarn',3,100,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7039,'Novice_Nametag','Newbie Tag',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7040,'Megaphone','Megaphone',3,1,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7041,'Fine_Grit','Fine Grit',3,120,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7042,'Leather_Bag_Of_Infinity','Leather Bag of Infinity',3,1,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7043,'Fine_Sand','Fine Sand',3,100,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7044,'Vigorgra','Vigorgra',3,1,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7045,'Magic_Paint','Magic Paint',3,1,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7046,'Cart_Parts','Cart Parts',3,1,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7047,'Alice\'s_Apron','Alice\'s Apron',3,2424,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7048,'Talon_Of_Griffin','Talon of Griffon',3,5418,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7049,'Stone','Stone',3,0,NULL,30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7050,'Cotton_Mat','Cotton Mat',3,100,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7051,'Silk_Mat','Silk Mat',3,100,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7052,'Old_Magazine','Old Papers',3,100,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7053,'Cyfar','Cyfar',3,772,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7054,'Brigan','Brigan',3,746,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7055,'Animal_Pooopoo','Animal Poop',3,100,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7056,'Payroll_Of_Kafra','Payment Statement for Kafra Employee',3,1,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7057,'Gallar_Horn','Gjallar',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7058,'Gullraifnir','Gleipnir',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7059,'Cargo_Free_Ticket','Free Ticket for Kafra Storage',3,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7060,'Warp_Free_Ticket','Free Ticket for Kafra Transportation',3,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7061,'Cart_Free_Ticket','Free Ticket for the Cart Service',3,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7062,'Broken_Turtle_Shell','Broken Turtle Shell',3,280,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7063,'Soft_Feather','Soft Feather',3,280,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7064,'Dragon_Fly_Wing','Wing of Dragonfly',3,520,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7065,'Sea_Otter_Leather','Sea-Otter Fur',3,820,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7066,'Ice_Piece','Ice Cubic',3,660,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7067,'Stone_Piece','Stone Fragment',3,640,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7068,'Burn_Tree','Burnt Tree',3,722,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7069,'Broken_Armor_Piece','Destroyed Armor',3,1042,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7070,'Broken_Shell','Broken Shell',3,900,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7071,'Tatters_Clothes','Tattered Clothes',3,1280,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7072,'Rust_Suriken','Old Shuriken',3,1780,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7073,'Jewel_Of_Prayer','Freya\'s Jewel',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7074,'Iron_Glove','Thor\'s Gauntlets',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7075,'Iron_Maiden','Iron Maiden',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7076,'Mystery_Wheel','Wheel of the Unknown',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7077,'Silver_Fancy','Silver Ornament',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7078,'Anger_Of_Valkurye','Wrath of Valkyrie',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7079,'Feather_Of_Angel','Feather of Angel Wing',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7080,'Foot_Step_Of_Cat','Cat Tread',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7081,'Beard_Of_Women','Woman\'s Moustache',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7082,'Root_Of_Stone','Root of Stone',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7083,'Soul_Of_Fish','Spirit of Fish',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7084,'Saliva_Of_Bird','Sputum of Bird',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7085,'Tendon_Of_Bear','Sinew of Bear',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7086,'Symbol_Of_Sun','Emblem of the Sun God',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7087,'Breath_Of_Soul','Breath of Spirit',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7088,'Crystal_Of_Snow','Snow Crystal',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7089,'Indication_Of_Tempest','Omen of Tempest',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7090,'Slilince_Wave','Ripple',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7091,'Rough_Billows','Billow',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7092,'Air_Stream','Drifting Air',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7093,'Wheel','Cogwheel',3,1512,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7094,'Mystery_Piece','Fragment',3,1344,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7095,'Broken_Steel_Piece','Metal Fragment',3,1075,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7096,'Cold_Magma','Lava',3,1109,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7097,'Burning_Heart','Burning Heart',3,924,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7098,'Live_Coal','Live Coal',3,638,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7099,'Old_Magic_Circle','Worn-out Magic Scroll',3,773,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7100,'Sharp_Leaf','Sharp Leaf',3,806,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7101,'Peco_Wing_Feather','Peco Peco Feather',3,454,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7102,'Hideous_Dream','Nightmare',3,1075,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7103,'Unknown_Liquid_Bottle','Unknown Liquid Bottle',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7104,'Fake_Angel_Wing','False Angel Wing',3,756,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7105,'Fake_Angel_Loop','False Heaven Ring',3,924,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7106,'Goat\'s_Horn','Antelope Horn',3,672,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7107,'Gaoat\'s_Skin','Antelope Skin',3,756,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7108,'Boroken_Shiled_Piece','Piece of Shield',3,1680,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7109,'Shine_Spear_Blade','Shining Spear Blade',3,840,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7110,'Vroken_Sword','Broken Sword',3,588,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7111,'Smooth_Paper','Slick Paper',3,706,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7112,'Fright_Paper_Blade','Sharp Paper',3,907,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7113,'Broken_Pharaoh_Symbol','Broken Pharaoh Emblem',3,2016,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7114,'Tutankhamen\'s_Mask','Masque of Tutankhamen',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7115,'Harpy\'s_Feather','Harpy Feather',3,1142,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7116,'Harpy\'s_Claw','Harpy Talon',3,1210,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7117,'Rent_Spell_Book','Torn Magic Book',3,1142,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7118,'Rent_Scroll','Torn Scroll',3,1361,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7119,'Spawns','Bacillus',3,1025,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7120,'Burning_Horse_Shoe','Burning Horseshoe',3,823,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7121,'Honey_Jar','Honey Pot',3,622,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7122,'Hot_Hair','Burning Hair',3,974,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7123,'Dragon\'s_Skin','Dragon Skin',3,1025,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7124,'Sand_Lump','Sand Clump',3,706,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7125,'Scropion\'s_Nipper','Scorpion Claw',3,706,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7126,'Large_Jellopy','Large Jellopy',3,840,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7127,'Alcol_Create_Book','Alcohol Creation Guide',3,100000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7128,'FireBottle_Create_Book','Bottle Grenade Creation Guide',3,100000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7129,'Acid_Create_Book','Acid Bottle Creation Guide',3,100000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7130,'Plant_Create_Book','Plant Bottle Creation Guide',3,100000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7131,'Mine_Create_Book','Marine Sphere Creation Guide',3,100000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7132,'Coating_Create_Book','Glistening Coat Creation Guide',3,100000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7133,'Slim_Potion_Create_Book','Condensed Potion Creation Guide',3,240000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7134,'Medicine_Bowl','Medicine Bowl',3,8,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7135,'Fire_Bottle','Bottle Grenade',3,200,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7136,'Acid_Bottle','Acid Bottle',3,200,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7137,'MenEater_Plant_Bottle','Plant Bottle',3,200,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7138,'Mini_Bottle','Marine Sphere Bottle',3,200,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7139,'Coating_Bottle','Glistening Coat',3,200,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7140,'Seed_Of_Life','Seed of Life',3,60000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7141,'Yggdrasilberry_Dew','Morning Dew of Yggdrasil',3,20000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7142,'Germination_Breed','Embryo',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7143,'Life_Force_Pot','Glass Tube',3,5000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7144,'Normal_Potion_Book','Potion Creation Guide',3,100000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7145,'Rag_T_Shirts','Ragnarok T-shirt',3,1,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7146,'Vacance_Ticket','Vacation Ticket',3,1,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7147,'Jasmin','Jasmine',3,1,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7148,'Mother_Letter','Mother\'s Letter',3,1,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7149,'Yellow_Plate','Yellow Plate',3,220,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7150,'Bamboo_Cut','Piece of Bamboo',3,310,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7151,'Oil_Paper','Oil Paper',3,210,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7152,'Glossy_Hair','Glossy Hair',3,340,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7153,'Old_Japaness_Clothes','Worn-out Kimono',3,590,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7154,'Poison_Powder','Poisonous Powder',3,160,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7155,'Poison_Toad\'s_Skin','Poisonous Toad Skin',3,280,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7156,'Broken_Shuriken','Broken Shuriken',3,470,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7157,'Black_Mask','Dark Mask',3,315,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7158,'Broken_Wine_Vessel','Broken Liquor Jar',3,160,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7159,'Tengu\'s_Nose','Tengu Nose',3,400,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7160,'Lord\'s_Passable_Ticket','Feudal Lord Permit',3,1,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7161,'Black_Bear\'s_Skin','Black Bear Skin',3,384,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7162,'Cloud_Piece','Cloud Crumb',3,390,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7163,'Sharp_Feeler','Hard Feeler',3,570,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7164,'Hard_Peach','Solid Peach',3,400,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7165,'Limpid_Celestial_Robe','Transparent Celestial Robe',3,650,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7166,'Soft_Silk_Cloth','Soft Silk',3,1200,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7167,'Mystery_Iron_Bit','Strange Steel Piece',3,430,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7168,'Great_Wing','Giant Butterfly Wing',3,614,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7169,'Taegeuk_Plate','Ba Gua',3,2800,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7170,'Tuxedo','Tuxedo',3,43000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7171,'Leopard_Skin','Leopard Skin',3,282,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7172,'Leopard_Talon','Leopard Claw',3,290,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7173,'BurnBuster_Bag','iROGM02\'s Backpack',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7174,'Packing_Ribbon','Wrapping Lace',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7175,'Packing_Paper','Wrapping Paper',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7176,'XMAS_Coupon','Royal Certificate',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7177,'Part_Of_Star\'s_Sob','Crumb of Sobbing Starlight',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7178,'Star\'s_Sob','Sobbing Starlight',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7179,'Donation_Card','Proof of Donation',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7180,'Introduction_Of_Mr.Han','Hahn Sukbong\'s Recommendation',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7181,'Receipt_01','Receipt',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7182,'Cacao','Cacao',3,200,NULL,20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7183,'Sister_Letter','Letter from Sister',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7184,'Piano_Keyboard','Piano Key',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7185,'Quiz_Ticket','Quiz Entry',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7186,'Thin_Stem','Thin Trunk',3,380,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7187,'Festival_Mask','Festival Mask',3,100,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7188,'Browny_Root','Brown Root',3,560,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7189,'Heart_Of_Tree','Wooden Heart',3,680,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7190,'Solid_Peeling','Solid Husk',3,140,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7191,'Lamplight','Lamp',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7192,'Blade_Of_Pinwheel','Vane',3,160,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7193,'Germinating_Sprout','Sprout',3,230,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7194,'Soft_Leaf','Soft Blade of Grass',3,400,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7195,'Air_Rifle','Slingshot',3,210,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7196,'Shoulder_Protection','Shoulder Protector',3,230,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7197,'Tough_Vines','Tough Vines',3,500,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7198,'Great_Leaf','Huge Leaf',3,610,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7199,'Coupon','Coupon',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7200,'Flexible_String','Elastic Band',3,380,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7201,'Log','Log',3,250,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7202,'Beetle_Nipper','Pincher of Beetle',3,290,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7203,'Solid_Twig','Strong Branch',3,190,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7204,'Gunpowder','Gunpowder',3,320,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7205,'Piece_Of_Black_Cloth','Piece of Black Cloth',3,526,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7206,'Black_Kitty_Doll','Black Cat Doll',3,1440,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7207,'Old_Manteau','Old Manteau',3,1050,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7208,'Rusty_Cleaver','Rusty Kitchen Knife',3,1780,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7209,'Dullahan\'s_Helm','Helm of Dullahan',3,1350,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7210,'Dullahan_Armor','Armor Piece of Dullahan',3,790,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7211,'Rojerta_Piece','Fragment of Rossata Stone',3,2600,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7212,'Hanging_Doll','Hung Doll',3,1020,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7213,'Needle_Pouch','Needle Packet',3,832,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7214,'Bat_Cage','Bat Cage',3,880,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7215,'Broken_Needle','Broken Needle',3,690,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7216,'Red_Scarf','Red Muffler',3,660,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7217,'Spool','Spool',3,424,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7218,'Rotten_Rope','Decomposed Rope',3,390,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7219,'Striped_Socks','Striped Sock',3,920,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7220,'Ectoplasm','Ectoplasm',3,322,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7221,'Tangled_Chain','Tangled Chains',3,740,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7222,'Tree_Knot','Wooden Gnarl',3,468,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7223,'Distorted_Portrait','Contorted Self-Portrait',3,2032,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7224,'Stone_Of_Intelligence','Stone of Sage',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7225,'Pumpkin_Bucket','Pumpkin Lantern',3,486,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7226,'Pill','Pellet',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7227,'TCG_Card','TCG Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7228,'Gold_Bullion','Gold Bullion',3,100000,NULL,300,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7229,'Silver_Bullion','Silver Bullion',3,50000,NULL,300,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7230,'White_Gold_Bullion','Platinum Bullion',3,200000,NULL,300,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7231,'Gold_Ore','Gold Ore',3,20,NULL,150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7232,'Silver_Ore','Silver Ore',3,20,NULL,150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7233,'Mithril_Ore','Mithril Ore',3,20,NULL,150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7234,'Soul_Of_Guild','Spirit of Guild',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7235,'Soul_Of_Courage','Spirit of Charge',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7236,'Soul_Of_Guard','Spirit of Protection',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7237,'Soul_Of_Partnership','Spirit of Association',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7238,'Soul_Of_Correspondence','Spirit of Coordination',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7239,'Soul_Of_Proceeding','Spirit of Advance',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7240,'Soul_Of_Confidence','Spirit of Trust',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7241,'Soul_Of_Agreement','Spirit of Union',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7242,'Soul_Of_Harmony','Spirit of Combination',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7243,'Soul_Of_Cooperate','Spirit of Cooperation',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7244,'Soul_Of_Unity','Spirit of Solidarity',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7245,'Soul_Of_Friendship','Spirit of Friendship',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7246,'Soul_Of_Peace','Spirit of Peace',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7247,'Soul_Of_Spirit','Spirit of Determination',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7248,'Soul_Of_Honor','Spirit of Honor',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7249,'Soul_Of_Service','Spirit of Service',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7250,'Soul_Of_Glory','Spirit of Glory',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7251,'Soul_Of_Victory','Spirit of Victory',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7252,'Herb_Medicine','Herbal Medicine',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7253,'Taeguk_Flag','Golden Korean Flag',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7254,'Digital_Print_Ticket','Digital Picture Printing Coupon',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7255,'China_Marble01','Mystic Orb',3,0,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7256,'China_Marble02','Mystic Orb',3,0,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7257,'China_Marble03','Mystic Orb',3,0,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7258,'China_Marble04','Mystic Orb',3,0,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7259,'China_Marble05','Mystic Orb',3,0,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7260,'China_Marble06','Mystic Orb',3,0,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7261,'China_Marble07','Mystic Orb',3,0,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7262,'Fan','Folding Fan of Cat Ghost',3,466,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7263,'Cat_Eyed_Stone','Cat\'s Eye',3,954,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7264,'Dried_Sand','Dry Sand',3,322,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7265,'Dragon_Horn','Dragon Horn',3,544,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7266,'Dragon_Fang','Denture from Dragon Mask',3,436,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7267,'Tiger_Skin_Panties','Tiger Panty',3,298,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7268,'Little_Blacky_Ghost','Little Ghost Doll',3,1210,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7269,'Bib','Pinafore',3,960,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7270,'Milk_Bottle','Nursing Bottle',3,1100,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7271,'Figure','Novice Figure',3,10000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7272,'Meat_Dumpling_Doll','Rice Ball Doll',3,500,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7273,'Golden_Necklace','RWC Necklace',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7274,'Ancient_Translator','Translated Ancient Language',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7275,'Ancient_Document','Record of Ancient Language',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7276,'Picture_Letter','Doodled Message',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7277,'Munak_Doll','Munak Doll',3,8900,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7278,'Wellbeing_Letter','Letter to Wife',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7279,'Vita500_Lid','Vita500 Lid',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7280,'Quiz_Ticket01','1st Quiz Entry',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7281,'Quiz_Ticket02','2nd Quiz Entry',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7282,'Quiz_Ticket03','3rd Quiz Entry',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7283,'Quiz_Ticket04','4th Quiz Entry',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7284,'Quiz_Ticket05','5th Quiz Entry',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7285,'Thread_Skein','Holy Threads',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7286,'Chilli','Red Chile',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7287,'Thread_Skein_','Holier Threads',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7288,'Thai_Ring','Engagement Ring',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7289,'Olivine','Peridot',3,3000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7290,'Phlogopite','Phlogopite',3,3000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7291,'Agate','Agate',3,3000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7292,'Muscovite','Muscovite',3,3000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7293,'Rose_Quartz','Rose Quartz',3,3000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7294,'Turquoise','Turquoise',3,3000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7295,'Citrine','Citrin',3,3000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7296,'Pyroxene','Pyroxene',3,3000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7297,'Biotite','Biotite',3,3000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7298,'Leaf_Clothes','Fig Leaf',3,538,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7299,'Bamboo_Basket','Straw Basket',3,632,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7300,'Gemstone','Gemstone',3,1420,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7301,'Sword_Accessory','Tassel',3,798,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7302,'KRATHONG','Krathong',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7303,'Bag_Of_Rice','Straw Rice Bag',3,0,NULL,800,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7304,'Witch\'s_Spell_Book','Witch\'s Spell Scroll',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7305,'Authority_Of_Nine_World','Symbol of the Nine Realms',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7306,'Fragment_Of_Soul','Piece of Spirit',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7307,'Whisper_Of_Soul','Spiritual Whispers',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7308,'Witch\'s_Potion','Witch\'s Tonic',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7309,'Wing_Of_Crow','Crow Wing',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7310,'Free_Peco_Ticket','Free Ticket for Peco Ride',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7311,'Free_Flying_Ship_Ticket','Free Ticket for Flyship',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7312,'Jubilee','Jubilee',3,32,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7313,'Seal_Of_Witch','Witch\'s Medal',3,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7314,'The_Sign','The Sign',3,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7315,'Dark_Crystal_Fragment','Dark Crystal Fragment',3,422,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7316,'Long_Limb','Insect Leg',3,658,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7317,'Screw','Rusty Screw',3,534,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7318,'Old_Pick','Old Pick',3,512,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7319,'Old_Steel_Plate','Used Iron Plate',3,1024,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7320,'Air_Pollutant','Dust Pollutant',3,256,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7321,'Fragment_Of_Crystal','Crystal Fragment',3,552,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7322,'Poisonous_Gas','Toxic Gas',3,666,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7323,'Battered_Kettle','Battered Kettle',3,256,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7325,'Tube','Flexible Tube',3,102,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7326,'Fluorescent_Liquid','Fluorescent Liquid',3,712,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7327,'Headlamp','Flashlight',3,1024,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7328,'Legendary_Scroll','Legend of Songkran',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7329,'Old_Copper_Key','Old Bronze Key',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7330,'2anny','Mystic Orb',3,0,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7331,'Flower_Of_Heaven','Heaven Flower',3,500,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7332,'Slate','Complete Tablet',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7333,'Piece_Of_Slate_1','Prontera Tablet',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7334,'Piece_Of_Slate_2','Payon Tablet',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7335,'Piece_Of_Slate_3','Morocc Tablet',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7336,'Piece_Of_Slate_4','Geffen Tablet',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7337,'Eye_Of_Hellion','Eye of Hellion',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7338,'RO_Transportation_Card','One-way Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7339,'RO_Transportation_Card_','Commemorative Travel Card',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7340,'Will_Of_Darkness','Will of the Darkness',3,734,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7341,'Worn_Out_Pendant','Old Pendant',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7342,'File01','File Folder',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7343,'File02','Sealed File Folder',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7344,'File03','Shinokas Case File',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7345,'Armlet_Of_Prisoner','Handcuffs',3,724,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7346,'Pile_Of_Ymir_Heart','Ymir\'s Heart Piece',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7347,'Lab_Staff_Record','Research Chart',3,840,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7348,'Indication_Of_Member01','Membership Card',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7349,'Indication_Of_Member02','Archive Permit',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7350,'Pass','Pass',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7351,'Friend\'s_Diary','Friend\'s Diary',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7352,'Transparent_Plate01','Transparent Plate',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7353,'Transparent_Plate02','Transparent Plate',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7354,'Transparent_Plate03','Transparent Plate',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7355,'Transparent_Plate04','Transparent Plate',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7356,'Piece_Of_Crest1','Crest Piece',3,5000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7357,'Piece_Of_Crest2','Crest Piece',3,5000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7358,'Piece_Of_Crest3','Crest Piece',3,5000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7359,'Piece_Of_Crest4','Crest Piece',3,5000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7360,'RO_Festival_Ticket','RO Festival Invitation',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7361,'Lotto01','Lotto Ball 01',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7362,'Lotto02','Lotto Ball 02',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7363,'Lotto03','Lotto Ball 03',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7364,'Lotto04','Lotto Ball 04',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7365,'Lotto05','Lotto Ball 05',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7366,'Lotto06','Lotto Ball 06',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7367,'Lotto07','Lotto Ball 07',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7368,'Lotto08','Lotto Ball 08',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7369,'Lotto09','Lotto Ball 09',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7370,'Lotto10','Lotto Ball 10',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7371,'Lotto11','Lotto Ball 11',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7372,'Lotto12','Lotto Ball 12',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7373,'Lotto13','Lotto Ball 13',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7374,'Lotto14','Lotto Ball 14',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7375,'Lotto15','Lotto Ball 15',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7376,'Lotto16','Lotto Ball 16',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7377,'Lotto17','Lotto Ball 17',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7378,'Lotto18','Lotto Ball 18',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7379,'Lotto19','Lotto Ball 19',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7380,'Lotto20','Lotto Ball 20',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7381,'Lotto21','Lotto Ball 21',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7382,'Lotto22','Lotto Ball 22',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7383,'Lotto23','Lotto Ball 23',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7384,'Lotto24','Lotto Ball 24',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7385,'Lotto25','Lotto Ball 25',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7386,'Lotto26','Lotto Ball 26',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7387,'Lotto27','Lotto Ball 27',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7388,'Lotto28','Lotto Ball 28',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7389,'Lotto29','Lotto Ball 29',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7390,'Lotto30','Lotto Ball 30',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7391,'Lotto31','Lotto Ball 31',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7392,'Lotto32','Lotto Ball 32',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7393,'Lotto33','Lotto Ball 33',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7394,'Lotto34','Lotto Ball 34',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7395,'Lotto35','Lotto Ball 35',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7396,'Lotto36','Lotto Ball 36',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7397,'Lotto37','Lotto Ball 37',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7398,'Lotto38','Lotto Ball 38',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7399,'Word_Card01','Selamat',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7400,'Word_Card02','Hari',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7401,'Word_Card03','Kemerdekaan',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7402,'Word_Card04','Republik',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7403,'Word_Card05','Indonesia',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7404,'Word_Card06','Ke-60',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7405,'Crushed_Can','Crushed Can',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7406,'Moon_Cake1','Yuebing',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7407,'Moon_Cake2','Yuebing',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7408,'Moon_Cake3','Yuebing',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7409,'Moon_Cake4','Yuebing',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7410,'Moon_Cake5','Yuebing',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7411,'Moon_Cake6','Yuebing',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7412,'Moon_Cake7','Yuebing',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7413,'Moon_Cake8','Yuebing',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7414,'Moon_Cake9','Yuebing',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7415,'Stone_Of_Summons','Summoning Stone',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7416,'Letter_Of_Recommend','Letter of Recommendation',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7417,'Mission_ScrollA','Written Request(A)',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7418,'Mission_ScrollB','Written Request(B)',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7419,'Embryo_HandBook','Embryo Creation Guide',3,48000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7420,'Skull_','Skull',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7421,'Key_Red','Red Key',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7422,'Key_Yellow','Yellow Key',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7423,'Key_Blue','Blue Key',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7424,'Key_Green','Green Key',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7425,'Key_Black','Black Key',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7426,'Magic_Gem_Red','Red Charm Stone',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7427,'Magic_Gem_Yellow','Yellow Charm Stone',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7428,'Magic_Gem_Blue','Blue Charm Stone',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7429,'Magic_Gem_Green','Green Charm Stone',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7430,'Magic_Gem_Black','Black Charm Stone',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7431,'Several_Books','Pile of Books',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7432,'Leather_Pouch','Leather Pouch',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7433,'Scroll','Blank Scroll',3,4000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7434,'Elemental_Potion_Book','Elemental Potion Creation Guide',3,100000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7435,'Golden_Bracelet','Golden Ornament',3,1907,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7436,'Piece_Of_Memory_Green','Fragment of Agony',3,1506,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7437,'Piece_Of_Memory_Purple','Fragment of Misery',3,1506,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7438,'Piece_Of_Memory_Blue','Fragment of Hatred',3,1506,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7439,'Piece_Of_Memory_Red','Fragment of Despair',3,1506,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7440,'Red_Feather','Red Feather',3,1335,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7441,'Blue_Feather','Blue Feather',3,1408,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7442,'Cursed_Seal','Cursed Seal',3,1332,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7443,'Tri_Headed_Dragon_Head','Three-Headed Dragon\'s Head',3,956,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7444,'Treasure_Box','Treasure Box',3,300000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7445,'Dragonball_Green','Green Bijou',3,887,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7446,'Dragonball_Blue','Blue Bijou',3,887,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7447,'Dragonball_Red','Red Bijou',3,887,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7448,'Dragonball_Yellow','Yellow Bijou',3,887,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7449,'Bloody_Page','Bloody Page',3,681,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7450,'Piece_Of_Bone_Armor','Skeletal Armor Piece',3,2050,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7451,'Scale_Of_Red_Dragon','Fire Dragon Scale',3,1852,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7452,'Yellow_Spice','Yellow Spice',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7453,'Sweet_Sauce','Sweet Sauce',3,700,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7454,'Plain_Sauce','Savory Sauce',3,700,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7455,'Hot_Sauce','Spicy Sauce',3,700,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7456,'Red_Spice','Red Spice',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7457,'Cooking_Oil','Cooking Oil',3,500,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7458,'Baphomet\'s_Horn','Fortune Horn',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7459,'RAMADAN_','Idul Fitri Card',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7460,'Niflheim_Ticket','Niflheim Express Ticket',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7461,'BlueCard_A','Blue A Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7462,'BlueCard_E','Blue E Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7463,'BlueCard_F','Blue F Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7464,'BlueCard_H','Blue H Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7465,'BlueCard_L','Blue L Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7466,'BlueCard_N','Blue N Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7467,'BlueCard_O','Blue O Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7468,'BlueCard_P','Blue P Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7469,'BlueCard_U','Blue U Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7470,'BlueCard_W','Blue W Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7471,'BlueCard_Y','Blue Y Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7472,'Cookbook01','Level 1 Cookbook',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7473,'Cookbook02','Level 2 Cookbook',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7474,'Cookbook03','Level 3 Cookbook',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7475,'Cookbook04','Level 4 Cookbook',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7476,'Cookbook05','Level 5 Cookbook',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7477,'Cookbook06','Level 6 Cookbook',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7478,'Cookbook07','Level 7 Cookbook',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7479,'Cookbook08','Level 8 Cookbook',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7480,'Cookbook09','Level 9 Cookbook',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7481,'Cookbook10','Level 10 Cookbook',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7482,'Pot','Pot',3,200,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7483,'Key_Of_Seal','Key of the Seal',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7484,'Warrior_Symbol','Symbol of a Brave Warrior',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7485,'2nd_Floor_Pass','Cloud General',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7486,'3rd_Floor_Pass','Wind General',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7487,'Tavern_Wine','Culinary Wine',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7488,'Delivery_Box','Delivery Package',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7489,'Villa_Spare_Key','Cottage Key',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7490,'Kyll_Hire_Letter','Letter to Elly',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7491,'Iron_Box','Steel Box',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7492,'Yellow_Key_Card','Yellow Keycard',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7493,'Golden_Key','Golden Key',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7494,'Kiel_Button','Luxurious Button',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7495,'Blue_Key_Card','Blue Keycard',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7496,'Red_Key_Card','Red Keycard',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7497,'Steel_Piece','Metal Fragment',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7498,'Rosimier_Key','Rosimier Mansion Keys',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7499,'Family_Portrait','Family Portrait',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7500,'Elysia_Portrait','Woman\'s Portrait',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7501,'Kyll_Hire_Letter2','K.H\'s Letter',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7502,'Piece_Memo_Of_James','James\'s Note',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7503,'Man_Portrait','Man\'s Portrait',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7504,'Toy_Motor','Power Device',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7505,'Toy_Key','Toy Key',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7506,'Black_Key_Card','Black Keycard',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7507,'Sturdy_Iron_Piece','Solid Iron Piece',3,842,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7508,'Elysia_Ring','Allysia\'s Ring',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7509,'Fancy_Key_Card','Luxurious Keycard',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7510,'Valhalla_Flower','Valhalla\'s Flower',3,200000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7511,'Rune_Of_Darkness','Rune of Darkness',3,2526,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7512,'Burnt_Parts','Burnt Part',3,1600,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7513,'Pocket_Watch','Pocket Watch',3,3420,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7514,'Monster_Ticket','Monster Ticket',3,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7515,'Marvelous_Medal','Prize Medal',3,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7516,'Green_Key_Card','Green Keycard',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7517,'Gold_Coin_','Gold Coin',3,1000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7518,'Women\'s_Medal','Women\'s Medal',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7519,'Money_Envelope','Handsel',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7520,'Chinese_Scroll','Please Be Rich',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7521,'Flame_Stone','Flame Stone',3,150,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7522,'Ice_Stone','Ice Stone',3,150,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7523,'Wind_Stone','Wind Stone',3,150,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7524,'Shadow_Orb','Shadow Orb',3,300,NULL,20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7525,'Summer_Feast_Ticket','Summer Festival Ticket',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7526,'Manuscript_Paper','Manuscript Paper',3,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7527,'Life_Book','Book About True Life',3,0,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7528,'Id_Lottery_Ticket','Lottery Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7529,'Stolen_Sandals','Stolen Sandal',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7530,'Travel_Brochure_01','Travel Brochure [Amatsu]',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7531,'Travel_Brochure_02','Travel Brochure [Kunlun]',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7532,'Travel_Brochure_03','Travel Brochure [Luoyang]',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7533,'Travel_Brochure_04','Travel Brochure [Ayothaya]',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7534,'Photo_Album_01','Amatsu Completed Photo Album',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7535,'Photo_Album_02','Kunlun Completed Photo Album',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7536,'Photo_Album_03','Luoyang Completed Photo Album',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7537,'Photo_Album_04','Ayothaya Completed Photo Album',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7538,'Sifted_Sand','Sand for Work',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7539,'Poring_Coin','Poring Coin',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7540,'Lotto39','Lotto Ball 39',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7541,'Lotto40','Lotto Ball 40',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7542,'Lotto41','Lotto Ball 41',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7543,'Lotto42','Lotto Ball 42',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7544,'Lotto43','Lotto Ball 43',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7545,'Lotto44','Lotto Ball 44',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7546,'Lotto45','Lotto Ball 45',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7547,'Soccer_Ball','Soccer Ball',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7548,'Soccer_Shoes','Soccer Shoes',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7549,'Brazilian_Flag','Brazilian Flag',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7550,'Ticket01','6.13 Ticket',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7551,'Ticket02','6.18 Ticket',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7552,'Ticket03','6.22 Ticket',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7553,'Lotus_Flower','Lotus Flower',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7554,'Striped_Candle','Striped Candle',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7555,'Green_Incense','Green Incense',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7556,'Longing_Heart','Longing Heart',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7557,'Invitation_Letter','Invitation Letter',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7558,'Invitation_Ticket','Invitation Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7559,'Key_Of_Flower_Garden','Key to the Secret Garden',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7560,'Longing_Heart2','Longing Heart',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7561,'Ice_Heart','Glacial Heart',3,606,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7562,'Ice_Scale','Ice Scale',3,3020,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7563,'Bloody_Rune','Bloody Rune',3,2016,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7564,'Rotten_Meat','Rotten Meat',3,102,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7565,'Sticky_Poison','Sticky Poison',3,350,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7566,'Will_Of_Darkness_','Will of Red Darkness',3,1530,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7567,'Suspicious_Hat','Suspicious Hat',3,1290,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7568,'White_Mask','White Mask',3,1060,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7569,'Hammer_Of_Wind','Wind Hammer',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7570,'Temple_Lottery_Ticket','Temple Lottery Ticket',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7571,'Diary_Of_Blue','Bruspetti\'s Diary',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7572,'Magic_Necklace','Ashy Necklace',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7573,'Magic_Necklace_','Sparkling Necklace',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7574,'Ice_Particle','Freezing Snow Powder',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7575,'Red_Jewel_','Red Jewel',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7576,'Blue_Jewel_','Blue Jewel',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7577,'Golden_Jewel_','Yellow Jewel',3,20,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7578,'Anti_Spell_Bead','Countermagic Crystal',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7579,'Silk_Handkerchief','Silk Handkerchief of Zhi Nu',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7580,'Black_Bead','Black Marble',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7581,'Anniversary_Ticket','Celebration Document',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7582,'Gem_Of_Ruin','Jewel of Destruction',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7583,'Evil_Mind','Evil Mind',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7584,'Proof_Of_Guard1','Guard\'s First Proof',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7585,'Proof_Of_Guard2','Guard\'s Second Proof',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7586,'Proof_Of_Guard3','Guard\'s Third Proof',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7587,'Proof_Of_Guard4','Guard\'s Fourth Proof',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7588,'IPOD_Ticker','IPOD Coupon',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7589,'Moon_Cake10','Lettered Moon Snack 01',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7590,'Moon_Cake11','Lettered Moon Snack 02',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7591,'Moon_Cake12','Lettered Moon Snack 03',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7592,'Moon_Cake13','Lettered Moon Snack 04',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7593,'Moon_Cake14','Lettered Moon Snack 05',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7594,'Sonia\'s_Letter','Sonia\'s Letter',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7595,'Unique_Sword','Special Sword',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7596,'Unique_Shield','Special Shield',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7597,'Magic_Stone','Magic Stone',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (7598,'BlueCard_I','Blue I Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (7599,'BlueCard_D','Blue D Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (7600,'BlueCard_K','Blue K Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (7601,'BlueCard_S','Blue S Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (7602,'BlueCard_R','Blue R Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7603,'RO_Party_Ticket','RO Party Invitation Ticket',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7604,'Flour','Flour',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7605,'Chicken_Egg','Chicken Egg',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7606,'Coin','Token of the Ox',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7607,'Evil_Dragon_Head','Neck of Demon Dragon',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7608,'Premium_Ticket','Premium Ticket',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7609,'Pumpkin_Mojo','Pumpkin Mojo',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7610,'Food_Ticket','Food Exchange Ticket',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7611,'Fox_Symbol','Symbol of Fox',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7612,'Heart_Of_Fox_Queen','Heart of Queen Fox',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7613,'Small_Rice_Dough','Small Rice Cake Dough',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7614,'Special_Packing_Paper','Wrapping Paper',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7615,'MVP_Ticket','MVP Voucher',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7616,'Mini_Boss_Ticket','Miniboss Voucher',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7617,'Monster_Ticket_','Monster Voucher',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7618,'Monster_Crystal','Monster Crystal',3,2,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7619,'Enriched_Elunium','Enriched Elunium',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7620,'Enriched_Oridecon','Enriched Oridecon',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7621,'Token_Of_Siegfried','Token Of Siegfried',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7622,'New_Style_Coupon','Hairstyle Coupon',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7623,'Name_Change_Coupon','Ticket Of Identification',3,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7624,'Spring_Stanza23','Spring Stanza23',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7625,'Registration_Ticket','Registration Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7626,'Bubble_Gum_Token','Bubble Gum Token',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7627,'Sage_Key','Sage Key',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7628,'Idiot_Key','Idiot Key',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7629,'Pink_Gift_Box','Pink Gift Box',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7630,'Clean_Beach_Brush','Clean Beach Brush',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7631,'Trash_Debris','Trash Debris',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7635,'Sachet','Sachet',3,100,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -# -REPLACE INTO `item_db` VALUES (7701,'Dragon_Spirit','Soul',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7702,'Special_Cogwheel','Special Cogwheel',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7703,'Piece_Of_Cogwheel','Piece of Cogwheel',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7704,'Broken_Thermometer','Broken Thermometer',3,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7705,'Note_Of_Geologist','Note of Geologist',3,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7706,'Spoiled_Carrot_Juice','Broken Carrot Juice',3,20,NULL,40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7707,'Spoiled_Banana_Juice','Broken Banana Juice',3,20,NULL,40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7708,'Spoiled_Apple_Juice','Broken Apple Juice',3,20,NULL,40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7709,'Spoiled_Grape_Juice','Broken Grape Juice',3,20,NULL,40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7710,'Black_Gemstone','Black Gemstone',3,600,NULL,30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7711,'Update_Ticket','Event Ticket',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7712,'Nokia5500','Nokia 5500',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7713,'BlueCard_A_','Blue A(2) Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7714,'BlueCard_R_','Blue R(2) Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7715,'Handmade_Choco_Recipe','Handmade Chocolate Recipe',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7716,'Strawberry_Choco_Recipe','Chocolate Strawberry Recipe',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7717,'Choco_Tart_Recipe','Chocolate Tart Recipe',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7718,'Cacao_Bean','Cacao Bean',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7719,'BlueCard_G','Blue G Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7720,'Gold_Coin_US','Gold Coin',3,100,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7721,'Treasure_Box_','Treasure Box',3,100,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7722,'Debt_Note','Debt Note',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7723,'Diamond_Of_Ruin','Diamond of Ruin',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7724,'Forbidden_Secret_Art','Forbidden Secret Art',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7725,'Unlucky_Emerald','Unlucky Emerald',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7726,'Token_Of_King','Token of King',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7727,'HP_Doctor_Ticket','HP Doctor Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7728,'SP_Doctor_Ticket','SP Doctor Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7729,'Rok_Star_Badge','Rok Star Badge',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7730,'Mission_Certificate1','Mission Ticket 1',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7731,'Mission_Certificate2','Mission Ticket 2',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7732,'Mission_Certificate3','Mission Ticket 3',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7733,'Mission_Certificate4','Mission Ticket 4',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7734,'Mission_Certificate5','Mission Ticket 5',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7735,'Mission_Certificate6','Mission Ticket 6',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7736,'Mission_Certificate7','Mission Ticket 7',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7737,'Mission_Certificate8','Mission Ticket 8',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7738,'Mission_Certificate9','Mission Ticket 9',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7739,'Mission_Certificate10','Mission Ticket 10',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7740,'Mission_Certificate11','Mission Ticket 11',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7741,'Mission_Certificate12','Mission Ticket 12',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7742,'Kaong','Kaong',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7743,'Gulaman','Gulaman',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7744,'Leche_Flan','Leche Flan',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7745,'Ube_Jam','Ube Jam',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7746,'Sago','Sago',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7747,'Langka','Langka',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7748,'Sweet_Bean','Sweet Beans',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7749,'Sweet_Banana','Sweet Bananas',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7750,'Macapuno','Macapuno',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7751,'Old_White_Cloth','Old White Cloth',3,550,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7752,'Clattering_Skull','Clattering Skull',3,840,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7753,'Broken_Farming_Utensil','Broken Farming Utensil',3,330,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7754,'Broken_Crown','Broken Crown',3,3000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7755,'Research_Note','Research Note',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7756,'Sealed_Book','Sealed Book',3,2000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7757,'Mithril','Mithril',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7758,'Star_Crystal','Star Crystal',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7759,'Geology_Report','Geologist\'s Report',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7760,'Yaga_Magic_Book','Yaga\'s Magic Book',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7761,'Magic_Gourd_Bottle','Magic Gourd Bottle',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7762,'Yaga_Pestle','Yaga\'s Pestle',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7763,'Sticky_Herb','Sticky Herb',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7764,'High_Strength_Adhesive','High Strength Adhesive',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7765,'Yaga_Secret_Medicine','Baba Yaga\'s Secret Medicine',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7766,'Bok_Choy','Bok Choy',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7767,'Chung_E_Cake','Green Maiden\'s Cake',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7768,'Squid','Squid',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7769,'Egg_Yolk','Egg Yolk',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7770,'Sweet_Rice','Sweet Rice',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7771,'Lotus_Leaf','Lotus Leaf',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7772,'String','String',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7773,'War_Badge','Wat Badge',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7774,'Chung_E_Ticket','Green Maiden Ticket',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7775,'Spring_Rabbit_Ticket','Spring Rabbit Ticket',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7776,'Max_Weight_Up_Scroll','Gym Pass',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7777,'Gold_Box','Sealed Golden Box',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7778,'Silver_Box','Sealed Silver Box',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7779,'Gold_Key_TW','Golden Key',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7780,'Silver_Key','Silver Key',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7781,'Heart_Box','Engrave Treasure Box',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7782,'Gold_Key77','Episode 13.1 Poporing Key',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7783,'Silver_Key77','Episode 13.2 Poring Key',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7784,'Fawner_Coupon1','Free Coupon 1',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7785,'Fawner_Coupon2','Free Coupon 2',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7786,'Fawner_Coupon3','Free Coupon 3',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7787,'Fawner_Coupon4','Free Coupon 4',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7788,'Fawner_Coupon5','Free Coupon 5',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7789,'Fawner_Coupon6','Free Coupon 6',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7790,'Fawner_Coupon7','Free Coupon 7',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7791,'Fawner_Coupon8','Free Coupon 8',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7792,'Guyak','Guyak',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7793,'Golden_Apple','Golden Apple',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7794,'Fate_Of_Crow','The Crow of Destiny',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7795,'Mami_Photo_Album','Mammi\'s Photo Album',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7796,'Author_Autograph','Author\'s Autograph',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7797,'Author_Memo','Author\'s Memo',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7798,'Dark_Debris','Fragment of Darkness',3,500,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7799,'Dark_Crystal','Crystal of Darkness',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7800,'Golden_Apple_','Golden Charm Apple',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7801,'Girl_Fan_Letter','Girl\'s Letter',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7802,'Autograph_Book','Signature Notebook',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7803,'Battle_Manual_TW','Beginner\'s Field Manual',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (7804,'????_???','????_???',3,NULL,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7805,'Brown_Ring','Brown Jenoss\'s Family Ring',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7806,'Black_Anvil','God Anvil',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7807,'Ore','God Mineral',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7808,'Gold_Hammer','God Hammer',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7809,'Gold_Furnace','God Furnace',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7810,'Yellow_Cat_Eyed_Stone','Symbol of Richness',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7811,'Gold_Anvil','Anvil',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7812,'Red_Cat_Eyed_Stone','Symbol of Bravery',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7813,'Th_Red_Ring','Red Jenoss\'s Family Ring',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7814,'Green_Ring','Green Jenoss\'s Family Ring',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7815,'Blue_Ring','Blue Jenoss\'s Family Ring',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7816,'Blue_Cat_Eyed_Stone','Symbol of Faith',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7817,'White_Cat_Eyed_Stone','Symbol of Peace',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7818,'RJC_Golden_Necklace','Jessur\'s Necklace',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7819,'Nokia5300','Nokia 5300',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7820,'Morroc_Skin','Piece of Morocc Skin',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7821,'Green_Apple','Green Apple',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7822,'Whole_Barbecue','Whole Barbecue',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7823,'Meat_Veg_Skewer','Meat Veg Skewer',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7824,'Spirit_Liquor','Spirit Liquor',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7825,'Heroic_Stone','Heroic Stone',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7826,'Continental_Guard_Paper','Continental Guard Paper',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7827,'Mineral_Report','Mineral Evals',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7828,'BF_Badge1','Bravery Badge',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7829,'BF_Badge2','Valor Badge',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7830,'Goddess_Tear','Goddess Tear',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7831,'Valkyrie_Token','Valkyrie\'s Token',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7832,'Brynhild_Armor_Piece','Brynhild Armor Piece',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7833,'Hero_Remains','Hero\'s Remains',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7834,'Andvari_Ring','Andvari\'s Ring',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7835,'Dusk_Glow','Dusk Glow',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7836,'Dawn_Essence','Dawn Essence',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7837,'Cold_Moonlight','Cold Moonlight',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7838,'Hazy_Starlight','Hazy Starlight',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7839,'Crystal_Key','Crystal Key',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7840,'Valkyrie_Gift','Valkyrie\'s Gift',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7841,'Spotted_Paper','Stained Piece Of Paper',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7842,'Torn_Paper','Torn Piece Of Paper',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7843,'Old_Paper','Old Piece Of Paper',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7844,'Burnt_Paper','Burnt Pieces Of Paper',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7845,'Copy_Of_Spotted_Paper','Copy Of Spotted Paper',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7846,'Copy_Of_Torn_Paper','Copy Of Torn Paper',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7847,'Copy_Of_Old_Paper','Copy Of Old Paper',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7848,'Copy_Of_Burnt_Paper','Copy Of Burnt Paper',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7849,'Soul_Crystal','Soul Crystal',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7850,'Wooden_Block_','Wooden Block',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7851,'Pass_F1','Wii Raffle Ticket',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7852,'Pass_F2','Divx Player Raffle Ticket',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7853,'Pass_F3','iPod nano Raffle Ticket',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7854,'Pass_CF','Comodo Festival Ticket',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7855,'Heart','Heart',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7856,'Girl_Bunch_Of_Flower_','Girl\'s Bouquet',3,20,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7857,'Handmade_Kitty_Doll','Hand-made Kitty Doll',3,20,NULL,30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7858,'Dragonball_Yellow_','Dragonball Yellow',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7859,'Game_Ticket','Game Ticket',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7860,'Peeps','Peeps',3,0,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7861,'Jelly_Bean','Jelly Bean',3,0,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7862,'Marshmallow','Marshmallow',3,0,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7863,'GOLD_ID4','Special Gold',3,20,NULL,200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7864,'Love_Flower','Love Flower',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7865,'Gold_Pouch','Gold Pouch',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7866,'Certificate','Certificate',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7867,'SesamePouch','Sesame Bag',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7868,'Water','Fresh Water',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7869,'RicePouch','Rice Pouch',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7870,'Corn','Corn',3,5,NULL,20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7871,'BeanPouch','Bean Bag',3,10,NULL,20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7872,'Grass','Herb',3,10,NULL,30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7873,'MVP_Monster_Scroll','MVP Monster Scroll',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7874,'Monster_Scroll','Create Monster Scroll',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7875,'Pirate_Box','Pirate Treasure',3,300000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7876,'Gold_Key','Golden Key',3,0,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7877,'Red_Ring','Red Ring',3,0,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7878,'Lusalka_Hair','Lusalka\'s Hair',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7879,'Golden_Thread','Golden Thread',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7880,'Babayaga_Silver_Spoon','Baba Yaga\'s Silver Spoon',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7881,'Book_Of_Magic','Mystery Magic Book',3,0,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7882,'Pointed_Branch','Sharp Branch',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7883,'Pointed_Wooden_Flute','Wooden Flute',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7884,'Jade_Plate','Jade Plate',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7885,'Sacred_Arrow','Sacred Arrow',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7886,'Bean_Paste','Bean Paste',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7887,'Dried_Fruit_Box','Dried Fruit Box',3,0,NULL,30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7888,'Bag_Of_Nuts','Bag of Nuts',3,0,NULL,30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7889,'Chicken_Feed','Chicken Feed',3,0,NULL,20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7891,'Mug','Mug',3,2,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7892,'Charcoal','Charcoal',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7893,'Sulfur','Sulphur',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7894,'Nitrate','Nitrogen Acid',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7895,'TRO_Memory_Book01','Rama5 Book',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7896,'TRO_Memory_Book02','Loykrathong Book',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7897,'TRO_Memory_Book03','Constitution Book',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7898,'VVS_Balmung','VV Strong Balmung',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7899,'Spiritualist_Dagger','Dagger Of Psychic',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7900,'Jenoss_Ring1','Jonathan Family Ring',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7901,'Jenoss_Ring2','Jillberriel Family Ring',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7902,'Jenoss_Ring3','Jessur Family Ring',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7903,'Jenoss_Ring4','Jenoss Family Ring',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7904,'Piano_Key','Piano Key',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7905,'Rok_Star_Badge_','Rok Star Badge',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7906,'Poppy_Wreath','Poppy Wreath',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7907,'Bobbin_Of_Goddess','Bobbin Of Goddess',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7908,'Louis_Hair_Coupon','Louise\'s Beauty Coupon',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7909,'Stolen_Cookie','Stolen Cookie',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7910,'Stolen_Candy','Stolen Candy',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7911,'Yulia_Hat','Yulia\'s Hat',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7912,'Portable_Snowman','Portable Snowman Machine',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7913,'Test_Certificate','Battle Test Certificate',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7914,'Ancient_Document_TW','Ancient Language Document',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7915,'Copper_Coin_','Bronze Coin',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7916,'Silver_Coin_','Silver Coin',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7917,'Magic_Potion','Magic Potion',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7918,'Particle_Of_Memory','Fragment Of Memory',3,2000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7919,'Festival_Ticket','Festival Ticket',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7920,'Hero\'s_Arsenal','He\'s Arsenal',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7921,'Essence_Of_Dragon','Essence Of Dragon',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7922,'RWC_Ticket','RWC Voucher Items',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7923,'KRATHONG_','Krathong',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7928,'Brazilian_Flag_','Brazil National Flag',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7929,'Golden_Coin_','Gold Coin',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7930,'Cowking\'s_Nose_Ring','Devil\'s Cattle Ring',3,0,NULL,1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7931,'Poison_Kit','Poison Kit',3,1,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7932,'Poison_Herb_Nerium','Poison Herb Nerium',3,1,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7933,'Poison_Herb_Rantana','Poison Herb Rantana',3,1,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7934,'Poison_Herb_Makulata','Poison Herb Makulata',3,1,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7935,'Poison_Herb_Seratum','Poison Herb Seratum',3,1,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7936,'Poison_Herb_Scopolia','Poison Herb Scoporia',3,1,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7937,'Poison_Herb_Amoena','Poison Herb Amoena',3,1,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7938,'Light_Granule','Light Granule',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7939,'Elder_Branch','Elder Branch',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7940,'Special_Alloy_Trap','Special Alloy Trap',3,200,NULL,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7941,'Halloween_Ticket','Halloween Ticket',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7942,'Letter_From_Chico','Chico Cesar Letter',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7943,'Caskinya','Caskinya',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7944,'Sealed_Box','Sealed Box',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7945,'Almighty_Charm','Universal Amulet',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7946,'Valentine_Gold_Ring','Gold Ring Of Valentine',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7947,'Valentine_Silver_Ring','Silver Ring Of Valentine',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7948,'Box','Box',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7949,'Woven_Wool','Woven Wool',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7950,'Ayothaya_Ticket','Ayothaya Fest Ticket',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7951,'Gold_Tulip','Golden Tulip Flower',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7952,'Gift_From_Romiros','Gift Of Lomi Ross',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7953,'Gift_From_Juliedge','Gift Of Juliet',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7954,'Festival_Ticket_','Summer Festival Ticket',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7955,'Lost_Card1','Lost Card1',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7956,'Lost_Card2','Lost Card2',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7957,'Lost_Card3','Lost Card3',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7958,'Lost_Card4','Lost Card4',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7959,'Ancient_Gold_Coin','Ancient Gold Coin',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7960,'Ancient_Silver_Coin','Ancient Silver Coin',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7961,'Weapon_Exchange','Weapon Exchange',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7962,'Treasure_Map1','Treasure Map1',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7963,'Treasure_Map2','Treasure Map2',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7964,'Treasure_Map3','Treasure Map3',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7965,'Treasure_Map4','Treasure Map4',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7966,'Weird_Parchment1','Weird Parchment1',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7967,'Weird_Parchment2','Weird Parchment2',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7968,'Weird_Parchment3','Weird Parchment3',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7969,'Weird_Parchment4','Weird Parchment4',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7970,'Unwritten_Letter1','Unwritten Letter1',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7971,'Unwritten_Letter2','Unwritten Letter2',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7972,'Oath_Day_Letter','Oath Day Letter',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7973,'Immortality_Egg','Immortality Egg',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7974,'Illusion_Piece','Illusion Piece',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7975,'Cupid_Choco','Cupid Choco',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7976,'Gf_Magic_Coin','Gf Magic Coin',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7977,'Hunting_Medal_Badge','Hunting Medal Badge',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7978,'Spring_Stanza1','Spring Stanza1',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7979,'Spring_Stanza2','Spring Stanza2',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7980,'Spring_Stanza3','Spring Stanza3',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7981,'Spring_Stanza4','Spring Stanza4',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7982,'Spring_Stanza5','Spring Stanza5',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7983,'Spring_Stanza6','Spring Stanza6',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7984,'Spring_Stanza7','Spring Stanza7',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7985,'Spring_Stanza8','Spring Stanza8',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7986,'Spring_Stanza9','Spring Stanza9',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7987,'Spring_Stanza10','Spring Stanza10',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7988,'Spring_Stanza11','Spring Stanza11',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7989,'Spring_Stanza12','Spring Stanza12',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7990,'Spring_Stanza13','Spring Stanza13',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7991,'Spring_Stanza14','Spring Stanza14',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7992,'Spring_Stanza15','Spring Stanza15',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7993,'Spring_Stanza16','Spring Stanza16',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7994,'Spring_Stanza17','Spring Stanza17',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7995,'Spring_Stanza18','Spring Stanza18',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7996,'Spring_Stanza19','Spring Stanza19',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7997,'Spring_Stanza20','Spring Stanza20',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7998,'Spring_Stanza21','Spring Stanza21',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (7999,'Spring_Stanza22','Spring Stanza22',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -# Pet Eggs -#=================================================================== -REPLACE INTO `item_db` VALUES (9001,'Poring_Egg','Poring Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9002,'Drops_Egg','Drops Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9003,'Poporing_Egg','Poporing Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9004,'Lunatic_Egg','Lunatic Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9005,'Picky_Egg','Picky Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9006,'Chonchon_Egg','Chonchon Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9007,'Steel_Chonchon_Egg','Steel Chonchon Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9008,'Hunter_Fly_Egg','Hunter Fly Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9009,'Savage_Bebe_Egg','Savage Babe Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9010,'Baby_Desert_Wolf_Egg','Baby Desert Wolf Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9011,'Rocker_Egg','Rocker Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9012,'Spore_Egg','Spore Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9013,'Poison_Spore_Egg','Poison Spore Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9014,'PecoPeco_Egg','Peco Peco Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9015,'Smokie_Egg','Smokie Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9016,'Yoyo_Egg','Yoyo Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9017,'Orc_Warrior_Egg','Orc Warrior Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9018,'Munak_Egg','Munak Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9019,'Dokkaebi_Egg','Dokebi Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9020,'Sohee_Egg','Sohee Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9021,'Isis_Egg','Isis Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9022,'Green_Petite_Egg','Green Petite Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9023,'Deviruchi_Egg','Deviruchi Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9024,'Bapho_Jr._Egg','Bapho Jr. Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9025,'Bongun_Egg','Bongun Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9026,'Zherlthsh_Egg','Zealotus Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9027,'Alice_Egg','Alice Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9028,'Rice_Cake_Egg','Hard Rice Cake',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9029,'Santa_Goblin_Egg','Christmas Goblin\'s Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9030,'Chung_E_Egg','Green Maiden Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9031,'Spring_Rabbit_Egg','Spring Rabbit Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9032,'Knife_Goblin_Egg','Knife Goblin Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9033,'Flail_Goblin_Egg','Flail Goblin Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9034,'Hammer_Goblin_Egg','Hammer Goblin Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9035,'Red_Deleter_Egg','Red Deleter Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9036,'Diabolic_Egg','Diabolic Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9037,'Wanderer_Egg','Wanderer Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9038,'New_Year_Doll_Egg','New Year Doll Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9039,'Bacsojin_Egg','Bacsojin Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9040,'Civil_Servant_Egg','Civil Servant Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9041,'Leaf_Cat_Egg','Leaf Cat Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9042,'Loli_Ruri_Egg','Loli Ruri Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9043,'Marionette_Egg','Marionette Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9044,'Shinobi_Egg','Shinobi Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9045,'Whisper_Egg','Whisper Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9046,'Goblin_Leader_Egg','Goblin Leader Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9047,'Wicked_Nymph_Egg','Wicked Nymph Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9048,'Miyabi_Ningyo_Egg','Miyabi Ningyo Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9049,'Dullahan_Egg','Dullahan Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9050,'Medusa_Egg','Medusa Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9051,'Stone_Shooter_Egg','Stone Shooter Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9052,'Incubus_Egg','Incubus Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9053,'Golem_Egg','Golem Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9054,'Nightmare_Terror_Egg','Nightmare Terror Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9055,'Succubus_Egg','Succubus Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (9056,'Imp_Egg','Imp Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -# Pet Accessories -#=================================================================== -REPLACE INTO `item_db` VALUES (10001,'Skull_Helm','Skull Helm',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (10002,'Monster_Oxygen_Mask','Monster Oxygen Mask',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (10003,'Transparent_Headgear','Transparent Head Protector',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (10004,'Pacifier','Pacifier',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (10005,'Wig','Wig',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (10006,'Queen\'s_Hair_Ornament','Queen\'s Hair Ornament',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (10007,'Silk_Ribbon','Silk Ribbon',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (10008,'Punisher','Punisher',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (10009,'Wild_Flower','Wild Flower',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (10010,'Battered_Pot','Battered Pot',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (10011,'Stellar_Hairpin','Stellar Hairpin',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (10012,'Tiny_Egg_Shell','Tiny Egg Shell',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (10013,'Backpack','Backpack',8,1500,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (10014,'Rocker_Glasses','Rocker Glasses',8,2000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (10015,'Green_Lace','Green Lace',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (10016,'Golden_Bell','Golden Bell',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (10017,'Bark_Shorts','Bark Shorts',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (10018,'Monkey_Circlet','Monkey Circlet',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (10019,'Red_Muffler','Red Scarf',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (10020,'Sword_Of_Grave_Keeper','Grave Keeper\'s Sword',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (10021,'Round_Hair_Ornament','Circular Headgear',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (10022,'Golden_Earing','Gold Earring',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (10023,'Green_Lucky_Bag','Green Jewel Bag',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (10024,'Fashionable_Glasses','Fashion Glasses',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (10025,'Star_Hairband','Hairband Of Stars',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (10026,'Wine_On_Sleeve','Tassel for Durumagi',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (10027,'Spirit_Chain_','Pet Soul Ring',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (10028,'Nice_Badge','Beautiful Badges',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (10029,'Jade_Trinket','Jade Trinket',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (10030,'Summer_Fan','Summer Fan',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (10031,'Death_Coil','Ring Of Death',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (10032,'Queen\'s_Coronet','Queen\'s Coronet',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (10033,'Apro_Hair','Afro',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (10034,'Ball_Mask','Masked Ball',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (10035,'Windup_Spring','Spring',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (10036,'Hell_Horn','Horn Of Hell',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (10037,'Black_Butterfly_Mask','Black Butterfly Mask',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (10038,'Horn_Protector','Horn Barrier',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -# Misc "Etc" Books -#=================================================================== -REPLACE INTO `item_db` VALUES (11000,'Prontera_Book_01','History book of Prontera',3,8000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11001,'Adventure_Story01','Adventure Story Vol.1',3,8000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11002,'Great_Chef_Orleans01','Chef King Orleans Vol.1',3,8000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11003,'Legend_Of_Kafra01','Kafra Legend Vol.1',3,8000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11004,'Mercenary_Rebellion','Old Book',3,10000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11005,'Tyrant_Schmidt','Rune Royal Family Book',3,10000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11006,'Blood_Flower01','Blood Flower Vol.1',3,8000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11007,'Blood_Flower02','Blood Flower Vol.2',3,8000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11008,'Barmund','Biographical Dictionary Copy Edition',3,10000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11009,'Adventure_Story02','Adventure Story Vol.2',3,8000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11010,'Reward_List_Book','Battlegrounds Catalog',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11011,'Barmund_Note','Varmunt\'s Note',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11012,'Expedition_Report','Expedition Report',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11013,'Expedition_Report_Vol1','Expedition Report Vol1',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11014,'Expedition_Report_Vol2','Expedition Report Vol2',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11015,'Expedition_Report_Vol3','Expedition Report Vol3',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11016,'Expedition_Report_Vol4','Expedition Report Vol4',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11017,'Reward_List_Book2','KVM Reward Items Catalog',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11018,'Splendide_Selling_Item','Splendide Selling Item',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11019,'Manuk_Selling_Item','Manuk Selling Item',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11020,'Japan_Book1','Japan Book1',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11021,'Japan_Book2','Japan Book2',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11022,'Mix_Cook_Book','Mix Cook Book',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11023,'Increase_Stamina_Study','Increase Stamina Study',3,10,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11024,'Vital_Drink_CB','Vital Drink CB',3,10,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11025,'Swordman_Book_Basic','Swordman Book Basic',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11026,'Swordman_Book_Practice','Swordman Book Practice',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11027,'Swrodman_Book_Misc','Swrodman Book Misc',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11028,'Thief_Book_Basic','Thief Book Basic',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11029,'Thief_Book_Practice','Thief Book Practice',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11030,'Thief_Book_Misc','Thief Book Misc',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11031,'Archer_Book_Basic','Archer Book Basic',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11032,'Archer_Book_Practice','Archer Book Practice',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11033,'Archer_Book_Misc','Archer Book Misc',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11034,'Acol_Book_Basic','Acol Book Basic',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11035,'Acol_Book_Practice','Acol Book Practice',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11036,'Acol_Book_Misc','Acol Book Misc',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11037,'Mage_Book_Basic','Mage Book Basic',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11038,'Mage_Book_Practice','Mage Book Practice',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11039,'Mage_Book_Misc','Mage Book Misc',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11040,'Mer_Book_Basic','Mer Book Basic',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11041,'Mer_Book_Practice','Mer Book Practice',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11042,'Mer_Book_Misc','Mer Book Misc',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11043,'TK_Book_Basic','TK Book Basic',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11044,'TK_Book_Practice','TK Book Practice',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11045,'TK_Book_Misc','TK Book Misc',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11046,'Ninja_Book_Basic','Ninja Book Basic',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11047,'Ninja_Book_Practice','Ninja Book Practice',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11048,'Ninja_Book_Misc','Ninja Book Misc',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11049,'Gun_Book_Basic','Gun Book Basic',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11050,'Gun_Book_Practice','Gun Book Practice',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11051,'Gun_Book_Misc','Gun Book Misc',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11052,'SN_Book_Basic','SN Book Basic',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11053,'SN_Book_Practice','SN Book Practice',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11054,'SN_Book_Misc','SN Book Misc',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11055,'Basic_Adventure','Basic Adventure',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11056,'Elemental_Spirit_Guide','Elemental Spirit Guide',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -# More Usable Items -#=================================================================== -REPLACE INTO `item_db` VALUES (11500,'Light_Yellow_Pot','Light Yellow Potion',0,550,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(175,235),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (11501,'Light_White_Pot','Light White Potion',0,1200,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(325,405),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (11502,'Light_Blue_Pot','Light Blue Potion',0,5000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal 0,rand(40,60);',NULL,NULL); -REPLACE INTO `item_db` VALUES (11503,'Siege_White_Potion','WoE White Potion',0,0,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(400,500),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (11504,'Siege_Blue_Potion','WoE Blue Potion',0,0,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal 0,rand(50,70);',NULL,NULL); -REPLACE INTO `item_db` VALUES (11505,'Iris','Iris',0,0,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal 0,150;',NULL,NULL); -REPLACE INTO `item_db` VALUES (11506,'Fanta_Orange','Fanta Orange',0,800,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(50,70),rand(10,12);',NULL,NULL); -REPLACE INTO `item_db` VALUES (11507,'Fanta_Grape','Fanta Grape',0,800,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(50,70),rand(10,12);',NULL,NULL); -REPLACE INTO `item_db` VALUES (11508,'Karada_Meguri_Tea','Karada Meguricha',0,800,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(50,70),rand(10,12);',NULL,NULL); -REPLACE INTO `item_db` VALUES (11509,'Royal_Milk_Tea','Black Tea Kochakaden',0,800,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(50,70),rand(10,12);',NULL,NULL); -REPLACE INTO `item_db` VALUES (11510,'Coke_Zero','Coca Cola Zero',0,800,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(50,70),rand(10,12);',NULL,NULL); -REPLACE INTO `item_db` VALUES (11511,'Coke_No_Cal','Diet Coca Cola',0,800,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(50,70),rand(10,12);',NULL,NULL); -REPLACE INTO `item_db` VALUES (11512,'Coca_Cola','Coca Cola',0,800,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(50,70),rand(10,12);',NULL,NULL); -REPLACE INTO `item_db` VALUES (11513,'Protect_Neck_Candy','Protect Neck Candy',0,200,NULL,1,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(5,25),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (11514,'Enriched_Slim_Pot','Enriched Slim Pot',0,0,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(335,415),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (11515,'Coconut','Coconut',0,1500,NULL,120,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(300,400),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (11516,'Asai_Fruit','Asai Fruit',0,15,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(16,22),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (11517,'Puri_Potion','Puri Potion',0,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(400,600),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (11518,'N_Blue_Potion','Blue Potion',0,0,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal 0,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (11519,'Beef_Toast','Beef Toast',0,650,NULL,40,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(170,250),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (11520,'Mora_Mandarin','Mora Mandar',0,500,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal 0,rand(50,80);',NULL,NULL); -REPLACE INTO `item_db` VALUES (11521,'Pingui_Berry_Juice','Pingui Berry Juice',0,500,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(400,800),rand(50,80);',NULL,NULL); -REPLACE INTO `item_db` VALUES (11522,'Red_Raffle_Sap','Red Raffle Sap',0,2000,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(400,800),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (11523,'Yellow_Raffle_Sap','Yellow Raffle Sap',0,2400,NULL,120,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(600,1000),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (11524,'White_Raffle_Sap','White Raffle Sap',0,2800,NULL,140,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(800,1200),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (11525,'Mora_Hip_Tea','Mora HIp Tea',0,20,NULL,150,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(1500,2000),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (11526,'Rafflecino','Rafflecino',0,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal 0,rand(120,160);',NULL,NULL); -REPLACE INTO `item_db` VALUES (11527,'Baklava','Baklava',0,3500,NULL,600,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal 1200,440;',NULL,NULL); -REPLACE INTO `item_db` VALUES (11528,'Kanafeh','Kanafeh',0,1500,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal 300,240;',NULL,NULL); -REPLACE INTO `item_db` VALUES (11529,'MAAMOUL_','Maamoul',0,500,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal 120,60;',NULL,NULL); -REPLACE INTO `item_db` VALUES (11530,'Jujube','Jujube',0,10,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal 30,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (11531,'Coffee','Coffee',0,10,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal 0,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (11701,'Girl_Bunch_Of_Flower','Girl\'s Bouquet',0,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(105,145),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (11702,'Moon_Cookie','Moon Cookie',0,0,NULL,300,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (11703,'Mysterious_Blood','Mystery Blood',0,0,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal 0,rand(25,35);',NULL,NULL); -REPLACE INTO `item_db` VALUES (11704,'KETUPAT_F','Ketupat',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(70,90),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (11705,'Special_White_Potion','Children\'s Potion',0,1,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(425,425),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (11706,'Steak','Steak',0,1,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(700,1000),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (11707,'Roasted_Beef','Roast Beef',0,1,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal 0,rand(100,200);',NULL,NULL); -REPLACE INTO `item_db` VALUES (11708,'Fore_Flank_Sirloin','Fore Flank Sirloin',0,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(30,50),rand(1,5);',NULL,NULL); -REPLACE INTO `item_db` VALUES (11709,'Fanta_Zero_Lemon','Fanta Zero Lemon',0,800,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(50,70),rand(10,12);',NULL,NULL); -REPLACE INTO `item_db` VALUES (11710,'Sakura_Mist','Sakura Mist',0,800,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(50,70),rand(10,12);',NULL,NULL); -REPLACE INTO `item_db` VALUES (11711,'Sakura_Milk_Tea','Sakura Milk Tea',0,800,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(50,70),rand(10,12);',NULL,NULL); -REPLACE INTO `item_db` VALUES (11712,'First_Leaf_Tea','Flower',0,800,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(50,70),rand(10,12);',NULL,NULL); -REPLACE INTO `item_db` VALUES (12000,'Cold_Scroll_2_5','Level 5 Frost Diver',11,2000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "MG_FROSTDIVER",5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12001,'Holy_Scroll_1_3','Level 3 Heal',11,2000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "AL_HEAL",3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12002,'Holy_Scroll_1_5','Level 5 Heal',11,2000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "AL_HEAL",5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12003,'Holy_Scroll_2_1','Level 1 Teleport',11,1000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "AL_TELEPORT",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12004,'Arrow_Container','Quiver',2,2,NULL,250,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 1750,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12005,'Iron_Arrow_Container','Iron Arrow Quiver',2,2,NULL,250,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 1770,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12006,'Steel_Arrow_Container','Steel Arrow Quiver',2,2,NULL,250,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 1753,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12007,'Ori_Arrow_Container','Oridecon Arrow Quiver',2,2,NULL,250,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 1765,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12008,'Fire_Arrow_Container','Fire Arrow Quiver',2,2,NULL,250,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 1752,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12009,'Silver_Arrow_Container','Silver Arrow Quiver',2,2,NULL,250,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 1751,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12010,'Wind_Arrow_Container','Wind Arrow Quiver',2,2,NULL,250,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 1755,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12011,'Stone_Arrow_Container','Stone Arrow Quiver',2,2,NULL,250,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 1756,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12012,'Crystal_Arrow_Container','Crystal Arrow Quiver',2,2,NULL,250,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 1754,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12013,'Shadow_Arrow_Container','Shadow Arrow Quiver',2,2,NULL,250,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 1767,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12014,'Imma_Arrow_Container','Immaterial Arrow Quiver',2,2,NULL,250,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 1757,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12015,'Rusty_Arrow_Container','Rusty Arrow Quiver',2,2,NULL,250,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 1762,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12016,'Speed_Up_Potion','Speed Potion',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_SPEEDUP1,5000,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12017,'Slow_Down_Potion','Slow Potion',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_SlowDown,5000,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12018,'Fire_Cracker','Firecracker',2,2,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12019,'Holy_Egg','Holy Egg',11,2,NULL,150,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "ALL_RESURRECTION",2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12020,'Water_Of_Darkness','Cursed Water',11,2,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "ITEM_ENCHANTARMS",8;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12021,'Pork_Belly','Pork',0,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(70,99),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12022,'Spareribs','Galbi',0,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(70,99),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12023,'Giftbox_China','Wrapped Box',2,1000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_GiftBoxChina),1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12024,'Red_Pouch_Of_Surprise','Red Pouch',2,50,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'monster "this",-1,-1,"--ja--",-4,1,"";',NULL,NULL); -REPLACE INTO `item_db` VALUES (12025,'Egg_Boy','Dano Festival Egg',2,1000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_EggBoy),1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12026,'Egg_Girl','Dano Festival Egg',2,1000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_EggGirl),1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12027,'Giggling_Box','Giggling Box',2,1000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal 9,0; sc_start SC_Curse,30000,0,3000,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12028,'Box_Of_Thunder','Box of Thunder',2,1000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_SPEEDUP0,20000,25;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12029,'Gloomy_Box','Box of Gloom',11,1000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "AC_CONCENTRATION",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12030,'Box_Of_Grudge','Box of Resentment',2,1000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_ATKPOTION,60000,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12031,'Sleepy_Box','Box of Drowsiness',2,1000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_MATKPOTION,60000,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12032,'Box_Of_Storm','Box of Storms',11,1000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "ITEM_ENCHANTARMS",2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12033,'Box_Of_Sunlight','Box of Sunlight',2,1000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_Intravision,30000,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12034,'Painting_Box','Box of Panting',2,1000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal 0,9; sc_start SC_Silence,30000,0,3000,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12035,'Lotto_Box01','Lotto Box 01',2,0,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem rand(7361,7370),1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12036,'Lotto_Box02','Lotto Box 02',2,0,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem rand(7371,7380),1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12037,'Lotto_Box03','Lotto Box 03',2,0,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem rand(7381,7390),1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12038,'Lotto_Box04','Lotto Box 04',2,0,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_LottoBox),1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12039,'Lotto_Box05','Lotto Box 05',2,0,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem rand(7542,7546),1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12040,'Stone_Of_Intelligence_','Stone of Sage',2,100000,NULL,300,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'homevolution;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12041,'Str_Dish01','Fried Grasshopper Legs',0,2000,NULL,60,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_STRFOOD,1200000,1; percentheal 5,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12042,'Str_Dish02','Seasoned Sticky Webfoot',0,4000,NULL,500,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_STRFOOD,1200000,2; percentheal 5,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12043,'Str_Dish03','Bomber Steak',0,6000,NULL,500,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_STRFOOD,1200000,3; percentheal 5,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12044,'Str_Dish04','Herb Marinade Beef',0,8000,NULL,500,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_STRFOOD,1200000,4; percentheal 5,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12045,'Str_Dish05','Lutie Lady\'s Pancake',0,10000,NULL,500,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_STRFOOD,1200000,5; percentheal 10,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12046,'Int_Dish01','Grape Juice Herbal Tea',0,2000,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INTFOOD,1200000,1; percentheal 0,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12047,'Int_Dish02','Autumn Red Tea',0,4000,NULL,500,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INTFOOD,1200000,2; percentheal 0,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12048,'Int_Dish03','Honey Herbal Tea',0,6000,NULL,500,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INTFOOD,1200000,3; percentheal 0,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12049,'Int_Dish04','Morocc Fruit Wine',0,8000,NULL,300,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INTFOOD,1200000,4; percentheal 0,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12050,'Int_Dish05','Mastela Fruit Wine',0,10000,NULL,400,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INTFOOD,1200000,5; percentheal 0,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12051,'Vit_Dish01','Steamed Crab Nippers',0,2000,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_VITFOOD,1200000,1; percentheal 5,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12052,'Vit_Dish02','Assorted Seafood',0,4000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_VITFOOD,1200000,2; percentheal 5,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12053,'Vit_Dish03','Clam Soup',0,6000,NULL,300,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_VITFOOD,1200000,3; percentheal 5,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12054,'Vit_Dish04','Seasoned Jellyfish',0,8000,NULL,500,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_VITFOOD,1200000,4; percentheal 5,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12055,'Vit_Dish05','Spicy Fried Bao',0,10000,NULL,800,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_VITFOOD,1200000,5; percentheal 10,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12056,'Agi_Dish01','Frog Egg Squid Ink Soup',0,2000,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_AGIFOOD,1200000,1; percentheal 3,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12057,'Agi_Dish02','Smooth Noodle',0,4000,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_AGIFOOD,1200000,2; percentheal 3,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12058,'Agi_Dish03','Tentacle Cheese Gratin',0,6000,NULL,500,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_AGIFOOD,1200000,3; percentheal 3,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12059,'Agi_Dish04','Lutie Cold Noodle',0,8000,NULL,400,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_AGIFOOD,1200000,4; percentheal 3,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12060,'Agi_Dish05','Steamed Bat Wing in Pumpkin',0,10000,NULL,500,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_AGIFOOD,1200000,5; percentheal 6,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12061,'Dex_Dish01','Honey Grape Juice',0,2000,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_DEXFOOD,1200000,1; percentheal 2,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12062,'Dex_Dish02','Chocolate Mousse Cake',0,4000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_DEXFOOD,1200000,2; percentheal 2,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12063,'Dex_Dish03','Fruit Mix',0,6000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_DEXFOOD,1200000,3; percentheal 2,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12064,'Dex_Dish04','Cream Sandwich',0,8000,NULL,500,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_DEXFOOD,1200000,4; percentheal 2,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12065,'Dex_Dish05','Green Salad',0,10000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_DEXFOOD,1200000,5; percentheal 5,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12066,'Luk_Dish01','Fried Monkey Tails',0,2000,NULL,60,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_LUKFOOD,1200000,1; percentheal 3,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12067,'Luk_Dish02','Mixed Juice',0,4000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_LUKFOOD,1200000,2; percentheal 3,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12068,'Luk_Dish03','Fried Sweet Potato',0,6000,NULL,500,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_LUKFOOD,1200000,3; percentheal 4,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12069,'Luk_Dish04','Steamed Ancient Lips',0,8000,NULL,500,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_LUKFOOD,1200000,4; percentheal 4,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12070,'Luk_Dish05','Fried Scorpion Tails',0,10000,NULL,400,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_LUKFOOD,1200000,5; percentheal 5,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12071,'Str_Dish06','Shiny Marinade Beef',0,20000,NULL,800,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_STRFOOD,1200000,6; percentheal 10,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12072,'Str_Dish07','Whole Roast',0,40000,NULL,1000,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_STRFOOD,1200000,7; percentheal 10,4;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12073,'Str_Dish08','Bearfoot Special',0,60000,NULL,500,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_STRFOOD,1200000,8; percentheal 15,6;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12074,'Str_Dish09','Tendon Satay',0,80000,NULL,1000,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_STRFOOD,1200000,9; percentheal 15,8;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12075,'Str_Dish10','Steamed Tongue',0,100000,NULL,1000,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_STRFOOD,1200000,10; percentheal 20,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12076,'Int_Dish06','Red Mushroom Wine',0,20000,NULL,300,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INTFOOD,1200000,6; percentheal 2,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12077,'Int_Dish07','Special Royal Jelly Herbal Tea',0,40000,NULL,800,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INTFOOD,1200000,7; percentheal 4,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12078,'Int_Dish08','Royal Family Tea',0,60000,NULL,1000,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INTFOOD,1200000,8; percentheal 6,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12079,'Int_Dish09','Tristan XII',0,80000,NULL,1000,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INTFOOD,1200000,9; percentheal 8,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12080,'Int_Dish10','Dragon Breath Cocktail',0,100000,NULL,1000,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INTFOOD,1200000,10; percentheal 10,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12081,'Vit_Dish06','Awfully Bitter Bracer',0,20000,NULL,500,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_VITFOOD,1200000,6; percentheal 13,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12082,'Vit_Dish07','Sumptuous Feast',0,40000,NULL,400,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_VITFOOD,1200000,7; percentheal 16,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12083,'Vit_Dish08','Giant Burito',0,60000,NULL,1000,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_VITFOOD,1200000,8; percentheal 19,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12084,'Vit_Dish09','Ascending Dragon Soup',0,80000,NULL,1000,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_VITFOOD,1200000,9; percentheal 22,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12085,'Vit_Dish10','Immortal Stew',0,100000,NULL,1000,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_VITFOOD,1200000,10; percentheal 25,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12086,'Agi_Dish06','Chile Shrimp Gratin',0,20000,NULL,800,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_AGIFOOD,1200000,6; percentheal 7,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12087,'Agi_Dish07','Steamed Alligator with Vegetable',0,40000,NULL,800,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_AGIFOOD,1200000,7; percentheal 8,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12088,'Agi_Dish08','Incredibly Spicy Curry',0,60000,NULL,1000,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_AGIFOOD,1200000,8; percentheal 9,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12089,'Agi_Dish09','Special Meat Stew',0,80000,NULL,1000,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_AGIFOOD,1200000,9; percentheal 10,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12090,'Agi_Dish10','Steamed Desert Scorpions',0,100000,NULL,1000,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_AGIFOOD,1200000,10; percentheal 15,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12091,'Dex_Dish06','Peach Cake',0,20000,NULL,800,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_DEXFOOD,1200000,6; percentheal 5,6;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12092,'Dex_Dish07','Soul Haunted Bread',0,40000,NULL,800,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_DEXFOOD,1200000,7; percentheal 5,7;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12093,'Dex_Dish08','Special Toast',0,60000,NULL,1000,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_DEXFOOD,1200000,8; percentheal 5,8;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12094,'Dex_Dish09','Heavenly Fruit Juice',0,80000,NULL,500,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_DEXFOOD,1200000,9; percentheal 5,9;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12095,'Dex_Dish10','Hwergelmir\'s Tonic',0,100000,NULL,1000,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_DEXFOOD,1200000,10; percentheal 10,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12096,'Luk_Dish06','Lucky Soup',0,20000,NULL,300,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_LUKFOOD,1200000,6; percentheal 6,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12097,'Luk_Dish07','Assorted Shish Kebob',0,40000,NULL,800,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_LUKFOOD,1200000,7; percentheal 7,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12098,'Luk_Dish08','Strawberry Flavored Rice Ball',0,60000,NULL,400,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_LUKFOOD,1200000,8; percentheal 9,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12099,'Luk_Dish09','Blood Flavored Soda',0,80000,NULL,1000,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_LUKFOOD,1200000,9; percentheal 10,4;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12100,'Luk_Dish10','Cooked Nine Tail\'s Tails',0,100000,NULL,500,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_LUKFOOD,1200000,10; percentheal 14,8;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12101,'Citron','Citron',0,20,NULL,300,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12102,'Meat_Skewer','Grilled Skewer',0,20,NULL,300,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12103,'Bloody_Dead_Branch','Bloody Branch',2,10000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'monster "this",-1,-1,"--ja--",-3,1,"";',NULL,NULL); -REPLACE INTO `item_db` VALUES (12104,'Random_Quiver','Random Quiver',2,10000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_Quiver),1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12105,'Set_Of_Taiming_Item','Taming Gift Set',2,10000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_Taming),1; getrandgroupitem(IG_Taming),1; getrandgroupitem(IG_Taming),1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12106,'Accessory_Box','Jewelry Box',2,10000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_Accesory),1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12107,'Wrapped_Mask','Wrapped Mask',2,10000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_Mask),1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12108,'Bundle_Of_Magic_Scroll','Scroll Package',2,10000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_Scroll),1; getrandgroupitem(IG_Scroll),1; getrandgroupitem(IG_Scroll),1; getrandgroupitem(IG_Scroll),1; getrandgroupitem(IG_Scroll),1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12109,'Poring_Box','Poring Box',2,10000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'monster "this",-1,-1,"--ja--",-2,1,"";',NULL,NULL); -REPLACE INTO `item_db` VALUES (12110,'First_Aid_Kit','First Aid Kit',2,10000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_FirstAid),1; getrandgroupitem(IG_FirstAid),1; getrandgroupitem(IG_FirstAid),1; getrandgroupitem(IG_FirstAid),1; getrandgroupitem(IG_FirstAid),1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12111,'Food_Package','Bundle of Food',2,10000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_FoodBag),1; getrandgroupitem(IG_FoodBag),1; getrandgroupitem(IG_FoodBag),1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12112,'Tropical_Sograt','Tropical Sograt',2,1000,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_Curse,10000,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12113,'Vermilion_The_Beach','Vermilion on the Beach',2,1000,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_Stun,10000,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12114,'Elemental_Fire','Elemental Converter',11,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "ITEM_ENCHANTARMS",4;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12115,'Elemental_Water','Elemental Converter',11,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "ITEM_ENCHANTARMS",2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12116,'Elemental_Earth','Elemental Converter',11,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "ITEM_ENCHANTARMS",3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12117,'Elemental_Wind','Elemental Converter',11,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "ITEM_ENCHANTARMS",5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12118,'Resist_Fire','Fireproof Potion',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start4 SC_ARMOR_ELEMENT_FIRE,1200000,-15,0,20,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12119,'Resist_Water','Coldproof Potion',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start4 SC_ARMOR_ELEMENT_WATER,1200000,20,0,0,-15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12120,'Resist_Earth','Earthproof Potion',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start4 SC_ARMOR_ELEMENT_EARTH,1200000,0,20,-15,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12121,'Resist_Wind','Thunderproof Potion',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start4 SC_ARMOR_ELEMENT_WIND,1200000,0,-15,0,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12122,'Sesame_Pastry','Sesame Pastry',2,2,NULL,70,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_HITFOOD,1800000,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12123,'Honey_Pastry','Honey Pastry',2,2,NULL,70,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_FLEEFOOD,1800000,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12124,'Rainbow_Cake','Rainbow Cake',2,2,NULL,70,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_BATKFOOD,60000,10; sc_start SC_MATKFOOD,60000,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12125,'Outdoor_Cooking_Kits','Outdoor Cooking Kit',2,500,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'cooking 11;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12126,'Indoor_Cooking_Kits','Home Cooking Kit',2,1000,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'cooking 12;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12127,'High_end_Cooking_Kits','Professional Cooking Kit',2,2000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'cooking 13;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12128,'Imperial_Cooking_Kits','Royal Cooking Kit',2,5000,NULL,70,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'cooking 14;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12129,'Fantastic_Cooking_Kits','Fantastic Cooking Kit',2,10000,NULL,70,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'cooking 15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12130,'Cookie_Bag','Cookie Bag',2,2,NULL,70,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_CookieBag),1; getrandgroupitem(IG_CookieBag),1; getrandgroupitem(IG_CookieBag),1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12131,'Lucky_Potion','Lucky Potion',0,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12132,'Red_Bag','Santa\'s Bag',2,0,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_Xmas,600000,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12133,'Ice_Cream_','McDonald\'s Ice Cone',0,0,NULL,80,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'if(gettime(DT_DAYOFMONTH)!=MDiceCone) { set MDiceCone,gettime(DT_DAYOFMONTH); percentheal 50,50; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (12134,'Red_Envelope','Red Envelope',2,1,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'set Zeny,Zeny+rand(1000,10000);',NULL,NULL); -REPLACE INTO `item_db` VALUES (12135,'Green_Ale','Green Ale',2,20,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal 50,50; sc_start SC_Confusion,10000,0,1000,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12136,'Women\'s_Bundle','Women\'s Bundle',2,0,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem callfunc("F_Rand",558,529,2668,7518),1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12137,'1st_Stage_Prize','First Stage Prize',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12138,'2nd_Stage_Prize','Second Stage Prize',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12139,'3rd_Stage_Prize','Third Stage Prize',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12140,'4th_Stage_Prize','Fourth Stage Prize',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12141,'5th_Stage_Prize','Fifth Stage Prize',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12142,'Magic_Book','Book of Magic',2,0,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_AGIFOOD,1800000,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12143,'Red_Can','Red Can',2,50000,NULL,300,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12144,'Sphere_Case_Wind','Lightning Sphere Pack',2,2,NULL,350,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 13204,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12145,'Sphere_Case_Darkness','Blind Sphere Pack',2,2,NULL,350,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 13206,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12146,'Sphere_Case_Poison','Poison Sphere Pack',2,2,NULL,350,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 13205,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12147,'Sphere_Case_Water','Freezing Sphere Pack',2,2,NULL,350,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 13207,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12148,'Sphere_Case_Fire','Flare Sphere Pack',2,2,NULL,350,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 13203,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12149,'Bullet_Case','Cartridge',2,2,NULL,250,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 13200,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12150,'Bullet_Case_Blood','Blood Cartridge',2,2,NULL,250,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 13202,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12151,'Bullet_Case_Silver','Silver Cartridge',2,2,NULL,250,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 13201,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12152,'Special_Box','Special Present',2,0,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12153,'Bow_Mercenary_Scroll1','Bowman Scroll 1',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6017,1800000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12154,'Bow_Mercenary_Scroll2','Bowman Scroll 2',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6018,1800000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12155,'Bow_Mercenary_Scroll3','Bowman Scroll 3',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6019,1800000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12156,'Bow_Mercenary_Scroll4','Bowman Scroll 4',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6020,1800000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12157,'Bow_Mercenary_Scroll5','Bowman Scroll 5',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6021,1800000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12158,'Bow_Mercenary_Scroll6','Bowman Scroll 6',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6022,1800000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12159,'Bow_Mercenary_Scroll7','Bowman Scroll 7',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6023,1800000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12160,'Bow_Mercenary_Scroll8','Bowman Scroll 8',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6024,1800000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12161,'Bow_Mercenary_Scroll9','Bowman Scroll 9',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6025,1800000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12162,'Bow_Mercenary_Scroll10','Bowman Scroll 10',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6026,1800000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12163,'SwordMercenary_Scroll1','Fencer Scroll 1',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6037,1800000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12164,'SwordMercenary_Scroll2','Fencer Scroll 2',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6038,1800000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12165,'SwordMercenary_Scroll3','Fencer Scroll 3',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6039,1800000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12166,'SwordMercenary_Scroll4','Fencer Scroll 4',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6040,1800000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12167,'SwordMercenary_Scroll5','Fencer Scroll 5',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6041,1800000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12168,'SwordMercenary_Scroll6','Fencer Scroll 6',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6042,1800000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12169,'SwordMercenary_Scroll7','Fencer Scroll 7',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6043,1800000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12170,'SwordMercenary_Scroll8','Fencer Scroll 8',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6044,1800000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12171,'SwordMercenary_Scroll9','Fencer Scroll 9',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6045,1800000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12172,'SwordMercenary_Scroll10','Fencer Scroll 10',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6046,1800000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12173,'SpearMercenary_Scroll1','Spearman Scroll 1',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6027,1800000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12174,'SpearMercenary_Scroll2','Spearman Scroll 2',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6028,1800000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12175,'SpearMercenary_Scroll3','Spearman Scroll 3',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6029,1800000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12176,'SpearMercenary_Scroll4','Spearman Scroll 4',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6030,1800000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12177,'SpearMercenary_Scroll5','Spearman Scroll 5',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6031,1800000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12178,'SpearMercenary_Scroll6','Spearman Scroll 6',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6032,1800000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12179,'SpearMercenary_Scroll7','Spearman Scroll 7',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6033,1800000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12180,'SpearMercenary_Scroll8','Spearman Scroll 8',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6034,1800000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12181,'SpearMercenary_Scroll9','Spearman Scroll 9',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6035,1800000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12182,'SpearMercenary_Scroll10','Spearman Scroll 10',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6036,1800000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12183,'Holy_Arrow_Quiver','Holy Arrow Quiver',2,2,NULL,250,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 1772,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12184,'Mercenary_Red_Potion','Mercenary Red Potion',2,500,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'mercenary_heal 1000,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12185,'Mercenary_Blue_Potion','Mercenary Blue Potion',2,1000,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'mercenary_heal 0,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12186,'Red_Box','Old Red Box',2,50000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_RedBox),1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12187,'Green_Box','Old Green Box',2,50000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_GreenBox),1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12188,'Magical_Moon_Cake','Grace Moon Cake',0,20,NULL,300,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal 50,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12189,'Red_Box_','Old Red Box',2,50000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_RedBox_2),1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12190,'Moon_Cake','Moon Cake',2,2,NULL,300,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12191,'Special_Moon_Cake','Special Moon Cake',2,2,NULL,500,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12192,'Pumpkin_Pie','Pumpkin Pie',0,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal 5,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12193,'Brezel','Pretzel',2,20,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12194,'Hometown_Gift','Hometown Gift',2,20,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_HometownGift),1; getrandgroupitem(IG_HometownGift),1; getrandgroupitem(IG_HometownGift),1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12195,'Plain_Rice_Cake','Plain Rice Cake',0,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal 0,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12196,'Hearty_Rice_Cake','Hearty Rice Cake',0,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal 50,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12197,'Salty_Rice_Cake','Salty Rice Cake',0,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal 10,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12198,'Lucky_Rice_Cake','Lucky Rice Cake',2,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INCLUK,1200000,21;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12199,'Rice_Scroll','Scroll of Magic',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12200,'Event_Cake','X-mas Cake',11,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "PR_MAGNIFICAT",3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12201,'Red_Box_C','Commonplace Red Box',2,20,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -# Cash Shop Usable Items -REPLACE INTO `item_db` VALUES (12202,'Str_Dish10_','Steamed Tongue',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_FOOD_STR_CASH,1800000,10; percentheal 15,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12203,'Agi_Dish10_','Steamed Scorpion',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_FOOD_AGI_CASH,1800000,10; percentheal 15,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12204,'Int_Dish10_','Dragon Breath Cocktail',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_FOOD_INT_CASH,1800000,10; percentheal 15,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12205,'Dex_Dish10_','Hwergelmir\'s Tonic',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_FOOD_DEX_CASH,1800000,10; percentheal 15,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12206,'Luk_Dish10_','Cooked Nine Tail\'s Tails',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_FOOD_LUK_CASH,1800000,10; percentheal 15,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12207,'Vit_Dish10_','Stew Of Immortality',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_FOOD_VIT_CASH,1800000,10; percentheal 15,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12208,'Battle_Manual','Battle Manual',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_EXPBOOST,1800000,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12209,'Insurance','Life Insurance',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_LIFEINSURANCE,1800000,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12210,'Bubble_Gum','Bubble Gum',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_ITEMBOOST,1800000,200;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12211,'Kafra_Card','Kafra Card',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashStore";',NULL,NULL); -REPLACE INTO `item_db` VALUES (12212,'Giant_Fly_Wing','Giant Fly Wing',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashPartyCall";',NULL,NULL); -REPLACE INTO `item_db` VALUES (12213,'Neuralizer','Neuralizer',11,2,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashReset";',NULL,NULL); -REPLACE INTO `item_db` VALUES (12214,'Convex_Mirror','Convex Mirror',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_BOSSMAPINFO,600000,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12215,'Blessing_10_Scroll','LV10 Blessing Scroll',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,240000,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12216,'Inc_Agi_10_Scroll','LV10 Agil Scroll',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'if(Hp>15) { skilleffect "AL_INCAGI",0; sc_start SC_INCREASEAGI,240000,10; heal -15,0; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (12217,'Aspersio_5_Scroll','LV5 Aspersio Scroll',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'if(countitem(523)>0) { skilleffect "PR_ASPERSIO",0; sc_start SC_ASPERSIO,180000,5; delitem 523,1; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (12218,'Assumptio_5_Scroll','LV5 Assumptio Scroll',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_ASSUMPTIO,100000,5; skilleffect "HP_ASSUMPTIO",0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12219,'Wind_Walk_10_Scroll','LV10 Wind Walker Scroll',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'skilleffect "SN_WINDWALK",0; sc_start SC_WINDWALK,250000,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12220,'Adrenaline_Scroll','LV5 Adrenaline Scroll',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'set .@type,getiteminfo(getequipid(EQI_HAND_R),11); if (.@type==W_1HAXE||.@type==W_2HAXE||.@type==W_MACE) { skilleffect "BS_ADRENALINE",0; sc_start SC_ADRENALINE,150000,5; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (12221,'Megaphone_','Megaphone',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'input @megaphone$; announce strcharinfo(0) + ": " + @megaphone$,bc_all,0xFF0000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12225,'Sweet_Candy_Striper','Sweet Candy Cane',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1245;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12226,'Examination1','Examination 1',0,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'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;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12227,'Examination2','Examination 2',0,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'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;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12228,'Examination3','Examination 3',0,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'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;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12229,'Examination4','Examination 4',0,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'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;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12230,'Examination5','Examination 5',0,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'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;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12231,'Examination6','Examination 6',0,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'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;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12232,'Gingerbread','Ginger Bread',2,20,NULL,150,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_ASPDPOTION1,900000,0; sc_start SC_SPEEDUP0,900000,25;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12233,'Kvass','Kvass',0,20,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal 100,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12234,'Cacao99','Fierce Cacao 99%',0,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal 25,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12235,'Strawberry_Choco','Chocolate Strawberry',2,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal 0,5; skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,240000,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12236,'Choco_Tart','Chocolate Tart',11,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal 5,0; itemskill "AL_ANGELUS",5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12237,'Choco_Lump','Junky Chocolate',2,0,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal 0,5; sc_start SC_Poison,18000,0; sc_start SC_Bleeding,18000,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12238,'New_Year_Rice_Cake_1','New Year Rice Cake',2,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_DPoison,10000,0,1000,0; sc_start SC_Poison,50000,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12239,'New_Year_Rice_Cake_2','New Year Rice Cake',2,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_DPoison,10000,0,1000,0; sc_start SC_Poison,50000,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12240,'Old_Yellow_Box','Old Yellow Box',2,20,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_YellowBox),1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12241,'M_Center_Potion','Mercenary Concentration Potion',2,800,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'mercenary_sc_start SC_ASPDPOTION0,1800000,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12242,'M_Awakening_Potion','Mercenary Awakening Potion',2,1500,NULL,150,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'mercenary_sc_start SC_ASPDPOTION1,1800000,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12243,'M_Berserk_Potion','Mercenary Berserk Potion',2,3000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'mercenary_sc_start SC_ASPDPOTION2,1800000,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12244,'Old_Gift_Box','Old Gift Box',2,20,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_OldGiftBox),1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12245,'Green_Ale_US','Green Ale',0,5000,NULL,500,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal 100,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12246,'Magic_Card_Album','Mystical Card Album',2,10000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_MagicCardAlbum),1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12247,'Halohalo','Halo-Halo',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,20,NULL,NULL,'sc_start SC_INCALLSTATUS,600000,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12248,'Masquerade_Ball_Box','Fancy Ball Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_Masquerade),1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12249,'Payroll_Of_Kafra_','Payment Statement for Kafra Employee',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12250,'Str_Dish10_M','Steamed Tongue',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_STRFOOD,3600000,10; percentheal 20,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12251,'Agi_Dish10_M','Steamed Desert Scorpions',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_AGIFOOD,3600000,10; percentheal 15,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12252,'Int_Dish10_M','Dragon Breath Cocktail',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INTFOOD,3600000,10; percentheal 10,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12253,'Dex_Dish10_M','Hwergelmir\'s Tonic',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_DEXFOOD,3600000,10; percentheal 10,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12254,'Luk_Dish10_M','Cooked Nine Tail',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_LUKFOOD,3600000,10; percentheal 14,8;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12255,'Vit_Dish10_M','Immortal Stew',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_VITFOOD,3600000,10; percentheal 25,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12256,'PRO_Gift_Box','PRO Gift Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12257,'Cold_Medicine','Cold Medicine',0,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,50,NULL,NULL,'percentheal 25,25;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12258,'Bombring_Box','Bomb Poring Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'if(strcharinfo(3)=="job3_rang02") { monster "this",-1,-1,"--ja--",1904,1,""; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (12259,'Miracle_Medicine','Miracle Tonic',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getexp2(3000000,1500000);',NULL,NULL); -REPLACE INTO `item_db` VALUES (12260,'Cool_Summer_Outfit','Cool Summer Outfit',2,0,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_Summer,600000,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12261,'Secret_Medicine','Leap of Fantasy',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getexp2(2000000,1000000);',NULL,NULL); -REPLACE INTO `item_db` VALUES (12262,'Inspector_Certificate_','Authoritative Badge',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_SPEEDUP0,540000,25;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12263,'Comp_Battle_Manual','Field Manual',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_EXPBOOST,1800000,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12264,'Comp_Bubble_Gum','Bubble Gum',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_ITEMBOOST,1800000,200;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12265,'Comp_Insurance','Life Insurrance',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_LIFEINSURANCE,1800000,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12266,'Sesame_Pastry_','Sesame Pastry',2,2,NULL,70,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_HITFOOD,180000,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12267,'Honey_Pastry_','Honey Pastry',2,2,NULL,70,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_FLEEFOOD,180000,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12268,'Rainbow_Cake_','Rainbow Cake',2,2,NULL,70,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_ATKPOTION,60000,10; sc_start SC_MATKFOOD,60000,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12269,'Tasty_Colonel','Tasty Pink Ration',2,2,NULL,70,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_ATKPOTION,600000,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12270,'Tasty_Major','Tasty White Ration',2,2,NULL,70,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_MATKPOTION,600000,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12271,'Mre_A','Military Ration A',0,2,NULL,70,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal 5,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12272,'Mre_B','Military Ration B',2,2,NULL,70,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_HITFOOD,600000,33;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12273,'Mre_C','Military Ration C',2,2,NULL,70,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_FLEEFOOD,600000,33;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12274,'Gold_Pill_1','Daehwandan',0,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start2 SC_INCREASE_MAXHP,3600000,5,10; percentheal 10,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12275,'Gold_Pill_2','Taecheongdan',0,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start2 SC_INCREASE_MAXSP,3600000,5,10; percentheal 0,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12276,'Mimic_Scroll','Mimic Scroll',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 2058,1800000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12277,'Disguise_Scroll','Disguise Scroll',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 2059,1800000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12278,'Alice_Scroll','Alice Scroll',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 2060,1800000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12279,'Undead_Element_Scroll','Undead Elemental Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start4 SC_ARMOR_RESIST,300000,20,20,20,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12280,'Holy_Element_Scroll','Holy Elemental Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_BENEDICTIO; sc_start SC_BENEDICTIO,300000,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12281,'Tresure_Box_WoE','Event Treasure Box',2,20,NULL,150,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_Tresure_Box_WoE),1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12282,'Internet_Cafe1','Internet Cafe1',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INCALLSTATUS,5400000,3; sc_start SC_ATKPOTION,5400000,15; sc_start SC_MATKPOTION,5400000,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12283,'Internet_Cafe2','Internet Cafe2',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INCSTR,5400000,8; sc_start SC_INCDEX,5400000,4; sc_start SC_INCAGI,5400000,6; sc_start SC_ATKPOTION,5400000,32; sc_start SC_INCFLEE,5400000,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12284,'Internet_Cafe3','Internet Cafe3',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INCINT,5400000,8; sc_start SC_INCVIT,5400000,4; sc_start SC_INCDEX,5400000,6; sc_start SC_MATKPOTION,5400000,40;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12285,'Internet_Cafe4','Internet Cafe4',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INCDEX,5400000,8; sc_start SC_INCLUK,5400000,4; sc_start SC_INCAGI,5400000,6; sc_start SC_ATKPOTION,5400000,24; sc_start SC_MATKPOTION,5400000,24;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12286,'Masquerade_Ball_Box2','Masquerade Ball Box2',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_Masquerade_2),1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12287,'Love_Angel','Love Angel Magic Powder',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'setfont 1;',NULL,'setfont 0;'); -REPLACE INTO `item_db` VALUES (12288,'Squirrel','Squirrel Magic Powder',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'setfont 2;',NULL,'setfont 0;'); -REPLACE INTO `item_db` VALUES (12289,'Gogo','Gogo Magic Powder',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'setfont 3;',NULL,'setfont 0;'); -REPLACE INTO `item_db` VALUES (12290,'Mysterious_Can','Mysterious Can Magic Powder',2,10,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal 5,0; skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,120000,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12291,'Mysterious_PET_Bottle','Mysterious PET Bottle',2,10,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal 5,0; skilleffect "AL_INCAGI",0; sc_start SC_INCREASEAGI,120000,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12292,'Unripe_Fruit','Unripe Fruit',0,500,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal 20,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12293,'Dried_Yggdrasilberry','Dried Yggdrasilberry',0,500,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal 0,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12294,'PC_Bang_Coin_Box1','PC-Room Coin Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 2740,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12295,'PC_Bang_Coin_Box2','PC-Room Coin Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 2739,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12296,'PC_Bang_Coin_Box3','PC-Room Coin Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 2738,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12297,'PC_Bang_Coin_Box4','PC-Room Coin Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 2738,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12298,'SP_Potion','SP Consumption Reduction Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_SPCOST_RATE,3600000,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12299,'Mega_Resist_Potion','Mega Resist Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_COMMONSC_RESIST,3600000,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12300,'Wild_Rose_Scroll','Wild Rose Contract',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 1965,1800000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12301,'Doppelganger_Scroll','Doppelganger Contract',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 1966,1800000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12302,'Ygnizem_Scroll','Egnigem Cenia Contract',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 1967,1800000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12303,'Water_Of_Blessing','Blessing Of Water',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12304,'Picture_Diary','Diary Magic Powder',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'setfont 4;',NULL,'setfont 0;'); -REPLACE INTO `item_db` VALUES (12305,'Mini_Heart','Mini Heart Magic Powder',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'setfont 5;',NULL,'setfont 0;'); -REPLACE INTO `item_db` VALUES (12306,'Newcomer','Freshman Magic Powder',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'setfont 6;',NULL,'setfont 0;'); -REPLACE INTO `item_db` VALUES (12307,'Kid','Kid Magic Powder',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'setfont 7;',NULL,'setfont 0;'); -REPLACE INTO `item_db` VALUES (12308,'Magic_Castle','Magic Magic Powder',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'setfont 8;',NULL,'setfont 0;'); -REPLACE INTO `item_db` VALUES (12309,'Bulging_Head','JJangu Magic Powder',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'setfont 9;',NULL,'setfont 0;'); -REPLACE INTO `item_db` VALUES (12310,'Spray_Of_Flowers','Spray Of Flowers',2,0,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_FLEEFOOD,300000,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12311,'Large_Spray_Of_Flowers','Huge Spray Of Flowers',11,0,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "ALL_PARTYFLEE",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12312,'Thick_Manual50','Thick Battle Manual',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_EXPBOOST,3600000,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12313,'Protection_Of_Angel','Guardian Angel',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'/* itemskill "ALL_ANGEL_PROTECT",1; */',NULL,NULL); -REPLACE INTO `item_db` VALUES (12314,'Noive_Box','Noive Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12315,'Goddess_Bless','Goddess Of Blessing',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12316,'Angel_Bless','Angel Of Blessing',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12317,'Powder_Snow','Snow Powder',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12318,'Little_Heart','Small Hearts',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12319,'Strawberry_Cake','Rune Strawberry Cake',2,0,NULL,300,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_ATKPOTION,600000,5; sc_start SC_MATKPOTION,600000,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12320,'Pineapple_Juice','Schwarzwald Pine Jubilee',2,0,NULL,300,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_HITFOOD,600000,10; sc_start SC_FLEEFOOD,600000,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12321,'Spicy_Sandwich','Arunafeltz Desert Sandwich',2,0,NULL,300,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INCCRI,600000,7;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12322,'Chocolate_Pie','Chocolate Pie',0,0,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal 5,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12323,'N_Fly_Wing','Novice Fly Wing',11,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "AL_TELEPORT",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12324,'N_Butterfly_Wing','Novice Butterfly Wing',11,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "AL_TELEPORT",3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12325,'N_Magnifier','Novice Magnifier',11,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "MC_IDENTIFY",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12326,'J_Firecracker','Large Firecracker',2,2,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12327,'Charm_Of_Luck','Charm Of Luck',2,1000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12328,'Charm_Of_Happiness','Charm Of Happiness',2,1800,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INCLUK,3600000,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12329,'Recall_MaleGM','Summon Male GameMaster Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 2000,1800000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12330,'Recall_FemaleGM','Summon Female GameMaster Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 2001,1800000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12331,'Ginseng','Ginseng',0,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal 6,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12332,'Fruit_Juice','Fruit Juice',0,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal 0,6;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12333,'Ansila','Ancilla',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal 0,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12334,'Cherish_Box','Treasure Edition Helm Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_Cherish_Box),1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12335,'Yummy_Skewered_Dish','Grilled Delicious Skewer',0,1000,NULL,350,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal 60,60;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12336,'Baked_Mushroom','Grilled Mushroom',0,500,NULL,300,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal 30,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12337,'Grilled_Sausage','Grilled Sausages',0,300,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal 20,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12338,'Grilled_Corn','Grilled Corn',2,100,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INCSTR,180000,2; sc_start SC_INCINT,180000,2; sc_start SC_INCAGI,180000,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12339,'Cherish_Box_Ori','Treasure Edition Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_Cherish_Box_Ori),1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12340,'Mysterious_Rice_Powder','Chewy Rice Powder',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1815;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12341,'Special_Alloy_Trap_Box','Special Alloy Trap Box',2,30000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 7940,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12342,'Manuk\'s_Opportunity','Manuk\'s Opportunity',2,0,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_POTION_BERSERK; sc_start SC_MANU_ATK,600000,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12343,'Manuk\'s_Courage','Manuk\'s Courage',2,0,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_GUARD; sc_start SC_MANU_DEF,600000,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12344,'Pinguicula\'s_fruit_Jam','Pinguicula\'s Fruit Jam',2,0,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_POTION_BERSERK; sc_start SC_SPL_ATK,600000,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12345,'Luciola\'s_Honey_Jam','Luciola\'s Honey Jam',2,0,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_GUARD; sc_start SC_SPL_DEF,600000,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12346,'Unripe_Acorn','Unripe Acorn',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'heal -100,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12347,'Acorn_Jelly','Acorn Jelly',11,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "ALL_REVERSEORCISH",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12348,'Manuk\'s_Faith','Manuk\'s Faith',2,0,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_POTION_BERSERK; sc_start SC_MANU_MATK,600000,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12349,'Cornus\'_Tears','Cornus\' Tears',2,0,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_POTION_BERSERK; sc_start SC_SPL_MATK,600000,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12350,'Angeling_Potion','Angeling Potion',11,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,120000,5; itemskill "AL_ANGELUS",5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12351,'Shout_Megaphone','Scream Megaphone',11,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "MC_LOUD",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12352,'Dun_Tele_Scroll3','Dungeon Teleport Scroll 3',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashDungeon",3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12353,'Tiny_Waterbottle','Small Bottle',2,800,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_WATERWEAPON,90000,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12354,'Buche_De_Noel','Buche De Noel',2,2,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_ANGELUS; sc_start SC_INCMHPRATE,600000,3; sc_start SC_INCMSPRATE,600000,3; sc_start SC_INCHITRATE,600000,3; sc_start SC_INCCRI,600000,7;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12355,'Xmas_Gift','Xmas Gift',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_Xmas_Gift),1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12356,'Louise_Costume_Box','Louise Costume Box',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_Louise_Costume_Box),1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12357,'Shiny_Wing_Gown','Shiny Wing Gown',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1630;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12358,'Fan_Of_Wind','Fan Of Wind',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1513;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12359,'Very_Soft_Plant','Very Soft Plant',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1586;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12360,'Very_Red_Juice','Very Red Juice',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1505;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12361,'Delicious_Shaved_Ice','Delicious Shaved Ice',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1143;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12362,'Kuloren','Kuloren',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1401;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12363,'Fit_Pipe','Fit Pipe',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1179;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12364,'Staff_Of_Leader','Staff Of Leader',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1299;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12365,'Charming_Lotus','Charming Lotus',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1416;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12366,'Gril_Doll','Girl\'s Doll',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1404;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12367,'Luxury_Whisky_Bottle','Luxury Whisky Bottle',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1504;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12368,'Splendid_Mirror','Splendid Mirror',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1148;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12369,'Oilpalm_Coconut','Oilpalm Coconut',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1495;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12370,'Gril\'s_Naivety','Girl\'s Naivety',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1374;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12371,'Magical_Lithography','Magical Lithography',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1040;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12372,'Hell_Contract','Hell Contract',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1379;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12373,'Boy\'s_Naivety','Boy\'s Pure Heart',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1370;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12374,'Flaming_Ice','Ice Fireworks',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1837;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12375,'Acaraje','Akaraje',2,0,NULL,80,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_STEAL; bonus_script "{ bonus bHit,5; bonus bAspdRate,10; }",1200,0,0,EFST_ACARAJE;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12376,'Mysterious_Can2','Mysterious Can2',2,10,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal 3,0; itemskill "PR_GLORIA",2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12377,'Mysterious_PET_Bottle2','Mysterious PET Bottle2',2,10,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal 0,3; itemskill "PR_MAGNIFICAT",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12378,'2009_Rice_Cake_Soup','Rice Cake Soup',2,10,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'/* percentheal 50,50; */',NULL,NULL); -REPLACE INTO `item_db` VALUES (12379,'Pope\'s_Cookie','Pope Cookie',2,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12380,'Desert_Wolf_Babe_Scroll','Job Change Flute',2,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 2034,1800000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12381,'ValkyrieA_Scroll','Ancient Languages Scroll',2,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'if(strcharinfo(3)=="job3_arch02") { mercenary_create 2037,1800000; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (12382,'ValkyrieB_Scroll','Ancient Languages Scroll',2,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'if(strcharinfo(3)=="job3_arch02") { mercenary_create 2038,1800000; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (12383,'Vulcan_Bullet_Magazine','Vulcan Bullet Magazine',2,11000,NULL,500,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 6145,1000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12384,'Rainbow_Ruby_Water','Rainbow Ruby',11,0,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'/* if(strcharinfo(3)=="job3_war02") { itemskill "WL_FROSTMISTY",5; } */',NULL,NULL); -REPLACE INTO `item_db` VALUES (12385,'Rainbow_Ruby_Fire','Rainbow Ruby',11,0,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'/* if(strcharinfo(3)=="job3_war02") { itemskill "WL_CRIMSONROCK",5; } */',NULL,NULL); -REPLACE INTO `item_db` VALUES (12386,'Rainbow_Ruby_Wind','Rainbow Ruby',11,0,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'/* if(strcharinfo(3)=="job3_war02") { itemskill "WL_CHAINLIGHTNING",5; } */',NULL,NULL); -REPLACE INTO `item_db` VALUES (12387,'Rainbow_Ruby_Earth','Rainbow Ruby',11,0,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'/* if(strcharinfo(3)=="job3_war02") { itemskill "WL_EARTHSTRAIN",5; } */',NULL,NULL); -REPLACE INTO `item_db` VALUES (12388,'Runstone_Crush','Rhydo Runestone For Apprentice',11,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'/* if(strcharinfo(3)=="job3_rune02") { itemskill "RK_CRUSHSTRIKE",1; } */',NULL,NULL); -REPLACE INTO `item_db` VALUES (12389,'Runstone_Storm','Pertz Runestone For Apprentice',11,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'/* if(strcharinfo(3)=="job3_rune02") { itemskill "RK_STORMBLAST",1; } */',NULL,NULL); -REPLACE INTO `item_db` VALUES (12390,'Runstone_Millennium','Verkana Runestone For Apprentice',11,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'/* if(strcharinfo(3)=="job3_rune02") { itemskill "RK_MILLENNIUMSHIELD",1; } */',NULL,NULL); -REPLACE INTO `item_db` VALUES (12391,'Lucky_Egg_C','Lucky Egg',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12392,'RepairA','Repair A',2,220,NULL,100,NULL,NULL,NULL,NULL,0x00000400,8,2,NULL,NULL,NULL,NULL,NULL,'if ( checkmadogear() ) { itemheal rand(200,300),0; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (12393,'RepairB','Repair B',2,500,NULL,140,NULL,NULL,NULL,NULL,0x00000400,8,2,NULL,NULL,NULL,NULL,NULL,'if ( checkmadogear() ) { itemheal rand(300,400),0; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (12394,'RepairC','Repair C',2,1100,NULL,180,NULL,NULL,NULL,NULL,0x00000400,8,2,NULL,NULL,NULL,NULL,NULL,'if ( checkmadogear() ) { itemheal rand(400,500),0; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (12395,'Tantanmen','Tantan Noodle',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1519;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12396,'Fools_Day_Box','Gift Box?',11,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'.@rnd = rand(1,10); if(.@rnd==1) itemskill "AL_TELEPORT",1; else if(.@rnd==2) itemskill "AL_TELEPORT",3; else if(.@rnd==3) percentheal 50,0; else if(.@rnd==4) percentheal 0,50; else if(.@rnd==5) end; else if(.@rnd==6) getitem 512,1; else if(.@rnd==7) itemskill "ALL_REVERSEORCISH",1; else if(.@rnd==8) specialeffect2 EF_MAPPILLAR2; else if(.@rnd==9) specialeffect2 EF_ANGEL2; else specialeffect2 EF_COIN;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12397,'Fools_Day_Box2','Gift Box?',11,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'.@rnd = rand(1,10); if(.@rnd==1) itemskill "TF_DETOXIFY",1; else if(.@rnd==2) itemskill "TF_PICKSTONE",1; else if(.@rnd==3) itemskill "BA_FROSTJOKER",1; else if(.@rnd==4) itemskill "DC_SCREAM",1; else if(.@rnd==5) end; else if(.@rnd==6) getitem 909,1; else if(.@rnd==7) itemskill "AL_RUWACH",1; else if(.@rnd==8) specialeffect2 EF_BEGINASURA; else if(.@rnd==9) specialeffect2 EF_MVP; else specialeffect2 EF_CURSEATTACK;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12398,'PCBang_Gift_Box','PCBang Gift Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12399,'Castle_Treasure_Box','Castle Treasure Box',2,20,NULL,1000,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'Zeny += 1000000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12400,'Water_Of_Blessing_','Water Of Blessing',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12401,'Rune_Kn_Test_Int','Rune Kn Test Int',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INCINT,300000,40;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12402,'29Fruit','29Fruit',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal 5,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12403,'Lucky_Egg_C2','Lucky Egg2',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12404,'Acti_Potion','Acti Potion',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12405,'Underripe_Yggseed','Underripe Yggseed',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal 30,30; skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,140000,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12406,'Psychic_ArmorS','Psychic ArmorS',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12407,'PCBang_Coupon_Box','PCBang Coupon Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12408,'Leaf_Cat_Ball','Leaf Cat Ball',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 2081;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12409,'Pork_Belly_H','1st Class Pork Belly',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12410,'Spareribs_H','Thick Pork Belly H',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12411,'HE_Battle_Manual','HE Battle Manual',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_EXPBOOST,900000,200;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12412,'HE_Bubble_Gum','HE Bubble Gum',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_ITEMBOOST,900000,300;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12413,'PCBang_Coupon_Box2','PCBang Coupon Box2',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12414,'Guarana_Candy','Guarana Candy',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_ASPDPOTION0,1800000,0; sc_start SC_INCREASEAGI,140000,5; skilleffect "AL_INCAGI",0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12415,'Siege_Teleport_Scroll2','Siege Teleport Scroll Silver',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12416,'Lucky_Egg_C3','Lucky Egg C3',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12417,'Boost500','Boost500',2,100,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_BOOST500,500000,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12418,'Full_SwingK','Full SwingK',2,100,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_FULL_SWING_K,500000,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12419,'Mana_Plus','Mana Plus',2,100,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_MANA_PLUS,500000,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12420,'Stamina_Up_M','Stamina Up M',2,100,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_MUSTLE_M,500000,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12421,'Digestive_F','Falmons F',2,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_LIFE_FORCE_F,500000,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12422,'HP_Increase_PotionS','HP Increase Potion (Small)',2,100,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,1; percentheal 1,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12423,'HP_Increase_PotionM','HP Increase Potion (Medium)',2,100,NULL,40,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,2; percentheal 2,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12424,'HP_Increase_PotionL','HP Increase Potion (Large)',2,100,NULL,80,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,3; percentheal 5,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12425,'SP_Increase_PotionS','SP Increase Potion (Small)',2,100,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start2 SC_ENERGY_DRINK_RESERCH,500000,1,1; percentheal 0,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12426,'SP_Increase_PotionM','SP Increase Potion (Medium)',2,100,NULL,40,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start2 SC_ENERGY_DRINK_RESERCH,500000,1,2; percentheal 0,4;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12427,'SP_Increase_PotionL','SP Increase Potion (Large)',2,100,NULL,80,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start2 SC_ENERGY_DRINK_RESERCH,500000,1,3; percentheal 0,8;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12428,'Enrich_White_PotionZ','Concentrated White Potion Z',0,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_EXTRACT_WHITE_POTION_Z,500000,20; heal 1000,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12429,'Savage_BBQ','Savage Full Roast',2,NULL,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_SAVAGE_STEAK,300000,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12430,'Wug_Blood_Cocktail','Cocktail Warg Blood',2,NULL,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_COCKTAIL_WARG_BLOOD,300000,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12431,'Minor_Brisket','Minor Stew',2,NULL,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_MINOR_BBQ,300000,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12432,'Siroma_Icetea','Siroma Iced Tea',2,NULL,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_SIROMA_ICE_TEA,300000,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12433,'Drocera_Herb_Stew','Drosera Herb Salad',2,NULL,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_DROCERA_HERB_STEAMED,300000,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12434,'Petti_Tail_Noodle','Petite Tail Noodles',2,NULL,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_PUTTI_TAILS_NOODLES,300000,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12435,'Black_Thing','Black Mass',2,NULL,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_STOMACHACHE,60000,rand(5,10);',NULL,NULL); -REPLACE INTO `item_db` VALUES (12436,'Vitata500','Vitata 500',0,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_VITATA_500,500000,0; itemheal 0,200;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12437,'Enrich_Celermine_Juice','Concentrated Ceromain Soup',2,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_EXTRACT_SALAMINE_JUICE,500000,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12438,'F_Giant_Fly_Wing','F Giant Fly Wing',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12439,'F_Battle_Manual','F Battle Manual',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12440,'F_Insurance','F Insurance',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12441,'F_Bubble_Gum','F Bubble Gum',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12442,'F_Kafra_Card','F Kafra Card',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12443,'F_Neuralizer','F Neuralizer',2,2,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12444,'F_Dun_Tele_Scroll1','F Dun Tele Scroll1',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12445,'F_Str_Dish10_','F Str Dish10',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12446,'F_Agi_Dish10_','F Agi Dish10',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12447,'F_Int_Dish10_','F Int Dish10',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12448,'F_Dex_Dish10_','F Dex Dish10',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12449,'F_Luk_Dish10_','F Luk Dish10',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12450,'F_Vit_Dish10_','F Vit Dish10',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12451,'F_WOB_Rune','F WOB Rune',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12452,'F_WOB_Schwaltz','F WOB Schwarz',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12453,'F_WOB_Rachel','F WOB Rachel',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12454,'F_WOB_Local','F WOB Local',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12456,'F_Greed_Scroll','F Greed Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12457,'F_Glass_Of_Illusion','F Glass Of Illusion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12458,'F_Abrasive','F Abrasive',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12459,'F_Med_Life_Potion','F Med Life Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12460,'F_Small_Life_Potion','F Small Life Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12461,'F_Regeneration_Potion','F Regeneration Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12462,'F_B_Mdef_Potion','F B Mdef Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12463,'F_S_Mdef_Potion','F S Mdef Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12464,'F_B_Def_Potion','F B Def Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12465,'F_S_Def_Potion','F S Def Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12466,'F_Blessing_10_Scroll','F Blessing 10 Scroll',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12467,'F_Inc_Agi_10_Scroll','F Inc Agi 10 Scroll',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12468,'F_Aspersio_5_Scroll','F Aspersio 5 Scroll',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12470,'F_Wind_Walk_10_Scroll','F Wind Walk 10 Scroll',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12471,'F_Adrenaline_Scroll','F Adrenaline Scroll',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12472,'F_Convex_Mirror','F Convex Mirror',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12473,'RWC_Parti_Box','RWC Parti Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12474,'RWC_Final_Comp_Box','RWC Final Comp Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12475,'Cure_Free','Cure Free',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_end SC_SILENCE; sc_end SC_BLEEDING; sc_end SC_POISON; sc_end SC_CURSE; sc_end SC_ORCISH; sc_end SC_CHANGEUNDEAD; itemheal 500,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12476,'PCBang_Coupon_Box3','PCBang Coupon Box3',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12477,'Gift_Bundle','Gift Bundle',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12478,'Chance_Box','Chance Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12479,'Caracas_Ring_Box','Caracas Ring Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12480,'Attend_3Day_Box','Attend 3Day Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12481,'Attend_7Day_Box','Attend 7Day Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12482,'Attend_10Day_Box','Attend 10Day Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12483,'Attend_15Day_Box','Attend 15Day Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12484,'Attend_20Day_Box','Attend 20Day Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12485,'Attend_25Day_Box','Attend 25Day Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12486,'GoldPC_First_Box','GoldPC First Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12487,'PC_4Leaf_Clover_Box','PC 4Leaf Clover Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12488,'Ticket_Gift_Box','Ticket Gift Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12489,'Ticket_Gift_Box2','Ticket Gift Box2',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12490,'Vivid_Notation','Vivid Notation',2,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12491,'Curious_Snowball','Curious Snowball',2,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_Snowball";',NULL,NULL); -REPLACE INTO `item_db` VALUES (12492,'Crumpled_Paper','Crumpled Paper',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12493,'Lucky_Egg_C4','Lucky Egg C4',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12494,'E_Giant_Fly_Wing','E Giant Fly Wing',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12495,'E_Battle_Manual','E Battle Manual',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12496,'E_Insurance','E Insurance',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12497,'E_Bubble_Gum','E Bubble Gum',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12498,'E_Kafra_Card','E Kafra Card',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12499,'E_Neuralizer','E Neuralizer',2,2,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12500,'E_Dun_Tele_Scroll1','E Dun Tele Scroll1',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12501,'E_Str_Dish10_','E Str Dish10',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12502,'E_Agi_Dish10_','E Agi Dish10',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12503,'E_Int_Dish10_','E Int Dish10',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12504,'E_Dex_Dish10_','E Dex Dish10',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12505,'E_Luk_Dish10_','E Luk Dish10',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12506,'E_Vit_Dish10_','E Vit Dish10',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12507,'E_WOB_Rune','Yellow Butterfly Wing',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashCity",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12508,'E_WOB_Schwaltz','Green Butterfly Wing',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashCity",2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12509,'E_WOB_Rachel','Red Butterfly Wing',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashCity",3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12510,'E_WOB_Local','Blue Butterfly Wing',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashCity",5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12511,'E_Siege_Teleport_Scroll','E Siege Teleport Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12512,'E_Greed_Scroll','E Greed Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12513,'E_Glass_Of_Illusion','E Glass Of Illusion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12514,'E_Abrasive','E Abrasive',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12515,'E_Med_Life_Potion','E Med Life Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12516,'E_Small_Life_Potion','E Small Life Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12517,'E_Regeneration_Potion','E Regeneration Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12518,'E_B_Mdef_Potion','E B Mdef Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12519,'E_S_Mdef_Potion','E S Mdef Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12520,'E_B_Def_Potion','E B Def Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12521,'E_S_Def_Potion','E S Def Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12522,'E_Blessing_10_Scroll','E Blessing 10 Scroll',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12523,'E_Inc_Agi_10_Scroll','E Inc Agi 10 Scroll',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12524,'E_Aspersio_5_Scroll','E Aspersio 5 Scroll',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12525,'E_Assumptio_5_Scroll','E Assumptio 5 Scroll',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12526,'E_Wind_Walk_10_Scroll','E Wind Walk 10 Scroll',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12527,'E_Adrenaline_Scroll','E Adrenaline Scroll',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12528,'E_Convex_Mirror','E Convex Mirror',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12529,'White_Slim_Potion_Box','White Slim Potion Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12530,'Mastela_Fruit_Box','Mastela Fruit Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12531,'White_Potion_Box','White Potion Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12532,'Royal_Jelly_Box2','Royal Jelly Box2',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12533,'Blue_Herb_Box2','Blue Herb Box2',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12534,'Yggdrasil_Seed_Box','Yggdrasil Seed Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12535,'Iggdrasilberry_Box','Iggdrasilberry Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12536,'NY_Rice_Cake_Soup','NY Rice Cake Soup',2,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12537,'Solo_Gift_Basket','Solo Gift Basket',2,1000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12538,'Couple_Event_Basket','Couple Event Basket',2,2000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12539,'Splendid_Box','Splendid Box',2,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12540,'GM_Warp_Box','GM Warp Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12541,'Fortune_Cookie1','Fortune Cookie1',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12542,'Fortune_Cookie2','Fortune Cookie2',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12543,'Fortune_Cookie3','Fortune Cookie3',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12544,'Mystic_Tree_Branch','Mystic Tree Branch',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12545,'Lucky_Egg_C5','Lucky Egg C5',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12546,'Suspicious_Dish','Suspicious Dish',2,100,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12547,'Chalcenodny_Box','Chalcenodny Box',2,0,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12548,'Buy_Market_Permit2','Shabby Purchase Street Stall License',2,500,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'buyingstore 2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12549,'White_Slim_Pot_Box2','White Slim Pot Box2',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12550,'Poison_Bottle_Box2','Poison Bottle Box2',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12551,'MVP_Tele_Scroll','MVP Tele Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12552,'Quest_Tele_Scroll','Quest Tele Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12553,'Brysinggamen_Piece_Box','Brysinggamen Piece Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12554,'Asprika_Piece_Box','Asprika Piece Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12555,'Brynhild_Piece_Box','Brynhild Piece Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12556,'Sleipnir_Piece_Box','Sleipnir Piece Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12557,'Mjolnir_Piece_Box','Mjolnir Piece Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12558,'Magingiorde_Piece_Box','Magingiorde Piece Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12559,'Tenkaippin_Strong','Tenkaippin Strong',2,650,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12560,'Tenkaippin_Clean','Tenkaippin Clean',2,650,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12561,'Mysterious_Seed','Mysterious Seed',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12562,'Bubble_Gum_Plus','Bubble Gum Plus',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12563,'BM75','BM75',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12564,'3D_Glasses_Box','3D Glasses Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12565,'Cheer_Scarf_Box','Cheer Scarf Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12566,'Cheer_Scarf2_Box','Cheer Scarf2 Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12567,'Cheer_Scarf3_Box','Cheer Scarf3 Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12568,'Cheer_Scarf4_Box','Cheer Scarf4 Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12569,'Cheer_Scarf6_Box','Cheer Scarf6 Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12570,'Cheer_Scarf8_Box','Cheer Scarf8 Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12571,'Cheer_Scarf10_Box','Cheer Scarf10 Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12572,'Cheer_Scarf10_Box2','Cheer Scarf10 Box2',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12573,'Fruit_Basket','Fruit Basket',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12574,'Mora_Berry','Mora Berry',2,0,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12575,'Arrow_Of_Elf_Cntr','Arrow Of Elf Cntr',2,500,NULL,250,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12576,'Hunting_Arrow_Cntr','Hunting Arrow Cntr',2,500,NULL,250,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12577,'Lucky_Egg_C6','Lucky Egg C6',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12578,'Rapid_Life_Water','Rapid Life Water',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12579,'Ring_Of_Valkyrie_Box','Ring Of Valkyrie Box',2,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12580,'Vending_Search_Scroll','Universal Catalog Silver',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'searchstores 10,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12581,'Vending_Search_Scroll2','Universal Catalog Gold',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'searchstores 10,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12591,'Uni_Catalog_Bz','Universal Catalog Bronze',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'searchstores 10,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12609,'Old_Ore_Box','Old Ore Box',2,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12701,'Old_Blue_Box_F','Old Blue Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12702,'Old_Bleu_Box','Old Navy Box',2,0,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_BleuBox),1; getrandgroupitem(IG_BleuBox),1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12703,'Holy_Egg_2','Holy Egg',11,0,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12704,'Elixir_Of_Life','Elixir of Life',0,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,85,NULL,NULL,'percentheal 100,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12705,'Noble_Nameplate','Noble Nameplate',2,0,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,90,NULL,NULL,'sc_start SC_EXPBOOST,1800000,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12706,'Lucky_Cookie01','Lucky Cookie',11,0,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "PR_GLORIA",5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12707,'Lucky_Cookie02','Lucky Cookie',11,0,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "PR_MAGNIFICAT",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12708,'Lucky_Cookie03','Lucky Cookie',11,0,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "PR_IMPOSITIO",3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12709,'Guyak_Candy','Guyak Candy',0,0,NULL,150,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal 30,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12710,'Guyak_Pudding','Guyak Pudding',2,0,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_SPEEDUP1,300000,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12711,'Pretzel','Pretzel',0,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(50,90),0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12712,'Green_Beer','Green Beer',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal 0,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12713,'Monster_Extract','Monster Extract',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12714,'Easter_Scroll','Easter Scroll',2,1,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_Easter_Scroll),1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12715,'Black_Treasure_Box','Black Treasure Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12716,'Indian_Rice_Cake','Indian Rice Cake',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -# Guillotine Cross Poisons -REPLACE INTO `item_db` VALUES (12717,'Poison_Paralysis','Paralyze',0,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_PARALYSE,300000,0,10,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12718,'Poison_Leech','Leech End',0,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_LEECHESEND,300000,0,10,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12719,'Poison_Oblivion','Oblivion Curse',0,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_OBLIVIONCURSE,300000,0,10,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12720,'Poison_Contamination','Disheart',0,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_DEATHHURT,300000,0,10,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12721,'Poison_Numb','Toxin',0,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_TOXIN,300000,0,10,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12722,'Poison_Fever','Pyrexia',0,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_PYREXIA,300000,0,10,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12723,'Poison_Laughing','Magic Mushroom',0,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_MAGICMUSHROOM,300000,0,10,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12724,'Poison_Fatigue','Venom Bleed',0,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_VENOMBLEED,15000,0,10,0;',NULL,NULL); - -# Rune Knight's Rune Stones -REPLACE INTO `item_db` VALUES (12725,'Runstone_Nosiege','Nauthiz Rune',2,100,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,8,2,NULL,NULL,NULL,NULL,NULL,'if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_REFRESH",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12726,'Runstone_Rhydo','Raido Rune',2,100,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,8,2,NULL,NULL,NULL,NULL,NULL,'if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_CRUSHSTRIKE",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12727,'Runstone_Verkana','Berkana Rune',2,100,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,8,2,NULL,NULL,NULL,NULL,NULL,'if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_MILLENNIUMSHIELD",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12728,'Runstone_Isia','Isa Rune',2,100,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,8,2,NULL,NULL,NULL,NULL,NULL,'if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_VITALITYACTIVATION",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12729,'Runstone_Asir','Othila Rune',2,100,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,8,2,NULL,NULL,NULL,NULL,NULL,'if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_FIGHTINGSPIRIT",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12730,'Runstone_Urj','Uruz Rune',2,100,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,8,2,NULL,NULL,NULL,NULL,NULL,'if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_ABUNDANCE",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12731,'Runstone_Turisus','Thurisaz Rune',2,100,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,8,2,NULL,NULL,NULL,NULL,NULL,'if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_GIANTGROWTH",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12732,'Runstone_Pertz','Wyrd Rune',2,100,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,8,2,NULL,NULL,NULL,NULL,NULL,'if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_STORMBLAST",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12733,'Runstone_Hagalas','Hagalaz Rune',2,100,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,8,2,NULL,NULL,NULL,NULL,NULL,'if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_STONEHARDSKIN",1;',NULL,NULL); - -# Rune Knight Rune Ores -REPLACE INTO `item_db` VALUES (12734,'Runstone_Quality','Luxurious Rune',0,2,NULL,100,NULL,NULL,NULL,NULL,0x00000080,8,2,NULL,NULL,NULL,NULL,NULL,'makerune 5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12735,'Runstone_Ancient','Ancient Rune',0,2,NULL,100,NULL,NULL,NULL,NULL,0x00000080,8,2,NULL,NULL,NULL,NULL,NULL,'makerune 11;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12736,'Runstone_Mystic','Mystic Rune',0,2,NULL,100,NULL,NULL,NULL,NULL,0x00000080,8,2,NULL,NULL,NULL,NULL,NULL,'makerune 14;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12737,'Runstone_Ordinary','General Rune',0,2,NULL,100,NULL,NULL,NULL,NULL,0x00000080,8,2,NULL,NULL,NULL,NULL,NULL,'makerune 2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12738,'Runstone_Rare','Rare Rune',0,2,NULL,100,NULL,NULL,NULL,NULL,0x00000080,8,2,NULL,NULL,NULL,NULL,NULL,'makerune 8;',NULL,NULL); - -REPLACE INTO `item_db` VALUES (12739,'Snow_Flower','Snow Flowers',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12740,'Inc_Str_Scroll','Amplification Scroll',2,1,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12741,'Inc_Int_Scroll','Intellect Amplification Scroll',2,1,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12742,'Valentine_Gift_Box1','Valentine Gift Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12743,'Valentine_Gift_Box2','Valentine Gift Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12744,'Chocotate_Box','Chocolate Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12745,'Skull_Scroll','Skull Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12746,'Destruction_Scroll','Destruction Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12747,'Royal_Scroll','Royal Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12748,'Immune_Scroll','Immune Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12749,'Mystic_Scroll','Mystic Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12750,'Battle_Scroll','Battle Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12751,'Armor_Scroll','Armor Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12752,'Prayer_Scroll','Prayer Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12753,'Soul_Scroll','Soul Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12754,'New_Year_Bun','Chinese Pastel',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12755,'Traditional_Firecrack','Chinese Fireworks',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_POK_JAP; /* itemskill "MO_CALLSPIRITS",3; itemskill "MO_FINGEROFFENSIVE",5; */',NULL,NULL); -REPLACE INTO `item_db` VALUES (12756,'New_Gift_Envelope','Chinese New Year Envelope',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12757,'Loyal_Ring1_Box','Loyal Ring1 Box',2,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12758,'Loyal_Ring2_Box','Loyal Ring2 Box',2,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12759,'Loyal_Ring3_Box','Loyal Ring3 Box',2,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12760,'Bubble_Gum_Green','Bubble Gum Green',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12761,'Bubble_Gum_Yellow','Bubble Gum Yellow',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12762,'Bubble_Gum_Orange','Bubble Gum Orange',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12763,'Bubble_Gum_Red','Bubble Gum Red',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12764,'Fools_Day_Box_Tw','Fools Day Box Tw',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12765,'Summer_Knight_Box','Summer Knight Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12766,'Reward_Job_BM25','Reward Job BM25',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12767,'Passion_FB_Hat_Box','Passion FB Hat Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12768,'Cool_FB_Hat_Box','Cool FB Hat Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12769,'Victory_FB_Hat_Box','Victory FB Hat Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12770,'Glory_FB_Hat_Box','Glory FB Hat Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12771,'Passion_Hat_Box2','Passion Hat Box2',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12772,'Cool_Hat_Box2','Cool Hat Box2',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12773,'Victory_Hat_Box2','Victory Hat Box2',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12831,'Potion_Box','Potion Box',2,0,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12848,'Falcon_Flute','Falcon Flute',11,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'if(getskilllv("HT_FALCON")) { if(!checkoption(Option_Wug) && !checkoption(Option_Wugrider)) setfalcon (!checkfalcon()); }',NULL,NULL); -REPLACE INTO `item_db` VALUES (12900,'Battle_Manual_Box','Battle Manual Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12208,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12901,'Insurance_Package','Insurance Package',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12209,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12902,'Bubble_Gum_Box','Bubble Gum Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12210,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12903,'Str_Dish_Box','Steamed Tongue Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12202,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12904,'Agi_Dish_Box','Steamed Scorpion Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12203,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12905,'Int_Dish_Box','Dragon Breath Cocktail Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12204,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12906,'Dex_Dish_Box','Hwergelmir\'s Tonic Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12205,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12907,'Luk_Dish_Box','Nine Tail Dish Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12206,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12908,'Vit_Dish_Box','Stew Of Immortality Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12207,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12909,'Kafra_Card_Box','Kafra Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12211,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12910,'Giant_Fly_Wing_Box','Giant Fly Wing Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12212,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12911,'Neuralizer_Box','Neuralizer Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12213,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12912,'Convex_Mirror_Box','Convex Mirror Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12214,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12913,'Blessing_10_Scroll_Box','Blessing 10 Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12215,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12914,'Inc_Agi_10_Scroll_Box','Increase AGI 10 scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12216,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12915,'Aspersio_5_Scroll_Box','Aspersio 5 Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12217,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12916,'Assumptio_5_Scroll_Box','Assumptio 5 Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12218,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12917,'Wind_Walk_10_Scroll_Box','Wind Walk 10 Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12219,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12918,'Adrenaline_Scroll_Box','Adrenaline 5 Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12220,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12919,'Megaphone_Box','Megaphone Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12221,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12920,'Enriched_Elunium_Box','Enriched Elunium Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 7619,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12921,'Enriched_Oridecon_Box','Enriched Oridecon Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 7620,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12922,'Token_Of_Siegfried_Box','Token of Siegfried Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 7621,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12923,'Pet_Egg_Scroll_Box1','December Lucky Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12925,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12924,'Pet_Egg_Scroll_Box2','Pet Egg Box 2',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12926,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12925,'Pet_Egg_Scroll1','Kafra Item Mall Prize Package',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12926,'Pet_Egg_Scroll2','December Lucky Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12927,'J_Aspersio_5_Scroll_Box','Aspersio Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12928,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12928,'J_Aspersio_5_Scroll','Sacred Scroll',11,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "PR_ASPERSIO",5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12929,'Pet_Egg_Scroll_Box3','Pet Egg Box 3',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12932,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12930,'Pet_Egg_Scroll_Box4','Pet Egg Box 4',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12933,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12931,'Pet_Egg_Scroll_Box5','Pet Egg Box 5',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12934,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12932,'Pet_Egg_Scroll3','Episode 13.2 Key Package',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12933,'Pet_Egg_Scroll4','Summer Hat Pack',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12934,'Pet_Egg_Scroll5','Pet Egg Scroll5',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12935,'Infiltrator_Box','Infiltrator Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1267,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12936,'Muramasa_Box','Muramasa Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1173,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12937,'Excalibur_Box','Excalibur Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13401,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12938,'Combat_Knife_Box','Combat Knife Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13021,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12939,'Counter_Dagger_Box','Dagger of Counter Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13022,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12940,'Kaiser_Knuckle_Box','Kaiser Knuckle Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1817,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12941,'Pole_Axe_Box','Poll Axe Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1419,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12942,'Mighty_Staff_Box','Mighty Staff Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1623,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12943,'Right_Epsilon_Box','Light Epsilon Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1372,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12944,'Balistar_Box','Ballista Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1728,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12945,'Diary_Of_Great_Sage_Box','Sage\'s Diary Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1563,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12946,'Asura_Box','Asura Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13023,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12947,'Apple_Of_Archer_Box','Apple of Archer Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5265,1209600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12948,'Bunny_Band_Box','Bunny Band Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5266,1209600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12949,'Sahkkat_Box','Sakkat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5267,1209600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12950,'Lord_Circlet_Box','Grand Circlet Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5268,1209600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12951,'Elven_Ears_Box','Elven Ears Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2686,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12952,'Steel_Flower_Box','Steel Flower Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2687,1209600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12953,'Critical_Ring_Box','Critical Ring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2688,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12954,'Earring_Box','Earring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2689,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12955,'Ring_Box','Ring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2690,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12956,'Necklace_Box','Necklace Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2691,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12957,'Glove_Box','Glove Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2692,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12958,'Brooch_Box','Brooch Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2693,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12959,'Rosary_Box','Rosary Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2694,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12960,'Safety_Ring_Box','Safety Ring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2695,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12961,'Vesper_Core01_Box','Vesper Core 01 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2696,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12962,'Vesper_Core02_Box','Vesper Core 02 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2697,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12963,'Vesper_Core03_Box','Vesper Core 03 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2698,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12964,'Vesper_Core04_Box','Vesper Core 04 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2699,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12965,'Emergency_Box1','Emergency Level 1 Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12968,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12966,'Emergency_Box2','Emergency Level 2 Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12969,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12967,'Emergency_Box3','Emergency Level 3 Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12970,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12968,'Emergency_Scroll1','Emergency Level 1 Scroll',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'unitskilluseid getcharid(3),"GD_ITEMEMERGENCYCALL",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12969,'Emergency_Scroll2','Emergency Level 2 Scroll',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'unitskilluseid getcharid(3),"GD_ITEMEMERGENCYCALL",2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12970,'Emergency_Scroll3','Emergency Level 3 Scroll',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'unitskilluseid getcharid(3),"GD_ITEMEMERGENCYCALL",3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12971,'Teleport_Box1','Teleport Scroll Box 1',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12977,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12972,'Teleport_Box2','Teleport Scroll Box 2',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12978,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12973,'Teleport_Box3','Teleport Scroll Box 3',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12979,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12974,'Teleport_Box4','Teleport Scroll Box 4',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12980,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12975,'Teleport_Box5','Teleport Scroll Box 5',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12981,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12976,'Teleport_Box6','Teleport Scroll Box 6',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12982,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12977,'Teleport_Scroll1','Teleport Scroll 1',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashTele",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12978,'Teleport_Scroll2','Teleport Scroll 2',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashTele",2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12979,'Teleport_Scroll3','Teleport Scroll 3',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashTele",3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12980,'Teleport_Scroll4','Teleport Scroll 4',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashTele",4;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12981,'Teleport_Scroll5','Teleport Scroll 5',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashTele",5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12982,'Teleport_Scroll6','Teleport Scroll 6',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashTele",6;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12983,'Pet_Egg_Scroll_Box6','Pet Egg Scroll Box 6',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12989,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12984,'Pet_Egg_Scroll_Box7','Pet Egg Scroll Box 7',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12990,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12985,'Pet_Egg_Scroll_Box8','Pet Egg Scroll Box 8',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12991,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12986,'Pet_Egg_Scroll_Box9','Adventurer Pack Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12992,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12987,'Pet_Egg_Scroll_Box10','Pet Egg Scroll Box 10',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12993,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12988,'Pet_Egg_Scroll_Box11','Pet Egg Scroll Box 11',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12994,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12989,'Pet_Egg_Scroll6','Pet Egg Scroll 6',11,NULL,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12990,'Pet_Egg_Scroll7','Pet Egg Scroll 7',11,NULL,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12991,'Pet_Egg_Scroll8','Party Hard Pack',11,NULL,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12992,'Pet_Egg_Scroll9','Adventurer Pack',11,NULL,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12993,'Pet_Egg_Scroll10','Pet Egg Scroll 10',11,NULL,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12994,'Pet_Egg_Scroll11','Pet Egg Scroll 11',11,NULL,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (12995,'White_Herb_Box','White Herb Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 509,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12996,'Blue_Herb_Box','Blue Herb Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 510,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12997,'Elunium_Box','Elunium Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 985,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12998,'Oridecon_Box','Oridecon Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 984,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (12999,'Branch_Of_Dead_Tree_Box','Dead Branch Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 604,3;',NULL,NULL); -# More Weapons -#=================================================================== -# Daggers and Ninja Weapons -REPLACE INTO `item_db` VALUES (13000,'Jujube_Dagger','Jujube Dagger',5,10000,NULL,600,39,NULL,1,0,0x3E9F7EEF,7,2,2,1,1,1,1,'bonus bAtkEle,Ele_Wind;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13001,'Dragon_Killer','Dragon Killer',5,20,NULL,900,110,NULL,1,0,0x3E9F7EEF,7,2,2,4,60,1,1,'bonus bIgnoreDefRace,RC_Dragon; bonus2 bExpAddRace,RC_Dragon,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13002,'Ginnungagap','Ginnungagap',5,20,NULL,700,148,NULL,1,0,0x3E9F7EEF,7,2,2,4,70,1,1,'bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Blind,500; bonus2 bAddEff2,Eff_Blind,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13003,'Coward','Cowardice Blade',5,52000,NULL,700,80,NULL,1,1,0x02021040,7,2,2,3,55,1,1,'bonus bDef,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13004,'Coward_','Cowardice Blade',5,52000,NULL,700,80,NULL,1,2,0x02021040,7,2,2,3,55,1,1,'bonus bDef,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13005,'Angelwing_Short_Sword','Angelic Wing Dagger',5,20,NULL,600,120,NULL,1,2,0x00000001,7,2,2,4,50,1,1,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13006,'Khukri','Khukri',5,240000,NULL,600,150,NULL,1,0,0x02000000,7,2,2,3,65,1,1,'bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Curse,1000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13007,'Jitte','Jitte',5,20000,NULL,400,70,NULL,1,0,0x02000000,7,2,2,2,35,1,1,'bonus bBreakWeaponRate,200;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13008,'Jitte_','Jitte',5,20000,NULL,400,70,NULL,1,1,0x02000000,7,2,2,2,35,1,1,'bonus bBreakWeaponRate,200;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13009,'Kamaitachi','Kamaitachi',5,48000,NULL,900,125,NULL,2,0,0x02000000,7,2,2,4,70,1,1,'bonus bAtkEle,Ele_Wind; bonus bCritical,3; bonus bAspdRate,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13010,'Asura','Asura',5,3000,NULL,600,50,NULL,1,2,0x02000000,7,2,2,1,12,1,1,'bonus bMatkRate,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13011,'Asura_','Asura',5,3000,NULL,600,50,NULL,1,3,0x02000000,7,2,2,1,12,1,1,'bonus bMatkRate,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13012,'Murasame','Murasame',5,20,NULL,700,95,NULL,1,1,0x02000000,7,2,2,2,24,1,1,'bonus bAtkEle,Ele_Water; bonus2 bCriticalAddRace,RC_DemiHuman,10; bonus2 bCriticalAddRace,RC_Player_Human,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13013,'Murasame_','Murasame',5,20,NULL,700,95,NULL,1,2,0x02000000,7,2,2,2,24,1,1,'bonus bAtkEle,Ele_Water; bonus2 bCriticalAddRace,RC_DemiHuman,10; bonus2 bCriticalAddRace,RC_Player_Human,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13014,'Hakujin','Hakujin',5,20,NULL,800,120,NULL,1,0,0x02000000,7,2,2,3,42,1,1,'bonus bInt,2; bonus3 bAutoSpell,"AL_HEAL",1,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13015,'Hakujin_','Hakujin',5,20,NULL,800,120,NULL,1,1,0x02000000,7,2,2,3,42,1,1,'bonus bInt,2; bonus3 bAutoSpell,"AL_HEAL",1,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13016,'Poison_Knife_','Poison Knife',5,20,NULL,800,64,NULL,1,2,0x028F5EEE,7,2,2,3,65,1,1,'bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,3000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13017,'House_Auger_','Ice Pick',5,20,NULL,600,70,NULL,1,1,0x028F5EEE,7,2,2,4,36,1,1,'bonus bDefRatioAtkClass,Class_All;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13018,'Sucsamad_','Sucsamad',5,20,NULL,800,140,NULL,1,1,0x028F5EEE,7,2,2,4,36,1,1,'bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Wind,10; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13019,'Ginnungagap_','Ginnungagap',5,20,NULL,700,148,NULL,1,1,0x3E9F7EEF,7,2,2,4,70,1,1,'bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Blind,500; bonus2 bAddEff2,Eff_Blind,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13020,'Warrior_Balmung_','Warrior\'s Balmung',5,20,NULL,1000,170,NULL,1,0,0xFFFFFFFF,7,2,2,4,48,1,1,'bonus bAllStats,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13021,'Combat_Knife_C','Combat Knife',5,1,NULL,0,129,NULL,1,0,0x028F5EEE,7,2,2,4,1,0,1,'bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Demon,-10; bonus bMaxSPrate,10; bonus bSPDrainValue,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13022,'Counter_Dagger_C','Dagger of Counter',5,1,NULL,0,209,NULL,1,0,0x00810204,7,2,2,4,1,0,1,'bonus bCritical,90;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13023,'Asura_C','Ashura',5,1,NULL,0,120,NULL,1,0,0x02000000,7,2,2,1,1,0,1,'bonus bMatkRate,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13024,'Sword_Breaker_C','Refined Swordbreaker',5,2,NULL,0,105,NULL,1,0,0x028F5EEE,7,2,2,4,0,0,1,'bonus bBreakWeaponRate,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13025,'Mail_Breaker_C','Refined Mailbreaker',5,2,NULL,0,105,NULL,1,0,0x028F5EEE,7,2,2,4,0,0,1,'bonus bBreakArmorRate,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13026,'Moonlight_Sword_C','Moonlight Dagger',5,2,NULL,0,85,NULL,1,0,0x028F5EEE,7,2,2,4,0,0,1,'bonus bMaxSPrate,10; bonus bSPDrainValue,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13027,'Scalpel','Scalpel',5,20,NULL,500,120,NULL,1,3,0x028F5EEE,2,2,2,4,55,1,1,'bonus2 bAddEff,Eff_Bleeding,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13028,'Tooth_Blade','Tooth Blade',5,20,NULL,700,130,NULL,1,1,0x028F5EEE,2,2,2,4,55,1,1,'if(getrefine()>=9){ bonus3 bAutoSpell,"NPC_SLOWCAST",2,70; } else bonus3 bAutoSpell,"NPC_SLOWCAST",1,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13029,'Prinsence_Knife','Prinsense Knife',5,20,NULL,0,120,NULL,1,0,0x028F5EEE,7,2,2,1,0,0,1,'bonus2 bAddClass,Class_All,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13030,'Dragon_Killer_','Dragon Killer',5,20,NULL,900,110,NULL,1,2,0x3E9F7EEF,7,2,2,4,60,1,1,'bonus bIgnoreDefRace,RC_Dragon; bonus2 bExpAddRace,RC_Dragon,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13031,'Sword_Breaker_','Swordbreaker',5,20,NULL,1000,70,NULL,1,3,0x028F5EEE,7,2,2,4,36,1,1,'bonus bBreakWeaponRate,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13032,'Mail_Breaker_','Mailbreaker',5,20,NULL,1000,70,NULL,1,3,0x028F5EEE,7,2,2,4,36,1,1,'bonus bBreakArmorRate,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13033,'Assasin_Dagger_','Assassin Dagger',5,20,NULL,600,140,NULL,1,1,0x00001000,7,2,2,4,36,1,1,'bonus bMaxHPrate,20; bonus bMaxSPrate,15; bonus bAspdRate,2; bonus bAtkEle,Ele_Dark;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13034,'Twilight_Desert','Desert Twilight',5,20,NULL,600,130,NULL,1,2,0x00001000,2,2,2,2,70,1,1,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13035,'Sandstorm','Sandstorm',5,20,NULL,600,50,NULL,1,4,0x00001000,2,2,2,2,70,1,1,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13036,'BF_Dagger1','Brave Assassin\'s Damascus',5,20,NULL,0,120,NULL,1,0,0x3E9F7EEF,7,2,2,3,80,1,1,'bonus bStr,1; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(Class==Job_Ninja||Class==Job_Rogue||Class==Job_Stalker) bonus bMatkRate,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13037,'BF_Dagger2','Valorous Assassin\'s Damascus',5,20,NULL,0,120,NULL,1,0,0x3E9F7EEF,7,2,2,3,80,1,1,'bonus bStr,1; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus bUnbreakableWeapon; 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;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13038,'Dagger_Of_Hunter','Dagger of Hunter',5,20,NULL,700,120,NULL,1,3,0x00020000,2,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;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13039,'Ivory_Knife','Ivory Knife',5,20,NULL,700,130,NULL,1,2,0x028F5EEE,2,2,2,3,50,1,1,'bonus bAgi,2; bonus bAspdRate,3; bonus2 bAddEff,Eff_Bleeding,300; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13040,'N_Cutter','Novice Cutter',5,0,NULL,0,50,NULL,1,3,0x3E9F7EEF,7,2,2,1,1,0,1,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13041,'N_Main_Gauche','Novice Main Gauche',5,0,NULL,0,63,NULL,1,3,0x3E9F7EEF,7,2,2,1,1,0,1,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13042,'Krieger_Dagger1','Glorious Gladius',5,20,NULL,0,120,NULL,1,0,0x3E9F7EEF,7,2,2,4,80,1,1,'bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus3 bAutoSpell,"PR_LEXDIVINA",1,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) bonus4 bAutoSpellOnSkill,"RG_RAID","NPC_WIDEBLEEDING",1,250;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13043,'Fortune_Sword_I','Fortune Sword',5,0,NULL,0,120,NULL,1,0,0x028F5EEE,7,2,2,4,0,0,1,'bonus bLuk,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13044,'House_Auger_I','Ice Pick',5,0,NULL,0,105,NULL,1,0,0x028F5EEE,7,2,2,4,0,0,1,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13045,'Kamaitachi_I','Kamaitachi',5,0,NULL,0,155,NULL,2,0,0x02000000,7,2,2,4,0,0,1,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13046,'Krieg','Krierg',5,20,NULL,500,110,NULL,1,3,0x00021040,2,2,2,2,50,1,1,'bonus3 bAddEffOnSkill,"RG_BACKSTAP",Eff_Bleeding,1000; bonus2 bSkillAtk,"RG_BACKSTAP",15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13047,'Weihna','Weihna',5,20,NULL,500,135,NULL,1,2,0x00021040,2,2,2,3,50,1,1,'bonus3 bAddEffOnSkill,"RG_RAID",Eff_Poison,1000; autobonus "{ bonus2 bAddClass,Class_All,10; }",5,5000,BF_WEAPON|BF_SHORT,"{ specialeffect2 EF_POTION_BERSERK; }";',NULL,NULL); -REPLACE INTO `item_db` VALUES (13048,'Damascus_C','Damascus',5,0,NULL,0,153,NULL,1,0,0x028F5EEE,7,2,2,3,1,0,1,'bonus2 bAddSize,Size_All,40;',NULL,NULL); -# Revolvers -REPLACE INTO `item_db` VALUES (13100,'Six_Shooter','Six Shooter',5,4500,NULL,400,30,NULL,7,1,0x41000000,7,2,34,1,10,1,17,'bonus bHit,-10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13101,'Six_Shooter_','Six Shooter',5,4500,NULL,400,30,NULL,7,2,0x41000000,7,2,34,1,10,1,17,'bonus bHit,-10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13102,'Crimson_Bolt','Crimson Bolt',5,20000,NULL,450,45,NULL,7,1,0x41000000,7,2,34,2,35,1,17,'bonus bHit,-10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13103,'Crimson_Bolt_','Crimson Bolt',5,20000,NULL,450,45,NULL,7,2,0x41000000,7,2,34,2,35,1,17,'bonus bHit,-10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13104,'The_Garrison','Garrison',5,48000,NULL,500,70,NULL,7,1,0x41000000,7,2,34,2,55,1,17,'bonus bHit,-10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13105,'The_Garrison_','Garrison',5,48000,NULL,500,70,NULL,7,2,0x41000000,7,2,34,2,55,1,17,'bonus bHit,-10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13106,'Gold_Lux','Gold Lux',5,100000,NULL,500,20,NULL,7,0,0x41000000,7,2,34,3,12,1,17,'bonus bHit,-10; if(getskilllv("GS_GLITTERING")>0) bonus3 bAutoSpell,"GS_GLITTERING",getskilllv("GS_GLITTERING"),100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13107,'Wasteland_Outlaw','Wasteland\'s Outlaw',5,20,NULL,580,68,NULL,7,2,0x41000000,7,2,34,3,70,1,17,'bonus bHit,readparam(bAgi)/10; bonus bAspdRate,readparam(bAgi)/14;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13108,'BF_Pistol1','Soldier Revolver',5,0,NULL,0,70,NULL,7,0,0x41000000,7,2,34,3,80,1,17,'bonus bDex,2; bonus bHit,-10; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; autobonus "{ bonus bAspdRate,100; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13109,'Wasteland_Outlaw_C','Wasteland Outlaw',5,20,NULL,0,100,NULL,7,0,0x41000000,7,2,34,3,0,0,17,'bonus bHit,readparam(bAgi)/10; bonus bAspdRate,readparam(bAgi)/14; bonus2 bAddClass,Class_All,10; bonus bMatkRate,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13110,'Krieger_Pistol1','Glorious Pistol',5,0,NULL,0,80,NULL,7,0,0x41000000,7,2,34,4,80,1,17,'bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5){ bonus2 bAddRace,RC_DemiHuman,pow(getrefine()-4,2); bonus2 bAddRace,RC_Player_Human,pow(getrefine()-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) { bonus4 bAutoSpellOnSkill,"GS_RAPIDSHOWER","GS_GLITTERING",1,1000; bonus2 bSkillAtk,"GS_RAPIDSHOWER",getrefine()*2; }',NULL,NULL); -#13111,Sharpshooter_Revolver -REPLACE INTO `item_db` VALUES (13112,'P_Revolver1','Eden Revlover I',5,0,NULL,0,4,NULL,7,0,0x41000000,7,2,34,1,26,0,17,'bonus bHit,-5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13113,'P_Revolver2','Eden Revlover II',5,0,NULL,0,60,NULL,7,0,0x41000000,7,2,34,1,40,0,17,'bonus bHit,-5;',NULL,NULL); -# Guns -REPLACE INTO `item_db` VALUES (13150,'Branch','Branch',5,3000,NULL,500,50,NULL,9,3,0x41000000,7,2,34,1,1,1,18,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13151,'The_Cyclone','Cyclone',5,17500,NULL,700,120,NULL,9,1,0x41000000,7,2,34,2,24,1,18,'bonus bHit,10; bonus bCritical,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13152,'The_Cyclone_','Cyclone',5,17500,NULL,700,120,NULL,9,2,0x41000000,7,2,34,2,24,1,18,'bonus bHit,10; bonus bCritical,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13153,'Dusk','Dusk',5,23500,NULL,750,150,NULL,9,1,0x41000000,7,2,34,2,56,1,18,'bonus bHit,10; bonus bCritical,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13154,'Rolling_Stone','Rolling Stone',5,12000,NULL,900,135,NULL,9,1,0x41000000,7,2,34,1,14,1,20,'bonus bSplashRange,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13155,'Black_Rose','Black Rose',5,32000,NULL,900,180,NULL,9,1,0x41000000,7,2,34,2,35,1,20,'bonus bSplashRange,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13156,'Gate_Keeper','Gate Keeper',5,56000,NULL,1000,210,NULL,9,0,0x41000000,7,2,34,2,24,1,20,'bonus bSplashRange,1; bonus3 bAutoSpell,"GS_SPREADATTACK",6,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13157,'Drifter','Drifter',5,80000,NULL,2300,50,NULL,9,1,0x41000000,7,2,34,2,55,1,19,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13158,'Butcher','Butcher',5,130000,NULL,2500,75,NULL,9,0,0x41000000,7,2,34,3,68,1,19,'bonus2 bCriticalAddRace,RC_Brute,10; bonus2 bCriticalAddRace,RC_Player_Doram,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13159,'Butcher_','Butcher',5,130000,NULL,2500,75,NULL,9,1,0x41000000,7,2,34,3,68,1,19,'bonus2 bCriticalAddRace,RC_Brute,10; bonus2 bCriticalAddRace,RC_Player_Doram,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13160,'Destroyer','Destroyer',5,110000,NULL,1200,220,NULL,9,0,0x41000000,7,2,34,2,52,1,21,'bonus bBreakArmorRate,200;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13161,'Destroyer_','Destroyer',5,110000,NULL,1200,220,NULL,9,1,0x41000000,7,2,34,2,52,1,21,'bonus bBreakArmorRate,200;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13162,'Inferno','Inferno',5,230000,NULL,1250,280,NULL,9,1,0x41000000,7,2,34,2,65,1,21,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13163,'Long_Barrel','Long Barrel',5,40000,NULL,1000,150,NULL,9,0,0x41000000,7,2,34,3,70,1,18,'bonus bHit,10; bonus bCritical,20; bonus bAspdRate,-3; bonus3 bAutoSpell,"GS_TRACKING",5,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13164,'Long_Barrel_','Long Barrel',5,40000,NULL,1000,150,NULL,9,1,0x41000000,7,2,34,3,70,1,18,'bonus bHit,10; bonus bCritical,20; bonus bAspdRate,-3; bonus3 bAutoSpell,"GS_TRACKING",5,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13165,'Jungle_Carbine','Jungle Carbine',5,56000,NULL,700,170,NULL,9,0,0x41000000,7,2,34,3,70,1,18,'bonus bHit,10; bonus bCritical,4; bonus bAspdRate,10; bonus bHit,-readparam(bDex)/3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13166,'Jungle_Carbine_','Jungle Carbine',5,56000,NULL,700,170,NULL,9,1,0x41000000,7,2,34,3,70,1,18,'bonus bHit,10; bonus bCritical,4; bonus bAspdRate,10; bonus bHit,-readparam(bDex)/3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13167,'Gate_KeeperDD','Gate Keeper-DD',5,72000,NULL,1300,200,NULL,9,0,0x41000000,7,2,34,4,70,1,20,'bonus bSplashRange,1; bonus3 bAutoSpell,"GS_SPREADATTACK",6,50; bonus bDef,getrefine(); bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13168,'Thunder_P','Thunder P',5,76000,NULL,700,80,NULL,9,1,0x41000000,7,2,34,3,70,1,20,'bonus bSplashRange,1; bonus bHit,-5; bonus bAspdRate,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13169,'Thunder_P_','Thunder P',5,76000,NULL,700,80,NULL,9,2,0x41000000,7,2,34,3,70,1,20,'bonus bSplashRange,1; bonus bHit,-5; bonus bAspdRate,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13170,'Lever_Action_Rifle','Lever Action Rifle',5,20,NULL,770,138,NULL,9,2,0x41000000,7,2,34,3,70,1,18,'bonus bHit,20; bonus bCritical,50; bonus bAspdRate,-5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13171,'BF_Rifle1','Soldier Rifle',5,0,NULL,0,50,NULL,9,0,0x41000000,7,2,34,3,80,1,18,'bonus bDex,2; bonus bHit,10; bonus bCritical,10; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bCastrate,"GS_TRACKING",-25; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13172,'BF_Gatling_Gun1','Soldier Gatling Gun',5,0,NULL,0,80,NULL,9,0,0x41000000,7,2,34,3,80,1,19,'bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; autobonus "{ bonus bBaseAtk,80; bonus2 bHPLossRate,120,1000; }",10,6000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13173,'BF_Shotgun1','Soldier Shotgun',5,0,NULL,0,100,NULL,9,0,0x41000000,7,2,34,3,80,1,20,'bonus bDex,2; bonus bSplashRange,1; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; autobonus "{ bonus bBaseAtk,80; bonus2 bHPLossRate,100,1000; }",30,6000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13174,'BF_Launcher1','Soldier Grenade Launcher',5,0,NULL,0,300,NULL,9,0,0x41000000,7,2,34,3,80,1,21,'bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; autobonus "{ bonus bBaseAtk,300; bonus2 bHPLossRate,120,1000; }",30,9000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13175,'Lever_Action_Rifle_C','Lever Action Rifle',5,20,NULL,0,170,NULL,9,0,0x41000000,7,2,34,3,0,0,18,'bonus bHit,20; bonus bCritical,50; bonus bAspdRate,-5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13176,'Krieger_Rifle1','Glorious Rifle',5,0,NULL,0,90,NULL,9,0,0x41000000,7,2,34,4,80,1,18,'bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) { bonus2 bCastrate,"GS_TRACKING",25; bonus2 bSkillAtk,"GS_TRACKING",getrefine() * 3; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (13177,'Krieger_Gatling1','Glorious Gatling Gun',5,0,NULL,0,90,NULL,9,0,0x41000000,7,2,34,4,80,1,19,'bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) {bonus2 bAddClass,Class_All,getrefine(); }',NULL,NULL); -REPLACE INTO `item_db` VALUES (13178,'Krieger_Shotgun1','Glorious Shotgun',5,0,NULL,0,110,NULL,9,0,0x41000000,7,2,34,4,80,1,20,'bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bSplashRange,1; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) { bonus2 bSkillAtk,"GS_SPREADATTACK",getrefine() * 2; bonus3 bAddEffOnSkill,"GS_SPREADATTACK",Eff_Stun,2000; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (13179,'Krieger_Launcher1','Glorious Grenade Launcher',5,0,NULL,0,330,NULL,9,0,0x41000000,7,2,34,4,80,1,21,'bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) { bonus2 bSkillAtk,"GS_GROUNDDRIFT",getrefine() * 2; bonus3 bAddEffOnSkill,"GS_SPREADATTACK",Eff_Stun,2000; autobonus "{ bonus bAspdRate,20; }",200,20000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; }',NULL,NULL); -# Bullets -REPLACE INTO `item_db` VALUES (13200,'Bullet','Bullet',10,1,NULL,2,10,NULL,NULL,NULL,0x41000000,7,2,32768,NULL,1,NULL,3,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13201,'Silver_Bullet','Silver Bullet',10,15,NULL,2,15,NULL,NULL,NULL,0x41000000,7,2,32768,NULL,1,NULL,3,'bonus bAtkEle,Ele_Holy;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13202,'Shell_Of_Blood','Bloody Shell',10,30,NULL,2,30,NULL,NULL,NULL,0x41000000,7,2,32768,NULL,1,NULL,3,'bonus2 bAddEff,Eff_Bleeding,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13203,'Flare_Sphere','Flare Sphere',10,80,NULL,5,50,NULL,NULL,NULL,0x41000000,7,2,32768,NULL,1,NULL,5,'bonus bAtkEle,Ele_Fire;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13204,'Lighting_Sphere','Lightning Sphere',10,80,NULL,5,50,NULL,NULL,NULL,0x41000000,7,2,32768,NULL,1,NULL,5,'bonus bAtkEle,Ele_Wind;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13205,'Poison_Sphere','Poison Sphere',10,80,NULL,5,50,NULL,NULL,NULL,0x41000000,7,2,32768,NULL,1,NULL,5,'bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13206,'Blind_Sphere','Blind Sphere',10,80,NULL,5,50,NULL,NULL,NULL,0x41000000,7,2,32768,NULL,1,NULL,5,'bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Blind,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13207,'Freezing_Sphere','Freezing Sphere',10,80,NULL,5,50,NULL,NULL,NULL,0x41000000,7,2,32768,NULL,1,NULL,5,'bonus bAtkEle,Ele_Water;',NULL,NULL); -# Shurikens & Kunais -REPLACE INTO `item_db` VALUES (13250,'Shuriken','Shuriken',10,4,NULL,5,10,NULL,NULL,NULL,0x02000000,7,2,32768,NULL,1,NULL,6,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13251,'Nimbus_Shuriken','Nimbus Shuriken',10,10,NULL,5,30,NULL,NULL,NULL,0x02000000,7,2,32768,NULL,20,NULL,6,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13252,'Flash_Shuriken','Flash Shuriken',10,20,NULL,5,45,NULL,NULL,NULL,0x02000000,7,2,32768,NULL,40,NULL,6,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13253,'Sharp_Leaf_Shuriken','Sharp Leaf Shuriken',10,40,NULL,5,70,NULL,NULL,NULL,0x02000000,7,2,32768,NULL,60,NULL,6,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13254,'Thorn_Needle_Shuriken','Thorn Needle Shuriken',10,100,NULL,5,100,NULL,NULL,NULL,0x02000000,7,2,32768,NULL,80,NULL,6,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13255,'Kunai_Of_Icicle','Icicle Kunai',10,10,NULL,20,30,NULL,NULL,NULL,0x02000000,7,2,32768,NULL,1,NULL,7,'bonus bAtkEle,Ele_Water;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13256,'Kunai_Of_Black_Soil','Black Earth Kunai',10,10,NULL,20,30,NULL,NULL,NULL,0x02000000,7,2,32768,NULL,1,NULL,7,'bonus bAtkEle,Ele_Earth;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13257,'Kunai_Of_Furious_Wind','High Wind Kunai',10,10,NULL,20,30,NULL,NULL,NULL,0x02000000,7,2,32768,NULL,1,NULL,7,'bonus bAtkEle,Ele_Wind;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13258,'Kunai_Of_Fierce_Flame','Heat Wave Kunai',10,10,NULL,20,30,NULL,NULL,NULL,0x02000000,7,2,32768,NULL,1,NULL,7,'bonus bAtkEle,Ele_Fire;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13259,'Kunai_Of_Deadly_Poison','Fell Poison Kunai',10,10,NULL,20,30,NULL,NULL,NULL,0x02000000,7,2,32768,NULL,1,NULL,7,'bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,500;',NULL,NULL); -# Genetic Created Bombs And Throwing Items -REPLACE INTO `item_db` VALUES (13260,'Apple_Bomb','Apple Bomb',10,100,NULL,1,0,NULL,NULL,NULL,0x00040000,8,2,32768,NULL,99,NULL,9,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13261,'Coconut_Bomb','Coconut Bomb',10,100,NULL,1,0,NULL,NULL,NULL,0x00040000,8,2,32768,NULL,99,NULL,9,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13262,'Melon_Bomb','Melon Bomb',10,100,NULL,1,0,NULL,NULL,NULL,0x00040000,8,2,32768,NULL,99,NULL,9,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13263,'Pineapple_Bomb','Pineapple Bomb',10,100,NULL,1,0,NULL,NULL,NULL,0x00040000,8,2,32768,NULL,99,NULL,9,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13264,'Banana_Bomb','Banana Bomb',10,100,NULL,1,0,NULL,NULL,NULL,0x00040000,8,2,32768,NULL,99,NULL,9,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13265,'Black_Lump','Black Lump',10,100,NULL,50,0,NULL,NULL,NULL,0x00040000,8,2,32768,NULL,99,NULL,9,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13266,'Black_Hard_Lump','Hard Black Lump',10,100,NULL,50,0,NULL,NULL,NULL,0x00040000,8,2,32768,NULL,99,NULL,9,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13267,'Very_Hard_Lump','Extremely Hard Black Lump',10,100,NULL,50,0,NULL,NULL,NULL,0x00040000,8,2,32768,NULL,99,NULL,9,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13268,'Mysterious_Powder','Mysterious Powder',10,100,NULL,10,0,NULL,NULL,NULL,0x00040000,8,2,32768,NULL,99,NULL,9,'sc_start SC_MYSTERIOUS_POWDER,10000,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13269,'Boost500_To_Throw','Throwing Boost 500',10,100,NULL,10,0,NULL,NULL,NULL,0x00040000,8,2,32768,NULL,99,NULL,9,'sc_start SC_BOOST500,500000,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13270,'Full_SwingK_To_Throw','Throwing Full Swing K',10,100,NULL,50,0,NULL,NULL,NULL,0x00040000,8,2,32768,NULL,99,NULL,9,'sc_start SC_FULL_SWING_K,500000,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13271,'Mana_Plus_To_Throw','Throwing Mana Plus',10,100,NULL,50,0,NULL,NULL,NULL,0x00040000,8,2,32768,NULL,99,NULL,9,'sc_start SC_MANA_PLUS,500000,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13272,'Cure_Free_To_Throw','Throwing Cure Free',10,100,NULL,50,0,NULL,NULL,NULL,0x00040000,8,2,32768,NULL,99,NULL,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;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13273,'Stamina_Up_M_To_Throw','Throwing Muramura M',10,100,NULL,10,0,NULL,NULL,NULL,0x00040000,8,2,32768,NULL,99,NULL,9,'sc_start SC_MUSTLE_M,500000,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13274,'Digestive_F_To_Throw','Throwing Falmons F',10,100,NULL,10,0,NULL,NULL,NULL,0x00040000,8,2,32768,NULL,99,NULL,9,'sc_start SC_LIFE_FORCE_F,500000,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13275,'HP_Inc_PotS_To_Throw','Throwing Increase HP Potion (Small)',10,100,NULL,20,0,NULL,NULL,NULL,0x00040000,8,2,32768,NULL,99,NULL,9,'/* Item bonus in source because of BaseLevel check */',NULL,NULL); -REPLACE INTO `item_db` VALUES (13276,'HP_Inc_PotM_To_Throw','Throwing Increase HP Potion (Medium)',10,100,NULL,40,0,NULL,NULL,NULL,0x00040000,8,2,32768,NULL,99,NULL,9,'/* Item bonus in source because of BaseLevel check */',NULL,NULL); -REPLACE INTO `item_db` VALUES (13277,'HP_Inc_PotL_To_Throw','Throwing Increase HP Potion (Large)',10,100,NULL,80,0,NULL,NULL,NULL,0x00040000,8,2,32768,NULL,99,NULL,9,'/* Item bonus in source because of BaseLevel check */',NULL,NULL); -REPLACE INTO `item_db` VALUES (13278,'SP_Inc_PotS_To_Throw','Throwing Increase SP Potion (Small)',10,100,NULL,20,0,NULL,NULL,NULL,0x00040000,8,2,32768,NULL,99,NULL,9,'/* Item bonus in source because of BaseLevel check */',NULL,NULL); -REPLACE INTO `item_db` VALUES (13279,'SP_Inc_PotM_To_Throw','Throwing Increase SP Potion (Medium)',10,100,NULL,40,0,NULL,NULL,NULL,0x00040000,8,2,32768,NULL,99,NULL,9,'/* Item bonus in source because of BaseLevel check */',NULL,NULL); -REPLACE INTO `item_db` VALUES (13280,'SP_Inc_PotL_To_Throw','Throwing Increase SP Potion (Large)',10,100,NULL,80,0,NULL,NULL,NULL,0x00040000,8,2,32768,NULL,99,NULL,9,'/* Item bonus in source because of BaseLevel check */',NULL,NULL); -REPLACE INTO `item_db` VALUES (13281,'En_White_PotZ_To_Throw','Throwing Concentrated White Potion Z',10,100,NULL,70,0,NULL,NULL,NULL,0x00040000,8,2,32768,NULL,99,NULL,9,'sc_start SC_EXTRACT_WHITE_POTION_Z,500000,20; itemheal 1000,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13282,'Vitata500_To_Throw','Throwing Vitata 500',10,100,NULL,50,0,NULL,NULL,NULL,0x00040000,8,2,32768,NULL,99,NULL,9,'sc_start2 SC_VITATA_500,500000,20,5; itemheal 0,200;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13283,'En_Cel_Juice_To_Throw','Throwing Ceromain Soup',10,100,NULL,50,0,NULL,NULL,NULL,0x00040000,8,2,32768,NULL,99,NULL,9,'sc_start SC_EXTRACT_SALAMINE_JUICE,500000,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13284,'Savage_BBQ_To_Throw','Throwing Savage Full Roast',10,100,NULL,50,0,NULL,NULL,NULL,0x00040000,8,2,32768,NULL,99,NULL,9,'sc_start SC_SAVAGE_STEAK,300000,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13285,'Wug_Cocktail_To_Throw','Throwing Cocktail Warg Blood',10,100,NULL,50,0,NULL,NULL,NULL,0x00040000,8,2,32768,NULL,99,NULL,9,'sc_start SC_COCKTAIL_WARG_BLOOD,300000,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13286,'M_Brisket_To_Throw','Throwing Minor Stew',10,100,NULL,50,0,NULL,NULL,NULL,0x00040000,8,2,32768,NULL,99,NULL,9,'sc_start SC_MINOR_BBQ,300000,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13287,'Siroma_Icetea_To_Throw','Throwing Siroma Iced Tea',10,100,NULL,50,0,NULL,NULL,NULL,0x00040000,8,2,32768,NULL,99,NULL,9,'sc_start SC_SIROMA_ICE_TEA,300000,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13288,'Drocera_Stew_To_Throw','Throwing Drosera Herb Salad',10,100,NULL,50,0,NULL,NULL,NULL,0x00040000,8,2,32768,NULL,99,NULL,9,'sc_start SC_DROCERA_HERB_STEAMED,300000,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13289,'Petti_Noodle_To_Throw','Throwing Petite Tail Soup',10,100,NULL,50,0,NULL,NULL,NULL,0x00040000,8,2,32768,NULL,99,NULL,9,'sc_start SC_PUTTI_TAILS_NOODLES,300000,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13290,'Black_Thing_To_Throw','Throwing Black Mass',10,100,NULL,50,0,NULL,NULL,NULL,0x00040000,8,2,32768,NULL,99,NULL,9,'sc_start SC_STOMACHACHE,60000,rand(5,10);',NULL,NULL); -REPLACE INTO `item_db` VALUES (13294,'Explosive_Kunai','Explosive Kunai',10,100,NULL,30,50,NULL,NULL,NULL,0x02000000,63,2,32768,NULL,100,NULL,7,'bonus bAtkEle,Ele_Neutral;',NULL,NULL); -# Ninja Fuuma Shurikens -REPLACE INTO `item_db` VALUES (13300,'Huuma_Bird_Wing','Huuma Wing Shuriken',5,90000,NULL,3000,150,NULL,1,0,0x02000000,7,2,34,4,65,1,22,'bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Wind; bonus bDex,-2; bonus bAgi,-1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13301,'Huuma_Giant_Wheel','Huuma Giant Wheel Shuriken',5,40000,NULL,2500,50,NULL,1,3,0x02000000,7,2,34,4,42,1,22,'bonus bUnbreakableWeapon; bonus2 bAddEff,Eff_Bleeding,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13302,'Huuma_Giant_Wheel_','Huuma Giant Wheel Shuriken',5,40000,NULL,2500,50,NULL,1,4,0x02000000,7,2,34,4,42,1,22,'bonus bUnbreakableWeapon; bonus2 bAddEff,Eff_Bleeding,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13303,'Huuma_Blaze','Huuma Blaze Shuriken',5,78000,NULL,1500,185,NULL,1,0,0x02000000,7,2,34,4,55,1,22,'bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Fire; bonus bDex,-2; bonus3 bAutoSpell,"MG_FIREBALL",5,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13304,'Huuma_Calm_Mind','Huuma Calm Mind',5,20,NULL,1550,112,NULL,1,2,0x02000000,7,2,34,3,70,1,22,'bonus bUnbreakableWeapon; bonus2 bSkillAtk,"NJ_HUUMA",30; bonus bNoCastCancel;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13305,'BF_Huuma_Shuriken1','Brave Huuma Front Shuriken',5,20,NULL,0,55,NULL,1,0,0x02000000,7,2,34,3,80,1,22,'bonus bStr,2; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13306,'BF_Huuma_Shuriken2','Valorous Huuma Front Shuriken',5,20,NULL,0,55,NULL,1,0,0x02000000,7,2,34,3,80,1,22,'bonus bStr,2; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; autobonus "{ bonus2 bSkillAtk,\\\"NJ_HUUMA\\\",100; bonus2 bSkillAtk,\\\"NJ_ISSEN\\\",100; }",50,10000,BF_WEAPON,"{specialeffect2 EF_POTION_BERSERK; }"; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13307,'Krieger_Huuma_Shuriken1','Glorious Shuriken',5,20,NULL,0,55,NULL,1,0,0x02000000,7,2,34,4,80,1,22,'bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bMatkRate,15; autobonus "{ bonus2 bSkillAtk,\\\"NJ_HUUMA\\\",100; bonus2 bSkillAtk,\\\"NJ_ISSEN\\\",100; }",50,10000; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-3)*(getrefine()-3); bonus2 bAddRace,RC_Player_Human,(getrefine()-3)*(getrefine()-3); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) { bonus5 bAutoSpellOnSkill,"NJ_ISSEN","AL_HEAL",10,1000,1; bonus4 bAutoSpellOnSkill,"NJ_HUUMA","NPC_CRITICALWOUND",2,200; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (13308,'Huuma_Blaze_I','Huuma Blaze Shuriken',5,0,NULL,0,230,NULL,1,0,0x02000000,7,2,34,4,0,0,22,'bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Fire; bonus bDex,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13309,'Huuma_Giant_Wheel_C','Huuma Giant Wheel Shuriken',5,0,NULL,0,99,NULL,1,0,0x02000000,7,2,34,4,1,0,22,'bonus2 bAddSize,Size_All,80;',NULL,NULL); -# More 1-Handed Swords -REPLACE INTO `item_db` VALUES (13400,'Cutlas_','Cutlus',5,20,NULL,900,150,NULL,1,1,0x000654E2,7,2,2,4,40,1,2,'skill "SM_BASH",5; bonus bStr,2; bonus bDef,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13401,'Excalibur_C','Excalibur',5,1,NULL,0,199,NULL,1,0,0x000654E2,7,2,2,4,1,0,2,'bonus bInt,10; bonus bLuk,10; bonus bAtkEle,Ele_Holy;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13402,'Cutlas_C','Cutlus',5,2,NULL,0,185,NULL,1,0,0x000654E2,7,2,2,4,0,0,2,'skill "SM_BASH",5; bonus bStr,2; bonus bDef,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13403,'Solar_Sword_C','Solar Sword',5,2,NULL,0,120,NULL,1,0,0x000654E2,7,2,2,4,0,0,2,'bonus bAtkEle,Ele_Fire; bonus bHPDrainRate,1; bonus2 bSPLossRate,15,10000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13404,'Platinum_Shotel','Platinum Shotel',5,20,NULL,1500,130,NULL,1,1,0x000654E2,7,2,2,4,55,1,2,'bonus bCritical,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13405,'Curved_Sword','Curved Sword',5,20,NULL,800,125,NULL,1,2,0x000654E2,7,2,2,4,55,1,2,'bonus bAspdRate,10; bonus2 bAddEff,Eff_Curse,300;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13406,'Edger','Edger',5,20,NULL,0,120,NULL,1,0,0x000654E2,7,2,2,1,0,0,2,'bonus2 bAddClass,Class_All,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13407,'Nagan_C','Refined Nagan',5,1,NULL,0,148,NULL,1,0,0x000654E2,7,2,2,4,0,0,2,'skill "TF_DOUBLE",5; bonus bDoubleRate,25; bonus2 bAddRace,RC_DemiHuman,40; bonus2 bAddRace,RC_Player_Human,40;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13408,'Fire_Brand_C','Refined Fireblend',5,1,NULL,0,120,NULL,1,0,0x000654E2,7,2,2,4,0,0,2,'bonus bAtkEle,Ele_Fire; bonus bInt,2; skill "MG_FIREBOLT",5; bonus3 bAutoSpell,"MG_FIREBOLT",5,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13409,'Immaterial_Sword_C','Refined Immaterial Sword',5,1,NULL,0,160,NULL,1,0,0x000654E2,7,2,2,4,0,0,2,'bonus bAtkEle,Ele_Ghost; bonus2 bSPVanishRate,45,30; bonus bSPDrainValue,-1; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13410,'BF_Sword1','Valorous Gladiator Blade',5,20,NULL,0,115,NULL,1,0,0x000654E3,7,2,2,3,80,1,2,'bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13411,'BF_Sword2','Brave Gladiator Blade',5,20,NULL,0,115,NULL,1,0,0x000654E3,7,2,2,3,80,1,2,'bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus bMatkRate,10; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13412,'Twin_Edge_B','Twin Edge of Naght Sieger',5,20,NULL,1500,150,NULL,1,3,0x000654E2,2,2,2,4,75,1,2,'bonus bAtkEle,Ele_Water; skill "MG_FROSTDIVER",5; autobonus "{ bonus bIgnoreDefClass,Class_Normal; }",50,5000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13413,'Twin_Edge_R','Twin Edge of Naght Sieger',5,20,NULL,1500,160,NULL,1,3,0x000654E2,2,2,2,4,75,1,2,'bonus bAtkEle,Ele_Fire; skill "WZ_METEOR",3; autobonus "{ bonus bIgnoreDefClass,Class_Normal; }",50,5000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13414,'Elemental_Sword','Elemental Sword',5,20,NULL,1200,105,NULL,1,3,0x000654E2,2,2,2,3,70,1,2,'bonus bStr,2; bonus bInt,4; bonus bDex,1; bonus bMatkRate,5; 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,1000; bonus4 bAutoSpellOnSkill,"MG_LIGHTNINGBOLT","WZ_EARTHSPIKE",3,1000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13415,'N_Falchion','Novice Falchion',5,0,NULL,0,59,NULL,1,3,0x000654E3,7,2,2,1,2,0,2,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13416,'Krieger_Onehand_Sword1','Glorious Flamberge',5,20,NULL,0,130,NULL,1,0,0x000654E3,7,2,2,4,80,1,2,'bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>6) bonus bAspdRate,5; if(getrefine()>8) { bonus bAspdRate,5; bonus4 bAutoSpellOnSkill,"SM_BASH","NPC_CRITICALWOUND",2,200; }',NULL,NULL); -REPLACE INTO `item_db` VALUES (13417,'Krieger_Onehand_Sword2','Glorious Rapier',5,20,NULL,0,130,NULL,1,0,0x000654E3,7,2,2,4,80,1,2,'bonus bInt,getrefine()-5; bonus bMatkRate,10; bonus bUnbreakableWeapon; if(getrefine()>5) bonus bUseSPrate,-10; if(getrefine()>8) bonus bInt,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13418,'Krieger_Onehand_Sword3','Glorious Holy Avenger',5,20,NULL,0,130,NULL,1,0,0x000444A2,7,2,2,4,80,1,2,'bonus bInt,getrefine()-5; bonus bMatkRate,10; bonus bUnbreakableWeapon; if(getrefine()>5) bonus bUseSPrate,-10; if(getrefine()>8) bonus4 bAutoSpellOnSkill,"PA_PRESSURE","PR_LEXAETERNA",1,1000; if(getrefine()>9) bonus bInt,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13419,'Holy_Saber','Holy saber',5,20,NULL,0,160,NULL,1,0,0x000654E2,7,2,2,3,0,0,2,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13420,'Honglyun\'s_Sword','Honglyun\'s Sword',5,20,NULL,1200,160,NULL,1,1,0x000654E2,7,2,2,4,70,1,2,'bonus bAtkEle,Ele_Fire; bonus bStr,2; bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13421,'Ruber','Ruber',5,20,NULL,1500,170,NULL,1,1,0x000444A2,2,2,2,3,50,1,2,'autobonus "{ bonus2 bSkillAtk,\\\"KN_BOWLINGBASH\\\",20; bonus2 bSkillAtk,\\\"SM_BASH\\\",20; }",5,15000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }";',NULL,NULL); -REPLACE INTO `item_db` VALUES (13422,'Flamberge_C','Flamberge',5,0,NULL,0,185,NULL,1,0,0x00004080,7,2,2,3,1,0,2,'bonus bUnbreakableWeapon; bonus2 bAddSize,Size_All,40;',NULL,NULL); -# More Cash Shop Items -REPLACE INTO `item_db` VALUES (13500,'Insurance60_Package','Life Insurrance Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14500,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13501,'Assorted_Scroll_Box','Experience Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13502,'Drooping_Kitty_Box','Refined Drooping Cat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5279,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13503,'Magestic_Goat_Box','Baphomet Horns Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5280,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13504,'Deviruchi_Cap_Box','Refined Deviruchi Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5281,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13505,'Executioner_Box','Executioner Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1174,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13506,'Brood_Axe_Box','Refined Bloody Axe Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1373,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13507,'Tomahawk_Box','Tomahawk Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1374,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13508,'Bow_Of_Rudra_Box','Rudra Bow Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1729,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13509,'Cutlas_Box','Cutlus Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13402,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13510,'Solar_Sword_Box','Solar Sword Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13403,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13511,'Sword_Breaker_Box','Refined Swordbreaker Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13024,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13512,'Mail_Breaker_Box','Refined Mailbreaker Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13025,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13513,'Moonlight_Sword_Box','Moonlight Dagger Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13026,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13514,'Spanner_Box','Wrench Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1534,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13515,'Grape_Box','Grape Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 514,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13516,'Royal_Jelly_Box','Royal Jelly Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 526,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13517,'Yggdrasilberry_Box','Yggdrasil Berry Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 607,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13518,'Weapon_Card_Scroll_Box','Weapon Card Pet Egg Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 13558,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13519,'Armor_Card_Scroll_Box','Armor Card Pet Egg Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 13559,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13520,'Helmet_Card_Scroll_Box','Helmet Card Pet Egg Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 13560,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13521,'Hood_Card_Scroll_Box','Garment Card Pet Egg Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 13561,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13522,'Hood_Card_Scroll_Box2','Shield Card Pet Egg Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 13562,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13523,'Shoes_Card_Scroll_Box','Shoes Card Pet Egg Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 13563,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13524,'Accy_Card_Scroll_Box','Accessory Card Pet Egg Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 13564,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13525,'Zeny_Scroll_Box','Zeny Pet Egg Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14508,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13526,'Pet_Egg_Scroll_Box1_','Pet Egg Scroll Box 12',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12925,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13527,'Pet_Egg_Scroll_Box2_','Pet Egg Scroll Box 13',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12926,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13528,'Pet_Egg_Scroll_Box3_','Pet Egg Scroll Box 14',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12932,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13529,'Pet_Egg_Scroll_Box4_','Pet Egg Scroll Box 15',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12933,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13530,'Pet_Egg_Scroll_Box5_','Pet Egg Scroll Box 16',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12934,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13531,'Light_Red_Pot_Box','Light Red Potion Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 598,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13532,'Light_Orange_Pot_Box','Light Orange Potion Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 599,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13533,'Light_Yellow_Pot_Box','Light Yellow Potion Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 11500,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13534,'Light_White_Pot_Box','Light White Potion Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 11501,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13535,'Light_Center_Pot_Box','Light Concentration Potion Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14509,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13536,'Light_Awakening_Pot_Box','Light Awakening Potion Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14510,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13537,'Light_Berserk_Pot_Box','Light Berserk Potion Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14511,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13538,'Meteor_10_Scroll_Box','Meteor Storm Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14512,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13539,'Storm_10_Scroll_Box','Storm Gust Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14513,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13540,'Vermilion_10_Scroll_Box','Lord of Vermilion Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14514,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13541,'Lex_Aeterna_Scroll_Box','Lex Aeterna Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14515,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13542,'Magnificat_5_Scroll_Box','Magnificat Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14516,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13543,'CP_Helm_Scroll_Box','Chemical Protection Helm Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14517,10; getitem 7139,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13544,'CP_Shield_Scroll_Box','Chemical Protection Shield Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14518,10; getitem 7139,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13545,'CP_Armor_Scroll_Box','Chemical Protection Armor Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14519,10; getitem 7139,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13546,'CP_Weapon_Scroll_Box','Chemical Protection Weapon Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14520,10; getitem 7139,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13547,'Repair_Scroll_Box','Repair Weapon Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14587,5; getitem 1002,5; getitem 998,5; getitem 756,5; getitem 999,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13548,'Big_Bun_Box','Big Bun Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14522,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13549,'Pill__Box','Pill Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14523,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13550,'Superb_Fish_Slice_Box','Fish Slice Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14524,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13551,'Chewy_Ricecake_Box','Chewy Ricecake Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14525,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13552,'Oriental_Pastry_Box','Pastry Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14526,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13553,'Dun_Tele_Scroll1_Box','Dungeon Teleport Scroll 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14527,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13554,'Weapon_Card_Scroll_Box2','Weapon Card Pet Egg Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 13565,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13555,'Weapon_Card_Scroll_Box3','Weapon Card Pet Egg Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 13566,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13556,'Armor_Card_Scroll_Box2','Armor Card Pet Egg Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 13567,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13557,'Accy_Card_Scroll_Box2','Accessory Card Pet Egg Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 13568,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13558,'Weapon_Card_Scroll','Weapon Card Pet Egg Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13559,'Armor_Card_Scroll','Armor Card Pet Egg Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13560,'Helmet_Card_Scroll','Helmet Card Pet Egg Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13561,'Hood_Card_Scroll','Garment Card Pet Egg Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13562,'Hood_Card_Scroll2','Shield Card Pet Egg Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13563,'Shoes_Card_Scroll','Shoes Card Pet Egg Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13564,'Accy_Card_Scroll','Accessory Card Pet Egg Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13565,'Weapon_Card_Scroll2','Weapon Card Pet Egg Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13566,'Weapon_Card_Scroll3','Weapon Card Pet Egg Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13567,'Armor_Card_Scroll2','Armor Card Pet Egg Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13568,'Accy_Card_Scroll2','Accessory Card Pet Egg Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13569,'PVP_Tele_Scroll_Box','PVP Teleport Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14528,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13570,'Giant_Fly_Wing_Box50','Giant Fly Wing 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12212,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13571,'Giant_Fly_Wing_Box100','Giant Fly Wing 100 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12212,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13572,'Dex_Dish_Box30','Hwergelmir\'s Tonic 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12205,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13573,'Dex_Dish_Box50','Hwergelmir\'s Tonic 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12205,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13574,'Luk_Dish_Box30','Nine Tail Dish 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12206,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13575,'Luk_Dish_Box50','Nine Tail Dish 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12206,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13576,'Inc_Agi_10_Box30','Increase Agility Scroll 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12216,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13577,'Inc_Agi_10_Box50','Increase Agility Scroll 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12216,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13578,'Vit_Dish_Box30','Stew of Immortality 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12207,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13579,'Vit_Dish_Box50','Stew of Immortality 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12207,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13580,'Insurance_Package30','Life Insurrance 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12209,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13581,'Insurance_Package50','Life Insurrance 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12209,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13582,'Convex_Mirror_Box5','Convex Mirror 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12214,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13583,'Convex_Mirror_Box30','Convex Mirror 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12214,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13584,'Blessing10_Box30','Blessing Scroll 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12215,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13585,'Blessing10_Box50','Blessing Scroll 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12215,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13586,'Adrenaline10_Box30','Adrenaline Rush Scroll 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12220,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13587,'Adrenaline10_Box50','Adrenaline Rush Scroll 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12220,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13588,'Assumptio_5_Box30','Assumptio Scroll 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12218,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13589,'Assumptio_5_Box50','Assumptio Scroll 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12218,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13590,'Aspersio_5_Box30','Aspersio Scroll 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12217,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13591,'Aspersio_5_Box50','Aspersio Scroll 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12217,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13592,'Agi_Dish_Box30','Steamed Scorpion 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12203,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13593,'Agi_Dish_Box50','Steamed Scorpion 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12203,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13594,'Wind_Walk10_Box30','Wind Walk Scroll 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12219,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13595,'Wind_Walk10_Box50','Wind Walk Scroll 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12219,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13596,'Int_Dish_Box30','Dragon Breath Cocktail 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12204,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13597,'Int_Dish_Box50','Dragon Breath Cocktail 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12204,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13598,'Battle_Manual_Box1','Field Manual Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12208,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13599,'Battle_Manual_Box5','Field Manual 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12208,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13600,'Siegfried_Box5','Token of Siegfried 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 7621,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13601,'Siegfried_Box20','Token of Siegfried 20 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 7621,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13602,'Kafra_Card_Box30','Kafra Card 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12211,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13603,'Kafra_Card_Box50','Kafra Card 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12211,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13604,'Str_Dish_Box30','Steamed Tongue 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12202,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13605,'Str_Dish_Box50','Steamed Tongue 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12202,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13606,'Bubble_Gum_Box1','Bubble Gum Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12210,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13607,'Bubble_Gum_Box5','Bubble Gum 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12210,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13608,'Megaphone_Box1','Megaphone Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12221,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13609,'Megaphone_Box5','Megaphone 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12221,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13610,'Enriched_Elunium_Box5','Enriched Elunium 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 7619,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13611,'Enriched_Oridecon_Box5','Enriched Oridecon 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 7620,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13612,'Handcuff_Box','Arrest Handcuffs Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 2706,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13613,'Super_Pet_Egg_Box1','Super Pet Egg Box 1',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 13617,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13614,'Super_Pet_Egg_Box2','Super Pet Egg Box 2',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 13618,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13615,'Super_Pet_Egg_Box3','Super Pet Egg Box 3',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 13619,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13616,'Super_Pet_Egg_Box4','Super Pet Egg Box 4',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 13620,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13617,'Super_Pet_Egg1','Super Pet Egg 1',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13618,'Super_Pet_Egg2','Super Pet Egg 2',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13619,'Super_Pet_Egg3','Super Pet Egg 3',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13620,'Super_Pet_Egg4','Super Pet Egg 4',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13621,'Greed_Box30','Greed Scroll 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14529,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13622,'Greed_Box50','Greed Scroll 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14529,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13623,'Greed_Box100','Greed Scroll 100 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14529,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13624,'Flee_30_Scroll_Box','Evasion Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14530,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13625,'Accuracy_30_Scroll_Box','Concentration Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14531,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13626,'Super_Card_Pet_Egg_Box1','Super Card Pet Egg Box 1',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 13630,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13627,'Super_Card_Pet_Egg_Box2','Super Card Pet Egg Box 2',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 13631,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13628,'Super_Card_Pet_Egg_Box3','Super Card Pet Egg Box 3',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 13632,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13629,'Super_Card_Pet_Egg_Box4','Super Card Pet Egg Box 4',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 13633,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13630,'Super_Card_Pet_Egg1','Super Card Pet Egg 1',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13631,'Super_Card_Pet_Egg2','Super Card Pet Egg 2',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13632,'Super_Card_Pet_Egg3','Super Card Pet Egg 3',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13633,'Super_Card_Pet_Egg4','Super Card Pet Egg 4',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13634,'Vigorgra_Package1','1 Hour Package Vol. 1',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12250,2; getitem 12251,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13635,'Vigorgra_Package2','1 Hour Package Vol. 2',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12250,2; getitem 12255,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13636,'Vigorgra_Package3','1 Hour Package Vol. 3',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12252,2; getitem 12253,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13637,'Vigorgra_Package4','1 Hour Package Vol. 4',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12252,2; getitem 12255,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13638,'Vigorgra_Package5','1 Hour Package Vol. 5',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12252,2; getitem 12250,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13639,'Vigorgra_Package6','1 Hour Package Vol. 6',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12250,2; getitem 12251,2; getitem 12208,2; getitem 12215,15; getitem 12217,20; getitem 12211,1; getitem 7621,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13640,'Vigorgra_Package7','2 Hour Package Vol. 1',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12250,4; getitem 12251,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13641,'Vigorgra_Package8','2 Hour Package Vol. 2',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12250,4; getitem 12255,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13642,'Vigorgra_Package9','2 Hour Package Vol. 3',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12252,4; getitem 12253,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13643,'Vigorgra_Package10','2 Hour Package Vol. 4',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12252,4; getitem 12255,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13644,'Vigorgra_Package11','2 Hour Package Vol. 5',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12252,4; getitem 12250,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13645,'Vigorgra_Package12','2 Hour Package Vol. 6',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12250,4; getitem 12251,4; getitem 12208,4; getitem 12215,30; getitem 12217,40; getitem 12211,2; getitem 7621,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13646,'Infiltrator_Box1','Refined Infiltrator Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1267,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13647,'Muramasa_Box1','Refined Muramasa Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1173,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13648,'Excalibur_Box1','Refined Excalibur Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13401,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13649,'Combat_Knife_Box1','Refined Combat Knife Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13021,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13650,'Counter_Dagger_Box1','Refined Dagger of Counter Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13022,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13651,'Kaiser_Knuckle_Box1','Refined Kaiser Knuckle Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1817,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13652,'Pole_Axe_Box1','Refined Pole Axe Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1419,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13653,'Mighty_Staff_Box1','Refined Mighty Staff Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1623,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13654,'Right_Epsilon_Box1','Refined Light Epsilon Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1372,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13655,'Balistar_Box1','Refined Ballista Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1728,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13656,'Diary_Of_Sage_Box1','Refined Sage\'s Diary Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1563,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13657,'Asura_Box1','Refined Ashura Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13023,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13658,'Apple_Of_Archer_Box1','Refined Apple of Archer Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5265,1209600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13659,'Bunny_Band_Box1','Refined Bunny Band Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5266,1209600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13660,'Sahkkat_Box1','Refined Sakkat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5267,1209600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13661,'Lord_Circlet_Box1','Refined Grand Circlet Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5268,1209600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13662,'Elven_Ears_Box1','Refined Elven Ears Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2686,1209600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13663,'Steel_Flower_Box1','Refined Romantic Flower Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2687,1209600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13664,'Critical_Ring_Box1','Refined Critical Ring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2688,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13665,'Earring_Box1','Refined Earring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2689,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13666,'Ring_Box1','Refined Ring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2690,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13667,'Necklace_Box1','Refined Necklace Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2691,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13668,'Glove_Box1','Refined Glove Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2692,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13669,'Brooch_Box1','Refined Brooch Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2693,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13670,'Rosary_Box1','Refined Rosary Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2694,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13671,'Safety_Ring_Box1','Refined Safety Ring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2695,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13672,'Vesper_Core01_Box1','Refined Vesper Core 01 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2696,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13673,'Vesper_Core02_Box1','Refined Vesper Core 02 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2697,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13674,'Vesper_Core03_Box1','Refined Vesper Core 03 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2698,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13675,'Vesper_Core04_Box1','Refined Vesper Core 04 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2699,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13676,'Drooping_Kitty_Box1','Refined Drooping Cat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5279,1209600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13677,'Magestic_Goat_Box1','Refined Majestic Goat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5280,1209600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13678,'Deviruchi_Cap_Box1','Refined Deviruchi Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5281,1209600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13679,'Executioner_Box1','Refined Executioner Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1174,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13680,'Brood_Axe_Box1','Refined Bloody Axe Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1373,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13681,'Tomahawk_Box1','Refined Tomahawk Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1374,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13682,'Bow_Of_Rudra_Box1','Refined Rudra Bow Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1729,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13683,'Cutlas_Box1','Refined Cutlus Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13402,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13684,'Solar_Sword_Box1','Refined Solar Sword Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13403,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13685,'Sword_Breaker_Box1','Refined Swordbreaker Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13024,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13686,'Mail_Breaker_Box1','Refined Mailbreaker Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13025,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13687,'Moonlight_Sword_Box1','Refined Moonlight Dagger Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13026,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13688,'Spanner_Box1','Refined Wrench Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1534,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13689,'Bok_Choy_Box','Bok Choy Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 7766,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13690,'Chung_E_Cake_Box','Green Maiden Cake Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 7767,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13691,'Freyja_Overcoat_Box','Freya\'s Clothes Box',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2369,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13692,'Freyja_Boots_Box','Freya\'s Boots Box',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2428,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13693,'Freyja_Cape_Box','Freya\'s Manteau Box',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2533,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13694,'Freyja_Crown_Box','Freya\'s Crown Box',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5306,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13695,'Battle_Manual25_Box','Field Manual 25% Box',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14532,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13696,'Battle_Manual100_Box','Field Manual 100% Box',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14533,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13697,'J_Blessing10_Box','Blessing Scroll 10 Box',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12215,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13698,'J_Inc_Agi10_Box','Increase Agility Scroll 10 Box',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12216,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13699,'J_Wind_Walk10_Box','Wind Walk Scroll 10 Box',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12219,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13700,'J_Adrenaline10_Box','Adrenaline Rush Scroll 10 Box',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12220,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13701,'Pet_Egg_Scroll12','Pet Egg Scroll 12',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13702,'Pet_Egg_Scroll13','Pet Egg Scroll 13',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13703,'Pet_Egg_Scroll14','Pet Egg Scroll 14',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13704,'Super_Pet_Egg5','Super Pet Egg 5',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13705,'Super_Pet_Egg6','Super Pet Egg 6',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13706,'Super_Pet_Egg7','Super Pet Egg 7',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13707,'Super_Pet_Egg8','Super Pet Egg 8',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13708,'Pet_Egg_Scroll_E','Pet Egg Scroll E',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13709,'BRO_Package_1','BRO Package Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13710,'Max_Weight_Up_Box','Gym Pass Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 7776,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13711,'Small_Life_Potion_Box','Small Life Potion 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14534,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13712,'Small_Life_Potion_Box30','Small Life Potion 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14534,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13713,'Small_Life_Potion_Box50','Small Life Potion 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14534,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13714,'Med_Life_Potion_Box','Medium Life Potion 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14535,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13715,'Med_Life_Potion_Box30','Medium Life Potion 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14535,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13716,'Med_Life_Potion_Box50','Medium Life Potion 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14535,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13717,'Abrasive_Box5','Abrasive 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14536,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13718,'Abrasive_Box10','Abrasive 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14536,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13719,'Regeneration_Box5','Regeneration Potion 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14537,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13720,'Regeneration_Box10','Regeneration 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14537,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13721,'Dun_Tele_Scroll_Box10','Dungeon Teleport Scroll 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14527,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13722,'Pecopeco_Hairband_Box','Peco Peco Hairband Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5286,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13723,'Red_Glasses_Box','Red Glasses Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5288,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13724,'Whisper_Mask_Box','Whisper Mask Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5294,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13725,'Ramen_Hat_Box','Ramen Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5293,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13726,'Gold_Box_','Golden Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 7777,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13727,'Silver_Box_','Silver Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 7778,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13728,'Gold_Key1_Box','Golden Key 1 Box',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 7779,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13729,'Gold_Key5_Box','Golden Key 5 Box',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 7779,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13730,'Silver_Key1_Box','Silver Key 1 Box',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 7780,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13731,'Silver_Key5_Box','Silver Key 5 Box',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 7780,5;',NULL,NULL); -# -# -REPLACE INTO `item_db` VALUES (13734,'Pecopeco_Hairband_Box1','Peco Peco Hairband Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5286,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13735,'Red_Glasses_Box1','Red Glasses Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5288,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13736,'Whisper_Mask_Box1','Whisper Mask Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5294,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13737,'Ramen_Hat_Box1','Ramen Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5293,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13738,'Glass_Of_Illusion_Box5','Glass of Illusion 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14538,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13739,'Glass_Of_Illusion_Box10','Glass of Illusion 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14538,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13740,'Shadow_Armor_S_Box5','Shadow Armor Scroll 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14539,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13741,'Shadow_Armor_S_Box10','Shadow Armor Scroll 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14539,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13742,'Shadow_Armor_S_Box30','Shadow Armor Scroll 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14539,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13743,'Holy_Armor_S_Box5','Holy Armor Scroll 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14540,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13744,'Holy_Armor_S_Box10','Holy Armor Scroll 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14540,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13745,'Holy_Armor_S_Box30','Holy Armor Scroll 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14540,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13746,'S_Def_Potion_Box10','Small Defense Potion 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14541,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13747,'S_Def_Potion_Box30','Small Defense Potion 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14541,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13748,'S_Def_Potion_Box50','Small Defense Potion 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14541,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13749,'B_Def_Potion_Box10','Big Defense Potion 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14542,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13750,'B_Def_Potion_Box30','Big Defense Potion 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14542,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13751,'B_Def_Potion_Box50','Big Defense Potion 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14542,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13752,'S_Mdef_Potion_Box10','Small Magic Defense Potion 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14543,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13753,'S_Mdef_Potion_Box30','Small Magic Defense Potion 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14543,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13754,'S_Mdef_Potion_Box50','Small Magic Defense Potion 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14543,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13755,'B_Mdef_Potion_Box10','Big Magic Defense Potion 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14544,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13756,'B_Mdef_Potion_Box30','Big Magic Defense Potion 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14544,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13757,'B_Mdef_Potion_Box50','Big Magic Defense Potion 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14544,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13758,'Battle_Manual_X3_Box','Field Manual 300% Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14545,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13759,'In_Blue_Herb_Box','Blue Herb Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 510,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13760,'Honey_Box','Honey Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 518,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13761,'Empty_Bottle_Box','Empty Bottle Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 713,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13762,'In_Royal_Jelly_Box','Royal Jelly Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 526,70;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13763,'5_Anniversary_Coin_Box','Coin Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 2709,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13764,'Battle_Manual_Box_TW','Beginner\'s Field Manual 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 7803,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13765,'Certificate_TW_Box','Certificate Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 7804,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13766,'Nagan_Box','Refined Nagan Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13407,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13767,'Skewer_Box','Refined Brocca Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1424,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13768,'Survival_Rod_Box','Refined Survivor\'s Rod Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1628,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13769,'Quadrille_Box','Refined Quadrille Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1537,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13770,'Great_Axe_Box','Refined Great Axe Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1378,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13771,'Bloody_Roar_Box','Refined Bloody Roar Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1273,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13772,'Hardback_Box','Refined Hardcover Book Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1567,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13773,'Fire_Brand_Box','Refined Fireblend Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13408,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13774,'Immaterial_Sword_Box','Refined Immaterial Sword Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13409,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13775,'Unholy_Touch_Box','Refined Unholy Touch Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1274,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13776,'Cloak_Of_Survival_Box','Refined Survivor\'s Manteau Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2535,1209600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13777,'Masquerade_Box','Refined Masquerade Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5326,1209600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13778,'Orc_Hero_Helm_Box','Refined Helmet of Orc Hero Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5327,1209600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13779,'Evil_Wing_Ears_Box','Refined Wing of Diablo Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5328,1209600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13780,'Dark_Blindfold_Box','Refined Dark Blinder Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5329,1209600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13781,'kRO_Drooping_Kitty_Box','Refined Drooping Cat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5330,1209600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13782,'Corsair_Box','Refined Corsair Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5331,1209600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13783,'Bloody_Iron_Ball_Box','Refined Bloodied Shackle Ball Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2710,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13784,'Spiritual_Ring_Box','Refined Spiritual Ring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2711,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13785,'Nagan_Box1','Refined Nagan Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13407,86400;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13786,'Skewer_Box1','Refined Brocca Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1424,86400;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13787,'Survival_Rod_Box1','Refined Survivor\'s Rod Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1628,86400;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13788,'Quadrille_Box1','Refined Quadrille Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1537,86400;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13789,'Great_Axe_Box1','Refined Great Axe Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1378,86400;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13790,'Bloody_Roar_Box1','Refined Bloody Roar Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1273,86400;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13791,'Hardback_Box1','Refined Hardcover Book Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1567,86400;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13792,'Fire_Brand_Box1','Refined Fireblend Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13408,86400;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13793,'Immaterial_Sword_Box1','Refined Immaterial Sword Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13409,86400;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13794,'Unholy_Touch_Box1','Refined Unholy Touch Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1274,86400;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13795,'Cloak_Of_Survival_Box1','Refined Survivor\'s Manteau Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2535,86400;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13796,'Masquerade_Box1','Refined Masquerade Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5326,86400;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13797,'Orc_Hero_Helm_Box1','Refined Helmet of Orc Hero Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5327,86400;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13798,'Evil_Wing_Ears_Box1','Refined Wing of Diablo Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5328,86400;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13799,'Dark_Blindfold_Box1','Refined Dark Blinder Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5329,86400;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13800,'kRO_Drooping_Kitty_Box1','Refined Drooping Cat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5330,86400;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13801,'Corsair_Box1','Refined Corsair Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5331,86400;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13802,'Bloody_Iron_Ball_Box1','Refined Bloodied Shackle Ball Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2710,86400;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13803,'Spiritual_Ring_Box1','Refined Spiritual Ring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2711,86400;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13804,'Fire_Cracker_Love_Box','I Love You Firecracker Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14546,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13805,'Fire_Cracker_Wday_Box','Whiteday Firecracker Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14547,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13806,'Fire_Cracker_Vday_Box','Valentine\'s Day Firecracker Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14548,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13807,'Fire_Cracker_Bday_Box','Birthday Firecracker Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14549,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13808,'Fire_Cracker_Xmas_Box','Xmas Firecracker Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14550,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13809,'Blue_Gemstone_Box','Blue Gemstone Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 717,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13810,'Blue_Potion_Box','Blue Potion Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 11502,25;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13811,'Food_Box_Lv1','Food Box Vol 1',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14551,1; getitem 14554,1; getitem 14557,1; getitem 14560,1; getitem 14563,1; getitem 14566,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13812,'Food_Box_Lv2','Food Box Vol 2',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14552,1; getitem 14555,1; getitem 14558,1; getitem 14561,1; getitem 14564,1; getitem 14567,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13813,'Food_Box_Lv3','Food Box Vol 3',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14553,1; getitem 14556,1; getitem 14559,1; getitem 14562,1; getitem 14565,1; getitem 14568,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13814,'Indonesia_Box','Healing Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13815,'Knife_Goblin_Box','Knife Goblin Taming Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14569,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13816,'Flail_Goblin_Box','Flail Goblin Taming Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14570,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13817,'Hammer_Goblin_Box','Hammer Goblin Taming Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14571,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13818,'Red_Deleter_Box','Red Deleter Taming Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14572,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13819,'Diabolic_Box','Diabolic Taming Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14573,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13820,'Wanderer_Box','Wanderer Taming Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14574,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13821,'Green_Apple_Box','Green Apple Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 7821,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13822,'Whole_Barbecue_Box','Barbeque Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 7822,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13823,'Meat_Veg_Skewer_Box','Meat Skewer Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 7823,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13824,'Spirit_Liquor_Box','Spirit Liquor Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 7824,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13825,'Green_Box_','Old Green Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13826,'Power_Box1','Power Box 1',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 682,1; getitem 12123,1; getitem 12122,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13827,'Power_Box2','Power Box 2',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 683,1; getitem 12123,1; getitem 12122,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13828,'Resist_Box1','Resist Box 1',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12118,1; getitem 12119,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13829,'Resist_Box2','Resist Box 2',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12120,1; getitem 12121,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13830,'Stat_Boost1','Stat Boost 1',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INCSTR,60000,5; sc_start SC_INCAGI,60000,5; sc_start SC_INCVIT,60000,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13831,'Stat_Boost2','Stat Boost 2',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INCINT,60000,5; sc_start SC_INCLUK,60000,5; sc_start SC_INCDEX,60000,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13832,'Stat_Boost3','Stat Boost 3',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INCAGI,60000,5; sc_start SC_INCVIT,60000,5; sc_start SC_INCDEX,60000,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13833,'Stat_Boost4','Stat Boost 4',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INCINT,60000,5; sc_start SC_INCVIT,60000,5; sc_start SC_INCDEX,60000,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13834,'Dun_Tele_Scroll2_Box5','Dungeon Teleport Scroll II 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14581,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13835,'Dun_Tele_Scroll2_Box10','Dungeon Teleport Scroll II 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14581,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13836,'Mbl_Str_Dish_Box','Steamed Tongue Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12250,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13837,'Mbl_Agi_Dish_Box','Steamed Desert Scorpions Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12251,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13838,'Mbl_Int_Dish_Box','Dragon Breath Cocktail Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12252,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13839,'Mbl_Dex_Dish_Box','Hwergelmir\'s Tonic Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12253,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13840,'Mbl_Luk_Dish_Box','Cooked Nine Tail Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12254,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13841,'Mbl_Vit_Dish_Box','Immortal Stew Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12255,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13842,'Mbl_Kafra_Card_Box','Payment Statement for Kafra Employee Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12249,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13843,'Mbl_Battle_Manual_Box','Field Manual Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14532,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13844,'Heroic_Stone_Box','Heroic Stone Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 7825,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13845,'Mysterious_Travel_Sack1','Mystery Travel Sack A',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13846,'Mysterious_Travel_Sack2','Mystery Travel Sack B',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13847,'Mysterious_Travel_Sack3','Mystery Travel Sack C',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13848,'Mysterious_Travel_Sack4','Mystery Travel Sack D',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13849,'WOB_Box_Rune5','Yellow Butterfly Wing 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14582,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13850,'WOB_Box_Rune10','Yellow Butterfly Wing Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14582,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13851,'WOB_Box_Schawaltz5','Green Butterfly Wing 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14583,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13852,'WOB_Box_Schawaltz10','Green Butterfly Wing Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14583,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13853,'WOB_Box_Rachel5','Red Butterfly Wing 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14584,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13854,'WOB_Box_Rachel10','Red Butterfly Wing Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14584,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13855,'WOB_Box_Local5','Blue Butterfly Wing 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14585,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13856,'WOB_Box_Local10','Blue Butterfly Wing Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14585,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13857,'Spark_Candy_Box5','Candy 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14586,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13858,'Spark_Candy_Box10','Candy 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14586,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13859,'Directive_A_Envelope','Directive Envelope A',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 2734,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13860,'Directive_B_Envelope','Directive Envelope B',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 2735,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13861,'Mini_Battle_Manual_Box','Small Field Manual Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12208,4;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13862,'Trial_Box','Trial Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12208,2; getitem 12215,15; getitem 12216,15;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13863,'Repair_Scroll_Box10','Repair Weapon Scroll 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14521,10; getitem 1002,10; getitem 998,10; getitem 756,10; getitem 999,10;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (13864,'Hockey_Mask_Box','Hockey Mask Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5314,604800;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (13865,'Observer_Box','Observer Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5315,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13866,'Flying_Angel_Box','Flying Angel Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5210,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13867,'Neko_Mimi_Box','Neko Mimi Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5099,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13868,'MFH_Box','Moonlight Flower Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5214,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13869,'Chick_Hat_Box','Baby Chick Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5283,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13870,'New_Style_Box','Beauty Gift Certificate Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 7622,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13871,'Magician_Card_Box','Mage Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 4327,1; getitem 4309,1; getitem 4325,1; getitem 4208,1; getitem 4258,1; getitem 4191,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13872,'Acolyte_Card_Box','Acolyte Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 4185,1; getitem 4312,1; getitem 4217,1; getitem 4280,1; getitem 4293,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13873,'Archer_Card_Box','Archer Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 4297,1; getitem 4234,1; getitem 4199,1; getitem 4178,1; getitem 4252,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13874,'Swordman_Card_Box','Swordman Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 4319,1; getitem 4331,1; getitem 4220,1; getitem 4311,1; getitem 4246,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13875,'Thief_Card_Box','Thief Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 4230,1; getitem 4210,1; getitem 4257,1; getitem 4172,1; getitem 4272,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13876,'Merchant_Card_Box','Merchant Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 4206,1; getitem 4281,1; getitem 4186,1; getitem 4233,1; getitem 4321,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13877,'Clock_Tower_Card_Box','Clock Tower Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 4244,1; getitem 4299,1; getitem 4313,1; getitem 4229,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13878,'Geffenia_Card_Box','Geffenia Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 4218,1; getitem 4269,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13879,'Owl_Card_Box','Owl Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 4237,1; getitem 4238,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13880,'Ghost_Card_Box','Ghost Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 4193,1; getitem 4294,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13881,'Nightmare_Card_Box','Nightmare Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 4127,1; getitem 4166,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13882,'Curse_Card_Box','Curse Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 4076,4;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13883,'Sleep_Card_Box','Sleep Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 4024,4;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13884,'Freeze_Card_Box','Freeze Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 4055,4;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13885,'Stun_Card_Box','Stun Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 4017,4;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13886,'Silence_Card_Box','Silence Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 4057,4;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13887,'Blind_Card_Box','Blind Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 4020,4;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13888,'Chaos_Card_Box','Chaos Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 4104,4;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13889,'Elunium_Box_','Elunium Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 985,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13890,'Oridecon_Box_','Oridecon Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 984,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13891,'Fire_Converter_Box','Fire Converter Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12114,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13892,'Water_Converter_Box','Water Converter Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12115,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13893,'Wind_Converter_Box','Wind Converter Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12117,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13894,'Earth_Converter_Box','Earth Converter Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12116,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13895,'Starter_Pack','Starter Pack',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 7229,2; getitem 569,300; getitem 504,20; getitem 505,20; getitem 7060,30; getitem 2403,1; getitem 5039,1; getitem 2503,1; getitem 2307,1; getitem 616,1; getitem 603,1; getitem 617,1; getitem 610,5; getitem 604,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13896,'Mimic_Summon_Box5','Mimic Summoning 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12276,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13897,'Disguise_Summon_Box5','Disguise Summoning 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12277,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13898,'Alice_Summon_Box5','Alice Summoning 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12278,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13899,'Mimic_Summon_Box10','Mimic Summoning 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12276,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13900,'Disguise_Summon_Box10','Disguise Summoning 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12277,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13901,'Alice_Summon_Box10','Alice Summoning 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12278,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13902,'Fish_Head_Hat_Box','Fish Head Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5380,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13903,'Santa_Poring_Hat_Box','Santa Poring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5381,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13904,'Bell_Ribbon_Box','Bell Ribbon Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5382,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13905,'Hard_Core_Set_Box','XM Hardcore Set Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12208,10; getitem 12209,10; getitem 12210,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13906,'Kitty_Set_Box','XM Kitty Set Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5230,1; getitem 5231,1; getitem 5232,1; getitem 5233,1; getitem 5234,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13907,'Soft_Core_Set_Box','XM Softcore Set Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12208,5; getitem 12209,5; getitem 12210,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13908,'Deviruchi_Set_Box','XM Deviruchi Set Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5227,1; getitem 5228,1; getitem 5229,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13909,'MVP_Hunt_Box','MVP Hunting Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 7621,1; getitem 12210,1; getitem 12221,1; getitem 12214,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13910,'Brewing_Box','XM Brewing Set Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12204,10; getitem 12205,10; getitem 12206,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13911,'Xmas_Pet_Scroll','Christmas Pet Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13912,'Party_Blessing_Box','Party Blessing 10 Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14588,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13913,'Party_Inc_Agi_Box','Party Increase Agi 10 Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14589,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13914,'Party_Assumptio_Box','Party Assumptio 5 Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14590,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13915,'Love_Angel_Box','Love Angel Magic Powder Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12287,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13916,'Squirrel_Box','Squirrel Magic Powder Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12288,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13917,'Gogo_Box','Gogo Magic Powder Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12289,604800;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (13918,'Drooping_W_Kitty_Box','Koneko Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5372,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (13919,'L_Magestic_Goat_Box','Baphomet Horns Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5374,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (13920,'Satanic_Chain_P_Box','Flying Evil Wing Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5376,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (13921,'Antique_Pipe_Box','Gentleman\'s Pipe Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5377,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (13922,'Rabbit_Ear_Hat_Box','Bunny Top Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5378,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (13923,'Darkness_Helm_Box','Dark Randgris Helm Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5373,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (13924,'L_Orc_Hero_Helm_Box','Orc Hero Headdress Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5375,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (13925,'Year_Of_Mouse_Scroll','... GoodLuck Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13926,'Crusader_Card_Box','Crusader Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 4371,1; getitem 4311,1; getitem 4319,1; getitem 4331,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13927,'Alchemist_Card_Box','Alchemist Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 4281,1; getitem 4233,1; getitem 4343,1; getitem 4186,1; getitem 4036,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13928,'Rogue_Card_Box','Rogue Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 4039,1; getitem 4210,1; getitem 4257,1; getitem 4230,1; getitem 4348,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13929,'Bard_Dancer_Card_Box','Bard Dancer Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 4297,1; getitem 4234,1; getitem 4178,1; getitem 4381,1; getitem 4252,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13930,'Sage_Card_Box','Sage card box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 4382,1; getitem 4258,1; getitem 4325,1; getitem 4208,1; getitem 4327,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13931,'Monk_Card_Box','Monk Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 4312,1; getitem 4332,1; getitem 4185,1; getitem 4293,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13932,'Sylph_Box','Sylph Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 4345,4;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13933,'Undine_Box','Undine Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 4350,4;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13934,'Salamander_Box','Salamander Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 4380,4;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13935,'Soul_Box','Soul Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 4388,4;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13936,'Noum_Bpx','Gnome Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 4335,4;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13937,'Robo_Eye_Box','Robo Eye Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5325,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13938,'Twin_Ribbon_Box','Maiden\'s Twin Ribbon Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5187,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (13939,'Diadem_Box','Diadem Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5313,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13940,'Siege_Tele_Scroll_Box','WoE Teleport Scroll 100 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14591,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13941,'Valentine_Scroll_TW','Taiwan Valentine Scroll',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13942,'Love_Angel_Box_1m','Love Angel Magic Powder Box 30 Days',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14009,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13943,'Squirrel_Box_1m','Squirrel Magic Powder Box 30 Days',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14010,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13944,'Gogo_Box_1m','Gogo Magic Powder Box 30 Days',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14011,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13945,'Br_SwordPackage','Brazil Swordsman Package',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 2317,1; getitem 2106,1; getitem 2406,1; getitem 2506,1; getitem 4003,1; getitem 4133,1; getitem 2607,2; getitem 2229,1; getitem 2266,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13946,'Br_MagePackage','Brazil Magician Package',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 2322,1; getitem 2102,1; getitem 2104,1; getitem 2504,1; getitem 4003,1; getitem 4077,1; getitem 2607,2; getitem 5027,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13947,'Br_AcolPackage','Brazil Acolyte Package',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 2326,1; getitem 2104,1; getitem 2404,1; getitem 2504,1; getitem 4003,1; getitem 4100,1; getitem 2607,2; getitem 2217,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13948,'Br_ArcherPackage','Brazil Archer package',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 2331,1; getitem 1716,1; getitem 2406,1; getitem 2504,1; getitem 4064,1; getitem 4102,1; getitem 2607,2; getitem 2285,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13949,'Br_MerPackage','Brazil Merchant Package',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 2315,1; getitem 2104,1; getitem 2406,1; getitem 2506,1; getitem 4003,1; getitem 4133,1; getitem 2607,2; getitem 5021,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13950,'Br_ThiefPackage','Brazil Thief Package',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 2336,1; getitem 2104,1; getitem 2406,1; getitem 2506,1; getitem 4097,1; getitem 4102,1; getitem 2607,2; getitem 2274,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13951,'Wasteland_Outlaw_Box','Western Outlaw Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13109,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13952,'Lever_Action_Rifle_Box','Lever Action Rifle Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13170,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13953,'All_In_One_Ring_Box','All In One Ring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2741,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13954,'Spiritual_Tunic_Box','Spiritual Tunic Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2384,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13955,'Recuperative_Armor_Box','Recuvative Armor Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2385,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13956,'Shelter_Resistance_Box','Shell Of Resistance Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2132,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13957,'Sylphid_Manteau_Box','Silf Manteau Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2543,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13958,'Refresh_Shoes_Box','Refresh Shoes Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2439,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13959,'Toast_Box','Crunch Toast Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5391,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13960,'Name_Change_Coupon_Box','Identification Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 7623,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13961,'Mojji_Box','Mochi Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 554,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13962,'Deprotai_Doll_Hat_Box','Defolty Doll Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5340,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13963,'Claris_Doll_Hat_Box','Glaris Doll Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5341,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13964,'Sorin_Doll_Hat_Box','Sorin Doll Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5342,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13965,'Tayelin_Doll_Hat_Box','Tailring Doll Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5343,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13966,'Binit_Doll_Hat_Box','Vinit Doll Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5344,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13967,'Debril_Doll_Hat_Box','W Doll Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5345,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (13968,'Bubblegum_Lower_Box','Bubble Gum Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5394,86400;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (13969,'Lucky_Clip_Box','Lucky Clip Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2742,86400;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13970,'Iron_10_Box','Iron Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 998,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13971,'Steel_10_Box','Steel Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 999,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13972,'Coal_10_Box','Coal Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 1003,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13973,'Poison_Bottle_30_Box','Poison Bottle Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 678,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13974,'TW_Scroll01','Fisherman Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (13975,'Picture_Diary_Box','Diary Magic Powder Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12304,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13976,'Mini_Heart_Box','Mini Heart Magic Powder Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12305,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13977,'Newcomer_Box','Freshman Magic Powder Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12306,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13978,'Kid_Box','Kid Magic Powder Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12307,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13979,'Magic_Castle_Box','Magic Magic Powder Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12308,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13980,'Bulging_Head_Box','JJangu Magic Powder Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12309,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13981,'Picture_Diary_Box_1m','Diary Magic Powder Box 30 Days',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12304,2592000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13982,'Mini_Heart_Box_1m','Mini Heart Magic Powder Box 30 Days',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12305,2592000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13983,'Newcomer_Box_1m','Freshman Magic Powder Box 30 Days',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12306,2592000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13984,'Kid_Box_1m','Kid Magic Powder Box 30 Days',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12307,2592000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13985,'Magic_Castle_Box_1m','Magic Magic Powder Box 30 Days',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12308,2592000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13986,'Bulging_Head_Box_1m','JJangu Magic Powder Box 30 Days',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12309,2592000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13987,'Ori_Stone_5_Box','Rough Oridecon 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 756,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13988,'Ori_Stone_50_Box','Rough Oridecon 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 756,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13989,'Acidbomb_10_Box','Acid Bomb 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 7135,10; getitem 7136,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13990,'Job_Manual50_Box','JOB Battle Manual Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14592,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13991,'Tiger_Mask_Box','Tiger Mask Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5098,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13992,'Cat_Hat_Box','Pussy Cat Bell Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5099,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13993,'Alice_Doll_Box','Alice Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5137,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13994,'Speed_Up_Potion_Box5','Speed Potion 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12016,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13995,'Speed_Up_Potion_Box10','Speed Potion 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12016,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13996,'Big_Bun_Box100','Big Bun 100 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14522,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13997,'Big_Bun_Box500','Big Bun 500 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14522,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13998,'Giant_Fly_Wing_Box500','Giant Fly Wing 500 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12212,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (13999,'Pill__Box100','Pill 100 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14523,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14000,'Pill__Box500','Pill 500 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14523,500;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14001,'Basic_Siege_Supply_Box','Recruit Siege Supply Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 11503,25; getitem 11504,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14002,'Adv_Siege_Supply_Box','Veteran Siege Supply Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 11503,50; getitem 11504,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14003,'Elite_Siege_Supply_Box','Elite Siege Supply Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 11503,100; getitem 11504,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14004,'Poison_Bottle_10_Box','Poison Bottle 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 678,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14005,'Poison_Bottle_5_Box','Poison Bottle 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 678,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14006,'F_Drooping_W_Kitty_Box','Evolved Drooping Cat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5372,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14007,'F_Rabbit_Ear_Hat_Box','Evolved Rabbits Headband Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5378,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14008,'F_L_Orc_Hero_Helm_Box','Evolved Helmet Of Orc Hero Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5375,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14009,'F_Love_Angel_Box','Love Angel Magic Powder Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12287,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14010,'F_Squirrel_Box','Squillroll Magic Powder Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12288,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14011,'F_Gogo_Box','Gogo Magic Powder Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12289,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14012,'F_Love_Angel_Box_1m','Love Angel Magic Powder Box 30 Days',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13915,2592000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14013,'F_Squirrel_Box_1m','Squillroll Magic Powder Box 30 Days',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13916,2592000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14014,'F_Gogo_Box_1m','Gogo Magic Powder Box 30 Days',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13917,2592000;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14015,'F_Wasteland_Outlaw_Box','Western Outlaw Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13107,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14016,'F_Lever_Action_Rifle_Box','Lever Action Rifle Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13170,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14017,'F_All_In_One_Ring_Box','All In One Ring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2741,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14018,'F_Spritual_Tunic_Box','Spiritual Tunic Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2384,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14019,'F_Recuperative_Box','Recuvative Armor Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2385,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14020,'F_Shelter_Resist_Box','Shell Of Resistance Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2132,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14021,'F_Sylphid_Manteau_Box','Silf Manteau Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2543,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14022,'F_Refresh_Shoes_Box','Refresh Shoes Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2439,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14023,'F_Toast_Box','Crunch Toast Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5391,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14024,'F_Robo_Eye_Box','Robo Eye Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5325,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14025,'F_Twin_Ribbon_Box','Maiden\'s Twin Ribbon Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5187,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (14026,'F_Diadem_Box','Diadem Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5313,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14027,'F_Fish_Head_Hat_Box','Fish Head Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5380,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14028,'F_Santa_Poring_Hat_Box','SantaPoring Cap Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5381,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14029,'F_Bell_Ribbon_Box','Bell Ribbon Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5382,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14030,'F_Mimic_Scroll_Box5','Mimic Summoning 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12276,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14031,'F_Disguise_Scroll_Box5','Disguise Summoning 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12277,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14032,'F_Alice_Scroll_Box5','Alice Summoning 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12278,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14033,'F_Mimic_Scroll_Box10','Mimic Summoning 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12276,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14034,'F_Disguise_Scroll_Box10','Disguise Summoning 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12277,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14035,'F_Alice_Scroll_Box10','Alice Summoning 10 Box)',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12278,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14036,'F_New_Style_Coupon_Box','New Style Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 7622,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14037,'F_Repair_Scroll_Box','Repair Weapon Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14521,5; getitem 1002,5; getitem 998,5; getitem 756,5; getitem 999,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14038,'F_Repair_Scroll_Box10','Repair Weapon Scroll 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14521,10; getitem 1002,10; getitem 998,10; getitem 756,10; getitem 999,10;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (14039,'F_Hockey_Mask_Box','Hockey Mask Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5314,604800;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (14040,'F_Observer_Box','Observer Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5315,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14041,'F_WOB_Rune_Box5','Yellow Butterfly Wing 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14582,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14042,'F_WOB_Rune_Box10','Yellow Butterfly Wing Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14582,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14043,'F_WOB_Schwaltz_Box5','Green Butterfly Wing 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14583,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14044,'F_WOB_Schwaltz_Box10','Green Butterfly Wing Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14583,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14045,'F_WOB_Rachel_Box5','Red Butterfly Wing 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14584,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14046,'F_WOB_Rachel_Box10','Red Butterfly Wing Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14584,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14047,'F_WOB_Local_Box5','Blue Butterfly Wing 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14585,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14048,'F_WOB_Local_Box10','Blue Butterfly Wing Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14585,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14049,'F_Spark_Candy_Box5','Candy 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14586,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14050,'F_Spark_Candy_Box10','Candy 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14586,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14051,'F_Dun_Tel_Scroll2_Box5','Dungeon Teleport Scroll II 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14581,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14052,'F_Dun_Tel_Scroll2_Box10','Dungeon Teleport Scroll II 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14581,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14053,'F_Little_Angel_Doll_Box','Little Angel Doll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5324,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14054,'F_Triple_Poring_Hat_Box','Poring 3 Hats Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5255,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14055,'F_Nagan_Box','Refined Nagan Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13407,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14056,'F_Skewer_Box','Refined Brocca Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1424,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14057,'F_Survival_Rod_Box','Refined Survivor\'s Rod Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1628,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14058,'F_Quadrille_Box','Refined Quadrille Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1537,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14059,'F_Great_Axe_Box','Refined Great Axe Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1378,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14060,'F_Bloody_Roar_Box','Refined Bloody Roar Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1273,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14061,'F_Hardback_Box','Refined Hardcover Book Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1567,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14062,'F_Fire_Brand_Box','Refined Fireblend Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13408,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14063,'F_Immaterial_Sword_Box','Refined Immaterial Sword Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13409,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14064,'F_Unholy_Touch_Box','Refined Unholy Touch Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1274,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14065,'F_Clack_Of_Servival_Box','Refined Survivor\'s Manteau Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2535,1209600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14066,'F_Masquerade_Box','Refined Masquerade Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5326,1209600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14067,'F_Orc_Hero_Helm_Box','Refined Helmet of Orc Hero Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5327,1209600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14068,'F_Ear_Of_Devil_Wing_Box','Refined Wing of Diablo Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5328,1209600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14069,'F_Dark_Blindfold_Box','Refined Dark Blinder Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5329,1209600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14070,'F_K_Drooping_Kitty_Box','Refined Drooping Cat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5330,1209600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14071,'F_Corsair_Box','Refined Corsair Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5331,1209600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14072,'F_Bloody_Iron_Ball_Box','Refined Bloodied Shackle Ball Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2710,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14073,'F_Spiritual_Ring_Box','Refined Spiritual Ring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2711,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14074,'F_G_O_I_Box5','Wine Glass of Illusion 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14538,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14075,'F_G_O_I_Box10','Glass Of Illusion 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14538,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14076,'F_Shadow_Armor_S_Box5','Scroll of Shadow Armor 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14539,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14077,'F_Shadow_Armor_S_Box10','Scroll of Shadow Armor 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14539,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14078,'F_Shadow_Armor_S_Box30','Scroll of Shadow Armor 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14539,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14079,'F_Holy_Armor_S_Box5','Scroll of Holy Armor 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14540,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14080,'F_Holy_Armor_S_Box10','Scroll of Holy Armor 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14540,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14081,'F_Holy_Armor_S_Box30','Scroll of Holy Armor 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14540,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14082,'FS_Def_Potion_Box10','Small Defense Potion 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14541,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14083,'FS_Def_Potion_Box30','Small Physical Defense Potion 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14541,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14084,'FS_Def_Potion_Box50','Small Physical Defense Potion 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14541,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14085,'FB_Def_Potion_Box10','Big Defense Potion 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14542,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14086,'FB_Def_Potion_Box30','Large Physical Defense Potion 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14542,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14087,'FB_Def_Potion_Box50','Large Physical Defense Potion 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14542,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14088,'FS_Mdef_Potion_Box10','Small Magic Defense Potion 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14543,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14089,'FS_Mdef_Potion_Box30','Small Magical Defense Potion 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14543,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14090,'FS_Mdef_Potion_Box50','Small Magical Defense Potion 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14543,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14091,'FB_Mdef_Potion_Box10','Big Magic Defense Potion 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14544,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14092,'FB_Mdef_Potion_Box30','Large Magical Defense Potion 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14544,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14093,'FB_Mdef_Potion_Box50','Large Magical Defense Potion 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14544,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14094,'F_Flying_Angel_Box','Flying Angel Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5210,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14095,'F_Cat_Hat_Box','Neko Mimi Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5099,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14096,'F_M_F_H_Box','Moonlight Flower Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5214,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14097,'F_Chick_Hat_Box','Baby Chick Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5283,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14098,'F_Pecopeco_Hairband_Box','Peco Peco Hairband Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5286,1209600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14099,'F_Red_Glasses_Box','Red Glasses Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5288,1209600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14100,'F_Whisper_Mask_Box','Whisper Mask Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5294,1209600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14101,'F_Ramen_Hat_Box','Ramen Hat Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5293,1209600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14102,'F_Dun_Tele_Scroll1_Box','Dungeon Teleport Scroll 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14527,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14103,'F_Max_Weight_Up_Box','Gym Membership Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 7776,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14104,'F_S_Life_Potion_Box','Small Life Potion 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14534,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14105,'F_S_Life_Potion_Box30','Small Life Potion 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14534,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14106,'F_S_Life_Potion_Box50','Small Life Potion 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14534,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14107,'F_M_Life_Potion_Box','Medium Life Potion 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14535,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14108,'F_M_Life_Potion_Box30','Large Life Potion 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14535,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14109,'F_M_Life_Potion_Box50','Large Life Potion 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14535,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14110,'F_Abrasive_Box5','Abrasive 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14536,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14111,'F_Abrasive_Box10','Abrasive 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14536,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14112,'F_Regeneration_Box5','Regeneration Potion 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14537,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14113,'F_Regeneration_Box10','Regeneration Potion 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14537,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14114,'F_Dun_Tele_Scroll_Box10','Dungeon Teleport Scroll 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14527,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14115,'F_Infiltrator_Box','Refined Infiltrator Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1267,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14116,'F_Muramasa_Box','Refined Muramasa Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1173,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14117,'F_Excalibur_Box','Refined Excalibur Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13401,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14118,'F_Combat_Knife_Box','Combat Knife Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13021,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14119,'F_Counter_Dagger_Box','Counter Dagger Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13022,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14120,'F_Kaiser_Knuckle_Box','Refined Kaiser Knuckle Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1817,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14121,'F_Mighty_Staff_Box','Refined Mighty Staff Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1623,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14122,'F_Right_Epsilon_Box','Light Epsilon Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1372,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14123,'F_Balistar_Box','Refined Ballista Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1728,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14124,'F_Diary_Of_Great_Sage','Sage\'s Diary Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1563,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14125,'F_Asura_Box','Asura Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13023,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14126,'F_Apple_Of_Archer_Box','Apple of Archer Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5265,1209600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14127,'F_Bunny_Band_Box','Bunny Band Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5266,1209600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14128,'F_Sahkkat_Box','Refined Sakkat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5267,1209600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14129,'F_Lord_Circlet_Box','Refined Grand Circlet Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5268,1209600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14130,'F_Elven_Ears_Box','Elven Ears Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2686,1209600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14131,'F_Steel_Flower_Box','Steel Flower Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2687,1209600;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14132,'F_Critical_Ring_Box','Critical Ring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2688,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14133,'F_Earring_Box','Earring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2689,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14134,'F_Ring_Box','Ring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2690,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14135,'F_Necklace_Box','Necklace Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2691,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14136,'F_Glove_Box','Glove Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2692,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14137,'F_Brooch_Box','Brooch Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2693,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14138,'F_Rosary_Box','Rosary Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2694,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14139,'F_Safety_Ring_Box','Safety Ring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2695,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14140,'F_Vesper_Core_Box01','Refined Vesper Core 01 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2696,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14141,'F_Vesper_Core_Box02','Refined Vesper Core 02 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2697,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14142,'F_Vesper_Core_Box03','Refined Vesper Core 03 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2698,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14143,'F_Vesper_Core_Box04','Refined Vesper Core 04 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2699,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14144,'F_Vigorgra_Package1','Vigorgra Box1',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12250,2; getitem 12251,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14145,'F_Vigorgra_Package2','Vigorgra Box2',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12250,2; getitem 12255,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14146,'F_Vigorgra_Package3','Vigorgra Box3',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12252,2; getitem 12253,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14147,'F_Vigorgra_Package4','Vigorgra Box4',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12252,2; getitem 12255,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14148,'F_Vigorgra_Package5','Vigorgra Box5',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12252,2; getitem 12250,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14149,'F_Vigorgra_Package6','Vigorgra Box6',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12250,2; getitem 12251,2; getitem 12208,2; getitem 12215,15; getitem 12217,20; getitem 12211,1; getitem 7621,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14150,'F_Vigorgra_Package7','Vigorgra Box7',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12250,4; getitem 12251,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14151,'F_Vigorgra_Package8','Vigorgra Box8',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12250,4; getitem 12255,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14152,'F_Vigorgra_Package9','Start your Journey Pack',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12252,4; getitem 12253,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14153,'F_Vigorgra_Package10','Siege Mode Pack',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12252,4; getitem 12255,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14154,'F_Vigorgra_Package11','1 Hour Survival Pack',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12252,4; getitem 12250,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14155,'F_Vigorgra_Package12','Weekend Hunting Pack',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12250,4; getitem 12251,4; getitem 12208,4; getitem 12215,30; getitem 12217,40; getitem 12211,2; getitem 7621,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14156,'F_Battle_Manual_Box','Battle Manual Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12208,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14157,'F_Insurance_Package','Insurance Package',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12209,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14158,'F_Bubble_Gum_Box','Bubble Gum Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12210,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14159,'F_Str_Dish_Box','Steamed Tongue Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12202,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14160,'F_Agi_Dish_Box','Steamed Scorpion Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12203,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14161,'F_Int_Dish_Box','Dragon Breath Cocktail Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12204,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14162,'F_Dex_Dish_Box','Hwergelmir\'s Tonic Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12205,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14163,'F_Luk_Dish_Box','Nine Tail Dish Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12206,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14164,'F_Vit_Dish_Box','Stew Of Immortality Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12207,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14165,'F_Kafra_Card_Box','Kafra Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12211,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14166,'F_Giant_Fly_Wing_Box','Giant Fly Wing Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12212,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14167,'F_Neuralizer_Box','Neuralizer Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12213,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14168,'F_Convex_Mirror_Box','Convex Mirror Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12214,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14169,'F_Blessing_10_Scroll_Box','Blessing 10 Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12215,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14170,'F_Inc_Agi_10_Scroll_Box','Increase AGI 10 scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12216,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14171,'F_Aspersio_5_Scroll_Box','Aspersio 5 Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12217,10; getitem 523,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14172,'F_Assumptio_5_Scroll_Box','Assumptio 5 Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12218,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14173,'F_Wind_Walk_10_Scroll_Box','Wind Walk 10 Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12219,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14174,'F_Adrenaline_Scroll_Box','Adrenaline 5 Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12220,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14175,'F_Megaphone_Box','Megaphone 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12221,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14176,'F_Enriched_Elunium_Box','Enriched Elunium Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 7619,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14177,'F_Enriched_Oridecon_Box','Enriched Oridecon Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 7620,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14178,'F_Token_Of_Siegfried_Box','Token of Siegfried Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 7621,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14179,'F_Giant_Fly_Wing_Box50','Giant Fly Wing 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12212,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14180,'F_Giant_Fly_Wing_Box100','Giant Fly Wing 100 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12212,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14181,'F_Dex_Dish_Box30','Hwergelmir\'s Tonic 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12205,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14182,'F_Dex_Dish_Box50','Hwergelmir\'s Tonic 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12205,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14183,'F_Luk_Dish_Box30','Nine Tail Dish 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12206,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14184,'F_Luk_Dish_Box50','Nine Tail Dish 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12206,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14185,'F_Inc_Agi_10_Box30','Increase Agility Scroll 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12216,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14186,'F_Inc_Agi_10_Box50','Increase Agility Scroll 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12216,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14187,'F_Vit_Dish_Box30','Stew of Immortality 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12207,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14188,'F_Vit_Dish_Box50','Stew of Immortality 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12207,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14189,'F_Insurance_Package30','Life Insurrance 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12209,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14190,'F_Insurance_Package50','Life Insurrance 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12209,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14191,'F_Convex_Mirror_Box5','Convex Mirror 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12214,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14192,'F_Convex_Mirror_Box30','Convex Mirror 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12214,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14193,'F_Blessing10_Box30','Blessing Scroll 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12215,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14194,'F_Blessing10_Box50','Lv10 Blessing Scroll Box 50',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12215,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14195,'F_Adrenaline10_Box30','Adrenaline Rush Scroll 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12220,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14196,'F_Adrenaline10_Box50','Adrenaline Rush Scroll 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12220,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14197,'F_Assumptio_5_Box30','Assumptio Scroll 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12218,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14198,'F_Assumptio_5_Box50','Lv5 Assumptio Scroll Box 50',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12218,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14199,'F_Aspersio_5_Box30','Aspersio Scroll 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12217,30; getitem 523,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14200,'F_Aspersio_5_Box50','Aspersio Scroll 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12217,50; getitem 523,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14201,'F_Agi_Dish_Box30','Steamed Scorpion 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12203,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14202,'F_Agi_Dish_Box50','Steamed Scorpion 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12203,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14203,'F_Wind_Walk10_Box30','Wind Walk Scroll 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12219,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14204,'F_Wind_Walk10_Box50','Wind Walk Scroll 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12219,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14205,'F_Int_Dish_Box30','Dragon Breath Cocktail 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12204,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14206,'F_Int_Dish_Box50','Dragon Breath Cocktail 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12204,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14207,'F_Battle_Manual_Box1','Field Manual Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12208,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14208,'F_Battle_Manual_Box5','Battle Manual 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12208,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14209,'F_Siegfried_Box5','Token of Siegfried 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 7621,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14210,'F_Siegfried_Box20','Token of Siegfried 20 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 7621,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14211,'F_Kafra_Card_Box30','Kafra Card 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12211,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14212,'F_Kafra_Card_Box50','Kafra Card 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12211,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14213,'F_Str_Dish_Box30','Steamed Tongue 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12202,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14214,'F_Str_Dish_Box50','Steamed Tongue 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12202,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14215,'F_Bubble_Gum_Box1','Bubble Gum Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12210,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14216,'F_Bubble_Gum_Box5','Bubble Gum 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12210,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14217,'F_Megaphone_Box1','Megaphone Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12221,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14218,'F_Megaphone_Box5','Megaphone 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12221,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14219,'F_Enriched_Elunium_Box5','Enriched Elunium 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 7619,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14220,'F_Enriched_Oridecon_Box5','Enriched Oridecon 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 7620,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14221,'MP_Scroll_Box','Mystical Amplification Scroll 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14593,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14222,'MP_Scroll_Box30','Mystical Amplification Scroll 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14593,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14223,'MP_Scroll_Box50','Mystical Amplification Scroll 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14593,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14224,'Quagmire_Scroll_Box','Quagmire Scroll 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14594,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14225,'Quagmire_Scroll_Box30','Quagmire Scroll 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14594,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14226,'Quagmire_Scroll_Box50','Quagmire Scroll 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14594,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14227,'Healing_Staff_Box','Healing Staff Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1638,604800;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (14228,'Praxinus_Box','Praccsinos Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2752,604800;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (14229,'Cherry_Blossom_Scroll','Cherry Blossom Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#REPLACE INTO `item_db` VALUES (14230,'Note_Headphones_Box','Note Headphones Box',18,NULL,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5151,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (14231,'Novice_Breastplate_Boxes','Novice Breastplate Boxes',18,NULL,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (14232,'Yggdrasilberry_Box_','Yggdrasil Berry 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 607,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14233,'Dead_Tree_Branch_Box1','Dead Branch 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 604,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14234,'Dead_Tree_Branch_Box2','Dead Branch 25 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 604,25;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14235,'Field_Manual_Box_2','Field Manual 2 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12208,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14236,'Steamed_Tongue_Box_20','Steamed Tongue 20 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12202,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14237,'Steamed_Desert_Scorpions_Box_20','Steamed Desert Scorpions Box(20)',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12203,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14238,'Stew_Of_Immortality_Box_20','Immortal Stew 20 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12207,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14239,'Dragon_Breath_Cocktail_Box_20','Dragon Breath Cocktail 20 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12204,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14240,'Hwergelmir\'s_Tonic_Box_20','Hwergelmir\'s Tonic 20 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12205,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14241,'Nine_Tail_Dish_Box_20','Nine Tail Dish 20 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12206,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14242,'Beholder_Ring_Box','Beholder Ring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 2753,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14243,'Hallow_Ring_Box','Hallow Ring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 2754,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14244,'Clamorous_Ring_Box','Clamorous Ring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 2755,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14245,'Chemical_Ring_Box','Chemical Ring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 2756,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14246,'Insecticide_Ring_Box','Insecticide Ring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 2757,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14247,'Fisher_Ring_Box','Fisher Ring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 2758,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14248,'Decussate_Ring_Box','Decussate Ring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 2759,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14249,'Bloody_Ring_Box','Bloody Ring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 2760,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14250,'Satanic_Ring_Box','Satanic Ring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 2761,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14251,'Dragoon_Ring_Box','Dragon Ring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 2762,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14252,'Beholder_Ring_Box2','Beholder Ring Box II',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 2753,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14253,'Hallow_Ring_Box2','Hallow Ring Box II',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 2754,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14254,'Clamorous_Ring_Box2','Clamorous Ring Box II',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 2755,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14255,'Chemical_Ring_Box2','Chemical Ring Box II',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 2756,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14256,'Insecticide_Ring_Box2','Insecticide Ring Box II',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 2757,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14257,'Fisher_Ring_Box2','Fisher Ring Box II',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 2758,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14258,'Decussate_Ring_Box2','Decussate Ring Box II',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 2759,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14259,'Bloody_Ring_Box2','Bloody Ring Box II',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 2760,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14260,'Satanic_Ring_Box2','Satanic Ring Box II',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 2761,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14261,'Dragoon_Ring_Box2','Dragon Ring Box II',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 2762,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14262,'Diary_Magic_Powder_Box','Diary Magic Powder Box',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12304,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14263,'Mini_Heart_Magic_Powder_Box','Mini Heart Magic Powder Box',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12305,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14264,'Freshman_Magic_Powder_Box','Freshman Magic Powder Box',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12306,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14265,'Kid_Magic_Powder_Box','Kid Magic Powder Box',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12307,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14266,'Magic_Magic_Powder_Box','Magic Magic Powder Box',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12308,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14267,'JJangu_Magic_Powder_Box','JJangu Magic Powder Box',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12309,604800;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14268,'Diary_Magic_Powder_Box4','Diary Magic Powder Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (14269,'Mini_Heart_Magic_Powder_Box4','Mini_Heart_Magic Powder Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (14270,'Freshman_Magic_Powder_Box4','Freshman Magic Powder Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (14271,'Kid_Magic_Powder_Box4','Kid Magic Powder Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (14272,'Magic_Magic_Powder_Box4','Magic Magic Powder Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (14273,'JJangu_Magic_Powder_Box4','JJangu Magic Powder Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (14274,'Amplification_10_Scroll_Box2','Mystical Amplification Scroll 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14593,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14275,'Amplification_30_Scroll_Box2','Mystical Amplification Scroll 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14593,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14276,'Amplification_50_Scroll_Box2','Mystical Amplification Scroll 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14593,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14277,'Quagmire_10_Scroll_Box2','Quagmire Scroll 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14594,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14278,'Quagmire_30_Scroll_Box2','Quagmire Scroll 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14594,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14279,'Quagmire_50_Scroll_Box2','Quagmire Scroll 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14594,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14280,'Healing_Staff_Box2','Healing Staff Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 1638,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (14281,'Praccsinos_Box','Praccsinos_Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 2752,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14282,'Emperium_Box','Emperium Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 714,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14283,'Marriage_Certificate_Box','Written Oath Of Marriage Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 6026,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (14284,'Muffler_Box','Muffler Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 2548,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (14285,'Balkiriah_Shield_Box','Balkiriah Shield Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 2137,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (14286,'Skull_Ring_Box','Skull Ring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 2763,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14287,'Baricade_Repair_Kit','Barricade Repair Kit',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 1019,30; getitem 999,10; getitem 1011,10; getitem 984,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14288,'Guardian_Stone_Repair_Kit','Guardian Stone Repair Kit',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 984,1; getitem 985,1; getitem 7049,30; getitem 717,5; getitem 716,5; getitem 715,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14289,'Cloth_Dye_Coupon_Box','New Clothing Dye Coupon Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 6046,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14290,'Cloth_Dye_Coupon2_Box','Original Clothing Dye Coupon Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 6047,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14291,'Cloth_Dye_Coupon3_Box','Clothing Dye Coupon Box',2,NULL,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 6046,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14292,'Cloth_Dye_Coupon4_Box','Clothing Dye Coupon Box II',2,NULL,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 6047,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (14293,'Mercenary_Contract_Box','Mercenary Contract Box',2,NULL,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 6050,1;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (14294,'Mercenary_Contract_Box5','Mercenary Contract Box 5ea',2,NULL,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 6050,5;',NULL,NULL); -#REPLACE INTO `item_db` VALUES (14295,'Mercenary_Contract_Box10','Mercenary Contract Box 10ea',2,NULL,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 6050,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14296,'Angel_Scroll','Angel Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (14297,'Devil_Scroll','Devil Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (14300,'Mask_Of_Ifrit_Box','Mask Of Ifrit Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5420,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14301,'Ifrit\'s_Ear_Box','Ears Of Ifrit Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5421,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14304,'Scuba_Mask_Box','Scuba Mask Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5397,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14314,'Phreeoni_Scroll_Box','Phreeoni Scroll Box',2,NULL,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14597,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14315,'GhostringS_Box','Ghostring Scroll Box',2,NULL,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14598,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14316,'July7_Scroll','July7 Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (14317,'Bacsojin_Scroll','Bacsojin Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (14343,'Spiked_Scarf_Box','Spiked Scarf Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5462,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14344,'Rainbow_Scarf_Box','Rainbow Scarf Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5463,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14345,'Animal_Scroll','Animal Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (14349,'Mental_Potion20_Box','Mental Potion 20 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14600,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14350,'Mental_Potion50_Box','Mental Potion 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14600,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14351,'Tyr\'s_Blessing20_Box','Tyr\'s Blessing 20 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14601,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14352,'Tyr\'s_Blessing50_Box','Tyr\'s Blessing 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 14601,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14363,'Heart_Scroll','Heart Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (14375,'Holy_Celestial_Axe_Box','Celestial Axe Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 1383,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14376,'Angeling_Pot_Box','Angeling Potion Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12350,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14377,'Shout_Megaphone_Box','Scream Megaphone Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12351,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14380,'Anubis_Helm_Box','Anubis Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5490,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14393,'Almighty_Charm_Box','Universal Amulet Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 7945,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14408,'New_Year_Scroll','New Year Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (14440,'Dice_Hat_Box','Dice Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5496,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14441,'King_Tiger_Doll_Hat_Box','King Tiger Doll Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5497,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14447,'Pirate\'s_Pride_Box','Pirate\'s Pride Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5501,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14448,'Necromencer\'s_Hood_Box','Necromancer\'s Hood Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5502,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14459,'Rabbit_Magic_Hat_Box','Magic Rabbit Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5503,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14460,'China_Wedding_Veil_Box','RO 5th Wedding Anniversary Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5504,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14461,'Asara_Fairy_Hat_Box','Ashura Fairy Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5505,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14466,'Valentine_Pledge_Box','Valentine\'s Emblem Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (14469,'Ox_Tail_Scroll','Ox Tail Egg',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (14500,'Insurance60','Life Insurrance Certificate',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_LIFEINSURANCE,3600000,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14508,'Zeny_Scroll','Zeny Pet Egg Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (14509,'Light_Center_Pot','Light Concentration Potion',2,800,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_ASPDPOTION0,1800000,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14510,'Light_Awakening_Pot','Light Awakening Potion',2,1500,NULL,20,NULL,NULL,NULL,NULL,0xFFF7FEEF,7,2,NULL,NULL,40,NULL,NULL,'sc_start SC_ASPDPOTION1,1800000,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14511,'Light_Berserk_Pot','Light Berserk Potion',2,3000,NULL,20,NULL,NULL,NULL,NULL,0x01E646A6,7,2,NULL,NULL,85,NULL,NULL,'sc_start SC_ASPDPOTION2,1800000,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14512,'Meteor_10_Scroll','Meteor Storm Scroll',11,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "WZ_METEOR",10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14513,'Storm_10_Scroll','Storm Gust Scroll',11,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "WZ_STORMGUST",10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14514,'Vermilion_10_Scroll','Lord of Vermilion Scroll',11,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "WZ_VERMILION",10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14515,'Lex_Aeterna_Scroll','Lex Aeterna Scroll',11,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "PR_LEXAETERNA",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14516,'Magnificat_5_Scroll','Magnificat Scroll',11,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "PR_MAGNIFICAT",5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14517,'CP_Helm_Scroll','Chemical Protection Helm Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'unitskilluseid getcharid(3),"AM_CP_HELM",5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14518,'CP_Shield_Scroll','Chemical Protection Shield Scrol',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'unitskilluseid getcharid(3),"AM_CP_SHIELD",5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14519,'CP_Armor_Scroll','Chemical Protection Armor Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'unitskilluseid getcharid(3),"AM_CP_ARMOR",5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14520,'CP_Weapon_Scroll','Chemical Protection Weapon Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'unitskilluseid getcharid(3),"AM_CP_WEAPON",5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14521,'Repair_Scroll','Repair Weapon Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'unitskilluseid getcharid(3),"BS_REPAIRWEAPON",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14522,'Big_Bun','Big Bun',0,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal 100,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14523,'Pill_','Pill',0,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal 0,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14524,'Superb_Fish_Slice','Superb Fish Slice',0,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal 100,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14525,'Chewy_Ricecake','Chewy Ricecake',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_ATKPOTION,1800000,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14526,'Oriental_Pastry','Oriental Pastry',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_MATKPOTION,1800000,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14527,'Dun_Tele_Scroll1','Dungeon Teleport Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashDungeon",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14528,'PVP_Tele_Scroll','PVP Teleport Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (14529,'Greed_Scroll','Greed Scroll',11,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "BS_GREED",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14530,'Flee_30_Scroll','Evasion Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_FLEEFOOD,1800000,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14531,'Accuracy_30_Scroll','Concentration Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_HITFOOD,1800000,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14532,'Battle_Manual25','Field Manual 25%',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_EXPBOOST,1800000,25;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14533,'Battle_Manual100','Field Manual 100%',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_EXPBOOST,1800000,100;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14534,'Small_Life_Potion','Small Life Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_HEAL3; sc_start4 SC_S_LIFEPOTION,600000,-5,5,0,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14535,'Med_Life_Potion','Medium Life Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_HEAL3; sc_start4 SC_L_LIFEPOTION,600000,-7,4,0,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14536,'Abrasive','Abrasive',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_MAGICALATTHIT; sc_start SC_INCCRI,300000,30;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14537,'Regeneration_Potion','Regeneration Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_LIGHTSPHERE; sc_start SC_INCHEALRATE,1800000,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14538,'Glass_Of_Illusion','Glass of Illusion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_STEAL; sc_start SC_INCFLEE2,60000,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14539,'Shadow_Armor_S','Shadow Armor Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_CLOAKING; sc_start4 SC_ELEMENTALCHANGE,1800000,1,Ele_Dark,1,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14540,'Holy_Armor_S','Holy Armor Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_BENEDICTIO; sc_start4 SC_ELEMENTALCHANGE,1800000,1,Ele_Holy,1,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14541,'S_Def_Potion','Small Defense Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_GUARD; sc_start SC_DEF_RATE,60000,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14542,'B_Def_Potion','Big Defense Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_GUARD; sc_start SC_DEF_RATE,180000,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14543,'S_Mdef_Potion','Small Magic Defense Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_SPELLBREAKER; sc_start SC_MDEF_RATE,60000,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14544,'B_Mdef_Potion','Big Magic Defense Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_SPELLBREAKER; sc_start SC_MDEF_RATE,180000,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14545,'Battle_Manual_X3','Field Manual 300%',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_EXPBOOST,1800000,300;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14546,'Fire_Cracker_Love','I Love You Firecracker',2,2,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (14547,'Fire_Cracker_Wday','Whiteday Firecracker',2,2,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (14548,'Fire_Cracker_Vday','Valentine\'s Day Firecracker',2,2,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (14549,'Fire_Cracker_Bday','Birthday Firecracker',2,2,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (14550,'Fire_Cracker_Xmas','Xmas Firecracker',2,2,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (14551,'Str_Dish01_','Fried Grasshopper Legs',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_STRFOOD,1200000,1; percentheal 5,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14552,'Str_Dish02_','Seasoned Sticky Webfoot',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_STRFOOD,1200000,2; percentheal 5,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14553,'Str_Dish03_','Bomber Steak',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_STRFOOD,1200000,3; percentheal 5,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14554,'Int_Dish01_','Grape Juice Herbal Tea',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INTFOOD,1200000,1; percentheal 0,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14555,'Int_Dish02_','Autumn Red Tea',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INTFOOD,1200000,2; percentheal 0,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14556,'Int_Dish03_','Honey Herbal Tea',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INTFOOD,1200000,3; percentheal 0,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14557,'Vit_Dish01_','Steamed Crab Nippers',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_VITFOOD,1200000,1; percentheal 5,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14558,'Vit_Dish02_','Assorted Seafood',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_VITFOOD,1200000,2; percentheal 5,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14559,'Vit_Dish03_','Clam Soup',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_VITFOOD,1200000,3; percentheal 5,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14560,'Agi_Dish01_','Frog Egg Squid Ink Soup',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_AGIFOOD,1200000,1; percentheal 3,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14561,'Agi_Dish02_','Smooth Noodle',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_AGIFOOD,1200000,2; percentheal 3,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14562,'Agi_Dish03_','Tentacle Cheese Gratin',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_AGIFOOD,1200000,3; percentheal 3,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14563,'Dex_Dish01_','Honey Grape Juice',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_DEXFOOD,1200000,1; percentheal 2,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14564,'Dex_Dish02_','Chocolate Mousse Cake',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_DEXFOOD,1200000,2; percentheal 2,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14565,'Dex_Dish03_','Fruit Mix',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_DEXFOOD,1200000,3; percentheal 2,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14566,'Luk_Dish01_','Fried Monkey Tails',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_LUKFOOD,1200000,1; percentheal 3,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14567,'Luk_Dish02_','Mixed Juice',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_LUKFOOD,1200000,2; percentheal 3,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14568,'Luk_Dish03_','Fried Sweet Potato',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_LUKFOOD,1200000,3; percentheal 4,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14569,'Knife_Goblin_Ring','Knife Goblin Ring',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1122;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14570,'Flail_Goblin_Ring','Flail Goblin Ring',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1123;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14571,'Hammer_Goblin_Ring','Hammer Goblin Ring',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1125;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14572,'Holy_Marble','Holy Marble',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1385;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14573,'Red_Burning_Stone','Red Burning Stone',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1382;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14574,'Skull_Of_Vagabond','Vagabond\'s Skull',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'pet 1208;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14575,'Str_Dish05_','Lutie Lady\'s Pancake',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_STRFOOD,1200000,5; percentheal 10,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14576,'Int_Dish05_','Mastela Fruit Wine',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INTFOOD,1200000,5; percentheal 0,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14577,'Vit_Dish05_','Spicy Fried Bao',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_VITFOOD,1200000,5; percentheal 10,0;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14578,'Agi_Dish05_','Steamed Bat Wing in Pumpkin',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_AGIFOOD,1200000,5; percentheal 6,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14579,'Dex_Dish05_','Green Salad',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_DEXFOOD,1200000,5; percentheal 5,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14580,'Luk_Dish05_','Fried Scorpion Tails',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_LUKFOOD,1200000,5; percentheal 5,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14581,'Dun_Tele_Scroll2','Dungeon Teleport Scroll II',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashDungeon",2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14582,'WOB_Rune','Yellow Butterfly Wing',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashCity",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14583,'WOB_Schwaltz','Green Butterfly Wing',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashCity",2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14584,'WOB_Rachel','Red Butterfly Wing',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashCity",3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14585,'WOB_Local','Blue Butterfly Wing',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashCity",4;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14586,'Spark_Candy','Jumping Candy',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (14587,'Repair_Scroll_','Equipment Repair Spell Book',11,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "BS_REPAIRWEAPON",1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14588,'Pty_Blessing_Scroll','Party Blessing 10 Scroll',11,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "CASH_BLESSING",10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14589,'Pty_Inc_Agi_Scroll','Party Increase Agi 10 Scroll',11,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "CASH_INCAGI",10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14590,'Pty_Assumptio_Scroll','Party Assumptio 5 Scroll',11,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "CASH_ASSUMPTIO",5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14591,'Siege_Teleport_Scroll','WoE Teleport Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashSiegeTele";',NULL,NULL); -REPLACE INTO `item_db` VALUES (14592,'Job_Manual50','JOB Battle Manual',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_JEXPBOOST,1800000,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14593,'Magic_Power_Scroll','Mystical Amplification Scroll',11,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "HW_MAGICPOWER",10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14594,'Quagmire_Scroll','Quagmire Scroll',11,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "WZ_QUAGMIRE",5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14595,'Unsealed_Magic_Spell','Unsealed Magic Spell',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'warp "yuno_fild09",255,127;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14596,'Pierre_Treasurebox','Pierre\'s Treasure Box',2,0,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_Pierre_Treasurebox),1; getrandgroupitem(IG_Pierre_Treasurebox),1; getrandgroupitem(IG_Pierre_Treasurebox),1; getrandgroupitem(IG_Pierre_Treasurebox),1; getrandgroupitem(IG_Pierre_Treasurebox),1; getrandgroupitem(IG_Pierre_Treasurebox),1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14597,'PhreeoniS','Phreeoni Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start2 SC_ITEMSCRIPT,180000,4121,EFST_FOOD_BASICHIT;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14598,'GhostringS','Ghostring Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start2 SC_ITEMSCRIPT,60000,4047,EFST_ARMOR_PROPERTY;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14599,'Greed_Scroll_C','Greed Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (14600,'Mental_Potion','Mental Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (14601,'Tyr\'s_Blessing','Tyr\'s Blessing',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_FLEEFOOD,300000,30; sc_start SC_HITFOOD,300000,30; sc_start SC_ATKPOTION,300000,20; sc_start SC_MATKPOTION,300000,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14602,'TaogunkaS','Tao Gunka Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start2 SC_ITEMSCRIPT,180000,4302,EFST_MVPCARD_TAOGUNKA;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14603,'MistressS','Mistress Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start2 SC_ITEMSCRIPT,180000,4132,EFST_MVPCARD_MISTRESS;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14604,'Orc_HeroS','Orc Hero Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start2 SC_ITEMSCRIPT,60000,4143,EFST_MVPCARD_ORCHERO;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14605,'Orc_LoadS','Orc Lord Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start2 SC_ITEMSCRIPT,180000,4135,EFST_MVPCARD_ORCLORD;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14606,'Job_Manual25','JOB Battle Manual',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (14607,'Luxurious_Dinner_W','Luxurious Western Food',2,10000,NULL,600,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INCALLSTATUS,3600000,3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14608,'Luxurious_Dinner_E','Manchu-Han Imperial Feast',2,20000,NULL,1200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INCALLSTATUS,3600000,6;',NULL,NULL); -REPLACE INTO `item_db` VALUES (14609,'Spoiled_Cuisine','Spoiled Cuisine',2,5000,NULL,300,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal 10,10;',NULL,NULL); -# More Armors -REPLACE INTO `item_db` VALUES (15000,'Bone_Plate','Bone Plate',4,20,NULL,1000,NULL,7,NULL,1,0x000654E2,2,2,16,NULL,85,1,0,'bonus bStr,1; bonus bMdef,3; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus2 bIgnoreDefRaceRate,RC_Brute,10; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,10; bonus3 bAutoSpellWhenHit,"NPC_WIDEBLEEDING",1,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (15001,'Odin\'s_Blessing_I','Odin\'s Blessing',4,0,NULL,0,NULL,10,NULL,0,0xFFFFFFFE,7,2,16,NULL,0,0,0,NULL,NULL,NULL); -# More Maces -REPLACE INTO `item_db` VALUES (16000,'Erde','Erde',5,20,NULL,500,130,NULL,1,2,0x0004C5B2,2,2,2,3,50,1,8,'bonus2 bSkillAtk,"AM_ACIDTERROR",20; bonus2 bSkillAtk,"AM_DEMONSTRATION",20; bonus bMaxSP,50; bonus bHealPower,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (16001,'Red_Square_Bag','Red Square Bag',5,20,NULL,500,130,NULL,1,2,0x0004C5B2,2,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;',NULL,NULL); -REPLACE INTO `item_db` VALUES (16002,'Stunner_C','Stunner',5,0,NULL,0,175,NULL,1,0,0x00008110,7,2,2,3,1,0,8,'bonus2 bAddEff,Eff_Stun,1000; bonus2 bAddSize,Size_All,40;',NULL,NULL); -# -REPLACE INTO `item_db` VALUES (16030,'Pilebuncker_S','Pile Bunker S',5,20,NULL,3000,400,NULL,1,1,0x00000400,7,2,2,4,130,1,8,'bonus bAspdRate,getrefine()/2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (16031,'Pilebuncker_P','Pile Bunker P',5,20,NULL,4000,450,NULL,1,NULL,0x00000400,7,2,2,4,130,1,8,'bonus bBaseAtk,getrefine()*5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (16032,'Pilebuncker_T','Pile Bunker T',5,20,NULL,3500,400,NULL,1,1,0x00000400,7,2,2,4,130,1,8,'bonus bUseSPrate,getrefine()*-1;',NULL,NULL); -# More Rental Boxes -REPLACE INTO `item_db` VALUES (16134,'King_Frog_Hat_Box','Frog King Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5528,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (16135,'Evil\'s_Bone_Hat_Box','Satanic Bone Helm Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5529,1;',NULL,NULL); -#16186,Baby_Dragon_Hat_Box, -#16226,Aries_Diadem_Box, -#16227,Aries_Crown_Box, -#16230,Taurus_Diadem_Box, -#16231,Taurus_Crown_Box, -#16246,Crown_of_Deceit_Box, -REPLACE INTO `item_db` VALUES (16247,'Dragon_Arhat_Mask_Box','Dragon Arhat Mask Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5565,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (16248,'Tiger_Arhat_Mask_Box','Tiger Arhat Mask Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5566,1;',NULL,NULL); -#16249,Knight's_Gift_Box -#16250,Valkyrie's_Gift_Box -#16251,Gemini_Diadem_Box -#16252,Gemini_Crown_Box -REPLACE INTO `item_db` VALUES (16257,'Buddah_Scroll','Buddah Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (16258,'HD_Bradium_Box5','HD Bradium 5 Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 6226,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (16259,'HD_Carnium_Box5','HD Carnium 5 Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 6225,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (16260,'HD_Bradium_Box10','HD Bradium 10 Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 6226,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (16261,'HD_Carnium_Box10','HD Carnium 10 Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 6225,10;',NULL,NULL); -#16262,HD_Bradium_5_Box, -#16263,HD_Carnium_5_Box, -#16264,HD_Bradium_10_Box, -#16265,HD_Carnium_10_Box, -#16267,HE_Battle_Manual_Box -#16268,HE_Bubble_Gum_Box -#16269,Cancer_Diadem_Box -#16270,Cancer_Crown_Box, -REPLACE INTO `item_db` VALUES (16304,'Evil_Incarnation_Disable','Evil Incarnation',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#16343,Leo_Crown_Box -#16344,Leo_Diadem_Box -#16345,Leo_Crown_Box -#16346,Leo_Diadem_Box -#16368,Virgo_Crown_Box -REPLACE INTO `item_db` VALUES (16371,'Tw_Aug_Scroll','Tw Aug Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#16381,WoE_Teleport_Scroll_100_Box -REPLACE INTO `item_db` VALUES (16393,'HD_Ori_Box5','HD Oridecon 5 Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 6240,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (16394,'HD_Ori_Box10','HD Oridecon 10 Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 6240,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (16395,'HD_Elu_Box5','HD Elunium 5 Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 6241,5;',NULL,NULL); -REPLACE INTO `item_db` VALUES (16396,'HD_Elu_Box10','HD Elunium 10 Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 6241,10;',NULL,NULL); -#16397,Virgo_Diadem_Box -#16398,Virgo_Crown_Box -#16399,Virgo_Diadem_Box -#16418,Giant_Fly_Wing_Box_500 -#16419,Greed_Scroll_30_Box -#16420,Adventurer_Pack -#16421,Written_Oath_Of_Marriage_Box -#16422,Baphomet_Horns_Box -#16423,Episode_13.1_Key_Package -#16424,Executioner_Box -#16425,Cutlas_Box -#16426,Moonlight_Dagger_Box -#16427,Wrench_Box -#16428,Solar_Sword_Box -#16429,Tomahawk_Box -#16430,Rudra_Bow_Box -#16431,Pole_Axe_Box -#16436,Libra_Crown_Box -#16437,Libra_Crown_Box -#16438,Libra_Diadem_Box -#16439,Libra_Diadem_Box -#16447,Scorpio_Crown_Box -#16448,Scorpio_Diadem_Box -#16449,Scorpio_Crown_Box -#16450,Scorpio_Diadem_Box -REPLACE INTO `item_db` VALUES (16461,'Red_Wing_Hat_Box','Red Wing Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5690,1;',NULL,NULL); -#16462,Red_Wing_Hat_Box -#16543,Snowman_Hat_Box -#16544,Snowman_Hat_Box -#16548,Sagittarius_Crown_Box -#16549,Sagittarius_Diadem_Box -#16550,Sagittarius_Crown_Box -#16551,Sagittarius_Diadem_Box -#16554,Elven_Sunglasses_Box -REPLACE INTO `item_db` VALUES (16555,'Pr_Reset_Stone_Box','Pr Reset Stone Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#16565,Capricorn_Crown_Box -#16566,Capricorn_Crown_Box -#16567,Capricorn_Diadem_Box -#16568,Capricorn_Diadem_Box -#16588,Thoughtful_Hat_Box -#16589,Thoughtful_Hat_Box -#16590,Thoughtful_Hat_Box -REPLACE INTO `item_db` VALUES (16677,'Universal_Catalog_Gold_Box10','Universal Catalog Gold 10 Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12581,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (16678,'Universal_Catalog_Gold_Box50','Universal Catalog Gold 50 Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12581,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (16679,'Universal_Catalog_Gold_Box10_','Universal Catalog Gold 10 Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12581,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (16680,'Universal_Catalog_Gold_Box50_','Universal Catalog Gold 50 Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12581,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (16776,'Universal_Catalog_Gold_Box10__','Universal Catalog Gold 10 Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12581,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (16777,'Universal_Catalog_Gold_Box50__','Universal Catalog Gold 50 Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 12581,50;',NULL,NULL); -# -REPLACE INTO `item_db` VALUES (17104,'HD_Oridecon_50Box','HD Oridecon 50 Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 6240,50;',NULL,NULL); -REPLACE INTO `item_db` VALUES (17105,'HD_Elunium_50Box','HD Elunium 50 Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 6241,50;',NULL,NULL); -# Mechanic/Genetic Cannonballs -REPLACE INTO `item_db` VALUES (18000,'Cannon_Ball','Cannon Ball',10,100,NULL,10,100,NULL,NULL,NULL,0x00040400,8,2,32768,NULL,99,NULL,8,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (18001,'Holy_Cannon_Ball','Holy Cannon Ball',10,200,NULL,10,120,NULL,NULL,NULL,0x00040400,8,2,32768,NULL,99,NULL,8,'bonus bAtkEle,Ele_Holy;',NULL,NULL); -REPLACE INTO `item_db` VALUES (18002,'Dark_Cannon_Ball','Dark Cannon Ball',10,200,NULL,10,120,NULL,NULL,NULL,0x00040400,8,2,32768,NULL,99,NULL,8,'bonus bAtkEle,Ele_Dark;',NULL,NULL); -REPLACE INTO `item_db` VALUES (18003,'Soul_Cannon_Ball','Soul Cannon Ball',10,200,NULL,10,120,NULL,NULL,NULL,0x00040400,8,2,32768,NULL,99,NULL,8,'bonus bAtkEle,Ele_Ghost;',NULL,NULL); -REPLACE INTO `item_db` VALUES (18004,'Iron_Cannon_Ball','Iron Cannon Ball',10,500,NULL,10,250,NULL,NULL,NULL,0x00040400,8,2,32768,NULL,99,NULL,8,NULL,NULL,NULL); -# More Bows -REPLACE INTO `item_db` VALUES (18100,'Shooting_Star_C','Shooting Star',5,20,NULL,0,190,NULL,5,0,0x00080800,7,2,34,4,1,1,11,'bonus bLongAtkRate,20;',NULL,NULL); -REPLACE INTO `item_db` VALUES (18101,'F_Bow_Of_Rudra_C','Rudra Bow',5,2,NULL,0,185,NULL,5,0,0x000A0848,7,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;',NULL,NULL); -REPLACE INTO `item_db` VALUES (18102,'E_Bow_Of_Rudra_C','Rudra Bow',5,2,NULL,0,185,NULL,5,0,0x000A0848,7,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;',NULL,NULL); -# More Headgears -REPLACE INTO `item_db` VALUES (18500,'Cheer_Scarf6','Cheer Scarf6',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,1,NULL,1,0,369,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (18501,'Cheer_Scarf8','Cheer Scarf8',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,1,NULL,1,0,369,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (18502,'Cheer_Scarf10','Cheer Scarf10',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,1,NULL,1,0,369,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (18503,'Small_Horn_Of_Devil','Small Devil Horns',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,7,2,512,NULL,1,0,562,'bonus bAtkRate,5; bonus bMatkRate,5; bonus bMaxHPRate,10; bonus bMaxSPRate,10;',NULL,NULL); -REPLACE INTO `item_db` VALUES (18505,'Umbala_Spirit','Umbala Spirit',4,0,NULL,200,NULL,1,NULL,1,0xFFFFFFFF,7,2,1,NULL,30,0,675,'bonus bVit,1;',NULL,NULL); -REPLACE INTO `item_db` VALUES (18506,'Hattah_Black','Hattah Black',4,12000,NULL,4000,NULL,2,NULL,1,0xFFFFFFFF,7,2,769,NULL,1,1,676,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (18507,'Elven_Ears_','Elven Ears',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFE,7,2,512,NULL,70,0,73,NULL,NULL,NULL); -# -REPLACE INTO `item_db` VALUES (18539,'Skull_Cap','Skull Cap',4,40,NULL,200,NULL,5,NULL,1,0xFFFFFFFF,7,2,256,NULL,10,1,713,'bonus bMatkRate,2; if(getrefine() >= 5) { bonus bMatkRate,3; } if(getrefine() >= 7) { bonus bMatkRate,3; }',NULL,NULL); -# -REPLACE INTO `item_db` VALUES (18595,'Horn_Of_Ancient','Horn of Ancient',4,40,NULL,200,NULL,8,NULL,1,0xFFFFFFFF,7,2,256,NULL,50,1,757,'autobonus "{ bonus bBaseAtk,100; }",5,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }";',NULL,NULL); -REPLACE INTO `item_db` VALUES (18596,'Sprout_Hat','Sprout Hat',4,20,NULL,200,NULL,4,NULL,0,0xFFFFFFFF,7,2,256,NULL,70,1,758,'skill "WZ_HEAVENDRIVE",3;',NULL,NULL); -REPLACE INTO `item_db` VALUES (18597,'Mercury_Helm','Mercury Riser',4,40,NULL,200,NULL,10,NULL,1,0xFFFFFFFF,7,2,256,NULL,0,1,759,'bonus bAspdRate,3; bonus bCritical,3; if(getrefine() >= 7) { bonus bAspdRate,2; bonus bCritical,2; } if(getrefine() >= 9) { bonus bAspdRate,2; bonus bCritical,2; }',NULL,NULL); -# -REPLACE INTO `item_db` VALUES (18600,'Cat_Ears_Beret','Cat Ear Beret',4,20,NULL,100,NULL,5,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,761,'bonus bAtkRate,5; if(getrefine() > 5 && getrefine() <= 12) { bonus2 bAddRace,RC_DemiHuman,(getrefine() - 5); bonus2 bSubRace,RC_DemiHuman,(getrefine() - 5); bonus2 bAddRace,RC_Player_Human,(getrefine() - 5); bonus2 bSubRace,RC_Player_Human,(getrefine() - 5); } if(getrefine() > 12) { bonus2 bAddRace,RC_DemiHuman,7; bonus2 bAddRace,RC_Player_Human,7; bonus2 bSubRace,RC_DemiHuman,7; bonus2 bSubRace,RC_Player_Human,7; }',NULL,NULL); -# -REPLACE INTO `item_db` VALUES (18612,'White_Musang_Hat','White Musang Hat',4,40,NULL,200,NULL,3,NULL,1,0xFFFFFFFF,7,2,256,NULL,0,1,770,'bonus bStr,2; bonus bVit,2; bonus bLuk,1; bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db` VALUES (18613,'Black_Musang_Hat','Black Musang Hat',4,40,NULL,200,NULL,3,NULL,1,0xFFFFFFFF,7,2,256,NULL,0,1,771,'bonus bInt,2; bonus bDex,2; bonus bAgi,1; bonus bUnbreakableHelm;',NULL,NULL); -# -REPLACE INTO `item_db` VALUES (18620,'Heart_Eyepatch','Heart Eyepatch',4,5,NULL,200,NULL,2,NULL,0,0xFFFFFFFF,7,2,512,NULL,20,1,779,NULL,NULL,NULL); -# -REPLACE INTO `item_db` VALUES (18656,'Wit_Pumpkin_Hat','Witch\'s Pumpkin Hat',4,20,NULL,300,NULL,10,NULL,0,0xFFFFFFFF,7,2,256,NULL,20,1,717,'bonus bMdef,10; bonus bStr,2; bonus bInt,2; bonus2 bMagicAddRace,RC_Undead,15; bonus2 bMagicAddRace,RC_Demon,15;',NULL,NULL); - -# Costume System -REPLACE INTO `item_db` VALUES (19500,'T_Mr_Smile','T Mr Smile',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,6144,NULL,0,0,65,'bonus bStr,2;',NULL,NULL); -REPLACE INTO `item_db` VALUES (19501,'T_Spinx_Helm','T Spinx Helm',4,0,NULL,0,NULL,0,NULL,1,0xFFFFFFFF,7,2,5120,NULL,0,0,137,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (19504,'T_Sunglasses','T Sunglasses',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,2048,NULL,0,0,12,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (19505,'T_Cigarette','T Cigarette',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,4096,NULL,0,0,54,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (19506,'T_Valkyrie_Feather_Band','T Valkyrie Feather Band',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,1024,NULL,0,1,300,NULL,NULL,NULL); -REPLACE INTO `item_db` VALUES (19507,'Fine_Sun','Clear Sun',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,7,2,1024,NULL,1,0,654,NULL,NULL,NULL); - -REPLACE INTO `item_db` VALUES (22777,'Gift_Buff_Set','Gift Buff Set',2,10,NULL,100,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL); - diff --git a/sql-files/item_db2.sql b/sql-files/item_db2.sql index c643810ff2..59203bacda 100644 --- a/sql-files/item_db2.sql +++ b/sql-files/item_db2.sql @@ -5,92 +5,171 @@ DROP TABLE IF EXISTS `item_db2`; CREATE TABLE `item_db2` ( `id` int(10) unsigned NOT NULL DEFAULT '0', + `name_aegis` varchar(50) NOT NULL DEFAULT '', `name_english` varchar(50) NOT NULL DEFAULT '', - `name_japanese` varchar(50) NOT NULL DEFAULT '', - `type` tinyint(2) unsigned NOT NULL DEFAULT '0', + `type` varchar(20) DEFAULT NULL, + `subtype` varchar(20) DEFAULT NULL, `price_buy` mediumint(8) unsigned DEFAULT NULL, `price_sell` mediumint(8) unsigned DEFAULT NULL, - `weight` smallint(5) unsigned NOT NULL DEFAULT '0', + `weight` smallint(5) unsigned DEFAULT NULL, `attack` smallint(5) unsigned DEFAULT NULL, - `defence` smallint(5) unsigned DEFAULT NULL, + `defense` smallint(5) unsigned DEFAULT NULL, `range` tinyint(2) unsigned DEFAULT NULL, `slots` tinyint(2) unsigned DEFAULT NULL, - `equip_jobs` bigint(20) unsigned DEFAULT NULL, - `equip_upper` tinyint(2) unsigned DEFAULT NULL, - `equip_genders` tinyint(1) unsigned DEFAULT NULL, - `equip_locations` mediumint(7) unsigned DEFAULT NULL, + `job_all` tinyint(1) unsigned DEFAULT NULL, + `job_acolyte` tinyint(1) unsigned DEFAULT NULL, + `job_alchemist` tinyint(1) unsigned DEFAULT NULL, + `job_archer` tinyint(1) unsigned DEFAULT NULL, + `job_assassin` tinyint(1) unsigned DEFAULT NULL, + `job_barddancer` tinyint(1) unsigned DEFAULT NULL, + `job_blacksmith` tinyint(1) unsigned DEFAULT NULL, + `job_crusader` tinyint(1) unsigned DEFAULT NULL, + `job_gunslinger` tinyint(1) unsigned DEFAULT NULL, + `job_hunter` tinyint(1) unsigned DEFAULT NULL, + `job_knight` tinyint(1) unsigned DEFAULT NULL, + `job_mage` tinyint(1) unsigned DEFAULT NULL, + `job_merchant` tinyint(1) unsigned DEFAULT NULL, + `job_monk` tinyint(1) unsigned DEFAULT NULL, + `job_ninja` tinyint(1) unsigned DEFAULT NULL, + `job_novice` tinyint(1) unsigned DEFAULT NULL, + `job_priest` tinyint(1) unsigned DEFAULT NULL, + `job_rogue` tinyint(1) unsigned DEFAULT NULL, + `job_sage` tinyint(1) unsigned DEFAULT NULL, + `job_soullinker` tinyint(1) unsigned DEFAULT NULL, + `job_stargladiator` tinyint(1) unsigned DEFAULT NULL, + `job_supernovice` tinyint(1) unsigned DEFAULT NULL, + `job_swordman` tinyint(1) unsigned DEFAULT NULL, + `job_taekwon` tinyint(1) unsigned DEFAULT NULL, + `job_thief` tinyint(1) unsigned DEFAULT NULL, + `job_wizard` tinyint(1) unsigned DEFAULT NULL, + `class_all` tinyint(1) unsigned DEFAULT NULL, + `class_normal` tinyint(1) unsigned DEFAULT NULL, + `class_upper` tinyint(1) unsigned DEFAULT NULL, + `class_baby` tinyint(1) unsigned DEFAULT NULL, + `gender` varchar(10) DEFAULT NULL, + `location_head_top` tinyint(1) unsigned DEFAULT NULL, + `location_head_mid` tinyint(1) unsigned DEFAULT NULL, + `location_head_low` tinyint(1) unsigned DEFAULT NULL, + `location_armor` tinyint(1) unsigned DEFAULT NULL, + `location_right_hand` tinyint(1) unsigned DEFAULT NULL, + `location_left_hand` tinyint(1) unsigned DEFAULT NULL, + `location_garment` tinyint(1) unsigned DEFAULT NULL, + `location_shoes` tinyint(1) unsigned DEFAULT NULL, + `location_right_accessory` tinyint(1) unsigned DEFAULT NULL, + `location_left_accessory` tinyint(1) unsigned DEFAULT NULL, + `location_costume_head_top` tinyint(1) unsigned DEFAULT NULL, + `location_costume_head_mid` tinyint(1) unsigned DEFAULT NULL, + `location_costume_head_low` tinyint(1) unsigned DEFAULT NULL, + `location_costume_garment` tinyint(1) unsigned DEFAULT NULL, + `location_ammo` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_armor` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_weapon` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_shield` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_shoes` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_right_accessory` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_left_accessory` tinyint(1) unsigned DEFAULT NULL, `weapon_level` tinyint(1) unsigned DEFAULT NULL, - `equip_level` tinyint(3) unsigned DEFAULT NULL, + `equip_level_min` tinyint(3) unsigned DEFAULT NULL, + `equip_level_max` tinyint(3) unsigned DEFAULT NULL, `refineable` tinyint(1) unsigned DEFAULT NULL, `view` smallint(5) unsigned DEFAULT NULL, + `alias_name` varchar(50) DEFAULT NULL, + `flag_buyingstore` tinyint(1) unsigned DEFAULT NULL, + `flag_deadbranch` tinyint(1) unsigned DEFAULT NULL, + `flag_container` tinyint(1) unsigned DEFAULT NULL, + `flag_uniqueid` tinyint(1) unsigned DEFAULT NULL, + `flag_bindonequip` tinyint(1) unsigned DEFAULT NULL, + `flag_dropannounce` tinyint(1) unsigned DEFAULT NULL, + `flag_noconsume` tinyint(1) unsigned DEFAULT NULL, + `flag_dropeffect` varchar(20) DEFAULT NULL, + `delay_duration` bigint(20) unsigned DEFAULT NULL, + `delay_status` varchar(30) DEFAULT NULL, + `stack_amount` smallint(5) unsigned DEFAULT NULL, + `stack_inventory` tinyint(1) unsigned DEFAULT NULL, + `stack_cart` tinyint(1) unsigned DEFAULT NULL, + `stack_storage` tinyint(1) unsigned DEFAULT NULL, + `stack_guildstorage` tinyint(1) unsigned DEFAULT NULL, + `nouse_override` smallint(5) unsigned DEFAULT NULL, + `nouse_sitting` tinyint(1) unsigned DEFAULT NULL, + `trade_override` smallint(5) unsigned DEFAULT NULL, + `trade_nodrop` tinyint(1) unsigned DEFAULT NULL, + `trade_notrade` tinyint(1) unsigned DEFAULT NULL, + `trade_tradepartner` tinyint(1) unsigned DEFAULT NULL, + `trade_nosell` tinyint(1) unsigned DEFAULT NULL, + `trade_nocart` tinyint(1) unsigned DEFAULT NULL, + `trade_nostorage` tinyint(1) unsigned DEFAULT NULL, + `trade_noguildstorage` tinyint(1) unsigned DEFAULT NULL, + `trade_nomail` tinyint(1) unsigned DEFAULT NULL, + `trade_noauction` tinyint(1) unsigned DEFAULT NULL, `script` text, `equip_script` text, `unequip_script` text, PRIMARY KEY (`id`), - UNIQUE INDEX `UniqueAegisName` (`name_english`) + UNIQUE INDEX `UniqueAegisName` (`name_aegis`) ) ENGINE=MyISAM; -# Items Additional Database -# -# Structure of Database: -#REPLACE INTO `item_db2` VALUES ( ID,'AegisName','Name',Type,Buy,Sell,Weight,ATK,DEF,Range,Slots,Job,Class,Gender,Loc,wLV,eLV,Refineable,View,'Script','OnEquip_Script','OnUnequip_Script'); -# # THQ Quest Items #============================================================= -#REPLACE INTO `item_db2` VALUES (7950,'THG_Membership','THG Membership',3,NULL,10,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#REPLACE INTO `item_db2` VALUES (7951,'Token_Bag','Token Bag',3,NULL,10,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#REPLACE INTO `item_db2` VALUES (1998,'Jeramiah\'s_Jur','Jeramiah\'s Jur',3,NULL,10,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#REPLACE INTO `item_db2` VALUES (1999,'Zed\'s_Staff','Zed\'s Staff',3,NULL,10,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +REPLACE INTO `item_db2` (`id`,`name_aegis`,`name_english`,`type`,`price_sell`,`weight`,`alias_name`) VALUES (1998,'Jeramiah\'s_Jur','Jeramiah\'s Jur','Etc',10,10,'Jur'); +REPLACE INTO `item_db2` (`id`,`name_aegis`,`name_english`,`type`,`price_sell`,`weight`,`alias_name`) VALUES (1999,'Zed\'s_Staff','Zed\'s Staff','Etc',10,10,'Staff_Of_Soul'); +REPLACE INTO `item_db2` (`id`,`name_aegis`,`name_english`,`type`,`price_sell`,`weight`,`alias_name`) VALUES (7950,'THG_Membership','THG Membership','Etc',10,10,'Foolishness_Of_Blind'); +REPLACE INTO `item_db2` (`id`,`name_aegis`,`name_english`,`type`,`price_sell`,`weight`,`alias_name`) VALUES (7951,'Token_Bag','Token Bag','Etc',10,10,'Leather_Bag_Of_Infinity'); # Official Event Items that had their Effects removed after the event was completed -#REPLACE INTO `item_db2` VALUES (585,'Wurst','Brusti',11,2,NULL,40,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(15,20),0; itemskill "PR_MAGNIFICAT",3;',NULL,NULL); -#REPLACE INTO `item_db2` VALUES (679,'Gold_Pill','Pilule',0,5000,NULL,300,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal 50,50;',NULL,NULL); +#============================================================= +REPLACE INTO `item_db2` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (585,'Wurst','Brusti','Delayconsume',2,40,'itemheal rand(15,20),0; itemskill "PR_MAGNIFICAT",3;'); +REPLACE INTO `item_db2` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (679,'Gold_Pill','Pilule','Healing',5000,300,'percentheal 50,50;'); +REPLACE INTO `item_db2` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2681,'Republic_Ring','Republic Anniversary Ring','Armor',20,100,true,true,'bonus bAllStats,3;'); +REPLACE INTO `item_db2` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5134,'Pumpkin_Hat','Pumpkin-Head','Armor',20,200,2,true,true,206,'bonus2 bSubRace,RC_Demon,5;'); +REPLACE INTO `item_db2` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5136,'Santa\'s_Hat_','Louise\'s Santa Hat','Armor',20,100,3,true,true,20,'bonus bMdef,1; bonus bLuk,1; bonus3 bAutoSpellWhenHit,"AL_HEAL",3,50; bonus3 bAutoSpellWhenHit,"AL_BLESSING",10,50;'); +REPLACE INTO `item_db2` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5145,'Carnival_Joker_Jester','Carnival Jester','Armor',10,100,true,true,89,'bonus bAllStats,3;'); +REPLACE INTO `item_db2` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5147,'Baseball_Cap','Baseball Cap','Armor',200,3,true,true,216,'bonus2 bExpAddRace,RC_Boss,50; bonus2 bExpAddRace,RC_NonBoss,50;'); +REPLACE INTO `item_db2` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5201,'Party_Hat_B','2nd Anniversary Party Hat','Armor',20,300,3,true,true,144,'bonus bAllStats,3;'); +REPLACE INTO `item_db2` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5202,'Pumpkin_Hat_','Pumpkin Hat','Armor',20,200,2,true,true,206,'bonus bAllStats,2; bonus2 bSubRace,RC_Demon,5; bonus3 bAddMonsterDropItem,529,RC_DemiHuman,1500;'); +REPLACE INTO `item_db2` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`,`script`) VALUES (5204,'Event_Pierrot_Nose','Rudolf\'s Red Nose','Armor',20,100,true,49,'bonus2 bResEff,Eff_Blind,3000; bonus2 bAddMonsterDropItem,12130,30;'); +REPLACE INTO `item_db2` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5264,'Aussie_Flag_Hat','Australian Flag Hat','Armor',20,500,4,true,true,304,'bonus bAllStats,2;'); +REPLACE INTO `item_db2` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5356,'Pumpkin_Hat_H','Pumpkin Hat','Armor',20,200,2,true,true,206,'bonus bAllStats,2; bonus2 bSubRace,RC_Demon,5; bonus2 bMagicAddRace,RC_Demon,5;'); +REPLACE INTO `item_db2` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5384,'Santa_Hat_1','Twin Pompom By JB','Armor',20,200,2,1,true,20,true,390,'bonus bLuk,3; bonus2 bResEff,Eff_Curse,2000; bonus bVariableCastrate,-2; bonus bAspdRate,4; bonus2 bAddMonsterDropItem,539,100; bonus2 bAddMonsterDropItem,529,200; bonus2 bAddMonsterDropItem,530,200; autobonus "{ bonus bCritical,10; }",10,5000;'); +REPLACE INTO `item_db2` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_low`,`view`,`script`) VALUES (5811,'Santa_Beard','Santa Beard','Armor',20,100,5,true,25,'bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5;'); +REPLACE INTO `item_db2` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (11702,'Moon_Cookie','Moon Cookie','Delayconsume',10,'sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_HALLUCINATION; itemskill "AL_BLESSING",7;'); +REPLACE INTO `item_db2` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12131,'Lucky_Potion','Lucky Potion','Healing',2,100,'sc_start SC_LUKFOOD,180000,15;'); +REPLACE INTO `item_db2` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12143,'Red_Can','Red Can','Usable',50000,300,'percentheal 25,25;'); -#REPLACE INTO `item_db2` VALUES (2681,'Republic_Ring','Republic Anniversary Ring',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,0,0,0,'bonus bAllStats,3;',NULL,NULL); - -#REPLACE INTO `item_db2` VALUES (5134,'Pumpkin_Hat','Pumpkin-Head',4,20,NULL,200,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,206,'bonus2 bSubRace,RC_Demon,5;',NULL,NULL); -#REPLACE INTO `item_db2` VALUES (5136,'Santa\'s_Hat_','Louise\'s Santa Hat',4,20,NULL,100,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,20,'bonus bMdef,1; bonus bLuk,1; bonus3 bAutoSpellWhenHit,"AL_HEAL",3,50; bonus3 bAutoSpellWhenHit,"AL_BLESSING",10,50;',NULL,NULL); -#REPLACE INTO `item_db2` VALUES (5145,'Carnival_Joker_Jester','Carnival Jester',4,10,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,89,'bonus bAllStats,3;',NULL,NULL); -#REPLACE INTO `item_db2` VALUES (5147,'Baseball_Cap','Baseball Cap',4,0,NULL,200,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,216,'bonus2 bExpAddRace,RC_Boss,50; bonus2 bExpAddRace,RC_NonBoss,50;',NULL,NULL); -#REPLACE INTO `item_db2` VALUES (5201,'Party_Hat_B','2nd Anniversary Party Hat',4,20,NULL,300,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,144,'bonus bAllStats,3;',NULL,NULL); -#REPLACE INTO `item_db2` VALUES (5202,'Pumpkin_Hat_','Pumpkin Hat',4,20,NULL,200,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,206,'bonus bAllStats,2; bonus2 bSubRace,RC_Demon,5; bonus3 bAddMonsterDropItem,529,RC_DemiHuman,1500;',NULL,NULL); -#REPLACE INTO `item_db2` VALUES (5204,'Event_Pierrot_Nose','Rudolf\'s Red Nose',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,1,NULL,0,0,49,'bonus2 bResEff,Eff_Blind,3000; bonus2 bAddMonsterDropItem,12130,30;',NULL,NULL); -#REPLACE INTO `item_db2` VALUES (5264,'Aussie_Flag_Hat','Australian Flag Hat',4,20,NULL,500,NULL,4,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,304,'bonus bAllStats,2;',NULL,NULL); -#REPLACE INTO `item_db2` VALUES (5356,'Pumpkin_Hat_H','Pumpkin Hat',4,20,NULL,200,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,206,'bonus bAllStats,2; bonus2 bSubRace,RC_Demon,5; bonus2 bMagicAddRace,RC_Demon,5;',NULL,NULL); -#REPLACE INTO `item_db2` VALUES (5811,'Santa_Beard','Santa Beard',4,20,NULL,100,NULL,5,NULL,0,0xFFFFFFFF,7,2,1,NULL,0,0,25,'bonus2 bSubRace,RC_Brute,5;',NULL,NULL); - -#REPLACE INTO `item_db2` VALUES (11702,'Moon_Cookie','Moon Cookie',11,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination; itemskill "AL_BLESSING",7;',NULL,NULL); -#REPLACE INTO `item_db2` VALUES (12131,'Lucky_Potion','Lucky Potion',0,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_LUKFood,180000,15;',NULL,NULL); -#REPLACE INTO `item_db2` VALUES (12143,'Red_Can','Red Can',2,50000,NULL,300,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal 25,25;',NULL,NULL); -#Event effect: Summon monster? Probably Rice_Cake. x_x -#REPLACE INTO `item_db2` VALUES (12199,'Rice_Scroll','Rice Scroll',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#REPLACE INTO `item_db2` VALUES (12200,'Event_Cake','Event Cake',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "PR_MAGNIFICAT",3;',NULL,NULL); -#REPLACE INTO `item_db2` VALUES (12238,'New_Year_Rice_Cake_1','New Year Rice Cake',0,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal 20,15; sc_start SC_STRFood,1200000,3; sc_start SC_INTFood,1200000,3; sc_start SC_LUKFood,1200000,3; sc_start SC_SpeedUp1,5000,0;',NULL,NULL); -#REPLACE INTO `item_db2` VALUES (12239,'New_Year_Rice_Cake_2','New Year Rice Cake',0,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal 20,15; sc_start SC_DEXFood,1200000,3; sc_start SC_AGIFood,1200000,3; sc_start SC_VITFood,1200000,3; sc_start SC_SpeedUp1,5000,0;',NULL,NULL); +# Event effect: Summon monster? Probably Rice_Cake. x_x +#============================================================= +REPLACE INTO `item_db2` (`id`,`name_aegis`,`name_english`,`type`) VALUES (12199,'Rice_Scroll','Rice Scroll','Usable'); +REPLACE INTO `item_db2` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12200,'Event_Cake','Event Cake','Usable',20,50,'itemskill "PR_MAGNIFICAT",3;'); +REPLACE INTO `item_db2` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12238,'New_Year_Rice_Cake_1','New Year Rice Cake','Healing',20,100,'percentheal 20,15; sc_start SC_STRFOOD,1200000,3; sc_start SC_INTFOOD,1200000,3; sc_start SC_LUKFOOD,1200000,3; sc_start SC_SPEEDUP1,5000,0;'); +REPLACE INTO `item_db2` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12239,'New_Year_Rice_Cake_2','New Year Rice Cake','Healing',20,100,'percentheal 20,15; sc_start SC_DEXFOOD,1200000,3; sc_start SC_AGIFOOD,1200000,3; sc_start SC_VITFOOD,1200000,3; sc_start SC_SPEEDUP1,5000,0;'); # iRO St. Patrick's Day Event 2008 #============================================================= -#REPLACE INTO `item_db2` VALUES (12715,'Black_Treasure_Chest','Black Treasure Chest',2,0,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_08stpattyseventbox";',NULL,NULL); +REPLACE INTO `item_db2` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`alias_name`) VALUES (7915,'Copper_Coin_','Bronze Coin','Etc',10,'Copper_Coin'); # iRO Valentine's Day Event 2009 #============================================================= -#REPLACE INTO `item_db2` VALUES (12742,'Valentine_Gift_Box_M','Valentine Gift Box',2,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 7946,1;',NULL,NULL); -#REPLACE INTO `item_db2` VALUES (12743,'Valentine_Gift_Box_F','Valentine Gift Box',2,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 7947,1;',NULL,NULL); -#REPLACE INTO `item_db2` VALUES (12744,'Chocolate_Box','Chocolate Box',2,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 558,1;',NULL,NULL); -#REPLACE INTO `item_db2` VALUES (14466,'Valentine\'s_Emblem_Box','Valentine\'s Emblem Box',2,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5817,1;',NULL,NULL); -#REPLACE INTO `item_db2` VALUES (7946,'Gold_Ring_Of_Valentine','Gold Ring Of Valentine',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#REPLACE INTO `item_db2` VALUES (7947,'Silver_Ring_Of_Valentine','Silver Ring Of Valentine',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#REPLACE INTO `item_db2` VALUES (7948,'Box','Box',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#REPLACE INTO `item_db2` VALUES (5817,'Valentine\'s_Emblem','Valentine\'s Emblem',4,10,NULL,0,NULL,3,NULL,0,0xFFFFFFFF,7,2,136,NULL,0,0,0,'bonus bAtkRate,3; bonus bMatkRate,3; bonus bAllStats,2; bonus bFlee,10; bonus bAspd,1; bonus bMdef,3; bonus2 bSkillAtk,"AL_HEAL",10; bonus2 bSkillHeal,"AL_HEAL",10; bonus2 bSkillHeal,"AM_POTIONPITCHER",10; bonus2 bAddItemHealRate,IG_Potion,10;',NULL,NULL); +REPLACE INTO `item_db2` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`alias_name`) VALUES (7916,'Silver_Coin_','Silver Coin','Etc',10,'Silver_Coin'); +REPLACE INTO `item_db2` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`alias_name`,`script`) VALUES (12715,'Black_Treasure_Chest','Black Treasure Chest','Usable',200,'Treasure_Box_','callfunc "F_08stpattyseventbox";'); +REPLACE INTO `item_db2` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (5817,'Valentine\'s_Emblem','Valentine\'s Emblem','Armor',10,3,true,true,'bonus bAtkRate,3; bonus bMatkRate,3; bonus bAllStats,2; bonus bFlee,10; bonus bAspd,1; bonus bMdef,3; bonus2 bSkillAtk,"AL_HEAL",10; bonus2 bSkillHeal,"AL_HEAL",10; bonus2 bSkillHeal,"AM_POTIONPITCHER",10; bonus2 bAddItemGroupHealRate,IG_Potion,10;'); +REPLACE INTO `item_db2` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (7946,'Gold_Ring_Of_Valentine','Gold Ring Of Valentine','Etc',10); +REPLACE INTO `item_db2` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (7947,'Silver_Ring_Of_Valentine','Silver Ring Of Valentine','Etc',10); +REPLACE INTO `item_db2` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7948,'Box','Box','Etc',10,10); +REPLACE INTO `item_db2` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (12742,'Valentine_Gift_Box_M','Valentine Gift Box','Usable',10,'getitem 7946,1;'); +REPLACE INTO `item_db2` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (12743,'Valentine_Gift_Box_F','Valentine Gift Box','Usable',10,'getitem 7947,1;'); +REPLACE INTO `item_db2` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (12744,'Chocolate_Box','Chocolate Box','Usable',10,'getitem 558,1;'); +REPLACE INTO `item_db2` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (14466,'Valentine\'s_Emblem_Box','Valentine\'s Emblem Box','Usable',10,'getitem 5817,1;'); # iRO Halloween Event 2009 #============================================================= -#REPLACE INTO `item_db2` VALUES (5668,'Weird_Pumpkin_Hat','Weird Pumpkin Hat',4,20,NULL,0,NULL,5,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,206,'bonus bMdef,5; bonus2 bAddMonsterDropItem,12192,2500;',NULL,NULL); -#REPLACE INTO `item_db2` VALUES (6298,'Crushed_Pumpkin','Crushed Pumpkin',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#REPLACE INTO `item_db2` VALUES (6299,'Worn_Fabric','Worn Fabric',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +REPLACE INTO `item_db2` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5668,'Weird_Pumpkin_Hat','Weird Pumpkin Hat','Armor',20,5,true,true,206,'bonus bMdef,5; bonus2 bAddMonsterDropItem,12192,2500;'); +REPLACE INTO `item_db2` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6298,'Crushed_Pumpkin','Crushed Pumpkin','Etc'); +REPLACE INTO `item_db2` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6299,'Worn_Fabric','Worn Fabric','Etc'); # Old Tuxedo and Wedding Dress, will display the outfit when worn. -#================================================================== -#REPLACE INTO `item_db2` VALUES (2338,'Wedding_Dress','Wedding Dress',4,43000,NULL,500,NULL,0,NULL,0,0xFFFFFFFE,7,0,16,NULL,0,1,0,NULL,'setoption Option_Wedding,1;','setoption Option_Wedding,0;'); -#REPLACE INTO `item_db2` VALUES (7170,'Tuxedo','Tuxedo',4,43000,NULL,10,NULL,0,NULL,0,0xFFFFFFFE,7,1,16,NULL,0,1,0,NULL,'setoption Option_Wedding,1;','setoption Option_Wedding,0;'); +#============================================================= +REPLACE INTO `item_db2` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`location_armor`,`refineable`,`equip_script`,`unequip_script`) VALUES (2338,'Wedding_Dress','Wedding Dress','Armor',43000,500,true,false,true,true,'sc_start SC_WEDDING,INFINITE_TICK,0;','sc_end SC_WEDDING;'); +REPLACE INTO `item_db2` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`gender`,`location_armor`,`refineable`,`equip_script`,`unequip_script`) VALUES (7170,'Tuxedo','Tuxedo','Armor',43000,10,true,false,'Male',true,true,'sc_start SC_WEDDING,INFINITE_TICK,0;','sc_end SC_WEDDING;'); +# Non-kRO Eden Group Mark effect +#============================================================= +REPLACE INTO `item_db2` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (22508,'Para_Team_Mark_','Eden Group Mark','Delayconsume','unitskilluseid getcharid(3),"AL_TELEPORT",3;'); diff --git a/sql-files/item_db2_re.sql b/sql-files/item_db2_re.sql index c6e7d1d360..1849e0626f 100644 --- a/sql-files/item_db2_re.sql +++ b/sql-files/item_db2_re.sql @@ -5,92 +5,178 @@ DROP TABLE IF EXISTS `item_db2_re`; CREATE TABLE `item_db2_re` ( `id` int(10) unsigned NOT NULL DEFAULT '0', + `name_aegis` varchar(50) NOT NULL DEFAULT '', `name_english` varchar(50) NOT NULL DEFAULT '', - `name_japanese` varchar(50) NOT NULL DEFAULT '', - `type` tinyint(2) unsigned NOT NULL DEFAULT '0', + `type` varchar(20) DEFAULT NULL, + `subtype` varchar(20) DEFAULT NULL, `price_buy` mediumint(8) unsigned DEFAULT NULL, `price_sell` mediumint(8) unsigned DEFAULT NULL, - `weight` smallint(5) unsigned NOT NULL DEFAULT '0', - `atk:matk` varchar(11) DEFAULT NULL, - `defence` smallint(5) unsigned DEFAULT NULL, + `weight` smallint(5) unsigned DEFAULT NULL, + `attack` smallint(5) unsigned DEFAULT NULL, + `magic_attack` smallint(5) unsigned DEFAULT NULL, + `defense` smallint(5) unsigned DEFAULT NULL, `range` tinyint(2) unsigned DEFAULT NULL, `slots` tinyint(2) unsigned DEFAULT NULL, - `equip_jobs` bigint(20) unsigned DEFAULT NULL, - `equip_upper` tinyint(2) unsigned DEFAULT NULL, - `equip_genders` tinyint(1) unsigned DEFAULT NULL, - `equip_locations` mediumint(7) unsigned DEFAULT NULL, + `job_all` tinyint(1) unsigned DEFAULT NULL, + `job_acolyte` tinyint(1) unsigned DEFAULT NULL, + `job_alchemist` tinyint(1) unsigned DEFAULT NULL, + `job_archer` tinyint(1) unsigned DEFAULT NULL, + `job_assassin` tinyint(1) unsigned DEFAULT NULL, + `job_barddancer` tinyint(1) unsigned DEFAULT NULL, + `job_blacksmith` tinyint(1) unsigned DEFAULT NULL, + `job_crusader` tinyint(1) unsigned DEFAULT NULL, + `job_gunslinger` tinyint(1) unsigned DEFAULT NULL, + `job_hunter` tinyint(1) unsigned DEFAULT NULL, + `job_kagerouoboro` tinyint(1) unsigned DEFAULT NULL, + `job_knight` tinyint(1) unsigned DEFAULT NULL, + `job_mage` tinyint(1) unsigned DEFAULT NULL, + `job_merchant` tinyint(1) unsigned DEFAULT NULL, + `job_monk` tinyint(1) unsigned DEFAULT NULL, + `job_ninja` tinyint(1) unsigned DEFAULT NULL, + `job_novice` tinyint(1) unsigned DEFAULT NULL, + `job_priest` tinyint(1) unsigned DEFAULT NULL, + `job_rebellion` tinyint(1) unsigned DEFAULT NULL, + `job_rogue` tinyint(1) unsigned DEFAULT NULL, + `job_sage` tinyint(1) unsigned DEFAULT NULL, + `job_soullinker` tinyint(1) unsigned DEFAULT NULL, + `job_stargladiator` tinyint(1) unsigned DEFAULT NULL, + `job_summoner` tinyint(1) unsigned DEFAULT NULL, + `job_supernovice` tinyint(1) unsigned DEFAULT NULL, + `job_swordman` tinyint(1) unsigned DEFAULT NULL, + `job_taekwon` tinyint(1) unsigned DEFAULT NULL, + `job_thief` tinyint(1) unsigned DEFAULT NULL, + `job_wizard` tinyint(1) unsigned DEFAULT NULL, + `class_all` tinyint(1) unsigned DEFAULT NULL, + `class_normal` tinyint(1) unsigned DEFAULT NULL, + `class_upper` tinyint(1) unsigned DEFAULT NULL, + `class_baby` tinyint(1) unsigned DEFAULT NULL, + `class_third` tinyint(1) unsigned DEFAULT NULL, + `class_third_upper` tinyint(1) unsigned DEFAULT NULL, + `class_third_baby` tinyint(1) unsigned DEFAULT NULL, + `gender` varchar(10) DEFAULT NULL, + `location_head_top` tinyint(1) unsigned DEFAULT NULL, + `location_head_mid` tinyint(1) unsigned DEFAULT NULL, + `location_head_low` tinyint(1) unsigned DEFAULT NULL, + `location_armor` tinyint(1) unsigned DEFAULT NULL, + `location_right_hand` tinyint(1) unsigned DEFAULT NULL, + `location_left_hand` tinyint(1) unsigned DEFAULT NULL, + `location_garment` tinyint(1) unsigned DEFAULT NULL, + `location_shoes` tinyint(1) unsigned DEFAULT NULL, + `location_right_accessory` tinyint(1) unsigned DEFAULT NULL, + `location_left_accessory` tinyint(1) unsigned DEFAULT NULL, + `location_costume_head_top` tinyint(1) unsigned DEFAULT NULL, + `location_costume_head_mid` tinyint(1) unsigned DEFAULT NULL, + `location_costume_head_low` tinyint(1) unsigned DEFAULT NULL, + `location_costume_garment` tinyint(1) unsigned DEFAULT NULL, + `location_ammo` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_armor` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_weapon` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_shield` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_shoes` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_right_accessory` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_left_accessory` tinyint(1) unsigned DEFAULT NULL, `weapon_level` tinyint(1) unsigned DEFAULT NULL, - `equip_level` varchar(10) DEFAULT NULL, + `equip_level_min` tinyint(3) unsigned DEFAULT NULL, + `equip_level_max` tinyint(3) unsigned DEFAULT NULL, `refineable` tinyint(1) unsigned DEFAULT NULL, `view` smallint(5) unsigned DEFAULT NULL, + `alias_name` varchar(50) DEFAULT NULL, + `flag_buyingstore` tinyint(1) unsigned DEFAULT NULL, + `flag_deadbranch` tinyint(1) unsigned DEFAULT NULL, + `flag_container` tinyint(1) unsigned DEFAULT NULL, + `flag_uniqueid` tinyint(1) unsigned DEFAULT NULL, + `flag_bindonequip` tinyint(1) unsigned DEFAULT NULL, + `flag_dropannounce` tinyint(1) unsigned DEFAULT NULL, + `flag_noconsume` tinyint(1) unsigned DEFAULT NULL, + `flag_dropeffect` varchar(20) DEFAULT NULL, + `delay_duration` bigint(20) unsigned DEFAULT NULL, + `delay_status` varchar(30) DEFAULT NULL, + `stack_amount` smallint(5) unsigned DEFAULT NULL, + `stack_inventory` tinyint(1) unsigned DEFAULT NULL, + `stack_cart` tinyint(1) unsigned DEFAULT NULL, + `stack_storage` tinyint(1) unsigned DEFAULT NULL, + `stack_guildstorage` tinyint(1) unsigned DEFAULT NULL, + `nouse_override` smallint(5) unsigned DEFAULT NULL, + `nouse_sitting` tinyint(1) unsigned DEFAULT NULL, + `trade_override` smallint(5) unsigned DEFAULT NULL, + `trade_nodrop` tinyint(1) unsigned DEFAULT NULL, + `trade_notrade` tinyint(1) unsigned DEFAULT NULL, + `trade_tradepartner` tinyint(1) unsigned DEFAULT NULL, + `trade_nosell` tinyint(1) unsigned DEFAULT NULL, + `trade_nocart` tinyint(1) unsigned DEFAULT NULL, + `trade_nostorage` tinyint(1) unsigned DEFAULT NULL, + `trade_noguildstorage` tinyint(1) unsigned DEFAULT NULL, + `trade_nomail` tinyint(1) unsigned DEFAULT NULL, + `trade_noauction` tinyint(1) unsigned DEFAULT NULL, `script` text, `equip_script` text, `unequip_script` text, PRIMARY KEY (`id`), - UNIQUE INDEX `UniqueAegisName` (`name_english`) + UNIQUE INDEX `UniqueAegisName` (`name_aegis`) ) ENGINE=MyISAM; -# Items Additional Database -# -# Structure of Database: -#REPLACE INTO `item_db2_re` VALUES ( ID,'AegisName','Name',Type,Buy,Sell,Weight,'ATK[:MATK]',DEF,Range,Slots,Job,Class,Gender,Loc,wLV,'eLV[:maxLevel]',Refineable,View,'Script','OnEquip_Script','OnUnequip_Script'); -# # THQ Quest Items #============================================================= -#REPLACE INTO `item_db2_re` VALUES (7950,'THG_Membership','THG Membership',3,NULL,10,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#REPLACE INTO `item_db2_re` VALUES (7951,'Token_Bag','Token Bag',3,NULL,10,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#REPLACE INTO `item_db2_re` VALUES (1998,'Jeramiah\'s_Jur','Jeramiah\'s Jur',3,NULL,10,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#REPLACE INTO `item_db2_re` VALUES (1999,'Zed\'s_Staff','Zed\'s Staff',3,NULL,10,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +REPLACE INTO `item_db2_re` (`id`,`name_aegis`,`name_english`,`type`,`price_sell`,`weight`,`alias_name`) VALUES (1998,'Jeramiah\'s_Jur','Jeramiah\'s Jur','Etc',10,10,'Jur'); +REPLACE INTO `item_db2_re` (`id`,`name_aegis`,`name_english`,`type`,`price_sell`,`weight`,`alias_name`) VALUES (1999,'Zed\'s_Staff','Zed\'s Staff','Etc',10,10,'Staff_Of_Soul'); +REPLACE INTO `item_db2_re` (`id`,`name_aegis`,`name_english`,`type`,`price_sell`,`weight`,`alias_name`) VALUES (7950,'THG_Membership','THG Membership','Etc',10,10,'Foolishness_Of_Blind'); +REPLACE INTO `item_db2_re` (`id`,`name_aegis`,`name_english`,`type`,`price_sell`,`weight`,`alias_name`) VALUES (7951,'Token_Bag','Token Bag','Etc',10,10,'Leather_Bag_Of_Infinity'); # Official Event Items that had their Effects removed after the event was completed -#REPLACE INTO `item_db2_re` VALUES (585,'Wurst','Brusti',11,2,NULL,40,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(15,20),0; itemskill "PR_MAGNIFICAT",3;',NULL,NULL); -#REPLACE INTO `item_db2_re` VALUES (679,'Gold_Pill','Pilule',0,5000,NULL,300,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal 50,50;',NULL,NULL); +#============================================================= +REPLACE INTO `item_db2_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (585,'Wurst','Brusti','Delayconsume',2,40,'itemheal rand(15,20),0; itemskill "PR_MAGNIFICAT",3;'); +REPLACE INTO `item_db2_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (679,'Gold_Pill','Pilule','Healing',5000,300,'percentheal 50,50;'); +REPLACE INTO `item_db2_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2681,'Republic_Ring','Republic Anniversary Ring','Armor',20,100,true,true,'bonus bAllStats,3;'); +REPLACE INTO `item_db2_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5134,'Pumpkin_Hat','Pumpkin-Head','Armor',20,200,2,true,true,206,'bonus2 bSubRace,RC_Demon,5;'); +REPLACE INTO `item_db2_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5136,'Santa\'s_Hat_','Louise\'s Santa Hat','Armor',20,100,3,true,true,20,'bonus bMdef,1; bonus bLuk,1; bonus3 bAutoSpellWhenHit,"AL_HEAL",3,50; bonus3 bAutoSpellWhenHit,"AL_BLESSING",10,50;'); +REPLACE INTO `item_db2_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5145,'Carnival_Joker_Jester','Carnival Jester','Armor',10,100,true,true,89,'bonus bAllStats,3;'); +REPLACE INTO `item_db2_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5147,'Baseball_Cap','Baseball Cap','Armor',200,3,true,true,216,'bonus2 bExpAddRace,RC_Boss,50; bonus2 bExpAddRace,RC_NonBoss,50;'); +REPLACE INTO `item_db2_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5201,'Party_Hat_B','2nd Anniversary Party Hat','Armor',20,300,3,true,true,144,'bonus bAllStats,3;'); +REPLACE INTO `item_db2_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5202,'Pumpkin_Hat_','Pumpkin Hat','Armor',20,200,2,true,true,206,'bonus bAllStats,2; bonus2 bSubRace,RC_Demon,5; bonus3 bAddMonsterDropItem,529,RC_DemiHuman,1500;'); +REPLACE INTO `item_db2_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`,`script`) VALUES (5204,'Event_Pierrot_Nose','Rudolf\'s Red Nose','Armor',20,100,true,49,'bonus2 bResEff,Eff_Blind,3000; bonus2 bAddMonsterDropItem,12130,30;'); +REPLACE INTO `item_db2_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5264,'Aussie_Flag_Hat','Australian Flag Hat','Armor',20,500,4,true,true,304,'bonus bAllStats,2;'); +REPLACE INTO `item_db2_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5356,'Pumpkin_Hat_H','Pumpkin Hat','Armor',20,200,2,true,true,206,'bonus bAllStats,2; bonus2 bSubRace,RC_Demon,5; bonus2 bMagicAddRace,RC_Demon,5;'); +REPLACE INTO `item_db2_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5384,'Santa_Hat_1','Twin Pompom By JB','Armor',20,200,2,1,true,20,true,390,'bonus bLuk,3; bonus2 bResEff,Eff_Curse,2000; bonus bVariableCastrate,-2; bonus bAspdRate,4; bonus2 bAddMonsterDropItem,539,100; bonus2 bAddMonsterDropItem,529,200; bonus2 bAddMonsterDropItem,530,200; autobonus "{ bonus bCritical,10; }",10,5000;'); +REPLACE INTO `item_db2_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_low`,`view`,`script`) VALUES (5811,'Santa_Beard','Santa Beard','Armor',20,100,5,true,25,'bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5;'); +REPLACE INTO `item_db2_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (11702,'Moon_Cookie','Moon Cookie','Delayconsume',10,'sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_HALLUCINATION; itemskill "AL_BLESSING",7;'); +REPLACE INTO `item_db2_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12131,'Lucky_Potion','Lucky Potion','Healing',2,100,'sc_start SC_LUKFOOD,180000,15;'); +REPLACE INTO `item_db2_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12143,'Red_Can','Red Can','Usable',50000,300,'percentheal 25,25;'); -#REPLACE INTO `item_db2_re` VALUES (2681,'Republic_Ring','Republic Anniversary Ring',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,136,NULL,0,0,0,'bonus bAllStats,3;',NULL,NULL); - -#REPLACE INTO `item_db2_re` VALUES (5134,'Pumpkin_Hat','Pumpkin-Head',4,20,NULL,200,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,206,'bonus2 bSubRace,RC_Demon,5;',NULL,NULL); -#REPLACE INTO `item_db2_re` VALUES (5136,'Santa\'s_Hat_','Louise\'s Santa Hat',4,20,NULL,100,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,20,'bonus bMdef,1; bonus bLuk,1; bonus3 bAutoSpellWhenHit,"AL_HEAL",3,50; bonus3 bAutoSpellWhenHit,"AL_BLESSING",10,50;',NULL,NULL); -#REPLACE INTO `item_db2_re` VALUES (5145,'Carnival_Joker_Jester','Carnival Jester',4,10,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,89,'bonus bAllStats,3;',NULL,NULL); -#REPLACE INTO `item_db2_re` VALUES (5147,'Baseball_Cap','Baseball Cap',4,0,NULL,200,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,216,'bonus2 bExpAddRace,RC_Boss,50; bonus2 bExpAddRace,RC_NonBoss,50;',NULL,NULL); -#REPLACE INTO `item_db2_re` VALUES (5201,'Party_Hat_B','2nd Anniversary Party Hat',4,20,NULL,300,NULL,3,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,144,'bonus bAllStats,3;',NULL,NULL); -#REPLACE INTO `item_db2_re` VALUES (5202,'Pumpkin_Hat_','Pumpkin Hat',4,20,NULL,200,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,206,'bonus bAllStats,2; bonus2 bSubRace,RC_Demon,5; bonus3 bAddMonsterDropItem,529,RC_DemiHuman,1500;',NULL,NULL); -#REPLACE INTO `item_db2_re` VALUES (5204,'Event_Pierrot_Nose','Rudolf\'s Red Nose',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,7,2,1,NULL,0,0,49,'bonus2 bResEff,Eff_Blind,3000; bonus2 bAddMonsterDropItem,12130,30;',NULL,NULL); -#REPLACE INTO `item_db2_re` VALUES (5264,'Aussie_Flag_Hat','Australian Flag Hat',4,20,NULL,500,NULL,4,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,304,'bonus bAllStats,2;',NULL,NULL); -#REPLACE INTO `item_db2_re` VALUES (5356,'Pumpkin_Hat_H','Pumpkin Hat',4,20,NULL,200,NULL,2,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,206,'bonus bAllStats,2; bonus2 bSubRace,RC_Demon,5; bonus2 bMagicAddRace,RC_Demon,5;',NULL,NULL); -#REPLACE INTO `item_db2_re` VALUES (5811,'Santa_Beard','Santa Beard',4,20,NULL,100,NULL,5,NULL,0,0xFFFFFFFF,7,2,1,NULL,0,0,25,'bonus2 bSubRace,RC_Brute,5;',NULL,NULL); - -#REPLACE INTO `item_db2_re` VALUES (11702,'Moon_Cookie','Moon Cookie',11,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination; itemskill "AL_BLESSING",7;',NULL,NULL); -#REPLACE INTO `item_db2_re` VALUES (12131,'Lucky_Potion','Lucky Potion',0,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_LUKFood,180000,15;',NULL,NULL); -#REPLACE INTO `item_db2_re` VALUES (12143,'Red_Can','Red Can',2,50000,NULL,300,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal 25,25;',NULL,NULL); -#Event effect: Summon monster? Probably Rice_Cake. x_x -#REPLACE INTO `item_db2_re` VALUES (12199,'Rice_Scroll','Rice Scroll',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#REPLACE INTO `item_db2_re` VALUES (12200,'Event_Cake','Event Cake',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'itemskill "PR_MAGNIFICAT",3;',NULL,NULL); -#REPLACE INTO `item_db2_re` VALUES (12238,'New_Year_Rice_Cake_1','New Year Rice Cake',0,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal 20,15; sc_start SC_STRFood,1200000,3; sc_start SC_INTFood,1200000,3; sc_start SC_LUKFood,1200000,3; sc_start SC_SpeedUp1,5000,0;',NULL,NULL); -#REPLACE INTO `item_db2_re` VALUES (12239,'New_Year_Rice_Cake_2','New Year Rice Cake',0,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'percentheal 20,15; sc_start SC_DEXFood,1200000,3; sc_start SC_AGIFood,1200000,3; sc_start SC_VITFood,1200000,3; sc_start SC_SpeedUp1,5000,0;',NULL,NULL); +# Event effect: Summon monster? Probably Rice_Cake. x_x +#============================================================= +REPLACE INTO `item_db2_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (12199,'Rice_Scroll','Rice Scroll','Usable'); +REPLACE INTO `item_db2_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12200,'Event_Cake','Event Cake','Usable',20,50,'itemskill "PR_MAGNIFICAT",3;'); +REPLACE INTO `item_db2_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12238,'New_Year_Rice_Cake_1','New Year Rice Cake','Healing',20,100,'percentheal 20,15; sc_start SC_STRFOOD,1200000,3; sc_start SC_INTFOOD,1200000,3; sc_start SC_LUKFOOD,1200000,3; sc_start SC_SPEEDUP1,5000,0;'); +REPLACE INTO `item_db2_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12239,'New_Year_Rice_Cake_2','New Year Rice Cake','Healing',20,100,'percentheal 20,15; sc_start SC_DEXFOOD,1200000,3; sc_start SC_AGIFOOD,1200000,3; sc_start SC_VITFOOD,1200000,3; sc_start SC_SPEEDUP1,5000,0;'); # iRO St. Patrick's Day Event 2008 #============================================================= -#REPLACE INTO `item_db2_re` VALUES (12715,'Black_Treasure_Chest','Black Treasure Chest',2,0,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_08stpattyseventbox";',NULL,NULL); +REPLACE INTO `item_db2_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`alias_name`) VALUES (7915,'Copper_Coin_','Bronze Coin','Etc',10,'Copper_Coin'); # iRO Valentine's Day Event 2009 #============================================================= -#REPLACE INTO `item_db2_re` VALUES (12742,'Valentine_Gift_Box_M','Valentine Gift Box',2,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 7946,1;',NULL,NULL); -#REPLACE INTO `item_db2_re` VALUES (12743,'Valentine_Gift_Box_F','Valentine Gift Box',2,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 7947,1;',NULL,NULL); -#REPLACE INTO `item_db2_re` VALUES (12744,'Chocolate_Box','Chocolate Box',2,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 558,1;',NULL,NULL); -#REPLACE INTO `item_db2_re` VALUES (14466,'Valentine\'s_Emblem_Box','Valentine\'s Emblem Box',2,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'getitem 5817,1;',NULL,NULL); -#REPLACE INTO `item_db2_re` VALUES (7946,'Gold_Ring_Of_Valentine','Gold Ring Of Valentine',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#REPLACE INTO `item_db2_re` VALUES (7947,'Silver_Ring_Of_Valentine','Silver Ring Of Valentine',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#REPLACE INTO `item_db2_re` VALUES (7948,'Box','Box',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#REPLACE INTO `item_db2_re` VALUES (5817,'Valentine\'s_Emblem','Valentine\'s Emblem',4,10,NULL,0,NULL,3,NULL,0,0xFFFFFFFF,7,2,136,NULL,0,0,0,'bonus bAtkRate,3; bonus bMatkRate,3; bonus bAllStats,2; bonus bFlee,10; bonus bAspd,1; bonus bMdef,3; bonus2 bSkillAtk,"AL_HEAL",10; bonus2 bSkillHeal,"AL_HEAL",10; bonus2 bSkillHeal,"AM_POTIONPITCHER",10; bonus2 bAddItemHealRate,IG_Potion,10;',NULL,NULL); +REPLACE INTO `item_db2_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`alias_name`) VALUES (7916,'Silver_Coin_','Silver Coin','Etc',10,'Silver_Coin'); +REPLACE INTO `item_db2_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`alias_name`,`script`) VALUES (12715,'Black_Treasure_Chest','Black Treasure Chest','Usable',200,'Treasure_Box_','callfunc "F_08stpattyseventbox";'); +REPLACE INTO `item_db2_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (5817,'Valentine\'s_Emblem','Valentine\'s Emblem','Armor',10,3,true,true,'bonus bAtkRate,3; bonus bMatkRate,3; bonus bAllStats,2; bonus bFlee,10; bonus bAspd,1; bonus bMdef,3; bonus2 bSkillAtk,"AL_HEAL",10; bonus2 bSkillHeal,"AL_HEAL",10; bonus2 bSkillHeal,"AM_POTIONPITCHER",10; bonus2 bAddItemGroupHealRate,IG_Potion,10;'); +REPLACE INTO `item_db2_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (7946,'Gold_Ring_Of_Valentine','Gold Ring Of Valentine','Etc',10); +REPLACE INTO `item_db2_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (7947,'Silver_Ring_Of_Valentine','Silver Ring Of Valentine','Etc',10); +REPLACE INTO `item_db2_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7948,'Box','Box','Etc',10,10); +REPLACE INTO `item_db2_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (12742,'Valentine_Gift_Box_M','Valentine Gift Box','Usable',10,'getitem 7946,1;'); +REPLACE INTO `item_db2_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (12743,'Valentine_Gift_Box_F','Valentine Gift Box','Usable',10,'getitem 7947,1;'); +REPLACE INTO `item_db2_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (12744,'Chocolate_Box','Chocolate Box','Usable',10,'getitem 558,1;'); +REPLACE INTO `item_db2_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (14466,'Valentine\'s_Emblem_Box','Valentine\'s Emblem Box','Usable',10,'getitem 5817,1;'); # iRO Halloween Event 2009 #============================================================= -#REPLACE INTO `item_db2_re` VALUES (5668,'Weird_Pumpkin_Hat','Weird Pumpkin Hat',4,20,NULL,0,NULL,5,NULL,0,0xFFFFFFFF,7,2,256,NULL,0,1,206,'bonus bMdef,5; bonus2 bAddMonsterDropItem,12192,2500;',NULL,NULL); -#REPLACE INTO `item_db2_re` VALUES (6298,'Crushed_Pumpkin','Crushed Pumpkin',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#REPLACE INTO `item_db2_re` VALUES (6299,'Worn_Fabric','Worn Fabric',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); +REPLACE INTO `item_db2_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5668,'Weird_Pumpkin_Hat','Weird Pumpkin Hat','Armor',20,5,true,true,206,'bonus bMdef,5; bonus2 bAddMonsterDropItem,12192,2500;'); +REPLACE INTO `item_db2_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6298,'Crushed_Pumpkin','Crushed Pumpkin','Etc'); +REPLACE INTO `item_db2_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6299,'Worn_Fabric','Worn Fabric','Etc'); # Old Tuxedo and Wedding Dress, will display the outfit when worn. -#================================================================== -#REPLACE INTO `item_db2_re` VALUES (2338,'Wedding_Dress','Wedding Dress',4,43000,NULL,500,NULL,0,NULL,0,0xFFFFFFFE,7,0,16,NULL,0,1,0,NULL,'setoption Option_Wedding,1;','setoption Option_Wedding,0;'); -#REPLACE INTO `item_db2_re` VALUES (7170,'Tuxedo','Tuxedo',4,43000,NULL,10,NULL,0,NULL,0,0xFFFFFFFE,7,1,16,NULL,0,1,0,NULL,'setoption Option_Wedding,1;','setoption Option_Wedding,0;'); +#============================================================= +REPLACE INTO `item_db2_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`location_armor`,`refineable`,`equip_script`,`unequip_script`) VALUES (2338,'Wedding_Dress','Wedding Dress','Armor',43000,500,true,false,true,true,'sc_start SC_WEDDING,INFINITE_TICK,0;','sc_end SC_WEDDING;'); +REPLACE INTO `item_db2_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`gender`,`location_armor`,`refineable`,`equip_script`,`unequip_script`) VALUES (7170,'Tuxedo','Tuxedo','Armor',43000,10,true,false,'Male',true,true,'sc_start SC_WEDDING,INFINITE_TICK,0;','sc_end SC_WEDDING;'); +# Non-kRO Eden Group Mark effect +#============================================================= +REPLACE INTO `item_db2_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (22508,'Para_Team_Mark_','Eden Group Mark','Delayconsume','unitskilluseid getcharid(3),"AL_TELEPORT",3;'); diff --git a/sql-files/item_db_equip.sql b/sql-files/item_db_equip.sql new file mode 100644 index 0000000000..c20820045a --- /dev/null +++ b/sql-files/item_db_equip.sql @@ -0,0 +1,2128 @@ +# +# Table structure for table `item_db` +# + +DROP TABLE IF EXISTS `item_db`; +CREATE TABLE `item_db` ( + `id` int(10) unsigned NOT NULL DEFAULT '0', + `name_aegis` varchar(50) NOT NULL DEFAULT '', + `name_english` varchar(50) NOT NULL DEFAULT '', + `type` varchar(20) DEFAULT NULL, + `subtype` varchar(20) DEFAULT NULL, + `price_buy` mediumint(8) unsigned DEFAULT NULL, + `price_sell` mediumint(8) unsigned DEFAULT NULL, + `weight` smallint(5) unsigned DEFAULT NULL, + `attack` smallint(5) unsigned DEFAULT NULL, + `defense` smallint(5) unsigned DEFAULT NULL, + `range` tinyint(2) unsigned DEFAULT NULL, + `slots` tinyint(2) unsigned DEFAULT NULL, + `job_all` tinyint(1) unsigned DEFAULT NULL, + `job_acolyte` tinyint(1) unsigned DEFAULT NULL, + `job_alchemist` tinyint(1) unsigned DEFAULT NULL, + `job_archer` tinyint(1) unsigned DEFAULT NULL, + `job_assassin` tinyint(1) unsigned DEFAULT NULL, + `job_barddancer` tinyint(1) unsigned DEFAULT NULL, + `job_blacksmith` tinyint(1) unsigned DEFAULT NULL, + `job_crusader` tinyint(1) unsigned DEFAULT NULL, + `job_gunslinger` tinyint(1) unsigned DEFAULT NULL, + `job_hunter` tinyint(1) unsigned DEFAULT NULL, + `job_knight` tinyint(1) unsigned DEFAULT NULL, + `job_mage` tinyint(1) unsigned DEFAULT NULL, + `job_merchant` tinyint(1) unsigned DEFAULT NULL, + `job_monk` tinyint(1) unsigned DEFAULT NULL, + `job_ninja` tinyint(1) unsigned DEFAULT NULL, + `job_novice` tinyint(1) unsigned DEFAULT NULL, + `job_priest` tinyint(1) unsigned DEFAULT NULL, + `job_rogue` tinyint(1) unsigned DEFAULT NULL, + `job_sage` tinyint(1) unsigned DEFAULT NULL, + `job_soullinker` tinyint(1) unsigned DEFAULT NULL, + `job_stargladiator` tinyint(1) unsigned DEFAULT NULL, + `job_supernovice` tinyint(1) unsigned DEFAULT NULL, + `job_swordman` tinyint(1) unsigned DEFAULT NULL, + `job_taekwon` tinyint(1) unsigned DEFAULT NULL, + `job_thief` tinyint(1) unsigned DEFAULT NULL, + `job_wizard` tinyint(1) unsigned DEFAULT NULL, + `class_all` tinyint(1) unsigned DEFAULT NULL, + `class_normal` tinyint(1) unsigned DEFAULT NULL, + `class_upper` tinyint(1) unsigned DEFAULT NULL, + `class_baby` tinyint(1) unsigned DEFAULT NULL, + `gender` varchar(10) DEFAULT NULL, + `location_head_top` tinyint(1) unsigned DEFAULT NULL, + `location_head_mid` tinyint(1) unsigned DEFAULT NULL, + `location_head_low` tinyint(1) unsigned DEFAULT NULL, + `location_armor` tinyint(1) unsigned DEFAULT NULL, + `location_right_hand` tinyint(1) unsigned DEFAULT NULL, + `location_left_hand` tinyint(1) unsigned DEFAULT NULL, + `location_garment` tinyint(1) unsigned DEFAULT NULL, + `location_shoes` tinyint(1) unsigned DEFAULT NULL, + `location_right_accessory` tinyint(1) unsigned DEFAULT NULL, + `location_left_accessory` tinyint(1) unsigned DEFAULT NULL, + `location_costume_head_top` tinyint(1) unsigned DEFAULT NULL, + `location_costume_head_mid` tinyint(1) unsigned DEFAULT NULL, + `location_costume_head_low` tinyint(1) unsigned DEFAULT NULL, + `location_costume_garment` tinyint(1) unsigned DEFAULT NULL, + `location_ammo` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_armor` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_weapon` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_shield` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_shoes` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_right_accessory` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_left_accessory` tinyint(1) unsigned DEFAULT NULL, + `weapon_level` tinyint(1) unsigned DEFAULT NULL, + `equip_level_min` tinyint(3) unsigned DEFAULT NULL, + `equip_level_max` tinyint(3) unsigned DEFAULT NULL, + `refineable` tinyint(1) unsigned DEFAULT NULL, + `view` smallint(5) unsigned DEFAULT NULL, + `alias_name` varchar(50) DEFAULT NULL, + `flag_buyingstore` tinyint(1) unsigned DEFAULT NULL, + `flag_deadbranch` tinyint(1) unsigned DEFAULT NULL, + `flag_container` tinyint(1) unsigned DEFAULT NULL, + `flag_uniqueid` tinyint(1) unsigned DEFAULT NULL, + `flag_bindonequip` tinyint(1) unsigned DEFAULT NULL, + `flag_dropannounce` tinyint(1) unsigned DEFAULT NULL, + `flag_noconsume` tinyint(1) unsigned DEFAULT NULL, + `flag_dropeffect` varchar(20) DEFAULT NULL, + `delay_duration` bigint(20) unsigned DEFAULT NULL, + `delay_status` varchar(30) DEFAULT NULL, + `stack_amount` smallint(5) unsigned DEFAULT NULL, + `stack_inventory` tinyint(1) unsigned DEFAULT NULL, + `stack_cart` tinyint(1) unsigned DEFAULT NULL, + `stack_storage` tinyint(1) unsigned DEFAULT NULL, + `stack_guildstorage` tinyint(1) unsigned DEFAULT NULL, + `nouse_override` smallint(5) unsigned DEFAULT NULL, + `nouse_sitting` tinyint(1) unsigned DEFAULT NULL, + `trade_override` smallint(5) unsigned DEFAULT NULL, + `trade_nodrop` tinyint(1) unsigned DEFAULT NULL, + `trade_notrade` tinyint(1) unsigned DEFAULT NULL, + `trade_tradepartner` tinyint(1) unsigned DEFAULT NULL, + `trade_nosell` tinyint(1) unsigned DEFAULT NULL, + `trade_nocart` tinyint(1) unsigned DEFAULT NULL, + `trade_nostorage` tinyint(1) unsigned DEFAULT NULL, + `trade_noguildstorage` tinyint(1) unsigned DEFAULT NULL, + `trade_nomail` tinyint(1) unsigned DEFAULT NULL, + `trade_noauction` tinyint(1) unsigned DEFAULT NULL, + `script` text, + `equip_script` text, + `unequip_script` text, + PRIMARY KEY (`id`), + UNIQUE INDEX `UniqueAegisName` (`name_aegis`) +) ENGINE=MyISAM; + +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1101,'Sword','Sword','Weapon','1hSword',100,500,25,1,3,true,true,true,true,true,true,true,true,true,true,true,true,1,2,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1102,'Sword_','Sword','Weapon','1hSword',100,500,25,1,4,true,true,true,true,true,true,true,true,true,true,true,true,1,2,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1103,'Sword__','Sword','Weapon','1hSword',100,500,25,1,true,true,true,true,true,true,true,true,true,true,true,true,1,2,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1104,'Falchion','Falchion','Weapon','1hSword',1500,600,39,1,3,true,true,true,true,true,true,true,true,true,true,true,true,1,2,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1105,'Falchion_','Falchion','Weapon','1hSword',1500,600,39,1,4,true,true,true,true,true,true,true,true,true,true,true,true,1,2,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1106,'Falchion__','Falchion','Weapon','1hSword',1500,600,39,1,true,true,true,true,true,true,true,true,true,true,true,true,1,2,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1107,'Blade','Blade','Weapon','1hSword',2900,700,53,1,3,true,true,true,true,true,true,true,true,true,true,true,true,1,2,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1108,'Blade_','Blade','Weapon','1hSword',2900,700,53,1,4,true,true,true,true,true,true,true,true,true,true,true,true,1,2,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1109,'Blade__','Blade','Weapon','1hSword',2900,700,53,1,true,true,true,true,true,true,true,true,true,true,true,true,1,2,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1110,'Lapier','Rapier','Weapon','1hSword',10000,500,70,1,2,true,true,true,true,true,true,true,true,true,true,true,true,2,14,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1111,'Lapier_','Rapier','Weapon','1hSword',10000,500,70,1,3,true,true,true,true,true,true,true,true,true,true,true,true,2,14,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1112,'Lapier__','Rapier','Weapon','1hSword',10000,500,70,1,true,true,true,true,true,true,true,true,true,true,true,true,2,14,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1113,'Scimiter','Scimitar','Weapon','1hSword',17000,700,85,1,2,true,true,true,true,true,true,true,true,true,true,true,true,2,14,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1114,'Scimiter_','Scimitar','Weapon','1hSword',17000,700,85,1,3,true,true,true,true,true,true,true,true,true,true,true,true,2,14,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1115,'Scimiter__','Scimitar','Weapon','1hSword',17000,700,85,1,3,true,true,true,true,true,true,true,true,true,true,true,true,2,14,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1116,'Katana','Katana','Weapon','2hSword',2000,1000,60,1,3,true,true,true,true,true,1,4,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1117,'Katana_','Katana','Weapon','2hSword',2000,1000,60,1,4,true,true,true,true,true,1,4,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1118,'Katana__','Katana','Weapon','2hSword',2000,1000,60,1,true,true,true,true,true,1,4,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1119,'Tsurugi','Tsurugi','Weapon','1hSword',51000,1200,130,1,1,true,true,true,true,true,true,true,true,true,true,3,27,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1120,'Tsurugi_','Tsurugi','Weapon','1hSword',51000,1200,130,1,2,true,true,true,true,true,true,true,true,true,true,3,27,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1121,'Tsurugi__','Tsurugi','Weapon','1hSword',51000,1200,130,1,true,true,true,true,true,true,true,true,true,true,3,27,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1122,'Ring_Pommel_Saber','Ring Pommel Saber','Weapon','1hSword',24000,900,100,1,2,true,true,true,true,true,true,true,true,true,true,2,14,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1123,'Haedonggum','Haedonggum','Weapon','1hSword',50000,900,120,1,1,true,true,true,true,true,true,true,true,true,true,3,27,true,'bonus bInt,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1124,'Orcish_Sword','Orcish Sword','Weapon','1hSword',20,800,90,1,true,true,true,true,true,true,true,true,true,true,true,true,3,5,true,'bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1125,'Ring_Pommel_Saber_','Ring Pommel Saber','Weapon','1hSword',24000,900,100,1,3,true,true,true,true,true,true,true,true,true,true,2,14,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1126,'Saber','Saber','Weapon','1hSword',49000,1000,115,1,2,true,true,true,true,true,true,true,true,true,true,3,27,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1127,'Saber_','Saber','Weapon','1hSword',49000,1000,115,1,3,true,true,true,true,true,true,true,true,true,true,3,27,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1128,'Hae_Dong_Gum_','Haedonggum','Weapon','1hSword',50000,900,120,1,2,true,true,true,true,true,true,true,true,true,true,3,27,true,'bonus bInt,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1129,'Flamberge','Flamberge','Weapon','1hSword',60000,1500,150,1,true,true,true,3,27,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1130,'Nagan','Nagan','Weapon','1hSword',20,500,120,1,true,true,true,true,true,true,true,true,true,true,4,40,true,'skill "TF_DOUBLE",5; bonus bDoubleRate,25; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1131,'Ice_Falchon','Ice Falchion','Weapon','1hSword',20,600,100,1,true,true,true,true,true,true,true,true,true,true,4,40,true,'bonus bAtkEle,Ele_Water; bonus2 bAddEff,Eff_Freeze,500; bonus2 bAddEff2,Eff_Freeze,10; skill "MG_COLDBOLT",3; bonus3 bAutoSpell,"MG_COLDBOLT",3,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1132,'Edge','Edge','Weapon','1hSword',20,700,115,1,true,true,true,true,true,true,true,true,true,true,4,40,true,'bonus2 bAddEff,Eff_Curse,30; bonus2 bComaClass,Class_Normal,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1133,'Fire_Brand','Fireblend','Weapon','1hSword',20,500,100,1,true,true,true,true,true,true,true,true,true,true,4,40,true,'bonus bAtkEle,Ele_Fire; skill "MG_FIREBOLT",3; bonus3 bAutoSpell,"MG_FIREBOLT",3,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1134,'Scissores_Sword','Caesar\'s Sword','Weapon','1hSword',20,700,140,1,true,true,true,true,true,true,true,true,true,true,4,40,true,'bonus2 bAddRace,RC_Plant,25; bonus bIgnoreDefRace,RC_Plant;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1135,'Cutlas','Cutlus','Weapon','1hSword',20,900,150,1,true,true,true,true,true,true,true,true,true,true,4,40,true,'skill "SM_BASH",5; bonus bStr,2; bonus bDef,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1136,'Solar_Sword','Solar Sword','Weapon','1hSword',20,1200,85,1,true,true,true,true,true,true,true,true,true,true,4,40,true,'bonus bAtkEle,Ele_Fire; bonus2 bHPDrainRate,1000,1; bonus2 bSPLossRate,15,10000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1137,'Excalibur','Excalibur','Weapon','1hSword',20,1200,150,1,true,true,true,true,true,true,true,true,true,true,4,40,true,'bonus bInt,5; bonus bLuk,10; bonus bDex,-1; bonus bAtkEle,Ele_Holy;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1138,'Mysteltainn_','Mysteltainn','Weapon','1hSword',20,1000,170,1,true,true,true,true,true,true,true,true,true,true,4,40,true,'bonus bAtkEle,Ele_Dark; bonus2 bAddEle,Ele_Ghost,15; bonus3 bAutoSpell,"MG_STONECURSE",3,100; bonus2 bAddEff,Eff_Stone,10; bonus bDex,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1139,'Tale_Fing_','Tirfing','Weapon','1hSword',20,1000,200,1,true,true,true,true,true,true,true,true,true,true,4,40,true,'bonus bAtkEle,Ele_Dark; bonus2 bHPLossRate,35,10000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1140,'Byeorrun_Gum','Byeollungum','Weapon','1hSword',20,900,150,1,true,true,true,true,true,true,true,true,true,true,4,40,true,'bonus2 bSubClass,Class_Normal,-10; bonus2 bAddClass,Class_Boss,50; bonus bAllStats,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1141,'Immaterial_Sword','Immaterial Sword','Weapon','1hSword',20,900,140,1,true,true,true,true,true,true,true,true,true,true,4,40,true,'bonus bAtkEle,Ele_Ghost; bonus2 bSPVanishRate,30,30; bonus bSPDrainValue,-1; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1142,'Jewel_Sword','Jeweled Sword','Weapon','1hSword',20,2200,104,1,true,true,true,true,true,true,true,true,true,true,3,68,true,'bonus2 bAddMonsterDropItemGroup,IG_Jewel,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1143,'Gaia_Sword','Gaia Sword','Weapon','1hSword',20,2500,140,1,true,true,true,true,true,true,true,true,true,true,3,74,true,'bonus2 bAddMonsterDropItemGroup,IG_Ore,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1144,'Sasimi','Sashimi','Weapon','1hSword',20,1400,75,1,true,true,true,true,true,true,true,true,true,true,3,48,true,'bonus bAtkEle,Ele_Wind; bonus3 bAddMonsterDropItem,544,RC_Fish,4000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1145,'Holy_Avenger','Holy Avenger','Weapon','1hSword',450000,1350,125,1,true,true,3,75,true,'bonus bAtkEle,Ele_Holy; bonus bVit,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_novice`,`job_supernovice`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1146,'Town_Sword','Town Sword','Weapon','1hSword',42000,800,100,1,1,true,true,true,3,30,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_novice`,`job_supernovice`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1147,'Town_Sword_','Town Sword','Weapon','1hSword',42000,800,100,1,2,true,true,true,3,30,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_novice`,`job_supernovice`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1148,'Star_Dust_Blade','Star Dust Blade','Weapon','1hSword',20,1000,140,1,1,true,true,true,4,45,true,'bonus2 bAddEff,Eff_Stun,500; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1149,'Flamberge_','Flamberge','Weapon','1hSword',60000,1500,150,1,2,true,true,true,3,27,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1151,'Slayer','Slayer','Weapon','2hSword',15000,1300,90,1,2,true,true,true,true,true,2,18,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1152,'Slayer_','Slayer','Weapon','2hSword',15000,1300,90,1,3,true,true,true,true,true,2,18,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1153,'Slayer__','Slayer','Weapon','2hSword',15000,1300,90,1,true,true,true,true,true,2,18,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1154,'Bastard_Sword','Bastard Sword','Weapon','2hSword',22500,1600,115,1,2,true,true,true,true,true,2,18,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1155,'Bastard_Sword_','Bastard Sword','Weapon','2hSword',22500,1600,115,1,3,true,true,true,true,true,2,18,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1156,'Bastard_Sword__','Bastard Sword','Weapon','2hSword',22500,1600,115,1,true,true,true,true,true,2,18,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1157,'Two_Hand_Sword','Two-Handed Sword','Weapon','2hSword',60000,2200,160,1,1,true,true,true,true,true,3,33,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1158,'Two_Hand_Sword_','Two-Handed Sword','Weapon','2hSword',60000,2200,160,1,2,true,true,true,true,true,3,33,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1159,'Two_Hand_Sword__','Two-Handed Sword','Weapon','2hSword',60000,2200,160,1,true,true,true,true,true,3,33,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1160,'Broad_Sword','Broad Sword','Weapon','2hSword',65000,2000,140,1,1,true,true,true,true,true,3,33,true,'bonus bDef,5; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1161,'Balmung','Balmung','Weapon','2hSword',20,1000,250,1,true,true,4,48,true,'bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Holy;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1162,'Broad_Sword_','Broad Sword','Weapon','2hSword',65000,2000,140,1,2,true,true,true,true,true,3,33,true,'bonus bDef,5; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1163,'Claymore','Claymore','Weapon','2hSword',74000,2500,180,1,true,true,true,true,3,33,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1164,'Muramasa','Muramasa','Weapon','2hSword',20,1000,155,1,true,true,true,true,true,4,48,true,'bonus bCritical,30; bonus bAspdRate,8; bonus2 bAddEff2,Eff_Curse,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1165,'Masamune','Masamune','Weapon','2hSword',20,1000,200,1,true,true,true,true,true,4,48,true,'bonus bFlee,30; bonus bStr,-5; bonus bAspd,2; bonus bDefRate,-67; bonus bDef2Rate,-67;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1166,'Dragon_Slayer','Dragon Slayer','Weapon','2hSword',20,1300,150,1,true,true,true,true,true,4,48,true,'bonus bIgnoreDefRace,RC_Dragon; bonus2 bAddRace,RC_Dragon,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1167,'Schweizersabel','Schweizersabel','Weapon','2hSword',20,1600,160,1,true,true,true,true,true,4,48,true,'bonus bAtkEle,Ele_Wind; bonus bDef,1; bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",3,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1168,'Zweihander','Zweihander','Weapon','2hSword',20,2200,200,1,true,true,true,true,true,4,48,true,'bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1169,'Executioner_','Executioner','Weapon','2hSword',20,2200,155,1,true,true,true,true,true,4,48,true,'bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player_Human,-10; bonus bAtkEle,Ele_Dark;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1170,'Katzbalger','Katzbalger','Weapon','2hSword',20,2000,175,1,true,true,true,true,true,4,48,true,'bonus bVit,5; bonus bDef,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1171,'Zweihander_','Zweihander','Weapon','2hSword',20,2200,200,1,2,true,true,true,true,true,4,48,true,'bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1172,'Claymore_','Claymore','Weapon','2hSword',74000,2500,180,1,2,true,true,true,true,3,33,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1173,'Muramasa_C','Muramasa','Weapon','2hSword',1,204,1,true,true,true,true,true,4,1,100,true,true,true,true,true,true,true,true,'bonus bCritical,30; bonus bAspdRate,8;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`script`) VALUES (1174,'Executioner_C','Executioner','Weapon','2hSword',2,190,1,true,true,true,true,true,4,'bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player_Human,-10; bonus bAtkEle,Ele_Dark;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1175,'Altas_Weapon','Atlas Weapon','Weapon','2hSword',20,3500,200,1,1,true,true,true,true,true,true,4,55,true,'bonus bCritical,10; if(readparam(bStr)>=80) bonus bBreakArmorRate,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1176,'Muscle_Cutter','Muscle Cutter','Weapon','2hSword',20,2200,160,1,2,true,true,true,true,true,true,4,55,true,'bonus2 bAddEff,Eff_Bleeding,800; bonus3 bAutoSpell,"AL_DECAGI",1,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1177,'Muramash','Muramash','Weapon','2hSword',20,120,1,true,true,true,true,true,1,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1178,'Schweizersabel_','Schweizersabel','Weapon','2hSword',20,1600,160,1,2,true,true,true,true,true,4,48,true,'bonus bAtkEle,Ele_Wind; bonus bDef,1; bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",3,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1179,'Executioner__','Executioner','Weapon','2hSword',20,2200,155,1,1,true,true,true,true,true,4,48,true,'bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player_Human,-10; bonus bAtkEle,Ele_Dark;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1180,'Dragon_Slayer_','Dragon Slayer','Weapon','2hSword',20,1300,150,1,2,true,true,true,true,true,4,48,true,'bonus bIgnoreDefRace,RC_Dragon; bonus2 bAddRace,RC_Dragon,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1181,'Tae_Goo_Lyeon','Tae Goo Lyeon','Weapon','2hSword',20,2000,250,1,2,true,true,true,true,true,true,4,90,true,'bonus bFlee2,10; if(JobLevel>=70) autobonus "{ bonus bBaseAtk,50; }",10,10000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; if(getrefine()>8) { bonus bCastrate,-20; bonus bDelayRate,-20; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1182,'Bloody_Eater','Bloody Eater','Weapon','2hSword',20,1200,200,1,2,true,true,true,true,true,true,4,50,true,'bonus bAtkEle,Ele_Ghost; autobonus "{ bonus bCritical,100; bonus bBaseAtk,50; }",1,5000,0,"{ specialeffect2 EF_FIRESPLASHHIT; }"; bonus bHPGainValue,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1183,'BF_Two_Handed_Sword1','Brave Assaulter\'s Katzbalger','Weapon','2hSword',20,200,1,true,true,true,true,true,3,80,true,100,true,true,true,true,true,true,'bonus bStr,2; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1184,'BF_Two_Handed_Sword2','Valorous Assaulter\'s Katzbalger','Weapon','2hSword',20,200,1,true,true,true,true,true,3,80,true,100,true,true,true,true,true,true,'bonus bCritical,20; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus bCritAtkRate,20; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1185,'Violet_Fear','Violet Fear','Weapon','2hSword',20,2200,275,1,2,true,true,true,true,true,true,4,80,true,'bonus3 bAutoSpell,"WZ_METEOR",3,30; bonus3 bAutoSpell,"WZ_FROSTNOVA",5,50; autobonus "{ bonus bIgnoreDefClass,Class_Normal; }",50,5000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1186,'Death_Guidance','Death Guidance','Weapon','2hSword',20,2000,200,1,2,true,true,true,true,true,true,4,70,true,'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;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1187,'Krieger_Twohand_Sword1','Glorious Claymore','Weapon','2hSword',20,220,1,true,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-3)*(getrefine()-3); bonus2 bAddRace,RC_Player_Human,(getrefine()-3)*(getrefine()-3); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) { bonus3 bAutoSpell,"LK_CONCENTRATION",max(getskilllv("LK_CONCENTRATION"),1),30; bonus3 bAutoSpell,"LK_AURABLADE",max(getskilllv("LK_AURABLADE"),1),30; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1188,'Veteran_Sword','Veteran Sword','Weapon','2hSword',10000,2000,180,1,1,true,true,true,true,true,4,80,true,'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;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1189,'Krasnaya','Krasnaya','Weapon','2hSword',20,3800,200,2,3,true,true,true,true,true,true,2,50,true,'if(readparam(bStr)>=95) { bonus bBaseAtk,20; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_crusader`,`job_knight`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1190,'Claymore_C','Claymore','Weapon','2hSword',220,1,true,true,true,true,3,1,100,true,true,true,true,true,true,true,true,'bonus2 bAddSize,Size_All,40;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1201,'Knife','Knife','Weapon','Dagger',50,400,17,1,3,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,1,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1202,'Knife_','Knife','Weapon','Dagger',50,400,17,1,4,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,1,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1203,'Knife__','Knife','Weapon','Dagger',50,400,17,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,1,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1204,'Cutter','Cutter','Weapon','Dagger',1250,500,30,1,3,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,1,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1205,'Cutter_','Cutter','Weapon','Dagger',1250,500,30,1,4,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,1,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1206,'Cutter__','Cutter','Weapon','Dagger',1250,500,30,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,1,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1207,'Main_Gauche','Main Gauche','Weapon','Dagger',2400,600,43,1,3,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,1,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1208,'Main_Gauche_','Main Gauche','Weapon','Dagger',2400,600,43,1,4,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,1,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1209,'Main_Gauche__','Main Gauche','Weapon','Dagger',2400,600,43,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,1,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1210,'Dirk','Dirk','Weapon','Dagger',8500,500,59,1,2,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,2,12,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1211,'Dirk_','Dirk','Weapon','Dagger',8500,500,59,1,3,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,2,12,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1212,'Dirk__','Dirk','Weapon','Dagger',8500,500,59,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,2,12,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1213,'Dagger','Dagger','Weapon','Dagger',14000,600,73,1,2,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,2,12,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1214,'Dagger_','Dagger','Weapon','Dagger',14000,600,73,1,3,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,2,12,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1215,'Dagger__','Dagger','Weapon','Dagger',14000,600,73,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,2,12,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1216,'Stiletto','Stiletto','Weapon','Dagger',19500,700,87,1,2,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,2,12,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1217,'Stiletto_','Stiletto','Weapon','Dagger',19500,700,87,1,3,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,2,12,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1218,'Stiletto__','Stiletto','Weapon','Dagger',19500,700,87,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,2,12,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1219,'Gladius','Gladius','Weapon','Dagger',43000,700,105,1,2,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,24,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1220,'Gladius_','Gladius','Weapon','Dagger',43000,700,105,1,3,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,24,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1221,'Gladius__','Gladius','Weapon','Dagger',43000,700,105,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,24,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1222,'Damascus','Damascus','Weapon','Dagger',49000,800,118,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,24,true,'bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1223,'Forturn_Sword','Fortune Sword','Weapon','Dagger',20,500,90,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,24,true,'bonus bLuk,5; bonus bFlee2,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1224,'Sword_Breaker','Swordbreaker','Weapon','Dagger',20,1000,70,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bBreakWeaponRate,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1225,'Mail_Breaker','Mailbreaker','Weapon','Dagger',20,1000,70,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bBreakArmorRate,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1226,'Damascus_','Damascus','Weapon','Dagger',49000,800,118,1,2,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,24,true,'bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1227,'Weeder_Knife','Weeder Knife','Weapon','Dagger',20,400,80,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bIgnoreDefRace,RC_Plant; bonus2 bAddRace,RC_Plant,15; bonus2 bSubRace,RC_Plant,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1228,'Combat_Knife','Combat Knife','Weapon','Dagger',20,400,80,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Demon,-10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1229,'Mama\'s_Knife','Kitchen Knife','Weapon','Dagger',20,500,75,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bCritical,30; bonus3 bAddMonsterDropItem,517,RC_Brute,5000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1230,'House_Auger','Ice Pick','Weapon','Dagger',20,600,80,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bDefRatioAtkClass,Class_All;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1231,'Bazerald','Bazerald','Weapon','Dagger',20,500,70,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bAtkEle,Ele_Fire; bonus bInt,5; bonus bMatkRate,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_assassin`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1232,'Assasin_Dagger','Assassin Dagger','Weapon','Dagger',20,600,140,1,true,true,4,36,true,'bonus bMaxHPrate,20; bonus bMaxSPrate,15; bonus bAspdRate,2; bonus bAtkEle,Ele_Dark;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1233,'Exercise','Exorciser','Weapon','Dagger',20,700,90,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bIgnoreDefRace,RC_Demon; bonus2 bSubRace,RC_Demon,5; bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player_Human,-10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1234,'Moonlight_Sword','Moonlight Dagger','Weapon','Dagger',20,700,50,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bMaxSPrate,10; bonus bSPDrainValue,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1235,'Azoth','Azoth','Weapon','Dagger',20,700,110,1,true,true,4,36,true,'bonus bClassChange,300;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1236,'Sucsamad','Sucsamad','Weapon','Dagger',20,800,140,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Wind,10; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1237,'Grimtooth_','Grimtooth','Weapon','Dagger',20,800,180,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bFlee,10; bonus bFlee2,5; bonus bDefRate,-50; bonus bDef2Rate,-50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1238,'Zeny_Knife','Zeny Knife','Weapon','Dagger',20,1200,64,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,70,true,'bonus2 bGetZenyNum,100,40;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1239,'Poison_Knife','Poison Knife','Weapon','Dagger',20,800,64,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,65,true,'bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,3000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1240,'Princess_Knife','Princess Knife','Weapon','Dagger',20,400,84,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,1,true,'bonus bAllStats,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1241,'Cursed_Dagger','Cursed Dagger','Weapon','Dagger',80000,400,55,1,true,true,true,true,true,4,85,true,'bonus2 bAddEff,Eff_Curse,5000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1242,'Counter_Dagger','Dagger of Counter','Weapon','Dagger',120000,550,140,1,true,true,true,true,true,4,55,true,'bonus bCritical,90;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_novice`,`job_supernovice`,`location_right_hand`,`weapon_level`,`equip_level_min`) VALUES (1243,'Novice_Knife','Novice Main-Gauche','Weapon','Dagger',1,1,45,1,true,true,true,1,1); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_assassin`,`job_ninja`,`job_rogue`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1244,'Holy_Dagger','Holy Dagger','Weapon','Dagger',20,800,100,1,true,true,true,true,true,4,55,true,'bonus bAtkEle,Ele_Holy; bonus bDex,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_novice`,`job_supernovice`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1245,'Cinquedea','Cinquedea','Weapon','Dagger',40000,700,110,1,1,true,true,true,3,30,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_novice`,`job_supernovice`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1246,'Cinquedea_','Cinquedea','Weapon','Dagger',40000,700,110,1,2,true,true,true,3,30,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1247,'Kindling_Dagger','Kindle Dagger','Weapon','Dagger',10000,600,39,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,1,true,'bonus bAtkEle,Ele_Fire;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1248,'Obsidian_Dagger','Obsidian Dagger','Weapon','Dagger',10000,600,39,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,1,true,'bonus bAtkEle,Ele_Earth;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1249,'Fisherman\'s_Dagger','Fisherman\'s Dagger','Weapon','Dagger',10000,600,39,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,1,true,'bonus bAtkEle,Ele_Water;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1250,'Jur','Jur','Weapon','Katar',19500,800,125,1,2,true,true,true,2,18,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1251,'Jur_','Jur','Weapon','Katar',19500,800,125,1,3,true,true,true,2,18,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1252,'Katar','Katar','Weapon','Katar',41000,1200,148,1,1,true,true,true,3,33,true,'bonus bDex,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1253,'Katar_','Katar','Weapon','Katar',41000,1200,148,1,2,true,true,true,3,33,true,'bonus bDex,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1254,'Jamadhar','Jamadhar','Weapon','Katar',37200,1500,165,1,true,true,true,3,33,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1255,'Jamadhar_','Jamadhar','Weapon','Katar',37200,1500,165,1,1,true,true,true,3,33,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1256,'Katar_Of_Cold_Icicle','Katar of Frozen Icicle','Weapon','Katar',45000,1200,105,1,true,true,true,3,55,true,'bonus bAtkEle,Ele_Water; bonus2 bAddEff,Eff_Freeze,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1257,'Katar_Of_Thornbush','Katar of Quaking','Weapon','Katar',45000,1200,105,1,true,true,true,3,55,true,'bonus bAtkEle,Ele_Earth; bonus2 bAddEff,Eff_Blind,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1258,'Katar_Of_Raging_Blaze','Katar of Raging Blaze','Weapon','Katar',45000,1200,105,1,true,true,true,3,55,true,'bonus bAtkEle,Ele_Fire; bonus2 bAddEff,Eff_Silence,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1259,'Katar_Of_Piercing_Wind','Katar of Piercing Wind','Weapon','Katar',45000,1200,105,1,true,true,true,3,55,true,'bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Sleep,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1260,'Ghoul_Leg','Sharpened Legbone of Ghoul','Weapon','Katar',52500,1700,150,1,true,true,true,3,65,true,'bonus bAtkEle,Ele_Undead;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1261,'Infiltrator','Infiltrator','Weapon','Katar',57000,1500,140,1,true,true,true,4,75,true,'bonus2 bAddRace,RC_DemiHuman,50; bonus2 bAddRace,RC_Player_Human,50; bonus bDef,3; bonus bFlee,5; bonus bFlee2,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1262,'Nail_Of_Loki','Loki\'s Nail','Weapon','Katar',20,1200,115,1,true,true,true,3,55,true,'bonus2 bAddEff,Eff_Bleeding,300;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1263,'Unholy_Touch','Unholy Touch','Weapon','Katar',20,1250,151,1,true,true,true,4,70,true,'bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Curse,200; bonus bCritical,-1; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1264,'Various_Jur','Specialty Jur','Weapon','Katar',20,800,90,1,4,true,true,true,1,1,true,'bonus2 bAddEff2,Eff_Bleeding,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1265,'Bloody_Roar','Bloody Roar','Weapon','Katar',20,1000,120,1,true,true,true,4,75,true,'bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus bFlee,-(readparam(bAgi)+BaseLevel); bonus bHPrecovRate,-100; bonus bSPrecovRate,-100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1266,'Infiltrator_','Infiltrator','Weapon','Katar',57000,1500,140,1,1,true,true,true,4,75,true,'bonus2 bAddRace,RC_DemiHuman,50; bonus2 bAddRace,RC_Player_Human,50; bonus bDef,3; bonus bFlee,5; bonus bFlee2,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1267,'Infiltrator_C','Infiltrator','Weapon','Katar',1,189,1,true,true,true,4,1,100,true,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus bDef,3; bonus bFlee,5; bonus bFlee2,2; bonus bAspdRate,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1268,'Wild_Beast_Claw','Wild Beast Claw','Weapon','Katar',20,1450,160,1,1,true,true,true,true,4,55,true,'if(getrefine()>=9){ bonus3 bAutoSpell,"NPC_CRITICALWOUND",2,100; } else bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_assassin`,`class_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1269,'Inverse_Scale','Inverse Scale','Weapon','Katar',20,1500,140,1,true,true,true,true,4,55,true,'bonus bAtkEle,Ele_Holy; bonus3 bAutoSpell,"NPC_DRAGONFEAR",1,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1270,'Drill_Katar','Drill Katar','Weapon','Katar',20,1400,110,1,1,true,true,true,true,4,55,true,'bonus bHit,30; bonus3 bAutoSpell,"ST_FULLSTRIP",1,150;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1271,'Blood_Tears','Blood Tears','Weapon','Katar',20,1700,120,1,2,true,true,true,true,4,55,true,'if(getrefine()>=9){ bonus3 bAutoSpell,"NPC_WIDEBLEEDING",2,30; } else bonus3 bAutoSpell,"NPC_WIDEBLEEDING",1,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1272,'Scratcher','Scratcher','Weapon','Katar',20,120,1,true,true,true,1,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`script`) VALUES (1273,'Bloody_Roar_C','Refined Bloody Roar','Weapon','Katar',1,148,1,true,true,true,4,'bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bHPRegenRate,3,5000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`script`) VALUES (1274,'Unholy_Touch_C','Refined Unholy Touch','Weapon','Katar',1,179,1,true,true,true,4,'bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Curse,5000; bonus bCritical,-1; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1275,'Katar_Of_Cold_Icicle_','Katar of Frozen Icicle','Weapon','Katar',45000,1200,105,1,3,true,true,true,3,55,true,'bonus bAtkEle,Ele_Water; bonus2 bAddEff,Eff_Freeze,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1276,'Katar_Of_Thornbush_','Katar of Quaking','Weapon','Katar',45000,1200,105,1,3,true,true,true,3,55,true,'bonus bAtkEle,Ele_Earth; bonus2 bAddEff,Eff_Blind,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1277,'Katar_Of_Raging_Blaze_','Katar of Raging Blaze','Weapon','Katar',45000,1200,105,1,3,true,true,true,3,55,true,'bonus bAtkEle,Ele_Fire; bonus2 bAddEff,Eff_Silence,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1278,'Katar_Of_Piercing_Wind_','Katar of Piercing Wind','Weapon','Katar',45000,1200,105,1,3,true,true,true,3,55,true,'bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Sleep,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1279,'BF_Katar1','Brave Carnage Katar','Weapon','Katar',20,130,1,true,true,true,3,80,true,100,true,true,true,true,true,true,'bonus bStr,1; bonus bDex,1; bonus bLuk,1; bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1280,'BF_Katar2','Valorous Carnage Katar','Weapon','Katar',20,130,1,true,true,true,3,80,true,100,true,true,true,true,true,true,'bonus bStr,1; bonus bDex,1; bonus bLuk,1; bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus bCritAtkRate,20; bonus bAspdRate,5; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1281,'Krieger_Katar1','Glorious Bloody Roar','Weapon','Katar',20,140,1,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) autobonus "{ bonus bAspdRate,100; }",70,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }";'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1282,'Krieger_Katar2','Glorious Jamadhar','Weapon','Katar',20,140,1,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bCriticalAddRace,RC_DemiHuman,5; bonus2 bCriticalAddRace,RC_Player_Human,5; } if(getrefine()>8) autobonus "{ bonus bAspdRate,100; }",70,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }";'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1283,'Katar_Of_Speed','Katar Of Speed','Weapon','Katar',20,175,1,true,true,true,4,100,true,true,true,true,true,true,true,true,'bonus2 bSkillAtk,"AS_SONICBLOW",25; bonus bAspdRate,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1284,'Krishna','Krishna','Weapon','Katar',20,1200,120,1,2,true,true,true,true,3,50,true,'bonus2 bSkillAtk,"AS_GRIMTOOTH",10; if(getskilllv("AS_SONICBLOW")) { bonus3 bAutoSpell,"AS_SONICBLOW",getskilllv("AS_SONICBLOW"),5; }else{ bonus3 bAutoSpell,"AS_SONICBLOW",1,5; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1285,'Cakram','Chakram','Weapon','Katar',20,1000,130,1,2,true,true,true,true,3,50,true,'if(getskilllv("AS_KATAR")==10) { bonus bHit,10; } bonus2 bSkillAtk,"ASC_METEORASSAULT",20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1286,'Jamadhar_C','Jamadhar','Weapon','Katar',200,1,true,true,true,3,1,100,true,true,true,true,true,true,true,true,'bonus bUnbreakableWeapon; bonus2 bAddSize,Size_All,40;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1301,'Axe','Axe','Weapon','1hAxe',500,800,38,1,3,true,true,true,true,true,true,true,true,true,true,true,true,1,3,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1302,'Axe_','Axe','Weapon','1hAxe',500,800,38,1,4,true,true,true,true,true,true,true,true,true,true,true,true,1,3,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1303,'Axe__','Axe','Weapon','1hAxe',500,800,38,1,true,true,true,true,true,true,true,true,true,true,true,true,1,3,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1304,'Orcish_Axe','Orcish Axe','Weapon','1hAxe',20,1500,75,1,true,true,true,true,true,true,true,true,true,true,true,true,3,3,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1305,'Cleaver','Cleaver','Weapon','1hAxe',20,1200,140,1,true,true,true,true,true,true,true,4,44,true,'bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus3 bAddMonsterDropItem,517,RC_Brute,3000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1306,'War_Axe','War Axe','Weapon','1hAxe',20,4200,140,1,1,true,true,true,3,76,true,'bonus bDex,2; bonus bLuk,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1307,'Windhawk','Windhawk','Weapon','1hAxe',18000,1500,115,1,true,true,true,true,true,true,true,true,true,true,2,14,true,'bonus bAtkEle,Ele_Wind; bonus bAspdRate,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_novice`,`job_supernovice`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1308,'Golden_Axe','Golden Axe','Weapon','1hAxe',20,3000,170,1,true,true,true,4,45,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1309,'Orcish_Axe_','Orcish Axe','Weapon','1hAxe',20,1500,75,1,4,true,true,true,true,true,true,true,true,true,true,true,true,3,3,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1310,'Krieger_Onehand_Axe1','Glorious Cleaver','Weapon','1hAxe',20,130,1,true,true,true,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus bAspdRate,5; } if(getrefine()>8) { bonus bAspdRate,5; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,50; bonus4 bAutoSpellOnSkill,"MC_MAMMONITE","NPC_CRITICALWOUND",2,200; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`class_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1311,'Vecer_Axe','Vecer Axe','Weapon','1hAxe',20,1500,140,1,2,true,true,true,true,true,true,true,true,3,50,true,'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; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1312,'Orcish_Axe_C','Orcish Axe','Weapon','1hAxe',110,1,true,true,true,true,true,true,true,true,true,true,true,true,3,1,100,true,true,true,true,true,true,true,true,'bonus2 bAddSize,Size_All,70;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1313,'Tourist_Axe','Tourist Axe','Weapon','1hAxe',500,77,1,true,true,true,true,true,true,true,true,true,true,true,true,1,1,100,true,true,true,true,true,true,true,'bonus bStr,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`script`) VALUES (1314,'F_Tomahawk_C','Tomahawk','Weapon','2hAxe',2,200,1,true,true,true,true,true,true,true,true,4,'bonus bAtkEle,Ele_Wind;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (1315,'F_Right_Epsilon_C','Light Epsilon','Weapon','2hAxe',1,229,1,true,true,true,true,true,true,true,true,4,1,'bonus bAtkEle,Ele_Holy; bonus bStr,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1351,'Battle_Axe','Battle Axe','Weapon','2hAxe',5400,1500,80,1,3,true,true,true,true,true,true,true,true,1,3,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1352,'Battle_Axe_','Battle Axe','Weapon','2hAxe',5400,1500,80,1,4,true,true,true,true,true,true,true,true,1,3,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1353,'Battle_Axe__','Battle Axe','Weapon','2hAxe',5400,1500,80,1,true,true,true,true,true,true,true,true,1,3,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1354,'Hammer','Hammer','Weapon','2hAxe',15500,2000,120,1,2,true,true,true,true,true,true,true,true,2,16,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1355,'Hammer_','Hammer','Weapon','2hAxe',15500,2000,120,1,3,true,true,true,true,true,true,true,true,2,16,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1356,'Hammer__','Hammer','Weapon','2hAxe',15500,2000,120,1,true,true,true,true,true,true,true,true,2,16,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1357,'Buster','Buster','Weapon','2hAxe',34000,2200,155,1,1,true,true,true,true,true,true,true,true,3,30,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1358,'Buster_','Buster','Weapon','2hAxe',34000,2200,155,1,2,true,true,true,true,true,true,true,true,3,30,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1359,'Buster__','Buster','Weapon','2hAxe',34000,2200,155,1,true,true,true,true,true,true,true,true,3,30,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1360,'Two_Handed_Axe','Two-Handed Axe','Weapon','2hAxe',55000,2500,185,1,1,true,true,true,true,true,true,true,true,3,30,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1361,'Two_Handed_Axe_','Two-Handed Axe','Weapon','2hAxe',55000,2500,185,1,2,true,true,true,true,true,true,true,true,3,30,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1362,'Two_Handed_Axe__','Two-Handed Axe','Weapon','2hAxe',55000,2500,185,1,true,true,true,true,true,true,true,true,3,30,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1363,'Brood_Axe','Bloody Axe','Weapon','2hAxe',20,4000,170,1,true,true,true,true,true,true,true,true,4,44,true,'bonus bStr,10; bonus bSpeedRate,25;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1364,'Great_Axe','Great Axe','Weapon','2hAxe',20,1800,187,1,true,true,true,true,true,true,true,true,4,44,true,'bonus2 bAddSkillBlow,"MC_MAMMONITE",5; bonus2 bAddEff,Eff_Stun,1500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1365,'Sabbath','Sabbath','Weapon','2hAxe',20,2300,120,1,true,true,true,true,true,true,true,true,4,44,true,'bonus bAtkEle,Ele_Dark; bonus2 bComaRace,RC_Demon,50; bonus2 bCriticalAddRace,RC_Undead,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1366,'Right_Epsilon','Light Epsilon','Weapon','2hAxe',20,2300,180,1,true,true,true,true,true,true,true,true,4,44,true,'bonus bAtkEle,Ele_Holy; skill "AL_HEAL",3; bonus2 bAddRace,RC_Demon,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1367,'Slaughter','Slaughter','Weapon','2hAxe',20,2500,120,1,true,true,true,true,true,true,true,true,4,44,true,'bonus bAtkEle,Ele_Earth; bonus bIgnoreDefRace,RC_Brute; bonus2 bComaRace,RC_Brute,40; bonus bIgnoreDefRace,RC_Player_Doram; bonus2 bComaRace,RC_Player_Doram,40;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1368,'Tomahawk','Tomahawk','Weapon','2hAxe',20,2500,165,1,true,true,true,true,true,true,true,true,4,44,true,'bonus bAtkEle,Ele_Wind; skill "ITM_TOMAHAWK",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1369,'Guillotine','Guillotine','Weapon','2hAxe',20,3000,215,1,true,true,true,true,true,true,true,true,4,44,true,'bonus2 bComaRace,RC_DemiHuman,30; bonus2 bComaRace,RC_Player_Human,30; bonus2 bSPDrainValueRace,RC_DemiHuman,2; bonus2 bSPDrainValueRace,RC_Player_Human,2; bonus2 bSPGainRace,RC_DemiHuman,20; bonus2 bSPGainRace,RC_Player_Human,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1370,'Doom_Slayer','Doom Slayer','Weapon','2hAxe',20,6000,10,1,true,true,true,true,true,true,true,true,4,80,true,'bonus bAspdRate,-40; bonus bUseSPrate,100; if(readparam(bStr)>=95){ bonus bBaseAtk,340; bonus2 bAddEff,Eff_Stun,3000; bonus bBreakArmorRate,500; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1371,'Doom_Slayer_','Doom Slayer','Weapon','2hAxe',20,6000,10,1,1,true,true,true,true,true,true,true,true,4,80,true,'bonus bAspdRate,-40; bonus bUseSPrate,100; if(readparam(bStr)>=95){ bonus bBaseAtk,340; bonus2 bAddEff,Eff_Stun,3000; bonus bBreakArmorRate,500; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1372,'Right_Epsilon_C','Light Epsilon','Weapon','2hAxe',1,229,1,true,true,true,true,true,true,true,true,4,1,100,true,true,true,true,true,true,true,true,'bonus bAtkEle,Ele_Holy; skill "AL_HEAL",3; bonus2 bAddRace,RC_Demon,3; bonus bStr,10; bonus bSpeedRate,25;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`script`) VALUES (1373,'Brood_Axe_C','Refined Bloody Axe','Weapon','2hAxe',2,205,1,true,true,true,true,true,true,true,true,4,'bonus bStr,20; bonus bSpeedRate,25; bonus bAspdRate,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`script`) VALUES (1374,'Tomahawk_C','Tomahawk','Weapon','2hAxe',2,200,1,true,true,true,true,true,true,true,true,4,'bonus bAtkEle,Ele_Wind; skill "ITM_TOMAHAWK",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`class_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1375,'Berdysz','Berdysz','Weapon','2hAxe',20,2500,200,1,2,true,true,true,true,true,true,true,true,true,3,70,true,'bonus2 bSubSize,Size_Medium,13; bonus2 bSubSize,Size_Large,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`class_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1376,'Heart_Breaker','Heart Breaker','Weapon','2hAxe',20,2000,175,1,1,true,true,true,true,true,true,true,true,true,4,70,true,'bonus bCritical,20+getrefine(); bonus bAspdRate,5; if((Class==Job_Whitesmith)||(Class==Job_Creator)) bonus3 bAutoSpell,"BS_HAMMERFALL",3,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`class_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1377,'Hurricane_Fury','Hurricane\'s Fury','Weapon','2hAxe',20,3500,332,1,1,true,true,true,true,true,true,true,true,true,4,80,true,'bonus2 bSubSize,Size_Medium,10+getrefine(); bonus bAspdRate,getrefine(); bonus3 bAutoSpell,"NPC_PULSESTRIKE",5,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`script`) VALUES (1378,'Great_Axe_C','Refined Great Axe','Weapon','2hAxe',1,215,1,true,true,true,true,true,true,true,true,4,'bonus bStr,5; bonus bHit,20; bonus2 bAddSkillBlow,"MC_MAMMONITE",5; bonus2 bAddEff,Eff_Stun,2000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1379,'BF_Two_Handed_Axe1','Valorous Insane Battle Axe','Weapon','2hAxe',20,200,1,true,true,true,true,true,true,true,true,3,80,true,100,true,true,true,true,true,true,'bonus bStr,3; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1380,'BF_Two_Handed_Axe2','Brave Insane Battle Axe','Weapon','2hAxe',20,200,1,true,true,true,true,true,true,true,true,3,80,true,100,true,true,true,true,true,true,'bonus bStr,3; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; autobonus "{ bonus bBreakArmorRate,10000; }",20,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (1381,'N_Battle_Axe','Novice Battle Axe','Weapon','2hAxe',100,1,3,true,true,true,true,true,true,true,true,1,3,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1382,'Krieger_Twohand_Axe1','Glorious Two-Handed Axe','Weapon','2hAxe',20,220,1,true,true,true,true,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-3)*(getrefine()-3); bonus2 bAddRace,RC_Player_Human,(getrefine()-3)*(getrefine()-3); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,50; } if(getrefine()>8) { bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,100; bonus4 bAutoSpellOnSkill,"MC_MAMMONITE","NPC_CRITICALWOUND",2,200; bonus4 bAutoSpellOnSkill,"WS_CARTTERMINATION","NPC_CRITICALWOUND",2,200; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1383,'Holy_Celestial_Axe','Celestial Axe','Weapon','2hAxe',20,1500,200,1,true,true,true,true,true,true,true,true,4,60,true,100,true,true,true,true,true,'bonus bAtkEle,Ele_Holy; bonus bVit,10; bonus2 bAddRace,RC_Undead,10; bonus3 bAutoSpell,"AL_BLESSING",5,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1384,'Veteran_Axe','Veteran Axe','Weapon','2hAxe',10000,3000,250,1,2,true,true,true,true,true,true,true,true,3,80,true,'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;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`class_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1385,'Bradium_Stonehammer','Bradium Stone Hammer','Weapon','2hAxe',20,2700,210,1,true,true,true,true,true,true,true,true,true,4,75,true,'bonus3 bAddEffOnSkill,"BS_HAMMERFALL",Eff_Stun,500+(200*getrefine());'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1386,'Doom_Slayer_I','Doom Slayer','Weapon','2hAxe',20,1,true,true,true,true,true,true,true,true,4,100,true,true,true,true,true,true,true,true,'if(readparam(bStr)>=95){ bonus bBaseAtk,400; bonus2 bAddEff,Eff_Stun,3000; bonus bAspdRate,-25; bonus bUseSPrate,100; bonus bBreakArmorRate,500; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`class_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1387,'Giant_Axe','Giant Axe','Weapon','2hAxe',20,4000,330,1,1,true,true,true,true,true,true,true,true,true,3,50,true,'bonus2 bSkillAtk,"WS_CARTTERMINATION",15; if(readparam(bStr)>=95) { bonus bHit,10; bonus bAspdRate,3; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1388,'Two_Handed_Axe_C','Two-Handed Axe','Weapon','2hAxe',220,1,true,true,true,true,true,true,true,true,3,1,100,true,true,true,true,true,true,true,true,'bonus2 bAddSize,Size_All,40;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`script`) VALUES (1389,'E_Tomahawk_C','Tomahawk','Weapon','2hAxe',2,200,1,true,true,true,true,true,true,true,true,4,'bonus bAtkEle,Ele_Wind;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (1390,'E_Right_Epsilon_C','Light Epsilon','Weapon','2hAxe',1,229,1,true,true,true,true,true,true,true,true,4,1,'bonus bAtkEle,Ele_Holy; bonus bStr,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1401,'Javelin','Javelin','Weapon','1hSpear',150,700,28,3,3,true,true,true,true,1,4,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1402,'Javelin_','Javelin','Weapon','1hSpear',150,700,28,3,4,true,true,true,true,1,4,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1403,'Javelin__','Javelin','Weapon','1hSpear',150,700,28,3,true,true,true,true,1,4,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1404,'Spear','Spear','Weapon','1hSpear',1700,850,44,3,3,true,true,true,true,1,4,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1405,'Spear_','Spear','Weapon','1hSpear',1700,850,44,3,4,true,true,true,true,1,4,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1406,'Spear__','Spear','Weapon','1hSpear',1700,850,44,3,true,true,true,true,1,4,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1407,'Pike','Pike','Weapon','1hSpear',3450,1000,60,3,3,true,true,true,true,1,4,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1408,'Pike_','Pike','Weapon','1hSpear',3450,1000,60,3,4,true,true,true,true,1,4,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1409,'Pike__','Pike','Weapon','1hSpear',3450,1000,60,3,true,true,true,true,1,4,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1410,'Lance','Lance','Weapon','2hSpear',60000,2500,185,3,true,true,true,true,true,3,33,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1411,'Lance_','Lance','Weapon','2hSpear',60000,2500,185,3,true,true,true,true,true,3,33,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1412,'Lance__','Lance','Weapon','2hSpear',60000,2500,185,3,true,true,true,true,true,3,33,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1413,'Gungnir','Gungnir','Weapon','1hSpear',20,500,120,3,true,true,true,true,4,4,true,'bonus bAtkEle,Ele_Wind; bonus bPerfectHitRate,25; bonus bHit,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1414,'Gelerdria','Gelerdria','Weapon','1hSpear',20,700,145,3,true,true,true,true,4,48,true,'bonus bAtkEle,Ele_Earth; bonus bMaxHP,800; bonus bMaxSP,-50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1415,'Skewer','Brocca','Weapon','1hSpear',20,850,100,3,true,true,true,true,4,48,true,'bonus bIgnoreDefClass,Class_Normal; bonus2 bAddEle,Ele_Neutral,25;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1416,'Tjungkuletti','Tjungkuletti','Weapon','1hSpear',20,1000,95,3,true,true,true,true,4,48,true,'bonus bSPDrainValue,1; bonus bSPGainValue,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1417,'Pole_Axe','Pole Axe','Weapon','1hSpear',20,3800,160,3,1,true,true,true,true,3,71,true,'bonus bStr,1; bonus bInt,2; bonus bDex,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1418,'Gungnir_','Gungnir','Weapon','1hSpear',20,500,120,3,2,true,true,true,true,4,4,true,'bonus bAtkEle,Ele_Wind; bonus bPerfectHitRate,25; bonus bHit,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1419,'Pole_Axe_C','Pole Axe','Weapon','1hSpear',1,4800,159,3,true,true,true,true,3,1,100,true,true,true,true,true,true,true,true,'bonus bStr,1; bonus bInt,2; bonus bDex,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1420,'Long_Horn','Long Horn','Weapon','1hSpear',20,1000,150,3,1,true,true,true,true,true,4,65,true,'bonus bAtkEle,Ele_Holy; bonus2 bAddEff,Eff_Bleeding,500; skill "TF_DETOXIFY",1; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1421,'Battle_Hook','Battle Hook','Weapon','1hSpear',20,900,140,3,1,true,true,true,true,true,4,65,true,'bonus2 bAddEff,Eff_Stun,500; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; skill "KN_PIERCE",3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1422,'Hunting_Spear','Hunting Spear','Weapon','1hSpear',20,4200,180,3,1,true,true,true,true,true,4,60,true,'bonus bIgnoreDefRace,RC_Brute; bonus bIgnoreDefRace,RC_Player_Doram; bonus3 bAddMonsterDropItem,517,RC_Brute,1000; bonus3 bAutoSpell,"LK_JOINTBEAT",3,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1423,'Pole_XO','Pole XO','Weapon','1hSpear',20,120,3,true,true,true,true,1,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`script`) VALUES (1424,'Skewer_C','Refined Brocca','Weapon','1hSpear',1,149,3,true,true,true,true,4,'bonus bIgnoreDefClass,Class_Normal; bonus2 bAddSize,Size_Medium,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1425,'BF_Spear1','Assaulter Spear','Weapon','1hSpear',20,60,3,true,true,true,true,3,80,true,100,true,true,true,true,true,true,'bonus bStr,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(BaseJob==Job_Crusader) bonus bAspdRate,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1426,'Krieger_Onehand_Spear1','Glorious Spear','Weapon','1hSpear',20,130,3,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus bAspdRate,10; } if(getrefine()>8) { if(BaseJob==Job_Knight) bonus4 bAutoSpellOnSkill,"KN_PIERCE","NPC_CRITICALWOUND",2,200; else if(BaseJob==Job_Crusader) bonus3 bAutoSpell,"PA_PRESSURE",5,100; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1427,'Spear_Of_Excellent','Spear Of Excellent','Weapon','1hSpear',20,160,3,true,true,true,true,3,100,true,true,true,true,true,true,true,true,'bonus2 bSkillAtk,"SM_MAGNUM",25; bonus bStr,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1428,'Long_Horn_M','Long Horn','Weapon','1hSpear',20,1000,150,3,1,true,true,true,true,true,4,65,true,100,true,true,true,true,true,true,true,'bonus bAtkEle,Ele_Holy; bonus2 bAddEff,Eff_Bleeding,500; skill "TF_DETOXIFY",1; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1429,'Hunting_Spear_M','Hunting Spear','Weapon','1hSpear',20,4200,180,3,1,true,true,true,true,true,4,60,true,100,true,true,true,true,true,true,true,'bonus bIgnoreDefRace,RC_Brute; bonus bIgnoreDefRace,RC_Player_Doram; bonus3 bAddMonsterDropItem,517,RC_Brute,1000; bonus3 bAutoSpell,"LK_JOINTBEAT",3,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1430,'Pike_C','Pike','Weapon','1hSpear',74,3,true,true,true,true,1,1,100,true,true,true,true,true,true,true,true,'bonus2 bAddSize,Size_All,70;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (1431,'F_Pole_Axe_C','Pole Axe','Weapon','1hSpear',1,4800,195,3,true,true,true,true,3,1,'bonus bStr,1; bonus bInt,2; bonus bDex,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (1432,'E_Pole_Axe_C','Pole Axe','Weapon','1hSpear',1,4800,195,3,true,true,true,true,3,1,'bonus bStr,1; bonus bInt,2; bonus bDex,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1451,'Guisarme','Guisarme','Weapon','2hSpear',13000,1000,84,3,2,true,true,true,true,true,2,18,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1452,'Guisarme_','Guisarme','Weapon','2hSpear',13000,1000,84,3,3,true,true,true,true,true,2,18,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1453,'Guisarme__','Guisarme','Weapon','2hSpear',13000,1000,84,3,true,true,true,true,true,2,18,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1454,'Glaive','Glaive','Weapon','2hSpear',20000,1200,104,3,2,true,true,true,true,true,2,18,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1455,'Glaive_','Glaive','Weapon','2hSpear',20000,1200,104,3,3,true,true,true,true,true,2,18,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1456,'Glaive__','Glaive','Weapon','2hSpear',20000,1200,104,3,true,true,true,true,true,2,18,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1457,'Partizan','Partizan','Weapon','2hSpear',27000,2000,124,3,1,true,true,true,true,true,2,18,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1458,'Partizan_','Partizan','Weapon','2hSpear',27000,2000,124,3,2,true,true,true,true,true,2,18,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1459,'Partizan__','Partizan','Weapon','2hSpear',27000,2000,124,3,true,true,true,true,true,2,18,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1460,'Trident','Trident','Weapon','2hSpear',51000,1200,150,3,2,true,true,true,true,true,3,33,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1461,'Trident_','Trident','Weapon','2hSpear',51000,1200,150,3,3,true,true,true,true,true,3,33,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1462,'Trident__','Trident','Weapon','2hSpear',51000,1200,150,3,true,true,true,true,true,3,33,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1463,'Halberd','Halberd','Weapon','2hSpear',54000,2500,165,3,1,true,true,true,true,true,3,33,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1464,'Halberd_','Halberd','Weapon','2hSpear',54000,2500,165,3,2,true,true,true,true,true,3,33,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1465,'Halberd__','Halberd','Weapon','2hSpear',54000,2500,165,3,true,true,true,true,true,3,33,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1466,'Crescent_Scythe','Crescent Scythe','Weapon','2hSpear',20,2500,180,3,true,true,true,true,true,4,48,true,'bonus bCritical,30; bonus bHit,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1467,'Bill_Guisarme','Bill Guisarme','Weapon','2hSpear',20,1000,183,3,true,true,true,true,true,4,48,true,'bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Player_Doram,10; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1468,'Zephyrus','Zephyrus','Weapon','2hSpear',20,2000,170,3,true,true,true,true,true,4,48,true,'bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Silence,200; bonus3 bAutoSpell,"MG_THUNDERSTORM",3,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1469,'Longinus\'s_Spear','Longinus\'s Spear','Weapon','2hSpear',20,2500,180,3,true,true,true,true,true,4,48,true,'bonus bAtkEle,Ele_Dark; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus2 bAddRace,RC_Angel,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1470,'Brionac','Brionac','Weapon','2hSpear',20,3000,190,3,true,true,true,true,true,4,48,true,'bonus bAtkEle,Ele_Holy; skill "AL_HEAL",5; bonus3 bAutoSpell,"MG_SOULSTRIKE",3,100; bonus2 bAddClass,Class_Boss,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1471,'Hell_Fire','Hellfire','Weapon','2hSpear',20,3500,200,3,true,true,true,true,true,4,48,true,'bonus bAtkEle,Ele_Fire; bonus3 bAutoSpell,"MG_FIREBALL",3,100; bonus bStr,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1472,'Staff_Of_Soul','Soul Staff','Weapon','2hStaff',20,1400,25,1,true,true,true,true,true,true,3,73,true,'bonus bInt,5; bonus bAgi,2; bonus bMatkRate,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1473,'Wizardy_Staff','Wizardry Staff','Weapon','2hStaff',20,2400,120,1,true,true,true,true,true,true,4,90,true,'bonus bInt,6; bonus bDex,2; bonus bMatkRate,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1474,'Gae_Bolg','Gae Bolg','Weapon','2hSpear',20,2000,160,3,true,true,true,true,true,4,60,true,'bonus bIgnoreDefRace,RC_Dragon; bonus2 bAddClass,Class_Boss,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1475,'Horseback_Lance','Equestrian\'s Spear','Weapon','2hSpear',20,3700,200,4,true,true,true,true,true,4,75,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1476,'Crescent_Scythe_','Crescent Scythe','Weapon','2hSpear',20,2500,180,3,1,true,true,true,true,true,4,48,true,'bonus bCritical,30; bonus bHit,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1477,'Spectral_Spear','Spectral Spear','Weapon','2hSpear',20,2000,170,3,true,true,true,true,true,4,75,true,'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;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1478,'Ahlspiess','Ahlspiess','Weapon','2hSpear',20,1000,120,3,true,true,true,true,4,65,true,'bonus bIgnoreDefClass,Class_Normal; bonus bIgnoreDefClass,Class_Boss; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus3 bAutoSpell,"KN_PIERCE",5,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1479,'Spectral_Spear_','Spectral Spear','Weapon','2hSpear',20,2000,170,3,1,true,true,true,true,true,4,75,true,'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;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1480,'Gae_Bolg_','Gae Bolg','Weapon','2hSpear',20,2000,160,3,2,true,true,true,true,true,4,60,true,'bonus bIgnoreDefRace,RC_Dragon; bonus2 bAddClass,Class_Boss,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1481,'Zephyrus_','Zephyrus','Weapon','2hSpear',20,2000,170,3,3,true,true,true,true,true,4,48,true,'bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Silence,200; bonus3 bAutoSpell,"MG_THUNDERSTORM",3,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1482,'BF_Lance1','Assaulter Lance','Weapon','2hSpear',160,3,true,true,true,true,true,3,80,true,100,true,true,true,true,true,true,'bonus bStr,2; bonus2 bAddRace,RC_DemiHuman,25; bonus2 bAddRace,RC_Player_Human,25; bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1483,'Ivory_Lance','Ivory Lance','Weapon','2hSpear',20,1000,160,3,1,true,true,true,true,true,true,3,50,true,'bonus bAgi,2; bonus bAspdRate,3; bonus2 bAddEff,Eff_Bleeding,300; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,30; skill "KN_SPEARSTAB",5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_knight`,`class_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1484,'Cardo','Cardo','Weapon','2hSpear',20,5600,150,3,1,true,true,true,true,4,70,true,'bonus bAspdRate,-10; bonus bDef,getrefine()/2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1485,'Battle_Fork','Battle Fork','Weapon','2hSpear',20,700,112,3,4,true,true,true,true,true,true,2,50,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1486,'Krieger_Twohand_Spear1','Glorious Lance','Weapon','2hSpear',20,220,3,true,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) { if(BaseJob==Job_Knight) bonus4 bAutoSpellOnSkill,"KN_PIERCE","NPC_CRITICALWOUND",2,200; else if(BaseJob==Job_Crusader) bonus3 bAutoSpell,"PA_PRESSURE",5,200; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1487,'Lance_C','Lance','Weapon','2hSpear',220,3,true,true,true,true,true,3,1,100,true,true,true,true,true,true,true,true,'bonus2 bAddSize,Size_All,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_crusader`,`job_knight`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1488,'Ahlspiess_C','Ahlspiess','Weapon','2hSpear',20,135,3,true,true,true,true,4,1,true,'bonus bIgnoreDefClass,Class_Normal; bonus bIgnoreDefClass,Class_Boss; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus3 bAutoSpell,"KN_PIERCE",5,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1501,'Club','Club','Weapon','Mace',120,700,23,1,3,true,true,true,true,true,true,true,true,true,true,true,true,1,2,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1502,'Club_','Club','Weapon','Mace',120,700,23,1,4,true,true,true,true,true,true,true,true,true,true,true,true,1,2,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1503,'Club__','Club','Weapon','Mace',120,700,23,1,true,true,true,true,true,true,true,true,true,true,true,true,1,2,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1504,'Mace','Mace','Weapon','Mace',1600,800,37,1,3,true,true,true,true,true,true,true,true,true,true,true,true,1,2,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1505,'Mace_','Mace','Weapon','Mace',1600,800,37,1,4,true,true,true,true,true,true,true,true,true,true,true,true,1,2,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1506,'Mace__','Mace','Weapon','Mace',1600,800,37,1,true,true,true,true,true,true,true,true,true,true,true,true,1,2,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1507,'Smasher','Smasher','Weapon','Mace',9000,1000,54,1,2,true,true,true,true,true,true,true,true,true,true,true,true,2,14,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1508,'Smasher_','Smasher','Weapon','Mace',9000,1000,54,1,3,true,true,true,true,true,true,true,true,true,true,true,true,2,14,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1509,'Smasher__','Smasher','Weapon','Mace',9000,1000,54,1,3,true,true,true,true,true,true,true,true,true,true,true,true,2,14,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1510,'Flail','Flail','Weapon','Mace',16000,900,69,1,2,true,true,true,true,true,true,true,true,true,true,2,14,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1511,'Flail_','Flail','Weapon','Mace',16000,900,69,1,3,true,true,true,true,true,true,true,true,true,true,2,14,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1512,'Flail__','Flail','Weapon','Mace',16000,900,69,1,3,true,true,true,true,true,true,true,true,true,true,2,14,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1513,'Morning_Star','Morning Star','Weapon','Mace',41000,1500,110,1,1,true,true,true,true,true,true,true,true,true,true,3,27,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1514,'Morning_Star_','Morning Star','Weapon','Mace',41000,1500,110,1,2,true,true,true,true,true,true,true,true,true,true,3,27,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1515,'Morning_Star__','Morning Star','Weapon','Mace',41000,1500,110,1,2,true,true,true,true,true,true,true,true,true,true,3,27,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1516,'Sword_Mace','Sword Mace','Weapon','Mace',50000,1200,130,1,true,true,true,true,true,true,true,true,true,true,3,27,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1517,'Sword_Mace_','Sword Mace','Weapon','Mace',50000,1200,130,1,1,true,true,true,true,true,true,true,true,true,true,3,27,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1518,'Sword_Mace__','Sword Mace','Weapon','Mace',50000,1200,130,1,1,true,true,true,true,true,true,true,true,true,true,3,27,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1519,'Chain','Chain','Weapon','Mace',23000,800,84,1,2,true,true,true,true,true,true,true,true,true,true,2,14,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1520,'Chain_','Chain','Weapon','Mace',23000,800,84,1,3,true,true,true,true,true,true,true,true,true,true,2,14,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1521,'Chain__','Chain','Weapon','Mace',23000,800,84,1,3,true,true,true,true,true,true,true,true,true,true,2,14,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1522,'Stunner','Stunner','Weapon','Mace',60000,2000,140,1,true,true,true,true,3,27,true,'bonus2 bAddEff,Eff_Stun,1000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1523,'Spike','Spike','Weapon','Mace',20,700,85,1,true,true,true,true,4,40,true,'bonus bCritical,40; bonus bDefRate,-67; bonus bDef2Rate,-67;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1524,'Golden_Mace','Golden Mace','Weapon','Mace',20,800,110,1,1,true,true,true,true,4,40,true,'bonus2 bAddRace,RC_Undead,10; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1525,'Long_Mace','Long Mace','Weapon','Mace',20,800,135,3,true,true,true,true,4,40,true,'bonus bLongAtkDef,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1526,'Slash','Slash','Weapon','Mace',20,1000,145,1,true,true,true,true,4,40,true,'bonus2 bAddRace,RC_Undead,15; bonus2 bComaRace,RC_Undead,10; bonus2 bExpAddRace,RC_Undead,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1527,'Quadrille','Quadrille','Weapon','Mace',20,900,165,1,true,true,true,true,4,40,true,'bonus2 bAddRace,RC_Undead,10; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus2 bAddEle,Ele_Earth,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1528,'Grand_Cross','Grand Cross','Weapon','Mace',20,1500,140,1,true,true,true,true,4,40,true,'bonus bAtkEle,Ele_Holy; skill "PR_TURNUNDEAD",3; bonus3 bAutoSpell,"PR_TURNUNDEAD",3,100; bonus2 bSPDrainValueRace,RC_Undead,1; bonus2 bSPGainRace,RC_Undead,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1529,'Iron_Driver','Iron Driver','Weapon','Mace',20,3000,155,2,true,true,true,3,78,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (1530,'Mjolnir','Mjolnir','Weapon','Mace',20,6000,250,1,true,true,true,true,true,true,true,4,95,'bonus bAtkEle,Ele_Wind; bonus bDex,40; bonus bStr,15; bonus bAspdRate,10; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1531,'Spanner','Wrench','Weapon','Mace',20,2500,115,1,true,true,true,true,3,55,true,'bonus2 bAddEff,Eff_Blind,100; bonus2 bAddEff,Eff_Stun,100; bonus2 bAddEff,Eff_Poison,100; bonus2 bAddEff,Eff_Freeze,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1532,'Stunner_','Stunner','Weapon','Mace',60000,2000,140,1,2,true,true,true,true,3,27,true,'bonus2 bAddEff,Eff_Stun,1000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1533,'Warrior_Balmung','Warrior\'s Balmung','Weapon','Mace',20,1000,170,1,true,4,48,true,100,true,true,true,true,true,true,true,true,'bonus bAllStats,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`script`) VALUES (1534,'Spanner_C','Wrench','Weapon','Mace',2,150,1,true,true,true,true,3,'bonus2 bAddEff,Eff_Blind,100; bonus2 bAddEff,Eff_Stun,100; bonus2 bAddEff,Eff_Poison,100; bonus2 bAddEff,Eff_Freeze,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1535,'Hollgrehenn_Hammer','Hollgrehenn\'s Hammer','Weapon','Mace',4444,44,4,1,1,true,true,true,true,true,true,true,true,true,true,4,44,true,'bonus bBreakArmorRate,100; bonus bBreakWeaponRate,100; if(readparam(bStr)>=44) { bonus bBaseAtk,44; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1536,'Good_Morning_Star','Good Morning Star','Weapon','Mace',20,120,1,true,true,true,true,true,true,true,true,true,true,1,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`script`) VALUES (1537,'Quadrille_C','Refined Quadrille','Weapon','Mace',1,193,1,true,true,true,true,4,'bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player_Human,30; bonus2 bAddRace,RC_Demon,40; bonus2 bAddRace,RC_Undead,40;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1538,'Spike_','Spike','Weapon','Mace',20,700,85,1,2,true,true,true,true,4,40,true,'bonus bCritical,40; bonus bDefRate,-67; bonus bDef2Rate,-67;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1539,'Golden_Mace_','Golden Mace','Weapon','Mace',20,800,110,1,2,true,true,true,true,4,40,true,'bonus2 bAddRace,RC_Undead,10; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1540,'Grand_Cross_','Grand Cross','Weapon','Mace',20,1500,140,1,1,true,true,true,true,4,40,true,'bonus bAtkEle,Ele_Holy; skill "PR_TURNUNDEAD",3; bonus3 bAutoSpell,"PR_TURNUNDEAD",3,100; bonus2 bSPDrainValueRace,RC_Undead,1; bonus2 bSPGainRace,RC_Undead,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1541,'Nemesis','Nemesis','Weapon','Mace',20,900,120,1,true,true,true,true,4,60,true,'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; }";'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1542,'BF_Morning_Star1','Valorous Battlefield Morning Star','Weapon','Mace',20,105,1,true,true,true,true,true,true,true,true,true,true,true,true,3,80,true,100,true,true,true,true,true,true,'bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1543,'BF_Morning_Star2','Brave Battlefield Morning Star','Weapon','Mace',20,105,1,true,true,true,true,true,true,true,true,true,true,true,true,3,80,true,100,true,true,true,true,true,true,'bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus bUnbreakableWeapon; autobonus "{ bonus2 bAddEff,Eff_Stun,5000; }",10,6000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }";'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`class_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1544,'Lunakaligo','Lunakaligo','Weapon','Mace',20,700,110,1,3,true,true,true,true,true,3,50,true,'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; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (1545,'N_Mace','Novice Mace','Weapon','Mace',57,1,3,true,true,true,true,true,true,true,true,true,true,true,true,1,2,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1546,'Krieger_Onehand_Mace1','Glorious Morning Star','Weapon','Mace',20,130,1,true,true,true,true,true,true,true,true,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus bAspdRate,5; } if(getrefine()>8) { bonus2 bAddEff,Eff_Stun,2000; bonus bAspdRate,5; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1547,'Mace_Of_Madness','Mace Of Madness','Weapon','Mace',20,150,1,true,true,true,true,true,true,true,true,true,true,3,100,true,true,true,true,true,true,true,true,'bonus2 bSkillAtk,"MC_CARTREVOLUTION",25; bonus bStr,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1548,'Veteran_Hammer','Veteran Hammer','Weapon','Mace',10000,1800,160,1,2,true,true,true,true,3,80,true,'bonus bHealPower,getskilllv("AL_DP"); bonus bCritical,getskilllv("PR_MACEMASTERY")*2; bonus bInt,1; bonus bLuk,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_blacksmith`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1549,'Pilebuncker','Pile Bunker','Weapon','Mace',10000,3500,450,1,true,true,3,99,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1550,'Book','Book','Weapon','Book',30000,600,85,1,3,true,true,true,true,2,14,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1551,'Bible','Bible','Weapon','Book',60000,1000,115,1,2,true,true,true,true,3,27,true,'bonus bInt,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1552,'Tablet','Tablet','Weapon','Book',51000,800,125,1,1,true,true,true,true,3,27,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1553,'Book_Of_Billows','Book of Billows','Weapon','Book',35000,750,90,1,true,true,true,true,3,27,true,'bonus bAtkEle,Ele_Water;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1554,'Book_Of_Mother_Earth','Book of Mother Earth','Weapon','Book',35000,750,90,1,true,true,true,true,3,27,true,'bonus bAtkEle,Ele_Earth;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1555,'Book_Of_Blazing_Sun','Book of the Blazing Sun','Weapon','Book',35000,750,90,1,true,true,true,true,3,27,true,'bonus bAtkEle,Ele_Fire;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1556,'Book_Of_Gust_Of_Wind','Book of Gust of Wind','Weapon','Book',35000,750,90,1,true,true,true,true,3,27,true,'bonus bAtkEle,Ele_Wind;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1557,'Book_Of_The_Apocalypse','Book of the Apocalypse','Weapon','Book',60000,800,120,1,true,true,true,true,4,40,true,'bonus bAtkEle,Ele_Dark; bonus2 bAddEle,Ele_Holy,5; bonus2 bAddEle,Ele_Water,7; bonus2 bAddEle,Ele_Earth,7; bonus2 bAddEle,Ele_Fire,7; bonus2 bAddEle,Ele_Wind,7;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1558,'Girl\'s_Diary','Girl\'s Diary','Weapon','Book',1500,300,60,1,1,true,true,true,true,4,40,true,'bonus2 bAddDamageClass,1188,150;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1559,'Legacy_Of_Dragon','Legacy of Dragon','Weapon','Book',20,700,130,1,true,true,true,true,4,70,true,'bonus bInt,3; bonus bIgnoreDefRace,RC_Dragon; bonus2 bSPGainRace,RC_Dragon,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1560,'Diary_Of_Great_Sage','Sage\'s Diary','Weapon','Book',20,1100,100,1,2,true,true,true,true,3,60,true,'bonus bMatkRate,15; if(readparam(bStr)>=50) bonus bAspdRate,5; if(readparam(bInt)>=70) bonus bMatkRate,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1561,'Hardback','Hardcover Book','Weapon','Book',20,1500,140,1,1,true,true,true,true,4,55,true,'bonus bStr,3; bonus bDex,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (1562,'Bible_Of_Battlefield','Battlefield Textbook','Weapon','Book',20,700,110,1,1,true,true,true,true,4,80,'bonus bInt,3; bonus3 bAutoSpell,"AL_BLESSING",3+(getskilllv("AL_BLESSING")>3)*(getskilllv("AL_BLESSING")-3),20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1563,'Diary_Of_Great_Sage_C','Sage\'s Diary','Weapon','Book',1,135,1,2,true,true,true,true,3,1,100,true,true,true,true,true,true,true,true,'bonus bMatkRate,20; bonus bAspdRate,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1564,'Encyclopedia','Encyclopedia','Weapon','Book',20,2000,110,1,2,true,true,true,true,3,70,true,'bonus bMatkRate,15; bonus bInt,3; bonus bDex,2; bonus bCritical,20+((readparam(bLuk)*2)/10);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1565,'Death_Note','Ledger of Death','Weapon','Book',20,1000,137,1,2,true,true,true,true,4,85,true,'bonus bMatkRate,15; bonus bStr,3; bonus bInt,3; bonus bLuk,-20; bonus2 bComaRace,RC_DemiHuman,10; bonus2 bComaRace,RC_Player_Human,10; bonus bAspdRate,getrefine(); if(BaseJob==Job_Sage) bonus3 bAutoSpell,"NPC_HELLJUDGEMENT",5,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1566,'Diary_Of_Great_Basil','Diary Of Great Basil','Weapon','Book',20,120,1,true,true,true,true,1,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`script`) VALUES (1567,'Hardback_C','Refined Hardcover Book','Weapon','Book',1,168,1,true,true,true,true,4,'bonus bStr,5; bonus bDex,2; bonus bMatkRate,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1568,'Book_Of_Billows_','Book of Billows','Weapon','Book',35000,750,90,1,3,true,true,true,true,3,27,true,'bonus bAtkEle,Ele_Water;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1569,'Book_Of_Mother_Earth_','Book of Mother Earth','Weapon','Book',35000,750,90,1,3,true,true,true,true,3,27,true,'bonus bAtkEle,Ele_Earth;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1570,'Book_Of_Blazing_Sun_','Book of Blazing Sun','Weapon','Book',35000,750,90,1,3,true,true,true,true,3,27,true,'bonus bAtkEle,Ele_Fire;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1571,'Book_Of_Gust_Of_Wind_','Book of Gust of Wind','Weapon','Book',35000,750,90,1,3,true,true,true,true,3,27,true,'bonus bAtkEle,Ele_Wind;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1572,'Principles_Of_Magic','Principles of Magic','Weapon','Book',20,300,60,1,2,true,true,true,true,3,60,true,'bonus bMatkRate,20; bonus bInt,3; bonus bSPrecovRate,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1573,'Ancient_Magic','Ancient Magic','Weapon','Book',20,700,30,1,2,true,true,true,true,3,70,true,'bonus bMatkRate,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1574,'BF_Book1','Brave Battle Strategy Book','Weapon','Book',20,90,1,true,true,true,true,3,80,true,100,true,true,true,true,true,true,'bonus bStr,2; bonus bInt,1; bonus bMatkRate,15; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1575,'BF_Book2','Valorous Battle Strategy Book','Weapon','Book',20,90,1,true,true,true,true,3,80,true,100,true,true,true,true,true,true,'bonus bStr,2; bonus bInt,1; bonus bMatkRate,15; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1576,'Krieger_Book1','Glorious Tablet','Weapon','Book',20,90,1,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus bMatkRate,15; bonus2 bAddRace,RC_DemiHuman,80; bonus2 bAddRace,RC_Player_Human,80; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) autobonus "{ bonus bBaseAtk,200; }",30,3000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }";'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1577,'Krieger_Book2','Glorious Apocalypse','Weapon','Book',20,90,1,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus bMatkRate,15; bonus2 bAddRace,RC_DemiHuman,80; bonus2 bAddRace,RC_Player_Human,80; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; if(getrefine()>5) bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; if(getrefine()>8) { bonus bMatkRate,5; bonus bCastrate,-5; bonus bDelayRate,-5; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1578,'Book_Of_Prayer','Book Of Prayer','Weapon','Book',20,140,1,true,true,true,true,3,100,true,true,true,true,true,true,true,true,'bonus bVit,2; bonus bMdef,2; bonus bMaxSPrate,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1579,'Death_Note_M','Book of the Dead','Weapon','Book',20,1000,137,1,2,true,true,true,true,4,85,true,100,true,true,true,true,true,true,true,'bonus bMatkRate,15; bonus bStr,3; bonus bInt,3; bonus bLuk,-20; bonus2 bComaRace,RC_DemiHuman,10; bonus2 bComaRace,RC_Player_Human,10; bonus bAspdRate,getrefine(); if(BaseJob==Job_Sage) bonus3 bAutoSpell,"NPC_HELLJUDGEMENT",5,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1580,'Encyclopedia_C','Giant Encyclopedia','Weapon','Book',145,1,true,true,true,true,3,100,true,true,true,true,true,true,true,true,'bonus bMatkRate,15; bonus bInt,3; bonus bDex,2; bonus bCritical,20+((readparam(bLuk)*2)/10); bonus2 bAddSize,Size_All,40;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`) VALUES (1581,'F_Diary_Of_Great_Sage_C','Diary Of Great Sage','Weapon','Book',1,135,1,2,true,true,true,true,3,1); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`) VALUES (1582,'E_Diary_Of_Great_Sage_C','Diary Of Great Sage','Weapon','Book',1,135,1,2,true,true,true,true,3,1); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1599,'Angra_Manyu','Angra Manyu','Weapon','Mace',1,10,200,2,true,1,1,true,'bonus bAllStats,50; bonus bBaseAtk,3800; 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;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_novice`,`job_priest`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1601,'Rod','Rod','Weapon','Staff',50,400,15,1,3,true,true,true,true,true,true,true,true,true,true,1,1,true,'bonus bMatkRate,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_novice`,`job_priest`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1602,'Rod_','Rod','Weapon','Staff',50,400,15,1,4,true,true,true,true,true,true,true,true,true,true,1,1,true,'bonus bMatkRate,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_novice`,`job_priest`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1603,'Rod__','Rod','Weapon','Staff',50,400,15,1,true,true,true,true,true,true,true,true,true,true,1,1,true,'bonus bMatkRate,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_novice`,`job_priest`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1604,'Wand','Wand','Weapon','Staff',2500,400,25,1,2,true,true,true,true,true,true,true,true,true,true,2,12,true,'bonus bInt,1; bonus bMatkRate,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_novice`,`job_priest`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1605,'Wand_','Wand','Weapon','Staff',2500,400,25,1,3,true,true,true,true,true,true,true,true,true,true,2,12,true,'bonus bInt,1; bonus bMatkRate,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_novice`,`job_priest`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1606,'Wand__','Wand','Weapon','Staff',2500,400,25,1,true,true,true,true,true,true,true,true,true,true,2,12,true,'bonus bInt,1; bonus bMatkRate,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1607,'Staff','Staff','Weapon','Staff',9500,400,40,1,2,true,true,true,true,true,true,true,true,2,12,true,'bonus bInt,2; bonus bMatkRate,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1608,'Staff_','Staff','Weapon','Staff',9500,400,40,1,3,true,true,true,true,true,true,true,true,2,12,true,'bonus bInt,2; bonus bMatkRate,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1609,'Staff__','Staff','Weapon','Staff',9500,400,40,1,true,true,true,true,true,true,true,true,2,12,true,'bonus bInt,2; bonus bMatkRate,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1610,'Arc_Wand','Arc Wand','Weapon','Staff',45000,400,60,1,1,true,true,true,true,true,true,true,true,3,24,true,'bonus bInt,3; bonus bMatkRate,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1611,'Arc_Wand_','Arc Wand','Weapon','Staff',45000,400,60,1,2,true,true,true,true,true,true,true,true,3,24,true,'bonus bInt,3; bonus bMatkRate,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1612,'Arc_Wand__','Arc Wand','Weapon','Staff',45000,400,60,1,true,true,true,true,true,true,true,true,3,24,true,'bonus bInt,3; bonus bMatkRate,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1613,'Mighty_Staff','Mighty Staff','Weapon','Staff',20,700,130,1,true,true,true,true,true,true,true,true,3,24,true,'bonus bStr,10; bonus bMatkRate,15; bonus bSPDrainValue,-2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1614,'Blessed_Wand','Wand of Occult','Weapon','Staff',20,700,75,1,true,true,true,true,true,true,true,true,3,24,true,'bonus bInt,3; bonus bMatkRate,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1615,'Bone_Wand','Evil Bone Wand','Weapon','Staff',20,700,40,1,true,true,true,true,true,true,true,true,3,24,true,'bonus bInt,4; bonus bAtkEle,Ele_Undead; bonus bMatkRate,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1616,'Staff_Of_Wing','Wing Staff','Weapon','Staff',20,500,60,1,true,true,true,true,true,4,40,true,'bonus bMatkRate,15; bonus bCastrate,-5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1617,'Survival_Rod','Survivor\'s Rod','Weapon','Staff',85000,1000,50,1,true,true,true,true,true,true,true,true,3,24,true,'bonus bDex,2; bonus bMatkRate,15; bonus bMaxHP,300;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1618,'Survival_Rod_','Survivor\'s Rod','Weapon','Staff',85000,1000,50,1,1,true,true,true,true,true,true,true,true,3,24,true,'bonus bDex,3; bonus bMatkRate,15; bonus bMaxHP,400;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1619,'Survival_Rod2','Survivor\'s Rod','Weapon','Staff',85000,1000,50,1,true,true,true,true,true,true,true,true,3,24,true,'bonus bInt,2; bonus bMatkRate,15; bonus bMaxHP,300;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1620,'Survival_Rod2_','Survivor\'s Rod','Weapon','Staff',85000,1000,50,1,1,true,true,true,true,true,true,true,true,3,24,true,'bonus bInt,3; bonus bMatkRate,15; bonus bMaxHP,400;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_novice`,`job_supernovice`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1621,'Hypnotist\'s_Staff','Hypnotist\'s Staff','Weapon','Staff',43000,500,70,1,1,true,true,true,3,30,true,'bonus bInt,1; bonus bMatkRate,25;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_novice`,`job_supernovice`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1622,'Hypnotist\'s_Staff_','Hypnotist\'s Staff','Weapon','Staff',20,500,70,1,2,true,true,true,3,30,true,'bonus bInt,1; bonus bMatkRate,25;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1623,'Mighty_Staff_C','Mighty Staff','Weapon','Staff',1,165,1,true,true,true,true,true,true,true,true,3,1,100,true,true,true,true,true,true,true,true,'bonus bStr,10; bonus bInt,4; bonus bMatkRate,20; bonus bSPDrainValue,-1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_wizard`,`class_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1624,'Lich_Bone_Wand','Lich\'s Bone Wand','Weapon','Staff',20,800,60,1,2,true,true,true,true,true,true,true,true,3,70,true,'bonus bInt,1; bonus bDex,1; bonus bAtkEle,Ele_Undead; bonus bMatkRate,20; bonus3 bAutoSpellWhenHit,"NPC_WIDECURSE",5,10+getrefine(); if(getrefine()>=9){ bonus bMatkRate,3; bonus bMaxSP,300; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1625,'Healing_Staff','Healing Staff','Weapon','Staff',20,400,10,1,true,true,true,true,3,55,true,'bonus bAtkEle,Ele_Holy; bonus bMatkRate,15; bonus bHealPower,(getrefine()*3/2);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_wizard`,`class_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1626,'Piercing_Staff','Piercing Staff','Weapon','Staff',20,500,80,1,true,true,true,true,true,true,true,true,3,70,true,'bonus bInt,4; bonus bMatkRate,15; bonus2 bIgnoreMdefClassRate,Class_Normal,10+getrefine(); bonus2 bIgnoreMdefClassRate,Class_Boss,10+getrefine();'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1627,'Staffy','Staffy','Weapon','Staff',20,40,1,true,true,true,true,true,true,true,true,1,100,true,true,true,true,true,true,true,'bonus bMatkRate,15; bonus2 bAddClass,Class_All,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`script`) VALUES (1628,'Survival_Rod_C','Refined Survivor\'s Rod','Weapon','Staff',1,71,1,true,true,true,true,true,true,true,true,3,'bonus bDex,4; bonus bMatkRate,20; bonus bMaxHP,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1629,'Walking_Stick','Gentleman\'s Staff','Weapon','Staff',20,500,40,1,1,true,true,true,true,true,true,true,true,4,50,true,'bonus bMatkRate,15; bonus bDex,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1630,'Release_Of_Wish','Release of Wish','Weapon','Staff',20,500,30,1,true,true,true,true,true,3,50,true,'bonus bMatkRate,15; bonus bInt,3; bonus bHealPower,5; autobonus "{ bonus2 bSPRegenRate,100,2000; bonus2 bHPRegenRate,50,2000; }",10,10000,BF_MAGIC,"{ specialeffect2 EF_HEAL; }";'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1631,'Holy_Stick','Holy Stick','Weapon','Staff',20,500,50,1,1,true,true,true,4,70,true,'bonus bAtkEle,Ele_Holy; bonus bMatkRate,15; bonus2 bCastrate,"AL_HOLYLIGHT",-25; bonus2 bCastrate,"PR_TURNUNDEAD",-25; bonus2 bCastrate,"PR_MAGNUS",-25;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1632,'BF_Staff1','Warlock\'s Magic Wand','Weapon','Staff',20,70,1,true,true,true,true,true,true,true,true,3,80,true,100,true,true,true,true,true,true,'bonus bInt,4; bonus bDex,3; bonus bMatkRate,15; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; bonus3 bAddEff,Eff_Stun,500,ATF_SKILL; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1633,'BF_Staff2','Warlock\'s Battle Wand','Weapon','Staff',20,70,1,true,true,true,true,true,true,true,true,3,80,true,100,true,true,true,true,true,true,'bonus bInt,3; bonus bDex,3; bonus bMatkRate,15; bonus2 bMagicAddRace,RC_DemiHuman,15; bonus2 bMagicAddRace,RC_Player_Human,15; bonus3 bAddEff,Eff_Stun,500,ATF_SKILL; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1634,'BF_Staff3','Strong Recovery Wand','Weapon','Staff',20,70,1,true,true,true,true,true,true,true,true,3,80,true,100,true,true,true,true,true,true,'bonus bMatkRate,15; bonus bHealPower,14; bonus2 bSPRegenRate,5,10000; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1635,'BF_Staff4','Speedy Recovery Wand','Weapon','Staff',20,70,1,true,true,true,true,true,true,true,true,3,80,true,100,true,true,true,true,true,true,'bonus bInt,3; bonus bDex,2; bonus bMatkRate,15; bonus bDelayRate,-15; bonus2 bSPRegenRate,5,10000; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_wizard`,`class_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1636,'Thorn_Staff','Thorn Staff of Darkness','Weapon','Staff',20,700,60,1,true,true,true,true,true,true,true,true,4,75,true,'bonus bInt,3; bonus bDex,3; bonus bMatkRate,20; bonus2 bIgnoreMdefClassRate,Class_Normal,getrefine(); bonus2 bIgnoreMdefClassRate,Class_Boss,getrefine(); bonus bDelayRate,-(getrefine()*3/2);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_wizard`,`class_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1637,'Eraser','Eraser','Weapon','Staff',20,500,80,1,true,true,true,true,true,true,true,true,4,70,true,'bonus bMatkRate,20; 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;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1638,'Healing_Staff_C','Staff Of Healing','Weapon','Staff',20,10,1,true,true,true,true,3,1,true,100,true,true,true,true,true,true,true,true,'bonus bAtkEle,Ele_Holy; bonus bMatkRate,15; bonus bHealPower,(getrefine()*3/2);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_novice`,`job_priest`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1639,'N_Rod','Novice Rod','Weapon','Staff',15,1,3,true,true,true,true,true,true,true,true,true,true,1,1,100,true,true,true,true,true,true,true,'bonus bMatkRate,16;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1640,'Krieger_Onehand_Staff1','Glorious Arc Wand','Weapon','Staff',20,70,1,true,true,true,true,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bMagicAddRace,RC_DemiHuman,15; bonus2 bMagicAddRace,RC_Player_Human,15; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25 + ((getrefine()>5) ? 5 : 0); bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25 + ((getrefine()>5) ? 5 : 0); bonus bUnbreakableWeapon; if(getrefine()>8) { bonus bCastrate,-5; bonus bDelayRate,-5; bonus bMatkRate,5; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1641,'Krieger_Onehand_Staff2','Glorious Cure Wand','Weapon','Staff',20,70,1,true,true,true,true,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus bHealPower,14; bonus bDelayRate,-10; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,5; bonus bHealPower,5+(getrefine()-5)*2; } if(getrefine()>8) bonus5 bAutoSpellOnSkill,"AL_HEAL","AL_HEAL",10,100,1; if(getrefine()>9) { bonus bHealPower,10; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1642,'Staff_Of_Darkness','Staff Of Darkness','Weapon','Staff',20,100,1,true,true,true,true,true,true,true,true,2,100,true,true,true,true,true,true,true,true,'bonus bCastrate,-5; bonus bMatkRate,15; bonus bInt,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1643,'Dead_Tree_Cane','Dead Tree Cane','Weapon','Staff',20,100,100,1,true,true,true,true,true,true,true,true,4,70,true,'bonus bMatk,15; bonus bInt,4; if(getrefine()>5) { bonus bInt,getrefine()-5; bonus bMaxHP,-200; bonus bMaxSP,-100; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_wizard`,`class_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1644,'Piercing_Staff_M','Staff of Piercing','Weapon','Staff',20,500,80,1,true,true,true,true,true,true,true,true,3,70,true,100,true,true,true,true,true,true,true,'bonus bInt,4; bonus bMatkRate,15; bonus2 bIgnoreMdefClassRate,Class_Normal,10+getrefine(); bonus2 bIgnoreMdefClassRate,Class_Boss,10+getrefine();'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_wizard`,`class_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1645,'Lich_Bone_Wand_M','Lich\'s Bone Wand','Weapon','Staff',20,800,60,1,2,true,true,true,true,true,true,true,true,3,70,true,100,true,true,true,true,true,true,true,'bonus bInt,1; bonus bDex,1; bonus bAtkEle,Ele_Undead; bonus bMatkRate,20; bonus3 bAutoSpellWhenHit,"NPC_WIDECURSE",5,10+getrefine(); if(getrefine()>=9){ bonus bMatkRate,3; bonus bMaxSP,300; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_mage`,`job_sage`,`job_wizard`,`class_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1646,'La\'cryma_Stick','La\'cryma Stick','Weapon','Staff',20,500,30,1,2,true,true,true,true,true,3,50,true,'bonus bInt,4; bonus bMatkRate,15; bonus bMdef,getrefine(); bonus2 bSkillAtk,"WZ_STORMGUST",getrefine(); if(getrefine()>9) bonus2 bCastrate,"WZ_STORMGUST",-8;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`class_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1647,'Croce_Staff','Croce Staff','Weapon','Staff',20,500,30,1,1,true,true,true,true,true,3,50,true,'bonus bAtkEle,Ele_Holy; bonus bMatkRate,15; bonus bInt,4; bonus4 bAutoSpellOnSkill,"AL_HEAL","AL_BLESSING",max(getskilllv("AL_BLESSING"),1),20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_mage`,`job_sage`,`job_wizard`,`class_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1648,'Staff_Of_Bordeaux','Staff Of Bordeaux','Weapon','Staff',20,500,30,1,true,true,true,true,true,4,50,true,'bonus bMatkRate,15; bonus bInt,2; bonus bDex,1; if(getskilllv("SA_DRAGONOLOGY")==5) { bonus bUseSPrate,-15; bonus bInt,3; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1701,'Bow','Bow','Weapon','Bow',1000,500,15,5,3,true,true,true,true,true,true,true,1,4,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1702,'Bow_','Bow','Weapon','Bow',1000,500,15,5,4,true,true,true,true,true,true,true,1,4,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1703,'Bow__','Bow','Weapon','Bow',1000,15,5,true,true,true,true,true,true,true,1,4,true,100,true,true,true,true,true,true,true,true,'bonus2 bAddDamageClass,1002,500; bonus2 bAddDamageClass,1113,500; bonus2 bAddDamageClass,1031,500; bonus2 bAddDamageClass,1242,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1704,'Composite_Bow','Composite Bow','Weapon','Bow',2500,600,29,5,3,true,true,true,true,true,true,true,1,4,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1705,'Composite_Bow_','Composite Bow','Weapon','Bow',2500,600,29,5,4,true,true,true,true,true,true,true,1,4,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1706,'Composite_Bow__','Composite Bow','Weapon','Bow',2500,600,29,5,true,true,true,true,true,true,true,1,4,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1707,'Great_Bow','Great Bow','Weapon','Bow',10000,1000,50,5,2,true,true,true,true,true,true,true,2,18,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1708,'Great_Bow_','Great Bow','Weapon','Bow',10000,1000,50,5,3,true,true,true,true,true,true,true,2,18,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1709,'Great_Bow__','Great Bow','Weapon','Bow',10000,1000,50,5,true,true,true,true,true,true,true,2,18,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1710,'CrossBow','Crossbow','Weapon','Bow',17000,900,65,5,2,true,true,true,true,true,true,true,2,18,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1711,'CrossBow_','Crossbow','Weapon','Bow',17000,900,65,5,3,true,true,true,true,true,true,true,2,18,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1712,'CrossBow__','Crossbow','Weapon','Bow',17000,900,65,5,true,true,true,true,true,true,true,2,18,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1713,'Arbalest','Arbalest','Weapon','Bow',48000,1000,90,5,1,true,true,true,true,true,true,true,3,33,true,'bonus bDex,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1714,'Kakkung','Gakkung Bow','Weapon','Bow',42000,1100,100,5,1,true,true,true,true,true,true,true,3,33,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1715,'Arbalest_','Arbalest','Weapon','Bow',48000,1000,90,5,2,true,true,true,true,true,true,true,3,33,true,'bonus bDex,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1716,'Kakkung_','Gakkung Bow','Weapon','Bow',42000,1100,100,5,2,true,true,true,true,true,true,true,3,33,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_hunter`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1718,'Hunter_Bow','Hunter Bow','Weapon','Bow',64000,1500,125,5,true,true,true,3,33,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1719,'Bow_Of_Roguemaster','Roguemaster\'s Bow','Weapon','Bow',20,500,75,11,true,true,true,4,48,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1720,'Bow_Of_Rudra','Rudra Bow','Weapon','Bow',20,1200,150,5,true,true,true,true,true,true,4,48,true,'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;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1721,'Repeting_CrossBow','Repeating Crossbow','Weapon','Bow',89000,2000,95,9,1,true,true,true,true,true,3,65,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_barddancer`,`job_hunter`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1722,'Balistar','Ballista','Weapon','Bow',124000,3500,145,5,true,true,true,true,4,77,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_hunter`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1723,'Luna_Bow','Luna Bow','Weapon','Bow',20,2000,100,5,2,true,true,true,3,30,true,'bonus bDef,2+3*(getrefine()>5)+2*(getrefine()>8);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1724,'Dragon_Wing','Dragon Wing','Weapon','Bow',20,1200,100,5,true,true,true,true,true,true,true,4,60,true,'bonus3 bAddMonsterDropItem,1765,RC_Dragon,300; bonus bIgnoreDefRace,RC_Dragon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`job_hunter`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1725,'Bow_Of_Minstrel','Minstrel Bow','Weapon','Bow',20,1700,120,5,1,true,true,true,true,4,70,true,'bonus bInt,2; bonus bSPrecovRate,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_hunter`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1726,'Hunter_Bow_','Hunter Bow','Weapon','Bow',64000,1500,125,5,1,true,true,true,3,33,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`job_hunter`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1727,'Balistar_','Ballista','Weapon','Bow',124000,3500,145,5,1,true,true,true,true,4,77,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_barddancer`,`job_hunter`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1728,'Balistar_C','Ballista','Weapon','Bow',1,194,5,true,true,true,true,4,1,100,true,true,true,true,true,true,true,true,'bonus bLongAtkRate,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (1729,'Bow_Of_Rudra_C','Rudra Bow','Weapon','Bow',2,185,5,true,true,true,true,true,true,4,1,'bonus bAtkEle,Ele_Holy; bonus bInt,5; skill "AL_CURE",1; skill "AL_HEAL",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1730,'Burning_Bow','Burning Bow','Weapon','Bow',20,1400,95,5,1,true,true,true,true,true,true,3,55,true,'bonus2 bSubEle,Ele_Fire,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1731,'Frozen_Bow','Frozen Bow','Weapon','Bow',20,1400,100,5,1,true,true,true,true,true,true,3,55,true,'bonus2 bAddEff,Eff_Freeze,1000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1732,'Earth_Bow','Earth Bow','Weapon','Bow',20,1400,105,5,1,true,true,true,true,true,true,3,55,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1733,'Gust_Bow','Gust Bow','Weapon','Bow',20,1400,95,5,1,true,true,true,true,true,true,3,55,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1734,'Orc_Archer_Bow','Orc Archer Bow','Weapon','Bow',20,1600,120,5,true,true,true,true,true,true,3,65,true,'bonus2 bAddMonsterDropItem,1753,200;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1735,'Kkakkung','Kkakkung','Weapon','Bow',20,120,5,true,true,true,true,true,true,true,1,1,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_hunter`,`class_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1736,'Double_Bound','Double Bound','Weapon','Bow',20,900,70,5,3,true,true,true,true,3,70,true,'bonus3 bAutoSpell,"AC_DOUBLE",GetSkillLv("AC_DOUBLE"),10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_hunter`,`class_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1737,'Ixion_Wing','Ixion Wings','Weapon','Bow',20,300,135,5,1,true,true,true,true,4,70,true,'autobonus "{ bonus bAspdRate,7; }",10+(getrefine()*2),7000,BF_WEAPON,"{ specialeffect2 EF_HASTEUP; }"; bonus2 bAddSkillBlow,"AC_CHARGEARROW",3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1738,'BF_Bow1','Valorous Battle CrossBow','Weapon','Bow',100,5,true,true,true,true,true,true,true,3,80,true,100,true,true,true,true,true,true,'bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1739,'BF_Bow2','Brave Battle CrossBow','Weapon','Bow',100,5,true,true,true,true,true,true,true,3,80,true,100,true,true,true,true,true,true,'bonus bDex,2; bonus bInt,10; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_hunter`,`class_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1740,'Nepenthes_Bow','Nepenthes Bow','Weapon','Bow',20,1000,105,5,2,true,true,true,true,4,60,true,'bonus4 bAutoSpellOnSkill,"AC_DOUBLE","AC_CHARGEARROW",1,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`class_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1741,'Cursed_Lyre','Cursed Lyre','Weapon','Bow',20,1250,125,5,1,true,true,true,true,true,true,4,80,true,'bonus bLuk,-2; bonus2 bAddEff,Eff_Curse,400;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (1742,'N_Composite_Bow','Novice Composite Bow','Weapon','Bow',1,49,5,3,true,true,true,true,true,true,true,1,4,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1743,'Krieger_Bow1','Glorious Hunter Bow','Weapon','Bow',100,5,true,true,true,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bCritAtkRate,getrefine() * 2; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) bonus2 bSkillAtk,"AC_DOUBLE",20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1744,'Bow_Of_Evil','Bow Of Evil','Weapon','Bow',170,5,true,true,true,true,true,true,true,4,1,100,true,true,true,true,true,true,true,true,'bonus2 bSkillAtk,"AC_DOUBLE",25; bonus bDex,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`class_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1745,'Falken_Blitz','Falken Blitz','Weapon','Bow',1000,100,5,2,true,true,true,true,true,true,3,50,true,'bonus2 bSkillAtk,"SN_SHARPSHOOTING",10; bonus2 bSkillAtk,"AC_DOUBLE",10; bonus2 bSkillAtk,"AC_CHARGEARROW",10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1801,'Waghnakh','Waghnak','Weapon','Knuckle',8000,400,30,1,3,true,true,true,1,1,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1802,'Waghnakh_','Waghnak','Weapon','Knuckle',8000,400,30,1,4,true,true,true,1,1,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1803,'Knuckle_Duster','Knuckle Dusters','Weapon','Knuckle',25000,450,50,1,2,true,true,true,2,12,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1804,'Knuckle_Duster_','Knuckle Dusters','Weapon','Knuckle',25000,450,50,1,3,true,true,true,2,12,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1805,'Hora','Studded Knuckles','Weapon','Knuckle',32000,450,65,1,2,true,true,true,2,12,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1806,'Hora_','Studded Knuckles','Weapon','Knuckle',32000,450,65,1,3,true,true,true,2,12,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1807,'Fist','Fist','Weapon','Knuckle',53000,650,115,1,true,true,true,3,24,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1808,'Fist_','Fist','Weapon','Knuckle',53000,650,115,1,1,true,true,true,3,24,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1809,'Claw','Claw','Weapon','Knuckle',67000,500,86,1,1,true,true,true,3,24,true,'bonus bStr,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1810,'Claw_','Claw','Weapon','Knuckle',67000,500,86,1,2,true,true,true,3,24,true,'bonus bStr,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1811,'Finger','Finger','Weapon','Knuckle',58000,500,97,1,1,true,true,true,3,24,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1812,'Finger_','Finger','Weapon','Knuckle',58000,500,97,1,2,true,true,true,3,24,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1813,'Kaiser_Knuckle','Kaiser Knuckle','Weapon','Knuckle',20,450,110,1,true,true,true,4,36,true,'bonus bAtkEle,Ele_Wind; bonus2 bAddRace,RC_Undead,5; bonus2 bAddEle,Ele_Water,10; bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Fire,10; bonus2 bAddEle,Ele_Wind,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1814,'Berserk','Berserk','Weapon','Knuckle',20,500,120,1,true,true,true,4,36,true,'bonus bAspdRate,12;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1815,'Claw_Of_Garm','Hatii Claw','Weapon','Knuckle',20,550,152,1,1,true,true,true,4,70,true,'bonus bAtkEle,Ele_Dark; bonus bMaxHPrate,-2; bonus2 bAddEff,Eff_Bleeding,200;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1816,'Berserk_','Berserk','Weapon','Knuckle',20,500,120,1,1,true,true,true,4,36,true,'bonus bAspdRate,12;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1817,'Kaiser_Knuckle_C','Kaiser Knuckle','Weapon','Knuckle',1,159,1,true,true,true,4,1,100,true,true,true,true,true,true,true,true,'bonus bAtkEle,Ele_Wind; bonus2 bAddRace,RC_Undead,5; bonus2 bAddEle,Ele_Water,10; bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Fire,10; bonus2 bAddEle,Ele_Wind,10; bonus bAspdRate,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1818,'Magma_Fist','Magma Fist','Weapon','Knuckle',20,650,80,1,3,true,true,true,3,75,true,'bonus3 bAutoSpell,"SA_FLAMELAUNCHER",5,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1819,'Icicle_Fist','Icicle Fist','Weapon','Knuckle',20,650,80,1,3,true,true,true,3,75,true,'bonus3 bAutoSpell,"SA_FROSTWEAPON",5,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1820,'Electric_Fist','Electric Fist','Weapon','Knuckle',20,650,80,1,3,true,true,true,3,75,true,'bonus3 bAutoSpell,"SA_LIGHTNINGLOADER",5,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1821,'Seismic_Fist','Seismic Fist','Weapon','Knuckle',20,650,80,1,3,true,true,true,3,75,true,'bonus3 bAutoSpell,"SA_SEISMICWEAPON",5,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1822,'Combo_Battle_Glove','Combo Battle Glove','Weapon','Knuckle',20,500,30,1,4,true,true,true,3,60,true,'bonus2 bSkillAtk,"MO_TRIPLEATTACK",15; bonus2 bSkillAtk,"MO_CHAINCOMBO",15; bonus2 bSkillAtk,"MO_COMBOFINISH",20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1823,'BF_Knuckle1','Valorous Battle Fist','Weapon','Knuckle',20,30,1,true,true,true,3,80,true,100,true,true,true,true,true,true,'bonus bStr,2; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus4 bAutoSpell,"CH_SOULCOLLECT",1,5,0; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1824,'BF_Knuckle2','Brave Battle Fist','Weapon','Knuckle',20,30,1,true,true,true,3,80,true,100,true,true,true,true,true,true,'bonus bStr,2; bonus bInt,1; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bCastrate,"MO_EXTREMITYFIST",-25; autobonus "{ bonus2 bCastrate,\\"MO_EXTREMITYFIST\\",-100; }",50,6000,BF_WEAPON,"{ specialeffect2 EF_SUFFRAGIUM; }"; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`class_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1825,'Horn_Of_Hilthrion','Horn of Hillslion','Weapon','Knuckle',20,600,95,1,3,true,true,true,3,60,true,'bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,100; bonus4 bAutoSpellOnSkill,"CH_PALMSTRIKE","MO_INVESTIGATE",1,100; bonus3 bAutoSpell,"MO_CALLSPIRITS",5,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1826,'Krieger_Knuckle1','Glorious Claw','Weapon','Knuckle',20,30,1,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) { bonus3 bAutoSpell,"MO_INVESTIGATE",5,(getrefine()*10-50); bonus3 bAutoSpell,"AL_DECAGI",1,(getrefine()*10-50); }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1827,'Krieger_Knuckle2','Glorious Fist','Weapon','Knuckle',20,30,1,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) { bonus2 bCastrate,"MO_EXTREMITYFIST",-100; bonus4 bautospellonskill,"MO_EXPLOSIONSPIRITS","CH_SOULCOLLECT",1,1000; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1828,'Monk_Knuckle','Monk Knuckle','Weapon','Knuckle',20,150,1,true,true,true,4,100,true,true,true,true,true,true,true,true,'bonus bInt,2; bonus2 bSkillAtk,"MO_FINGEROFFENSIVE",25;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1829,'Fist_C','Fist','Weapon','Knuckle',150,1,true,true,true,3,1,100,true,true,true,true,true,true,true,true,'bonus2 bAddSize,Size_All,40;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1901,'Violin','Violin','Weapon','Musical',4000,700,50,1,3,true,'Male',true,1,2,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1902,'Violin_','Violin','Weapon','Musical',4000,700,50,1,4,true,'Male',true,1,2,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1903,'Mandolin','Mandolin','Weapon','Musical',18000,400,90,1,2,true,'Male',true,2,14,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1904,'Mandolin_','Mandolin','Weapon','Musical',18000,400,90,1,3,true,'Male',true,2,14,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1905,'Lute','Lute','Weapon','Musical',24500,500,105,1,2,true,'Male',true,2,14,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1906,'Lute_','Lute','Weapon','Musical',24500,500,105,1,3,true,'Male',true,2,14,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1907,'Guitar','Guitar','Weapon','Musical',47000,900,142,1,true,'Male',true,3,27,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1908,'Guitar_','Guitar','Weapon','Musical',47000,900,142,1,1,true,'Male',true,3,27,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1909,'Harp','Harp','Weapon','Musical',62000,900,114,1,1,true,'Male',true,3,27,true,'bonus bInt,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1910,'Harp_','Harp','Weapon','Musical',62000,900,114,1,2,true,'Male',true,3,27,true,'bonus bInt,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1911,'Guh_Moon_Goh','Gumoongoh','Weapon','Musical',54000,1300,126,1,1,true,'Male',true,3,27,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1912,'Guh_Moon_Goh_','Gumoongoh','Weapon','Musical',54000,1300,126,1,2,true,'Male',true,3,27,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1913,'Electronic_Guitar','Electric Guitar','Weapon','Musical',20,1800,110,1,true,'Male',true,4,70,true,'skill "WZ_JUPITEL",1; bonus3 bAutoSpell,"WZ_JUPITEL",1,100; bonus bAtkEle,Ele_Wind; bonus bInt,2; bonus bAgi,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1914,'Guitar_Of_Passion','Burning Passion Guitar','Weapon','Musical',20,900,110,1,true,'Male',true,3,27,true,'bonus bAtkEle,Ele_Fire;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1915,'Guitar_Of_Blue_Solo','Loner\'s Guitar','Weapon','Musical',20,900,110,1,true,'Male',true,3,27,true,'bonus bAtkEle,Ele_Water;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1916,'Guitar_Of_Vast_Land','Green Acre Guitar','Weapon','Musical',20,900,110,1,true,'Male',true,3,27,true,'bonus bAtkEle,Ele_Earth;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1917,'Guitar_Of_Gentle_Breeze','Gentle Breeze Guitar','Weapon','Musical',20,900,110,1,true,'Male',true,3,27,true,'bonus bAtkEle,Ele_Wind;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1918,'Oriental_Lute','Oriental Lute','Weapon','Musical',20,1200,150,1,true,'Male',true,4,65,true,'bonus2 bSkillAtk,"CG_ARROWVULCAN",10; bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`class_upper`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1919,'Base_Guitar','Bass Guitar','Weapon','Musical',20,1500,130,1,1,true,true,'Male',true,3,70,true,'bonus bSPGainValue,3; bonus4 bAutoSpellWhenHit,"WZ_HEAVENDRIVE",3,30,1; bonus3 bAutoSpell,"NPC_WIDECONFUSE",2,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_barddancer`,`class_upper`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1920,'Berserk_Guitar','Berserk Guitar','Weapon','Musical',20,1800,10,1,true,true,'Male',true,4,70,true,'bonus bAspdRate,100; bonus bHPrecovRate,-100; bonus2 bHPLossRate,50,5000; bonus bDex,-readparam(bDex);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1921,'Guh_Moon_Gom','Gun Moon Gom','Weapon','Musical',20,120,1,true,'Male',true,1,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1922,'Oriental_Lute_','Oriental Lute','Weapon','Musical',20,1200,150,1,2,true,'Male',true,4,65,true,'bonus2 bSkillAtk,"CG_ARROWVULCAN",10; bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1923,'BF_Instrument1','Valorous Battlefield Guitar','Weapon','Musical',20,50,1,true,'Male',true,3,80,true,100,true,true,true,true,true,true,'bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1924,'BF_Instrument2','Brave Battlefield Guitar','Weapon','Musical',20,50,1,true,'Male',true,3,80,true,100,true,true,true,true,true,true,'bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bSkillAtk,"CG_ARROWVULCAN",20; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`class_upper`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1925,'Cello','Cello','Weapon','Musical',20,700,110,1,3,true,true,'Male',true,3,70,true,'bonus bAgi,2; bonus bDex,3; bonus2 bAddSkillBlow,"BA_MUSICALSTRIKE",2; bonus2 bAddSkillBlow,"CG_ARROWVULCAN",3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`class_upper`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1926,'Harp_Of_Nepenthes','Harp of Nepenthes','Weapon','Musical',20,1000,120,1,2,true,true,'Male',true,4,60,true,'bonus bInt,2; if( getrefine()>9 ) { bonus3 bAddEffOnSkill,"BA_MUSICALSTRIKE",Eff_Stun,2000; } else { bonus3 bAddEffOnSkill,"BA_MUSICALSTRIKE",Eff_Stun,1000; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1927,'Krieger_Instrument1','Glorious Guitar','Weapon','Musical',20,50,1,true,'Male',true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) bonus4 bAutoSpellOnSkill,"CG_ARROWVULCAN","CG_TAROTCARD",5,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_barddancer`,`class_upper`,`gender`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1928,'Berserk_Guitar_I','Spirited Guitar','Weapon','Musical',40,1,true,true,'Male',true,4,100,true,true,true,true,true,true,true,true,'bonus bAspdRate,100; bonus bHPrecovRate,-100; bonus2 bHPLossRate,50,5000; bonus bDex,-readparam(bDex);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1929,'Guitar_C','Guitar','Weapon','Musical',177,1,true,'Male',true,3,1,100,true,true,true,true,true,true,true,true,'bonus2 bAddSize,Size_All,40;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1950,'Rope','Rope','Weapon','Whip',2500,400,45,2,3,true,'Female',true,1,3,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1951,'Rope_','Rope','Weapon','Whip',2500,400,45,2,4,true,'Female',true,1,3,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1952,'Line','Whip','Weapon','Whip',12000,300,80,2,2,true,'Female',true,2,16,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1953,'Line_','Whip','Weapon','Whip',12000,300,80,2,3,true,'Female',true,2,16,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1954,'Wire','Wire Whip','Weapon','Whip',17500,1000,95,2,2,true,'Female',true,2,16,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1955,'Wire_','Wire Whip','Weapon','Whip',17500,1000,95,2,3,true,'Female',true,2,16,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1956,'Rante','Rante Whip','Weapon','Whip',32000,900,135,2,true,'Female',true,3,30,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1957,'Rante_','Rante Whip','Weapon','Whip',32000,900,135,2,1,true,'Female',true,3,30,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1958,'Tail','Tail Whip','Weapon','Whip',41000,700,105,2,1,true,'Female',true,3,30,true,'bonus bLuk,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1959,'Tail_','Tail Whip','Weapon','Whip',41000,700,105,2,2,true,'Female',true,3,30,true,'bonus bLuk,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1960,'Whip','Whip','Weapon','Whip',38000,700,120,2,1,true,'Female',true,3,30,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1961,'Whip_','Whip','Weapon','Whip',38000,700,120,2,2,true,'Female',true,3,30,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1962,'Lariat','Lariat Whip','Weapon','Whip',20,400,100,2,true,'Female',true,4,44,true,'bonus bDex,5; bonus bAgi,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1963,'Rapture_Rose','Rapture Rose','Weapon','Whip',20,300,115,2,true,'Female',true,4,44,true,'bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,5000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1964,'Chemeti','Chemeti Whip','Weapon','Whip',20,700,135,2,true,'Female',true,4,44,true,'bonus bCritical,5; bonus bFlee,10; bonus bFlee2,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1965,'Whip_Of_Red_Flame','Red Flame Whip','Weapon','Whip',20,700,110,2,true,'Female',true,3,30,true,'bonus bAtkEle,Ele_Fire;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1966,'Whip_Of_Ice_Piece','Icicle Whip','Weapon','Whip',20,700,110,2,true,'Female',true,3,30,true,'bonus bAtkEle,Ele_Water;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1967,'Whip_Of_Earth','Gaia Whip','Weapon','Whip',20,700,110,2,true,'Female',true,3,30,true,'bonus bAtkEle,Ele_Earth;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1968,'Jump_Rope','Skipping Rope','Weapon','Whip',20,400,120,2,true,'Female',true,3,30,true,'bonus bCritical,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1969,'Bladed_Whip','Blade Whip','Weapon','Whip',20,1200,140,2,true,'Female',true,4,30,true,'bonus2 bAddEff,Eff_Bleeding,300;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1970,'Queen\'s_Whip','Queen\'s Whip','Weapon','Whip',20,1100,150,2,true,'Female',true,4,65,true,'bonus2 bSkillAtk,"CG_ARROWVULCAN",10; bonus2 bSkillAtk,"DC_THROWARROW",10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1971,'Electric_Wire','Electric Wire','Weapon','Whip',20,700,110,2,true,'Female',true,3,30,true,'bonus bAtkEle,Ele_Wind;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`class_upper`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1972,'Electric_Eel','Electric Eel','Weapon','Whip',20,2000,100,2,2,true,true,'Female',true,4,70,true,'bonus bAtkEle,Ele_Wind; bonus bInt,2; bonus bAgi,2; bonus3 bAutoSpell,"WZ_JUPITEL",3,20; if(getrefine()>0) bonus3 bAutoSpell,"CG_ARROWVULCAN",getrefine(),50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`class_upper`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1973,'Sea_Witch_Foot','Sea Witch\'s Foot','Weapon','Whip',20,1500,110,2,1,true,true,'Female',true,4,70,true,'bonus bSPGainValue,5; bonus4 bAutoSpellWhenHit,"WZ_FROSTNOVA",3,50,1; bonus3 bAutoSpell,"NPC_WIDESILENCE",2,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_barddancer`,`class_upper`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1974,'Carrot_Whip','Carrot Whip','Weapon','Whip',20,1300,185,2,true,true,'Female',true,4,70,true,'if(getrefine()>0) bonus3 bAutoSpell,"AL_INCAGI",getrefine(),10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1975,'Queen_Is_Whip','Queen Is Whip','Weapon','Whip',20,120,2,true,'Female',true,1,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1976,'Queen\'s_Whip_','Queen\'s Whip','Weapon','Whip',20,1100,150,2,2,true,'Female',true,4,65,true,'bonus2 bSkillAtk,"CG_ARROWVULCAN",10; bonus2 bSkillAtk,"DC_THROWARROW",10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1977,'BF_Whip1','Valorous Battle Lariat','Weapon','Whip',20,50,2,true,'Female',true,3,80,true,100,true,true,true,true,true,true,'bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1978,'BF_Whip2','Brave Battle Lariat','Weapon','Whip',20,50,2,true,'Female',true,3,80,true,100,true,true,true,true,true,true,'bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bSkillAtk,"CG_ARROWVULCAN",20; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`class_upper`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1979,'Stem_Of_Nepenthes','Stem of Nepenthes','Weapon','Whip',20,1000,120,2,2,true,true,'Female',true,4,60,true,'bonus bInt,2; if( getrefine()>=9 ) { bonus3 bAddEffOnSkill,"DC_THROWARROW",Eff_Freeze,2000; } else { bonus3 bAddEffOnSkill,"DC_THROWARROW",Eff_Freeze,1000; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`class_upper`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1980,'Whip_Of_Balance','Whip of Balance','Weapon','Whip',20,700,110,2,3,true,true,'Female',true,3,70,true,'bonus bAgi,2; bonus bDex,3; bonus2 bAddSkillBlow,"DC_THROWARROW",2; bonus2 bAddSkillBlow,"CG_ARROWVULCAN",3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1981,'Krieger_Whip1','Glorious Lariat','Weapon','Whip',20,50,2,true,'Female',true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) bonus4 bAutoSpellOnSkill,"CG_ARROWVULCAN","CG_TAROTCARD",5,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1982,'Phenomena_Whip','Phenomena Whip','Weapon','Whip',20,160,2,true,'Female',true,4,100,true,true,true,true,true,true,true,true,'bonus bDex,2; bonus2 bSkillAtk,"DC_THROWARROW",25;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1983,'Rante_C','Rante Whip','Weapon','Whip',170,2,true,'Female',true,3,1,100,true,true,true,true,true,true,true,true,'bonus2 bAddSize,Size_All,40;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_wizard`,`class_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2000,'Destruction_Rod','Staff of Destruction','Weapon','2hStaff',20,2500,130,1,1,true,true,true,true,4,80,true,'bonus bMatkRate,25+getrefine()/2; bonus bInt,3; bonus bAgi,10; bonus bUseSPrate,(getrefine()*2); bonus3 bAutoSpellWhenHit,"WZ_JUPITEL",5,(getrefine()*20); bonus2 bCastrate,"HW_MAGICPOWER",-50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_monk`,`job_priest`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2001,'Divine_Cross','Divine Cross','Weapon','2hStaff',20,1500,120,1,true,true,true,true,4,70,true,'bonus bAtkEle,Ele_Holy; bonus bMatkRate,15; bonus bDex,4; bonus2 bSubRace,RC_Demon,15; bonus2 bSubRace,RC_Undead,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2002,'Krieger_Twohand_Staff1','Glorious Destruction Staff','Weapon','2hStaff',20,70,1,true,true,true,true,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus bMatkRate,getrefine(); bonus2 bMagicAddRace,RC_DemiHuman,15; bonus2 bMagicAddRace,RC_Player_Human,15; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bMagicAddRace,RC_DemiHuman,(getrefine()-5)*2; bonus2 bMagicAddRace,RC_Player_Human,(getrefine()-5)*2; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5+(getrefine()-5)*2; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,5+(getrefine()-5)*2; } if(getrefine()>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; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_wizard`,`class_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2003,'Destruction_Rod_M','Staff of Destruction','Weapon','2hStaff',20,2500,130,1,1,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus bMatkRate,25+getrefine()/2; bonus bInt,3; bonus bAgi,10; bonus bUseSPrate,(getrefine()*2); bonus3 bAutoSpellWhenHit,"WZ_JUPITEL",5,(getrefine()*20); bonus2 bCastrate,"HW_MAGICPOWER",-50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_mage`,`job_sage`,`job_wizard`,`class_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2004,'Kronos','Kronos','Weapon','2hStaff',20,1000,30,1,true,true,true,true,true,true,4,50,true,'bonus bMatkRate,20; bonus bInt,3+(getrefine()/2); bonus bMaxHP,300+(50*getrefine()/2); autobonus "{ bonus bMatkRate,12; bonus buseSPRate,20; }",1,5000,BF_MAGIC,"{ specialeffect2 EF_ENHANCE; }";'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`class_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2005,'Dea_Staff','Dea Staff','Weapon','2hStaff',20,1000,30,1,1,true,true,true,true,true,true,3,50,true,'bonus bAtkEle,Ele_Holy; bonus bMatkRate,15+getrefine()/2; bonus bInt,6; bonus bVit,2; autobonus3 "{ }",20,1000,"AL_HEAL","{ specialeffect2 EF_MAGICALATTHIT; heal 0,200; }";'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2006,'G_Staff_Of_Light','Staff Of Light','Weapon','2hStaff',20,1900,80,1,true,true,true,true,true,true,4,60,true,'/* bonus bMatk,150; */ bonus bAtkEle,Ele_Holy; bonus bInt,6;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_left_hand`,`refineable`,`view`) VALUES (2101,'Guard','Guard','Armor',500,300,3,true,true,1); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_left_hand`,`refineable`,`view`) VALUES (2102,'Guard_','Guard','Armor',500,300,3,1,true,true,1); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_acolyte`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_rogue`,`job_swordman`,`job_thief`,`location_left_hand`,`refineable`,`view`) VALUES (2103,'Buckler','Buckler','Armor',14000,600,4,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,2); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_rogue`,`job_swordman`,`job_thief`,`location_left_hand`,`refineable`,`view`) VALUES (2104,'Buckler_','Buckler','Armor',14000,600,4,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,2); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`refineable`,`view`) VALUES (2105,'Shield','Shield','Armor',56000,1300,6,true,true,true,true,true,3); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`refineable`,`view`) VALUES (2106,'Shield_','Shield','Armor',56000,1300,6,1,true,true,true,true,true,3); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_crusader`,`job_knight`,`job_stargladiator`,`job_swordman`,`location_left_hand`,`refineable`,`view`,`script`) VALUES (2107,'Mirror_Shield','Mirror Shield','Armor',60000,1000,4,true,true,true,true,true,true,4,'bonus bMdef,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`job_knight`,`job_stargladiator`,`job_swordman`,`location_left_hand`,`refineable`,`view`,`script`) VALUES (2108,'Mirror_Shield_','Mirror Shield','Armor',60000,1000,4,1,true,true,true,true,true,true,4,'bonus bMdef,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_left_hand`,`refineable`,`view`,`script`) VALUES (2109,'Memorize_Book','Memory Book','Armor',20,1000,3,true,true,true,true,true,true,5,'bonus bInt,1; bonus bMdef,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_crusader`,`location_left_hand`,`equip_level_min`,`view`,`script`) VALUES (2110,'Holy_Guard','Holy Guard','Armor',85000,1400,5,true,true,68,4,'bonus bVit,2; bonus bMdef,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_crusader`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2111,'Herald_Of_GOD','Sacred Mission','Armor',128000,1600,5,true,true,83,true,4,'bonus bVit,3; bonus bInt,2; bonus bMdef,3; bonus bUnbreakableShield;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_novice`,`job_supernovice`,`location_left_hand`,`view`) VALUES (2112,'Novice_Guard','Novice Guard','Armor',1,1,3,true,true,true,1); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2113,'Novice_Shield','Novice Shield','Armor',5000,1000,3,1,true,true,true,40,true,3,'bonus2 bSubEle,Ele_Water,20; bonus2 bSubEle,Ele_Earth,20; bonus2 bSubEle,Ele_Fire,20; bonus2 bSubEle,Ele_Wind,20; bonus2 bSubEle,Ele_Poison,20; bonus2 bSubEle,Ele_Ghost,20; bonus2 bSubEle,Ele_Undead,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2114,'Stone_Buckler','Stone Buckler','Armor',30000,1500,3,1,true,false,false,true,65,true,2,'bonus2 bSubSize,Size_Large,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2115,'Valkyrja\'s_Shield','Valkyrja\'s Shield','Armor',30000,500,3,1,true,false,false,true,65,true,4,'bonus2 bSubEle,Ele_Water,20; bonus2 bSubEle,Ele_Fire,20; bonus2 bSubEle,Ele_Dark,20; bonus2 bSubEle,Ele_Undead,20; bonus bMdef,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2116,'Angel\'s_Safeguard','Angelic Guard','Armor',10000,400,3,1,true,true,true,20,true,1,'bonus2 bSubRace,RC_Demon,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_ninja`,`location_left_hand`,`equip_level_min`,`refineable`,`view`) VALUES (2117,'Arm_Guard','Arm Guard','Armor',10000,150,5,true,true,20,true,1); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_ninja`,`location_left_hand`,`equip_level_min`,`refineable`,`view`) VALUES (2118,'Arm_Guard_','Arm Guard','Armor',10000,150,5,1,true,true,20,true,1); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_ninja`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2119,'Improved_Arm_Guard','Advanced Arm Guard','Armor',40000,150,4,true,true,50,true,1,'bonus bMdef,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_ninja`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2120,'Improved_Arm_Guard_','Advanced Arm Guard','Armor',40000,150,4,1,true,true,50,true,1,'bonus bMdef,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_left_hand`,`refineable`,`view`,`script`) VALUES (2121,'Memorize_Book_','Memory Book','Armor',20,1000,3,1,true,true,true,true,true,true,5,'bonus bInt,1; bonus bMdef,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2122,'Platinum_Shield','Platinum Shield','Armor',20,1200,5,true,false,false,true,true,68,true,4,'bonus bMdef,5; bonus2 bSubSize,Size_Medium,15; bonus2 bSubSize,Size_Large,15; bonus2 bSubRace,RC_Undead,10; bonus5 bAutoSpellWhenHit,"NPC_MAGICMIRROR",7,150,BF_MAGIC,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2123,'Orleans_Server','Orleans\'s Server','Armor',20,1000,5,1,true,false,false,true,true,55,true,4,'bonus bMdef,2; bonus bMagicDamageReturn,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2124,'Thorny_Buckler','Thorny Buckler','Armor',20,1000,5,1,true,false,false,true,true,55,true,2,'bonus bMdef,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`class_upper`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2125,'Strong_Shield','Strong Shield','Armor',20,2500,4,1,true,true,true,true,true,true,true,true,true,true,true,75,true,4,'bonus bNoKnockback; 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;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2126,'Guyak_Shield','Guyak Shield','Armor',20,700,3,true,false,false,true,75,true,2,'bonus bMdef,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_left_hand`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2127,'Secular_Mission','Secular Mission','Armor',20,10,true,4,100,true,true,true,true,true,true,true,'bonus2 bSubClass,Class_All,25;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2128,'Herald_Of_GOD_','Sacred Mission','Armor',128000,1600,5,1,true,true,83,true,4,'bonus bVit,3; bonus bInt,2; bonus bMdef,3; bonus bUnbreakableShield;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_monk`,`job_priest`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2129,'Exorcism_Bible','Exorcism Bible','Armor',20,600,5,true,true,true,50,true,5,'bonus bHPrecovRate,3; bonus bSPrecovRate,3; bonus bInt,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2130,'Cross_Shield','Cross Shield','Armor',20,2000,6,1,true,true,80,true,4,'bonus bStr,1; bonus2 bSkillAtk,"PA_SHIELDCHAIN",30; bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",30; bonus bUseSPrate,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2131,'Magic_Study_Vol1','Magic Bible Vol1','Armor',20,1000,2,1,true,true,true,true,true,70,true,5,'bonus bMdef,3; bonus bInt,2; bonus2 bAddEffWhenHit,Eff_Stun,1000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_left_hand`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2132,'Shelter_Resistance','Shell Of Resistance','Armor',20,9,true,2,100,true,true,true,true,true,true,true,true,'bonus2 bSubEle,Ele_All,20; bonus bShortWeaponDamageReturn,1; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bAllStats,1; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_upper`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2133,'Tournament_Shield','Tournament Shield','Armor',20,1000,5,1,true,true,true,true,true,50,true,4,'bonus2 bAddClass,Class_All,1; if( Class==Job_Lord_Knight ) bonus bAspdRate,-5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2134,'Shield_Of_Naga','Shield of Naga','Armor',20,500,3,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,70,true,2,'bonus bMdef,3; autobonus2 "{ bonus bShortWeaponDamageReturn,(getrefine()*3); }",10,5000,BF_WEAPON,"{ specialeffect2 EF_GUARD; }";'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_rogue`,`class_upper`,`location_left_hand`,`equip_level_min`,`refineable`,`view`) VALUES (2135,'Shadow_Guard','Shadow Guard','Armor',20,800,4,1,true,true,true,70,true,2); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_left_hand`,`view`,`script`) VALUES (2136,'Cracked_Buckler','Cracked Buckler','Armor',5,true,2,'bonus bAgi,2; bonus2 bAddEle,Ele_Neutral,-10; bonus3 bAutoSpellWhenHit,"PR_KYRIE",1,50; bonus bMdef,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`location_left_hand`,`equip_level_min`,`view`,`script`) VALUES (2137,'Valkyrja\'s_Shield_C','Neo Valkyrja\'s Shield','Armor',5,true,false,false,true,true,95,4,'bonus2 bSubEle,Ele_Water,20; bonus2 bSubEle,Ele_Fire,20; bonus2 bSubEle,Ele_Dark,20; bonus2 bSubEle,Ele_Undead,20; bonus bMdef,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2138,'Bradium_Shield','Bradium Shield','Armor',20,1800,5,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,65,true,3,'bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",60; bonus bAgi,-1; bonus bMaxHP,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_blacksmith`,`class_normal`,`class_upper`,`class_baby`,`location_left_hand`,`equip_level_min`,`view`) VALUES (2139,'Flame_Thrower','Flame Thrower','Armor',20000,2000,60,true,true,true,true,true,99,1); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_left_hand`,`equip_level_min`,`refineable`,`script`) VALUES (2199,'Ahura_Mazda','Ahura Mazdah','Armor',1,10,100,true,1,true,'bonus bAllStats,50; bonus bMdef,99; bonus bShortWeaponDamageReturn,100; bonus2 bSubRace,RC_DemiHuman,95; bonus2 bSubRace,RC_Player_Human,95; skill "CR_FULLPROTECTION",5; Skill "WZ_ESTIMATION",1; Skill "ST_FULLSTRIP",5; Skill "HW_MAGICPOWER",10; bonus bMaxHPRate,200; bonus bNoGemStone; bonus bSpeedRate,25; bonus bNoWalkDelay;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`view`,`script`) VALUES (2201,'Sunglasses','Sunglasses','Armor',5000,100,true,12,'bonus2 bResEff,Eff_Blind,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_mid`,`view`,`script`) VALUES (2202,'Sunglasses_','Sunglasses','Armor',5000,100,1,true,12,'bonus2 bResEff,Eff_Blind,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`view`) VALUES (2203,'Glasses','Glasses','Armor',4000,100,true,3); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_mid`,`view`) VALUES (2204,'Glasses_','Glasses','Armor',4000,100,1,true,3); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`view`) VALUES (2205,'Diver\'s_Goggles','Diver Goggles','Armor',3500,100,true,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`gender`,`location_head_top`,`refineable`,`view`,`script`) VALUES (2206,'Wedding_Veil','Wedding Veil','Armor',23000,100,'Female',true,true,44,'bonus bMdef,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`view`,`script`) VALUES (2207,'Fancy_Flower','Fancy Flower','Armor',20,100,true,4,'bonus2 bSubRace,RC_Plant,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`gender`,`location_head_top`,`refineable`,`view`,`script`) VALUES (2208,'Ribbon','Ribbon','Armor',800,100,1,'Female',true,true,17,'bonus bMdef,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`gender`,`location_head_top`,`refineable`,`view`,`script`) VALUES (2209,'Ribbon_','Ribbon','Armor',800,100,1,1,'Female',true,true,17,'bonus bMdef,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`view`) VALUES (2210,'Hair_Band','Hair Band','Armor',500,100,1,true,9); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (2211,'Bandana','Bandana','Armor',400,100,1,true,true,6); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`view`) VALUES (2212,'Eye_Bandage','Eye Patch','Armor',1000,100,true,13); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (2213,'Cat_Hairband','Kitty Band','Armor',20,100,2,true,true,2); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (2214,'Bunny_Band','Bunny Band','Armor',20,100,2,true,true,15,'bonus bLuk,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (2215,'Flower_Hairband','Flower Band','Armor',20,100,2,true,true,5); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_acolyte`,`job_monk`,`job_priest`,`location_head_top`,`refineable`,`view`) VALUES (2216,'Biretta','Biretta','Armor',9000,100,4,true,true,true,true,true,11); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`location_head_top`,`refineable`,`view`) VALUES (2217,'Biretta_','Biretta','Armor',9000,100,4,1,true,true,true,true,true,11); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`,`script`) VALUES (2218,'Flu_Mask','Flu Mask','Armor',300,100,true,8,'bonus2 bResEff,Eff_Silence,1000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`,`script`) VALUES (2219,'Flu_Mask_','Flu Mask','Armor',300,100,true,8,'bonus2 bResEff,Eff_Silence,1000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (2220,'Hat','Hat','Armor',1000,200,2,true,true,16); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`) VALUES (2221,'Hat_','Hat','Armor',1000,200,2,1,true,true,16); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`) VALUES (2222,'Turban','Turban','Armor',4500,300,3,true,false,false,true,true,7); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`) VALUES (2223,'Turban_','Turban','Armor',4500,300,3,1,true,false,false,true,true,7); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_head_top`,`location_head_mid`,`refineable`,`view`) VALUES (2224,'Goggle','Goggles','Armor',20,300,5,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_head_top`,`location_head_mid`,`refineable`,`view`) VALUES (2225,'Goggle_','Goggles','Armor',20,300,5,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_head_top`,`refineable`,`view`) VALUES (2226,'Cap','Cap','Armor',12000,400,4,true,true,true,true,true,true,true,true,true,true,true,true,true,true,14); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_head_top`,`refineable`,`view`) VALUES (2227,'Cap_','Cap','Armor',12000,400,4,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,14); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_crusader`,`job_knight`,`job_swordman`,`location_head_top`,`refineable`,`view`) VALUES (2228,'Helm','Helm','Armor',44000,600,6,true,true,true,true,true,40); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_head_top`,`refineable`,`view`) VALUES (2229,'Helm_','Helm','Armor',44000,600,6,1,true,true,true,true,true,40); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_head_top`,`refineable`,`script`) VALUES (2230,'Gemmed_Sallet','Gemmed Sallet','Armor',50000,500,4,true,true,true,true,true,true,true,true,true,true,true,'bonus bMdef,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_head_top`,`refineable`,`script`) VALUES (2231,'Gemmed_Sallet_','Gemmed Sallet','Armor',50000,500,4,1,true,true,true,true,true,true,true,true,true,true,true,'bonus bMdef,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_head_top`,`refineable`,`view`,`script`) VALUES (2232,'Circlet','Circlet','Armor',7500,300,3,true,true,true,true,true,true,true,true,true,18,'bonus bMdef,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_head_top`,`refineable`,`view`,`script`) VALUES (2233,'Circlet_','Circlet','Armor',7500,300,3,1,true,true,true,true,true,true,true,true,true,18,'bonus bMdef,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`gender`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2234,'Tiara','Tiara','Armor',20,400,4,true,false,false,'Female',true,45,true,19,'bonus bInt,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`gender`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2235,'Crown','Crown','Armor',20,400,4,true,false,false,'Male',true,45,true,45,'bonus bInt,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (2236,'Santa\'s_Hat','Santa Hat','Armor',20,100,1,true,true,20,'bonus bMdef,1; bonus bLuk,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`) VALUES (2237,'Weird_Goatee','Bandit Beard','Armor',2,100,true,21); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`view`) VALUES (2239,'One_Eyed_Glass','Monocle','Armor',10000,100,true,23); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`) VALUES (2240,'Beard','Beard','Armor',2,100,true,24); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`) VALUES (2241,'Granpa_Beard','Grampa Beard','Armor',5000,100,true,25); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`view`,`script`) VALUES (2242,'Luxury_Sunglasses','Purple Glasses','Armor',24000,100,1,true,26,'bonus2 bResEff,Eff_Blind,1000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`view`,`script`) VALUES (2243,'Spinning_Eyes','Geek Glasses','Armor',20000,100,1,true,27,'bonus2 bResEff,Eff_Blind,1500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (2244,'Big_Sis\'_Ribbon','Big Ribbon','Armor',15000,200,2,true,false,false,true,true,28,'bonus bMdef,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`) VALUES (2245,'Sweet_Gents','Sweet Gent','Armor',15000,400,3,true,false,false,true,true,29); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2246,'Golden_Gear','Golden Gear','Armor',20,900,5,true,false,false,true,40,true,30,'bonus bUnbreakableHelm;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`) VALUES (2247,'Oldman\'s_Romance','Romantic Gent','Armor',15000,400,3,true,false,false,true,true,31); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`) VALUES (2248,'Western_Grace','Western Grace','Armor',15000,400,3,true,false,false,true,true,32); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (2249,'Coronet','Coronet','Armor',20,300,3,true,false,false,true,true,33,'bonus bInt,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`view`,`script`) VALUES (2250,'Fillet','Cute Ribbon','Armor',500,100,1,true,false,false,true,34,'bonus bMaxSP,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_acolyte`,`job_monk`,`job_priest`,`location_head_top`,`refineable`,`view`,`script`) VALUES (2251,'Holy_Bonnet','Monk Hat','Armor',30000,100,5,true,true,true,true,true,35,'bonus bMdef,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_head_top`,`refineable`,`view`,`script`) VALUES (2252,'Star_Sparkling','Wizard Hat','Armor',20,300,4,true,true,true,true,true,true,36,'bonus bMaxSP,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`view`,`script`) VALUES (2253,'Sunflower','Sunflower','Armor',20,100,1,true,37,'bonus2 bSubRace,RC_Insect,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (2254,'Angelic_Chain','Angel Wing','Armor',20,100,2,true,false,false,true,true,38,'bonus bMdef,3; bonus bAgi,1; bonus bLuk,1; bonus2 bSubRace,RC_Demon,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (2255,'Satanic_Chain','Evil Wing','Armor',20,100,3,true,false,false,true,true,39,'bonus bMdef,2; bonus bStr,1; bonus2 bSubRace,RC_Angel,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`location_head_top`,`refineable`,`view`,`script`) VALUES (2256,'Magestic_Goat','Majestic Goat','Armor',20,800,5,true,true,true,true,true,true,true,true,true,true,41,'bonus bStr,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (2257,'Snowy_Horn','Unicorn Horn','Armor',20,100,2,true,true,42); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_acolyte`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_rogue`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`job_thief`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (2258,'Sharp_Gear','Spiky Band','Armor',20,1000,6,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,50,true,43); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (2259,'Mini_Propeller','Mini Propeller','Armor',20,100,1,true,true,46); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`view`) VALUES (2260,'Mini_Glasses','Mini Glasses','Armor',28000,100,1,true,false,false,true,47); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_head_top`,`refineable`,`view`) VALUES (2261,'Prontera_Army_Cap','Army Cap','Armor',20,400,4,true,true,true,true,true,true,true,true,true,true,true,48); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`) VALUES (2262,'Pierrot_Nose','Clown Nose','Armor',20,100,true,49); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`view`) VALUES (2263,'Gangster_Patch','Zorro Masque','Armor',20,100,true,false,false,true,50); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`location_head_low`,`view`,`script`) VALUES (2264,'Munak_Turban','Munak Hat','Armor',20,300,5,true,true,true,51,'bonus2 bSubRace,RC_Undead,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`,`script`) VALUES (2265,'Ganster_Mask','Gangster Mask','Armor',20,100,true,52,'bonus2 bResEff,Eff_Silence,1500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_crusader`,`job_knight`,`job_swordman`,`location_head_low`,`equip_level_min`,`view`) VALUES (2266,'Iron_Cane','Iron Cain','Armor',20,300,1,true,true,true,true,50,53); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_low`,`view`,`script`) VALUES (2267,'Cigar','Cigarette','Armor',20,100,true,false,false,true,54,'bonus2 bSubRace,RC_Insect,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_low`,`view`,`script`) VALUES (2268,'Smoking_Pipe','Pipe','Armor',20,100,true,false,false,true,55,'bonus2 bSubRace,RC_Insect,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_low`,`view`,`script`) VALUES (2269,'Centimental_Flower','Romantic Flower','Armor',20,100,true,false,false,true,56,'bonus2 bSubRace,RC_Plant,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_low`,`view`,`script`) VALUES (2270,'Centimental_Leaf','Romantic Leaf','Armor',20,100,true,false,false,true,57,'bonus2 bSubRace,RC_Plant,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`view`) VALUES (2271,'Jack_A_Dandy','Jack be Dandy','Armor',45000,100,1,true,false,false,true,58); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (2272,'Stop_Post','Stop Post','Armor',20,400,1,true,true,59); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (2273,'Doctor_Cap','Doctor Band','Armor',20,100,3,true,false,false,true,true,60,'bonus bInt,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (2274,'Ghost_Bandana','Ghost Bandana','Armor',20,100,true,false,false,true,true,61,'bonus bAgi,2; bonus2 bSubEle,Ele_Ghost,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (2275,'Red_Bandana','Red Bandana','Armor',20,100,2,true,true,62); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`view`) VALUES (2276,'Eagle_Eyes','Angled Glasses','Armor',20,100,1,true,63); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_acolyte`,`job_monk`,`job_priest`,`location_head_top`,`refineable`,`view`,`script`) VALUES (2277,'Nurse_Cap','Nurse Cap','Armor',20,100,2,true,true,true,true,true,64,'bonus bInt,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`location_head_low`,`view`) VALUES (2278,'Mr_Smile','Mr. Smile','Armor',60,100,1,true,true,65); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`view`) VALUES (2279,'Bomb_Wick','Bomb Wick','Armor',20,100,1,true,66); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (2280,'Sahkkat','Sakkat','Armor',20,300,3,true,true,67,'bonus bAgi,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`location_head_low`,`view`) VALUES (2281,'Phantom_Of_Opera','Opera Masque','Armor',20,200,2,true,false,false,true,true,68); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`view`,`script`) VALUES (2282,'Spirit_Chain','Halo','Armor',20,100,true,69,'bonus2 bSubEle,Ele_Holy,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (2283,'Ear_Mufs','Ear Muffs','Armor',20,200,3,true,true,70,'bonus2 bResEff,Eff_Curse,1000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`) VALUES (2284,'Antler','Antlers','Armor',20,500,4,true,false,false,true,true,71); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2285,'Apple_Of_Archer','Apple of Archer','Armor',20,200,true,false,false,true,30,true,72,'bonus bDex,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`equip_level_min`,`view`) VALUES (2286,'Elven_Ears','Elven Ears','Armor',20,100,true,false,false,true,70,73); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (2287,'Pirate_Bandana','Pirate Bandana','Armor',20,100,3,true,false,false,true,true,74,'bonus bStr,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`location_head_low`,`view`) VALUES (2288,'Mr_Scream','Mr. Scream','Armor',20,100,1,true,false,false,true,true,75); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`view`,`script`) VALUES (2289,'Poo_Poo_Hat','Poo Poo Hat','Armor',20,700,true,76,'bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`view`) VALUES (2290,'Funeral_Costume','Funeral Hat','Armor',3000,100,1,true,77); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`view`,`script`) VALUES (2291,'Masquerade','Masquerade','Armor',20,100,true,false,false,true,78,'bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player_Human,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_blacksmith`,`job_merchant`,`location_head_mid`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (2292,'Welding_Mask','Welding Mask','Armor',20,300,2,true,true,true,true,true,50,79,'bonus2 bSubEle,Ele_Fire,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`view`) VALUES (2293,'Pretend_Murdered','Pretend Murdered','Armor',20,100,1,true,80); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (2294,'Star_Dust','Stellar','Armor',20,100,1,true,true,81); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`view`,`script`) VALUES (2295,'Blinker','Blinker','Armor',1500,100,true,false,false,true,82,'bonus2 bResEff,Eff_Blind,10000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_archer`,`job_barddancer`,`job_hunter`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (2296,'Binoculars','Binoculars','Armor',20,100,1,true,true,true,true,50,83,'bonus bDex,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`location_head_low`,`view`) VALUES (2297,'Goblini_Mask','Goblin Mask','Armor',20,100,1,true,false,false,true,true,84); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`view`) VALUES (2298,'Green_Feeler','Green Feeler','Armor',20,100,2,true,85); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_head_top`,`refineable`,`view`) VALUES (2299,'Viking_Helm','Orc Helm','Armor',20,500,5,true,true,true,true,true,true,true,true,true,true,true,86); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_armor`,`refineable`) VALUES (2301,'Cotton_Shirt','Cotton Shirt','Armor',10,100,1,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`refineable`) VALUES (2302,'Cotton_Shirt_','Cotton Shirt','Armor',10,100,1,1,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_armor`,`refineable`) VALUES (2303,'Leather_Jacket','Jacket','Armor',200,200,2,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`refineable`) VALUES (2304,'Leather_Jacket_','Jacket','Armor',200,200,2,1,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_armor`,`refineable`) VALUES (2305,'Adventure_Suit','Adventurer\'s Suit','Armor',1000,300,3,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`refineable`) VALUES (2306,'Adventurere\'s_Suit_','Adventurer\'s Suit','Armor',1000,300,3,1,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`refineable`) VALUES (2307,'Mantle','Mantle','Armor',10000,600,4,true,false,false,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`refineable`) VALUES (2308,'Mantle_','Mantle','Armor',10000,600,4,1,true,false,false,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`refineable`) VALUES (2309,'Coat','Coat','Armor',22000,1200,5,true,false,false,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`refineable`) VALUES (2310,'Coat_','Coat','Armor',22000,1200,5,1,true,false,false,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`) VALUES (2311,'Mink_Coat','Mink Coat','Armor',20,2300,6,1,true,false,false,true,30,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_armor`,`refineable`) VALUES (2312,'Padded_Armor','Padded Armor','Armor',48000,2800,7,true,true,true,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_armor`,`refineable`) VALUES (2313,'Padded_Armor_','Padded Armor','Armor',48000,2800,7,1,true,true,true,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_armor`,`refineable`) VALUES (2314,'Chain_Mail','Chain Mail','Armor',65000,3300,8,true,true,true,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_armor`,`refineable`) VALUES (2315,'Chain_Mail_','Chain Mail','Armor',65000,3300,8,1,true,true,true,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_crusader`,`job_knight`,`job_swordman`,`location_armor`,`equip_level_min`,`refineable`) VALUES (2316,'Plate_Armor','Full Plate','Armor',80000,4500,10,true,true,true,true,40,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_armor`,`equip_level_min`,`refineable`) VALUES (2317,'Plate_Armor_','Full Plate','Armor',80000,4500,10,1,true,true,true,true,40,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_blacksmith`,`job_merchant`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2318,'Clothes_Of_The_Lord','Lord\'s Clothes','Armor',20,2500,8,1,true,true,true,true,70,true,'bonus bMdef,5; bonus bInt,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2319,'Glittering_Clothes','Glittering Jacket','Armor',20,2500,7,1,true,false,false,true,60,true,'bonus bMdef,5; bonus2 bAddEff,Eff_Blind,300;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`refineable`) VALUES (2320,'Formal_Suit','Formal Suit','Armor',20,300,5,1,true,false,false,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_mage`,`job_merchant`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_swordman`,`job_wizard`,`location_armor`,`refineable`,`script`) VALUES (2321,'Silk_Robe','Silk Robe','Armor',8000,400,3,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,'bonus bMdef,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_mage`,`job_merchant`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_swordman`,`job_wizard`,`location_armor`,`refineable`,`script`) VALUES (2322,'Silk_Robe_','Silk Robe','Armor',8000,400,3,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,'bonus bMdef,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_acolyte`,`job_monk`,`job_priest`,`location_armor`,`refineable`) VALUES (2323,'Scapulare','Scapulare','Armor',6500,400,4,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`location_armor`,`refineable`) VALUES (2324,'Scapulare_','Scapulare','Armor',6500,400,4,1,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_merchant`,`job_monk`,`job_priest`,`location_armor`,`refineable`,`script`) VALUES (2325,'Saint_Robe','Saint\'s Robe','Armor',54000,600,6,true,true,true,true,true,true,true,true,'bonus bMdef,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_merchant`,`job_monk`,`job_priest`,`location_armor`,`refineable`,`script`) VALUES (2326,'Saint_Robe_','Saint\'s Robe','Armor',54000,600,6,1,true,true,true,true,true,true,true,true,'bonus bMdef,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_acolyte`,`job_monk`,`job_priest`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2327,'Holy_Robe','Holy Robe','Armor',20,1700,7,true,true,true,true,60,true,'bonus bMdef,5; bonus2 bSubRace,RC_Demon,15; bonus2 bSubEle,Ele_Dark,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_armor`,`refineable`) VALUES (2328,'Wooden_Mail','Wooden Mail','Armor',5500,1000,4,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_armor`,`refineable`) VALUES (2329,'Wooden_Mail_','Wooden Mail','Armor',5500,1000,4,1,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_archer`,`job_barddancer`,`job_hunter`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2330,'Tights','Tights','Armor',71000,500,6,true,true,true,true,45,true,'bonus bDex,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2331,'Tights_','Tights','Armor',71000,500,6,1,true,true,true,true,45,true,'bonus bDex,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_armor`,`refineable`) VALUES (2332,'Silver_Robe','Silver Robe','Armor',7000,700,4,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_armor`,`refineable`) VALUES (2333,'Silver_Robe_','Silver Robe','Armor',7000,700,4,1,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2334,'Mage_Coat','Mage Coat','Armor',20,600,5,true,true,true,true,true,50,true,'bonus bMdef,5; bonus bInt,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_assassin`,`job_ninja`,`job_rogue`,`job_thief`,`location_armor`,`refineable`,`script`) VALUES (2335,'Thief_Clothes','Thief Clothes','Armor',74000,100,6,true,true,true,true,true,true,'bonus bAgi,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_assassin`,`job_ninja`,`job_rogue`,`job_thief`,`location_armor`,`refineable`,`script`) VALUES (2336,'Thief_Clothes_','Thief Clothes','Armor',74000,100,6,1,true,true,true,true,true,true,'bonus bAgi,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_assassin`,`job_ninja`,`job_rogue`,`job_thief`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2337,'Ninja_Suit','Ninja Suit','Armor',20,1500,7,true,true,true,true,true,50,true,'bonus bAgi,1; bonus bMdef,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`refineable`,`script`) VALUES (2338,'Wedding_Dress','Wedding Dress','Armor',43000,500,true,false,false,true,true,'bonus bMdef,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_armor`,`refineable`) VALUES (2339,'G_Strings','Pantie','Armor',1000,100,4,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`) VALUES (2340,'Novice_Breast','Novice Breastplate','Armor',89000,500,4,1,true,true,true,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_crusader`,`location_armor`,`equip_level_min`,`refineable`) VALUES (2341,'Full_Plate_Armor','Legion Plate Armor','Armor',94000,5500,11,true,true,70,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`location_armor`,`equip_level_min`,`refineable`) VALUES (2342,'Full_Plate_Armor_','Legion Plate Armor','Armor',102500,5500,11,1,true,true,70,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_sage`,`job_soullinker`,`job_wizard`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2343,'Robe_Of_Casting','Robe of Cast','Armor',124800,1100,5,true,true,true,true,75,true,'bonus bCastrate,-3; bonus bMdef,4;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2344,'Flame_Sprits_Armor','Lucius\'s Fierce Armor of Volcano','Armor',136000,2200,4,true,true,true,true,true,true,true,45,true,'bonus bDefEle,Ele_Fire;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2345,'Flame_Sprits_Armor_','Lucius\'s Fierce Armor of Volcano','Armor',136000,2200,4,1,true,false,false,true,45,true,'bonus bDefEle,Ele_Fire;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2346,'Water_Sprits_Armor','Saphien\'s Armor of Ocean','Armor',136000,2200,4,true,true,true,true,true,true,true,45,true,'bonus bDefEle,Ele_Water;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2347,'Water_Sprits_Armor_','Saphien\'s Armor of Ocean','Armor',136000,2200,4,1,true,false,false,true,45,true,'bonus bDefEle,Ele_Water;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2348,'Wind_Sprits_Armor','Aebecee\'s Raging Typhoon Armor','Armor',136000,2200,4,true,true,true,true,true,true,true,45,true,'bonus bDefEle,Ele_Wind;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2349,'Wind_Sprits_Armor_','Aebecee\'s Raging Typhoon Armor','Armor',136000,2200,4,1,true,false,false,true,45,true,'bonus bDefEle,Ele_Wind;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2350,'Earth_Sprits_Armor','Claytos Cracking Earth Armor','Armor',136000,2200,4,true,true,true,true,true,true,true,45,true,'bonus bDefEle,Ele_Earth;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2351,'Earth_Sprits_Armor_','Claytos Cracking Earth Armor','Armor',136000,2200,4,1,true,false,false,true,45,true,'bonus bDefEle,Ele_Earth;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_novice`,`job_supernovice`,`location_armor`) VALUES (2352,'Novice_Plate','Tattered Novice Ninja Suit','Armor',1,1,4,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`) VALUES (2353,'Odin\'s_Blessing','Odin\'s Blessing','Armor',30000,2500,6,1,true,false,false,true,65,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2354,'Goibne\'s_Armor','Goibne\'s Armor','Armor',50000,3500,7,true,false,false,true,54,true,'bonus bVit,2; bonus bMaxHPrate,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2355,'Angel\'s_Protection','Angelic Protection','Armor',10000,600,4,1,true,true,true,40,true,'bonus bMdef,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_monk`,`job_priest`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2356,'Vestment_Of_Grace','Blessed Holy Robe','Armor',20,2500,5,1,true,true,true,70,true,'bonus bMdef,5; bonus2 bResEff,Eff_Blind,8000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2357,'Valkyrie_Armor','Valkyrian Armor','Armor',2800,6,1,true,false,false,true,true,1,true,'bonus bAllStats,1; bonus bUnbreakableArmor; 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;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_armor`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (2358,'Dress_Of_Angel','Angel\'s Dress','Armor',20,1000,5,true,1,100,true,true,true,'bonus bLuk,4;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_assassin`,`job_ninja`,`job_rogue`,`job_thief`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2359,'Ninja_Suit_','Ninja Suit','Armor',20,1500,7,1,true,true,true,true,true,50,true,'bonus bAgi,1; bonus bMdef,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_sage`,`job_soullinker`,`job_wizard`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2360,'Robe_Of_Casting_','Robe of Cast','Armor',124800,1100,5,1,true,true,true,true,75,true,'bonus bCastrate,-3; bonus bMdef,4;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`class_upper`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2364,'Meteo_Plate_Armor','Meteo Plate Armor','Armor',20,3000,10,1,true,true,true,true,true,true,true,true,55,true,'bonus2 bResEff,Eff_Stun,3000; bonus2 bResEff,Eff_Freeze,3000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2365,'Orleans_Gown','Orleans\'s Gown','Armor',20,300,2,1,true,false,false,true,true,55,true,'bonus bCastrate,15; bonus bNoCastCancel;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2366,'Divine_Cloth','Divine Cloth','Armor',20,1500,6,1,true,false,false,true,true,55,true,'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;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_hunter`,`class_upper`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2367,'Sniping_Suit','Sniping Suit','Armor',20,750,5,1,true,true,true,50,true,'bonus bMdef,5; bonus bCritical,6+(readparam(bLuk)/10); bonus bDelayRate,-23;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_armor`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2368,'Golden_Armor','Golden Armor','Armor',20,2000,4,true,100,true,true,true,true,true,true,'bonus bMdef,4;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2369,'Freyja_Overcoat','Freyja Overcoat','Armor',500,12,true,false,false,true,100,true,true,true,true,true,true,true,true,'bonus bUnbreakableArmor; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_armor`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2370,'Used_Mage_Coat','Used Mage Coat','Armor',15,true,100,true,true,true,true,true,true,true,'bonus bMaxHP,300; bonus bMaxSP,30; bonus bBaseAtk,10; bonus bAGI,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`refineable`) VALUES (2371,'G_Strings_','Pantie','Armor',1000,100,4,1,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2372,'Mage_Coat_','Mage Coat','Armor',20,600,5,1,true,true,true,true,true,50,true,'bonus bMdef,5; bonus bInt,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2373,'Holy_Robe_','Holy Robe','Armor',20,1700,7,1,true,true,true,true,60,true,'bonus bMdef,5; bonus2 bSubRace,RC_Demon,15; bonus2 bSubEle,Ele_Dark,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_archer`,`job_barddancer`,`job_hunter`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_wizard`,`class_upper`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2374,'Diabolus_Robe','Diabolus Robe','Armor',20,300,6,1,true,true,true,true,true,true,true,true,true,true,true,55,true,'bonus bMaxSP,150; bonus bMdef,5; bonus bHealPower,6; bonus bDelayRate,-10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`class_upper`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2375,'Diabolus_Armor','Diabolus Armor','Armor',20,600,7,1,true,true,true,true,true,true,true,true,true,true,true,55,true,'bonus bStr,2; bonus bDex,1; bonus bMaxHP,150; bonus2 bResEff,Eff_Stun,500; bonus2 bResEff,Eff_Stone,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2376,'Assaulter_Plate','Assaulter Plate','Armor',10,7,1,true,true,true,true,true,true,true,true,true,80,true,100,true,true,true,true,true,true,'bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_alchemist`,`job_blacksmith`,`job_merchant`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2377,'Elite_Engineer_Armor','Elite Engineer Armor','Armor',10,7,1,true,true,true,true,80,true,100,true,true,true,true,true,true,'bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_assassin`,`job_ninja`,`job_rogue`,`job_thief`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2378,'Assassin_Robe','Assassin Robe','Armor',10,7,1,true,true,true,true,true,80,true,100,true,true,true,true,true,true,'bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2379,'Warlock_Battle_Robe','Warlock\'s Battle Robe','Armor',10,3,1,true,true,true,true,true,80,true,100,true,true,true,true,true,true,'bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2380,'Medic_Robe','Medic\'s Robe','Armor',10,3,1,true,true,true,true,80,true,100,true,true,true,true,true,true,'bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2381,'Elite_Archer_Suit','Elite Archer Suit','Armor',10,3,1,true,true,true,true,80,true,100,true,true,true,true,true,true,'bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_gunslinger`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2382,'Elite_Shooter_Suit','Elite Shooter Suit','Armor',10,3,1,true,true,80,true,100,true,true,true,true,true,true,'bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_armor`,`equip_level_min`,`script`) VALUES (2383,'Brynhild','Brynhild','Armor',20,400,10,true,94,'bonus bMdef,10; bonus bMaxHP,20*BaseLevel; bonus bMaxSP,5*BaseLevel; bonus2 bAddClass,Class_All,10; bonus bMatkRate,10; bonus bUnbreakableArmor; bonus bNoKnockback;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_armor`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2384,'Spritual_Tunic','Spiritual Tunic','Armor',20,10,true,100,true,true,true,true,true,true,true,true,'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;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_armor`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`,`unequip_script`) VALUES (2385,'Recuperative_Armor','Recuperative Armor','Armor',20,12,true,100,true,true,true,true,true,true,true,true,'bonus bNoRegen,1; bonus bNoRegen,2; bonus bHPGainValue,60; bonus bSPGainValue,6; bonus bMagicHPGainValue,60; bonus bMagicSPGainValue,6;','heal 0,-100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2386,'Chameleon_Armor','Chameleon Armor','Armor',20,1700,5,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,70,true,'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;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2387,'Sprint_Mail','Sprint Mail','Armor',20,1000,3,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,70,true,'bonus bVit,1; bonus bHPrecovRate,5; bonus bAddItemHealRate,3; bonus2 bSkillHeal,"AL_HEAL",3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_assassin`,`class_upper`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2388,'Kandura','Kandura','Armor',20,300,4,1,true,true,true,70,true,'bonus bAgi,1; bonus bFlee,5; bonus bAspdRate,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2389,'Armor_Of_Naga','Armor of Naga','Armor',20,1000,5,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,70,true,'bonus bMdef,2; autobonus "{ bonus bBaseAtk,20; }",10,10000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }";'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`class_upper`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2390,'Improved_Tights','Improved Tights','Armor',20,400,6,1,true,true,true,true,true,75,true,'bonus bMdef,2; bonus bFlee2,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_upper`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2391,'Life_Link','Life Link','Armor',20,3500,9,1,true,true,true,true,true,82,true,'bonus bVit,2; bonus bMdef,5; bonus bHPrecovRate,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_armor`,`script`) VALUES (2392,'Old_Pant','Old Green Pantie','Armor',10,true,'bonus bStr,2; bonus bVit,2; bonus bMaxHP,200; bonus3 bAutoSpellWhenHit,"MO_CALLSPIRITS",5,20; bonus bMdef,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`location_armor`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (2393,'N_Adventurer\'s_Suit','Novice Adventurer\'s Suit','Armor',8,1,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2394,'Krieger_Suit1','Glorious Suit','Armor',20,true,false,false,true,81,true,100,true,true,true,true,true,true,true,'bonus bMaxHPRate,20; bonus2 bSubRace,RC_DemiHuman,7; bonus2 bSubRace,RC_Player_Human,7;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2395,'Krieger_Suit2','Glorious Popularized Suit','Armor',20,true,false,false,true,61,true,100,true,true,true,true,true,true,true,'bonus bMaxHP,600; bonus bSPrecovRate,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2396,'Krieger_Suit3','Glorious Mass-Production Suit','Armor',20,true,false,false,true,true,100,true,true,true,true,true,true,true,'bonus bMaxHP,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`refineable`) VALUES (2397,'Incredible_Coat','Incredible Event Resignation Coat','Armor',10,900,2,true,false,false,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_hunter`,`class_upper`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2398,'Sniping_Suit_M','Sniping Suit','Armor',20,750,5,1,true,true,true,50,true,100,true,true,true,true,true,true,true,'bonus bMdef,5; bonus bCritical,6+(readparam(bLuk)/10); bonus bDelayRate,-23;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`location_armor`,`refineable`,`script`) VALUES (2399,'Dragon_Vest','Dragon Vest','Armor',20,500,3,1,true,false,false,true,true,true,'bonus bMdef,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_shoes`,`refineable`) VALUES (2401,'Sandals','Sandals','Armor',400,200,1,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_shoes`,`refineable`) VALUES (2402,'Sandals_','Sandals','Armor',400,200,1,1,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`refineable`) VALUES (2403,'Shoes','Shoes','Armor',3500,400,2,true,false,false,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`refineable`) VALUES (2404,'Shoes_','Shoes','Armor',3500,400,2,1,true,false,false,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_gunslinger`,`job_hunter`,`job_knight`,`job_merchant`,`job_rogue`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`job_thief`,`location_shoes`,`refineable`) VALUES (2405,'Boots','Boots','Armor',18000,600,4,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_gunslinger`,`job_hunter`,`job_knight`,`job_merchant`,`job_rogue`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`job_thief`,`location_shoes`,`refineable`) VALUES (2406,'Boots_','Boots','Armor',18000,600,4,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`gender`,`location_shoes`,`refineable`,`script`) VALUES (2407,'Chrystal_Pumps','Crystal Pumps','Armor',20,100,true,false,false,'Female',true,true,'bonus bMdef,10; bonus bLuk,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_shoes`,`refineable`) VALUES (2408,'Cuffs','Shackles','Armor',5000,3000,3,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`refineable`,`script`) VALUES (2409,'Spiky_Heel','High Heels','Armor',8500,600,2,true,false,false,true,true,'bonus bMdef,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_shoes`,`equip_level_min`,`script`) VALUES (2410,'Sleipnir','Sleipnir','Armor',20,3500,5,true,94,'bonus bMdef,10; bonus bMaxHPrate,20; bonus bMaxSPrate,20; bonus bSPrecovRate,15; bonus bSpeedRate,25;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_crusader`,`job_knight`,`location_shoes`,`equip_level_min`,`refineable`) VALUES (2411,'Grave','Greaves','Armor',48000,750,5,true,true,true,65,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`job_knight`,`location_shoes`,`equip_level_min`,`refineable`) VALUES (2412,'Grave_','Greaves','Armor',54000,750,5,1,true,true,true,65,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_crusader`,`job_knight`,`job_swordman`,`location_shoes`,`equip_level_min`) VALUES (2413,'Safty_Boots','Safety Boots','Armor',34000,350,6,true,true,true,true,30); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_novice`,`job_supernovice`,`location_shoes`) VALUES (2414,'Novice_Boots','Novice Slippers','Armor',1,1,2,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`gender`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2415,'Slipper','Bunny Slipper','Armor',34000,300,3,1,true,false,false,'Female',true,30,true,'bonus bLuk,3; bonus bMdef,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2416,'Novice_Shoes','Novice Shoes','Armor',35000,500,2,1,true,true,true,40,true,'bonus bMaxHPrate,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2417,'Fricco_Shoes','Fricco\'s Shoes','Armor',30000,500,3,true,false,false,true,65,true,'bonus bAgi,2; bonus2 bAddItemGroupHealRate,IG_Potion,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2418,'Vidar\'s_Boots','Vidar\'s Boots','Armor',30000,650,4,true,false,false,true,65,true,'bonus bMaxHPrate,9; bonus bMaxSPrate,9;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2419,'Goibne\'s_Combat_Boots','Goibne\'s Greaves','Armor',30000,700,4,true,false,false,true,54,true,'bonus bMdef,3; bonus bMaxHPrate,5; bonus bMaxSPrate,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2420,'Angel\'s_Arrival','Angel\'s Reincarnation','Armor',10000,300,2,1,true,true,true,25,true,'bonus bMaxHP,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2421,'Valkyrie_Shoes','Valkyrian Shoes','Armor',500,4,1,true,false,false,true,true,1,true,'bonus bUnbreakableShoes; 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);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2422,'High_Fashion_Sandals','High Fashion Sandals','Armor',24000,200,2,1,true,true,true,true,true,true,true,true,40,true,'bonus bMdef,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2423,'Variant_Shoes','Variant Shoes','Armor',20,500,3,true,false,false,true,true,85,true,'bonus bMaxHPRate,20-getrefine(); bonus bMaxSPRate,20-getrefine(); bonus bDef,getrefine()/2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2424,'Tidal_Shoes','Tidal Shoes','Armor',20,300,3,1,true,false,false,true,true,55,true,'bonus2 bSubEle,Ele_Water,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2425,'Black_Leather_Boots','Black Leather Boots','Armor',20,500,4,true,false,false,true,true,55,true,'bonus bAgi,1; if(getrefine()>=9) bonus bAgi,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2426,'Shadow_Walk','Shadow Walk','Armor',20,2000,true,false,false,true,true,75,true,'bonus bMdef,10; if(getskilllv("AS_CLOAKING")<2){ bonus5 bAutoSpellWhenHit,"AS_CLOAKING",2,100,BF_MAGIC,0; } else bonus5 bAutoSpellWhenHit,"AS_CLOAKING",getskilllv("AS_CLOAKING"),100,BF_MAGIC,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_shoes`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2427,'Golden_Shoes','Golden Shoes','Armor',20,300,4,true,100,true,true,true,true,true,true,'bonus bMdef,4;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`script`) VALUES (2428,'Freyja_Boots','Freyja Boots','Armor',300,10,true,false,false,true,'bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_shoes`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (2429,'Iron_Boots01','Iron Boots','Armor',1500,5,true,true,true,true,true,true,true,true,true,true,true,true,true,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_shoes`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (2430,'Iron_Boots02','Iron Boots','Armor',800,5,true,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_shoes`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2431,'Valley_Shoes','Valley Shoes','Armor',20,10,true,100,true,true,true,true,true,true,true,'bonus bMaxHPRate,7; bonus bMaxSPRate,7;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`refineable`,`script`) VALUES (2432,'Spiky_Heel_','High Heels','Armor',8500,600,2,1,true,false,false,true,true,'bonus bMdef,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`location_shoes`,`refineable`,`script`) VALUES (2433,'Diabolus_Boots','Diabolus Boots','Armor',20,250,4,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,'bonus bMaxHP,(BaseLevel*10);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2434,'Black_Leather_Boots_','Black Leather Boots','Armor',20,500,4,1,true,false,false,true,true,55,true,'bonus bAgi,1; if(getrefine()>=9) bonus bAgi,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_ninja`,`job_rogue`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`job_thief`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2435,'Battle_Greave','Battle Greaves','Armor',10,4,1,true,true,true,true,true,true,true,true,true,true,true,true,true,80,true,100,true,true,true,true,true,true,'bonus bMaxHP,100; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_acolyte`,`job_archer`,`job_barddancer`,`job_hunter`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2436,'Combat_Boots','Combat Boots','Armor',10,3,1,true,true,true,true,true,true,true,true,true,true,true,80,true,100,true,true,true,true,true,true,'bonus bMaxHP,100; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_gunslinger`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2437,'Battle_Boots','Battle Boots','Armor',10,3,1,true,true,80,true,100,true,true,true,true,true,true,'bonus bMaxHP,100; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2438,'Paw_Of_Cat','Paw Of Cat','Armor',10,300,true,80,true,100,true,true,true,true,true,true,'bonus bFlee,5; bonus bAgi,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_shoes`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2439,'Refresh_Shoes','Refresh Shoes','Armor',20,9,true,100,true,true,true,true,true,true,true,true,'bonus bMaxHPRate,17; bonus bMaxSPRate,8; bonus2 bHPRegenRate,20,10000; bonus2 bSPRegenRate,3,10000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2440,'Sprint_Shoes','Sprint Shoes','Armor',20,300,2,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,70,true,'bonus bAgi,1; bonus bSPrecovRate,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`refineable`,`script`) VALUES (2441,'Beach_Sandal','Beach Sandals','Armor',20,200,true,true,'bonus bStr,1; bonus bInt,1; bonus bAgi,1; bonus2 bSubEle,Ele_Fire,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_shoes`,`script`) VALUES (2442,'Boots_Perforated','Red Stocking Boots','Armor',7,true,'bonus bLuk,2; bonus bHPrecovRate,10; bonus bSPrecovRate,10; bonus3 bAutoSpellWhenHit,"WZ_QUAGMIRE",3,20; bonus bMdef,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`) VALUES (2443,'Fish_Shoes','Fisher\'s Boots','Armor',10,250,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2444,'Krieger_Shoes1','Glorious Shoes','Armor',20,true,false,false,true,81,true,100,true,true,true,true,true,true,true,'bonus bMaxHPRate,10; bonus2 bSubRace,RC_DemiHuman,4; bonus2 bSubRace,RC_Player_Human,4; bonus3 bAutoSpellWhenHit,"AL_INCAGI",1,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2445,'Krieger_Shoes2','Glorious Popularized Shoes','Armor',20,true,false,false,true,61,true,100,true,true,true,true,true,true,true,'bonus bMaxHPRate,5; bonus bMaxSPRate,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2446,'Krieger_Shoes3','Glorious Mass-Production Shoes','Armor',20,true,false,false,true,true,100,true,true,true,true,true,true,true,'bonus bMaxHPRate,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`refineable`) VALUES (2447,'Military_Boots','Army Boots','Armor',1000,5,true,false,false,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_shoes`,`refineable`,`script`) VALUES (2448,'Air_Boss','Air Boss','Armor',500,2,true,true,'bonus bAgi,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2449,'Variant_Shoes_M','Variant Shoes','Armor',20,500,3,true,false,false,true,true,85,true,100,true,true,true,true,true,true,true,'bonus bMaxHPRate,20-getrefine(); bonus bMaxSPRate,20-getrefine(); bonus bDef,getrefine()/2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2450,'Vital_Tree_Shoes','Vital Tree Shoes','Armor',20,500,4,true,false,false,true,true,60,true,'bonus bMaxHPrate,10; bonus2 bHPRegenRate,30,10000; bonus bHealpower2,5; bonus bAddItemHealRate,5; bonus bMdef,3; bonus bVit,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_garment`,`refineable`) VALUES (2501,'Hood','Hood','Armor',1000,200,1,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`refineable`) VALUES (2502,'Hood_','Hood','Armor',1000,200,1,1,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`refineable`) VALUES (2503,'Muffler','Muffler','Armor',5000,400,2,true,false,false,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`refineable`) VALUES (2504,'Muffler_','Muffler','Armor',5000,400,2,1,true,false,false,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`job_thief`,`location_garment`,`refineable`) VALUES (2505,'Manteau','Manteau','Armor',32000,600,4,true,true,true,true,true,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`job_thief`,`location_garment`,`refineable`) VALUES (2506,'Manteau_','Manteau','Armor',32000,600,4,1,true,true,true,true,true,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2507,'Cape_Of_Ancient_Lord','Ancient Cape','Armor',82000,600,2,true,false,false,true,40,true,'bonus bAgi,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`refineable`,`script`) VALUES (2508,'Ragamuffin_Cape','Ragamuffin Manteau','Armor',56000,500,1,true,false,false,true,true,'bonus bUnbreakableGarment; bonus bMdef,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2509,'Clack_Of_Servival','Survivor\'s Manteau','Armor',20000,550,true,true,true,true,true,75,true,'bonus bMdef,5; bonus bVit,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_novice`,`job_supernovice`,`location_garment`,`script`) VALUES (2510,'Novice_Hood','Somber Novice Hood','Armor',1,1,2,true,true,true,'bonus2 bSubEle,Ele_Neutral,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2511,'Skeleton\'s_Cape','Skeleton Manteau','Armor',5000,700,1,true,false,false,true,75,true,'bonus bStr,2; bonus bInt,-3; bonus bDex,2; bonus bVit,-3; bonus bLuk,2; bonus bAgi,-4;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2512,'Novice_Manteau','Novice Manteau','Armor',50000,500,2,1,true,true,true,40,true,'bonus2 bSubEle,Ele_Neutral,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`equip_level_min`,`refineable`) VALUES (2513,'Celestial_Robe','Heavenly Maiden Robe','Armor',20,500,3,1,true,false,false,true,80,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_garment`,`equip_level_min`,`refineable`) VALUES (2514,'Pauldron','Pauldron','Armor',20,800,5,1,true,true,true,true,true,true,true,true,true,true,80,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_garment`,`equip_level_min`,`refineable`) VALUES (2515,'Wing_Of_Eagle','Eagle Wing','Armor',20000,300,1,1,true,true,true,true,true,85,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2516,'Falcon_Robe','Falcon Muffler','Armor',30000,400,3,true,false,false,true,65,true,'bonus bFlee,15; bonus bFlee2,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2517,'Vali\'s_Manteau','Vali\'s Manteau','Armor',30000,600,4,true,false,false,true,65,true,'bonus2 bSubEle,Ele_Neutral,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2518,'Morpheus\'s_Shawl','Morpheus\'s Shawl','Armor',30000,600,3,true,false,false,true,33,true,'bonus bMaxSPrate,10; bonus bMdef,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2519,'Morrigane\'s_Manteau','Morrigane\'s Manteau','Armor',30000,600,3,true,false,false,true,61,true,'bonus bLuk,2; bonus bFlee2,8;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2520,'Goibne\'s_Shoulder_Arms','Goibne\'s Spaulders','Armor',30000,700,3,true,false,false,true,54,true,'bonus bLongAtkDef,10; bonus bMdef,2; bonus bVit,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2521,'Angel\'s_Warmth','Angelic Cardigan','Armor',10000,400,2,1,true,true,true,20,true,'bonus bHPrecovRate,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2522,'Undershirt','Undershirt','Armor',20000,150,2,true,1,true,'bonus bMdef,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2523,'Undershirt_','Undershirt','Armor',20000,150,2,1,true,1,true,'bonus bMdef,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2524,'Valkyrie_Manteau','Valkyrian Manteau','Armor',500,3,1,true,false,false,true,true,1,true,'bonus bUnbreakableGarment; 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);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2525,'Cape_Of_Ancient_Lord_','Ancient Cape','Armor',82000,600,2,1,true,false,false,true,40,true,'bonus bAgi,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_garment`,`equip_level_min`,`refineable`) VALUES (2526,'Dragon_Scale_Coat','Coat of Dragon Scale','Armor',20,10,4,true,50,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2527,'Dragon_Breath','Dragon Breath','Armor',20,600,4,1,true,false,false,true,true,48,true,'bonus2 bSubRace,RC_Dragon,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2528,'Wool_Scarf','Wool Scarf','Armor',20,500,3,1,true,false,false,true,true,55,true,'bonus bMdef,4;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2529,'Rider_Insignia','Rider Insignia','Armor',20,500,4,true,false,false,true,true,55,true,'bonus bAgi,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2530,'Rider_Insignia_','Rider Insignia','Armor',20,500,4,1,true,false,false,true,true,55,true,'bonus bAgi,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`class_upper`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2531,'Ulfhedinn','Ulfhedinn','Armor',20,700,3,1,true,true,true,true,true,true,true,true,true,true,true,70,true,'bonus3 bAutoSpellWhenHit,"NPC_STONESKIN",6,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_archer`,`job_barddancer`,`job_hunter`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_wizard`,`class_upper`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2532,'Mithril_Magic_Cape','Mithril Magic Cape','Armor',20,400,3,1,true,true,true,true,true,true,true,true,true,true,true,70,true,'bonus bMdef,3; bonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,200,BF_MAGIC,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`script`) VALUES (2533,'Freyja_Cape','Freyja Cape','Armor',200,10,true,false,false,true,'bonus2 bSubRace,RC_DemiHuman,15; bonus2 bSubRace,RC_Player_Human,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_garment`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2534,'Ruffler','Ruffler','Armor',20,10,true,100,true,true,true,true,true,true,true,'bonus2 bSubEle,Ele_Neutral,17; bonus bFlee,17;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_garment`,`script`) VALUES (2535,'Cloak_Of_Survival_C','Cloak Of Survival','Armor',1,5,true,true,true,true,true,'bonus bVit,10; bonus bMdef,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2536,'Skin_Of_Ventus','Skin of Ventus','Armor',20,250,2,1,true,false,false,true,60,true,'bonus bMdef,2; bonus bMaxHP,200; bonus bFlee,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`location_garment`,`refineable`,`script`) VALUES (2537,'Diabolus_Manteau','Diabolus Manteau','Armor',20,250,5,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,'bonus2 bSubEle,Ele_Neutral,5; bonus bMaxHP,100; bonus2 bAddDamageClass,1916,10; bonus2 bAddDamageClass,1917,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_ninja`,`job_rogue`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`job_thief`,`location_garment`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2538,'Commander_Manteau','Captain\'s Manteau','Armor',10,4,1,true,true,true,true,true,true,true,true,true,true,true,true,true,80,true,100,true,true,true,true,true,true,'bonus bMaxHP,50; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_acolyte`,`job_archer`,`job_barddancer`,`job_hunter`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_garment`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2539,'Commander_Manteau_','Commander\'s Manteau','Armor',10,3,1,true,true,true,true,true,true,true,true,true,true,true,80,true,100,true,true,true,true,true,true,'bonus bMaxHP,50; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_gunslinger`,`location_garment`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2540,'Sheriff_Manteau','Sheriff\'s Manteau','Armor',10,3,1,true,true,80,true,100,true,true,true,true,true,true,'bonus bMaxHP,50; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_garment`,`equip_level_min`,`script`) VALUES (2541,'Asprika','Asprika','Armor',20,400,5,true,94,'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;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2542,'Flame_Manteau','Flame Manteau of Naght Sieger','Armor',20,70,4,1,true,false,false,true,true,70,true,'bonus bMaxHPRate,5; bonus bMdef,2; bonus bMatkRate,1; bonus2 bAddEle,Ele_Fire,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_garment`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2543,'Sylphid_Manteau','Sylphid Manteau','Armor',20,9,true,100,true,true,true,true,true,true,true,true,'bonus bFlee,13; bonus2 bSubEle,Ele_Neutral,13; bonus bFlee2,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`location_garment`,`refineable`,`script`) VALUES (2544,'Leather_Of_Tendrilion','Leather of Tendrilion','Armor',20,300,3,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,'bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Earth,5; bonus2 bSubRace,RC_Plant,5; bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_monk`,`job_priest`,`class_upper`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2545,'Musika','Musika','Armor',20,500,2,1,true,true,true,true,70,true,'bonus bMdef,3; bonus3 bAutoSpellwhenhit,"AL_HEAL",max(1,getskilllv("AL_HEAL")),20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_garment`,`refineable`,`script`) VALUES (2546,'Beach_Manteau','Beach Manteau','Armor',20,600,1,true,true,'bonus bStr,1; bonus bInt,1; bonus2 bSubEle,Ele_Fire,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_garment`,`refineable`,`script`) VALUES (2547,'Cheap_Running_Shirts','Cheap Undershirt','Armor',8,true,true,'bonus bDex,2; bonus bFlee,10; bonus2 bSubEle,Ele_Neutral,10; bonus bMdef,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`location_garment`,`equip_level_min`,`script`) VALUES (2548,'Muffler_C','Neo Muffler','Armor',5,true,false,false,true,true,95,'bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus bMaxHPrate,10; bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Fire,5; bonus2 bSubEle,Ele_Holy,5; bonus2 bSubEle,Ele_Dark,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2549,'Krieger_Muffler1','Glorious Muffler','Armor',20,true,false,false,true,81,true,100,true,true,true,true,true,true,true,'bonus bMaxHPRate,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`refineable`) VALUES (2550,'Fisher\'s_Muffler','Fisher\'s Muffler','Armor',20,200,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`location_garment`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2551,'Rider_Insignia_M','Crest of the Rider','Armor',20,500,4,1,true,false,false,true,true,55,true,100,true,true,true,true,true,true,true,'bonus bAgi,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_archer`,`job_barddancer`,`job_hunter`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_wizard`,`class_upper`,`location_garment`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2552,'Mithril_Magic_Cape_M','Mithril Magic Manteau','Armor',20,400,3,1,true,true,true,true,true,true,true,true,true,true,true,70,true,100,true,true,true,true,true,true,true,'bonus bMdef,3; bonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,200,BF_MAGIC,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`location_garment`,`refineable`,`script`) VALUES (2553,'Dragon_Manteau','Dragon Manteau','Armor',20,1000,5,1,true,false,false,true,true,true,'bonus bAgi,1; bonus bMdef,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2554,'Piece_Of_Angent_Skin','Nydhorgg\'s Shadow Garb','Armor',20,400,5,1,true,false,false,true,true,90,true,'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;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2601,'Ring','Ring','Armor',30000,100,true,false,false,true,true,20,'bonus bStr,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2602,'Earring','Earring','Armor',30000,100,true,false,false,true,true,20,'bonus bInt,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2603,'Necklace','Necklace','Armor',30000,100,true,false,false,true,true,20,'bonus bVit,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2604,'Glove','Glove','Armor',30000,100,true,false,false,true,true,20,'bonus bDex,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2605,'Brooch','Brooch','Armor',30000,100,true,false,false,true,true,20,'bonus bAgi,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2607,'Clip','Clip','Armor',30000,100,1,true,true,'bonus bMaxSP,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2608,'Rosary','Rosary','Armor',15000,100,true,false,false,true,true,20,'bonus bMdef,5; bonus bLuk,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`) VALUES (2609,'Skul_Ring','Skull Ring','Armor',10000,100,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`) VALUES (2610,'Gold_Ring','Gold Ring','Armor',30000,100,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`) VALUES (2611,'Silver_Ring','Silver Ring','Armor',20000,100,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`) VALUES (2612,'Flower_Ring','Flower Ring','Armor',1500,100,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`) VALUES (2613,'Diamond_Ring','Diamond Ring','Armor',45000,100,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2614,'An_Eye_Of_Dullahan','Eye of Dullahan','Armor',90000,100,true,false,false,true,true,50,'bonus2 bResEff,Eff_Poison,10000; bonus2 bSubRace,RC_Undead,4; bonus2 bSubRace,RC_Demon,4;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2615,'Safety_Ring','Safety Ring','Armor',75000,100,3,true,false,false,true,true,40,'bonus bMdef,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2616,'Critical_Ring','Critical Ring','Armor',75000,100,true,false,false,true,true,40,'bonus bCritical,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2617,'Mitten_Of_Presbyter','Celebrant\'s Mitten','Armor',2,100,1,true,false,false,true,true,35,'bonus bInt,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2618,'Matyr\'s_Flea_Guard','Matyr\'s Leash','Armor',2,100,1,true,false,false,true,true,35,'bonus bAgi,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_archer`,`job_barddancer`,`job_hunter`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2619,'Thimble_Of_Archer','Bow Thimble','Armor',10000,100,true,true,true,true,true,65,'bonus bLongAtkRate,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_assassin`,`job_ninja`,`job_rogue`,`job_thief`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2620,'Ring_Of_Rogue','Rogue\'s Treasure','Armor',10000,100,true,true,true,true,true,true,70,'if(readparam(bStr)>=90){ bonus bHit,10; bonus bFlee,10; } if(readparam(bAgi)>=90){ bonus bBaseAtk,10; bonus bCritical,10; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2621,'Ring_','Ring','Armor',30000,200,1,true,false,false,true,true,90,'bonus bStr,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2622,'Earring_','Earring','Armor',30000,200,1,true,false,false,true,true,90,'bonus bInt,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2623,'Necklace_','Necklace','Armor',30000,200,1,true,false,false,true,true,90,'bonus bVit,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2624,'Glove_','Glove','Armor',30000,200,1,true,false,false,true,true,90,'bonus bDex,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2625,'Brooch_','Brooch','Armor',30000,200,1,true,false,false,true,true,90,'bonus bAgi,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2626,'Rosary_','Rosary','Armor',15000,200,1,true,false,false,true,true,90,'bonus bMdef,3; bonus bLuk,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`) VALUES (2627,'Belt','Belt','Armor',20000,1200,1,true,true,25); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`) VALUES (2628,'Novice_Armlet','Novice Armlet','Armor',400,200,1,true,true,true,true,1); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2629,'Magingiorde','Megingjard','Armor',20,8000,2,true,true,94,'bonus bStr,40; bonus bMdef,7;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2630,'Brysinggamen','Brisingamen','Armor',20,1500,1,true,true,94,'bonus bStr,6; bonus bAgi,6; bonus bVit,6; bonus bInt,6; bonus bLuk,10; bonus bMdef,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`) VALUES (2631,'First_Age_Ring','Celebration Ring','Armor',1,10,true,true,1); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`gender`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2634,'Bridegroom_Ring','Wedding Ring','Armor','Male',true,true,100,true,true,true,true,true,true,true,true,'skill "WE_MALE",1; skill "WE_FEMALE",1; skill "WE_CALLPARTNER",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`gender`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2635,'Bride_Ring','Wedding Ring','Armor','Female',true,true,100,true,true,true,true,true,true,true,true,'skill "WE_MALE",1; skill "WE_FEMALE",1; skill "WE_CALLPARTNER",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2636,'Gold_Ring_','Gold Christmas Ring','Armor',30000,100,true,true,'bonus bLuk,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2637,'Silver_Ring_','Silver Christmas Ring','Armor',20000,100,true,true,'bonus bLuk,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2638,'Exorcize_Sachet','Sacred Incense','Armor',20000,100,true,true,'bonus bStr,1; bonus bLuk,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2639,'Purification_Sachet','Occult Incense','Armor',20000,100,true,true,'bonus bInt,1; bonus bAgi,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2640,'Kafra_Ring','Kafra Ring','Armor',40000,200,1,true,false,false,true,true,'bonus bStr,1; bonus bInt,1; bonus bAgi,1; bonus bLuk,1; bonus bMdef,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_alchemist`,`job_blacksmith`,`job_merchant`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2641,'Fashionable_Sack','Fashion Hip Sack','Armor',20,700,true,true,true,true,true,50,'bonus bStr,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (2642,'Serin\'s_Gold_Ring','Serin\'s Gold Ring','Armor',20,true,true,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`) VALUES (2643,'Serin\'s_Gold_Ring_','Serin\'s Gold Ring','Armor',45000,100,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2644,'The_Sign_','The Sign','Armor',2,true,true,100,true,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_assassin`,`job_ninja`,`job_rogue`,`job_thief`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2645,'Moonlight_Ring','Moonlight Ring','Armor',40000,200,true,true,true,true,true,true,60,'bonus bMdef,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2646,'Bunch_Of_Carnation','Bunch of Carnations','Armor',2,100,true,true,'bonus bAllStats,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2647,'Nile_Rose','Nile Rose','Armor',2,100,1,true,true,100,true,true,true,true,true,true,true,true,'bonus bMaxHP,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2648,'Morpheus\'s_Ring','Morpheus\'s Ring','Armor',30000,100,true,false,false,true,true,33,'bonus bInt,1; bonus bMaxSPrate,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2649,'Morpheus\'s_Armlet','Morpheus\'s Bracelet','Armor',30000,100,true,false,false,true,true,33,'bonus bInt,1; bonus bMaxSPrate,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2650,'Morrigane\'s_Belt','Morrigane\'s Belt','Armor',30000,200,true,false,false,true,true,61,'bonus bBaseAtk,5; bonus bCritical,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2651,'Morrigane\'s_Pendant','Morrigane\'s Pendant','Armor',30000,200,true,false,false,true,true,61,'bonus bStr,2; bonus bCritical,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2652,'Cursed_Lucky_Brooch','Goddess of Fortune\'s Cursed Brooch','Armor',20,100,true,true,40,'bonus bCritical,6; bonus2 bAddEff2,Eff_Curse,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`) VALUES (2653,'Sacrifice_Ring','Sacrifice Ring','Armor',20,100,true,true,90); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_assassin`,`job_ninja`,`job_rogue`,`job_thief`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2654,'Shinobi\'s_Sash','Shinobi Sash','Armor',20000,300,1,true,true,true,true,true,true,30,'bonus bStr,1; bonus bAgi,1; bonus bMdef,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`) VALUES (2655,'Bloody_Iron_Ball','Bloodied Shackle Ball','Armor',50000,4000,true,false,false,true,true,1); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2656,'Hyper_Changer','Armor Charm','Armor',20000,1000,1,true,true,true,true,true,true,true,true,true,true,true,1,'bonus bMaxHP,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`) VALUES (2657,'Lab_Passport','Laboratory Permit','Armor',20,100,true,true,1); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2658,'Nile_Rose_','Nile Rose','Armor',2,100,1,true,true,'bonus bMaxHP,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2659,'Vesper_Core01','Vesper Core 01','Armor',20,100,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,'bonus bMdef,3; bonus bInt,2; bonus bMaxSPrate,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2660,'Vesper_Core02','Vesper Core 02','Armor',20,100,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,'bonus bMdef,3; bonus bStr,3; bonus bBaseAtk,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2661,'Vesper_Core03','Vesper Core 03','Armor',20,100,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,'bonus bMdef,3; bonus bAgi,3; bonus bFlee,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2662,'Vesper_Core04','Vesper Core 04','Armor',20,100,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,'bonus bMdef,3; bonus bDex,3; bonus bHit,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2663,'Gauntlet_Of_Accuracy','Gauntlet of Hit','Armor',20,900,true,true,75,'bonus bHit,15; bonus bStr,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2664,'Scarf_Belt','Belcarf','Armor',20,200,true,false,false,true,true,75,'bonus bDex,2; bonus bInt,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2665,'Ring_Of_Exorcism','Exorcising Ring','Armor',20,500,true,true,true,true,true,60,'bonus bMdef,1; bonus2 bExpAddRace,RC_Undead,5; bonus2 bExpAddRace,RC_Demon,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2666,'Lamp_Of_Hope','Lantern of Hope','Armor',20,100,true,true,1,'bonus bStr,2; bonus2 bResEff,Eff_Blind,1000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2667,'Glove_Of_Archer','Renown Archer\'s Gloves','Armor',20,300,true,false,false,true,true,60,'bonus bHit,5; bonus bCritical,5; bonus bDex,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (2668,'Women\'s_Glory','Woman Glory','Armor',500,true,true,1,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2669,'Golden_Necklace_','RJC Necklace','Armor',30000,100,1,true,true,'bonus bMaxSP,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2670,'Ring_Of_Longing','Ring of Longing','Armor',20,100,1,true,true,30,100,true,true,true,true,true,true,true,'bonus bFlee,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2671,'Thimble_Of_Archer_','Bow Thimble','Armor',10000,100,1,true,true,true,true,true,65,'bonus bLongAtkRate,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`) VALUES (2672,'Anniversary_Ring','3rd Anniversary Celebration Ring','Armor',20,100,true,false,false,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2673,'Shining_Ring','Warrior\'s Shining Ring','Armor',100,true,false,false,true,true,48,100,true,true,true,true,true,true,true,true,'bonus bBaseAtk,10; bonus bSPrecovRate,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (2674,'Honor_Ring','Ring of Honor','Armor',20,true,true,1,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2675,'Lord_Ring','Lord Ring','Armor',10,true,true,1,'bonus bAllStats,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2676,'Hunter_Earring','Hunter\'s Earring','Armor',20,300,true,true,1,100,true,true,true,true,true,true,true,true,'bonus2 bAddMonsterDropItem,7618,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2677,'Spiritual_Ring','Spiritual Ring','Armor',20,100,true,true,'bonus bInt,2; bonus bDex,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2678,'Ring_Of_Flame_Lord','Ring Of Flame Lord','Armor',20,100,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,'bonus bStr,2; bonus bVit,1; bonus bBaseAtk,15; 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;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2679,'Ring_Of_Resonance','Ring Of Resonance','Armor',20,100,2,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,'bonus bAgi,2; bonus bVit,1; bonus bMdef,2; 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;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2680,'Lesser_Elemental_Ring','Lesser Elemental Ring','Armor',20,100,true,true,'bonus bAllStats,1; bonus3 bAutoSpell,"WZ_ESTIMATION",1,80; bonus3 bAutoSpell,"MC_IDENTIFY",1,50; bonus3 bAutoSpell,"TF_PICKSTONE",1,100; bonus3 bAutoSpell,"BS_GREED",1,10; bonus3 bAutoSpellWhenHit,"TK_RUN",5,20; bonus3 bAutoSpellWhenHit,"TK_HIGHJUMP",3,30; bonus3 bAutoSpellWhenHit,"NV_FIRSTAID",1,100; bonus3 bAutoSpellWhenHit,"TF_BACKSLIDING",1,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2681,'Republic_Ring','Republic Anniversary Ring','Armor',20,1000,true,true,'bonus bAllStats,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2682,'Ring_Of_Water','Ring of Water','Armor',20,100,1,true,false,false,true,true,20,'bonus2 bSubEle,Ele_Water,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2683,'Ring_Of_Fire','Ring of Fire','Armor',20,100,1,true,false,false,true,true,20,'bonus2 bSubEle,Ele_Fire,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2684,'Ring_Of_Wind','Ring of Wind','Armor',20,100,1,true,false,false,true,true,20,'bonus2 bSubEle,Ele_Wind,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2685,'Ring_Of_Earth','Ring of Earth','Armor',20,100,1,true,false,false,true,true,20,'bonus2 bSubEle,Ele_Earth,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2686,'Elven_Ears_C','Elven Ears','Armor',1,2,true,false,false,true,1,73,100,true,true,true,true,true,true,true,true,'bonus bInt,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2687,'Steel_Flower_C','Steel Flower','Armor',1,1,true,false,false,true,1,56,100,true,true,true,true,true,true,true,true,'bonus2 bSubRace,RC_Plant,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2688,'Critical_Ring_C','Critical Ring','Armor',1,true,false,false,true,true,1,100,true,true,true,true,true,true,true,true,'bonus bCritical,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2689,'Earring_C','Earring','Armor',1,true,false,false,true,true,1,100,true,true,true,true,true,true,true,true,'bonus bInt,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2690,'Ring_C','Ring','Armor',1,true,false,false,true,true,1,100,true,true,true,true,true,true,true,true,'bonus bStr,4;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2691,'Necklace_C','Necklace','Armor',1,true,false,false,true,true,1,100,true,true,true,true,true,true,true,true,'bonus bVit,4;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2692,'Glove_C','Glove','Armor',1,true,false,false,true,true,1,100,true,true,true,true,true,true,true,true,'bonus bDex,4;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2693,'Brooch_C','Brooch','Armor',1,true,false,false,true,true,1,100,true,true,true,true,true,true,true,true,'bonus bAgi,4;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2694,'Rosary_C','Rosary','Armor',1,true,false,false,true,true,1,100,true,true,true,true,true,true,true,true,'bonus bMdef,5; bonus bLuk,4;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2695,'Safety_Ring_C','Safety Ring','Armor',1,5,true,false,false,true,true,1,100,true,true,true,true,true,true,true,true,'bonus bMdef,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2696,'Vesper_Core01_C','Vesper Core 01','Armor',1,1,true,false,false,true,true,1,100,true,true,true,true,true,true,true,true,'bonus bMdef,3; bonus bInt,2; bonus bMaxSPrate,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2697,'Vesper_Core02_C','Vesper Core 02','Armor',1,1,true,false,false,true,true,1,100,true,true,true,true,true,true,true,true,'bonus bMdef,3; bonus bStr,3; bonus bBaseAtk,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2698,'Vesper_Core03_C','Vesper Core 03','Armor',1,1,true,false,false,true,true,1,100,true,true,true,true,true,true,true,true,'bonus bMdef,3; bonus bAgi,3; bonus bFlee,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2699,'Vesper_Core04_C','Vesper Core 04','Armor',1,1,true,false,false,true,true,1,100,true,true,true,true,true,true,true,true,'bonus bMdef,3; bonus bDex,3; bonus bHit,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_crusader`,`job_knight`,`job_swordman`,`class_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`) VALUES (2700,'Red_Silk_Seal','Red Silk Seal','Armor',20,100,true,true,true,true,true,true,60); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2701,'Orleans_Glove','Orleans\'s Glove','Armor',20,100,1,true,false,false,true,true,true,90,'bonus bDex,2; bonus bMatkRate,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2702,'Bison_Horn','Bison Horn','Armor',20,100,1,true,false,false,true,true,true,90,'bonus bAgi,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2703,'Expert_Ring','Expert Ring','Armor',20,150,1,true,false,false,true,true,true,50,'bonus bDelayRate,-5; bonus bUseSPrate,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2704,'Golden_Accessory','Golden Accessories','Armor',20,100,4,true,true,100,true,true,true,true,true,true,'bonus bMdef,4;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2705,'Golden_Accessory2','Golden Accessories','Armor',20,100,4,true,true,100,true,true,true,true,true,true,'bonus2 bAddMonsterDropItem,12018,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`) VALUES (2706,'Handcuff','Arrest Handcuffs','Armor',true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`) VALUES (2707,'Gusli','GUSLI','Armor',20,100,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2708,'Chinese_Handicraft','Chinese Handicraft','Armor',50,true,true,100,true,true,true,true,true,true,true,'bonus3 bAutoSpell,"MG_FIREBOLT",5,300;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2709,'5_Anniversary_Coin','5th Anniversary Coin','Armor',2,true,true,'bonus bAtkRate,5; bonus bMatkRate,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2710,'Bloody_Iron_Ball_C','Bloody Iron Ball','Armor',1,true,false,false,true,true,'bonus bBaseAtk,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2711,'Spiritual_Ring_C','Spiritual Ring','Armor',1,true,true,'bonus bInt,2; bonus bDex,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2712,'Ragnarok_Limited_Ed','Ragnarok Limited Edition','Armor',300,true,true,30,'bonus bVit,3; bonus bAgi,3; bonus bLuk,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (2713,'Certificate_TW','Certificate','Armor',true,true,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`) VALUES (2714,'Marvelous_Pandent','Marvelous Pendant','Armor',100,1,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2715,'Skul_Ring_','Skull Ring','Armor',10000,100,1,true,true,'bonus2 bSubRace,RC_Undead,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2716,'Librarian_Glove','Librarian Glove','Armor',20,100,1,true,true,true,true,true,80,'bonus bMaxSP,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`) VALUES (2717,'Pocket_Watch_','Pocket Watch','Armor',20,200,true,true,true,true,true,true,80); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`) VALUES (2718,'Lunatic_Brooch','Lunatic Brooch','Armor',20,200,1,true,true,true,true,true,65); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2719,'Iron_Wrist','Iron Wrist','Armor',20,700,1,true,true,true,true,true,true,true,true,50,'bonus2 bSkillAtk,"SM_BASH",6; bonus2 bSkillAtk,"MC_MAMMONITE",6;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_crusader`,`job_knight`,`job_stargladiator`,`job_swordman`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2720,'Medal_Swordman','Medal of Honor','Armor',20,1,true,true,true,true,true,true,70,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bHit,10; bonus bMaxHP,500; bonus bMaxSP,50; bonus3 bAddEff,Eff_Stun,100,ATF_SHORT;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_assassin`,`job_ninja`,`job_rogue`,`job_thief`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2721,'Medal_Thief','Medal of Honor','Armor',20,1,true,true,true,true,true,true,70,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bFlee,10; bonus bMaxHP,300; bonus bMaxSP,80; bonus3 bAddEff,Eff_Poison,100,ATF_SHORT;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2722,'Medal_Acolyte','Medal of Honor','Armor',20,1,true,true,true,true,true,70,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bMdef,6; bonus bMaxHP,600; bonus3 bAddEff,Eff_Silence,100,ATF_SHORT;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2723,'Medal_Mage','Medal of Honor','Armor',20,1,true,true,true,true,true,true,70,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bMdef,6; bonus bMaxHP,600; bonus2 bAddEffWhenHit,Eff_Stone,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_archer`,`job_barddancer`,`job_hunter`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2724,'Medal_Archer','Medal of Honor','Armor',20,1,true,true,true,true,true,70,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bCritical,10; bonus bMaxHP,300; bonus bMaxSP,80; bonus3 bAddEff,Eff_Blind,100,ATF_LONG;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_alchemist`,`job_blacksmith`,`job_merchant`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2725,'Medal_Merchant','Medal of Honor','Armor',20,1,true,true,true,true,true,70,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bAspdRate,10; bonus bMaxHP,500; bonus bMaxSP,50; bonus3 bAddEff,Eff_Curse,100,ATF_SHORT;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_hunter`,`class_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2726,'Icarus_Wing','Icarus Wings','Armor',20,100,true,true,true,true,70,'bonus bMaxSP,50; bonus bDex,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_hunter`,`class_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2727,'Bowman_Scarf','Bowman Scarf','Armor',20,200,true,true,true,true,70,'bonus bMaxSP,50; bonus bDex,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2728,'Cursed_Hand','Cursed Hand','Armor',20,50,1,true,false,false,true,true,80,'bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,30; bonus bHit,10; bonus bHPrecovRate,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2729,'Diabolus_Ring','Diabolus Ring','Armor',20,50,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,'bonus bMaxHP,100; bonus bMaxSP,100; bonus bHealPower,5; bonus2 bAddDamageClass,1916,10; bonus2 bAddDamageClass,1917,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2730,'Morroc_Seal','Seal of Continental Guard','Armor',20,50,1,true,false,false,true,true,80,100,true,true,true,true,true,true,'bonus bMaxHP,50; bonus bAspdRate,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2731,'Morroc_Charm_Stone','Rune Spellstone','Armor',20,50,1,true,false,false,true,true,80,100,true,true,true,true,true,true,'bonus bMaxSP,50; bonus bCastRate,-1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2732,'Morroc_Ring','Death Loop','Armor',20,50,1,true,false,false,true,true,80,100,true,true,true,true,true,true,'bonus bCritical,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_gunslinger`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2733,'Medal_Gunner','Sheriff Badge','Armor',20,1,true,true,true,70,100,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bCritical,10; bonus bMaxHP,300; bonus bMaxSP,80; bonus3 bAddEff,Eff_Blind,100,ATF_LONG;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (2734,'Directive_A','Directive','Armor',1,true,true,true,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (2735,'Directive_B','Directive','Armor',1,true,true,true,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2736,'Navel_Ring','Navel Ring','Armor',20,100,true,false,false,true,true,75,'bonus bDex,3; bonus bLuk,3; bonus bMdef,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2737,'Foot_Ring','Foot Ring','Armor',20,150,true,false,false,true,true,75,'bonus bVit,3; bonus bMaxHPRate,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2738,'Shiny_Coin','Shiny Coin','Armor',true,true,100,true,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,6; bonus bMatkRate,6;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2739,'Ordinary_Coin','Ordinary Coin','Armor',true,true,100,true,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2740,'Rusty_Coin','Rusty Coin','Armor',true,true,100,true,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,3; bonus bMatkRate,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2741,'All_In_One_Ring','All In One Ring','Armor',20,true,true,100,true,true,true,true,true,true,true,true,'bonus bAllStats,1; bonus bNoCastCancel; bonus bCastRate,10; skill "AL_HEAL",1; skill "AL_TELEPORT",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2743,'Angelic_Ring','Angelic Ring','Armor',20,100,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,70,'bonus bInt,2; bonus bDex,1; bonus bMdef,2; autobonus3 "{ bonus bHealPower,20; }",100,3000,"AL_HEAL","{ specialeffect2 EF_HEAL3; }"; autobonus3 "{ bonus bHealPower,20; }",100,3000,"AM_POTIONPITCHER","{ specialeffect2 EF_HEAL3; }"; autobonus3 "{ bonus bHealPower,20; }",100,3000,"PR_SANCTUARY","{ specialeffect2 EF_HEAL3; }";'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2744,'Sprint_Ring','Sprint Ring','Armor',20,100,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,70,'bonus bCastrate,-10; bonus bDelayRate,-5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2745,'Pinguicula_Corsage','Pinguicula Corsage','Armor',20,200,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,70,'bonus bMdef,2; bonus bMaxSP,25;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_assassin`,`class_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2746,'Cold_Heart','Cold Heart','Armor',20,100,1,true,true,true,true,80,'bonus bAgi,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_rogue`,`class_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2747,'Black_Cat','Black Cat','Armor',20,100,1,true,true,true,true,80,'bonus bDex,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_archer`,`job_barddancer`,`job_hunter`,`class_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`,`unequip_script`) VALUES (2748,'Cursed_Star','Cursed Star','Armor',20,200,true,true,true,true,true,true,84,'bonus bMdef,3; bonus bDex,2; bonus bLuk,-1; bonus2 bHPLossRate,50,10000; bonus3 bAddEff,Eff_Curse,200,ATF_WEAPON|ATF_LONG|ATF_TARGET;','heal -300,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2749,'Linen_Glove','Linen Glove','Armor',20,120,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,90,'bonus bMdef,2; bonus bAgi,2; bonus bDex,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2751,'Academy_Badge','Academy Of Badge','Armor',100,true,true,100,true,true,true,true,true,true,'if(BaseLevel<80) { bonus bMaxHP,400; bonus bMaxSP,200; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2752,'Praxinus_C','Praccsinos','Armor',2,true,true,1,100,true,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,5; bonus bMatkrate,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2753,'Beholder_Ring','Beholder Ring','Armor',true,true,1,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddRace,RC_Formless,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2754,'Hallow_Ring','Hallow Ring','Armor',true,true,1,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddRace,RC_undead,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2755,'Clamorous_Ring','Clamorous Ring','Armor',true,true,1,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddRace,RC_Brute,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2756,'Chemical_Ring','Chemical Ring','Armor',true,true,1,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddRace,RC_Plant,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2757,'Insecticide_Ring','Insecticide Ring','Armor',true,true,1,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddRace,RC_Insect,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2758,'Fisher_Ring','Fischer Ring','Armor',true,true,1,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddRace,RC_Fish,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2759,'Decussate_Ring','Decussate Ring','Armor',true,true,1,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddRace,RC_Demon,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2760,'Bloody_Ring','Bloody Ring','Armor',true,true,1,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddRace,RC_DemiHuman,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2761,'Satanic_Ring','Satanic Ring','Armor',true,true,1,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddRace,RC_Angel,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2762,'Dragoon_Ring','Dragon Ring','Armor',true,true,1,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddRace,RC_Dragon,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2763,'Skul_Ring_C','Neo Skull Ring','Armor',true,false,false,true,true,true,95,'bonus bAtkRate,5; bonus bMatkrate,5; bonus bMaxHPrate,5; bonus2 bSkillHeal,"AL_HEAL",5; skill "MG_SIGHT",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`) VALUES (2764,'Small_Fishing_Rod','Small Fishing Rod','Armor',10,250,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2765,'Novice_Figure','Novice Figure','Armor',100,true,true,'bonus bMaxHP,70; if(BaseJob==Job_Novice||BaseJob==Job_SuperNovice) bonus bMaxHP,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2766,'Swordman_Figure','Swordman Figure','Armor',true,true,'bonus bVit,1; if(Class==Job_Swordman) bonus bDef,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2767,'Acolyte_Figure','Acolyte Figure','Armor',true,true,'bonus bInt,1; if(Class==Job_Acolyte) bonus bMaxSP,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2768,'Mage_Figure','Mage Figure','Armor',true,true,'bonus bInt,1; if(Class==Job_Mage) bonus bSPrecovRate,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2769,'Archer_Figure','Archer Figure','Armor',true,true,'bonus bDex,1; if(Class==Job_Archer) bonus bBaseAtk,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2770,'Thief_Figure','Thief Figure','Armor',true,true,'bonus bAgi,1; if(Class==Job_Thief) bonus bAspdRate,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2771,'Merchant_Figure','Merchant Figure','Armor',true,true,'bonus bStr,1; if(Class==Job_Merchant) bonus bCritical,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2772,'Krieger_Ring1','Glorious Ring','Armor',20,true,false,false,true,true,81,100,true,true,true,true,true,true,true,'bonus bMaxHP,300; bonus2 bSubEle,Ele_Water,10; bonus2 bSubEle,Ele_Wind,10; bonus2 bSubEle,Ele_Earth,10; bonus2 bSubEle,Ele_Fire,10; bonus bAspdRate,5; bonus bCastrate,-3; bonus bHealPower,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2773,'Krieger_Ring2','Glorious Mass-Production Ring','Armor',20,true,false,false,true,true,61,100,true,true,true,true,true,true,true,'bonus bAllStats,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2774,'Krieger_Ring3','Glorious Popularized Ring','Armor',20,true,false,false,true,true,100,true,true,true,true,true,true,true,'bonus bAllStats,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`) VALUES (2775,'Lure','Lure','Armor',20,100,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_script`,`unequip_script`) VALUES (2776,'Cool_Towel','Adventurer\'s Trusty Towel','Armor',20,100,true,true,'sc_start SC_SUMMER,INFINITE_TICK,0;','sc_end SC_SUMMER;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_noguildstorage`,`script`) VALUES (2777,'Shaman_Ring','Shaman Ring','Armor',20,100,1,true,true,30,100,true,true,'bonus bUseSPrate,-5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_noguildstorage`,`script`) VALUES (2778,'Shaman_Earing','Shaman Earrings','Armor',20,100,true,true,30,100,true,true,'bonus bInt,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_noguildstorage`,`script`) VALUES (2779,'Dark_Knight_Belt','Dark Knight Belt','Armor',20,500,1,true,true,30,100,true,true,'bonus bStr,2; bonus bAgi,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_noguildstorage`,`script`) VALUES (2780,'Dark_Knight_Glove','Dark Knight Glove','Armor',20,500,1,true,true,80,100,true,true,'autobonus "{ bonus bAspdRate,2; }",10,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }";'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_noguildstorage`,`script`) VALUES (2781,'Aumdura\'s_Grace','Aumdura\'s Benefit','Armor',100,1,1,true,true,1,100,true,true,'bonus bAllStats,1; bonus bMdef,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2782,'Ring_Of_Wise_King','Ring of the Ancient Wise King','Armor',20,100,true,true,100,true,true,true,true,true,true,true,'bonus bMaxHP,50; bonus bMaxSP,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2783,'Eyes_Stone_Ring','Eye Stone Ring','Armor',20,100,1,true,true,70,'bonus bCritical,2; bonus bMaxSP,25;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2784,'Oh_Holy_Night','Christmas Musicbox','Armor',20,100,true,true,1,'skill "ALL_WEWISH",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2785,'Orleans_Glove_M','Orlean\'s Gloves','Armor',20,100,1,true,false,false,true,true,true,90,100,true,true,true,true,true,true,true,'bonus bDex,2; bonus bMatkRate,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2786,'Spiritual_Ring_M','Spiritual Ring','Armor',20,100,true,true,'bonus bInt,2; bonus bDex,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2787,'Waterdrop_Brooch','Waterdrop Brooch','Armor',20,200,1,true,false,false,true,true,true,75,'bonus2 bSubEle,Ele_Water,5; bonus bMaxHP,80; bonus bMdef,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2788,'Bradium_Earing','Bradium Earring','Armor',20,200,1,true,false,false,true,true,true,60,'bonus bMatkRate,2; bonus bInt,1; bonus bDex,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2789,'Bradium_Ring','Bradium Ring','Armor',20,200,1,true,false,false,true,true,true,60,'bonus2 bAddClass,Class_All,2; bonus bStr,1; bonus bVit,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2790,'Bradium_Brooch','Bradium Brooch','Armor',20,200,1,true,false,false,true,true,true,60,'bonus bFlee,4; bonus bAspdRate,2; bonus bAgi,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2791,'Just_Got_Fish','Fresh Fish','Armor',20,500,1,true,true,1,'bonus bHit,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2794,'Magic_Stone_Ring','Magic Stone Ring','Armor',1,true,true,true,true,true,99,100,true,true,true,true,true,true,true,true,'bonus bStr,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2795,'Green_Apple_Ring','Green Apple Ring','Armor',true,false,false,true,true,99,100,true,true,true,true,true,true,true,'bonus bAllStats,6; if(JobLevel <30) { bonus bAllStats,(JobLevel/5); }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2796,'Magical_Stone','Rocks','Armor',200,true,true,true,true,true,true,99,100,true,true,true,true,true,true,true,true,'bonus2 bAddDamageClass,2047,10; bonus2 bAddDefMonster,2048,-10; bonus3 bAddMonsterIdDropItem,6152,2047,70;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2797,'Magical_Stone_','Rocks','Armor',200,true,true,true,true,true,true,99,100,true,true,true,true,true,true,true,true,'bonus2 bAddDamageClass,2049,10; bonus2 bAddDefMonster,2050,-10; bonus3 bAddMonsterIdDropItem,6151,2049,70;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`job_monk`,`job_priest`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2798,'Will_Of_Exhausted_Angel','Will Of Exhausted Angel','Armor',200,true,true,true,true,99,100,true,true,true,true,true,true,true,'if(strcharinfo(3)=="job3_arch02") { bonus2 bAddDefMonster,1761,50; bonus2 bAddDefMonster,1762,50; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2799,'Kuirpenring','Kuirpenring','Armor',100,1,true,true,'bonus bMdef,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_blacksmith`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2800,'Accelerator','Accelerator','Armor',100000,100,1,true,true,true,99,'bonus bAgi,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_blacksmith`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2801,'Hovering_Booster','Hovering Booster','Armor',100000,2000,1,true,true,true,99,'bonus bAgi,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_blacksmith`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`) VALUES (2802,'Suicidal_Device','Suicidal Device','Armor',500000,1000,1,true,true,true,99); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_blacksmith`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2803,'Shape_Shifter','Shape Shifter','Armor',100000,500,1,true,true,true,99,'bonus bInt,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_blacksmith`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2804,'Cooling_Device','Cooling Device','Armor',100000,2500,1,true,true,true,99,'bonus bDex,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_blacksmith`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2805,'Mag_Field_Generator','Magnetic Field Generator','Armor',100000,6000,1,true,true,true,99,'bonus bDex,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_blacksmith`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2806,'Barrier_Builder','Barrier Builder','Armor',150000,8000,3,1,true,true,true,99,'bonus bDex,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_blacksmith`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`) VALUES (2807,'Repair_Kit','Repair Kit','Armor',200000,400,1,true,true,true,99); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_blacksmith`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2808,'Camouflage_Generator','Camouflague Generator','Armor',250000,1000,1,true,true,true,99,'bonus bAgi,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_blacksmith`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2809,'High_Quality_Cooler','High Quality Cooler','Armor',100000,2500,1,true,true,true,99,'bonus bDex,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_blacksmith`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2810,'Special_Cooler','Special Cooler','Armor',100000,2500,1,true,true,true,99,'bonus bDex,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2819,'Swordman_Manual','Swordsman Manual','Armor',100,true,true,true,true,1,100,true,true,true,true,true,true,true,'bonus bMaxSP,100; skill "SM_BASH",1; skill "SM_PROVOKE",1; skill "SM_MAGNUM",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2820,'Thief_Manual','Thief Manual','Armor',100,true,true,true,true,1,100,true,true,true,true,true,true,true,'bonus bMaxSP,100; skill "TF_DOUBLE",3; bonus bDoubleRate,15; skill "TF_STEAL",1; skill "TF_HIDING",1; skill "TF_POISON",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2821,'Acolyte_Manual','Acolyte Manual','Armor',100,true,true,true,true,1,100,true,true,true,true,true,true,true,'bonus bMaxSP,100; skill "AL_HEAL",1; skill "AL_INCAGI",1; skill "AL_BLESSING",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2822,'Archer_Manual','Archer Manual','Armor',100,true,true,true,true,1,100,true,true,true,true,true,true,true,'bonus bMaxSP,100; skill "AC_OWL",1; skill "AC_CONCENTRATION",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2823,'Merchant_Manual','Merchant Manual','Armor',100,true,true,true,true,1,100,true,true,true,true,true,true,true,'bonus bMaxSP,100; skill "MC_DISCOUNT",1; skill "MC_OVERCHARGE",10; skill "MC_IDENTIFY",1; skill "MC_MAMMONITE",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2824,'Mage_Manual','Mage Manual','Armor',100,true,true,true,true,1,100,true,true,true,true,true,true,true,'bonus bMaxSP,100; skill "MG_SRECOVERY",1; skill "MG_COLDBOLT",1; skill "MG_FIREWALL",1; skill "MG_FIREBOLT",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5001,'Headset','Headset','Armor',20,200,3,true,false,false,true,1,true,87,'bonus2 bResEff,Eff_Curse,1000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5002,'Gemmed_Crown','Jewel Crown','Armor',20,600,4,true,true,true,true,true,true,true,true,true,true,60,true,88,'bonus bInt,2; bonus bLuk,1; bonus bMdef,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5003,'Joker_Jester','Joker Jester','Armor',20,100,1,true,false,false,true,true,89,'bonus bLuk,2; bonus bMdef,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_low`,`view`,`script`) VALUES (5004,'Oxygen_Mask','Oxygen Mask','Armor',20,200,true,false,false,true,90,'bonus2 bResEff,Eff_Poison,2000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`location_head_low`,`view`,`script`) VALUES (5005,'Gas_Mask','Gas Mask','Armor',20,100,1,true,false,false,true,true,91,'bonus2 bResEff,Eff_Poison,3000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`view`) VALUES (5006,'Machoman_Glasses','Machoman\'s Glasses','Armor',36000,100,1,true,false,false,true,92); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5007,'Loard_Circlet','Grand Circlet','Armor',20,200,3,true,false,false,true,55,true,93,'bonus bStr,1; bonus bInt,1; bonus bLuk,1; bonus bMdef,4;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`view`) VALUES (5008,'Puppy_Love','Puppy Love','Armor',20,100,1,true,false,false,true,94); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5009,'Safety_Helmet','Safety Helmet','Armor',20,500,3,true,false,false,true,true,95,'bonus bMdef,3; bonus bUnbreakableHelm;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (5010,'Indian_Hair_Piece','Indian Fillet','Armor',20,100,3,true,true,96); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (5011,'Antenna','Aerial','Armor',20,100,3,true,true,97); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`) VALUES (5012,'Ph.D_Hat','Ph.D Hat','Armor',20,200,3,true,false,false,true,true,98); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5013,'Horn_Of_Lord_Kaho','Lord Kaho\'s Horn','Armor',20,100,5,true,true,99,'bonus bMdef,10; bonus bStr,5; bonus bAgi,10; bonus bVit,10; bonus bInt,5; bonus bLuk,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_crusader`,`job_knight`,`job_swordman`,`location_head_mid`,`equip_level_min`,`view`) VALUES (5014,'Fin_Helm','Fin Helm','Armor',20,300,2,true,true,true,true,65,100); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`view`) VALUES (5015,'Egg_Shell','Egg Shell','Armor',20,200,3,true,101); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`) VALUES (5016,'Boy\'s_Cap','Boy\'s Cap','Armor',20,100,2,true,false,false,true,true,102); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5017,'Bone_Helm','Bone Helm','Armor',20,800,7,true,true,true,true,true,true,true,70,true,103,'bonus2 bSubEle,Ele_Dark,-15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_archer`,`job_barddancer`,`job_hunter`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5018,'Feather_Bonnet','Feather Bonnet','Armor',20,300,4,true,true,true,true,true,104,'bonus bAgi,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5019,'Corsair','Corsair','Armor',20,500,5,true,false,false,true,true,105,'bonus bVit,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5020,'Kafra_Band','Kafra Band','Armor',20,500,3,true,true,106,'bonus bMdef,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_blacksmith`,`job_merchant`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5021,'Bankruptcy_Of_Heart','Grief for Greed','Armor',20,1200,4,true,true,true,true,38,true,107,'bonus bInt,1; bonus bDex,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`location_head_top`,`location_head_mid`,`refineable`,`view`,`script`) VALUES (5022,'Helm_Of_Sun','Hat of the Sun God','Armor',20,2400,4,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,138,'bonus bStr,3; bonus bInt,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_alchemist`,`job_blacksmith`,`job_merchant`,`location_head_top`,`refineable`,`view`) VALUES (5023,'Hat_Of_Bundle','Parcel Hat','Armor',20,1000,true,true,true,true,true,108); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (5024,'Hat_Of_Cake','Cake Hat','Armor',20,1000,1,true,true,109); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5025,'Helm_Of_Angel','Helm of Angel','Armor',20,1600,5,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,74,true,110,'bonus bAgi,1; bonus bLuk,1; bonus bMdef,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5026,'Hat_Of_Cook','Chef Hat','Armor',20,300,1,true,false,false,true,50,true,111,'bonus bDex,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5027,'Wizardry_Hat','Mage Hat','Armor',20,300,1,true,true,true,true,true,true,112,'bonus bInt,2; bonus bMaxSP,150;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`refineable`,`view`) VALUES (5028,'Candle','Candle','Armor',20,150,true,true,113); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5029,'Spore_Hat','Spore Hat','Armor',20,900,3,true,false,false,true,20,true,114); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5030,'Panda_Cap','Panda Hat','Armor',20,800,3,true,false,false,true,40,true,115); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_acolyte`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_rogue`,`job_swordman`,`job_thief`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5031,'Mine_Helm','Mine Hat','Armor',20,1500,4,true,true,true,true,true,true,true,true,true,true,true,true,true,55,true,116,'bonus bDex,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`) VALUES (5032,'Picnic_Hat','Sunday Hat','Armor',20,800,1,true,false,false,true,true,117); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5033,'Smokie_Hat','Raccoon Hat','Armor',20,900,3,true,false,false,true,50,true,118); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`) VALUES (5034,'Light_Bulb_Band','Bulb Band','Armor',20,500,true,false,false,true,true,119); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5035,'Poring_Hat','Poring Hat','Armor',20,700,2,true,false,false,true,38,true,120); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5036,'Cross_Band','Cross Hat','Armor',20,250,1,true,false,false,true,10,true,121); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`) VALUES (5037,'Fruit_Shell','Nut Shell','Armor',20,150,4,true,5,122); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5038,'Deviruchi_Cap','Deviruchi Hat','Armor',20,800,2,true,false,false,true,64,true,123,'bonus bStr,1; bonus bInt,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`) VALUES (5039,'Mottled_Egg_Shell','Rainbow Eggshell','Armor',20,400,4,true,19,124); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`view`) VALUES (5040,'Blush','Blush','Armor',20,100,true,125); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`refineable`,`view`) VALUES (5041,'Heart_Hair_Pin','Heart Hairpin','Armor',20,100,true,true,126); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5042,'Hair_Protector','Bao Bao','Armor',20,150,true,false,false,true,14,true,127); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`equip_level_min`,`view`) VALUES (5043,'Opera_Ghost_Mask','Opera Phantom Mask','Armor',20,200,1,true,false,false,true,20,128); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5044,'Devil\'s_Wing','Evil Wing Ears','Armor',20,350,2,true,45,true,129,'bonus bVit,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5045,'Magician_Hat','Magician Hat','Armor',20,500,3,true,true,true,true,true,true,true,true,50,true,130,'bonus bDex,1; bonus bAgi,1; bonus bMaxSP,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`location_head_low`,`view`) VALUES (5046,'Bongun_Hat','Bongun Hat','Armor',20,300,5,true,true,true,139); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`) VALUES (5047,'Fashion_Sunglass','Fashionable Glasses','Armor',20,100,true,false,false,true,true,131); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`refineable`,`view`) VALUES (5048,'First_Moon_Hair_Pin','Cresent Hairpin','Armor',20,100,true,true,132); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`view`) VALUES (5049,'Stripe_Band','Striped Hairband','Armor',20,150,1,true,133); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`) VALUES (5050,'Mystery_Fruit_Shell','Wonder Nutshell','Armor',20,300,5,true,30,134); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`) VALUES (5051,'Kitty_Bell','Pussy Cat Bell','Armor',20,100,true,135); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (5052,'Blue_Hair_Band','Blue Hairband','Armor',20,150,1,true,true,136); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_crusader`,`job_knight`,`job_swordman`,`location_head_top`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (5053,'Spinx_Helm','Sphinx Hat','Armor',20,3000,5,true,true,true,true,true,65,137,'bonus bStr,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_assassin`,`job_priest`,`location_head_low`,`equip_level_min`,`view`) VALUES (5054,'Assassin_Mask','Assassin Mask','Armor',20,100,true,true,true,70,180); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_novice`,`job_supernovice`,`location_head_top`,`view`) VALUES (5055,'Novice_Egg_Cap','Novice False Eggshell','Armor',1,1,3,true,true,true,101); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`view`) VALUES (5056,'Love_Berry','Fruit of Love','Armor',1,100,true,140); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5057,'Ear_Of_Black_Cat','Black Cat Ears','Armor',16000,200,2,true,45,true,141); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5058,'Drooping_Kitty','Drooping Cat','Armor',250000,500,1,true,false,false,true,true,142,'bonus bMdef,15; bonus2 bResEff,Eff_Curse,3000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5059,'Brown_Bear_Cap','Teddybear Hat','Armor',20,800,3,true,50,true,143); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5060,'Party_Hat','Party Hat','Armor',20,300,3,true,true,144,'bonus bLuk,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (5061,'Flower_Hairpin','Flower Hairpin','Armor',20,100,1,true,true,145); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5062,'Straw_Hat','Straw Hat','Armor',20,200,3,true,50,true,146,'bonus bAgi,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`) VALUES (5063,'Plaster','Giant Band Aid','Armor',20,100,1,true,false,false,true,true,147); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (5064,'Leaf_Headgear','Smokie Leaf','Armor',20,100,1,true,true,148); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5065,'Fish_On_Head','Blue Fish','Armor',20,500,2,true,50,true,149,'bonus2 bAddRace,RC_Fish,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5066,'Horn_Of_Succubus','Succubus Horn','Armor',20,800,4,true,false,false,true,70,true,150,'bonus bInt,1; bonus bMdef,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5067,'Sombrero','Sombrero','Armor',20,350,4,true,false,false,true,true,151,'bonus bAgi,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (5068,'Ear_Of_Devil\'s_Wing','Evil Wing Ears','Armor',20,100,1,true,70,152,'bonus bStr,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5069,'Mask_Of_Fox','Kitsune Mask','Armor',20,300,1,true,false,false,true,true,153,'bonus bAgi,1; bonus bLuk,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5070,'Headband_Of_Power','Hot-blooded Headband','Armor',20,100,1,true,false,false,true,true,154,'bonus bStr,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5071,'Indian_Headband','Indian Headband','Armor',20,200,1,true,false,false,true,true,155,'bonus bDex,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5072,'Inccubus_Horn','Incubus Horn','Armor',20,800,4,true,false,false,true,70,true,156,'bonus bAgi,1; bonus bMdef,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5073,'Cap_Of_Concentration','Model Training Hat','Armor',20,700,2,true,false,false,true,true,157,'bonus bDex,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (5074,'Ear_Of_Angel\'s_Wing','Angel Wing Ears','Armor',20,100,1,true,70,158,'bonus bStr,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (5075,'Cowboy_Hat','Cowboy Hat','Armor',20,500,4,true,true,159); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5076,'Fur_Hat','Beanie','Armor',20,350,2,true,true,160,'bonus bLuk,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (5077,'Tulip_Hairpin','Tulip Hairpin','Armor',20,100,1,true,true,161); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5078,'Sea_Otter_Cap','Sea-Otter Hat','Armor',20,800,3,true,50,true,162,'bonus bVit,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (5079,'Crossed_Hair_Band','X Hairpin','Armor',20,100,1,true,true,163); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5080,'Headgear_Of_Queen','Crown of Ancient Queen','Armor',20,400,4,true,45,true,164); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5081,'Mistress_Crown','Crown of Mistress','Armor',20,100,true,false,false,true,75,true,165,'bonus bMaxSP,100; bonus bInt,2; bonus bUnbreakableHelm;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (5082,'Mushroom_Band','Decorative Mushroom','Armor',20,100,2,true,true,166); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5083,'Red_Tailed_Ribbon','Red Ribbon','Armor',20,200,1,true,45,true,167,'bonus bMdef,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5084,'Lazy_Raccoon','Lazy Smokie','Armor',20,500,1,true,false,false,true,true,168,'bonus2 bResEff,Eff_Sleep,2000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`view`) VALUES (5085,'Pair_Of_Red_Ribbon','Small Ribbons','Armor',20,100,1,true,45,169); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`location_head_low`,`view`,`script`) VALUES (5086,'Alarm_Mask','Alarm Mask','Armor',20,100,2,true,false,false,true,true,170,'bonus2 bResEff,Eff_Blind,5000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`location_head_low`,`view`) VALUES (5087,'Goblin_Mask_01','Poker Face','Armor',20,100,1,true,true,171); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`location_head_low`,`view`) VALUES (5088,'Goblin_Mask_02','Surprised Mask','Armor',20,100,1,true,true,172); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`location_head_low`,`view`) VALUES (5089,'Goblin_Mask_03','Annoyed Mask','Armor',20,100,1,true,true,173); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`location_head_low`,`view`) VALUES (5090,'Goblin_Mask_04','Goblin Leader Mask','Armor',20,100,2,true,true,174); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`) VALUES (5091,'Big_Golden_Bell','Decorative Golden Bell','Armor',20,200,2,true,false,false,true,true,35,true,175); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_assassin`,`job_priest`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`) VALUES (5092,'Blue_Coif','Coif','Armor',150000,300,5,true,true,true,true,65,true,176); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_assassin`,`job_priest`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5093,'Blue_Coif_','Coif','Armor',150000,300,5,1,true,true,true,true,65,true,177,'bonus bMaxSP,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5094,'Orc_Hero_Helm','Helmet of Orc Hero','Armor',500000,900,5,true,false,false,true,true,55,true,178,'bonus bStr,2; bonus bVit,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_assassin`,`job_priest`,`location_head_low`,`equip_level_min`,`view`) VALUES (5096,'Assassin_Mask_','Assassin Mask','Armor',20,100,true,true,true,70,180); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_top`,`refineable`,`view`) VALUES (5097,'Cone_Hat_','Holiday Hat','Armor',400,true,true,144); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5098,'Tiger_Mask','Tiger Mask','Armor',20,400,2,true,true,50,181,100,true,true,true,'bonus bStr,3; bonus bMaxHP,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5099,'Cat_Hat','Neko Mimi','Armor',20,300,1,true,true,182,'bonus bLuk,2; bonus bMdef,10; bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5100,'Sales_Signboard','Sales Banner','Armor',20,800,true,75,true,183,100,true,true,true,'bonus bStr,1; bonus bAgi,1; bonus bLuk,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`view`) VALUES (5101,'Takius_Blindfold','Takius\'s Blindfold','Armor',20,100,true,184); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`view`) VALUES (5102,'Round_Eyes','Blank Eyes','Armor',20,100,true,185); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5103,'Sunflower_Hairpin','Sunflower Hairpin','Armor',20,600,1,true,false,false,true,30,186,100,true,true,true,'bonus bAgi,2; bonus bCritical,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`view`,`script`) VALUES (5104,'Dark_Blindfold','Dark Blinder','Armor',20,100,true,false,false,true,187,'bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Stun,200;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5105,'Hat_Of_Cake_','2nd Anniversary Hat','Armor',20,1000,1,true,24,true,109,'bonus bDex,1; bonus bMaxSP,80; bonus3 bAddMonsterDropItem,7864,7,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5106,'Cone_Hat_INA','2nd Anniversary Hat','Armor',20,300,3,true,1,144,'bonus bLuk,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`) VALUES (5107,'Well_Baked_Toast','Crunch Toast','Armor',20,50,true,188); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`) VALUES (5108,'Detective_Hat','Renown Detective\'s Cap','Armor',20,350,3,1,true,true,189); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (5109,'Red_Bonnet','Red Bonnet','Armor',20,400,2,true,true,190); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`) VALUES (5110,'Baby_Pacifier','Baby Pacifier','Armor',20,50,true,191); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5111,'Galapago_Cap','Galapago Cap','Armor',20,500,2,true,55,true,192,'bonus2 bAddMonsterDropItem,605,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5112,'Super_Novice_Hat','Super Novice Hat','Armor',8500,400,4,true,true,true,40,true,193,'bonus bAllStats,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`) VALUES (5113,'Angry_Mouth','Angry Snarl','Armor',20,50,true,194); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (5114,'Fedora','Bucket Hat','Armor',6000,300,3,true,true,195); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5115,'Winter_Hat','Winter Hat','Armor',20,500,3,true,true,196,'bonus2 bResEff,Eff_Freeze,1000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5116,'Banana_Hat','Banana Hat','Armor',20,200,1,true,true,197,'bonus3 bAutoSpell,"SM_PROVOKE",3,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5117,'Mistic_Rose','Mystic Rose','Armor',20,100,true,true,198,'bonus2 bSubRace,RC_Plant,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (5118,'Ear_Of_Puppy','Puppy Headband','Armor',20,100,2,true,true,199); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5119,'Super_Novice_Hat_','Super Novice Hat','Armor',8500,400,4,1,true,true,true,40,true,193,'bonus bAllStats,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`) VALUES (5120,'Fedora_','Bucket Hat','Armor',6000,300,3,1,true,true,195); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5121,'Zherlthsh_Mask','Zealotus Mask','Armor',20,400,3,true,false,false,true,true,70,true,200,'bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5122,'Magni_Cap','Magni\'s Cap','Armor',30000,1000,5,true,false,false,true,65,true,250,'bonus bStr,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5123,'Ulle_Cap','Ulle\'s Cap','Armor',30000,500,3,1,true,false,false,true,65,true,254,'bonus bDex,2; bonus bAgi,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5124,'Fricca_Circlet','Fricca\'s Circlet','Armor',30000,300,3,true,false,false,true,65,true,251,'bonus bMdef,10; bonus bInt,2; bonus bMaxSP,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5125,'Kiss_Of_Angel','Angel\'s Kiss','Armor',10000,300,3,1,true,true,true,50,true,255,'bonus bSPrecovRate,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5126,'Morpheus\'s_Hood','Morpheus\'s Hood','Armor',30000,200,1,true,false,false,true,33,true,256,'bonus bInt,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5127,'Morrigane\'s_Helm','Morrigane\'s Helm','Armor',30000,500,4,true,false,false,true,61,true,257,'bonus bLuk,2; bonus bBaseAtk,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5128,'Goibne\'s_Helmet','Goibne\'s Helm','Armor',30000,500,5,true,false,false,true,54,true,258,'bonus bVit,3; bonus bMdef,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5129,'Bird_Nest','Bird Nest','Armor',20,400,1,true,50,201,'bonus bAgi,2; bonus2 bSubRace,RC_Brute,10; bonus2 bSubRace,RC_Player_Doram,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5130,'Lion_Mask','Lion Mask','Armor',20,700,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,75,true,202,'bonus2 bAddEffWhenHit,Eff_Silence,500; bonus bMdef,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_crusader`,`job_knight`,`job_swordman`,`location_head_top`,`location_head_mid`,`location_head_low`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5131,'Close_Helmet','Close Helmet','Armor',20,1200,8,true,true,true,true,true,true,75,true,203,'bonus bVit,3; bonus bMaxHPrate,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`view`,`trade_override`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5132,'Angeling_Hat','Angeling Hat','Armor',20,700,2,true,204,100,true,true,true,true,true,'bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_acolyte`,`job_monk`,`job_priest`,`location_head_top`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5133,'Sheep_Hat','Sheep Hat','Armor',20,150,1,true,true,true,true,205,100,true,true,true,'bonus bShortWeaponDamageReturn,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5134,'Pumpkin_Hat','Pumpkin-Head','Armor',20,200,2,true,true,206,'bonus2 bSubRace,RC_Demon,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (5135,'Cyclops_Visor','Cyclop\'s Eye','Armor',200,true,false,false,true,75,207,'bonus bMaxSP,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (5136,'Santa\'s_Hat_','Antonio\'s Santa Hat','Armor',20,100,2,true,true,20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5137,'Alice_Doll','Alice Doll','Armor',20,500,1,true,false,false,true,30,208,'bonus bStr,1; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus2 bAddEff2,Eff_Sleep,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5138,'Magic_Eyes','Magic Eyes','Armor',20,300,1,true,true,true,true,true,30,true,209,'bonus bMdef,5; bonus bCastrate,-10; bonus bUseSPrate,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5139,'Hibiscus','Hibiscus','Armor',20,200,true,10,210,'bonus bDex,1; bonus bInt,1; bonus bMdef,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5140,'Charming_Ribbon','Charming Ribbon','Armor',20,400,1,1,true,10,true,211,'bonus2 bSubRace,RC_Undead,5; bonus2 bSubRace,RC_Demon,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5141,'Marionette_Doll','Marionette Doll','Armor',20,400,1,true,false,false,true,30,true,212,'bonus bStr,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5142,'Crescent_Helm','Crescent Helm','Armor',20,3000,8,true,true,true,true,true,true,true,true,50,true,213,'bonus bVit,1; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`gender`,`location_head_top`,`location_head_mid`,`location_head_low`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5143,'Kabuki_Mask','Kabuki Mask','Armor',20,1000,5,1,true,false,false,'Male',true,true,true,30,true,214,'bonus2 bResEff,Eff_Silence,3000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5144,'Gambler_Hat','Gambler Hat','Armor',20,200,2,true,true,16,'bonus bLuk,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`refineable`,`view`) VALUES (5145,'Carnival_Joker_Jester','Carnival Joker Jester','Armor',10,100,true,true,89); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5146,'Elephant_Hat','Elephant Hat','Armor',500,true,true,215,'bonus bVit,1; bonus2 bSubRace,RC_Brute,7; skill "WZ_WATERBALL",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`) VALUES (5147,'Baseball_Cap','Baseball Cap','Armor',200,3,1,true,true,216); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5148,'Phrygian_Cap','Phrygian Cap','Armor',500,true,true,217,'bonus bInt,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5149,'Silver_Tiara','Silver Tiara','Armor',100,true,true,218,'bonus bInt,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`view`,`script`) VALUES (5150,'Joker_Jester_','Joker Jester','Armor',20,100,1,true,219,'bonus bSpeedRate,25;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`refineable`,`view`,`script`) VALUES (5151,'Headset_OST','Note Headphones','Armor',20,200,4,1,true,true,true,220,'bonus bMdef,3; bonus2 bResEff,Eff_Stun,1000; bonus2 bResEff,Eff_Freeze,1000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5152,'Chinese_Crown','Chinese Crown','Armor',20,2000,2,true,true,1,true,221,'bonus2 bResEff,Eff_Stun,1000; bonus bInt,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5153,'Angeling_Hairpin','Angeling Hairpin','Armor',20,700,3,true,true,222,'bonus bFlee,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (5154,'Sunglasses_F','Father\'s Sunglasses','Armor',20,100,3,true,12,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5155,'Granpa_Beard_F','Father\'s White Moustache','Armor',20,100,true,25,100,true,true,true,true,true,true,true,'bonus bBaseAtk,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5156,'Flu_Mask_F','Father\'s Mask','Armor',20,100,true,8,100,true,true,true,true,true,true,true,'bonus bMatkRate,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_head_top`,`refineable`,`view`) VALUES (5157,'Viking_Helm_','Orc Helm','Armor',20,500,5,1,true,true,true,true,true,true,true,true,true,true,true,86); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5158,'Holy_Bonnet_','Monk Hat','Armor',30000,100,5,1,true,true,true,true,true,35,'bonus bMdef,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5159,'Golden_Gear_','Golden Gear','Armor',20,900,5,1,true,false,false,true,40,true,30,'bonus bUnbreakableHelm;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5160,'Magestic_Goat_','Majestic Goat','Armor',20,800,5,1,true,true,true,true,true,true,true,true,true,true,41,'bonus bStr,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_rogue`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`job_thief`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5161,'Sharp_Gear_','Spiky Band','Armor',20,1000,6,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,50,true,43); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5162,'Bone_Helm_','Bone Helm','Armor',20,800,7,1,true,true,true,true,true,true,true,70,true,103,'bonus2 bSubEle,Ele_Dark,-15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5163,'Corsair_','Corsair','Armor',20,500,5,1,true,false,false,true,true,105,'bonus bVit,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`gender`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5164,'Tiara_','Tiara','Armor',20,400,4,1,true,false,false,'Female',true,45,true,19,'bonus bInt,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`gender`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5165,'Crown_','Crown','Armor',20,400,4,1,true,false,false,'Male',true,45,true,45,'bonus bInt,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_head_top`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (5166,'Spinx_Helm_','Sphinx Hat','Armor',20,3000,5,1,true,true,true,true,true,65,137,'bonus bStr,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`location_head_low`,`view`,`script`) VALUES (5167,'Munak_Turban_','Munak Hat','Armor',20,300,5,1,true,true,true,51,'bonus2 bSubRace,RC_Undead,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`location_head_low`,`view`) VALUES (5168,'Bongun_Hat_','Bongun Hat','Armor',20,300,5,1,true,true,true,139); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5169,'Bride_Mask','Bride Mask','Armor',30000,500,4,1,true,true,40,true,223,'if(BaseClass==Job_Taekwon){ bonus bLuk,2; bonus bCritical,5; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5170,'Feather_Beret','Feather Beret','Armor',30000,600,1,true,false,false,true,true,224,'bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5171,'Valkyrie_Helm','Valkyrie Helm','Armor',100000,1000,5,1,true,false,false,true,true,true,225,'bonus bMdef,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`view`,`script`) VALUES (5172,'Beret','Beret','Armor',30000,700,true,226,'bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5173,'Satto_Hat','Magistrate Hat','Armor',30000,400,3,1,true,60,true,227,'if(BaseClass==Job_Taekwon){ bonus bAgi,1; bonus bHPrecovRate,3; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5174,'Ayam','Ayam','Armor',30000,400,3,1,true,60,true,228,'if(BaseClass==Job_Taekwon){ bonus bInt,1; bonus bSPrecovRate,3; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`view`,`script`) VALUES (5175,'Censor_Bar','Censor Bar','Armor',30000,100,true,229,'bonus2 bResEff,Eff_Curse,500; bonus bMdef,1; bonus bHit,-5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (5176,'Hahoe_Mask','Hahoe Mask','Armor',30000,100,2,true,true,30,230,'if(BaseClass==Job_Taekwon){ bonus bLuk,1; bonus bFlee2,2; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5177,'Guardian_Lion_Mask','Mythical Lion Mask','Armor',30000,500,5,1,true,true,40,true,231,'if(BaseClass==Job_Taekwon){ bonus bDex,2; bonus bBaseAtk,2*getrefine(); bonus3 bAddEff,Eff_Stun,1000,ATF_SHORT; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5178,'Candle_','Candle','Armor',20,150,true,true,113,'bonus bAllStats,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5179,'Gold_Tiara','Golden Tiara','Armor',100,true,true,232,'bonus bInt,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5180,'Phrygian_Cap_','France Holiday Hat','Armor',20,100,1,true,true,217,'bonus bVit,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5181,'Helm_Of_Darkness','Helm of Darkness','Armor',20,2000,3,1,true,true,true,true,true,true,true,true,true,true,true,50,true,233,'bonus bStr,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5182,'Puppy_Hat','Puppy Hat','Armor',20,500,2,true,30,234,'bonus bAgi,1; bonus3 bAutoSpell,"PR_GLORIA",1,10+20*(readparam(bAgi)>=77);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5183,'Bird_Nest_Hat','Bird Nest Hat','Armor',20,500,2,true,10,true,235,'bonus bDex,1; bonus bAgi,1; bonus2 bResEff,Eff_Stun,1000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5184,'Captain_Hat','Captain\'s Hat','Armor',20,500,4,true,false,false,true,30,true,236,'bonus2 bSubEle,Ele_Water,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5185,'Laurel_Wreath','Laurel Wreath','Armor',20,100,1,1,true,10,true,237,'bonus bLuk,3; bonus2 bResEff,Eff_Blind,500; bonus2 bResEff,Eff_Curse,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5186,'Geographer_Band','Geographer Band','Armor',20,500,1,true,30,238,'bonus bInt,1; bonus3 bAutoSpellWhenHit,"AL_HEAL",1,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5187,'Twin_Ribbon','Twin Ribbon','Armor',20,200,1,true,30,true,239,'bonus bMaxSP,30; bonus bMdef,3; bonus3 bAutoSpellWhenHit,"NPC_STONESKIN",6,10; bonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,120,BF_MAGIC,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5188,'Minstrel_Hat','Wandering Minstrel Hat','Armor',20,500,2,true,50,true,240,'bonus bInt,1; bonus bDex,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5189,'Fallen_Leaves','Autumn Leaves','Armor',20,100,true,true,241,'bonus bMaxHP,40; bonus bMaxSP,40;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`) VALUES (5190,'Baseball_Cap_','Independence Memorial Hat','Armor',20,20,3,1,true,true,216); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`gender`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5191,'Ribbon_Black','Black Ribbon','Armor',800,100,1,1,'Female',true,true,242,'bonus bInt,1; bonus bMdef,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`gender`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5192,'Ribbon_Yellow','Yellow Ribbon','Armor',800,100,1,1,'Female',true,true,243,'bonus bMdef,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`gender`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5193,'Ribbon_Green','Green Ribbon','Armor',800,100,1,1,'Female',true,true,244,'bonus bMdef,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`gender`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5194,'Ribbon_Pink','Pink Ribbon','Armor',800,100,1,1,'Female',true,true,245,'bonus bMdef,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`gender`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5195,'Ribbon_Red','Red Ribbon','Armor',800,100,1,1,'Female',true,true,246,'bonus bMdef,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`gender`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5196,'Ribbon_Orange','Orange Ribbon','Armor',800,100,1,1,'Female',true,true,247,'bonus bMdef,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`gender`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5197,'Ribbon_White','White Ribbon','Armor',800,100,1,1,'Female',true,true,248,'bonus bMdef,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5198,'Drooping_Bunny','Drooping Bunny','Armor',10,100,1,true,true,249,'bonus bDex,1; bonus bFlee,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (5199,'Baseball_Cap_I','Baseball Cap','Armor',200,3,true,true,216); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`refineable`,`view`) VALUES (5200,'Coppola','Coppola','Armor',10,300,true,true,252); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (5201,'Party_Hat_B','Party Hat','Armor',20,300,3,true,true,144,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5202,'Pumpkin_Hat_','Fantastic Pumpkin-Head','Armor',20,200,2,true,true,206,'bonus2 bSubRace,RC_Demon,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`location_head_low`,`view`,`script`) VALUES (5203,'Tongue_Mask','Smiling Mask','Armor',20,200,2,true,true,253,'bonus bSpeedRate,25;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`,`script`) VALUES (5204,'Event_Pierrot_Nose','Rudolph\'s Nose','Armor',20,100,true,49,'bonus2 bResEff,Eff_Blind,3000; bonus2 bAddMonsterDropItem,12130,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`refineable`,`view`,`script`) VALUES (5205,'Wreath','Emperor\'s Laurel Crown','Armor',20,1000,3,true,true,true,261,'bonus bAllStats,1; bonus bMdef,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_low`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5206,'Romantic_White_Flower','Romantic White Flower','Armor',20,100,true,false,false,true,259,100,true,true,true,'bonus2 bSubRace,RC_Plant,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`view`,`script`) VALUES (5207,'Gold_Spirit_Chain','Angel Blessing','Armor',20,100,true,260,'bonus bLuk,1; bonus2 bSubEle,Ele_Holy,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5208,'Rideword_Hat','Rideword Hat','Armor',20,300,2,1,true,false,false,true,40,true,262,'bonus2 bHPDrainRate,50,8; bonus2 bSPDrainRate,10,4; bonus2 bHPLossRate,10,5000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (5209,'Yellow_Baseball_Cap','Love Dad Cap','Armor',20,300,2,true,true,263); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5210,'Flying_Angel','Flapping Angel Wing','Armor',20,300,1,true,10,true,264,100,true,true,true,'bonus bCastrate,-3; bonus bAspdRate,3; bonus bInt,1; bonus bAgi,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5211,'Dress_Hat','Dress Hat','Armor',200,2,1,true,20,true,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; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`,`unequip_script`) VALUES (5212,'Satellite_Hairband','Satellite Hairband','Armor',1000,3,1,true,30,true,266,'bonus bMaxHP,50; bonus bMaxSP,10; skill "AL_RUWACH",1;','sc_end SC_RUWACH;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5213,'Black_Bunny_Band','Sheila Hairnet','Armor',200,2,true,1,true,267,'bonus bAgi,2; bonus bMdef,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5214,'Moonlight_Flower_Hat','Moonlight Flower Hat','Armor',200,3,true,true,1,true,268,'bonus bDex,2; bonus3 bAutoSpell,"AL_INCAGI",1,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5215,'Angelic_Chain_','Evolved Angel Wing','Armor',20,100,2,true,false,false,true,true,38,100,true,true,true,'bonus bMdef,3; bonus bDex,1; bonus bInt,1; bonus2 bSubRace,RC_Demon,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5216,'Satanic_Chain_','Evolved Evil Wing','Armor',20,100,3,true,false,false,true,true,39,100,true,true,true,'bonus bStr,1; bonus bAgi,1; bonus bFlee,3; bonus2 bSubRace,RC_Angel,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5217,'Magestic_Goat_TW','Evolved Majestic Goat','Armor',20,800,5,true,true,true,true,true,true,true,true,true,true,41,100,true,true,true,'bonus bStr,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5218,'Bunny_Band_','Evolved Bunny Band','Armor',20,100,2,true,true,15,100,true,true,true,'bonus bInt,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5219,'Drooping_Kitty_','Evolved Drooping Cat','Armor',250000,500,1,true,false,false,true,true,142,100,true,true,true,'bonus bMdef,18; bonus bFlee,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_low`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5220,'Smoking_Pipe_','Evolved Pipe','Armor',20,100,true,false,false,true,55,100,true,true,true,'bonus bVit,1; bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`gender`,`location_head_mid`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5221,'Pair_Of_Red_Ribbon_','Evolved Pair of Red Ribbon','Armor',20,100,1,'Female',true,45,169,100,true,true,true,'bonus bFlee,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5222,'Fish_On_Head_','Evolved Blue Fish','Armor',20,500,2,true,50,true,149,100,true,true,true,'bonus bAgi,1; bonus bDex,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5223,'Big_Golden_Bell_','Evolved Big Golden Bell','Armor',20,200,2,true,false,false,true,true,35,true,175,100,true,true,true,'bonus bAgi,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5224,'Orc_Hero_Helm_TW','Evolved Orc Hero Helm','Armor',500000,900,5,true,false,false,true,true,55,true,178,100,true,true,true,'bonus bStr,2; bonus bVit,1; bonus bMaxHPrate,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5225,'Marcher_Hat','Parade Hat','Armor',20,200,2,1,true,10,true,269,'bonus bMdef,2; bonus bStr,2; bonus4 bAutoSpellWhenHit,"AL_ANGELUS",5,30,0; bonus4 bAutoSpellWhenHit,"HP_ASSUMPTIO",1,1,0; bonus2 bResEff,Eff_Stun,1000; if(BaseClass==Job_Acolyte) bonus4 bAutoSpellOnSkill,"AL_HEAL","PR_LEXAETERNA",1,1000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5226,'Mini_Propeller_','Mini Propeller','Armor',20,200,2,true,true,270,100,true,true,true,'bonus bAgi,2; bonus bDex,1; bonus bFlee,10; bonus bCastrate,-getrefine();'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5227,'Red_Deviruchi_Cap','Red Deviruchi Hat','Armor',20,800,2,true,false,false,true,64,true,271,100,true,true,true,true,true,true,true,'bonus bStr,1; bonus bInt,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5228,'White_Deviruchi_Cap','Gray Deviruchi Hat','Armor',20,800,2,true,false,false,true,64,true,272,100,true,true,true,true,true,true,true,'bonus bStr,1; bonus bInt,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5229,'Gray_Deviruchi_Cap','Brown Deviruchi Hat','Armor',20,800,2,true,false,false,true,64,true,273,100,true,true,true,true,true,true,true,'bonus bStr,1; bonus bInt,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5230,'White_Drooping_Kitty','Gray Drooping Cat','Armor',250000,500,1,true,false,false,true,true,274,100,true,true,true,true,true,true,true,'bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5231,'Gray_Drooping_Kitty','Brown Drooping Cat','Armor',250000,500,1,true,false,false,true,true,275,100,true,true,true,true,true,true,true,'bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5232,'Pink_Drooping_Kitty','Pink Drooping Cat','Armor',250000,500,1,true,false,false,true,true,276,100,true,true,true,true,true,true,true,'bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5233,'Blue_Drooping_Kitty','Blue Drooping Cat','Armor',250000,500,1,true,false,false,true,true,277,100,true,true,true,true,true,true,true,'bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5234,'Yellow_Drooping_Kitty','Yellow Drooping Cat','Armor',250000,500,1,true,false,false,true,true,278,100,true,true,true,true,true,true,true,'bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5235,'Gray_Fur_Hat','Brown Beanie','Armor',20,350,2,true,true,279,100,true,true,true,true,true,true,true,'bonus bLuk,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5236,'Blue_Fur_Hat','Blue Beanie','Armor',20,350,2,true,true,280,100,true,true,true,true,true,true,true,'bonus bLuk,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5237,'Pink_Fur_Hat','Pink Beanie','Armor',20,350,2,true,true,281,100,true,true,true,true,true,true,true,'bonus bLuk,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5238,'Red_Wizardry_Hat','Red Mage Hat','Armor',20,300,1,true,true,true,true,true,true,282,100,true,true,true,true,true,true,true,'bonus bInt,2; bonus bMaxSP,150;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5239,'White_Wizardry_Hat','Gray Mage Hat','Armor',20,300,1,true,true,true,true,true,true,283,100,true,true,true,true,true,true,true,'bonus bInt,2; bonus bMaxSP,150;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5240,'Gray_Wizardry_Hat','Brown Mage Hat','Armor',20,300,1,true,true,true,true,true,true,284,100,true,true,true,true,true,true,true,'bonus bInt,2; bonus bMaxSP,150;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5241,'Blue_Wizardry_Hat','Blue Mage Hat','Armor',20,300,1,true,true,true,true,true,true,285,100,true,true,true,true,true,true,true,'bonus bInt,2; bonus bMaxSP,150;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5242,'Yellow_Wizardry_Hat','Yellow Mage Hat','Armor',20,300,1,true,true,true,true,true,true,286,100,true,true,true,true,true,true,true,'bonus bInt,2; bonus bMaxSP,150;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5243,'Chullos','Shafka','Armor',20,800,2,1,true,true,true,287,100,true,true,true,'bonus2 bResEff,Eff_Freeze,1000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`view`,`script`) VALUES (5244,'Elven_Blindfold','Elven Blindfold','Armor',20,200,1,true,288,'bonus2 bResEff,Eff_Blind,10000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`view`,`script`) VALUES (5245,'Elven_Sunglasses','Elven Sunglasses','Armor',20,200,1,true,289,'bonus2 bResEff,Eff_Blind,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5246,'Angelic_Helm','Angelic Helm','Armor',20,700,3,true,true,290,'bonus bAgi,1; bonus bLuk,1; bonus bMdef,3; bonus2 bSubRace,RC_Demon,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5247,'Satanic_Helm','Satanic Helm','Armor',20,700,4,true,true,291,'bonus bAgi,1; bonus bLuk,1; bonus bMdef,3; bonus2 bSubRace,RC_Demon,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`view`,`script`) VALUES (5248,'Robotic_Blindfold','Robotic Blindfold','Armor',20,200,1,true,292,'bonus2 bResEff,Eff_Blind,10000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`view`,`script`) VALUES (5249,'Human_Blindfold','Human Blindfold','Armor',20,200,1,true,293,'bonus2 bResEff,Eff_Blind,10000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`view`) VALUES (5250,'Robotic_Ears','Robotic Ears','Armor',20,10,true,294); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`view`) VALUES (5251,'Round_Ears','Round Ears','Armor',20,10,true,295); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5252,'Drooping_Nine_Tail','Drooping Ninetail','Armor',20,300,1,true,20,true,296,'bonus bAgi,1; bonus bDex,1; bonus3 bAutoSpellWhenHit,"PR_GLORIA",1,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5253,'Lif_Doll_Hat','Lif Doll Hat','Armor',20,200,1,1,true,20,true,297,'bonus bInt,1; bonus bMdef,getrefine(); bonus bDef,getrefine()*-1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5254,'Deviling_Hat','Deviling Hat','Armor',20,500,1,1,true,20,true,298,'bonus bStr,1; bonus bCritical,3; bonus2 bSubRace,RC_Angel,-20; if(getrefine()>=6){ bonus bCritical,getrefine()-5; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5255,'Triple_Poring_Hat','Triple Poring Hat','Armor',20,600,3,true,20,299,'bonus bLuk,3; bonus3 bAutoSpell,"BS_GREED",1,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5256,'Valkyrie_Feather_Band','Valkyrie Feather Band','Armor',20,100,1,1,true,20,true,300,100,true,true,true,'bonus bInt,1; bonus3 bAutoSpellWhenHit,"AL_HEAL",1,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5257,'Soulless_Wing','Soul Ring','Armor',20,300,2,true,false,false,true,20,true,301,100,true,true,true,'bonus bMdef,2; bonus3 bAutoSpellWhenHit,"HP_ASSUMPTIO",1,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5258,'Afro_Wig','Afro Wig','Armor',20,100,1,true,true,10,true,302,'bonus3 bAutoSpellWhenHit,"NV_FIRSTAID",1,300; bonus2 bSubEle,Ele_Neutral,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5259,'Elephant_Hat_','Elephant Hat','Armor',20,500,3,true,true,215,'bonus bVit,1; bonus3 bAutoSpell,"WZ_WATERBALL",3,10; skill "AL_HOLYWATER",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5260,'Cookie_Hat','Cookie Hat','Armor',20,500,2,true,true,217,'bonus bAgi,1; bonus bFlee2,5; bonus bCritAtkRate,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5261,'Silver_Tiara_','Silver Tiara','Armor',20,500,2,true,true,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);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5262,'Gold_Tiara_','Golden Tiara','Armor',20,500,2,true,true,232,'bonus bStr,2; bonus bUnbreakableHelm; if((readparam(bDex)<56)&&(BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Thief)) bonus bDex,JobLevel/7;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`location_head_mid`,`location_head_low`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5263,'Ati_Atihan_Hat','Pagdayaw','Armor',20,100,1,true,false,false,true,true,true,20,true,303,100,true,true,true,'bonus2 bSubEle,Ele_Water,1; bonus2 bSubEle,Ele_Earth,1; bonus2 bSubEle,Ele_Fire,1; bonus2 bSubEle,Ele_Wind,1; bonus2 bAddEff,Eff_Curse,300;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5264,'Aussie_Flag_Hat','Australian Flag Hat','Armor',20,500,4,true,true,304,'bonus bAllStats,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5265,'Apple_Of_Archer_C','Apple of Archer','Armor',1,7,true,false,false,true,1,72,100,true,true,true,true,true,true,true,true,'bonus bDex,4;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5266,'Bunny_Band_C','Bunny Band','Armor',1,9,true,1,15,100,true,true,true,true,true,true,true,true,'bonus bMdef,5; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5267,'Sahkkat_C','Sakkat','Armor',1,10,true,67,100,true,true,true,true,true,true,true,true,'bonus bAgi,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5268,'Lord_Circlet_C','Grand Circlet','Armor',1,10,true,false,false,true,1,93,100,true,true,true,true,true,true,true,true,'bonus bStr,3; bonus bInt,3; bonus bLuk,3; bonus bMdef,4;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5269,'Flying_Angel_','Flapping Angel Wing','Armor',20,300,1,true,10,true,264,'bonus bInt,1; bonus bAgi,1; bonus bAspdRate,3; bonus bSpeedRate,25;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5270,'Fallen_Leaves_','Autumn Leaves','Armor',20,100,1,1,true,true,241,'bonus bFlee2,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`refineable`,`view`,`script`) VALUES (5271,'Chinese_Crown_','Phoenix Crown','Armor',20,500,4,1,true,true,true,221,'bonus bMdef,3; bonus2 bSubClass,Class_Boss,getrefine();'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`location_head_low`,`view`,`script`) VALUES (5272,'Tongue_Mask_','Tongue Mask','Armor',20,100,2,true,true,253,'bonus3 bAutoSpell,"SM_PROVOKE",5,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`refineable`,`view`,`script`,`unequip_script`) VALUES (5273,'Happy_Wig','Happy Wig','Armor',20,100,1,true,true,true,305,'bonus bSpeedRate,25; bonus bDef,4; skill "TF_HIDING",1;','sc_end SC_HIDING;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`refineable`,`view`,`script`,`unequip_script`) VALUES (5274,'Shiny_Wig','Shiny Wig','Armor',20,100,1,true,true,true,306,'bonus bSpeedRate,25; bonus bDef,4; skill "TF_HIDING",1;','sc_end SC_HIDING;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`refineable`,`view`,`script`,`unequip_script`) VALUES (5275,'Marvelous_Wig','Marvelous Wig','Armor',20,100,1,true,true,true,307,'bonus bSpeedRate,25; bonus bDef,4; skill "TF_HIDING",1;','sc_end SC_HIDING;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`refineable`,`view`,`script`,`unequip_script`) VALUES (5276,'Fantastic_Wig','Fantastic Wig','Armor',20,100,1,true,true,true,308,'bonus bSpeedRate,25; bonus bDef,4; skill "TF_HIDING",1;','sc_end SC_HIDING;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5277,'Yellow_Bandana','Yellow Bandana','Armor',20,100,1,true,false,false,true,20,true,309,100,true,true,true,'bonus bLuk,2; bonus bVit,2; bonus bLongAtkDef,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5278,'Yellow_Ribbon','Yellow Ribbon','Armor',20,100,1,true,false,false,true,20,true,310,100,true,true,true,'bonus bLuk,2; bonus bVit,2; bonus bLongAtkDef,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`view`,`script`) VALUES (5279,'Drooping_Kitty_C','Refined Drooping Cat','Armor',2,1,true,false,false,true,142,'bonus bMdef,15; bonus2 bResEff,Eff_Curse,3000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`view`,`script`) VALUES (5280,'Magestic_Goat_C','Baphomet Horns','Armor',2,5,true,41,'bonus bStr,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`view`,`script`) VALUES (5281,'Deviruchi_Cap_C','Refined Deviruchi Hat','Armor',2,2,true,false,false,true,123,'bonus bStr,1; bonus bInt,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`) VALUES (5282,'euRO_Baseball_Cap','Europe Baseball Cap','Armor',200,3,1,true,true,216); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5283,'Chick_Hat','Chick Hat','Armor',20,100,1,true,10,311,100,true,true,true,'bonus bLuk,2; bonus bMaxHP,50; bonus bMaxSP,50; skill "TF_DOUBLE",2; bonus bDoubleRate,10; bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5284,'Water_Lily_Crown','Water Lily Crown','Armor',20,200,1,true,30,312,100,true,true,true,'bonus bDex,1; bonus bAgi,1; bonus bHPrecovRate,5; bonus bSPrecovRate,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5285,'Vane_Hairpin','Vane Hairpin','Armor',20,300,3,1,true,30,313,100,true,true,true,'bonus bAgi,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5286,'Pecopeco_Hairband','Pecopeco Hairband','Armor',20,3,true,70,314,100,true,true,true,'bonus bSpeedRate,25; bonus bAspdRate,-10; bonus bCastrate,25;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5287,'Vacation_Hat','Vacation Hat','Armor',20,200,1,1,true,30,315,100,true,true,true,'bonus bVit,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_mid`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5288,'Red_Glasses','Red Glasses','Armor',20,1,true,316,100,true,true,true,'bonus bInt,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5289,'Vanilmirth_Hat','Vanilmirth Hat','Armor',20,100,true,30,317,100,true,true,true,'bonus bUnbreakableHelm; bonus3 bAutoSpell,"MG_FIREBOLT",1,10; bonus3 bAutoSpell,"MG_COLDBOLT",1,10; bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",1,10; bonus bMdef,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5290,'Drooping_Bunny_','Drooping Bunny','Armor',20,100,1,true,true,249,'bonus bDex,1; bonus bFlee,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5291,'Kettle_Hat','Kettle Hat','Armor',20,600,4,true,30,true,318,100,true,true,true,'bonus4 bAutoSpell,"SA_DELUGE",2,10,0; bonus3 bAutoSpell,"WZ_WATERBALL",3,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5292,'Dragon_Skull','Dragon Skull','Armor',20,800,5,true,50,true,319,100,true,true,true,'bonus2 bSubRace,RC_Dragon,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5293,'Ramen_Hat','Ramen Hat','Armor',20,1,true,320,100,true,true,true,'bonus bDex,4; bonus4 bAutoSpellWhenHit,"AL_DECAGI",1,30,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_head_top`,`location_head_mid`,`location_head_low`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5294,'Whisper_Mask','Whisper Mask','Armor',20,true,true,true,321,100,true,true,true,'bonus bAgi,3; bonus2 bSubEle,Ele_Ghost,-10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5295,'Golden_Bandana','Golden Bandana','Armor',20,2400,4,true,true,138,100,true,true,true,true,true,true,'bonus bMdef,4;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5296,'Drooping_Nine_Tail_','Drooping Nine Tail','Armor',20,300,1,1,true,true,296,'bonus bAgi,1; bonus bCritical,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5297,'Soulless_Wing_','Soul Wing','Armor',20,300,2,1,true,true,301,'bonus bAllStats,1; bonus2 bSPRegenRate,2,10000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`refineable`,`view`,`script`) VALUES (5298,'Marvelous_Wig_','Dokebi\'s Wig','Armor',20,100,1,1,true,true,true,307,'bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubEle,Ele_Fire,-5; bonus2 bSubEle,Ele_Water,-5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`location_head_low`,`view`,`script`) VALUES (5299,'Ati_Atihan_Hat_','Pagdayaw','Armor',20,100,1,1,true,true,true,303,'bonus3 bAutoSpell,"DC_SCREAM",1,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5300,'Bullock_Helm','Bullock Helm','Armor',20,800,2,true,false,false,true,45,true,322,100,true,true,true,'bonus bMaxHP,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_top`,`refineable`,`view`) VALUES (5301,'Russian_Ribbon','Victory Hairband','Armor',100,true,true,323); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5302,'Lotus_Flower_Hat','Flower Lily','Armor',100,1,true,30,true,324); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5303,'Flower_Coronet','Flower Crown','Armor',20,300,1,true,true,325,'bonus bMdef,3; bonus bMaxHP,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`location_head_low`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5304,'Cap_Of_Blindness','Cap Of Blindness','Armor',20,800,4,1,true,true,true,50,true,326,100,true,true,true,'bonus2 bResEff,Eff_Curse,700; bonus2 bResEff,Eff_Blind,10000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5305,'Pirate_Dagger','Pirate Dagger','Armor',20,100,true,327,100,true,true,true,true,true,true,true,'bonus bBaseAtk,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5306,'Freyja_Crown','Freya\'s Crown','Armor',500,12,true,false,false,true,328,100,true,true,true,true,true,true,true,true,'bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5307,'Carmen_Miranda\'s_Hat','Carmen Miranda\'s Hat','Armor',20,400,3,true,true,329,100,true,true,true,'bonus bMdef,3; bonus3 bAutoSpellWhenHit,"DC_WINKCHARM",1,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5308,'Brazilian_Flag_Hat','Brazil National Flag Hat','Armor',20,300,3,1,true,true,330,100,true,true,true,'bonus bSpeedAddRate,25;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`location_head_low`,`refineable`,`view`,`script`) VALUES (5309,'Mahican','Wool Mask','Armor',20,200,1,true,true,true,true,331,'skill "RG_GRAFFITI",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`,`unequip_script`) VALUES (5310,'Bulb_Hairband','Shining Electric Bulb Hairband','Armor',20,100,3,1,true,true,332,100,true,true,true,'bonus2 bSubEle,Ele_Dark,10; skill "MG_SIGHT",1;','sc_end SC_SIGHT;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5311,'Large_Hibiscus','Large Hisbiscus','Armor',20,100,1,1,true,true,333,100,true,true,true,'bonus bMdef,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5312,'Ayothaya_Hat','Ayothaya King\'s Hat','Armor',20,100,5,1,true,true,true,true,true,true,true,true,true,true,true,334,100,true,true,true,'bonus bStr,1; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5313,'Diadem','Diadem','Armor',20,100,3,1,true,true,true,335,100,true,true,true,'bonus bInt,1; bonus bMatkRate,3; bonus bCastrate,-3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5314,'Hockey_Mask','Hockey Mask','Armor',20,100,1,true,true,50,336,100,true,true,true,'bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5315,'Observer','Observer','Armor',20,100,1,true,35,337,100,true,true,true,'skill "WZ_ESTIMATION",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5316,'Umbrella_Hat','Umbrella Hat','Armor',20,100,2,true,50,true,338,'bonus2 bSubEle,Ele_Water,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5317,'Fisherman_Hat','Fisherman\'s Hat','Armor',20,100,2,true,50,true,339,'bonus3 bAutoSpell,"WZ_WATERBALL",3,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5318,'Poring_Party_Hat','Poring Party Hat','Armor',20,2,true,true,340,100,true,true,true,true,true,true,'bonus bAllStats,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5319,'Hellomother_Hat','Hello Mother Hat','Armor',20,200,2,true,false,false,true,10,true,341,'bonus bLuk,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5320,'Champion_Wreath','Champion Wreath','Armor',20,500,4,true,false,false,true,true,261,100,true,true,true,true,true,true,true,'bonus bAllStats,2; bonus4 bAutoSpellWhenHit,"AL_HEAL",1,50,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (5321,'Indonesian_Bandana','Bandana Merah Putih','Armor',20,500,2,true,true,342); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5322,'Scarf','Kerchief','Armor',20,100,2,true,24,true,343,100,true,true,true,true,true,true,true,'bonus bMdef,2; bonus bFlee,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5323,'Misstrance_Crown','Misstrance Crown','Armor',20,10,true,165,100,true,true,true,true,true,true,true,'bonus bAllStats,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5324,'Little_Angel_Doll','Little Angel Doll','Armor',20,300,2,true,10,true,344,100,true,true,true,'bonus bDex,3; bonus4 bAutoSpellWhenHit,"CR_GRANDCROSS",3,30,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (5325,'Robo_Eye','Robo Eye','Armor',20,200,2,true,10,345,'bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; bonus bDex,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_mid`,`view`,`script`) VALUES (5326,'Masquerade_C','Masquerade C','Armor',1,1,true,78,'bonus2 bAddRace,RC_DemiHuman,7; bonus2 bAddRace,RC_Player_Human,7;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`location_head_mid`,`view`,`script`) VALUES (5327,'Orc_Hero_Helm_C','Refined Helmet of Orc Hero','Armor',1,10,true,false,false,true,true,178,'bonus bStr,5; bonus bVit,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_mid`,`view`,`script`) VALUES (5328,'Evil_Wing_Ears_C','Evil Wing Ears C','Armor',1,2,true,152,'bonus bStr,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_mid`,`view`,`script`) VALUES (5329,'Dark_Blindfold_C','Dark Blindfold C','Armor',1,1,true,187,'bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Stun,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`view`,`script`) VALUES (5330,'kRO_Drooping_Kitty_C','kRO Drooping Kitty C','Armor',1,6,true,false,false,true,142,'bonus bMdef,15; bonus2 bResEff,Eff_Curse,4000; bonus2 bResEff,Eff_Curse,1000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`view`,`script`) VALUES (5331,'Corsair_C','Corsair C','Armor',1,10,true,false,false,true,105,'bonus bVit,3; bonus bInt,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_mid`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (5332,'Loki_Mask','Loki Mask','Armor',200,true,true,20,346,'bonus bFlee2,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5333,'Radio_Antenna','Radio Antenna','Armor',1500,2,true,50,true,347,100,true,true,true,true,true,'bonus bMdef,5; bonus bCritical,5; bonus bFlee,5; skill "MG_LIGHTNINGBOLT",1; bonus4 bAutoSpellWhenHit,"MG_THUNDERSTORM",5,30,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5334,'Angeling_Wanna_Fly','Flapping Angeling','Armor',700,true,38,348,'bonus bLuk,2; bonus bMdef,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`view`,`script`) VALUES (5335,'Jumping_Poring','Jumping Poring','Armor',300,2,true,349,'bonus bLuk,1; bonus bUnbreakableHelm;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`) VALUES (5336,'Guildsman_Recruiter','Guildsman Recruiter Hat','Armor',2,true,10,true,350,100,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`) VALUES (5337,'Party_Recruiter_Hat','Party Recruiter Hat','Armor',2,true,10,true,351,100,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (5338,'Bf_Recruiter_Hat','Bf Recruiter Hat','Armor',2,true,10,true,352,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (5339,'Friend_Recruiter_Hat','Friend Recruiter Hat','Armor',2,true,10,true,353,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5340,'Deprotai_Doll_Hat','Defolty Doll Hat','Armor',500,1,true,60,354,'bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bStr,2; bonus3 bAutoSpellWhenHit,"AL_ANGELUS",10,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5341,'Claris_Doll_Hat','Glaris Doll Hat','Armor',500,1,true,60,355,'bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bInt,2; bonus bMagicHPGainValue,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5342,'Sorin_Doll_Hat','Sorin Doll Hat','Armor',500,1,true,60,356,'bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bDex,2; autobonus "{ bonus bBaseAtk,50; }",20,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }";'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5343,'Tayelin_Doll_Hat','Telling Doll Hat','Armor',500,1,true,60,357,'bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bAgi,2; bonus2 bAddItemHealRate,504,10; bonus2 bAddItemHealRate,547,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5344,'Binit_Doll_Hat','Bennit Doll Hat','Armor',500,1,true,60,358,'bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bVit,2; autobonus "{ bonus bAspdRate,5; }",20,30000,0,"{ specialeffect2 EF_HASTEUP; }";'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5345,'Debril_Doll_Hat','W Doll Hat','Armor',500,1,true,60,359,'bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bLuk,2; bonus2 bAddRace,RC_Undead,5; bonus2 bMagicAddRace,RC_Undead,5; bonus2 bSubRace,RC_Undead,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (5346,'Gf_Recruiter_Hat','Gf Recruiter Hat','Armor',2,true,10,true,360,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`) VALUES (5347,'Ph.D_Hat_','Ph.D Hat','Armor',20,200,3,1,true,false,false,true,true,98); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5348,'Big_Sis\'_Ribbon_','Big Ribbon','Armor',15000,200,2,1,true,false,false,true,true,28,'bonus bMdef,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`) VALUES (5349,'Boy\'s_Cap_','Boy\'s Cap','Armor',20,100,2,1,true,false,false,true,true,102); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5350,'Pirate_Bandana_','Pirate Bandana','Armor',20,100,3,1,true,false,false,true,true,74,'bonus bStr,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`view`,`script`) VALUES (5351,'Sunflower_','Sunflower','Armor',20,100,1,1,true,37,'bonus2 bSubRace,RC_Insect,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`) VALUES (5352,'Poporing_Cap','Poporing Cap','Armor',20,700,2,true,false,false,true,38,true,361,100,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`location_head_top`,`location_head_mid`,`refineable`,`view`,`script`) VALUES (5353,'Helm_Of_Sun_','Hat of the Sun God','Armor',20,2400,4,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,138,'bonus bStr,3; bonus bInt,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`gender`,`location_head_top`,`view`,`script`) VALUES (5354,'Muslim_Hat_M','Muslim Hat M','Armor',100,2,'Male',true,362,'bonus bCastrate,-5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`gender`,`location_head_top`,`view`,`script`) VALUES (5355,'Muslim_Hat_F','Selendang','Armor',100,2,'Female',true,363,'bonus bCastrate,-5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5356,'Pumpkin_Hat_H','Festival Pumpkin Hat','Armor',20,200,2,true,true,206,100,true,true,'bonus2 bSubRace,RC_Demon,5; bonus2 bAddRace,RC_Demon,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5357,'Wings_Of_Victory','Wings Of Victory','Armor',20,200,10,true,true,365,100,true,true,true,true,true,true,true,'bonus bMdef,10; bonus bUnbreakableHelm;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5358,'Pecopeco_Wing_Ears','Peco Ears','Armor',20,100,1,true,70,366,100,true,true,true,'bonus bAgi,1; bonus bMdef,2; bonus bUnbreakableHelm;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5359,'J_Captain_Hat','Ship Captain Hat','Armor',20,300,3,1,true,60,true,367,100,true,true,true,'bonus bDex,1; bonus bLongAtkRate,7; bonus bMaxHP,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5360,'Whikebain_Ears','Hyuke\'s Black Cat Ears','Armor',20,200,2,true,45,true,368,100,true,true,true,'bonus bFlee,10; bonus bCritical,3; bonus bCritAtkRate,10; bonus bDefRate,-50; bonus bDef2Rate,-50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5361,'Gang_Scarf','Gangster Scarf','Armor',20,100,true,60,369,100,true,true,true,'bonus bBaseAtk,5; if(BaseJob==Job_Rogue) skill "RG_GANGSTER",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5362,'Ninja_Scroll','Ninja Scroll','Armor',20,200,true,60,370,100,true,true,true,'bonus bMatkRate,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5363,'Helm_Of_Abyss','Helm Of Abyss','Armor',20,1000,2,1,true,true,true,true,true,true,true,true,true,true,70,true,371,'bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player_Human,-10; bonus2 bSubClass,Class_Boss,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5364,'Dark_Snake_Lord_Hat','Evil Snake Lord Hat','Armor',20,500,2,1,true,60,true,372,'bonus bStr,1; bonus bInt,1; bonus bAgi,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5365,'Fried_Egg','Magnolia Hat','Armor',20,100,3,1,true,1,373,'bonus2 bResEff,Eff_Stun,500; skill "HT_FLASHER",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5366,'Hat_0f_King','Love Dad Bandana','Armor',20,200,3,true,true,374,'bonus bAllStats,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5367,'Hyegun_Hat','Hyegun Hat','Armor',20,100,5,1,true,true,true,10,375,100,true,true,true,'bonus bMdef,3; bonus2 bSubRace,RC_Demon,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5368,'White_Wing','White Wing','Armor',20,100,2,true,true,38,100,true,true,true,true,true,true,true,'bonus2 bAddMonsterDropItem,12280,300;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5369,'Dark_Wing','Dark Wing','Armor',20,100,1,true,true,39,100,true,true,true,true,true,true,true,'bonus2 bAddMonsterDropItem,12279,300;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5370,'Orchid_Hairband','Orchid Hairband','Armor',20,200,1,true,true,376,'bonus bInt,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5371,'Hat_Of_Judge','Judge Hat','Armor',20,300,2,true,true,true,377,100,true,true,true,'bonus bLuk,1; bonus bMaxSP,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5372,'Drooping_White_Kitty','Koneko Hat','Armor',20,500,1,true,true,378,100,true,true,true,'bonus bInt,1; bonus bDelayRate,-3; bonus bMatkRate,3; bonus bMaxSPrate,3; bonus bMdef,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5373,'Darkness_Helm','Dark Randgris Helm','Armor',20,300,2,1,true,true,true,379,100,true,true,true,'bonus bDex,3; bonus bMdef,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5374,'L_Magestic_Goat','Gigantic Majestic Goat','Armor',20,800,5,true,true,380,100,true,true,true,'bonus2 bAddRace,RC_DemiHuman,12; bonus2 bAddRace,RC_Player_Human,12; bonus bBaseAtk,(JobLevel*2)/7;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5375,'L_Orc_Hero_Helm','Orc Hero Headdress','Armor',20,900,5,1,true,true,true,381,100,true,true,true,'bonus bStr,2; bonus3 bAutoSpellWhenHit,"BS_WEAPONPERFECT",3,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5376,'Satanic_Chain_P','Flying Evil Wing','Armor',20,100,3,1,true,true,382,100,true,true,true,'bonus bMaxSP,120; bonus2 bAddEff2,Eff_Curse,300;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5377,'Antique_Pipe','Gentleman\'s Pipe','Armor',20,100,true,383,100,true,true,true,'bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5378,'Rabbit_Ear_Hat','Bunny Top Hat','Armor',20,300,true,true,384,100,true,true,true,'bonus bAgi,3; bonus3 bAutoSpellWhenHit,"AL_INCAGI",5,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5379,'Balloon_Hat','Tam','Armor',800,3,1,true,50,true,385,'bonus bMdef,2; bonus bMatkRate,2+(getrefine()/2);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5380,'Fish_Head_Hat','Fish Head Hat','Armor',20,400,1,true,true,386,100,true,true,true,'bonus3 bAutoSpell,"SA_FROSTWEAPON",1,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5381,'Santa_Poring_Hat','Santa Poring Hat','Armor',20,100,2,1,true,387,100,true,true,true,'bonus bMdef,2; bonus2 bAddEle,Ele_Dark,3; bonus2 bSubEle,Ele_Dark,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`,`unequip_script`) VALUES (5382,'Bell_Ribbon','Bell Ribbon','Armor',20,200,3,1,true,true,388,100,true,true,true,'bonus bVit,1; skill "AL_ANGELUS",1;','sc_end SC_ANGELUS;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5383,'Hunting_Cap','Hunter\'s Cap','Armor',20,250,3,1,true,false,false,true,50,true,389,100,true,true,true,'bonus bLuk,1; bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Player_Doram,10; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5384,'Santa_Hat_1','Twin Pompom By JB','Armor',20,200,1,1,true,20,true,390,'bonus bLuk,3; skill "WZ_ESTIMATION",1; bonus3 bAutoSpell,"AL_INCAGI",1,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`,`unequip_script`) VALUES (5385,'Yoyo_Hat','Yoyo Hat','Armor',20,300,1,true,20,true,391,100,true,true,true,true,true,'skill "TF_HIDING", 1;','sc_end SC_HIDING;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5386,'Ayam_','Ayam','Armor',70,7,true,1,228,100,true,true,'bonus bMdef,7; bonus bFlee,7; bonus2 bAddMonsterDropItem,12198,200;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5387,'Neko_Mimi_Kafra','Neko Mimi Kafra','Armor',20,200,1,1,true,30,true,392,100,true,true,true,'bonus bMdef,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5388,'Snake_Head','Snake Head Hat','Armor',20,200,1,1,true,30,true,393,100,true,true,true,'skill "TF_DOUBLE",5; bonus bDoubleRate,25;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5389,'Angel_Spirit','Angel Spirit','Armor',20,200,true,30,394,100,true,true,true,'bonus bStr,2; bonus bHit,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5390,'Santa_Hat_2','Frozen Twin Pompom','Armor',20,100,2,true,true,395,'bonus2 bResEff, Eff_Freeze, 3000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_head_low`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5391,'Toast_C','Toast','Armor',20,true,188,100,true,true,true,true,true,true,true,true,'bonus bMaxHP,100; bonus2 bAddMonsterDropItem,617,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5392,'Louyang_Cap','Luoyang NewYear Hat','Armor',20,300,3,1,true,true,396,'bonus bLuk,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`view`,`script`) VALUES (5393,'Valentine_Hat','Love Valentine\'s Hat','Armor',20,200,2,true,397,'bonus bMaxSPrate, 7; bonus bMaxHPrate, 7;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_head_low`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (5394,'Bubblegum_Lower','Bubblegum','Armor',true,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5395,'Tiraya_Bonnet','Striped Hat','Armor',20,500,2,1,true,50,true,398,100,true,true,true,'bonus bMaxHP,100+(getrefine()*20); bonus bLuk,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5396,'Jasper_Crest','Jasper Crest','Armor',20,700,2,1,true,true,399,'bonus bDex,3; bonus bVit,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5397,'Scuba_Mask','Scuba Gear','Armor',20,100,true,400,100,true,true,true,'bonus2 bSubEle,Ele_Water, 10; bonus bUnbreakableHelm, 0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`class_upper`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5398,'Bone_Head','Bone Head','Armor',20,1200,5,1,true,true,true,true,true,true,true,true,85,true,401,'bonus bStr,2; bonus bMdef,5; bonus2 bResEff,Eff_Stun,500; bonus2 bResEff,Eff_Bleeding,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5399,'Mandragora_Cap','Mandragora Cap','Armor',20,300,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,85,402,'bonus bVit,3; bonus3 bAutoSpellWhenHit,"DC_SCREAM",5,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`gender`,`location_head_top`,`location_head_mid`,`location_head_low`,`view`,`script`) VALUES (5400,'Fox_Hat','Fox Hat','Armor',20,200,'Female',true,true,true,403,'bonus bLuk,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5401,'Black_Glasses','Black Frame Glasses','Armor',20,200,1,true,70,404,100,true,true,true,'bonus bInt,1; bonus bMdef,2; bonus bUnbreakableHelm, 0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5402,'Mischievous_Fairy','Mischievous Fairy','Armor',10,200,1,true,70,405,100,true,true,true,'bonus bUnbreakableHelm, 0; bonus bFlee2, 3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5403,'Fish_In_Mouth','Fish In Mouth','Armor',10,200,true,30,406,100,true,true,true,'bonus2 bAddMonsterDropItem,579,500; bonus2 bAddItemHealRate,579,25;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5404,'Blue_Ribbon','Blue Ribbon','Armor',10,100,1,1,true,45,true,407,100,true,true,true,'bonus4 bAutoSpellWhenHit,"AC_CONCENTRATION",2,7,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5405,'Filir_Hat','Filir Hat','Armor',10,200,true,80,408,100,true,true,true,'bonus bShortWeaponDamageReturn, 1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5406,'Academy_Freshman_Hat','Academy Freshman Hat','Armor',500,2,true,true,409,100,true,true,true,true,true,true,'bonus bMaxHP,80; bonus bMaxSP,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5407,'Academy_Graduating_Cap','Academy Completion Hat','Armor',200,2,1,true,true,410,100,true,true,true,true,true,true,'bonus bMaxSP,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_top`,`view`,`script`) VALUES (5408,'Old_Bandanna','Old Bandana','Armor',5,true,6,'bonus bInt,2; bonus bMaxSP,50; bonus bCastrate,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5409,'New_Cowboy_Hat','Purple Cowboy Hat','Armor',20,500,4,1,true,true,411,'bonus bInt,2; bonus bVit,2; bonus bMaxSP,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`location_head_low`,`view`,`script`) VALUES (5410,'Bread_Bag2','Brown Paperbag Hat','Armor',20,200,6,true,true,true,412,'bonus bMaxHP,100; bonus2 bResEff, Eff_Stun, 400; bonus2 bSubRace,RC_DemiHuman,4; bonus2 bSubRace,RC_Player_Human,4;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5411,'White_Snake_Hat','White Snake Hat','Armor',20,500,2,true,true,413,'bonus bDex,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_low`,`view`,`script`) VALUES (5412,'Sweet_Candy','Sweet Candy','Armor',20,100,1,true,414,'bonus bUnbreakableHelm, 0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`view`,`script`) VALUES (5413,'Popcorn_Hat','Pop Corn Hat','Armor',20,300,2,true,415,'bonus2 bSubEle,Ele_Wind, 10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`view`,`script`) VALUES (5414,'Campfire_Hat','Camp Fire Hat','Armor',20,300,2,true,416,'bonus2 bSubEle,Ele_Fire,10; bonus4 bAutoSpellWhenHit,"MG_FIREBALL",5,100,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5415,'Poring_Cake_Cap','Poring Cake Hat','Armor',20,1000,5,true,40,true,417,'bonus bMdef,5; bonus bCritical,5; bonus bFlee,5; bonus bFlee2,5; bonus bAspdRate,5; bonus bCastrate,-5; bonus bDelayRate,-5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5416,'Beer_Cap','Beer Hat','Armor',20,600,2,true,false,false,true,18,true,418,'bonus bFlee2,5; skill "SM_RECOVERY",3; skill "MG_SRECOVERY",3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`view`,`script`) VALUES (5417,'Crown_Parrot','Crown Parrots','Armor',20,200,1,1,true,419,'bonus bInt,1; bonus2 bResEff,Eff_Silence,10000; bonus3 bAutoSpell,"DC_SCREAM",1,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5418,'Soldier_Hat','Legionnaire Hat','Armor',20,400,4,1,true,true,420,'bonus bStr,1; bonus2 bAddClass,Class_All,3; bonus bUseSPrate,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`,`script`) VALUES (5419,'Evolved_Leaf','Leaves Of Grass','Armor',20,100,true,57,'bonus bVit,1; bonus2 bSubRace,RC_Plant,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`location_head_mid`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`,`unequip_script`) VALUES (5420,'Mask_Of_Ifrit','Mask Of Ifrit','Armor',8,true,false,false,true,true,true,70,421,100,true,true,true,'bonus bStr,1; bonus bInt,1; bonus bMdef,5; bonus2 bSubEle,Ele_Fire,10; bonus2 bSubEle,Ele_Water,-10; skill "MG_SIGHT",1; bonus3 bAutoSpellWhenHit,"WZ_METEOR",3,50; bonus3 bAutoSpell,"MG_FIREBOLT",3,50;','sc_end SC_SIGHT;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5421,'Ifrit\'s_Ear','Ears Of Ifrit','Armor',20,true,false,false,true,70,422,100,true,true,true,'bonus bStr,1; bonus bMdef,3; bonus2 bSkillAtk,"MG_FIREBOLT",2; bonus2 bSkillAtk,"WZ_FIREPILLAR",2; bonus2 bSkillAtk,"WZ_METEOR",2; bonus2 bSkillAtk,"SM_BASH",2; bonus2 bSkillAtk,"SM_MAGNUM",2; bonus2 bSkillAtk,"KN_PIERCE",2; bonus2 bSubEle,Ele_Fire,5; bonus2 bSubEle,Ele_Water,-5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5422,'Linguistic_Book_Cap','Linguistic Book Hat','Armor',20,70,true,true,423,'bonus bInt,1; bonus bMdef,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5423,'Lovecap_China','I Love China','Armor',20,250,5,true,424,100,true,true,true,'bonus bDex,3; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`) VALUES (5424,'Fanta_Orange_Can','Fanta Orange Can Hat','Armor',20,100,2,1,true,true,425); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`) VALUES (5425,'Fanta_Grape_Can','Fanta Grape Can Hat','Armor',20,100,2,1,true,true,426); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5426,'Karada_Meguri_Tea_Hat','Karada Meguricha Hat','Armor',20,100,2,1,true,true,427,'bonus bLuk,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5427,'Royal_Milk_Tea_Hat','Black Tea Kochakaden Hat','Armor',20,100,2,1,true,true,428,'bonus bAgi,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5428,'Bread_Bag1','RWC Anniversary Bread Envelope','Armor',100,true,true,true,true,429,100,true,true,true,true,true,true,true,'bonus2 bSubRace,RC_DemiHuman,12; bonus2 bSubRace,RC_Player_Human,12;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5429,'Bogy_Cap','Bogy Cap','Armor',20,100,2,1,true,true,430,100,true,true,true,'bonus bHPrecovRate, 5; bonus bSPrecovRate, 5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`view`,`trade_override`,`trade_nodrop`,`trade_noguildstorage`,`script`) VALUES (5430,'Sacred_Torch_Coronet','Torch Cap','Armor',20,3,true,431,100,true,true,'bonus2 bSubEle,Ele_Fire,20; skill "MG_FIREBOLT",5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5431,'Chicken_Hat','Chicken Hat','Armor',20,1000,1,true,30,true,432,'bonus3 bAutoSpell,"MC_LOUD",1,30; bonus bAspdRate,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5432,'Brazil_Baseball_Cap','bRO 4th Anniversary Hat','Armor',20,100,true,true,433,'if(gettime(DT_MONTH)==SEPTEMBER&&gettime(DT_DAYOFMONTH)>=10&&gettime(DT_DAYOFMONTH)<=24) bonus bAllStats, 4;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`refineable`,`view`) VALUES (5433,'Golden_Wreath','Golden Laurel','Armor',20,100,true,true,434); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5435,'Coke_Hat','Red Minstrel Hat','Armor',20,100,1,1,true,40,true,436,'bonus bInt,1; bonus bMaxSP,80; bonus bMdef,3; if(getrefine()>5) { bonus bMdef,getrefine()-5; bonus bMaxSP,(getrefine()-5)*10; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5436,'Bride\'s_Corolla','Bride\'s Corolla','Armor',20,200,1,true,true,437,'bonus bLuk,3; bonus bMdef,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5437,'Flower_Of_Fairy','Fairy Flower','Armor',20,200,1,1,true,true,438,'bonus bInt,1; bonus bMdef,1; bonus2 bSubRace,RC_Insect,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`view`,`script`) VALUES (5438,'Fillet_Green','Cute Green Ribbon','Armor',500,100,1,true,false,false,true,439,'bonus bMaxSP,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`view`,`script`) VALUES (5439,'Fillet_Red','Cute Red Ribbon','Armor',500,100,1,true,false,false,true,440,'bonus bMaxSP,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`view`,`script`) VALUES (5440,'Fillet_Blue','Cute Blue Ribbon','Armor',500,100,1,true,false,false,true,441,'bonus bMaxSP,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`view`,`script`) VALUES (5441,'Fillet_White','Cute White Ribbon','Armor',500,100,1,true,false,false,true,442,'bonus bMaxSP,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5442,'Necktie','Necktie','Armor',20,100,3,1,true,70,true,443,'bonus bVit,1; bonus bHit,-5; bonus bUseSPrate,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5443,'Status_Of_Baby_Angel','Statue Of Baby Angel','Armor',20,600,3,1,true,70,true,444,'bonus bMdef,2; bonus4 bAutoSpellWhenHit,"PR_STRECOVERY",1,20,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5444,'Hair_Brush','Hair Brush','Armor',20,100,true,true,445,'bonus bCritical,6;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`,`script`) VALUES (5445,'Candy_Cane_In_The_Mouth','Candy Cane In Mouth','Armor',20,100,true,446,'bonus bMaxSP,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5446,'Cat_Foot_Hairpin','Catfoot Hairpin','Armor',20,200,1,true,true,447,'bonus bFlee,5; bonus bFlee2,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5447,'Frog_Cap','Frog Hat','Armor',20,500,3,true,70,true,448,'bonus bMdef,1; bonus2 bAddRace,RC_Insect,12; bonus2 bMagicAddRace,RC_Insect,12;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_head_top`,`location_head_mid`,`location_head_low`,`refineable`,`view`) VALUES (5448,'Solo_Play_Box1','Soloplay Box1','Armor',300,1,true,true,true,true,449); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_head_top`,`location_head_mid`,`location_head_low`,`refineable`,`view`) VALUES (5449,'Solo_Play_Box2','Soloplay Box2','Armor',300,1,true,true,true,true,450); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (5450,'Sun_Cap','Solar Hat','Armor',20,1000,true,false,false,true,20,true,451,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5451,'Dragonhelm_Gold','RWC 2008 Dragon Helm Gold','Armor',20,2500,7,1,true,1,452,100,true,true,true,true,true,true,true,'bonus bAspdRate,10; bonus bAllStats,3; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5452,'Dragonhelm_Silver','RWC 2008 Dragon Helm Silver','Armor',20,2500,5,1,true,1,453,100,true,true,true,true,true,true,true,'bonus bAspdRate,7; bonus bAllStats,2; bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player_Human,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5453,'Dragonhelm_Copper','RWC 2008 Dragon Helm Copper','Armor',20,2500,1,true,1,454,100,true,true,true,true,true,true,true,'bonus bAspdRate,5; bonus bAllStats,2; bonus2 bAddRace,RC_DemiHuman,1; bonus2 bAddRace,RC_Player_Human,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5454,'Dog_Cap_','Puppy Hat','Armor',20,500,3,1,true,true,234,'bonus bStr,1; bonus bInt,1; autobonus "{ bonus bCritical,100; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; autobonus "{ bonus2 bIgnoreMdefClassRate,Class_Normal,100; bonus2 bIgnoreMdefClassRate,Class_Boss,100; }",10,3000,BF_MAGIC,"{ specialeffect2 EF_MAGICALATTHIT; }";'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5455,'Geographer_Band_','Decorative Geographer','Armor',20,500,1,1,true,true,238,'bonus bInt,1; bonus3 bAutoSpell,"AL_HEAL",5,50; bonus3 bAutoSpellWhenHit,"AL_HEAL",5,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5456,'Vacation_Hat_','Summer Hat','Armor',20,200,1,true,true,315,'bonus bVit,5; bonus bHPrecovRate,20; bonus bSPrecovRate,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5457,'Spring_Rabbit_Hat','Moon Rabbit Hat','Armor',20,300,2,1,true,1,true,455,100,true,true,true,'bonus bAgi,3; bonus bBaseAtk,5; bonus bMatkRate,5; if(getrefine()>4) { bonus bBaseAtk,getrefine()-4; bonus bMatkRate,getrefine()-4; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5458,'Pinwheel_Cap','Pinwheel Hat','Armor',20,200,2,true,true,456,'bonus bMaxHPrate,5; bonus bMaxSPrate,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5459,'Drooping_Bunny_Chusuk','Drooping Bunny','Armor',100,1,true,true,249,'bonus bDex,1; bonus bFlee,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5460,'Adv_Dragon_Skull','Evolved Dragon Skull Hat','Armor',20,1000,7,true,60,true,457,100,true,true,true,true,true,true,true,'bonus bAllStats, 2; bonus bMaxHPrate, 3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`location_head_low`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5461,'Adv_Whisper_Mask','Evolved Whisper Mask','Armor',20,300,1,true,true,true,50,true,458,100,true,true,true,true,true,true,true,'bonus bDex,3; bonus2 bSubEle,Ele_Ghost, 20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5462,'Spiked_Scarf','Spiked Scarf','Armor',20,100,1,true,90,459,100,true,true,true,true,true,'bonus bVit,1; bonus2 bAddRace,RC_DemiHuman,1; bonus2 bAddRace,RC_Player_Human,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5463,'Rainbow_Scarf','Rainbow Scarf','Armor',20,100,1,true,90,460,100,true,true,true,true,true,'bonus bInt,1; bonus bMdef,2; bonus bMatkRate,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5464,'Zaha_Doll_Hat','Zaha Doll Hat','Armor',20,1,true,461,100,true,true,true,true,true,true,true,true,'bonus bInt,2; skill "PR_MAGNIFICAT", 3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5476,'Hairband_Of_Grandpeco','Grand Peco Hairband','Armor',20,800,2,true,true,30,true,473,100,true,true,true,'bonus bStr,2; bonus bMaxHPrate,-10; bonus2 bAddRace2,RC2_Orc,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5477,'Bro_Flag','Brazilian Flag Hat','Armor',20,100,1,1,true,30,true,474,'skill "SM_BASH", 1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5478,'Classic_Hat','Classic Hat','Armor',20,500,3,true,true,475,100,true,true,true,true,true,'bonus bStr,2; bonus bMaxHP,300;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_noguildstorage`,`script`) VALUES (5479,'Shaman\'s_Hair_Ornament','Shaman\'s Hair Decoration','Armor',20,300,1,true,30,true,476,100,true,true,'bonus bMdef,3; bonus bMaxHP,50; bonus2 bSubEle,Ele_Neutral,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_noguildstorage`,`script`) VALUES (5480,'Bizofnil_Wing_Deco','Bijofnil Wings','Armor',20,1000,3,true,30,true,477,100,true,true,'bonus bAllStats,2; bonus3 bAutoSpell,"PR_IMPOSITIO",3,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_noguildstorage`,`script`) VALUES (5481,'Hermose_Cap','Hermode Cap','Armor',20,1000,1,1,true,1,true,478,100,true,true,'bonus bAspdRate,10; bonus bBaseAtk,-20; bonus bMatkRate,-10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`location_head_low`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_noguildstorage`,`script`) VALUES (5482,'Dark_Knight_Mask','Dark Knight Mask','Armor',3000,5,true,true,true,80,true,479,100,true,true,'bonus bStr,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_noguildstorage`,`script`) VALUES (5483,'Odin_Mask','Odin Mask','Armor',20,100,1,true,true,50,480,100,true,true,'bonus bHit,-10; bonus2 bAddRace,RC_DemiHuman,6; bonus2 bAddRace,RC_Player_Human,6;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`location_head_low`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5485,'Tiger_Face','Tiger Face','Armor',20,1000,3,true,true,true,60,true,483,'bonus2 bSubRace,RC_Brute,5; bonus2 bAddRace,RC_Brute,5; bonus2 bMagicAddRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5; bonus2 bAddRace,RC_Player_Doram,5; bonus2 bMagicAddRace,RC_Player_Doram,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5486,'J_Anniversary_Hat','Anniversary Hat','Armor',20,300,3,true,true,395,'bonus bAllStats, 2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5487,'J_Poringcake_Hat','Poring Cake Hat','Armor',20,500,1,true,true,417,'bonus bLuk,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5488,'J_Twin_Santahat','Twin Santa Hat','Armor',20,100,1,true,true,390,'bonus bLuk,1; bonus bMdef,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5489,'Love_Daddy','Love Daddy Hat','Armor',20,100,true,true,484,'bonus bDex,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5490,'Anubis_Helm','Anubis Helm','Armor',20,3,true,70,485,100,true,true,true,true,true,'bonus bMdef,5; bonus2 bSubClass,Class_Boss,10; bonus bHealpower2,10; bonus bAddItemHealRate,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5491,'Hat_Of_Outlaw','Bandit Hat','Armor',20,800,3,1,true,true,486,100,true,true,true,true,true,'bonus bStr,2; bonus2 bSubEle,Ele_Fire, 10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5492,'Boy\'s_Cap_I','Student Cap','Armor',5,true,false,false,true,102,100,true,true,true,true,true,true,true,true,'bonus bMdef,3; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5493,'Ulle_Cap_I','Ulle\'s Cap','Armor',3,true,false,false,true,254,100,true,true,true,true,true,true,true,true,'bonus bDex,2; bonus bAgi,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`job_crusader`,`job_knight`,`job_swordman`,`location_head_top`,`location_head_low`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5494,'Spinx_Helm_I','Sphinx Hat','Armor',5,true,true,true,true,true,137,100,true,true,true,true,true,true,true,true,'bonus bStr,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5495,'Power_Of_Thor','Power Of Thor','Armor',20,100,6,1,true,75,true,493,100,true,true,true,'bonus bInt,1; bonus bDex,1; bonus bMdef,3; bonus bFlee,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5496,'Dice_Hat','Dice Hat','Armor',20,300,3,true,50,494,100,true,true,true,true,true,'bonus bLuk,4;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5497,'King_Tiger_Doll_Hat','King Tiger Doll Hat','Armor',20,400,3,1,true,false,false,true,30,true,495,100,true,true,true,true,true,'bonus bStr,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5498,'Wondering_Wolf_Helm','Wandering Wolf Helm','Armor',20,600,5,true,false,false,true,true,50,true,490,100,true,true,true,'bonus bVit,5; bonus bFlee,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5499,'Pizza_Hat','Pizza Hat','Armor',20,600,true,487,100,true,true,true,'skill "SM_PROVOKE", 1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5500,'Icecream_Hat','Icecream Hat','Armor',300,6,true,30,true,488,100,true,true,true,'bonus bMdef,3; skill "MG_FROSTDIVER",3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5501,'Pirate\'s_Pride','Pirate\'s Pride','Armor',100,6,true,10,496,100,true,true,true,true,true,'bonus2 bAddRace2,RC2_Ninja,5; bonus2 bSubRace2,RC2_Ninja,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5502,'Necromencer\'s_Hood','Necromancer\'s Hood','Armor',500,2,true,true,1,true,491,100,true,true,true,true,true,'bonus5 bAutoSpellWhenHit,"NPC_DARKSTRIKE",5,5,BF_WEAPON|BF_MAGIC,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5503,'Rabbit_Magic_Hat','Magic Rabit Hat','Armor',800,2,true,true,497,100,true,true,true,'bonus bDex,2; bonus bAgi,2; bonus bMdef,1; bonus bMaxSP,50; bonus3 bAutoSpellWhenHit,"MG_FIREBOLT",1,20; bonus3 bAutoSpellWhenHit,"MG_COLDBOLT",1,20; bonus3 bAutoSpellWhenHit,"MG_LIGHTNINGBOLT",1,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5504,'China_Wedding_Veil','Wedding Weil','Armor',20,500,5,true,true,70,true,489,100,true,true,true,'bonus bMdef,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5505,'Asara_Fairy_Hat','Asara Fairy Hat','Armor',500,2,true,true,50,true,492,100,true,true,true,'skill "DC_DONTFORGETME",1; bonus bDex,2; bonus bLuk,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5506,'Blue_Pajamas_Hat','Blue Night Cap','Armor',100,4,true,true,501,'bonus bBaseAtk,5; bonus bMatkRate,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5507,'Pink_Pajamas_Hat','Pink Night Cap','Armor',100,4,true,true,502,'bonus bBaseAtk,5; bonus bMatkRate,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5508,'Shark_Hat','Shark Hat','Armor',20,500,3,true,true,503,100,true,true,true,'bonus bStr,1; bonus bAgi,2; bonus bMdef,1; bonus2 bAddEle,Ele_Water,5; bonus2 bSubEle,Ele_Water,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5509,'Sting_Hat','Sting hat','Armor',20,1000,5,true,true,504,100,true,true,true,'bonus bStr,2; bonus bVit,1; bonus bMdef,3; bonus2 bAddEle,Ele_Fire,5; bonus2 bSubEle,Ele_Earth,5; bonus3 bAutoSpell,"WZ_EARTHSPIKE",1,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5510,'Shower_Cap','Shower Cap','Armor',20,4,true,true,507,'bonus bMdef,3; bonus bFlee,3; bonus2 bAddEle,Ele_Water,10; bonus2 bSubRace,RC_Fish,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5511,'Samambaia','Samambaia','Armor',20,200,5,1,true,true,30,true,508,100,true,true,true,'bonus bSPrecovRate,8;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5512,'Aquarius_Diadem','Aquarius Diadem','Armor',20,300,6,true,70,true,509,'bonus bStr,2; bonus bFlee,10; bonus2 bSubEle,Ele_Wind, 5; if(getrefine()>6) { bonus bDef, 1; bonus bBaseAtk,15; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5513,'Aquarius_Crown','Aquarius Crown','Armor',20,300,6,true,70,true,510,'bonus bStr,2; bonus bFlee,10; bonus2 bSubEle,Ele_Wind, 5; if(getrefine()>6) { bonus bDef, 1; bonus bBaseAtk,15; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5514,'Pisces_Diadem','Pisces Diadem','Armor',20,300,6,true,70,true,511,'bonus bInt,2; bonus bMdef,5; bonus2 bSubEle,Ele_Water, 5; if(getrefine()>6) { bonus bDef, 1; bonus bMatkRate,2; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5515,'Pisces_Crown','Pisces Crown','Armor',20,300,6,true,70,true,512,'bonus bInt,2; bonus bMdef,5; bonus2 bSubEle,Ele_Water, 5; if(getrefine()>6) { bonus bDef, 1; bonus bMatkRate,2; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_hunter`,`class_upper`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (5516,'Hawk_Eyes01','hawk Eyes','Armor',10,100,true,true,true,60,23,'bonus bDex,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_archer`,`job_barddancer`,`job_hunter`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (5517,'Hawk_Eyes02','Hawk Eyes','Armor',10,100,true,true,true,true,60,23,'bonus bDex,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5518,'L_Magestic_Goat2','Gigantic Majestic Goat','Armor',20,800,5,true,50,true,513,'bonus2 bSubRace,RC_DemiHuman,12; bonus2 bSubRace,RC_Player_Human,12; bonus bBaseAtk,(JobLevel*2)/7;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5519,'Peacock_Feather','Peacock Feather','Armor',20,800,4,1,true,1,true,514,100,true,true,true,'bonus bInt,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5520,'Rabbit_Earplug','Rabbit Earplugs','Armor',400,1,true,true,1,true,515,'bonus2 bAddClass,Class_All,4; bonus bMatkRate,4;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_head_low`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5521,'Angry_Mouth_C','Angry Mouth','Armor',true,194,100,true,true,true,true,true,true,true,true,'bonus bDelayRate,-3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`) VALUES (5522,'Fanta_Zero_Lemon_Hat','Fanta Zero Lemon Hat','Armor',20,100,4,1,true,true,516); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5523,'Sakura_Mist_Hat','Sakura Mist Hat','Armor',20,100,4,1,true,true,517,'bonus bDex,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5524,'Sakura_Milk_Tea_Hat','Sakura Milk Tea Hat','Armor',20,100,4,1,true,true,518,'bonus bVit,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5525,'First_Leaf_Tea_Hat','Flower Hat','Armor',20,100,4,1,true,true,519,'bonus bMaxHP,80; bonus bMaxSP,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5526,'Lady_Tanee_Doll','Tanigumi Girl Doll','Armor',20,300,4,true,60,520,100,true,true,true,'bonus bAgi,2; bonus bFlee,3; bonus2 bSubEle,Ele_Wind, 5; bonus2 bAddMonsterDropItem, 513, 200;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5527,'Lunatic_Hat','Lunatic Hat','Armor',20,300,2,true,1,true,521,100,true,true,true,'bonus bLuk,5; bonus bMdef,2; bonus bFlee2,5; bonus2 bAddMonsterDropItem,622,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5528,'King_Frog_Hat','Frog King Hat','Armor',20,500,4,1,true,false,false,true,30,522,100,true,true,true,true,true,'bonus bAgi,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5529,'Evil\'s_Bone_Hat','Satanic Bone Helm','Armor',20,600,6,1,true,true,70,true,523,100,true,true,true,true,true,'bonus bDex,3; bonus2 bSubEle,Ele_Neutral,5; skill "WZ_FROSTNOVA",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`) VALUES (5530,'Raven_Cap','Raven Cap','Armor',20,100,6,1,true,30,true,524,100,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5531,'B_Dragon_Hat','Baby Dragon Hat','Armor',45000,100,1,1,true,true,525,'bonus bDex,2; .@bonus = max(getskilllv("TF_DOUBLE"), 5); skill "TF_DOUBLE",.@bonus; bonus bDoubleRate,.@bonus * 5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5532,'Pirate_Dagger_J','Pirate Dagger','Armor',20,100,true,true,327,100,true,true,true,'bonus bShortWeaponDamageReturn,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5533,'Emperor_Wreath_J','Emperor Wreath','Armor',20,800,3,1,true,80,true,261,'bonus bAllStats,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5535,'Side_Cap','Side Cap','Armor',500,3,true,true,529,'bonus bVit,1; bonus bDex,1; bonus bMdef,3; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player_Human,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5536,'Spare_Card','Spare Card','Armor',20,10,1,true,1,526,100,true,true,true,true,true,true,true,true,'bonus2 bAddMonsterDropItem,6187,1000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5537,'Quati_Hat','Kwati Hat','Armor',20,700,2,1,true,45,527,100,true,true,true,'bonus bAgi,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5538,'Tucan_Hat','Tucan Hat','Armor',20,600,2,1,true,true,45,528,100,true,true,true,'bonus bDex,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`location_head_low`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5539,'Jaguar_Hat','Jaguar Hat','Armor',20,400,4,1,true,true,true,25,true,530,100,true,true,true,'bonus bMdef,2; skill "MC_LOUD", 1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5540,'Freyja_SCirclet7','Freyja SCirclet7','Armor',20,700,8,true,20,18,'bonus bStr,1; bonus bInt,1; bonus bDex,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5541,'Freyja_SCirclet30','Freyja SCirclet30','Armor',20,700,8,true,20,18,'bonus bStr,1; bonus bInt,1; bonus bDex,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5542,'Freyja_SCirclet60','Freyja SCirclet60','Armor',20,700,8,true,20,18,'bonus bStr,1; bonus bInt,1; bonus bDex,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5543,'Freyja_SCirclet90','Freyja SCirclet90','Armor',20,700,8,true,20,18,'bonus bStr,1; bonus bInt,1; bonus bDex,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5544,'Time_Keeper_Hat','Time Keeper Hat','Armor',30000,6,true,1,true,240,100,true,true,true,true,true,true,'bonus bInt,2; bonus bMaxSP,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5545,'Aries_Diadem','Aries Diadem','Armor',20,400,3,true,70,true,531,100,true,true,true,'bonus bVit,2; bonus2 bSubEle,Ele_fire,5; if(getrefine()>6) { bonus bDef,1; bonus bVit,1; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5546,'Aries_Crown','Aries Crown','Armor',20,400,3,true,70,true,532,100,true,true,true,'bonus bVit,2; bonus2 bSubEle,Ele_fire,5; if(getrefine()>6) { bonus bDef,1; bonus bVit,1; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5547,'RJC_Katusa','RJC Katusa Flower','Armor',20,200,1,1,true,true,533,100,true,true,true,'bonus2 bSkillAtk, "WZ_HEAVENDRIVE", 15 + getequiprefinerycnt(EQI_HAND_R); bonus2 bSkillAtk, "WZ_EARTHSPIKE", 15 + getequiprefinerycnt(EQI_HAND_R); bonus2 bCastrate, "WZ_HEAVENDRIVE", -25; bonus2 bCastrate, "WZ_EARTHSPIKE", -25; ;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5548,'Scarlet_Rose','Scarlet Rose','Armor',20,100,true,50,true,534,100,true,true,true,'bonus bLuk,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5549,'Taurus_Diadem','Taurus Diadem','Armor',20,300,3,true,70,true,535,100,true,true,true,'bonus bDex,2; bonus bDelayRate,-2; bonus2 bSubEle,Ele_earth,5; if(getrefine()>6) { bonus bDex,1; bonus bMatkRate,1; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5550,'Taurus_Crown','Taurus Crown','Armor',20,300,3,true,70,true,536,100,true,true,true,'bonus bDex,2; bonus bDelayRate,-2; bonus2 bSubEle,Ele_earth,5; if(getrefine()>6) { bonus bDex,1; bonus bMatkRate,1; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_top`,`view`,`script`) VALUES (5552,'Fest_Lord_Circlet','Festival Grand Circlet','Armor',8,true,93,'bonus bStr,3; bonus bInt,3; bonus bMdef,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_top`,`view`,`script`) VALUES (5553,'Fest_Bunny_Band','Festival Bunny Band','Armor',7,true,15,'bonus bMdef,4; bonus2 bSubRace,RC_DemiHuman,9; bonus2 bSubRace,RC_Player_Human,9;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5554,'Octopus_Hat','Octopus Hat','Armor',20,200,3,true,20,true,538,100,true,true,true,'bonus3 bAutoSpell,"SM_PROVOKE",5,10; bonus bUnbreakableHelm;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5555,'Leaf_Cat_Hat','Leaf Cat Hat','Armor',20,100,3,true,true,539,100,true,true,true,'bonus bAgi,1; bonus3 bAutoSpellWhenHit,"AL_HEAL",3,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`location_head_low`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5556,'Fur_Seal_Hat','Seal Hat','Armor',20,500,3,true,true,true,55,true,540,'bonus bInt,1; bonus3 bAutoSpell,"WZ_FROSTNOVA",1,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5557,'Wild_Rose_Hat','Wild Rose Hat','Armor',20,500,6,1,true,false,false,true,20,true,541,100,true,true,true,'bonus bAgi,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5558,'Saci_Hat','Luxury Hat','Armor',20,100,6,1,true,30,true,542,'bonus3 bAddMonsterDropItem,510,RC_Plant,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (5559,'Piece_Of_White_Cloth_E','Piece Of White Cloth','Armor',1,true,true,543); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5560,'Bullock_Helm_J','Bullock Helm','Armor',20,3000,3,true,75,true,322,'bonus bMaxHP,100; bonus bNoKnockback; 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;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5561,'Rabbit_Magic_Hat_J','Magic Rabbit Hat','Armor',800,1,true,true,497,'bonus bInt,1; bonus bMaxSP,50; bonus4 bAutoSpellWhenHit,"MG_FIREBOLT",3,10,3; bonus4 bAutoSpellWhenHit,"MG_COLDBOLT",3,10,3; bonus4 bAutoSpellWhenHit,"MG_LIGHTNINGBOLT",3,10,3; bonus3 bAutoSpellWhenHit,"AL_HEAL",1,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_head_top`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (5562,'Good_Wedding_Veil_J','Luxurious Wedding Veil','Armor',500,1,true,true,45,489,'bonus bMdef,10; bonus bCastRate,-3; bonus bUseSPrate,-5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5564,'Crown_Of_Deceit','Crown of Deceit','Armor',20,300,3,1,true,true,85,true,544,100,true,true,true,'bonus bInt,4; bonus bCastRate,-10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_mid`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5565,'Dragon_Arhat_Mask','Dragon Arhat Mask','Armor',5,true,true,1,545,100,true,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_mid`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5566,'Tiger_Arhat_Mask','Tiger Arhat Mask','Armor',1,true,true,1,546,100,true,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,2; bonus2 bAddRace,RC_Player_Human,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5567,'Bright_Fury','Bright Fury','Armor',20,300,1,1,true,1,true,548,100,true,true,true,'bonus bStr,1; bonus2 bAddClass,Class_All,2; bonus bAspdRate,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`refineable`,`view`,`script`) VALUES (5568,'Rabbit_Bonnet','Rabbit Bonnet','Armor',20,1000,1,1,true,true,true,549,'bonus bInt,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5569,'Gemini_Diadem','Gemini Diadem','Armor',20,300,4,true,70,true,550,100,true,true,true,'bonus bAgi,2; bonus bMatkRate,2; if(getrefine()>6) { bonus bMdef,7; bonus bMAtkRate,8; bonus2 bSubEle,Ele_Wind,5; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5570,'Gemini_Crown','Gemini Crown','Armor',20,300,4,true,70,true,551,100,true,true,true,'bonus bAgi,2; bonus bBaseAtk,2; bonus bMdef,5; if(getrefine()>6) { bonus bDef,1; bonus bMatk,15; bonus bFlee,10; bonus2 bSubEle,Ele_Wind,5; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5572,'Savage_Baby_Hat','Savage Babe Hat','Armor',20,100,1,1,true,1,true,553,'bonus bVit,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`) VALUES (5573,'Bogy_Horn','Dokebi Horn','Armor',20,100,1,1,true,true,554); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5574,'Pencil_In_Mouth','Well-Chewed Pencil','Armor',20,100,true,10,555,100,true,true,true,'bonus bdex,2; bonus bHitRate,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`view`) VALUES (5575,'Onigiri_Hat','Rice Ball Hat','Armor',20,100,6,1,true,30,556); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`location_head_low`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_noguildstorage`,`script`) VALUES (5577,'Dark_Knight_MaskB','Dark Knight Mask','Armor',3000,5,true,true,true,80,true,479,100,true,true,'bonus bStr,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5578,'Voyage_Hat','Voyage_Hat','Armor',200,10,1,true,true,236,'bonus bAgi,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5579,'Wanderer\'s_Sakkat','Wanderer\'s Sakkat','Armor',20,300,2,1,true,true,70,true,558,100,true,true,true,'bonus bAgi,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5581,'Cancer_Diadem','Cancer Diadem','Armor',20,300,3,true,70,true,560,100,true,true,true,'bonus bInt,2; bonus2 bSubEle,Ele_water, 5; if(getrefine()>6) { bonus bMdef,1; bonus bHealPower, 3; bonus bMatkRate,2; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5582,'Cancer_Crown','Cancer Crown','Armor',20,300,3,true,70,true,561,100,true,true,true,'bonus bStr,2; bonus2 bSubEle,Ele_water, 5; if(getrefine()>6) { bonus bDef, 1; bonus bBaseAtk,15; bonus bFlee,10; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (5583,'Para_Team_Hat','Eden Team Hat','Armor',1,true,12,true,465,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5584,'Majestic_Evil_Horn','Majestic Evil Horns','Armor',400,1,true,1,true,562,100,true,true,true,'bonus2 bSubRace,RC_Demon,3; bonus2 bHPDrainRate,3,15; bonus2 bSPDrainRate,1,7;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`) VALUES (5585,'Rune_Hairband','Rune Cloth Circlet','Armor',20,400,1,1,true,true,1,true,564); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5586,'Mosquito_Coil','Mosquito Coil','Armor',20,100,1,1,true,1,true,563); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (5587,'Mosquito_Coil_1Use','Mosquito Coil','Armor',100,1,true,1,true,563,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (5590,'K_Poring_Cake_Cap','Poring Cake Hat','Armor',20,200,1,true,true,417); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (5592,'Sigrun\'s_Wing','Sigrun\'s Wings','Armor',20,100,2,true,80,568,'if(BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Thief||(BaseJob==Job_Taekwon&&Class!=Job_Soul_Linker)) bonus bStr,1; else if(BaseClass==Job_Mage||BaseClass==Job_Acolyte||class==Job_Ninja||class==Job_Soul_Linker) bonus bInt,1; else if(BaseClass==Job_Archer||BaseClass==Job_Gunslinger) bonus bDex,1; else if(BaseJob==Job_Novice||BaseJob==Job_SuperNovice) { bonus bMaxHP,80; bonus bMaxSP,30; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`) VALUES (5593,'K_Rabbit_Bonnet','Rabbit Bonnet','Armor',20,200,1,1,true,true,1,true,549); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_low`,`equip_level_min`,`view`) VALUES (5594,'Donut_In_Mouth','Donut In Mouth','Armor',20,50,1,true,1,569); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5596,'4Leaf_Clover_In_Mouth','4Leaf Clover In Mouth','Armor',20,2,true,1,571,100,true,true,true,true,true,true,true,true,'bonus bMdef,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5597,'Bubble_Gum_In_Mouth','Bubble Gum In Mouth','Armor',20,2,true,1,572,100,true,true,true,true,true,true,true,true,'bonus bMdef,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5600,'Br_Twin_Ribbon','Brazil Twin Ribbon','Armor',20,100,1,true,1,true,575,'bonus bAllStats,3; bonus bMdef,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5603,'RTC_Winner_Only','RTC First Place','Armor',250,8,1,true,1,true,577,100,true,true,true,true,true,true,true,'bonus bAllStats, 3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5604,'RTC_Second_Best','RTC Second Place','Armor',250,6,1,true,1,true,578,100,true,true,true,true,true,true,true,'bonus bAllStats, 2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5605,'RTC_Third_Best','RTC Third Place','Armor',250,4,1,true,1,true,579,100,true,true,true,true,true,true,true,'bonus bAllStats, 1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5653,'Darkness_Helm_J','Darkness Helm','Armor',20,500,3,1,true,70,true,586); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5654,'Holy_Marching_Hat_J','Holy Marching Hat','Armor',20,200,2,1,true,10,true,587,100,true,true,true,'bonus bStr,2; bonus3 bAutoSpell,"PR_ASPERSIO",2,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5658,'Imp_Hat','Imp Hat','Armor',20,400,1,true,1,true,589,'bonus3 bAutoSpell,"SA_FLAMELAUNCHER",1,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5659,'Sleepr_Hat','Sleeper Hat','Armor',20,400,1,true,1,true,590,'bonus3 bAutoSpell,"SA_SEISMICWEAPON",1,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5660,'Gryphon_Hat','Gryphon Hat','Armor',20,400,1,true,1,true,591,'bonus3 bAutoSpell,"SA_LIGHTNINGLOADER",1,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (5664,'Filir_Wing','Filir\'s Pinions','Armor',20,100,1,true,70,595,'bonus bAspdRate,2; bonus bCastRate,-2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5665,'Shaman_Hat','Shaman Hat','Armor',20,400,1,1,true,1,true,596,'bonus2 bSubEle,Ele_Neutral,3; bonus2 bSubEle,Ele_Water,3; bonus2 bSubEle,Ele_Earth,3; bonus2 bSubEle,Ele_Fire,3; bonus2 bSubEle,Ele_Wind,3; bonus2 bSubEle,Ele_Poison,3; bonus2 bSubEle,Ele_Holy,3; bonus2 bSubEle,Ele_Dark,3; bonus2 bSubEle,Ele_Ghost,3; bonus2 bSubEle,Ele_Undead,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5666,'Golden_Crown','Golden Crown','Armor',20,500,8,1,true,1,true,597,'bonus bInt,1; bonus bDex,1; bonus bLuk,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`) VALUES (5667,'Skull_Hood','Skull Hood','Armor',20,100,1,1,true,true,30,true,598,100,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5668,'Weird_Pumpkin_Hat','Weird Pumpkin Hat','Armor',20,5,true,1,true,206,100,true,true,true,true,true,true,true,'bonus bMdef,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`equip_level_min`,`view`) VALUES (5671,'Drooping_Morocc_Minion','Drooping Morocc Minion','Armor',20,300,1,true,70,600); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`gender`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5681,'F_Ribbon_Green','Green Ribbon','Armor',800,100,1,'Female',true,true,244,'bonus bMdef,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5682,'Triangle_Rune_Cap','Triangle Rune Cap','Armor',20,300,5,1,true,1,true,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; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5683,'Majestic_Goat_Repl','Baphomet Horns','Armor',20,100,5,true,1,true,41); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5684,'Jewel_Crown_Repl','Ornate Crown','Armor',20,100,5,true,1,true,88); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5685,'Prontera_Army_Cap_Repl','Army Cap','Armor',20,100,5,true,1,true,48); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5686,'Feather_Bonnet_Repl','Nice Hat Feather','Armor',20,100,5,true,1,true,104); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5687,'Viking_Helm_Repl','Orc Helm','Armor',20,100,5,true,1,true,86); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5690,'Red_Wing_Hat','Red Wing Hat','Armor',20,600,2,1,true,50,true,613,'if(getrefine()>6) { bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; } if(getrefine()>8) { bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5691,'Catain_Bandanna','Sailor\'s Bandana','Armor',20,10,1,true,1,true,542,'bonus bDex,1; bonus2 bSubEle,Ele_Poison,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5692,'Sea_Cat_Hat','Sea Cat Hat','Armor',20,10,1,true,1,true,539,'bonus bDex,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5738,'Snowman_Hat','Snowman Hat','Armor',20,300,4,1,true,1,true,616,100,true,true,true,'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; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (5741,'Im_Egg_Shell_Hat','Eternal Egg Shell','Armor',20,1,true,10,true,101,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5742,'Rudolf_Santa_Hat','Rudolph Santa Hat','Armor',20,400,5,true,10,true,619,'bonus bLuk,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5770,'Splash_Hat','Splash Hat','Armor',20,100,3,1,true,1,true,349,100,true,true,true,'autobonus "{ sc_start SC_WINDWEAPON, 180000, 1; }", 3, 180000, BF_WEAPON, "{ specialeffect2 EF_ENHANCE; }";'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5771,'Family_Hat','Family Hat','Armor',20,100,3,1,true,1,true,109,'bonus bDex,1; bonus bMdef,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_low`,`equip_level_min`,`view`) VALUES (5775,'Choco_Donut_In_Mouth','Choco Donut In Mouth','Armor',20,50,1,true,1,653); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`view`) VALUES (5781,'Persika','Persika','Armor',20,100,1,true,659); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5786,'Ancient_Elven_Ear','Ancient Elven Ear','Armor',10,200,1,true,1,665,100,true,true,true,true,true,true,true,'bonus bLuk,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`view`) VALUES (5788,'3D_Glasses','3D Glasses','Armor',20,100,1,true,1,661); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5792,'Fish_Pin','Fish Pin','Armor',20,100,3,true,1,true,669); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (5793,'Ribbon_Of_Life','Ribbon Of Life','Armor',20,2,true,1,575,'bonus bInt,1; bonus bMdef,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_mid`,`equip_level_min`,`view`) VALUES (5794,'3D_Glasses_','3D Glasses','Armor',20,1,true,1,661); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (5796,'Cheer_Scarf','Cheer Scarf','Armor',true,1,369,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (5797,'Cheer_Scarf2','Cheer Scarf2','Armor',true,1,369,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (5798,'Cheer_Scarf3','Cheer Scarf3','Armor',true,1,369,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (5799,'Cheer_Scarf4','Cheer Scarf4','Armor',true,1,369,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`view`,`script`) VALUES (5800,'Blush_Of_Groom','Blush of Groom','Armor',20,50,true,125,'bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5801,'Ribbon_Of_Bride','Red Tailed Ribbon','Armor',20,100,5,true,true,167,'bonus bAllStats,2; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; if(getskilllv("AL_HEAL")==10) { bonus3 bAutoSpellWhenHit,"AL_HEAL",10,20; } else { bonus3 bAutoSpellWhenHit,"AL_HEAL",5,20; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`) VALUES (5802,'Upgrade_Elephant_Hat','Upgraded Elephant Hat','Armor',500,3,1,true,true,215); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5803,'Flower_Love_Hat','Love Flower Hat','Armor',20,100,2,true,true,5,'bonus2 bAddMonsterDropItem,608,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`view`) VALUES (5804,'Pirate_Eyepatch','Pirate Eye Bandage','Armor',1000,100,true,13); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5805,'Victorious_Coronet','Victorious Coronet','Armor',150,1,true,70,43,100,true,true,true,true,true,true,true,'bonus bMaxHPrate,15; bonus bSPrecovRate,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (5806,'Poem_Natalia_Hat','Poet Natalie\'s Hat','Armor',20,300,5,true,67,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5807,'October_Fest_Cap','October Fest Cap','Armor',20,100,1,true,false,false,true,50,true,104); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_upper`,`location_head_top`,`location_head_mid`,`location_head_low`,`refineable`,`view`,`script`) VALUES (5808,'Diabolus_Helmet','Dark Bacilium','Armor',20,250,5,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,364,'bonus2 bResEff,Eff_Stone,2000+(getrefine()*200); bonus2 bResEff,Eff_Freeze,2000+(getrefine()*200); bonus2 bResEff,Eff_Stun,2000+(getrefine()*200);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`view`,`script`) VALUES (5809,'Boom_Boom_Hat','Boom Boom Hat','Armor',100,6,true,216,'bonus bAllStats,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5810,'Ph.D_Hat_V','Ph.D Hat V','Armor',20,100,3,true,false,false,true,true,98,'bonus bInt,5; bonus bVit,3; bonus bDex,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_low`,`view`) VALUES (5811,'Santa_Beard','Santa\'s Beard','Armor',20,100,5,true,25); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (5812,'Hat_Of_Expert','Hat Of Expert','Armor',2,true,true,16,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5815,'Classic_Hat_J','Classic Hat','Armor',20,500,2,true,true,475,'bonus bStr,1; bonus2 bSubSize, 0, 5; bonus2 bSubSize, 1, 5; bonus2 bSubSize, 2, 5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5816,'Cowboy_Hat_J','Purple Cowboy Hat','Armor',20,500,true,true,411,'bonus bBaseAtk,15; bonus bFlee,-5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5817,'Valentine_Pledge','Valentine Pledge','Armor',20,3,true,true,100,true,true,true,true,true,true,true,true,'bonus bAllStats,2; bonus bMdef,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5818,'Carnival_Hat','Carnival Hat','Armor',6,true,true,505,100,true,true,true,true,true,true,true,true,'bonus bAllStats, 3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5819,'Carnival_Circlet','Carnival Circlet','Armor',6,true,true,506,100,true,true,true,true,true,true,true,true,'bonus bAllStats, 3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5821,'Gold_Tulip_Hairpin','Gold Tulip Hairpin','Armor',10,100,2,true,true,499,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddClass,Class_All,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5822,'Love_Chick_Hat','Love Chick Hat','Armor',10000,100,4,true,true,500,100,true,true,true,true,true,true,true,'bonus bLuk,4; bonus bMaxHP,100; bonus bMaxSP,100; bonus2 bSubRace,RC_DemiHuman,7; bonus2 bSubRace,RC_Player_Human,7; bonus2 bSubRace,RC_Undead,7;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5824,'Fools_Day_Hat','Fools Day Hat','Armor',20,300,6,1,true,30,true,265); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_top`,`view`,`script`) VALUES (5826,'Valkyrie_Helmet','Valkyrie Helmet','Armor',10,true,225,'bonus bStr,2; bonus bInt,2; bonus bDex,2; bonus bAgi,2; bonus bMdef,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5827,'Book_File_Hat','Book File Hat','Armor',20,100,1,true,1,true,423); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (5828,'Honor_Gold_Ring','Honor Gold Ring','Armor',50,true,true,1,'bonus bAllStats,1; bonus bMdef,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (5844,'Loyal_Ring3','Loyal Ring3','Armor',true,true,1,'bonus bAllStats,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (5846,'Buzzy_Ball_Gum','Buzzy Ball Gum','Armor',50,100,1,true,1,572,'bonus bMdef,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`location_head_mid`,`equip_level_min`,`view`) VALUES (5851,'Summer_Knight','Summer Knight','Armor',20,1,true,true,60,138); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5856,'Passion_FB_Hat','Passion FB Hat','Armor',20,600,2,1,true,1,true,671,100,true,true,true,true,true,true,true,true,'bonus bStr,2; bonus bDex,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5857,'Cool_FB_Hat','Cool FB Hat','Armor',20,600,2,1,true,1,true,672,100,true,true,true,true,true,true,true,true,'bonus bInt,2; bonus bVit,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5858,'Victory_FB_Hat','Victory FB Hat','Armor',20,600,2,1,true,1,true,673,100,true,true,true,true,true,true,true,true,'bonus bInt,2; bonus bDex,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5859,'Glory_FB_Hat','Glory FB Hat','Armor',20,600,2,1,true,1,true,674,100,true,true,true,true,true,true,true,true,'bonus bAllStats,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9001,'Poring_Egg','Poring Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9002,'Drops_Egg','Drops Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9003,'Poporing_Egg','Poporing Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9004,'Lunatic_Egg','Lunatic Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9005,'Picky_Egg','Picky Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9006,'Chonchon_Egg','Chonchon Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9007,'Steel_Chonchon_Egg','Steel Chonchon Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9008,'Hunter_Fly_Egg','Hunter Fly Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9009,'Savage_Bebe_Egg','Savage Babe Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9010,'Baby_Desert_Wolf_Egg','Baby Desert Wolf Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9011,'Rocker_Egg','Rocker Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9012,'Spore_Egg','Spore Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9013,'Poison_Spore_Egg','Poison Spore Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9014,'PecoPeco_Egg','Peco Peco Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9015,'Smokie_Egg','Smokie Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9016,'Yoyo_Egg','Yoyo Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9017,'Orc_Warrior_Egg','Orc Warrior Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9018,'Munak_Egg','Munak Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9019,'Dokkaebi_Egg','Dokebi Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9020,'Sohee_Egg','Sohee Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9021,'Isis_Egg','Isis Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9022,'Green_Petite_Egg','Green Petite Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9023,'Deviruchi_Egg','Deviruchi Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9024,'Bapho_Jr._Egg','Bapho Jr. Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9025,'Bongun_Egg','Bongun Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9026,'Zherlthsh_Egg','Zealotus Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9027,'Alice_Egg','Alice Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (9028,'Rice_Cake_Egg','Hard Rice Cake','Petegg',20,100,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9029,'Santa_Goblin_Egg','Christmas Goblin\'s Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9030,'Chung_E_Egg','Green Maiden Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9031,'Spring_Rabbit_Egg','Spring Rabbit Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9032,'Knife_Goblin_Egg','Knife Goblin Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9033,'Flail_Goblin_Egg','Flail Goblin Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9034,'Hammer_Goblin_Egg','Hammer Goblin Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9035,'Red_Deleter_Egg','Red Deleter Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9036,'Diabolic_Egg','Diabolic Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9037,'Wanderer_Egg','Wanderer Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9038,'New_Year_Doll_Egg','New Year Doll Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9039,'Bacsojin_Egg','Bacsojin Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9040,'Civil_Servant_Egg','Civil Servant Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9041,'Leaf_Cat_Egg','Leaf Cat Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9042,'Loli_Ruri_Egg','Loli Ruri Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9043,'Marionette_Egg','Marionette Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9044,'Shinobi_Egg','Shinobi Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9045,'Whisper_Egg','Whisper Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9046,'Goblin_Leader_Egg','Goblin Leader Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9047,'Wicked_Nymph_Egg','Wicked Nymph Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9048,'Miyabi_Ningyo_Egg','Miyabi Ningyo Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9049,'Dullahan_Egg','Dullahan Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9050,'Medusa_Egg','Medusa Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9051,'Stone_Shooter_Egg','Stone Shooter Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9052,'Incubus_Egg','Incubus Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9053,'Golem_Egg','Golem Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9054,'Nightmare_Terror_Egg','Nightmare Terror Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9055,'Succubus_Egg','Succubus Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9056,'Imp_Egg','Imp Egg','Petegg',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10001,'Skull_Helm','Skull Helm','Petarmor',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10002,'Monster_Oxygen_Mask','Monster Oxygen Mask','Petarmor',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10003,'Transparent_Headgear','Transparent Head Protector','Petarmor',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10004,'Pacifier','Pacifier','Petarmor',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10005,'Wig','Wig','Petarmor',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10006,'Queen\'s_Hair_Ornament','Queen\'s Hair Ornament','Petarmor',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10007,'Silk_Ribbon','Silk Ribbon','Petarmor',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10008,'Punisher','Punisher','Petarmor',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10009,'Wild_Flower','Wild Flower','Petarmor',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10010,'Battered_Pot','Battered Pot','Petarmor',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10011,'Stellar_Hairpin','Stellar Hairpin','Petarmor',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10012,'Tiny_Egg_Shell','Tiny Egg Shell','Petarmor',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10013,'Backpack','Backpack','Petarmor',1500); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10014,'Rocker_Glasses','Rocker Glasses','Petarmor',2000); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10015,'Green_Lace','Green Lace','Petarmor',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10016,'Golden_Bell','Golden Bell','Petarmor',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10017,'Bark_Shorts','Bark Shorts','Petarmor',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10018,'Monkey_Circlet','Monkey Circlet','Petarmor',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10019,'Red_Muffler','Red Scarf','Petarmor',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10020,'Sword_Of_Grave_Keeper','Grave Keeper\'s Sword','Petarmor',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10021,'Round_Hair_Ornament','Circular Headgear','Petarmor',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10022,'Golden_Earing','Gold Earring','Petarmor',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10023,'Green_Lucky_Bag','Green Jewel Bag','Petarmor',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10024,'Fashionable_Glasses','Fashion Glasses','Petarmor',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10025,'Star_Hairband','Hairband Of Stars','Petarmor',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10026,'Wine_On_Sleeve','Tassel for Durumagi','Petarmor',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10027,'Spirit_Chain_','Pet Soul Ring','Petarmor',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10028,'Nice_Badge','Beautiful Badges','Petarmor',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10029,'Jade_Trinket','Jade Trinket','Petarmor',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10030,'Summer_Fan','Summer Fan','Petarmor',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10031,'Death_Coil','Ring Of Death','Petarmor',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10032,'Queen\'s_Coronet','Queen\'s Coronet','Petarmor',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10033,'Apro_Hair','Afro','Petarmor',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10034,'Ball_Mask','Masked Ball','Petarmor',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10035,'Windup_Spring','Spring','Petarmor',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10036,'Hell_Horn','Horn Of Hell','Petarmor',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10037,'Black_Butterfly_Mask','Black Butterfly Mask','Petarmor',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10038,'Horn_Protector','Horn Barrier','Petarmor',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13000,'Jujube_Dagger','Jujube Dagger','Weapon','Dagger',10000,600,39,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,1,true,'bonus bAtkEle,Ele_Wind;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13001,'Dragon_Killer','Dragon Killer','Weapon','Dagger',20,900,110,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,60,true,'bonus bIgnoreDefRace,RC_Dragon; bonus2 bExpAddRace,RC_Dragon,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13002,'Ginnungagap','Ginnungagap','Weapon','Dagger',20,700,148,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,70,true,'bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Blind,500; bonus2 bAddEff2,Eff_Blind,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`job_ninja`,`job_rogue`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13003,'Coward','Cowardice Blade','Weapon','Dagger',52000,700,80,1,1,true,true,true,true,true,3,55,true,'bonus bDef,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`job_ninja`,`job_rogue`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13004,'Coward_','Cowardice Blade','Weapon','Dagger',52000,700,80,1,2,true,true,true,true,true,3,55,true,'bonus bDef,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_novice`,`job_supernovice`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (13005,'Angelwing_Short_Sword','Angelic Wing Dagger','Weapon','Dagger',20,600,120,1,2,true,true,true,4,50,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13006,'Khukri','Khukri','Weapon','Dagger',240000,600,150,1,true,true,3,65,true,'bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Curse,1000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13007,'Jitte','Jitte','Weapon','Dagger',20000,400,70,1,true,true,2,35,true,'bonus bBreakWeaponRate,200;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13008,'Jitte_','Jitte','Weapon','Dagger',20000,400,70,1,1,true,true,2,35,true,'bonus bBreakWeaponRate,200;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13009,'Kamaitachi','Kamaitachi','Weapon','Dagger',48000,900,125,2,true,true,4,70,true,'bonus bAtkEle,Ele_Wind; bonus bCritical,3; bonus bAspdRate,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13010,'Asura','Asura','Weapon','Dagger',3000,600,50,1,2,true,true,1,12,true,'bonus bMatkRate,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13011,'Asura_','Asura','Weapon','Dagger',3000,600,50,1,3,true,true,1,12,true,'bonus bMatkRate,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13012,'Murasame','Murasame','Weapon','Dagger',20,700,95,1,1,true,true,2,24,true,'bonus bAtkEle,Ele_Water; bonus2 bCriticalAddRace,RC_DemiHuman,10; bonus2 bCriticalAddRace,RC_Player_Human,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13013,'Murasame_','Murasame','Weapon','Dagger',20,700,95,1,2,true,true,2,24,true,'bonus bAtkEle,Ele_Water; bonus2 bCriticalAddRace,RC_DemiHuman,10; bonus2 bCriticalAddRace,RC_Player_Human,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13014,'Hakujin','Hakujin','Weapon','Dagger',20,800,120,1,true,true,3,42,true,'bonus bInt,2; bonus3 bAutoSpell,"AL_HEAL",1,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13015,'Hakujin_','Hakujin','Weapon','Dagger',20,800,120,1,1,true,true,3,42,true,'bonus bInt,2; bonus3 bAutoSpell,"AL_HEAL",1,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13016,'Poison_Knife_','Poison Knife','Weapon','Dagger',20,800,64,1,2,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,65,true,'bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,3000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13017,'House_Auger_','Ice Pick','Weapon','Dagger',20,600,70,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bDefRatioAtkClass,Class_All;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13018,'Sucsamad_','Sucsamad','Weapon','Dagger',20,800,140,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Wind,10; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13019,'Ginnungagap_','Ginnungagap','Weapon','Dagger',20,700,148,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,70,true,'bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Blind,500; bonus2 bAddEff2,Eff_Blind,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13020,'Warrior_Balmung_','Warrior\'s Balmung','Weapon','Dagger',20,1000,170,1,true,4,48,true,100,true,true,true,true,true,true,true,true,'bonus bAllStats,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13021,'Combat_Knife_C','Combat Knife','Weapon','Dagger',1,129,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,1,100,true,true,true,true,true,true,true,true,'bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Demon,-10; bonus bMaxSPrate,10; bonus bSPDrainValue,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13022,'Counter_Dagger_C','Dagger of Counter','Weapon','Dagger',1,209,1,true,true,true,true,true,4,1,100,true,true,true,true,true,true,true,true,'bonus bCritical,90;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13023,'Asura_C','Ashura','Weapon','Dagger',1,120,1,true,true,1,1,100,true,true,true,true,true,true,true,true,'bonus bMatkRate,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`script`) VALUES (13024,'Sword_Breaker_C','Refined Swordbreaker','Weapon','Dagger',2,105,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,'bonus bBreakWeaponRate,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`script`) VALUES (13025,'Mail_Breaker_C','Refined Mailbreaker','Weapon','Dagger',2,105,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,'bonus bBreakArmorRate,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`script`) VALUES (13026,'Moonlight_Sword_C','Moonlight Dagger','Weapon','Dagger',2,85,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,'bonus bMaxSPrate,10; bonus bSPDrainValue,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`class_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13027,'Scalpel','Scalpel','Weapon','Dagger',20,500,120,1,3,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,55,true,'bonus2 bAddEff,Eff_Bleeding,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`class_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13028,'Tooth_Blade','Tooth Blade','Weapon','Dagger',20,700,130,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,55,true,'if(getrefine()>=9){ bonus3 bAutoSpell,"NPC_SLOWCAST",2,70; } else bonus3 bAutoSpell,"NPC_SLOWCAST",1,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13029,'Prinsence_Knife','Prinsense Knife','Weapon','Dagger',20,120,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13030,'Dragon_Killer_','Dragon Killer','Weapon','Dagger',20,900,110,1,2,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,60,true,'bonus bIgnoreDefRace,RC_Dragon; bonus2 bExpAddRace,RC_Dragon,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13031,'Sword_Breaker_','Swordbreaker','Weapon','Dagger',20,1000,70,1,3,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bBreakWeaponRate,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13032,'Mail_Breaker_','Mailbreaker','Weapon','Dagger',20,1000,70,1,3,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bBreakArmorRate,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13033,'Assasin_Dagger_','Assassin Dagger','Weapon','Dagger',20,600,140,1,1,true,true,4,36,true,'bonus bMaxHPrate,20; bonus bMaxSPrate,15; bonus bAspdRate,2; bonus bAtkEle,Ele_Dark;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (13034,'Twilight_Desert','Desert Twilight','Weapon','Dagger',20,600,130,1,2,true,true,true,2,70,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (13035,'Sandstorm','Sandstorm','Weapon','Dagger',20,600,50,1,4,true,true,true,2,70,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13036,'BF_Dagger1','Brave Assassin\'s Damascus','Weapon','Dagger',20,120,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,80,true,100,true,true,true,true,true,true,'bonus bStr,1; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(Class==Job_Ninja||Class==Job_Rogue||Class==Job_Stalker) bonus bMatkRate,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13037,'BF_Dagger2','Valorous Assassin\'s Damascus','Weapon','Dagger',20,120,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,80,true,100,true,true,true,true,true,true,'bonus bStr,1; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus bUnbreakableWeapon; 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;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rogue`,`class_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13038,'Dagger_Of_Hunter','Dagger of Hunter','Weapon','Dagger',20,700,120,1,3,true,true,true,3,70,true,'bonus bStr,1; bonus bAgi,2; bonus bDex,1; bonus4 bAutoSpellOnSkill,"RG_BACKSTAP","SM_BASH",10,100; bonus2 bSkillAtk,"RG_BACKSTAP",20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`class_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13039,'Ivory_Knife','Ivory Knife','Weapon','Dagger',20,700,130,1,2,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,50,true,'bonus bAgi,2; bonus bAspdRate,3; bonus2 bAddEff,Eff_Bleeding,300; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13040,'N_Cutter','Novice Cutter','Weapon','Dagger',50,1,3,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,1,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13041,'N_Main_Gauche','Novice Main Gauche','Weapon','Dagger',63,1,3,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,1,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13042,'Krieger_Dagger1','Glorious Gladius','Weapon','Dagger',20,120,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus3 bAutoSpell,"PR_LEXDIVINA",1,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) bonus4 bAutoSpellOnSkill,"RG_RAID","NPC_WIDEBLEEDING",1,250;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13043,'Fortune_Sword_I','Fortune Sword','Weapon','Dagger',120,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,100,true,true,true,true,true,true,true,true,'bonus bLuk,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13044,'House_Auger_I','Ice Pick','Weapon','Dagger',105,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_ninja`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13045,'Kamaitachi_I','Kamaitachi','Weapon','Dagger',155,2,true,true,4,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`job_rogue`,`job_thief`,`class_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13046,'Krieg','Krierg','Weapon','Dagger',20,500,110,1,3,true,true,true,true,true,2,50,true,'bonus3 bAddEffOnSkill,"RG_BACKSTAP",Eff_Bleeding,1000; bonus2 bSkillAtk,"RG_BACKSTAP",15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`job_rogue`,`job_thief`,`class_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13047,'Weihna','Weihna','Weapon','Dagger',20,500,135,1,2,true,true,true,true,true,3,50,true,'bonus3 bAddEffOnSkill,"RG_RAID",Eff_Poison,1000; autobonus "{ bonus2 bAddClass,Class_All,10; }",5,5000,BF_WEAPON|BF_SHORT,"{ specialeffect2 EF_POTION_BERSERK; }";'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13048,'Damascus_C','Damascus','Weapon','Dagger',153,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,1,100,true,true,true,true,true,true,true,true,'bonus2 bAddSize,Size_All,40;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13100,'Six_Shooter','Six Shooter','Weapon','Revolver',4500,400,30,7,1,true,true,true,1,10,true,'bonus bHit,-10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13101,'Six_Shooter_','Six Shooter','Weapon','Revolver',4500,400,30,7,2,true,true,true,1,10,true,'bonus bHit,-10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13102,'Crimson_Bolt','Crimson Bolt','Weapon','Revolver',20000,450,45,7,1,true,true,true,2,35,true,'bonus bHit,-10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13103,'Crimson_Bolt_','Crimson Bolt','Weapon','Revolver',20000,450,45,7,2,true,true,true,2,35,true,'bonus bHit,-10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13104,'The_Garrison','Garrison','Weapon','Revolver',48000,500,70,7,1,true,true,true,2,55,true,'bonus bHit,-10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13105,'The_Garrison_','Garrison','Weapon','Revolver',48000,500,70,7,2,true,true,true,2,55,true,'bonus bHit,-10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_gunslinger`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13106,'Gold_Lux','Gold Lux','Weapon','Revolver',100000,500,20,7,true,true,true,3,12,true,'bonus bHit,-10; if(getskilllv("GS_GLITTERING")>0) bonus3 bAutoSpell,"GS_GLITTERING",getskilllv("GS_GLITTERING"),100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13107,'Wasteland_Outlaw','Wasteland\'s Outlaw','Weapon','Revolver',20,580,68,7,2,true,true,true,3,70,true,'bonus bHit,readparam(bAgi)/10; bonus bAspdRate,readparam(bAgi)/14;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_gunslinger`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13108,'BF_Pistol1','Soldier Revolver','Weapon','Revolver',70,7,true,true,true,3,80,true,100,true,true,true,true,true,true,'bonus bDex,2; bonus bHit,-10; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; autobonus "{ bonus bAspdRate,100; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_gunslinger`,`location_left_hand`,`location_right_hand`,`weapon_level`,`script`) VALUES (13109,'Wasteland_Outlaw_C','Wasteland Outlaw','Weapon','Revolver',20,100,7,true,true,true,3,'bonus bHit,readparam(bAgi)/10; bonus bAspdRate,readparam(bAgi)/14; bonus2 bAddClass,Class_All,10; bonus bMatkRate,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_gunslinger`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13110,'Krieger_Pistol1','Glorious Pistol','Weapon','Revolver',80,7,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5){ bonus2 bAddRace,RC_DemiHuman,pow(getrefine()-4,2); bonus2 bAddRace,RC_Player_Human,pow(getrefine()-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) { bonus4 bAutoSpellOnSkill,"GS_RAPIDSHOWER","GS_GLITTERING",1,1000; bonus2 bSkillAtk,"GS_RAPIDSHOWER",getrefine()*2; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_gunslinger`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13112,'P_Revolver1','Eden Revlover I','Weapon','Revolver',4,7,true,true,true,1,26,100,true,true,true,true,true,true,true,'bonus bHit,-5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_gunslinger`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13113,'P_Revolver2','Eden Revlover II','Weapon','Revolver',60,7,true,true,true,1,40,100,true,true,true,true,true,true,true,'bonus bHit,-5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (13150,'Branch','Branch','Weapon','Rifle',3000,500,50,9,3,true,true,true,1,1,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13151,'The_Cyclone','Cyclone','Weapon','Rifle',17500,700,120,9,1,true,true,true,2,24,true,'bonus bHit,10; bonus bCritical,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13152,'The_Cyclone_','Cyclone','Weapon','Rifle',17500,700,120,9,2,true,true,true,2,24,true,'bonus bHit,10; bonus bCritical,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13153,'Dusk','Dusk','Weapon','Rifle',23500,750,150,9,1,true,true,true,2,56,true,'bonus bHit,10; bonus bCritical,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13154,'Rolling_Stone','Rolling Stone','Weapon','Shotgun',12000,900,135,9,1,true,true,true,1,14,true,'bonus bSplashRange,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13155,'Black_Rose','Black Rose','Weapon','Shotgun',32000,900,180,9,1,true,true,true,2,35,true,'bonus bSplashRange,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_gunslinger`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13156,'Gate_Keeper','Gate Keeper','Weapon','Shotgun',56000,1000,210,9,true,true,true,2,24,true,'bonus bSplashRange,1; bonus3 bAutoSpell,"GS_SPREADATTACK",6,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (13157,'Drifter','Drifter','Weapon','Gatling',80000,2300,50,9,1,true,true,true,2,55,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_gunslinger`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13158,'Butcher','Butcher','Weapon','Gatling',130000,2500,75,9,true,true,true,3,68,true,'bonus2 bCriticalAddRace,RC_Brute,10; bonus2 bCriticalAddRace,RC_Player_Doram,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13159,'Butcher_','Butcher','Weapon','Gatling',130000,2500,75,9,1,true,true,true,3,68,true,'bonus2 bCriticalAddRace,RC_Brute,10; bonus2 bCriticalAddRace,RC_Player_Doram,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_gunslinger`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13160,'Destroyer','Destroyer','Weapon','Grenade',110000,1200,220,9,true,true,true,2,52,true,'bonus bBreakArmorRate,200;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13161,'Destroyer_','Destroyer','Weapon','Grenade',110000,1200,220,9,1,true,true,true,2,52,true,'bonus bBreakArmorRate,200;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (13162,'Inferno','Inferno','Weapon','Grenade',230000,1250,280,9,1,true,true,true,2,65,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_gunslinger`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13163,'Long_Barrel','Long Barrel','Weapon','Rifle',40000,1000,150,9,true,true,true,3,70,true,'bonus bHit,10; bonus bCritical,20; bonus bAspdRate,-3; bonus3 bAutoSpell,"GS_TRACKING",5,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13164,'Long_Barrel_','Long Barrel','Weapon','Rifle',40000,1000,150,9,1,true,true,true,3,70,true,'bonus bHit,10; bonus bCritical,20; bonus bAspdRate,-3; bonus3 bAutoSpell,"GS_TRACKING",5,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_gunslinger`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13165,'Jungle_Carbine','Jungle Carbine','Weapon','Rifle',56000,700,170,9,true,true,true,3,70,true,'bonus bHit,10; bonus bCritical,4; bonus bAspdRate,10; bonus bHit,-readparam(bDex)/3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13166,'Jungle_Carbine_','Jungle Carbine','Weapon','Rifle',56000,700,170,9,1,true,true,true,3,70,true,'bonus bHit,10; bonus bCritical,4; bonus bAspdRate,10; bonus bHit,-readparam(bDex)/3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_gunslinger`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13167,'Gate_KeeperDD','Gate Keeper-DD','Weapon','Shotgun',72000,1300,200,9,true,true,true,4,70,true,'bonus bSplashRange,1; bonus3 bAutoSpell,"GS_SPREADATTACK",6,50; bonus bDef,getrefine(); bonus bDex,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13168,'Thunder_P','Thunder P','Weapon','Shotgun',76000,700,80,9,1,true,true,true,3,70,true,'bonus bSplashRange,1; bonus bHit,-5; bonus bAspdRate,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13169,'Thunder_P_','Thunder P','Weapon','Shotgun',76000,700,80,9,2,true,true,true,3,70,true,'bonus bSplashRange,1; bonus bHit,-5; bonus bAspdRate,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13170,'Lever_Action_Rifle','Lever Action Rifle','Weapon','Rifle',20,770,138,9,2,true,true,true,3,70,true,'bonus bHit,20; bonus bCritical,50; bonus bAspdRate,-5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_gunslinger`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13171,'BF_Rifle1','Soldier Rifle','Weapon','Rifle',50,9,true,true,true,3,80,true,100,true,true,true,true,true,true,'bonus bDex,2; bonus bHit,10; bonus bCritical,10; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bCastrate,"GS_TRACKING",-25; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_gunslinger`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13172,'BF_Gatling_Gun1','Soldier Gatling Gun','Weapon','Gatling',80,9,true,true,true,3,80,true,100,true,true,true,true,true,true,'bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; autobonus "{ bonus bBaseAtk,80; bonus2 bHPLossRate,120,1000; }",10,6000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_gunslinger`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13173,'BF_Shotgun1','Soldier Shotgun','Weapon','Shotgun',100,9,true,true,true,3,80,true,100,true,true,true,true,true,true,'bonus bDex,2; bonus bSplashRange,1; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; autobonus "{ bonus bBaseAtk,80; bonus2 bHPLossRate,100,1000; }",30,6000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_gunslinger`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13174,'BF_Launcher1','Soldier Grenade Launcher','Weapon','Grenade',300,9,true,true,true,3,80,true,100,true,true,true,true,true,true,'bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; autobonus "{ bonus bBaseAtk,300; bonus2 bHPLossRate,120,1000; }",30,9000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_gunslinger`,`location_left_hand`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13175,'Lever_Action_Rifle_C','Lever Action Rifle','Weapon','Rifle',20,170,9,true,true,true,3,100,true,true,true,true,true,true,true,true,'bonus bHit,20; bonus bCritical,50; bonus bAspdRate,-5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_gunslinger`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13176,'Krieger_Rifle1','Glorious Rifle','Weapon','Rifle',90,9,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) { bonus2 bCastrate,"GS_TRACKING",25; bonus2 bSkillAtk,"GS_TRACKING",getrefine() * 3; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_gunslinger`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13177,'Krieger_Gatling1','Glorious Gatling Gun','Weapon','Gatling',90,9,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) {bonus2 bAddClass,Class_All,getrefine(); }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_gunslinger`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13178,'Krieger_Shotgun1','Glorious Shotgun','Weapon','Shotgun',110,9,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bSplashRange,1; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) { bonus2 bSkillAtk,"GS_SPREADATTACK",getrefine() * 2; bonus3 bAddEffOnSkill,"GS_SPREADATTACK",Eff_Stun,2000; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_gunslinger`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13179,'Krieger_Launcher1','Glorious Grenade Launcher','Weapon','Grenade',330,9,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) { bonus2 bSkillAtk,"GS_GROUNDDRIFT",getrefine() * 2; bonus3 bAddEffOnSkill,"GS_SPREADATTACK",Eff_Stun,2000; autobonus "{ bonus bAspdRate,20; }",200,20000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13300,'Huuma_Bird_Wing','Huuma Wing Shuriken','Weapon','Huuma',90000,3000,150,1,true,true,true,4,65,true,'bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Wind; bonus bDex,-2; bonus bAgi,-1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13301,'Huuma_Giant_Wheel','Huuma Giant Wheel Shuriken','Weapon','Huuma',40000,2500,50,1,3,true,true,true,4,42,true,'bonus bUnbreakableWeapon; bonus2 bAddEff,Eff_Bleeding,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13302,'Huuma_Giant_Wheel_','Huuma Giant Wheel Shuriken','Weapon','Huuma',40000,2500,50,1,4,true,true,true,4,42,true,'bonus bUnbreakableWeapon; bonus2 bAddEff,Eff_Bleeding,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13303,'Huuma_Blaze','Huuma Blaze Shuriken','Weapon','Huuma',78000,1500,185,1,true,true,true,4,55,true,'bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Fire; bonus bDex,-2; bonus3 bAutoSpell,"MG_FIREBALL",5,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13304,'Huuma_Calm_Mind','Huuma Calm Mind','Weapon','Huuma',20,1550,112,1,2,true,true,true,3,70,true,'bonus bUnbreakableWeapon; bonus2 bSkillAtk,"NJ_HUUMA",30; bonus bNoCastCancel;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13305,'BF_Huuma_Shuriken1','Brave Huuma Front Shuriken','Weapon','Huuma',20,55,1,true,true,true,3,80,true,100,true,true,true,true,true,true,'bonus bStr,2; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13306,'BF_Huuma_Shuriken2','Valorous Huuma Front Shuriken','Weapon','Huuma',20,55,1,true,true,true,3,80,true,100,true,true,true,true,true,true,'bonus bStr,2; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; autobonus "{ bonus2 bSkillAtk,\\"NJ_HUUMA\\",100; bonus2 bSkillAtk,\\"NJ_ISSEN\\",100; }",50,10000,BF_WEAPON,"{specialeffect2 EF_POTION_BERSERK; }"; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13307,'Krieger_Huuma_Shuriken1','Glorious Shuriken','Weapon','Huuma',20,55,1,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bMatkRate,15; autobonus "{ bonus2 bSkillAtk,\\"NJ_HUUMA\\",100; bonus2 bSkillAtk,\\"NJ_ISSEN\\",100; }",50,10000; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-3)*(getrefine()-3); bonus2 bAddRace,RC_Player_Human,(getrefine()-3)*(getrefine()-3); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>8) { bonus5 bAutoSpellOnSkill,"NJ_ISSEN","AL_HEAL",10,1000,1; bonus4 bAutoSpellOnSkill,"NJ_HUUMA","NPC_CRITICALWOUND",2,200; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13308,'Huuma_Blaze_I','Huuma Blaze Shuriken','Weapon','Huuma',230,1,true,true,true,4,100,true,true,true,true,true,true,true,true,'bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Fire; bonus bDex,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13309,'Huuma_Giant_Wheel_C','Huuma Giant Wheel Shuriken','Weapon','Huuma',99,1,true,true,true,4,1,100,true,true,true,true,true,true,true,true,'bonus2 bAddSize,Size_All,80;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13400,'Cutlas_','Cutlus','Weapon','1hSword',20,900,150,1,1,true,true,true,true,true,true,true,true,true,true,4,40,true,'skill "SM_BASH",5; bonus bStr,2; bonus bDef,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13401,'Excalibur_C','Excalibur','Weapon','1hSword',1,199,1,true,true,true,true,true,true,true,true,true,true,4,1,100,true,true,true,true,true,true,true,true,'bonus bInt,10; bonus bLuk,10; bonus bAtkEle,Ele_Holy;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`script`) VALUES (13402,'Cutlas_C','Cutlus','Weapon','1hSword',2,185,1,true,true,true,true,true,true,true,true,true,true,4,'skill "SM_BASH",5; bonus bStr,2; bonus bDef,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`script`) VALUES (13403,'Solar_Sword_C','Solar Sword','Weapon','1hSword',2,120,1,true,true,true,true,true,true,true,true,true,true,4,'bonus bAtkEle,Ele_Fire; bonus bHPDrainRate,1; bonus2 bSPLossRate,15,10000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13404,'Platinum_Shotel','Platinum Shotel','Weapon','1hSword',20,1500,130,1,1,true,true,true,true,true,true,true,true,true,true,4,55,true,'bonus bCritical,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13405,'Curved_Sword','Curved Sword','Weapon','1hSword',20,800,125,1,2,true,true,true,true,true,true,true,true,true,true,4,55,true,'bonus bAspdRate,10; bonus2 bAddEff,Eff_Curse,300;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13406,'Edger','Edger','Weapon','1hSword',20,120,1,true,true,true,true,true,true,true,true,true,true,1,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`script`) VALUES (13407,'Nagan_C','Refined Nagan','Weapon','1hSword',1,148,1,true,true,true,true,true,true,true,true,true,true,4,'skill "TF_DOUBLE",5; bonus bDoubleRate,25; bonus2 bAddRace,RC_DemiHuman,40; bonus2 bAddRace,RC_Player_Human,40;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`script`) VALUES (13408,'Fire_Brand_C','Refined Fireblend','Weapon','1hSword',1,120,1,true,true,true,true,true,true,true,true,true,true,4,'bonus bAtkEle,Ele_Fire; bonus bInt,2; skill "MG_FIREBOLT",5; bonus3 bAutoSpell,"MG_FIREBOLT",5,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`script`) VALUES (13409,'Immaterial_Sword_C','Refined Immaterial Sword','Weapon','1hSword',1,160,1,true,true,true,true,true,true,true,true,true,true,4,'bonus bAtkEle,Ele_Ghost; bonus2 bSPVanishRate,45,30; bonus bSPDrainValue,-1; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13410,'BF_Sword1','Valorous Gladiator Blade','Weapon','1hSword',20,115,1,true,true,true,true,true,true,true,true,true,true,true,true,3,80,true,100,true,true,true,true,true,true,'bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13411,'BF_Sword2','Brave Gladiator Blade','Weapon','1hSword',20,115,1,true,true,true,true,true,true,true,true,true,true,true,true,3,80,true,100,true,true,true,true,true,true,'bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus bMatkRate,10; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`class_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13412,'Twin_Edge_B','Twin Edge of Naght Sieger','Weapon','1hSword',20,1500,150,1,3,true,true,true,true,true,true,true,true,true,true,true,4,75,true,'bonus bAtkEle,Ele_Water; skill "MG_FROSTDIVER",5; autobonus "{ bonus bIgnoreDefClass,Class_Normal; }",50,5000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`class_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13413,'Twin_Edge_R','Twin Edge of Naght Sieger','Weapon','1hSword',20,1500,160,1,3,true,true,true,true,true,true,true,true,true,true,true,4,75,true,'bonus bAtkEle,Ele_Fire; skill "WZ_METEOR",3; autobonus "{ bonus bIgnoreDefClass,Class_Normal; }",50,5000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`class_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13414,'Elemental_Sword','Elemental Sword','Weapon','1hSword',20,1200,105,1,3,true,true,true,true,true,true,true,true,true,true,true,3,70,true,'bonus bStr,2; bonus bInt,4; bonus bDex,1; bonus bMatkRate,5; 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,1000; bonus4 bAutoSpellOnSkill,"MG_LIGHTNINGBOLT","WZ_EARTHSPIKE",3,1000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13415,'N_Falchion','Novice Falchion','Weapon','1hSword',59,1,3,true,true,true,true,true,true,true,true,true,true,true,true,1,2,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13416,'Krieger_Onehand_Sword1','Glorious Flamberge','Weapon','1hSword',20,130,1,true,true,true,true,true,true,true,true,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(getrefine()>5) { bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4); bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(getrefine()>6) bonus bAspdRate,5; if(getrefine()>8) { bonus bAspdRate,5; bonus4 bAutoSpellOnSkill,"SM_BASH","NPC_CRITICALWOUND",2,200; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13417,'Krieger_Onehand_Sword2','Glorious Rapier','Weapon','1hSword',20,130,1,true,true,true,true,true,true,true,true,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus bInt,getrefine()-5; bonus bMatkRate,10; bonus bUnbreakableWeapon; if(getrefine()>5) bonus bUseSPrate,-10; if(getrefine()>8) bonus bInt,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13418,'Krieger_Onehand_Sword3','Glorious Holy Avenger','Weapon','1hSword',20,130,1,true,true,true,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus bInt,getrefine()-5; bonus bMatkRate,10; bonus bUnbreakableWeapon; if(getrefine()>5) bonus bUseSPrate,-10; if(getrefine()>8) bonus4 bAutoSpellOnSkill,"PA_PRESSURE","PR_LEXAETERNA",1,1000; if(getrefine()>9) bonus bInt,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13419,'Holy_Saber','Holy saber','Weapon','1hSword',20,160,1,true,true,true,true,true,true,true,true,true,true,3,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13420,'Honglyun\'s_Sword','Honglyun\'s Sword','Weapon','1hSword',20,1200,160,1,1,true,true,true,true,true,true,true,true,true,true,4,70,true,100,true,true,true,'bonus bAtkEle,Ele_Fire; bonus bStr,2; bonus bInt,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`class_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13421,'Ruber','Ruber','Weapon','1hSword',20,1500,170,1,1,true,true,true,true,true,true,true,true,3,50,true,'autobonus "{ bonus2 bSkillAtk,\\"KN_BOWLINGBASH\\",20; bonus2 bSkillAtk,\\"SM_BASH\\",20; }",5,15000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }";'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_crusader`,`job_knight`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13422,'Flamberge_C','Flamberge','Weapon','1hSword',185,1,true,true,true,3,1,100,true,true,true,true,true,true,true,true,'bonus bUnbreakableWeapon; bonus2 bAddSize,Size_All,40;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`class_upper`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15000,'Bone_Plate','Bone Plate','Armor',20,1000,7,1,true,true,true,true,true,true,true,true,true,true,true,85,true,'bonus bStr,1; bonus bMdef,3; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus2 bIgnoreDefRaceRate,RC_Brute,10; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,10; bonus3 bAutoSpellWhenHit,"NPC_WIDEBLEEDING",1,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (15001,'Odin\'s_Blessing_I','Odin\'s Blessing','Armor',10,true,false,false,true,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`class_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16000,'Erde','Erde','Weapon','Mace',20,500,130,1,2,true,true,true,true,true,true,true,true,true,true,true,3,50,true,'bonus2 bSkillAtk,"AM_ACIDTERROR",20; bonus2 bSkillAtk,"AM_DEMONSTRATION",20; bonus bMaxSP,50; bonus bHealPower,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`class_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16001,'Red_Square_Bag','Red Square Bag','Weapon','Mace',20,500,130,1,2,true,true,true,true,true,true,true,true,true,true,true,3,50,true,'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;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16002,'Stunner_C','Stunner','Weapon','Mace',175,1,true,true,true,true,3,1,100,true,true,true,true,true,true,true,true,'bonus2 bAddEff,Eff_Stun,1000; bonus2 bAddSize,Size_All,40;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_blacksmith`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16030,'Pilebuncker_S','Pile Bunker S','Weapon','Mace',20,3000,400,1,1,true,true,4,130,true,'bonus bAspdRate,getrefine()/2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_blacksmith`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16031,'Pilebuncker_P','Pile Bunker P','Weapon','Mace',20,4000,450,1,true,true,4,130,true,'bonus bBaseAtk,getrefine()*5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_blacksmith`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16032,'Pilebuncker_T','Pile Bunker T','Weapon','Mace',20,3500,400,1,1,true,true,4,130,true,'bonus bUseSPrate,getrefine()*-1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_barddancer`,`job_hunter`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18100,'Shooting_Star_C','Shooting Star','Weapon','Bow',20,190,5,true,true,true,true,4,1,true,'bonus bLongAtkRate,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`script`) VALUES (18101,'F_Bow_Of_Rudra_C','Rudra Bow','Weapon','Bow',2,185,5,true,true,true,true,true,true,true,4,'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;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`script`) VALUES (18102,'E_Bow_Of_Rudra_C','Rudra Bow','Weapon','Bow',2,185,5,true,true,true,true,true,true,true,4,'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;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (18500,'Cheer_Scarf6','Cheer Scarf6','Armor',true,1,369,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (18501,'Cheer_Scarf8','Cheer Scarf8','Armor',true,1,369,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (18502,'Cheer_Scarf10','Cheer Scarf10','Armor',true,1,369,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (18503,'Small_Horn_Of_Devil','Small Devil Horns','Armor',20,100,2,true,1,562,'bonus bAtkRate,5; bonus bMatkRate,5; bonus bMaxHPRate,10; bonus bMaxSPRate,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (18505,'Umbala_Spirit','Umbala Spirit','Armor',200,1,1,true,30,675,'bonus bVit,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`location_head_low`,`equip_level_min`,`refineable`,`view`) VALUES (18506,'Hattah_Black','Hattah Black','Armor',12000,4000,2,1,true,true,true,1,true,676); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`equip_level_min`,`view`) VALUES (18507,'Elven_Ears_','Elven Ears','Armor',20,100,1,true,false,false,true,70,73); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18539,'Skull_Cap','Skull Cap','Armor',40,200,5,1,true,10,true,713,'bonus bMatkRate,2; if(getrefine() >= 5) { bonus bMatkRate,3; } if(getrefine() >= 7) { bonus bMatkRate,3; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18595,'Horn_Of_Ancient','Horn of Ancient','Armor',40,200,8,1,true,50,true,757,'autobonus "{ bonus bBaseAtk,100; }",5,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }";'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18596,'Sprout_Hat','Sprout Hat','Armor',20,200,4,true,70,true,758,'skill "WZ_HEAVENDRIVE",3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18597,'Mercury_Helm','Mercury Riser','Armor',40,200,10,1,true,true,759,'bonus bAspdRate,3; bonus bCritical,3; if(getrefine() >= 7) { bonus bAspdRate,2; bonus bCritical,2; } if(getrefine() >= 9) { bonus bAspdRate,2; bonus bCritical,2; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18600,'Cat_Ears_Beret','Cat Ear Beret','Armor',20,100,5,true,true,761,'bonus bAtkRate,5; if(getrefine() > 5 && getrefine() <= 12) { bonus2 bAddRace,RC_DemiHuman,(getrefine() - 5); bonus2 bSubRace,RC_DemiHuman,(getrefine() - 5); bonus2 bAddRace,RC_Player_Human,(getrefine() - 5); bonus2 bSubRace,RC_Player_Human,(getrefine() - 5); } if(getrefine() > 12) { bonus2 bAddRace,RC_DemiHuman,7; bonus2 bAddRace,RC_Player_Human,7; bonus2 bSubRace,RC_DemiHuman,7; bonus2 bSubRace,RC_Player_Human,7; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18612,'White_Musang_Hat','White Musang Hat','Armor',40,200,3,1,true,true,770,'bonus bStr,2; bonus bVit,2; bonus bLuk,1; bonus bUnbreakableHelm;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18613,'Black_Musang_Hat','Black Musang Hat','Armor',40,200,3,1,true,true,771,'bonus bInt,2; bonus bDex,2; bonus bAgi,1; bonus bUnbreakableHelm;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`refineable`,`view`) VALUES (18620,'Heart_Eyepatch','Heart Eyepatch','Armor',5,200,2,true,20,true,779); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18656,'Wit_Pumpkin_Hat','Witch\'s Pumpkin Hat','Armor',20,300,10,true,20,true,717,'bonus bMdef,10; bonus bStr,2; bonus bInt,2; bonus2 bMagicAddRace,RC_Undead,15; bonus2 bMagicAddRace,RC_Demon,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`location_costume_head_Low`,`view`,`script`) VALUES (19500,'T_Mr_Smile','T Mr Smile','Armor',true,true,65,'bonus bStr,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`slots`,`location_costume_head_top`,`location_costume_head_Low`,`view`) VALUES (19501,'T_Spinx_Helm','T Spinx Helm','Armor',1,true,true,137); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`view`) VALUES (19504,'T_Sunglasses','T Sunglasses','Armor',true,12); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`view`) VALUES (19505,'T_Cigarette','T Cigarette','Armor',true,54); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`refineable`,`view`) VALUES (19506,'T_Valkyrie_Feather_Band','T Valkyrie Feather Band','Armor',true,true,300); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19507,'Fine_Sun','Clear Sun','Armor',true,1,654); diff --git a/sql-files/item_db_etc.sql b/sql-files/item_db_etc.sql new file mode 100644 index 0000000000..bdc4a2ebdb --- /dev/null +++ b/sql-files/item_db_etc.sql @@ -0,0 +1,2357 @@ +# +# Table structure for table `item_db` +# + +DROP TABLE IF EXISTS `item_db`; +CREATE TABLE `item_db` ( + `id` int(10) unsigned NOT NULL DEFAULT '0', + `name_aegis` varchar(50) NOT NULL DEFAULT '', + `name_english` varchar(50) NOT NULL DEFAULT '', + `type` varchar(20) DEFAULT NULL, + `subtype` varchar(20) DEFAULT NULL, + `price_buy` mediumint(8) unsigned DEFAULT NULL, + `price_sell` mediumint(8) unsigned DEFAULT NULL, + `weight` smallint(5) unsigned DEFAULT NULL, + `attack` smallint(5) unsigned DEFAULT NULL, + `defense` smallint(5) unsigned DEFAULT NULL, + `range` tinyint(2) unsigned DEFAULT NULL, + `slots` tinyint(2) unsigned DEFAULT NULL, + `job_all` tinyint(1) unsigned DEFAULT NULL, + `job_acolyte` tinyint(1) unsigned DEFAULT NULL, + `job_alchemist` tinyint(1) unsigned DEFAULT NULL, + `job_archer` tinyint(1) unsigned DEFAULT NULL, + `job_assassin` tinyint(1) unsigned DEFAULT NULL, + `job_barddancer` tinyint(1) unsigned DEFAULT NULL, + `job_blacksmith` tinyint(1) unsigned DEFAULT NULL, + `job_crusader` tinyint(1) unsigned DEFAULT NULL, + `job_gunslinger` tinyint(1) unsigned DEFAULT NULL, + `job_hunter` tinyint(1) unsigned DEFAULT NULL, + `job_knight` tinyint(1) unsigned DEFAULT NULL, + `job_mage` tinyint(1) unsigned DEFAULT NULL, + `job_merchant` tinyint(1) unsigned DEFAULT NULL, + `job_monk` tinyint(1) unsigned DEFAULT NULL, + `job_ninja` tinyint(1) unsigned DEFAULT NULL, + `job_novice` tinyint(1) unsigned DEFAULT NULL, + `job_priest` tinyint(1) unsigned DEFAULT NULL, + `job_rogue` tinyint(1) unsigned DEFAULT NULL, + `job_sage` tinyint(1) unsigned DEFAULT NULL, + `job_soullinker` tinyint(1) unsigned DEFAULT NULL, + `job_stargladiator` tinyint(1) unsigned DEFAULT NULL, + `job_supernovice` tinyint(1) unsigned DEFAULT NULL, + `job_swordman` tinyint(1) unsigned DEFAULT NULL, + `job_taekwon` tinyint(1) unsigned DEFAULT NULL, + `job_thief` tinyint(1) unsigned DEFAULT NULL, + `job_wizard` tinyint(1) unsigned DEFAULT NULL, + `class_all` tinyint(1) unsigned DEFAULT NULL, + `class_normal` tinyint(1) unsigned DEFAULT NULL, + `class_upper` tinyint(1) unsigned DEFAULT NULL, + `class_baby` tinyint(1) unsigned DEFAULT NULL, + `gender` varchar(10) DEFAULT NULL, + `location_head_top` tinyint(1) unsigned DEFAULT NULL, + `location_head_mid` tinyint(1) unsigned DEFAULT NULL, + `location_head_low` tinyint(1) unsigned DEFAULT NULL, + `location_armor` tinyint(1) unsigned DEFAULT NULL, + `location_right_hand` tinyint(1) unsigned DEFAULT NULL, + `location_left_hand` tinyint(1) unsigned DEFAULT NULL, + `location_garment` tinyint(1) unsigned DEFAULT NULL, + `location_shoes` tinyint(1) unsigned DEFAULT NULL, + `location_right_accessory` tinyint(1) unsigned DEFAULT NULL, + `location_left_accessory` tinyint(1) unsigned DEFAULT NULL, + `location_costume_head_top` tinyint(1) unsigned DEFAULT NULL, + `location_costume_head_mid` tinyint(1) unsigned DEFAULT NULL, + `location_costume_head_low` tinyint(1) unsigned DEFAULT NULL, + `location_costume_garment` tinyint(1) unsigned DEFAULT NULL, + `location_ammo` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_armor` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_weapon` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_shield` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_shoes` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_right_accessory` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_left_accessory` tinyint(1) unsigned DEFAULT NULL, + `weapon_level` tinyint(1) unsigned DEFAULT NULL, + `equip_level_min` tinyint(3) unsigned DEFAULT NULL, + `equip_level_max` tinyint(3) unsigned DEFAULT NULL, + `refineable` tinyint(1) unsigned DEFAULT NULL, + `view` smallint(5) unsigned DEFAULT NULL, + `alias_name` varchar(50) DEFAULT NULL, + `flag_buyingstore` tinyint(1) unsigned DEFAULT NULL, + `flag_deadbranch` tinyint(1) unsigned DEFAULT NULL, + `flag_container` tinyint(1) unsigned DEFAULT NULL, + `flag_uniqueid` tinyint(1) unsigned DEFAULT NULL, + `flag_bindonequip` tinyint(1) unsigned DEFAULT NULL, + `flag_dropannounce` tinyint(1) unsigned DEFAULT NULL, + `flag_noconsume` tinyint(1) unsigned DEFAULT NULL, + `flag_dropeffect` varchar(20) DEFAULT NULL, + `delay_duration` bigint(20) unsigned DEFAULT NULL, + `delay_status` varchar(30) DEFAULT NULL, + `stack_amount` smallint(5) unsigned DEFAULT NULL, + `stack_inventory` tinyint(1) unsigned DEFAULT NULL, + `stack_cart` tinyint(1) unsigned DEFAULT NULL, + `stack_storage` tinyint(1) unsigned DEFAULT NULL, + `stack_guildstorage` tinyint(1) unsigned DEFAULT NULL, + `nouse_override` smallint(5) unsigned DEFAULT NULL, + `nouse_sitting` tinyint(1) unsigned DEFAULT NULL, + `trade_override` smallint(5) unsigned DEFAULT NULL, + `trade_nodrop` tinyint(1) unsigned DEFAULT NULL, + `trade_notrade` tinyint(1) unsigned DEFAULT NULL, + `trade_tradepartner` tinyint(1) unsigned DEFAULT NULL, + `trade_nosell` tinyint(1) unsigned DEFAULT NULL, + `trade_nocart` tinyint(1) unsigned DEFAULT NULL, + `trade_nostorage` tinyint(1) unsigned DEFAULT NULL, + `trade_noguildstorage` tinyint(1) unsigned DEFAULT NULL, + `trade_nomail` tinyint(1) unsigned DEFAULT NULL, + `trade_noauction` tinyint(1) unsigned DEFAULT NULL, + `script` text, + `equip_script` text, + `unequip_script` text, + PRIMARY KEY (`id`), + UNIQUE INDEX `UniqueAegisName` (`name_aegis`) +) ENGINE=MyISAM; + +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (670,'Gold_Coin_Moneybag','Bag of Gold Coins','Etc',100000,400); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (671,'Gold_Coin','Gold Coin','Etc',10000,40); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (672,'Copper_Coin_Moneybag','Bag of Bronze Coins','Etc',1000,400); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (673,'Copper_Coin','Bronze Coin','Etc',100,40); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (674,'Mithril_Coin','Mithril Coin','Etc',5000,40); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (675,'Silver_Coin','Silver Coin','Etc',5000,40); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (676,'Silver_Coin_Moneybag','Bag of Silver Coins','Etc',50000,400); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (677,'White_Gold_Coin','Platinum Coin','Etc',2000,40); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (701,'Ora_Ora','Ora Ora','Etc',55000,200,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (702,'Animal_Blood','Animal Gore','Etc',450,100,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (703,'Hinalle','Hinalle','Etc',500,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (704,'Aloe','Aloe','Etc',500,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (705,'Clover','Clover','Etc',10,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (706,'Four_Leaf_Clover','Four Leaf Clover','Etc',80000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (707,'Singing_Plant','Singing Plant','Etc',500,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (708,'Ment','Ment','Etc',500,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (709,'Izidor','Izidor','Etc',500,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (710,'Illusion_Flower','Illusion Flower','Etc',1000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (711,'Shoot','Shoot','Etc',16,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (712,'Flower','Flower','Etc',2,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (713,'Empty_Bottle','Empty Bottle','Etc',6,20,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (714,'Emperium','Emperium','Etc',2,1000,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (715,'Yellow_Gemstone','Yellow Gemstone','Etc',600,30,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (716,'Red_Gemstone','Red Gemstone','Etc',600,30,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (717,'Blue_Gemstone','Blue Gemstone','Etc',600,30,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (718,'Dark_Red_Jewel','Garnet','Etc',6000,100,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (719,'Violet_Jewel','Amethyst','Etc',6000,100,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (720,'Skyblue_Jewel','Aquamarine','Etc',6000,100,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (721,'Azure_Jewel','Emerald','Etc',6000,100,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (722,'Scarlet_Jewel','Pearl','Etc',6000,100,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (723,'Cardinal_Jewel','Ruby','Etc',6000,100,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (724,'Cardinal_Jewel_','Cursed Ruby','Etc',600,100,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (725,'Red_Jewel','Sardonyx','Etc',6000,100,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (726,'Blue_Jewel','Sapphire','Etc',6000,100,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (727,'White_Jewel','Opal','Etc',6000,100,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (728,'Golden_Jewel','Topaz','Etc',6000,100,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (729,'Bluish_Green_Jewel','Zircon','Etc',6000,100,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (730,'Crystal_Jewel','1carat Diamond','Etc',10000,100,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (731,'Crystal_Jewel_','2carat Diamond','Etc',25000,100,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (732,'Crystal_Jewel__','3carat Diamond','Etc',55000,100,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (733,'Crystal_Jewel___','Cracked Diamond','Etc',10,100,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (734,'Red_Frame','Red Frame','Etc',3000,200,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (735,'Blue_Porcelain','Chung Jah','Etc',5000,500,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (736,'White_Platter','China','Etc',1000,300,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (737,'Black_Ladle','Black Ladle','Etc',400,50,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (738,'Pencil_Case','Pencil Case','Etc',400,100,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (739,'Rouge','Rouge','Etc',10000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (740,'Stuffed_Doll','Puppet','Etc',1000,100,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (741,'Poring_Doll','Poring Doll','Etc',1800,100,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (742,'Chonchon_Doll','Chonchon Doll','Etc',3000,100,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (743,'Spore_Doll','Spore Doll','Etc',5500,100,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (744,'Bunch_Of_Flowers','Bouquet','Etc',2000,50,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (745,'Wedding_Bouquet','Wedding Bouquet','Etc',12000,50,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (746,'Glass_Bead','Glass Bead','Etc',1400,50,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (747,'Crystal_Mirror','Crystal Mirror','Etc',15000,50,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (748,'Witherless_Rose','Witherless Rose','Etc',55000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (749,'Frozen_Rose','Frozen Rose','Etc',35000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (750,'Baphomet_Doll','Baphomet Doll','Etc',18000,100,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (751,'Osiris_Doll','Osiris Doll','Etc',14000,100,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (752,'Grasshopper_Doll','Rocker Doll','Etc',4000,100,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (753,'Monkey_Doll','Yoyo Doll','Etc',6000,100,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (754,'Raccoondog_Doll','Raccoon Doll','Etc',5000,100,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (756,'Oridecon_Stone','Rough Oridecon','Etc',550,200,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (757,'Elunium_Stone','Rough Elunium','Etc',650,200,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (901,'Danggie','Daenggie','Etc',260,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (902,'Tree_Root','Tree Root','Etc',12,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (903,'Reptile_Tongue','Reptile Tongue','Etc',140,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (904,'Scorpion\'s_Tail','Scorpion Tail','Etc',124,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (905,'Stem','Stem','Etc',46,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (906,'Pointed_Scale','Pointed Scale','Etc',68,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (907,'Resin','Resin','Etc',120,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (908,'Spawn','Spawn','Etc',140,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (909,'Jellopy','Jellopy','Etc',6,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (910,'Garlet','Garlet','Etc',40,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (911,'Scell','Scell','Etc',160,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (912,'Zargon','Zargon','Etc',480,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (913,'Tooth_Of_Bat','Tooth of Bat','Etc',34,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (914,'Fluff','Fluff','Etc',8,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (915,'Chrysalis','Chrysalis','Etc',8,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (916,'Feather_Of_Birds','Feather of Birds','Etc',10,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (917,'Talon','Talon','Etc',20,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (918,'Sticky_Webfoot','Sticky Webfoot','Etc',20,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (919,'Animal\'s_Skin','Animal Skin','Etc',36,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (920,'Claw_Of_Wolves','Wolf Claw','Etc',58,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (921,'Mushroom_Spore','Mushroom Spore','Etc',36,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (922,'Orcish_Cuspid','Orc\'s Fang','Etc',220,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (923,'Evil_Horn','Evil Horn','Etc',1200,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (924,'Powder_Of_Butterfly','Powder of Butterfly','Etc',90,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (925,'Bill_Of_Birds','Bill of Birds','Etc',64,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (926,'Scale_Of_Snakes','Snake Scale','Etc',82,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (928,'Insect_Feeler','Insect Feeler','Etc',114,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (929,'Immortal_Heart','Immortal Heart','Etc',374,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (930,'Rotten_Bandage','Rotten Bandage','Etc',350,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (931,'Orcish_Voucher','Orcish Voucher','Etc',142,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (932,'Skel_Bone','Skel-Bone','Etc',232,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (934,'Mementos','Memento','Etc',600,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (935,'Shell','Shell','Etc',14,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (936,'Scales_Shell','Scale Shell','Etc',466,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (937,'Posionous_Canine','Venom Canine','Etc',148,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (938,'Sticky_Mucus','Sticky Mucus','Etc',70,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (939,'Bee_Sting','Bee Sting','Etc',32,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (940,'Grasshopper\'s_Leg','Grasshopper\'s Leg','Etc',36,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (941,'Nose_Ring','Nose Ring','Etc',568,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (942,'Yoyo_Tail','Yoyo Tail','Etc',114,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (943,'Solid_Shell','Solid Shell','Etc',448,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (944,'Horseshoe','Horseshoe','Etc',588,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (945,'Raccoon_Leaf','Raccoon Leaf','Etc',106,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (946,'Snail\'s_Shell','Snail\'s Shell','Etc',64,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (947,'Horn','Horn','Etc',116,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (948,'Bear\'s_Foot','Bear\'s Footskin','Etc',174,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (949,'Feather','Feather','Etc',20,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (950,'Heart_Of_Mermaid','Heart of Mermaid','Etc',264,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (951,'Fin','Fin','Etc',412,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (952,'Cactus_Needle','Cactus Needle','Etc',82,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (953,'Stone_Heart','Stone Heart','Etc',184,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (954,'Shining_Scales','Shining Scale','Etc',466,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (955,'Worm_Peelings','Worm Peeling','Etc',52,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (956,'Gill','Gill','Etc',342,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (957,'Decayed_Nail','Decayed Nail','Etc',82,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (958,'Horrendous_Mouth','Horrendous Mouth','Etc',390,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (959,'Rotten_Scale','Stinky Scale','Etc',168,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (960,'Nipper','Nipper','Etc',114,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (961,'Conch','Conch','Etc',158,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (962,'Tentacle','Tentacle','Etc',70,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (963,'Sharp_Scale','Sharp Scale','Etc',250,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (964,'Crap_Shell','Crab Shell','Etc',90,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (965,'Clam_Shell','Clam Shell','Etc',56,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (966,'Flesh_Of_Clam','Clam Flesh','Etc',158,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (967,'Turtle_Shell','Turtle Shell','Etc',680,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (968,'Voucher_Of_Orcish_Hero','Heroic Emblem','Etc',3000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (969,'Gold','Gold','Etc',200000,200,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (970,'Alchol','Alcohol','Etc',400,30,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (971,'Detrimindexta','Detrimindexta','Etc',400,30,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (972,'Karvodailnirol','Karvodailnirol','Etc',400,30,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (973,'Counteragent','Counteragent','Etc',800,70,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (974,'Mixture','Mixture','Etc',800,70,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (975,'Scarlet_Dyestuffs','Scarlet Dyestuffs','Etc',8000,150,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (976,'Lemon_Dyestuffs','Lemon Dyestuffs','Etc',8000,150,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (978,'Cobaltblue_Dyestuffs','Cobaltblue Dyestuffs','Etc',8000,150,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (979,'Darkgreen_Dyestuffs','Darkgreen Dyestuffs','Etc',8000,150,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (980,'Orange_Dyestuffs','Orange Dyestuffs','Etc',8000,150,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (981,'Violet_Dyestuffs','Violet Dyestuffs','Etc',8000,150,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (982,'White_Dyestuffs','White Dyestuffs','Etc',8000,150,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (983,'Black_Dyestuffs','Black Dyestuffs','Etc',8000,150,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (984,'Oridecon','Oridecon','Etc',1100,200,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (985,'Elunium','Elunium','Etc',1100,200,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (986,'Anvil','Anvil','Etc',30000,500,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (987,'Oridecon_Anvil','Oridecon Anvil','Etc',120000,700,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (988,'Golden_Anvil','Golden Anvil','Etc',300000,900,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (989,'Emperium_Anvil','Emperium Anvil','Etc',600000,1000,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (990,'Boody_Red','Red Blood','Etc',1000,50,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (991,'Crystal_Blue','Crystal Blue','Etc',1000,50,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (992,'Wind_Of_Verdure','Wind of Verdure','Etc',1000,50,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (993,'Yellow_Live','Green Live','Etc',1000,50,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (994,'Flame_Heart','Flame Heart','Etc',3000,300,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (995,'Mistic_Frozen','Mystic Frozen','Etc',3000,300,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (996,'Rough_Wind','Rough Wind','Etc',3000,300,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (997,'Great_Nature','Great Nature','Etc',3000,300,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (998,'Iron','Iron','Etc',100,50,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (999,'Steel','Steel','Etc',1000,100,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1000,'Star_Crumb','Star Crumb','Etc',4500,100,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1001,'Sparkling_Dust','Star Dust','Etc',1500,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1002,'Iron_Ore','Iron Ore','Etc',50,150,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1003,'Coal','Coal','Etc',500,50,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1004,'Patriotism_Marks','Chivalry Emblem','Etc',2,100,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1005,'Hammer_Of_Blacksmith','Hammer of Blacksmith','Etc',2,800,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1006,'Old_Magic_Book','Old Magicbook','Etc',2,30,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1007,'Penetration','Necklace of Wisdom','Etc',2,40,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1008,'Frozen_Heart','Necklace of Oblivion','Etc',2,100,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1009,'Sacred_Marks','Hand of God','Etc',2,20,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1010,'Phracon','Phracon','Etc',200,200,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1011,'Emveretarcon','Emveretarcon','Etc',1000,200,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1012,'Lizard_Scruff','Frill','Etc',250,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1013,'Colorful_Shell','Rainbow Shell','Etc',90,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1014,'Jaws_Of_Ant','Ant Jaw','Etc',232,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1015,'Thin_N\'_Long_Tongue','Tongue','Etc',528,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1016,'Rat_Tail','Rat Tail','Etc',52,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1017,'Moustache_Of_Mole','Mole Whiskers','Etc',106,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1018,'Nail_Of_Mole','Mole Claw','Etc',210,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1019,'Wooden_Block','Trunk','Etc',60,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1020,'Long_Hair','Black Hair','Etc',292,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1021,'Dokkaebi_Horn','Dokebi Horn','Etc',292,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1022,'Fox_Tail','Nine Tails','Etc',650,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1023,'Fish_Tail','Fish Tail','Etc',196,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1024,'Chinese_Ink','Squid Ink','Etc',264,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1025,'Spiderweb','Cobweb','Etc',184,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1026,'Acorn','Acorn','Etc',98,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1027,'Porcupine_Spike','Porcupine Quill','Etc',158,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1028,'Wild_Boar\'s_Mane','Mane','Etc',196,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1029,'Tiger\'s_Skin','Tiger Skin','Etc',548,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1030,'Tiger_Footskin','Tiger\'s Footskin','Etc',1500,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1031,'Limb_Of_Mantis','Mantis Scythe','Etc',196,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1032,'Blossom_Of_Maneater','Maneater Blossom','Etc',196,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1033,'Root_Of_Maneater','Maneater Root','Etc',208,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1034,'Cobold_Hair','Blue Hair','Etc',342,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1035,'Dragon_Canine','Dragon Canine','Etc',484,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1036,'Dragon_Scale','Dragon Scale','Etc',500,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1037,'Dragon_Train','Dragon Tail','Etc',1200,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1038,'Petite_DiablOfs_Horn','Little Evil Horn','Etc',528,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1039,'Petite_DiablOfs_Wing','Little Evil Wing','Etc',2000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1040,'Elder_Pixie\'s_Beard','Elder Pixie\'s Moustache','Etc',232,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1041,'Lantern','Lantern','Etc',250,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1042,'Short_Leg','Bug Leg','Etc',430,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1043,'Nail_Of_Orc','Orc Claw','Etc',168,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1044,'Tooth_Of_','Zenorc\'s Fang','Etc',264,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1045,'Sacred_Masque','Cultish Masque','Etc',412,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1046,'Tweezer','Scorpion Nipper','Etc',614,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1047,'Head_Of_Medusa','Dead Medusa','Etc',548,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1048,'Slender_Snake','Horrendous Hair','Etc',800,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1049,'Skirt_Of_Virgin','Skirt of Virgin','Etc',1700,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1050,'Tendon','Tendon','Etc',220,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1051,'Detonator','Detonator','Etc',450,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1052,'Single_Cell','Single Cell','Etc',46,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1053,'Tooth_Of_Ancient_Fish','Ancient Tooth','Etc',548,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1054,'Lip_Of_Ancient_Fish','Ancient Lips','Etc',1000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1055,'Earthworm_Peeling','Earthworm Peeling','Etc',196,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1056,'Grit','Grit','Etc',306,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1057,'Moth_Dust','Moth Dust','Etc',138,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1058,'Wing_Of_Moth','Moth Wings','Etc',200,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1059,'Transparent_Cloth','Fabric','Etc',306,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1060,'Golden_Hair','Golden Hair','Etc',430,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1061,'Starsand_Of_Witch','Witched Starsand','Etc',484,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1062,'Pumpkin_Head','Jack o\' Pumpkin','Etc',374,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1063,'Sharpened_Cuspid','Fang','Etc',680,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1064,'Reins','Reins','Etc',802,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1065,'Booby_Trap','Trap','Etc',100,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1066,'Tree_Of_Archer_1','Fine-grained Trunk','Etc',2,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1067,'Tree_Of_Archer_2','Solid Trunk','Etc',2,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1068,'Tree_Of_Archer_3','Barren Trunk','Etc',2,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (1069,'Mushroom_Of_Thief_1','Orange Net Mushroom','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (1070,'Mushroom_Of_Thief_2','Orange Gooey Mushroom','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (1071,'Mage_Test_1','Unknown Test Tube','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (1072,'Delivery_Message','Delivery Message','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (1073,'Merchant_Voucher_1','Voucher','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (1074,'Merchant_Voucher_2','Voucher','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (1075,'Merchant_Voucher_3','Voucher','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (1076,'Merchant_Voucher_4','Voucher','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (1077,'Merchant_Voucher_5','Voucher','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (1078,'Merchant_Voucher_6','Voucher','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (1079,'Merchant_Voucher_7','Voucher','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (1080,'Merchant_Voucher_8','Voucher','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (1081,'Merchant_Box_1','Delivery Box','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (1082,'Merchant_Box_2','Delivery Box','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (1083,'Merchant_Box_3','Delivery Box','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (1084,'Kapra\'s_Pass','Kafra Pass','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (1085,'Mage_Test_2','Unknown Test Tube','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (1086,'Mage_Test_3','Unknown Test Tube','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (1087,'Mage_Test_4','Unknown Test Tube','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (1088,'Morocc_Potion','Morocc Solution','Etc',10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (1089,'Payon_Potion','Payon Solution','Etc',10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (1090,'Mage_Test_Etc','Unknown Test Tube','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (1091,'Merchant_Box_Etc','Delivery Box','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1092,'Empty_Cylinder','Empty Test Tube','Etc',3,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1093,'Empty_Potion','Empty Potion Bottle','Etc',10,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1094,'Short_Daenggie','Short Daenggie','Etc',278,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1095,'Needle_Of_Alarm','Needle of Alarm','Etc',546,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1096,'Round_Shell','Round Shell','Etc',780,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1097,'Worn_Out_Page','Worn Out Page','Etc',948,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1098,'Manacles','Manacles','Etc',658,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1099,'Worn_Out_Prison_Uniform','Worn-out Prison Uniform','Etc',680,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_assassin`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_ammo`,`equip_level_min`) VALUES (1750,'Arrow','Arrow','Ammo','Arrow',1,1,25,true,true,true,true,true,true,true,1); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_assassin`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_ammo`,`equip_level_min`,`script`) VALUES (1751,'Silver_Arrow','Silver Arrow','Ammo','Arrow',3,2,30,true,true,true,true,true,true,true,1,'bonus bAtkEle,Ele_Holy;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_assassin`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_ammo`,`equip_level_min`,`script`) VALUES (1752,'Fire_Arrow','Fire Arrow','Ammo','Arrow',3,2,30,true,true,true,true,true,true,true,1,'bonus bAtkEle,Ele_Fire;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_assassin`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_ammo`,`equip_level_min`) VALUES (1753,'Steel_Arrow','Steel Arrow','Ammo','Arrow',4,2,40,true,true,true,true,true,true,true,1); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_assassin`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_ammo`,`equip_level_min`,`script`) VALUES (1754,'Crystal_Arrow','Crystal Arrow','Ammo','Arrow',3,2,30,true,true,true,true,true,true,true,1,'bonus bAtkEle,Ele_Water;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_assassin`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_ammo`,`equip_level_min`,`script`) VALUES (1755,'Arrow_Of_Wind','Arrow of Wind','Ammo','Arrow',3,2,30,true,true,true,true,true,true,true,1,'bonus bAtkEle,Ele_Wind;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_assassin`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_ammo`,`equip_level_min`,`script`) VALUES (1756,'Stone_Arrow','Stone Arrow','Ammo','Arrow',3,2,30,true,true,true,true,true,true,true,1,'bonus bAtkEle,Ele_Earth;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_assassin`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_ammo`,`equip_level_min`,`script`) VALUES (1757,'Immatrial_Arrow','Immaterial Arrow','Ammo','Arrow',3,1,30,true,true,true,true,true,true,true,1,'bonus bAtkEle,Ele_Ghost;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_assassin`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_ammo`,`equip_level_min`,`script`) VALUES (1758,'Stun_Arrow','Stun Arrow','Ammo','Arrow',10,3,1,true,true,true,true,true,true,true,1,'bonus2 bAddEff,Eff_Stun,1000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_assassin`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_ammo`,`equip_level_min`,`script`) VALUES (1759,'Freezing_Arrow','Frozen Arrow','Ammo','Arrow',10,3,1,true,true,true,true,true,true,true,1,'bonus bAtkEle,Ele_Water; bonus2 bAddEff,Eff_Freeze,1000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_assassin`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_ammo`,`equip_level_min`,`script`) VALUES (1760,'Flash_Arrow','Flash Arrow','Ammo','Arrow',10,3,1,true,true,true,true,true,true,true,1,'bonus2 bAddEff,Eff_Blind,1000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_assassin`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_ammo`,`equip_level_min`,`script`) VALUES (1761,'Curse_Arrow','Cursed Arrow','Ammo','Arrow',10,3,1,true,true,true,true,true,true,true,1,'bonus2 bAddEff,Eff_Curse,1000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_assassin`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_ammo`,`equip_level_min`,`script`) VALUES (1762,'Rusty_Arrow','Rusty Arrow','Ammo','Arrow',3,2,30,true,true,true,true,true,true,true,1,'bonus bAtkEle,Ele_Poison;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_assassin`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_ammo`,`equip_level_min`,`script`) VALUES (1763,'Poison_Arrow','Poison Arrow','Ammo','Arrow',10,3,1,true,true,true,true,true,true,true,1,'bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,2000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_assassin`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_ammo`,`equip_level_min`,`script`) VALUES (1764,'Incisive_Arrow','Sharp Arrow','Ammo','Arrow',20,3,10,true,true,true,true,true,true,true,1,'bonus bCriticalLong,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_assassin`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_ammo`,`equip_level_min`) VALUES (1765,'Oridecon_Arrow','Oridecon Arrow','Ammo','Arrow',30,3,50,true,true,true,true,true,true,true,1); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_assassin`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_ammo`,`equip_level_min`,`script`) VALUES (1766,'Arrow_Of_Counter_Evil','Arrow of Counter Evil','Ammo','Arrow',40,3,50,true,true,true,true,true,true,true,1,'bonus bAtkEle,Ele_Holy;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_assassin`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_ammo`,`equip_level_min`,`script`) VALUES (1767,'Arrow_Of_Shadow','Arrow of Shadow','Ammo','Arrow',3,2,30,true,true,true,true,true,true,true,1,'bonus bAtkEle,Ele_Dark;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_assassin`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_ammo`,`equip_level_min`,`script`) VALUES (1768,'Sleep_Arrow','Sleep Arrow','Ammo','Arrow',10,3,1,true,true,true,true,true,true,true,1,'bonus2 bAddEff,Eff_Sleep,2000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_assassin`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_ammo`,`equip_level_min`,`script`) VALUES (1769,'Silence_Arrow','Mute Arrow','Ammo','Arrow',10,3,1,true,true,true,true,true,true,true,1,'bonus2 bAddEff,Eff_Silence,1000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_assassin`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_ammo`,`equip_level_min`) VALUES (1770,'Iron_Arrow','Iron Arrow','Ammo','Arrow',2,1,30,true,true,true,true,true,true,true,1); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_assassin`,`location_ammo`,`equip_level_min`) VALUES (1771,'Venom_Knife','Venom Knife','Ammo','Dagger',50,5,30,true,true,1); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_assassin`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_ammo`,`equip_level_min`,`script`) VALUES (1772,'Holy_Arrow','Holy Arrow','Ammo','Arrow',3,2,50,true,true,true,true,true,true,true,1,'bonus bAtkEle,Ele_Holy; bonus2 bAddRace,RC_Demon,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4001,'Poring_Card','Poring Card','Card',20,10,true,true,'bonus bLuk,2; bonus bFlee2,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4002,'Fabre_Card','Fabre Card','Card',20,10,true,true,'bonus bVit,1; bonus bMaxHP,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4003,'Pupa_Card','Pupa Card','Card',20,10,true,true,'bonus bMaxHP,700;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4004,'Drops_Card','Drops Card','Card',20,10,true,true,'bonus bDex,1; bonus bHit,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4005,'Poring__Card','Santa Poring Card','Card',20,10,true,true,'bonus2 bAddEle,Ele_Dark,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4006,'Lunatic_Card','Lunatic Card','Card',20,10,true,true,'bonus bLuk,1; bonus bCritical,1; bonus bFlee2,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4007,'Pecopeco_Egg_Card','Peco Peco Egg Card','Card',20,10,true,true,'bonus2 bAddRace,RC_Formless,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4008,'Picky_Card','Picky Card','Card',20,10,true,true,'bonus bStr,1; bonus bBaseAtk,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4009,'Chonchon_Card','Chonchon Card','Card',20,10,true,true,'bonus bAgi,1; bonus bFlee,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4010,'Wilow_Card','Willow Card','Card',20,10,true,true,true,true,'bonus bMaxSP,80;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4011,'Picky__Card','Picky Egg Card','Card',20,10,true,true,'bonus bVit,1; bonus bMaxHP,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4012,'Thief_Bug_Egg_Card','Thief Bug Egg Card','Card',20,10,true,true,'bonus bMaxHP,400;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4013,'Andre_Egg_Card','Andre Egg Card','Card',20,10,true,true,'bonus bMaxHPrate,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4014,'Roda_Frog_Card','Roda Frog Card','Card',20,10,true,true,'bonus bMaxHP,400; bonus bMaxSP,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4015,'Condor_Card','Condor Card','Card',20,10,true,true,'bonus bFlee,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4016,'Thief_Bug_Card','Thief Bug Card','Card',20,10,true,true,'bonus bAgi,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4017,'Savage_Babe_Card','Savage Babe Card','Card',20,10,true,true,'bonus2 bAddEff,Eff_Stun,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4018,'Andre_Larva_Card','Andre Larva Card','Card',20,10,true,true,'bonus bInt,1; bonus bMaxSP,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4019,'Hornet_Card','Hornet Card','Card',20,10,true,true,'bonus bStr,1; bonus bBaseAtk,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4020,'Farmiliar_Card','Familiar Card','Card',20,10,true,true,'bonus2 bAddEff,Eff_Blind,500; bonus bBaseAtk,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4021,'Rocker_Card','Rocker Card','Card',20,10,true,true,'bonus bDex,1; bonus bBaseAtk,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4022,'Spore_Card','Spore Card','Card',20,10,true,true,true,'bonus bVit,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4023,'Desert_Wolf_Babe_Card','Baby Desert Wolf Card','Card',20,10,true,true,'bonus bInt,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4024,'Plankton_Card','Plankton Card','Card',20,10,true,true,'bonus2 bAddEff,Eff_Sleep,500; bonus bBaseAtk,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4025,'Skeleton_Card','Skeleton Card','Card',20,10,true,true,'bonus bBaseAtk,10; bonus2 bAddEff,Eff_Stun,200;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4026,'Thief_Bug_Female_Card','Female Thief Bug Card','Card',20,10,true,true,'bonus bAgi,1; bonus bFlee,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4027,'Kukre_Card','Kukre Card','Card',20,10,true,true,true,'bonus bAgi,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4028,'Tarou_Card','Tarou Card','Card',20,10,true,true,true,'bonus bStr,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4029,'Wolf_Card','Wolf Card','Card',20,10,true,true,'bonus bBaseAtk,15; bonus bCritical,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4030,'Mandragora_Card','Mandragora Card','Card',20,10,true,true,'bonus2 bAddEle,Ele_Wind,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4031,'Pecopeco_Card','Peco Peco Card','Card',20,10,true,true,'bonus bMaxHPrate,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4032,'Ambernite_Card','Ambernite Card','Card',20,10,true,true,'bonus bDef,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4033,'Poporing_Card','Poporing Card','Card',20,10,true,true,true,'skill "TF_DETOXIFY",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4034,'Worm_Tail_Card','Wormtail Card','Card',20,10,true,true,true,'bonus bDex,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4035,'Hydra_Card','Hydra Card','Card',20,10,true,true,'bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4036,'Muka_Card','Muka Card','Card',20,10,true,true,true,'bonus bHPrecovRate,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4037,'Snake_Card','Snake Card','Card',20,10,true,true,'bonus2 bAddEff,Eff_Poison,500; bonus bBaseAtk,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4038,'Zombie_Card','Zombie Card','Card',20,10,true,true,'bonus bHPrecovRate,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4039,'Stainer_Card','Stainer Card','Card',20,10,true,true,true,true,'bonus2 bResEff,Eff_Silence,2000; bonus bDef,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4040,'Creamy_Card','Creamy Card','Card',20,10,true,true,true,'skill "AL_TELEPORT",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4041,'Coco_Card','Coco Card','Card',20,10,true,true,true,true,'bonus2 bResEff,Eff_Sleep,2000; bonus bDef,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4042,'Steel_Chonchon_Card','Steel Chonchon Card','Card',20,10,true,true,'bonus2 bSubEle,Ele_Wind,10; bonus bDef,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4043,'Andre_Card','Andre Card','Card',20,10,true,true,'bonus bBaseAtk,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4044,'Smokie_Card','Smokie Card','Card',20,10,true,true,true,'skill "TF_HIDING",1;','sc_end SC_HIDING;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4045,'Horn_Card','Horn Card','Card',20,10,true,true,'bonus bLongAtkDef,35;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4046,'Martin_Card','Martin Card','Card',20,10,true,true,true,true,'bonus2 bResEff,Eff_Blind,2000; bonus bDef,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4047,'Ghostring_Card','Ghostring Card','Card',20,10,true,true,'bonus bDefEle,Ele_Ghost; bonus bHPrecovRate,-25;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4048,'Poison_Spore_Card','Poison Spore Card','Card',20,10,true,true,true,'skill "TF_POISON",3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4049,'Vadon_Card','Vadon Card','Card',20,10,true,true,'bonus2 bAddEle,Ele_Fire,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4050,'Thief_Bug_Male_Card','Male Thief Bug Card','Card',20,10,true,true,'bonus bAgi,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4051,'Yoyo_Card','Yoyo Card','Card',20,10,true,true,true,'bonus bFlee2,5; bonus bAgi,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4052,'Elder_Wilow_Card','Elder Willow Card','Card',20,10,true,true,true,true,'bonus bInt,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4053,'Vitata_Card','Vitata Card','Card',20,10,true,true,true,'skill "AL_HEAL",1; bonus bUseSPrate,25;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4054,'Angeling_Card','Angeling Card','Card',20,10,true,true,'bonus bDefEle,Ele_Holy;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4055,'Marina_Card','Marina Card','Card',20,10,true,true,'bonus2 bAddEff,Eff_Freeze,500; bonus bBaseAtk,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4056,'Dustiness_Card','Dustiness Card','Card',20,10,true,true,'bonus2 bSubEle,Ele_Wind,30; bonus bFlee,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4057,'Metaller_Card','Metaller Card','Card',20,10,true,true,'bonus2 bAddEff,Eff_Silence,500; bonus bBaseAtk,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4058,'Thara_Frog_Card','Thara Frog Card','Card',20,10,true,true,'bonus2 bSubRace,RC_DemiHuman,30; bonus2 bSubRace,RC_Player_Human,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4059,'Soldier_Andre_Card','Soldier Andre Card','Card',20,10,true,true,'bonus2 bSubRace,RC_Plant,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4060,'Goblin_Card','Goblin Card','Card',20,10,true,true,'bonus2 bAddRace,RC_Brute,20; bonus2 bAddRace,RC_Player_Doram,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4061,'Cornutus_Card','Cornutus Card','Card',20,10,true,true,'bonus bUnbreakableArmor; bonus bDef,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4062,'Anacondaq_Card','Anacondaq Card','Card',20,10,true,true,'bonus2 bAddEle,Ele_Poison,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4063,'Caramel_Card','Caramel Card','Card',20,10,true,true,'bonus2 bAddRace,RC_Insect,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4064,'Zerom_Card','Zerom Card','Card',20,10,true,true,true,'bonus bDex,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4065,'Kaho_Card','Kaho Card','Card',20,10,true,true,'bonus2 bAddEle,Ele_Earth,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4066,'Orc_Warrior_Card','Orc Warrior Card','Card',20,10,true,true,'bonus2 bSubRace,RC_Brute,30; bonus2 bSubRace,RC_Player_Doram,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4067,'Megalodon_Card','Megalodon Card','Card',20,10,true,true,'bonus2 bResEff,Eff_Freeze,2000; bonus bDef,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4068,'Scorpion_Card','Scorpion Card','Card',20,10,true,true,'bonus2 bAddRace,RC_Plant,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4069,'Drainliar_Card','Drainliar Card','Card',20,10,true,true,'bonus2 bAddEle,Ele_Water,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4070,'Eggyra_Card','Eggyra Card','Card',20,10,true,true,'bonus bSPrecovRate,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4071,'Orc_Zombie_Card','Orc Zombie Card','Card',20,10,true,true,'bonus2 bSubEle,Ele_Undead,30; bonus bFlee,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4072,'Golem_Card','Golem Card','Card',20,10,true,true,'bonus bUnbreakableWeapon; bonus bBaseAtk,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4073,'Pirate_Skel_Card','Pirate Skeleton Card','Card',20,10,true,true,true,'skill "MC_DISCOUNT",5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4074,'BigFoot_Card','Bigfoot Card','Card',20,10,true,true,'bonus2 bSubRace,RC_Insect,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4075,'Argos_Card','Argos Card','Card',20,10,true,true,'bonus2 bResEff,Eff_Stone,2000; bonus bDef,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4076,'Magnolia_Card','Magnolia Card','Card',20,10,true,true,'bonus2 bAddEff,Eff_Curse,500; bonus bBaseAtk,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4077,'Phen_Card','Phen Card','Card',20,10,true,true,true,'bonus bNoCastCancel; bonus bCastrate,25;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4078,'Savage_Card','Savage Card','Card',20,10,true,true,'bonus bVit,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4079,'Mantis_Card','Mantis Card','Card',20,10,true,true,true,'bonus bStr,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4080,'Flora_Card','Flora Card','Card',20,10,true,true,'bonus2 bAddRace,RC_Fish,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4081,'Hode_Card','Hode Card','Card',20,10,true,true,'bonus2 bSubEle,Ele_Earth,30; bonus bFlee,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4082,'Desert_Wolf_Card','Desert Wolf Card','Card',20,10,true,true,'bonus2 bAddSize,Size_Small,15; bonus bBaseAtk,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4083,'Rafflesia_Card','Rafflesia Card','Card',20,10,true,true,'bonus2 bSubRace,RC_Fish,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4084,'Marine_Sphere_Card','Marine Sphere Card','Card',20,10,true,true,true,'skill "SM_MAGNUM",3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4085,'Orc_Skeleton_Card','Orc Skeleton Card','Card',20,10,true,true,'bonus2 bAddEle,Ele_Holy,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4086,'Soldier_Skeleton_Card','Soldier Skeleton Card','Card',20,10,true,true,'bonus bCritical,9;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4087,'Giearth_Card','Giearth Card','Card',20,10,true,true,true,true,'bonus2 bResEff,Eff_Confusion,10000; bonus2 bSubEle,Ele_Earth,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4088,'Frilldora_Card','Frilldora Card','Card',20,10,true,true,'skill "AS_CLOAKING",1;','sc_end SC_CLOAKING;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4089,'Sword_Fish_Card','Swordfish Card','Card',20,10,true,true,'bonus bDefEle,Ele_Water; bonus bDef,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4090,'Munak_Card','Munak Card','Card',20,10,true,true,'bonus2 bResEff,Eff_Stone,1500; bonus2 bSubEle,Ele_Earth,5; bonus bDef,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4091,'Kobold_Card','Kobold Card','Card',20,10,true,true,true,'bonus bStr,1; bonus bCritical,4;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4092,'Skel_Worker_Card','Skeleton Worker Card','Card',20,10,true,true,'bonus2 bAddSize,Size_Medium,15; bonus bBaseAtk,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4093,'Obeaune_Card','Obeaune Card','Card',20,10,true,true,true,'skill "AL_CURE",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4094,'Archer_Skeleton_Card','Archer Skeleton Card','Card',20,10,true,true,'bonus bLongAtkRate,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4095,'Marse_Card','Marse Card','Card',20,10,true,true,'bonus2 bSubEle,Ele_Water,30; bonus bFlee,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4096,'Zenorc_Card','Zenorc Card','Card',20,10,true,true,'bonus2 bAddEff,Eff_Poison,400; bonus bBaseAtk,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4097,'Matyr_Card','Matyr Card','Card',20,10,true,true,'bonus bMaxHPrate,10; bonus bAgi,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4098,'Dokebi_Card','Dokebi Card','Card',20,10,true,true,'bonus bDefEle,Ele_Wind; bonus bDef,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4099,'Pasana_Card','Pasana Card','Card',20,10,true,true,'bonus bDefEle,Ele_Fire; bonus bDef,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4100,'Sohee_Card','Sohee Card','Card',20,10,true,true,'bonus bMaxSPrate,15; bonus bSPrecovRate,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4101,'Sand_Man_Card','Sandman Card','Card',20,10,true,true,'bonus bDefEle,Ele_Earth; bonus bDef,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4102,'Whisper_Card','Whisper Card','Card',20,10,true,true,'bonus bFlee,20; bonus2 bSubEle,Ele_Ghost,-50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4103,'Horong_Card','Horong Card','Card',20,10,true,true,true,'skill "MG_SIGHT",1;','sc_end SC_SIGHT;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4104,'Requiem_Card','Requiem Card','Card',20,10,true,true,'bonus2 bAddEff,Eff_Confusion,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4105,'Marc_Card','Marc Card','Card',20,10,true,true,'bonus2 bSubEle,Ele_Water,5; bonus2 bResEff,Eff_Freeze,10000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4106,'Mummy_Card','Mummy Card','Card',20,10,true,true,'bonus bHit,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4107,'Verit_Card','Verit Card','Card',20,10,true,true,'bonus bMaxHPrate,8; bonus bMaxSPrate,8;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4108,'Myst_Card','Myst Card','Card',20,10,true,true,'bonus2 bSubEle,Ele_Poison,30; bonus bFlee,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4109,'Jakk_Card','Jakk Card','Card',20,10,true,true,'bonus2 bSubEle,Ele_Fire,30; bonus bFlee,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4110,'Ghoul_Card','Ghoul Card','Card',20,10,true,true,true,true,'bonus2 bResEff,Eff_Poison,2000; bonus bDef,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4111,'Strouf_Card','Strouf Card','Card',20,10,true,true,'bonus2 bAddRace,RC_Demon,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4112,'Marduk_Card','Marduk Card','Card',20,10,true,true,true,true,'bonus2 bResEff,Eff_Silence,10000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4113,'Marionette_Card','Marionette Card','Card',20,10,true,true,'bonus2 bSubEle,Ele_Ghost,30; bonus bFlee,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4114,'Argiope_Card','Argiope Card','Card',20,10,true,true,'bonus bDefEle,Ele_Poison; bonus bDef,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4115,'Hunter_Fly_Card','Hunter Fly Card','Card',20,10,true,true,'bonus2 bHPDrainRate,30,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4116,'Isis_Card','Isis Card','Card',20,10,true,true,'bonus2 bSubEle,Ele_Dark,30; bonus bFlee,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4117,'Side_Winder_Card','Sidewinder Card','Card',20,10,true,true,'skill "TF_DOUBLE",1; bonus bDoubleRate,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4118,'Petit_Card','Earth Petite Card','Card',20,10,true,true,'bonus2 bAddRace,RC_Dragon,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4119,'Bathory_Card','Bathory Card','Card',20,10,true,true,'bonus bDefEle,Ele_Dark;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4120,'Petit__Card','Sky Petite Card','Card',20,10,true,true,'bonus2 bSubRace,RC_Dragon,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4121,'Phreeoni_Card','Phreeoni Card','Card',20,10,true,true,'bonus bHit,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4122,'Deviruchi_Card','Deviruchi Card','Card',20,10,true,true,true,true,'bonus bStr,1; bonus2 bResEff,Eff_Blind,10000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4123,'Eddga_Card','Eddga Card','Card',20,10,true,true,'bonus bMaxHPrate,-25; bonus bNoWalkDelay;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4124,'Medusa_Card','Medusa Card','Card',20,10,true,true,'bonus2 bSubRace,RC_Demon,15; bonus2 bResEff,Eff_Stone,10000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4125,'Deviace_Card','Deviace Card','Card',20,10,true,true,'bonus2 bAddRace,RC_DemiHuman,7; bonus2 bAddRace,RC_Player_Human,7; bonus2 bAddRace,RC_Brute,7; bonus2 bAddRace,RC_Player_Doram,7; bonus2 bAddRace,RC_Plant,7; bonus2 bAddRace,RC_Insect,7;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4126,'Minorous_Card','Minorous Card','Card',20,10,true,true,'bonus2 bAddSize,Size_Large,15; bonus bBaseAtk,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4127,'Nightmare_Card','Nightmare Card','Card',20,10,true,true,true,true,'bonus2 bResEff,Eff_Sleep,10000; bonus bAgi,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4128,'Golden_Bug_Card','Golden Thief Bug Card','Card',20,10,true,true,'bonus bNoMagicDamage,100; bonus bUseSPrate,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4129,'Baphomet__Card','Bapho Jr. Card','Card',20,10,true,true,'bonus bAgi,3; bonus bCritical,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4130,'Scorpion_King_Card','Scorpion King Card','Card',20,10,true,true,'bonus2 bAddEle,Ele_Undead,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4131,'Moonlight_Flower_Card','Moonlight Flower Card','Card',20,10,true,true,'bonus bSpeedRate,25;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4132,'Mistress_Card','Mistress Card','Card',20,10,true,true,true,true,'bonus bNoGemStone; bonus bUseSPrate,25;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4133,'Daydric_Card','Raydric Card','Card',20,10,true,true,'bonus2 bSubEle,Ele_Neutral,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4134,'Dracula_Card','Dracula Card','Card',20,10,true,true,'bonus2 bSPDrainRate,100,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4135,'Orc_Load_Card','Orc Lord Card','Card',20,10,true,true,'bonus bShortWeaponDamageReturn,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4136,'Khalitzburg_Card','Khalitzburg Card','Card',20,10,true,true,'bonus2 bSubRace,RC_Demon,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4137,'Drake_Card','Drake Card','Card',20,10,true,true,'bonus bNoSizeFix;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4138,'Anubis_Card','Anubis Card','Card',20,10,true,true,'bonus2 bSubRace,RC_Angel,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4139,'Joker_Card','Joker Card','Card',20,10,true,true,true,'skill "TF_STEAL",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4140,'Knight_Of_Abyss_Card','Abysmal Knight Card','Card',20,10,true,true,'bonus2 bAddClass,Class_Boss,25;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4141,'Evil_Druid_Card','Evil Druid Card','Card',20,10,true,true,'bonus bDefEle,Ele_Undead; bonus bInt,1; bonus bDef,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4142,'Doppelganger_Card','Doppelganger Card','Card',20,10,true,true,'bonus bAspdRate,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4143,'Orc_Hero_Card','Orc Hero Card','Card',20,10,true,true,true,true,'bonus bVit,3; bonus2 bResEff,Eff_Stun,10000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4144,'Osiris_Card','Osiris Card','Card',20,10,true,true,true,'bonus bRestartFullRecover;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4145,'Berzebub_Card','Berzebub Card','Card',20,10,true,true,true,'bonus bCastrate,-30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4146,'Maya_Card','Maya Card','Card',20,10,true,true,'bonus bMagicDamageReturn,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4147,'Baphomet_Card','Baphomet Card','Card',20,10,true,true,'bonus bHit,-10; bonus bSplashRange,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4148,'Pharaoh_Card','Pharaoh Card','Card',20,10,true,true,true,true,'bonus bUseSPrate,-30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4149,'Gargoyle_Card','Gargoyle Card','Card',20,10,true,true,true,'bonus3 bAddMonsterDropItem,12028,RC_Insect,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4150,'Goat_Card','Goat Card','Card',20,10,true,true,'if(getrefine()<6) { bonus bDef,2; bonus bMdef,5; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4151,'Gajomart_Card','Gajomart Card','Card',20,10,true,true,'bonus2 bSubRace,RC_Plant,-20; bonus2 bExpAddRace,RC_Plant,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4152,'Galapago_Card','Galapago Card','Card',20,10,true,true,true,'bonus2 bAddItemGroupHealRate,IG_Juice,50; bonus3 bAddMonsterDropItem,531,RC_Insect,300; bonus3 bAddMonsterDropItem,532,RC_Insect,300; bonus3 bAddMonsterDropItem,534,RC_Insect,300;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4153,'Crab_Card','Crab Card','Card',20,10,true,true,'bonus bBaseAtk,5; bonus2 bAddDamageClass,1266,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4154,'Rice_Cake_Boy_Card','Dumpling Child Card','Card',20,10,true,true,true,'bonus2 bAddItemGroupHealRate,IG_Candy,50; bonus3 bAddMonsterDropItem,529,RC_DemiHuman,300; bonus3 bAddMonsterDropItem,530,RC_DemiHuman,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4155,'Goblin_Leader_Card','Goblin Leader Card','Card',20,10,true,true,'bonus2 bAddRace2,RC2_Goblin,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4156,'Steam_Goblin_Card','Goblin Steamrider Card','Card',20,10,true,true,'bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Formless,7;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4157,'Goblin_Archer_Card','Goblin Archer Card','Card',20,10,true,true,'bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Undead,7;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4158,'Flying_Deleter_Card','Sky Deleter Card','Card',20,10,true,true,'bonus bHPrecovRate,-100; bonus bHPGainValue,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4159,'Nine_Tail_Card','Nine Tail Card','Card',20,10,true,true,'bonus bAgi,2; if(getrefine()>8) bonus bFlee,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4160,'Antique_Firelock_Card','Firelock Soldier Card','Card',20,10,true,true,'bonus bStr,2; if(getrefine()>8) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4161,'Grand_Peco_Card','Grand Peco Card','Card',20,10,true,true,true,true,'bonus3 bAutoSpellWhenHit,"PR_GLORIA",1,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4162,'Grizzly_Card','Grizzly Card','Card',20,10,true,true,'bonus2 bAddEffWhenHit,Eff_Blind,300;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4163,'Gryphon_Card','Gryphon Card','Card',20,10,true,true,'bonus bFlee,2; bonus bCritical,7; if(BaseClass==Job_Swordman) bonus3 bAutoSpell,"KN_BOWLINGBASH",5,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4164,'Gullinbursti_Card','Gullinbursti Card','Card',20,10,true,true,'bonus2 bSubRace,RC_Fish,-20; bonus2 bExpAddRace,RC_Fish,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4165,'Gig_Card','Gig Card','Card',20,10,true,true,'bonus2 bSPGainRace,RC_Insect,5;','heal 0,-5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4166,'Nightmare_Terror_Card','Nightmare Terror Card','Card',20,10,true,true,'bonus2 bAddEffWhenHit,Eff_Curse,300;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4167,'Neraid_Card','Nereid Card','Card',20,10,true,true,'bonus2 bSPGainRace,RC_Brute,5; bonus2 bSPGainRace,RC_Player_Doram,5;','heal 0,-5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4168,'Dark_Lord_Card','Dark Lord Card','Card',20,10,true,true,'bonus3 bAutoSpellWhenHit,"WZ_METEOR",5,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4169,'Dark_Illusion_Card','Dark Illusion Card','Card',20,10,true,true,true,true,'bonus bMaxHPrate,-10; bonus bMaxSPrate,-10; bonus bCastrate,-10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4170,'Dark_Frame_Card','Dark Frame Card','Card',20,10,true,true,'bonus2 bAddEffWhenHit,Eff_Stone,600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4171,'Dark_Priest_Card','Dark Priest Card','Card',20,10,true,true,'bonus2 bSPVanishRate,50,10; if(BaseJob==Job_Sage) bonus bSPDrainValue,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4172,'The_Paper_Card','The Paper Card','Card',20,10,true,true,'bonus bCritAtkRate,20; bonus bSPDrainValue,-1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4173,'Demon_Pungus_Card','Demon Pungus Card','Card',20,10,true,true,'bonus2 bAddEffWhenHit,Eff_Sleep,600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4174,'Deviling_Card','Deviling Card','Card',20,10,true,true,'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;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4175,'Poison_Toad_Card','Poisonous Toad Card','Card',20,10,true,true,true,'bonus3 bAutoSpell,"TF_POISON",1,20; bonus2 bAddSkillBlow,52,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4176,'Dullahan_Card','Dullahan Card','Card',20,10,true,true,'bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Dragon,7;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4177,'Dryad_Card','Dryad Card','Card',20,10,true,true,true,true,'bonus3 bAddMonsterDropItem,993,RC_Plant,100; bonus2 bSubEle,Ele_Earth,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4178,'Dragon_Tail_Card','Dragon Tail Card','Card',20,10,true,true,'bonus bAgi,1; bonus bFlee,10; bonus2 bSkillAtk,"AC_DOUBLE",5; bonus2 bSkillAtk,"AC_SHOWER",5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4179,'Dragon_Fly_Card','Dragon Fly Card','Card',20,10,true,true,'bonus bAgi,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4180,'Driller_Card','Driller Card','Card',20,10,true,true,'bonus2 bSPGainRace,RC_Dragon,5;','heal 0,-5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4181,'Disguise_Card','Disguise Card','Card',20,10,true,true,'bonus2 bAddEffWhenHit,Eff_Silence,300+600*(readparam(bVit)>=77);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4182,'Diabolic_Card','Diabolic Card','Card',20,10,true,true,'bonus2 bSPGainRace,RC_Demon,5;','heal 0,-5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4183,'Vagabond_Wolf_Card','Vagabond Wolf Card','Card',20,10,true,true,'bonus bStr,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4184,'Lava_Golem_Card','Lava Golem Card','Card',20,10,true,true,'bonus2 bAddRace2,RC2_Golem,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4185,'Rideword_Card','Rideword Card','Card',20,10,true,true,true,true,'bonus bInt,1; if(BaseClass==Job_Acolyte) { bonus bInt,1; bonus bMdef,1; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4186,'Raggler_Card','Raggler Card','Card',20,10,true,true,'bonus bStr,1; bonus bVit,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4187,'Raydric_Archer_Card','Raydric Archer Card','Card',20,10,true,true,true,'bonus3 bAddMonsterDropItem,12030,RC_Demon,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4188,'Leib_Olmai_Card','Leib Olmai Card','Card',20,10,true,true,true,true,'bonus2 bSubEle,Ele_Fire,10; bonus3 bAddMonsterDropItem,990,RC_Brute,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4189,'Wraith_Dead_Card','Wraith Dead Card','Card',20,10,true,true,'bonus2 bAddEffWhenHit,Eff_Curse,600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4190,'Wraith_Card','Wraith Card','Card',20,10,true,true,true,'bonus3 bAddMonsterDropItem,12027,RC_Undead,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4191,'Loli_Ruri_Card','Loli Ruri Card','Card',20,10,true,true,'bonus3 bAutoSpellWhenHit,"AL_HEAL",3,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4192,'Rotar_Zairo_Card','Rotar Zairo Card','Card',20,10,true,true,'bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Fish,7;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4193,'Lude_Card','Lude Card','Card',20,10,true,true,true,'if(BaseJob==Job_Novice||BaseJob==Job_SuperNovice) bonus3 bAutoSpellWhenHit,"SM_ENDURE",1,200;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4194,'Rybio_Card','Rybio Card','Card',20,10,true,true,'bonus2 bAddEffWhenHit,Eff_Stun,300+600*(readparam(bDex)>=77);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4195,'Leaf_Cat_Card','Leaf Cat Card','Card',20,10,true,true,true,true,'bonus2 bSubEle,Ele_Water,10; bonus3 bAddMonsterDropItem,991,RC_Fish,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4196,'Marin_Card','Marin Card','Card',20,10,true,true,true,'bonus2 bAddMonsterDropItem,909,2000; bonus2 bAddMonsterDropItem,7126,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4197,'Mastering_Card','Mastering Card','Card',20,10,true,true,'bonus bLuk,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4198,'Maya_Puple_Card','Maya Purple Card','Card',20,10,true,true,true,true,'bonus bIntravision;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4199,'Merman_Card','Merman Card','Card',20,10,true,true,'bonus bHPrecovRate,10; bonus bSPrecovRate,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4200,'Megalith_Card','Megalith Card','Card',20,10,true,true,'if(getrefine()<6) bonus bMdef,7;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4201,'Majoruros_Card','Majoruros Card','Card',20,10,true,true,'bonus2 bAddEffWhenHit,Eff_Stun,600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4202,'Civil_Servant_Card','Mao Guai Card','Card',20,10,true,true,'bonus2 bAddEle,Ele_Ghost,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4203,'Mutant_Dragon_Card','Mutant Dragonoid Card','Card',20,10,true,true,'bonus bBaseAtk,15; bonus3 bAutoSpell,"MG_FIREBALL",3+2*(getskilllv("MG_FIREBALL")==10),50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4204,'Mini_Demon_Card','Mini Demon Card','Card',20,10,true,true,'bonus2 bSubRace,RC_Brute,-20; bonus2 bSubRace,RC_Player_Doram,-20; bonus2 bExpAddRace,RC_Brute,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4205,'Mimic_Card','Mimic Card','Card',20,10,true,true,true,'bonus2 bAddMonsterDropItem,603,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4206,'Mystcase_Card','Myst Case Card','Card',20,10,true,true,true,true,'bonus2 bAddMonsterDropItem,644,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4207,'Mysteltainn_Card','Mysteltainn Card','Card',20,10,true,true,'bonus2 bSubSize,Size_Small,25; bonus bDef,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4208,'Miyabi_Ningyo_Card','Miyabi Doll Card','Card',20,10,true,true,'bonus bMaxSPrate,10; bonus2 bSkillAtk,"MG_FROSTDIVER",5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4209,'Violy_Card','Violy Card','Card',20,10,true,true,true,'bonus3 bAutoSpell,"BA_FROSTJOKER",1+4*(getskilllv("BA_FROSTJOKER")==5),20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4210,'Wander_Man_Card','Wanderer Card','Card',20,10,true,true,'if(!isequipped(4172,4257,4230,4272)) bonus3 bAutoSpell,"RG_INTIMIDATE",1,20; if(BaseClass==Job_Thief) bonus bFlee,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4211,'Vocal_Card','Vocal Card','Card',20,10,true,true,'bonus bMdef,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4212,'Bon_Gun_Card','Bongun Card','Card',20,10,true,true,true,'bonus3 bAutoSpell,"SM_BASH",1,20; bonus2 bAddSkillBlow,"SM_BASH",5; bonus2 bAddDefMonster,1026,-100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4213,'Brilight_Card','Brilight Card','Card',20,10,true,true,'bonus2 bAddEffWhenHit,Eff_Silence,600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4214,'Bloody_Murderer_Card','Bloody Murderer Card','Card',20,10,true,true,'bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Insect,7;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4215,'Blazzer_Card','Blazer Card','Card',20,10,true,true,true,'bonus2 bAddMonsterDropItemGroup,IG_Food,600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4216,'Sasquatch_Card','Sasquatch Card','Card',20,10,true,true,'bonus2 bAddEffWhenHit,Eff_Freeze,600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4217,'Live_Peach_Tree_Card','Enchanted Peach Tree Card','Card',20,10,true,true,'bonus3 bAutoSpell,"AL_HEAL",1+9*(getskilllv("AL_HEAL")==10),20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4218,'Succubus_Card','Succubus Card','Card',20,10,true,true,'bonus bVit,-3; bonus bHPrecovRate,-20; bonus bMaxHP,1000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4219,'Sageworm_Card','Sage Worm Card','Card',20,10,true,true,true,'bonus2 bAddMonsterDropItem,715,30; bonus2 bAddMonsterDropItem,716,30; bonus2 bAddMonsterDropItem,717,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4220,'Solider_Card','Solider Card','Card',20,10,true,true,'bonus bDef,2; bonus bMdef,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4221,'Skeleton_General_Card','Skeleton General Card','Card',20,10,true,true,'bonus2 bSubRace,RC_Insect,-20; bonus2 bExpAddRace,RC_Insect,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4222,'Skel_Prisoner_Card','Skeleton Prisoner Card','Card',20,10,true,true,'bonus2 bAddEffWhenHit,Eff_Sleep,300;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4223,'Stalactic_Golem_Card','Stalactic Golem Card','Card',20,10,true,true,true,true,'bonus bDef,1; bonus2 bResEff,Eff_Stun,2000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4224,'Stem_Worm_Card','Stem Worm Card','Card',20,10,true,true,true,'bonus3 bAddMonsterDropItem,12032,RC_Brute,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4225,'Stone_Shooter_Card','Stone Shooter Card','Card',20,10,true,true,'bonus bBaseAtk,10; bonus bHit,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4226,'Sting_Card','Sting Card','Card',20,10,true,true,'bonus bDef,2; if(getrefine()>8) bonus bMdef,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4227,'Spring_Rabbit_Card','Spring Rabbit Card','Card',20,10,true,true,true,'bonus2 bAddItemGroupHealRate,IG_Meat,50; bonus3 bAddMonsterDropItem,517,RC_Brute,200; bonus3 bAddMonsterDropItem,528,RC_Brute,200;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4228,'Sleeper_Card','Sleeper Card','Card',20,10,true,true,true,'bonus3 bAddMonsterDropItem,12031,RC_Fish,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4229,'C_Tower_Manager_Card','Tower Keeper Card','Card',20,10,true,true,true,true,'bonus bInt,1; bonus bCastrate,-5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4230,'Shinobi_Card','Shinobi Card','Card',20,10,true,true,true,'bonus bAgi,1; bonus3 bAutoSpellWhenHit,"AS_CLOAKING",5,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4231,'Increase_Soil_Card','Mi Gao Card','Card',20,10,true,true,'bonus2 bSubRace2,RC2_Guardian,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4232,'Wild_Ginseng_Card','Hermit Plant Card','Card',20,10,true,true,true,'bonus2 bAddItemGroupHealRate,IG_Herb,50; bonus3 bAddMonsterDropItem,507,RC_Plant,300; bonus3 bAddMonsterDropItem,508,RC_Plant,200; bonus3 bAddMonsterDropItem,509,RC_Plant,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4233,'Baby_Leopard_Card','Baby Leopard Card','Card',20,10,true,true,'bonus bLuk,3; if(BaseClass==Job_Merchant) bonus bUnbreakableArmor;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4234,'Anolian_Card','Anolian Card','Card',20,10,true,true,'bonus3 bAutoSpellWhenHit,"AC_CONCENTRATION",1+9*(getskilllv("AC_CONCENTRATION")==10),30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4235,'Cookie_XMAS_Card','Christmas Cookie Card','Card',20,10,true,true,'bonus2 bSubRace,RC_Angel,-20; bonus2 bExpAddRace,RC_Angel,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4236,'Amon_Ra_Card','Amon Ra Card','Card',20,10,true,true,'bonus bAllStats,1; bonus3 bAutoSpellWhenHit,"PR_KYRIE",10,(30+70*(readparam(bInt)>=99));'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4237,'Owl_Duke_Card','Owl Duke Card','Card',20,10,true,true,true,'bonus3 bAutoSpell,"PR_IMPOSITIO",3,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4238,'Owl_Baron_Card','Owl Baron Card','Card',20,10,true,true,true,'bonus3 bAutoSpell,"PR_LEXAETERNA",1,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4239,'Iron_Fist_Card','Iron Fist Card','Card',20,10,true,true,'bonus2 bSubRace,RC_Formless,-20; bonus2 bExpAddRace,RC_Formless,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4240,'Arclouse_Card','Arclouze Card','Card',20,10,true,true,'if(getrefine()<6) { bonus bDef,2; bonus bMdef,3; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4241,'Archangeling_Card','Arc Angeling Card','Card',20,10,true,true,true,true,'bonus bMaxHP,300; if(readparam(bLuk)>=77) { bonus bHPrecovRate,100; bonus bSPrecovRate,100; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4242,'Apocalips_Card','Apocalipse Card','Card',20,10,true,true,'bonus bVit,2; if(getrefine()>8) bonus bMaxHP,800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4243,'Antonio_Card','Antonio Card','Card',20,10,true,true,'bonus3 bAutoSpellWhenHit,"AL_TELEPORT",1,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4244,'Alarm_Card','Alarm Card','Card',20,10,true,true,'bonus3 bAutoSpellWhenHit,"MG_SIGHT",1,200; bonus bMaxHP,300; bonus bVit,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4245,'Am_Mut_Card','Am Mut Card','Card',20,10,true,true,'bonus2 bSubRace,RC_DemiHuman,-20; bonus2 bSubRace,RC_Player_Human,-20; bonus2 bExpAddRace,RC_DemiHuman,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4246,'Assulter_Card','Assaulter Card','Card',20,10,true,true,'bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_DemiHuman,7; bonus2 bCriticalAddRace,RC_Player_Human,7;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4247,'Aster_Card','Aster Card','Card',20,10,true,true,'bonus bBaseAtk,5; bonus2 bAddDamageClass,1074,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4248,'Ancient_Mummy_Card','Ancient Mummy Card','Card',20,10,true,true,'bonus3 bAutoSpellWhenHit,"AL_CRUCIS",5,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4249,'Ancient_Worm_Card','Ancient Worm Card','Card',20,10,true,true,'bonus2 bSubRace,RC_Demon,-20; bonus2 bExpAddRace,RC_Demon,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4250,'Executioner_Card','Executioner Card','Card',20,10,true,true,'bonus2 bSubSize,Size_Large,25; bonus bDef,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4251,'Elder_Card','Elder Card','Card',20,10,true,true,'bonus2 bAddRace2,RC2_Guardian,40;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4252,'Alligator_Card','Alligator Card','Card',20,10,true,true,true,'bonus bLongAtkDef,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4253,'Alice_Card','Alice Card','Card',20,10,true,true,'bonus2 bSubClass,Class_Boss,40; bonus2 bSubClass,Class_Normal,-40;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4254,'Tirfing_Card','Ogretooth Card','Card',20,10,true,true,'bonus2 bSubSize,Size_Medium,25; bonus bDef,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4255,'Orc_Lady_Card','Orc Lady Card','Card',20,10,true,true,'bonus2 bAddRace2,3,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4256,'Orc_Archer_Card','Orc Archer Card','Card',20,10,true,true,true,'bonus3 bAddMonsterDropItem,12034,RC_DemiHuman,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4257,'Wild_Rose_Card','Wild Rose Card','Card',20,10,true,true,'bonus bAgi,1; if(BaseClass==Job_Thief) bonus bFlee2,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4258,'Wicked_Nymph_Card','Evil Nymph Card','Card',20,10,true,true,true,true,'bonus bInt,1; bonus bMaxSP,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4259,'Wooden_Golem_Card','Wooden Golem Card','Card',20,10,true,true,'bonus bDef,1; bonus bHPrecovRate,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4260,'Wootan_Shooter_Card','Wootan Shooter Card','Card',20,10,true,true,true,true,'bonus bDef,1; bonus2 bResEff,Eff_Confusion,2000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4261,'Wootan_Fighter_Card','Wootan Fighter Card','Card',20,10,true,true,true,true,'bonus bDef,1; bonus2 bResEff,Eff_Bleeding,2000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4262,'Evil_Cloud_Hermit_Card','Cloud Hermit Card','Card',20,10,true,true,true,'bonus3 bAddMonsterDropItem,12029,RC_Plant,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4263,'Incant_Samurai_Card','Samurai Spector Card','Card',20,10,true,true,'bonus bIgnoreDefClass,Class_Normal; bonus bHPrecovRate,-100; bonus2 bHPLossRate,666,10000;','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; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4264,'Wind_Ghost_Card','Wind Ghost Card','Card',20,10,true,true,true,'bonus3 bAutoSpell,"WZ_JUPITEL",3+7*(getskilllv("WZ_JUPITEL")==10),20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4265,'Li_Me_Mang_Ryang_Card','Jing Guai Card','Card',20,10,true,true,true,'bonus3 bAddMonsterDropItem,12033,RC_Angel,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4266,'Eclipse_Card','Eclipse Card','Card',20,10,true,true,'bonus bVit,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4267,'Explosion_Card','Explosion Card','Card',20,10,true,true,'bonus2 bSubRace,RC_Dragon,-20; bonus2 bExpAddRace,RC_Dragon,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4268,'Injustice_Card','Injustice Card','Card',20,10,true,true,'bonus3 bAutoSpell,"AS_SONICBLOW",1,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4269,'Incubus_Card','Incubus Card','Card',20,10,true,true,true,true,'bonus bInt,-3; bonus bSPrecovRate,-20; bonus bMaxSP,150;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4270,'Giant_Spider_Card','Giant Spider Card','Card',20,10,true,true,'bonus2 bAddEffWhenHit,Eff_Poison,600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4271,'Giant_Honet_Card','Giant Hornet Card','Card',20,10,true,true,true,true,'bonus2 bSubEle,Ele_Wind,10; bonus3 bAddMonsterDropItem,992,RC_Insect,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4272,'Dancing_Dragon_Card','Zhu Po Long Card','Card',20,10,true,true,true,'bonus bAgi,1; bonus bCritical,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4273,'Shellfish_Card','Shell Fish Card','Card',20,10,true,true,'bonus bBaseAtk,5; bonus2 bAddDamageClass,1073,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4274,'Zombie_Master_Card','Zombie Master Card','Card',20,10,true,true,'bonus2 bSPGainRace,RC_Undead,5;','heal 0,-5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4275,'Zombie_Prisoner_Card','Zombie Prisoner Card','Card',20,10,true,true,'bonus2 bSubRace,RC_Undead,-20; bonus2 bExpAddRace,RC_Undead,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4276,'Lord_Of_Death_Card','Lord of The Dead Card','Card',20,10,true,true,'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;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4277,'Zherlthsh_Card','Zealotus Card','Card',20,10,true,true,'bonus bLuk,2; bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10; bonus2 bSkillAtk,"DC_THROWARROW",10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4278,'Gibbet_Card','Gibbet Card','Card',20,10,true,true,true,true,'if(getrefine()<6) bonus bMdef,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4279,'Deleter_Card','Earth Deleter Card','Card',20,10,true,true,'bonus bSPrecovRate,-100; bonus bSPGainValue,10;','heal 0,-100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4280,'Geographer_Card','Geographer Card','Card',20,10,true,true,'bonus3 bAutoSpellWhenHit,"AL_BLESSING",2+8*(getskilllv("AL_BLESSING")==10),30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4281,'Zipper_Bear_Card','Zipper Bear Card','Card',20,10,true,true,'bonus bBaseAtk,30; bonus bSPDrainValue,-1; if(BaseClass==Job_Merchant) bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4282,'Tengu_Card','Tengu Card','Card',20,10,true,true,true,'bonus2 bAddMonsterDropItemGroup,IG_Recovery,600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4283,'Greatest_General_Card','Greatest General Card','Card',20,10,true,true,true,'bonus3 bAutoSpell,"MO_CALLSPIRITS",5,2+18*(BaseClass==Job_Acolyte);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4284,'Chepet_Card','Chepet Card','Card',20,10,true,true,'bonus4 bAutoSpell,"AL_HEAL",5,50,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4285,'Choco_Card','Choco Card','Card',20,10,true,true,'bonus bFlee2,5; bonus bFlee,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4286,'Karakasa_Card','Karakasa Card','Card',20,10,true,true,'bonus2 bAddEffWhenHit,Eff_Confusion,300+600*(readparam(bStr)>=77);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4287,'Kapha_Card','Kapha Card','Card',20,10,true,true,'if(getrefine()<6) bonus bMdef,8;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4288,'Carat_Card','Carat Card','Card',20,10,true,true,true,true,'bonus bInt,2; if(getrefine()>8) bonus bMaxSP,150;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4289,'Caterpillar_Card','Caterpillar Card','Card',20,10,true,true,'bonus2 bSPGainRace,RC_Plant,5;','heal 0,-5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4290,'Cat_O_Nine_Tail_Card','Cat O\' Nine Tails Card','Card',20,10,true,true,'bonus bMdef,3; bonus bMagicDamageReturn,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4291,'Kobold_Leader_Card','Kobold Leader Card','Card',20,10,true,true,'bonus2 bAddRace2,RC2_Kobold,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4292,'Kobold_Archer_Card','Kobold Archer Card','Card',20,10,true,true,'bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Plant,7;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4293,'Cookie_Card','Cookie Card','Card',20,10,true,true,true,'bonus bLuk,2; bonus2 bSkillAtk,"AL_HOLYLIGHT",10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4294,'Quve_Card','Quve Card','Card',20,10,true,true,true,'if(BaseJob==Job_Novice||BaseJob==Job_SuperNovice) bonus3 bAutoSpellWhenHit,"AL_INCAGI",1,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4295,'Kraben_Card','Kraben Card','Card',20,10,true,true,'bonus2 bAddEffWhenHit,Eff_Blind,600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4296,'Cramp_Card','Cramp Card','Card',20,10,true,true,true,true,'bonus2 bGetZenyNum,500,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4297,'Cruiser_Card','Cruiser Card','Card',20,10,true,true,'bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Brute,7; bonus2 bCriticalAddRace,RC_Player_Doram,7;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4298,'Cremy_Fear_Card','Creamy Fear Card','Card',20,10,true,true,'bonus2 bAddEffWhenHit,Eff_Confusion,600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4299,'Clock_Card','Clock Card','Card',20,10,true,true,'bonus3 bAutoSpellWhenHit,"CR_AUTOGUARD",3+7*(getskilllv("CR_AUTOGUARD")==10),30;','sc_end SC_AUTOGUARD;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4300,'Chimera_Card','Chimera Card','Card',20,10,true,true,'bonus2 bAddEffWhenHit,Eff_Poison,300+600*(BaseJob==Job_Assassin);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4301,'Killer_Mantis_Card','Killer Mantis Card','Card',20,10,true,true,'bonus2 bAddEffWhenHit,Eff_Bleeding,600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4302,'Tao_Gunka_Card','Tao Gunka Card','Card',20,10,true,true,'bonus bMaxHPrate,100; bonus bDef,-50; bonus bMdef,-50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4303,'Whisper_Boss_Card','Giant Whisper Card','Card',20,10,true,true,'bonus bFlee,10; if(readparam(bStr)>=80) bonus bBaseAtk,20; if(readparam(bVit)>=80) bonus bMaxHPrate,3; if(readparam(bLuk)>=80) bonus bCritical,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4304,'Tamruan_Card','Tamruan Card','Card',20,10,true,true,'bonus bDef,2; bonus2 bSkillAtk,"CR_SHIELDCHARGE",10; bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4305,'Turtle_General_Card','Turtle General Card','Card',20,10,true,true,'bonus2 bAddClass,Class_All,20; bonus3 bAutoSpell,"SM_MAGNUM",10,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4306,'Toad_Card','Toad Card','Card',20,10,true,true,'bonus bFlee2,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4307,'Kind_Of_Beetle_Card','Beetle King Card','Card',20,10,true,true,'bonus2 bSPGainRace,RC_Fish,5;','heal 0,-5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4308,'Tri_Joint_Card','Tri Joint Card','Card',20,10,true,true,'bonus2 bSPGainRace,RC_Formless,5;','heal 0,-5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4309,'Parasite_Card','Parasite Card','Card',20,10,true,true,'bonus bDef,1; bonus2 bSubRace,RC_Formless,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4310,'Panzer_Goblin_Card','Panzer Goblin Card','Card',20,10,true,true,'bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Demon,7;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4311,'Permeter_Card','Permeter Card','Card',20,10,true,true,true,true,'bonus2 bSubEle,Ele_Dark,15; bonus2 bSubEle,Ele_Undead,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4312,'Fur_Seal_Card','Seal Card','Card',20,10,true,true,'bonus bFlee,3; bonus bHit,10; if(BaseClass==Job_Acolyte) { bonus2 bCriticalAddRace,RC_Undead,9; bonus2 bCriticalAddRace,RC_Demon,9; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4313,'Punk_Card','Punk Card','Card',20,10,true,true,'bonus4 bAutoSpellWhenHit,"WZ_QUAGMIRE",1+4*(getskilllv("WZ_QUAGMIRE")==5),50,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4314,'Penomena_Card','Penomena Card','Card',20,10,true,true,'bonus2 bSubRace,RC_Formless,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4315,'Pest_Card','Pest Card','Card',20,10,true,true,'bonus2 bAddEffWhenHit,Eff_Stone,300+600*(readparam(bInt)>=77);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4316,'Fake_Angel_Card','False Angel Card','Card',20,10,true,true,'bonus2 bSPGainRace,RC_Angel,5;','heal 0,-5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4317,'Mobster_Card','Mobster Card','Card',20,10,true,true,'bonus bCritAtkRate,15; if(BaseClass==Job_Thief) bonus bCritical,4;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4318,'Knight_Windstorm_Card','Stormy Knight Card','Card',20,10,true,true,'bonus3 bAutoSpell,"WZ_STORMGUST",2,20; bonus2 bAddEff,Eff_Freeze,2000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4319,'Freezer_Card','Freezer Card','Card',20,10,true,true,'bonus bMaxHP,300; if(getrefine()>=9) bonus2 bSkillAtk,"SM_BASH",10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4320,'Bloody_Knight_Card','Bloody Knight Card','Card',20,10,true,true,'bonus3 bAutoSpell,"WZ_METEOR",1,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4321,'Hylozoist_Card','Hylozoist Card','Card',20,10,true,true,true,'bonus bClassChange,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4322,'High_Orc_Card','High Orc Card','Card',20,10,true,true,'bonus bDef,1; bonus bShortWeaponDamageReturn,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4323,'Garm_Baby_Card','Hatii Babe Card','Card',20,10,true,true,'bonus3 bAutoSpell,"MG_FROSTDIVER",3,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4324,'Garm_Card','Hatii Card','Card',20,10,true,true,'bonus2 bAddEffWhenHit,Eff_Freeze,5000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4325,'Harpy_Card','Harpy Card','Card',20,10,true,true,'bonus2 bSubEle,Ele_Neutral,15; bonus2 bSkillAtk,"MG_NAPALMBEAT",5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4326,'See_Otter_Card','Sea-Otter Card','Card',20,10,true,true,true,'bonus2 bAddItemGroupHealRate,IG_Fish,50; bonus3 bAddMonsterDropItem,551,RC_Fish,300; bonus3 bAddMonsterDropItem,544,RC_Fish,300;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4327,'Blood_Butterfly_Card','Bloody Butterfly Card','Card',20,10,true,true,true,'bonus bCastrate,30; bonus bNoCastCancel; bonus2 bSkillAtk,"MG_FIREWALL",5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4328,'Hyegun_Card','Yao Jun Card','Card',20,10,true,true,'bonus bFlee,15; bonus bCritical,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4329,'Phendark_Card','Phendark Card','Card',20,10,true,true,'bonus2 bSPGainRace,RC_DemiHuman,5; bonus2 bSPGainRace,RC_Player_Human,5;','heal 0,-5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4330,'Dark_Snake_Lord_Card','Evil Snake Lord Card','Card',20,10,true,true,true,true,'bonus bInt,3; bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Curse,10000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4331,'Heater_Card','Heater Card','Card',20,10,true,true,true,'bonus bCritical,3; if(BaseClass==Job_Swordman) bonus bFlee2,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4332,'Waste_Stove_Card','Waste Stove Card','Card',20,10,true,true,'bonus bBaseAtk,5; bonus bInt,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4333,'Venomous_Card','Venomous Card','Card',20,10,true,true,'bonus3 bAddEffWhenHit,Eff_Poison,3000,ATF_TARGET|ATF_SELF;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4334,'Noxious_Card','Noxious Card','Card',20,10,true,true,'bonus bLongAtkDef,10; bonus2 bSubEle,Ele_Neutral,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4335,'Pitman_Card','Pitman Card','Card',20,10,true,true,'bonus2 bSkillAtk,"WZ_EARTHSPIKE",5; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",5;','heal 0,-50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4336,'Ungoliant_Card','Ungoliant Card','Card',20,10,true,true,true,true,'bonus bHPrecovRate,10; bonus2 bResEff,Eff_Bleeding,10000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4337,'Porcellio_Card','Porcellio Card','Card',20,10,true,true,'bonus bBaseAtk,25; bonus bDef,-5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4338,'Obsidian_Card','Obsidian Card','Card',20,10,true,true,'bonus bVit,readparam(bDex)/18;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4339,'Mineral_Card','Mineral Card','Card',20,10,true,true,'bonus bBaseAtk,-25; bonus bDef,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4340,'Teddy_Bear_Card','Teddy Bear Card','Card',20,10,true,true,'bonus2 bSubRace,RC_Undead,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4341,'Metaling_Card','Metaling Card','Card',20,10,true,true,'bonus3 bAutoSpell,"RG_STRIPWEAPON",1,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4342,'Rsx_0806_Card','RSX-0806 Card','Card',20,10,true,true,'bonus bVit,3; bonus bUnbreakableArmor; bonus bNoKnockback;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4343,'Mole_Card','Holden Card','Card',20,10,true,true,true,true,'bonus bLuk,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4344,'Anopheles_Card','Anopheles Card','Card',20,10,true,true,true,'bonus3 bAddMonsterDropItem,12058,RC_Insect,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4345,'Hill_Wind_Card','Hill Wind Card','Card',20,10,true,true,'bonus2 bSkillAtk,"MG_THUNDERSTORM",5; bonus2 bSkillAtk,"WZ_JUPITEL",5; bonus2 bSkillAtk,"WZ_VERMILION",5;','heal 0,-50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4346,'Ygnizem_Card','Egnigem Cenia Card','Card',20,10,true,true,'bonus bStr,readparam(bInt)/18;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4347,'Armaia_Card','Armeyer Dinze Card','Card',20,10,true,true,true,'bonus3 bAddMonsterDropItem,12053,RC_Fish,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4348,'Whikebain_Card','Wickebine Tres Card','Card',20,10,true,true,true,'bonus3 bAutoSpell,"RG_STRIPARMOR",1,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4349,'Erend_Card','Errende Ebecee Card','Card',20,10,true,true,true,'bonus4 bAutoSpellWhenHit,"AL_PNEUMA",1,50,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4350,'Rawrel_Card','Laurell Weinder Card','Card',20,10,true,true,'bonus2 bSkillAtk,"WZ_FROSTNOVA",3; bonus2 bSkillAtk,"WZ_STORMGUST",3;','heal 0,-50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4351,'Kavac_Card','Kavach Icarus Card','Card',20,10,true,true,'if(getrefine()<=4) { bonus bFlee,20; bonus bFlee2,1; } else { bonus bFlee,10; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4352,'B_Ygnizem_Card','General Egnigem Cenia Card','Card',20,10,true,true,'bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bHPRegenRate,50,10000; bonus2 bSPRegenRate,10,10000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4353,'Removal_Card','Remover Card','Card',20,10,true,true,'bonus bMaxHP,800-40*getrefine(); bonus bHPrecovRate,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4354,'Gemini_Card','Gemini-S58 Card','Card',20,10,true,true,true,true,'if(readparam(bAgi)>=90) { bonus2 bResEff,Eff_Silence,3000; bonus2 bResEff,Eff_Stun,3000; } if(readparam(bVit)>=80) { bonus2 bResEff,Eff_Stone,5000; bonus2 bResEff,Eff_Sleep,5000; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4355,'Gremlin_Card','Gremlin Card','Card',20,10,true,true,true,'bonus3 bAddMonsterDropItem,12043,RC_Brute,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4356,'Beholder_Card','Beholder Card','Card',20,10,true,true,true,'skill "SA_CASTCANCEL",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4357,'B_Seyren_Card','Lord Knight Card','Card',20,10,true,true,true,true,'skill "LK_BERSERK",1; bonus bMaxHPrate,-50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4358,'Seyren_Card','Seyren Windsor Card','Card',20,10,true,true,true,true,'bonus bStr,getrefine()-6;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4359,'B_Eremes_Card','Assassin Cross Card','Card',20,10,true,true,'skill "AS_CLOAKING",3;','sc_end SC_CLOAKING;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4360,'Eremes_Card','Eremes Guile Card','Card',20,10,true,true,'bonus2 bCriticalAddRace,RC_DemiHuman,10; bonus2 bCriticalAddRace,RC_Player_Human,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4361,'B_Harword_Card','MasterSmith Card','Card',20,10,true,true,'bonus bBreakWeaponRate,1000; bonus bBreakArmorRate,700;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4362,'Harword_Card','Howard Alt-Eisen Card','Card',20,10,true,true,'bonus bAspdRate,-5; bonus bHit,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4363,'B_Magaleta_Card','High Priest Card','Card',20,10,true,true,'bonus5 bAutoSpellWhenHit,"HP_ASSUMPTIO",1,50,BF_WEAPON|BF_MAGIC,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4364,'Magaleta_Card','Margaretha Sorin Card','Card',20,10,true,true,true,true,'bonus bInt,1; bonus5 bAutoSpellWhenHit,"PR_LEXDIVINA",5,150,BF_MAGIC,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4365,'B_Katrinn_Card','High Wizard Card','Card',20,10,true,true,true,true,'bonus2 bIgnoreMdefClassRate,Class_Normal,100; bonus bCastrate,100; bonus bSPrecovRate,-100;','heal 0,-2000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4366,'Katrinn_Card','Kathryne Keyron Card','Card',20,10,true,true,true,true,'bonus bCastrate,getrefine()*-1; if(getrefine()>=9) { bonus bMatkRate,2; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4367,'B_Shecil_Card','Sniper Card','Card',20,10,true,true,'bonus2 bHPDrainRate,50,20; bonus bHPrecovRate,-10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4368,'Shecil_Card','Cecil Damon Card','Card',20,10,true,true,'bonus bAspdRate,5; bonus bHit,-30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4369,'Venatu_Card','Venatu Card','Card',20,10,true,true,'bonus bLuk,readparam(bAgi)/18;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4370,'Dimik_Card','Dimik Card','Card',20,10,true,true,'bonus bVit,getrefine()-5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4371,'Archdam_Card','Archdam Card','Card',20,10,true,true,'bonus bBaseAtk,10; bonus bCastrate,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4372,'Bacsojin_Card','White Lady Card','Card',20,10,true,true,true,true,'bonus bHealPower,30; bonus bUseSPrate,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4373,'Chung_E_Card','Green Maiden Card','Card',20,10,true,true,'bonus bLuk,getrefine()-5; bonus bCritical,getrefine();'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4374,'Apocalips_H_Card','Vesper Card','Card',20,10,true,true,true,true,'bonus bDex,2; bonus2 bIgnoreMdefClassRate,Class_Boss,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4375,'Orc_Baby_Card','Orc Baby Card','Card',20,10,true,true,'if(getrefine()>=9) { bonus2 bSubEle,Ele_Neutral,15; bonus bFlee,15; } else { bonus2 bSubEle,Ele_Neutral,10; bonus bFlee,10; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4376,'Lady_Tanee_Card','Lady Tanee Card','Card',20,10,true,true,'bonus bMaxHPrate,-40; bonus bMaxSPrate,50; bonus2 bAddMonsterDropItem,513,200; bonus2 bAddItemHealRate,513,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4377,'Green_Iguana_Card','Grove Card','Card',20,10,true,true,true,'bonus3 bAddMonsterDropItem,12063,RC_Formless,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4378,'Acidus_Card','Gold Acidus Card','Card',20,10,true,true,'if(getrefine()<=4) { bonus bMaxHPrate,8; bonus bMaxSPrate,8; bonus bHPrecovRate,5; bonus bSPrecovRate,5; } else { bonus bMaxHPrate,4; bonus bMaxSPrate,4; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4379,'Acidus__Card','Blue Acidus Card','Card',20,10,true,true,true,true,'if(getrefine()<=4) { bonus bSPrecovRate,5; bonus bMaxSP,80; } else { bonus bMaxSP,40; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4380,'Ferus_Card','Red Ferus Card','Card',20,10,true,true,'bonus2 bSkillAtk,"WZ_FIREPILLAR",5; bonus2 bSkillAtk,"WZ_METEOR",5;','heal 0,-50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4381,'Ferus__Card','Green Ferus Card','Card',20,10,true,true,'bonus bVit,1; bonus bMaxHPrate,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4382,'Novus__Card','Yellow Novus Card','Card',20,10,true,true,'bonus bMaxHP,500; bonus bHPrecovRate,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4383,'Novus_Card','Red Novus Card','Card',20,10,true,true,'bonus3 bAddEffWhenHit,Eff_Confusion,3000,ATF_TARGET|ATF_SELF;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4384,'Hydro_Card','Hydrolancer Card','Card',20,10,true,true,true,'bonus3 bAutoSpell,"SA_SPELLBREAKER",1,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4385,'Dragon_Egg_Card','Dragon Egg Card','Card',20,10,true,true,true,'bonus3 bAddMonsterDropItem,12048,RC_Dragon,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4386,'Detale_Card','Detardeurus Card','Card',20,10,true,true,'bonus bMdef,-20; bonus2 bResEff,Eff_Freeze,10000; bonus5 bAutoSpellWhenHit,"SA_LANDPROTECTOR",1,70,BF_MAGIC,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4387,'Ancient_Mimic_Card','Ancient Mimic Card','Card',20,10,true,true,'bonus bAgi,readparam(bLuk)/18;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4388,'Deathword_Card','Death Word Card','Card',20,10,true,true,'bonus2 bSkillAtk,"MG_NAPALMBEAT",5; bonus2 bSkillAtk,"MG_SOULSTRIKE",5; bonus2 bSkillAtk,"HW_NAPALMVULCAN",5;','heal 0,-50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4389,'Plasma_Card','Plasma Card','Card',20,10,true,true,true,'bonus2 bAddMonsterDropItem,12118,50; bonus2 bAddMonsterDropItem,12119,50; bonus2 bAddMonsterDropItem,12120,50; bonus2 bAddMonsterDropItem,12121,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4390,'Breeze_Card','Breeze Card','Card',20,10,true,true,'bonus bBaseAtk,5; bonus2 bAddEff,Eff_Bleeding,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4391,'Retribution_Card','Baroness of Retribution Card','Card',20,10,true,true,true,'bonus3 bAddMonsterDropItem,12068,RC_Angel,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4392,'Observation_Card','Dame of Sentinel Card','Card',20,10,true,true,'bonus bDex,readparam(bVit)/18;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4393,'Shelter_Card','Mistress of Shelter Card','Card',20,10,true,true,'bonus bInt,readparam(bStr)/18;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4394,'Solace_Card','Lady Solace Card','Card',20,10,true,true,'if(BaseJob==Job_Priest) bonus3 bAutoSpell,"CR_GRANDCROSS",5,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4395,'Tha_Maero_Card','Maero of Thanatos Card','Card',20,10,true,true,'bonus bBaseAtk,5; bonus3 bAutoSpell,"AL_DECAGI",3,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4396,'Tha_Odium_Card','Odium of Thanatos Card','Card',20,10,true,true,'bonus bAgi,getrefine()-5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4397,'Tha_Despero_Card','Despero of Thanatos Card','Card',20,10,true,true,'bonus bInt,getrefine()-6;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4398,'Tha_Dolor_Card','Dolor of Thanatos Card','Card',20,10,true,true,'bonus2 bMagicAddRace,RC_Angel,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4399,'Thanatos_Card','Memory of Thanatos Card','Card',20,10,true,true,'bonus bDefRatioAtkClass,Class_All; bonus bSPDrainValue,-1; bonus bDef,-30; bonus bFlee,-30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4400,'Aliza_Card','Aliza Card','Card',20,10,true,true,'bonus3 bAutoSpellWhenHit,"DC_WINKCHARM",1,50+50*(BaseJob==Job_Dancer);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4401,'Alicel_Card','Alicel Card','Card',20,10,true,true,'bonus bFlee,10; bonus bDef,-5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4402,'Aliot_Card','Aliot Card','Card',20,10,true,true,'if(BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Thief) { bonus bStr,2; bonus bMaxHPrate,5; } if(BaseClass==Job_Mage||BaseClass==Job_Archer||BaseClass==Job_Acolyte) { bonus bInt,2; bonus bMaxSPrate,5; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4403,'Kiel_Card','Kiel-D-01 Card','Card',20,10,true,true,true,true,'bonus bDelayRate,-30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4404,'Skogul_Card','Skogul Card','Card',20,10,true,true,'bonus3 bAddEffWhenHit,Eff_Bleeding,3000,ATF_TARGET|ATF_SELF;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4405,'Frus_Card','Frus Card','Card',20,10,true,true,'bonus bMagicDamageReturn,getrefine()*2; if(BaseClass==Job_Mage) bonus bMdef,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4406,'Skeggiold_Card','Skeggiold Card','Card',20,10,true,true,'bonus2 bMagicAddRace,RC_Demon,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4407,'Randgris_Card','Randgris Card','Card',20,10,true,true,'bonus bUnbreakableWeapon; bonus2 bAddClass,Class_All,10; bonus3 bAutoSpell,"SA_DISPELL",1,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4408,'Gloom_Under_Night_Card','Gloom Under Night Card','Card',20,10,true,true,'bonus2 bAddEle,Ele_Holy,40; bonus2 bAddEle,Ele_Dark,40; bonus2 bAddRace,RC_Angel,40; bonus2 bAddRace,RC_Demon,40;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4409,'Agav_Card','Agav Card','Card',20,10,true,true,'bonus bMatkRate,5; bonus bDef,-10; if(BaseClass==Job_Mage) bonus bMaxSP,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4410,'Echio_Card','Echio Card','Card',20,10,true,true,'bonus bBaseAtk,15; if(BaseClass==Job_Swordman) bonus bMaxHP,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4411,'Vanberk_Card','Vanberk Card','Card',20,10,true,true,true,true,'bonus bStr,2; autobonus "{ bonus bCritical,100; }",5,5000,0,"{ specialeffect2 EF_ENHANCE; }";'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4412,'Isilla_Card','Isilla Card','Card',20,10,true,true,true,true,'bonus bInt,2; autobonus "{ bonus bCastrate,-50; bonus bFlee,30; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }";'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4413,'Hodremlin_Card','Hodremlin Card','Card',20,10,true,true,'bonus2 bSubSize,Size_All,15; autobonus2 "{ bonus bFlee2,30; }",3,10000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_WIND; }";'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4414,'Seeker_Card','Seeker Card','Card',20,10,true,true,'skill "MG_STONECURSE",1; bonus2 bResEff,Eff_Stone,3000; bonus bMdef,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4415,'Snowier_Card','Snowier Card','Card',20,10,true,true,true,'bonus2 bAddMonsterDropItem,536,2000; bonus2 bAddItemHealRate,536,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4416,'Siroma_Card','Siroma Card','Card',20,10,true,true,true,'bonus2 bSkillAtk,"MG_COLDBOLT",25; bonus2 bCastrate,"MG_COLDBOLT",-25;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4417,'Ice_Titan_Card','Ice Titan Card','Card',20,10,true,true,'bonus bVit,2; autobonus2 "{ bonus bDef,10; }",3,10000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_FREEZED; }";'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4418,'Gazeti_Card','Gazeti Card','Card',20,10,true,true,true,'bonus3 bAutoSpell,"MG_COLDBOLT",2,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4419,'Ktullanux_Card','Ktullanux Card','Card',20,10,true,true,'bonus2 bAddEle,Ele_Fire,50; bonus5 bAutoSpellWhenHit,"WZ_FROSTNOVA",10,20,BF_WEAPON|BF_MAGIC,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4420,'Muscipular_Card','Muscipular Card','Card',20,10,true,true,'bonus3 bAutoSpellWhenHit,"AL_HEAL",1,100; bonus3 bAutoSpellWhenHit,"AL_INCAGI",1,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4421,'Drosera_Card','Drosera Card','Card',20,10,true,true,'bonus bCriticalLong,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4422,'Roween_Card','Roween Card','Card',20,10,true,true,'bonus bFlee,5; bonus bFlee2,3; bonus2 bAddEle,Ele_Water,10; bonus2 bCriticalAddRace,RC_Fish,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4423,'Galion_Card','Galion Card','Card',20,10,true,true,true,'bonus bHit,5; bonus2 bAddEle,Ele_Water,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4424,'Stapo_Card','Stapo Card','Card',20,10,true,true,true,'skill "TF_PICKSTONE",1; skill "TF_THROWSTONE",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4425,'Atroce_Card','Atroce Card','Card',20,10,true,true,'bonus bBaseAtk,25; autobonus "{ bonus bAspdRate,100; }",5,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }";'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4426,'Byorgue_Card','Byorgue Card','Card',20,10,true,true,'if(BaseJob==Job_Rogue) { bonus bMatkRate,10; bonus2 bAddClass,Class_All,10; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4427,'Sword_Guardian_Card','Sword Guardian Card','Card',20,10,true,true,'if(getiteminfo(getequipid(EQI_HAND_R),11)==W_1HSWORD||getiteminfo(getequipid(EQI_HAND_R),11)==W_2HSWORD) { bonus bHit,5; bonus bCritical,5; bonus2 bSkillAtk,62,25; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4428,'Bow_Guardian_Card','Bow Guardian Card','Card',20,10,true,true,'if(getiteminfo(getequipid(EQI_HAND_R),11)==W_BOW) { bonus bHit,5; bonus bCritical,5; bonus2 bSkillAtk,47,50; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4429,'Salamander_Card','Salamander Card','Card',20,10,true,true,'bonus2 bSkillAtk,"WZ_FIREPILLAR",40; bonus2 bSkillAtk,"WZ_METEOR",40;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4430,'Ifrit_Card','Ifrit Card','Card',20,10,true,true,true,'bonus bBaseAtk,(JobLevel/10); bonus bCritical,(JobLevel/10); bonus bHit,(JobLevel/10); bonus3 bAutoSpellWhenHit,"NPC_EARTHQUAKE",2,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4431,'Kasa_Card','Kasa Card','Card',20,10,true,true,'bonus3 bAutoSpell,"MG_FIREBALL",5,20; bonus3 bAutoSpell,"MG_FIREBOLT",5,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4432,'Magmaring_Card','Magmaring Card','Card',20,10,true,true,'bonus bBaseAtk,5; bonus2 bAddEle,Ele_Earth,10; bonus2 bCriticalAddRace,RC_Brute,15; bonus2 bCriticalAddRace,RC_Player_Doram,15; bonus2 bCriticalAddRace,RC_Plant,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4433,'Imp_Card','Imp Card','Card',20,10,true,true,true,'bonus2 bSkillAtk,"MG_FIREBOLT",25; bonus2 bCastrate,"MG_FIREBOLT",-25;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4434,'Knocker_Card','Knocker Card','Card',20,10,true,true,true,true,'bonus2 bAddRace,RC_Formless,5; bonus3 bAddMonsterDropItem,756,RC_Formless,10; bonus3 bAddMonsterDropItem,757,RC_Formless,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4435,'Zombie_Slaughter_Card','Zombie Slaughter Card','Card',20,10,true,true,'bonus2 bAddRace,RC_DemiHuman,1; bonus2 bAddRace,RC_Player_Human,1; bonus2 bMagicAddRace,RC_DemiHuman,1; bonus2 bMagicAddRace,RC_Player_Human,1; bonus bHPGainValue,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4436,'Ragged_Zombie_Card','Ragged Zombie Card','Card',20,10,true,true,true,'bonus2 bCriticalAddRace,RC_DemiHuman,5; bonus2 bCriticalAddRace,RC_Player_Human,5; bonus2 bAddRace,RC_DemiHuman,1; bonus2 bAddRace,RC_Player_Human,1; bonus2 bMagicAddRace,RC_DemiHuman,1; bonus2 bMagicAddRace,RC_Player_Human,1; bonus2 bAddEff2,Eff_Bleeding,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4437,'Hell_Poodle_Card','Hell Poodle Card','Card',20,10,true,true,true,'bonus bHit,1; bonus2 bAddItemHealRate,517,100; bonus3 bAddEff,Eff_Bleeding,50,ATF_SHORT;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4438,'Banshee_Card','Banshee Card','Card',20,10,true,true,true,true,'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; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4439,'Flame_Skull_Card','Flame Skull Card','Card',20,10,true,true,'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;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4440,'Necromancer_Card','Necromancer Card','Card',20,10,true,true,'if(getiteminfo(getequipid(EQI_HAND_R),11)==W_STAFF) { bonus bInt,1; bonus2 bIgnoreMdefClassRate,Class_Normal,2; bonus2 bIgnoreMdefClassRate,Class_Boss,2; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4441,'Fallen_Bishop_Card','Fallen Bishop Hibram Card','Card',20,10,true,true,'bonus bMatkRate,10; bonus bMaxSPrate,-50; bonus2 bMagicAddRace,RC_Angel,50; bonus2 bMagicAddRace,RC_DemiHuman,50; bonus2 bMagicAddRace,RC_Player_Human,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4442,'Tatacho_Card','Tatacho Card','Card',20,10,true,true,'bonus2 bSubEle,Ele_Neutral,20; bonus2 bAddEle,Ele_Neutral,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4443,'Aqua_Elemental_Card','Aqua Elemental Card','Card',20,10,true,true,'bonus2 bSubEle,Ele_Water,20; bonus2 bAddEle,Ele_Water,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4444,'Draco_Card','Draco Card','Card',20,10,true,true,'bonus2 bSubEle,Ele_Earth,20; bonus2 bAddEle,Ele_Earth,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4445,'Luciola_Vespa_Card','Luciola Vespa Card','Card',20,10,true,true,'bonus2 bSubEle,Ele_Wind,20; bonus2 bAddEle,Ele_Wind,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4447,'Centipede_Card','Centipede Card','Card',20,10,true,true,'bonus2 bSubEle,Ele_Poison,20; bonus2 bAddEle,Ele_Poison,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4448,'Cornus_Card','Cornus Card','Card',20,10,true,true,'bonus2 bSubEle,Ele_Holy,20; bonus2 bAddEle,Ele_Holy,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4449,'Dark_Shadow_Card','Dark Shadow Card','Card',20,10,true,true,'bonus2 bSubEle,Ele_Dark,20; bonus2 bAddEle,Ele_Dark,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4450,'Banshee_Master_Card','Banshee Master Card','Card',20,10,true,true,'bonus bInt,1; bonus bMatk,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4451,'Ant_Buyanne_Card','Entweihen Crothen Card','Card',20,10,true,true,'bonus bMatk,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4452,'Centipede_Larva_Card','Centipede Larva Card','Card',20,10,true,true,'bonus bInt,1; bonus bMatk,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4453,'Hilsrion_Card','Hillsrion Card','Card',20,10,true,true,'bonus bBaseAtk,25;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4700,'Strength1','STR+1','Card',20,10,'bonus bStr,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4701,'Strength2','STR+2','Card',20,10,'bonus bStr,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4702,'Strength3','STR+3','Card',20,10,'bonus bStr,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4703,'Strength4','STR+4','Card',20,10,'bonus bStr,4;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4704,'Strength5','STR+5','Card',20,10,'bonus bStr,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4705,'Strength6','STR+6','Card',20,10,'bonus bStr,6;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4706,'Strength7','STR+7','Card',20,10,'bonus bStr,7;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4707,'Strength8','STR+8','Card',20,10,'bonus bStr,8;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4708,'Strength9','STR+9','Card',20,10,'bonus bStr,9;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4709,'Strength10','STR+10','Card',20,10,'bonus bStr,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4710,'Inteligence1','INT+1','Card',20,10,'bonus bInt,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4711,'Inteligence2','INT+2','Card',20,10,'bonus bInt,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4712,'Inteligence3','INT+3','Card',20,10,'bonus bInt,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4713,'Inteligence4','INT+4','Card',20,10,'bonus bInt,4;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4714,'Inteligence5','INT+5','Card',20,10,'bonus bInt,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4715,'Inteligence6','INT+6','Card',20,10,'bonus bInt,6;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4716,'Inteligence7','INT+7','Card',20,10,'bonus bInt,7;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4717,'Inteligence8','INT+8','Card',20,10,'bonus bInt,8;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4718,'Inteligence9','INT+9','Card',20,10,'bonus bInt,9;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4719,'Inteligence10','INT+10','Card',20,10,'bonus bInt,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4720,'Dexterity1','DEX+1','Card',20,10,'bonus bDex,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4721,'Dexterity2','DEX+2','Card',20,10,'bonus bDex,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4722,'Dexterity3','DEX+3','Card',20,10,'bonus bDex,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4723,'Dexterity4','DEX+4','Card',20,10,'bonus bDex,4;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4724,'Dexterity5','DEX+5','Card',20,10,'bonus bDex,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4725,'Dexterity6','DEX+6','Card',20,10,'bonus bDex,6;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4726,'Dexterity7','DEX+7','Card',20,10,'bonus bDex,7;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4727,'Dexterity8','DEX+8','Card',20,10,'bonus bDex,8;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4728,'Dexterity9','DEX+9','Card',20,10,'bonus bDex,9;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4729,'Dexterity10','DEX+10','Card',20,10,'bonus bDex,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4730,'Agility1','AGI+1','Card',20,10,'bonus bAgi,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4731,'Agility2','AGI+2','Card',20,10,'bonus bAgi,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4732,'Agility3','AGI+3','Card',20,10,'bonus bAgi,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4733,'Agility4','AGI+4','Card',20,10,'bonus bAgi,4;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4734,'Agility5','AGI+5','Card',20,10,'bonus bAgi,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4735,'Agility6','AGI+6','Card',20,10,'bonus bAgi,6;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4736,'Agility7','AGI+7','Card',20,10,'bonus bAgi,7;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4737,'Agility8','AGI+8','Card',20,10,'bonus bAgi,8;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4738,'Agility9','AGI+9','Card',20,10,'bonus bAgi,9;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4739,'Agility10','AGI+10','Card',20,10,'bonus bAgi,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4740,'Vitality1','VIT+1','Card',20,10,'bonus bVit,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4741,'Vitality2','VIT+2','Card',20,10,'bonus bVit,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4742,'Vitality3','VIT+3','Card',20,10,'bonus bVit,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4743,'Vitality4','VIT+4','Card',20,10,'bonus bVit,4;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4744,'Vitality5','VIT+5','Card',20,10,'bonus bVit,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4745,'Vitality6','VIT+6','Card',20,10,'bonus bVit,6;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4746,'Vitality7','VIT+7','Card',20,10,'bonus bVit,7;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4747,'Vitality8','VIT+8','Card',20,10,'bonus bVit,8;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4748,'Vitality9','VIT+9','Card',20,10,'bonus bVit,9;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4749,'Vitality10','VIT+10','Card',20,10,'bonus bVit,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4750,'Luck1','LUK+1','Card',20,10,'bonus bLuk,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4751,'Luck2','LUK+2','Card',20,10,'bonus bLuk,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4752,'Luck3','LUK+3','Card',20,10,'bonus bLuk,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4753,'Luck4','LUK+4','Card',20,10,'bonus bLuk,4;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4754,'Luck5','LUK+5','Card',20,10,'bonus bLuk,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4755,'Luck6','LUK+6','Card',20,10,'bonus bLuk,6;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4756,'Luck7','LUK+7','Card',20,10,'bonus bLuk,7;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4757,'Luck8','LUK+8','Card',20,10,'bonus bLuk,8;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4758,'Luck9','LUK+9','Card',20,10,'bonus bLuk,9;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4759,'Luck10','LUK+10','Card',20,10,'bonus bLuk,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4760,'Matk1','MATK+1%','Card',20,10,'bonus bMatkRate,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4761,'Matk2','MATK+2%','Card',20,10,'bonus bMatkRate,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4762,'Evasion6','FLEE+6','Card',20,10,'bonus bFlee,6;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4763,'Evasion12','FLEE+12','Card',20,10,'bonus bFlee,12;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4764,'Critical5','CRI+5','Card',20,10,'bonus bCritical,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4765,'Critical7','CRI+7','Card',20,10,'bonus bCritical,7;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4766,'Atk2','ATK+2%','Card',20,10,'bonus2 bAddClass,Class_All,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4767,'Atk3','ATK+3%','Card',20,10,'bonus2 bAddClass,Class_All,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (4768,'Str1_J','STR+1','Card',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (4769,'Str2_J','STR+2','Card',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (4770,'Str3_J','STR+3','Card',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (4771,'Int1_J','INT+1','Card',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (4772,'Int2_J','INT+2','Card',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (4773,'Int3_J','INT+3','Card',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (4774,'Vit1_J','VIT+1','Card',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (4775,'Vit2_J','VIT+2','Card',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (4776,'Vit3_J','VIT+3','Card',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (4777,'Agi1_J','AGI+1','Card',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (4778,'Agi2_J','AGI+2','Card',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (4779,'Agi3_J','AGI+3','Card',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (4780,'Dex1_J','DEX+1','Card',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (4781,'Dex2_J','DEX+2','Card',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (4782,'Dex3_J','DEX+3','Card',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (4783,'Luk1_J','LUK+1','Card',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (4784,'Luk2_J','LUK+2','Card',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (4785,'Luk3_J','LUK+3','Card',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6000,'Dark_Ashes','Ashes of Darkness','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (6001,'Essence_Of_Fire','Essence of Fire','Etc',10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (6002,'Token_Of_Apostle','Token of Apostle','Etc',10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (6003,'Soul_Pendant','Pendant of Spirit','Etc',10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (6004,'Bapho_Doll','Cursed Baphomet Doll','Etc',10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6005,'New_Year_Rice_Cake','New Year Rice Cake','Etc',10,100,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6006,'Rice_Cake_Delivery_Box','Rice Cake Delivery Box','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6007,'New_Year_Rice_Cake_Soup','New Year Rice Cake Soup','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (6008,'Wood','Wood','Etc',10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6009,'Large_Magical_Fan','Big Fan Of Magic','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (6010,'Pickaxe','Hoe','Etc',10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6011,'Blue_Card_B','Blue B Card','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6012,'Blue_Card_C','Blue C Card','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6013,'Blue_Card_J','Blue J Card','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6015,'Blue_Card_M','Blue M Card','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6016,'Blue_Card_Q','Blue Q Card','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6017,'Blue_Card_T','Blue T Card','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6018,'Blue_Card_V','Blue V Card','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6019,'Blue_Card_Z','Blue Z Card','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6020,'Fur','Fur','Etc',704,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6021,'Peaked_Hat','Peaked Hat','Etc',433,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6022,'Hard_Skin','Hard Skin','Etc',884,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6023,'Mystic_Horn','Mystic Horn','Etc',1000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6024,'17Carat_Dia','17Carat Diamond','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6025,'Towel_Of_Memory','Towel of Memory','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6026,'Marriage_Covenant','Written Oath Of Marriage','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6027,'Crystal_Of_Feardoom','Crystal Of Feardom','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6028,'Seal_Scroll','Sealed Scroll','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6029,'Morocc_Tracing_Log','Morocc Tracing Log','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6030,'Glitering_PaperA','Glittering Paper','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6031,'Glitering_PaperB','Glittering Paper','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6032,'Horn_Of_Hilsrion','Horn of Hillslion','Etc',500,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6033,'Horn_Of_Tendrilion','Horn of Tendrilion','Etc',500,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6034,'Weird_Part','Weird Part','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6035,'Decaying_Stem','Decaying Stem','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6036,'Invite_To_Meeting','Meeting Invitation','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6037,'Rough_File','Messy File','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6038,'Neat_Report','Neat Report','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6039,'Piece_Of_Fish','Piece of Fish','Etc',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6040,'Some_Of_Report','Part of a Report','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6041,'Strong_Bine','Strong Vine','Etc',30,50); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6042,'Ordinary_Branch','Ordinary Branch','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6043,'Letter_From_Lugen','Letter from Lugen','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6044,'Letter_From_Otto','Letter from Otto','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6045,'Supply_Box','Supply Box','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6048,'Unidentified_Mineral','Unidentified Mineral','Etc',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6049,'Marlin','Marlin','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6050,'Mercenary_Contract','Mercenary Contract','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6051,'Gray_Hollow','Gray Hollow','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6052,'Ornamental_Hairpin','Ornament Hairpin','Etc',1,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6053,'Yuanbao','Circle Step','Etc',100,100); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6054,'Blue_Card_6','Number 6 Card','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6055,'Blue_Card_Annyver','Character Week Card','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6056,'Blue_Card_Sary','Character Year Card','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6057,'Blue_Card_E','Character Lee Card','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6058,'Blue_Card_Ven','Character Ben Card','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6059,'Blue_Card_Nt','Character Project Card','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6060,'Moon_Admin_Ticket','Month Viewing Ticket','Etc',10,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6061,'Plantain','Blood Beginner','Etc',100,50); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6062,'Moon_Cake15','Letter Moon Cake','Etc',10,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6063,'Moon_Cake16','Letter Moon Cake','Etc',10,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6064,'Moon_Cake17','Letter Moon Cake','Etc',10,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6065,'Moon_Cake18','Letter Moon Cake','Etc',10,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6066,'Moon_Cake19','Letter Moon Cake','Etc',10,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6067,'Moon_Cake20','Letter Moon Cake','Etc',10,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6068,'Rabbit_Skin','Leather Rabbit','Etc',10,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6069,'ABUNDANCE','Abundance','Etc',10,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6070,'Shaman\'s_Old_Paper','Shaman\'s Document','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6071,'Broken_Sword','Broken Sword','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6072,'Wing_Of_Bizofnil','Bijofnil Feather','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6073,'Dragon\'s_Mane','Dragon\'s Mane','Etc',true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6074,'Bazett\'s_Order','Bazett\'s Order','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6075,'Crystalized_Teardrop','Crystalized Teardrop','Etc',true,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6076,'Portable_Toolbox','Portable Toolbox','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6077,'Rough_Mineral','Rough Mineral','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6078,'Stone_Fragments','Stone Fragment','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6079,'Flower_Of_Alfheim','Flower Of Alfheim','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6080,'Manuk_Coin','Manuk Coin','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6081,'Splendide_Coin','Splendide Coin','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6082,'Spirit_Of_Alfheim','Spirit Of Alfheim','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6083,'Dolly_Capsule','Capsule Dolls','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6084,'Bradium_Fragments','Bradium Fragments','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6085,'Shaggy_Muffler','Shaggy Muffler','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6086,'Withered_Flower','Withered Flower','Etc',890,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6087,'Crystal_Of_Soul_01','Spiritual Crystal','Etc',1050,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6088,'Crystal_Of_Soul_02','Spiritual Crystal','Etc',1050,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6089,'Piece_Of_Darkness','Dark Piece','Etc',1000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6090,'Purified_Bradium','Refined Bradium','Etc',1100,50,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6091,'Dark_Red_Scale','Dark Red Scale','Etc',200000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6092,'Singing_Crystal_Piece','Piece Of Singing Crystal','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6093,'Egg_Of_Draco','Draco\'s Egg','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6094,'Traditional_Cookie','Traditional Sweets','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6095,'Flavored_Alcohol','Flavored Alcohol','Etc',1000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6096,'Fish_With_Blue_Back','Fish With Blue Back','Etc',20,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6097,'Pumpkin_Pie_','Pumpkin Pie','Etc',20,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6098,'Small_Snow_Flower','Small Snow Flower','Etc',1000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6099,'Grilled_Rice_Cake','Grilled Rice Cake','Etc',20,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6100,'Damp_Darkness','Damp Darkness','Etc',1000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6101,'Attendance_Card','Attendance Card','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6102,'Report_On_Splendide','Report On Splendide','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6103,'Report_On_Manuk','Report On Manuk','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6104,'Big_Cell','Big Cell','Etc',1000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6105,'Morning_Dew','Morning Dew','Etc',20,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6106,'Well_Ripened_Berry','Well Ripened Berry','Etc',20,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6107,'Sunset_On_The_Rock','Sunset On The Rock','Etc',20,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6108,'Apple_Pudding','Apple Pudding','Etc',1000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6109,'Plant_Neutrient','Plant Neutrient','Etc',20,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6110,'Vital_Flower','Vital Flower','Etc',1000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6111,'Mystic_Stone','Mystic Stone','Etc',1000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6112,'Fresh_Plant','Fresh Plant','Etc',1000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6113,'Vital_Flower_','Vital Flower','Etc',1000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6114,'Flame_Gemstone','Flame Gemstone','Etc',1000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6115,'Bun_','Bun','Etc',1000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6116,'Succu_Pet_Coupon','Succubus Pet Exchange Coupon','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6117,'Imp_Pet_Coupon','Imp Pet Exchange Coupon','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6118,'Chung_E_Pet_Coupon','Chung E Exchange Coupon','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6119,'Natural_Leather','Cow Leather','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6120,'Face_Paint','Face Paint','Etc',120,20,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6121,'Makeover_Brush','Makeover Brush','Etc',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6122,'Paint_Brush','Paint Brush','Etc',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6123,'Surface_Paint','Surface Paint','Etc',200,30,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6124,'Wolf\'s_Flute','Wolf Flute','Etc',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6125,'Lucky_Box','Spring Time Box','Etc',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6126,'Happy_Box','Summer Happy Box','Etc',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6127,'Purification_Stone','Purification Stone','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (6128,'Guillotine_Antidote','Antidote','Etc',true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6129,'Ticket_Nightmare','Nightmare Terror Exchange Coupon','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6130,'Ticket_Loli_Ruri','Loli Ruri Exchange Coupon','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6131,'Ticket_Goblin_Leader','Goblin Leader Exchange Coupon','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6132,'Ticket_Incubus','Incubus Exchange Coupon','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6133,'Ticket_Miyabi_Ningyo','Miyabi Ningyo Exchange Coupon','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6134,'Ticket_Whisper','Giant Whisper Exchange Coupon','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6135,'Ticket_Wicked_Nymph','Evil Nymph Exchange Coupon','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6136,'Ticket_Medusa','Medusa Exchange Coupon','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6137,'Ticket_Stoneshooter','Stone Shooter Exchange Coupon','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6138,'Ticket_Marionette','Marionette Exchange Coupon','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6139,'Ticket_Leafcat','Leaf Cat Exchange Coupon','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6140,'Ticket_Dullahan','Dullahan Exchange Coupon','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6141,'Ticket_Shinobi','Shinobi Exchange Coupon','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6142,'Ticket_Golem','Golem Exchange Coupon','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6143,'Ticket_Civil_Servant','Civil Servant Exchange Coupon','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6144,'Heartbroken_Tears','Regrettable Tears','Etc',1000,2,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6145,'Vulcan_Bullet','Vulcan Bullet','Etc',10,2,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6146,'Magic_Gear_Fuel','Magic Gear Fuel','Etc',300,30,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6147,'Liquid_Condensed_Bullet','Liquid Condensed Bullet','Etc',100,3,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6148,'Chocolate_Of_Eternity','Eternity Of Chocolate','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6149,'Plain_Chocolate','Simple Chocolate','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6150,'Key_Of_The_Mansion','Key of The Mansion','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6151,'Peice_Of_Great_Bradium','Giant Bradium Fragment','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6152,'Glittering_Crystal','Glittering Crystal','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6153,'Special_Exchange_Coupon','Special Exchange Ticket','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6154,'Broken_Horn_Pipe','Broken Horn Pipe','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6155,'Coke_Membership_Card','Member Card','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6156,'Approval_Report','Approval Report','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6157,'Poring_Ticket','Poring Exchange Ticket','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6158,'Drops_Ticket','Drops Exchange Ticket','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6159,'Poporing_Ticket','Poporing Exchange Ticket','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6160,'Lunatic_Ticket','Lunatic Exchange Ticket','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6161,'Picky_Ticket','Picky Exchange Ticket','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6162,'Pecopeco_Ticket','Peco Peco Exchange Ticket','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6163,'Savage_Baby_Ticket','Savage Babe Exchange Ticket','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6164,'Spore_Ticket','Spore Exchange Ticket','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6165,'Poison_Spore_Ticket','Poison Spore Exchange Ticket','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6166,'Chonchon_Ticket','Chonchon Exchange Ticket','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6167,'Steel_Chonchon_Ticket','Steel Chonchon Exchange Ticket','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6168,'Petit_Ticket','Sky Petite Exchange Ticket','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6169,'Deviruchi_Ticket','Deviruchi Exchange Ticket','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6170,'Isis_Ticket','Isis Exchange Ticket','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6171,'Smokie_Ticket','Smokie Exchange Ticket','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6172,'Dokebi_Ticket','Dokebi Exchange Ticket','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6173,'Desert_Wolf_B_Ticket','Baby Desert Wolf Exchange Ticket','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6174,'Yoyo_Ticket','Yoyo Exchange Ticket','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6175,'Sohee_Ticket','Sohee Exchange Ticket','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6176,'Rocker_Ticket','Rocker Exchange Ticket','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6177,'Hunter_Fly_Ticket','Hunter Fly Exchange Ticket','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6178,'Orc_Warrior_Ticket','Orc Warrior Exchange Ticket','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6179,'Bapho_Jr_Ticket','Bapho Jr. Exchange Ticket','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6180,'Munak_Ticket','Munak Exchange Ticket','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6181,'Bongun_Ticket','Bongun Exchange Ticket','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6182,'Goblin_Ticket','Christmas Goblin Exchange Ticket','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6183,'Hardtack_Ticket','Rice Cake Exchange Ticket','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6184,'Zherlthsh_Ticket','Zherlthsh Exchange Ticket','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6185,'Alice_Ticket','Alice Exchange Ticket','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6186,'Monkey_Wrench','Monkey Wrench','Etc',500,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6187,'Blank_Card','Blank Card','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6188,'Slot_Coupon','Slotting Advertisement','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (6189,'Magic_Book_FB','Spell Book (Fire Bolt)','Etc',true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (6190,'Magic_Book_CB','Spell Book (Cold Bolt)','Etc',true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (6191,'Magic_Book_LB','Spell Book (Lightening Bolt)','Etc',true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (6192,'Magic_Book_SG','Spell Book (Storm Gust)','Etc',true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (6193,'Magic_Book_LOV','Spell Book (Lord Of Vermilion)','Etc',true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (6194,'Magic_Book_MS','Spell Book (Meteor Storm)','Etc',true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (6195,'Magic_Book_CM','Spell Book (Comet)','Etc',true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (6196,'Magic_Book_TV','Spell Book (Tetra Vortex)','Etc',true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (6197,'Magic_Book_TS','Spell Book (Thunder Storm)','Etc',true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (6198,'Magic_Book_JT','Spell Book (Jupitel Thunder)','Etc',true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (6199,'Magic_Book_WB','Spell Book (Water Ball)','Etc',true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (6200,'Magic_Book_HD','Spell Book (Heaven\'s Drive)','Etc',true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (6201,'Magic_Book_ES','Spell Book (Earth Spike)','Etc',true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (6202,'Magic_Book_ES_','Spell Book (Earth Strain)','Etc',true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (6203,'Magic_Book_CL','Spell Book (Chain Lightning)','Etc',true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (6204,'Magic_Book_CR','Spell Book (Crimson Rock)','Etc',true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (6205,'Magic_Book_DL','Spell Book (Drain Life)','Etc',true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6206,'I_Love_You','I Love You','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6207,'Thank_You','Thank You','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6208,'I_Respect_You','I Respect You','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6209,'Glory_Of_Knights','Knight\'s Honor','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6210,'Seed_Of_Horny_Plant','Seed Of Thorny Plant','Etc',600,1,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6211,'Bloodsuck_Plant_Seed','Bloodsuck Plant Seed','Etc',800,1,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6212,'Bomb_Mushroom_Spore','Bomb Mushroom Spore','Etc',1000,1,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6213,'Explosive_Powder','Explosive Powder','Etc',500,1,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6214,'Smoke_Powder','Smoke Powder','Etc',500,1,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6215,'Tear_Gas','Tear Gas','Etc',500,1,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6216,'Oil_Bottle','Oil Bottle','Etc',1000,1,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6217,'Mandragora_Flowerpot','Mandragora Flowerpot','Etc',2000,1,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6218,'Disin_Delivery_Box','Delivery_Daishin_Box','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6219,'Para_Team_Mark','Eden Group Mark','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6220,'Mysterious_Dyestuff','Mysterious Dyestuff','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6221,'Mystic_Leaf_Cat_Ball','Mystic Leaf Cat Ball','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6222,'Shining_Beads','Shining Beads','Etc',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6223,'Carnium','Carnium','Etc',2000,150,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6224,'Bradium','Bradium','Etc',2000,150,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6225,'HD_Carnium','HD Carnium','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6226,'HD_Bradium','HD Bradium','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6228,'Guarantee_Weapon_9Up','+9 Weapon Refine Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6229,'Guarantee_Weapon_8Up','+8 Weapon Refine Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6230,'Guarantee_Weapon_7Up','+7 Weapon Refine Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6231,'Guarantee_Weapon_6Up','+6 Weapon Refine Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6232,'Guarantee_Armor_9Up','+9 Armor Refine Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6233,'Guarantee_Armor_8Up','+8 Armor Refine Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6234,'Guarantee_Armor_7Up','+7 Armor Refine Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6235,'Guarantee_Armor_6Up','+6 Armor Refine Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6236,'Blue_Card_7','Blue Card 7','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6237,'Guarana_Fruit','Guarana Fruit','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6238,'Guarantee_Weapon_11Up','+11 Weapon Refine Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6239,'Guarantee_Armor_11Up','+11 Armor Refine Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6240,'HD_Oridecon','HD Oridecon','Etc',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6241,'HD_Elunium','HD Elunium','Etc',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6242,'Midgard_Coin','Midgard Coin','Etc',20,10,100,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6243,'Exchange_Coupon','Exchange Coupon','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6244,'Gun_Powder','Gun Powder','Etc',10,1,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6245,'Black_Powder','Black Powder','Etc',100,1,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6246,'Yellow_Powder','Yellow Powder','Etc',100,1,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6247,'White_Powder','White Powder','Etc',100,1,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6248,'Melange_Pot','Melange Pot','Etc',600,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6249,'Savage_Meat','Savage Meat','Etc',100,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6250,'Cooking_Skewer','Cooking Skewer','Etc',300,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6251,'Black_Charcoal','Black Charcoal','Etc',300,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6252,'Wolf_Blood','Blood Of Wolf','Etc',100,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6253,'Cold_Ice','Cold Ice','Etc',100,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6254,'Beef_Head_Meat','Beef Head','Etc',100,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6255,'Large_Cookpot','Large Cookpot','Etc',500,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6256,'Ice_Fragment','Ice Piece','Etc',100,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6257,'Ice_Crystal','Ice Crystal','Etc',100,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6258,'Comodo_Tropic_Fruit','Comodo Tropical Fruit','Etc',800,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6259,'Drocera_Tentacle','Drosera Tentacle','Etc',100,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6260,'Petti_Tail','Petite\'s Tail','Etc',100,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6261,'Fine_Noodle','Fine Noodles','Etc',500,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6262,'Cool_Gravy','Cool Gravy','Etc',400,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6263,'Coconut_Fruit','Coconut Fruit','Etc',100,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6264,'Melon','Melon','Etc',100,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6265,'Pineapple','Pineapple','Etc',100,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6266,'Cheat_Key','Key Of Deception','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6267,'Virtual_Key','Key Of Illusion','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6268,'Mirth_Key','Key Of Gaiety','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6269,'Master_Brush','A Master\'s Blush','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6270,'Mins_Picture','A Picture Of Minstrel Song','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6271,'Mins_Receipt','Receipt','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6272,'Experiment_Seed','Experiment Seed','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6273,'Altered_Seed','Seed For Experiment','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6274,'Saint_Cloth_Piece','A Piece Of Cloth Of A Saint','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6275,'King_Shield','Shield Of King','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6276,'Clear_Reagent','Clear Reagent','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6277,'Red_Reagent','Red Reagent','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6278,'Black_Reagent','Black Reagent','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6279,'Apple_Bomb_CB','Apple Bomb Guidebook','Etc',1000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6280,'Pinepple_Bomb_CB','Pineapple Bomb Guidebook','Etc',1000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6281,'Coconut_Bomb_CB','Coconut Fruit Bomb Guidebook','Etc',1000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6282,'Melon_Bomb_CB','Melon Bomb Guidebook','Etc',1000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6283,'Banana_Bomb_CB','Banana Bomb Guidebook','Etc',1000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6284,'Plant_Genetic_Grow','How To Grow Plant Genes','Etc',1000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6285,'Quality_Potion_Book','Manual: How To Make High Quality Potion','Etc',1000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6286,'F_Max_Weight_Up_Scroll','F Max Weight Up Scroll','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6287,'F_Clothing_Dye_Coupon','F Clothing Dye Coupon','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6288,'F_Happy_Box','F Happy Box','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6289,'F_Mysterious_Dyestuff','F Mysterious Dyestuff','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6290,'F_New_Style_Coupon','F New Style Coupon','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6291,'F_Enriched_Elunium','F Enriched Elunium','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6292,'F_Enriched_Oridecon','F Enriched Oridecon','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6293,'F_Token_Of_Siegfried','F Token Of Siegfried','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6294,'F_Marriage_Covenant','F Marriage Covenant','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6295,'F_Clothing_Dye_Coupon2','F Clothing Dye Coupon2','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6296,'RF_Taining_Notice','Training Notice','Etc',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6297,'Bottle_To_Throw','Throwing Bottle','Etc',300,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6298,'Pumpkin_Head_Crushed','Pumpkin Head Crushed','Etc',20,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6299,'Worn_Cloth_Piece','Worn Cloth Piece','Etc',20,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6300,'J_7Draw','event','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6301,'J_Semi_Draw','event','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6302,'GM_Handwriting','GM Handwriting','Etc',20004); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6303,'Changed_Hydra_Ball','Changed Hydra Ball','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6304,'Sapa_Feat_Cert','Proof Of Sapha\'s Honor','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6305,'Frozen_Skin_Piece','Frozen Piece Of Skin','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6306,'Solid_Bloodstain','Hard Bloodstain','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6307,'Suspicious_Magic_Stone','Cursed Magical Stone','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6308,'Unidentified_Relic','Unidentified Relic','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6309,'E_Max_Weight_Up_Scroll','E Max Weight Up Scroll','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6310,'E_Cloth_Dye_Coupon','E Cloth Dye Coupon','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6311,'E_Happy_Box','E Happy Box','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6312,'E_Mysterious_Dyestuff','E Mysterious Dyestuff','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6313,'E_New_Style_Coupon','E New Style Coupon','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6314,'E_Enriched_Elunium','E Enriched Elunium','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6315,'E_Enriched_Oridecon','E Enriched Oridecon','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6316,'E_Token_Of_Siegfried','E Token Of Siegfried','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6317,'E_Marriage_Covenant','E Marriage Covenant','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6318,'E_Cloth_Dye_Coupon2','E Cloth Dye Coupon2','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6319,'Small_Bradium','Small Bradium','Etc',324,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6320,'Premium_Reset_Stone','Premium Reset Stone','Etc',20,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6321,'Rakehorn_Helm','Rakehorn Helm','Etc',822,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6322,'Antler_Helm','Antler Helmet','Etc',800,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6323,'Twinhorn_Helm','Two-Horned Helmet','Etc',728,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6324,'Singlehorn_Helm','Single Horned Helmet','Etc',702,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6325,'White_Spider_Limb','White Spider Limb','Etc',1004,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6326,'Queen_Wing_Piece','Queen Wing Piece','Etc',1630,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6328,'Calender_January','Calender January','Etc',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6329,'Calender_February','Calender February','Etc',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6330,'Calender_March','Calender March','Etc',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6331,'Calender_April','Calender April','Etc',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6332,'Calender_May','Calender May','Etc',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6333,'Calender_June','Calender June','Etc',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6334,'Calender_July','Calender July','Etc',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6335,'Calender_August','Calender August','Etc',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6336,'Calender_September','Calender September','Etc',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6337,'Calender_October','Calender October','Etc',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6338,'Calender_November','Calender November','Etc',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6339,'Calender_December','Calender December','Etc',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6340,'Fade_Notation_Green','Fade Notation Green','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6341,'Fade_Notation_Red','Fade Notation Red','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6342,'Fade_Notation_Purple','Fade Notation Purple','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6343,'Fade_Notation_Blue','Fade Notation Blue','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6344,'Muscle_Story','Muscle Story','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6345,'Love_Ball','Love Ball','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6346,'Seagate_Mark','Seagate Mark','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6347,'Bless_Word_Paper1','Bless Word Paper','Etc',4020,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6348,'Bless_Word_Paper2','Bless Word Paper','Etc',4020,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6349,'Bless_Word_Paper3','Bless Word Paper','Etc',4020,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6350,'Bless_Word_Paper4','Bless Word Paper','Etc',4020,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6351,'Bless_Word_Paper5','Bless Word Paper','Etc',4020,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6352,'Bless_Word_Paper6','Bless Word Paper','Etc',4020,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6353,'Bless_Word_Paper7','Bless Word Paper','Etc',4020,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6354,'Bless_Word_Paper8','Bless Word Paper','Etc',4020,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6355,'Bless_Word_Paper9','Bless Word Paper','Etc',4020,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6356,'Bless_Word_Paper10','Bless Word Paper','Etc',4020,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6357,'Fortune_Cookie_Fail','Fortune Cookie Fail','Etc',4020,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6358,'Free_Cash_Coupon','Free Cash Coupon','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6359,'Guidebook_Exchange','Guidebook Exchange','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6360,'Scarlet_Pts','Scarlet Point','Etc',100,5,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6361,'Indigo_Pts','Indigo Point','Etc',100,5,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6362,'Yellow_Wish_Pts','Yellow Wish Point','Etc',100,5,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6363,'Lime_Green_Pts','Lime Green Point','Etc',100,5,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6369,'Amatsu_Bead_A','Amatsu Bead A','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6370,'Amatsu_Bead_Ma','Amatsu Bead Ma','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6371,'Amatsu_Bead_Tsu','Amatsu Bead Tsu','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6372,'Amatsu_Bead_Jam','Amatsu Bead Jam','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6373,'Amatsu_Bead_Bo','Amatsu Bead Bo','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6374,'Amatsu_Bead_Ree','Amatsu Bead Ree','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6375,'Amatsu_Bead_!','Amatsu Bead !','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6376,'KVM_Badge','KVM Badge','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6377,'Buy_Market_Permit','Buy Market Permit','Etc',20,10,100,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6378,'Winning_Mark','Winning Mark','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6379,'7Star_Board','7Star Board','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6380,'Mora_Coin','Mora Coin','Etc',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6381,'Field_Shovel','Field Shovel','Etc',20,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6382,'Urn','Urn','Etc',20,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6383,'Clue_Of_Lope','Lope\'s Clue','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6384,'Ring_Of_Lope','Lope\'s Ring','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6385,'Research_Tool_Bag','Research Tool Bag','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6386,'Bathtub_R_Sample','Bath Water Sample','Etc',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6387,'Teeth_Sample','Teeth Sample','Etc',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6388,'Scale_Sample','Scale Sample','Etc',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6389,'Puddle_R_Sample','Sample Of Puddle Research','Etc',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6390,'Small_Pocket','Small Pocket','Etc',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6391,'Splendid_Supply_Kit','Splendid Supply Kit','Etc',20,2000); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6392,'Bradium_Box','Bradium Box','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6393,'Round_Feather','Round Feather','Etc',700,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6394,'Golden_Feather','Golden Feather','Etc',650,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6395,'Angel_Magic_Power','Angel Magic Power','Etc',820,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6396,'Auger_Of_Spirit','Auger Of Spirit','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6456,'Guarantee_Weapon_5Up','+5 Weapon Refine Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6457,'Guarantee_Armor_5Up','+5 Armor Refine Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6493,'Makibishi','Makibishi','Etc',30,1,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6499,'Ancient_Grudge','Ancient Grudge','Etc',500,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6512,'Charm_Fire','Fire Amulet','Etc',100,1,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6513,'Charm_Ice','Ice Amulet','Etc',100,1,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6514,'Charm_Wind','Wind Amulet','Etc',100,1,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6515,'Charm_Earth','Earth Amulet','Etc',100,1,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7001,'Mould_Powder','Mould Powder','Etc',466,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7002,'Ogre_Tooth','Ogre Tooth','Etc',658,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7003,'Anolian_Skin','Anolian Skin','Etc',968,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7004,'Mud_Lump','Mud Lump','Etc',876,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7005,'Skull','Skull','Etc',1044,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7006,'Wing_Of_Red_Bat','Wing of Red Bat','Etc',168,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7007,'Claw_Of_Rat','Claw of Rat','Etc',748,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7008,'Stiff_Horn','Stiff Horn','Etc',636,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7009,'Glitter_Shell','Glitter Shell','Etc',528,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7010,'Tail_Of_Steel_Scorpion','Tail of Steel Scorpion','Etc',548,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7011,'Claw_Of_Monkey','Claw of Monkey','Etc',466,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7012,'Tough_Scalelike_Stem','Tough Scalelike Stem','Etc',412,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7013,'Coral_Reef','Coral Reef','Etc',772,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7014,'Old_Portrait','Old Portrait','Etc',1500,100,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7015,'Bookclip_In_Memory','Bookclip in Memory','Etc',3000,20,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7016,'Spoon_Stub','Spoon Stub','Etc',2500,20,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7017,'Executioner\'s_Mitten','Executioner\'s Mitten','Etc',4500,30,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7018,'Young_Twig','Young Twig','Etc',50,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7019,'Loki\'s_Whispers','Loki\'s Whispers','Etc',20,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7020,'Mother\'s_Nightmare','Mother\'s Nightmare','Etc',20,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7021,'Foolishness_Of_Blind','Foolishness of the Blind','Etc',20,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7022,'Old_Hilt','Old Hilt','Etc',150,30,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7023,'Blade_Lost_In_Darkness','Blade Lost in Darkness','Etc',12000,40,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7024,'Bloody_Edge','Bloody Edge','Etc',10000,40,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7025,'Lucifer\'s_Lament','Lucifer\'s Lament','Etc',30000,50,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7026,'Key_Of_Clock_Tower','Key of Clock Tower','Etc',100,30,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7027,'Underground_Key','Key of Underground','Etc',100,30,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7028,'Invite_For_Duel','Invite for Duel','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7029,'Admission_For_Duel','Admission for Duel','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7030,'Claw_Of_Desert_Wolf','Claw of Desert Wolf','Etc',208,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7031,'Old_Frying_Pan','Old Frying Pan','Etc',196,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7032,'Piece_Of_Egg_Shell','Piece of Egg Shell','Etc',168,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7033,'Poison_Spore','Poison Spore','Etc',114,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7034,'Red_Socks_With_Holes','Red Stocking','Etc',100,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7035,'Matchstick','Matchstick','Etc',100,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7036,'Fang_Of_Garm','Fang of Hatii','Etc',100,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7037,'Trade_Coupon','Coupon','Etc',100,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7038,'Yarn','Yarn','Etc',100,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7039,'Novice_Nametag','Newbie Tag','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7040,'Megaphone','Megaphone','Etc',1,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7041,'Fine_Grit','Fine Grit','Etc',120,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7042,'Leather_Bag_Of_Infinity','Leather Bag of Infinity','Etc',1,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7043,'Fine_Sand','Fine Sand','Etc',100,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7044,'Vigorgra','Vigorgra','Etc',1,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7045,'Magic_Paint','Magic Paint','Etc',1,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7046,'Cart_Parts','Cart Parts','Etc',1,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7047,'Alice\'s_Apron','Alice\'s Apron','Etc',2424,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7048,'Talon_Of_Griffin','Talon of Griffon','Etc',5418,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (7049,'Stone','Stone','Etc',30,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7050,'Cotton_Mat','Cotton Mat','Etc',100,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7051,'Silk_Mat','Silk Mat','Etc',100,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7052,'Old_Magazine','Old Papers','Etc',100,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7053,'Cyfar','Cyfar','Etc',772,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7054,'Brigan','Brigan','Etc',746,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7055,'Animal_Pooopoo','Animal Poop','Etc',100,50,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7056,'Payroll_Of_Kafra','Payment Statement for Kafra Employee','Etc',1,50,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7057,'Gallar_Horn','Gjallar','Etc',1,500,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7058,'Gullraifnir','Gleipnir','Etc',1,500,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (7059,'Cargo_Free_Ticket','Free Ticket for Kafra Storage','Etc',1); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (7060,'Warp_Free_Ticket','Free Ticket for Kafra Transportation','Etc',1); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (7061,'Cart_Free_Ticket','Free Ticket for the Cart Service','Etc',1); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7062,'Broken_Turtle_Shell','Broken Turtle Shell','Etc',280,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7063,'Soft_Feather','Soft Feather','Etc',280,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7064,'Dragon_Fly_Wing','Wing of Dragonfly','Etc',520,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7065,'Sea_Otter_Leather','Sea-Otter Fur','Etc',820,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7066,'Ice_Piece','Ice Cubic','Etc',660,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7067,'Stone_Piece','Stone Fragment','Etc',640,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7068,'Burn_Tree','Burnt Tree','Etc',722,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7069,'Broken_Armor_Piece','Destroyed Armor','Etc',1042,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7070,'Broken_Shell','Broken Shell','Etc',900,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7071,'Tatters_Clothes','Tattered Clothes','Etc',1280,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7072,'Rust_Suriken','Old Shuriken','Etc',1780,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7073,'Jewel_Of_Prayer','Freya\'s Jewel','Etc',1,500,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7074,'Iron_Glove','Thor\'s Gauntlets','Etc',1,500,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7075,'Iron_Maiden','Iron Maiden','Etc',1,500,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7076,'Mystery_Wheel','Wheel of the Unknown','Etc',1,500,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7077,'Silver_Fancy','Silver Ornament','Etc',1,500,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7078,'Anger_Of_Valkurye','Wrath of Valkyrie','Etc',1,500,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7079,'Feather_Of_Angel','Feather of Angel Wing','Etc',1,500,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7080,'Foot_Step_Of_Cat','Cat Tread','Etc',1,500,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7081,'Beard_Of_Women','Woman\'s Moustache','Etc',1,500,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7082,'Root_Of_Stone','Root of Stone','Etc',1,500,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7083,'Soul_Of_Fish','Spirit of Fish','Etc',1,500,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7084,'Saliva_Of_Bird','Sputum of Bird','Etc',1,500,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7085,'Tendon_Of_Bear','Sinew of Bear','Etc',1,500,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7086,'Symbol_Of_Sun','Emblem of the Sun God','Etc',1,500,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7087,'Breath_Of_Soul','Breath of Spirit','Etc',1,500,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7088,'Crystal_Of_Snow','Snow Crystal','Etc',1,500,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7089,'Indication_Of_Tempest','Omen of Tempest','Etc',1,500,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7090,'Slilince_Wave','Ripple','Etc',1,500,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7091,'Rough_Billows','Billow','Etc',1,500,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7092,'Air_Stream','Drifting Air','Etc',1,500,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7093,'Wheel','Cogwheel','Etc',1512,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7094,'Mystery_Piece','Fragment','Etc',1344,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7095,'Broken_Steel_Piece','Metal Fragment','Etc',1075,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7096,'Cold_Magma','Lava','Etc',1109,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7097,'Burning_Heart','Burning Heart','Etc',924,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7098,'Live_Coal','Live Coal','Etc',638,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7099,'Old_Magic_Circle','Worn-out Magic Scroll','Etc',773,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7100,'Sharp_Leaf','Sharp Leaf','Etc',806,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7101,'Peco_Wing_Feather','Peco Peco Feather','Etc',454,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7102,'Hideous_Dream','Nightmare','Etc',1075,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7103,'Unknown_Liquid_Bottle','Unknown Liquid Bottle','Etc',10,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7104,'Fake_Angel_Wing','False Angel Wing','Etc',756,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7105,'Fake_Angel_Loop','False Heaven Ring','Etc',924,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7106,'Goat\'s_Horn','Antelope Horn','Etc',672,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7107,'Gaoat\'s_Skin','Antelope Skin','Etc',756,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7108,'Boroken_Shiled_Piece','Piece of Shield','Etc',1680,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7109,'Shine_Spear_Blade','Shining Spear Blade','Etc',840,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7110,'Vroken_Sword','Broken Sword','Etc',588,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7111,'Smooth_Paper','Slick Paper','Etc',706,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7112,'Fright_Paper_Blade','Sharp Paper','Etc',907,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7113,'Broken_Pharaoh_Symbol','Broken Pharaoh Emblem','Etc',2016,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7114,'Tutankhamen\'s_Mask','Masque of Tutankhamen','Etc',10,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7115,'Harpy\'s_Feather','Harpy Feather','Etc',1142,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7116,'Harpy\'s_Claw','Harpy Talon','Etc',1210,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7117,'Rent_Spell_Book','Torn Magic Book','Etc',1142,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7118,'Rent_Scroll','Torn Scroll','Etc',1361,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7119,'Spawns','Bacillus','Etc',1025,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7120,'Burning_Horse_Shoe','Burning Horseshoe','Etc',823,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7121,'Honey_Jar','Honey Pot','Etc',622,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7122,'Hot_Hair','Burning Hair','Etc',974,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7123,'Dragon\'s_Skin','Dragon Skin','Etc',1025,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7124,'Sand_Lump','Sand Clump','Etc',706,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7125,'Scropion\'s_Nipper','Scorpion Claw','Etc',706,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7126,'Large_Jellopy','Large Jellopy','Etc',840,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7127,'Alcol_Create_Book','Alcohol Creation Guide','Etc',100000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7128,'FireBottle_Create_Book','Bottle Grenade Creation Guide','Etc',100000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7129,'Acid_Create_Book','Acid Bottle Creation Guide','Etc',100000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7130,'Plant_Create_Book','Plant Bottle Creation Guide','Etc',100000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7131,'Mine_Create_Book','Marine Sphere Creation Guide','Etc',100000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7132,'Coating_Create_Book','Glistening Coat Creation Guide','Etc',100000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7133,'Slim_Potion_Create_Book','Condensed Potion Creation Guide','Etc',240000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7134,'Medicine_Bowl','Medicine Bowl','Etc',8,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7135,'Fire_Bottle','Bottle Grenade','Etc',200,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7136,'Acid_Bottle','Acid Bottle','Etc',200,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7137,'MenEater_Plant_Bottle','Plant Bottle','Etc',200,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7138,'Mini_Bottle','Marine Sphere Bottle','Etc',200,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7139,'Coating_Bottle','Glistening Coat','Etc',200,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7140,'Seed_Of_Life','Seed of Life','Etc',60000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7141,'Yggdrasilberry_Dew','Morning Dew of Yggdrasil','Etc',20000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7142,'Germination_Breed','Embryo','Etc',10,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7143,'Life_Force_Pot','Glass Tube','Etc',5000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7144,'Normal_Potion_Book','Potion Creation Guide','Etc',100000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7145,'Rag_T_Shirts','Ragnarok T-shirt','Etc',1,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7146,'Vacance_Ticket','Vacation Ticket','Etc',1,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7147,'Jasmin','Jasmine','Etc',1,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7148,'Mother_Letter','Mother\'s Letter','Etc',1,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7149,'Yellow_Plate','Yellow Plate','Etc',220,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7150,'Bamboo_Cut','Piece of Bamboo','Etc',310,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7151,'Oil_Paper','Oil Paper','Etc',210,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7152,'Glossy_Hair','Glossy Hair','Etc',340,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7153,'Old_Japaness_Clothes','Worn-out Kimono','Etc',590,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7154,'Poison_Powder','Poisonous Powder','Etc',160,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7155,'Poison_Toad\'s_Skin','Poisonous Toad Skin','Etc',280,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7156,'Broken_Shuriken','Broken Shuriken','Etc',470,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7157,'Black_Mask','Dark Mask','Etc',315,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7158,'Broken_Wine_Vessel','Broken Liquor Jar','Etc',160,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7159,'Tengu\'s_Nose','Tengu Nose','Etc',400,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7160,'Lord\'s_Passable_Ticket','Feudal Lord Permit','Etc',1,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7161,'Black_Bear\'s_Skin','Black Bear Skin','Etc',384,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7162,'Cloud_Piece','Cloud Crumb','Etc',390,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7163,'Sharp_Feeler','Hard Feeler','Etc',570,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7164,'Hard_Peach','Solid Peach','Etc',400,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7165,'Limpid_Celestial_Robe','Transparent Celestial Robe','Etc',650,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7166,'Soft_Silk_Cloth','Soft Silk','Etc',1200,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7167,'Mystery_Iron_Bit','Strange Steel Piece','Etc',430,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7168,'Great_Wing','Giant Butterfly Wing','Etc',614,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7169,'Taegeuk_Plate','Ba Gua','Etc',2800,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7170,'Tuxedo','Tuxedo','Etc',43000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7171,'Leopard_Skin','Leopard Skin','Etc',282,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7172,'Leopard_Talon','Leopard Claw','Etc',290,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7173,'BurnBuster_Bag','iROGM02\'s Backpack','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (7174,'Packing_Ribbon','Wrapping Lace','Etc',10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (7175,'Packing_Paper','Wrapping Paper','Etc',10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7176,'XMAS_Coupon','Royal Certificate','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7177,'Part_Of_Star\'s_Sob','Crumb of Sobbing Starlight','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7178,'Star\'s_Sob','Sobbing Starlight','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7179,'Donation_Card','Proof of Donation','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7180,'Introduction_Of_Mr.Han','Hahn Sukbong\'s Recommendation','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7181,'Receipt_01','Receipt','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7182,'Cacao','Cacao','Etc',200,20,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7183,'Sister_Letter','Letter from Sister','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7184,'Piano_Keyboard','Piano Key','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7185,'Quiz_Ticket','Quiz Entry','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7186,'Thin_Stem','Thin Trunk','Etc',380,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7187,'Festival_Mask','Festival Mask','Etc',100,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7188,'Browny_Root','Brown Root','Etc',560,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7189,'Heart_Of_Tree','Wooden Heart','Etc',680,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7190,'Solid_Peeling','Solid Husk','Etc',140,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (7191,'Lamplight','Lamp','Etc',10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7192,'Blade_Of_Pinwheel','Vane','Etc',160,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7193,'Germinating_Sprout','Sprout','Etc',230,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7194,'Soft_Leaf','Soft Blade of Grass','Etc',400,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7195,'Air_Rifle','Slingshot','Etc',210,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7196,'Shoulder_Protection','Shoulder Protector','Etc',230,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7197,'Tough_Vines','Tough Vines','Etc',500,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7198,'Great_Leaf','Huge Leaf','Etc',610,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7199,'Coupon','Coupon','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7200,'Flexible_String','Elastic Band','Etc',380,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7201,'Log','Log','Etc',250,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7202,'Beetle_Nipper','Pincher of Beetle','Etc',290,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7203,'Solid_Twig','Strong Branch','Etc',190,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7204,'Gunpowder','Gunpowder','Etc',320,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7205,'Piece_Of_Black_Cloth','Piece of Black Cloth','Etc',526,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7206,'Black_Kitty_Doll','Black Cat Doll','Etc',1440,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7207,'Old_Manteau','Old Manteau','Etc',1050,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7208,'Rusty_Cleaver','Rusty Kitchen Knife','Etc',1780,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7209,'Dullahan\'s_Helm','Helm of Dullahan','Etc',1350,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7210,'Dullahan_Armor','Armor Piece of Dullahan','Etc',790,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7211,'Rojerta_Piece','Fragment of Rossata Stone','Etc',2600,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7212,'Hanging_Doll','Hung Doll','Etc',1020,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7213,'Needle_Pouch','Needle Packet','Etc',832,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7214,'Bat_Cage','Bat Cage','Etc',880,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7215,'Broken_Needle','Broken Needle','Etc',690,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7216,'Red_Scarf','Red Muffler','Etc',660,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7217,'Spool','Spool','Etc',424,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7218,'Rotten_Rope','Decomposed Rope','Etc',390,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7219,'Striped_Socks','Striped Sock','Etc',920,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7220,'Ectoplasm','Ectoplasm','Etc',322,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7221,'Tangled_Chain','Tangled Chains','Etc',740,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7222,'Tree_Knot','Wooden Gnarl','Etc',468,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7223,'Distorted_Portrait','Contorted Self-Portrait','Etc',2032,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7224,'Stone_Of_Intelligence','Stone of Sage','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7225,'Pumpkin_Bucket','Pumpkin Lantern','Etc',486,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7226,'Pill','Pellet','Etc',2,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7227,'TCG_Card','TCG Card','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7228,'Gold_Bullion','Gold Bullion','Etc',100000,300,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7229,'Silver_Bullion','Silver Bullion','Etc',50000,300,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7230,'White_Gold_Bullion','Platinum Bullion','Etc',200000,300,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7231,'Gold_Ore','Gold Ore','Etc',20,150); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7232,'Silver_Ore','Silver Ore','Etc',20,150); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7233,'Mithril_Ore','Mithril Ore','Etc',20,150); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7234,'Soul_Of_Guild','Spirit of Guild','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7235,'Soul_Of_Courage','Spirit of Charge','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7236,'Soul_Of_Guard','Spirit of Protection','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7237,'Soul_Of_Partnership','Spirit of Association','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7238,'Soul_Of_Correspondence','Spirit of Coordination','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7239,'Soul_Of_Proceeding','Spirit of Advance','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7240,'Soul_Of_Confidence','Spirit of Trust','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7241,'Soul_Of_Agreement','Spirit of Union','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7242,'Soul_Of_Harmony','Spirit of Combination','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7243,'Soul_Of_Cooperate','Spirit of Cooperation','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7244,'Soul_Of_Unity','Spirit of Solidarity','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7245,'Soul_Of_Friendship','Spirit of Friendship','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7246,'Soul_Of_Peace','Spirit of Peace','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7247,'Soul_Of_Spirit','Spirit of Determination','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7248,'Soul_Of_Honor','Spirit of Honor','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7249,'Soul_Of_Service','Spirit of Service','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7250,'Soul_Of_Glory','Spirit of Glory','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7251,'Soul_Of_Victory','Spirit of Victory','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7252,'Herb_Medicine','Herbal Medicine','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7253,'Taeguk_Flag','Golden Korean Flag','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7254,'Digital_Print_Ticket','Digital Picture Printing Coupon','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7255,'China_Marble01','Mystic Orb','Etc',100); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7256,'China_Marble02','Mystic Orb','Etc',100); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7257,'China_Marble03','Mystic Orb','Etc',100); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7258,'China_Marble04','Mystic Orb','Etc',100); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7259,'China_Marble05','Mystic Orb','Etc',100); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7260,'China_Marble06','Mystic Orb','Etc',100); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7261,'China_Marble07','Mystic Orb','Etc',100); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7262,'Fan','Folding Fan of Cat Ghost','Etc',466,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7263,'Cat_Eyed_Stone','Cat\'s Eye','Etc',954,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7264,'Dried_Sand','Dry Sand','Etc',322,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7265,'Dragon_Horn','Dragon Horn','Etc',544,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7266,'Dragon_Fang','Denture from Dragon Mask','Etc',436,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7267,'Tiger_Skin_Panties','Tiger Panty','Etc',298,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7268,'Little_Blacky_Ghost','Little Ghost Doll','Etc',1210,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7269,'Bib','Pinafore','Etc',960,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7270,'Milk_Bottle','Nursing Bottle','Etc',1100,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7271,'Figure','Novice Figure','Etc',10000,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7272,'Meat_Dumpling_Doll','Rice Ball Doll','Etc',500,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7273,'Golden_Necklace','RWC Necklace','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7274,'Ancient_Translator','Translated Ancient Language','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7275,'Ancient_Document','Record of Ancient Language','Etc',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7276,'Picture_Letter','Doodled Message','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7277,'Munak_Doll','Munak Doll','Etc',8900,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7278,'Wellbeing_Letter','Letter to Wife','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7279,'Vita500_Lid','Vita500 Lid','Etc',10,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7280,'Quiz_Ticket01','1st Quiz Entry','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7281,'Quiz_Ticket02','2nd Quiz Entry','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7282,'Quiz_Ticket03','3rd Quiz Entry','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7283,'Quiz_Ticket04','4th Quiz Entry','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7284,'Quiz_Ticket05','5th Quiz Entry','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7285,'Thread_Skein','Holy Threads','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7286,'Chilli','Red Chile','Etc',20,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7287,'Thread_Skein_','Holier Threads','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7288,'Thai_Ring','Engagement Ring','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7289,'Olivine','Peridot','Etc',3000,100,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7290,'Phlogopite','Phlogopite','Etc',3000,100,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7291,'Agate','Agate','Etc',3000,100,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7292,'Muscovite','Muscovite','Etc',3000,100,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7293,'Rose_Quartz','Rose Quartz','Etc',3000,100,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7294,'Turquoise','Turquoise','Etc',3000,100,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7295,'Citrine','Citrin','Etc',3000,100,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7296,'Pyroxene','Pyroxene','Etc',3000,100,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7297,'Biotite','Biotite','Etc',3000,100,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7298,'Leaf_Clothes','Fig Leaf','Etc',538,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7299,'Bamboo_Basket','Straw Basket','Etc',632,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7300,'Gemstone','Gemstone','Etc',1420,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7301,'Sword_Accessory','Tassel','Etc',798,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7302,'KRATHONG','Krathong','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (7303,'Bag_Of_Rice','Straw Rice Bag','Etc',800,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7304,'Witch\'s_Spell_Book','Witch\'s Spell Scroll','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7305,'Authority_Of_Nine_World','Symbol of the Nine Realms','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7306,'Fragment_Of_Soul','Piece of Spirit','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7307,'Whisper_Of_Soul','Spiritual Whispers','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7308,'Witch\'s_Potion','Witch\'s Tonic','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7309,'Wing_Of_Crow','Crow Wing','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7310,'Free_Peco_Ticket','Free Ticket for Peco Ride','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7311,'Free_Flying_Ship_Ticket','Free Ticket for Flyship','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7312,'Jubilee','Jubilee','Etc',32,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (7313,'Seal_Of_Witch','Witch\'s Medal','Etc',2); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7314,'The_Sign','The Sign','Etc',2,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7315,'Dark_Crystal_Fragment','Dark Crystal Fragment','Etc',422,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7316,'Long_Limb','Insect Leg','Etc',658,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7317,'Screw','Rusty Screw','Etc',534,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7318,'Old_Pick','Old Pick','Etc',512,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7319,'Old_Steel_Plate','Used Iron Plate','Etc',1024,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7320,'Air_Pollutant','Dust Pollutant','Etc',256,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7321,'Fragment_Of_Crystal','Crystal Fragment','Etc',552,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7322,'Poisonous_Gas','Toxic Gas','Etc',666,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7323,'Battered_Kettle','Battered Kettle','Etc',256,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7325,'Tube','Flexible Tube','Etc',102,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7326,'Fluorescent_Liquid','Fluorescent Liquid','Etc',712,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7327,'Headlamp','Flashlight','Etc',1024,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7328,'Legendary_Scroll','Legend of Songkran','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7329,'Old_Copper_Key','Old Bronze Key','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7330,'2anny','Mystic Orb','Etc',100); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7331,'Flower_Of_Heaven','Heaven Flower','Etc',500,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7332,'Slate','Complete Tablet','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7333,'Piece_Of_Slate_1','Prontera Tablet','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7334,'Piece_Of_Slate_2','Payon Tablet','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7335,'Piece_Of_Slate_3','Morocc Tablet','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7336,'Piece_Of_Slate_4','Geffen Tablet','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7337,'Eye_Of_Hellion','Eye of Hellion','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7338,'RO_Transportation_Card','One-way Ticket','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7339,'RO_Transportation_Card_','Commemorative Travel Card','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7340,'Will_Of_Darkness','Will of the Darkness','Etc',734,50,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7341,'Worn_Out_Pendant','Old Pendant','Etc',20,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7342,'File01','File Folder','Etc',20,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7343,'File02','Sealed File Folder','Etc',20,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7344,'File03','Shinokas Case File','Etc',20,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7345,'Armlet_Of_Prisoner','Handcuffs','Etc',724,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7346,'Pile_Of_Ymir_Heart','Ymir\'s Heart Piece','Etc',20,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7347,'Lab_Staff_Record','Research Chart','Etc',840,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7348,'Indication_Of_Member01','Membership Card','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7349,'Indication_Of_Member02','Archive Permit','Etc',20,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7350,'Pass','Pass','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7351,'Friend\'s_Diary','Friend\'s Diary','Etc',20,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7352,'Transparent_Plate01','Transparent Plate','Etc',20,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7353,'Transparent_Plate02','Transparent Plate','Etc',20,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7354,'Transparent_Plate03','Transparent Plate','Etc',20,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7355,'Transparent_Plate04','Transparent Plate','Etc',20,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7356,'Piece_Of_Crest1','Crest Piece','Etc',5000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7357,'Piece_Of_Crest2','Crest Piece','Etc',5000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7358,'Piece_Of_Crest3','Crest Piece','Etc',5000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7359,'Piece_Of_Crest4','Crest Piece','Etc',5000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7360,'RO_Festival_Ticket','RO Festival Invitation','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7361,'Lotto01','Lotto Ball 01','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7362,'Lotto02','Lotto Ball 02','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7363,'Lotto03','Lotto Ball 03','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7364,'Lotto04','Lotto Ball 04','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7365,'Lotto05','Lotto Ball 05','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7366,'Lotto06','Lotto Ball 06','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7367,'Lotto07','Lotto Ball 07','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7368,'Lotto08','Lotto Ball 08','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7369,'Lotto09','Lotto Ball 09','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7370,'Lotto10','Lotto Ball 10','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7371,'Lotto11','Lotto Ball 11','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7372,'Lotto12','Lotto Ball 12','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7373,'Lotto13','Lotto Ball 13','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7374,'Lotto14','Lotto Ball 14','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7375,'Lotto15','Lotto Ball 15','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7376,'Lotto16','Lotto Ball 16','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7377,'Lotto17','Lotto Ball 17','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7378,'Lotto18','Lotto Ball 18','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7379,'Lotto19','Lotto Ball 19','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7380,'Lotto20','Lotto Ball 20','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7381,'Lotto21','Lotto Ball 21','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7382,'Lotto22','Lotto Ball 22','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7383,'Lotto23','Lotto Ball 23','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7384,'Lotto24','Lotto Ball 24','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7385,'Lotto25','Lotto Ball 25','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7386,'Lotto26','Lotto Ball 26','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7387,'Lotto27','Lotto Ball 27','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7388,'Lotto28','Lotto Ball 28','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7389,'Lotto29','Lotto Ball 29','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7390,'Lotto30','Lotto Ball 30','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7391,'Lotto31','Lotto Ball 31','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7392,'Lotto32','Lotto Ball 32','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7393,'Lotto33','Lotto Ball 33','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7394,'Lotto34','Lotto Ball 34','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7395,'Lotto35','Lotto Ball 35','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7396,'Lotto36','Lotto Ball 36','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7397,'Lotto37','Lotto Ball 37','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7398,'Lotto38','Lotto Ball 38','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7399,'Word_Card01','Selamat','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7400,'Word_Card02','Hari','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7401,'Word_Card03','Kemerdekaan','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7402,'Word_Card04','Republik','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7403,'Word_Card05','Indonesia','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7404,'Word_Card06','Ke-60','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7405,'Crushed_Can','Crushed Can','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7406,'Moon_Cake1','Yuebing','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7407,'Moon_Cake2','Yuebing','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7408,'Moon_Cake3','Yuebing','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7409,'Moon_Cake4','Yuebing','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7410,'Moon_Cake5','Yuebing','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7411,'Moon_Cake6','Yuebing','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7412,'Moon_Cake7','Yuebing','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7413,'Moon_Cake8','Yuebing','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7414,'Moon_Cake9','Yuebing','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7415,'Stone_Of_Summons','Summoning Stone','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7416,'Letter_Of_Recommend','Letter of Recommendation','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7417,'Mission_ScrollA','Written Request(A)','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7418,'Mission_ScrollB','Written Request(B)','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7419,'Embryo_HandBook','Embryo Creation Guide','Etc',48000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7420,'Skull_','Skull','Etc',100,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7421,'Key_Red','Red Key','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7422,'Key_Yellow','Yellow Key','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7423,'Key_Blue','Blue Key','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7424,'Key_Green','Green Key','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7425,'Key_Black','Black Key','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7426,'Magic_Gem_Red','Red Charm Stone','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7427,'Magic_Gem_Yellow','Yellow Charm Stone','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7428,'Magic_Gem_Blue','Blue Charm Stone','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7429,'Magic_Gem_Green','Green Charm Stone','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7430,'Magic_Gem_Black','Black Charm Stone','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7431,'Several_Books','Pile of Books','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7432,'Leather_Pouch','Leather Pouch','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7433,'Scroll','Blank Scroll','Etc',4000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7434,'Elemental_Potion_Book','Elemental Potion Creation Guide','Etc',100000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7435,'Golden_Bracelet','Golden Ornament','Etc',1907,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7436,'Piece_Of_Memory_Green','Fragment of Agony','Etc',1506,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7437,'Piece_Of_Memory_Purple','Fragment of Misery','Etc',1506,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7438,'Piece_Of_Memory_Blue','Fragment of Hatred','Etc',1506,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7439,'Piece_Of_Memory_Red','Fragment of Despair','Etc',1506,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7440,'Red_Feather','Red Feather','Etc',1335,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7441,'Blue_Feather','Blue Feather','Etc',1408,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7442,'Cursed_Seal','Cursed Seal','Etc',1332,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7443,'Tri_Headed_Dragon_Head','Three-Headed Dragon\'s Head','Etc',956,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7444,'Treasure_Box','Treasure Box','Etc',300000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7445,'Dragonball_Green','Green Bijou','Etc',887,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7446,'Dragonball_Blue','Blue Bijou','Etc',887,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7447,'Dragonball_Red','Red Bijou','Etc',887,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7448,'Dragonball_Yellow','Yellow Bijou','Etc',887,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7449,'Bloody_Page','Bloody Page','Etc',681,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7450,'Piece_Of_Bone_Armor','Skeletal Armor Piece','Etc',2050,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7451,'Scale_Of_Red_Dragon','Fire Dragon Scale','Etc',1852,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7452,'Yellow_Spice','Yellow Spice','Etc',1000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7453,'Sweet_Sauce','Sweet Sauce','Etc',700,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7454,'Plain_Sauce','Savory Sauce','Etc',700,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7455,'Hot_Sauce','Spicy Sauce','Etc',700,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7456,'Red_Spice','Red Spice','Etc',1000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7457,'Cooking_Oil','Cooking Oil','Etc',500,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7458,'Baphomet\'s_Horn','Fortune Horn','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7459,'RAMADAN_','Idul Fitri Card','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7460,'Niflheim_Ticket','Niflheim Express Ticket','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7461,'BlueCard_A','Blue A Card','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7462,'BlueCard_E','Blue E Card','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7463,'BlueCard_F','Blue F Card','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7464,'BlueCard_H','Blue H Card','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7465,'BlueCard_L','Blue L Card','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7466,'BlueCard_N','Blue N Card','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7467,'BlueCard_O','Blue O Card','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7468,'BlueCard_P','Blue P Card','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7469,'BlueCard_U','Blue U Card','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7470,'BlueCard_W','Blue W Card','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7471,'BlueCard_Y','Blue Y Card','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7472,'Cookbook01','Level 1 Cookbook','Etc',1000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7473,'Cookbook02','Level 2 Cookbook','Etc',1000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7474,'Cookbook03','Level 3 Cookbook','Etc',1000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7475,'Cookbook04','Level 4 Cookbook','Etc',1000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7476,'Cookbook05','Level 5 Cookbook','Etc',1000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7477,'Cookbook06','Level 6 Cookbook','Etc',1000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7478,'Cookbook07','Level 7 Cookbook','Etc',1000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7479,'Cookbook08','Level 8 Cookbook','Etc',1000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7480,'Cookbook09','Level 9 Cookbook','Etc',1000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7481,'Cookbook10','Level 10 Cookbook','Etc',1000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7482,'Pot','Pot','Etc',200,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7483,'Key_Of_Seal','Key of the Seal','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7484,'Warrior_Symbol','Symbol of a Brave Warrior','Etc',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7485,'2nd_Floor_Pass','Cloud General','Etc',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7486,'3rd_Floor_Pass','Wind General','Etc',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7487,'Tavern_Wine','Culinary Wine','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7488,'Delivery_Box','Delivery Package','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7489,'Villa_Spare_Key','Cottage Key','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7490,'Kyll_Hire_Letter','Letter to Elly','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7491,'Iron_Box','Steel Box','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7492,'Yellow_Key_Card','Yellow Keycard','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7493,'Golden_Key','Golden Key','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7494,'Kiel_Button','Luxurious Button','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7495,'Blue_Key_Card','Blue Keycard','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7496,'Red_Key_Card','Red Keycard','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7497,'Steel_Piece','Metal Fragment','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7498,'Rosimier_Key','Rosimier Mansion Keys','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7499,'Family_Portrait','Family Portrait','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7500,'Elysia_Portrait','Woman\'s Portrait','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7501,'Kyll_Hire_Letter2','K.H\'s Letter','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7502,'Piece_Memo_Of_James','James\'s Note','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7503,'Man_Portrait','Man\'s Portrait','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7504,'Toy_Motor','Power Device','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7505,'Toy_Key','Toy Key','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7506,'Black_Key_Card','Black Keycard','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7507,'Sturdy_Iron_Piece','Solid Iron Piece','Etc',842,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7508,'Elysia_Ring','Allysia\'s Ring','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7509,'Fancy_Key_Card','Luxurious Keycard','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7510,'Valhalla_Flower','Valhalla\'s Flower','Etc',200000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7511,'Rune_Of_Darkness','Rune of Darkness','Etc',2526,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7512,'Burnt_Parts','Burnt Part','Etc',1600,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7513,'Pocket_Watch','Pocket Watch','Etc',3420,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (7514,'Monster_Ticket','Monster Ticket','Etc',2); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7515,'Marvelous_Medal','Prize Medal','Etc',2,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7516,'Green_Key_Card','Green Keycard','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7517,'Gold_Coin_','Gold Coin','Etc',1000,100); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7518,'Women\'s_Medal','Women\'s Medal','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7519,'Money_Envelope','Handsel','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7520,'Chinese_Scroll','Please Be Rich','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7521,'Flame_Stone','Flame Stone','Etc',150,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7522,'Ice_Stone','Ice Stone','Etc',150,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7523,'Wind_Stone','Wind Stone','Etc',150,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7524,'Shadow_Orb','Shadow Orb','Etc',300,20,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7525,'Summer_Feast_Ticket','Summer Festival Ticket','Etc',10,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (7526,'Manuscript_Paper','Manuscript Paper','Etc',2); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7527,'Life_Book','Book About True Life','Etc',100,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7528,'Id_Lottery_Ticket','Lottery Ticket','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7529,'Stolen_Sandals','Stolen Sandal','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7530,'Travel_Brochure_01','Travel Brochure [Amatsu]','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7531,'Travel_Brochure_02','Travel Brochure [Kunlun]','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7532,'Travel_Brochure_03','Travel Brochure [Luoyang]','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7533,'Travel_Brochure_04','Travel Brochure [Ayothaya]','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7534,'Photo_Album_01','Amatsu Completed Photo Album','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7535,'Photo_Album_02','Kunlun Completed Photo Album','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7536,'Photo_Album_03','Luoyang Completed Photo Album','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7537,'Photo_Album_04','Ayothaya Completed Photo Album','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7538,'Sifted_Sand','Sand for Work','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7539,'Poring_Coin','Poring Coin','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7540,'Lotto39','Lotto Ball 39','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7541,'Lotto40','Lotto Ball 40','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7542,'Lotto41','Lotto Ball 41','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7543,'Lotto42','Lotto Ball 42','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7544,'Lotto43','Lotto Ball 43','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7545,'Lotto44','Lotto Ball 44','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7546,'Lotto45','Lotto Ball 45','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7547,'Soccer_Ball','Soccer Ball','Etc',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7548,'Soccer_Shoes','Soccer Shoes','Etc',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7549,'Brazilian_Flag','Brazilian Flag','Etc',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7550,'Ticket01','6.13 Ticket','Etc',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7551,'Ticket02','6.18 Ticket','Etc',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7552,'Ticket03','6.22 Ticket','Etc',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7553,'Lotus_Flower','Lotus Flower','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7554,'Striped_Candle','Striped Candle','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7555,'Green_Incense','Green Incense','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7556,'Longing_Heart','Longing Heart','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7557,'Invitation_Letter','Invitation Letter','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7558,'Invitation_Ticket','Invitation Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7559,'Key_Of_Flower_Garden','Key to the Secret Garden','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7560,'Longing_Heart2','Longing Heart','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7561,'Ice_Heart','Glacial Heart','Etc',606,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7562,'Ice_Scale','Ice Scale','Etc',3020,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7563,'Bloody_Rune','Bloody Rune','Etc',2016,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7564,'Rotten_Meat','Rotten Meat','Etc',102,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7565,'Sticky_Poison','Sticky Poison','Etc',350,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7566,'Will_Of_Darkness_','Will of Red Darkness','Etc',1530,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7567,'Suspicious_Hat','Suspicious Hat','Etc',1290,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7568,'White_Mask','White Mask','Etc',1060,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7569,'Hammer_Of_Wind','Wind Hammer','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7570,'Temple_Lottery_Ticket','Temple Lottery Ticket','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7571,'Diary_Of_Blue','Bruspetti\'s Diary','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7572,'Magic_Necklace','Ashy Necklace','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7573,'Magic_Necklace_','Sparkling Necklace','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (7574,'Ice_Particle','Freezing Snow Powder','Etc',true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7575,'Red_Jewel_','Red Jewel','Etc',20,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7576,'Blue_Jewel_','Blue Jewel','Etc',20,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7577,'Golden_Jewel_','Yellow Jewel','Etc',20,50,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7578,'Anti_Spell_Bead','Countermagic Crystal','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7579,'Silk_Handkerchief','Silk Handkerchief of Zhi Nu','Etc',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7580,'Black_Bead','Black Marble','Etc',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7581,'Anniversary_Ticket','Celebration Document','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7582,'Gem_Of_Ruin','Jewel of Destruction','Etc',10,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7583,'Evil_Mind','Evil Mind','Etc',10,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7584,'Proof_Of_Guard1','Guard\'s First Proof','Etc',10,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7585,'Proof_Of_Guard2','Guard\'s Second Proof','Etc',10,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7586,'Proof_Of_Guard3','Guard\'s Third Proof','Etc',10,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7587,'Proof_Of_Guard4','Guard\'s Fourth Proof','Etc',10,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7588,'IPOD_Ticker','IPOD Coupon','Etc',10,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7589,'Moon_Cake10','Lettered Moon Snack 01','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7590,'Moon_Cake11','Lettered Moon Snack 02','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7591,'Moon_Cake12','Lettered Moon Snack 03','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7592,'Moon_Cake13','Lettered Moon Snack 04','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7593,'Moon_Cake14','Lettered Moon Snack 05','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7594,'Sonia\'s_Letter','Sonia\'s Letter','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7595,'Unique_Sword','Special Sword','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7596,'Unique_Shield','Special Shield','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7597,'Magic_Stone','Magic Stone','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7603,'RO_Party_Ticket','RO Party Invitation Ticket','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7604,'Flour','Flour','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7605,'Chicken_Egg','Chicken Egg','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7606,'Coin','Token of the Ox','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7607,'Evil_Dragon_Head','Neck of Demon Dragon','Etc',10,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7608,'Premium_Ticket','Premium Ticket','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7609,'Pumpkin_Mojo','Pumpkin Mojo','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7610,'Food_Ticket','Food Exchange Ticket','Etc',1000,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7611,'Fox_Symbol','Symbol of Fox','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7612,'Heart_Of_Fox_Queen','Heart of Queen Fox','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7613,'Small_Rice_Dough','Small Rice Cake Dough','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7614,'Special_Packing_Paper','Wrapping Paper','Etc',10,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7615,'MVP_Ticket','MVP Voucher','Etc',10,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7616,'Mini_Boss_Ticket','Miniboss Voucher','Etc',10,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7617,'Monster_Ticket_','Monster Voucher','Etc',10,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7618,'Monster_Crystal','Monster Crystal','Etc',2,100,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7619,'Enriched_Elunium','Enriched Elunium','Etc',2,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7620,'Enriched_Oridecon','Enriched Oridecon','Etc',2,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7621,'Token_Of_Siegfried','Token Of Siegfried','Etc',2,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`) VALUES (7622,'New_Style_Coupon','Hairstyle Coupon','Etc',10,100,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7623,'Name_Change_Coupon','Ticket Of Identification','Etc',2,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7624,'Spring_Stanza23','Spring Stanza23','Etc',2,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7625,'Registration_Ticket','Registration Ticket','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7626,'Bubble_Gum_Token','Bubble Gum Token','Etc',10,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7627,'Sage_Key','Sage Key','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7628,'Idiot_Key','Idiot Key','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7629,'Pink_Gift_Box','Pink Gift Box','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7630,'Clean_Beach_Brush','Clean Beach Brush','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7631,'Trash_Debris','Trash Debris','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (7635,'Sachet','Sachet','Etc',100); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7701,'Dragon_Spirit','Soul','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7702,'Special_Cogwheel','Special Cogwheel','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7703,'Piece_Of_Cogwheel','Piece of Cogwheel','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (7704,'Broken_Thermometer','Broken Thermometer','Etc',2); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (7705,'Note_Of_Geologist','Note of Geologist','Etc',2); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7706,'Spoiled_Carrot_Juice','Broken Carrot Juice','Etc',20,40); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7707,'Spoiled_Banana_Juice','Broken Banana Juice','Etc',20,40); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7708,'Spoiled_Apple_Juice','Broken Apple Juice','Etc',20,40); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7709,'Spoiled_Grape_Juice','Broken Grape Juice','Etc',20,40); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7710,'Black_Gemstone','Black Gemstone','Etc',600,30); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7711,'Update_Ticket','Event Ticket','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7712,'Nokia5500','Nokia 5500','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7713,'BlueCard_A_','Blue A(2) Card','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7714,'BlueCard_R_','Blue R(2) Card','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7715,'Handmade_Choco_Recipe','Handmade Chocolate Recipe','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7716,'Strawberry_Choco_Recipe','Chocolate Strawberry Recipe','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7717,'Choco_Tart_Recipe','Chocolate Tart Recipe','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7718,'Cacao_Bean','Cacao Bean','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7719,'BlueCard_G','Blue G Card','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7720,'Gold_Coin_US','Gold Coin','Etc',100,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7721,'Treasure_Box_','Treasure Box','Etc',100,500); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (7722,'Debt_Note','Debt Note','Etc',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (7723,'Diamond_Of_Ruin','Diamond of Ruin','Etc',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (7724,'Forbidden_Secret_Art','Forbidden Secret Art','Etc',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (7725,'Unlucky_Emerald','Unlucky Emerald','Etc',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (7726,'Token_Of_King','Token of King','Etc',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7727,'HP_Doctor_Ticket','HP Doctor Ticket','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7728,'SP_Doctor_Ticket','SP Doctor Ticket','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7729,'Rok_Star_Badge','Rok Star Badge','Etc',20,100); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7730,'Mission_Certificate1','Mission Ticket 1','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7731,'Mission_Certificate2','Mission Ticket 2','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7732,'Mission_Certificate3','Mission Ticket 3','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7733,'Mission_Certificate4','Mission Ticket 4','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7734,'Mission_Certificate5','Mission Ticket 5','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7735,'Mission_Certificate6','Mission Ticket 6','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7736,'Mission_Certificate7','Mission Ticket 7','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7737,'Mission_Certificate8','Mission Ticket 8','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7738,'Mission_Certificate9','Mission Ticket 9','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7739,'Mission_Certificate10','Mission Ticket 10','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7740,'Mission_Certificate11','Mission Ticket 11','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7741,'Mission_Certificate12','Mission Ticket 12','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7742,'Kaong','Kaong','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7743,'Gulaman','Gulaman','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7744,'Leche_Flan','Leche Flan','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7745,'Ube_Jam','Ube Jam','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7746,'Sago','Sago','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7747,'Langka','Langka','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7748,'Sweet_Bean','Sweet Beans','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7749,'Sweet_Banana','Sweet Bananas','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7750,'Macapuno','Macapuno','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7751,'Old_White_Cloth','Old White Cloth','Etc',550,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7752,'Clattering_Skull','Clattering Skull','Etc',840,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7753,'Broken_Farming_Utensil','Broken Farming Utensil','Etc',330,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7754,'Broken_Crown','Broken Crown','Etc',3000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (7755,'Research_Note','Research Note','Etc',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7756,'Sealed_Book','Sealed Book','Etc',2000,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7757,'Mithril','Mithril','Etc',20,100); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7758,'Star_Crystal','Star Crystal','Etc',20,100); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7759,'Geology_Report','Geologist\'s Report','Etc',20,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7760,'Yaga_Magic_Book','Yaga\'s Magic Book','Etc',20,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7761,'Magic_Gourd_Bottle','Magic Gourd Bottle','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7762,'Yaga_Pestle','Yaga\'s Pestle','Etc',20,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7763,'Sticky_Herb','Sticky Herb','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7764,'High_Strength_Adhesive','High Strength Adhesive','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7765,'Yaga_Secret_Medicine','Baba Yaga\'s Secret Medicine','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7766,'Bok_Choy','Bok Choy','Etc',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7767,'Chung_E_Cake','Green Maiden\'s Cake','Etc',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7768,'Squid','Squid','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7769,'Egg_Yolk','Egg Yolk','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7770,'Sweet_Rice','Sweet Rice','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7771,'Lotus_Leaf','Lotus Leaf','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7772,'String','String','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7773,'War_Badge','Wat Badge','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7774,'Chung_E_Ticket','Green Maiden Ticket','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7775,'Spring_Rabbit_Ticket','Spring Rabbit Ticket','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7776,'Max_Weight_Up_Scroll','Gym Pass','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7777,'Gold_Box','Sealed Golden Box','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7778,'Silver_Box','Sealed Silver Box','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7779,'Gold_Key_TW','Golden Key','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7780,'Silver_Key','Silver Key','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7781,'Heart_Box','Engrave Treasure Box','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7782,'Gold_Key77','Episode 13.1 Poporing Key','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7783,'Silver_Key77','Episode 13.2 Poring Key','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7784,'Fawner_Coupon1','Free Coupon 1','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7785,'Fawner_Coupon2','Free Coupon 2','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7786,'Fawner_Coupon3','Free Coupon 3','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7787,'Fawner_Coupon4','Free Coupon 4','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7788,'Fawner_Coupon5','Free Coupon 5','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7789,'Fawner_Coupon6','Free Coupon 6','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7790,'Fawner_Coupon7','Free Coupon 7','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7791,'Fawner_Coupon8','Free Coupon 8','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7792,'Guyak','Guyak','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7793,'Golden_Apple','Golden Apple','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7794,'Fate_Of_Crow','The Crow of Destiny','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7795,'Mami_Photo_Album','Mammi\'s Photo Album','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7796,'Author_Autograph','Author\'s Autograph','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7797,'Author_Memo','Author\'s Memo','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7798,'Dark_Debris','Fragment of Darkness','Etc',500,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7799,'Dark_Crystal','Crystal of Darkness','Etc',10,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7800,'Golden_Apple_','Golden Charm Apple','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7801,'Girl_Fan_Letter','Girl\'s Letter','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7802,'Autograph_Book','Signature Notebook','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7803,'Battle_Manual_TW','Beginner\'s Field Manual','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7805,'Brown_Ring','Brown Jenoss\'s Family Ring','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7806,'Black_Anvil','God Anvil','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7807,'Ore','God Mineral','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7808,'Gold_Hammer','God Hammer','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7809,'Gold_Furnace','God Furnace','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7810,'Yellow_Cat_Eyed_Stone','Symbol of Richness','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7811,'Gold_Anvil','Anvil','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7812,'Red_Cat_Eyed_Stone','Symbol of Bravery','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7813,'Th_Red_Ring','Red Jenoss\'s Family Ring','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7814,'Green_Ring','Green Jenoss\'s Family Ring','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7815,'Blue_Ring','Blue Jenoss\'s Family Ring','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7816,'Blue_Cat_Eyed_Stone','Symbol of Faith','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7817,'White_Cat_Eyed_Stone','Symbol of Peace','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7818,'RJC_Golden_Necklace','Jessur\'s Necklace','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7819,'Nokia5300','Nokia 5300','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7820,'Morroc_Skin','Piece of Morocc Skin','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7821,'Green_Apple','Green Apple','Etc',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7822,'Whole_Barbecue','Whole Barbecue','Etc',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7823,'Meat_Veg_Skewer','Meat Veg Skewer','Etc',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7824,'Spirit_Liquor','Spirit Liquor','Etc',20,10,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7825,'Heroic_Stone','Heroic Stone','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7826,'Continental_Guard_Paper','Continental Guard Paper','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7827,'Mineral_Report','Mineral Evals','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7828,'BF_Badge1','Bravery Badge','Etc',100,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7829,'BF_Badge2','Valor Badge','Etc',100,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7830,'Goddess_Tear','Goddess Tear','Etc',1,500,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7831,'Valkyrie_Token','Valkyrie\'s Token','Etc',1,500,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7832,'Brynhild_Armor_Piece','Brynhild Armor Piece','Etc',1,500,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7833,'Hero_Remains','Hero\'s Remains','Etc',1,500,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7834,'Andvari_Ring','Andvari\'s Ring','Etc',1,500,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7835,'Dusk_Glow','Dusk Glow','Etc',1,500,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7836,'Dawn_Essence','Dawn Essence','Etc',1,500,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7837,'Cold_Moonlight','Cold Moonlight','Etc',1,500,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7838,'Hazy_Starlight','Hazy Starlight','Etc',1,500,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7839,'Crystal_Key','Crystal Key','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7840,'Valkyrie_Gift','Valkyrie\'s Gift','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7841,'Spotted_Paper','Stained Piece Of Paper','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7842,'Torn_Paper','Torn Piece Of Paper','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7843,'Old_Paper','Old Piece Of Paper','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7844,'Burnt_Paper','Burnt Pieces Of Paper','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7845,'Copy_Of_Spotted_Paper','Copy Of Spotted Paper','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7846,'Copy_Of_Torn_Paper','Copy Of Torn Paper','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7847,'Copy_Of_Old_Paper','Copy Of Old Paper','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7848,'Copy_Of_Burnt_Paper','Copy Of Burnt Paper','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7849,'Soul_Crystal','Soul Crystal','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7850,'Wooden_Block_','Wooden Block','Etc',20,100); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7851,'Pass_F1','Wii Raffle Ticket','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7852,'Pass_F2','Divx Player Raffle Ticket','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7853,'Pass_F3','iPod nano Raffle Ticket','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7854,'Pass_CF','Comodo Festival Ticket','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7855,'Heart','Heart','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7856,'Girl_Bunch_Of_Flower_','Girl\'s Bouquet','Etc',20,50); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7857,'Handmade_Kitty_Doll','Hand-made Kitty Doll','Etc',20,30); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7858,'Dragonball_Yellow_','Dragonball Yellow','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7859,'Game_Ticket','Game Ticket','Etc',20,100); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7860,'Peeps','Peeps','Etc',50); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7861,'Jelly_Bean','Jelly Bean','Etc',50); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7862,'Marshmallow','Marshmallow','Etc',50); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7863,'GOLD_ID4','Special Gold','Etc',20,200,100,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7864,'Love_Flower','Love Flower','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7865,'Gold_Pouch','Gold Pouch','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7866,'Certificate','Certificate','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7867,'SesamePouch','Sesame Bag','Etc',10,100); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7868,'Water','Fresh Water','Etc',10,100); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7869,'RicePouch','Rice Pouch','Etc',10,100); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7870,'Corn','Corn','Etc',5,20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7871,'BeanPouch','Bean Bag','Etc',10,20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7872,'Grass','Herb','Etc',10,30); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7873,'MVP_Monster_Scroll','MVP Monster Scroll','Etc',10,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7874,'Monster_Scroll','Create Monster Scroll','Etc',10,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7875,'Pirate_Box','Pirate Treasure','Etc',300000,100,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7876,'Gold_Key','Golden Key','Etc',50,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7877,'Red_Ring','Red Ring','Etc',100,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7878,'Lusalka_Hair','Lusalka\'s Hair','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7879,'Golden_Thread','Golden Thread','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7880,'Babayaga_Silver_Spoon','Baba Yaga\'s Silver Spoon','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7881,'Book_Of_Magic','Mystery Magic Book','Etc',50,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7882,'Pointed_Branch','Sharp Branch','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7883,'Pointed_Wooden_Flute','Wooden Flute','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7884,'Jade_Plate','Jade Plate','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7885,'Sacred_Arrow','Sacred Arrow','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7886,'Bean_Paste','Bean Paste','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7887,'Dried_Fruit_Box','Dried Fruit Box','Etc',30); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7888,'Bag_Of_Nuts','Bag of Nuts','Etc',30); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7889,'Chicken_Feed','Chicken Feed','Etc',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7891,'Mug','Mug','Etc',2,100); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7892,'Charcoal','Charcoal','Etc',10,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7893,'Sulfur','Sulphur','Etc',10,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7894,'Nitrate','Nitrogen Acid','Etc',10,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7895,'TRO_Memory_Book01','Rama5 Book','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7896,'TRO_Memory_Book02','Loykrathong Book','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7897,'TRO_Memory_Book03','Constitution Book','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7898,'VVS_Balmung','VV Strong Balmung','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7899,'Spiritualist_Dagger','Dagger Of Psychic','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7900,'Jenoss_Ring1','Jonathan Family Ring','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7901,'Jenoss_Ring2','Jillberriel Family Ring','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7902,'Jenoss_Ring3','Jessur Family Ring','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7903,'Jenoss_Ring4','Jenoss Family Ring','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7904,'Piano_Key','Piano Key','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7905,'Rok_Star_Badge_','Rok Star Badge','Etc',20,100); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7906,'Poppy_Wreath','Poppy Wreath','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7907,'Bobbin_Of_Goddess','Bobbin Of Goddess','Etc',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7908,'Louis_Hair_Coupon','Louise\'s Beauty Coupon','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7909,'Stolen_Cookie','Stolen Cookie','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7910,'Stolen_Candy','Stolen Candy','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7911,'Yulia_Hat','Yulia\'s Hat','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7912,'Portable_Snowman','Portable Snowman Machine','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7913,'Test_Certificate','Battle Test Certificate','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7914,'Ancient_Document_TW','Ancient Language Document','Etc',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7915,'Copper_Coin_','Bronze Coin','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7916,'Silver_Coin_','Silver Coin','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7917,'Magic_Potion','Magic Potion','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7918,'Particle_Of_Memory','Fragment Of Memory','Etc',2000,100); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7919,'Festival_Ticket','Festival Ticket','Etc',10,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7920,'Hero\'s_Arsenal','He\'s Arsenal','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7921,'Essence_Of_Dragon','Essence Of Dragon','Etc',1000,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7922,'RWC_Ticket','RWC Voucher Items','Etc',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7923,'KRATHONG_','Krathong','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7928,'Brazilian_Flag_','Brazil National Flag','Etc',10,10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7929,'Golden_Coin_','Gold Coin','Etc',10,10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7930,'Cowking\'s_Nose_Ring','Devil\'s Cattle Ring','Etc',1000,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7931,'Poison_Kit','Poison Kit','Etc',1,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7932,'Poison_Herb_Nerium','Poison Herb Nerium','Etc',1,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7933,'Poison_Herb_Rantana','Poison Herb Rantana','Etc',1,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7934,'Poison_Herb_Makulata','Poison Herb Makulata','Etc',1,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7935,'Poison_Herb_Seratum','Poison Herb Seratum','Etc',1,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7936,'Poison_Herb_Scopolia','Poison Herb Scoporia','Etc',1,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7937,'Poison_Herb_Amoena','Poison Herb Amoena','Etc',1,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7938,'Light_Granule','Light Granule','Etc',1000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7939,'Elder_Branch','Elder Branch','Etc',1000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7940,'Special_Alloy_Trap','Special Alloy Trap','Etc',200,2,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (7941,'Halloween_Ticket','Halloween Ticket','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7942,'Letter_From_Chico','Chico Cesar Letter','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7943,'Caskinya','Caskinya','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`) VALUES (7944,'Sealed_Box','Sealed Box','Etc',10,10,100,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`) VALUES (7945,'Almighty_Charm','Universal Amulet','Etc',10,100,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (7946,'Valentine_Gold_Ring','Gold Ring Of Valentine','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (7947,'Valentine_Silver_Ring','Silver Ring Of Valentine','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7948,'Box','Box','Etc',10,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7949,'Woven_Wool','Woven Wool','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7950,'Ayothaya_Ticket','Ayothaya Fest Ticket','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7951,'Gold_Tulip','Golden Tulip Flower','Etc',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7952,'Gift_From_Romiros','Gift Of Lomi Ross','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7953,'Gift_From_Juliedge','Gift Of Juliet','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7954,'Festival_Ticket_','Summer Festival Ticket','Etc',10,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (7955,'Lost_Card1','Lost Card1','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (7956,'Lost_Card2','Lost Card2','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (7957,'Lost_Card3','Lost Card3','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (7958,'Lost_Card4','Lost Card4','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_noguildstorage`) VALUES (7959,'Ancient_Gold_Coin','Ancient Gold Coin','Etc',100,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_noguildstorage`) VALUES (7960,'Ancient_Silver_Coin','Ancient Silver Coin','Etc',100,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7961,'Weapon_Exchange','Weapon Exchange','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7962,'Treasure_Map1','Treasure Map1','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7963,'Treasure_Map2','Treasure Map2','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7964,'Treasure_Map3','Treasure Map3','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7965,'Treasure_Map4','Treasure Map4','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7966,'Weird_Parchment1','Weird Parchment1','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7967,'Weird_Parchment2','Weird Parchment2','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7968,'Weird_Parchment3','Weird Parchment3','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7969,'Weird_Parchment4','Weird Parchment4','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7970,'Unwritten_Letter1','Unwritten Letter1','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7971,'Unwritten_Letter2','Unwritten Letter2','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7972,'Oath_Day_Letter','Oath Day Letter','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7973,'Immortality_Egg','Immortality Egg','Etc',20,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7974,'Illusion_Piece','Illusion Piece','Etc',20,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7975,'Cupid_Choco','Cupid Choco','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (7976,'Gf_Magic_Coin','Gf Magic Coin','Etc',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7977,'Hunting_Medal_Badge','Hunting Medal Badge','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7978,'Spring_Stanza1','Spring Stanza1','Etc',2,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7979,'Spring_Stanza2','Spring Stanza2','Etc',2,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7980,'Spring_Stanza3','Spring Stanza3','Etc',2,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7981,'Spring_Stanza4','Spring Stanza4','Etc',2,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7982,'Spring_Stanza5','Spring Stanza5','Etc',2,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7983,'Spring_Stanza6','Spring Stanza6','Etc',2,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7984,'Spring_Stanza7','Spring Stanza7','Etc',2,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7985,'Spring_Stanza8','Spring Stanza8','Etc',2,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7986,'Spring_Stanza9','Spring Stanza9','Etc',2,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7987,'Spring_Stanza10','Spring Stanza10','Etc',2,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7988,'Spring_Stanza11','Spring Stanza11','Etc',2,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7989,'Spring_Stanza12','Spring Stanza12','Etc',2,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7990,'Spring_Stanza13','Spring Stanza13','Etc',2,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7991,'Spring_Stanza14','Spring Stanza14','Etc',2,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7992,'Spring_Stanza15','Spring Stanza15','Etc',2,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7993,'Spring_Stanza16','Spring Stanza16','Etc',2,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7994,'Spring_Stanza17','Spring Stanza17','Etc',2,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7995,'Spring_Stanza18','Spring Stanza18','Etc',2,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7996,'Spring_Stanza19','Spring Stanza19','Etc',2,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7997,'Spring_Stanza20','Spring Stanza20','Etc',2,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7998,'Spring_Stanza21','Spring Stanza21','Etc',2,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7999,'Spring_Stanza22','Spring Stanza22','Etc',2,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (11000,'Prontera_Book_01','History book of Prontera','Etc',8000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (11001,'Adventure_Story01','Adventure Story Vol.1','Etc',8000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (11002,'Great_Chef_Orleans01','Chef King Orleans Vol.1','Etc',8000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (11003,'Legend_Of_Kafra01','Kafra Legend Vol.1','Etc',8000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (11004,'Mercenary_Rebellion','Old Book','Etc',10000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (11005,'Tyrant_Schmidt','Rune Royal Family Book','Etc',10000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (11006,'Blood_Flower01','Blood Flower Vol.1','Etc',8000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (11007,'Blood_Flower02','Blood Flower Vol.2','Etc',8000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (11008,'Barmund','Biographical Dictionary Copy Edition','Etc',10000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (11009,'Adventure_Story02','Adventure Story Vol.2','Etc',8000,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (11010,'Reward_List_Book','Battlegrounds Catalog','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (11011,'Barmund_Note','Varmunt\'s Note','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (11012,'Expedition_Report','Expedition Report','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (11013,'Expedition_Report_Vol1','Expedition Report Vol1','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (11014,'Expedition_Report_Vol2','Expedition Report Vol2','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (11015,'Expedition_Report_Vol3','Expedition Report Vol3','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (11016,'Expedition_Report_Vol4','Expedition Report Vol4','Etc'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (11017,'Reward_List_Book2','KVM Reward Items Catalog','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (11018,'Splendide_Selling_Item','Splendide Selling Item','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (11019,'Manuk_Selling_Item','Manuk Selling Item','Etc',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (11020,'Japan_Book1','Japan Book1','Etc',20,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (11021,'Japan_Book2','Japan Book2','Etc',20,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (11022,'Mix_Cook_Book','Mix Cook Book','Etc',10,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (11023,'Increase_Stamina_Study','Increase Stamina Study','Etc',10,50,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (11024,'Vital_Drink_CB','Vital Drink CB','Etc',10,50,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11025,'Swordman_Book_Basic','Swordman Book Basic','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11026,'Swordman_Book_Practice','Swordman Book Practice','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11027,'Swrodman_Book_Misc','Swrodman Book Misc','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11028,'Thief_Book_Basic','Thief Book Basic','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11029,'Thief_Book_Practice','Thief Book Practice','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11030,'Thief_Book_Misc','Thief Book Misc','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11031,'Archer_Book_Basic','Archer Book Basic','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11032,'Archer_Book_Practice','Archer Book Practice','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11033,'Archer_Book_Misc','Archer Book Misc','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11034,'Acol_Book_Basic','Acol Book Basic','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11035,'Acol_Book_Practice','Acol Book Practice','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11036,'Acol_Book_Misc','Acol Book Misc','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11037,'Mage_Book_Basic','Mage Book Basic','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11038,'Mage_Book_Practice','Mage Book Practice','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11039,'Mage_Book_Misc','Mage Book Misc','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11040,'Mer_Book_Basic','Mer Book Basic','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11041,'Mer_Book_Practice','Mer Book Practice','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11042,'Mer_Book_Misc','Mer Book Misc','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11043,'TK_Book_Basic','TK Book Basic','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11044,'TK_Book_Practice','TK Book Practice','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11045,'TK_Book_Misc','TK Book Misc','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11046,'Ninja_Book_Basic','Ninja Book Basic','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11047,'Ninja_Book_Practice','Ninja Book Practice','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11048,'Ninja_Book_Misc','Ninja Book Misc','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11049,'Gun_Book_Basic','Gun Book Basic','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11050,'Gun_Book_Practice','Gun Book Practice','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11051,'Gun_Book_Misc','Gun Book Misc','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11052,'SN_Book_Basic','SN Book Basic','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11053,'SN_Book_Practice','SN Book Practice','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11054,'SN_Book_Misc','SN Book Misc','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11055,'Basic_Adventure','Basic Adventure','Etc',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11056,'Elemental_Spirit_Guide','Elemental Spirit Guide','Etc',1000,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_gunslinger`,`location_ammo`,`equip_level_min`) VALUES (13200,'Bullet','Bullet','Ammo','Bullet',1,2,10,true,true,1); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_gunslinger`,`location_ammo`,`equip_level_min`,`script`) VALUES (13201,'Silver_Bullet','Silver Bullet','Ammo','Bullet',15,2,15,true,true,1,'bonus bAtkEle,Ele_Holy;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_gunslinger`,`location_ammo`,`equip_level_min`,`script`) VALUES (13202,'Shell_Of_Blood','Bloody Shell','Ammo','Bullet',30,2,30,true,true,1,'bonus2 bAddEff,Eff_Bleeding,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_gunslinger`,`location_ammo`,`equip_level_min`,`script`) VALUES (13203,'Flare_Sphere','Flare Sphere','Ammo','Grenade',80,5,50,true,true,1,'bonus bAtkEle,Ele_Fire;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_gunslinger`,`location_ammo`,`equip_level_min`,`script`) VALUES (13204,'Lighting_Sphere','Lightning Sphere','Ammo','Grenade',80,5,50,true,true,1,'bonus bAtkEle,Ele_Wind;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_gunslinger`,`location_ammo`,`equip_level_min`,`script`) VALUES (13205,'Poison_Sphere','Poison Sphere','Ammo','Grenade',80,5,50,true,true,1,'bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_gunslinger`,`location_ammo`,`equip_level_min`,`script`) VALUES (13206,'Blind_Sphere','Blind Sphere','Ammo','Grenade',80,5,50,true,true,1,'bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Blind,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_gunslinger`,`location_ammo`,`equip_level_min`,`script`) VALUES (13207,'Freezing_Sphere','Freezing Sphere','Ammo','Grenade',80,5,50,true,true,1,'bonus bAtkEle,Ele_Water;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_ninja`,`location_ammo`,`equip_level_min`) VALUES (13250,'Shuriken','Shuriken','Ammo','Shuriken',4,5,10,true,true,1); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_ninja`,`location_ammo`,`equip_level_min`) VALUES (13251,'Nimbus_Shuriken','Nimbus Shuriken','Ammo','Shuriken',10,5,30,true,true,20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_ninja`,`location_ammo`,`equip_level_min`) VALUES (13252,'Flash_Shuriken','Flash Shuriken','Ammo','Shuriken',20,5,45,true,true,40); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_ninja`,`location_ammo`,`equip_level_min`) VALUES (13253,'Sharp_Leaf_Shuriken','Sharp Leaf Shuriken','Ammo','Shuriken',40,5,70,true,true,60); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_ninja`,`location_ammo`,`equip_level_min`) VALUES (13254,'Thorn_Needle_Shuriken','Thorn Needle Shuriken','Ammo','Shuriken',100,5,100,true,true,80); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_ninja`,`location_ammo`,`equip_level_min`,`script`) VALUES (13255,'Kunai_Of_Icicle','Icicle Kunai','Ammo','Kunai',10,20,30,true,true,1,'bonus bAtkEle,Ele_Water;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_ninja`,`location_ammo`,`equip_level_min`,`script`) VALUES (13256,'Kunai_Of_Black_Soil','Black Earth Kunai','Ammo','Kunai',10,20,30,true,true,1,'bonus bAtkEle,Ele_Earth;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_ninja`,`location_ammo`,`equip_level_min`,`script`) VALUES (13257,'Kunai_Of_Furious_Wind','High Wind Kunai','Ammo','Kunai',10,20,30,true,true,1,'bonus bAtkEle,Ele_Wind;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_ninja`,`location_ammo`,`equip_level_min`,`script`) VALUES (13258,'Kunai_Of_Fierce_Flame','Heat Wave Kunai','Ammo','Kunai',10,20,30,true,true,1,'bonus bAtkEle,Ele_Fire;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_ninja`,`location_ammo`,`equip_level_min`,`script`) VALUES (13259,'Kunai_Of_Deadly_Poison','Fell Poison Kunai','Ammo','Kunai',10,20,30,true,true,1,'bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`location_ammo`,`equip_level_min`) VALUES (13260,'Apple_Bomb','Apple Bomb','Ammo','Throwweapon',100,1,true,true,99); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`location_ammo`,`equip_level_min`) VALUES (13261,'Coconut_Bomb','Coconut Bomb','Ammo','Throwweapon',100,1,true,true,99); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`location_ammo`,`equip_level_min`) VALUES (13262,'Melon_Bomb','Melon Bomb','Ammo','Throwweapon',100,1,true,true,99); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`location_ammo`,`equip_level_min`) VALUES (13263,'Pineapple_Bomb','Pineapple Bomb','Ammo','Throwweapon',100,1,true,true,99); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`location_ammo`,`equip_level_min`) VALUES (13264,'Banana_Bomb','Banana Bomb','Ammo','Throwweapon',100,1,true,true,99); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`location_ammo`,`equip_level_min`) VALUES (13265,'Black_Lump','Black Lump','Ammo','Throwweapon',100,50,true,true,99); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`location_ammo`,`equip_level_min`) VALUES (13266,'Black_Hard_Lump','Hard Black Lump','Ammo','Throwweapon',100,50,true,true,99); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`location_ammo`,`equip_level_min`) VALUES (13267,'Very_Hard_Lump','Extremely Hard Black Lump','Ammo','Throwweapon',100,50,true,true,99); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`location_ammo`,`equip_level_min`,`script`) VALUES (13268,'Mysterious_Powder','Mysterious Powder','Ammo','Throwweapon',100,10,true,true,99,'sc_start SC_MYSTERIOUS_POWDER,10000,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`location_ammo`,`equip_level_min`,`script`) VALUES (13269,'Boost500_To_Throw','Throwing Boost 500','Ammo','Throwweapon',100,10,true,true,99,'sc_start SC_BOOST500,500000,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`location_ammo`,`equip_level_min`,`script`) VALUES (13270,'Full_SwingK_To_Throw','Throwing Full Swing K','Ammo','Throwweapon',100,50,true,true,99,'sc_start SC_FULL_SWING_K,500000,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`location_ammo`,`equip_level_min`,`script`) VALUES (13271,'Mana_Plus_To_Throw','Throwing Mana Plus','Ammo','Throwweapon',100,50,true,true,99,'sc_start SC_MANA_PLUS,500000,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`location_ammo`,`equip_level_min`,`script`) VALUES (13272,'Cure_Free_To_Throw','Throwing Cure Free','Ammo','Throwweapon',100,50,true,true,99,'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;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`location_ammo`,`equip_level_min`,`script`) VALUES (13273,'Stamina_Up_M_To_Throw','Throwing Muramura M','Ammo','Throwweapon',100,10,true,true,99,'sc_start SC_MUSTLE_M,500000,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`location_ammo`,`equip_level_min`,`script`) VALUES (13274,'Digestive_F_To_Throw','Throwing Falmons F','Ammo','Throwweapon',100,10,true,true,99,'sc_start SC_LIFE_FORCE_F,500000,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`location_ammo`,`equip_level_min`,`script`) VALUES (13275,'HP_Inc_PotS_To_Throw','Throwing Increase HP Potion (Small)','Ammo','Throwweapon',100,20,true,true,99,'/* Item bonus in source because of BaseLevel check */'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`location_ammo`,`equip_level_min`,`script`) VALUES (13276,'HP_Inc_PotM_To_Throw','Throwing Increase HP Potion (Medium)','Ammo','Throwweapon',100,40,true,true,99,'/* Item bonus in source because of BaseLevel check */'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`location_ammo`,`equip_level_min`,`script`) VALUES (13277,'HP_Inc_PotL_To_Throw','Throwing Increase HP Potion (Large)','Ammo','Throwweapon',100,80,true,true,99,'/* Item bonus in source because of BaseLevel check */'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`location_ammo`,`equip_level_min`,`script`) VALUES (13278,'SP_Inc_PotS_To_Throw','Throwing Increase SP Potion (Small)','Ammo','Throwweapon',100,20,true,true,99,'/* Item bonus in source because of BaseLevel check */'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`location_ammo`,`equip_level_min`,`script`) VALUES (13279,'SP_Inc_PotM_To_Throw','Throwing Increase SP Potion (Medium)','Ammo','Throwweapon',100,40,true,true,99,'/* Item bonus in source because of BaseLevel check */'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`location_ammo`,`equip_level_min`,`script`) VALUES (13280,'SP_Inc_PotL_To_Throw','Throwing Increase SP Potion (Large)','Ammo','Throwweapon',100,80,true,true,99,'/* Item bonus in source because of BaseLevel check */'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`location_ammo`,`equip_level_min`,`script`) VALUES (13281,'En_White_PotZ_To_Throw','Throwing Concentrated White Potion Z','Ammo','Throwweapon',100,70,true,true,99,'sc_start SC_EXTRACT_WHITE_POTION_Z,500000,20; itemheal 1000,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`location_ammo`,`equip_level_min`,`script`) VALUES (13282,'Vitata500_To_Throw','Throwing Vitata 500','Ammo','Throwweapon',100,50,true,true,99,'sc_start2 SC_VITATA_500,500000,20,5; itemheal 0,200;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`location_ammo`,`equip_level_min`,`script`) VALUES (13283,'En_Cel_Juice_To_Throw','Throwing Ceromain Soup','Ammo','Throwweapon',100,50,true,true,99,'sc_start SC_EXTRACT_SALAMINE_JUICE,500000,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`location_ammo`,`equip_level_min`,`script`) VALUES (13284,'Savage_BBQ_To_Throw','Throwing Savage Full Roast','Ammo','Throwweapon',100,50,true,true,99,'sc_start SC_SAVAGE_STEAK,300000,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`location_ammo`,`equip_level_min`,`script`) VALUES (13285,'Wug_Cocktail_To_Throw','Throwing Cocktail Warg Blood','Ammo','Throwweapon',100,50,true,true,99,'sc_start SC_COCKTAIL_WARG_BLOOD,300000,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`location_ammo`,`equip_level_min`,`script`) VALUES (13286,'M_Brisket_To_Throw','Throwing Minor Stew','Ammo','Throwweapon',100,50,true,true,99,'sc_start SC_MINOR_BBQ,300000,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`location_ammo`,`equip_level_min`,`script`) VALUES (13287,'Siroma_Icetea_To_Throw','Throwing Siroma Iced Tea','Ammo','Throwweapon',100,50,true,true,99,'sc_start SC_SIROMA_ICE_TEA,300000,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`location_ammo`,`equip_level_min`,`script`) VALUES (13288,'Drocera_Stew_To_Throw','Throwing Drosera Herb Salad','Ammo','Throwweapon',100,50,true,true,99,'sc_start SC_DROCERA_HERB_STEAMED,300000,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`location_ammo`,`equip_level_min`,`script`) VALUES (13289,'Petti_Noodle_To_Throw','Throwing Petite Tail Soup','Ammo','Throwweapon',100,50,true,true,99,'sc_start SC_PUTTI_TAILS_NOODLES,300000,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`location_ammo`,`equip_level_min`,`script`) VALUES (13290,'Black_Thing_To_Throw','Throwing Black Mass','Ammo','Throwweapon',100,50,true,true,99,'sc_start SC_STOMACHACHE,60000,rand(5,10);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_ninja`,`class_normal`,`class_upper`,`class_baby`,`location_ammo`,`equip_level_min`,`script`) VALUES (13294,'Explosive_Kunai','Explosive Kunai','Ammo','Kunai',100,30,50,true,true,true,true,true,100,'bonus bAtkEle,Ele_Neutral;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_alchemist`,`job_blacksmith`,`location_ammo`,`equip_level_min`) VALUES (18000,'Cannon_Ball','Cannon Ball','Ammo','Cannonball',100,10,100,true,true,true,99); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_alchemist`,`job_blacksmith`,`location_ammo`,`equip_level_min`,`script`) VALUES (18001,'Holy_Cannon_Ball','Holy Cannon Ball','Ammo','Cannonball',200,10,120,true,true,true,99,'bonus bAtkEle,Ele_Holy;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_alchemist`,`job_blacksmith`,`location_ammo`,`equip_level_min`,`script`) VALUES (18002,'Dark_Cannon_Ball','Dark Cannon Ball','Ammo','Cannonball',200,10,120,true,true,true,99,'bonus bAtkEle,Ele_Dark;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_alchemist`,`job_blacksmith`,`location_ammo`,`equip_level_min`,`script`) VALUES (18003,'Soul_Cannon_Ball','Soul Cannon Ball','Ammo','Cannonball',200,10,120,true,true,true,99,'bonus bAtkEle,Ele_Ghost;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_alchemist`,`job_blacksmith`,`location_ammo`,`equip_level_min`) VALUES (18004,'Iron_Cannon_Ball','Iron Cannon Ball','Ammo','Cannonball',500,10,250,true,true,true,99); diff --git a/sql-files/item_db_re.sql b/sql-files/item_db_re.sql deleted file mode 100644 index 165b6bb0e2..0000000000 --- a/sql-files/item_db_re.sql +++ /dev/null @@ -1,13998 +0,0 @@ -# -# Table structure for table `item_db_re` -# - -DROP TABLE IF EXISTS `item_db_re`; -CREATE TABLE `item_db_re` ( - `id` int(10) unsigned NOT NULL DEFAULT '0', - `name_english` varchar(50) NOT NULL DEFAULT '', - `name_japanese` varchar(50) NOT NULL DEFAULT '', - `type` tinyint(2) unsigned NOT NULL DEFAULT '0', - `price_buy` mediumint(8) unsigned DEFAULT NULL, - `price_sell` mediumint(8) unsigned DEFAULT NULL, - `weight` smallint(5) unsigned NOT NULL DEFAULT '0', - `atk:matk` varchar(11) DEFAULT NULL, - `defence` smallint(5) unsigned DEFAULT NULL, - `range` tinyint(2) unsigned DEFAULT NULL, - `slots` tinyint(2) unsigned DEFAULT NULL, - `equip_jobs` bigint(20) unsigned DEFAULT NULL, - `equip_upper` tinyint(2) unsigned DEFAULT NULL, - `equip_genders` tinyint(1) unsigned DEFAULT NULL, - `equip_locations` mediumint(7) unsigned DEFAULT NULL, - `weapon_level` tinyint(1) unsigned DEFAULT NULL, - `equip_level` varchar(10) DEFAULT NULL, - `refineable` tinyint(1) unsigned DEFAULT NULL, - `view` smallint(5) unsigned DEFAULT NULL, - `script` text, - `equip_script` text, - `unequip_script` text, - PRIMARY KEY (`id`), - UNIQUE INDEX `UniqueAegisName` (`name_english`) -) ENGINE=MyISAM; - -# Items Database -# -# Structure of Database: -#REPLACE INTO `item_db_re` VALUES ( ID,'AegisName','Name',Type,Buy,Sell,Weight,'ATK[:MATK]',DEF,Range,Slots,Job,Class,Gender,Loc,wLV,'eLV[:maxLevel]',Refineable,View,'Script','OnEquip_Script','OnUnequip_Script'); -# -# Healing Items -#============================================================= -REPLACE INTO `item_db_re` VALUES (500,'Choko_Gangjeong','Choko Gangjeong',0,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 10,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (501,'Red_Potion','Red Potion',0,10,NULL,70,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(45,65),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (502,'Orange_Potion','Orange Potion',0,50,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(105,145),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (503,'Yellow_Potion','Yellow Potion',0,180,NULL,130,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(175,235),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (504,'White_Potion','White Potion',0,1200,NULL,150,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(325,405),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (505,'Blue_Potion','Blue Potion',0,5000,NULL,150,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 0,rand(40,60);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (506,'Green_Potion','Green Potion',0,40,NULL,70,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_HALLUCINATION;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (507,'Red_Herb','Red Herb',0,18,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(18,28),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (508,'Yellow_Herb','Yellow Herb',0,40,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(38,58),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (509,'White_Herb','White Herb',0,120,NULL,70,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(75,115),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (510,'Blue_Herb','Blue Herb',0,60,NULL,70,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 0,rand(15,30);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (511,'Green_Herb','Green Herb',0,10,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_end SC_POISON;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (512,'Apple','Apple',0,15,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(16,22),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (513,'Banana','Banana',0,15,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(17,21),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (514,'Grape','Grape',0,200,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 0,rand(10,15);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (515,'Carrot','Carrot',0,15,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(18,20),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (516,'Sweet_Potato','Potato',0,15,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(15,23),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (517,'Meat','Meat',0,50,NULL,150,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(70,100),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (518,'Honey','Honey',0,500,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(70,100),rand(20,40);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (519,'Milk','Milk',0,25,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(27,37),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (520,'Leaflet_Of_Hinal','Hinalle Leaflet',0,150,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(175,235),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (521,'Leaflet_Of_Aloe','Aloe Leaflet',0,360,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(325,405),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (522,'Fruit_Of_Mastela','Mastela Fruit',0,8500,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(400,600),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (523,'Holy_Water','Holy Water',0,20,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_end SC_CURSE;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (525,'Panacea','Panacea',0,500,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (526,'Royal_Jelly','Royal Jelly',0,7000,NULL,150,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(325,405),rand(40,60); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (528,'Monster\'s_Feed','Monster\'s Feed',0,60,NULL,150,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(72,108),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (529,'Candy','Candy',0,10,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(45,65),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (530,'Candy_Striper','Candy Cane',0,20,NULL,40,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(105,145),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (531,'Apple_Juice','Apple Juice',0,20,NULL,40,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(25,35),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (532,'Banana_Juice','Banana Juice',0,20,NULL,40,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(26,34),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (533,'Grape_Juice','Grape Juice',0,250,NULL,40,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 0,rand(15,25);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (534,'Carrot_Juice','Carrot Juice',0,20,NULL,40,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(27,33),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (535,'Pumpkin','Pumpkin',0,15,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 19,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (536,'Ice_Cream','Ice Cream',0,150,NULL,80,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(105,145),0; sc_start SC_FREEZE,10000,0,2500,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (537,'Pet_Food','Pet Food',0,1000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(50,90),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (538,'Well_Baked_Cookie','Well-baked Cookie',0,1000,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(160,200),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (539,'Piece_Of_Cake','Piece of Cake',0,3000,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(270,330),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (540,'Falcon\'s_Feed','Falcon Food',0,2000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(185,225),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (541,'Pecopeco\'s_Feed','PecoPeco Food',0,3000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(325,405),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (542,'Festive_Cookie','Festival Cookie',0,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(325,405),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (543,'Festive_Rainbow_Cake','Festival Rainbow Cake',0,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(325,405),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (544,'Fish_Slice','Raw Fish',0,20,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(25,60),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (545,'Red_Slim_Potion','Condensed Red Potion',0,150,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(45,65),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (546,'Yellow_Slim_Potion','Condensed Yellow Potion',0,600,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(175,235),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (547,'White_Slim_Potion','Condensed White Potion',0,1650,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(325,405),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (548,'Cheese','Cheese',0,2800,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 0,rand(10,15);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (549,'Nice_Sweet_Potato','Yam',0,180,NULL,80,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(50,100),0; sc_start SC_STUN,3000,0,1500,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (550,'Popped_Rice','Rice Cake',0,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(10,15),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (551,'Shusi','Sushi',0,1,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(50,60),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (552,'KETUPAT','Ketupat',0,1,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(70,90),rand(20,30);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (553,'Bun','Bao',0,1,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(35,70),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (554,'Mojji','Mochi',0,100,NULL,80,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(105,145),0; sc_start SC_STUN,3000,0; sc_start SC_BLIND,2000,0,1500,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (555,'Rice_Cake','Traditional Rice Cake',0,100,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(105,145),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (556,'Long_Rice_Cake','Rice Cake Stick',0,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(20,25),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (557,'Hash_Rice_Cake','Neatly Sliced Rice Cake',0,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(25,30),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (558,'Chocolate','Chocolate',0,1,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 1,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (559,'HandMade_Chocolate','Hand-made Chocolate',0,1,NULL,80,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 50,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (560,'HandMade_Chocolate_','Handmade White Chocolate',0,5000,NULL,80,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 50,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (561,'White_Chocolate','White Chocolate',0,5000,NULL,80,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 50,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (562,'Pizza','Doublecrust Swiss Fondue',0,100,NULL,150,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(70,100),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (563,'Pizza_01','Doublecrust Swiss Fondue',0,1200,NULL,150,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(375,445),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (564,'Rice_Ball','Rice Ball',0,1,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 200,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (565,'Vita500_Bottle','Vita500',0,580,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(142,274),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (566,'Tomyumkung','Tom Yum Goong',0,10000,NULL,150,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(244,350),rand(10,30); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (567,'Prawn','Shrimp',0,500,NULL,40,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(117,192),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (568,'Lemon','Lemon',0,60,NULL,40,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 0,rand(10,20);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (569,'Novice_Potion','Novice Potion',0,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(44,66),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (570,'Lucky_Candy','Lucky Candy',0,10,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(45,65),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (571,'Lucky_Candy_Cane','Lucky Candy Cane',0,20,NULL,40,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(105,145),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (572,'Lucky_Cookie','Lucky Cookie',0,1000,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(160,200),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (573,'Chocolate_Drink','Chocolate Drink',0,7000,NULL,150,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(330,410),rand(45,65); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (574,'Egg','Egg',0,20,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(33,42),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (575,'Piece_Of_Cake_','2nd Anniversary Cake',0,10,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(270,330),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (576,'Prickly_Fruit','Prickly Fruit',0,540,NULL,60,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(150,300),rand(20,30);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (577,'Grain','Bag of Grain',0,200,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(60,70),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (578,'Strawberry','Strawberry',0,200,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 0,rand(16,28);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (579,'Delicious_Fish','Fresh Fish',0,700,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(100,150),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (580,'Bread','Bread',0,150,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(50,90),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (581,'Mushroom','Edible Mushroom',0,40,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(20,30),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (582,'Orange','Orange',0,300,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(10,20),rand(10,20);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (583,'KETUPAT_','Ketupat Sayur',0,7000,NULL,150,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(325,405),rand(40,60); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (584,'Fish_Ball_Soup','Fish Cake Soup',0,100,NULL,60,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(40,70),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (585,'Wurst','Brusti',11,2,NULL,40,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(15,20),0; itemskill "PR_MAGNIFICAT",3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (586,'Mother\'s_Cake','Mother\'s Cake',0,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(325,405),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (587,'Prickly_Fruit_','Red Prickly Fruit',0,880,NULL,60,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(270,330),rand(20,30);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (588,'Spaghetti','Spaghetti',0,100,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(40,70),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (589,'Pizza_02','Pizza',0,1200,NULL,150,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(375,445),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (590,'Brezel_','Pretzel',0,2,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(50,90),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (591,'Caviar_Pancake','Caviar Pancake',0,0,NULL,150,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(325,405),rand(40,60); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (592,'Jam_Pancake','Jam Pancake',0,0,NULL,150,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(325,405),rand(40,60); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (593,'Honey_Pancake','Honey Pancake',0,0,NULL,150,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(325,405),rand(40,60); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (594,'Sour_Cream_Pancake','Sour-Cream Pancake',0,0,NULL,150,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(325,405),rand(40,60); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (595,'Mushroom_Pancake','Mushroom Pancake',0,0,NULL,150,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(325,405),rand(40,60); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (596,'Cute_Strawberry_Choco','Cute Strawberry-Choco',0,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 0,rand(1,100);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (597,'Lovely_Choco_Tart','Lovely Choco-Tart',0,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(10,400),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (598,'Light_Red_Pot','Light Red Potion',0,50,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(45,65),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (599,'Light_Orange_Pot','Light Orange Potion',0,200,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(105,145),0;',NULL,NULL); -#=================================================================== -# Usable Items -#=================================================================== -REPLACE INTO `item_db_re` VALUES (601,'Wing_Of_Fly','Fly Wing',11,60,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "AL_TELEPORT",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (602,'Wing_Of_Butterfly','Butterfly Wing',11,300,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "AL_TELEPORT",3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (603,'Old_Blue_Box','Old Blue Box',2,10000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_BlueBox,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (604,'Branch_Of_Dead_Tree','Dead Branch',2,50,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'monster "this",-1,-1,"--ja--",-1-MOBG_Branch_Of_Dead_Tree,1,"";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (605,'Anodyne','Anodyne',11,2000,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "SM_ENDURE",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (606,'Aloebera','Aloevera',11,1500,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "SM_SELFPROVOKE",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (607,'Yggdrasilberry','Yggdrasil Berry',0,5000,NULL,300,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 100,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (608,'Seed_Of_Yggdrasil','Yggdrasil Seed',0,5000,NULL,300,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 50,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (609,'Amulet','Amulet',2,100,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (610,'Leaf_Of_Yggdrasil','Yggdrasil Leaf',11,4000,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "ALL_RESURRECTION",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (611,'Spectacles','Magnifier',11,40,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "MC_IDENTIFY",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (612,'Portable_Furnace','Mini Furnace',2,150,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'produce 21;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (613,'Iron_Hammer','Iron Hammer',2,1000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'produce 1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (614,'Golden_Hammer','Golden Hammer',2,3000,NULL,300,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'produce 2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (615,'Oridecon_Hammer','Oridecon Hammer',2,5000,NULL,400,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'produce 3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (616,'Old_Card_Album','Old Card Album',2,10000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_CardAlbum,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (617,'Old_Violet_Box','Old Purple Box',2,10000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_VioletBox,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (618,'Worn_Out_Scroll','Worn Out Scroll',2,50,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (619,'Unripe_Apple','Unripe Apple',2,1000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1002;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (620,'Orange_Juice','Orange Juice',2,1500,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1113;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (621,'Bitter_Herb','Bitter Herb',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1031;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (622,'Rainbow_Carrot','Rainbow Carrot',2,2500,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1063;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (623,'Earthworm_The_Dude','Earthworm the Dude',2,4000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1049;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (624,'Rotten_Fish','Rotten Fish',2,2500,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1011;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (625,'Lusty_Iron','Rusty Iron',2,100,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1042;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (626,'Monster_Juice','Monster Juice',2,1500,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1035;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (627,'Sweet_Milk','Sweet Milk',2,7000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1167;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (628,'Well_Dried_Bone','Well-Dried Bone',2,10000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1107;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (629,'Singing_Flower','Singing Flower',2,300,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1052;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (630,'Dew_Laden_Moss','Dew Laden Moss',2,10,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1014;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (631,'Deadly_Noxious_Herb','Deadly Noxious Herb',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1077;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (632,'Fatty_Chubby_Earthworm','Fatty Chubby Earthworm',2,5000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1019;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (633,'Baked_Yam','Sweet Potato',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1056;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (634,'Tropical_Banana','Tropical Banana',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1057;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (635,'Horror_Of_Tribe','Orc Trophy',2,300,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1023;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (636,'No_Recipient','No Recipient',2,100,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1026;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (637,'Old_Broom','Old Broom',2,350,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1110;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (638,'Silver_Knife_Of_Chaste','Silver Knife of Chastity',2,12000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1170;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (639,'Armlet_Of_Obedience','Armlet of Obedience',2,18000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1029;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (640,'Shining_Stone','Shining Stone',2,3000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1155;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (641,'Contracts_In_Shadow','Contract in Shadow',2,100,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1109;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (642,'Book_Of_Devil','Book of the Devil',2,1800,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1101;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (643,'Pet_Incubator','Pet Incubator',2,10000,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'bpet;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (644,'Gift_Box','Gift Box',2,1000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_GiftBox,1);',NULL,NULL); -#ASPD in RE they give a fixed +4/+6/+9 ASPD -REPLACE INTO `item_db_re` VALUES (645,'Center_Potion','Concentration Potion',2,1200,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_ASPDPOTION0,1800000,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (656,'Awakening_Potion','Awakening Potion',2,2200,NULL,150,NULL,NULL,NULL,NULL,0xFFF7FEEF,63,2,NULL,NULL,'40',NULL,NULL,'sc_start SC_ASPDPOTION1,1800000,6;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (657,'Berserk_Potion','Berserk Potion',2,4500,NULL,200,NULL,NULL,NULL,NULL,0x41E646A6,63,2,NULL,NULL,'85',NULL,NULL,'sc_start SC_ASPDPOTION2,1800000,9;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (658,'Union_Of_Tribe','Union of Tribe',2,2,NULL,500,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'guildgetexp rand(600000,1200000);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (659,'Heart_Of_Her','Her Heart',2,500,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1188;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (660,'Prohibition_Red_Candle','Forbidden Red Candle',2,20000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1200;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (661,'Sway_Apron','Soft Apron',2,20000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1275;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (662,'Inspector_Certificate','Authoritative Badge',2,1450,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_SPEEDUP0,180000,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (663,'Korea_Rice_Cake','Korean Rice Cake',0,1,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 10,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (664,'Gift_Box_1','Gift Box',2,1000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_GiftBox_1,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (665,'Gift_Box_2','Gift Box',2,1000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_GiftBox_2,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (666,'Gift_Box_3','Gift Box',2,1000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_GiftBox_3,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (667,'Gift_Box_4','Gift Box',2,1000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_GiftBox_4,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (668,'Handsei','Red Envelope',2,0,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'Zeny += rand(1000,10000);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (669,'Rice_Cake_Soup','Tempting Rice-Cake Soup',0,500,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 10,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (670,'Gold_Coin_Moneybag','Bag of Gold Coins',3,100000,NULL,400,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (671,'Gold_Coin','Gold Coin',2,10000,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'RouletteGold++;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (672,'Copper_Coin_Moneybag','Bag of Bronze Coins',3,1000,NULL,400,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (673,'Copper_Coin','Bronze Coin',2,100,NULL,40,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'RouletteBronze++;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (674,'Mithril_Coin','Mithril Coin',3,5000,NULL,40,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (675,'Silver_Coin','Silver Coin',2,5000,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'RouletteSilver++;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (676,'Silver_Coin_Moneybag','Bag of Silver Coins',3,50000,NULL,400,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (677,'White_Gold_Coin','Platinum Coin',3,2000,NULL,40,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (678,'Poison_Bottle','Poison Bottle',2,5000,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (679,'Gold_Pill','Pilule',2,5000,NULL,300,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_DPOISON,10000,0,1000,0; sc_start SC_POISON,50000,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (680,'Magical_Carnation','Magic Carnation',0,0,NULL,1000,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 0,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (681,'Memory_Of_Wedding','Sweet Memory of Marriage',2,50000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'if (getpartnerid()) sc_start SC_WEDDING,600000,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (682,'Realgar_Wine','Distilled Fighting Spirit',2,0,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_ATKPOTION,60000,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (683,'Exorcize_Herb','Herb of Incantation',2,0,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_MATKPOTION,60000,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (684,'Durian','Durian',2,15000,NULL,300,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_ATKPOTION,60000,10; sc_start SC_MATKPOTION,60000,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (685,'RAMADAN','Ramadan',0,5000,NULL,300,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 100,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (686,'Earth_Scroll_1_3','Level 3 Earth Spike',11,1000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "WZ_EARTHSPIKE",3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (687,'Earth_Scroll_1_5','Level 5 Earth Spike',11,2000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "WZ_EARTHSPIKE",5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (688,'Cold_Scroll_1_3','Level 3 Cold Bolt',11,1000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "MG_COLDBOLT",3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (689,'Cold_Scroll_1_5','Level 5 Cold Bolt',11,2000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "MG_COLDBOLT",5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (690,'Fire_Scroll_1_3','Level 3 Fire Bolt',11,1000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "MG_FIREBOLT",3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (691,'Fire_Scroll_1_5','Level 5 Fire Bolt',11,2000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "MG_FIREBOLT",5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (692,'Wind_Scroll_1_3','Level 3 Lightening Bolt',11,1000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "MG_LIGHTNINGBOLT",3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (693,'Wind_Scroll_1_5','Level 5 Lightening Bolt',11,2000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "MG_LIGHTNINGBOLT",5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (694,'Ghost_Scroll_1_3','Level 3 Soul Strike',11,1000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "MG_SOULSTRIKE",3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (695,'Ghost_Scroll_1_5','Level 5 Soul Strike',11,2000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "MG_SOULSTRIKE",5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (696,'Fire_Scroll_2_1','Level 1 Fire Ball',11,1000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "MG_FIREBALL",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (697,'Fire_Scroll_2_5','Level 5 Fire Ball',11,2000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "MG_FIREBALL",5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (698,'Fire_Scroll_3_1','Level 1 Fire Wall',11,1000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "MG_FIREWALL",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (699,'Fire_Scroll_3_5','Level 5 Fire Wall',11,2000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "MG_FIREWALL",5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (700,'Cold_Scroll_2_1','Level 1 Frost Diver',11,1000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "MG_FROSTDIVER",1;',NULL,NULL); -#=================================================================== -# Etc Items -#=================================================================== -REPLACE INTO `item_db_re` VALUES (701,'Ora_Ora','Ora Ora',3,55000,NULL,200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (702,'Animal_Blood','Animal Gore',3,450,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (703,'Hinalle','Hinalle',3,500,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (704,'Aloe','Aloe',3,500,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (705,'Clover','Clover',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (706,'Four_Leaf_Clover','Four Leaf Clover',3,80000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (707,'Singing_Plant','Singing Plant',3,500,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (708,'Ment','Ment',3,500,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (709,'Izidor','Izidor',3,500,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (710,'Illusion_Flower','Illusion Flower',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (711,'Shoot','Shoot',3,16,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (712,'Flower','Flower',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (713,'Empty_Bottle','Empty Bottle',3,6,NULL,20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (714,'Emperium','Emperium',3,2,NULL,1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (715,'Yellow_Gemstone','Yellow Gemstone',3,600,NULL,30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (716,'Red_Gemstone','Red Gemstone',3,600,NULL,30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (717,'Blue_Gemstone','Blue Gemstone',3,600,NULL,30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (718,'Dark_Red_Jewel','Garnet',3,6000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (719,'Violet_Jewel','Amethyst',3,6000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (720,'Skyblue_Jewel','Aquamarine',3,6000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (721,'Azure_Jewel','Emerald',3,6000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (722,'Scarlet_Jewel','Pearl',3,6000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (723,'Cardinal_Jewel','Ruby',3,6000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (724,'Cardinal_Jewel_','Cursed Ruby',3,600,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (725,'Red_Jewel','Sardonyx',3,6000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (726,'Blue_Jewel','Sapphire',3,6000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (727,'White_Jewel','Opal',3,6000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (728,'Golden_Jewel','Topaz',3,6000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (729,'Bluish_Green_Jewel','Zircon',3,6000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (730,'Crystal_Jewel','1carat Diamond',3,10000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (731,'Crystal_Jewel_','2carat Diamond',3,25000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (732,'Crystal_Jewel__','3carat Diamond',3,55000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (733,'Crystal_Jewel___','Cracked Diamond',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (734,'Red_Frame','Red Frame',3,3000,NULL,200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (735,'Blue_Porcelain','Chung Jah',3,5000,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (736,'White_Platter','China',3,1000,NULL,300,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (737,'Black_Ladle','Black Ladle',3,400,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (738,'Pencil_Case','Pencil Case',3,400,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (739,'Rouge','Rouge',3,10000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (740,'Stuffed_Doll','Puppet',3,1000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (741,'Poring_Doll','Poring Doll',3,1800,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (742,'Chonchon_Doll','Chonchon Doll',3,3000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (743,'Spore_Doll','Spore Doll',3,5500,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (744,'Bunch_Of_Flowers','Bouquet',3,2000,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (745,'Wedding_Bouquet','Wedding Bouquet',3,12000,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (746,'Glass_Bead','Glass Bead',3,1400,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (747,'Crystal_Mirror','Crystal Mirror',3,15000,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (748,'Witherless_Rose','Witherless Rose',3,55000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (749,'Frozen_Rose','Frozen Rose',3,35000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (750,'Baphomet_Doll','Baphomet Doll',3,18000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (751,'Osiris_Doll','Osiris Doll',3,14000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (752,'Grasshopper_Doll','Rocker Doll',3,4000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (753,'Monkey_Doll','Yoyo Doll',3,6000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (754,'Raccoondog_Doll','Raccoon Doll',3,5000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (756,'Oridecon_Stone','Rough Oridecon',3,550,NULL,200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (757,'Elunium_Stone','Rough Elunium',3,650,NULL,200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (901,'Danggie','Daenggie',3,260,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (902,'Tree_Root','Tree Root',3,12,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (903,'Reptile_Tongue','Reptile Tongue',3,140,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (904,'Scorpion\'s_Tail','Scorpion Tail',3,124,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (905,'Stem','Stem',3,46,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (906,'Pointed_Scale','Pointed Scale',3,68,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (907,'Resin','Resin',3,120,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (908,'Spawn','Spawn',3,140,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (909,'Jellopy','Jellopy',3,6,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (910,'Garlet','Garlet',3,40,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (911,'Scell','Scell',3,160,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (912,'Zargon','Zargon',3,480,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (913,'Tooth_Of_Bat','Tooth of Bat',3,34,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (914,'Fluff','Fluff',3,8,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (915,'Chrysalis','Chrysalis',3,8,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (916,'Feather_Of_Birds','Feather of Birds',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (917,'Talon','Talon',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (918,'Sticky_Webfoot','Sticky Webfoot',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (919,'Animal\'s_Skin','Animal Skin',3,36,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (920,'Claw_Of_Wolves','Wolf Claw',3,58,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (921,'Mushroom_Spore','Mushroom Spore',3,36,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (922,'Orcish_Cuspid','Orc\'s Fang',3,220,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (923,'Evil_Horn','Evil Horn',3,1200,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (924,'Powder_Of_Butterfly','Powder of Butterfly',3,90,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (925,'Bill_Of_Birds','Bill of Birds',3,64,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (926,'Scale_Of_Snakes','Snake Scale',3,82,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (928,'Insect_Feeler','Insect Feeler',3,114,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (929,'Immortal_Heart','Immortal Heart',3,374,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (930,'Rotten_Bandage','Rotten Bandage',3,350,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (931,'Orcish_Voucher','Orcish Voucher',3,142,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (932,'Skel_Bone','Skel-Bone',3,232,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (934,'Mementos','Memento',3,600,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (935,'Shell','Shell',3,14,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (936,'Scales_Shell','Scale Shell',3,466,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (937,'Posionous_Canine','Venom Canine',3,148,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (938,'Sticky_Mucus','Sticky Mucus',3,70,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (939,'Bee_Sting','Bee Sting',3,32,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (940,'Grasshopper\'s_Leg','Grasshopper\'s Leg',3,36,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (941,'Nose_Ring','Nose Ring',3,568,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (942,'Yoyo_Tail','Yoyo Tail',3,114,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (943,'Solid_Shell','Solid Shell',3,448,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (944,'Horseshoe','Horseshoe',3,588,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (945,'Raccoon_Leaf','Raccoon Leaf',3,106,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (946,'Snail\'s_Shell','Snail\'s Shell',3,64,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (947,'Horn','Horn',3,116,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (948,'Bear\'s_Foot','Bear\'s Footskin',3,174,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (949,'Feather','Feather',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (950,'Heart_Of_Mermaid','Heart of Mermaid',3,264,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (951,'Fin','Fin',3,412,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (952,'Cactus_Needle','Cactus Needle',3,82,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (953,'Stone_Heart','Stone Heart',3,184,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (954,'Shining_Scales','Shining Scale',3,466,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (955,'Worm_Peelings','Worm Peeling',3,52,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (956,'Gill','Gill',3,342,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (957,'Decayed_Nail','Decayed Nail',3,82,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (958,'Horrendous_Mouth','Horrendous Mouth',3,390,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (959,'Rotten_Scale','Stinky Scale',3,168,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (960,'Nipper','Nipper',3,114,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (961,'Conch','Conch',3,158,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (962,'Tentacle','Tentacle',3,70,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (963,'Sharp_Scale','Sharp Scale',3,250,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (964,'Crap_Shell','Crab Shell',3,90,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (965,'Clam_Shell','Clam Shell',3,56,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (966,'Flesh_Of_Clam','Clam Flesh',3,158,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (967,'Turtle_Shell','Turtle Shell',3,680,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (968,'Voucher_Of_Orcish_Hero','Heroic Emblem',3,3000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (969,'Gold','Gold',3,150000,NULL,200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (970,'Alchol','Alcohol',3,400,NULL,30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (971,'Detrimindexta','Detrimindexta',3,400,NULL,30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (972,'Karvodailnirol','Karvodailnirol',3,400,NULL,30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (973,'Counteragent','Counteragent',3,800,NULL,70,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (974,'Mixture','Mixture',3,800,NULL,70,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (975,'Scarlet_Dyestuffs','Scarlet Dyestuffs',3,8000,NULL,150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (976,'Lemon_Dyestuffs','Lemon Dyestuffs',3,8000,NULL,150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (978,'Cobaltblue_Dyestuffs','Cobaltblue Dyestuffs',3,8000,NULL,150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (979,'Darkgreen_Dyestuffs','Darkgreen Dyestuffs',3,8000,NULL,150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (980,'Orange_Dyestuffs','Orange Dyestuffs',3,8000,NULL,150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (981,'Violet_Dyestuffs','Violet Dyestuffs',3,8000,NULL,150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (982,'White_Dyestuffs','White Dyestuffs',3,8000,NULL,150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (983,'Black_Dyestuffs','Black Dyestuffs',3,8000,NULL,150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (984,'Oridecon','Oridecon',3,1100,NULL,200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (985,'Elunium','Elunium',3,1100,NULL,200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (986,'Anvil','Anvil',3,30000,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (987,'Oridecon_Anvil','Oridecon Anvil',3,120000,NULL,700,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (988,'Golden_Anvil','Golden Anvil',3,300000,NULL,900,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (989,'Emperium_Anvil','Emperium Anvil',3,600000,NULL,1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (990,'Boody_Red','Red Blood',3,1000,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (991,'Crystal_Blue','Crystal Blue',3,1000,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (992,'Wind_Of_Verdure','Wind of Verdure',3,1000,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (993,'Yellow_Live','Green Live',3,1000,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (994,'Flame_Heart','Flame Heart',3,3000,NULL,300,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (995,'Mistic_Frozen','Mystic Frozen',3,3000,NULL,300,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (996,'Rough_Wind','Rough Wind',3,3000,NULL,300,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (997,'Great_Nature','Great Nature',3,3000,NULL,300,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (998,'Iron','Iron',3,100,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (999,'Steel','Steel',3,1000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1000,'Star_Crumb','Star Crumb',3,4500,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1001,'Sparkling_Dust','Star Dust',3,1500,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1002,'Iron_Ore','Iron Ore',3,50,NULL,150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1003,'Coal','Coal',3,500,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1004,'Patriotism_Marks','Chivalry Emblem',3,2,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1005,'Hammer_Of_Blacksmith','Hammer of Blacksmith',3,2,NULL,800,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1006,'Old_Magic_Book','Old Magicbook',3,2,NULL,30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1007,'Penetration','Necklace of Wisdom',3,2,NULL,40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1008,'Frozen_Heart','Necklace of Oblivion',3,2,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1009,'Sacred_Marks','Hand of God',3,2,NULL,20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1010,'Phracon','Phracon',3,200,NULL,200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1011,'Emveretarcon','Emveretarcon',3,1000,NULL,200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1012,'Lizard_Scruff','Frill',3,250,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1013,'Colorful_Shell','Rainbow Shell',3,90,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1014,'Jaws_Of_Ant','Ant Jaw',3,232,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1015,'Thin_N\'_Long_Tongue','Tongue',3,528,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1016,'Rat_Tail','Rat Tail',3,52,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1017,'Moustache_Of_Mole','Mole Whiskers',3,106,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1018,'Nail_Of_Mole','Mole Claw',3,210,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1019,'Wooden_Block','Trunk',3,60,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1020,'Long_Hair','Black Hair',3,292,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1021,'Dokkaebi_Horn','Dokebi Horn',3,292,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1022,'Fox_Tail','Nine Tails',3,650,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1023,'Fish_Tail','Fish Tail',3,196,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1024,'Chinese_Ink','Squid Ink',3,264,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1025,'Spiderweb','Cobweb',3,184,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1026,'Acorn','Acorn',3,98,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1027,'Porcupine_Spike','Porcupine Quill',3,158,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1028,'Wild_Boar\'s_Mane','Mane',3,196,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1029,'Tiger\'s_Skin','Tiger Skin',3,548,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1030,'Tiger_Footskin','Tiger\'s Footskin',3,1500,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1031,'Limb_Of_Mantis','Mantis Scythe',3,196,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1032,'Blossom_Of_Maneater','Maneater Blossom',3,196,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1033,'Root_Of_Maneater','Maneater Root',3,208,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1034,'Cobold_Hair','Blue Hair',3,342,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1035,'Dragon_Canine','Dragon Canine',3,484,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1036,'Dragon_Scale','Dragon Scale',3,500,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1037,'Dragon_Train','Dragon Tail',3,1200,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1038,'Petite_DiablOfs_Horn','Little Evil Horn',3,528,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1039,'Petite_DiablOfs_Wing','Little Evil Wing',3,2000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1040,'Elder_Pixie\'s_Beard','Elder Pixie\'s Moustache',3,232,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1041,'Lantern','Lantern',3,250,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1042,'Short_Leg','Bug Leg',3,430,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1043,'Nail_Of_Orc','Orc Claw',3,168,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1044,'Tooth_Of_','Zenorc\'s Fang',3,264,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1045,'Sacred_Masque','Cultish Masque',3,412,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1046,'Tweezer','Scorpion Nipper',3,614,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1047,'Head_Of_Medusa','Dead Medusa',3,548,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1048,'Slender_Snake','Horrendous Hair',3,800,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1049,'Skirt_Of_Virgin','Skirt of Virgin',3,1700,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1050,'Tendon','Tendon',3,220,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1051,'Detonator','Detonator',3,450,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1052,'Single_Cell','Single Cell',3,46,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1053,'Tooth_Of_Ancient_Fish','Ancient Tooth',3,548,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1054,'Lip_Of_Ancient_Fish','Ancient Lips',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1055,'Earthworm_Peeling','Earthworm Peeling',3,196,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1056,'Grit','Grit',3,306,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1057,'Moth_Dust','Moth Dust',3,138,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1058,'Wing_Of_Moth','Moth Wings',3,200,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1059,'Transparent_Cloth','Fabric',3,306,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1060,'Golden_Hair','Golden Hair',3,430,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1061,'Starsand_Of_Witch','Witched Starsand',3,484,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1062,'Pumpkin_Head','Jack o\' Pumpkin',3,374,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1063,'Sharpened_Cuspid','Fang',3,680,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1064,'Reins','Reins',3,802,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1065,'Booby_Trap','Trap',3,75,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1066,'Tree_Of_Archer_1','Fine-grained Trunk',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1067,'Tree_Of_Archer_2','Solid Trunk',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1068,'Tree_Of_Archer_3','Barren Trunk',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1069,'Mushroom_Of_Thief_1','Orange Net Mushroom',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1070,'Mushroom_Of_Thief_2','Orange Gooey Mushroom',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1071,'Mage_Test_1','Unknown Test Tube',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1072,'Delivery_Message','Delivery Message',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1073,'Merchant_Voucher_1','Voucher',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1074,'Merchant_Voucher_2','Voucher',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1075,'Merchant_Voucher_3','Voucher',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1076,'Merchant_Voucher_4','Voucher',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1077,'Merchant_Voucher_5','Voucher',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1078,'Merchant_Voucher_6','Voucher',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1079,'Merchant_Voucher_7','Voucher',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1080,'Merchant_Voucher_8','Voucher',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1081,'Merchant_Box_1','Delivery Box',3,0,NULL,1200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1082,'Merchant_Box_2','Delivery Box',3,0,NULL,1200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1083,'Merchant_Box_3','Delivery Box',3,0,NULL,1200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1084,'Kapra\'s_Pass','Kafra Pass',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1085,'Mage_Test_2','Unknown Test Tube',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1086,'Mage_Test_3','Unknown Test Tube',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1087,'Mage_Test_4','Unknown Test Tube',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1088,'Morocc_Potion','Morocc Solution',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1089,'Payon_Potion','Payon Solution',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1090,'Mage_Test_Etc','Unknown Test Tube',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1091,'Merchant_Box_Etc','Delivery Box',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1092,'Empty_Cylinder','Empty Test Tube',3,3,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1093,'Empty_Potion','Empty Potion Bottle',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1094,'Short_Daenggie','Short Daenggie',3,278,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1095,'Needle_Of_Alarm','Needle of Alarm',3,546,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1096,'Round_Shell','Round Shell',3,780,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1097,'Worn_Out_Page','Worn Out Page',3,948,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1098,'Manacles','Manacles',3,658,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1099,'Worn_Out_Prison_Uniform','Worn-out Prison Uniform',3,680,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#=================================================================== -# 1-Handed Swords -#=================================================================== -REPLACE INTO `item_db_re` VALUES (1101,'Sword','Sword',5,100,NULL,500,'25',NULL,1,3,0x000654E3,63,2,2,1,'2',1,2,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1102,'Sword_','Sword',5,100,NULL,500,'25',NULL,1,4,0x000654E3,63,2,2,1,'2',1,2,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1103,'Sword__','Sword',5,100,NULL,500,'25',NULL,1,0,0x000654E3,63,2,2,1,'2',1,2,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1104,'Falchion','Falchion',5,1500,NULL,600,'39',NULL,1,3,0x000654E3,63,2,2,1,'2',1,2,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1105,'Falchion_','Falchion',5,1500,NULL,600,'39',NULL,1,4,0x000654E3,63,2,2,1,'2',1,2,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1106,'Falchion__','Falchion',5,1500,NULL,600,'39',NULL,1,0,0x000654E3,63,2,2,1,'2',1,2,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1107,'Blade','Blade',5,2900,NULL,700,'53',NULL,1,3,0x000654E3,63,2,2,1,'2',1,2,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1108,'Blade_','Blade',5,2900,NULL,700,'53',NULL,1,4,0x000654E3,63,2,2,1,'2',1,2,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1109,'Blade__','Blade',5,2900,NULL,700,'53',NULL,1,0,0x000654E3,63,2,2,1,'2',1,2,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1110,'Lapier','Rapier',5,10000,NULL,500,'70',NULL,1,2,0x000654E3,63,2,2,2,'14',1,2,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1111,'Lapier_','Rapier',5,10000,NULL,500,'70',NULL,1,3,0x000654E3,63,2,2,2,'14',1,2,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1112,'Lapier__','Rapier',5,10000,NULL,500,'70',NULL,1,0,0x000654E3,63,2,2,2,'14',1,2,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1113,'Scimiter','Scimitar',5,17000,NULL,700,'85',NULL,1,2,0x000654E3,63,2,2,2,'14',1,2,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1114,'Scimiter_','Scimitar',5,17000,NULL,700,'85',NULL,1,3,0x000654E3,63,2,2,2,'14',1,2,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1115,'Scimiter__','Scimitar',5,17000,NULL,700,'85',NULL,1,3,0x000654E3,63,2,2,2,'14',1,2,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1116,'Katana','Katana',5,2000,NULL,1000,'60',NULL,1,3,0x00004082,63,2,34,1,'4',1,3,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1117,'Katana_','Katana',5,2000,NULL,1000,'60',NULL,1,4,0x00004082,63,2,34,1,'4',1,3,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1118,'Katana__','Katana',5,2000,NULL,1000,'60',NULL,1,0,0x00004082,63,2,34,1,'4',1,3,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1119,'Tsurugi','Tsurugi',5,51000,NULL,1200,'130',NULL,1,1,0x000654E2,63,2,2,3,'27',1,2,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1120,'Tsurugi_','Tsurugi',5,51000,NULL,1200,'130',NULL,1,2,0x000654E2,63,2,2,3,'27',1,2,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1121,'Tsurugi__','Tsurugi',5,51000,NULL,1200,'130',NULL,1,0,0x000654E2,63,2,2,3,'27',1,2,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1122,'Ring_Pommel_Saber','Ring Pommel Saber',5,24000,NULL,900,'100',NULL,1,2,0x000654E2,63,2,2,2,'14',1,2,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1123,'Haedonggum','Haedonggum',5,50000,NULL,900,'120',NULL,1,1,0x000654E2,63,2,2,3,'27',1,2,'bonus bInt,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1124,'Orcish_Sword','Orcish Sword',5,20,NULL,800,'90',NULL,1,0,0x000654E3,63,2,2,3,'5',1,2,'bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1125,'Ring_Pommel_Saber_','Ring Pommel Saber',5,24000,NULL,900,'100',NULL,1,3,0x000654E2,63,2,2,2,'14',1,2,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1126,'Saber','Saber',5,49000,NULL,1000,'115',NULL,1,2,0x000654E2,63,2,2,3,'27',1,2,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1127,'Saber_','Saber',5,49000,NULL,1000,'115',NULL,1,3,0x000654E2,63,2,2,3,'27',1,2,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1128,'Hae_Dong_Gum_','Haedonggum',5,50000,NULL,900,'120',NULL,1,2,0x000654E2,63,2,2,3,'27',1,2,'bonus bInt,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1129,'Flamberge','Flamberge',5,60000,NULL,1500,'150',NULL,1,0,0x00004080,63,2,2,3,'27',1,2,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1130,'Nagan','Nagan',5,20,NULL,500,'120',NULL,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_Human,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1131,'Ice_Falchon','Ice Falchion',5,20,NULL,600,'100',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1132,'Edge','Edge',5,20,NULL,700,'115',NULL,1,0,0x000654E2,63,2,2,4,'40',1,2,'bonus2 bAddEff,Eff_Curse,30; bonus2 bComaClass,Class_All,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1133,'Fire_Brand','Fireblend',5,20,NULL,500,'100',NULL,1,0,0x000654E2,63,2,2,4,'40',1,2,'bonus bAtkEle,Ele_Fire; skill "MG_FIREBOLT",3; bonus3 bAutoSpell,"MG_FIREBOLT",3,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1134,'Scissores_Sword','Caesar\'s Sword',5,20,NULL,700,'140',NULL,1,0,0x000654E2,63,2,2,4,'40',1,2,'bonus2 bAddRace,RC_Plant,25; bonus bIgnoreDefRace,RC_Plant;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1135,'Cutlas','Cutlus',5,20,NULL,900,'150',NULL,1,0,0x000654E2,63,2,2,4,'40',1,2,'skill "SM_BASH",5; bonus bStr,2; bonus bDef,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1136,'Solar_Sword','Solar Sword',5,20,NULL,1200,'85',NULL,1,0,0x000654E2,63,2,2,4,'40',1,2,'bonus bAtkEle,Ele_Fire; bonus2 bHPDrainRate,1000,1; bonus2 bSPLossRate,15,10000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1137,'Excalibur','Excalibur',5,20,NULL,1200,'150',NULL,1,0,0x000654E2,63,2,2,4,'40',1,2,'bonus bInt,5; bonus bLuk,10; bonus bDex,-1; bonus bAtkEle,Ele_Holy;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1138,'Mysteltainn_','Mysteltainn',5,20,NULL,1000,'170',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1139,'Tale_Fing_','Tirfing',5,20,NULL,1000,'200',NULL,1,0,0x000654E2,63,2,2,4,'40',1,2,'bonus bAtkEle,Ele_Dark; bonus2 bHPLossRate,35,10000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1140,'Byeorrun_Gum','Byeollungum',5,20,NULL,900,'150',NULL,1,0,0x000654E2,63,2,2,4,'40',1,2,'bonus2 bSubClass,Class_Normal,-10; bonus2 bAddClass,Class_Boss,50; bonus bAllStats,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1141,'Immaterial_Sword','Immaterial Sword',5,20,NULL,900,'140',NULL,1,0,0x000654E2,63,2,2,4,'40',1,2,'bonus bAtkEle,Ele_Ghost; bonus3 bSPVanishRate,3,30,BF_WEAPON; bonus bSPDrainValue,-1; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1142,'Jewel_Sword','Jeweled Sword',5,20,NULL,2200,'104',NULL,1,0,0x000654E2,63,2,2,3,'68',1,2,'bonus2 bAddMonsterDropItemGroup,IG_Jewel,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1143,'Gaia_Sword','Gaia Sword',5,20,NULL,2500,'140',NULL,1,0,0x000654E2,63,2,2,3,'74',1,2,'bonus2 bAddMonsterDropItemGroup,IG_Ore,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1144,'Sasimi','Sashimi',5,20,NULL,1400,'75',NULL,1,0,0x000654E2,63,2,2,3,'48',1,2,'bonus bAtkEle,Ele_Wind; bonus3 bAddMonsterDropItem,544,RC_Fish,4000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1145,'Holy_Avenger','Holy Avenger',5,450000,NULL,1350,'125',NULL,1,0,0x00004000,63,2,2,3,'75',1,2,'bonus bAtkEle,Ele_Holy; bonus bVit,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1146,'Town_Sword','Town Sword',5,42000,NULL,800,'100',NULL,1,1,0x00000001,63,2,2,3,'30',1,2,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1147,'Town_Sword_','Town Sword',5,42000,NULL,800,'100',NULL,1,2,0x00000001,63,2,2,3,'30',1,2,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1148,'Star_Dust_Blade','Star Dust Blade',5,20,NULL,1000,'140',NULL,1,1,0x00000001,63,2,2,4,'45',1,2,'bonus2 bAddEff,Eff_Stun,500; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1149,'Flamberge_','Flamberge',5,60000,NULL,1500,'150',NULL,1,2,0x00004080,63,2,2,3,'27',1,2,NULL,NULL,NULL); -#=================================================================== -# 2-Handed Swords -#=================================================================== -REPLACE INTO `item_db_re` VALUES (1151,'Slayer','Slayer',5,15000,NULL,1300,'90',NULL,1,2,0x00004082,63,2,34,2,'18',1,3,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1152,'Slayer_','Slayer',5,15000,NULL,1300,'90',NULL,1,3,0x00004082,63,2,34,2,'18',1,3,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1153,'Slayer__','Slayer',5,15000,NULL,1300,'90',NULL,1,0,0x00004082,63,2,34,2,'18',1,3,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1154,'Bastard_Sword','Bastard Sword',5,22500,NULL,1600,'115',NULL,1,2,0x00004082,63,2,34,2,'18',1,3,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1155,'Bastard_Sword_','Bastard Sword',5,22500,NULL,1600,'115',NULL,1,3,0x00004082,63,2,34,2,'18',1,3,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1156,'Bastard_Sword__','Bastard Sword',5,22500,NULL,1600,'115',NULL,1,0,0x00004082,63,2,34,2,'18',1,3,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1157,'Two_Hand_Sword','Two-Handed Sword',5,60000,NULL,2200,'160',NULL,1,1,0x00004082,63,2,34,3,'33',1,3,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1158,'Two_Hand_Sword_','Two-Handed Sword',5,60000,NULL,2200,'160',NULL,1,2,0x00004082,63,2,34,3,'33',1,3,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1159,'Two_Hand_Sword__','Two-Handed Sword',5,60000,NULL,2200,'160',NULL,1,0,0x00004082,63,2,34,3,'33',1,3,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1160,'Broad_Sword','Broad Sword',5,65000,NULL,2000,'140',NULL,1,1,0x00004082,63,2,34,3,'33',1,3,'bonus bDef,5; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1161,'Balmung','Balmung',5,20,NULL,1000,'250',NULL,1,0,0xFFFFFFFF,63,2,34,4,'48',1,3,'bonus bInt,20; bonus bLuk,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1162,'Broad_Sword_','Broad Sword',5,65000,NULL,2000,'140',NULL,1,2,0x00004082,63,2,34,3,'33',1,3,'bonus bDef,5; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1163,'Claymore','Claymore',5,74000,NULL,2500,'180',NULL,1,0,0x00004080,63,2,34,3,'33',1,3,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1164,'Muramasa','Muramasa',5,20,NULL,1000,'155',NULL,1,0,0x00004082,63,2,34,4,'48',1,3,'bonus bCritical,30; bonus bAspdRate,8; bonus2 bAddEff2,Eff_Curse,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1165,'Masamune','Masamune',5,20,NULL,1000,'200',NULL,1,0,0x00004082,63,2,34,4,'48',1,3,'bonus bFlee,30; bonus bStr,-5; bonus bAspd,2; bonus bDefRate,-66; bonus bDef2Rate,-66;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1166,'Dragon_Slayer','Dragon Slayer',5,20,NULL,1300,'150',NULL,1,0,0x00004082,63,2,34,4,'48',1,3,'bonus bIgnoreDefRace,RC_Dragon; bonus2 bAddRace,RC_Dragon,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1167,'Schweizersabel','Schweizersabel',5,20,NULL,1600,'160',NULL,1,0,0x00004082,63,2,34,4,'48',1,3,'bonus bAtkEle,Ele_Wind; bonus bDef,1; bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",3,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1168,'Zweihander','Zweihander',5,20,NULL,2200,'200',NULL,1,0,0x00004082,63,2,34,4,'48',1,3,'bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1169,'Executioner_','Executioner',5,20,NULL,2200,'155',NULL,1,0,0x00004082,63,2,34,4,'48',1,3,'bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player_Human,-10; bonus bAtkEle,Ele_Dark;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1170,'Katzbalger','Katzbalger',5,20,NULL,2000,'175',NULL,1,0,0x00004082,63,2,34,4,'48',1,3,'bonus bVit,5; bonus bDef,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1171,'Zweihander_','Zweihander',5,20,NULL,2200,'200',NULL,1,2,0x00004082,63,2,34,4,'48',1,3,'bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1172,'Claymore_','Claymore',5,74000,NULL,2500,'180',NULL,1,2,0x00004080,63,2,34,3,'33',1,3,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1173,'Muramasa_C','Muramasa',5,1,NULL,0,'204',NULL,1,0,0x00004082,63,2,34,4,'1',0,3,'bonus bCritical,30; bonus bAspdRate,8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1174,'Executioner_C','Executioner',5,2,NULL,0,'190',NULL,1,0,0x00004082,63,2,34,4,'0',0,3,'bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player_Human,-10; bonus bAtkEle,Ele_Dark;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1175,'Altas_Weapon','Atlas Weapon',5,20,NULL,3500,'200',NULL,1,1,0x00004082,18,2,34,4,'55',1,3,'bonus bCritical,10; if(readparam(bStr)>=80) bonus bBreakArmorRate,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1176,'Muscle_Cutter','Muscle Cutter',5,20,NULL,2200,'160',NULL,1,2,0x00004082,18,2,34,4,'55',1,3,'bonus2 bAddEff,Eff_Bleeding,800; bonus3 bAutoSpell,"AL_DECAGI",1,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1177,'Muramash','Muramash',5,20,NULL,0,'120',NULL,1,0,0x00004082,63,2,34,1,'0',0,3,'bonus2 bAddClass,Class_All,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1178,'Schweizersabel_','Schweizersabel',5,20,NULL,1600,'160',NULL,1,2,0x00004082,63,2,34,4,'48',1,3,'bonus bAtkEle,Ele_Wind; bonus bDef,1; bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",3,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1179,'Executioner__','Executioner',5,20,NULL,2200,'155',NULL,1,1,0x00004082,63,2,34,4,'48',1,3,'bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player_Human,-10; bonus bAtkEle,Ele_Dark;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1180,'Dragon_Slayer_','Dragon Slayer',5,20,NULL,1300,'150',NULL,1,2,0x00004082,63,2,34,4,'48',1,3,'bonus bIgnoreDefRace,RC_Dragon; bonus2 bAddRace,RC_Dragon,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1181,'Tae_Goo_Lyeon','Tae Goo Lyeon',5,20,NULL,2000,'250',NULL,1,2,0x00004082,18,2,34,4,'90',1,3,'bonus bFlee2,10; if(JobLevel>=70 || (eaclass()&EAJL_THIRD && JobLevel>=50)) autobonus "{ bonus bBaseAtk,50; }",10,10000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; if(getrefine()>8) { bonus bDelayRate,-20; bonus bUseSPrate,-20; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1182,'Bloody_Eater','Bloody Eater',5,20,NULL,1200,'200',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1183,'BF_Two_Handed_Sword1','Brave Assaulter\'s Katzbalger',5,20,NULL,0,'200',NULL,1,0,0x00004082,63,2,34,3,'80',1,3,'bonus bStr,2; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1184,'BF_Two_Handed_Sword2','Valorous Assaulter\'s Katzbalger',5,20,NULL,0,'200',NULL,1,0,0x00004082,63,2,34,3,'80',1,3,'bonus bCritical,20; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus bCritAtkRate,20; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1185,'Violet_Fear','Violet Fear',5,20,NULL,2200,'275',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1186,'Death_Guidance','Death Guidance',5,20,NULL,2000,'200',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1187,'Krieger_Twohand_Sword1','Glorious Claymore',5,20,NULL,0,'220',NULL,1,0,0x00004082,63,2,34,4,'80',1,3,'bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-3,1); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-3,1); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) { bonus3 bAutoSpell,"LK_CONCENTRATION",max(getskilllv("LK_CONCENTRATION"),1),30; bonus3 bAutoSpell,"LK_AURABLADE",max(getskilllv("LK_AURABLADE"),1),30; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1188,'Veteran_Sword','Veteran Sword',5,10000,NULL,2000,'180',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1189,'Krasnaya','Krasnaya',5,20,NULL,3800,'200',NULL,2,3,0x00004082,18,2,34,2,'50',1,3,'if(readparam(bStr)>=95) { bonus bBaseAtk,20; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1190,'Claymore_C','Claymore',5,0,NULL,0,'220',NULL,1,0,0x00004080,63,2,34,3,'1',0,3,'bonus2 bAddSize,Size_All,40;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1191,'Alca_Bringer','Alca Bringer',5,20,NULL,3400,'280',NULL,2,0,0x00000080,56,2,34,3,'100',1,3,'bonus bAspd,(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1192,'P_Slayer1','Eden Slayer I',5,0,NULL,0,'162',NULL,1,0,0x00004082,63,2,34,2,'26',0,3,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1193,'P_Slayer2','Eden Slayer II',5,0,NULL,0,'185',NULL,1,0,0x00004082,63,2,34,2,'40',0,3,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1194,'F_Executioner_C','Executioner',5,2,NULL,0,'190',NULL,1,0,0x00004082,63,2,34,4,'0',0,3,'bonus bAtkEle,Ele_Dark; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bSubRace,RC_DemiHuman,-10; bonus bIgnoreDefRace,RC_DemiHuman; bonus2 bAddRace,RC_Player_Human,20; bonus2 bSubRace,RC_Player_Human,-10; bonus bIgnoreDefRace,RC_Player_Human;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1195,'E_Executioner_C','Executioner',5,2,NULL,0,'190',NULL,1,0,0x00004082,63,2,34,4,'0',0,3,'bonus bAtkEle,Ele_Dark;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1196,'Chrome_Twohand_Sword','Chrome Two-Handed Sword',5,20,NULL,400,'280',NULL,1,0,0x00004082,63,2,34,3,'110',1,3,'bonus bUnbreakableWeapon; bonus bAgi,3; bonus bMaxHPrate,-10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1197,'P_Slayer3','Eden Slayer III',5,0,NULL,0,'200',NULL,1,0,0x00004082,63,2,34,3,'60',0,3,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1198,'Hairtail','Cutlass',5,0,NULL,0,'220',NULL,3,0,0x00004082,63,2,34,1,'50',0,3,'bonus bCritical,20; bonus bCritAtkRate,50; bonus2 bAddEff,Eff_Crystalize,30; if(BaseLevel>99) { bonus bBaseAtk,50; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1199,'Ebony_Toe_Nail','Ebony Toe Nail',5,56000,NULL,1000,'250:150',NULL,1,0,0x00004082,63,2,34,4,'120',1,3,NULL,NULL,NULL); -#=================================================================== -# Daggers -#=================================================================== -REPLACE INTO `item_db_re` VALUES (1201,'Knife','Knife',5,50,NULL,400,'17',NULL,1,3,0x3E9F7EEF,63,2,2,1,'1',1,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1202,'Knife_','Knife',5,50,NULL,400,'17',NULL,1,4,0x3E9F7EEF,63,2,2,1,'1',1,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1203,'Knife__','Knife',5,50,NULL,400,'17',NULL,1,0,0x3E9F7EEF,63,2,2,1,'1',1,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1204,'Cutter','Cutter',5,1250,NULL,500,'30',NULL,1,3,0x3E9F7EEF,63,2,2,1,'1',1,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1205,'Cutter_','Cutter',5,1250,NULL,500,'30',NULL,1,4,0x3E9F7EEF,63,2,2,1,'1',1,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1206,'Cutter__','Cutter',5,1250,NULL,500,'30',NULL,1,0,0x3E9F7EEF,63,2,2,1,'1',1,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1207,'Main_Gauche','Main Gauche',5,2400,NULL,600,'43',NULL,1,3,0x3E9F7EEF,63,2,2,1,'1',1,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1208,'Main_Gauche_','Main Gauche',5,2400,NULL,600,'43',NULL,1,4,0x3E9F7EEF,63,2,2,1,'1',1,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1209,'Main_Gauche__','Main Gauche',5,2400,NULL,600,'43',NULL,1,0,0x3E9F7EEF,63,2,2,1,'1',1,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1210,'Dirk','Dirk',5,8500,NULL,500,'59',NULL,1,2,0x3E9F7EEF,63,2,2,2,'12',1,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1211,'Dirk_','Dirk',5,8500,NULL,500,'59',NULL,1,3,0x3E9F7EEF,63,2,2,2,'12',1,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1212,'Dirk__','Dirk',5,8500,NULL,500,'59',NULL,1,0,0x3E9F7EEF,63,2,2,2,'12',1,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1213,'Dagger','Dagger',5,14000,NULL,600,'73',NULL,1,2,0x3E9F7EEF,63,2,2,2,'12',1,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1214,'Dagger_','Dagger',5,14000,NULL,600,'73',NULL,1,3,0x3E9F7EEF,63,2,2,2,'12',1,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1215,'Dagger__','Dagger',5,14000,NULL,600,'73',NULL,1,0,0x3E9F7EEF,63,2,2,2,'12',1,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1216,'Stiletto','Stiletto',5,19500,NULL,700,'87',NULL,1,2,0x3E9F7EEF,63,2,2,2,'12',1,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1217,'Stiletto_','Stiletto',5,19500,NULL,700,'87',NULL,1,3,0x3E9F7EEF,63,2,2,2,'12',1,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1218,'Stiletto__','Stiletto',5,19500,NULL,700,'87',NULL,1,0,0x3E9F7EEF,63,2,2,2,'12',1,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1219,'Gladius','Gladius',5,43000,NULL,700,'105',NULL,1,2,0x028F5EEE,63,2,2,3,'24',1,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1220,'Gladius_','Gladius',5,43000,NULL,700,'105',NULL,1,3,0x028F5EEE,63,2,2,3,'24',1,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1221,'Gladius__','Gladius',5,43000,NULL,700,'105',NULL,1,0,0x028F5EEE,63,2,2,3,'24',1,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1222,'Damascus','Damascus',5,49000,NULL,800,'118',NULL,1,1,0x028F5EEE,63,2,2,3,'24',1,1,'bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1223,'Forturn_Sword','Fortune Sword',5,20,NULL,500,'90',NULL,1,0,0x028F5EEE,63,2,2,4,'24',1,1,'bonus bLuk,5; bonus bFlee2,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1224,'Sword_Breaker','Swordbreaker',5,20,NULL,1000,'70',NULL,1,0,0x028F5EEE,63,2,2,4,'36',1,1,'bonus bBreakWeaponRate,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1225,'Mail_Breaker','Mailbreaker',5,20,NULL,1000,'70',NULL,1,0,0x028F5EEE,63,2,2,4,'36',1,1,'bonus bBreakArmorRate,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1226,'Damascus_','Damascus',5,49000,NULL,800,'118',NULL,1,2,0x028F5EEE,63,2,2,3,'24',1,1,'bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1227,'Weeder_Knife','Weeder Knife',5,20,NULL,400,'80',NULL,1,0,0x028F5EEE,63,2,2,4,'36',1,1,'bonus bIgnoreDefRace,RC_Plant; bonus2 bAddRace,RC_Plant,15; bonus2 bSubRace,RC_Plant,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1228,'Combat_Knife','Combat Knife',5,20,NULL,400,'80',NULL,1,0,0x028F5EEE,63,2,2,4,'36',1,1,'bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Demon,-10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1229,'Mama\'s_Knife','Kitchen Knife',5,20,NULL,500,'75',NULL,1,0,0x028F5EEE,63,2,2,4,'36',1,1,'bonus bCritical,30; bonus3 bAddMonsterDropItem,517,RC_Brute,5000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1230,'House_Auger','Ice Pick',5,20,NULL,600,'80',NULL,1,0,0x028F5EEE,63,2,2,4,'36',1,1,'bonus bDefRatioAtkClass,Class_All;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1231,'Bazerald','Bazerald',5,20,NULL,500,'70:105',NULL,1,0,0x028F5EEE,63,2,2,4,'36',1,1,'bonus bAtkEle,Ele_Fire; bonus bInt,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1232,'Assasin_Dagger','Assassin Dagger',5,20,NULL,600,'140',NULL,1,0,0x00001000,63,2,2,4,'36',1,1,'bonus bMaxHPrate,20; bonus bMaxSPrate,15; bonus bAspdRate,2; bonus bAtkEle,Ele_Dark;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1233,'Exercise','Exorciser',5,20,NULL,700,'90',NULL,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_Human,-10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1234,'Moonlight_Sword','Moonlight Dagger',5,20,NULL,700,'50',NULL,1,0,0x028F5EEE,63,2,2,4,'36',1,1,'bonus bMaxSPrate,10; bonus bSPDrainValue,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1235,'Azoth','Azoth',5,20,NULL,700,'110',NULL,1,0,0x00040000,63,2,2,4,'36',1,1,'bonus bClassChange,300;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1236,'Sucsamad','Sucsamad',5,20,NULL,800,'140',NULL,1,0,0x028F5EEE,63,2,2,4,'36',1,1,'bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Wind,10; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1237,'Grimtooth_','Grimtooth',5,20,NULL,800,'180',NULL,1,0,0x028F5EEE,63,2,2,4,'36',1,1,'bonus bFlee,10; bonus bFlee2,5; bonus bDefRate,-50; bonus bDef2Rate,-50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1238,'Zeny_Knife','Zeny Knife',5,20,NULL,1200,'64',NULL,1,0,0x028F5EEE,63,2,2,3,'70',1,1,'bonus2 bGetZenyNum,100,40;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1239,'Poison_Knife','Poison Knife',5,20,NULL,800,'64',NULL,1,0,0x028F5EEE,63,2,2,3,'65',1,1,'bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,3000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1240,'Princess_Knife','Princess Knife',5,20,NULL,400,'84',NULL,1,0,0x028F5EEE,63,2,2,4,'1',1,1,'bonus bAllStats,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1241,'Cursed_Dagger','Cursed Dagger',5,80000,NULL,400,'55',NULL,1,0,0x00810204,63,2,2,4,'85',1,1,'bonus2 bAddEff,Eff_Curse,5000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1242,'Counter_Dagger','Dagger of Counter',5,120000,NULL,550,'140',NULL,1,0,0x00810204,63,2,2,4,'55',1,1,'bonus bCritical,90;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1243,'Novice_Knife','Novice Main-Gauche',5,0,NULL,1,'45',NULL,1,0,0x00000001,63,2,2,1,'1',0,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1244,'Holy_Dagger','Holy Dagger',5,20,NULL,800,'100',NULL,1,0,0x02021040,63,2,2,4,'55',1,1,'bonus bAtkEle,Ele_Holy; bonus2 bAddRace,RC_Demon,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1245,'Cinquedea','Cinquedea',5,40000,NULL,700,'110',NULL,1,1,0x00000001,63,2,2,3,'30',1,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1246,'Cinquedea_','Cinquedea',5,40000,NULL,700,'110',NULL,1,2,0x00000001,63,2,2,3,'30',1,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1247,'Kindling_Dagger','Kindle Dagger',5,10000,NULL,600,'39',NULL,1,0,0x3E9F7EEF,63,2,2,1,'1',1,1,'bonus bAtkEle,Ele_Fire;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1248,'Obsidian_Dagger','Obsidian Dagger',5,10000,NULL,600,'39',NULL,1,0,0x3E9F7EEF,63,2,2,1,'1',1,1,'bonus bAtkEle,Ele_Earth;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1249,'Fisherman\'s_Dagger','Fisherman\'s Dagger',5,10000,NULL,600,'39',NULL,1,0,0x3E9F7EEF,63,2,2,1,'1',1,1,'bonus bAtkEle,Ele_Water;',NULL,NULL); -#=================================================================== -# Katars -#=================================================================== -REPLACE INTO `item_db_re` VALUES (1250,'Jur','Jur',5,19500,NULL,800,'125',NULL,1,2,0x00001000,63,2,34,2,'18',1,16,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1251,'Jur_','Jur',5,19500,NULL,800,'125',NULL,1,3,0x00001000,63,2,34,2,'18',1,16,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1252,'Katar','Katar',5,41000,NULL,1200,'148',NULL,1,1,0x00001000,63,2,34,3,'33',1,16,'bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1253,'Katar_','Katar',5,41000,NULL,1200,'148',NULL,1,2,0x00001000,63,2,34,3,'33',1,16,'bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1254,'Jamadhar','Jamadhar',5,37200,NULL,1500,'165',NULL,1,0,0x00001000,63,2,34,3,'33',1,16,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1255,'Jamadhar_','Jamadhar',5,37200,NULL,1500,'165',NULL,1,1,0x00001000,63,2,34,3,'33',1,16,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1256,'Katar_Of_Cold_Icicle','Katar of Frozen Icicle',5,45000,NULL,1200,'105',NULL,1,0,0x00001000,63,2,34,3,'55',1,16,'bonus bAtkEle,Ele_Water; bonus2 bAddEff,Eff_Freeze,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1257,'Katar_Of_Thornbush','Katar of Quaking',5,45000,NULL,1200,'105',NULL,1,0,0x00001000,63,2,34,3,'55',1,16,'bonus bAtkEle,Ele_Earth; bonus2 bAddEff,Eff_Blind,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1258,'Katar_Of_Raging_Blaze','Katar of Raging Blaze',5,45000,NULL,1200,'105',NULL,1,0,0x00001000,63,2,34,3,'55',1,16,'bonus bAtkEle,Ele_Fire; bonus2 bAddEff,Eff_Silence,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1259,'Katar_Of_Piercing_Wind','Katar of Piercing Wind',5,45000,NULL,1200,'105',NULL,1,0,0x00001000,63,2,34,3,'55',1,16,'bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Sleep,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1260,'Ghoul_Leg','Sharpened Legbone of Ghoul',5,52500,NULL,1700,'150',NULL,1,0,0x00001000,63,2,34,3,'65',1,16,'bonus bAtkEle,Ele_Undead;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1261,'Infiltrator','Infiltrator',5,57000,NULL,1500,'140',NULL,1,0,0x00001000,63,2,34,4,'75',1,16,'bonus2 bAddRace,RC_DemiHuman,50; bonus2 bAddRace,RC_Player_Human,50; bonus bDef,3; bonus bFlee,5; bonus bFlee2,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1262,'Nail_Of_Loki','Loki\'s Nail',5,20,NULL,1200,'115',NULL,1,0,0x00001000,63,2,34,3,'55',1,16,'bonus2 bAddEff,Eff_Bleeding,300;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1263,'Unholy_Touch','Unholy Touch',5,20,NULL,1250,'151',NULL,1,0,0x00001000,63,2,34,4,'70',1,16,'bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Curse,200; bonus bCritical,-1; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1264,'Various_Jur','Specialty Jur',5,20,NULL,800,'90',NULL,1,4,0x00001000,63,2,34,1,'1',1,16,'bonus2 bAddEff2,Eff_Bleeding,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1265,'Bloody_Roar','Bloody Roar',5,20,NULL,1000,'120',NULL,1,0,0x00001000,63,2,34,4,'75',1,16,'bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus bFlee,-(readparam(bAgi)+BaseLevel); bonus bHPrecovRate,-100; bonus bSPrecovRate,-100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1266,'Infiltrator_','Infiltrator',5,57000,NULL,1500,'140',NULL,1,1,0x00001000,63,2,34,4,'75',1,16,'bonus2 bAddRace,RC_DemiHuman,50; bonus2 bAddRace,RC_Player_Human,50; bonus bDef,3; bonus bFlee,5; bonus bFlee2,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1267,'Infiltrator_C','Infiltrator',5,1,NULL,0,'189',NULL,1,0,0x00001000,63,2,34,4,'1',0,16,'bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus bDef,3; bonus bFlee,5; bonus bFlee2,2; bonus bAspdRate,8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1268,'Wild_Beast_Claw','Wild Beast Claw',5,20,NULL,1450,'160',NULL,1,1,0x00001000,18,2,34,4,'55',1,16,'bonus3 bAutoSpell,"NPC_CRITICALWOUND",(getrefine()>=9?2:1),100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1269,'Inverse_Scale','Inverse Scale',5,20,NULL,1500,'140',NULL,1,0,0x00001000,18,2,34,4,'55',1,16,'bonus bAtkEle,Ele_Holy; bonus3 bAutoSpell,"NPC_DRAGONFEAR",1,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1270,'Drill_Katar','Drill Katar',5,20,NULL,1400,'110',NULL,1,1,0x00001000,18,2,34,4,'55',1,16,'bonus bHit,30; bonus3 bAutoSpell,"ST_FULLSTRIP",1,150;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1271,'Blood_Tears','Blood Tears',5,20,NULL,1700,'120',NULL,1,2,0x00001000,18,2,34,4,'55',1,16,'bonus3 bAutoSpell,"NPC_WIDEBLEEDING",(getrefine()>=9?2:1),30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1272,'Scratcher','Scratcher',5,20,NULL,0,'120',NULL,1,0,0x00001000,63,2,34,1,'0',0,16,'bonus2 bAddClass,Class_All,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1273,'Bloody_Roar_C','Refined Bloody Roar',5,1,NULL,0,'148',NULL,1,0,0x00001000,63,2,34,4,'0',0,16,'bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bHPRegenRate,3,5000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1274,'Unholy_Touch_C','Refined Unholy Touch',5,1,NULL,0,'179',NULL,1,0,0x00001000,63,2,34,4,'0',0,16,'bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Curse,5000; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1275,'Katar_Of_Cold_Icicle_','Katar of Frozen Icicle',5,45000,NULL,1200,'105',NULL,1,3,0x00001000,63,2,34,3,'55',1,16,'bonus bAtkEle,Ele_Water; bonus2 bAddEff,Eff_Freeze,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1276,'Katar_Of_Thornbush_','Katar of Quaking',5,45000,NULL,1200,'105',NULL,1,3,0x00001000,63,2,34,3,'55',1,16,'bonus bAtkEle,Ele_Earth; bonus2 bAddEff,Eff_Blind,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1277,'Katar_Of_Raging_Blaze_','Katar of Raging Blaze',5,45000,NULL,1200,'105',NULL,1,3,0x00001000,63,2,34,3,'55',1,16,'bonus bAtkEle,Ele_Fire; bonus2 bAddEff,Eff_Silence,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1278,'Katar_Of_Piercing_Wind_','Katar of Piercing Wind',5,45000,NULL,1200,'105',NULL,1,3,0x00001000,63,2,34,3,'55',1,16,'bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Sleep,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1279,'BF_Katar1','Brave Carnage Katar',5,20,NULL,0,'130',NULL,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_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1280,'BF_Katar2','Valorous Carnage Katar',5,20,NULL,0,'130',NULL,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_Human,70; bonus bCritAtkRate,20; bonus bAspdRate,5; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1281,'Krieger_Katar1','Glorious Bloody Roar',5,20,NULL,0,'140',NULL,1,0,0x00001000,63,2,34,4,'80',1,16,'bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) autobonus "{ bonus bAspdRate,100; }",70,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1282,'Krieger_Katar2','Glorious Jamadhar',5,20,NULL,0,'140',NULL,1,0,0x00001000,63,2,34,4,'80',1,16,'bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus bCritAtkRate,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bCriticalAddRace,RC_DemiHuman,5; bonus2 bCriticalAddRace,RC_Player_Human,5; } if(.@r>8) autobonus "{ bonus bAspdRate,100; }",70,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1283,'Katar_Of_Speed','Katar Of Speed',5,20,NULL,0,'175',NULL,1,0,0x00001000,63,2,34,4,'0',0,16,'bonus2 bSkillAtk,"AS_SONICBLOW",25; bonus bAspdRate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1284,'Krishna','Krishna',5,20,NULL,1200,'120',NULL,1,2,0x00001000,18,2,34,3,'50',1,16,'bonus2 bSkillAtk,"AS_GRIMTOOTH",10; bonus3 bAutoSpell,"AS_SONICBLOW",max(getskilllv("AS_SONICBLOW"),1),100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1285,'Cakram','Chakram',5,20,NULL,1000,'130',NULL,1,2,0x00001000,18,2,34,3,'50',1,16,'if(getskilllv("AS_KATAR")==10) { bonus bHit,10; } bonus2 bSkillAtk,"ASC_METEORASSAULT",20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1286,'Jamadhar_C','Jamadhar',5,0,NULL,0,'200',NULL,1,0,0x00001000,63,2,34,3,'1',0,16,'bonus bUnbreakableWeapon; bonus2 bAddSize,Size_All,40;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1287,'Durga','Durga',5,20,NULL,1200,'190',NULL,1,1,0x00001000,63,2,34,3,'100',1,16,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1288,'Bloody_Fear_C','Bloody Fear',5,1,NULL,0,'145',NULL,1,0,0x00001000,63,2,34,4,'1',0,16,'bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bAddEff,Eff_Bleeding,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1289,'P_Katar1','Eden Katar I',5,0,NULL,0,'155',NULL,1,0,0x00001000,63,2,34,3,'60',0,16,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1290,'Agent_Katar','Agent Katar',5,41000,NULL,1200,'170',NULL,1,1,0x00001000,63,2,34,3,'100',1,16,'bonus bHit,readparam(bLuk)/2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1291,'Guillotine_Katar','Guillotine Katar',5,56000,NULL,1500,'200',NULL,1,1,0x00001000,63,2,34,4,'140',1,16,'bonus bDex,2; bonus bFlee,-30; bonus2 bAddRace,RC_DemiHuman,50; bonus2 bAddRace,RC_Player_Human,50; bonus2 bSkillAtk,"GC_CROSSIMPACT",30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1292,'Upg_Katar','Upg Katar',5,20,NULL,1000,'80',NULL,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);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1293,'Velum_Jamadhar','Vellum Jamadhar',5,20,NULL,1200,'170',NULL,1,0,0x00001000,63,2,34,4,'95',1,16,'bonus4 bSetDefRace,RC_Player_Human,10000,5000,1; bonus4 bSetMDefRace,RC_Player_Human,10000,5000,1; bonus bAspdRate,getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1294,'Velum_Scare','Vellum Scale',5,20,NULL,1200,'50',NULL,1,0,0x00001000,63,2,34,4,'95',1,16,'bonus3 bSPVanishRaceRate,RC_Player_Human,1000,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1295,'Blood_Tears_','Blood Tears',5,20,NULL,1700,'120',NULL,1,3,0x00001000,18,2,34,4,'55',1,16,'bonus3 bAutoSpell,"NPC_WIDEBLEEDING",(getrefine()>=9?2:1),30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1296,'Metal_Katar','Metal Katar',5,20,NULL,0,'75',NULL,1,1,0x00001000,63,2,34,3,'1',1,16,'.@r = getrefine(); bonus bBaseAtk,(.@r*5); bonus bCritAtkRate,.@r; .@i = min(BaseLevel/10,12); if(.@i>2) bonus bBaseAtk,((.@i-2)*5);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1297,'Inverse_Scale_','Inverse Scale',5,20,NULL,1500,'140',NULL,1,2,0x00001000,18,2,34,4,'55',1,16,'bonus bAtkEle,Ele_Holy; bonus3 bAutoSpell,"NPC_DRAGONFEAR",1,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1298,'Shiver_Katar','Katar Of Horror',5,60000,NULL,2700,'110',NULL,1,2,0x00001000,63,2,34,4,'105',1,16,'bonus bCritical,getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1299,'TE_Woe_Katar','TE Woe Katar',5,0,NULL,0,'120',NULL,1,0,0x00001000,63,2,34,3,'40',1,16,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Bleeding,1000;',NULL,NULL); -#=================================================================== -# 1-Handed Axes -#=================================================================== -REPLACE INTO `item_db_re` VALUES (1300,'Cleaver_','Cleaver',5,20,NULL,1200,'140',NULL,1,3,0x000444A2,63,2,2,4,'44',1,6,'bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus3 bAddMonsterDropItem,517,RC_Brute,3000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1301,'Axe','Axe',5,500,NULL,800,'38',NULL,1,3,0x000654E3,63,2,2,1,'3',1,6,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1302,'Axe_','Axe',5,500,NULL,800,'38',NULL,1,4,0x000654E3,63,2,2,1,'3',1,6,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1303,'Axe__','Axe',5,500,NULL,800,'38',NULL,1,0,0x000654E3,63,2,2,1,'3',1,6,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1304,'Orcish_Axe','Orcish Axe',5,20,NULL,1500,'75',NULL,1,0,0x000654E3,63,2,2,3,'3',1,6,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1305,'Cleaver','Cleaver',5,20,NULL,1200,'140',NULL,1,0,0x000444A2,63,2,2,4,'44',1,6,'bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus3 bAddMonsterDropItem,517,RC_Brute,3000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1306,'War_Axe','War Axe',5,20,NULL,4200,'140',NULL,1,1,0x00040400,63,2,2,3,'76',1,6,'bonus bDex,2; bonus bLuk,2; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1307,'Windhawk','Windhawk',5,18000,NULL,1500,'115',NULL,1,0,0x000654E2,63,2,2,2,'14',1,6,'bonus bAtkEle,Ele_Wind; bonus bAspdRate,5; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1308,'Golden_Axe','Golden Axe',5,20,NULL,3000,'170',NULL,1,0,0x00000001,63,2,2,4,'45',1,6,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1309,'Orcish_Axe_','Orcish Axe',5,20,NULL,1500,'75',NULL,1,4,0x000654E3,63,2,2,3,'3',1,6,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1310,'Krieger_Onehand_Axe1','Glorious Cleaver',5,20,NULL,0,'130',NULL,1,0,0x000444A2,63,2,2,4,'80',1,6,'bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus bAspdRate,5; } if(.@r>8) { bonus bAspdRate,5; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,50; bonus4 bAutoSpellOnSkill,"MC_MAMMONITE","NPC_CRITICALWOUND",2,200; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1311,'Vecer_Axe','Vecer Axe',5,20,NULL,1500,'140',NULL,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; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1312,'Orcish_Axe_C','Orcish Axe',5,0,NULL,0,'110',NULL,1,0,0x000654E3,63,2,2,3,'1',0,6,'bonus2 bAddSize,Size_All,70;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1313,'Tourist_Axe','Tourist Axe',5,0,NULL,500,'77',NULL,1,0,0x000654E3,63,2,2,1,'1',0,6,'bonus bStr,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1314,'F_Tomahawk_C','Tomahawk',5,2,NULL,0,'200',NULL,1,0,0x000444A2,63,2,34,4,'0',0,7,'bonus bAtkEle,Ele_Wind; skill "ITM_TOMAHAWK",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1315,'F_Right_Epsilon_C','Light Epsilon',5,1,NULL,0,'229',NULL,1,0,0x000444A2,63,2,34,4,'1',0,7,'bonus bAtkEle,Ele_Holy; bonus bStr,10; bonus2 bAddRace,RC_Demon,3; skill "AL_HEAL",3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1316,'Adventure_Axe','Adventure Axe',5,0,NULL,0,'100',NULL,1,0,0x00040420,63,2,2,1,'1',0,6,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1317,'Academy_Axe','Academy Axe',5,0,NULL,1600,'130',NULL,1,1,0x00040420,63,2,2,1,'30',1,6,'bonus bUnbreakableWeapon; bonus bAspdRate,5-(BaseLevel/10); bonus bMaxHP,200-(40*(BaseLevel/10));',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1318,'Dofle_Axe','Deflation Axe',5,50000,NULL,1800,'180',NULL,1,2,0x000654E2,63,2,2,4,'105',1,6,'skill "ITM_TOMAHAWK",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1319,'TE_Woe_Axe','TE Woe Axe',5,0,NULL,0,'100',NULL,1,0,0x000654E3,63,2,2,3,'40',1,6,'bonus bUnbreakableWeapon; bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Freeze,1000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1321,'Dofle_Axe_','Deflation Axe',5,50000,NULL,1800,'180',NULL,1,3,0x000654E2,63,2,2,4,'105',1,6,'skill "ITM_TOMAHAWK",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1322,'Ru_Blue_Axe','Blue Axe',5,10,NULL,1800,'180',NULL,1,1,0xFFFBFFFF,56,2,2,3,'100',1,6,'bonus bStr,5; bonus bInt,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1323,'Ru_Gold_Axe','Ru Gold Axe',5,0,NULL,1800,'180',NULL,1,2,0x00040000,56,2,2,3,'120',1,6,'bonus bStr,8; bonus bInt,8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1324,'War_Axe_','War Axe',5,20,NULL,4200,'140',NULL,1,3,0x00040400,63,2,2,3,'76',1,6,'bonus bDex,2; bonus bLuk,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1326,'Illusion_War_Axe','Illusion War Axe',5,0,NULL,4200,'180',NULL,1,2,0x00040420,63,2,2,4,'120',1,6,'bonus bStr,2; bonus bDex,2; bonus bLuk,2; .@r = getrefine(); if (.@r >= 9) { .@val = 40; } else if (.@r >= 7) { .@val = 20; } bonus2 bSkillAtk,"NC_AXETORNADO",(100+.@val); bonus2 bSkillAtk,"NC_AXEBOOMERANG",(100+.@val); bonus2 bSkillAtk,"GN_CART_TORNADO",(75+.@val);',NULL,NULL); -#=================================================================== -# 2-Handed Axes -#=================================================================== -REPLACE INTO `item_db_re` VALUES (1333,'Golden_Wrench','Golden Wrench',5,NULL,NULL,5500,'220',NULL,1,2,0x00000400,56,2,2,4,'170',1,6,'.@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bAddClass,Class_all,5; bonus bBaseAtk,4*.@r; if (.@r>=11) .@val = 35; else if (.@r>=9) .@val = 20; bonus2 bSkillAtk,"NC_AXEBOOMERANG",.@val; bonus2 bSkillAtk,"NC_POWERSWING",.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1336,'Guardian_Knight_Axe','Guardian Knight Axe',5,0,NULL,1500,'210',NULL,1,2,0xFFFFFBFF,56,2,2,4,'170',1,6,'bonus bUnbreakableWeapon; bonus2 bAddClass,Class_All,5; .@r = getrefine(); bonus bLongAtkRate,.@r; if(.@r >= 9){ bonus2 bSkillAtk,"NC_POWERSWING",20; bonus2 bSkillAtk,"NC_AXEBOOMERANG",20; } if(.@r >= 11){ bonus2 bAddRace,RC_Undead,20; bonus2 bAddRace,RC_Angel,20; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1351,'Battle_Axe','Battle Axe',5,5400,NULL,1500,'80',NULL,1,3,0x000444A2,63,2,34,1,'3',1,7,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1352,'Battle_Axe_','Battle Axe',5,5400,NULL,1500,'80',NULL,1,4,0x000444A2,63,2,34,1,'3',1,7,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1353,'Battle_Axe__','Battle Axe',5,5400,NULL,1500,'80',NULL,1,0,0x000444A2,63,2,34,1,'3',1,7,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1354,'Hammer','Hammer',5,15500,NULL,2000,'120',NULL,1,2,0x000444A2,63,2,34,2,'16',1,7,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1355,'Hammer_','Hammer',5,15500,NULL,2000,'120',NULL,1,3,0x000444A2,63,2,34,2,'16',1,7,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1356,'Hammer__','Hammer',5,15500,NULL,2000,'120',NULL,1,0,0x000444A2,63,2,34,2,'16',1,7,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1357,'Buster','Buster',5,34000,NULL,2200,'155',NULL,1,1,0x000444A2,63,2,34,3,'30',1,7,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1358,'Buster_','Buster',5,34000,NULL,2200,'155',NULL,1,2,0x000444A2,63,2,34,3,'30',1,7,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1359,'Buster__','Buster',5,34000,NULL,2200,'155',NULL,1,0,0x000444A2,63,2,34,3,'30',1,7,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1360,'Two_Handed_Axe','Two-Handed Axe',5,55000,NULL,2500,'185',NULL,1,1,0x000444A2,63,2,34,3,'30',1,7,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1361,'Two_Handed_Axe_','Two-Handed Axe',5,55000,NULL,2500,'185',NULL,1,2,0x000444A2,63,2,34,3,'30',1,7,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1362,'Two_Handed_Axe__','Two-Handed Axe',5,55000,NULL,2500,'185',NULL,1,0,0x000444A2,63,2,34,3,'30',1,7,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1363,'Brood_Axe','Bloody Axe',5,20,NULL,4000,'170',NULL,1,0,0x000444A2,63,2,34,4,'44',1,7,'bonus bStr,10; bonus bSpeedRate,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1364,'Great_Axe','Great Axe',5,20,NULL,1800,'187',NULL,1,0,0x000444A2,63,2,34,4,'44',1,7,'bonus2 bAddSkillBlow,"MC_MAMMONITE",5; bonus2 bAddEff,Eff_Stun,1500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1365,'Sabbath','Sabbath',5,20,NULL,2300,'120',NULL,1,0,0x000444A2,63,2,34,4,'44',1,7,'bonus bAtkEle,Ele_Dark; bonus2 bComaRace,RC_Demon,50; bonus2 bCriticalAddRace,RC_Undead,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1366,'Right_Epsilon','Light Epsilon',5,20,NULL,2300,'180',NULL,1,0,0x000444A2,63,2,34,4,'44',1,7,'bonus bAtkEle,Ele_Holy; skill "AL_HEAL",3; bonus2 bAddRace,RC_Demon,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1367,'Slaughter','Slaughter',5,20,NULL,2500,'120',NULL,1,0,0x000444A2,63,2,34,4,'44',1,7,'bonus bAtkEle,Ele_Earth; bonus bIgnoreDefRace,RC_Brute; bonus2 bComaRace,RC_Brute,40; bonus bIgnoreDefRace,RC_Player_Doram; bonus2 bComaRace,RC_Player_Doram,40;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1368,'Tomahawk','Tomahawk',5,20,NULL,2500,'165',NULL,1,0,0x000444A2,63,2,34,4,'44',1,7,'bonus bAtkEle,Ele_Wind; skill "ITM_TOMAHAWK",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1369,'Guillotine','Guillotine',5,20,NULL,3000,'215',NULL,1,0,0x000444A2,63,2,34,4,'44',1,7,'bonus2 bComaRace,RC_DemiHuman,30; bonus2 bComaRace,RC_Player_Human,30; bonus2 bSPDrainValueRace,RC_DemiHuman,2; bonus2 bSPDrainValueRace,RC_Player_Human,2; bonus2 bSPGainRace,RC_DemiHuman,20; bonus2 bSPGainRace,RC_Player_Human,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1370,'Doom_Slayer','Doom Slayer',5,20,NULL,6000,'10',NULL,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; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1371,'Doom_Slayer_','Doom Slayer',5,20,NULL,6000,'10',NULL,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; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1372,'Right_Epsilon_C','Light Epsilon',5,1,NULL,0,'229',NULL,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; */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1373,'Brood_Axe_C','Refined Bloody Axe',5,2,NULL,0,'205',NULL,1,0,0x000444A2,63,2,34,4,'0',0,7,'bonus bStr,20; bonus bMatkRate,20; bonus bAspdRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1374,'Tomahawk_C','Tomahawk',5,2,NULL,0,'200',NULL,1,0,0x000444A2,63,2,34,4,'0',0,7,'bonus bAtkEle,Ele_Wind; skill "ITM_TOMAHAWK",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1375,'Berdysz','Berdysz',5,20,NULL,2500,'200',NULL,1,2,0x000444A2,18,2,34,3,'70',1,7,'bonus2 bSubSize,Size_Medium,13; bonus2 bSubSize,Size_Large,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1376,'Heart_Breaker','Heart Breaker',5,20,NULL,2000,'175',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1377,'Hurricane_Fury','Hurricane\'s Fury',5,20,NULL,3500,'332',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1378,'Great_Axe_C','Refined Great Axe',5,1,NULL,0,'215',NULL,1,0,0x000444A2,63,2,34,4,'0',0,7,'bonus bStr,5; bonus bHit,20; bonus2 bSkillAtk,"MC_MAMMONITE",20; bonus2 bAddEff,Eff_Stun,2000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1379,'BF_Two_Handed_Axe1','Valorous Insane Battle Axe',5,20,NULL,0,'200',NULL,1,0,0x000444A2,63,2,34,3,'80',1,7,'bonus bStr,3; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1380,'BF_Two_Handed_Axe2','Brave Insane Battle Axe',5,20,NULL,0,'200',NULL,1,0,0x000444A2,63,2,34,3,'80',1,7,'bonus bStr,3; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; autobonus "{ bonus bBreakArmorRate,10000; }",20,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1381,'N_Battle_Axe','Novice Battle Axe',5,0,NULL,0,'100',NULL,1,3,0x000444A2,63,2,34,1,'3',0,7,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1382,'Krieger_Twohand_Axe1','Glorious Two-Handed Axe',5,20,NULL,0,'220',NULL,1,0,0x000444A2,63,2,34,4,'80',1,7,'bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-3,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-3,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,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; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1383,'Holy_Celestial_Axe','Celestial Axe',5,20,NULL,1500,'200',NULL,1,0,0x00040420,63,2,34,4,'60',1,7,'bonus2 bAddRace,RC_Undead,10; bonus3 bAutoSpell,"AL_BLESSING",5,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1384,'Veteran_Axe','Veteran Axe',5,10000,NULL,3000,'250',NULL,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; bonus4 bAutoSpellOnSkill,"BS_HAMMERFALL","SM_MAGNUM",3,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1385,'Bradium_Stonehammer','Bradium Stone Hammer',5,20,NULL,2700,'210',NULL,1,0,0x00000400,2,2,34,4,'75',1,7,'bonus3 bAddEffOnSkill,"BS_HAMMERFALL",Eff_Stun,500+(200*getrefine());',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1386,'Doom_Slayer_I','Doom Slayer',5,0,NULL,0,'20',NULL,1,0,0x000444A2,63,2,34,4,'0',0,7,'bonus bAspdRate,-25; bonus bUseSPrate,100; if(readparam(bStr)>=95){ bonus bBaseAtk,400; bonus2 bAddEff,Eff_Stun,3000; bonus bBreakArmorRate,500; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1387,'Giant_Axe','Giant Axe',5,20,NULL,4000,'330',NULL,1,1,0x00044480,18,2,34,3,'50',1,7,'bonus2 bSkillAtk,"WS_CARTTERMINATION",15; if(readparam(bStr)>=95) { bonus bHit,10; bonus bAspdRate,3; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1388,'Two_Handed_Axe_C','Two-Handed Axe',5,0,NULL,0,'220',NULL,1,0,0x000444A2,63,2,34,3,'1',0,7,'bonus2 bAddSize,Size_All,40;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1389,'E_Tomahawk_C','Tomahawk',5,2,NULL,0,'200',NULL,1,0,0x000444A2,63,2,34,4,'0',0,7,'bonus bAtkEle,Ele_Wind;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1390,'E_Right_Epsilon_C','Light Epsilon',5,1,NULL,0,'229',NULL,1,0,0x000444A2,63,2,34,4,'1',0,7,'bonus bAtkEle,Ele_Holy; bonus bStr,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1391,'P_Two_Handed_Axe1','Eden Two-Handed Axe I',5,0,NULL,0,'195',NULL,1,0,0x000444A2,63,2,34,3,'60',0,7,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1392,'Ygnus_Stale','Ignus Steel',5,56000,NULL,1900,'250',NULL,1,1,0x00044480,58,2,34,4,'95',1,7,'bonus bAtkEle,Ele_Fire; bonus bUnbreakableWeapon; bonus2 bAddEff,Eff_Burning,200; bonus2 bAddEff2,Eff_Burning,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1393,'End_Sektura','End Sectora',5,56000,NULL,1900,'250',NULL,1,1,0x00044480,58,2,34,4,'95',1,7,'bonus bAtkEle,Ele_Water; bonus bUnbreakableWeapon; bonus2 bAddEff,Eff_Freeze,300; bonus2 bAddEff2,Eff_Freeze,300;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1394,'Upg_Two_Handed_Axe','Upg Two Handed Axe',5,20,NULL,2000,'110',NULL,1,1,0x000444A2,63,2,34,3,'1',1,7,'bonus bBaseAtk,(getrefine()*14); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*10); bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1395,'Velum_Buster','Vellum Buster',5,20,NULL,2500,'50',NULL,1,0,0x000444A2,63,2,34,4,'95',1,7,'bonus bUnbreakableWeapon; bonus3 bSPVanishRaceRate,RC_Player_Human,1000,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1396,'Velum_Guillotine','Vellum Guillotine',5,20,NULL,5500,'300',NULL,1,0,0x000444A2,63,2,34,4,'95',1,7,'bonus bUnbreakableWeapon; bonus2 bAddRace,RC_Player_Human,40; bonus2 bIgnoreDefRaceRate,RC_Player_Human,30; .@r = getrefine(); if(.@r>=6) { bonus2 bSkillAtk,"NC_AXEBOOMERANG",80; bonus2 bSkillAtk,"NC_POWERSWING",80; } if(.@r>=9) { bonus2 bAddRace,RC_Player_Human,60; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1397,'Bradium_Stonehammer_','Bradium Stone Hammer',5,20,NULL,2700,'210',NULL,1,2,0x00000400,2,2,34,4,'75',1,7,'bonus3 bAddEffOnSkill,"BS_HAMMERFALL",Eff_Stun,500+(200*getrefine());',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1398,'Metal_Two_Handed_Axe','Metal Two Handed Axe',5,20,NULL,0,'105',NULL,1,1,0x000444A2,63,2,34,3,'1',1,7,'bonus bUnbreakableWeapon; bonus bBaseAtk,(getrefine()*7); .@i = min(BaseLevel/10,12); if(.@i>2) bonus bBaseAtk,((.@i-2)*5);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1399,'TE_Woe_Two_Handed_Axe','TE Woe Two Handed Axe',5,0,NULL,0,'150',NULL,1,0,0x000444A2,63,2,34,3,'40',1,7,'bonus bUnbreakableWeapon; bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Stun,1000;',NULL,NULL); -#=================================================================== -# 1-Handed Spears -#=================================================================== -REPLACE INTO `item_db_re` VALUES (1400,'Spear_of_Vicious_Mind','Spear of Vicious Mind',5,20,NULL,1400,'140',NULL,3,1,0x00004082,63,2,2,4,'160',1,4,'bonus bAtk,pow(min(getrefine(),15),2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1401,'Javelin','Javelin',5,150,NULL,700,'28',NULL,3,3,0x00004082,63,2,2,1,'4',1,4,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1402,'Javelin_','Javelin',5,150,NULL,700,'28',NULL,3,4,0x00004082,63,2,2,1,'4',1,4,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1403,'Javelin__','Javelin',5,150,NULL,700,'28',NULL,3,0,0x00004082,63,2,2,1,'4',1,4,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1404,'Spear','Spear',5,1700,NULL,850,'44',NULL,3,3,0x00004082,63,2,2,1,'4',1,4,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1405,'Spear_','Spear',5,1700,NULL,850,'44',NULL,3,4,0x00004082,63,2,2,1,'4',1,4,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1406,'Spear__','Spear',5,1700,NULL,850,'44',NULL,3,0,0x00004082,63,2,2,1,'4',1,4,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1407,'Pike','Pike',5,3450,NULL,1000,'60',NULL,3,3,0x00004082,63,2,2,1,'4',1,4,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1408,'Pike_','Pike',5,3450,NULL,1000,'60',NULL,3,4,0x00004082,63,2,2,1,'4',1,4,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1409,'Pike__','Pike',5,3450,NULL,1000,'60',NULL,3,0,0x00004082,63,2,2,1,'4',1,4,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1410,'Lance','Lance',5,60000,NULL,2500,'185',NULL,3,0,0x00004082,63,2,34,3,'33',1,5,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1411,'Lance_','Lance',5,60000,NULL,2500,'185',NULL,3,0,0x00004082,63,2,34,3,'33',1,5,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1412,'Lance__','Lance',5,60000,NULL,2500,'185',NULL,3,0,0x00004082,63,2,34,3,'33',1,5,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1413,'Gungnir','Gungnir',5,20,NULL,500,'120',NULL,3,0,0x00004082,63,2,2,4,'4',1,4,'bonus bAtkEle,Ele_Wind; bonus bPerfectHitRate,25; bonus bHit,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1414,'Gelerdria','Gelerdria',5,20,NULL,700,'145',NULL,3,0,0x00004082,63,2,2,4,'48',1,4,'bonus bAtkEle,Ele_Earth; bonus bMaxHP,800; bonus bMaxSP,-50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1415,'Skewer','Brocca',5,20,NULL,850,'100',NULL,3,0,0x00004082,63,2,2,4,'48',1,4,'bonus bIgnoreDefClass,Class_Normal; bonus2 bAddEle,Ele_Neutral,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1416,'Tjungkuletti','Tjungkuletti',5,20,NULL,1000,'100',NULL,3,0,0x00004082,63,2,2,4,'48',1,4,'bonus bSPDrainValue,1; bonus bSPGainValue,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1417,'Pole_Axe','Pole Axe',5,20,NULL,3800,'160',NULL,3,1,0x00004082,63,2,2,3,'71',1,4,'bonus bStr,1; bonus bInt,2; bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1418,'Gungnir_','Gungnir',5,20,NULL,500,'120',NULL,3,2,0x00004082,63,2,2,4,'4',1,4,'bonus bAtkEle,Ele_Wind; bonus bPerfectHitRate,25; bonus bHit,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1419,'Pole_Axe_C','Pole Axe',5,1,NULL,4800,'195',NULL,3,0,0x00004082,63,2,2,3,'1',0,4,'bonus bStr,1; bonus bInt,2; bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1420,'Long_Horn','Long Horn',5,20,NULL,1000,'150',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1421,'Battle_Hook','Battle Hook',5,20,NULL,900,'140',NULL,3,1,0x00004082,18,2,2,4,'65',1,4,'bonus2 bAddEff,Eff_Stun,500; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; skill "KN_PIERCE",3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1422,'Hunting_Spear','Hunting Spear',5,20,NULL,4200,'180',NULL,3,1,0x00004082,18,2,2,4,'60',1,4,'bonus bIgnoreDefRace,RC_Brute; bonus bIgnoreDefRace,RC_Player_Doram; bonus3 bAddMonsterDropItem,517,RC_Brute,1000; bonus3 bAutoSpell,"LK_JOINTBEAT",3,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1423,'Pole_XO','Pole XO',5,20,NULL,0,'120',NULL,3,0,0x00004082,63,2,2,1,'0',0,4,'bonus2 bAddClass,Class_All,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1424,'Skewer_C','Refined Brocca',5,1,NULL,0,'149',NULL,3,0,0x00004082,63,2,2,4,'1',0,4,'bonus bIgnoreDefClass,Class_Normal; bonus2 bAddSize,Size_Medium,20; bonus2 bAddSize,Size_Large,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1425,'BF_Spear1','Assaulter Spear',5,20,NULL,0,'60',NULL,3,0,0x00004082,63,2,2,3,'80',1,4,'bonus bStr,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(BaseJob==Job_Crusader) bonus bAspdRate,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1426,'Krieger_Onehand_Spear1','Glorious Spear',5,20,NULL,0,'130',NULL,3,0,0x00004082,63,2,2,4,'80',1,4,'bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus bAspdRate,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,100; bonus bAspdRate,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1427,'Spear_Of_Excellent','Spear Of Excellent',5,20,NULL,0,'160',NULL,3,0,0x00004082,63,2,2,3,'0',0,4,'bonus2 bSkillAtk,"SM_MAGNUM",25; bonus bStr,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1428,'Long_Horn_M','Long Horn',5,20,NULL,1000,'150',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1429,'Hunting_Spear_M','Hunting Spear',5,20,NULL,4200,'180',NULL,3,1,0x00004082,18,2,2,4,'60',1,4,'bonus bIgnoreDefRace,RC_Brute; bonus bIgnoreDefRace,RC_Player_Doram; bonus3 bAddMonsterDropItem,517,RC_Brute,1000; bonus3 bAutoSpell,"LK_JOINTBEAT",3,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1430,'Pike_C','Pike',5,0,NULL,0,'74',NULL,3,0,0x00004082,63,2,2,1,'1',0,4,'bonus2 bAddSize,Size_All,70;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1431,'F_Pole_Axe_C','Pole Axe',5,1,NULL,4800,'195',NULL,3,0,0x00004082,63,2,2,3,'1',0,4,'bonus bStr,1; bonus bInt,2; bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1432,'E_Pole_Axe_C','Pole Axe',5,1,NULL,4800,'195',NULL,3,0,0x00004082,63,2,2,3,'1',0,4,'bonus bStr,1; bonus bInt,2; bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1433,'Imperial_Spear','Imperial Spear',5,20,NULL,1800,'180:40',NULL,3,1,0x00004082,63,2,2,3,'102',1,4,'.@r = getrefine(); bonus2 bSkillAtk,"LG_CANNONSPEAR",20+(.@r/2*3); bonus2 bSkillAtk,"LG_BANISHINGPOINT",20+(.@r/2*3);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1434,'P_Sphere1','Eden Spear I',5,0,NULL,0,'165',NULL,3,0,0x00004082,63,2,2,3,'60',0,4,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1435,'Cannon_Spear','Cannon Spear',5,56000,NULL,1600,'180',NULL,3,1,0x00004000,56,2,2,4,'100',1,4,'bonus bMaxSP,-100; bonus2 bSkillAtk,"LG_CANNONSPEAR",10; bonus2 bSkillAtk,"LG_CANNONSPEAR",(getrefine()/3);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1436,'Velum_Spear','Vellum Spear',5,20,NULL,850,'150',NULL,3,0,0x00004082,63,2,2,4,'95',1,4,'bonus2 bAddRace,RC_Player_Human,60; .@r = getrefine(); if(.@r>=6) { bonus2 bSkillAtk,"RK_HUNDREDSPEAR",80; bonus2 bSkillAtk,"LG_PINPOINTATTACK",80; } if(.@r>=9) { bonus2 bAddRace,RC_Player_Human,30; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1437,'TE_Woe_Pike','TE Woe Pike',5,0,NULL,0,'100',NULL,3,0,0x00004082,63,2,2,3,'40',1,4,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Curse,1000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1438,'Thanos_Spear','Thanos Spear',5,10,NULL,3000,'150:100',NULL,3,1,0x00004082,56,2,2,4,'120',1,4,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000;',NULL,'heal -1000,0;'); -REPLACE INTO `item_db_re` VALUES (1439,'Half_BF_Spear1','Half BF Spear1',5,20,NULL,0,'60',NULL,3,0,0x00004082,63,2,2,3,'80',1,4,'bonus bStr,2; bonus2 bAddRace,RC_DemiHuman,45; bonus2 bAddRace,RC_Player_Human,45; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon; if(BaseJob==Job_Crusader) bonus bAspdRate,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1440,'Battle_Hook_','Battle Hook',5,20,NULL,900,'140',NULL,3,3,0x00004082,18,2,2,4,'65',1,4,'bonus2 bAddEff,Eff_Stun,500; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; skill "KN_PIERCE",3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1441,'Ru_Blue_Spear','Blue Spear',5,10,NULL,1200,'180',NULL,3,1,0x00004000,56,2,2,3,'100',1,4,'bonus bStr,5; bonus bAgi,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1442,'Ru_Gold_Spear','Ru Gold Spear',5,0,NULL,1200,'180',NULL,3,2,0x00004000,56,2,2,3,'120',1,4,'bonus bStr,8; bonus bAgi,8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1443,'Crimson_Spear','Crimson Spear',5,20,NULL,900,'90',NULL,3,2,0x00004082,63,2,2,3,'70',1,4,'.@r = getrefine(); bonus bBaseAtk,(.@r<=15?pow(.@r,2):225); bonus bBaseAtk,((max(0,BaseLevel-70)/10)*5);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1445,'[Rental]_Hunting_Spear','[Rental] Hunting Spear',5,20,NULL,0,'140',NULL,3,2,0x00004082,63,2,2,3,'50',1,4,'.@r = getrefine(); if(.@r >= 7){ bonus2 bAddRace,RC_Insect,10; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddEle,Ele_Water,10; bonus2 bAddEle,Ele_Earth,10; } if(.@r >= 9){ bonus2 bAddRace,RC_Insect,15; bonus2 bAddRace,RC_DemiHuman,15; bonus2 bAddEle,Ele_Water,15; bonus2 bAddEle,Ele_Earth,15; } bonus bAtkEle,Ele_Fire;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1446,'Requiem_Spear','Requiem Spear',5,20,NULL,1000,'130',NULL,3,NULL,0x00004080,63,2,2,4,'100',1,4,'.@r = getrefine(); .@b = 40; bonus bUnbreakableWeapon; if(.@r>=5){ .@b += (.@r-5)*15+20; } bonus2 bAddRace2,RC2_BioLab,.@b;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1447,'Poison_Forged_Spear','Poison Forged Spear',5,0,NULL,500,'150',NULL,3,3,0x00004080,58,2,2,4,'100',1,4,'bonus bAtkEle,Ele_Poison; bonus bCritical,10; skill "TF_DOUBLE",5; bonus bDoubleRate,25; bonus2 bAddEff,Eff_Poison,1000; bonus2 bAddEff2,Eff_Poison,300;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1448,'Warrior\'s_Spear','Warrior\'s Spear',5,0,NULL,2000,'140',NULL,3,3,0x00004082,63,2,2,3,'50',1,4,'.@r = getrefine(); if(.@r >= 7){ bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Plant,10; bonus2 bAddEle,Ele_Wind,10; bonus2 bAddEle,Ele_Earth,10; } if(.@r >= 9){ bonus2 bAddRace,RC_Brute,15; bonus2 bAddRace,RC_Plant,15; bonus2 bAddEle,Ele_Wind,15; bonus2 bAddEle,Ele_Earth,15; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1449,'Gelerdria_','Gelerdria',5,20,NULL,700,'145',NULL,3,3,0x00004082,63,2,2,4,'48',1,4,'bonus bAtkEle,Ele_Earth; bonus bMaxHP,800; bonus bMaxSP,-50;',NULL,NULL); -#=================================================================== -# 2-Handed Spears -#=================================================================== -REPLACE INTO `item_db_re` VALUES (1450,'Lance_of_Vicious_Mind','Lance of Vicious Mind',5,20,NULL,2250,'225',NULL,3,1,0x00004082,63,2,34,4,'160',1,5,'bonus bAtk,pow(min(getrefine(),15),2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1451,'Guisarme','Guisarme',5,13000,NULL,1000,'84',NULL,3,2,0x00004082,63,2,34,2,'18',1,5,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1452,'Guisarme_','Guisarme',5,13000,NULL,1000,'84',NULL,3,3,0x00004082,63,2,34,2,'18',1,5,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1453,'Guisarme__','Guisarme',5,13000,NULL,1000,'84',NULL,3,0,0x00004082,63,2,34,2,'18',1,5,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1454,'Glaive','Glaive',5,20000,NULL,1200,'104',NULL,3,2,0x00004082,63,2,34,2,'18',1,5,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1455,'Glaive_','Glaive',5,20000,NULL,1200,'104',NULL,3,3,0x00004082,63,2,34,2,'18',1,5,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1456,'Glaive__','Glaive',5,20000,NULL,1200,'104',NULL,3,0,0x00004082,63,2,34,2,'18',1,5,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1457,'Partizan','Partizan',5,27000,NULL,2000,'124',NULL,3,1,0x00004082,63,2,34,2,'18',1,5,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1458,'Partizan_','Partizan',5,27000,NULL,2000,'124',NULL,3,2,0x00004082,63,2,34,2,'18',1,5,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1459,'Partizan__','Partizan',5,27000,NULL,2000,'124',NULL,3,0,0x00004082,63,2,34,2,'18',1,5,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1460,'Trident','Trident',5,51000,NULL,1200,'150',NULL,3,2,0x00004082,63,2,34,3,'33',1,5,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1461,'Trident_','Trident',5,51000,NULL,1200,'150',NULL,3,3,0x00004082,63,2,34,3,'33',1,5,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1462,'Trident__','Trident',5,51000,NULL,1200,'150',NULL,3,0,0x00004082,63,2,34,3,'33',1,5,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1463,'Halberd','Halberd',5,54000,NULL,2500,'165',NULL,3,1,0x00004082,63,2,34,3,'33',1,5,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1464,'Halberd_','Halberd',5,54000,NULL,2500,'165',NULL,3,2,0x00004082,63,2,34,3,'33',1,5,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1465,'Halberd__','Halberd',5,54000,NULL,2500,'165',NULL,3,0,0x00004082,63,2,34,3,'33',1,5,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1466,'Crescent_Scythe','Crescent Scythe',5,20,NULL,2500,'180',NULL,3,0,0x00004082,63,2,34,4,'48',1,5,'bonus bCriticalRate,30; bonus bHit,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1467,'Bill_Guisarme','Bill Guisarme',5,20,NULL,1000,'183',NULL,3,0,0x00004082,63,2,34,4,'48',1,5,'bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Player_Doram,10; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1468,'Zephyrus','Zephyrus',5,20,NULL,2000,'170',NULL,3,0,0x00004082,63,2,34,4,'48',1,5,'bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Silence,200; bonus3 bAutoSpell,"MG_THUNDERSTORM",3,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1469,'Longinus\'s_Spear','Longinus\'s Spear',5,20,NULL,2500,'180',NULL,3,0,0x00004082,63,2,34,4,'48',1,5,'bonus bAtkEle,Ele_Dark; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus2 bAddRace,RC_Angel,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1470,'Brionac','Brionac',5,20,NULL,3000,'190',NULL,3,0,0x00004082,63,2,34,4,'48',1,5,'bonus bAtkEle,Ele_Holy; skill "AL_HEAL",5; bonus3 bAutoSpell,"MG_SOULSTRIKE",3,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1471,'Hell_Fire','Hellfire',5,20,NULL,3500,'200',NULL,3,0,0x00004082,63,2,34,4,'48',1,5,'bonus bAtkEle,Ele_Fire; bonus3 bAutoSpell,"MG_FIREBALL",5,100; bonus bStr,3;',NULL,NULL); -#=================================================================== -# 2-Handed Staffs -#=================================================================== -REPLACE INTO `item_db_re` VALUES (1472,'Staff_Of_Soul','Soul Staff',5,20,NULL,1400,'25:200',NULL,1,0,0x00810204,63,2,34,3,'73',1,23,'bonus bInt,5; bonus bAgi,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1473,'Wizardy_Staff','Wizardry Staff',5,20,NULL,2400,'120:200',NULL,1,0,0x00810204,63,2,34,4,'90',1,23,'bonus bInt,6; bonus bDex,2;',NULL,NULL); -#=================================================================== -# 2-Handed Spears -#=================================================================== -REPLACE INTO `item_db_re` VALUES (1474,'Gae_Bolg','Gae Bolg',5,20,NULL,2000,'160',NULL,3,0,0x00004082,63,2,34,4,'60',1,5,'bonus bIgnoreDefRace,RC_Dragon; bonus2 bAddClass,Class_Boss,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1475,'Horseback_Lance','Equestrian\'s Spear',5,20,NULL,3700,'200',NULL,4,0,0x00004082,63,2,34,4,'75',1,5,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1476,'Crescent_Scythe_','Crescent Scythe',5,20,NULL,2500,'180',NULL,3,1,0x00004082,63,2,34,4,'48',1,5,'bonus bCriticalRate,30; bonus bHit,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1477,'Spectral_Spear','Spectral Spear',5,20,NULL,2000,'170',NULL,3,0,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 bSubEle,Ele_Undead,10; bonus2 bSubRace,RC_Demon,10; bonus2 bAddEff2,Eff_Confusion,1000; bonus bHPGainValue,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1478,'Ahlspiess','Ahlspiess',5,20,NULL,1000,'120',NULL,3,0,0x00004080,63,2,34,4,'65',1,5,'bonus bIgnoreDefClass,Class_Normal; bonus bIgnoreDefClass,Class_Boss; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus3 bAutoSpell,"KN_PIERCE",5,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1479,'Spectral_Spear_','Spectral Spear',5,20,NULL,2000,'170',NULL,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 bSubEle,Ele_Undead,10; bonus2 bSubRace,RC_Demon,10; bonus2 bAddEff2,Eff_Confusion,1000; bonus bHPGainValue,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1480,'Gae_Bolg_','Gae Bolg',5,20,NULL,2000,'160',NULL,3,2,0x00004082,63,2,34,4,'60',1,5,'bonus bIgnoreDefRace,RC_Dragon; bonus2 bAddClass,Class_Boss,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1481,'Zephyrus_','Zephyrus',5,20,NULL,2000,'170',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1482,'BF_Lance1','Assaulter Lance',5,20,NULL,0,'160',NULL,3,0,0x00004082,63,2,34,3,'80',1,5,'bonus bStr,2; bonus2 bAddRace,RC_DemiHuman,25; bonus2 bAddRace,RC_Player_Human,25; bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1483,'Ivory_Lance','Ivory Lance',5,20,NULL,1000,'160',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1484,'Cardo','Cardo',5,20,NULL,5600,'150',NULL,3,1,0x00000080,18,2,34,4,'70',1,5,'bonus bAspdRate,-10; bonus bDef,getrefine()/2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1485,'Battle_Fork','Battle Fork',5,20,NULL,700,'112',NULL,3,4,0x00004082,18,2,34,2,'50',1,5,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1486,'Krieger_Twohand_Spear1','Glorious Lance',5,20,NULL,0,'220',NULL,3,0,0x00004082,63,2,34,4,'80',1,5,'bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,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; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1487,'Lance_C','Lance',5,0,NULL,0,'220',NULL,3,0,0x00004082,63,2,34,3,'1',0,5,'bonus2 bAddSize,Size_All,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1488,'Ahlspiess_C','Ahlspiess',5,20,NULL,0,'135',NULL,3,0,0x00004080,63,2,34,4,'1',1,5,'bonus bIgnoreDefClass,Class_Normal; bonus bIgnoreDefClass,Class_Boss; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; bonus3 bAutoSpell,"KN_PIERCE",5,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1489,'Spearfish_','Marlin',5,0,NULL,0,'220',NULL,3,0,0x00004082,18,2,34,1,'50',0,5,'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; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1490,'Giant_Lance','Gigantic Lance',5,20,NULL,20000,'20',NULL,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; }',NULL,'heal 0,-600;'); -REPLACE INTO `item_db_re` VALUES (1491,'Upg_Lance','Upg Lance',5,20,NULL,1500,'105',NULL,3,1,0x00004082,63,2,34,3,'1',1,5,'bonus bBaseAtk,(getrefine()*12); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*10);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1492,'Velum_Glaive','Vellum Glaive',5,20,NULL,4500,'250',NULL,3,0,0x00004082,63,2,34,4,'95',1,5,'bonus2 bAddRace,RC_Player_Human,80; bonus2 bAddRace,RC_Player_Doram,80; .@r = getrefine(); if(.@r>=6) { bonus2 bSkillAtk,"LK_SPIRALPIERCE",100; bonus2 bSkillAtk,"LG_OVERBRAND",50; } if(.@r>=9) { bonus bShortWeaponDamageReturn,20; bonus bMagicDamageReturn,20; bonus5 bAutoSpellWhenHit,"NPC_MAGICMIRROR",7,300,BF_MAGIC,0; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1493,'Metal_Lance','Metal Lance',5,20,NULL,0,'100',NULL,3,1,0x00004082,63,2,34,3,'1',1,5,'bonus bBaseAtk,(getrefine()*6); .@i = min(BaseLevel/10,12); if(.@i>2) bonus bBaseAtk,((.@i-2)*5);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1494,'Undine_Spear','Spear Of Odin',5,50000,NULL,3800,'190',NULL,3,3,0x00004082,63,2,34,4,'105',1,5,'bonus bAtkEle,Ele_Water; bonus bMaxHPrate,getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1495,'TE_Woe_Lance','TE Woe Lance',5,0,NULL,0,'150',NULL,3,0,0x00004082,63,2,34,3,'40',1,5,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Blind,1000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1496,'Thanos_Long_Spear','Thanos Long Spear',5,10,NULL,3750,'250:50',NULL,3,1,0x00004082,56,2,34,4,'120',1,5,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000;',NULL,'heal -1000,0;'); -REPLACE INTO `item_db_re` VALUES (1497,'Hell_Fire_','Hellfire',5,20,NULL,3500,'200',NULL,3,3,0x00004082,63,2,34,4,'48',1,5,'bonus bAtkEle,Ele_Fire; bonus3 bAutoSpell,"MG_FIREBALL",5,100; bonus bStr,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1498,'Crimson_Lance','Crimson Lance',5,20,NULL,1750,'175',NULL,1,2,0x00004082,63,2,34,3,'70',1,5,'.@r = getrefine(); bonus bBaseAtk,pow(.@r,2); bonus bBaseAtk,(max(0,BaseLevel-70)/10)*5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1499,'Requiem_Lance','Requiem Lance',5,20,NULL,1500,'220',NULL,3,NULL,0x00004080,63,2,34,4,'100',1,5,'.@r = getrefine(); .@b = 40; .@c = 5; bonus bUnbreakableWeapon; if(.@r>=5){ .@b += (.@r-5)*15+30; .@c += (.@r-5); } bonus2 bAddRace2,RC2_BioLab,.@b; bonus2 bSubRace2,RC2_BioLab,.@c;',NULL,NULL); -#=================================================================== -# Maces -#=================================================================== -REPLACE INTO `item_db_re` VALUES (1501,'Club','Club',5,120,NULL,700,'23',NULL,1,3,0x0004C5B3,63,2,2,1,'2',1,8,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1502,'Club_','Club',5,120,NULL,700,'23',NULL,1,4,0x0004C5B3,63,2,2,1,'2',1,8,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1503,'Club__','Club',5,120,NULL,700,'23',NULL,1,0,0x0004C5B3,63,2,2,1,'2',1,8,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1504,'Mace','Mace',5,1600,NULL,800,'37',NULL,1,3,0x0004C5B3,63,2,2,1,'2',1,8,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1505,'Mace_','Mace',5,1600,NULL,800,'37',NULL,1,4,0x0004C5B3,63,2,2,1,'2',1,8,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1506,'Mace__','Mace',5,1600,NULL,800,'37',NULL,1,0,0x0004C5B3,63,2,2,1,'2',1,8,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1507,'Smasher','Smasher',5,9000,NULL,1000,'54',NULL,1,2,0x0004C5B3,63,2,2,2,'14',1,8,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1508,'Smasher_','Smasher',5,9000,NULL,1000,'54',NULL,1,3,0x0004C5B3,63,2,2,2,'14',1,8,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1509,'Smasher__','Smasher',5,9000,NULL,1000,'54',NULL,1,3,0x0004C5B3,63,2,2,2,'14',1,8,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1510,'Flail','Flail',5,16000,NULL,900,'69',NULL,1,2,0x0004C5B2,63,2,2,2,'14',1,8,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1511,'Flail_','Flail',5,16000,NULL,900,'69',NULL,1,3,0x0004C5B2,63,2,2,2,'14',1,8,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1512,'Flail__','Flail',5,16000,NULL,900,'69',NULL,1,3,0x0004C5B2,63,2,2,2,'14',1,8,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1513,'Morning_Star','Morning Star',5,41000,NULL,1500,'110',NULL,1,1,0x0004C5B2,63,2,2,3,'27',1,8,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1514,'Morning_Star_','Morning Star',5,41000,NULL,1500,'110',NULL,1,2,0x0004C5B2,63,2,2,3,'27',1,8,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1515,'Morning_Star__','Morning Star',5,41000,NULL,1500,'110',NULL,1,2,0x0004C5B2,63,2,2,3,'27',1,8,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1516,'Sword_Mace','Sword Mace',5,50000,NULL,1200,'130',NULL,1,0,0x0004C5B2,63,2,2,3,'27',1,8,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1517,'Sword_Mace_','Sword Mace',5,50000,NULL,1200,'130',NULL,1,1,0x0004C5B2,63,2,2,3,'27',1,8,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1518,'Sword_Mace__','Sword Mace',5,50000,NULL,1200,'130',NULL,1,1,0x0004C5B2,63,2,2,3,'27',1,8,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1519,'Chain','Chain',5,23000,NULL,800,'84',NULL,1,2,0x0004C5B2,63,2,2,2,'14',1,8,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1520,'Chain_','Chain',5,23000,NULL,800,'84',NULL,1,3,0x0004C5B2,63,2,2,2,'14',1,8,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1521,'Chain__','Chain',5,23000,NULL,800,'84',NULL,1,3,0x0004C5B2,63,2,2,2,'14',1,8,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1522,'Stunner','Stunner',5,60000,NULL,2000,'140',NULL,1,0,0x00008110,63,2,2,3,'27',1,8,'bonus2 bAddEff,Eff_Stun,1000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1523,'Spike','Spike',5,20,NULL,700,'85',NULL,1,0,0x00008110,63,2,2,4,'40',1,8,'bonus bCriticalRate,40; bonus bDefRate,-66; bonus bDef2Rate,-66;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1524,'Golden_Mace','Golden Mace',5,20,NULL,800,'110',NULL,1,1,0x00008110,63,2,2,4,'40',1,8,'bonus2 bAddRace,RC_Undead,10; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1525,'Long_Mace','Long Mace',5,20,NULL,800,'135',NULL,3,0,0x00008110,63,2,2,4,'40',1,8,'bonus bLongAtkDef,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1526,'Slash','Slash',5,20,NULL,1000,'145',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1527,'Quadrille','Quadrille',5,20,NULL,900,'165',NULL,1,0,0x00008110,63,2,2,4,'40',1,8,'bonus2 bAddRace,RC_Undead,10; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus2 bAddEle,Ele_Earth,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1528,'Grand_Cross','Grand Cross',5,20,NULL,1500,'140',NULL,1,0,0x00008110,63,2,2,4,'40',1,8,'bonus bAtkEle,Ele_Holy; bonus3 bAutoSpell,"PR_TURNUNDEAD",3,100; bonus2 bSPDrainValueRace,RC_Undead,1; bonus2 bSPGainRace,RC_Undead,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1529,'Iron_Driver','Iron Driver',5,20,NULL,3000,'155',NULL,2,0,0x00008100,63,2,2,3,'78',1,8,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1530,'Mjolnir','Mjolnir',5,20,NULL,6000,'350',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1531,'Spanner','Wrench',5,20,NULL,2500,'115',NULL,1,0,0x00008110,63,2,2,3,'55',1,8,'bonus2 bAddEff,Eff_Blind,100; bonus2 bAddEff,Eff_Stun,100; bonus2 bAddEff,Eff_Poison,100; bonus2 bAddEff,Eff_Freeze,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1532,'Stunner_','Stunner',5,60000,NULL,2000,'140',NULL,1,2,0x00008110,63,2,2,3,'27',1,8,'bonus2 bAddEff,Eff_Stun,1000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1533,'Warrior_Balmung','Warrior\'s Balmung',5,20,NULL,1000,'170',NULL,1,0,0xFFFFFFFF,63,2,2,4,'48',1,8,'bonus bAllStats,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1534,'Spanner_C','Wrench',5,2,NULL,0,'150',NULL,1,0,0x00008110,63,2,2,3,'0',0,8,'bonus2 bAddEff,Eff_Blind,100; bonus2 bAddEff,Eff_Stun,100; bonus2 bAddEff,Eff_Poison,100; bonus2 bAddEff,Eff_Freeze,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1535,'Hollgrehenn_Hammer','Hollgrehenn\'s Hammer',5,4444,NULL,44,'4',NULL,1,1,0x0004C5B2,63,2,2,4,'44',1,8,'bonus bBreakArmorRate,100; bonus bBreakWeaponRate,100; if(readparam(bStr)>=44) { bonus bBaseAtk,44; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1536,'Good_Morning_Star','Good Morning Star',5,20,NULL,0,'120',NULL,1,0,0x0004C5B2,63,2,2,1,'0',0,8,'bonus2 bAddClass,Class_All,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1537,'Quadrille_C','Refined Quadrille',5,1,NULL,0,'193',NULL,1,0,0x00008110,63,2,2,4,'0',0,8,'bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player_Human,30; bonus2 bAddRace,RC_Demon,40; bonus2 bAddRace,RC_Undead,40;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1538,'Spike_','Spike',5,20,NULL,700,'85',NULL,1,2,0x00008110,63,2,2,4,'40',1,8,'bonus bCritical,40; bonus bDefRate,-67; bonus bDef2Rate,-67;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1539,'Golden_Mace_','Golden Mace',5,20,NULL,800,'110',NULL,1,2,0x00008110,63,2,2,4,'40',1,8,'bonus2 bAddRace,RC_Undead,10; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1540,'Grand_Cross_','Grand Cross',5,20,NULL,1500,'140',NULL,1,1,0x00008110,63,2,2,4,'40',1,8,'bonus bAtkEle,Ele_Holy; bonus3 bAutoSpell,"PR_TURNUNDEAD",3,100; bonus2 bSPDrainValueRace,RC_Undead,1; bonus2 bSPGainRace,RC_Undead,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1541,'Nemesis','Nemesis',5,20,NULL,900,'120',NULL,1,0,0x00008110,63,2,2,4,'60',1,8,'bonus bAtkEle,Ele_Holy; bonus2 bAddEle,Ele_Dark,10; bonus2 bAddRace,RC_Demon,10; bonus3 bAutoSpell,"AL_CRUCIS",1+getrefine(),100; autobonus "{ bonus bBaseAtk,50; }",10,20000,BF_WEAPON,"{ specialeffect2 EF_BLOODDRAIN; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1542,'BF_Morning_Star1','Valorous Battlefield Morning Star',5,20,NULL,0,'105',NULL,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_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1543,'BF_Morning_Star2','Brave Battlefield Morning Star',5,20,NULL,0,'105',NULL,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_Human,75; bonus bUnbreakableWeapon; autobonus "{ bonus2 bAddEff,Eff_Stun,5000; }",10,6000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1544,'Lunakaligo','Lunakaligo',5,20,NULL,700,'110',NULL,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; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1545,'N_Mace','Novice Mace',5,0,NULL,0,'57',NULL,1,3,0x0004C5B3,63,2,2,1,'2',0,8,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1546,'Krieger_Onehand_Mace1','Glorious Morning Star',5,20,NULL,0,'130',NULL,1,0,0x0004C5B3,63,2,2,4,'80',1,8,'bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus bAspdRate,5; } if(.@r>8) { bonus2 bAddEff,Eff_Stun,2000; bonus bAspdRate,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1547,'Mace_Of_Madness','Mace Of Madness',5,20,NULL,0,'150',NULL,1,0,0x0004C5B2,63,2,2,3,'0',0,8,'bonus2 bSkillAtk,"MC_CARTREVOLUTION",25; bonus bStr,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1548,'Veteran_Hammer','Veteran Hammer',5,10000,NULL,1800,'160',NULL,1,2,0x00008110,63,2,2,3,'80',1,8,'bonus bHealPower,getskilllv("AL_DP"); bonus bCriticalRate,getskilllv("PR_MACEMASTERY")*2; bonus bInt,1; bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1549,'Pilebuncker','Pile Bunker',5,10000,NULL,3500,'450',NULL,1,0,0x00000400,56,2,2,3,'99',1,8,NULL,NULL,NULL); -#=================================================================== -# Books -#=================================================================== -REPLACE INTO `item_db_re` VALUES (1550,'Book','Book',5,30000,NULL,600,'85',NULL,1,3,0x00410100,63,2,2,2,'14',1,15,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1551,'Bible','Bible',5,60000,NULL,1000,'115',NULL,1,2,0x00410100,63,2,2,3,'27',1,15,'bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1552,'Tablet','Tablet',5,51000,NULL,800,'125',NULL,1,1,0x00410100,63,2,2,3,'27',1,15,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1553,'Book_Of_Billows','Book of Billows',5,35000,NULL,750,'90',NULL,1,0,0x00410100,63,2,2,3,'27',1,15,'bonus bAtkEle,Ele_Water;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1554,'Book_Of_Mother_Earth','Book of Mother Earth',5,35000,NULL,750,'90',NULL,1,0,0x00410100,63,2,2,3,'27',1,15,'bonus bAtkEle,Ele_Earth;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1555,'Book_Of_Blazing_Sun','Book of the Blazing Sun',5,35000,NULL,750,'90',NULL,1,0,0x00410100,63,2,2,3,'27',1,15,'bonus bAtkEle,Ele_Fire;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1556,'Book_Of_Gust_Of_Wind','Book of Gust of Wind',5,35000,NULL,750,'90',NULL,1,0,0x00410100,63,2,2,3,'27',1,15,'bonus bAtkEle,Ele_Wind;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1557,'Book_Of_The_Apocalypse','Book of the Apocalypse',5,60000,NULL,800,'120',NULL,1,0,0x00410100,63,2,2,4,'40',1,15,'bonus bAtkEle,Ele_Dark; bonus2 bSubDefEle,Ele_Holy,-5; bonus2 bAddEle,Ele_Water,7; bonus2 bAddEle,Ele_Earth,7; bonus2 bAddEle,Ele_Fire,7; bonus2 bAddEle,Ele_Wind,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1558,'Girl\'s_Diary','Girl\'s Diary',5,1500,NULL,300,'60',NULL,1,1,0x00410100,63,2,2,4,'40',1,15,'bonus2 bAddDamageClass,1188,150;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1559,'Legacy_Of_Dragon','Legacy of Dragon',5,20,NULL,700,'130',NULL,1,0,0x00410100,63,2,2,4,'70',1,15,'bonus bInt,3; bonus bIgnoreDefRace,RC_Dragon; bonus2 bSPGainRace,RC_Dragon,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1560,'Diary_Of_Great_Sage','Sage\'s Diary',5,20,NULL,1100,'100:120',NULL,1,2,0x00410100,63,2,2,3,'60',1,15,'if(readparam(bStr)>=50) bonus bAspdRate,5; if(readparam(bInt)>=70) bonus bMatkRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1561,'Hardback','Hardcover Book',5,20,NULL,1500,'140',NULL,1,1,0x00410100,63,2,2,4,'55',1,15,'bonus bStr,3; bonus bDex,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1562,'Bible_Of_Battlefield','Battlefield Textbook',5,20,NULL,700,'110',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1563,'Diary_Of_Great_Sage_C','Sage\'s Diary',5,1,NULL,0,'135:140',NULL,1,0,0x00410100,63,2,2,3,'1',0,15,'bonus bAspdRate,5; /*Gold PC Room: bonus bBaseAtk,10; bonus bMatk,10;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1564,'Encyclopedia','Encyclopedia',5,20,NULL,2000,'110:100',NULL,1,2,0x00410100,63,2,2,3,'70',1,15,'bonus bInt,3; bonus bDex,2; bonus bCritical,20+((readparam(bLuk)*2)/10);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1565,'Death_Note','Ledger of Death',5,20,NULL,1000,'137:100',NULL,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_Human,10; bonus bAspdRate,getrefine(); if(BaseJob==Job_Sage) bonus3 bAutoSpell,"NPC_HELLJUDGEMENT",5,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1566,'Diary_Of_Great_Basil','Diary Of Great Basil',5,20,NULL,0,'120:125',NULL,1,0,0x00410100,63,2,2,1,'0',0,15,'bonus2 bAddClass,Class_All,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1567,'Hardback_C','Refined Hardcover Book',5,1,NULL,0,'168:100',NULL,1,0,0x00410100,63,2,2,4,'1',0,15,'bonus bStr,5; bonus bDex,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1568,'Book_Of_Billows_','Book of Billows',5,35000,NULL,750,'90',NULL,1,3,0x00410100,63,2,2,3,'27',1,15,'bonus bAtkEle,Ele_Water;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1569,'Book_Of_Mother_Earth_','Book of Mother Earth',5,35000,NULL,750,'90',NULL,1,3,0x00410100,63,2,2,3,'27',1,15,'bonus bAtkEle,Ele_Earth;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1570,'Book_Of_Blazing_Sun_','Book of Blazing Sun',5,35000,NULL,750,'90',NULL,1,3,0x00410100,63,2,2,3,'27',1,15,'bonus bAtkEle,Ele_Fire;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1571,'Book_Of_Gust_Of_Wind_','Book of Gust of Wind',5,35000,NULL,750,'90',NULL,1,3,0x00410100,63,2,2,3,'27',1,15,'bonus bAtkEle,Ele_Wind;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1572,'Principles_Of_Magic','Principles of Magic',5,20,NULL,300,'60:160',NULL,1,2,0x00410100,63,2,2,3,'60',1,15,'bonus bInt,3; bonus bSPrecovRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1573,'Ancient_Magic','Ancient Magic',5,20,NULL,700,'30:140',NULL,1,2,0x00410100,63,2,2,3,'70',1,15,'bonus bMdef,8; bonus bMaxSPrate,10; bonus bInt,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1574,'BF_Book1','Brave Battle Strategy Book',5,20,NULL,0,'90:125',NULL,1,0,0x00410100,63,2,2,3,'80',1,15,'bonus bStr,2; bonus bInt,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1575,'BF_Book2','Valorous Battle Strategy Book',5,20,NULL,0,'90:125',NULL,1,0,0x00410100,63,2,2,3,'80',1,15,'bonus bStr,1; bonus bInt,2; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1576,'Krieger_Book1','Glorious Tablet',5,20,NULL,0,'90:115',NULL,1,0,0x00410100,63,2,2,4,'80',1,15,'bonus2 bAddRace,RC_DemiHuman,80; bonus2 bAddRace,RC_Player_Human,80; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) autobonus "{ bonus bBaseAtk,200; }",30,3000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1577,'Krieger_Book2','Glorious Apocalypse',5,20,NULL,0,'90:115',NULL,1,0,0x00410100,63,2,2,4,'80',1,15,'bonus2 bAddRace,RC_DemiHuman,80; bonus2 bAddRace,RC_Player_Human,80; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5){ bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,5; } if(.@r>8) { bonus bMatkRate,5; bonus bVariableCastrate,-5; bonus bDelayRate,-5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1578,'Book_Of_Prayer','Book Of Prayer',5,20,NULL,0,'140',NULL,1,0,0x00410100,63,2,2,3,'0',0,15,'bonus bVit,2; bonus bMdef,10; bonus bMaxSPrate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1579,'Death_Note_M','Book of the Dead',5,20,NULL,1000,'137',NULL,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_Human,10; bonus bAspdRate,getrefine(); if(BaseJob==Job_Sage) bonus3 bAutoSpell,"NPC_HELLJUDGEMENT",5,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1580,'Encyclopedia_C','Giant Encyclopedia',5,0,NULL,0,'145:100',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1581,'F_Diary_Of_Great_Sage_C','Diary Of Great Sage',5,1,NULL,0,'135',NULL,1,2,0x00410100,63,2,2,3,'1',0,15,'bonus bMatkRate,20; bonus bAspdRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1582,'E_Diary_Of_Great_Sage_C','Diary Of Great Sage',5,1,NULL,0,'135',NULL,1,2,0x00410100,63,2,2,3,'1',0,15,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1583,'P_Dic1','Eden Book I',5,0,NULL,0,'135:110',NULL,1,0,0x00410100,63,2,2,3,'60',0,15,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1584,'Chilly_Spell_Book','Cold Magic Book',5,56000,NULL,1000,'100:160',NULL,1,2,0x00010000,63,2,2,4,'100',1,15,'bonus bAtkEle,Ele_Water; bonus bUnbreakableWeapon; 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);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1585,'Upg_Book','Upg Book',5,20,NULL,600,'45:20',NULL,1,1,0x00410100,63,2,2,3,'1',1,15,'.@r = getrefine(); bonus bBaseAtk,(.@r*10); bonus bMatk,(.@r*5); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*5);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1586,'Velum_Bible','Vellum Bible',5,20,NULL,600,'110:125',NULL,1,0,0x00410100,63,2,2,4,'95',1,15,'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; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1587,'Velum_Encyclopedia','Vellum Great Encyclopedia',5,20,NULL,1000,'130',NULL,1,0,0x00410100,63,2,2,4,'95',1,15,'.@r = getrefine(); bonus2 bAddRace,RC_Player_Human,80+.@r; bonus2 bIgnoreDefRaceRate,RC_Player_Human,30; if(.@r>8) { autobonus "{ bonus bBaseAtk,200; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1588,'Metal_Book','Metal Book',5,20,NULL,0,'45:10',NULL,1,1,0x00410100,63,2,2,3,'1',1,15,'.@r = getrefine(); bonus bBaseAtk,(.@r*5); bonus bMatk,(.@r*2); .@i = min(BaseLevel/10,12); if (BaseLevel>20) { bonus bBaseAtk,((min(BaseLevel,120)-20)/10)*5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1589,'Legacy_Of_Dragon_','Legacy of Dragon',5,20,NULL,700,'130',NULL,1,2,0x00410100,63,2,2,4,'70',1,15,'bonus bInt,3; bonus bIgnoreDefRace,RC_Dragon; bonus2 bSPGainRace,RC_Dragon,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1590,'Snake_Encyclopedia','Daizenshu Dakatsu',5,60000,NULL,1500,'10:110',NULL,1,2,0x00010100,56,2,2,4,'105',1,15,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bBaseAtk,.@r*3; bonus bMatk,.@r*3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1591,'TE_Woe_Book','TE Woe Book',5,0,NULL,0,'120',NULL,1,0,0x00410100,63,2,2,3,'40',1,15,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bMagicAddRace,RC_Player_Human,5; bonus2 bAddRace,RC_Player_Doram,40; bonus2 bMagicAddRace,RC_Player_Doram,5; bonus3 bAddEff,Eff_Blind,1000,ATF_MAGIC; bonus bHealPower,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1592,'Thor_Pedigree_Book','Raijin\'s Lineage',5,10,NULL,400,'90:130',NULL,1,2,0x00410100,63,2,2,4,'27',1,15,'.@r = getrefine(); bonus bInt,3; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",5+.@r; bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Wind;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1593,'Book_of_Destiny','Book of Destiny',5,10,NULL,400,'90:90',NULL,1,1,0x00410100,63,2,2,4,'24',1,15,'.@r = getrefine(); bonus bLuk,5; bonus bFlee2,15; if(.@r >= 7) bonus bFlee2,5; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1594,'Fire_Pedigree_Book','Fire Pedigree Book',5,10,NULL,400,'90:130',NULL,1,2,0x00410100,63,2,2,4,'27',1,15,'.@r = getrefine(); bonus bInt,3; bonus2 bSkillAtk,"MG_FIREBOLT",5+.@r; bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Fire;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1595,'Water_Pedigree_Book','Water Pedigree Book',5,10,NULL,400,'90:130',NULL,1,2,0x00410100,63,2,2,4,'27',1,15,'.@r = getrefine(); bonus bInt,3; bonus2 bSkillAtk,"MG_COLDBOLT",5+.@r; bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Water;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1596,'Earth_Pedigree_Book','Earth Pedigree Book',5,10,NULL,400,'90:130',NULL,1,2,0x00410100,63,2,2,4,'27',1,15,'.@r = getrefine(); bonus bInt,3; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",5+.@r; bonus2 bSkillAtk,"WZ_EARTHSPIKE",5+.@r; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1597,'Half_BF_Book2','Half BF Book2',5,20,NULL,0,'90:125',NULL,1,0,0x00210100,63,2,2,3,'80',1,15,'bonus bStr,1; bonus bInt,1; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,10;',NULL,NULL); -# GM Weapon -REPLACE INTO `item_db_re` VALUES (1598,'Snake_Encyclopedia_','Daizenshu Dakatsu',5,60000,NULL,1500,'10:110',NULL,1,3,0x00010100,56,2,2,4,'105',1,15,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bBaseAtk,.@r*3; bonus bMatk,.@r*3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1599,'Angra_Manyu','Angra Manyu',5,1,NULL,10,'10000:10000',NULL,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; bonus bAspdRate,100;',NULL,NULL); -#=================================================================== -# 1-Handed Staffs -#=================================================================== -REPLACE INTO `item_db_re` VALUES (1600,'Rod_of_Vicious_Mind','Rod of Vicious Mind',5,20,NULL,600,'60:120',NULL,1,1,0x00818315,63,2,2,4,'160',1,10,'bonus bMatk,pow(min(getrefine(),15),2); bonus bInt,5; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1601,'Rod','Rod',5,50,NULL,400,'15:30',NULL,1,3,0x00818315,63,2,2,1,'1',1,10,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1602,'Rod_','Rod',5,50,NULL,400,'15:30',NULL,1,4,0x00818315,63,2,2,1,'1',1,10,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1603,'Rod__','Rod',5,50,NULL,400,'15:30',NULL,1,0,0x00818315,63,2,2,1,'1',1,10,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1604,'Wand','Wand',5,2500,NULL,400,'25:45',NULL,1,2,0x00818315,63,2,2,2,'12',1,10,'bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1605,'Wand_','Wand',5,2500,NULL,400,'25:45',NULL,1,3,0x00818315,63,2,2,2,'12',1,10,'bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1606,'Wand__','Wand',5,2500,NULL,400,'25:45',NULL,1,0,0x00818315,63,2,2,2,'12',1,10,'bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1607,'Staff','Staff',5,9500,NULL,400,'40:70',NULL,1,2,0x00818314,63,2,2,2,'12',1,10,'bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1608,'Staff_','Staff',5,9500,NULL,400,'40:70',NULL,1,3,0x00818314,63,2,2,2,'12',1,10,'bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1609,'Staff__','Staff',5,9500,NULL,400,'40:70',NULL,1,0,0x00818314,63,2,2,2,'12',1,10,'bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1610,'Arc_Wand','Arc Wand',5,45000,NULL,400,'60:95',NULL,1,1,0x00818314,63,2,2,3,'24',1,10,'bonus bInt,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1611,'Arc_Wand_','Arc Wand',5,45000,NULL,400,'60:95',NULL,1,2,0x00818314,63,2,2,3,'24',1,10,'bonus bInt,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1612,'Arc_Wand__','Arc Wand',5,45000,NULL,400,'60:95',NULL,1,0,0x00818314,63,2,2,3,'24',1,10,'bonus bInt,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1613,'Mighty_Staff','Mighty Staff',5,20,NULL,700,'130:100',NULL,1,0,0x00818314,63,2,2,3,'24',1,10,'bonus bStr,10; bonus bSPDrainValue,-2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1614,'Blessed_Wand','Wand of Occult',5,20,NULL,700,'75:105',NULL,1,0,0x00818314,63,2,2,3,'24',1,10,'bonus bInt,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1615,'Bone_Wand','Evil Bone Wand',5,20,NULL,700,'40:110',NULL,1,0,0x00818314,63,2,2,3,'24',1,10,'bonus bInt,4; bonus bAtkEle,Ele_Undead;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1616,'Staff_Of_Wing','Wing Staff',5,20,NULL,500,'60:115',NULL,1,0,0x00810204,63,2,2,4,'40',1,10,'bonus bVariableCastrate,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1617,'Survival_Rod','Survivor\'s Rod',5,85000,NULL,1000,'50:120',NULL,1,0,0x00818314,63,2,2,3,'24',1,10,'bonus bDex,2; bonus bMaxHP,300;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1618,'Survival_Rod_','Survivor\'s Rod',5,85000,NULL,1000,'50:120',NULL,1,1,0x00818314,63,2,2,3,'24',1,10,'bonus bDex,3; bonus bMaxHP,400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1619,'Survival_Rod2','Survivor\'s Rod',5,85000,NULL,1000,'50:120',NULL,1,0,0x00818314,63,2,2,3,'24',1,10,'bonus bInt,2; bonus bMaxHP,300;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1620,'Survival_Rod2_','Survivor\'s Rod',5,85000,NULL,1000,'50:120',NULL,1,1,0x00818314,63,2,2,3,'24',1,10,'bonus bInt,3; bonus bMaxHP,400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1621,'Hypnotist\'s_Staff','Hypnotist\'s Staff',5,43000,NULL,500,'70:120',NULL,1,1,0x00000001,63,2,2,3,'30',1,10,'bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1622,'Hypnotist\'s_Staff_','Hypnotist\'s Staff',5,20,NULL,500,'70:120',NULL,1,2,0x00000001,63,2,2,3,'30',1,10,'bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1623,'Mighty_Staff_C','Mighty Staff',5,1,NULL,0,'165:120',NULL,1,0,0x00818314,63,2,2,3,'1',0,10,'bonus bStr,10; bonus bInt,4; bonus bSPDrainValue,-1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1624,'Lich_Bone_Wand','Lich\'s Bone Wand',5,20,NULL,800,'60:170',NULL,1,2,0x00018314,18,2,2,3,'70',1,10,'bonus bInt,1; bonus bDex,1; bonus bAtkEle,Ele_Undead; .@r = getrefine(); bonus3 bAutoSpellWhenHit,"NPC_WIDECURSE",5,10+.@r; if(.@r>=9){ bonus bMatkRate,3; bonus bMaxSP,300; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1625,'Healing_Staff','Healing Staff',5,20,NULL,400,'10:105',NULL,1,0,0x00008110,63,2,2,3,'55',1,10,'bonus bAtkEle,Ele_Holy; bonus bHealPower,(getrefine()*3/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1626,'Piercing_Staff','Piercing Staff',5,20,NULL,500,'80:145',NULL,1,0,0x00018314,18,2,2,3,'70',1,10,'.@r = getrefine(); bonus bInt,4; bonus2 bIgnoreMdefClassRate,Class_Normal,10+.@r; bonus2 bIgnoreMdefClassRate,Class_Boss,10+.@r;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1627,'Staffy','Staffy',5,20,NULL,0,'40:120',NULL,1,0,0x00818314,63,2,2,1,'0',0,10,'bonus bInt,4; bonus bMatkRate,15; bonus2 bAddClass,Class_All,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1628,'Survival_Rod_C','Refined Survivor\'s Rod',5,1,NULL,0,'71:145',NULL,1,0,0x00818314,63,2,2,3,'0',0,10,'bonus bDex,4; bonus bMatkRate,20; bonus bMaxHP,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1629,'Walking_Stick','Gentleman\'s Staff',5,20,NULL,500,'40:125',NULL,1,1,0x00818314,63,2,2,4,'50',1,10,'bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1630,'Release_Of_Wish','Release of Wish',5,20,NULL,500,'30:125',NULL,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; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1631,'Holy_Stick','Holy Stick',5,20,NULL,500,'50:140',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1632,'BF_Staff1','Warlock\'s Magic Wand',5,20,NULL,0,'70:125',NULL,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_Human,25; bonus3 bAddEff,Eff_Stun,500,ATF_MAGIC; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1633,'BF_Staff2','Warlock\'s Battle Wand',5,20,NULL,0,'70:125',NULL,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_Human,15; bonus3 bAddEff,Eff_Stun,500,ATF_MAGIC; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1634,'BF_Staff3','Strong Recovery Wand',5,20,NULL,0,'70:125',NULL,1,0,0x00818314,63,2,2,3,'80',1,10,'bonus bMatkRate,15; bonus bHealPower,14; bonus2 bSPRegenRate,5,10000; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1635,'BF_Staff4','Speedy Recovery Wand',5,20,NULL,0,'70:125',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1636,'Thorn_Staff','Thorn Staff of Darkness',5,20,NULL,700,'60:160',NULL,1,0,0x00018314,18,2,2,4,'75',1,10,'bonus bAtkEle,Ele_Dark; bonus bInt,3; bonus bDex,3; .@r = getrefine(); bonus2 bIgnoreMdefClassRate,Class_Normal,.@r; bonus2 bIgnoreMdefClassRate,Class_Boss,.@r; bonus bDelayRate,-(.@r*3/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1637,'Eraser','Eraser',5,20,NULL,500,'80:170',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1638,'Healing_Staff_C','Staff Of Healing',5,20,NULL,0,'10:125',NULL,1,0,0x00008110,63,2,2,3,'1',1,10,'bonus bAtkEle,Ele_Holy; bonus bMatkRate,15; bonus bHealPower,(getrefine()*3/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1639,'N_Rod','Novice Rod',5,0,NULL,0,'15:32',NULL,1,3,0x00818315,63,2,2,1,'1',0,10,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1640,'Krieger_Onehand_Staff1','Glorious Arc Wand',5,20,NULL,0,'70:135',NULL,1,0,0x00818314,63,2,2,4,'80',1,10,'bonus2 bMagicAddRace,RC_DemiHuman,15; bonus2 bMagicAddRace,RC_Player_Human,15; .@r = getrefine(); bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25 + ((.@r > 5) ? 5 : 0); bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25 + ((.@r > 5) ? 5 : 0); bonus bUnbreakableWeapon; if(.@r > 8) { bonus bMatkRate,5; bonus bVariableCastrate,-5; bonus bDelayRate,-5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1641,'Krieger_Onehand_Staff2','Glorious Cure Wand',5,20,NULL,0,'70:135',NULL,1,0,0x00818314,63,2,2,4,'80',1,10,'bonus bHealPower,14; bonus bDelayRate,-10; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r > 5) { bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,5; bonus bHealPower,5+(min(14,.@r)-5)*2; } if(.@r > 8) bonus5 bAutoSpellOnSkill,"AL_HEAL","AL_HEAL",10,100,1; if(.@r > 9) { bonus bHealPower,10; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1642,'Staff_Of_Darkness','Staff Of Darkness',5,20,NULL,0,'100:120',NULL,1,0,0x00818314,63,2,2,2,'0',0,10,'bonus bVariableCastrate,-5; bonus bMatkRate,15; bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1643,'Dead_Tree_Cane','Dead Tree Cane',5,20,NULL,100,'100:155',NULL,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; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1644,'Piercing_Staff_M','Staff of Piercing',5,20,NULL,500,'80:145',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1645,'Lich_Bone_Wand_M','Lich\'s Bone Wand',5,20,NULL,800,'60:170',NULL,1,2,0x00018314,18,2,2,3,'70',1,10,'bonus bInt,1; bonus bDex,1; bonus bAtkEle,Ele_Undead; bonus bMatkRate,20; .@r = getrefine(); bonus3 bAutoSpellWhenHit,"NPC_WIDECURSE",5,10+.@r; if(.@r>=9){ bonus bMatkRate,3; bonus bMaxSP,300; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1646,'La\'cryma_Stick','La\'cryma Stick',5,20,NULL,500,'30:180',NULL,1,2,0x00010204,18,2,2,3,'50',1,10,'.@r = getrefine(); bonus bInt,4; bonus bMdef,.@r; bonus2 bSkillAtk,"WZ_STORMGUST",.@r; if (.@r > 9) bonus2 bVariableCastrate,"WZ_STORMGUST",-8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1647,'Croce_Staff','Croce Staff',5,20,NULL,500,'30:175',NULL,1,1,0x00008110,18,2,2,3,'50',1,10,'bonus bAtkEle,Ele_Holy; bonus bInt,4; bonus4 bAutoSpellOnSkill,"AL_HEAL","AL_BLESSING",max(getskilllv("AL_BLESSING"),1),20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1648,'Staff_Of_Bordeaux','Staff Of Bordeaux',5,20,NULL,500,'30:170',NULL,1,0,0x00010200,18,2,2,4,'50',1,10,'bonus bInt,2; bonus bDex,1; if(getskilllv("SA_DRAGONOLOGY") == 5) { bonus bUseSPrate,-15; bonus bInt,3; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1649,'Rafini_Staff','Laphine Staff',5,20,NULL,500,'30:180',NULL,1,0,0x00818315,63,2,2,3,'100',1,10,'bonus bFixedCastRate,-getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1650,'P_Staff1','Eden Staff I',5,0,NULL,0,'60:125',NULL,1,0,0x00818314,63,2,2,2,'26',0,10,'bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1651,'P_Staff2','Eden Staff II',5,0,NULL,0,'60:150',NULL,1,0,0x00818314,63,2,2,2,'40',0,10,'bonus bInt,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1652,'Tourist_Staff','Tourist Staff',5,0,NULL,500,'35:0',NULL,1,0,0x00818315,63,2,2,1,'1',0,10,'bonus bMatkRate,15; bonus bInt,2; bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1653,'Staff_Of_Healing_C','Staff of Healing',5,20,NULL,0,'10:100',NULL,1,0,0x00008110,63,2,2,3,'1',0,10,'bonus bAtkEle,Ele_Holy; bonus bHealPower,18;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1654,'Mental_Stick','Mental Stick',5,20,NULL,500,'40:170',NULL,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;',NULL,'itemheal 0,-100;'); -REPLACE INTO `item_db_re` VALUES (1655,'Adventure_Staff','Adventure Staff',5,0,NULL,0,'60',NULL,1,0,0x00810204,63,2,2,1,'1',0,10,'bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1656,'Academy_Wand','Academy Wand',5,0,NULL,600,'60',NULL,1,1,0x00810204,63,2,2,1,'1',1,10,'bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1657,'Wand_Of_Affection','Wand Of Affection',5,20,NULL,500,'30:160',NULL,1,2,0x00000100,63,2,2,3,'100',1,10,'bonus bInt,2; bonus bAtkEle,Ele_Holy; bonus bHealPower,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1658,'P_Staff3','Eden Staff III',5,0,NULL,0,'60:170',NULL,1,0,0x00818314,63,2,2,3,'60',0,10,'bonus bInt,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1659,'Recovery_Light','Light of Recovery',5,56000,NULL,400,'30:160',NULL,1,1,0x00000100,63,2,2,4,'110',1,10,'bonus bAtkEle,Ele_Holy; bonus bUnbreakableWeapon; .@r = getrefine(); bonus bHealPower,(.@r*6); bonus2 bSkillUseSP,"AL_HEAL",-(.@r*10); bonus2 bSkillUseSP,"AB_CHEAL",-(.@r*12); bonus2 bSkillUseSP,"AB_HIGHNESSHEAL",-(.@r*14);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1660,'Wand_Of_Affection2','Empowered Wand Of Affection',5,20,NULL,500,'30:180',NULL,1,1,0x00000100,63,2,2,3,'130',1,10,'bonus bAtkEle,Ele_Holy; bonus bInt,4; bonus bHealPower,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1661,'Mental_Destroyer','Mental Destroyer',5,20,NULL,1400,'100:50',NULL,1,0,0x00000200,63,2,2,4,'95',1,10,'.@r = getrefine(); bonus bInt,10; bonus bUnbreakableWeapon; bonus bUseSPrate,100; bonus bMdef,20; bonus3 bSPVanishRate,1000,5+(.@r>5?3:0),BF_WEAPON|BF_MAGIC|BF_MISC;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1662,'Bone_Wand_','Evil Bone Wand',5,20,NULL,700,'40:110',NULL,1,2,0x00818314,63,2,2,3,'24',1,10,'bonus bInt,4; bonus bAtkEle,Ele_Undead;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1663,'Staff_Of_Bordeaux_','Staff Of Bordeaux',5,20,NULL,500,'30:180',NULL,1,2,0x00010200,18,2,2,4,'50',1,10,'bonus bInt,2; bonus bDex,1; if(getskilllv("SA_DRAGONOLOGY") == 5) { bonus bUseSPrate,-15; bonus bInt,3; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1664,'Thorn_Staff_','Thorn Staff of Darkness',5,10,NULL,700,'60:160',NULL,NULL,1,0x14,50,2,2,4,'75',1,8,'bonus bInt,3; bonus bDex,3; .@r = getrefine(); bonus2 bIgnoreMdefClassRate,Class_Normal,.@r; bonus2 bIgnoreMdefClassRate,Class_Boss,.@r; bonus bDelayrate,-.@r*3/2; bonus bAtkEle,Ele_Dark;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1665,'Piercing_Staff_','Piercing Staff',5,20,NULL,500,'80:145',NULL,1,2,0x00018314,18,2,2,3,'70',1,10,'.@r = getrefine(); bonus bInt,4; bonus2 bIgnoreMdefClassRate,Class_Normal,10+.@r; bonus2 bIgnoreMdefClassRate,Class_Boss,10+.@r;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1666,'Healing_Staff_','Healing Staff',5,20,NULL,400,'10:105',NULL,1,2,0x00008110,63,2,2,3,'55',1,10,'bonus bAtkEle,Ele_Holy; bonus bHealPower,(getrefine()*3/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1667,'TE_Woe_Staff','TE Woe Staff',5,0,NULL,0,'50:100',NULL,1,0,0x00818315,63,2,2,3,'40',1,10,'bonus2 bMagicAddRace,RC_Player_Human,10; bonus3 bAddEff,Eff_Blind,1000,ATF_MAGIC; bonus bHPRecovRate,5; bonus bSPRecovRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1668,'Sword_Stick','Sword Stick',5,10,NULL,500,'120:150',NULL,NULL,2,0x810204,63,2,2,4,'80',1,10,'bonus bAspdRate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1669,'Thanos_Staff','Thanos Staff',5,10,NULL,1000,'100:200',NULL,1,1,0x00018314,56,2,2,4,'120',1,10,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus bHealPower,15; bonus bMagicHPGainValue,500; bonus bMagicSPGainValue,50; bonus2 bHPLossRate,100,10000;',NULL,'heal -1000,0;'); -REPLACE INTO `item_db_re` VALUES (1670,'RWC_Memory_Staff','RWC Memory Staff',5,20,NULL,500,'25:30',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1671,'Devil_Won_Staff','Evil Slayer Vanquisher Staff',5,0,NULL,800,'30:155',NULL,NULL,1,0x00818315,63,2,2,3,'100',1,10,'bonus2 bAddRace,RC_Undead,10; bonus2 bAddRace,RC_Demon,10; bonus2 bMagicAddRace,RC_Undead,10; bonus2 bMagicAddRace,RC_Demon,10; .@r = getrefine(); if(.@r>=9) { .@dmg = 5; if(.@r>=12) { .@dmg += 7; } bonus bMatkRate,.@dmg; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1673,'Half_BF_Staff4','Half BF Staff4',5,20,NULL,0,'70:125',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1674,'Half_BF_Staff2','Half BF Staff2',5,20,NULL,0,'70:125',NULL,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_Human,10; bonus3 bAddEff,Eff_Stun,200,ATF_SKILL; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1675,'Walking_Stick_','Gentleman\'s Staff',5,20,NULL,500,'40:125',NULL,1,3,0x00818314,63,2,2,4,'50',1,10,'bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1676,'Baculum_Daemonicum','Baculum Daemonicum',5,20,NULL,1200,'60:150',NULL,1,2,0x00818315,63,2,2,4,'80',1,10,'bonus bAtkEle,Ele_Dark; bonus bUnbreakableWeapon; bonus bVariableCastrate,-10; if (BaseLevel > 99){ bonus bMatk,30; } if(getrefine() > 8){ bonus2 bResEff,Eff_Blind,3000; bonus bUseSPrate,-10; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1677,'Ru_Blue_Wand','Blue Wand',5,10,NULL,0,'50:200',NULL,1,1,0x00000200,56,2,2,3,'100',1,10,'bonus bDex,5; bonus bInt,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1678,'Ru_Gold_Wand','Ru Gold Wand',5,0,NULL,0,'50',NULL,1,2,0x00000200,56,2,2,3,'120',1,10,'bonus bDex,8; bonus bInt,8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1679,'Rafini_Staff_S','Laphine Staff',5,20,NULL,500,'30:180',NULL,1,2,0x00818315,63,2,2,3,'100',1,10,'bonus bFixedCastRate,-getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1680,'Crimson_One-Handed_Staff','Crimson One-Handed Staff',5,10,NULL,600,'60:70',NULL,1,2,0x00818315,63,2,2,3,'70',1,10,'.@r = getrefine(); bonus bInt,4; bonus bMatk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1681,'Short_Foxtail_Staff','Short Foxtail Staff',5,20,NULL,0,'30',NULL,1,0,0x80000000,7,2,2,1,'1',1,10,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1682,'Shadow_Staff','Shadow Staff',5,0,NULL,600,'70:130',NULL,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; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1683,'Enriched_Foxtail_Staff','Enriched Foxtail Staff',5,20,NULL,200,'50:70',NULL,1,1,0x80000000,7,2,2,2,'12',1,10,'bonus bMaxSP,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1684,'Long_Foxtail_Staff','Long Foxtail Staff',5,20,NULL,200,'50',NULL,2,1,0x80000000,7,2,2,2,'12',1,10,'bonus bLongAtkRate,5; bonus bMaxHP,200;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1685,'Dragonfly_Sitting_Foxtail_Staff','Dragonfly Sitting Foxtail Staff',5,20,NULL,300,'70:100',NULL,1,1,0x80000000,7,2,2,2,'20',1,10,'bonus bInt,1; bonus bMaxHP,100; bonus bMaxSP,150;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1686,'Large_Foxtail_Staff','Large Foxtail Staff',5,20,NULL,300,'70',NULL,1,1,0x80000000,7,2,2,2,'20',1,10,'bonus bLongAtkRate,8; bonus bDex,1; bonus bMaxHP,200; bonus bMaxSP,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1687,'Beginner_Foxtail_Staff','Beginner Foxtail Staff',5,20,NULL,100,'40:15',NULL,1,1,0x80000000,7,2,2,1,'3',1,10,'bonus bMaxHP,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1690,'Mysterious_Foxtail_Staff','Mysterious Foxtail Staff',5,20,NULL,400,'80:180',NULL,1,3,0x80000000,7,2,2,2,'60',1,10,'.@r = getrefine(); bonus bMaxSP,10*(.@r/3)+50; bonus bMatk,10*(.@r/3);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1691,'Strange_God_Foxtail_Staff','Strange God Foxtail Staff',5,20,NULL,500,'100:240',NULL,1,2,0x80000000,7,2,2,3,'100',1,10,'bonus bMaxSP,100; .@r = getrefine(); bonus bMatkRate,2*(.@r/3); bonus bMaxSPrate,.@r/3; if(.@r>=7){ .@r = min(.@r,10)-7; bonus bWeaponAtkRate,(20*.@r)+40; bonus bWeaponMatkRate,(20*.@r)+40; } bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1692,'Magical_Foxtail_Staff','Magical Foxtail Staff',5,20,NULL,600,'120:260',NULL,1,2,0x80000000,7,2,2,3,'140',1,10,'bonus bMaxSP,100; .@r = getrefine(); bonus bMatkRate,2*(.@r/3); bonus bMaxSPrate,.@r/3; if(.@r>=7){ .@r = min(.@r,10)-7; bonus bWeaponAtkRate,(20*.@r)+40; bonus bWeaponMatkRate,(20*.@r)+40; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1693,'Magical_Yellow_Foxtail_Staff','Magical Yellow Foxtail Staff',5,20,NULL,700,'140:280',NULL,1,1,0x80000000,7,2,2,4,'175',1,10,'.@r = getrefine(); bonus bMatkRate,3*(.@r/2); bonus4 bAutoSpellOnSkill,"SU_FRESHSHRIMP","SU_ARCLOUSEDASH",max(1,getskilllv("SU_ARCLOUSEDASH")),200; bonus4 bAutoSpellOnSkill,"SU_SV_STEMSPEAR","SU_FRESHSHRIMP",max(1,getskilllv("SU_FRESHSHRIMP")),200; if(.@r>=7){ .@r = min(.@r,10)-7; bonus bWeaponAtkRate,(20*.@r)+40; bonus bWeaponMatkRate,(20*.@r)+40; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1694,'Foxtail_Model','Foxtail Model',5,20,NULL,300,'150',NULL,1,3,0x80000000,7,2,2,2,'60',1,10,'bonus bLongAtkRate,8; bonus bMaxHP,100; .@r = getrefine(); bonus bDex,(.@r/3)*2; bonus bMaxSP,(.@r/3)*10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1695,'Delicate_Foxtail_Model','Delicate Foxtail Model',5,20,NULL,300,'195',NULL,1,2,0x80000000,7,2,2,3,'100',1,10,'bonus bLongAtkRate,8; bonus bMaxHP,200; .@r = getrefine(); bonus bDex,(.@r/3)*3; bonus bMaxSP,(.@r/3)*15; if(.@r>=7){ .@r = min(.@r,10)-7; bonus bWeaponAtkRate,(20*.@r)+40; bonus bWeaponMatkRate,(20*.@r)+40; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1696,'Exquisite_Foxtail_Model','Exquisite Foxtail Model',5,20,NULL,300,'240',NULL,1,2,0x80000000,7,2,2,3,'140',1,10,'bonus bLongAtkRate,8; bonus bMaxHPrate,5; .@r = getrefine(); bonus bDex,(.@r/2)*3; bonus bMaxSP,(.@r/2)*15; if(.@r>=7){ .@r = min(.@r,10)-7; bonus bWeaponAtkRate,(20*.@r)+40; bonus bWeaponMatkRate,(20*.@r)+40; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1697,'Exquisite_Yellow_Foxtail_Model','Exquisite Yellow Foxtail Model',5,20,NULL,300,'270',NULL,1,1,0x80000000,7,2,2,4,'175',1,10,'bonus bLongAtkRate,9; bonus bMaxHPrate,7; .@r = getrefine(); bonus bLongAtkRate,.@r/2; bonus bMaxSP,(.@r/2)*20; bonus4 bAutoSpellOnSkill,"SU_PICKYPECK","SU_FRESHSHRIMP",max(1,getskilllv("SU_FRESHSHRIMP")),200; if(.@r>=7){ .@r = min(.@r,10)-7; bonus bWeaponAtkRate,(20*.@r)+40; bonus bWeaponMatkRate,(20*.@r)+40; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1698,'Requiem_Arc_Wand','Requiem Arc Wand',5,20,NULL,500,'80:145',NULL,1,NULL,0x00000015,63,2,2,4,'100',1,10,'.@r = getrefine(); .@b = 40; if(.@r>=5){ .@b += (.@r-5)*15+20; } bonus2 bMagicAddRace2,RC2_BioLab,.@b;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1699,'Paradise_Foxtail_Staff_I','Eden Group Foxtail I',5,20,NULL,0,'120:135',NULL,1,0,0x80000000,7,2,2,2,'26',0,10,'bonus bDex,3; bonus bInt,3; bonus bLongAtkRate,5;',NULL,NULL); -#=================================================================== -# Bows -#=================================================================== -REPLACE INTO `item_db_re` VALUES (1701,'Bow','Bow',5,1000,NULL,500,'15',NULL,5,3,0x000A0848,63,2,34,1,'4',1,11,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1702,'Bow_','Bow',5,1000,NULL,500,'15',NULL,5,4,0x000A0848,63,2,34,1,'4',1,11,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1703,'Bow__','Bow',5,1000,NULL,0,'15',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1704,'Composite_Bow','Composite Bow',5,2500,NULL,600,'29',NULL,5,3,0x000A0848,63,2,34,1,'4',1,11,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1705,'Composite_Bow_','Composite Bow',5,2500,NULL,600,'29',NULL,5,4,0x000A0848,63,2,34,1,'4',1,11,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1706,'Composite_Bow__','Composite Bow',5,2500,NULL,600,'29',NULL,5,0,0x000A0848,63,2,34,1,'4',1,11,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1707,'Great_Bow','Great Bow',5,10000,NULL,1000,'50',NULL,5,2,0x000A0848,63,2,34,2,'18',1,11,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1708,'Great_Bow_','Great Bow',5,10000,NULL,1000,'50',NULL,5,3,0x000A0848,63,2,34,2,'18',1,11,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1709,'Great_Bow__','Great Bow',5,10000,NULL,1000,'50',NULL,5,0,0x000A0848,63,2,34,2,'18',1,11,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1710,'CrossBow','Crossbow',5,17000,NULL,900,'65',NULL,5,2,0x000A0848,63,2,34,2,'18',1,11,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1711,'CrossBow_','Crossbow',5,17000,NULL,900,'65',NULL,5,3,0x000A0848,63,2,34,2,'18',1,11,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1712,'CrossBow__','Crossbow',5,17000,NULL,900,'65',NULL,5,0,0x000A0848,63,2,34,2,'18',1,11,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1713,'Arbalest','Arbalest',5,48000,NULL,1000,'90',NULL,5,1,0x000A0848,63,2,34,3,'33',1,11,'bonus bDex,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1714,'Kakkung','Gakkung Bow',5,42000,NULL,1100,'100',NULL,5,1,0x000A0848,63,2,34,3,'33',1,11,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1715,'Arbalest_','Arbalest',5,48000,NULL,1000,'90',NULL,5,2,0x000A0848,63,2,34,3,'33',1,11,'bonus bDex,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1716,'Kakkung_','Gakkung Bow',5,42000,NULL,1100,'100',NULL,5,2,0x000A0848,63,2,34,3,'33',1,11,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1718,'Hunter_Bow','Hunter Bow',5,64000,NULL,1500,'125',NULL,5,0,0x00000800,63,2,34,3,'33',1,11,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1719,'Bow_Of_Roguemaster','Roguemaster\'s Bow',5,20,NULL,500,'75',NULL,11,0,0x00000040,63,2,34,4,'48',1,11,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1720,'Bow_Of_Rudra','Rudra Bow',5,20,NULL,1200,'150',NULL,5,0,0x000A0808,63,2,34,4,'48',1,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1721,'Repeting_CrossBow','Repeating Crossbow',5,89000,NULL,2000,'95',NULL,9,1,0x00020840,63,2,34,3,'65',1,11,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1722,'Balistar','Ballista',5,124000,NULL,3500,'145',NULL,5,0,0x00080800,63,2,34,4,'77',1,11,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1723,'Luna_Bow','Luna Bow',5,20,NULL,2000,'100',NULL,5,2,0x00000800,63,2,34,3,'30',1,11,'.@r = getrefine(); bonus bDef,2+3*(.@r>5)+5*(.@r>8);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1724,'Dragon_Wing','Dragon Wing',5,20,NULL,1200,'100',NULL,5,0,0x000A0848,63,2,34,4,'60',1,11,'bonus3 bAddMonsterDropItem,1765,RC_Dragon,300; bonus bIgnoreDefRace,RC_Dragon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1725,'Bow_Of_Minstrel','Minstrel Bow',5,20,NULL,1700,'120',NULL,5,1,0x00080800,63,2,34,4,'70',1,11,'bonus bInt,2; bonus bSPrecovRate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1726,'Hunter_Bow_','Hunter Bow',5,64000,NULL,1500,'125',NULL,5,1,0x00000800,63,2,34,3,'33',1,11,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1727,'Balistar_','Ballista',5,124000,NULL,3500,'145',NULL,5,1,0x00080800,63,2,34,4,'77',1,11,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1728,'Balistar_C','Ballista',5,1,NULL,0,'194',NULL,5,0,0x00080800,63,2,34,4,'1',0,11,'bonus bLongAtkRate,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1729,'Bow_Of_Rudra_C','Rudra Bow',5,2,NULL,0,'185',NULL,5,0,0x000A0808,63,2,34,4,'1',0,11,'bonus bAtkEle,Ele_Holy; bonus bInt,5; 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; skill "AL_CURE",1; skill "AL_HEAL",1; bonus2 bAddRace,RC_Undead,20; bonus2 bAddRace,RC_Demon,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1730,'Burning_Bow','Burning Bow',5,20,NULL,1400,'95',NULL,5,1,0x000A0808,63,2,34,3,'55',1,11,'bonus2 bSubEle,Ele_Fire,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1731,'Frozen_Bow','Frozen Bow',5,20,NULL,1400,'100',NULL,5,1,0x000A0808,63,2,34,3,'55',1,11,'bonus2 bAddEff,Eff_Freeze,1000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1732,'Earth_Bow','Earth Bow',5,20,NULL,1400,'105',NULL,5,1,0x000A0808,63,2,34,3,'55',1,11,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1733,'Gust_Bow','Gust Bow',5,20,NULL,1400,'95',NULL,5,1,0x000A0808,63,2,34,3,'55',1,11,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1734,'Orc_Archer_Bow','Orc Archer Bow',5,20,NULL,1600,'120',NULL,5,0,0x000A0808,63,2,34,3,'65',1,11,'bonus2 bAddMonsterDropItem,1753,200;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1735,'Kkakkung','Kkakkung',5,20,NULL,0,'120',NULL,5,0,0x000A0848,63,2,34,1,'1',0,11,'bonus2 bAddClass,Class_All,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1736,'Double_Bound','Double Bound',5,20,NULL,900,'70',NULL,5,3,0x00000800,18,2,34,3,'70',1,11,'bonus3 bAutoSpell,"AC_DOUBLE",GetSkillLv("AC_DOUBLE"),10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1737,'Ixion_Wing','Ixion Wings',5,20,NULL,300,'135',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1738,'BF_Bow1','Valorous Battle CrossBow',5,20,NULL,0,'100',NULL,5,0,0x000A0848,63,2,34,3,'80',1,11,'bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1739,'BF_Bow2','Brave Battle CrossBow',5,20,NULL,0,'100',NULL,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_Human,55; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1740,'Nepenthes_Bow','Nepenthes Bow',5,20,NULL,1000,'105',NULL,5,2,0x00000800,18,2,34,4,'60',1,11,'bonus4 bAutoSpellOnSkill,"AC_DOUBLE","AC_CHARGEARROW",1,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1741,'Cursed_Lyre','Cursed Lyre',5,20,NULL,1250,'125',NULL,5,1,0x00080800,18,2,34,4,'80',1,11,'bonus bLuk,-2; bonus2 bAddEff,Eff_Curse,400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1742,'N_Composite_Bow','Novice Composite Bow',5,1,NULL,0,'49',NULL,5,3,0x000A0848,63,2,34,1,'4',0,11,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1743,'Krieger_Bow1','Glorious Hunter Bow',5,0,NULL,0,'100',NULL,5,0,0x001A0848,63,2,34,4,'80',1,11,'bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; .@r = getrefine(); bonus bCritAtkRate,min(10,.@r)*2; bonus bUnbreakableWeapon; if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) bonus2 bSkillAtk,"AC_DOUBLE",20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1744,'Bow_Of_Evil','Bow Of Evil',5,20,NULL,0,'170',NULL,5,0,0x000A0848,63,2,34,4,'1',0,11,'bonus2 bSkillAtk,"AC_DOUBLE",25; bonus bDex,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1745,'Falken_Blitz','Falken Blitz',5,20,NULL,1000,'100',NULL,5,2,0x00000800,18,2,34,3,'50',1,11,'bonus2 bSkillAtk,"SN_SHARPSHOOTING",10; bonus2 bSkillAtk,"AC_DOUBLE",10; bonus2 bSkillAtk,"AC_CHARGEARROW",10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1746,'Elven_Bow','Elven Bow',5,20,NULL,1500,'160',NULL,5,1,0x00080800,63,2,34,3,'100',1,11,'bonus bDex,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1747,'P_Bow1','Eden Bow I',5,0,NULL,0,'82',NULL,5,0,0x000A0848,63,2,34,2,'26',0,11,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1748,'P_Bow2','Eden Bow II',5,0,NULL,0,'120',NULL,5,0,0x000A0848,63,2,34,2,'40',0,11,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1749,'Tourist_Bow','Tourist Bow',5,0,NULL,500,'40',NULL,5,0,0x000A0848,63,2,34,1,'1',0,11,'bonus bDex,2;',NULL,NULL); -#=================================================================== -# Arrows -#=================================================================== -REPLACE INTO `item_db_re` VALUES (1750,'Arrow','Arrow',10,1,NULL,1,'25',NULL,NULL,NULL,0x000A1848,63,2,32768,NULL,'1',NULL,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1751,'Silver_Arrow','Silver Arrow',10,3,NULL,2,'30',NULL,NULL,NULL,0x000A1848,63,2,32768,NULL,'1',NULL,1,'bonus bAtkEle,Ele_Holy;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1752,'Fire_Arrow','Fire Arrow',10,3,NULL,2,'30',NULL,NULL,NULL,0x000A1848,63,2,32768,NULL,'1',NULL,1,'bonus bAtkEle,Ele_Fire;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1753,'Steel_Arrow','Steel Arrow',10,4,NULL,2,'40',NULL,NULL,NULL,0x000A1848,63,2,32768,NULL,'1',NULL,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1754,'Crystal_Arrow','Crystal Arrow',10,3,NULL,2,'30',NULL,NULL,NULL,0x000A1848,63,2,32768,NULL,'1',NULL,1,'bonus bAtkEle,Ele_Water;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1755,'Arrow_Of_Wind','Arrow of Wind',10,3,NULL,2,'30',NULL,NULL,NULL,0x000A1848,63,2,32768,NULL,'1',NULL,1,'bonus bAtkEle,Ele_Wind;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1756,'Stone_Arrow','Stone Arrow',10,3,NULL,2,'30',NULL,NULL,NULL,0x000A1848,63,2,32768,NULL,'1',NULL,1,'bonus bAtkEle,Ele_Earth;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1757,'Immatrial_Arrow','Immaterial Arrow',10,3,NULL,1,'30',NULL,NULL,NULL,0x000A1848,63,2,32768,NULL,'1',NULL,1,'bonus bAtkEle,Ele_Ghost;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1758,'Stun_Arrow','Stun Arrow',10,10,NULL,3,'1',NULL,NULL,NULL,0x000A1848,63,2,32768,NULL,'1',NULL,1,'bonus2 bAddEff,Eff_Stun,1000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1759,'Freezing_Arrow','Frozen Arrow',10,10,NULL,3,'1',NULL,NULL,NULL,0x000A1848,63,2,32768,NULL,'1',NULL,1,'bonus bAtkEle,Ele_Water; bonus2 bAddEff,Eff_Freeze,1000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1760,'Flash_Arrow','Flash Arrow',10,10,NULL,3,'1',NULL,NULL,NULL,0x000A1848,63,2,32768,NULL,'1',NULL,1,'bonus2 bAddEff,Eff_Blind,1000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1761,'Curse_Arrow','Cursed Arrow',10,10,NULL,3,'1',NULL,NULL,NULL,0x000A1848,63,2,32768,NULL,'1',NULL,1,'bonus2 bAddEff,Eff_Curse,1000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1762,'Rusty_Arrow','Rusty Arrow',10,3,NULL,2,'30',NULL,NULL,NULL,0x000A1848,63,2,32768,NULL,'1',NULL,1,'bonus bAtkEle,Ele_Poison;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1763,'Poison_Arrow','Poison Arrow',10,10,NULL,3,'1',NULL,NULL,NULL,0x000A1848,63,2,32768,NULL,'1',NULL,1,'bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,2000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1764,'Incisive_Arrow','Sharp Arrow',10,20,NULL,3,'10',NULL,NULL,NULL,0x000A1848,63,2,32768,NULL,'1',NULL,1,'bonus bCriticalLong,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1765,'Oridecon_Arrow','Oridecon Arrow',10,30,NULL,3,'50',NULL,NULL,NULL,0x000A1848,63,2,32768,NULL,'1',NULL,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1766,'Arrow_Of_Counter_Evil','Arrow of Counter Evil',10,40,NULL,3,'50',NULL,NULL,NULL,0x000A1848,63,2,32768,NULL,'1',NULL,1,'bonus bAtkEle,Ele_Holy;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1767,'Arrow_Of_Shadow','Arrow of Shadow',10,3,NULL,2,'30',NULL,NULL,NULL,0x000A1848,63,2,32768,NULL,'1',NULL,1,'bonus bAtkEle,Ele_Dark;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1768,'Sleep_Arrow','Sleep Arrow',10,10,NULL,3,'1',NULL,NULL,NULL,0x000A1848,63,2,32768,NULL,'1',NULL,1,'bonus2 bAddEff,Eff_Sleep,2000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1769,'Silence_Arrow','Mute Arrow',10,10,NULL,3,'1',NULL,NULL,NULL,0x000A1848,63,2,32768,NULL,'1',NULL,1,'bonus2 bAddEff,Eff_Silence,1000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1770,'Iron_Arrow','Iron Arrow',10,2,NULL,1,'30',NULL,NULL,NULL,0x000A1848,63,2,32768,NULL,'1',NULL,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1771,'Venom_Knife','Venom Knife',10,50,NULL,5,'30',NULL,NULL,NULL,0x00001000,63,2,32768,NULL,'1',NULL,2,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1772,'Holy_Arrow','Holy Arrow',10,3,NULL,2,'50',NULL,NULL,NULL,0x000A1848,63,2,32768,NULL,'1',NULL,1,'bonus bAtkEle,Ele_Holy; bonus2 bAddRace,RC_Demon,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1773,'Arrow_Of_Elf','Elven Arrow',10,5,NULL,1,'45',NULL,NULL,NULL,0x000A1848,63,2,32768,NULL,'100',NULL,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1774,'Hunting_Arrow','Hunting Arrow',10,5,NULL,1,'35',NULL,NULL,NULL,0x000A1848,63,2,32768,NULL,'1',NULL,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1775,'Siege_Arrow_S','Siege Arrow S',10,10,NULL,1,'45',NULL,NULL,NULL,0x000A1848,63,2,32768,NULL,'130',NULL,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1776,'Siege_Arrow_A','Siege Arrow A',10,10,NULL,1,'30',NULL,NULL,NULL,0x000A1848,63,2,32768,NULL,'95',NULL,1,NULL,NULL,NULL); -#=================================================================== -# Knuckles -#=================================================================== -REPLACE INTO `item_db_re` VALUES (1800,'Fist_of_Vicious_Mind','Fist of Vicious Mind',5,20,NULL,1500,'150',NULL,1,1,0x00008100,63,2,2,4,'160',1,12,'bonus bAtk,pow(min(getrefine(),15),2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1801,'Waghnakh','Waghnak',5,8000,NULL,400,'30',NULL,1,3,0x00008100,63,2,2,1,'1',1,12,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1802,'Waghnakh_','Waghnak',5,8000,NULL,400,'30',NULL,1,4,0x00008100,63,2,2,1,'1',1,12,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1803,'Knuckle_Duster','Knuckle Dusters',5,25000,NULL,450,'50',NULL,1,2,0x00008100,63,2,2,2,'12',1,12,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1804,'Knuckle_Duster_','Knuckle Dusters',5,25000,NULL,450,'50',NULL,1,3,0x00008100,63,2,2,2,'12',1,12,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1805,'Hora','Studded Knuckles',5,32000,NULL,450,'65',NULL,1,2,0x00008100,63,2,2,2,'12',1,12,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1806,'Hora_','Studded Knuckles',5,32000,NULL,450,'65',NULL,1,3,0x00008100,63,2,2,2,'12',1,12,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1807,'Fist','Fist',5,53000,NULL,650,'115',NULL,1,0,0x00008100,63,2,2,3,'24',1,12,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1808,'Fist_','Fist',5,53000,NULL,650,'115',NULL,1,1,0x00008100,63,2,2,3,'24',1,12,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1809,'Claw','Claw',5,67000,NULL,500,'86',NULL,1,1,0x00008100,63,2,2,3,'24',1,12,'bonus bStr,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1810,'Claw_','Claw',5,67000,NULL,500,'86',NULL,1,2,0x00008100,63,2,2,3,'24',1,12,'bonus bStr,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1811,'Finger','Finger',5,58000,NULL,500,'97',NULL,1,1,0x00008100,63,2,2,3,'24',1,12,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1812,'Finger_','Finger',5,58000,NULL,500,'97',NULL,1,2,0x00008100,63,2,2,3,'24',1,12,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1813,'Kaiser_Knuckle','Kaiser Knuckle',5,20,NULL,450,'110',NULL,1,0,0x00008100,63,2,2,4,'36',1,12,'bonus bAtkEle,Ele_Wind; bonus2 bAddRace,RC_Undead,5; bonus2 bAddEle,Ele_Water,10; bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Fire,10; bonus2 bAddEle,Ele_Wind,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1814,'Berserk','Berserk',5,20,NULL,500,'120',NULL,1,0,0x00008100,63,2,2,4,'36',1,12,'bonus bAspdRate,12;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1815,'Claw_Of_Garm','Hatii Claw',5,20,NULL,550,'152',NULL,1,1,0x00008100,63,2,2,4,'70',1,12,'bonus bAtkEle,Ele_Dark; bonus bMaxHPrate,-2; bonus2 bAddEff,Eff_Bleeding,200;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1816,'Berserk_','Berserk',5,20,NULL,500,'120',NULL,1,1,0x00008100,63,2,2,4,'36',1,12,'bonus bAspdRate,12;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1817,'Kaiser_Knuckle_C','Kaiser Knuckle',5,1,NULL,0,'159',NULL,1,0,0x00008100,63,2,2,4,'1',0,12,'bonus bAtkEle,Ele_Wind; bonus2 bAddRace,RC_Undead,5; bonus2 bAddEle,Ele_Water,10; bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Fire,10; bonus2 bAddEle,Ele_Wind,10; bonus bAspdRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1818,'Magma_Fist','Magma Fist',5,20,NULL,650,'80',NULL,1,3,0x00008100,63,2,2,3,'75',1,12,'bonus3 bAutoSpell,"SA_FLAMELAUNCHER",5,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1819,'Icicle_Fist','Icicle Fist',5,20,NULL,650,'80',NULL,1,3,0x00008100,63,2,2,3,'75',1,12,'bonus3 bAutoSpell,"SA_FROSTWEAPON",5,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1820,'Electric_Fist','Electric Fist',5,20,NULL,650,'80',NULL,1,3,0x00008100,63,2,2,3,'75',1,12,'bonus3 bAutoSpell,"SA_LIGHTNINGLOADER",5,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1821,'Seismic_Fist','Seismic Fist',5,20,NULL,650,'80',NULL,1,3,0x00008100,63,2,2,3,'75',1,12,'bonus3 bAutoSpell,"SA_SEISMICWEAPON",5,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1822,'Combo_Battle_Glove','Combo Battle Glove',5,20,NULL,500,'30',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1823,'BF_Knuckle1','Valorous Battle Fist',5,20,NULL,0,'30',NULL,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_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus4 bAutoSpell,"CH_SOULCOLLECT",1,5,0; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1824,'BF_Knuckle2','Brave Battle Fist',5,20,NULL,0,'30',NULL,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_Human,95; bonus2 bVariableCastrate,"MO_EXTREMITYFIST",-25; autobonus "{ bonus2 bVariableCastrate,\\\"MO_EXTREMITYFIST\\\",-100; }",50,6000,BF_WEAPON,"{ specialeffect2 EF_SUFFRAGIUM; }"; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1825,'Horn_Of_Hilthrion','Horn of Hillslion',5,20,NULL,600,'95',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1826,'Krieger_Knuckle1','Glorious Claw',5,20,NULL,0,'30',NULL,1,0,0x00008100,63,2,2,4,'80',1,12,'bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) { bonus3 bAutoSpell,"MO_INVESTIGATE",5,(.@r*10-50); bonus3 bAutoSpell,"AL_DECAGI",1,(.@r*10-50); }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1827,'Krieger_Knuckle2','Glorious Fist',5,20,NULL,0,'30',NULL,1,0,0x00008100,63,2,2,4,'80',1,12,'bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) { bonus2 bVariableCastrate,"MO_EXTREMITYFIST",-100; bonus2 bFixedCastrate,"MO_EXTREMITYFIST",-100; bonus4 bautospellonskill,"MO_EXPLOSIONSPIRITS","CH_SOULCOLLECT",1,1000; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1828,'Monk_Knuckle','Monk Knuckle',5,20,NULL,0,'150',NULL,1,0,0x00008100,63,2,2,4,'0',0,12,'bonus bInt,2; bonus2 bSkillAtk,"MO_FINGEROFFENSIVE",25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1829,'Fist_C','Fist',5,0,NULL,0,'150',NULL,1,0,0x00008100,63,2,2,3,'1',0,12,'bonus2 bAddSize,Size_All,40;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1830,'Sura_Rampage','Sura Rampage',5,20,NULL,500,'142',NULL,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); }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1831,'P_Knuckle1','Eden Knuckle I',5,0,NULL,0,'120',NULL,1,0,0x00008100,63,2,2,3,'60',0,12,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1832,'Velum_Claw','Vellum Claw',5,20,NULL,650,'160',NULL,1,0,0x00008100,63,2,2,4,'95',1,12,'bonus2 bAddRace,RC_Player_Human,100; .@r = getrefine(); if(.@r>7) { bonus2 bAddRace,RC_Player_Human,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; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1833,'Claw_Of_Flash','Claw of Flash',5,60000,NULL,400,'140',NULL,1,2,0x00008100,63,2,2,4,'105',1,12,'bonus bAspd,1; bonus bAspdRate,getrefine(); bonus2 bAddSize,Size_Medium,getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1834,'TE_Woe_Fist','TE Woe Fist',5,0,NULL,0,'150',NULL,1,0,0x00008100,63,2,2,3,'40',1,12,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Freeze,3000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1835,'Spartacus','Spartacus',5,0,NULL,600,'100',NULL,1,2,0x00008100,63,2,2,4,'50',1,12,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus2 bAddClass,Class_All,.@r; if(.@r>9) { bonus bNoSizeFix; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1836,'Thanos_Knuckle','Thanos Knuckle',5,10,NULL,600,'160:100',NULL,1,1,0x00008000,56,2,2,4,'120',1,12,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000;',NULL,'heal -1000,0;'); -REPLACE INTO `item_db_re` VALUES (1837,'Iron_nail','Iron Nail',5,10,NULL,1500,'100',NULL,NULL,1,0x00008100,63,2,2,3,'50',1,12,'bonus bUnbreakableWeapon; bonus bIgnoreDefClass,Class_All; .@r = (getrefine()/2); bonus bAspdRate,-5+.@r; if(getskilllv("MO_CHAINCOMBO")==5){ bonus bBaseAtk,20; } if(getskilllv("MO_COMBOFINISH")==5){ bonus bBaseAtk,20; } if(getskilllv("CH_TIGERFIST")==5){ bonus bBaseAtk,20; } if(getskilllv("CH_CHAINCRUSH")==10){ bonus bBaseAtk,40; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1838,'Half_BF_Knuckle1','Half BF Knuckle1',5,20,NULL,0,'30',NULL,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_Human,30; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus4 bAutoSpell,"CH_SOULCOLLECT",1,5,0; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1839,'Crimson_Knuckles','Crimson Knuckles',5,20,NULL,1000,'100',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1840,'Requiem_Knuckle','Requiem Knuckle',5,20,NULL,500,'150:100',NULL,1,0,0x00008100,63,2,2,4,'100',1,12,'.@r = getrefine(); .@b = 40; if(.@r>=5){ .@b += (.@r-5)*15+20; } bonus2 bAddRace2,RC2_BioLab,.@b;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1841,'Claw_Of_Flash_','Claw of Flash',5,60000,NULL,400,'140',NULL,1,3,0x00008100,63,2,2,4,'105',1,12,'bonus bAspd,1; bonus bAspdRate,getrefine(); bonus2 bAddSize,Size_Medium,getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1846,'Illusion_Combo_Battle_Glove','Illusion Combo Battle Glove',5,0,NULL,500,'250',NULL,1,2,0x00008000,56,2,2,4,'120',1,12,'.@r = getrefine(); bonus2 bSkillAtk,"SR_SKYNETBLOW",(10+5*(.@r/2)); bonus2 bSkillAtk,"SR_DRAGONCOMBO",(10+5*(.@r/2)); bonus2 bSkillAtk,"SR_TIGERCANNON",(5*(.@r/3));',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1862,'Burning_Knuckle-OS','Burning Knuckle-OS',5,20,NULL,900,'175',NULL,1,2,0x00008000,63,2,2,4,'130',1,12,'.@r = getrefine(); bonus2 bAddClass,Class_All,3; if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",15; if (.@r >= 11) { bonus2 bAddSize,Size_Medium,20; bonus2 bAddSize,Size_Large,20; } } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1865,'Raging_Dragon_Fist','Raging Dragon Fist',5,20,NULL,700,'210',NULL,1,2,0x00008000,56,2,2,4,'170',1,12,'.@r = getrefine(); bonus bBaseAtk,4*.@r; bonus2 bSkillAtk,"MO_CHAINCOMBO",30; if (.@r >= 9) { bonus2 bSkillAtk,"MO_COMBOFINISH",50; bonus2 bSkillAtk,"CH_CHAINCRUSH",50; } if (.@r >= 11) bonus2 bSkillAtk,"CH_CHAINCRUSH",30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1866,'Dedicated_Bandage','Dedicated Bandage',5,20,NULL,800,'220',NULL,1,2,0x00008000,56,2,2,4,'170',1,12,'.@r = getrefine(); bonus bBaseAtk,4*.@r; bonus bLongAtkRate,10; if (.@r >= 9) bonus2 bSkillAtk,"SR_KNUCKLEARROW",40; if (.@r >= 11) bonus bDelayrate,-7;',NULL,NULL); -#=================================================================== -# Instruments -#=================================================================== -REPLACE INTO `item_db_re` VALUES (1900,'Violin_of_Vicious_Mind','Violin of Vicious Mind',5,20,NULL,1300,'130:50',NULL,1,1,0x00080000,63,1,2,4,'160',1,13,'bonus bAtk,pow(min(getrefine(),15),2); bonus bMatk,pow(min(getrefine(),15),2)/2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1901,'Violin','Violin',5,4000,NULL,700,'50',NULL,1,3,0x00080000,63,1,2,1,'2',1,13,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1902,'Violin_','Violin',5,4000,NULL,700,'50',NULL,1,4,0x00080000,63,1,2,1,'2',1,13,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1903,'Mandolin','Mandolin',5,18000,NULL,400,'90',NULL,1,2,0x00080000,63,1,2,2,'14',1,13,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1904,'Mandolin_','Mandolin',5,18000,NULL,400,'90',NULL,1,3,0x00080000,63,1,2,2,'14',1,13,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1905,'Lute','Lute',5,24500,NULL,500,'105',NULL,1,2,0x00080000,63,1,2,2,'14',1,13,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1906,'Lute_','Lute',5,24500,NULL,500,'105',NULL,1,3,0x00080000,63,1,2,2,'14',1,13,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1907,'Guitar','Guitar',5,47000,NULL,900,'142',NULL,1,0,0x00080000,63,1,2,3,'27',1,13,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1908,'Guitar_','Guitar',5,47000,NULL,900,'142',NULL,1,1,0x00080000,63,1,2,3,'27',1,13,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1909,'Harp','Harp',5,62000,NULL,900,'114',NULL,1,1,0x00080000,63,1,2,3,'27',1,13,'bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1910,'Harp_','Harp',5,62000,NULL,900,'114',NULL,1,2,0x00080000,63,1,2,3,'27',1,13,'bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1911,'Guh_Moon_Goh','Gumoongoh',5,54000,NULL,1300,'126',NULL,1,1,0x00080000,63,1,2,3,'27',1,13,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1912,'Guh_Moon_Goh_','Gumoongoh',5,54000,NULL,1300,'126',NULL,1,2,0x00080000,63,1,2,3,'27',1,13,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1913,'Electronic_Guitar','Electric Guitar',5,20,NULL,1800,'110',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1914,'Guitar_Of_Passion','Burning Passion Guitar',5,20,NULL,900,'110',NULL,1,0,0x00080000,63,1,2,3,'27',1,13,'bonus bAtkEle,Ele_Fire;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1915,'Guitar_Of_Blue_Solo','Loner\'s Guitar',5,20,NULL,900,'110',NULL,1,0,0x00080000,63,1,2,3,'27',1,13,'bonus bAtkEle,Ele_Water;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1916,'Guitar_Of_Vast_Land','Green Acre Guitar',5,20,NULL,900,'110',NULL,1,0,0x00080000,63,1,2,3,'27',1,13,'bonus bAtkEle,Ele_Earth;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1917,'Guitar_Of_Gentle_Breeze','Gentle Breeze Guitar',5,20,NULL,900,'110',NULL,1,0,0x00080000,63,1,2,3,'27',1,13,'bonus bAtkEle,Ele_Wind;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1918,'Oriental_Lute','Oriental Lute',5,20,NULL,1200,'150',NULL,1,0,0x00080000,63,1,2,4,'65',1,13,'bonus2 bSkillAtk,"CG_ARROWVULCAN",10; bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1919,'Base_Guitar','Bass Guitar',5,20,NULL,1500,'130',NULL,1,1,0x00080000,18,1,2,3,'70',1,13,'bonus bSPGainValue,3; bonus4 bAutoSpellWhenHit,"WZ_HEAVENDRIVE",3,30,1; bonus3 bAutoSpell,"NPC_WIDECONFUSE",2,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1920,'Berserk_Guitar','Berserk Guitar',5,20,NULL,1800,'10',NULL,1,0,0x00080000,18,1,2,4,'70',1,13,'bonus bAspdRate,100; bonus bHPrecovRate,-100; bonus2 bHPLossRate,50,5000; bonus bDex,-readparam(bDex);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1921,'Guh_Moon_Gom','Gun Moon Gom',5,20,NULL,0,'120',NULL,1,0,0x00080000,63,1,2,1,'0',0,13,'bonus2 bAddClass,Class_All,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1922,'Oriental_Lute_','Oriental Lute',5,20,NULL,1200,'150',NULL,1,2,0x00080000,63,1,2,4,'65',1,13,'bonus2 bSkillAtk,"CG_ARROWVULCAN",10; bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1923,'BF_Instrument1','Valorous Battlefield Guitar',5,20,NULL,0,'50',NULL,1,0,0x00080000,63,1,2,3,'80',1,13,'bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1924,'BF_Instrument2','Brave Battlefield Guitar',5,20,NULL,0,'50',NULL,1,0,0x00080000,63,1,2,3,'80',1,13,'bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bSkillAtk,"CG_ARROWVULCAN",20; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1925,'Cello','Cello',5,20,NULL,700,'110',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1926,'Harp_Of_Nepenthes','Harp of Nepenthes',5,20,NULL,1000,'120',NULL,1,2,0x00080000,18,1,2,4,'60',1,13,'bonus bInt,2; bonus3 bAddEffOnSkill,"BA_MUSICALSTRIKE",Eff_Stun,(getrefine()>=9?2000:1000);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1927,'Krieger_Instrument1','Glorious Guitar',5,20,NULL,0,'50',NULL,1,0,0x00080000,63,1,2,4,'80',1,13,'bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) bonus4 bAutoSpellOnSkill,"CG_ARROWVULCAN","CG_TAROTCARD",5,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1928,'Berserk_Guitar_I','Spirited Guitar',5,0,NULL,0,'40',NULL,1,0,0x00080000,18,1,2,4,'0',0,13,'bonus bAspdRate,100; bonus bHPrecovRate,-100; bonus2 bHPLossRate,50,5000; bonus bDex,-readparam(bDex);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1929,'Guitar_C','Guitar',5,0,NULL,0,'177',NULL,1,0,0x00080000,63,1,2,3,'1',0,13,'bonus2 bAddSize,Size_All,40;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1930,'Green_Whistle','Green Whistle',5,20,NULL,800,'170:50',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1931,'P_String_Inst1','Eden Guitar I',5,0,NULL,0,'125',NULL,1,0,0x00080000,63,1,2,3,'60',0,13,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1932,'TE_Woe_Guitar','TE Woe Guitar',5,0,NULL,0,'100',NULL,1,0,0x00080000,63,1,2,3,'40',1,13,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Poison,3000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1933,'Thanos_Violin','Thanos Violin',5,10,NULL,2000,'200:130',NULL,1,1,0x00080000,56,1,2,4,'120',1,13,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus bLongAtkRate,20; bonus2 bHPLossRate,100,10000;',NULL,'heal -1000,0;'); -REPLACE INTO `item_db_re` VALUES (1934,'Contabass','Contrabass',5,20,NULL,250,'180:120',NULL,1,2,0x00080000,63,1,2,3,'130',1,13,'bonus2 bSkillCooldown,"WM_RANDOMIZESPELL",-20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1935,'Ukulele_Of_Newoz','Oz\'s New Ukulele',5,20,NULL,2000,'160',NULL,1,2,0x00080000,63,1,2,4,'130',1,13,'bonus2 bSkillUseSP,"MI_RUSH_WINDMILL",20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1936,'Ru_Blue_Violin','Blue Violin',5,10,NULL,1500,'180',NULL,2,1,0x00080000,63,1,2,3,'100',1,13,'bonus bDex,5; bonus bVit,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1937,'Ru_Gold_Violin','Ru Gold Violin',5,0,NULL,1500,'180',NULL,1,2,0x00080000,56,2,2,3,'120',1,13,'bonus bDex,8; bonus bVit,8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1938,'Infinity_Violin','Infinity Violin',5,10,NULL,500,'150',NULL,2,1,0x00080000,56,1,2,4,'100',1,13,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1939,'Crimson_Violin','Crimson Violin',5,20,NULL,800,'80',NULL,2,2,0x00080000,63,1,2,3,'70',1,13,'.@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1940,'Trumpet_Shell','Trumpet Shell',5,0,NULL,600,'125',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1941,'Unity_Violin','Unity Violin',5,20,NULL,400,'76',NULL,2,1,0x00080000,63,1,2,3,'1',1,13,'bonus bBaseAtk,pow(getrefine(),2)*125/100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1942,'Requiem_Violin','Requiem Violin',5,20,NULL,500,'160:120',NULL,1,NULL,0x00080000,63,1,2,4,'100',1,13,'.@r = getrefine(); .@b = 40; bonus bUnbreakableWeapon; if(.@r>=5){ .@b += (.@r-5)*15+20; } if(.@r>=7) bonus2 bSkillAtk,"CG_ARROWVULCAN",200; bonus2 bAddRace2,RC2_BioLab,.@b;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1944,'Hippie_Guitar','Hippie Guitar',5,0,NULL,1000,'140',NULL,2,2,0x00080000,56,1,2,3,'100',1,13,'.@r = getrefine(); .@lvl = getskilllv("BA_MUSICALLESSON"); bonus bAspdRate,.@lvl; if (.@r>=7) bonus bBaseAtk,(5*.@lvl); if (.@r>=9) bonus bAspd,1;',NULL,NULL); -#=================================================================== -# Whips -#=================================================================== -REPLACE INTO `item_db_re` VALUES (1950,'Rope','Rope',5,2500,NULL,400,'45',NULL,2,3,0x00080000,63,0,2,1,'3',1,14,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1951,'Rope_','Rope',5,2500,NULL,400,'45',NULL,2,4,0x00080000,63,0,2,1,'3',1,14,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1952,'Line','Whip',5,12000,NULL,300,'80',NULL,2,2,0x00080000,63,0,2,2,'16',1,14,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1953,'Line_','Whip',5,12000,NULL,300,'80',NULL,2,3,0x00080000,63,0,2,2,'16',1,14,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1954,'Wire','Wire Whip',5,17500,NULL,1000,'95',NULL,2,2,0x00080000,63,0,2,2,'16',1,14,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1955,'Wire_','Wire Whip',5,17500,NULL,1000,'95',NULL,2,3,0x00080000,63,0,2,2,'16',1,14,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1956,'Rante','Rante Whip',5,32000,NULL,900,'135',NULL,2,0,0x00080000,63,0,2,3,'30',1,14,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1957,'Rante_','Rante Whip',5,32000,NULL,900,'135',NULL,2,1,0x00080000,63,0,2,3,'30',1,14,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1958,'Tail','Tail Whip',5,41000,NULL,700,'105',NULL,2,1,0x00080000,63,0,2,3,'30',1,14,'bonus bLuk,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1959,'Tail_','Tail Whip',5,41000,NULL,700,'105',NULL,2,2,0x00080000,63,0,2,3,'30',1,14,'bonus bLuk,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1960,'Whip','Whip',5,38000,NULL,700,'120',NULL,2,1,0x00080000,63,0,2,3,'30',1,14,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1961,'Whip_','Whip',5,38000,NULL,700,'120',NULL,2,2,0x00080000,63,0,2,3,'30',1,14,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1962,'Lariat','Lariat Whip',5,20,NULL,400,'100',NULL,2,0,0x00080000,63,0,2,4,'44',1,14,'bonus bDex,5; bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1963,'Rapture_Rose','Rapture Rose',5,20,NULL,300,'115',NULL,2,0,0x00080000,63,0,2,4,'44',1,14,'bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,5000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1964,'Chemeti','Chemeti Whip',5,20,NULL,700,'135',NULL,2,0,0x00080000,63,0,2,4,'44',1,14,'bonus bCritical,5; bonus bFlee,10; bonus bFlee2,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1965,'Whip_Of_Red_Flame','Red Flame Whip',5,20,NULL,700,'110',NULL,2,0,0x00080000,63,0,2,3,'30',1,14,'bonus bAtkEle,Ele_Fire;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1966,'Whip_Of_Ice_Piece','Icicle Whip',5,20,NULL,700,'110',NULL,2,0,0x00080000,63,0,2,3,'30',1,14,'bonus bAtkEle,Ele_Water;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1967,'Whip_Of_Earth','Gaia Whip',5,20,NULL,700,'110',NULL,2,0,0x00080000,63,0,2,3,'30',1,14,'bonus bAtkEle,Ele_Earth;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1968,'Jump_Rope','Skipping Rope',5,20,NULL,400,'120',NULL,2,0,0x00080000,63,0,2,3,'30',1,14,'bonus bCritical,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1969,'Bladed_Whip','Blade Whip',5,20,NULL,1200,'140',NULL,2,0,0x00080000,63,0,2,4,'30',1,14,'bonus2 bAddEff,Eff_Bleeding,300;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1970,'Queen\'s_Whip','Queen\'s Whip',5,20,NULL,1100,'150',NULL,2,0,0x00080000,63,0,2,4,'65',1,14,'bonus2 bSkillAtk,"CG_ARROWVULCAN",10; bonus2 bSkillAtk,"DC_THROWARROW",10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1971,'Electric_Wire','Electric Wire',5,20,NULL,700,'110',NULL,2,0,0x00080000,63,0,2,3,'30',1,14,'bonus bAtkEle,Ele_Wind;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1972,'Electric_Eel','Electric Eel',5,20,NULL,2000,'100',NULL,2,2,0x00080000,18,0,2,4,'70',1,14,'bonus bAtkEle,Ele_Wind; bonus bInt,2; bonus bAgi,2; bonus3 bAutoSpell,"WZ_JUPITEL",3,20; .@r = getrefine(); if(.@r>0) bonus3 bAutoSpell,"CG_ARROWVULCAN",.@r,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1973,'Sea_Witch_Foot','Sea Witch\'s Foot',5,20,NULL,1500,'110',NULL,2,1,0x00080000,18,0,2,4,'70',1,14,'bonus bSPGainValue,5; bonus4 bAutoSpellWhenHit,"WZ_FROSTNOVA",3,50,1; bonus3 bAutoSpell,"NPC_WIDESILENCE",2,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1974,'Carrot_Whip','Carrot Whip',5,20,NULL,1300,'185',NULL,2,0,0x00080000,18,0,2,4,'70',1,14,'.@r = getrefine(); if(.@r>0) bonus3 bAutoSpell,"AL_INCAGI",min(.@r,10),10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1975,'Queen_Is_Whip','Queen Is Whip',5,20,NULL,0,'120',NULL,2,0,0x00080000,63,0,2,1,'0',0,14,'bonus2 bAddClass,Class_All,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1976,'Queen\'s_Whip_','Queen\'s Whip',5,20,NULL,1100,'150',NULL,2,2,0x00080000,63,0,2,4,'65',1,14,'bonus2 bSkillAtk,"CG_ARROWVULCAN",10; bonus2 bSkillAtk,"DC_THROWARROW",10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1977,'BF_Whip1','Valorous Battle Lariat',5,20,NULL,0,'50',NULL,2,0,0x00080000,63,0,2,3,'80',1,14,'bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1978,'BF_Whip2','Brave Battle Lariat',5,20,NULL,0,'50',NULL,2,0,0x00080000,63,0,2,3,'80',1,14,'bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bSkillAtk,"CG_ARROWVULCAN",20; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1979,'Stem_Of_Nepenthes','Stem of Nepenthes',5,20,NULL,1000,'120',NULL,2,2,0x00080000,18,0,2,4,'60',1,14,'bonus bInt,2; bonus3 bAddEffOnSkill,"DC_THROWARROW",Eff_Freeze,(getrefine()>=9?2000:1000);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1980,'Whip_Of_Balance','Whip of Balance',5,20,NULL,700,'110',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1981,'Krieger_Whip1','Glorious Lariat',5,20,NULL,0,'50',NULL,2,0,0x00080000,63,0,2,4,'80',1,14,'bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) bonus4 bAutoSpellOnSkill,"CG_ARROWVULCAN","CG_TAROTCARD",5,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1982,'Phenomena_Whip','Phenomena Whip',5,20,NULL,0,'160',NULL,2,0,0x00080000,63,0,2,4,'0',0,14,'bonus bDex,2; bonus2 bSkillAtk,"DC_THROWARROW",25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1983,'Rante_C','Rante Whip',5,0,NULL,0,'170',NULL,2,0,0x00080000,63,0,2,3,'1',0,14,'bonus2 bAddSize,Size_All,40;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1984,'Stem_Whip','Stem Whip',5,20,NULL,800,'170:50',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1985,'Rosebine','Rosebine',5,20,NULL,1000,'100:130',NULL,1,0,0x00080000,63,0,2,4,'110',1,14,'bonus bInt,2; bonus bAgi,-2; bonus3 bAutoSpell,"WM_VOICEOFSIREN",1,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1986,'P_Tail1','Eden Tail I',5,0,NULL,0,'125',NULL,2,0,0x00080000,63,0,2,3,'60',0,14,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1987,'TE_Woe_Rope','TE Woe Rope',5,0,NULL,0,'100',NULL,2,0,0x00080000,63,0,2,3,'40',1,14,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Blind,3000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1988,'Thanos_Whip','Thanos Whip',5,10,NULL,2200,'200:130',NULL,2,1,0x00080000,56,0,2,4,'120',1,14,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus bLongAtkRate,20; bonus2 bHPLossRate,100,10000;',NULL,'heal -1000,0;'); -REPLACE INTO `item_db_re` VALUES (1989,'Gymnastics_Ribbon','Rhythmic Gymnastics Ribbon',5,20,NULL,300,'150:120',NULL,2,2,0x00080000,63,0,2,3,'130',1,14,'bonus bAspdRate,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1990,'Floral_Mic_Of_Igu','Bloody Floral Decoration Microphone',5,20,NULL,1000,'160',NULL,2,2,0x00080000,63,0,2,4,'130',1,14,'bonus2 bSkillUseSP,"CG_MOONLIT",20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1991,'Ru_Blue_Whip','Blue Whip',5,10,NULL,1500,'180',NULL,2,1,0x00080000,63,0,2,3,'100',1,14,'bonus bDex,5; bonus bVit,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1992,'Ru_Gold_Whip','Ru Gold Whip',5,0,NULL,1500,'180',NULL,2,2,0x00080000,56,2,2,3,'120',1,14,'bonus bDex,8; bonus bVit,8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1994,'Infinity_Whip','Infinity Whip',5,10,NULL,500,'150',NULL,2,1,0x00080000,56,0,2,4,'100',1,14,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1995,'Crimson_Whip','Crimson Whip',5,20,NULL,800,'80',NULL,2,2,0x00080000,63,0,2,3,'70',1,14,'.@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1996,'Wire_of_Vicious_Mind','Wire of Vicious Mind',5,20,NULL,1300,'130:50',NULL,2,1,0x00080000,63,NULL,2,4,'160',1,14,'bonus bAtk,pow(min(getrefine(),15),2); bonus bMatk,pow(min(getrefine(),15),2)/2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1997,'Unity_Whip','Unity Whip',5,20,NULL,76,'40',NULL,2,1,0x00080000,63,0,2,3,'1',1,14,'bonus bBaseAtk,pow(getrefine(),2)*125/100;',NULL,NULL); -#=================================================================== -# Additional 2-Handed Staffs -#=================================================================== -REPLACE INTO `item_db_re` VALUES (2000,'Destruction_Rod','Staff of Destruction',5,20,NULL,2500,'130:280',NULL,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 bFixedCastrate,"HW_MAGICPOWER",-50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2001,'Divine_Cross','Divine Cross',5,20,NULL,1500,'120:210',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2002,'Krieger_Twohand_Staff1','Glorious Destruction Staff',5,20,NULL,0,'70:210',NULL,1,0,0x00018314,63,2,34,4,'80',1,23,'.@r = getrefine(); bonus bMatkRate,.@r; bonus2 bMagicAddRace,RC_DemiHuman,15; bonus2 bMagicAddRace,RC_Player_Human,15; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; if(.@r>5) { bonus2 bMagicAddRace,RC_DemiHuman,(min(14,.@r)-5)*2; bonus2 bMagicAddRace,RC_Player_Human,(min(14,.@r)-5)*2; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5+(min(14,.@r)-5)*2; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,5+(min(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; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2003,'Destruction_Rod_M','Staff of Destruction',5,20,NULL,2500,'130:280',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2004,'Kronos','Kronos',5,20,NULL,1000,'30:240',NULL,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; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2005,'Dea_Staff','Dea Staff',5,20,NULL,1000,'30:220',NULL,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; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2006,'G_Staff_Of_Light','Staff Of Light',5,20,NULL,1900,'80:150',NULL,1,0,0x00810204,63,2,34,4,'60',1,23,'bonus bAtkEle,Ele_Holy; bonus bInt,6;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2007,'Golden_Rod_Staff','Golden Rod Staff',5,20,NULL,900,'30:230',NULL,1,2,0x00000200,63,2,34,4,'100',1,23,'bonus bAtkEle,Ele_Wind; bonus bInt,3; bonus2 bSkillAtk,"WZ_JUPITEL",12;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2008,'Aqua_Staff','Aqua Staff',5,20,NULL,900,'30:230',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2009,'Crimson_Staff','Crimson Staff',5,20,NULL,900,'30:230',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2010,'Forest_Staff','Forest Staff',5,20,NULL,900,'30:230',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2011,'Golden_Rod_Staff2','Empowered Golden Rod Staff',5,20,NULL,900,'30:270',NULL,1,1,0x00000200,63,2,34,4,'130',1,23,'bonus bAtkEle,Ele_Wind; bonus bInt,5; bonus2 bSkillAtk,"WZ_JUPITEL",30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2012,'Aqua_Staff2','Empowered Aqua Staff',5,20,NULL,900,'30:270',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2013,'Crimson_Staff2','Empowered Crimson Staff',5,20,NULL,900,'30:270',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2014,'Forest_Staff2','Empowered Forest Staff',5,20,NULL,900,'30:270',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2015,'Upg_Staff','Upg Staff',5,20,NULL,1000,'50:70',NULL,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);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2016,'Velum_Arc_Wand','Vellum Arc Wand',5,20,NULL,800,'110:220',NULL,1,0,0x00818314,63,2,34,4,'95',1,23,'bonus bUnbreakableWeapon; bonus2 bMagicAddRace,RC_Player_Human,25; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; .@r = getrefine(); if(.@r>5) { bonus2 bMagicAddRace,RC_Player_Human,15; } if(.@r>8) { bonus bVariableCastrate,-50; bonus bFixedCast,-200; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2017,'Divine_Cross_','Divine Cross',5,20,NULL,1500,'120:210',NULL,1,1,0x00008100,63,2,34,4,'70',1,23,'bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Holy; bonus bDex,4; bonus2 bSubRace,RC_Demon,15; bonus2 bSubRace,RC_Undead,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2018,'Metal_Staff','Metal Staff',5,20,NULL,0,'50:70',NULL,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 = min(BaseLevel/10,12); if(.@i>2) bonus bMatk,((.@i-2)*5);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2019,'TE_Woe_Two_Hand_Staff','TE Woe Two Hand Staff',5,0,NULL,0,'50:130',NULL,1,0,0x00818315,63,2,34,3,'40',1,23,'bonus2 bMagicAddRace,RC_Player_Human,20; bonus3 bAddEff,Eff_Stun,1000,ATF_MAGIC; bonus bHPRecovRate,5; bonus bSPRecovRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2020,'Jormungand','Jormungand',5,10,NULL,3000,'200:280',NULL,NULL,0,0x810200,63,2,34,4,'1',0,23,'bonus bInt,20; bonus3 bAddEff,Eff_Poison,3000,ATF_MAGIC; bonus2 bAddEffWhenHit,Eff_DPoison,100; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2021,'Ganbantein','Ganbantein',5,0,NULL,2000,'100:320',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2022,'Staff_Of_Geffen','Staff of Geffen',5,20,NULL,1000,'100:300',NULL,1,1,0x00000200,18,2,34,1,'150',1,23,'bonus bInt,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2023,'Thanos_Rod','Thanos Two-Handed Staff',5,10,NULL,1400,'120:250',NULL,1,1,0x00018314,56,2,34,4,'120',1,23,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus bHealPower,18; bonus bMagicHPGainValue,500; bonus bMagicSPGainValue,50; bonus2 bHPLossRate,100,10000;',NULL,'heal -1000,0;'); -REPLACE INTO `item_db_re` VALUES (2024,'Infinity_Two-handed_Stick','Infinity Two-handed Stick',5,10,NULL,500,'30:170',NULL,NULL,1,0x810200,56,2,34,4,'100',1,23,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2025,'Crimson_Two-Handed_Staff','Crimson Two-Handed Staff',5,20,NULL,1000,'100',NULL,1,2,0x800200,63,2,34,3,'70',1,23,'.@r = getrefine(); bonus bInt,5; bonus bMatk,150+((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2026,'Staff_of_Vicious_Mind','Staff of Vicious Mind',5,20,NULL,1000,'100:200',NULL,1,1,0x00810204,63,2,34,4,'160',1,23,'bonus bMatk,pow(min(getrefine(),15),2); bonus bInt,6; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2027,'Sunflower_Kid','Sunflower Kid',5,10,NULL,1500,'150:320',NULL,NULL,2,0x00000200,56,2,34,4,'170',1,23,'bonus bInt,5; .@r = getrefine(); bonus bMatkRate,(.@r/2); bonus bDelayrate,(.@r*-1); bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2030,'Unity_Two-Handed_Staff','Unity Two-Handed Staff',5,20,NULL,500,'95:135',NULL,1,1,0x800200,63,2,34,3,'1',1,23,'bonus bMatk,pow(getrefine(),2)*125/100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2032,'Requiem_Wizardry_Staff','Requiem Wizardry Staff',5,20,NULL,500,'100:230',NULL,1,NULL,0xFFFFFFFF,63,2,2,4,'100',1,10,'.@r = getrefine(); .@b = 40; .@c = 5; if(.@r>=5){ .@b += (.@r-5)*15+20; .@c += .@r-5; } bonus2 bMagicAddRace2,RC2_BioLab,.@b; bonus2 bSubRace2,RC2_BioLab,.@c; bonus2 bIgnoreMdefRace2Rate,RC2_BioLab,(.@r-5)*10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2039,'Illusion_Wizardry_Staff','Illusion Wizardry Staff',5,0,NULL,2400,'150:250',NULL,1,2,0x00810204,58,2,34,4,'100',1,23,'.@val = min(getrefine(),10)/2; bonus bInt,(6+.@val); bonus bDex,(2+.@val);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2046,'Novice_Warlock\'s_Staff','Novice Warlock\'s Staff',0,0,NULL,0,'70:170',NULL,1,1,0x00000200,56,2,34,3,'100',1,23,'bonus bMatkRate,5; .@r = getrefine(); if(.@r>=7){ bonus2 bSkillAtk,"WL_CRIMSONROCK",15; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2048,'Aeon_Staff','Aeon Staff',5,0,NULL,800,'100:200',NULL,1,2,0x00000200,56,2,34,4,'100',1,23,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus2 bSkillAtk,"WL_EARTHSTRAIN",12*(.@r/3); if(.@r>=9){ bonus bVariableCastrate,-10; } if (.@r>=11) { bonus2 bSkillCooldown,"WL_EARTHSTRAIN",-1000; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2049,'Blue_Flame_Cane','Blue Flame Cane',5,20,NULL,800,'110:300',NULL,1,2,0x00818314,63,2,34,4,'175',1,23,'.@r = getrefine; bonus bInt,7; bonus bMatkRate,.@r/2; bonus bUnbreakableWeapon; if (.@r>=9) .@val = 15; else if (.@r>=7) .@val = 5; if (.@r>=11) bonus2 bSubSize,Size_All,20; if (.@r>=13) bonus bDelayrate,-15; bonus2 bMagicAtkEle,Ele_Fire,.@val; bonus2 bMagicAtkEle,Ele_Earth,.@val; bonus2 bMagicAtkEle,Ele_Water,.@val; bonus2 bMagicAtkEle,Ele_Holy,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2051,'Illusion_Survivor\'s_Staff','Illusion Survivor\'s Staff',5,0,NULL,1200,'100:240',NULL,1,2,0x00818314,63,2,34,4,'120',1,23,'.@r = getrefine(); bonus bDex,2; bonus bInt,2; bonus bMaxHP,600; bonus bUnbreakableWeapon; bonus bMatkRate,(.@r/2); if (.@r >= 7) { bonus2 bMagicAddSize,Size_Small,15; bonus2 bMagicAddSize,Size_Medium,15; if (.@r >= 9) { bonus2 bSubSize,Size_Small,15; bonus2 bSubSize,Size_Medium,15; if (.@r >= 11) { bonus2 bSubDefEle,Ele_Water,15; bonus2 bSubDefEle,Ele_Wind,15; bonus2 bSubDefEle,Ele_Earth,15; bonus2 bSubDefEle,Ele_Fire,15; } } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2053,'Abyss_Staff','Abyss Staff',5,0,NULL,2400,'120:270',NULL,1,1,0x00000301,58,2,34,4,'165',1,23,'bonus2 bSubRace,RC_Player_Human,30; .@r = getrefine(); bonus bHealPower,.@r*2; if(.@r>=7){ bonus2 bMagicAddClass,Class_All,5; bonus2 bSubRace,RC_Player_Human,5; } if(.@r>=9){ bonus2 bMagicAddClass,Class_All,5; bonus2 bSubRace,RC_Player_Human,5; } bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2054,'Sealed_Aeon_Staff','Sealed Aeon Staff',5,0,NULL,0,'100:200',NULL,1,2,0x00000200,56,2,34,4,'99',1,23,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus2 bSkillAtk,"WL_EARTHSTRAIN",12*(.@r/3); if(.@r>=7){ bonus bVariableCastrate,-10; } if(.@r>=9){ bonus2 bSkillCooldown,"WL_EARTHSTRAIN",-1000; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2055,'Staff_of_Miracle','Staff of Miracle',5,20,NULL,1200,'100:270',NULL,1,2,0x00000200,56,2,34,4,'170',1,23,'.@r = getrefine(); bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Ghost,5; if (.@r >= 9) { bonus2 bSkillAtk,"MG_SOULSTRIKE",20; bonus2 bSkillAtk,"HW_NAPALMVULCAN",20; bonus2 bSkillAtk,"WL_SOULEXPANSION",20; } if (.@r >= 11) { bonus2 bSkillAtk,"MG_SOULSTRIKE",30; bonus2 bSkillAtk,"HW_NAPALMVULCAN",30; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2056,'Gravitation_Staff','Gravitation Staff',5,20,NULL,1300,'110:280',NULL,1,2,0x00000200,56,2,34,4,'170',1,23,'.@r = getrefine(); bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Neutral,5; if (.@r >= 9) { bonus2 bSkillAtk,"HW_GRAVITATION",30; bonus2 bSkillAtk,"WL_DRAINLIFE",30; } if (.@r >= 11) { bonus2 bSkillCooldown,"HW_GRAVITATION",-2000; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2057,'Adorare_Staff','Adorare Staff',5,20,NULL,1200,'100:240',NULL,1,2,0x00000100,56,2,34,4,'170',1,23,'.@r = getrefine(); bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Holy,5; if (.@r >= 9) { bonus2 bSkillAtk,"AB_ADORAMUS",30; } if (.@r >= 11) { bonus2 bSubSize,Size_All,25; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2058,'Detecting_Staff','Detecting Staff',5,0,NULL,2000,'180:330',NULL,1,2,0x00000100,56,2,34,4,'170',1,23,'.@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,10; if (.@r >= 7) { bonus bMatk,60; bonus bVariableCastrate,-10; } if (.@r >= 9) { bonus2 bMagicAtkEle,Ele_Fire,15; autobonus "{ bonus2 bMagicAddSize,Size_All,20; }",10,10000,BF_MAGIC; } if (.@r >= 11) { bonus bDelayrate,-20; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2060,'Royal_Magician_Staff','Royal Magician Staff',5,0,NULL,1500,'100:270',NULL,1,2,0x00000100,56,2,34,4,'170',1,23,'.@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,5; bonus bMatk,5*.@r; if (.@r >= 9) { bonus2 bSkillAtk,"WL_CHAINLIGHTNING",20; bonus2 bSkillAtk,"WL_EARTHSTRAIN",20; } if (.@r >= 11) { bonus2 bMagicAddRace,RC_Undead,20; bonus2 bMagicAddRace,RC_Angel,20; }',NULL,NULL); -#=================================================================== -# Shields -#=================================================================== -REPLACE INTO `item_db_re` VALUES (2101,'Guard','Guard',4,500,NULL,300,NULL,20,NULL,0,0xFFFFFFFF,63,2,32,NULL,'0',1,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2102,'Guard_','Guard',4,500,NULL,300,NULL,20,NULL,1,0xFFFFFFFF,63,2,32,NULL,'0',1,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2103,'Buckler','Buckler',4,14000,NULL,600,NULL,40,NULL,0,0x000ED5F2,63,2,32,NULL,'0',1,2,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2104,'Buckler_','Buckler',4,14000,NULL,600,NULL,40,NULL,1,0x000ED5F2,63,2,32,NULL,'0',1,2,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2105,'Shield','Shield',4,56000,NULL,1300,NULL,60,NULL,0,0x00004082,63,2,32,NULL,'0',1,3,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2106,'Shield_','Shield',4,56000,NULL,1300,NULL,60,NULL,1,0x00004082,63,2,32,NULL,'0',1,3,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2107,'Mirror_Shield','Mirror Shield',4,60000,NULL,1000,NULL,45,NULL,0,0x00404082,63,2,32,NULL,'0',1,4,'bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2108,'Mirror_Shield_','Mirror Shield',4,60000,NULL,1000,NULL,45,NULL,1,0x00404082,63,2,32,NULL,'0',1,4,'bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2109,'Memorize_Book','Memory Book',4,20,NULL,1000,NULL,25,NULL,0,0x00810204,63,2,32,NULL,'0',1,5,'bonus bInt,1; bonus bMdef,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2110,'Holy_Guard','Holy Guard',4,85000,NULL,1400,NULL,110,NULL,0,0x00004000,63,2,32,NULL,'68',0,4,'bonus bVit,2; bonus bMdef,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2111,'Herald_Of_GOD','Sacred Mission',4,128000,NULL,1600,NULL,120,NULL,0,0x00004000,63,2,32,NULL,'83',1,4,'bonus bVit,3; bonus bInt,2; bonus bMdef,3; bonus bUnbreakableShield;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2112,'Novice_Guard','Novice Guard',4,1,NULL,1,NULL,20,NULL,0,0x00000001,63,2,32,NULL,'0',0,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2113,'Novice_Shield','Novice Shield',4,5000,NULL,1000,NULL,20,NULL,1,0x00000001,63,2,32,NULL,'40',1,3,'bonus2 bSubEle,Ele_All,20; bonus2 bSubEle,Ele_Neutral,-20; bonus2 bSubEle,Ele_Holy,-20; bonus2 bSubEle,Ele_Dark,-20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2114,'Stone_Buckler','Stone Buckler',4,30000,NULL,1500,NULL,45,NULL,1,0xFFFFFFFE,63,2,32,NULL,'65',1,2,'bonus2 bSubSize,Size_Large,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2115,'Valkyrja\'s_Shield','Valkyrja\'s Shield',4,30000,NULL,500,NULL,80,NULL,1,0xFFFFFFFE,63,2,32,NULL,'65',1,4,'bonus2 bSubEle,Ele_Water,20; bonus2 bSubEle,Ele_Fire,20; bonus2 bSubEle,Ele_Dark,20; bonus2 bSubEle,Ele_Undead,20; bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2116,'Angel\'s_Safeguard','Angelic Guard',4,10000,NULL,400,NULL,30,NULL,1,0x00000001,63,2,32,NULL,'20',1,1,'bonus2 bSubRace,RC_Demon,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2117,'Arm_Guard','Arm Guard',4,10000,NULL,150,NULL,50,NULL,0,0x02000000,63,2,32,NULL,'20',1,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2118,'Arm_Guard_','Arm Guard',4,10000,NULL,150,NULL,50,NULL,1,0x02000000,63,2,32,NULL,'20',1,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2119,'Improved_Arm_Guard','Advanced Arm Guard',4,40000,NULL,150,NULL,45,NULL,0,0x02000000,63,2,32,NULL,'50',1,1,'bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2120,'Improved_Arm_Guard_','Advanced Arm Guard',4,40000,NULL,150,NULL,45,NULL,1,0x02000000,63,2,32,NULL,'50',1,1,'bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2121,'Memorize_Book_','Memory Book',4,20,NULL,1000,NULL,25,NULL,1,0x00810204,63,2,32,NULL,'0',1,5,'bonus bInt,1; bonus bMdef,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2122,'Platinum_Shield','Platinum Shield',4,20,NULL,1200,NULL,95,NULL,0,0xFFFFFFFE,18,2,32,NULL,'68',1,4,'bonus bMdef,5; bonus2 bSubSize,Size_Medium,15; bonus2 bSubSize,Size_Large,15; bonus2 bSubRace,RC_Undead,10; bonus5 bAutoSpellWhenHit,"NPC_MAGICMIRROR",7,150,BF_MAGIC,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2123,'Orleans_Server','Orleans\'s Server',4,20,NULL,1000,NULL,75,NULL,1,0xFFFFFFFE,18,2,32,NULL,'55',1,4,'bonus bMdef,2; bonus bMagicDamageReturn,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2124,'Thorny_Buckler','Thorny Buckler',4,20,NULL,1000,NULL,85,NULL,1,0xFFFFFFFE,18,2,32,NULL,'55',1,2,'bonus bMdef,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2125,'Strong_Shield','Strong Shield',4,20,NULL,2500,NULL,90,NULL,1,0x000654E2,18,2,32,NULL,'75',1,4,'bonus bNoKnockback; 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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2126,'Guyak_Shield','Guyak Shield',4,20,NULL,700,NULL,3,NULL,0,0xFFFFFFFE,63,2,32,NULL,'1',1,2,'bonus bMdef,2; bonus bMagicDamageReturn,2; autobonus2 "{ bonus bShortWeaponDamageReturn,5; }",20,1000,BF_WEAPON,"{ specialeffect2 EF_REFLECTSHIELD; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2127,'Secular_Mission','Secular Mission',4,20,NULL,0,NULL,10,NULL,0,0xFFFFFFFF,63,2,32,NULL,'0',0,4,'bonus2 bSubClass,Class_All,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2128,'Herald_Of_GOD_','Sacred Mission',4,128000,NULL,1600,NULL,120,NULL,1,0x00004000,63,2,32,NULL,'83',1,4,'bonus bVit,3; bonus bInt,2; bonus bMdef,3; bonus bUnbreakableShield;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2129,'Exorcism_Bible','Exorcism Bible',4,20,NULL,600,NULL,80,NULL,0,0x00008100,63,2,32,NULL,'50',1,5,'bonus bHPrecovRate,3; bonus bSPrecovRate,3; bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2130,'Cross_Shield','Cross Shield',4,20,NULL,2000,NULL,130,NULL,1,0x00004000,63,2,32,NULL,'80',1,4,'bonus bStr,1; bonus2 bSkillAtk,"PA_SHIELDCHAIN",30; bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",30; bonus bUseSPrate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2131,'Magic_Study_Vol1','Magic Bible Vol1',4,20,NULL,1000,NULL,18,NULL,1,0x00810204,63,2,32,NULL,'70',1,5,'bonus bMdef,3; bonus bInt,2; bonus2 bAddEffWhenHit,Eff_Stun,1000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2132,'Shelter_Resistance','Shell Of Resistance',4,20,NULL,0,NULL,9,NULL,0,0xFFFFFFFF,63,2,32,NULL,'0',0,2,'bonus2 bSubEle,Ele_All,20; bonus bShortWeaponDamageReturn,1; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bAllStats,1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2133,'Tournament_Shield','Tournament Shield',4,20,NULL,1000,NULL,105,NULL,1,0x00004082,18,2,32,NULL,'50',1,4,'bonus2 bAddClass,Class_All,1; if( Class == Job_Lord_Knight ) bonus bAspdRate,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2134,'Shield_Of_Naga','Shield of Naga',4,20,NULL,500,NULL,35,NULL,1,0x00CFFF80,18,2,32,NULL,'70',1,2,'.@r = getrefine(); bonus bMdef,3; if(.@r<11) { autobonus2 "{ bonus bShortWeaponDamageReturn,("+.@r+"*3); }",10,5000,BF_WEAPON,"{ specialeffect2 EF_GUARD; }"; } else { autobonus2 "{ bonus bShortWeaponDamageReturn,("+.@r+"*3); }",10,5000+(.@r/2*1000),BF_WEAPON,"{ specialeffect2 EF_GUARD; }"; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2135,'Shadow_Guard','Shadow Guard',4,20,NULL,800,NULL,52,NULL,1,0x00020000,18,2,32,NULL,'70',1,2,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2136,'Cracked_Buckler','Cracked Buckler',4,0,NULL,0,NULL,5,NULL,0,0xFFFFFFFF,63,2,32,NULL,'0',0,2,'bonus bAgi,2; bonus2 bSubEle,Ele_Neutral,10; bonus3 bAutoSpellWhenHit,"PR_KYRIE",10,10; bonus bMdef,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2137,'Valkyrja\'s_Shield_C','Neo Valkyrja\'s Shield',4,0,NULL,0,NULL,5,NULL,0,0xFFFFFFFE,18,2,32,NULL,'95',0,4,'bonus2 bSubEle,Ele_Water,20; bonus2 bSubEle,Ele_Fire,20; bonus2 bSubEle,Ele_Dark,20; bonus2 bSubEle,Ele_Undead,20; bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2138,'Bradium_Shield','Bradium Shield',4,20,NULL,1800,NULL,98,NULL,1,0x00CFFF80,18,2,32,NULL,'65',1,3,'bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",60; bonus bAgi,-1; bonus bMaxHP,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2139,'Flame_Thrower','Flame Thrower',4,20000,NULL,2000,NULL,60,NULL,0,0x00000400,63,2,32,NULL,'99',0,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2140,'Energy_Rune_Guard','Energy Rune Guard',4,20,NULL,0,NULL,70,NULL,1,0x00000080,63,2,32,NULL,'99',1,4,'bonus bMaxSPrate,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2141,'Freyja_SShield7','Freyja Spirit Shield',4,0,NULL,300,NULL,5,NULL,0,0xFFFFFFFF,63,2,32,NULL,'20',0,1,'bonus2 bSubSize,Size_Medium,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2142,'Freyja_SShield30','Freyja Spirit Shield',4,0,NULL,300,NULL,5,NULL,0,0xFFFFFFFF,63,2,32,NULL,'20',0,1,'bonus2 bSubSize,Size_Medium,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2143,'Freyja_SShield60','Freyja Spirit Shield',4,0,NULL,300,NULL,5,NULL,0,0xFFFFFFFF,63,2,32,NULL,'20',0,1,'bonus2 bSubSize,Size_Medium,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2144,'Freyja_SShield90','Freyja Spirit Shield',4,0,NULL,300,NULL,5,NULL,0,0xFFFFFFFF,63,2,32,NULL,'20',0,1,'bonus2 bSubSize,Size_Medium,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2145,'Time_Keepr_Shield','Time Keeper Shield',4,30000,NULL,0,NULL,20,NULL,0,0xFFFFFFFF,63,2,32,NULL,'0',1,3,'bonus bMdef,1; bonus2 bSubEle,Ele_Neutral,10; bonus2 bSubSize,Size_Medium,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2146,'Siver_Guard','Silver Guard',4,12500,NULL,300,NULL,60,NULL,1,0xFFFFFFFF,63,2,32,NULL,'22',1,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2147,'Round_Buckler','Round Buckleer',4,24000,NULL,600,NULL,90,NULL,1,0xFFFFFFFE,18,2,32,NULL,'22',1,2,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2148,'Rotha_Shield','Rosa Shield',4,56000,NULL,1300,NULL,130,NULL,1,0x00004082,63,2,32,NULL,'100',1,3,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2149,'Upg_Guard','Upg Guard',4,20,NULL,150,NULL,25,NULL,1,0xFFFFFFFF,63,2,32,NULL,'1',1,1,'bonus bMaxHPrate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2150,'Upg_Buckler','Upg Buckler',4,20,NULL,300,NULL,45,NULL,1,0x000ED5F2,63,2,32,NULL,'1',1,2,'bonus bMaxHPrate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2151,'Upg_Shield','Upg Shield',4,20,NULL,650,NULL,65,NULL,1,0x00004082,63,2,32,NULL,'1',1,3,'bonus bMaxHPrate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2152,'Anti_Demon_Shield_C','Anti-Demon Shield',4,0,NULL,0,NULL,120,NULL,0,0xFFFFFFFF,63,2,32,NULL,'1',0,3,'bonus2 bSubRace,RC_DemiHuman,25; bonus2 bSubRace,RC_Player_Human,25; bonus2 bSubRace,RC_Demon,25; bonus bMaxHP,400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2153,'Imperial_Guard','Imperial Guard',4,20,NULL,2500,NULL,120,NULL,1,0x00004000,63,2,32,NULL,'102',1,4,'.@r = getrefine(); bonus bMdef,5; bonus2 bSkillAtk,"LG_SHIELDPRESS",(.@r>=6?20+((.@r-5)*2):20);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2154,'Toy_Shield','Toy Shield',4,0,NULL,500,NULL,1,NULL,1,0xFFFFFFFF,63,2,32,NULL,'10',1,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2155,'Academy_Shield','Academy Shield',4,0,NULL,1500,NULL,3,NULL,1,0xFFFFFFFE,63,2,32,NULL,'0',1,4,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2156,'Bible_Of_Promise1','Bible of Promise(1st Vol.)',4,20,NULL,500,NULL,10,NULL,1,0x00000100,63,2,32,NULL,'110',1,5,'bonus bMdef,2; skill "ALL_ODINS_POWER",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2157,'Insecticide','Pesticide',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,32,NULL,'0',1,3,'bonus2 bAddRace,RC_Insect,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2158,'Ramor_Shield_Undead','Ramor Shield',4,20,NULL,1300,NULL,50,NULL,1,0xFFFFFFFF,63,2,32,NULL,'65',1,3,'bonus2 bSubDefEle,Ele_Undead,5; bonus2 bMagicSubDefEle,Ele_Undead,5; bonus2 bSubRace,RC_DemiHuman,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2159,'Sharel_Shield','Sharel Shield',4,20,NULL,1300,NULL,50,NULL,1,0xFFFFFFFF,63,2,32,NULL,'65',1,3,'bonus2 bSubDefEle,Ele_Fire,5; bonus2 bMagicSubDefEle,Ele_Fire,5; bonus2 bSubRace,RC_Demon,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2160,'Giant_Shield','Giant Shield',4,56000,NULL,2800,NULL,130,NULL,1,0x00004082,63,2,32,NULL,'100',1,3,'bonus2 bSubSize,Size_Large,5; if(getrefine()>=9){ bonus2 bSubSize,Size_Large,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2161,'Geffenia_Book_Water','Geffenia Tomb of Water',4,56000,NULL,1000,NULL,30,NULL,1,0x00000200,63,2,32,NULL,'100',1,5,'bonus bMdef,2; bonus bInt,1; if(readparam(bInt)>=120){ bonus bMatk,10; bonus bMaxHP,800; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2162,'Bible_Of_Promise2','Bible of Promise(2nd Vol.)',4,20,NULL,500,NULL,20,NULL,1,0x00000100,63,2,32,NULL,'140',1,5,'bonus bMdef,5; skill "ALL_ODINS_POWER",2; bonus bHealPower,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2163,'Flow_Shield','Flow Shield',4,20,NULL,1300,NULL,50,NULL,1,0xFFFFFFFF,63,2,32,NULL,'65',1,3,'bonus2 bSubDefEle,Ele_Water,5; bonus2 bMagicSubDefEle,Ele_Water,5; bonus2 bSubRace,RC_Brute,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2164,'Sombre_Shield','Sombre Shield',4,20,NULL,1300,NULL,50,NULL,1,0xFFFFFFFF,63,2,32,NULL,'65',1,3,'bonus2 bSubDefEle,Ele_Dark,5; bonus2 bMagicSubDefEle,Ele_Dark,5; bonus2 bSubRace,RC_Undead,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2165,'Sol_Shield','Sol Shield',4,20,NULL,1300,NULL,50,NULL,1,0xFFFFFFFF,63,2,32,NULL,'65',1,3,'bonus2 bSubDefEle,Ele_Earth,5; bonus2 bMagicSubDefEle,Ele_Earth,5; bonus2 bSubRace,RC_Plant,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2166,'Exorcism_Bible_','Devil\'s Bible Drive',4,20,NULL,600,NULL,80,NULL,1,0x00008100,63,2,32,NULL,'50',1,5,'bonus bHPrecovRate,3; bonus bSPrecovRate,3; bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2167,'Poison_Shield','Poison Shield',4,20,NULL,1300,NULL,50,NULL,1,0xFFFFFFFF,63,2,32,NULL,'65',1,3,'bonus2 bSubDefEle,Ele_Poison,5; bonus2 bMagicSubDefEle,Ele_Poison,5; bonus2 bSubRace,RC_Plant,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2168,'Immuned_Shield','Immune Shield',4,20,NULL,700,NULL,55,NULL,1,0xFFFFFFFF,63,2,32,NULL,'1',1,4,'.@r = getrefine(); if (.@r>=5) bonus2 bSubEle,Ele_Neutral,min(.@r,12)-4; if(.@r>6) bonus2 bSubEle,Ele_Neutral,5; if(.@r>8) { bonus2 bSubEle,Ele_Fire,5; bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Wind,5; bonus2 bSubEle,Ele_Earth,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2169,'Kalasak','Kalasag',4,20,NULL,400,NULL,40,NULL,0,0xFFFFFFFF,63,2,32,NULL,'1',1,1,'bonus2 bSubClass,Class_Boss,getrefine()/3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2170,'Bayani_Kalasak','Bayani Kalasag',4,20,NULL,400,NULL,40,NULL,1,0xFFFFFFFF,63,2,32,NULL,'1',1,1,'bonus2 bSubClass,Class_Boss,getrefine()/3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2171,'Fox_Armguard','Fox Wrist Guard',4,40000,NULL,200,NULL,45,NULL,1,0x02000000,63,2,32,NULL,'100',1,1,'bonus bFlee,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2172,'Wolf_Armguard','Wolf Wrist Guard',4,45000,NULL,250,NULL,70,NULL,1,0x02000000,63,2,32,NULL,'100',1,1,'autobonus "{ bonus bBaseAtk,100; bonus bFlee,-50; }",20,5000,BF_WEAPON,"{ specialeffect2 EF_TEIHIT1; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2173,'Crescent_Armguard','Crescent Wrist Guard',4,45000,NULL,250,NULL,45,NULL,1,0x02000000,63,2,32,NULL,'100',1,1,'bonus bDelayRate,-(getrefine()*2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2174,'Lumiere_Shield','Lumiere Shield',4,20,NULL,1300,NULL,50,NULL,1,0xFFFFFFFF,63,2,32,NULL,'65',1,3,'bonus2 bSubDefEle,Ele_Holy,5; bonus2 bMagicSubDefEle,Ele_Holy,5; bonus2 bSubRace,RC_Dragon,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2175,'Esprit_Shield','Spirit Shield',4,20,NULL,1300,NULL,50,NULL,1,0xFFFFFFFF,63,2,32,NULL,'65',1,3,'bonus2 bSubDefEle,Ele_Ghost,5; bonus2 bMagicSubDefEle,Ele_Ghost,5; bonus2 bSubRace,RC_Angel,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2176,'Dark_Book','Black Book',4,20,NULL,500,NULL,80,NULL,1,0xFFFFFFFF,63,2,32,NULL,'65',1,5,'bonus bMdef,5; .@r = getrefine(); bonus3 bAutoSpellWhenHit,"NPC_DRAGONFEAR",1,(.@r<=6)?(10):((.@r<=8)?(20):(30));',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2177,'Shield_Of_Death','Shield Of Death',4,20,NULL,2000,NULL,150,NULL,1,0xFFFFFFFF,63,2,32,NULL,'90',1,3,'bonus2 bAddClass,Class_Boss,2; bonus2 bMagicAddClass,Class_Boss,2; bonus2 bSubClass,Class_Normal,-10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2178,'TE_Woe_Buckler','TE Woe Buckler',4,0,NULL,0,NULL,15,NULL,0,0xFFFFFFFF,63,2,32,NULL,'40',1,2,'bonus bMdef,15; bonus bMaxHP,100; bonus bMaxSP,100; bonus2 bSubRace,RC_Player_Human,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2179,'TE_Woe_Shield','TE Woe Shield',4,0,NULL,0,NULL,25,NULL,0,0x000444A2,63,2,32,NULL,'40',1,3,'bonus bMdef,5; bonus bMaxHP,200; bonus2 bSubRace,RC_Player_Human,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2180,'TE_Woe_Magic_Guard','TE Woe Magic Guard',4,0,NULL,0,NULL,5,NULL,0,0x00818315,63,2,32,NULL,'40',1,1,'bonus bMdef,25; bonus bMaxSP,200; bonus2 bSubRace,RC_Player_Human,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2181,'Hervor','Hervor',4,10,NULL,1500,NULL,100,NULL,0,0xFFFFFFFF,63,2,32,NULL,'1',NULL,2,'bonus bMdef,5; bonus2 bSubRace,RC_All,30; bonus bUnbreakableShield;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2182,'Hervor_Alvitr','Hervor Alvitr',4,0,NULL,3000,NULL,150,NULL,0,0x000FDF80,56,2,32,NULL,'100',0,2,'bonus bMdef,10; bonus bVit,20; bonus2 bSubRace,RC_All,30; bonus bUnbreakableShield; 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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2183,'Impr_Angel\'s_Safeguard','Advanced Angelic Guard',4,10000,NULL,400,NULL,30,NULL,1,0x00000001,63,2,32,NULL,'99',1,1,'bonus2 bSubRace,RC_Demon,5; bonus2 bSubEle,Ele_All,5; bonus2 bSubEle,Ele_Neutral,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2185,'Magic_Reflector','Magic Reflect',4,10,NULL,1000,NULL,50,NULL,1,0xFFFFFFFF,63,2,32,NULL,'99',1,3,'bonus bMdef,10; bonus bMagicDamageReturn,3+((getrefine()>=9) ? 3 : 0);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2186,'Encyclopedia_Revision','Great Encyclopedia Revision',4,10,NULL,200,'0:5',50,NULL,1,0x00810100,63,2,32,NULL,'99',1,4,'bonus bInt,3; bonus bDex,2; .@r = getrefine(); bonus bCritical,3+((.@r >= 7) ? 2 : 0); if(.@r >= 9) bonus bMatk,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2187,'Shield_Of_Gray','Shield of Gray',4,10,NULL,2000,NULL,75,NULL,1,0xFFFFFFFF,56,2,32,NULL,'120',1,3,'.@r = getrefine(); bonus2 bSubEle,Ele_Holy,30+.@r; bonus bMdef,9+.@r/3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2188,'Svalinn_J','Svalinn',4,10,NULL,500,NULL,80,NULL,1,0xFFFFFFFF,63,2,32,NULL,'65',1,3,'.@r = getrefine(); bonus2 bSubEle,Ele_Water,10; bonus bMaxHPrate,1*(.@r/3); bonus2 bSubEle,Ele_Water,5*(.@r/3); bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2189,'Mad_Bunny','Mad Bunny Shield',4,10,NULL,100,NULL,40,NULL,1,0xFFFFFFFF,63,2,32,NULL,'30',1,6,'bonus2 bSubEle,Ele_All,5; bonus bMdef,6; bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2190,'Ancient_Shield_Of_Aeon','Ancient Shield Of Aeon',4,0,NULL,200,NULL,5,NULL,0,0x000FDF80,63,2,32,NULL,'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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2195,'Lian_Shield','Lian Shield',4,0,NULL,1300,NULL,50,NULL,1,0xFFFFFFFF,63,2,32,NULL,'65',1,3,'bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubRace,RC_Formless,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2196,'White_Gold_Shield','White Gold Shield',4,0,NULL,1800,NULL,140,NULL,1,0xFFFFFFFF,63,2,32,NULL,'100',1,4,'autobonus2 "{ bonus bMagicDamageReturn,20; }",200,2000,BF_MAGIC; bonus bUnbreakableShield;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2198,'Lapine_Shield','Lapine Shield',4,0,NULL,1000,NULL,25,NULL,1,0xFFFFFFFF,63,2,32,NULL,'100',1,3,'bonus bMdef,10; if (getrefine() > 7) { bonus bMatk,20; }',NULL,NULL); -# GM Shield -REPLACE INTO `item_db_re` VALUES (2199,'Ahura_Mazda','Ahura Mazdah',4,1,NULL,10,NULL,10000,NULL,0,0xFFFFFFFF,63,2,32,NULL,'1',1,1,'bonus bAllStats,50; bonus bMdef,99; bonus bShortWeaponDamageReturn,100; bonus2 bSubRace,RC_DemiHuman,95; bonus2 bSubRace,RC_Player_Human,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; bonus bDelayRate,-20; bonus bSpeedRate,25; bonus bIntravision; bonus bNoWalkDelay;',NULL,NULL); -#=================================================================== -# Headgears -#=================================================================== -REPLACE INTO `item_db_re` VALUES (2201,'Sunglasses','Sunglasses',4,5000,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,512,NULL,'0',0,12,'bonus2 bResEff,Eff_Blind,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2202,'Sunglasses_','Sunglasses',4,5000,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,512,NULL,'0',0,12,'bonus2 bResEff,Eff_Blind,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2203,'Glasses','Glasses',4,4000,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,512,NULL,'0',0,3,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2204,'Glasses_','Glasses',4,4000,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,512,NULL,'0',0,3,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2205,'Diver\'s_Goggles','Diver Goggles',4,3500,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,512,NULL,'0',0,10,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2206,'Wedding_Veil','Wedding Veil',4,23000,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,0,256,NULL,'0',1,44,'bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2207,'Fancy_Flower','Fancy Flower',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',0,4,'bonus2 bSubRace,RC_Plant,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2208,'Ribbon','Ribbon',4,800,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,0,256,NULL,'0',1,17,'bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2209,'Ribbon_','Ribbon',4,800,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,63,0,256,NULL,'0',1,17,'bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2210,'Hair_Band','Hair Band',4,500,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',0,9,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2211,'Bandana','Bandana',4,400,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,6,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2212,'Eye_Bandage','Eye Patch',4,1000,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,512,NULL,'0',0,13,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2213,'Cat_Hairband','Kitty Band',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,2,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2214,'Bunny_Band','Bunny Band',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,15,'bonus bLuk,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2215,'Flower_Hairband','Flower Band',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,5,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2216,'Biretta','Biretta',4,9000,NULL,100,NULL,8,NULL,0,0x00008110,63,2,256,NULL,'0',1,11,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2217,'Biretta_','Biretta',4,9000,NULL,100,NULL,8,NULL,1,0x00008110,63,2,256,NULL,'0',1,11,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2218,'Flu_Mask','Flu Mask',4,300,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'0',0,8,'bonus2 bResEff,Eff_Silence,1000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2219,'Flu_Mask_','Flu Mask',4,300,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'0',0,8,'bonus2 bResEff,Eff_Silence,1000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2220,'Hat','Hat',4,1000,NULL,200,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,16,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2221,'Hat_','Hat',4,1000,NULL,200,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,16,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2222,'Turban','Turban',4,4500,NULL,300,NULL,3,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',1,7,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2223,'Turban_','Turban',4,4500,NULL,300,NULL,3,NULL,1,0xFFFFFFFE,63,2,256,NULL,'0',1,7,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2224,'Goggle','Goggles',4,20,NULL,300,NULL,5,NULL,0,0x000E5CEA,63,2,768,NULL,'0',1,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2225,'Goggle_','Goggles',4,20,NULL,300,NULL,5,NULL,1,0x000E5CEA,63,2,768,NULL,'0',1,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2226,'Cap','Cap',4,12000,NULL,400,NULL,7,NULL,0,0x000E5CEA,63,2,256,NULL,'0',1,14,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2227,'Cap_','Cap',4,12000,NULL,400,NULL,7,NULL,1,0x000E5CEA,63,2,256,NULL,'0',1,14,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2228,'Helm','Helm',4,44000,NULL,600,NULL,13,NULL,0,0x00004082,63,2,256,NULL,'0',1,40,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2229,'Helm_','Helm',4,44000,NULL,600,NULL,13,NULL,1,0x00004082,63,2,256,NULL,'0',1,40,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2230,'Gemmed_Sallet','Gemmed Sallet',4,50000,NULL,500,NULL,8,NULL,0,0x000654E2,63,2,256,NULL,'0',1,0,'bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2231,'Gemmed_Sallet_','Gemmed Sallet',4,50000,NULL,500,NULL,8,NULL,1,0x000654E2,63,2,256,NULL,'0',1,0,'bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2232,'Circlet','Circlet',4,7500,NULL,300,NULL,6,NULL,0,0x00818314,63,2,256,NULL,'0',1,18,'bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2233,'Circlet_','Circlet',4,7500,NULL,300,NULL,6,NULL,1,0x00818314,63,2,256,NULL,'0',1,18,'bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2234,'Tiara','Tiara',4,20,NULL,400,NULL,7,NULL,0,0xFFFFFFFE,63,0,256,NULL,'45',1,19,'bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2235,'Crown','Crown',4,20,NULL,400,NULL,7,NULL,0,0xFFFFFFFE,63,1,256,NULL,'45',1,45,'bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2236,'Santa\'s_Hat','Santa Hat',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,20,'bonus bMdef,1; bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2237,'Weird_Goatee','Bandit Beard',4,2,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'0',0,21,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2238,'Weird_Moustache','Moustache',4,2,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'0',0,22,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2239,'One_Eyed_Glass','Monocle',4,10000,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,512,NULL,'0',0,23,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2240,'Beard','Beard',4,2,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'0',0,24,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2241,'Granpa_Beard','Grampa Beard',4,5000,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'0',0,25,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2242,'Luxury_Sunglasses','Purple Glasses',4,24000,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,63,2,512,NULL,'0',0,26,'bonus2 bResEff,Eff_Blind,1000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2243,'Spinning_Eyes','Geek Glasses',4,20000,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,512,NULL,'0',0,27,'bonus2 bResEff,Eff_Blind,1500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2244,'Big_Sis\'_Ribbon','Big Ribbon',4,15000,NULL,200,NULL,3,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',1,28,'bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2245,'Sweet_Gents','Sweet Gent',4,15000,NULL,400,NULL,5,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',1,29,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2246,'Golden_Gear','Golden Gear',4,20,NULL,900,NULL,5,NULL,0,0xFFFFFFFE,63,2,256,NULL,'40',1,30,'bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2247,'Oldman\'s_Romance','Romantic Gent',4,15000,NULL,400,NULL,5,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',1,31,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2248,'Western_Grace','Western Grace',4,15000,NULL,400,NULL,5,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',1,32,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2249,'Coronet','Coronet',4,20,NULL,300,NULL,5,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',1,33,'bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2250,'Fillet','Cute Ribbon',4,500,NULL,100,NULL,2,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',0,34,'bonus bMaxSP,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2251,'Holy_Bonnet','Monk Hat',4,30000,NULL,100,NULL,10,NULL,0,0x00008110,63,2,256,NULL,'0',1,35,'bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2252,'Star_Sparkling','Wizard Hat',4,20,NULL,300,NULL,7,NULL,0,0x00810204,63,2,256,NULL,'0',1,36,'bonus bMaxSP,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2253,'Sunflower','Sunflower',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',0,37,'bonus2 bSubRace,RC_Insect,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2254,'Angelic_Chain','Angel Wing',4,20,NULL,100,NULL,4,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',1,38,'bonus bMdef,3; bonus bAgi,1; bonus bLuk,1; bonus2 bSubRace,RC_Demon,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2255,'Satanic_Chain','Evil Wing',4,20,NULL,100,NULL,6,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',1,39,'bonus bMdef,2; bonus bStr,1; bonus2 bSubRace,RC_Angel,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2256,'Magestic_Goat','Majestic Goat',4,20,NULL,800,NULL,9,NULL,0,0x006444A2,63,2,256,NULL,'0',1,41,'bonus bStr,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2257,'Snowy_Horn','Unicorn Horn',4,20,NULL,100,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,42,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2258,'Sharp_Gear','Spiky Band',4,20,NULL,1000,NULL,12,NULL,0,0x0066D5F2,63,2,256,NULL,'50',1,43,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2259,'Mini_Propeller','Mini Propeller',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,46,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2260,'Mini_Glasses','Mini Glasses',4,28000,NULL,100,NULL,1,NULL,0,0xFFFFFFFE,63,2,512,NULL,'0',0,47,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2261,'Prontera_Army_Cap','Army Cap',4,20,NULL,400,NULL,8,NULL,0,0x000654E2,63,2,256,NULL,'0',1,48,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2262,'Pierrot_Nose','Clown Nose',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'0',0,49,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2263,'Gangster_Patch','Zorro Masque',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,63,2,512,NULL,'0',0,50,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2264,'Munak_Turban','Munak Hat',4,20,NULL,300,NULL,5,NULL,0,0xFFFFFFFF,63,2,769,NULL,'0',0,51,'bonus2 bSubRace,RC_Undead,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2265,'Ganster_Mask','Gangster Mask',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'0',0,52,'bonus2 bResEff,Eff_Silence,1500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2266,'Iron_Cane','Iron Cain',4,20,NULL,300,NULL,4,NULL,0,0x00004082,63,2,1,NULL,'50',0,53,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2267,'Cigar','Cigarette',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,63,2,1,NULL,'0',0,54,'bonus2 bSubRace,RC_Insect,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2268,'Smoking_Pipe','Pipe',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,63,2,1,NULL,'0',0,55,'bonus2 bSubRace,RC_Insect,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2269,'Centimental_Flower','Romantic Flower',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,63,2,1,NULL,'0',0,56,'bonus2 bSubRace,RC_Plant,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2270,'Centimental_Leaf','Romantic Leaf',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,63,2,1,NULL,'0',0,57,'bonus2 bSubRace,RC_Plant,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2271,'Jack_A_Dandy','Jack be Dandy',4,45000,NULL,100,NULL,1,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',0,58,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2272,'Stop_Post','Stop Post',4,20,NULL,400,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,59,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2273,'Doctor_Cap','Doctor Band',4,20,NULL,100,NULL,5,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',1,60,'bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2274,'Ghost_Bandana','Ghost Bandana',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',1,61,'bonus bAgi,2; bonus2 bSubEle,Ele_Ghost,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2275,'Red_Bandana','Red Bandana',4,20,NULL,100,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,62,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2276,'Eagle_Eyes','Angled Glasses',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,63,2,512,NULL,'0',0,63,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2277,'Nurse_Cap','Nurse Cap',4,20,NULL,100,NULL,4,NULL,0,0x00008110,63,2,256,NULL,'0',1,64,'bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2278,'Mr_Smile','Mr. Smile',4,60,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,513,NULL,'0',0,65,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2279,'Bomb_Wick','Bomb Wick',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',0,66,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2280,'Sahkkat','Sakkat',4,20,NULL,300,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,67,'bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2281,'Phantom_Of_Opera','Opera Masque',4,20,NULL,200,NULL,2,NULL,0,0xFFFFFFFE,63,2,513,NULL,'0',0,68,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2282,'Spirit_Chain','Halo',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',0,69,'bonus2 bSubEle,Ele_Holy,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2283,'Ear_Mufs','Ear Muffs',4,20,NULL,200,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,70,'bonus2 bResEff,Eff_Curse,1000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2284,'Antler','Antlers',4,20,NULL,500,NULL,8,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',1,71,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2285,'Apple_Of_Archer','Apple of Archer',4,20,NULL,200,NULL,1,NULL,0,0xFFFFFFFE,63,2,256,NULL,'30',1,72,'bonus bDex,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2286,'Elven_Ears','Elven Ears',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,63,2,512,NULL,'70',0,73,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2287,'Pirate_Bandana','Pirate Bandana',4,20,NULL,100,NULL,4,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',1,74,'bonus bStr,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2288,'Mr_Scream','Mr. Scream',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFE,63,2,513,NULL,'0',0,75,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2289,'Poo_Poo_Hat','Poo Poo Hat',4,20,NULL,700,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',0,76,'bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2290,'Funeral_Costume','Funeral Hat',4,3000,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',0,77,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2291,'Masquerade','Masquerade',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,63,2,512,NULL,'0',0,78,'bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player_Human,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2292,'Welding_Mask','Welding Mask',4,20,NULL,300,NULL,2,NULL,0,0x00040420,63,2,513,NULL,'50',0,79,'bonus2 bSubEle,Ele_Fire,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2293,'Pretend_Murdered','Pretend Murdered',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',0,80,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2294,'Star_Dust','Stellar',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,81,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2295,'Blinker','Blinker',4,1500,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,63,2,512,NULL,'0',0,82,'bonus2 bResEff,Eff_Blind,10000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2296,'Binoculars','Binoculars',4,20,NULL,100,NULL,2,NULL,0,0x00080808,63,2,512,NULL,'50',0,83,'bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2297,'Goblini_Mask','Goblin Mask',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFE,63,2,513,NULL,'0',0,84,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2298,'Green_Feeler','Green Feeler',4,20,NULL,100,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',0,85,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2299,'Viking_Helm','Orc Helm',4,20,NULL,500,NULL,9,NULL,0,0x000654E2,63,2,256,NULL,'0',1,86,NULL,NULL,NULL); -#=================================================================== -# Armors -#=================================================================== -REPLACE INTO `item_db_re` VALUES (2301,'Cotton_Shirt','Cotton Shirt',4,10,NULL,100,NULL,10,NULL,0,0xFFFFFFFF,63,2,16,NULL,'0',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2302,'Cotton_Shirt_','Cotton Shirt',4,10,NULL,100,NULL,10,NULL,1,0xFFFFFFFF,63,2,16,NULL,'0',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2303,'Leather_Jacket','Jacket',4,200,NULL,200,NULL,15,NULL,0,0xFFFFFFFF,63,2,16,NULL,'0',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2304,'Leather_Jacket_','Jacket',4,200,NULL,200,NULL,15,NULL,1,0xFFFFFFFF,63,2,16,NULL,'0',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2305,'Adventure_Suit','Adventurer\'s Suit',4,1000,NULL,300,NULL,20,NULL,0,0xFFFFFFFF,63,2,16,NULL,'0',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2306,'Adventurere\'s_Suit_','Adventurer\'s Suit',4,1000,NULL,300,NULL,20,NULL,1,0xFFFFFFFF,63,2,16,NULL,'0',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2307,'Mantle','Mantle',4,10000,NULL,600,NULL,37,NULL,0,0xFFFFFFFE,63,2,16,NULL,'0',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2308,'Mantle_','Mantle',4,10000,NULL,600,NULL,37,NULL,1,0xFFFFFFFE,63,2,16,NULL,'0',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2309,'Coat','Coat',4,22000,NULL,1200,NULL,42,NULL,0,0xFFFFFFFE,63,2,16,NULL,'0',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2310,'Coat_','Coat',4,22000,NULL,1200,NULL,42,NULL,1,0xFFFFFFFE,63,2,16,NULL,'0',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2311,'Mink_Coat','Mink Coat',4,20,NULL,2300,NULL,30,NULL,1,0xFFFFFFFE,63,2,16,NULL,'30',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2312,'Padded_Armor','Padded Armor',4,48000,NULL,2800,NULL,35,NULL,0,0x000654E2,63,2,16,NULL,'0',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2313,'Padded_Armor_','Padded Armor',4,48000,NULL,2800,NULL,35,NULL,1,0x000654E2,63,2,16,NULL,'0',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2314,'Chain_Mail','Chain Mail',4,65000,NULL,3300,NULL,55,NULL,0,0x000654E2,63,2,16,NULL,'0',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2315,'Chain_Mail_','Chain Mail',4,65000,NULL,3300,NULL,55,NULL,1,0x000654E2,63,2,16,NULL,'0',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2316,'Plate_Armor','Full Plate',4,80000,NULL,4500,NULL,70,NULL,0,0x00004082,63,2,16,NULL,'40',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2317,'Plate_Armor_','Full Plate',4,80000,NULL,4500,NULL,70,NULL,1,0x00004082,63,2,16,NULL,'40',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2318,'Clothes_Of_The_Lord','Lord\'s Clothes',4,20,NULL,2500,NULL,59,NULL,1,0x00040420,63,2,16,NULL,'70',1,0,'bonus bMdef,5; bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2319,'Glittering_Clothes','Glittering Jacket',4,20,NULL,2500,NULL,58,NULL,1,0xFFFFFFFE,63,2,16,NULL,'60',1,0,'bonus bMdef,5; bonus2 bAddEff,Eff_Blind,300;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2320,'Formal_Suit','Formal Suit',4,20,NULL,300,NULL,40,NULL,1,0xFFFFFFFE,63,2,16,NULL,'0',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2321,'Silk_Robe','Silk Robe',4,8000,NULL,400,NULL,20,NULL,0,0x0085C7B6,63,2,16,NULL,'0',1,0,'bonus bMdef,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2322,'Silk_Robe_','Silk Robe',4,8000,NULL,400,NULL,20,NULL,1,0x0085C7B6,63,2,16,NULL,'0',1,0,'bonus bMdef,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2323,'Scapulare','Scapulare',4,6500,NULL,400,NULL,24,NULL,0,0x00008110,63,2,16,NULL,'0',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2324,'Scapulare_','Scapulare',4,6500,NULL,400,NULL,24,NULL,1,0x00008110,63,2,16,NULL,'0',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2325,'Saint_Robe','Saint\'s Robe',4,54000,NULL,600,NULL,50,NULL,0,0x00048530,63,2,16,NULL,'0',1,0,'bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2326,'Saint_Robe_','Saint\'s Robe',4,54000,NULL,600,NULL,50,NULL,1,0x00048530,63,2,16,NULL,'0',1,0,'bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2327,'Holy_Robe','Holy Robe',4,20,NULL,1700,NULL,57,NULL,0,0x00008110,63,2,16,NULL,'60',1,0,'bonus bMdef,5; bonus2 bSubRace,RC_Demon,15; bonus2 bSubEle,Ele_Dark,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2328,'Wooden_Mail','Wooden Mail',4,5500,NULL,1000,NULL,25,NULL,0,0x000444A2,63,2,16,NULL,'0',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2329,'Wooden_Mail_','Wooden Mail',4,5500,NULL,1000,NULL,25,NULL,1,0x000444A2,63,2,16,NULL,'0',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2330,'Tights','Tights',4,71000,NULL,500,NULL,27,NULL,0,0x00080808,63,2,16,NULL,'45',1,0,'bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2331,'Tights_','Tights',4,71000,NULL,500,NULL,27,NULL,1,0x00080808,63,2,16,NULL,'45',1,0,'bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2332,'Silver_Robe','Silver Robe',4,7000,NULL,700,NULL,23,NULL,0,0x00810204,63,2,16,NULL,'0',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2333,'Silver_Robe_','Silver Robe',4,7000,NULL,700,NULL,23,NULL,1,0x00810204,63,2,16,NULL,'0',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2334,'Mage_Coat','Mage Coat',4,20,NULL,600,NULL,40,NULL,0,0x00810204,63,2,16,NULL,'50',1,0,'bonus bMdef,5; bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2335,'Thief_Clothes','Thief Clothes',4,74000,NULL,100,NULL,40,NULL,0,0x02021040,63,2,16,NULL,'0',1,0,'bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2336,'Thief_Clothes_','Thief Clothes',4,74000,NULL,100,NULL,40,NULL,1,0x02021040,63,2,16,NULL,'0',1,0,'bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2337,'Ninja_Suit','Ninja Suit',4,20,NULL,1500,NULL,58,NULL,0,0x02021040,63,2,16,NULL,'50',1,0,'bonus bAgi,1; bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2338,'Wedding_Dress','Wedding Dress',4,43000,NULL,500,NULL,10,NULL,0,0xFFFFFFFE,63,2,16,NULL,'0',1,0,'bonus bMdef,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2339,'G_Strings','Pantie',4,1000,NULL,100,NULL,22,NULL,0,0xFFFFFFFF,63,2,16,NULL,'0',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2340,'Novice_Breast','Novice Breastplate',4,89000,NULL,500,NULL,4,NULL,1,0x00000001,63,2,16,NULL,'10',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2341,'Full_Plate_Armor','Legion Plate Armor',4,94000,NULL,5500,NULL,79,NULL,0,0x00004000,63,2,16,NULL,'70',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2342,'Full_Plate_Armor_','Legion Plate Armor',4,102500,NULL,5500,NULL,79,NULL,1,0x00004000,63,2,16,NULL,'70',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2343,'Robe_Of_Casting','Robe of Cast',4,124800,NULL,1100,NULL,40,NULL,0,0x00810200,63,2,16,NULL,'75',1,0,'bonus bVariableCastrate,-3; bonus bMdef,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2344,'Flame_Sprits_Armor','Lucius\'s Fierce Armor of Volcano',4,136000,NULL,2200,NULL,25,NULL,0,0x000444A2,63,2,16,NULL,'45',1,0,'bonus bDefEle,Ele_Fire;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2345,'Flame_Sprits_Armor_','Lucius\'s Fierce Armor of Volcano',4,136000,NULL,2200,NULL,25,NULL,1,0xFFFFFFFE,63,2,16,NULL,'45',1,0,'bonus bDefEle,Ele_Fire;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2346,'Water_Sprits_Armor','Saphien\'s Armor of Ocean',4,136000,NULL,2200,NULL,25,NULL,0,0x000444A2,63,2,16,NULL,'45',1,0,'bonus bDefEle,Ele_Water;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2347,'Water_Sprits_Armor_','Saphien\'s Armor of Ocean',4,136000,NULL,2200,NULL,25,NULL,1,0xFFFFFFFE,63,2,16,NULL,'45',1,0,'bonus bDefEle,Ele_Water;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2348,'Wind_Sprits_Armor','Aebecee\'s Raging Typhoon Armor',4,136000,NULL,2200,NULL,25,NULL,0,0x000444A2,63,2,16,NULL,'45',1,0,'bonus bDefEle,Ele_Wind;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2349,'Wind_Sprits_Armor_','Aebecee\'s Raging Typhoon Armor',4,136000,NULL,2200,NULL,25,NULL,1,0xFFFFFFFE,63,2,16,NULL,'45',1,0,'bonus bDefEle,Ele_Wind;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2350,'Earth_Sprits_Armor','Claytos Cracking Earth Armor',4,136000,NULL,2200,NULL,25,NULL,0,0x000444A2,63,2,16,NULL,'45',1,0,'bonus bDefEle,Ele_Earth;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2351,'Earth_Sprits_Armor_','Claytos Cracking Earth Armor',4,136000,NULL,2200,NULL,25,NULL,1,0xFFFFFFFE,63,2,16,NULL,'45',1,0,'bonus bDefEle,Ele_Earth;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2352,'Novice_Plate','Tattered Novice Ninja Suit',4,1,NULL,1,NULL,25,NULL,0,0x00000001,63,2,16,NULL,'0',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2353,'Odin\'s_Blessing','Odin\'s Blessing',4,30000,NULL,2500,NULL,53,NULL,1,0xFFFFFFFE,63,2,16,NULL,'65',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2354,'Goibne\'s_Armor','Goibne\'s Armor',4,50000,NULL,3500,NULL,58,NULL,0,0xFFFFFFFE,63,2,16,NULL,'54',1,0,'bonus bVit,2; bonus bMaxHPrate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2355,'Angel\'s_Protection','Angelic Protection',4,10000,NULL,600,NULL,25,NULL,1,0x00000001,63,2,16,NULL,'40',1,0,'bonus bMdef,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2356,'Vestment_Of_Grace','Blessed Holy Robe',4,20,NULL,2500,NULL,45,NULL,1,0x00008100,63,2,16,NULL,'70',1,0,'bonus bMdef,5; bonus2 bResEff,Eff_Blind,8000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2357,'Valkyrie_Armor','Valkyrian Armor',4,0,NULL,2800,NULL,55,NULL,1,0xFFFFFFFE,18,2,16,NULL,'1',1,0,'bonus bAllStats,1; bonus bUnbreakableArmor; 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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2358,'Dress_Of_Angel','Angel\'s Dress',4,20,NULL,1000,NULL,5,NULL,0,0xFFFFFFFF,63,2,16,NULL,'0',0,0,'bonus bLuk,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2359,'Ninja_Suit_','Ninja Suit',4,20,NULL,1500,NULL,58,NULL,1,0x02021040,63,2,16,NULL,'50',1,0,'bonus bAgi,1; bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2360,'Robe_Of_Casting_','Robe of Cast',4,124800,NULL,1100,NULL,40,NULL,1,0x00810200,63,2,16,NULL,'75',1,0,'bonus bVariableCastrate,-3; bonus bMdef,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2361,'Blue_Aodai','Blue Robe',4,20,NULL,500,NULL,0,NULL,0,0xFFFFFFFE,63,2,16,NULL,'1',1,0,'bonus bAllStats,3; bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2362,'Red_Aodai','Red Robe',4,20,NULL,500,NULL,0,NULL,0,0xFFFFFFFE,63,2,16,NULL,'1',1,0,'bonus bAllStats,3; bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2363,'White_Aodai','White Robe',4,20,NULL,500,NULL,0,NULL,0,0x00000001,63,2,16,NULL,'1',1,0,'bonus bAllStats,3; bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2364,'Meteo_Plate_Armor','Meteo Plate Armor',4,20,NULL,3000,NULL,85,NULL,1,0x000444A2,18,2,16,NULL,'55',1,0,'bonus2 bResEff,Eff_Stun,3000; bonus2 bResEff,Eff_Freeze,3000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2365,'Orleans_Gown','Orleans\'s Gown',4,20,NULL,300,NULL,15,NULL,1,0xFFFFFFFE,18,2,16,NULL,'55',1,0,'bonus bVariableCastrate,15; bonus bNoCastCancel;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2366,'Divine_Cloth','Divine Cloth',4,20,NULL,1500,NULL,50,NULL,1,0xFFFFFFFE,18,2,16,NULL,'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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2367,'Sniping_Suit','Sniping Suit',4,20,NULL,750,NULL,42,NULL,1,0x00000800,18,2,16,NULL,'50',1,0,'bonus bMdef,5; bonus bCritical,6+(readparam(bLuk)/10); bonus bDelayRate,-23;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2368,'Golden_Armor','Golden Armor',4,20,NULL,2000,NULL,4,NULL,0,0xFFFFFFFF,63,2,16,NULL,'0',0,0,'bonus bMdef,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2369,'Freyja_Overcoat','Freyja Overcoat',4,0,NULL,500,NULL,12,NULL,0,0xFFFFFFFE,63,2,16,NULL,'0',0,0,'bonus bUnbreakableArmor; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2370,'Used_Mage_Coat','Used Mage Coat',4,0,NULL,0,NULL,15,NULL,0,0xFFFFFFFF,63,2,16,NULL,'0',0,0,'bonus bMaxHP,300; bonus bMaxSP,30; bonus bBaseAtk,10; bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2371,'G_Strings_','Pantie',4,1000,NULL,100,NULL,22,NULL,1,0xFFFFFFFF,63,2,16,NULL,'0',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2372,'Mage_Coat_','Mage Coat',4,20,NULL,600,NULL,40,NULL,1,0x00810204,63,2,16,NULL,'50',1,0,'bonus bMdef,5; bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2373,'Holy_Robe_','Holy Robe',4,20,NULL,1700,NULL,57,NULL,1,0x00008110,63,2,16,NULL,'60',1,0,'bonus bMdef,5; bonus2 bSubRace,RC_Demon,15; bonus2 bSubEle,Ele_Dark,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2374,'Diabolus_Robe','Diabolus Robe',4,20,NULL,300,NULL,57,NULL,1,0x00098B1C,18,2,16,NULL,'55',1,0,'bonus bMaxSP,150; bonus bMdef,5; bonus bHealPower,6; bonus bDelayRate,-10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2375,'Diabolus_Armor','Diabolus Armor',4,20,NULL,600,NULL,79,NULL,1,0x000654E2,18,2,16,NULL,'55',1,0,'bonus bStr,2; bonus bDex,1; bonus bMdef,5; bonus bMaxHP,150; bonus2 bResEff,Eff_Stun,500; bonus2 bResEff,Eff_Stone,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2376,'Assaulter_Plate','Assaulter Plate',4,10,NULL,0,NULL,57,NULL,1,0x006444A2,63,2,16,NULL,'80',1,0,'bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2377,'Elite_Engineer_Armor','Elite Engineer Armor',4,10,NULL,0,NULL,50,NULL,1,0x00040420,63,2,16,NULL,'80',1,0,'bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2378,'Assassin_Robe','Assassin Robe',4,10,NULL,0,NULL,41,NULL,1,0x02021040,63,2,16,NULL,'80',1,0,'bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2379,'Warlock_Battle_Robe','Warlock\'s Battle Robe',4,10,NULL,0,NULL,36,NULL,1,0x00810204,63,2,16,NULL,'80',1,0,'bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2380,'Medic_Robe','Medic\'s Robe',4,10,NULL,0,NULL,25,NULL,1,0x00008110,63,2,16,NULL,'80',1,0,'bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2381,'Elite_Archer_Suit','Elite Archer Suit',4,10,NULL,0,NULL,35,NULL,1,0x00080808,63,2,16,NULL,'80',1,0,'bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2382,'Elite_Shooter_Suit','Elite Shooter Suit',4,10,NULL,0,NULL,25,NULL,1,0x41000000,63,2,16,NULL,'80',1,0,'bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2383,'Brynhild','Brynhild',4,20,NULL,400,NULL,120,NULL,0,0xFFFFFFFF,63,2,16,NULL,'94',0,0,'bonus bMdef,10; bonus bMaxHP,20*BaseLevel; bonus bMaxSP,5*BaseLevel; bonus2 bAddClass,Class_All,10; bonus bMatkRate,10; bonus bUnbreakableArmor; bonus bNoKnockback;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2384,'Spritual_Tunic','Spiritual Tunic',4,20,NULL,0,NULL,10,NULL,0,0xFFFFFFFF,63,2,16,NULL,'0',0,0,'bonus bMdef,5; 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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2385,'Recuperative_Armor','Recuperative Armor',4,20,NULL,0,NULL,12,NULL,0,0xFFFFFFFF,63,2,16,NULL,'0',0,0,'bonus bNoRegen,1; bonus bNoRegen,2; bonus bHPGainValue,60; bonus bSPGainValue,6; bonus bMagicHPGainValue,60; bonus bMagicSPGainValue,6;',NULL,'heal 0,-100;'); -REPLACE INTO `item_db_re` VALUES (2386,'Chameleon_Armor','Chameleon Armor',4,20,NULL,1700,NULL,55,NULL,0,0x00CFFF80,18,2,16,NULL,'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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2387,'Sprint_Mail','Sprint Mail',4,20,NULL,1000,NULL,20,NULL,1,0x00CFFF80,18,2,16,NULL,'70',1,0,'bonus bVit,1; bonus bHPrecovRate,5; bonus bAddItemHealRate,3; bonus2 bSkillHeal,"AL_HEAL",3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2388,'Kandura','Kandura',4,20,NULL,300,NULL,36,NULL,1,0x00001000,18,2,16,NULL,'70',1,0,'bonus bAgi,1; bonus bFlee,5; bonus bAspdRate,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2389,'Armor_Of_Naga','Armor of Naga',4,20,NULL,1000,NULL,45,NULL,1,0x00CFFF80,18,2,16,NULL,'70',1,0,'bonus bMdef,2; autobonus "{ bonus bBaseAtk,20; }",10,10000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2390,'Improved_Tights','Improved Tights',4,20,NULL,400,NULL,38,NULL,1,0x00080808,18,2,16,NULL,'75',1,0,'bonus bMdef,2; bonus bFlee2,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2391,'Life_Link','Life Link',4,20,NULL,3500,NULL,75,NULL,1,0x00004082,18,2,16,NULL,'82',1,0,'bonus bVit,2; bonus bMdef,5; bonus bHPrecovRate,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2392,'Old_Pant','Old Green Pantie',4,0,NULL,0,NULL,10,NULL,0,0xFFFFFFFF,63,2,16,NULL,'0',0,0,'bonus bStr,2; bonus bVit,2; bonus bMaxHP,200; bonus3 bAutoSpellWhenHit,"MO_CALLSPIRITS",5,20; bonus bMdef,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2393,'N_Adventurer\'s_Suit','Novice Adventurer\'s Suit',4,0,NULL,0,NULL,45,NULL,1,0xFFFFFFFF,63,2,16,NULL,'0',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2394,'Krieger_Suit1','Glorious Suit',4,20,NULL,0,NULL,10,NULL,0,0xFFFFFFFE,63,2,16,NULL,'81',1,0,'bonus bMaxHPrate,20; bonus2 bSubRace,RC_DemiHuman,7; bonus2 bSubRace,RC_Player_Human,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2395,'Krieger_Suit2','Glorious Popularized Suit',4,20,NULL,0,NULL,10,NULL,0,0xFFFFFFFE,63,2,16,NULL,'61',1,0,'bonus bMaxHP,600; bonus bSPrecovRate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2396,'Krieger_Suit3','Glorious Mass-Production Suit',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,63,2,16,NULL,'0',1,0,'bonus bMaxHP,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2397,'Incredible_Coat','Incredible Event Resignation Coat',4,10,NULL,900,NULL,2,NULL,0,0xFFFFFFFE,63,2,16,NULL,'0',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2398,'Sniping_Suit_M','Sniping Suit',4,20,NULL,750,NULL,42,NULL,1,0x00000800,18,2,16,NULL,'50',1,0,'bonus bMdef,5; bonus bCritical,6+(readparam(bLuk)/10); bonus bDelayRate,-23;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2399,'Dragon_Vest','Dragon Vest',4,20,NULL,500,NULL,20,NULL,1,0xFFFFFFFE,18,2,16,NULL,'0',1,0,'bonus bMdef,3;',NULL,NULL); -#=================================================================== -# Footgears -#=================================================================== -REPLACE INTO `item_db_re` VALUES (2401,'Sandals','Sandals',4,400,NULL,200,NULL,5,NULL,0,0xFFFFFFFF,63,2,64,NULL,'0',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2402,'Sandals_','Sandals',4,400,NULL,200,NULL,5,NULL,1,0xFFFFFFFF,63,2,64,NULL,'0',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2403,'Shoes','Shoes',4,3500,NULL,400,NULL,10,NULL,0,0xFFFFFFFE,63,2,64,NULL,'0',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2404,'Shoes_','Shoes',4,3500,NULL,400,NULL,10,NULL,1,0xFFFFFFFE,63,2,64,NULL,'0',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2405,'Boots','Boots',4,18000,NULL,600,NULL,16,NULL,0,0x416E5CEA,63,2,64,NULL,'0',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2406,'Boots_','Boots',4,18000,NULL,600,NULL,16,NULL,1,0x416E5CEA,63,2,64,NULL,'0',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2407,'Chrystal_Pumps','Crystal Pumps',4,20,NULL,100,NULL,5,NULL,0,0xFFFFFFFE,63,0,64,NULL,'0',1,0,'bonus bMdef,10; bonus bLuk,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2408,'Cuffs','Shackles',4,5000,NULL,3000,NULL,18,NULL,0,0xFFFFFFFF,63,2,64,NULL,'0',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2409,'Spiky_Heel','High Heels',4,8500,NULL,600,NULL,4,NULL,0,0xFFFFFFFE,63,2,64,NULL,'0',1,0,'bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2410,'Sleipnir','Sleipnir',4,20,NULL,3500,NULL,40,NULL,0,0xFFFFFFFF,63,2,64,NULL,'94',0,0,'bonus bMdef,10; bonus bMaxHPrate,20; bonus bMaxSPrate,20; bonus bSPrecovRate,25; bonus bSpeedRate,25; bonus bInt,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2411,'Grave','Greaves',4,48000,NULL,750,NULL,27,NULL,0,0x00004080,63,2,64,NULL,'65',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2412,'Grave_','Greaves',4,54000,NULL,750,NULL,15,NULL,1,0x00004080,63,2,64,NULL,'65',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2413,'Safty_Boots','Safety Boots',4,34000,NULL,350,NULL,6,NULL,0,0x00004082,63,2,64,NULL,'30',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2414,'Novice_Boots','Novice Slippers',4,1,NULL,1,NULL,5,NULL,0,0x00000001,63,2,64,NULL,'0',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2415,'Slipper','Bunny Slipper',4,34000,NULL,300,NULL,3,NULL,1,0xFFFFFFFE,63,0,64,NULL,'30',1,0,'bonus bLuk,3; bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2416,'Novice_Shoes','Novice Shoes',4,35000,NULL,500,NULL,8,NULL,1,0x00000001,63,2,64,NULL,'40',1,0,'bonus bMaxHPrate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2417,'Fricco_Shoes','Fricco\'s Shoes',4,30000,NULL,500,NULL,12,NULL,0,0xFFFFFFFE,63,2,64,NULL,'65',1,0,'bonus bAgi,2; bonus2 bAddItemGroupHealRate,IG_Potion,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2418,'Vidar\'s_Boots','Vidar\'s Boots',4,30000,NULL,650,NULL,13,NULL,0,0xFFFFFFFE,63,2,64,NULL,'65',1,0,'bonus bMaxHPrate,9; bonus bMaxSPrate,9;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2419,'Goibne\'s_Combat_Boots','Goibne\'s Greaves',4,30000,NULL,700,NULL,13,NULL,0,0xFFFFFFFE,63,2,64,NULL,'54',1,0,'bonus bMdef,3; bonus bMaxHPrate,5; bonus bMaxSPrate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2420,'Angel\'s_Arrival','Angel\'s Reincarnation',4,10000,NULL,300,NULL,8,NULL,1,0x00000001,63,2,64,NULL,'25',1,0,'bonus bMaxHP,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2421,'Valkyrie_Shoes','Valkyrian Shoes',4,0,NULL,500,NULL,13,NULL,1,0xFFFFFFFE,18,2,64,NULL,'1',1,0,'bonus bUnbreakableShoes; 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);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2422,'High_Fashion_Sandals','High Fashion Sandals',4,24000,NULL,200,NULL,7,NULL,1,0x00818314,63,2,64,NULL,'40',1,0,'bonus bMdef,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2423,'Variant_Shoes','Variant Shoes',4,20,NULL,500,NULL,13,NULL,0,0xFFFFFFFE,18,2,64,NULL,'85',1,0,'.@r = getrefine(); bonus bMaxHPrate,20-.@r; bonus bMaxSPrate,20-.@r; bonus bDef,.@r/2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2424,'Tidal_Shoes','Tidal Shoes',4,20,NULL,300,NULL,13,NULL,1,0xFFFFFFFE,18,2,64,NULL,'55',1,0,'bonus2 bSubEle,Ele_Water,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2425,'Black_Leather_Boots','Black Leather Boots',4,20,NULL,500,NULL,16,NULL,0,0xFFFFFFFE,18,2,64,NULL,'55',1,0,'bonus bAgi,(getrefine()>=9?3:1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2426,'Shadow_Walk','Shadow Walk',4,20,NULL,2000,NULL,0,NULL,0,0xFFFFFFFE,18,2,64,NULL,'75',1,0,'bonus bMdef,10; bonus5 bAutoSpellWhenHit,"AS_CLOAKING",max(2,getskilllv("AS_CLOAKING")),100,BF_MAGIC,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2427,'Golden_Shoes','Golden Shoes',4,20,NULL,300,NULL,4,NULL,0,0xFFFFFFFF,63,2,64,NULL,'0',0,0,'bonus bMdef,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2428,'Freyja_Boots','Freyja Boots',4,0,NULL,300,NULL,10,NULL,0,0xFFFFFFFE,63,2,64,NULL,'0',0,0,'bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2429,'Iron_Boots01','Iron Boots',4,0,NULL,1500,NULL,5,NULL,0,0x000E5CEA,63,2,64,NULL,'0',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2430,'Iron_Boots02','Iron Boots',4,0,NULL,800,NULL,5,NULL,0,0xFFFFFFFF,63,2,64,NULL,'0',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2431,'Valley_Shoes','Valley Shoes',4,20,NULL,0,NULL,10,NULL,0,0xFFFFFFFF,63,2,64,NULL,'0',0,0,'bonus bMaxHPrate,7; bonus bMaxSPrate,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2432,'Spiky_Heel_','High Heels',4,8500,NULL,600,NULL,10,NULL,1,0xFFFFFFFE,63,2,64,NULL,'0',1,0,'bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2433,'Diabolus_Boots','Diabolus Boots',4,20,NULL,250,NULL,15,NULL,1,0x00CFFF80,18,2,64,NULL,'0',1,0,'bonus bMaxHP,(BaseLevel*10);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2434,'Black_Leather_Boots_','Black Leather Boots',4,20,NULL,500,NULL,16,NULL,1,0xFFFFFFFE,18,2,64,NULL,'55',1,0,'bonus bAgi,(getrefine()>=9?3:1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2435,'Battle_Greave','Battle Greaves',4,10,NULL,0,NULL,15,NULL,1,0x026654E2,63,2,64,NULL,'80',1,0,'bonus bMaxHP,100; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2436,'Combat_Boots','Combat Boots',4,10,NULL,0,NULL,9,NULL,1,0x00898B1C,63,2,64,NULL,'80',1,0,'bonus bMaxHP,100; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2437,'Battle_Boots','Battle Boots',4,10,NULL,0,NULL,9,NULL,1,0x41000000,63,2,64,NULL,'80',1,0,'bonus bMaxHP,100; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2438,'Paw_Of_Cat','Paw Of Cat',4,10,NULL,300,NULL,0,NULL,0,0xFFFFFFFF,63,2,64,NULL,'80',1,0,'bonus bFlee,5; bonus bAgi,1; /* skill "ALL_CATCRY",1; */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2439,'Refresh_Shoes','Refresh Shoes',4,20,NULL,0,NULL,9,NULL,0,0xFFFFFFFF,63,2,64,NULL,'0',0,0,'bonus bMaxHPrate,17; bonus bMaxSPrate,8; bonus2 bHPRegenRate,20,10000; bonus2 bSPRegenRate,3,10000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2440,'Sprint_Shoes','Sprint Shoes',4,20,NULL,300,NULL,10,NULL,1,0x00CFFF80,18,2,64,NULL,'70',1,0,'bonus bAgi,1; bonus bSPrecovRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2441,'Beach_Sandal','Beach Sandals',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFF,63,2,64,NULL,'0',1,0,'bonus bStr,1; bonus bInt,1; bonus bAgi,1; bonus2 bSubEle,Ele_Fire,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2442,'Boots_Perforated','Red Stocking Boots',4,0,NULL,0,NULL,7,NULL,0,0xFFFFFFFF,63,2,64,NULL,'0',0,0,'bonus bLuk,2; bonus bHPrecovRate,10; bonus bSPrecovRate,10; bonus3 bAutoSpellWhenHit,"WZ_QUAGMIRE",3,30; bonus bMdef,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2443,'Fish_Shoes','Fisher\'s Boots',4,10,NULL,250,NULL,0,NULL,0,0xFFFFFFFF,63,2,64,NULL,'0',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2444,'Krieger_Shoes1','Glorious Shoes',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,63,2,64,NULL,'81',1,0,'bonus bMaxHPrate,10; bonus2 bSubRace,RC_DemiHuman,4; bonus2 bSubRace,RC_Player_Human,4; bonus3 bAutoSpellWhenHit,"AL_INCAGI",1,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2445,'Krieger_Shoes2','Glorious Popularized Shoes',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,63,2,64,NULL,'61',1,0,'bonus bMaxHPrate,5; bonus bMaxSPrate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2446,'Krieger_Shoes3','Glorious Mass-Production Shoes',4,20,NULL,0,NULL,10,NULL,0,0xFFFFFFFE,63,2,64,NULL,'0',1,0,'bonus bMaxHPrate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2447,'Military_Boots','Army Boots',4,0,NULL,1000,NULL,5,NULL,0,0xFFFFFFFE,63,2,64,NULL,'0',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2448,'Air_Boss','Air Boss',4,0,NULL,500,NULL,2,NULL,0,0xFFFFFFFF,63,2,64,NULL,'0',1,0,'bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2449,'Variant_Shoes_M','Variant Shoes',4,20,NULL,500,NULL,3,NULL,0,0xFFFFFFFE,18,2,64,NULL,'85',1,0,'.@r = getrefine(); bonus bMaxHPrate,20-.@r; bonus bMaxSPrate,20-.@r; bonus bDef,.@r/2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2450,'Vital_Tree_Shoes','Vital Tree Shoes',4,20,NULL,500,NULL,16,NULL,0,0xFFFFFFFE,18,2,64,NULL,'60',1,0,'bonus bMaxHPrate,10; bonus2 bHPRegenRate,30,10000; bonus bHealpower2,5; bonus bAddItemHealRate,5; bonus bMdef,3; bonus bVit,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2451,'Freyja_SSandal7','Freyja Sprit Sandals',4,20,NULL,400,NULL,5,NULL,0,0xFFFFFFFF,63,2,64,NULL,'20',0,0,'bonus bMaxHPrate,8; bonus bMaxSPrate,8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2452,'Freyja_SSandal30','Freyja Sprit Sandals',4,20,NULL,400,NULL,5,NULL,0,0xFFFFFFFF,63,2,64,NULL,'20',0,0,'bonus bMaxHPrate,8; bonus bMaxSPrate,8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2453,'Freyja_SSandal60','Freyja Sprit Sandals',4,20,NULL,400,NULL,5,NULL,0,0xFFFFFFFF,63,2,64,NULL,'20',0,0,'bonus bMaxHPrate,8; bonus bMaxSPrate,8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2454,'Freyja_SSandal90','Freyja Sprit Sandals',4,20,NULL,400,NULL,5,NULL,0,0xFFFFFFFF,63,2,64,NULL,'20',0,0,'bonus bMaxHPrate,8; bonus bMaxSPrate,8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2455,'Time_Keepr_Boots','Time Keeper\'s Boots',4,30000,NULL,0,NULL,17,NULL,0,0xFFFFFFFF,63,2,64,NULL,'0',1,0,'bonus bMdef,1; bonus bMaxHP,100; bonus bHPrecovRate,10; bonus bSPrecovRate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2456,'Para_Team_Boots1','Eden Team Boots I',4,0,NULL,0,NULL,14,NULL,0,0xFFFFFFFF,63,2,64,NULL,'7',0,0,'bonus bHPrecovRate,10; bonus bSPrecovRate,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2457,'Para_Team_Boots2','Eden Team Boots II',4,0,NULL,0,NULL,16,NULL,0,0xFFFFFFFF,63,2,64,NULL,'26',0,0,'bonus bHPrecovRate,12; bonus bSPrecovRate,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2458,'Para_Team_Boots3','Eden Team Boots III',4,0,NULL,0,NULL,18,NULL,0,0xFFFFFFFF,63,2,64,NULL,'40',0,0,'bonus bHPrecovRate,14; bonus bSPrecovRate,6;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2459,'Upg_Shoes','Upg Shoes',4,20,NULL,200,NULL,15,NULL,1,0xFFFFFFFE,63,2,64,NULL,'0',1,0,'bonus bMaxHPrate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2460,'Upg_Boots','Upg Boots',4,20,NULL,300,NULL,21,NULL,1,0x416E5CEA,63,2,64,NULL,'0',1,0,'bonus bMaxHPrate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2461,'Upg_Greave','Upg Greaves',4,20,NULL,400,NULL,32,NULL,1,0x00004080,63,2,64,NULL,'0',1,0,'bonus bMaxHPrate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2462,'Sleipnir_C','Sleipnir',4,20,NULL,0,NULL,40,NULL,0,0xFFFFFFFF,63,2,64,NULL,'94',0,0,'bonus bMdef,10; bonus bMaxHPrate,20; bonus bMaxSPrate,20; bonus bSPrecovRate,15; bonus bSpeedRate,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2463,'Feral_Boots','Feral Boots',4,20,NULL,0,NULL,12,NULL,0,0xFFFFFFFF,63,2,64,NULL,'75',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2464,'No_Fear_Shoes','No Fear Shoes',4,0,NULL,0,NULL,6,NULL,0,0xFFFFFFFF,63,2,64,NULL,'20',0,0,'bonus bStr,1; bonus bInt,1; bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2465,'Dance_Shoes','Dance Shoes',4,20,NULL,300,NULL,15,NULL,1,0x00080000,63,2,64,NULL,'105',1,0,'bonus bAgi,1; bonus bAspdRate,2; bonus2 bSkillUseSP,"WA_SWING_DANCE",32;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2466,'Training_Shoes','Training Shoes',4,20,NULL,300,NULL,0,NULL,1,0xFFFFFFFF,63,2,64,NULL,'1',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2467,'Golden_Rod_Shoes','Golden Rod Shoes',4,20,NULL,500,NULL,12,NULL,0,0x00000200,63,2,64,NULL,'100',1,0,'bonus bMdef,2; bonus bMaxHP,500; bonus2 bSubEle,Ele_Wind,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2468,'Aqua_Shoes','Aqua Shoes',4,20,NULL,500,NULL,12,NULL,0,0x00000200,63,2,64,NULL,'100',1,0,'bonus bMdef,2; bonus bMaxHP,500; bonus2 bSubEle,Ele_Water,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2469,'Crimson_Shoes','Crismons Shoes',4,20,NULL,500,NULL,12,NULL,0,0x00000200,63,2,64,NULL,'100',1,0,'bonus bMdef,2; bonus bMaxHP,500; bonus2 bSubEle,Ele_Fire,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2470,'Forest_Shoes','Forest Shoes',4,20,NULL,500,NULL,12,NULL,0,0x00000200,63,2,64,NULL,'100',1,0,'bonus bMdef,2; bonus bMaxHP,500; bonus2 bSubEle,Ele_Earth,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2471,'Shoes_Of_Affection','Shoes Of Affection',4,20,NULL,300,NULL,12,NULL,0,0x00000100,63,2,64,NULL,'100',1,0,'bonus bMaxHP,500; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Formless,-10; bonus2 bSubRace,RC_Undead,-10; bonus2 bSubRace,RC_Brute,-10; bonus2 bSubRace,RC_Player_Doram,-10; bonus2 bSubRace,RC_Plant,-10; bonus2 bSubRace,RC_Insect,-10; bonus2 bSubRace,RC_Fish,-10; bonus2 bSubRace,RC_Demon,-10; bonus2 bSubRace,RC_Angel,-10; bonus2 bSubRace,RC_Dragon,-10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2472,'Shoes_Of_Judgement','Shoes Of Judgement',4,20,NULL,300,NULL,12,NULL,0,0x00000100,63,2,64,NULL,'100',1,0,'bonus2 bSkillAtk,"AB_JUDEX",30; bonus2 bSkillUseSP,"AB_JUDEX",-40; bonus bMaxSP,150;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2473,'Para_Team_Boots4','Eden Team Boots IV',4,0,NULL,0,NULL,20,NULL,0,0xFFFFFFFF,63,2,64,NULL,'60',0,0,'bonus bAgi,1; bonus bVit,1; bonus bHPrecovRate,28; bonus bSPrecovRate,12;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2474,'Lehmannza_Shoes','Lehmannza Shoes',4,20,NULL,500,NULL,3,NULL,1,0xFFFFFFFF,63,2,64,NULL,'60',1,0,'bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2475,'Ur_Greave','Ur\'s Greaves',4,20,NULL,900,NULL,32,NULL,1,0x00000080,56,2,64,NULL,'100',1,0,'bonus bMaxSP,40; .@r = getrefine(); if(.@r>7) bonus bMaxHPrate,.@r-7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2476,'Peuz_Greave','Peuz\'s Greaves',4,20,NULL,900,NULL,32,NULL,1,0x00000080,56,2,64,NULL,'100',1,0,'bonus bMaxSP,40; .@r = getrefine(); if(.@r>7) bonus bAgi,.@r-7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2477,'Sabah_Shoes','Sapha Shoes',4,20,NULL,400,NULL,18,NULL,1,0x00001000,63,2,64,NULL,'100',1,0,'bonus bMaxSP,30; bonus bLuk,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2478,'Nab_Shoes','Nab Shoes',4,20,NULL,400,NULL,18,NULL,1,0x00001000,63,2,64,NULL,'100',1,0,'bonus bFlee,3; bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2479,'White_Wing_Boots','White Wing Boots',4,20,NULL,400,NULL,18,NULL,1,0x00000800,63,2,64,NULL,'100',1,0,'bonus bAgi,2; bonus2 bSkillUseSP,"RA_AIMEDBOLT",10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2480,'Black_Wing_Boots','Black Wing Boots',4,20,NULL,400,NULL,18,NULL,1,0x00000800,56,2,64,NULL,'100',1,0,'bonus bInt,2; bonus bMaxSPrate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2481,'Rune_Boots','Rune Boots',4,20,NULL,100,NULL,5,NULL,0,0xFFFFFFFF,63,2,64,NULL,'0',1,0,'.@a = readparam(bStr); .@b = readparam(bInt); bonus bBaseAtk,(.@a>=120)?(20):((.@a>=90)?(10):(0)); bonus bMatkRate,(.@b>=120)?(5):((.@b>=90)?(3):(0));',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2482,'Shoes_Of_Valor','Shoes Of Valor',4,0,NULL,0,NULL,4,NULL,0,0xFFFFFFFF,63,2,64,NULL,'0',0,0,'skill "AL_INCAGI",1; bonus bUseSPrate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2483,'Siege_Greave','Siege Greaves',4,10,NULL,750,NULL,30,NULL,1,0x006444A2,63,2,64,NULL,'95',1,0,'bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2484,'Siege_Boots','Siege Boots',4,10,NULL,500,NULL,20,NULL,1,0x636E5CEA,63,2,64,NULL,'95',1,0,'bonus bMdef,5; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2485,'Siege_Shoes','Siege Shoes',4,10,NULL,350,NULL,15,NULL,1,0x00818315,63,2,64,NULL,'95',1,0,'bonus bMdef,10; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2486,'Shadow_Walk_','Shadow Walk',4,20,NULL,2000,NULL,0,NULL,1,0xFFFFFFFE,63,2,64,NULL,'75',1,0,'bonus bMdef,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2487,'Vital_Tree_Shoes_','Vital Tree Shoes',4,20,NULL,500,NULL,16,NULL,1,0xFFFFFFFE,63,2,64,NULL,'60',1,0,'bonus bVit,2; bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2488,'Fricco_Shoes_','Fricco Shoes',4,30000,NULL,500,NULL,12,NULL,1,0xFFFFFFFE,63,2,64,NULL,'65',1,0,'bonus bAgi,2; bonus2 bAddItemGroupHealRate,IG_Potion,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2489,'Vidar\'s_Boots_','Vidar\'s Boots',4,30000,NULL,650,NULL,13,NULL,1,0xFFFFFFFE,63,2,64,NULL,'65',1,0,'bonus bMaxHPrate,9; bonus bMaxSPrate,9;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2491,'Bangungot_Boots','Bangungot Boots of Nightmare',4,20,NULL,600,NULL,10,NULL,0,0xFFFFFFFF,63,2,64,NULL,'1',1,0,'.@r = getrefine(); bonus bMdef,.@r; if(.@r>=14){ bonus bSpeedRate,25; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2492,'Bayani_Bangungot_Boots','Bayani Bangungot Boots of Nightmare',4,20,NULL,600,NULL,10,NULL,1,0xFFFFFFFF,63,2,64,NULL,'1',1,0,'.@r = getrefine(); bonus bMdef,.@r; if(.@r>=12){ bonus bSpeedRate,25; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2493,'Goibne\'s_Combat_Boots_','Goibne\'s Greaves',4,30000,NULL,700,NULL,13,NULL,1,0xFFFFFFFE,63,2,64,NULL,'54',1,0,'bonus bMdef,3; bonus bMaxHPrate,5; bonus bMaxSPrate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2494,'Chrystal_Pumps_','Crystal Pumps',4,20,NULL,100,NULL,5,NULL,1,0xFFFFFFFE,63,0,64,NULL,'0',1,0,'bonus bMdef,10; bonus bLuk,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2495,'Egir_Shoes','Egir Shoes',4,200000,NULL,300,NULL,13,NULL,1,0xFFFFFFFF,63,2,64,NULL,'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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2496,'TE_Woe_Shoes','TE Woe Shoes',4,0,NULL,0,NULL,5,NULL,0,0xFFFFFFFF,63,2,64,NULL,'40',1,NULL,'bonus bMdef,5; bonus bMaxHP,150; bonus bMaxSP,150; bonus2 bAddRace,RC_Player_Human,5; bonus2 bMagicAddRace,RC_Player_Human,5; bonus2 bResEff,Eff_Freeze,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2497,'TE_Woe_Boots','TE Woe Boots',4,0,NULL,0,NULL,10,NULL,0,0x000444A2,63,2,64,NULL,'40',1,NULL,'bonus bMaxHP,200; bonus bMaxSP,100; bonus2 bAddRace,RC_Player_Human,10; bonus2 bResEff,Eff_Freeze,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2498,'TE_Woe_Magic_Sandal','TE Woe Magic Sandal',4,0,NULL,0,NULL,5,NULL,0,0x00818315,63,2,64,NULL,'40',1,NULL,'bonus bMdef,5; bonus bMaxHP,100; bonus bMaxSP,200; bonus2 bMagicAddRace,RC_Player_Human,5; bonus2 bResEff,Eff_Freeze,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2499,'Temporal_Boots','Temporal Boots',4,400,NULL,600,NULL,20,NULL,0,0xFFFFFFFF,63,2,64,NULL,'10',1,NULL,'.@r = getrefine(); bonus bMaxHP,300; bonus bMaxSP,30; bonus bMaxHP,100*(.@r/3); bonus bMaxSP,10*(.@r/3);',NULL,NULL); -#=================================================================== -# Garments -#=================================================================== -REPLACE INTO `item_db_re` VALUES (2501,'Hood','Hood',4,1000,NULL,200,NULL,4,NULL,0,0xFFFFFFFF,63,2,4,NULL,'0',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2502,'Hood_','Hood',4,1000,NULL,200,NULL,4,NULL,1,0xFFFFFFFF,63,2,4,NULL,'0',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2503,'Muffler','Muffler',4,5000,NULL,400,NULL,8,NULL,0,0xFFFFFFFE,63,2,4,NULL,'0',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2504,'Muffler_','Muffler',4,5000,NULL,400,NULL,8,NULL,1,0xFFFFFFFE,63,2,4,NULL,'0',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2505,'Manteau','Manteau',4,32000,NULL,600,NULL,13,NULL,0,0x006654E2,63,2,4,NULL,'0',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2506,'Manteau_','Manteau',4,32000,NULL,600,NULL,13,NULL,1,0x006654E2,63,2,4,NULL,'0',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2507,'Cape_Of_Ancient_Lord','Ancient Cape',4,82000,NULL,600,NULL,9,NULL,0,0xFFFFFFFE,63,2,4,NULL,'40',1,0,'bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2508,'Ragamuffin_Cape','Ragamuffin Manteau',4,56000,NULL,500,NULL,4,NULL,0,0xFFFFFFFE,63,2,4,NULL,'0',1,0,'bonus bUnbreakableGarment; bonus bMdef,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2509,'Clack_Of_Servival','Survivor\'s Manteau',4,20000,NULL,550,NULL,10,NULL,0,0x00810204,63,2,4,NULL,'75',1,0,'bonus bMdef,5; bonus bVit,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2510,'Novice_Hood','Somber Novice Hood',4,1,NULL,1,NULL,4,NULL,0,0x00000001,63,2,4,NULL,'0',0,0,'bonus2 bSubEle,Ele_Neutral,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2511,'Skeleton\'s_Cape','Skeleton Manteau',4,5000,NULL,700,NULL,1,NULL,0,0xFFFFFFFE,63,2,4,NULL,'75',1,0,'bonus bStr,2; bonus bInt,-3; bonus bDex,2; bonus bVit,-3; bonus bLuk,2; bonus bAgi,-4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2512,'Novice_Manteau','Novice Manteau',4,50000,NULL,500,NULL,7,NULL,1,0x00000001,63,2,4,NULL,'40',1,0,'bonus2 bSubEle,Ele_Neutral,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2513,'Celestial_Robe','Heavenly Maiden Robe',4,20,NULL,500,NULL,18,NULL,1,0xFFFFFFFE,63,2,4,NULL,'80',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2514,'Pauldron','Pauldron',4,20,NULL,800,NULL,25,NULL,1,0x000654E2,63,2,4,NULL,'80',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2515,'Wing_Of_Eagle','Eagle Wing',4,20000,NULL,300,NULL,12,NULL,1,0x00810204,63,2,4,NULL,'85',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2516,'Falcon_Robe','Falcon Muffler',4,30000,NULL,400,NULL,8,NULL,0,0xFFFFFFFE,63,2,4,NULL,'65',1,0,'bonus bFlee,15; bonus bFlee2,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2517,'Vali\'s_Manteau','Vali\'s Manteau',4,30000,NULL,600,NULL,13,NULL,0,0xFFFFFFFE,63,2,4,NULL,'65',1,0,'bonus2 bSubEle,Ele_Neutral,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2518,'Morpheus\'s_Shawl','Morpheus\'s Shawl',4,30000,NULL,600,NULL,8,NULL,0,0xFFFFFFFE,63,2,4,NULL,'33',1,0,'bonus bMaxSPrate,10; bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2519,'Morrigane\'s_Manteau','Morrigane\'s Manteau',4,30000,NULL,600,NULL,9,NULL,0,0xFFFFFFFE,63,2,4,NULL,'61',1,0,'bonus bLuk,2; bonus bFlee2,8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2520,'Goibne\'s_Shoulder_Arms','Goibne\'s Spaulders',4,30000,NULL,700,NULL,11,NULL,0,0xFFFFFFFE,63,2,4,NULL,'54',1,0,'bonus bLongAtkDef,10; bonus bMdef,2; bonus bVit,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2521,'Angel\'s_Warmth','Angelic Cardigan',4,10000,NULL,400,NULL,5,NULL,1,0x00000001,63,2,4,NULL,'20',1,0,'bonus bHPrecovRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2522,'Undershirt','Undershirt',4,20000,NULL,150,NULL,5,NULL,0,0xFFFFFFFF,63,2,4,NULL,'0',1,0,'bonus bMdef,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2523,'Undershirt_','Undershirt',4,20000,NULL,150,NULL,5,NULL,1,0xFFFFFFFF,63,2,4,NULL,'0',1,0,'bonus bMdef,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2524,'Valkyrie_Manteau','Valkyrian Manteau',4,0,NULL,500,NULL,10,NULL,1,0xFFFFFFFE,18,2,4,NULL,'0',1,0,'bonus bUnbreakableGarment; 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);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2525,'Cape_Of_Ancient_Lord_','Ancient Cape',4,82000,NULL,600,NULL,9,NULL,1,0xFFFFFFFE,63,2,4,NULL,'40',1,0,'bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2526,'Dragon_Scale_Coat','Coat of Dragon Scale',4,20,NULL,10,NULL,14,NULL,0,0xFFFFFFFF,63,2,4,NULL,'50',1,0,'bonus bMaxHP,300;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2527,'Dragon_Breath','Dragon Breath',4,20,NULL,600,NULL,16,NULL,1,0xFFFFFFFE,18,2,4,NULL,'48',1,0,'bonus2 bSubRace,RC_Dragon,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2528,'Wool_Scarf','Wool Scarf',4,20,NULL,500,NULL,11,NULL,1,0xFFFFFFFE,18,2,4,NULL,'55',1,0,'bonus bMdef,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2529,'Rider_Insignia','Rider Insignia',4,20,NULL,500,NULL,13,NULL,0,0xFFFFFFFE,18,2,4,NULL,'55',1,0,'bonus bAgi,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2530,'Rider_Insignia_','Rider Insignia',4,20,NULL,500,NULL,13,NULL,1,0xFFFFFFFE,18,2,4,NULL,'55',1,0,'bonus bAgi,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2531,'Ulfhedinn','Ulfhedinn',4,20,NULL,700,NULL,13,NULL,1,0x000654E2,18,2,4,NULL,'70',1,0,'bonus3 bAutoSpellWhenHit,"NPC_STONESKIN",6,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2532,'Mithril_Magic_Cape','Mithril Magic Cape',4,20,NULL,400,NULL,8,NULL,1,0x00098B1C,18,2,4,NULL,'70',1,0,'bonus bMdef,3; bonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,200,BF_MAGIC,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2533,'Freyja_Cape','Freyja Cape',4,0,NULL,200,NULL,10,NULL,0,0xFFFFFFFE,63,2,4,NULL,'0',0,0,'bonus2 bSubRace,RC_DemiHuman,15; bonus2 bSubRace,RC_Player_Human,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2534,'Ruffler','Ruffler',4,20,NULL,0,NULL,10,NULL,0,0xFFFFFFFF,63,2,4,NULL,'0',0,0,'bonus2 bSubEle,Ele_Neutral,17; bonus bFlee,17;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2535,'Cloak_Of_Survival_C','Cloak Of Survival',4,1,NULL,0,NULL,5,NULL,0,0x00810204,63,2,4,NULL,'0',0,0,'bonus bVit,10; bonus bMdef,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2536,'Skin_Of_Ventus','Skin of Ventus',4,20,NULL,250,NULL,7,NULL,1,0xFFFFFFFE,63,2,4,NULL,'60',1,0,'bonus bMdef,2; bonus bMaxHP,200; bonus bFlee,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2537,'Diabolus_Manteau','Diabolus Manteau',4,20,NULL,250,NULL,15,NULL,1,0x00CFFF80,18,2,4,NULL,'0',1,0,'bonus2 bSubEle,Ele_Neutral,5; bonus bMaxHP,100; bonus2 bAddDamageClass,1916,10; bonus2 bAddDamageClass,1917,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2538,'Commander_Manteau','Captain\'s Manteau',4,10,NULL,0,NULL,28,NULL,1,0x026654E2,63,2,4,NULL,'80',1,0,'bonus bMaxHP,50; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2539,'Commander_Manteau_','Commander\'s Manteau',4,10,NULL,0,NULL,20,NULL,1,0x00898B1C,63,2,4,NULL,'80',1,0,'bonus bMaxHP,50; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2540,'Sheriff_Manteau','Sheriff\'s Manteau',4,10,NULL,0,NULL,20,NULL,1,0x41000000,63,2,4,NULL,'80',1,0,'bonus bMaxHP,50; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2541,'Asprika','Asprika',4,20,NULL,400,NULL,40,NULL,0,0xFFFFFFFF,63,2,4,NULL,'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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2542,'Flame_Manteau','Flame Manteau of Naght Sieger',4,20,NULL,700,NULL,16,NULL,1,0xFFFFFFFE,18,2,4,NULL,'70',1,0,'bonus bMaxHPrate,5; bonus bMdef,2; bonus bMatkRate,1; bonus2 bAddEle,Ele_Fire,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2543,'Sylphid_Manteau','Sylphid Manteau',4,20,NULL,0,NULL,9,NULL,0,0xFFFFFFFF,63,2,4,NULL,'0',0,0,'bonus bFlee,13; bonus2 bSubEle,Ele_Neutral,13; bonus bFlee2,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2544,'Leather_Of_Tendrilion','Leather of Tendrilion',4,20,NULL,300,NULL,14,NULL,1,0x00CFDF80,18,2,4,NULL,'0',1,0,'bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Earth,5; bonus2 bSubRace,RC_Plant,5; bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2545,'Musika','Musika',4,20,NULL,500,NULL,10,NULL,1,0x00008100,18,2,4,NULL,'70',1,0,'bonus bMdef,3; bonus3 bAutoSpellwhenhit,"AL_HEAL",max(1,getskilllv("AL_HEAL")),20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2546,'Beach_Manteau','Beach Manteau',4,20,NULL,600,NULL,0,NULL,1,0xFFFFFFFF,63,2,4,NULL,'0',1,0,'bonus bStr,1; bonus bInt,1; bonus2 bSubEle,Ele_Fire,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2547,'Cheap_Running_Shirts','Cheap Undershirt',4,0,NULL,0,NULL,8,NULL,0,0xFFFFFFFF,63,2,4,NULL,'0',1,0,'bonus bDex,2; bonus bFlee,10; bonus2 bSubEle,Ele_Neutral,10; bonus bMdef,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2548,'Muffler_C','Neo Muffler',4,0,NULL,0,NULL,5,NULL,0,0xFFFFFFFE,18,2,4,NULL,'95',0,0,'bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus bMaxHPrate,10; bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Fire,5; bonus2 bSubEle,Ele_Holy,5; bonus2 bSubEle,Ele_Dark,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2549,'Krieger_Muffler1','Glorious Muffler',4,20,NULL,0,NULL,3,NULL,0,0xFFFFFFFE,63,2,4,NULL,'81',1,0,'bonus bMaxHPrate,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2550,'Fisher\'s_Muffler','Fisher\'s Muffler',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFF,63,2,4,NULL,'0',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2551,'Rider_Insignia_M','Crest of the Rider',4,20,NULL,500,NULL,4,NULL,1,0xFFFFFFFE,18,2,4,NULL,'55',1,0,'bonus bAgi,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2552,'Mithril_Magic_Cape_M','Mithril Magic Manteau',4,20,NULL,400,NULL,3,NULL,1,0x00098B1C,18,2,4,NULL,'70',1,0,'bonus bMdef,3; bonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,200,BF_MAGIC,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2553,'Dragon_Manteau','Dragon Manteau',4,20,NULL,1000,NULL,14,NULL,1,0xFFFFFFFE,18,2,4,NULL,'0',1,0,'bonus bAgi,1; bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2554,'Piece_Of_Angent_Skin','Nydhorgg\'s Shadow Garb',4,20,NULL,400,NULL,25,NULL,1,0xFFFFFFFE,18,2,4,NULL,'90',1,0,'bonus2 bSubEle,Ele_All,7; bonus bMaxSP,(BaseLevel/3)+(getrefine()*10); bonus2 bSPDrainRate,10,1; bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2555,'Freyja_SScarf7','Freyja Soul Scarf',4,20,NULL,400,NULL,4,NULL,0,0xFFFFFFFF,63,2,4,NULL,'20',0,0,'bonus bFlee,15; bonus2 bSubEle,Ele_Neutral,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2556,'Freyja_SScarf30','Freyja Soul Scarf',4,20,NULL,400,NULL,4,NULL,0,0xFFFFFFFF,63,2,4,NULL,'20',0,0,'bonus bFlee,15; bonus2 bSubEle,Ele_Neutral,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2557,'Freyja_SScarf60','Freyja Soul Scarf',4,20,NULL,400,NULL,4,NULL,0,0xFFFFFFFF,63,2,4,NULL,'20',0,0,'bonus bFlee,15; bonus2 bSubEle,Ele_Neutral,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2558,'Freyja_SScarf90','Freyja Soul Scarf',4,20,NULL,400,NULL,4,NULL,0,0xFFFFFFFF,63,2,4,NULL,'20',0,0,'bonus bFlee,15; bonus2 bSubEle,Ele_Neutral,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2559,'Time_Keepr_Manteau','Time Keeper\'s Manteau',4,30000,NULL,0,NULL,9,NULL,0,0xFFFFFFFF,63,2,4,NULL,'1',1,0,'bonus bMdef,1; bonus bFlee,10; bonus2 bSubEle,Ele_Neutral,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2560,'Para_Team_Manteau','Eden Team Manteau I',4,0,NULL,0,NULL,14,NULL,0,0xFFFFFFFF,63,2,4,NULL,'7',0,0,'bonus2 bSubEle,Ele_Neutral,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2561,'Upg_Hood','Upg Hood',4,0,NULL,100,NULL,9,NULL,1,0xFFFFFFFF,63,2,4,NULL,'0',1,0,'bonus bMaxHPrate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2562,'Upg_Muffler','Upg Muffler',4,20,NULL,200,NULL,13,NULL,1,0xFFFFFFFE,63,2,4,NULL,'0',1,0,'bonus bMaxHPrate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2563,'Upg_Manteau','Upg Manteau',4,20,NULL,300,NULL,18,NULL,1,0x006654E2,63,2,4,NULL,'0',1,0,'bonus bMaxHPrate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2564,'Feral_Tail','Feral Tail',4,20,NULL,0,NULL,16,NULL,0,0xFFFFFFFF,63,2,4,NULL,'75',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2565,'Beach_Towel','Beach Towel',4,20,NULL,100,NULL,2,NULL,1,0xFFFFFFFF,63,2,4,NULL,'0',1,0,'bonus bMdef,3; bonus bFlee,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2566,'Half_Asprika','Half Asprika',4,20,NULL,0,NULL,20,NULL,0,0xFFFFFFFF,63,2,4,NULL,'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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2567,'Academy_Manteau','Academy Manteau',4,0,NULL,600,NULL,3,NULL,1,73,7,2,4,NULL,'0',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2568,'Muffler_Of_Roki','Loki\'s Muffler',4,20,NULL,400,NULL,10,NULL,0,0xFFFFFFFF,63,2,4,NULL,'100',0,0,'bonus bAgi,1; bonus2 bSkillAtk,"ASC_BREAKER",5; bonus2 bSkillAtk,"GC_CROSSIMPACT",5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2569,'Shawl_Of_Affection','Shawl Of Affection',4,20,NULL,400,NULL,12,NULL,0,0x00000100,63,2,4,NULL,'100',1,0,'bonus bFlee2,5; autobonus2 "{ bonus2 bHPRegenRate,1000,5000; }",300,90000,BF_WEAPON; autobonus2 "{ bonus2 bHPRegenRate,1000,5000; }",400,90000,BF_MAGIC;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2570,'Shawl_Of_Judgement','Shawl Of Judgement',4,20,NULL,400,NULL,12,NULL,0,0x00000100,63,2,4,NULL,'100',1,0,'bonus bFlee,5; .@i = max(2,getskilllv("AB_ORATIO")); bonus5 bAutoSpellWhenHit,"AB_ORATIO",.@i,30,BF_WEAPON,0; bonus5 bAutoSpellWhenHit,"AB_ORATIO",.@i,40,BF_MAGIC,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2571,'Para_Team_Manteau2','Eden Team Manteau II',4,0,NULL,0,NULL,18,NULL,0,0xFFFFFFFF,63,2,4,NULL,'60',0,0,'bonus bFlee,12; bonus2 bSubEle,Ele_Neutral,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2572,'Katabart_Sholder','Katabart Sholder',4,20,NULL,3000,NULL,4,NULL,1,0xFFFFFFFF,63,2,4,NULL,'70',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2573,'Archangel_Wing','Archangel Wings',4,0,NULL,200,NULL,18,NULL,1,0xFFFFFFFF,63,2,4,NULL,'0',1,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2574,'Ur_Manteau','Ur\'s Manteau',4,20,NULL,600,NULL,20,NULL,0,0x00000080,56,2,4,NULL,'100',1,0,'bonus bMaxHPrate,2; bonus2 bSubEle,Ele_Neutral,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2575,'Peuz_Manteau','Peuz\'s Manteau',4,20,NULL,600,NULL,16,NULL,0,0x00000080,56,2,4,NULL,'100',1,0,'bonus bFlee,10; bonus bCritical,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2576,'Bravery_Bag','Adventurer\'s Backpack',4,0,NULL,200,NULL,20,NULL,1,0xFFFFFFFF,63,2,4,NULL,'0',1,2,'skill "BS_GREED",1; .@r = getrefine(); if(.@r>=7) { if(readparam(bStr)>=90) { bonus bBaseAtk,(.@r>=9)?30:20; } if(readparam(bInt)>=90) { bonus bMatk,(.@r>=9)?50:30; } if(readparam(bVit)>=90) { bonus2 bSubEle,Ele_Neutral,(.@r>=9)?10:5; } if(readparam(bAgi)>=90) { bonus bAspdRate,8; if(.@r>=9) { bonus bAspd,1; } } if(readparam(bDex)>=90) { bonus bLongAtkRate,(.@r>=9)?10:5; } if(readparam(bLuk)>=90) { bonus bCritAtkRate,(.@r>=9)?15:10; } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2577,'Sabah_Hood','Sapha Hood',4,20,NULL,100,NULL,13,NULL,0,0x00001000,63,2,4,NULL,'100',1,0,'bonus bFlee,12; bonus bCritical,getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2578,'Nab_Hood','Nab Hood',4,20,NULL,100,NULL,13,NULL,0,0x00001000,63,2,4,NULL,'100',1,0,'.@r = getrefine(); bonus bFlee,.@r*2; bonus bBaseAtk,.@r*2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2579,'Magic_Stole','Magic Stole',4,20,NULL,700,NULL,8,NULL,1,0xFFFFFFFF,63,2,4,NULL,'0',1,0,'bonus bMdef,3; bonus bUseSPrate,-5; bonus bMaxSPrate,((getrefine()>=4)?6:3);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2580,'White_Wing_Manteau','White Wing Manteau',4,20,NULL,200,NULL,15,NULL,0,0x00000800,63,2,4,NULL,'100',1,0,'bonus bAgi,2; bonus bFlee,10; autobonus2 "{ bonus bFlee,20; }",20,7000,BF_LONG,"{ specialeffect2 EF_CHAINCOMBO; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2581,'Black_Wing_Manteau','Black Wing Manteau',4,20,NULL,200,NULL,15,NULL,0,0x00000800,56,2,4,NULL,'100',1,0,'.@r = getrefine(); bonus bInt,2; if(.@r>6) bonus bFlee2,.@r-6;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2582,'Salvage_Cape','Salvage Cape',4,56000,NULL,400,NULL,1,NULL,0,0x00000300,63,2,4,NULL,'130',1,0,'skill "NJ_UTSUSEMI",1; bonus2 bSkillCooldown,"NJ_UTSUSEMI",30000; bonus bUseSPrate,100;',NULL,'heal 0,-1200;'); -REPLACE INTO `item_db_re` VALUES (2583,'Holy_Cape','Holy Cape',4,20,NULL,100,NULL,5,NULL,1,0xFFFFFFFF,63,2,4,NULL,'50',1,0,'bonus bDex,-5; bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2584,'Wanderer_Outer','Wanderer Outer',4,20,NULL,500,NULL,8,NULL,1,0xFFFFFFFF,63,2,4,NULL,'0',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2585,'Muffler_Of_Valor','Muffler Of Valor',4,0,NULL,0,NULL,4,NULL,0,0xFFFFFFFF,63,2,4,NULL,'0',0,0,'bonus bSPrecovRate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2586,'Siege_Manteau','Siege Manteau',4,10,NULL,600,NULL,32,NULL,1,0xFFFFFFFE,63,2,4,NULL,'95',1,0,'bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2587,'Siege_Muffler','Siege Muffler',4,10,NULL,400,NULL,15,NULL,1,0xFFFFFFFF,63,2,4,NULL,'95',1,0,'bonus bMdef,10; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2588,'Ragamuffin_Cape_','Ragamuffin Cape',4,56000,NULL,500,NULL,4,NULL,1,0xFFFFFFFE,63,2,4,NULL,'40',1,0,'bonus bMdef,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2589,'Fallen_Angel_Wing','Fallen Angel Wing',4,0,NULL,200,NULL,18,NULL,1,0xFFFFFFFF,63,2,4,NULL,'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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2590,'Buwaya_Cloth','Buwaya Sack Cloth',4,20,NULL,200,NULL,8,NULL,0,0xFFFFFFFF,63,2,4,NULL,'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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2591,'Bayani_Buwaya_Cloth','Bayani Buwaya Sack Cloth',4,20,NULL,200,NULL,8,NULL,1,0xFFFFFFFF,63,2,4,NULL,'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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2592,'Boss_Brownie_Manteau','Boss Brownie Manteau',4,20,NULL,100,NULL,3,NULL,1,0xFFFFFFFF,63,2,4,NULL,'50',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2593,'Flow_Manteau','Flow Manteau',4,20,NULL,700,NULL,20,NULL,1,0xFFFFFFFF,63,2,4,NULL,'65',1,0,'bonus2 bSubDefEle,Ele_Water,5; bonus2 bMagicSubDefEle,Ele_Water,5; bonus2 bSubRace,RC_Brute,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2594,'Wrapping_Manteau','Wrapping Manteau',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,4,NULL,'0',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2597,'Scarlet_Poncho','Scarlet Poncho',4,0,NULL,500,NULL,10,NULL,1,0xFFFFFFFF,63,2,4,NULL,NULL,1,0,'bonus bCritAtkRate,3; /* Confirm: The location. If the location is changed, also change the combo script! */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2598,'Ramor_Manteau','Ramor Manteau',4,20,NULL,700,NULL,20,NULL,1,0xFFFFFFFF,63,2,4,NULL,'65',1,0,'bonus2 bSubRace,RC_Undead,5; bonus2 bSubRace,RC_DemiHuman,-5; /*Gold PC Room: bonus bFlee,20;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2599,'Goibne\'s_Shoulder_Arms_','Goibne\'s Spaulders',4,30000,NULL,700,NULL,11,NULL,1,0xFFFFFFFE,63,2,4,NULL,'54',1,0,'bonus bLongAtkDef,10; bonus bMdef,2; bonus bVit,1;',NULL,NULL); -#=================================================================== -# Accessories -#=================================================================== -REPLACE INTO `item_db_re` VALUES (2601,'Ring','Ring',4,30000,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'20',0,0,'bonus bStr,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2602,'Earring','Earring',4,30000,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'20',0,0,'bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2603,'Necklace','Necklace',4,30000,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'20',0,0,'bonus bVit,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2604,'Glove','Glove',4,30000,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'20',0,0,'bonus bDex,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2605,'Brooch','Brooch',4,30000,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'20',0,0,'bonus bAgi,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2607,'Clip','Clip',4,30000,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus bMaxSP,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2608,'Rosary','Rosary',4,15000,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'20',0,0,'bonus bMdef,5; bonus bLuk,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2609,'Skul_Ring','Skull Ring',4,10000,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2610,'Gold_Ring','Gold Ring',4,30000,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2611,'Silver_Ring','Silver Ring',4,20000,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2612,'Flower_Ring','Flower Ring',4,1500,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2613,'Diamond_Ring','Diamond Ring',4,45000,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2614,'An_Eye_Of_Dullahan','Eye of Dullahan',4,90000,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'50',0,0,'bonus2 bResEff,Eff_Poison,10000; bonus2 bSubRace,RC_Undead,4; bonus2 bSubRace,RC_Demon,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2615,'Safety_Ring','Safety Ring',4,75000,NULL,100,NULL,5,NULL,0,0xFFFFFFFE,63,2,136,NULL,'40',0,0,'bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2616,'Critical_Ring','Critical Ring',4,75000,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'40',0,0,'bonus bCritical,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2617,'Mitten_Of_Presbyter','Celebrant\'s Mitten',4,2,NULL,100,NULL,1,NULL,0,0xFFFFFFFE,63,2,136,NULL,'35',0,0,'bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2618,'Matyr\'s_Flea_Guard','Matyr\'s Leash',4,2,NULL,100,NULL,1,NULL,0,0xFFFFFFFE,63,2,136,NULL,'35',0,0,'bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2619,'Thimble_Of_Archer','Bow Thimble',4,10000,NULL,100,NULL,0,NULL,0,0x00080808,63,2,136,NULL,'65',0,0,'bonus bLongAtkRate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2620,'Ring_Of_Rogue','Rogue\'s Treasure',4,10000,NULL,100,NULL,0,NULL,0,0x02021040,63,2,136,NULL,'70',0,0,'if(readparam(bStr)>=90){ bonus bHit,10; bonus bFlee,10; } if(readparam(bAgi)>=90){ bonus bBaseAtk,10; bonus bCritical,10; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2621,'Ring_','Ring',4,30000,NULL,200,NULL,0,NULL,1,0xFFFFFFFE,63,2,136,NULL,'90',0,0,'bonus bStr,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2622,'Earring_','Earring',4,30000,NULL,200,NULL,0,NULL,1,0xFFFFFFFE,63,2,136,NULL,'90',0,0,'bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2623,'Necklace_','Necklace',4,30000,NULL,200,NULL,0,NULL,1,0xFFFFFFFE,63,2,136,NULL,'90',0,0,'bonus bVit,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2624,'Glove_','Glove',4,30000,NULL,200,NULL,0,NULL,1,0xFFFFFFFE,63,2,136,NULL,'90',0,0,'bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2625,'Brooch_','Brooch',4,30000,NULL,200,NULL,0,NULL,1,0xFFFFFFFE,63,2,136,NULL,'90',0,0,'bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2626,'Rosary_','Rosary',4,15000,NULL,200,NULL,0,NULL,1,0xFFFFFFFE,63,2,136,NULL,'90',0,0,'bonus bMdef,3; bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2627,'Belt','Belt',4,20000,NULL,1200,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'25',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2628,'Novice_Armlet','Novice Armlet',4,400,NULL,200,NULL,0,NULL,1,0x00000001,63,2,136,NULL,'0',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2629,'Magingiorde','Megingjard',4,20,NULL,8000,NULL,2,NULL,0,0xFFFFFFFF,63,2,136,NULL,'94',0,0,'bonus bStr,40+BaseLevel/5; bonus bMdef,7; if(readparam(bStr)>=120) bonus2 bAddClass,Class_Boss,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2630,'Brysinggamen','Brisingamen',4,20,NULL,1500,NULL,1,NULL,0,0xFFFFFFFF,63,2,136,NULL,'94',0,0,'bonus bStr,6; bonus bAgi,6; bonus bVit,6; bonus bInt,10; bonus bLuk,10; bonus bMdef,5; bonus bHealPower,6;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2631,'First_Age_Ring','Celebration Ring',4,1,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus bAllStats,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2632,'Korean_Trinket','Korean Trinket',4,125000,NULL,100,NULL,1,NULL,0,0xFFFFFFFE,63,2,136,NULL,'65',0,0,'bonus bVit,1; bonus bDex,1; bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2633,'Jade_Ring','Jade Ring',4,204000,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'80',0,0,'bonus bStr,2; bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2634,'Bridegroom_Ring','Wedding Ring',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,1,136,NULL,'0',0,0,'skill "WE_MALE",1; skill "WE_FEMALE",1; skill "WE_CALLPARTNER",1; skill "WE_CALLALLFAMILY",1; skill "WE_ONEFOREVER",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2635,'Bride_Ring','Wedding Ring',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,0,136,NULL,'0',0,0,'skill "WE_MALE",1; skill "WE_FEMALE",1; skill "WE_CALLPARTNER",1; skill "WE_CALLALLFAMILY",1; skill "WE_ONEFOREVER",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2636,'Gold_Ring_','Gold Christmas Ring',4,30000,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2637,'Silver_Ring_','Silver Christmas Ring',4,20000,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2638,'Exorcize_Sachet','Sacred Incense',4,20000,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus bStr,1; bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2639,'Purification_Sachet','Occult Incense',4,20000,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus bInt,1; bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2640,'Kafra_Ring','Kafra Ring',4,40000,NULL,200,NULL,1,NULL,0,0xFFFFFFFE,63,2,136,NULL,'0',0,0,'bonus bStr,1; bonus bInt,1; bonus bAgi,1; bonus bLuk,1; bonus bMdef,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2641,'Fashionable_Sack','Fashion Hip Sack',4,20,NULL,700,NULL,0,NULL,0,0x00040420,63,2,136,NULL,'50',0,0,'bonus bStr,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2642,'Serin\'s_Gold_Ring','Serin\'s Gold Ring',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2643,'Serin\'s_Gold_Ring_','Serin\'s Gold Ring',4,45000,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2644,'The_Sign_','The Sign',4,2,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus2 bAddClass,Class_All,5; bonus2 bMagicAddClass,Class_All,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2645,'Moonlight_Ring','Moonlight Ring',4,40000,NULL,200,NULL,0,NULL,0,0x02021040,63,2,136,NULL,'60',0,0,'bonus bMdef,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2646,'Bunch_Of_Carnation','Bunch of Carnations',4,2,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus bAllStats,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2647,'Nile_Rose','Nile Rose',4,2,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus bAllStats,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2648,'Morpheus\'s_Ring','Morpheus\'s Ring',4,30000,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'33',0,0,'bonus bInt,1; bonus bMaxSPrate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2649,'Morpheus\'s_Armlet','Morpheus\'s Bracelet',4,30000,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'33',0,0,'bonus bInt,1; bonus bMaxSPrate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2650,'Morrigane\'s_Belt','Morrigane\'s Belt',4,30000,NULL,200,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'61',0,0,'bonus bBaseAtk,5; bonus bCritical,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2651,'Morrigane\'s_Pendant','Morrigane\'s Pendant',4,30000,NULL,200,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'61',0,0,'bonus bStr,2; bonus bCritical,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2652,'Cursed_Lucky_Brooch','Goddess of Fortune\'s Cursed Brooch',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'40',0,0,'bonus bCritical,6; bonus2 bAddEff2,Eff_Curse,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2653,'Sacrifice_Ring','Sacrifice Ring',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'90',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2654,'Shinobi\'s_Sash','Shinobi Sash',4,20000,NULL,300,NULL,1,NULL,0,0x02021040,63,2,136,NULL,'30',0,0,'bonus bStr,1; bonus bAgi,1; bonus bMdef,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2655,'Bloody_Iron_Ball','Bloodied Shackle Ball',4,50000,NULL,4000,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'0',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2656,'Hyper_Changer','Armor Charm',4,20000,NULL,1000,NULL,1,NULL,0,0x000654E2,63,2,136,NULL,'1',0,0,'bonus bMaxHP,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2657,'Lab_Passport','Laboratory Permit',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'1',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2658,'Nile_Rose_','Nile Rose',4,2,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus bMaxHP,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2659,'Vesper_Core01','Vesper Core 01',4,20,NULL,500,NULL,1,NULL,0,0x00CFFF80,18,2,136,NULL,'1',0,0,'bonus bMdef,3; bonus bInt,2; bonus bMaxSPrate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2660,'Vesper_Core02','Vesper Core 02',4,20,NULL,500,NULL,1,NULL,0,0x00CFFF80,18,2,136,NULL,'1',0,0,'bonus bMdef,3; bonus bStr,3; bonus bBaseAtk,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2661,'Vesper_Core03','Vesper Core 03',4,20,NULL,500,NULL,1,NULL,0,0x00CFFF80,18,2,136,NULL,'1',0,0,'bonus bMdef,3; bonus bAgi,3; bonus bFlee,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2662,'Vesper_Core04','Vesper Core 04',4,20,NULL,500,NULL,1,NULL,0,0x00CFFF80,18,2,136,NULL,'1',0,0,'bonus bMdef,3; bonus bDex,3; bonus bHit,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2663,'Gauntlet_Of_Accuracy','Gauntlet of Hit',4,20,NULL,900,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'75',0,0,'bonus bHit,15; bonus bStr,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2664,'Scarf_Belt','Belcarf',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'75',0,0,'bonus bDex,2; bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2665,'Ring_Of_Exorcism','Exorcising Ring',4,20,NULL,500,NULL,0,NULL,0,0x00008110,63,2,136,NULL,'60',0,0,'bonus bMdef,1; bonus2 bExpAddRace,RC_Undead,5; bonus2 bExpAddRace,RC_Demon,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2666,'Lamp_Of_Hope','Lantern of Hope',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'1',0,0,'bonus bStr,2; bonus2 bResEff,Eff_Blind,1000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2667,'Glove_Of_Archer','Renown Archer\'s Gloves',4,20,NULL,300,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'60',0,0,'bonus bHit,5; bonus bCritical,5; bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2668,'Women\'s_Glory','Woman Glory',4,0,NULL,500,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'1',0,0,'bonus bStr,3; bonus bAgi,3; bonus bVit,3; bonus bInt,3; bonus bDex,3; bonus bLuk,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2669,'Golden_Necklace_','RJC Necklace',4,30000,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus bMaxSP,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2670,'Ring_Of_Longing','Ring of Longing',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,136,NULL,'30',0,0,'bonus bFlee,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2671,'Thimble_Of_Archer_','Bow Thimble',4,10000,NULL,100,NULL,0,NULL,1,0x00080808,63,2,136,NULL,'65',0,0,'bonus bLongAtkRate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2672,'Anniversary_Ring','3rd Anniversary Celebration Ring',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'0',0,0,'bonus bStr,5; bonus bAgi,5; bonus bVit,5; bonus bInt,5; bonus bDex,5; bonus bLuk,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2673,'Shining_Ring','Warrior\'s Shining Ring',4,0,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'48',0,0,'bonus bBaseAtk,10; bonus bSPrecovRate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2674,'Honor_Ring','Ring of Honor',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'1',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2675,'Lord_Ring','Lord Ring',4,0,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'1',0,0,'bonus bAllStats,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2676,'Hunter_Earring','Hunter\'s Earring',4,20,NULL,300,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'1',0,0,'bonus2 bAddMonsterDropItem,7618,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2677,'Spiritual_Ring','Spiritual Ring',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus bInt,2; bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2678,'Ring_Of_Flame_Lord','Ring Of Flame Lord',4,20,NULL,100,NULL,0,NULL,0,0x00CFFF80,18,2,136,NULL,'0',0,0,'bonus bStr,2; bonus bVit,1; bonus bBaseAtk,15; 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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2679,'Ring_Of_Resonance','Ring Of Resonance',4,20,NULL,100,NULL,2,NULL,0,0x00CFFF80,18,2,136,NULL,'0',0,0,'bonus bAgi,2; bonus bVit,1; bonus bMdef,2; 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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2680,'Lesser_Elemental_Ring','Lesser Elemental Ring',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus bAllStats,1; bonus3 bAutoSpell,"WZ_ESTIMATION",1,80; bonus3 bAutoSpell,"MC_IDENTIFY",1,50; bonus3 bAutoSpell,"TF_PICKSTONE",1,100; bonus3 bAutoSpell,"BS_GREED",1,10; bonus3 bAutoSpellWhenHit,"TK_RUN",5,20; bonus3 bAutoSpellWhenHit,"TK_HIGHJUMP",3,30; bonus3 bAutoSpellWhenHit,"NV_FIRSTAID",1,100; bonus3 bAutoSpellWhenHit,"TF_BACKSLIDING",1,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2681,'Republic_Ring','Republic Anniversary Ring',4,20,NULL,1000,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus bAllStats,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2682,'Ring_Of_Water','Ring of Water',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFE,63,2,136,NULL,'20',0,0,'bonus2 bSubDefEle,Ele_Water,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2683,'Ring_Of_Fire','Ring of Fire',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFE,63,2,136,NULL,'20',0,0,'bonus2 bSubDefEle,Ele_Fire,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2684,'Ring_Of_Wind','Ring of Wind',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFE,63,2,136,NULL,'20',0,0,'bonus2 bSubDefEle,Ele_Wind,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2685,'Ring_Of_Earth','Ring of Earth',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFE,63,2,136,NULL,'20',0,0,'bonus2 bSubDefEle,Ele_Earth,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2686,'Elven_Ears_C','Elven Ears',4,1,NULL,0,NULL,2,NULL,0,0xFFFFFFFE,63,2,512,NULL,'1',0,73,'bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2687,'Steel_Flower_C','Steel Flower',4,1,NULL,0,NULL,1,NULL,0,0xFFFFFFFE,63,2,1,NULL,'1',0,56,'bonus2 bSubRace,RC_Plant,3; bonus3 bAutoSpellWhenHit,"PR_STRECOVERY",1,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2688,'Critical_Ring_C','Critical Ring',4,1,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'1',0,0,'bonus bCriticalRate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2689,'Earring_C','Earring',4,1,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'1',0,0,'bonus bInt,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2690,'Ring_C','Ring',4,1,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'1',0,0,'bonus bStr,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2691,'Necklace_C','Necklace',4,1,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'1',0,0,'bonus bVit,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2692,'Glove_C','Glove',4,1,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'1',0,0,'bonus bDex,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2693,'Brooch_C','Brooch',4,1,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'1',0,0,'bonus bAgi,4; /*Gold PC Room bonus bAllStats,1;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2694,'Rosary_C','Rosary',4,1,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'1',0,0,'bonus bMdef,5; bonus bLuk,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2695,'Safety_Ring_C','Safety Ring',4,1,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'1',0,0,'bonus bMdef,8; bonus bDef,8; /*Gold PC Room bonus bAllStats,1;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2696,'Vesper_Core01_C','Vesper Core 01',4,1,NULL,0,NULL,1,NULL,0,0xFFFFFFFE,63,2,136,NULL,'1',0,0,'bonus bMdef,3; bonus bInt,2; bonus bMaxSPrate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2697,'Vesper_Core02_C','Vesper Core 02',4,1,NULL,0,NULL,1,NULL,0,0xFFFFFFFE,63,2,136,NULL,'1',0,0,'bonus bMdef,3; bonus bStr,3; bonus bBaseAtk,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2698,'Vesper_Core03_C','Vesper Core 03',4,1,NULL,0,NULL,1,NULL,0,0xFFFFFFFE,63,2,136,NULL,'1',0,0,'bonus bMdef,3; bonus bAgi,3; bonus bFlee,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2699,'Vesper_Core04_C','Vesper Core 04',4,1,NULL,0,NULL,1,NULL,0,0xFFFFFFFE,63,2,136,NULL,'1',0,0,'bonus bMdef,3; bonus bDex,3; bonus bHit,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2700,'Red_Silk_Seal','Red Silk Seal',4,20,NULL,100,NULL,0,NULL,0,0x00004082,18,2,136,NULL,'60',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2701,'Orleans_Glove','Orleans\'s Glove',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFE,18,2,136,NULL,'90',0,0,'bonus bDex,2; bonus bMatkRate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2702,'Bison_Horn','Bison Horn',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFE,18,2,136,NULL,'90',0,0,'bonus bAgi,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2703,'Expert_Ring','Expert Ring',4,20,NULL,150,NULL,0,NULL,1,0xFFFFFFFE,18,2,136,NULL,'50',0,0,'bonus bDelayRate,-5; bonus bUseSPrate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2704,'Golden_Accessory','Golden Accessories',4,20,NULL,100,NULL,4,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus bMdef,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2705,'Golden_Accessory2','Golden Accessories',4,20,NULL,100,NULL,4,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus2 bAddMonsterDropItem,12018,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2706,'Handcuff','Arrest Handcuffs',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2707,'Gusli','GUSLI',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2708,'Chinese_Handicraft','Chinese Handicraft',4,0,NULL,50,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus3 bAutoSpell,"MG_FIREBOLT",5,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2709,'5_Anniversary_Coin','5th Anniversary Coin',4,2,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2710,'Bloody_Iron_Ball_C','Bloody Iron Ball',4,1,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'0',0,0,'bonus bBaseAtk,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2711,'Spiritual_Ring_C','Spiritual Ring',4,1,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus bInt,2; bonus bDex,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2712,'Ragnarok_Limited_Ed','Ragnarok Limited Edition',4,0,NULL,300,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'30',0,0,'bonus bVit,3; bonus bAgi,3; bonus bLuk,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2713,'Certificate_TW','Certificate',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2714,'Marvelous_Pandent','Marvelous Pendant',4,0,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'0',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2715,'Skul_Ring_','Skull Ring',4,10000,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus2 bSubRace,RC_Undead,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2716,'Librarian_Glove','Librarian Glove',4,20,NULL,100,NULL,0,NULL,1,0x00810200,63,2,136,NULL,'80',0,0,'bonus bMaxSP,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2717,'Pocket_Watch_','Pocket Watch',4,20,NULL,200,NULL,0,NULL,0,0x00010204,63,2,136,NULL,'80',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2718,'Lunatic_Brooch','Lunatic Brooch',4,20,NULL,200,NULL,0,NULL,1,0x00080808,63,2,136,NULL,'65',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2719,'Iron_Wrist','Iron Wrist',4,20,NULL,700,NULL,1,NULL,0,0x000444A2,63,2,136,NULL,'50',0,0,'bonus2 bSkillAtk,"SM_BASH",6; bonus2 bSkillAtk,"MC_MAMMONITE",6;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2720,'Medal_Swordman','Medal of Honor',4,20,NULL,0,NULL,1,NULL,0,0x00404082,63,2,136,NULL,'70',0,0,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bHit,10; bonus bMaxHP,500; bonus bMaxSP,50; bonus3 bAddEff,Eff_Stun,100,ATF_SHORT;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2721,'Medal_Thief','Medal of Honor',4,20,NULL,0,NULL,1,NULL,0,0x02021040,63,2,136,NULL,'70',0,0,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bFlee,10; bonus bMaxHP,300; bonus bMaxSP,80; bonus3 bAddEff,Eff_Poison,100,ATF_SHORT;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2722,'Medal_Acolyte','Medal of Honor',4,20,NULL,0,NULL,1,NULL,0,0x00008110,63,2,136,NULL,'70',0,0,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bMdef,6; bonus bMaxHP,600; bonus3 bAddEff,Eff_Silence,100,ATF_SHORT;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2723,'Medal_Mage','Medal of Honor',4,20,NULL,0,NULL,1,NULL,0,0x00810204,63,2,136,NULL,'70',0,0,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bMdef,6; bonus bMaxHP,600; bonus2 bAddEffWhenHit,Eff_Stone,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2724,'Medal_Archer','Medal of Honor',4,20,NULL,0,NULL,1,NULL,0,0x00080808,63,2,136,NULL,'70',0,0,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bCritical,10; bonus bMaxHP,300; bonus bMaxSP,80; bonus3 bAddEff,Eff_Blind,100,ATF_LONG;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2725,'Medal_Merchant','Medal of Honor',4,20,NULL,0,NULL,1,NULL,0,0x00040420,63,2,136,NULL,'70',0,0,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bAspdRate,10; bonus bMaxHP,500; bonus bMaxSP,50; bonus3 bAddEff,Eff_Curse,100,ATF_SHORT;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2726,'Icarus_Wing','Icarus Wings',4,20,NULL,100,NULL,0,NULL,0,0x00000800,18,2,136,NULL,'70',0,0,'bonus bMaxSP,50; bonus bDex,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2727,'Bowman_Scarf','Bowman Scarf',4,20,NULL,200,NULL,0,NULL,0,0x00000800,18,2,136,NULL,'70',0,0,'bonus bMaxSP,50; bonus bDex,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2728,'Cursed_Hand','Cursed Hand',4,20,NULL,50,NULL,0,NULL,1,0xFFFFFFFE,63,2,136,NULL,'80',0,0,'bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,30; bonus bHit,10; bonus bHPrecovRate,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2729,'Diabolus_Ring','Diabolus Ring',4,20,NULL,50,NULL,0,NULL,1,0x00CFFF80,18,2,136,NULL,'0',0,0,'bonus bMaxHP,100; bonus bMaxSP,100; bonus bHealPower,5; bonus2 bAddDamageClass,1916,10; bonus2 bAddDamageClass,1917,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2730,'Morroc_Seal','Seal of Continental Guard',4,20,NULL,50,NULL,0,NULL,1,0xFFFFFFFE,63,2,136,NULL,'80',0,0,'bonus bMaxHP,50; bonus bAspdRate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2731,'Morroc_Charm_Stone','Rune Spellstone',4,20,NULL,50,NULL,0,NULL,1,0xFFFFFFFE,63,2,136,NULL,'80',0,0,'bonus bMaxSP,50; bonus bVariableCastrate,-1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2732,'Morroc_Ring','Death Loop',4,20,NULL,50,NULL,0,NULL,1,0xFFFFFFFE,63,2,136,NULL,'80',0,0,'bonus bCritical,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2733,'Medal_Gunner','Sheriff Badge',4,20,NULL,0,NULL,1,NULL,0,0x41000000,63,2,136,NULL,'70',0,0,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bCritical,10; bonus bMaxHP,300; bonus bMaxSP,80; bonus3 bAddEff,Eff_Blind,100,ATF_LONG;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2734,'Directive_A','Directive',4,0,NULL,0,NULL,1,NULL,0,0x00000001,63,2,136,NULL,'0',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2735,'Directive_B','Directive',4,0,NULL,0,NULL,1,NULL,0,0x00000001,63,2,136,NULL,'0',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2736,'Navel_Ring','Navel Ring',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'75',0,0,'bonus bDex,3; bonus bLuk,3; bonus bMdef,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2737,'Foot_Ring','Foot Ring',4,20,NULL,150,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'75',0,0,'bonus bVit,3; bonus bMaxHPrate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2738,'Shiny_Coin','Shiny Coin',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus2 bAddClass,Class_All,6; bonus bMatkRate,6;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2739,'Ordinary_Coin','Ordinary Coin',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2740,'Rusty_Coin','Rusty Coin',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus2 bAddClass,Class_All,3; bonus bMatkRate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2741,'All_In_One_Ring','All In One Ring',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus bAllStats,1; bonus bNoCastCancel; bonus bVariableCastrate,10; skill "AL_HEAL",1; skill "AL_TELEPORT",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2742,'Lucky_Clip','Lucky Clip',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus2 bDropAddRace,RC_All,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2743,'Angelic_Ring','Angelic Ring',4,20,NULL,100,NULL,0,NULL,0,0x00CFFF80,18,2,136,NULL,'70',0,0,'bonus bInt,2; bonus bDex,1; bonus bMdef,2; autobonus3 "{ bonus bHealPower,20; }",100,3000,"AL_HEAL","{ specialeffect2 EF_HEAL3; }"; autobonus3 "{ bonus bHealPower,20; }",100,3000,"AM_POTIONPITCHER","{ specialeffect2 EF_HEAL3; }"; autobonus3 "{ bonus bHealPower,20; }",100,3000,"PR_SANCTUARY","{ specialeffect2 EF_HEAL3; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2744,'Sprint_Ring','Sprint Ring',4,20,NULL,100,NULL,0,NULL,0,0x00CFFF80,18,2,136,NULL,'70',0,0,'bonus bVariableCastrate,-10; bonus bDelayRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2745,'Pinguicula_Corsage','Pinguicula Corsage',4,20,NULL,200,NULL,0,NULL,1,0x00CFFF80,18,2,136,NULL,'70',0,0,'bonus bMdef,2; bonus bMaxSP,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2746,'Cold_Heart','Cold Heart',4,20,NULL,100,NULL,1,NULL,0,0x00001000,18,2,136,NULL,'80',0,0,'bonus bAgi,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2747,'Black_Cat','Black Cat',4,20,NULL,100,NULL,1,NULL,0,0x00020000,18,2,136,NULL,'80',0,0,'bonus bDex,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2748,'Cursed_Star','Cursed Star',4,20,NULL,200,NULL,0,NULL,0,0x00080808,18,2,136,NULL,'84',0,0,'bonus bMdef,3; bonus bDex,2; bonus bLuk,-1; bonus2 bHPLossRate,50,10000; bonus3 bAddEff,Eff_Curse,200,ATF_WEAPON|ATF_LONG|ATF_TARGET;',NULL,'heal -300,0;'); -REPLACE INTO `item_db_re` VALUES (2749,'Linen_Glove','Linen Glove',4,20,NULL,120,NULL,1,NULL,1,0x00CFFF80,18,2,136,NULL,'90',0,0,'bonus bMdef,2; bonus bAgi,2; bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2750,'Summer_Night_Dream','Summer Night Dream',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'/* skill "ALL_DREAM_SUMMERNIGHT",1; */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2751,'Academy_Badge','Academy Of Badge',4,0,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'if(BaseLevel<80) { bonus bMaxHP,400; bonus bMaxSP,200; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2752,'Praxinus_C','Praccsinos',4,2,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus2 bAddClass,Class_All,5; bonus bMatkrate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2753,'Beholder_Ring','Beholder Ring',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus2 bExpAddRace,RC_Formless,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2754,'Hallow_Ring','Hallow Ring',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus2 bExpAddRace,RC_Undead,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2755,'Clamorous_Ring','Clamorous Ring',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus2 bExpAddRace,RC_Brute,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2756,'Chemical_Ring','Chemical Ring',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus2 bExpAddRace,RC_Plant,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2757,'Insecticide_Ring','Insecticide Ring',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus2 bExpAddRace,RC_Insect,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2758,'Fisher_Ring','Fischer Ring',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus2 bExpAddRace,RC_Fish,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2759,'Decussate_Ring','Decussate Ring',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus2 bExpAddRace,RC_Demon,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2760,'Bloody_Ring','Bloody Ring',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus2 bExpAddRace,RC_DemiHuman,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2761,'Satanic_Ring','Satanic Ring',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus2 bExpAddRace,RC_Angel,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2762,'Dragoon_Ring','Dragon Ring',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus2 bExpAddRace,RC_Dragon,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2763,'Skul_Ring_C','Neo Skull Ring',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,18,2,136,NULL,'95',0,0,'bonus2 bAddClass,Class_All,5; bonus bMatkrate,5; bonus bMaxHPrate,5; skill "MG_SIGHT",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2764,'Small_Fishing_Rod','Small Fishing Rod',4,10,NULL,250,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2765,'Novice_Figure','Novice Figure',4,0,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus bMaxHP,70; if(BaseJob==Job_Novice||BaseJob==Job_SuperNovice) bonus bMaxHP,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2766,'Swordman_Figure','Swordman Figure',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus bVit,1; if(Class==Job_Swordman) bonus bDef,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2767,'Acolyte_Figure','Acolyte Figure',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus bInt,1; if(Class==Job_Acolyte) bonus bMaxSP,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2768,'Mage_Figure','Mage Figure',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus bInt,1; if(Class==Job_Mage) bonus bSPrecovRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2769,'Archer_Figure','Archer Figure',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus bDex,1; if(Class==Job_Archer) bonus bBaseAtk,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2770,'Thief_Figure','Thief Figure',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus bAgi,1; if(Class==Job_Thief) bonus bAspdRate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2771,'Merchant_Figure','Merchant Figure',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus bStr,1; if(Class==Job_Merchant) bonus bCritical,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2772,'Krieger_Ring1','Glorious Ring',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'81',0,0,'bonus bMaxHP,300; bonus2 bSubEle,Ele_Water,10; bonus2 bSubEle,Ele_Wind,10; bonus2 bSubEle,Ele_Earth,10; bonus2 bSubEle,Ele_Fire,10; bonus bAspdRate,5; bonus bVariableCastrate,-3; bonus bHealPower,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2773,'Krieger_Ring2','Glorious Mass-Production Ring',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'61',0,0,'bonus bAllStats,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2774,'Krieger_Ring3','Glorious Popularized Ring',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'0',0,0,'bonus bAllStats,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2775,'Lure','Lure',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2776,'Cool_Towel','Adventurer\'s Trusty Towel',4,20,NULL,100,NULL,NULL,NULL,1,0xFFFFFFFF,63,2,136,NULL,'0',0,0,NULL,'sc_start SC_SUMMER,INFINITE_TICK,0;','sc_end SC_SUMMER;'); -REPLACE INTO `item_db_re` VALUES (2777,'Shaman_Ring','Shaman Ring',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'30',0,0,'bonus bMaxHP,50; bonus bSPrecovRate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2778,'Shaman_Earing','Shaman Earrings',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'1',0,0,'bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2779,'Dark_Knight_Belt','Dark Knight Belt',4,20,NULL,500,NULL,1,NULL,0,0xFFFFFFFF,63,2,136,NULL,'1',0,0,'bonus bStr,2; bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2780,'Dark_Knight_Glove','Dark Knight Glove',4,20,NULL,500,NULL,1,NULL,0,0xFFFFFFFF,63,2,136,NULL,'80',0,0,'autobonus "{ bonus bAspdRate,2; }",10,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2781,'Aumdura\'s_Grace','Aumdura\'s Benefit',4,0,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,63,2,136,NULL,'1',0,0,'bonus bAllStats,1; bonus bMdef,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2782,'Ring_Of_Wise_King','Ring of the Ancient Wise King',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus bMaxHP,50; bonus bMaxSP,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2783,'Eyes_Stone_Ring','Eye Stone Ring',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'70',0,0,'bonus bCritical,2; bonus bMaxSP,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2784,'Oh_Holy_Night','Christmas Musicbox',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'1',0,0,'skill "ALL_WEWISH",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2785,'Orleans_Glove_M','Orlean\'s Gloves',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFE,18,2,136,NULL,'90',0,0,'bonus bDex,2; bonus bMatkRate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2786,'Spiritual_Ring_M','Spiritual Ring',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus bInt,2; bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2787,'Waterdrop_Brooch','Waterdrop Brooch',4,20,NULL,200,NULL,0,NULL,1,0xFFFFFFFF,18,2,136,NULL,'1',0,0,'bonus bMdef,2; bonus bMaxHPrate,1; bonus2 bSubEle,Ele_Water,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2788,'Bradium_Earing','Bradium Earring',4,20,NULL,200,NULL,0,NULL,1,0xFFFFFFFF,18,2,136,NULL,'0',0,0,'bonus bInt,1; bonus bDex,1; bonus bMatk,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2789,'Bradium_Ring','Bradium Ring',4,20,NULL,200,NULL,0,NULL,1,0xFFFFFFFF,18,2,136,NULL,'0',0,0,'bonus bStr,1; bonus bVit,1; bonus bBaseAtk,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2790,'Bradium_Brooch','Bradium Brooch',4,20,NULL,200,NULL,0,NULL,1,0xFFFFFFFF,18,2,136,NULL,'0',0,0,'bonus bAgi,1; bonus bFlee,4; if(readparam(bAgi)>=120) bonus bCritical,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2791,'Just_Got_Fish','Fresh Fish',4,20,NULL,500,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'1',0,0,'bonus bHit,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2792,'Ring_Of_Flame_Lord_I','Ring of Flame Lord',4,0,NULL,0,NULL,0,NULL,0,0x00CFFF80,18,2,136,NULL,'0',0,0,'bonus bStr,2; bonus bVit,1; bonus bBaseAtk,15; 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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2793,'Ring_Of_Resonance_I','Ring of Resonance',4,0,NULL,0,NULL,2,NULL,0,0x00CFFF80,18,2,136,NULL,'0',0,0,'bonus bAgi,2; bonus bVit,1; bonus bMdef,2; 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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2794,'Magic_Stone_Ring','Magic Stone Ring',4,0,NULL,0,NULL,0,NULL,1,0x00000080,63,2,136,NULL,'99',0,0,'bonus bStr,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2795,'Green_Apple_Ring','Green Apple Ring',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'99',0,0,'if(JobLevel<30) { bonus bAllStats,6-(JobLevel/5); }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2796,'Magical_Stone','Rocks',4,0,NULL,200,NULL,0,NULL,0,0x00810204,63,2,136,NULL,'99',0,0,'bonus2 bAddDamageClass,2047,10; bonus2 bAddDefMonster,2048,-10; bonus3 bAddMonsterIdDropItem,6152,2047,70;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2797,'Magical_Stone_','Rocks',4,0,NULL,200,NULL,0,NULL,0,0x00810204,63,2,136,NULL,'99',0,0,'bonus2 bAddDamageClass,2049,10; bonus2 bAddDefMonster,2050,-10; bonus3 bAddMonsterIdDropItem,6151,2049,70;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2798,'Will_Of_Exhausted_Angel','Will Of Exhausted Angel',4,0,NULL,200,NULL,0,NULL,0,0x00008100,63,2,136,NULL,'99',0,0,'if(strcharinfo(3)=="job3_arch02") { bonus2 bAddDefMonster,1761,50; bonus2 bAddDefMonster,1762,50; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2799,'Kuirpenring','Kuirpenring',4,0,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus bMdef,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2800,'Accelerator','Accelerator',4,100000,NULL,100,NULL,0,NULL,1,0x00000400,56,2,136,NULL,'99',0,0,'bonus bAgi,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2801,'Hovering_Booster','Hovering Booster',4,100000,NULL,2000,NULL,0,NULL,1,0x00000400,56,2,136,NULL,'99',0,0,'bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2802,'Suicidal_Device','Suicidal Device',4,500000,NULL,1000,NULL,0,NULL,1,0x00000400,56,2,136,NULL,'99',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2803,'Shape_Shifter','Shape Shifter',4,100000,NULL,500,NULL,0,NULL,1,0x00000400,56,2,136,NULL,'99',0,0,'bonus bInt,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2804,'Cooling_Device','Cooling Device',4,100000,NULL,2500,NULL,0,NULL,1,0x00000400,56,2,136,NULL,'99',0,0,'bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2805,'Mag_Field_Generator','Magnetic Field Generator',4,100000,NULL,6000,NULL,0,NULL,1,0x00000400,56,2,136,NULL,'99',0,0,'bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2806,'Barrier_Builder','Barrier Builder',4,150000,NULL,8000,NULL,3,NULL,1,0x00000400,56,2,136,NULL,'99',0,0,'bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2807,'Repair_Kit','Repair Kit',4,200000,NULL,400,NULL,0,NULL,1,0x00000400,56,2,136,NULL,'99',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2808,'Camouflage_Generator','Camouflague Generator',4,250000,NULL,1000,NULL,0,NULL,1,0x00000400,56,2,136,NULL,'99',0,0,'bonus bAgi,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2809,'High_Quality_Cooler','High Quality Cooler',4,100000,NULL,2500,NULL,0,NULL,1,0x00000400,56,2,136,NULL,'99',0,0,'bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2810,'Special_Cooler','Special Cooler',4,100000,NULL,2500,NULL,0,NULL,1,0x00000400,56,2,136,NULL,'99',0,0,'bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2811,'Freyja_SBracelet7','Freyja\'s Spirit Bracelet',4,20,NULL,200,NULL,1,NULL,0,0xFFFFFFFF,63,2,136,NULL,'20',0,0,'bonus bAllStats,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2812,'Freyja_SBracelet30','Freyja\'s Spirit Bracelet',4,20,NULL,200,NULL,1,NULL,0,0xFFFFFFFF,63,2,136,NULL,'20',0,0,'bonus bAllStats,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2813,'Freyja_SBracelet60','Freyja\'s Spirit Bracelet',4,20,NULL,200,NULL,1,NULL,0,0xFFFFFFFF,63,2,136,NULL,'20',0,0,'bonus bAllStats,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2814,'Freyja_SBracelet90','Freyja\'s Spirit Bracelet',4,20,NULL,200,NULL,1,NULL,0,0xFFFFFFFF,63,2,136,NULL,'20',0,0,'bonus bAllStats,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2815,'Th_Ring_Of_Water','Ring Of Water',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus bAllStats,1; bonus bMdef,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2816,'Radar_Ring1','Radar Ring',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus3 bAddMonsterIdDropItem,6206,1002,400; bonus3 bAddMonsterIdDropItem,6207,1161,400; bonus3 bAddMonsterIdDropItem,6208,1153,400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2817,'Radar_Ring2','Radar Ring',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus3 bAddMonsterIdDropItem,6206,1026,400; bonus3 bAddMonsterIdDropItem,6207,1197,400; bonus3 bAddMonsterIdDropItem,6208,1504,400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2818,'Radar_Ring3','Radar Ring',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus3 bAddMonsterIdDropItem,6206,1508,400; bonus3 bAddMonsterIdDropItem,6207,1098,400; bonus3 bAddMonsterIdDropItem,6208,1315,400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2819,'Swordman_Manual','Swordsman Manual',4,0,NULL,100,NULL,0,NULL,0,0x00000001,63,2,136,NULL,'1',0,0,'bonus bMaxSP,100; skill "SM_BASH",1; skill "SM_PROVOKE",1; skill "SM_MAGNUM",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2820,'Thief_Manual','Thief Manual',4,0,NULL,100,NULL,0,NULL,0,0x00000001,63,2,136,NULL,'1',0,0,'bonus bMaxSP,100; skill "TF_DOUBLE",3; bonus bDoubleRate,15; skill "TF_STEAL",1; skill "TF_HIDING",1; skill "TF_POISON",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2821,'Acolyte_Manual','Acolyte Manual',4,0,NULL,100,NULL,0,NULL,0,0x00000001,63,2,136,NULL,'1',0,0,'bonus bMaxSP,100; skill "AL_HEAL",1; skill "AL_INCAGI",1; skill "AL_BLESSING",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2822,'Archer_Manual','Archer Manual',4,0,NULL,100,NULL,0,NULL,0,0x00000001,63,2,136,NULL,'1',0,0,'bonus bMaxSP,100; skill "AC_OWL",1; skill "AC_CONCENTRATION",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2823,'Merchant_Manual','Merchant Manual',4,0,NULL,100,NULL,0,NULL,0,0x00000001,63,2,136,NULL,'1',0,0,'bonus bMaxSP,100; skill "MC_DISCOUNT",1; skill "MC_OVERCHARGE",1; skill "MC_IDENTIFY",1; skill "MC_MAMMONITE",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2824,'Mage_Manual','Mage Manual',4,0,NULL,100,NULL,0,NULL,0,0x00000001,63,2,136,NULL,'1',0,0,'bonus bMaxSP,100; skill "MG_SRECOVERY",1; skill "MG_COLDBOLT",1; skill "MG_FIREWALL",1; skill "MG_FIREBOLT",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2825,'Shaman_EaringB','Shaman Earrings',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'1',0,0,'bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2826,'Dark_Knight_BeltB','Dark Knight Belt',4,20,NULL,500,NULL,1,NULL,0,0xFFFFFFFF,63,2,136,NULL,'1',0,0,'bonus bDex,2; bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2827,'Dark_Knight_GloveB','Dark Knight Glove',4,20,NULL,500,NULL,1,NULL,0,0xFFFFFFFF,63,2,136,NULL,'1',0,0,'autobonus "{ bonus bMaxHPrate,10; }",10,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2828,'Upg_Clip','Upg Clip',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'1',0,0,'bonus bMaxSP,50; bonus bMaxHPrate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2829,'Greed_Clip','Greed Clip',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'10',0,0,'skill "BS_GREED",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2830,'Magingiorde_C','Megingjard',4,20,NULL,0,NULL,2,NULL,0,0xFFFFFFFF,63,2,136,NULL,'94',0,0,'bonus bStr,40; bonus bMdef,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2831,'Brysinggamen_C','Brisingamen',4,20,NULL,0,NULL,1,NULL,0,0xFFFFFFFF,63,2,136,NULL,'94',0,0,'bonus bStr,6; bonus bInt,6; bonus bVit,6; bonus bAgi,6; bonus bLuk,10; bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2832,'Freyja_Ring','Freyja\'s Ring',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'1',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2833,'Odin\'s_Recall','Odin\'s Recall',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'1',0,0,'bonus bAllStats,1; skill "ALL_ODINS_RECALL",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2834,'F_All_In_One_Ring','All In One Ring',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus bAllStats,1; bonus bNoCastCancel; bonus bVariableCastrate,10; skill "AL_HEAL",1; skill "AL_TELEPORT",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2835,'F_Critical_Ring_C','Critical Ring',4,1,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'1',0,0,'bonus bCritical,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2836,'F_Glove_C','Glove',4,1,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'1',0,0,'bonus bDex,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2837,'F_Safety_Ring_C','Safety Ring',4,1,NULL,0,NULL,5,NULL,0,0xFFFFFFFE,63,2,136,NULL,'1',0,0,'bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2838,'F_Necklace_C','Necklace',4,1,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'1',0,0,'bonus bVit,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2839,'F_Ring_C','Ring',4,1,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'1',0,0,'bonus bStr,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2840,'F_Rosary_C','Rosary',4,1,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'1',0,0,'bonus bLuk,4; bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2841,'Caracas_Ring','Caracas Ring',4,0,NULL,0,NULL,2,NULL,0,0xFFFFFFFE,63,2,136,NULL,'99',0,0,'bonus bInt,2; bonus bDex,2; bonus bMdef,2; bonus2 bExpAddRace,RC_All,10; bonus2 bDropAddRace,RC_All,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2842,'F_Earing_C','Earring',4,1,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'1',0,0,'bonus bInt,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2843,'Gold_Trickle','Gold Trickle',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'75',0,0,'bonus bMaxSP,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2844,'El_Dicastes_Light','Light Of El Discastes',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'80',0,0,'skill "RETURN_TO_ELDICASTES",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2845,'No_Fear_Belt','No Fear Belt',4,0,NULL,0,NULL,2,NULL,0,0xFFFFFFFF,63,2,136,NULL,'20',0,0,'bonus bMdef,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2846,'E_All_In_One_Ring','All In One Ring',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus bAllStats,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2847,'E_Critical_Ring_C','Critical Ring',4,1,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'1',0,0,'bonus bCritical,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2848,'E_Glove_C','Glove',4,1,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'1',0,0,'bonus bDex,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2849,'E_Safety_Ring_C','Safety Ring',4,1,NULL,0,NULL,5,NULL,0,0xFFFFFFFE,63,2,136,NULL,'1',0,0,'bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2850,'E_Ring_C','Ring',4,1,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'1',0,0,'bonus bVit,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2851,'E_Necklace_C','Necklace',4,1,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'1',0,0,'bonus bStr,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2852,'E_Rosary_C','Rosary',4,1,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'1',0,0,'bonus bLuk,4; bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2853,'Telekinetic_Orb','Telekinetic Orb',4,20,NULL,200,NULL,2,NULL,0,0xFFFFFFFE,63,2,136,NULL,'110',0,0,'bonus bMdef,1; bonus bInt,3; bonus bMaxSP,30; bonus2 bSkillAtk,"WL_SOULEXPANSION",10; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",10; bonus2 bSkillUseSP,"WL_SOULEXPANSION",-50; bonus2 bSkillUseSP,"SO_PSYCHIC_WAVE",-50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2854,'Alchemy_Glove','Alchemy Glove',4,20,NULL,100,NULL,1,NULL,1,0xFFFFFFFE,63,2,136,NULL,'125',0,0,'bonus bMdef,2; bonus bInt,1; bonus2 bMagicAtkEle,Ele_Fire,10; bonus2 bMagicAtkEle,Ele_Water,-20; bonus2 bSubEle,Ele_Water,-30; bonus3 bAutoSpell,"MG_FIREBALL",5,30; bonus5 bAutoSpell,"MG_FIREBOLT",5,30,BF_MAGIC,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2855,'Whike_Black_Tail','Whike Black Tail',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'45',0,0,'bonus bCriticalRate,7; bonus bAspdRate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2856,'Half_Megin','Half Megingjard',4,20,NULL,0,NULL,1,NULL,0,0xFFFFFFFF,63,2,136,NULL,'47',0,0,'bonus bMdef,3; bonus bStr,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2857,'Half_Brysing','Half Brisingamen',4,20,NULL,0,NULL,1,NULL,0,0xFFFFFFFF,63,2,136,NULL,'47',0,0,'bonus bStr,3; bonus bInt,5; bonus bVit,3; bonus bDex,3; bonus bAgi,3; bonus bLuk,5; bonus bMdef,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2858,'Pendant_Of_Guardian','Pendant Of Guardian',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'70',0,0,'skill "ALL_GUARDIAN_RECALL",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2859,'Golden_Rod_Orb','Golden Rod Orb',4,20,NULL,200,NULL,2,NULL,0,0x00000200,63,2,136,NULL,'100',0,0,'bonus bMdef,2; bonus bInt,1; bonus2 bSubEle,Ele_Wind,15; bonus3 bAutoSpellWhenHit,"WZ_JUPITEL",3,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2860,'Aqua_Orb','Aqua Orb',4,20,NULL,200,NULL,2,NULL,0,0x00000200,63,2,136,NULL,'100',0,0,'bonus bMdef,2; bonus bInt,1; bonus2 bSubEle,Ele_Water,15; bonus3 bAutoSpellWhenHit,"WZ_FROSTNOVA",3,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2861,'Crimson_Orb','Crismon Orb',4,20,NULL,200,NULL,2,NULL,0,0x00000200,63,2,136,NULL,'100',0,0,'bonus bMdef,2; bonus bInt,1; bonus2 bSubEle,Ele_Fire,15; bonus3 bAutoSpellWhenHit,"WZ_SIGHTRASHER",3,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2862,'Forest_Orb','Forest Orb',4,20,NULL,200,NULL,2,NULL,0,0x00000200,63,2,136,NULL,'100',0,0,'bonus bMdef,2; bonus bInt,1; bonus2 bSubEle,Ele_Earth,15; bonus3 bAutoSpellWhenHit,"WZ_QUAGMIRE",3,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2863,'Ring_Of_Valkyrie','Ring Of Valkyrie',4,0,NULL,0,NULL,2,NULL,0,0xFFFFFFFF,63,2,136,NULL,'1',0,0,'bonus2 bExpAddClass,Class_All,5; bonus2 bDropAddRace,RC_All,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2864,'Light_Of_Cure','Light Of Cure',4,20,NULL,0,NULL,0,NULL,0,0x00000100,63,2,136,NULL,'110',0,0,'bonus bVit,2; bonus bHealPower,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2865,'Seal_Of_Cathedral','Seal Of Cathedral',4,20,NULL,0,NULL,0,NULL,0,0x00000100,63,2,136,NULL,'110',0,0,'bonus bInt,2; bonus bHealPower,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2866,'Ring_Of_Archbishop','Ring Of Archbishop',4,20,NULL,0,NULL,0,NULL,0,0x00000100,63,2,136,NULL,'110',0,0,'bonus bDex,2; bonus bHealPower,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2867,'Broken_Bamboo_Piece','Broken Bamboo Piece',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus bMdef,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2868,'Green_Batik','Green Batik',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFE,63,2,136,NULL,'45',0,0,'bonus bStr,1; bonus bInt,1; bonus bDex,1; bonus bMdef,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2869,'Colorful_Ketupat','Colorful Ketupat',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'45',0,0,'bonus bStr,1; bonus bInt,1; bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2870,'Tw_8th_Anni_Ring','Tw 8th Anni Ring',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus bStr,5; bonus bInt,5; bonus bVit,5; bonus bDex,5; bonus bAgi,5; bonus bLuk,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2871,'Brazilian_Emblem','Brazilian Emblem',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'60',0,0,'bonus2 bAddClass,Class_All,3; bonus bMatkRate,3; bonus bMaxHP,50; bonus bMaxSP,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2872,'G_Honor_Certificate','G Honor Certificate',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'1',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2873,'Cat_Hand_Glove','Cat Hand Glove',4,20,NULL,100,NULL,5,NULL,1,0xFFFFFFFF,63,2,136,NULL,'1',0,0,'bonus bAgi,1; bonus bVit,1; bonus bDex,1; bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2874,'Buffalo_Horn','Buffalo Horn',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'10',0,0,'bonus bAspd,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2875,'RO_Appreciation_Ring','RO Appreciation Ring',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2876,'Necklace_Spica','Necklace Spica',4,20,NULL,200,NULL,1,NULL,0,0xFFFFFFFF,63,2,136,NULL,'10',0,0,'bonus bMdef,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2877,'Glove_Sabik','Glove Sabik',4,20,NULL,200,NULL,1,NULL,0,0xFFFFFFFF,63,2,136,NULL,'10',0,0,'bonus bMdef,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2878,'Bracelet_Arunairi','Bracelet Arunairi',4,20,NULL,200,NULL,1,NULL,0,0xFFFFFFFF,63,2,136,NULL,'10',0,0,'bonus bMdef,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2879,'Badge_Giorredart','Badge Giorredart',4,20,NULL,200,NULL,1,NULL,0,0xFFFFFFFF,63,2,136,NULL,'10',0,0,'bonus bMdef,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2880,'Ring_Lupak','Ring Lupak',4,20,NULL,200,NULL,1,NULL,0,0xFFFFFFFF,63,2,136,NULL,'10',0,0,'bonus bMdef,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2881,'Orleans_Necklace','Orleans Necklace',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus bDex,2; bonus bMatk,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2882,'Ecoro_Cardslip','Ecoro Cardslip',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus bVit,1; bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2883,'Ur_Seal','Ur\'s Seal',4,20,NULL,200,NULL,4,NULL,1,0x00000080,56,2,136,NULL,'100',0,0,'bonus bMaxHPrate,2; bonus2 bSkillUseSP,"LK_SPIRALPIERCE",5; bonus2 bSkillUseSP,"RK_HUNDREDSPEAR",5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2884,'Peuz_Seal','Peuz\'s Seal',4,20,NULL,200,NULL,3,NULL,1,0x00000080,56,2,136,NULL,'100',0,0,'bonus bBaseAtk,20; bonus bMaxSP,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2885,'Mother_Heart','Mother Heart',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus bBaseAtk,15; bonus bMatk,15; bonus2 bExpAddClass,Class_All,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2886,'Sabah_Ring','Sapha Ring',4,20,NULL,100,NULL,0,NULL,0,0x00001000,63,2,136,NULL,'100',0,0,'bonus bCritical,3; bonus2 bSkillUseSP,"GC_DARKILLUSION",5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2887,'Nab_Ring','Nab Ring',4,20,NULL,100,NULL,0,NULL,0,0x00001000,63,2,136,NULL,'100',0,0,'bonus bBaseAtk,10; bonus bMatk,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2888,'School_Bag','School Bag',4,20,NULL,1000,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus bAspdRate,3; bonus bVariableCastrate,-3; if(BaseLevel<80){ bonus bMaxHP,200; bonus bMaxSP,100; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2889,'Endure_Ring','Endure Ring',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'60',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2890,'White_Wing_Brooch','White Wing Brooch',4,20,NULL,100,NULL,0,NULL,0,0x00000800,63,2,136,NULL,'100',0,0,'bonus bDex,2; bonus bLongAtkRate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2891,'Black_wing_Brooch','Black Wing Brooch',4,20,NULL,100,NULL,0,NULL,0,0x00000800,56,2,136,NULL,'100',0,0,'bonus bInt,2; bonus bFlee2,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2892,'Assassin_Handcuffs','Assassin\'s Glove',4,56000,NULL,400,NULL,3,NULL,1,0x00001000,63,2,136,NULL,'100',0,0,'bonus bMaxSP,20; bonus bCritical,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2893,'Cursed_Heart','Cursed Heart',4,20,NULL,50,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'80',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2894,'Glove_Of_Shura','Sura Gauntlet',4,20,NULL,400,NULL,1,NULL,0,0x00008000,63,2,136,NULL,'130',0,0,'bonus bStr,5; bonus bMaxSPrate,6; bonus bMaxHPrate,-6; if(readparam(bStr)>=120){ bonus bBaseAtk,30; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2895,'Medal_Of_Valor1','Medal Of Valor1',4,0,NULL,0,NULL,4,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus bVariableCastrate,-2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2896,'Medal_Of_Valor2','Medal Of Valor2',4,0,NULL,0,NULL,4,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus bAspdRate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2897,'2011RWC_Necklace_J','2011RWC Necklace J',4,0,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'1',0,0,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus2 bExpAddClass,Class_All,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2898,'Black_Rosary','Dark Rosary',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'90',0,0,'bonus bMdef,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2899,'Sound_Amplifier','Sound Amplification Device',4,20,NULL,100,NULL,0,NULL,1,0x00080800,63,2,136,NULL,'90',0,0,'bonus2 bSkillAtk,"WM_METALICSOUND",150; bonus2 bSkillUseSP,"WM_METALICSOUND",-60; bonus bVariableCastrate,-50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2900,'Morrigane\'s_Belt_','Morrigane\'s Belt',4,30000,NULL,200,NULL,0,NULL,1,0xFFFFFFFE,63,2,136,NULL,'61',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2901,'Morrigane\'s_Pendant_','Morrigane\'s Pendant',4,30000,NULL,200,NULL,0,NULL,1,0xFFFFFFFE,63,2,136,NULL,'61',0,0,'bonus bStr,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2902,'Morpheus\'s_Ring_','Morpheus\'s Ring',4,30000,NULL,100,NULL,0,NULL,1,0xFFFFFFFE,63,2,136,NULL,'33',0,0,'bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2903,'Morpheus\'s_Armlet_','Morpheus\'s Armlet',4,30000,NULL,100,NULL,0,NULL,1,0xFFFFFFFE,63,2,136,NULL,'33',0,0,'bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2904,'Naqsh','Naqsi',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2905,'Super_Ora_Ora','Super Ora Ora',4,0,NULL,1000,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2906,'Happy_Gauntlet','Happy Gauntlet',4,20,NULL,1000,NULL,3,NULL,1,0xFFFFFFFF,63,2,136,NULL,'70',0,0,'bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2907,'Buwaya_Tattoo','Bawaya Agimat Tattoo',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'1',0,0,'bonus bMatkRate,7; bonus bFixedCastrate,-7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2908,'Light_Ring','Light Ring',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'0',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2909,'Darkness_Ring','Darkness Ring',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'0',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2910,'Bakonawa_Tattoo','Bakunawa Agimat Tattoo',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'1',0,0,'bonus2 bAddClass,Class_All,7; bonus bAspdRate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2911,'Bangungot_Tattoo','Bangungot Agimat Tattoo',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'1',0,0,'bonus bHealPower,4; bonus bHealPower2,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2912,'Xylitol_2011','Xylitol 2011',4,20,NULL,300,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'0',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2913,'Thief_Handcuff','Thief Handcuff',4,20,NULL,1400,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'10',0,0,'bonus bBaseAtk,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2914,'Wizard_Left_Eye','Wizard Left Eye',4,20,NULL,100,NULL,1,NULL,1,0x00CFDF80,63,2,136,NULL,'0',0,0,'bonus bInt,4; bonus bMdef,3; bonus bVariableCastrate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2915,'Ettlang_Keepsake','Ettlang Keepsake',4,20,NULL,50,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus bMdef,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2916,'Fairy_Wing','Fairy Wing',4,0,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'90',0,0,'skill "ECLAGE_RECALL",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2917,'Str_Glove','Str Glove',4,75000,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'100',0,0,'bonus bMaxHP,100; bonus bMaxSP,20; bonus bBaseAtk,(readparam(bStr)/10); if(readparam(bStr)>=110) bonus2 bAddClass,Class_All,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2918,'Int_Glove','Int Glove',4,75000,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'100',0,0,'bonus bMaxHP,100; bonus bMaxSP,20; bonus bMatk,(readparam(bInt)/10); if(readparam(bInt)>=110) bonus bMatkRate,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2919,'Agi_Glove','Agi Glove',4,75000,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'100',0,0,'bonus bMaxHP,100; bonus bMaxSP,20; bonus bFlee,(readparam(bAgi)/10); if(readparam(bAgi)>=110) bonus bFlee2,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2920,'Vit_Glove','Vit Glove',4,75000,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'100',0,0,'bonus bMaxHP,100; bonus bMaxSP,20; bonus bMaxHP,(readparam(bVit)/10)*50; if(readparam(bVit)>=110) bonus bMaxHPrate,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2921,'Dex_Glove','Dex Glove',4,75000,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'100',0,0,'bonus bMaxHP,100; bonus bMaxSP,20; bonus bHit,(readparam(bDex)/10); if(readparam(bDex)>=110) bonus bLongAtkRate,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2922,'Luk_Glove','Luk Glove',4,75000,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'100',0,0,'bonus bMaxHP,100; bonus bMaxSP,20; bonus bCritical,(readparam(bLuk)/10); if(readparam(bLuk)>=110) bonus bCritAtkRate,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2923,'Str_Glove_','Str Glove',4,75000,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'100',0,0,'bonus bMaxHP,100; bonus bMaxSP,20; bonus bBaseAtk,(readparam(bStr)/10); if(readparam(bStr)>=110) bonus2 bAddClass,Class_All,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2924,'Int_Glove_','Int Glove',4,75000,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'100',0,0,'bonus bMaxHP,100; bonus bMaxSP,20; bonus bMatk,(readparam(bInt)/10); if(readparam(bInt)>=110) bonus bMatkRate,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2925,'Agi_Glove_','Agi Glove',4,75000,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'100',0,0,'bonus bMaxHP,100; bonus bMaxSP,20; bonus bFlee,(readparam(bAgi)/10); if(readparam(bAgi)>=110) bonus bFlee2,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2926,'Vit_Glove_','Vit Glove',4,75000,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'100',0,0,'bonus bMaxHP,100; bonus bMaxSP,20; bonus bMaxHP,(readparam(bVit)/10)*50; if(readparam(bVit)>=110) bonus bMaxHPrate,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2927,'Dex_Glove_','Dex Glove',4,75000,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'100',0,0,'bonus bMaxHP,100; bonus bMaxSP,20; bonus bHit,(readparam(bDex)/10); if(readparam(bDex)>=110) bonus bLongAtkRate,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2928,'Luk_Glove_','Luk Glove',4,75000,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'100',0,0,'bonus bMaxHP,100; bonus bMaxSP,20; bonus bCritical,(readparam(bLuk)/10); if(readparam(bLuk)>=110) bonus bCritAtkRate,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2935,'Sprint_Gloves','Sprint Gloves',4,20,NULL,100,NULL,0,NULL,1,0x000FDF80,58,2,136,NULL,'1',0,0,'bonus bVariableCastrate,-1; bonus bDelayrate,-1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2936,'Recovery_Ring','Recovery Ring',4,20,NULL,100,NULL,5,NULL,1,0xFFFFFFFF,63,2,136,NULL,'10',0,0,'bonus bVit,1; bonus bMaxHP,250; bonus bMaxHPrate,5; bonus bHealPower2,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2940,'Ninja_Manual','Ninja Manual',4,0,NULL,100,NULL,0,NULL,0,0x00000001,63,2,136,NULL,'0',0,0,'bonus bMaxSP,100; skill "NJ_UTSUSEMI",1; skill "NJ_KOUENKA",1; skill "NJ_SYURIKEN",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2941,'Gunslinger_Manual','Gunslinger Manual',4,0,NULL,100,NULL,0,NULL,0,0x00000001,63,2,136,NULL,'0',0,0,'bonus bMaxSP,100; skill "GS_GLITTERING",1; skill "GS_ADJUSTMENT",1; skill "GS_MADNESSCANCEL",1; skill "GS_INCREASING",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2942,'Taekwon_Manual','Taekwon Manual',4,0,NULL,100,NULL,0,NULL,0,0x00000001,63,2,136,NULL,'0',0,0,'bonus bMaxSP,100; skill "TK_SEVENWIND",4; skill "TK_JUMPKICK",5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2943,'Critical_Ring_','Critical Ring',4,0,NULL,100,NULL,NULL,NULL,1,0xFFFFFFFF,63,2,136,NULL,NULL,0,NULL,'bonus bCritical,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2944,'TE_Ring_Of_Protection','TE Ring Of Protection',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,136,NULL,'40',0,NULL,'bonus bMaxHP,100; bonus2 bSubRace,RC_Player_Human,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2945,'TE_Ring_Of_Rage','TE Ring Of Rage',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,136,NULL,'40',0,NULL,'bonus2 bAddRace,RC_Player_Human,5; bonus2 bMagicAddRace,RC_Player_Human,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2946,'TE_Ring_Of_Defiance','TE Ring Of Defiance',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,136,NULL,'40',0,NULL,'bonus bMdef,5; bonus2 bSubRace,RC_Player_Human,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2948,'Demon_Wing','Demon Wing',4,10,NULL,100,NULL,NULL,NULL,1,0xFFFFFFFF,63,2,136,NULL,'70',NULL,NULL,'bonus bFlee,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2949,'Silversmith_Bracelet','Silversmith Bracelet',4,10,NULL,100,NULL,3,NULL,1,0xFFFFFFFF,63,2,136,NULL,'60',NULL,NULL,'bonus bAllStats,1; bonus bMdef,3; skill "SA_SPELLBREAKER",5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2950,'Rune_Ring','Rune Ring',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,136,NULL,'1',0,NULL,'bonus2 bExpAddClass,Class_Normal,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2951,'Kvasir_Ring_Blue','Kvasir Ring Blue',4,0,NULL,100,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,136,NULL,'1',0,NULL,'bonus bMaxSP,30; skill "ECL_SNOWFLIP",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2952,'Kvasir_Ring_Red','Kvasir Ring Red',4,0,NULL,100,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,136,NULL,'1',0,NULL,'bonus bMaxSP,30; skill "ECL_PEONYMAMY",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2953,'Kvasir_Ring_Green','Kvasir Ring Green',4,0,NULL,100,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,136,NULL,'1',0,NULL,'bonus bMaxHP,100; skill "ECL_SADAGUI",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2954,'Kvasir_Ring_Brown','Kvasir Ring Brown',4,10,NULL,100,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,136,NULL,'1',NULL,NULL,'bonus bMaxHP,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2956,'Safety_Ring_','Advanced Safety Ring',4,75000,NULL,100,NULL,10,NULL,1,0xFFFFFFFE,63,2,136,NULL,'50',0,0,'bonus bMdef,5; bonus bAllStats,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2957,'Good_Ring_Of_Flame_Lord','Advanced Ring Of Flame Lord',4,20,NULL,100,NULL,0,NULL,0,0x7CCFDF80,63,2,136,NULL,'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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2958,'Good_Ring_Of_Resonance','Advanced Ring Of Resonance',4,20,NULL,100,NULL,2,NULL,0,0x7CCFDF80,63,2,136,NULL,'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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2959,'Fidelity_Necklace','Fidelity Necklace',4,20,NULL,300,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'50',0,0,'bonus bAgi,2; bonus2 bSubRace,RC_Brute,3; bonus2 bSubRace,RC_Player_Doram,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2960,'Badge_Of_Manny','Badge Of Manny',4,20,NULL,200,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus bAllStats,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2963,'Body_Power_Up_Ring','Physical Enhancer Ring',4,10,NULL,100,NULL,NULL,NULL,1,0xFFFFFFFF,63,2,136,NULL,'90',0,0,'bonus2 bAddClass,Class_All,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2964,'Ring_Of_Spell_Explosion','Magic Intensifier Ring',4,10,NULL,100,NULL,NULL,NULL,1,0xFFFFFFFF,63,2,136,NULL,'90',0,0,'bonus bMatkRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2966,'RWC_2012_Ring','RWC 2012 Ring',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus2 bAddClass,Class_All,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2967,'RWC_2012_Ring_','Chambered RWC 2012 Ring',4,20,NULL,200,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus2 bAddClass,Class_All,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2968,'RWC_2012_Pendant','RWC 2012 Pendant',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus bMatkRate,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2969,'RWC_2012_Pendant_','Chambered RWC 2012 Pendant',4,20,NULL,200,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus bMatkRate,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2971,'Pocket_Watch','Pocket Watch',4,10,NULL,200,NULL,1,NULL,1,0x800200,63,2,136,NULL,'80',0,NULL,'bonus bHPrecovRate,15; bonus bSPrecovRate,15; bonus bMatkRate,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2976,'Red_Lantern','Red Lantern',4,10,NULL,200,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'100',0,NULL,'bonus bMaxSP,-300; skill "MG_SIGHT",1;',NULL,'sc_end SC_SIGHT;'); -REPLACE INTO `item_db_re` VALUES (2977,'Hurt_Mind','Hurt Mind',4,10,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'110',0,NULL,'bonus bMaxSP,200; skill "DC_SCREAM",3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2978,'KindHeart','Kind Heart',4,10,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'110',0,NULL,'bonus bMaxHP,500; bonus2 bHPRegenRate,300,10000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2979,'Strawberry_Decoration','Strawberry Decoration',4,20,NULL,500,NULL,1,NULL,1,0xFFFFFFFE,63,2,136,NULL,'1',NULL,NULL,'bonus bAllStats,1; bonus3 bAutoSpellWhenHit,"WZ_FROSTNOVA",3,10; /* Confirm: Frost Nova cast chance */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2980,'Evilspirit_Gloves','Evil Spirit Gloves',4,10,NULL,100,NULL,NULL,NULL,1,0xFFFFFFFF,63,2,136,NULL,'110',NULL,NULL,'bonus bMaxHP,500; bonus bMaxSP,200; skill "PF_SPIDERWEB",1; bonus3 bAutoSpell,"SO_PSYCHIC_WAVE",1,20; bonus5 bAutoSpell,"HW_MAGICPOWER",1,10,BF_MAGIC,0; bonus5 bAutoSpell,"WZ_FROSTNOVA",10,10,BF_MAGIC,0; bonus5 bAutoSpell,"WZ_FROSTNOVA",10,20,BF_WEAPON,0; bonus5 bAutoSpellWhenHit,"DC_SCREAM",1,50,BF_WEAPON|BF_MAGIC,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2981,'RingOfHero','Warrior\'s Ring',4,10,NULL,200,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'160',NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2983,'Greed_Brooch','Greed Brooch',4,10,NULL,100,NULL,NULL,NULL,1,0xFFFFFFFF,63,2,136,NULL,'50',NULL,NULL,'bonus2 bHPLossRate,10,5000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2984,'Glove_Save_Rimnil','Glove Save Rimnil',4,10,NULL,100,NULL,NULL,NULL,1,0xFFFFFFFF,63,2,136,NULL,'30',NULL,NULL,'bonus2 bExpAddRace,RC_All,5; bonus2 bSubRace,RC_All,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2985,'Gyges_Ring','Gyges Ring',4,10,NULL,100,NULL,NULL,NULL,1,0xFFFFFFFF,63,2,136,NULL,'50',NULL,NULL,'bonus bInt,3; bonus bMatk,30; skill "TF_HIDING",1;',NULL,'sc_end SC_HIDING;'); -REPLACE INTO `item_db_re` VALUES (2986,'Snake_Ring','Snake Ring',4,20,NULL,100,NULL,2,NULL,1,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus bDex,3; bonus bMdef,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2987,'Snake_Pendant','Snake Pendant',4,20,NULL,100,NULL,3,NULL,1,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus bAgi,3; bonus bLuk,2; bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2988,'Winged_Ring_Of_Newoz','Oz\'s New Wing Ring',4,20,NULL,100,NULL,0,NULL,1,0x00080000,56,1,136,NULL,'130',NULL,NULL,'bonus bVariableCastrate,-25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2989,'Floral_Bracelet_Of_Igu','Bloody Floral Decoration Bracelet',4,20,NULL,100,NULL,0,NULL,1,0x00080000,56,0,136,NULL,'130',NULL,NULL,'bonus bVariableCastrate,-25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2990,'Pendant_Of_Harmony','Pendant of Harmony',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'130',NULL,NULL,'bonus bMatkRate,6; bonus bHPrecovRate,50; bonus bSPrecovRate,50; bonus2 bSubEle,Ele_Holy,5; autobonus "{ bonus2 bHPRegenRate,1000,5000; }",100,90000,BF_NORMAL; bonus4 bAutoSpellWhenHit,"PR_SANCTUARY",3,100,0; bonus bStr,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2991,'Pendant_Of_Chaos','Pendant of Chaos',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'130',NULL,NULL,'bonus2 bAddClass,Class_All,6; bonus2 bSubEle,Ele_Dark,5; bonus2 bResEff,Eff_Confusion,10000; bonus2 bAddEff,Eff_Confusion,500; bonus3 bAutoSpellWhenHit,"NPC_WIDECONFUSE",2,30; bonus bInt,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2992,'Pendant_Of_Maelstorm','Pendant of Maelstrom',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'130',NULL,NULL,'bonus2 bAddClass,Class_All,6; bonus bMatkRate,6; bonus bAllStats,1; bonus5 bAutoSpellWhenHit,"SC_MAELSTROM",1,100,BF_MAGIC,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2995,'Supplement_Part_Dex','Supplement Part Dex',4,25000,NULL,100,NULL,0,NULL,1,0x00000400,56,2,136,NULL,'100',0,0,'bonus bUseSPrate,-10; bonus bDelayrate,-10; bonus bVariableCastrate,-10; bonus2 bSkillCooldown,"NC_AXEBOOMERANG",-2000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2996,'Upgrade_Part_Gun_Barrel','Reinforced Parts - Gun Barrel',4,10,NULL,500,NULL,NULL,NULL,1,0xFFFFFFFF,63,2,136,NULL,'100',NULL,NULL,'bonus2 bAddClass,Class_All,4; bonus bHit,10; bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2997,'RWC_Gold_Brooch','RWC Gold Brooch',4,10,NULL,200,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'0',0,NULL,'bonus bBaseAtk,25; bonus bMatk,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2998,'Shining_Trapezohedron','Shining Trapezohedron',4,0,NULL,100,NULL,NULL,NULL,1,0xFFFFFFFF,63,2,136,NULL,'90',NULL,NULL,'bonus2 bSubEle,Ele_Holy,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (2999,'RWC_Brooch','RWC Brooch',4,10,NULL,200,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,NULL,'bonus bMaxHP,300; bonus bMaxSP,30;',NULL,NULL); -#=================================================================== -# Cards -#=================================================================== -REPLACE INTO `item_db_re` VALUES (4001,'Poring_Card','Poring Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bLuk,2; bonus bFlee2,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4002,'Fabre_Card','Fabre Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bVit,1; bonus bMaxHP,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4003,'Pupa_Card','Pupa Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bMaxHP,700;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4004,'Drops_Card','Drops Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bDex,1; bonus bHit,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4005,'Poring__Card','Santa Poring Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddEle,Ele_Dark,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4006,'Lunatic_Card','Lunatic Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bLuk,1; bonus bCritical,1; bonus bFlee2,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4007,'Pecopeco_Egg_Card','Peco Peco Egg Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddRace,RC_Formless,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4008,'Picky_Card','Picky Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bStr,1; bonus bBaseAtk,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4009,'Chonchon_Card','Chonchon Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bAgi,1; bonus bFlee,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4010,'Wilow_Card','Willow Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bMaxSP,80;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4011,'Picky__Card','Picky Egg Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bVit,1; bonus bMaxHP,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4012,'Thief_Bug_Egg_Card','Thief Bug Egg Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus bMaxHP,400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4013,'Andre_Egg_Card','Andre Egg Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4014,'Roda_Frog_Card','Roda Frog Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bMaxHP,400; bonus bMaxSP,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4015,'Condor_Card','Condor Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bFlee,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4016,'Thief_Bug_Card','Thief Bug Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4017,'Savage_Babe_Card','Savage Babe Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddEff,Eff_Stun,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4018,'Andre_Larva_Card','Andre Larva Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bInt,1; bonus bMaxSP,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4019,'Hornet_Card','Hornet Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bStr,1; bonus bBaseAtk,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4020,'Farmiliar_Card','Familiar Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddEff,Eff_Blind,500; bonus bBaseAtk,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4021,'Rocker_Card','Rocker Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bDex,1; bonus bBaseAtk,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4022,'Spore_Card','Spore Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bVit,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4023,'Desert_Wolf_Babe_Card','Baby Desert Wolf Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4024,'Plankton_Card','Plankton Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddEff,Eff_Sleep,500; bonus bBaseAtk,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4025,'Skeleton_Card','Skeleton Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bBaseAtk,10; bonus2 bAddEff,Eff_Stun,200;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4026,'Thief_Bug_Female_Card','Female Thief Bug Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bAgi,1; bonus bFlee,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4027,'Kukre_Card','Kukre Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bAgi,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4028,'Tarou_Card','Tarou Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bStr,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4029,'Wolf_Card','Wolf Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bBaseAtk,15; bonus bCritical,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4030,'Mandragora_Card','Mandragora Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddEle,Ele_Wind,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4031,'Pecopeco_Card','Peco Peco Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4032,'Ambernite_Card','Ambernite Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus bDef,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4033,'Poporing_Card','Poporing Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'skill "TF_DETOXIFY",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4034,'Worm_Tail_Card','Wormtail Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bDex,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4035,'Hydra_Card','Hydra Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4036,'Muka_Card','Muka Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bHPrecovRate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4037,'Snake_Card','Snake Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddEff,Eff_Poison,500; bonus bBaseAtk,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4038,'Zombie_Card','Zombie Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bHPrecovRate,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4039,'Stainer_Card','Stainer Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus2 bResEff,Eff_Silence,2000; bonus bDef,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4040,'Creamy_Card','Creamy Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'skill "AL_TELEPORT",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4041,'Coco_Card','Coco Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus2 bResEff,Eff_Sleep,2000; bonus bDef,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4042,'Steel_Chonchon_Card','Steel Chonchon Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Wind,10; bonus bDef,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4043,'Andre_Card','Andre Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bBaseAtk,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4044,'Smokie_Card','Smokie Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'skill "TF_HIDING",1;',NULL,'sc_end SC_HIDING;'); -REPLACE INTO `item_db_re` VALUES (4045,'Horn_Card','Horn Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus bLongAtkDef,35;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4046,'Martin_Card','Martin Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus2 bResEff,Eff_Blind,2000; bonus bDef,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4047,'Ghostring_Card','Ghostring Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bDefEle,Ele_Ghost; bonus bHPrecovRate,-25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4048,'Poison_Spore_Card','Poison Spore Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'skill "TF_POISON",3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4049,'Vadon_Card','Vadon Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddEle,Ele_Fire,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4050,'Thief_Bug_Male_Card','Male Thief Bug Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bAgi,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4051,'Yoyo_Card','Yoyo Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bFlee2,5; bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4052,'Elder_Wilow_Card','Elder Willow Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4053,'Vitata_Card','Vitata Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'skill "AL_HEAL",1; bonus bUseSPrate,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4054,'Angeling_Card','Angeling Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bDefEle,Ele_Holy;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4055,'Marina_Card','Marina Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddEff,Eff_Freeze,500; bonus bBaseAtk,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4056,'Dustiness_Card','Dustiness Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Wind,30; bonus bFlee,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4057,'Metaller_Card','Metaller Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddEff,Eff_Silence,500; bonus bBaseAtk,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4058,'Thara_Frog_Card','Thara Frog Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_DemiHuman,30; bonus2 bSubRace,RC_Player_Human,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4059,'Soldier_Andre_Card','Soldier Andre Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_Plant,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4060,'Goblin_Card','Goblin Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddRace,RC_Brute,20; bonus2 bAddRace,RC_Player_Doram,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4061,'Cornutus_Card','Cornutus Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bUnbreakableArmor; bonus bDef,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4062,'Anacondaq_Card','Anacondaq Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddEle,Ele_Poison,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4063,'Caramel_Card','Caramel Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddRace,RC_Insect,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4064,'Zerom_Card','Zerom Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bDex,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4065,'Kaho_Card','Kaho Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddEle,Ele_Earth,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4066,'Orc_Warrior_Card','Orc Warrior Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_Brute,30; bonus2 bSubRace,RC_Player_Doram,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4067,'Megalodon_Card','Megalodon Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bResEff,Eff_Freeze,2000; bonus bDef,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4068,'Scorpion_Card','Scorpion Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddRace,RC_Plant,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4069,'Drainliar_Card','Drainliar Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddEle,Ele_Water,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4070,'Eggyra_Card','Eggyra Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bSPrecovRate,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4071,'Orc_Zombie_Card','Orc Zombie Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Undead,30; bonus bFlee,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4072,'Golem_Card','Golem Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bUnbreakableWeapon; bonus bBaseAtk,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4073,'Pirate_Skel_Card','Pirate Skeleton Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'skill "MC_DISCOUNT",5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4074,'BigFoot_Card','Bigfoot Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_Insect,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4075,'Argos_Card','Argos Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bResEff,Eff_Stone,2000; bonus bDef,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4076,'Magnolia_Card','Magnolia Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddEff,Eff_Curse,500; bonus bBaseAtk,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4077,'Phen_Card','Phen Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bNoCastCancel; bonus bVariableCastrate,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4078,'Savage_Card','Savage Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bVit,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4079,'Mantis_Card','Mantis Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bStr,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4080,'Flora_Card','Flora Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddRace,RC_Fish,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4081,'Hode_Card','Hode Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Earth,30; bonus bFlee,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4082,'Desert_Wolf_Card','Desert Wolf Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddSize,Size_Small,15; bonus bBaseAtk,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4083,'Rafflesia_Card','Rafflesia Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_Fish,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4084,'Marine_Sphere_Card','Marine Sphere Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'skill "SM_MAGNUM",3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4085,'Orc_Skeleton_Card','Orc Skeleton Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddEle,Ele_Holy,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4086,'Soldier_Skeleton_Card','Soldier Skeleton Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bCritical,9;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4087,'Giearth_Card','Giearth Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus2 bResEff,Eff_Confusion,10000; bonus2 bSubEle,Ele_Earth,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4088,'Frilldora_Card','Frilldora Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'skill "AS_CLOAKING",1;',NULL,'sc_end SC_CLOAKING;'); -REPLACE INTO `item_db_re` VALUES (4089,'Sword_Fish_Card','Swordfish Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bDefEle,Ele_Water; bonus bDef,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4090,'Munak_Card','Munak Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bResEff,Eff_Stone,1500; bonus2 bSubEle,Ele_Earth,5; bonus bDef,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4091,'Kobold_Card','Kobold Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bStr,1; bonus bCritical,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4092,'Skel_Worker_Card','Skeleton Worker Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddSize,Size_Medium,15; bonus bBaseAtk,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4093,'Obeaune_Card','Obeaune Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'skill "AL_CURE",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4094,'Archer_Skeleton_Card','Archer Skeleton Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bLongAtkRate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4095,'Marse_Card','Marse Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Water,30; bonus bFlee,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4096,'Zenorc_Card','Zenorc Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddEff,Eff_Poison,400; bonus bBaseAtk,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4097,'Matyr_Card','Matyr Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,10; bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4098,'Dokebi_Card','Dokebi Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bDefEle,Ele_Wind; bonus bDef,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4099,'Pasana_Card','Pasana Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bDefEle,Ele_Fire; bonus bDef,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4100,'Sohee_Card','Sohee Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bMaxSPrate,15; bonus bSPrecovRate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4101,'Sand_Man_Card','Sandman Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bDefEle,Ele_Earth; bonus bDef,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4102,'Whisper_Card','Whisper Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bFlee,20; bonus2 bSubEle,Ele_Ghost,-50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4103,'Horong_Card','Horong Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'skill "MG_SIGHT",1;',NULL,'sc_end SC_SIGHT;'); -REPLACE INTO `item_db_re` VALUES (4104,'Requiem_Card','Requiem Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddEff,Eff_Confusion,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4105,'Marc_Card','Marc Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Water,5; bonus2 bResEff,Eff_Freeze,10000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4106,'Mummy_Card','Mummy Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bHit,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4107,'Verit_Card','Verit Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,8; bonus bMaxSPrate,8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4108,'Myst_Card','Myst Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Poison,30; bonus bFlee,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4109,'Jakk_Card','Jakk Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Fire,30; bonus bFlee,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4110,'Ghoul_Card','Ghoul Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus2 bResEff,Eff_Poison,2000; bonus bDef,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4111,'Strouf_Card','Strouf Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddRace,RC_Demon,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4112,'Marduk_Card','Marduk Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus2 bResEff,Eff_Silence,10000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4113,'Marionette_Card','Marionette Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Ghost,30; bonus bFlee,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4114,'Argiope_Card','Argiope Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bDefEle,Ele_Poison; bonus bDef,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4115,'Hunter_Fly_Card','Hunter Fly Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bHPDrainRate,30,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4116,'Isis_Card','Isis Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Dark,30; bonus bFlee,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4117,'Side_Winder_Card','Sidewinder Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'skill "TF_DOUBLE",1; bonus bDoubleRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4118,'Petit_Card','Earth Petite Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddRace,RC_Dragon,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4119,'Bathory_Card','Bathory Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bDefEle,Ele_Dark;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4120,'Petit__Card','Sky Petite Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_Dragon,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4121,'Phreeoni_Card','Phreeoni Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bHit,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4122,'Deviruchi_Card','Deviruchi Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bStr,1; bonus2 bResEff,Eff_Blind,10000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4123,'Eddga_Card','Eddga Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,-25; bonus bNoWalkDelay;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4124,'Medusa_Card','Medusa Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_Demon,15; bonus2 bResEff,Eff_Stone,10000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4125,'Deviace_Card','Deviace Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddRace,RC_DemiHuman,7; bonus2 bAddRace,RC_Player_Human,7; bonus2 bAddRace,RC_Brute,7; bonus2 bAddRace,RC_Player_Doram,7; bonus2 bAddRace,RC_Plant,7; bonus2 bAddRace,RC_Insect,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4126,'Minorous_Card','Minorous Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddSize,Size_Large,15; bonus bBaseAtk,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4127,'Nightmare_Card','Nightmare Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus2 bResEff,Eff_Sleep,10000; bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4128,'Golden_Bug_Card','Golden Thief Bug Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus bNoMagicDamage,100; bonus bUseSPrate,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4129,'Baphomet__Card','Bapho Jr. Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bAgi,3; bonus bCritical,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4130,'Scorpion_King_Card','Scorpion King Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddEle,Ele_Undead,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4131,'Moonlight_Flower_Card','Moonlight Flower Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bSpeedRate,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4132,'Mistress_Card','Mistress Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bNoGemStone; bonus bUseSPrate,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4133,'Daydric_Card','Raydric Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Neutral,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4134,'Dracula_Card','Dracula Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bSPDrainRate,100,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4135,'Orc_Load_Card','Orc Lord Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bShortWeaponDamageReturn,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4136,'Khalitzburg_Card','Khalitzburg Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_Demon,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4137,'Drake_Card','Drake Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bNoSizeFix;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4138,'Anubis_Card','Anubis Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_Angel,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4139,'Joker_Card','Joker Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'skill "TF_STEAL",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4140,'Knight_Of_Abyss_Card','Abysmal Knight Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddClass,Class_Boss,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4141,'Evil_Druid_Card','Evil Druid Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bDefEle,Ele_Undead; bonus bInt,1; bonus bDef,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4142,'Doppelganger_Card','Doppelganger Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bAspdRate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4143,'Orc_Hero_Card','Orc Hero Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bVit,3; bonus2 bResEff,Eff_Stun,10000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4144,'Osiris_Card','Osiris Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bRestartFullRecover;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4145,'Berzebub_Card','Berzebub Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bVariableCastrate,-30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4146,'Maya_Card','Maya Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus bMagicDamageReturn,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4147,'Baphomet_Card','Baphomet Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bHit,-10; bonus bSplashRange,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4148,'Pharaoh_Card','Pharaoh Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bUseSPrate,-30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4149,'Gargoyle_Card','Gargoyle Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus3 bAddMonsterDropItem,12028,RC_Insect,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4150,'Goat_Card','Goat Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'if(getrefine()<6) { bonus bDef,2; bonus bMdef,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4151,'Gajomart_Card','Gajomart Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_Plant,-20; bonus2 bExpAddRace,RC_Plant,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4152,'Galapago_Card','Galapago Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus2 bAddItemGroupHealRate,IG_Juice,50; bonus3 bAddMonsterDropItem,531,RC_Insect,300; bonus3 bAddMonsterDropItem,532,RC_Insect,300; bonus3 bAddMonsterDropItem,534,RC_Insect,300;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4153,'Crab_Card','Crab Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bBaseAtk,5; bonus2 bAddDamageClass,1266,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4154,'Rice_Cake_Boy_Card','Dumpling Child Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus2 bAddItemGroupHealRate,IG_Candy,50; bonus3 bAddMonsterDropItem,529,RC_DemiHuman,300; bonus3 bAddMonsterDropItem,530,RC_DemiHuman,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4155,'Goblin_Leader_Card','Goblin Leader Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddRace2,RC2_Goblin,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4156,'Steam_Goblin_Card','Goblin Steamrider Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Formless,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4157,'Goblin_Archer_Card','Goblin Archer Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Undead,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4158,'Flying_Deleter_Card','Sky Deleter Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bHPrecovRate,-100; bonus bHPGainValue,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4159,'Nine_Tail_Card','Nine Tail Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bAgi,2; if(getrefine()>8) bonus bFlee,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4160,'Antique_Firelock_Card','Firelock Soldier Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bStr,2; if(getrefine()>8) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4161,'Grand_Peco_Card','Grand Peco Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus3 bAutoSpellWhenHit,"PR_GLORIA",1,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4162,'Grizzly_Card','Grizzly Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddEffWhenHit,Eff_Blind,300;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4163,'Gryphon_Card','Gryphon Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bFlee,2; bonus bCritical,7; if(BaseClass==Job_Swordman) bonus3 bAutoSpell,"KN_BOWLINGBASH",5,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4164,'Gullinbursti_Card','Gullinbursti Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_Fish,-20; bonus2 bExpAddRace,RC_Fish,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4165,'Gig_Card','Gig Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bSPGainRace,RC_Insect,5;',NULL,'heal 0,-5;'); -REPLACE INTO `item_db_re` VALUES (4166,'Nightmare_Terror_Card','Nightmare Terror Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddEffWhenHit,Eff_Curse,300;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4167,'Neraid_Card','Nereid Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bSPGainRace,RC_Brute,5; bonus2 bSPGainRace,RC_Player_Doram,5;',NULL,'heal 0,-5;'); -REPLACE INTO `item_db_re` VALUES (4168,'Dark_Lord_Card','Dark Lord Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus3 bAutoSpellWhenHit,"WZ_METEOR",5,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4169,'Dark_Illusion_Card','Dark Illusion Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,-10; bonus bMaxSPrate,-10; bonus bVariableCastrate,-10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4170,'Dark_Frame_Card','Dark Frame Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddEffWhenHit,Eff_Stone,600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4171,'Dark_Priest_Card','Dark Priest Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus3 bSPVanishRate,50,10,BF_WEAPON|BF_MAGIC|BF_MISC; if(BaseJob==Job_Sage) bonus bSPDrainValue,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4172,'The_Paper_Card','The Paper Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,20; bonus bSPDrainValue,-1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4173,'Demon_Pungus_Card','Demon Pungus Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddEffWhenHit,Eff_Sleep,600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4174,'Deviling_Card','Deviling Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4175,'Poison_Toad_Card','Poisonous Toad Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus3 bAutoSpell,"TF_POISON",1,20; bonus2 bAddSkillBlow,52,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4176,'Dullahan_Card','Dullahan Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Dragon,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4177,'Dryad_Card','Dryad Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus3 bAddMonsterDropItem,993,RC_Plant,100; bonus2 bSubEle,Ele_Earth,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4178,'Dragon_Tail_Card','Dragon Tail Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bAgi,1; bonus bFlee,10; bonus2 bSkillAtk,"AC_DOUBLE",5; bonus2 bSkillAtk,"AC_SHOWER",5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4179,'Dragon_Fly_Card','Dragon Fly Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4180,'Driller_Card','Driller Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bSPGainRace,RC_Dragon,5;',NULL,'heal 0,-5;'); -REPLACE INTO `item_db_re` VALUES (4181,'Disguise_Card','Disguise Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddEffWhenHit,Eff_Silence,300+600*(readparam(bVit)>=77);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4182,'Diabolic_Card','Diabolic Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bSPGainRace,RC_Demon,5;',NULL,'heal 0,-5;'); -REPLACE INTO `item_db_re` VALUES (4183,'Vagabond_Wolf_Card','Vagabond Wolf Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bStr,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4184,'Lava_Golem_Card','Lava Golem Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddRace2,RC2_Golem,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4185,'Rideword_Card','Rideword Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bInt,1; if(BaseClass==Job_Acolyte) { bonus bInt,1; bonus bMdef,1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4186,'Raggler_Card','Raggler Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bStr,1; bonus bVit,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4187,'Raydric_Archer_Card','Raydric Archer Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus3 bAddMonsterDropItem,12030,RC_Demon,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4188,'Leib_Olmai_Card','Leib Olmai Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Fire,10; bonus3 bAddMonsterDropItem,990,RC_Brute,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4189,'Wraith_Dead_Card','Wraith Dead Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddEffWhenHit,Eff_Curse,600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4190,'Wraith_Card','Wraith Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus3 bAddMonsterDropItem,12027,RC_Undead,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4191,'Loli_Ruri_Card','Loli Ruri Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus3 bAutoSpellWhenHit,"AL_HEAL",3,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4192,'Rotar_Zairo_Card','Rotar Zairo Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Fish,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4193,'Lude_Card','Lude Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'if(BaseJob==Job_Novice||BaseJob==Job_SuperNovice) bonus3 bAutoSpellWhenHit,"SM_ENDURE",1,200;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4194,'Rybio_Card','Rybio Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddEffWhenHit,Eff_Stun,300+600*(readparam(bDex)>=77);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4195,'Leaf_Cat_Card','Leaf Cat Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Water,10; bonus3 bAddMonsterDropItem,991,RC_Fish,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4196,'Marin_Card','Marin Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus2 bAddMonsterDropItem,909,2000; bonus2 bAddMonsterDropItem,7126,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4197,'Mastering_Card','Mastering Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4198,'Maya_Puple_Card','Maya Purple Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bIntravision;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4199,'Merman_Card','Merman Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bHPrecovRate,10; bonus bSPrecovRate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4200,'Megalith_Card','Megalith Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'if(getrefine()<6) bonus bMdef,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4201,'Majoruros_Card','Majoruros Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddEffWhenHit,Eff_Stun,600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4202,'Civil_Servant_Card','Mao Guai Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddEle,Ele_Ghost,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4203,'Mutant_Dragon_Card','Mutant Dragonoid Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bBaseAtk,15; bonus3 bAutoSpell,"MG_FIREBALL",3+7*(getskilllv("MG_FIREBALL")==10),50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4204,'Mini_Demon_Card','Mini Demon Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_Brute,-20; bonus2 bSubRace,RC_Player_Doram,-20; bonus2 bExpAddRace,RC_Brute,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4205,'Mimic_Card','Mimic Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus2 bAddMonsterDropItem,603,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4206,'Mystcase_Card','Myst Case Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus2 bAddMonsterDropItem,644,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4207,'Mysteltainn_Card','Mysteltainn Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubSize,Size_Small,25; bonus bDef,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4208,'Miyabi_Ningyo_Card','Miyabi Doll Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bMaxSPrate,10; bonus2 bSkillAtk,"MG_FROSTDIVER",5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4209,'Violy_Card','Violy Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus3 bAutoSpell,"BA_FROSTJOKER",1+4*(getskilllv("BA_FROSTJOKER")==5),20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4210,'Wander_Man_Card','Wanderer Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'if(!isequipped(4172,4257,4230,4272)) bonus3 bAutoSpell,"RG_INTIMIDATE",1,20; if(BaseClass==Job_Thief) bonus bFlee,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4211,'Vocal_Card','Vocal Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4212,'Bon_Gun_Card','Bongun Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus3 bAutoSpell,"SM_BASH",1,20; bonus2 bAddSkillBlow,"SM_BASH",5; bonus2 bAddDefMonster,1026,-100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4213,'Brilight_Card','Brilight Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddEffWhenHit,Eff_Silence,600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4214,'Bloody_Murderer_Card','Bloody Murderer Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Insect,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4215,'Blazzer_Card','Blazer Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus2 bAddMonsterDropItemGroup,IG_Food,600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4216,'Sasquatch_Card','Sasquatch Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddEffWhenHit,Eff_Freeze,600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4217,'Live_Peach_Tree_Card','Enchanted Peach Tree Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus3 bAutoSpell,"AL_HEAL",1+9*(getskilllv("AL_HEAL")==10),20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4218,'Succubus_Card','Succubus Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bVit,-3; bonus bHPrecovRate,-20; bonus bMaxHP,1000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4219,'Sageworm_Card','Sage Worm Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus2 bAddMonsterDropItem,715,30; bonus2 bAddMonsterDropItem,716,30; bonus2 bAddMonsterDropItem,717,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4220,'Solider_Card','Solider Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bDef,2; bonus bMdef,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4221,'Skeleton_General_Card','Skeleton General Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_Insect,-20; bonus2 bExpAddRace,RC_Insect,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4222,'Skel_Prisoner_Card','Skeleton Prisoner Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddEffWhenHit,Eff_Sleep,300;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4223,'Stalactic_Golem_Card','Stalactic Golem Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bDef,1; bonus2 bResEff,Eff_Stun,2000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4224,'Stem_Worm_Card','Stem Worm Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus3 bAddMonsterDropItem,12032,RC_Brute,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4225,'Stone_Shooter_Card','Stone Shooter Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bBaseAtk,10; bonus bHit,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4226,'Sting_Card','Sting Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus bDef,2; if(getrefine()>8) bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4227,'Spring_Rabbit_Card','Spring Rabbit Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus2 bAddItemGroupHealRate,IG_Meat,50; bonus3 bAddMonsterDropItem,517,RC_Brute,200; bonus3 bAddMonsterDropItem,528,RC_Brute,200;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4228,'Sleeper_Card','Sleeper Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus3 bAddMonsterDropItem,12031,RC_Fish,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4229,'C_Tower_Manager_Card','Tower Keeper Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bInt,1; bonus bVariableCastrate,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4230,'Shinobi_Card','Shinobi Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bAgi,1; bonus3 bAutoSpellWhenHit,"AS_CLOAKING",5,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4231,'Increase_Soil_Card','Mi Gao Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubRace2,RC2_Guardian,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4232,'Wild_Ginseng_Card','Hermit Plant Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus2 bAddItemGroupHealRate,IG_Herb,50; bonus3 bAddMonsterDropItem,507,RC_Plant,300; bonus3 bAddMonsterDropItem,508,RC_Plant,200; bonus3 bAddMonsterDropItem,509,RC_Plant,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4233,'Baby_Leopard_Card','Baby Leopard Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bLuk,3; if(BaseClass==Job_Merchant) bonus bUnbreakableArmor;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4234,'Anolian_Card','Anolian Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus3 bAutoSpellWhenHit,"AC_CONCENTRATION",1+9*(getskilllv("AC_CONCENTRATION")==10),30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4235,'Cookie_XMAS_Card','Christmas Cookie Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_Angel,-20; bonus2 bExpAddRace,RC_Angel,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4236,'Amon_Ra_Card','Amon Ra Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bAllStats,1; bonus3 bAutoSpellWhenHit,"PR_KYRIE",10,(30+70*(readparam(bInt)>=99));',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4237,'Owl_Duke_Card','Owl Duke Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus3 bAutoSpell,"PR_IMPOSITIO",3,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4238,'Owl_Baron_Card','Owl Baron Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus3 bAutoSpell,"PR_LEXAETERNA",1,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4239,'Iron_Fist_Card','Iron Fist Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_Formless,-20; bonus2 bExpAddRace,RC_Formless,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4240,'Arclouse_Card','Arclouze Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'if(getrefine()<6) { bonus bDef,2; bonus bMdef,3; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4241,'Archangeling_Card','Arc Angeling Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bMaxHP,300; if(readparam(bLuk)>=77) { bonus bHPrecovRate,100; bonus bSPrecovRate,100; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4242,'Apocalips_Card','Apocalipse Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bVit,2; if(getrefine()>8) bonus bMaxHP,800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4243,'Antonio_Card','Antonio Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus3 bAutoSpellWhenHit,"AL_TELEPORT",1,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4244,'Alarm_Card','Alarm Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus3 bAutoSpellWhenHit,"MG_SIGHT",1,200; bonus bMaxHP,300; bonus bVit,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4245,'Am_Mut_Card','Am Mut Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_DemiHuman,-20; bonus2 bSubRace,RC_Player_Human,-20; bonus2 bExpAddRace,RC_DemiHuman,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4246,'Assulter_Card','Assaulter Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_DemiHuman,7; bonus2 bCriticalAddRace,RC_Player_Human,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4247,'Aster_Card','Aster Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bBaseAtk,5; bonus2 bAddDamageClass,1074,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4248,'Ancient_Mummy_Card','Ancient Mummy Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus3 bAutoSpellWhenHit,"AL_CRUCIS",5,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4249,'Ancient_Worm_Card','Ancient Worm Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_Demon,-20; bonus2 bExpAddRace,RC_Demon,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4250,'Executioner_Card','Executioner Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubSize,Size_Large,25; bonus bDef,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4251,'Elder_Card','Elder Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddRace2,RC2_Guardian,40;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4252,'Alligator_Card','Alligator Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bLongAtkDef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4253,'Alice_Card','Alice Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubClass,Class_Boss,40; bonus2 bSubClass,Class_Normal,-40;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4254,'Tirfing_Card','Ogretooth Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubSize,Size_Medium,25; bonus bDef,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4255,'Orc_Lady_Card','Orc Lady Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddRace2,RC2_Orc,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4256,'Orc_Archer_Card','Orc Archer Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus3 bAddMonsterDropItem,12034,RC_DemiHuman,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4257,'Wild_Rose_Card','Wild Rose Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bAgi,1; if(BaseClass==Job_Thief) bonus bFlee2,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4258,'Wicked_Nymph_Card','Evil Nymph Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bInt,1; bonus bMaxSP,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4259,'Wooden_Golem_Card','Wooden Golem Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bDef,1; bonus bHPrecovRate,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4260,'Wootan_Shooter_Card','Wootan Shooter Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bDef,1; bonus2 bResEff,Eff_Confusion,2000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4261,'Wootan_Fighter_Card','Wootan Fighter Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bDef,1; bonus2 bResEff,Eff_Bleeding,2000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4262,'Evil_Cloud_Hermit_Card','Cloud Hermit Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus3 bAddMonsterDropItem,12029,RC_Plant,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4263,'Incant_Samurai_Card','Samurai Spector Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bIgnoreDefClass,Class_Normal; bonus bHPrecovRate,-100; bonus2 bHPLossRate,666,10000;',NULL,'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; }'); -REPLACE INTO `item_db_re` VALUES (4264,'Wind_Ghost_Card','Wind Ghost Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus3 bAutoSpell,"WZ_JUPITEL",3+7*(getskilllv("WZ_JUPITEL")==10),20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4265,'Li_Me_Mang_Ryang_Card','Jing Guai Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus3 bAddMonsterDropItem,12033,RC_Angel,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4266,'Eclipse_Card','Eclipse Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bVit,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4267,'Explosion_Card','Explosion Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_Dragon,-20; bonus2 bExpAddRace,RC_Dragon,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4268,'Injustice_Card','Injustice Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus3 bAutoSpell,"AS_SONICBLOW",1,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4269,'Incubus_Card','Incubus Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bInt,-3; bonus bSPrecovRate,-20; bonus bMaxSP,150;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4270,'Giant_Spider_Card','Giant Spider Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddEffWhenHit,Eff_Poison,600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4271,'Giant_Honet_Card','Giant Hornet Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Wind,10; bonus3 bAddMonsterDropItem,992,RC_Insect,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4272,'Dancing_Dragon_Card','Zhu Po Long Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bAgi,1; bonus bCritical,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4273,'Shellfish_Card','Shell Fish Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bBaseAtk,5; bonus2 bAddDamageClass,1073,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4274,'Zombie_Master_Card','Zombie Master Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bSPGainRace,RC_Undead,5;',NULL,'heal 0,-5;'); -REPLACE INTO `item_db_re` VALUES (4275,'Zombie_Prisoner_Card','Zombie Prisoner Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_Undead,-20; bonus2 bExpAddRace,RC_Undead,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4276,'Lord_Of_Death_Card','Lord of The Dead Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4277,'Zherlthsh_Card','Zealotus Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus bLuk,2; bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10; bonus2 bSkillAtk,"DC_THROWARROW",10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4278,'Gibbet_Card','Gibbet Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'if(getrefine()<6) bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4279,'Deleter_Card','Earth Deleter Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bSPrecovRate,-100; bonus bSPGainValue,10;',NULL,'heal 0,-100;'); -REPLACE INTO `item_db_re` VALUES (4280,'Geographer_Card','Geographer Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus3 bAutoSpellWhenHit,"AL_BLESSING",2+8*(getskilllv("AL_BLESSING")==10),30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4281,'Zipper_Bear_Card','Zipper Bear Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bBaseAtk,30; bonus bSPDrainValue,-1; if(BaseClass==Job_Merchant) bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4282,'Tengu_Card','Tengu Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus2 bAddMonsterDropItemGroup,IG_Recovery,600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4283,'Greatest_General_Card','Greatest General Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus3 bAutoSpell,"MO_CALLSPIRITS",5,2+18*(BaseClass==Job_Acolyte);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4284,'Chepet_Card','Chepet Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus4 bAutoSpell,"AL_HEAL",5,50,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4285,'Choco_Card','Choco Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bFlee2,5; bonus bFlee,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4286,'Karakasa_Card','Karakasa Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddEffWhenHit,Eff_Confusion,300+600*(readparam(bStr)>=77);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4287,'Kapha_Card','Kapha Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'if(getrefine()<6) bonus bMdef,8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4288,'Carat_Card','Carat Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bInt,2; if(getrefine()>8) bonus bMaxSP,150;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4289,'Caterpillar_Card','Caterpillar Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bSPGainRace,RC_Plant,5;',NULL,'heal 0,-5;'); -REPLACE INTO `item_db_re` VALUES (4290,'Cat_O_Nine_Tail_Card','Cat O\' Nine Tails Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bMdef,3; bonus bMagicDamageReturn,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4291,'Kobold_Leader_Card','Kobold Leader Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddRace2,RC2_Kobold,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4292,'Kobold_Archer_Card','Kobold Archer Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Plant,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4293,'Cookie_Card','Cookie Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bLuk,2; bonus2 bSkillAtk,"AL_HOLYLIGHT",10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4294,'Quve_Card','Quve Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'if(BaseJob==Job_Novice||BaseJob==Job_SuperNovice) bonus3 bAutoSpellWhenHit,"AL_INCAGI",1,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4295,'Kraben_Card','Kraben Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddEffWhenHit,Eff_Blind,600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4296,'Cramp_Card','Cramp Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus2 bGetZenyNum,500,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4297,'Cruiser_Card','Cruiser Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Brute,7; bonus2 bCriticalAddRace,RC_Player_Doram,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4298,'Cremy_Fear_Card','Creamy Fear Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddEffWhenHit,Eff_Confusion,600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4299,'Clock_Card','Clock Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus3 bAutoSpellWhenHit,"CR_AUTOGUARD",3+7*(getskilllv("CR_AUTOGUARD")==10),30;',NULL,'sc_end SC_AUTOGUARD;'); -REPLACE INTO `item_db_re` VALUES (4300,'Chimera_Card','Chimera Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddEffWhenHit,Eff_Poison,300+600*(BaseJob==Job_Assassin);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4301,'Killer_Mantis_Card','Killer Mantis Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddEffWhenHit,Eff_Bleeding,600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4302,'Tao_Gunka_Card','Tao Gunka Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,100; bonus bDefRate,-50; bonus bMdefRate,-50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4303,'Whisper_Boss_Card','Giant Whisper Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bFlee,10; if(readparam(bStr)>=80) bonus bBaseAtk,20; if(readparam(bVit)>=80) bonus bMaxHPrate,3; if(readparam(bLuk)>=80) bonus bCritical,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4304,'Tamruan_Card','Tamruan Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus bDef,2; bonus2 bSkillAtk,"CR_SHIELDCHARGE",10; bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4305,'Turtle_General_Card','Turtle General Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddClass,Class_All,20; bonus3 bAutoSpell,"SM_MAGNUM",10,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4306,'Toad_Card','Toad Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bFlee2,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4307,'Kind_Of_Beetle_Card','Beetle King Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bSPGainRace,RC_Fish,5;',NULL,'heal 0,-5;'); -REPLACE INTO `item_db_re` VALUES (4308,'Tri_Joint_Card','Tri Joint Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bSPGainRace,RC_Formless,5;',NULL,'heal 0,-5;'); -REPLACE INTO `item_db_re` VALUES (4309,'Parasite_Card','Parasite Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus bDef,1; bonus2 bSubRace,RC_Formless,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4310,'Panzer_Goblin_Card','Panzer Goblin Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Demon,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4311,'Permeter_Card','Permeter Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Dark,15; bonus2 bSubEle,Ele_Undead,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4312,'Fur_Seal_Card','Seal Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bFlee,3; bonus bHit,10; if(BaseClass==Job_Acolyte) { bonus2 bCriticalAddRace,RC_Undead,9; bonus2 bCriticalAddRace,RC_Demon,9; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4313,'Punk_Card','Punk Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus4 bAutoSpellWhenHit,"WZ_QUAGMIRE",1+4*(getskilllv("WZ_QUAGMIRE")==5),50,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4314,'Penomena_Card','Penomena Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_Formless,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4315,'Pest_Card','Pest Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddEffWhenHit,Eff_Stone,300+600*(readparam(bInt)>=77);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4316,'Fake_Angel_Card','False Angel Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bSPGainRace,RC_Angel,5;',NULL,'heal 0,-5;'); -REPLACE INTO `item_db_re` VALUES (4317,'Mobster_Card','Mobster Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,15; if(BaseClass==Job_Thief) bonus bCritical,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4318,'Knight_Windstorm_Card','Stormy Knight Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus3 bAutoSpell,"WZ_STORMGUST",1,20; bonus2 bAddEff,Eff_Freeze,2000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4319,'Freezer_Card','Freezer Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bMaxHP,300; if(getrefine()>=9) bonus2 bSkillAtk,"SM_BASH",10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4320,'Bloody_Knight_Card','Bloody Knight Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus3 bAutoSpell,"WZ_METEOR",1,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4321,'Hylozoist_Card','Hylozoist Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bClassChange,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4322,'High_Orc_Card','High Orc Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus bDef,1; bonus bShortWeaponDamageReturn,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4323,'Garm_Baby_Card','Hatii Babe Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus3 bAutoSpell,"MG_FROSTDIVER",3,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4324,'Garm_Card','Hatii Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddEffWhenHit,Eff_Freeze,5000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4325,'Harpy_Card','Harpy Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Neutral,15; bonus2 bSkillAtk,"MG_NAPALMBEAT",5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4326,'See_Otter_Card','Sea-Otter Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus2 bAddItemGroupHealRate,IG_Fish,50; bonus3 bAddMonsterDropItem,551,RC_Fish,300; bonus3 bAddMonsterDropItem,544,RC_Fish,300;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4327,'Blood_Butterfly_Card','Bloody Butterfly Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bVariableCastrate,30; bonus bNoCastCancel; bonus2 bSkillAtk,"MG_FIREWALL",5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4328,'Hyegun_Card','Yao Jun Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bFlee,15; bonus bCritical,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4329,'Phendark_Card','Phendark Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bSPGainRace,RC_DemiHuman,5; bonus2 bSPGainRace,RC_Player_Human,5;',NULL,'heal 0,-5;'); -REPLACE INTO `item_db_re` VALUES (4330,'Dark_Snake_Lord_Card','Evil Snake Lord Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bInt,3; bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Curse,10000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4331,'Heater_Card','Heater Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bCritical,3; if(BaseClass==Job_Swordman) bonus bFlee2,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4332,'Waste_Stove_Card','Waste Stove Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bBaseAtk,5; bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4333,'Venomous_Card','Venomous Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus3 bAddEffWhenHit,Eff_Poison,3000,ATF_TARGET|ATF_SELF;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4334,'Noxious_Card','Noxious Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bLongAtkDef,10; bonus2 bSubEle,Ele_Neutral,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4335,'Pitman_Card','Pitman Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bSkillAtk,"WZ_EARTHSPIKE",5; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",5;',NULL,'heal 0,-50;'); -REPLACE INTO `item_db_re` VALUES (4336,'Ungoliant_Card','Ungoliant Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bHPrecovRate,10; bonus2 bResEff,Eff_Bleeding,10000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4337,'Porcellio_Card','Porcellio Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bBaseAtk,25; bonus bDef,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4338,'Obsidian_Card','Obsidian Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bVit,readparam(bDex)/18;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4339,'Mineral_Card','Mineral Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bBaseAtk,-25; bonus bDef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4340,'Teddy_Bear_Card','Teddy Bear Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_Undead,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4341,'Metaling_Card','Metaling Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus3 bAutoSpell,"RG_STRIPWEAPON",1,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4342,'Rsx_0806_Card','RSX-0806 Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bVit,3; bonus bUnbreakableArmor; bonus bNoKnockback;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4343,'Mole_Card','Holden Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bLuk,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4344,'Anopheles_Card','Anopheles Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus3 bAddMonsterDropItem,12058,RC_Insect,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4345,'Hill_Wind_Card','Hill Wind Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bSkillAtk,"MG_THUNDERSTORM",5; bonus2 bSkillAtk,"WZ_JUPITEL",5; bonus2 bSkillAtk,"WZ_VERMILION",5;',NULL,'heal 0,-50;'); -REPLACE INTO `item_db_re` VALUES (4346,'Ygnizem_Card','Egnigem Cenia Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bStr,readparam(bInt)/18;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4347,'Armaia_Card','Armeyer Dinze Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus3 bAddMonsterDropItem,12053,RC_Fish,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4348,'Whikebain_Card','Wickebine Tres Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus3 bAutoSpell,"RG_STRIPARMOR",1,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4349,'Erend_Card','Errende Ebecee Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus4 bAutoSpellWhenHit,"AL_PNEUMA",1,50,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4350,'Rawrel_Card','Laurell Weinder Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bSkillAtk,"WZ_FROSTNOVA",3; bonus2 bSkillAtk,"WZ_STORMGUST",3;',NULL,'heal 0,-50;'); -REPLACE INTO `item_db_re` VALUES (4351,'Kavac_Card','Kavach Icarus Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'if(getrefine()<=4) { bonus bFlee,20; bonus bFlee2,1; } else { bonus bFlee,10; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4352,'B_Ygnizem_Card','General Egnigem Cenia Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bHPRegenRate,50,10000; bonus2 bSPRegenRate,10,10000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4353,'Removal_Card','Remover Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bMaxHP,800-40*getrefine(); bonus bHPrecovRate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4354,'Gemini_Card','Gemini-S58 Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'if(readparam(bAgi)>=90) { bonus2 bResEff,Eff_Silence,3000; bonus2 bResEff,Eff_Stun,3000; } if(readparam(bVit)>=80) { bonus2 bResEff,Eff_Stone,5000; bonus2 bResEff,Eff_Sleep,5000; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4355,'Gremlin_Card','Gremlin Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus3 bAddMonsterDropItem,12043,RC_Brute,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4356,'Beholder_Card','Beholder Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'skill "SA_CASTCANCEL",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4357,'B_Seyren_Card','Lord Knight Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'skill "LK_BERSERK",1; bonus bMaxHPrate,-50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4358,'Seyren_Card','Seyren Windsor Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bStr,getrefine()-6;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4359,'B_Eremes_Card','Assassin Cross Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'skill "AS_CLOAKING",3;',NULL,'sc_end SC_CLOAKING;'); -REPLACE INTO `item_db_re` VALUES (4360,'Eremes_Card','Eremes Guile Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bCriticalAddRace,RC_DemiHuman,10; bonus2 bCriticalAddRace,RC_Player_Human,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4361,'B_Harword_Card','MasterSmith Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bBreakWeaponRate,1000; bonus bBreakArmorRate,700;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4362,'Harword_Card','Howard Alt-Eisen Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bAspdRate,-5; bonus bHit,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4363,'B_Magaleta_Card','High Priest Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus5 bAutoSpellWhenHit,"HP_ASSUMPTIO",5,50,BF_WEAPON|BF_MAGIC,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4364,'Magaleta_Card','Margaretha Sorin Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bInt,1; bonus5 bAutoSpellWhenHit,"PR_LEXDIVINA",5,150,BF_MAGIC,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4365,'B_Katrinn_Card','High Wizard Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus2 bIgnoreMdefClassRate,Class_Normal,100; bonus bVariableCastrate,100; bonus bSPrecovRate,-100;',NULL,'heal 0,-2000;'); -REPLACE INTO `item_db_re` VALUES (4366,'Katrinn_Card','Kathryne Keyron Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'.@r = getrefine(); bonus bVariableCastrate,.@r*-1; if(.@r>=9) { bonus bMatkRate,2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4367,'B_Shecil_Card','Sniper Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bHPDrainRate,100,20; bonus bHPrecovRate,-10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4368,'Shecil_Card','Cecil Damon Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bAspdRate,5; bonus bHit,-30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4369,'Venatu_Card','Venatu Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bLuk,readparam(bAgi)/18;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4370,'Dimik_Card','Dimik Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bVit,getrefine()-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4371,'Archdam_Card','Archdam Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bBaseAtk,10; bonus bVariableCastrate,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4372,'Bacsojin_Card','White Lady Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bHealPower,30; bonus bUseSPrate,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4373,'Chung_E_Card','Green Maiden Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'.@r = getrefine(); bonus bLuk,.@r-5; bonus bCritical,.@r;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4374,'Apocalips_H_Card','Vesper Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bDex,2; bonus2 bIgnoreMdefClassRate,Class_Boss,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4375,'Orc_Baby_Card','Orc Baby Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'.@i = (getrefine()>=9?15:10); bonus2 bSubEle,Ele_Neutral,.@i; bonus bFlee,.@i;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4376,'Lady_Tanee_Card','Lady Tanee Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,-40; bonus bMaxSPrate,50; bonus2 bAddMonsterDropItem,513,200; bonus2 bAddItemHealRate,513,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4377,'Green_Iguana_Card','Grove Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus3 bAddMonsterDropItem,12063,RC_Formless,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4378,'Acidus_Card','Gold Acidus Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'if(getrefine()<=4) { bonus bMaxHPrate,8; bonus bMaxSPrate,8; bonus bHPrecovRate,5; bonus bSPrecovRate,5; } else { bonus bMaxHPrate,4; bonus bMaxSPrate,4; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4379,'Acidus__Card','Blue Acidus Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'if(getrefine()<=4) { bonus bSPrecovRate,5; bonus bMaxSP,80; } else { bonus bMaxSP,40; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4380,'Ferus_Card','Red Ferus Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bSkillAtk,"WZ_FIREPILLAR",5; bonus2 bSkillAtk,"WZ_METEOR",5;',NULL,'heal 0,-50;'); -REPLACE INTO `item_db_re` VALUES (4381,'Ferus__Card','Green Ferus Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bVit,1; bonus bMaxHPrate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4382,'Novus__Card','Yellow Novus Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bMaxHP,500; bonus bHPrecovRate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4383,'Novus_Card','Red Novus Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus3 bAddEffWhenHit,Eff_Confusion,3000,ATF_TARGET|ATF_SELF;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4384,'Hydro_Card','Hydrolancer Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus3 bAutoSpell,"SA_SPELLBREAKER",1,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4385,'Dragon_Egg_Card','Dragon Egg Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus3 bAddMonsterDropItem,12048,RC_Dragon,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4386,'Detale_Card','Detardeurus Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bMdef,-20; bonus2 bResEff,Eff_Freeze,10000; bonus5 bAutoSpellWhenHit,"SA_LANDPROTECTOR",1,70,BF_MAGIC,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4387,'Ancient_Mimic_Card','Ancient Mimic Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bAgi,readparam(bLuk)/18;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4388,'Deathword_Card','Death Word Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bSkillAtk,"MG_NAPALMBEAT",5; bonus2 bSkillAtk,"MG_SOULSTRIKE",5; bonus2 bSkillAtk,"HW_NAPALMVULCAN",5;',NULL,'heal 0,-50;'); -REPLACE INTO `item_db_re` VALUES (4389,'Plasma_Card','Plasma Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus2 bAddMonsterDropItem,12118,50; bonus2 bAddMonsterDropItem,12119,50; bonus2 bAddMonsterDropItem,12120,50; bonus2 bAddMonsterDropItem,12121,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4390,'Breeze_Card','Breeze Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bBaseAtk,5; bonus2 bAddEff,Eff_Bleeding,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4391,'Retribution_Card','Baroness of Retribution Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus3 bAddMonsterDropItem,12068,RC_Angel,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4392,'Observation_Card','Dame of Sentinel Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bDex,readparam(bVit)/18;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4393,'Shelter_Card','Mistress of Shelter Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bInt,readparam(bStr)/18;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4394,'Solace_Card','Lady Solace Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'if(BaseJob==Job_Priest) bonus3 bAutoSpell,"CR_GRANDCROSS",5,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4395,'Tha_Maero_Card','Maero of Thanatos Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bBaseAtk,5; bonus3 bAutoSpell,"AL_DECAGI",3,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4396,'Tha_Odium_Card','Odium of Thanatos Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bAgi,getrefine()-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4397,'Tha_Despero_Card','Despero of Thanatos Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus bInt,getrefine()-6;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4398,'Tha_Dolor_Card','Dolor of Thanatos Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bMagicAddRace,RC_Angel,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4399,'Thanatos_Card','Memory of Thanatos Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bDefRatioAtkClass,Class_All; bonus bSPDrainValue,-1; bonus bDef,-30; bonus bFlee,-30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4400,'Aliza_Card','Aliza Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus3 bAutoSpellWhenHit,"DC_WINKCHARM",1,50+50*(BaseJob==Job_Dancer);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4401,'Alicel_Card','Alicel Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bFlee,10; bonus bDef,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4402,'Aliot_Card','Aliot Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'if(BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Thief) { bonus bStr,2; bonus bMaxHPrate,5; } if(BaseClass==Job_Mage||BaseClass==Job_Archer||BaseClass==Job_Acolyte) { bonus bInt,2; bonus bMaxSPrate,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4403,'Kiel_Card','Kiel-D-01 Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bDelayRate,-30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4404,'Skogul_Card','Skogul Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus3 bAddEffWhenHit,Eff_Bleeding,3000,ATF_TARGET|ATF_SELF;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4405,'Frus_Card','Frus Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bMagicDamageReturn,getrefine()*2; if(BaseClass==Job_Mage) bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4406,'Skeggiold_Card','Skeggiold Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bMagicAddRace,RC_Demon,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4407,'Randgris_Card','Randgris Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bUnbreakableWeapon; bonus2 bAddClass,Class_All,10; bonus3 bAutoSpell,"SA_DISPELL",1,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4408,'Gloom_Under_Night_Card','Gloom Under Night Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddEle,Ele_Holy,40; bonus2 bAddEle,Ele_Dark,40; bonus2 bAddRace,RC_Angel,40; bonus2 bAddRace,RC_Demon,40;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4409,'Agav_Card','Agav Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bMatkRate,5; bonus bDef,-10; if(BaseClass==Job_Mage) bonus bMaxSP,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4410,'Echio_Card','Echio Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bBaseAtk,15; if(BaseClass==Job_Swordman) bonus bMaxHP,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4411,'Vanberk_Card','Vanberk Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bStr,2; autobonus "{ bonus bCritical,100; }",5,5000,0,"{ specialeffect2 EF_ENHANCE; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4412,'Isilla_Card','Isilla Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bInt,2; autobonus "{ bonus bVariableCastrate,-50; bonus bFlee,30; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4413,'Hodremlin_Card','Hodremlin Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubSize,Size_All,15; autobonus2 "{ bonus bFlee2,30; }",3,10000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_WIND; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4414,'Seeker_Card','Seeker Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'skill "MG_STONECURSE",1; bonus2 bResEff,Eff_Stone,3000; bonus bMdef,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4415,'Snowier_Card','Snowier Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus2 bAddMonsterDropItem,536,500; bonus2 bAddItemHealRate,536,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4416,'Siroma_Card','Siroma Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus2 bSkillAtk,"MG_COLDBOLT",25; bonus2 bVariableCastrate,"MG_COLDBOLT",-25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4417,'Ice_Titan_Card','Ice Titan Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bVit,2; autobonus2 "{ bonus bDef,10; }",3,10000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_FREEZED; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4418,'Gazeti_Card','Gazeti Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus3 bAutoSpell,"MG_COLDBOLT",2,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4419,'Ktullanux_Card','Ktullanux Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddEle,Ele_Fire,50; bonus5 bAutoSpellWhenHit,"WZ_FROSTNOVA",10,20,BF_WEAPON|BF_MAGIC,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4420,'Muscipular_Card','Muscipular Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus3 bAutoSpellWhenHit,"AL_HEAL",1,100; bonus3 bAutoSpellWhenHit,"AL_INCAGI",1,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4421,'Drosera_Card','Drosera Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bCriticalLong,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4422,'Roween_Card','Roween Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bFlee,5; bonus bFlee2,3; bonus2 bAddEle,Ele_Water,10; bonus2 bCriticalAddRace,RC_Fish,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4423,'Galion_Card','Galion Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bHit,5; bonus2 bAddEle,Ele_Water,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4424,'Stapo_Card','Stapo Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'skill "TF_PICKSTONE",1; skill "TF_THROWSTONE",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4425,'Atroce_Card','Atroce Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bBaseAtk,25; autobonus "{ bonus bAspdRate,100; }",5,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4426,'Byorgue_Card','Byorgue Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'if(BaseJob==Job_Rogue) { bonus bMatkRate,10; bonus2 bAddClass,Class_All,10; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4427,'Sword_Guardian_Card','Sword Guardian Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'.@i = getiteminfo(getequipid(EQI_HAND_R),11); if(.@i==W_1HSWORD||.@i==W_2HSWORD) { bonus bHit,5; bonus bCritical,5; bonus2 bSkillAtk,62,25; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4428,'Bow_Guardian_Card','Bow Guardian Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'if(getiteminfo(getequipid(EQI_HAND_R),11)==W_BOW) { bonus bHit,5; bonus bCritical,5; bonus2 bSkillAtk,"AC_SHOWER",50; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4429,'Salamander_Card','Salamander Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus2 bSkillAtk,"WZ_FIREPILLAR",40; bonus2 bSkillAtk,"WZ_METEOR",40;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4430,'Ifrit_Card','Ifrit Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bBaseAtk,(JobLevel/10); bonus bCritical,(JobLevel/10); bonus bHit,(JobLevel/10); bonus3 bAutoSpellWhenHit,"NPC_EARTHQUAKE",10,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4431,'Kasa_Card','Kasa Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus3 bAutoSpell,"MG_FIREBALL",5,20; bonus3 bAutoSpell,"MG_FIREBOLT",5,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4432,'Magmaring_Card','Magmaring Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bBaseAtk,5; bonus2 bAddEle,Ele_Earth,10; bonus2 bCriticalAddRace,RC_Brute,15; bonus2 bCriticalAddRace,RC_Player_Doram,15; bonus2 bCriticalAddRace,RC_Plant,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4433,'Imp_Card','Imp Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus2 bSkillAtk,"MG_FIREBOLT",25; bonus2 bVariableCastrate,"MG_FIREBOLT",-25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4434,'Knocker_Card','Knocker Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus2 bAddRace,RC_Formless,5; bonus3 bAddMonsterDropItem,756,RC_Formless,10; bonus3 bAddMonsterDropItem,757,RC_Formless,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4435,'Zombie_Slaughter_Card','Zombie Slaughter Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus2 bAddRace,RC_DemiHuman,1; bonus2 bAddRace,RC_Player_Human,1; bonus2 bMagicAddRace,RC_DemiHuman,1; bonus2 bMagicAddRace,RC_Player_Human,1; bonus bHPGainValue,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4436,'Ragged_Zombie_Card','Ragged Zombie Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus2 bCriticalAddRace,RC_DemiHuman,5; bonus2 bCriticalAddRace,RC_Player_Human,5; bonus2 bAddRace,RC_DemiHuman,1; bonus2 bAddRace,RC_Player_Human,1; bonus2 bMagicAddRace,RC_DemiHuman,1; bonus2 bMagicAddRace,RC_Player_Human,1; bonus2 bAddEff2,Eff_Bleeding,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4437,'Hell_Poodle_Card','Hell Poodle Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bHit,1; bonus2 bAddItemHealRate,517,100; bonus3 bAddEff,Eff_Bleeding,50,ATF_SHORT;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4438,'Banshee_Card','Banshee Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'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; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4439,'Flame_Skull_Card','Flame Skull Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4440,'Necromancer_Card','Necromancer Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'.@i = getiteminfo(getequipid(EQI_HAND_R),11); if(.@i==W_STAFF || .@i==W_2HSTAFF) { bonus bInt,1; bonus2 bIgnoreMdefClassRate,Class_Normal,2; bonus2 bIgnoreMdefClassRate,Class_Boss,2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4441,'Fallen_Bishop_Card','Fallen Bishop Hibram Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bMatkRate,10; bonus bMaxSPrate,-50; bonus2 bMagicAddRace,RC_Angel,50; bonus2 bMagicAddRace,RC_DemiHuman,50; bonus2 bMagicAddRace,RC_Player_Human,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4442,'Tatacho_Card','Tatacho Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubDefEle,Ele_Neutral,20; bonus2 bAddEle,Ele_Neutral,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4443,'Aqua_Elemental_Card','Aqua Elemental Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubDefEle,Ele_Water,20; bonus2 bAddEle,Ele_Water,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4444,'Draco_Card','Draco Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubDefEle,Ele_Earth,20; bonus2 bAddEle,Ele_Earth,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4445,'Luciola_Vespa_Card','Luciola Vespa Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubDefEle,Ele_Wind,20; bonus2 bAddEle,Ele_Wind,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4446,'Enhanced_Skeleton_Card','Enhanced Skeleton Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bBaseAtk,15; bonus2 bAddEff,Eff_Stun,(BaseLevel>=100?300:200);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4447,'Centipede_Card','Centipede Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubDefEle,Ele_Poison,20; bonus2 bAddEle,Ele_Poison,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4448,'Cornus_Card','Cornus Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubDefEle,Ele_Holy,20; bonus2 bAddEle,Ele_Holy,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4449,'Dark_Shadow_Card','Dark Shadow Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubDefEle,Ele_Dark,20; bonus2 bAddEle,Ele_Dark,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4450,'Banshee_Master_Card','Banshee Master Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bInt,1; bonus bMatk,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4451,'Ant_Buyanne_Card','Entweihen Crothen Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bMatk,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4452,'Centipede_Larva_Card','Centipede Larva Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bInt,1; bonus bMatk,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4453,'Hilsrion_Card','Hillsrion Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bBaseAtk,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4454,'Light_Up_Card1','Light Up Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4455,'Light_Up_Card2','Light Up Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4456,'Nidhogg_Shadow_Card','Nidhoggur Shadow Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bInt,5; if (Class == Job_High_Wizard || Class == Job_Baby_Warlock || Class == Job_Warlock || Class == Job_Warlock_T) bonus bFixedCastrate,-50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4457,'Nahtzigger_Card','Naght Sieger Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bMagicAtkEle,Ele_Ghost,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4458,'Duneirre_Card','Duneyrr Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bBaseAtk,10; autobonus "{ bonus bFlee2,10; }",10,10000,0,"{ specialeffect2 EF_HASTEUP; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4459,'Lata_Card','Rata Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bMatk,10; autobonus "{ bonus bFixedCastrate,-50; }",5,4000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4460,'Ringco_Card','Rhyncho Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bHealPower,4; bonus2 bSkillUseSP,"AL_HEAL",-15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4461,'Pillar_Card','Phylla Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bDex,1; bonus bAgi,1; autobonus "{ bonus bCritical,20; }",15,4000,0,"{ specialeffect2 EF_ENHANCE; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4462,'Hardrock_Mommos_Card','Hardrock Mammoth Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'.@r = getrefine(); bonus bDef,5; if(.@r>=12) { bonus bDef,20; bonus bMaxHPrate,10; } if(.@r>=14) { bonus bMaxHPrate,3; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4463,'Tendrilion_Card','Tendrilrion Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bCritical,5; .@r = getrefine(); if(.@r>=12) { bonus bBaseAtk,35; } if(.@r>=14) { bonus bCritical,10; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4464,'Aunoe_Card','Aunoe Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4465,'Panat_Card','Fanat Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bBaseAtk,10; if(getiteminfo(getequipid(EQI_HAND_R),11)==W_2HSWORD) { .@r = getrefine(); if(.@r>=10) { bonus bAspd,1; } if(.@r>=14) { bonus bAspd,1; } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4466,'Beholder_Master_Card','Beholder Master Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bLongAtkRate,3; if(getiteminfo(getequipid(EQI_HAND_R),11)==W_BOW) { .@r = getrefine(); if(.@r>=10) { bonus bAspd,1; } if(.@r>=14) { bonus bAspd,1; } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4467,'Heavy_Metaling_Card','Heavy Metaling Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bStr,2; if(BaseClass==Job_Merchant){ bonus2 bSkillAtk,"MC_CARTREVOLUTION",50; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4468,'Pinguicula_Dark_Card','Dark Pinguicula Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bBaseAtk,10; bonus2 bAddMonsterDropItem,7932,10; bonus2 bAddMonsterDropItem,7933,10; bonus2 bAddMonsterDropItem,7934,10; bonus2 bAddMonsterDropItem,7935,10; bonus2 bAddMonsterDropItem,7936,10; bonus2 bAddMonsterDropItem,7937,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4469,'Naga_Card','Naga Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bMagicAddRace,RC_Fish,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4470,'Nepenthes_Card','Nepenthes Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bMagicAddRace,RC_Plant,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4471,'Egg_Of_Draco_Card','Draco Egg Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bMagicAddRace,RC_Dragon,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4472,'Bradium_Goram_Card','Bradium Golem Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bMagicAddRace,RC_Brute,10; bonus2 bMagicAddRace,RC_Player_Doram,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4473,'Ancient_Tree_Card','Ancient Tree Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bMagicAddRace,RC_Undead,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4474,'Jakudam_Card','Zakudam Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bMagicAddRace,RC_DemiHuman,10; bonus2 bMagicAddRace,RC_Player_Human,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4475,'Cobalt_Mineral_Card','Cobalt Mineral Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bMagicAddRace,RC_Formless,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4476,'Pinguicula_Card','Pinguicula Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bMagicAddRace,RC_Insect,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4477,'Hell_Apocalips_Card','Hell Apocalypse Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bMagicAddRace,RC_Demon,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4478,'Light_Up_Card3','Light Up Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4479,'Light_Up_Card4','Light Up Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4480,'Sealed_Kiel_Card','Sealed Kiel Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bDelayRate,((getrefine()>14)?-20:-15);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4481,'Sealed_Ktullanux_Card','Sealed Ktullanux Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddEle,Ele_Fire,((getrefine()>14)?35:25); bonus5 bAutoSpellWhenHit,"WZ_FROSTNOVA",10,10,BF_WEAPON|BF_MAGIC,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4482,'Sealed_B_Ygnizem_Card','Sealed General Egnigem Cenia Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'.@rate = ((getrefine()>14)?7:5); bonus bMaxHPrate,.@rate; bonus bMaxSPrate,.@rate; bonus2 bHPRegenRate,50,10000; bonus2 bSPRegenRate,10,10000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4483,'Sealed_Dracula_Card','Sealed Dracula Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bSPDrainRate,((getrefine()>14)?70:50),5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4484,'Sealed_Mistress_Card','Sealed Mistress Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bNoGemStone; bonus bUseSPrate,((getrefine()>14)?35:50);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4485,'Sealed_Gloom_Card','Sealed Gloom Under Night Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'.@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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4486,'Sealed_Berz_Card','Sealed Berzebub Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bVariableCastrate,-15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4487,'Sealed_Ifrit_Card','Sealed Ifrit Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bBaseAtk,(JobLevel/20); bonus bCritical,(JobLevel/20); bonus bHit,(JobLevel/20); bonus3 bAutoSpellWhenHit,"NPC_EARTHQUAKE",5,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4488,'Sealed_D_Lord_Card','Sealed Dark Lord Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus3 bAutoSpellWhenHit,"WZ_METEOR",5,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4489,'Sealed_Pharaoh_Card','Sealed Pharaoh Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bUseSPrate,-15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4490,'Sealed_M_Flower_Card','Sealed Moonlight Flower Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'skill "AL_INCAGI",((getrefine()>14)?5:1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4491,'Sealed_B_Shecil_Card','Sealed Sniper Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bHPrecovRate,-100; bonus2 bHPDrainRate,50,((getrefine()>14)?15:10);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4492,'Sealed_Orc_Hero_Card','Sealed Orc Hero Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bVit,3; bonus2 bResEff,Eff_Stun,((getrefine()>14)?6000:4000);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4493,'Sealed_Tao_Card','Sealed Tao Gunka Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,((getrefine()>14)?75:50); bonus bDefRate,-50; bonus bMdefRate,-50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4494,'Sealed_TurtleG_Card','Sealed Turtle General Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'.@rate = ((getrefine()>14)?15:10); bonus2 bAddClass,Class_All,.@rate; bonus3 bAutoSpell,"SM_MAGNUM",10,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4495,'Sealed_Amon_Ra_Card','Sealed Amon Ra Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bAllStats,1; bonus3 bAutoSpellWhenHit,"PR_KYRIE",((getrefine()>14)?8:5),(15+35*(readparam(bInt)>=99));',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4496,'Sealed_Drake_Card','Sealed Drake Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'.@rate = (getrefine()>=15?75:50); bonus2 bAddSize,Size_All,.@rate; bonus2 bMagicAddSize,Size_All,.@rate;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4497,'Sealed_Knight_WS_Card','Sealed Stormy Knight Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus3 bAutoSpell,"WZ_STORMGUST",1,10; bonus2 bAddEff,Eff_Freeze,((getrefine()>14)?1500:1000);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4498,'Sealed_Lady_Tanee_Card','Sealed Lady Tanee Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'.@r = getrefine(); bonus bMaxHPrate,((.@r>14)?-50:-60); bonus bMaxSPrate,50; bonus2 bAddMonsterDropItem,513,100; bonus2 bAddItemHealRate,513,((.@r>14)?80:50);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4499,'Sealed_Samurai_Card','Sealed Samurai Spector Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bIgnoreDefClass,Class_Normal; bonus bHPrecovRate,-100; if (getrefine()>14) bonus2 bHPLossRate,777,8000; else bonus2 bHPLossRate,888,5000;',NULL,'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; }'); -REPLACE INTO `item_db_re` VALUES (4500,'Sealed_Orc_Load_Card','Sealed Orc Lord Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bShortWeaponDamageReturn,((getrefine()>14)?25:15);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4501,'Sealed_B_Magaleta_Card','Sealed High Priest Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus5 bAutoSpellWhenHit,"HP_ASSUMPTIO",1,((getrefine()>14)?35:25),BF_WEAPON|BF_MAGIC,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4502,'Sealed_B_Harword_Card','Sealed MasterSmith Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'.@r = getrefine(); bonus bBreakWeaponRate,(.@r>14?800:500); bonus bBreakArmorRate,(.@r>14?600:500);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4503,'Sealed_Apocalips_H_Card','Sealed Vesper Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bDex,2; bonus2 bIgnoreMdefClassRate,Class_Boss,((getrefine()>14)?25:15);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4504,'Sealed_Eddga_Card','Sealed Eddga Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,((getrefine()>14)?-35:-50); bonus bNoWalkDelay;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4505,'Scaraba_Card','Scaraba Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bMatk,20; bonus bMaxSPrate,-1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4506,'Dolomedes_Card','Dolomedes Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bDex,2; if(BaseClass==Job_Archer){ bonus bDex,getrefine()/3; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4507,'Q_Scaraba_Card','Queen Scaraba Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddRace2,RC2_SCARABA,30; bonus2 bAddMonsterDropItem,12806,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4508,'Gold_Scaraba_Card','Gold Scaraba Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bBaseAtk,20; bonus bMaxHPrate,-1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4509,'Gold_Q_Scaraba_Card','Gold Queen Scaraba Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bInt,3; bonus2 bSubRace,RC_Insect,10; if(getrefine()>=9) { bonus2 bSubRace,RC_Insect,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4510,'Miming_Card','Miming Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus3 bAutoSpell,"WM_LULLABY_DEEPSLEEP",1,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4511,'Little_Fatum_Card','Little Fatum Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus3 bAddEff,Eff_Silence,500,ATF_MAGIC;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4512,'Parus_Card','Parus Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bHealPower,3; if(BaseClass==Job_Acolyte){ bonus bHealPower,getrefine()/2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4513,'Angra_Mantis_Card','Angra Mantis Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,2; if(BaseClass==Job_Thief){ bonus bCritAtkRate,getrefine()/2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4514,'Pom_Spider_Card','Pom Spider Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddRace,RC_Undead,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4515,'Alnoldi_Card','Alnoldi Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_Plant,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4516,'Comodo_Card','Comodo Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bDef,50; bonus bFlee,-25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4517,'Cendrawasih_Card','Cendrawasih Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bInt,2; if(BaseClass==Job_Mage){ bonus bInt,getrefine()/3; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4518,'Banaspaty_Card','Banaspaty Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus3 bAddEff,Eff_Burning,500,ATF_TARGET;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4519,'Butoijo_Card','Butoijo Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddRace,RC_Angel,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4520,'Leak_Card','Leak Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bStr,3; bonus2 bAddEff,Eff_Confusion,5000; bonus3 bAddEff,Eff_Confusion,5000,ATF_TARGET;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4521,'Sedora_Card','Sedora Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4522,'Sropho_Card','Sropho Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus4 bAddEff,Eff_Crystalize,500,ATF_SHORT,3000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4523,'Pot_Dofle_Card','Pot Dofle Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bDefEle,Ele_Water; bonus2 bSubRace,RC_Fish,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4524,'King_Dramoh_Card','King Dramoh Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bStr,2; if(BaseClass==Job_Swordman){ bonus bStr,2+(getrefine()/3); }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4525,'Kraken_Card','Kraken Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bFlee,10; skill "TF_HIDING",1; skill "RG_RAID",1; bonus5 bAutoSpellOnSkill,"RG_RAID","NPC_WIDEBLEEDING",1,250,1;',NULL,'sc_end SC_HIDING;'); -REPLACE INTO `item_db_re` VALUES (4526,'Odd_Coelacanth_Card','Weird Coelacanth Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bMaxSPrate,5; bonus bMdef,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4527,'Black_Coelacanth_Card','Dark Coelacanth Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,10; bonus bDef,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4528,'Mutant_Coelacanth_Card','Mutant Coelacanth Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'.@r = getrefine(); bonus bMatkRate,2+(.@r/2); bonus bMaxHPrate,-.@r/2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4529,'Cruel_Coelacanth_Card','Violent Coelacanth Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'.@r = getrefine(); bonus2 bAddClass,Class_All,2+(.@r/2); bonus bMaxSPrate,-.@r/2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4530,'Siorava_Card','Siorava Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bLuk,2; if(BaseClass==Job_Merchant){ bonus bLuk,2+(getrefine()/3); }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4531,'Red_Eruma_Card','Red Eruma Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus3 bAddEff,Eff_Curse,100,ATF_MAGIC;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4532,'Wild_Rider_Card','Wild Rider Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bAgi,1; bonus3 bAutoSpell,"AL_INCAGI",1,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4533,'Mini_Octopus_Card','Octopus Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus3 bAddEff,Eff_Blind,100,ATF_MAGIC;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4534,'Giant_Octopus_Card','Giant Octopus Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,12; skill "WZ_WATERBALL",5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4535,'Sealed_Rand_Card','Sealed Randgris Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddClass,Class_All,(getrefine()>=15?8:5); bonus5 bAutoSpell,"SA_DISPELL",1,1,BF_NORMAL,1; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4536,'Sealed_Atroce_Card','Sealed Atroce Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'.@r = getrefine(); bonus bBaseAtk,((.@r>14)?25:15); autobonus "{ bonus bAspdRate,(("+.@r+">14)?75:50); }",5,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4537,'Sealed_Phreeoni_Card','Sealed Phreeoni Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bHit,((getrefine()>14)?75:50);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4538,'Sealed_Bacsojin_Card','Sealed White Lady Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'.@r = getrefine(); bonus bHealPower,(.@r>14?25:15); bonus bUseSPrate,(.@r>14?20:30);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4539,'Sealed_F_Bishop_Card','Sealed Fallen Bishop Hibram Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'.@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_Human,.@rate;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4540,'SLD_Lord_Of_Death_Card','Sealed Lord of The Dead Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'.@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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4541,'SLD_B_Katrinn_Card','Sealed High Wizard Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus2 bIgnoreMdefClassRate,Class_Normal,100; .@rate = ((getrefine()>14)?120:150); bonus bVariableCastrate,.@rate; bonus bSPrecovRate,-.@rate;',NULL,'heal 0,((getrefine()>14)?-2000:-3000);'); -REPLACE INTO `item_db_re` VALUES (4542,'SLD_Detale_Card','Sealed Detale Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bResEff,Eff_Freeze,(getrefine()>=15?6000:4000); bonus5 bAutoSpell,"SA_LANDPROTECTOR",1,1,BF_MAGIC,1; bonus bMdef,-20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4543,'SLD_Garm_Card','Sealed Hatii Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddEffWhenHit,Eff_Freeze,((getrefine()>14)?4000:2500);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4544,'SLD_Dark_Snake_Card','Sealed Evil Snake Lord Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bInt,3; .@i = (getrefine()>14?7500:5000); bonus2 bResEff,Eff_Blind,.@i; bonus2 bResEff,Eff_Curse,.@i;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4545,'Novice_Poring_Card','Novice Poring Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4546,'Val\'khiri_Card','Val\'khiri Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4547,'Upd_Byorgue_Card','Enhanced Byorgue Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'if(BaseJob==Job_Rogue) { bonus bMatkRate,10; bonus2 bAddClass,Class_All,10; bonus bMaxHPrate,getrefine()/2; } /* Adds a chance of inflicting Confuse on target when using Body Paint skill. */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4548,'Upd_Salamander_Card','Enhanced Salamander Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus2 bSkillAtk,"WZ_FIREPILLAR",40; bonus2 bSkillAtk,"WZ_METEOR",40;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4549,'Upd_Maya_Puple_Card','Upd Maya Puple Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bIntravision; bonus bAllStats,1; skill "AL_RUWACH",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4550,'Upd_Bow_Guardian_Card','Upd Bow Guardian Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'if(getiteminfo(getequipid(EQI_HAND_R),11)==W_BOW) { bonus2 bSkillAtk,"RA_ARROWSTORM",50; bonus bCriticalLong,25+10*(getequiprefinerycnt(EQI_HAND_R)/4); bonus bHit,5; bonus3 bAutoSpell,"HT_PHANTASMIC",1,100; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4552,'Manny_Card','Manny Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bMaxHP,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4553,'Sid_Card','Sid Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bMaxHP,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4554,'Diego_Card','Diego Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bMaxHP,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4555,'Scrat_Card','Scrat Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bMaxHP,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4556,'Fenrir_Card','Fenrir Card',6,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bMatk,50+getrefine()*5; bonus bFixedCastrate,-70;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4557,'Fenrir_Card_','Weakened Fenrir Card',6,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bMatk,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4559,'M_Morocc_Card','Evil Morocc Card',6,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bAspd,1; bonus bMaxSPrate,-10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4560,'Clown_Card','Clown Alphoccio Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'skill "BA_POEMBRAGI",10; bonus bFlee,(readparam(bVit)>=110)?40:20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4561,'Professor_Card','Professor Celia Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bMatkRate,(readparam(bDex)>=110)?14:7; bonus5 bAutoSpellWhenHit,"SA_LANDPROTECTOR",5,70,BF_MAGIC,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4562,'Champion_Card','Champion Chen Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddClass,Class_All,(readparam(bAgi)>=110)?14:7; bonus5 bAutoSpellWhenHit,"MO_INVESTIGATE",5,70,BF_WEAPON,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4563,'Creator_Card','Creator Flamel Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bCritical,(readparam(bStr)>=110)?40:20; bonus5 bAutoSpellWhenHit,"AM_ACIDTERROR",5,70,BF_WEAPON,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4564,'Stalker_Card','Stalker Gertie Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bHit,(readparam(bLuk)>=110)?40:20; bonus5 bAutoSpellWhenHit,"ST_FULLSTRIP",1,70,BF_WEAPON,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4565,'Paladin_Card','Paladin Randel Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,(readparam(bInt)>=110)?20:10; bonus5 bAutoSpellWhenHit,"CR_GRANDCROSS",10,70,BF_WEAPON,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4566,'Gypsy_Card','Gypsy Trentini Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'skill "DC_FORTUNEKISS",10; bonus bFlee,(readparam(bVit)>=110)?40:20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4567,'Alphoccio_Card','Alphoccio Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bFlee,10; if(BaseJob==Job_Bard) { bonus bMaxHPrate,10; bonus bMaxSPrate,5;}',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4568,'Ceila_Card','Celia Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bFlee,10; skill "SA_ABRACADABRA",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4569,'Chen_Card','Chen Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bFlee,10; skill "MO_CALLSPIRITS",2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4570,'Flamel_Card','Flamel Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bFlee,10; bonus2 bAddItemGroupHealRate,IG_Flamel_Card,200;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4571,'Gertie_Card','Gertie Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bFlee,10; skill "RG_CLOSECONFINE",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4572,'Randel_Card','Randel Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bFlee,10; skill "CR_AUTOGUARD",3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4573,'Trentini_Card','Trentini Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bFlee,10; if(BaseJob==Job_Dancer) { bonus bMaxHPrate,10; bonus bMaxSPrate,5;}',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4574,'Daehyon_Card','General Daehyon Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'.@i = getiteminfo(getequipid(EQI_HAND_R),11); if(.@i==W_1HSWORD||.@i==W_2HSWORD) { bonus bBaseAtk,100; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4575,'Soheon_Card','Armed Guard Soheon Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bBaseAtk,10; if(getiteminfo(getequipid(EQI_HAND_R),11) == W_DAGGER) { .@r = getrefine(); if(.@r>=10) { bonus bAspd,1; } if(.@r>=14) { bonus bAspd,1; } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4576,'Gioia_Card','Gioia Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus2 bMagicAtkEle,Ele_Wind,100; bonus2 bMagicAtkEle,Ele_Ghost,100; bonus2 bSubEle,Ele_All,-30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4577,'Elvira_Card','Elvira Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus2 bMagicAtkEle,Ele_Wind,20; bonus2 bMagicAtkEle,Ele_Ghost,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4578,'Pyuriel_Card','Angry Student Pyuriel Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,30; bonus2 bSubRace,RC_All,-10; bonus2 bSubRace,RC_Player_Human,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4579,'Lora_Card','Warrior Lola Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'if(getiteminfo(getequipid(EQI_HAND_R),11) == W_MACE) { bonus bBaseAtk,20; bonus bCritical,10; } .@r = getrefine(); bonus bBaseAtk,.@r; bonus bCritical,.@r;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4580,'Kades_Card','Dark Guardian Kades Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Water,50; bonus2 bSubEle,Ele_Earth,50; bonus2 bSubEle,Ele_Fire,50; bonus2 bSubEle,Ele_Wind,50; bonus2 bSubEle,Ele_Dark,50; bonus2 bSubEle,Ele_Undead,50; bonus2 bSubEle,Ele_Holy,-100; bonus2 bSubEle,Ele_Ghost,-100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4581,'Rudo_Card','Rudo Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'autobonus "{ bonus bAgi,44; heal 0,-40; }",500,3000,0,"{ sc_start SC_SPEEDUP1,3000,50; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4582,'Bungisngis_Card','Bungisngis Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4583,'Engkanto_Card','Engkanto Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus2 bAddEle,Ele_Poison,30; bonus2 bMagicAddEle,Ele_Poison,30; bonus2 bIgnoreDefRaceRate,RC_Plant,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4584,'Manananggal_Card','Manananggal Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bSPDrainValue,1; bonus bMaxSPrate,-1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4585,'Mangkukulam_Card','Mangkukulam Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bMaxSPrate,10; bonus bHPGainValue,-666;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4586,'Tikbalang_Card','Tikbalang Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bMatk,10; bonus2 bMagicAtkEle,Ele_Wind,(getrefine()>=9)?10:5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4587,'Tiyanak_Card','Tiyanak Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus2 bCriticalAddRace,RC_Brute,12; bonus2 bCriticalAddRace,RC_Player_Doram,12; bonus2 bCriticalAddRace,RC_Fish,12; bonus2 bCriticalAddRace,RC_DemiHuman,12;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4588,'Wakwak_Card','Wakwak Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bBaseAtk,5*readparam(bStr)/10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4589,'Jejeling_Card','Jejeling Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bMaxHP,200*readparam(bVit)/10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4590,'Bangungot_Card','Bangungot Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bInt,4; bonus5 bAutoSpellWhenHit,"NPC_WIDESLEEP",5,70,BF_MAGIC,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4591,'Bakonawa_Card','Bakonawa Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bStr,4; bonus5 bAutoSpellWhenHit,"NPC_WIDEBLEEDING",5,70,BF_WEAPON,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4592,'Buwaya_Card','Buwaya Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bVit,4; bonus5 bAutoSpellWhenHit,"NPC_WIDESTONE",5,70,BF_MAGIC,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4593,'Menblatt_Card','Menblatt Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bLongAtkRate,readparam(bDex)/10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4594,'Petal_Card','Petal Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,2*(readparam(bLuk)/10);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4595,'Cenere_Card','Cenere Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bAspdRate,2*(readparam(bAgi)/10);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4596,'AntiqueBook_Card','Antique Book Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bMatk,5*(readparam(bInt)/10);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4597,'LichternB_Card','Lichtern Blue Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bMatk,10; bonus2 bMagicAtkEle,Ele_Water,(getrefine()>=9)?10:5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4598,'LichternY_Card','Lichtern Green Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bMatk,10; bonus2 bMagicAtkEle,Ele_Ghost,(getrefine()>=9)?10:5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4599,'LichternR_Card','Lichtern Red Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bMatk,10; bonus2 bMagicAtkEle,Ele_Fire,(getrefine()>=9)?10:5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4600,'LichternG_Card','Lichtern Yellow Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bMatk,10; bonus2 bMagicAtkEle,Ele_Earth,(getrefine()>=9)?10:5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4601,'Amdarais_Card','Amdarais Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddClass,Class_All,15; bonus bMatkRate,15; bonus2 bHPLossRate,666,4000; bonus2 bSPLossRate,66,4000;',NULL,'heal -6666,-666;'); -REPLACE INTO `item_db_re` VALUES (4602,'AmdaraisH_Card','Realized Amdarais Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddClass,Class_All,20; bonus bMatkRate,20; bonus2 bHPLossRate,666,6000; bonus2 bSPLossRate,66,6000;',NULL,'heal -6666,-666;'); -REPLACE INTO `item_db_re` VALUES (4603,'CorruptionRoot_Card','Corruption Root Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bBaseAtk,20; bonus5 bAutoSpell,"NPC_WIDESTONE",1,70,BF_WEAPON,0; bonus5 bAutoSpell,"NPC_WIDESLEEP",1,70,BF_WEAPON,0; bonus5 bAutoSpell,"NPC_WIDECURSE",1,70,BF_WEAPON,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4604,'CorruptionRootH_Card','Realized Corruption Root Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bBaseAtk,30; bonus5 bAutoSpell,"NPC_WIDESTONE",2,70,BF_WEAPON,0; bonus5 bAutoSpell,"NPC_WIDESLEEP",2,70,BF_WEAPON,0; bonus5 bAutoSpell,"NPC_WIDECURSE",2,70,BF_WEAPON,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4605,'UndeadKnightM_Card','Agony Of Royal Knight Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,-44; bonus bHPGainValue,200+10*getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4606,'UndeadKnightF_Card','Grudge of Royal Knight Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bMaxSPrate,-44; bonus bSPGainValue,20+(getrefine()/2);',NULL,'heal 0,-444;'); -REPLACE INTO `item_db_re` VALUES (4607,'FaithfulManager_Card','Faithful Manager Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bBaseAtk,5; bonus bMatk,5; if(getiteminfo(getequipid(EQI_HAND_R),11) == W_BOOK) { .@r = getrefine(); if(.@r>=10) { bonus bBaseAtk,20; bonus bMatk,20; } if(.@r>=14) { bonus bBaseAtk,20; bonus bMatk,20; } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4608,'White_Knight_Card','White Knight Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bBaseAtk,15; bonus2 bAddSize,Size_Medium,20; bonus2 bAddSize,Size_Large,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4609,'Khalitzburg_Knight_Card','Khalitzburg Knight Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus bDef,20; bonus2 bSubSize,Size_Medium,25; bonus2 bSubSize,Size_Large,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4610,'Sarah_Card','Sarah Card',6,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bAbsorbDmgMaxHP,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4625,'Time_Holder_Card','Time Holder Card',6,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bMatkRate,20; bonus bUseSPrate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4626,'Big_Ben_Card','Big Ben Card',6,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bMagicAddRace,RC_Formless,5; bonus2 bMagicAddRace,RC_Demon,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4627,'Big_Bell_Card','Big Bell Card',6,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddRace,RC_Formless,10; bonus2 bAddRace,RC_Demon,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4628,'Neo_Punk_Card','Neo Punk Card',6,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,32,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_Formless,20; bonus2 bSubRace,RC_Demon,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4629,'Arc_Elder_Card','Arc Elder Card',6,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Neutral,15; bonus2 bMagicAtkEle,Ele_Earth,getrefine()*3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4630,'Nightmare_Timer_Keeper_Card','Nightmare Timer Keeper Card',6,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus3 bAutoSpell,"NPC_WIDECURSE",2,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4631,'Owl_Viscount_Card','Owl Viscount Card',6,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bAspdRate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4632,'Owl_Marquees_Card','Owl Marquees Card',6,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus5 bAutoSpell,"SA_VIOLENTGALE",(getskilllv("SA_VIOLENTGALE")==5?5:1),1,BF_WEAPON,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4633,'Enhanced_Archer_Skeleton_Card','Enhanced Archer Skeleton Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bLongAtkRate,(BaseLevel>=100?12:10);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4634,'Enhanced_Soldier_Skeleton_Card','Enhanced Soldier Skeleton Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'if (BaseLevel<100) { bonus bCritical,9; } else { bonus bCritical,10; bonus bCritAtkRate,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4635,'Enhanced_Amdarais_Card','Enhanced Amdarais Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'.@r = getrefine(); bonus bDef,(.@r*10); bonus bFlee,(.@r*-2); if (BaseLevel>=100) bonus bMaxHP,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4636,'Bijou_Card','Bijou Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bResEff,Eff_Freeze,10000; bonus2 bAddClass,Class_All,10; bonus bMatkRate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4637,'Immortal_Corps_Card','Immortal Corps Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bHPGainValue,50; bonus bSPGainValue,5; bonus bNoRegen,1; bonus bNoRegen,2;',NULL,'heal -1000,-100;'); -REPLACE INTO `item_db_re` VALUES (4638,'Watcher_Card','Watcher Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bBaseAtk,30; bonus bSPDrainValue,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4639,'Taffy_Card','Taffy Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus2 bAddClass,Class_All,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4640,'Frozen_Wolf_Card','Frozen Wolf Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bMatkRate,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4641,'Zombie_Guard_Card','Zombie Guard Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus bNoRegen,2; bonus bSPDrainValue,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4642,'Min_Toad_Card','Infinite Toad Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'.@r = getrefine(); if(.@r>6){ .@b+=2; if(.@r>8).@b+=3; } bonus bFlee2,2+.@b;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4643,'Min_Vagabond_Wolf_Card','Infinite Vagabond Wolf Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'.@r = getrefine(); if(.@r>6){ .@b+=10; if(.@r>8).@b+=15; } bonus bAtk,10+.@b;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4644,'Min_Vocal_Card','Infinite Vocal Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'.@r = getrefine(); if(.@r>6){ .@b+=10; if(.@r>8) .@b+=15; } bonus bMdef,5+.@b;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4645,'Min_Eclipse_Card','Infinite Eclipse Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'.@r = getrefine(); if(.@r>6){ .@b+=300; if(.@r>8).@b+=400; } bonus bMaxHP,300+.@b;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4646,'Min_Chimera_Card','Infinite Chimera Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,8; bonus bMaxSPrate,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4647,'Min_Osiris_Card','Infinite Osiris Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bHPGainValue,300;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4648,'Min_Eddga_Card','Infinite Eddga Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus4 bAutoSpellWhenHit,"SM_PROVOKE",10,500,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4649,'Min_Phreeoni_Card','Infinite Phreeoni Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bCritical,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4650,'Min_Orc_Hero_Card','Infinite Orc Hero Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bVit,3; bonus3 bAddEffWhenHit,Eff_Stun,10000,ATF_MAGIC;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4651,'Min_Tao_Gunka_Card','Infinite Tao Gunka Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bMaxHP,10000; bonus bAgi,-10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4652,'N_Amon_Ra_Card','Nightmare Amon Ra Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bMagicAddRace,RC_Demon,50; bonus2 bMagicAddRace,RC_Undead,50; bonus2 bMagicAddEle,Ele_Dark,50; bonus2 bMagicAddEle,Ele_Undead,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4653,'N_Arclouse_Card','Nightmare Arclouse Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_Brute,20; bonus2 bSubRace,RC_Player_Doram,20; bonus2 bSubRace,RC_Undead,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4654,'N_Mimic_Card','Nightmare Mimic Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bMagicAddRace,RC_Brute,5; bonus2 bMagicAddRace,RC_Player_Doram,5; bonus2 bMagicAddRace,RC_Undead,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4655,'N_Minorous_Card','Nightmare Minorous Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Player_Doram,10; bonus2 bAddRace,RC_Undead,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4656,'N_Mummy_Card','Nightmare Mummy Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'/* Unofficial chance */ bonus3 bAutoSpellWhenHit,"NPC_WIDESLEEP",2,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4657,'N_Ancient_Mummy_Card','Nightmare Ancient Mummy Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Neutral,15; bonus2 bMagicAtkEle,Ele_Fire,getrefine()*3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4658,'N_Verit_Card','Nightmare Verit Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus2 bMagicAddClass,Class_All,5; if(getrefine()>6) { bonus2 bMagicAddClass,Class_All,3; } if(getrefine()>8) { bonus2 bMagicAddClass,Class_All,2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4659,'Eggring_Card','Eggring Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bLuk,2; bonus bMaxHP,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4660,'Scout_Basilisk_Card','Scout Basilisk Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubSize,Size_Small,5; bonus2 bSubSize,Size_Medium,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4661,'Charge_Basilisk_Card','Charge Basilisk Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubSize,Size_Medium,20; bonus2 bSubSize,Size_Large,20; bonus2 bSubSize,Size_Small,-15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4662,'Big_Eggring_Card','Big Eggring Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bAtk,25-5*min(readParam(bStr)/10,5); bonus bMatk,25-5*min(readParam(bInt)/10,5); bonus bAspdRate,10-2*min(readParam(bAgi)/10,5); bonus bMaxHP,1000-200*min(readParam(bVit)/10,5); bonus bLongAtkRate,5-1*min(readParam(bDex)/10,5); bonus bCritAtkRate,10-2*min(readParam(bLuk)/10,5);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4663,'Leaf_Lunatic_Card','Leaf Lunatic Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bMaxSP,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4664,'Grass_Fabre_Card','Grass Fabre Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bLuk,1; bonus bMaxHP,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4665,'Wild_Hornet_Card','Wild Hornet Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bAtk,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4666,'Sweet_Roda_Frog_Card','Sweet Roda Frog Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bMaxSP,10; bonus bMaxHP,300;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4667,'Hunter_Wolf_Card','Hunter Wolf Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bMaxSP,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4668,'Trance_Spore_Card','Trance Spore Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bVit,1; bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4669,'Jungle_Mandragora_Card','Jungle Mandragora Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'.@r = getrefine(); bonus2 bAddEle,Ele_Wind,((.@r>=9)?7:((.@r>=7)?5:3));',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4670,'Fruit_Pom_Spider_Card','Fruit Pom Spider Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'.@r = getrefine(); bonus2 bAddEle,Ele_Fire,((.@r>=9)?7:((.@r>=7)?5:3));',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4671,'V_Celia_Card','Sorcerer Celia Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'if(eaclass()&EAJL_THIRD && BaseJob == Job_Sage){ bonus bMaxHPrate,10; bonus bMatkRate,10; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4672,'V_Chen_Card','Sura Chen Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'if(eaclass()&EAJL_THIRD && BaseJob == Job_Monk){ bonus bMaxHPrate,10; bonus2 bAddClass,Class_All,10; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4673,'V_Alphoccio_Card','Minstel Alphoccio Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'if(eaclass()&EAJL_THIRD && BaseJob == Job_Bard){ bonus bMaxHPrate,15; bonus bMaxSPrate,10; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4674,'V_Eremes_Card','Guillotine Cross Eremes Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'if(eaclass()&EAJL_THIRD && BaseJob == Job_Assassin){ bonus bFlee2,10; bonus2 bAddClass,Class_All,15; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4675,'V_Magaleta_Card','Arch Bishop Magaleta Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'if(eaclass()&EAJL_THIRD && BaseJob == Job_Priest){ bonus bMaxHPrate,10; bonus bHealPower,10; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4676,'V_Shecil_Card','Ranger Cecil Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'if(eaclass()&EAJL_THIRD && BaseJob == Job_Hunter){ bonus bCritical,20; bonus bLongAtkRate,15; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4677,'V_Howard_Card','Mechanic Howard Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'if(eaclass()&EAJL_THIRD && BaseJob == Job_Blacksmith){ bonus bHit,20; bonus2 bAddClass,Class_All,15; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4678,'V_Katrinn_Card','Warlock Kathryne Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'if(eaclass()&EAJL_THIRD && BaseJob == Job_Wizard){ bonus bMdef,80; bonus bMatkRate,15; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4679,'V_Seyren_Card','Rune Knight Seyren Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'if(eaclass()&EAJL_THIRD && BaseJob == Job_Knight){ bonus bAspd,2; bonus2 bAddClass,Class_All,15; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4680,'V_Randel_Card','Royal Guard Randel Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'if(eaclass()&EAJL_THIRD && BaseJob == Job_Crusader){ bonus bDef,350; bonus2 bAddClass,Class_All,10; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4681,'V_Flamel_Card','Genetic Flamel Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'if(eaclass()&EAJL_THIRD && BaseJob == Job_Alchemist){ bonus bFlee,20; bonus2 bAddClass,Class_All,15; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4682,'V_Gertie_Card','Shadow Chaser Gertie Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'if(eaclass()&EAJL_THIRD && BaseJob == Job_Rogue){ bonus2 bAddClass,Class_All,5; bonus bMatkRate,15; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4683,'V_Trentini_Card','Wanderer Trentini Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'if(eaclass()&EAJL_THIRD && BaseJob == Job_Dancer){ bonus bMaxHPrate,10; bonus bMaxSPrate,15; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4684,'V_B_Eremes_Card','True Eremes Guile Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"GC_CROSSIMPACT",20+.@b;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4685,'V_B_Magaleta_Card','True Margaretha Sorin Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"AB_ADORAMUS",20+.@b;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4686,'V_B_Katrinn_Card','True Kathryne Keyron Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"WL_CRIMSONROCK",20+.@b;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4687,'V_B_Shecil_Card','True Cecil Damon Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"RA_CLUSTERBOMB",20+.@b;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4688,'V_B_Harword_Card','True Howard Alt-Eisen Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"NC_AXETORNADO",20+.@b;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4689,'V_B_Seyren_Card','True Seyren Windsor Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"RK_IGNITIONBREAK",20+.@b;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4690,'V_B_Randel_Card','True Randel Lawrence Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"LG_EARTHDRIVE",20+.@b;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4691,'V_B_Flamel_Card','True Flamel Emure Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"GN_CART_TORNADO",20+.@b;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4692,'V_B_Celia_Card','True Celia Alde Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"SO_VARETYR_SPEAR",20+.@b;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4693,'V_B_Chen_Card','True Chen Liu Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",20+.@b;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4694,'V_B_Gertie_Card','True Gertie Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"SC_FEINTBOMB",20+.@b;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4695,'V_B_Trentini_Card','True Trentini Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",20+.@b;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4696,'V_B_Alphoccio_Card','True Alphoccio Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"WM_REVERBERATION",20+.@b;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4697,'Charleston3_Card','Charleston3 Card',6,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,2,NULL,NULL,NULL,NULL,'bonus bMaxSP,-300; bonus bBreakArmorRate,1500; /* Custom rate [Secret] */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4698,'Step_Card','Step Card',6,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,2,NULL,NULL,NULL,NULL,'bonus2 bSkillAtk,"NC_AXEBOOMERANG",30+((getrefine() >= 10)*30);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4699,'Rock_Step_Card','Rock Step Card',6,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,2,NULL,NULL,NULL,NULL,'bonus2 bSkillAtk,"NC_ARMSCANNON",20+((getrefine()>=10)*20);',NULL,NULL); -#=================================================================== -# Armor Enchant System -#=================================================================== -REPLACE INTO `item_db_re` VALUES (4700,'Strength1','STR+1',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bStr,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4701,'Strength2','STR+2',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bStr,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4702,'Strength3','STR+3',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bStr,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4703,'Strength4','STR+4',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bStr,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4704,'Strength5','STR+5',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bStr,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4705,'Strength6','STR+6',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bStr,6;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4706,'Strength7','STR+7',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bStr,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4707,'Strength8','STR+8',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bStr,8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4708,'Strength9','STR+9',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bStr,9;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4709,'Strength10','STR+10',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bStr,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4710,'Inteligence1','INT+1',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4711,'Inteligence2','INT+2',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4712,'Inteligence3','INT+3',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bInt,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4713,'Inteligence4','INT+4',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bInt,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4714,'Inteligence5','INT+5',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bInt,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4715,'Inteligence6','INT+6',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bInt,6;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4716,'Inteligence7','INT+7',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bInt,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4717,'Inteligence8','INT+8',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bInt,8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4718,'Inteligence9','INT+9',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bInt,9;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4719,'Inteligence10','INT+10',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bInt,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4720,'Dexterity1','DEX+1',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4721,'Dexterity2','DEX+2',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bDex,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4722,'Dexterity3','DEX+3',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bDex,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4723,'Dexterity4','DEX+4',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bDex,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4724,'Dexterity5','DEX+5',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bDex,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4725,'Dexterity6','DEX+6',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bDex,6;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4726,'Dexterity7','DEX+7',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bDex,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4727,'Dexterity8','DEX+8',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bDex,8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4728,'Dexterity9','DEX+9',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bDex,9;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4729,'Dexterity10','DEX+10',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bDex,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4730,'Agility1','AGI+1',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4731,'Agility2','AGI+2',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bAgi,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4732,'Agility3','AGI+3',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bAgi,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4733,'Agility4','AGI+4',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bAgi,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4734,'Agility5','AGI+5',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bAgi,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4735,'Agility6','AGI+6',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bAgi,6;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4736,'Agility7','AGI+7',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bAgi,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4737,'Agility8','AGI+8',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bAgi,8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4738,'Agility9','AGI+9',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bAgi,9;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4739,'Agility10','AGI+10',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bAgi,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4740,'Vitality1','VIT+1',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bVit,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4741,'Vitality2','VIT+2',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bVit,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4742,'Vitality3','VIT+3',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bVit,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4743,'Vitality4','VIT+4',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bVit,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4744,'Vitality5','VIT+5',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bVit,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4745,'Vitality6','VIT+6',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bVit,6;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4746,'Vitality7','VIT+7',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bVit,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4747,'Vitality8','VIT+8',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bVit,8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4748,'Vitality9','VIT+9',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bVit,9;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4749,'Vitality10','VIT+10',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bVit,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4750,'Luck1','LUK+1',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4751,'Luck2','LUK+2',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bLuk,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4752,'Luck3','LUK+3',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bLuk,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4753,'Luck4','LUK+4',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bLuk,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4754,'Luck5','LUK+5',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bLuk,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4755,'Luck6','LUK+6',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bLuk,6;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4756,'Luck7','LUK+7',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bLuk,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4757,'Luck8','LUK+8',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bLuk,8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4758,'Luck9','LUK+9',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bLuk,9;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4759,'Luck10','LUK+10',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bLuk,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4760,'Matk1','MATK+1%',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMatkRate,1; bonus bFixedCastrate,-1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4761,'Matk2','MATK+2%',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMatkRate,2; bonus bFixedCastrate,-1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4762,'Evasion6','FLEE+6',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bFlee,6;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4763,'Evasion12','FLEE+12',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bFlee,12;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4764,'Critical5','CRI+5',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bCritical,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4765,'Critical7','CRI+7',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bCritical,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4766,'Atk2','ATK+2%',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bAddClass,Class_All,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4767,'Atk3','ATK+3%',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bAddClass,Class_All,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4768,'Str1_J','Str + 1',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4769,'Str2_J','Str + 2',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4770,'Str3_J','Str + 3',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4771,'Int1_J','Int + 1',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4772,'Int2_J','Int + 2',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4773,'Int3_J','Int + 3',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4774,'Vit1_J','Vit + 1',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4775,'Vit2_J','Vit + 2',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4776,'Vit3_J','Vit + 3',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4777,'Agi1_J','Agi + 1',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4778,'Agi2_J','Agi + 2',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4779,'Agi3_J','Agi + 3',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4780,'Dex1_J','Dex + 1',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4781,'Dex2_J','Dex + 2',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4782,'Dex3_J','Dex + 3',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4783,'Luk1_J','Luk + 1',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4784,'Luk2_J','Luk + 2',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4785,'Luk3_J','Luk + 3',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4786,'Mdef2','MDEF+2',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMdef,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4787,'Mdef4','MDEF+4',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMdef,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4788,'Mdef6','MDEF+6',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMdef,6;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4789,'Mdef8','MDEF+8',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMdef,8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4790,'Mdef10','MDEF+10',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMdef,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4791,'Def3','DEF+3',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bDef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4792,'Def6','DEF+6',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bDef,6;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4793,'Def9','DEF+9',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bDef,9;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4794,'Def12','DEF+12',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bDef,12;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4795,'HP100','HP+100',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMaxHP,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4796,'HP200','HP+200',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMaxHP,200;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4797,'HP300','HP+300',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMaxHP,300;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4798,'HP400','HP+400',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMaxHP,400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4799,'HP500','HP+500',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMaxHP,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4800,'SP50','SP+50',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMaxSP,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4801,'SP100','SP+100',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMaxSP,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4802,'SP150','SP+150',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMaxSP,150;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4803,'Highness_Heal_3sec','Cure1Lv.',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bSkillCooldown,"AB_HIGHNESSHEAL",-3000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4804,'Coluceo_Heal30','Catholic1Lv.',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bSkillUseSP,"AB_CHEAL",30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4805,'Heal_Amount2','Archbishop1Lv',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bHealPower,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4806,'Matk3','MATK+3%',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMatkRate,3; bonus bFixedCastrate,-1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4807,'Atk_Speed1','Atk Speed1',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bAspd,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4808,'Fighting_Spirit4','Fighting Spirit4',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bBaseAtk,15; bonus bHit,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4809,'Fighting_Spirit3','Fighting Spirit3',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bBaseAtk,12; bonus bHit,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4810,'Fighting_Spirit2','Fighting Spirit2',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bBaseAtk,9; bonus bHit,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4811,'Fighting_Spirit1','Fighting Spirit1',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bBaseAtk,6; bonus bHit,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4812,'Spell4','Spell4',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMatk,15; bonus bVariableCastrate,-10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4813,'Spell3','Spell3',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMatk,12; bonus bVariableCastrate,-8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4814,'Spell2','Spell2',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMatk,9; bonus bVariableCastrate,-6;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4815,'Spell1','Spell1',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMatk,6; bonus bVariableCastrate,-4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4816,'Sharp3','Sharp3',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bCritical,12; bonus bHit,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4817,'Sharp2','Sharp2',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bCritical,9; bonus bHit,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4818,'Sharp1','Sharp1',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bCritical,6; bonus bHit,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4819,'Atk1','Atk1',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bAddClass,Class_All,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4820,'Fighting_Spirit5','Fighting Spirit5',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bBaseAtk,18; bonus bHit,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4821,'Fighting_Spirit6','Fighting Spirit6',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bBaseAtk,21; bonus bHit,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4822,'Fighting_Spirit7','Fighting Spirit7',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bBaseAtk,24; bonus bHit,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4823,'Fighting_Spirit8','Fighting Spirit8',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bBaseAtk,27; bonus bHit,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4824,'Fighting_Spirit9','Fighting Spirit9',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bBaseAtk,30; bonus bHit,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4825,'Fighting_Spirit10','Fighting Spirit10',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bBaseAtk,50; bonus bHit,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4826,'Spell5','Spell5',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMatk,18; bonus bVariableCastrate,-10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4827,'Spell6','Spell6',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMatk,21; bonus bVariableCastrate,-10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4828,'Spell7','Spell7',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMatk,24; bonus bVariableCastrate,-10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4829,'Spell8','Spell8',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMatk,27; bonus bVariableCastrate,-10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4830,'Spell9','Spell9',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMatk,30; bonus bVariableCastrate,-10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4831,'Spell10','Spell10',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMatk,50; bonus bVariableCastrate,-20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4832,'Expert_Archer1','Expert Archer1',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bLongAtkRate,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4833,'Expert_Archer2','Expert Archer2',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bLongAtkRate,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4834,'Expert_Archer3','Expert Archer3',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bLongAtkRate,6;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4835,'Expert_Archer4','Expert Archer4',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bLongAtkRate,8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4836,'Expert_Archer5','Expert Archer5',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bLongAtkRate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4837,'Expert_Archer6','Expert Archer6',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bLongAtkRate,12;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4838,'Expert_Archer7','Expert Archer7',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bLongAtkRate,14;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4839,'Expert_Archer8','Expert Archer8',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bLongAtkRate,16;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4840,'Expert_Archer9','Expert Archer9',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bLongAtkRate,18;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4841,'Expert_Archer10','Expert Archer10',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bLongAtkRate,20; bonus bAspd,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4842,'Atk_Speed2','Atk Speed2',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bAspd,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4843,'Sharp4','Sharp4',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bCritical,14; bonus bHit,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4844,'Sharp5','Sharp5',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bCritical,15; bonus bHit,6;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4845,'Sea_Energy','Strength Of Ocean',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4846,'2011Valentin_Angel','Fully Loved Stone',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bBaseAtk,10; bonus bMatk,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4847,'2011Valentin_Devil','Spelled Stone',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bBaseAtk,10; bonus bMatk,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4848,'Immuned1','Immune Level 1',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Neutral,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4849,'Cranial1','Cranial Level 1',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4850,'Heal_Amount3','Heal Amount2',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bHealPower,6; bonus bUseSPrate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4851,'Heal_Amount4','Heal Amount3',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bHealPower,12; bonus bUseSPrate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4852,'Heal_Amount5','Heal Amount4',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bHealPower,20; bonus bUseSPrate,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4853,'S_Str','Special Str',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bStr,1; .@r = getrefine(); if(.@r>7) { bonus bStr,3; } if(.@r>8) { bonus2 bAddClass,Class_All,1; } if(.@r>11) { bonus bAspd,1; bonus bFixedCastrate,-7; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4854,'S_Agi','Special Agi',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bAgi,1; .@r = getrefine(); if(.@r>7) { bonus bAgi,3; } if(.@r>8) { bonus2 bAddClass,Class_All,1; } if(.@r>11) { bonus bAspd,1; bonus bFixedCastrate,-7; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4855,'S_Vital','Special Vit',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bVit,1; .@r = getrefine(); if(.@r>7) { bonus bVit,3; } if(.@r>8) { bonus bMaxSPrate,1; } if(.@r>11) { bonus bAspd,1; bonus bFixedCastrate,-7; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4856,'S_Int','Special Int',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bInt,1; .@r = getrefine(); if(.@r>7) { bonus bInt,3; } if(.@r>8) { bonus bMatkRate,1; } if(.@r>11) { bonus bAspd,1; bonus bFixedCastrate,-7; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4857,'S_Dex','Special Dex',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bDex,1; .@r = getrefine(); if(.@r>7) { bonus bDex,3; } if(.@r>8) { bonus bMatkRate,1; } if(.@r>11) { bonus bAspd,1; bonus bFixedCastrate,-7; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4858,'S_Luck','Special Luk',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bLuk,1; .@r = getrefine(); if(.@r>7) { bonus bLuk,3; } if(.@r>8) { bonus bMaxHPrate,1; } if(.@r>11) { bonus bAspd,1; bonus bFixedCastrate,-7; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4859,'Evasion1','Evasion1',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bFlee,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4860,'Evasion3','Evasion3',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bFlee,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4861,'MHP1','MHP+1%',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4862,'MHP2','MHP+2%',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4863,'Fatal1','Fatal1Lv',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,4; bonus bCritical,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4864,'Fatal2','Fatal2Lv',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,6; bonus bCritical,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4865,'Fatal3','Fatal3Lv',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,8; bonus bCritical,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4866,'Fatal4','Fatal4Lv',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,10; bonus bCritical,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4867,'MHP3','MHP+3%',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4868,'MHP4','MHP+4%',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4869,'Attack_Delay_1','DelayafterAttack1Lv',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bAspdRate,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4870,'SP25','SP+25',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMaxSP,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4871,'SP75','SP+75',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMaxSP,75;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4872,'Attack_Delay_2','DelayafterAttack2Lv',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bAspdRate,6;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4873,'Attack_Delay_3','DelayafterAttack3Lv',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bAspdRate,8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4875,'Bear\'s_Power','Bear\'s Power',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'autobonus2 "{ bonus bStr,200; bonus2 bHPLossRate,500,1000; }",20,5000,BF_WEAPON,"{ active_transform 1060,5000; specialeffect2 EF_POTION_BERSERK; showscript \\\"Bigfoot Power !\\\"; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4876,'Runaway_Magic','Runaway Magic',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'autobonus "{ bonus bInt,200; bonus2 bSPLossRate,200,1000; }",15,10000,BF_MAGIC,"{ specialeffect2 EF_LAMADAN; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4877,'Speed_Of_Light','Speed of Light',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'autobonus "{ bonus bAspdRate,100; bonus bFlee,100; bonus2 bHPLossRate,400,1000; bonus2 bSPLossRate,40,1000;}",10,5000,BF_WEAPON,"{ specialeffect2 EF_FLASHER; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4878,'Muscle_Fool','Muscle Fool',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'autobonus2 "{ bonus bDef,1000; bonus2 bAddRace,RC_All,-50; bonus bMatkRate,-50; }",20,5000,BF_WEAPON,"{ specialeffect2 EF_MAGNUMBREAK; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4879,'Hawkeye','Hawkeye',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'autobonus "{ bonus bDex,200; bonus2 bSPLossRate,50,1000; }",30,5000,BF_WEAPON,"{ specialeffect2 EF_FLASHER; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4880,'Lucky_Day','Lucky Day',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'autobonus "{ bonus bLuk,200; bonus2 bAddMonsterDropItem,7444,10; }",15,5000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_MVP; showscript \\\"LUCKY MAX !!\\\"; }"; autobonus2 "{ bonus bLuk,200; bonus2 bAddMonsterDropItem,7444,1; }",1,5000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_MVP; showscript \\\"LUCKY MAX !!\\\"; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4881,'Attack_Delay_4','Attack Delay 4',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bAspdRate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4882,'Atk1p','ATK + 1%',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bAddClass,Class_All,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4883,'Matk1p','MATK + 1%',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMatkRate,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4884,'HIT1','HIT + 1',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bHit,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4885,'Conjure1','Spell 1',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMatk,5; bonus bVariableCastrate,-3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4886,'Conjure2','Spell 2',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMatk,10; bonus bVariableCastrate,-3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4887,'Conjure3','Spell 3',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMatk,15; bonus bVariableCastrate,-3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4888,'Conjure4','Spell 4',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMatk,20; bonus bVariableCastrate,-3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4889,'Conjure5','Spell 5',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMatk,30; bonus bVariableCastrate,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4890,'Mdef1','MDEF+1',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMdef,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4891,'Mdef3','MDEF+3',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4892,'Mdef5','MDEF+5',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4893,'Def15','DEF+15',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bDef,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4894,'Atk4p','ATK + 4%',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bAddClass,Class_All,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4895,'Atk5p','ATK + 5%',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bAddClass,Class_All,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4896,'Matk2p','MATK + 2%',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMatkRate,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4897,'Matk3p','MATK + 3%',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMatkRate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4898,'Matk4p','MATK + 4%',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMatkRate,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4899,'Matk5p','MATK + 5%',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMatkRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4900,'MHP5','MHP+5%',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4902,'Def18','DEF+18',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bDef,18;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4903,'Def21','DEF+21',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bDef,21;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4904,'Atk6p','ATK + 6%',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bAddClass,Class_All,6;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4905,'Atk7p','ATK + 7%',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bAddClass,Class_All,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4906,'Matk6p','MATK + 6',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMatkRate,6;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4907,'Matk7p','MATK + 7%',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMatkRate,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4908,'Force1','Darklord Essence Force1',6,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1023,NULL,NULL,NULL,NULL,'bonus bStr,1; bonus bBaseAtk,3; bonus bInt,-1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4909,'Force2','Darklord Essence Force2',6,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1023,NULL,NULL,NULL,NULL,'bonus bStr,2; bonus bBaseAtk,6; bonus bInt,-2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4910,'Force3','Darklord Essence Force3',6,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1023,NULL,NULL,NULL,NULL,'bonus bStr,4; bonus bBaseAtk,12; bonus bInt,-4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4911,'Intellect1','Darklord Essence Intelligence1',6,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1023,NULL,NULL,NULL,NULL,'bonus bInt,1; bonus bMatk,3; bonus bStr,-1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4912,'Intellect2','Darklord Essence Intelligence2',6,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1023,NULL,NULL,NULL,NULL,'bonus bInt,2; bonus bMatk,6; bonus bStr,-2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4913,'Intellect3','Darklord Essence Intelligence3',6,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1023,NULL,NULL,NULL,NULL,'bonus bInt,4; bonus bMatk,12; bonus bStr,-4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4914,'Swiftness1','Darklord Essence Speed1',6,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1023,NULL,NULL,NULL,NULL,'bonus bAgi,1; bonus bFlee,2; bonus bVit,-1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4915,'Swiftness2','Darklord Essence Speed2',6,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1023,NULL,NULL,NULL,NULL,'bonus bAgi,2; bonus bFlee,4; bonus bVit,-2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4916,'Swiftness3','Darklord Essence Speed3',6,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1023,NULL,NULL,NULL,NULL,'bonus bAgi,4; bonus bFlee,8; bonus bVit,-4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4917,'Tough1','Darklord Essence Vitality1',6,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1023,NULL,NULL,NULL,NULL,'bonus bVit,1; bonus bDef,3; bonus bMdef,2; bonus bAgi,-1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4918,'Tough2','Darklord Essence Vitality2',6,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1023,NULL,NULL,NULL,NULL,'bonus bVit,2; bonus bDef,6; bonus bMdef,4; bonus bAgi,-2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4919,'Tough3','Darklord Essence Vitality3',6,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1023,NULL,NULL,NULL,NULL,'bonus bVit,4; bonus bDef,12; bonus bMdef,8; bonus bAgi,-4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4920,'Artful1','Darklord Essence Concentration1',6,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1023,NULL,NULL,NULL,NULL,'bonus bDex,1; bonus bHit,2; bonus bLuk,-1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4921,'Artful2','Darklord Essence Concentration2',6,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1023,NULL,NULL,NULL,NULL,'bonus bDex,2; bonus bHit,4; bonus bLuk,-2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4922,'Artful3','Darklord Essence Concentration3',6,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1023,NULL,NULL,NULL,NULL,'bonus bDex,4; bonus bHit,8; bonus bLuk,-4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4923,'Fortune1','Darklord Essence Luck1',6,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1023,NULL,NULL,NULL,NULL,'bonus bLuk,1; bonus bCritical,1; bonus bDex,-1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4924,'Fortune2','Darklord Essence Luck2',6,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1023,NULL,NULL,NULL,NULL,'bonus bLuk,2; bonus bCritical,2; bonus bDex,-2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4925,'Fortune3','Darklord Essence Luck3',6,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1023,NULL,NULL,NULL,NULL,'bonus bLuk,4; bonus bCritical,4; bonus bDex,-4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4926,'Critical1','Cri 1Lv',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bCritical,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4927,'HP50','MaxHP50',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMaxHP,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4928,'SP10','MaxSP+10',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMaxSP,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4929,'MSP1','MSP+1%',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMaxSPrate,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4930,'HEAL2','Recovery UP',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bHPrecovRate,2; bonus bSPrecovRate,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4931,'HEALHP1','Heal 10',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bHPRegenRate,10,10000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4932,'HEALSP1','SP recovery1',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bSPGainValue,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4933,'Tolerance_Not1','Neutral Resistance Lv1',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Neutral,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4934,'Tolerance_Not2','Neutral Resistance Lv2',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Neutral,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4935,'Tolerance_Not3','Neutral Resistance Lv3',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Neutral,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4936,'ATK_BIG1','Attack big1',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bAddSize,Size_Large,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4937,'ATK_MEDIUM1','Attack mid1',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bAddSize,Size_Medium,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4938,'ATK_SMALL1','Attack small1',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bAddSize,Size_Small,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4939,'Critical2','CRI Lv2',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bCritical,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4940,'Critical3','CRI Lv3',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bCritical,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4941,'Critical4','CRI Lv4',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bCritical,6;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4942,'Dodge1','Parrying Lv1',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bFlee2,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4943,'Dodge2','Parrying Lv2',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bFlee2,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4944,'Dodge3','Parrying Lv3',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bFlee2,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4945,'Thrift1','Economy Lv1',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bUseSPrate,-2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4946,'Thrift2','Economy Lv2',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bUseSPrate,-4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4947,'Thrift3','Economy Lv3',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bUseSPrate,-6;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4948,'Skill_Delay1','After Skill Delay Lv1',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bDelayrate,-2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4949,'Skill_Delay2','After Skill Delay Lv2',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bDelayrate,-4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4950,'Skill_Delay3','After Skill Delay Lv3',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bDelayrate,-6;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4951,'Darkness_Drop','Darkness Drop',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bAddEle,Ele_Dark,2; bonus2 bMagicAtkEle,Ele_Dark,2; bonus2 bSubEle,Ele_Dark,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4952,'Fire_Drop','Fire Drop',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bAddEle,Ele_Fire,2; bonus2 bMagicAtkEle,Ele_Fire,2; bonus2 bSubEle,Ele_Fire,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4953,'Water_Drop','Water Drop',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bAddEle,Ele_Water,2; bonus2 bMagicAtkEle,Ele_Water,2; bonus2 bSubEle,Ele_Water,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4954,'Earth_Drop','Earth Drop',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bAddEle,Ele_Earth,2; bonus2 bMagicAtkEle,Ele_Earth,2; bonus2 bSubEle,Ele_Earth,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4955,'Holy_Drop','Holy Drop',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bAddEle,Ele_Holy,2; bonus2 bMagicAtkEle,Ele_Holy,2; bonus2 bSubEle,Ele_Holy,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4956,'Recovery_Drop','Recovery Drop',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'setarray .@skills$, "AL_HEAL", "PR_SANCTUARY", "AM_POTIONPITCHER", "AB_HIGHNESSHEAL", "AB_CHEAL"; for( .@i = 0; .@i < getarraysize(.@skills$); .@i++ ){ bonus2 bSkillHeal,.@skills$[.@i],2; bonus2 bSkillHeal2,.@skills$[.@i],2; } /* TODO: Depending on some recovery items HP recovery amount + 2% */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4957,'Famitsus_Power','Famitsu\'s Power',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMaxHP,832;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4958,'Gemini','Gemini',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bDelayrate,-1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4959,'Sagittarius','Sagittarius',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bLongAtkRate,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4960,'Aquarius','Aquarius',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bUseSPrate,-2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4961,'Aries','Aries',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMatk,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4962,'Cancer','Cancer',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bAtk,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4963,'Taurus','Taurus',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bAtk,4; bonus bHit,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4964,'Capricorn','Capricorn',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bMagicAddRace,RC_All,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4965,'Pisces','Pisces',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bVariableCastrate,-2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4966,'Scorpio','Scorpio',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bAddRace,RC_All,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4967,'Leo','Leo',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bAspdRate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4968,'Virgo','Virgo',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'setarray .@skills$, "AL_HEAL", "PR_SANCTUARY", "AM_POTIONPITCHER", "AB_HIGHNESSHEAL", "AB_CHEAL"; for( .@i = 0; .@i < getarraysize(.@skills$); .@i++ ){ bonus2 bSkillHeal,.@skills$[.@i],1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4969,'Libra','Libra',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'setarray .@skills$, "AL_HEAL", "PR_SANCTUARY", "AM_POTIONPITCHER", "AB_HIGHNESSHEAL", "AB_CHEAL"; for( .@i = 0; .@i < getarraysize(.@skills$); .@i++ ){ bonus2 bSkillHeal2,.@skills$[.@i],1; } /* TODO: Depending on some recovery items HP recovery amount + 1% */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4970,'Reactor_P_FIRE','Fire Property Reactor',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bDefEle,Ele_Fire;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4971,'Reactor_P_WATER','Water Property Reactor',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bDefEle,Ele_Water;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4972,'Reactor_P_GROUND','Earth Property Reactor',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bDefEle,Ele_Earth;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4973,'Reactor_P_WIND','Wind Property Reactor',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bDefEle,Ele_Wind;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4974,'Reactor_T_FIRE','Fire Resistance Reactor',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Fire,25; bonus2 bSubEle,Ele_Water,-25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4975,'Reactor_T_WATER','Water Resistance Reactor',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Water,25; bonus2 bSubEle,Ele_Wind,-25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4976,'Reactor_T_GROUND','Earth Resistance Reactor',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Earth,25; bonus2 bSubEle,Ele_Fire,-25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4977,'Reactor_T_WIND','Wind Resistance Reactor',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Wind,25; bonus2 bSubEle,Ele_Earth,-25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4978,'Reactor_Cure_101','Recovery Reactor 101',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'if (getrefine()>=7) bonus2 bHPRegenRate,100,5000; else bonus2 bHPRegenRate,50,5000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4979,'Reactor_Cure_102','Recovery Reactor 102',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'if (getrefine()>=7) bonus2 bSPRegenRate,5,5000; else bonus2 bHPRegenRate,3,5000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4980,'Reactor_Cure_201','Recovery Reactor 201',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'if (getrefine()>=7) bonus bHPrecovRate,100; else bonus bHPrecovRate,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4981,'Reactor_Cure_202','Recovery Reactor 202',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'if (getrefine()>=7) bonus bSPrecovRate,100; else bonus bSPrecovRate,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4982,'Reactor_A_STR','STR Supplement Reactor',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'if (getrefine()>=7) { .@bonus = 10; } bonus bBaseAtk,.@bonus + 5*(readparam(bStr)/10);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4983,'Reactor_A_INT','INT Supplement Reactor',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'if (getrefine()>=7) { .@bonus = 10; } bonus bMatk,.@bonus + 5*(readparam(bInt)/10);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4984,'Reactor_A_DEF','DEF SupplementReactor',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bDef,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4985,'Reactor_A_AVOI','PD Supplement Reactor',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bFlee2,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4986,'Reactor_A_ATK','Attack Supplement Reactor',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bBaseAtk,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4987,'Reactor_A_MATK','Magic Supplement Reactor',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMatk,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4988,'Reactor_A_MHP','HP Supplement Reactor',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4989,'Reactor_A_MSP','SP Supplement Reactor',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMaxSPrate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4990,'Reactor_A_FROZ','Frozen Supplement Reactor',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bResEff,Eff_Freeze,10000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4991,'Reactor_A_ASPD','ASPD Supplement Reactor',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bAspd,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4992,'HPdrain1','HP Absorb 1',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bHPDrainRate,10,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4993,'SPdrain1','SP Absorb 1',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bSPDrainRate,10,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4994,'Rune_of_Strength_Lv_1','Rune of Strength Lv 1',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'.@r = getrefine(); if (.@r>=7) { bonus bStr,5; } if (.@r>=10) { bonus2 bAddClass,Class_All,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4995,'Rune_of_Strength_Lv_2','Rune of Strength Lv 2',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'.@r = getrefine(); if (.@r>=7) { bonus bStr,6; } if (.@r>=11) { bonus bStr,1; bonus2 bAddClass,Class_All,7; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4996,'Rune_of_Strength_Lv_3','Rune of Strength_Lv 3',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'.@r = getrefine(); if (.@r>=7) { bonus bStr,7; } if (.@r>=12) { bonus bStr,1; bonus2 bAddClass,Class_All,8; } if (.@r>=13) { bonus bStr,1; bonus2 bAddClass,Class_All,2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4997,'Rune_of_Agility_Lv_1','Rune of Agility Lv 1',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'.@r = getrefine(); if (.@r>=7) { bonus bAgi,5; } if (.@r>=10) { bonus bFlee2,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4998,'Rune_of_Agility_Lv_2','Rune of Agility Lv 2',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'.@r = getrefine(); if (.@r>=7) { bonus bAgi,6; } if (.@r>=11) { bonus bAgi,1; bonus bFlee2,7; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (4999,'Rune_of_Agility_Lv_3','Rune of Agility Lv 3',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'.@r = getrefine(); if (.@r>=7) { bonus bAgi,7; } if (.@r>=12) { bonus bAgi,1; bonus bFlee2,5; } if (.@r>=13) { bonus bAgi,1; bonus bFlee2,5; }',NULL,NULL); -#=================================================================== -# More Headgears -#=================================================================== -REPLACE INTO `item_db_re` VALUES (5001,'Headset','Headset',4,20,NULL,200,NULL,6,NULL,0,0xFFFFFFFE,63,2,256,NULL,'1',1,87,'bonus2 bResEff,Eff_Curse,1000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5002,'Gemmed_Crown','Jewel Crown',4,20,NULL,600,NULL,9,NULL,0,0x000654E2,63,2,256,NULL,'60',1,88,'bonus bInt,2; bonus bLuk,1; bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5003,'Joker_Jester','Joker Jester',4,20,NULL,100,NULL,3,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',1,89,'bonus bLuk,2; bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5004,'Oxygen_Mask','Oxygen Mask',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFE,63,2,1,NULL,'0',0,90,'bonus2 bResEff,Eff_Poison,2000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5005,'Gas_Mask','Gas Mask',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFE,63,2,513,NULL,'0',0,91,'bonus2 bResEff,Eff_Poison,3000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5006,'Machoman_Glasses','Machoman\'s Glasses',4,36000,NULL,100,NULL,1,NULL,0,0xFFFFFFFE,63,2,512,NULL,'0',0,92,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5007,'Loard_Circlet','Grand Circlet',4,20,NULL,200,NULL,7,NULL,0,0xFFFFFFFE,63,2,256,NULL,'55',1,93,'bonus bStr,1; bonus bInt,1; bonus bLuk,1; bonus bMdef,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5008,'Puppy_Love','Puppy Love',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',0,94,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5009,'Safety_Helmet','Safety Helmet',4,20,NULL,500,NULL,7,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',1,95,'bonus bMdef,3; bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5010,'Indian_Hair_Piece','Indian Fillet',4,20,NULL,100,NULL,5,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,96,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5011,'Antenna','Aerial',4,20,NULL,100,NULL,5,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,97,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5012,'Ph.D_Hat','Ph.D Hat',4,20,NULL,200,NULL,5,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',1,98,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5013,'Horn_Of_Lord_Kaho','Lord Kaho\'s Horn',4,20,NULL,100,NULL,30,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,99,'bonus bMdef,10; bonus bStr,5; bonus bAgi,10; bonus bVit,10; bonus bInt,5; bonus bLuk,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5014,'Fin_Helm','Fin Helm',4,20,NULL,300,NULL,5,NULL,0,0x00004082,63,2,512,NULL,'65',0,100,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5015,'Egg_Shell','Egg Shell',4,20,NULL,200,NULL,6,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',0,101,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5016,'Boy\'s_Cap','Boy\'s Cap',4,20,NULL,100,NULL,3,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',1,102,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5017,'Bone_Helm','Bone Helm',4,20,NULL,800,NULL,15,NULL,0,0x000444A2,63,2,256,NULL,'70',1,103,'bonus2 bSubEle,Ele_Dark,-15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5018,'Feather_Bonnet','Feather Bonnet',4,20,NULL,300,NULL,8,NULL,0,0x00080808,63,2,256,NULL,'0',1,104,'bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5019,'Corsair','Corsair',4,20,NULL,500,NULL,11,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',1,105,'bonus bVit,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5020,'Kafra_Band','Kafra Band',4,20,NULL,500,NULL,5,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,106,'bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5021,'Bankruptcy_Of_Heart','Grief for Greed',4,20,NULL,1200,NULL,8,NULL,0,0x00040420,63,2,256,NULL,'38',1,107,'bonus bInt,1; bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5022,'Helm_Of_Sun','Hat of the Sun God',4,20,NULL,2400,NULL,4,NULL,0,0x00CFDF80,63,2,768,NULL,'0',1,138,'bonus bStr,3; bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5023,'Hat_Of_Bundle','Parcel Hat',4,20,NULL,1000,NULL,0,NULL,0,0x00040420,63,2,256,NULL,'0',1,108,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5024,'Hat_Of_Cake','Cake Hat',4,20,NULL,1000,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,109,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5025,'Helm_Of_Angel','Helm of Angel',4,20,NULL,1600,NULL,10,NULL,0,0x00CFDF80,63,2,256,NULL,'74',1,110,'bonus bAgi,1; bonus bLuk,1; bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5026,'Hat_Of_Cook','Chef Hat',4,20,NULL,300,NULL,3,NULL,0,0xFFFFFFFE,63,2,256,NULL,'50',1,111,'bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5027,'Wizardry_Hat','Mage Hat',4,20,NULL,300,NULL,2,NULL,0,0x00810204,63,2,256,NULL,'0',1,112,'bonus bInt,2; bonus bMaxSP,150;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5028,'Candle','Candle',4,20,NULL,150,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,113,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5029,'Spore_Hat','Spore Hat',4,20,NULL,900,NULL,6,NULL,0,0xFFFFFFFE,63,2,256,NULL,'20',1,114,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5030,'Panda_Cap','Panda Hat',4,20,NULL,800,NULL,6,NULL,0,0xFFFFFFFE,63,2,256,NULL,'40',1,115,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5031,'Mine_Helm','Mine Hat',4,20,NULL,1500,NULL,9,NULL,0,0x0006D5F2,63,2,256,NULL,'55',1,116,'bonus bDex,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5032,'Picnic_Hat','Sunday Hat',4,20,NULL,800,NULL,1,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',1,117,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5033,'Smokie_Hat','Raccoon Hat',4,20,NULL,900,NULL,6,NULL,0,0xFFFFFFFE,63,2,256,NULL,'50',1,118,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5034,'Light_Bulb_Band','Bulb Band',4,20,NULL,500,NULL,0,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',1,119,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5035,'Poring_Hat','Poring Hat',4,20,NULL,700,NULL,3,NULL,0,0xFFFFFFFE,63,2,256,NULL,'38',1,120,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5036,'Cross_Band','Cross Hat',4,20,NULL,250,NULL,2,NULL,0,0xFFFFFFFE,63,2,256,NULL,'10',1,121,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5037,'Fruit_Shell','Nut Shell',4,20,NULL,150,NULL,8,NULL,0,0xFFFFFFFF,63,2,256,NULL,'5',0,122,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5038,'Deviruchi_Cap','Deviruchi Hat',4,20,NULL,800,NULL,4,NULL,0,0xFFFFFFFE,63,2,256,NULL,'64',1,123,'bonus bStr,1; bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5039,'Mottled_Egg_Shell','Rainbow Eggshell',4,20,NULL,400,NULL,8,NULL,0,0xFFFFFFFF,63,2,256,NULL,'19',0,124,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5040,'Blush','Blush',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,512,NULL,'0',0,125,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5041,'Heart_Hair_Pin','Heart Hairpin',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,126,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5042,'Hair_Protector','Bao Bao',4,20,NULL,150,NULL,0,NULL,0,0xFFFFFFFE,63,2,256,NULL,'14',1,127,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5043,'Opera_Ghost_Mask','Opera Phantom Mask',4,20,NULL,200,NULL,2,NULL,0,0xFFFFFFFE,63,2,512,NULL,'20',0,128,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5044,'Devil\'s_Wing','Evil Wing Ears',4,20,NULL,350,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'45',1,129,'bonus bVit,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5045,'Magician_Hat','Magician Hat',4,20,NULL,500,NULL,6,NULL,0,0x00818314,63,2,256,NULL,'50',1,130,'bonus bDex,1; bonus bAgi,1; bonus bMaxSP,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5046,'Bongun_Hat','Bongun Hat',4,20,NULL,300,NULL,5,NULL,0,0xFFFFFFFF,63,2,769,NULL,'0',0,139,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5047,'Fashion_Sunglass','Fashionable Glasses',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',1,131,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5048,'First_Moon_Hair_Pin','Cresent Hairpin',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,132,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5049,'Stripe_Band','Striped Hairband',4,20,NULL,150,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',0,133,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5050,'Mystery_Fruit_Shell','Wonder Nutshell',4,20,NULL,300,NULL,10,NULL,0,0xFFFFFFFF,63,2,256,NULL,'30',0,134,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5051,'Kitty_Bell','Pussy Cat Bell',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'0',0,135,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5052,'Blue_Hair_Band','Blue Hairband',4,20,NULL,150,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,136,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5053,'Spinx_Helm','Sphinx Hat',4,20,NULL,3000,NULL,5,NULL,0,0x00004082,63,2,257,NULL,'65',0,137,'bonus bStr,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5054,'Assassin_Mask','Assassin Mask',4,20,NULL,100,NULL,0,NULL,0,0x00001100,63,2,1,NULL,'70',0,180,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5055,'Novice_Egg_Cap','Novice False Eggshell',4,1,NULL,1,NULL,6,NULL,0,0x00000001,63,2,256,NULL,'0',0,101,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5056,'Love_Berry','Fruit of Love',4,1,NULL,200,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',0,140,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5057,'Ear_Of_Black_Cat','Black Cat Ears',4,16000,NULL,200,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'45',1,141,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5058,'Drooping_Kitty','Drooping Cat',4,250000,NULL,500,NULL,3,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',1,142,'bonus bMdef,15; bonus2 bResEff,Eff_Curse,3000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5059,'Brown_Bear_Cap','Teddybear Hat',4,20,NULL,800,NULL,6,NULL,0,0xFFFFFFFF,63,2,256,NULL,'50',1,143,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5060,'Party_Hat','Party Hat',4,20,NULL,300,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,144,'bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5061,'Flower_Hairpin','Flower Hairpin',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,145,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5062,'Straw_Hat','Straw Hat',4,20,NULL,200,NULL,6,NULL,0,0xFFFFFFFF,63,2,256,NULL,'50',1,146,'bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5063,'Plaster','Giant Band Aid',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',1,147,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5064,'Leaf_Headgear','Smokie Leaf',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,148,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5065,'Fish_On_Head','Blue Fish',4,20,NULL,500,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'50',1,149,'bonus2 bAddRace,RC_Fish,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5066,'Horn_Of_Succubus','Succubus Horn',4,20,NULL,800,NULL,7,NULL,0,0xFFFFFFFE,63,2,256,NULL,'70',1,150,'bonus bInt,1; bonus bMdef,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5067,'Sombrero','Sombrero',4,20,NULL,350,NULL,8,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',1,151,'bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5068,'Ear_Of_Devil\'s_Wing','Evil Wing Ears',4,20,NULL,100,NULL,3,NULL,0,0xFFFFFFFF,63,2,512,NULL,'70',0,152,'bonus bStr,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5069,'Mask_Of_Fox','Kitsune Mask',4,20,NULL,300,NULL,2,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',1,153,'bonus bAgi,1; bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5070,'Headband_Of_Power','Hot-blooded Headband',4,20,NULL,100,NULL,3,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',1,154,'bonus bStr,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5071,'Indian_Headband','Indian Headband',4,20,NULL,200,NULL,2,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',1,155,'bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5072,'Inccubus_Horn','Incubus Horn',4,20,NULL,800,NULL,7,NULL,0,0xFFFFFFFE,63,2,256,NULL,'70',1,156,'bonus bAgi,1; bonus bMdef,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5073,'Cap_Of_Concentration','Model Training Hat',4,20,NULL,700,NULL,5,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',1,157,'bonus bDex,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5074,'Ear_Of_Angel\'s_Wing','Angel Wing Ears',4,20,NULL,100,NULL,3,NULL,0,0xFFFFFFFF,63,2,512,NULL,'70',0,158,'bonus bStr,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5075,'Cowboy_Hat','Cowboy Hat',4,20,NULL,500,NULL,8,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,159,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5076,'Fur_Hat','Beanie',4,20,NULL,350,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,160,'bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5077,'Tulip_Hairpin','Tulip Hairpin',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,161,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5078,'Sea_Otter_Cap','Sea-Otter Hat',4,20,NULL,800,NULL,6,NULL,0,0xFFFFFFFF,63,2,256,NULL,'50',1,162,'bonus bVit,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5079,'Crossed_Hair_Band','X Hairpin',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,163,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5080,'Headgear_Of_Queen','Crown of Ancient Queen',4,20,NULL,400,NULL,8,NULL,0,0xFFFFFFFF,63,2,256,NULL,'45',1,164,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5081,'Mistress_Crown','Crown of Mistress',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFE,63,2,256,NULL,'75',1,165,'bonus bMaxSP,100; bonus bInt,2; bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5082,'Mushroom_Band','Decorative Mushroom',4,20,NULL,100,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,166,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5083,'Red_Tailed_Ribbon','Red Ribbon',4,20,NULL,200,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'45',1,167,'bonus bMdef,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5084,'Lazy_Raccoon','Lazy Smokie',4,20,NULL,500,NULL,2,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',1,168,'bonus2 bResEff,Eff_Sleep,2000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5085,'Pair_Of_Red_Ribbon','Small Ribbons',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,63,2,512,NULL,'45',0,169,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5086,'Alarm_Mask','Alarm Mask',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFE,63,2,513,NULL,'0',0,170,'bonus2 bResEff,Eff_Blind,5000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5087,'Goblin_Mask_01','Poker Face',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,513,NULL,'0',0,171,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5088,'Goblin_Mask_02','Surprised Mask',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,513,NULL,'0',0,172,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5089,'Goblin_Mask_03','Annoyed Mask',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,513,NULL,'0',0,173,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5090,'Goblin_Mask_04','Goblin Leader Mask',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,63,2,513,NULL,'0',0,174,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5091,'Big_Golden_Bell','Decorative Golden Bell',4,20,NULL,200,NULL,2,NULL,0,0xFFFFFFFE,63,2,768,NULL,'35',1,175,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5092,'Blue_Coif','Coif',4,150000,NULL,300,NULL,5,NULL,0,0x00001100,63,2,768,NULL,'65',1,176,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5093,'Blue_Coif_','Coif',4,150000,NULL,300,NULL,5,NULL,1,0x00001100,63,2,768,NULL,'65',1,177,'bonus bMaxSP,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5094,'Orc_Hero_Helm','Helmet of Orc Hero',4,500000,NULL,900,NULL,5,NULL,0,0xFFFFFFFE,63,2,768,NULL,'55',1,178,'bonus bStr,2; bonus bVit,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5095,'Orc_Hero_Helm_','Helmet of Orc Hero',4,800000,NULL,1000,NULL,5,NULL,1,0xFFFFFFFE,63,2,768,NULL,'55',1,179,'bonus bStr,2; bonus bVit,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5096,'Assassin_Mask_','Assassin Mask',4,20,NULL,100,NULL,1,NULL,0,0x00001100,63,2,1,NULL,'70',0,180,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5097,'Cone_Hat_','Holiday Hat',4,0,NULL,400,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,144,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5098,'Tiger_Mask','Tiger Mask',4,20,NULL,400,NULL,2,NULL,0,0xFFFFFFFF,63,2,768,NULL,'50',0,181,'bonus bStr,3; bonus bMaxHP,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5099,'Cat_Hat','Neko Mimi',4,20,NULL,300,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,182,'bonus bLuk,2; bonus bMdef,10; bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5100,'Sales_Signboard','Sales Banner',4,20,NULL,800,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'75',1,183,'bonus bStr,1; bonus bAgi,1; bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5101,'Takius_Blindfold','Takius\'s Blindfold',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,512,NULL,'0',0,184,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5102,'Round_Eyes','Blank Eyes',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,512,NULL,'0',0,185,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5103,'Sunflower_Hairpin','Sunflower Hairpin',4,20,NULL,600,NULL,2,NULL,0,0xFFFFFFFE,63,2,256,NULL,'30',0,186,'bonus bAgi,2; bonus bCritical,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5104,'Dark_Blindfold','Dark Blinder',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,63,2,512,NULL,'0',0,187,'bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Stun,200;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5105,'Hat_Of_Cake_','2nd Anniversary Hat',4,20,NULL,1000,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'24',1,109,'bonus bDex,1; bonus bMaxSP,80; bonus3 bAddMonsterDropItem,7864,7,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5106,'Cone_Hat_INA','2nd Anniversary Hat',4,20,NULL,300,NULL,10,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',0,144,'bonus bLuk,1; bonus bMatkRate,3; bonus bFlee,3; bonus bHit,3; bonus bFlee2,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5107,'Well_Baked_Toast','Crunch Toast',4,20,NULL,50,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'0',0,188,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5108,'Detective_Hat','Renown Detective\'s Cap',4,20,NULL,350,NULL,6,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,189,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5109,'Red_Bonnet','Red Bonnet',4,20,NULL,400,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,190,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5110,'Baby_Pacifier','Baby Pacifier',4,20,NULL,50,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'0',0,191,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5111,'Galapago_Cap','Galapago Cap',4,20,NULL,500,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'55',1,192,'bonus2 bAddMonsterDropItem,605,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5112,'Super_Novice_Hat','Super Novice Hat',4,8500,NULL,400,NULL,8,NULL,0,0x00000001,63,2,256,NULL,'40',1,193,'bonus bAllStats,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5113,'Angry_Mouth','Angry Snarl',4,20,NULL,50,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'0',0,194,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5114,'Fedora','Bucket Hat',4,6000,NULL,300,NULL,6,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,195,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5115,'Winter_Hat','Winter Hat',4,20,NULL,500,NULL,5,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,196,'bonus2 bResEff,Eff_Freeze,1000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5116,'Banana_Hat','Banana Hat',4,20,NULL,200,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,197,'bonus3 bAutoSpell,"SM_PROVOKE",3,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5117,'Mistic_Rose','Mystic Rose',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,198,'bonus2 bSubRace,RC_Plant,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5118,'Ear_Of_Puppy','Puppy Headband',4,20,NULL,100,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,199,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5119,'Super_Novice_Hat_','Super Novice Hat',4,8500,NULL,400,NULL,8,NULL,1,0x00000001,63,2,256,NULL,'40',1,193,'bonus bAllStats,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5120,'Fedora_','Bucket Hat',4,6000,NULL,300,NULL,6,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,195,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5121,'Zherlthsh_Mask','Zealotus Mask',4,20,NULL,400,NULL,3,NULL,0,0xFFFFFFFE,63,2,768,NULL,'70',1,200,'bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5122,'Magni_Cap','Magni\'s Cap',4,30000,NULL,1000,NULL,9,NULL,0,0xFFFFFFFE,63,2,256,NULL,'65',1,250,'bonus bStr,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5123,'Ulle_Cap','Ulle\'s Cap',4,30000,NULL,500,NULL,6,NULL,1,0xFFFFFFFE,63,2,256,NULL,'65',1,254,'bonus bDex,2; bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5124,'Fricca_Circlet','Fricca\'s Circlet',4,30000,NULL,300,NULL,6,NULL,0,0xFFFFFFFE,63,2,256,NULL,'65',1,251,'bonus bMdef,10; bonus bInt,2; bonus bMaxSP,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5125,'Kiss_Of_Angel','Angel\'s Kiss',4,10000,NULL,300,NULL,6,NULL,1,0x00000001,63,2,256,NULL,'50',1,255,'bonus bSPrecovRate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5126,'Morpheus\'s_Hood','Morpheus\'s Hood',4,30000,NULL,200,NULL,3,NULL,0,0xFFFFFFFE,63,2,256,NULL,'33',1,256,'bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5127,'Morrigane\'s_Helm','Morrigane\'s Helm',4,30000,NULL,500,NULL,8,NULL,0,0xFFFFFFFE,63,2,256,NULL,'61',1,257,'bonus bLuk,2; bonus bBaseAtk,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5128,'Goibne\'s_Helmet','Goibne\'s Helm',4,30000,NULL,500,NULL,10,NULL,0,0xFFFFFFFE,63,2,256,NULL,'54',1,258,'bonus bVit,3; bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5129,'Bird_Nest','Bird Nest',4,20,NULL,400,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'55',0,201,'bonus bAgi,2; bonus2 bSubRace,RC_Brute,10; bonus2 bSubRace,RC_Player_Doram,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5130,'Lion_Mask','Lion Mask',4,20,NULL,700,NULL,0,NULL,0,0x00CFDF80,63,2,768,NULL,'75',1,202,'bonus2 bAddEffWhenHit,Eff_Silence,500; bonus bMdef,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5131,'Close_Helmet','Close Helmet',4,20,NULL,1200,NULL,8,NULL,0,0x00004082,63,2,769,NULL,'75',1,203,'bonus bVit,3; bonus bMaxHPrate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5132,'Angeling_Hat','Angeling Hat',4,20,NULL,700,NULL,5,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',0,204,'bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5133,'Sheep_Hat','Sheep Hat',4,20,NULL,150,NULL,3,NULL,0,0x00008110,63,2,256,NULL,'0',0,205,'bonus bShortWeaponDamageReturn,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5134,'Pumpkin_Hat','Pumpkin-Head',4,20,NULL,200,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,206,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5135,'Cyclops_Visor','Cyclop\'s Eye',4,0,NULL,200,NULL,0,NULL,0,0xFFFFFFFE,63,2,512,NULL,'75',0,207,'bonus bMaxSP,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5136,'Santa\'s_Hat_','Antonio\'s Santa Hat',4,20,NULL,100,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,20,'bonus3 bAutoSpellWhenHit,"PR_GLORIA",5,50; bonus3 bAutoSpellWhenHit,"AL_BLESSING",10,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5137,'Alice_Doll','Alice Doll',4,20,NULL,500,NULL,1,NULL,1,0xFFFFFFFE,63,2,256,NULL,'30',0,208,'bonus bStr,1; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus2 bAddEff2,Eff_Sleep,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5138,'Magic_Eyes','Magic Eyes',4,20,NULL,300,NULL,3,NULL,0,0x00810204,63,2,256,NULL,'30',1,209,'bonus bMdef,5; bonus bVariableCastrate,-10; bonus bUseSPrate,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5139,'Hibiscus','Hibiscus',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'10',0,210,'bonus bDex,1; bonus bInt,1; bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5140,'Charming_Ribbon','Charming Ribbon',4,20,NULL,400,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'10',1,211,'bonus2 bSubRace,RC_Undead,5; bonus2 bSubRace,RC_Demon,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5141,'Marionette_Doll','Marionette Doll',4,20,NULL,400,NULL,1,NULL,1,0xFFFFFFFE,63,2,256,NULL,'30',1,212,'bonus bStr,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5142,'Crescent_Helm','Crescent Helm',4,20,NULL,3000,NULL,20,NULL,1,0x000444A2,63,2,768,NULL,'50',1,213,'bonus bVit,1; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5143,'Kabuki_Mask','Kabuki Mask',4,20,NULL,1000,NULL,5,NULL,1,0xFFFFFFFE,63,1,769,NULL,'30',1,214,'bonus2 bResEff,Eff_Silence,3000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5144,'Gambler_Hat','Gambler Hat',4,20,NULL,200,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,16,'bonus bLuk,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5145,'Carnival_Joker_Jester','Carnival Joker Jester',4,10,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,89,'bonus bAllStats,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5146,'Elephant_Hat','Elephant Hat',4,0,NULL,500,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,215,'bonus bVit,1; bonus2 bSubRace,RC_Brute,7; bonus2 bSubRace,RC_Player_Doram,7; skill "WZ_WATERBALL",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5147,'Baseball_Cap','Baseball Cap',4,0,NULL,200,NULL,5,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,216,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5148,'Phrygian_Cap','Phrygian Cap',4,0,NULL,500,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,217,'bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5149,'Silver_Tiara','Silver Tiara',4,0,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,218,'bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5150,'Joker_Jester_','Joker Jester',4,20,NULL,100,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',0,219,'bonus bSpeedRate,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5151,'Headset_OST','Note Headphones',4,20,NULL,200,NULL,4,NULL,1,0xFFFFFFFF,63,2,768,NULL,'0',1,220,'bonus bMdef,3; bonus2 bResEff,Eff_Stun,1000; bonus2 bResEff,Eff_Freeze,1000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5152,'Chinese_Crown','Chinese Crown',4,20,NULL,2000,NULL,2,NULL,0,0xFFFFFFFF,63,2,768,NULL,'1',1,221,'bonus2 bResEff,Eff_Stun,1000; bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5153,'Angeling_Hairpin','Angeling Hairpin',4,20,NULL,700,NULL,5,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,222,'bonus bFlee,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5154,'Sunglasses_F','Father\'s Sunglasses',4,20,NULL,100,NULL,4,NULL,0,0xFFFFFFFF,63,2,512,NULL,'0',0,12,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5155,'Granpa_Beard_F','Father\'s White Moustache',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'0',0,25,'bonus bBaseAtk,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5156,'Flu_Mask_F','Father\'s Mask',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'0',0,8,'bonus bMatkRate,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5157,'Viking_Helm_','Orc Helm',4,20,NULL,500,NULL,9,NULL,1,0x000654E2,63,2,256,NULL,'0',1,86,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5158,'Holy_Bonnet_','Monk Hat',4,30000,NULL,100,NULL,10,NULL,1,0x00008110,63,2,256,NULL,'0',1,35,'bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5159,'Golden_Gear_','Golden Gear',4,20,NULL,900,NULL,9,NULL,1,0xFFFFFFFE,63,2,256,NULL,'40',1,30,'bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5160,'Magestic_Goat_','Majestic Goat',4,20,NULL,800,NULL,9,NULL,1,0x006444A2,63,2,256,NULL,'0',1,41,'bonus bStr,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5161,'Sharp_Gear_','Spiky Band',4,20,NULL,1000,NULL,12,NULL,1,0x0066D5F2,63,2,256,NULL,'50',1,43,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5162,'Bone_Helm_','Bone Helm',4,20,NULL,800,NULL,15,NULL,1,0x000444A2,63,2,256,NULL,'70',1,103,'bonus2 bSubEle,Ele_Dark,-15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5163,'Corsair_','Corsair',4,20,NULL,500,NULL,10,NULL,1,0xFFFFFFFE,63,2,256,NULL,'0',1,105,'bonus bVit,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5164,'Tiara_','Tiara',4,20,NULL,400,NULL,7,NULL,1,0xFFFFFFFE,63,0,256,NULL,'45',1,19,'bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5165,'Crown_','Crown',4,20,NULL,400,NULL,7,NULL,1,0xFFFFFFFE,63,1,256,NULL,'45',1,45,'bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5166,'Spinx_Helm_','Sphinx Hat',4,20,NULL,3000,NULL,5,NULL,1,0x00004082,63,2,257,NULL,'65',0,137,'bonus bStr,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5167,'Munak_Turban_','Munak Hat',4,20,NULL,300,NULL,5,NULL,1,0xFFFFFFFF,63,2,769,NULL,'0',0,51,'bonus2 bSubRace,RC_Undead,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5168,'Bongun_Hat_','Bongun Hat',4,20,NULL,300,NULL,5,NULL,1,0xFFFFFFFF,63,2,769,NULL,'0',0,139,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5169,'Bride_Mask','Bride Mask',4,30000,NULL,500,NULL,4,NULL,1,0xFFFFFFFF,63,2,768,NULL,'40',1,223,'if(BaseClass==Job_Taekwon){ bonus bLuk,2; bonus bCritical,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5170,'Feather_Beret','Feather Beret',4,30000,NULL,600,NULL,1,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',1,224,'bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5171,'Valkyrie_Helm','Valkyrie Helm',4,100000,NULL,1000,NULL,10,NULL,1,0xFFFFFFFE,18,2,256,NULL,'0',1,225,'bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5172,'Beret','Beret',4,30000,NULL,700,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',0,226,'bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5173,'Satto_Hat','Magistrate Hat',4,30000,NULL,400,NULL,6,NULL,1,0xFFFFFFFF,63,2,256,NULL,'60',1,227,'if(BaseClass==Job_Taekwon){ bonus bAgi,1; bonus bHPrecovRate,3; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5174,'Ayam','Ayam',4,30000,NULL,400,NULL,6,NULL,1,0xFFFFFFFF,63,2,256,NULL,'60',1,228,'if(BaseClass==Job_Taekwon){ bonus bInt,1; bonus bSPrecovRate,3; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5175,'Censor_Bar','Censor Bar',4,30000,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,512,NULL,'0',0,229,'bonus2 bResEff,Eff_Curse,500; bonus bMdef,1; bonus bHit,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5176,'Hahoe_Mask','Hahoe Mask',4,30000,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,63,2,513,NULL,'30',0,230,'if(BaseClass==Job_Taekwon){ bonus bLuk,1; bonus bFlee2,2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5177,'Guardian_Lion_Mask','Mythical Lion Mask',4,30000,NULL,500,NULL,5,NULL,1,0xFFFFFFFF,63,2,768,NULL,'40',1,231,'if(BaseClass==Job_Taekwon){ bonus bDex,2; bonus bBaseAtk,2*getrefine(); bonus3 bAddEff,Eff_Stun,1000,ATF_SHORT; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5178,'Candle_','Candle',4,20,NULL,150,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,113,'bonus bAllStats,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5179,'Gold_Tiara','Golden Tiara',4,0,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,232,'bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5180,'Phrygian_Cap_','France Holiday Hat',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,217,'bonus bVit,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5181,'Helm_Of_Darkness','Helm of Darkness',4,20,NULL,500,NULL,3,NULL,1,0x000654E2,63,2,768,NULL,'50',1,233,'bonus bStr,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5182,'Puppy_Hat','Puppy Hat',4,20,NULL,500,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'30',0,234,'bonus bAgi,1; bonus3 bAutoSpell,"PR_GLORIA",1,10+20*(readparam(bAgi)>=77);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5183,'Bird_Nest_Hat','Bird Nest Hat',4,20,NULL,500,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'10',1,235,'bonus bDex,1; bonus bAgi,1; bonus2 bResEff,Eff_Stun,1000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5184,'Captain_Hat','Captain\'s Hat',4,20,NULL,500,NULL,8,NULL,0,0xFFFFFFFE,63,2,256,NULL,'30',1,236,'bonus2 bSubEle,Ele_Water,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5185,'Laurel_Wreath','Laurel Wreath',4,20,NULL,100,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'10',1,237,'bonus bLuk,3; bonus2 bResEff,Eff_Blind,500; bonus2 bResEff,Eff_Curse,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5186,'Geographer_Band','Geographer Band',4,20,NULL,500,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'30',0,238,'bonus bInt,1; bonus3 bAutoSpellWhenHit,"AL_HEAL",1,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5187,'Twin_Ribbon','Twin Ribbon',4,20,NULL,200,NULL,6,NULL,1,0xFFFFFFFF,63,2,256,NULL,'30',1,239,'bonus bMaxSP,30; bonus bMdef,3; bonus3 bAutoSpellWhenHit,"NPC_STONESKIN",6,10; bonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,120,BF_MAGIC,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5188,'Minstrel_Hat','Wandering Minstrel Hat',4,20,NULL,500,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'50',1,240,'bonus bInt,1; bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5189,'Fallen_Leaves','Autumn Leaves',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,241,'bonus bMaxHP,40; bonus bMaxSP,40;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5190,'Baseball_Cap_','Independence Memorial Hat',4,20,NULL,20,NULL,3,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,216,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5191,'Ribbon_Black','Black Ribbon',4,800,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,63,0,256,NULL,'0',1,242,'bonus bInt,1; bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5192,'Ribbon_Yellow','Yellow Ribbon',4,800,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,63,0,256,NULL,'0',1,243,'bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5193,'Ribbon_Green','Green Ribbon',4,800,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,63,0,256,NULL,'0',1,244,'bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5194,'Ribbon_Pink','Pink Ribbon',4,800,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,63,0,256,NULL,'0',1,245,'bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5195,'Ribbon_Red','Red Ribbon',4,800,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,63,0,256,NULL,'0',1,246,'bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5196,'Ribbon_Orange','Orange Ribbon',4,800,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,63,0,256,NULL,'0',1,247,'bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5197,'Ribbon_White','White Ribbon',4,800,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,63,0,256,NULL,'0',1,248,'bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5198,'Drooping_Bunny','Drooping Bunny',4,10,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,249,'bonus bDex,1; bonus bFlee,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5199,'Baseball_Cap_I','Baseball Cap',4,0,NULL,200,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,216,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5200,'Coppola','Coppola',4,10,NULL,300,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,252,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5201,'Party_Hat_B','Party Hat',4,20,NULL,300,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,144,'bonus bAllStats,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5202,'Pumpkin_Hat_','Fantastic Pumpkin-Head',4,20,NULL,200,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,206,'bonus2 bSubRace,RC_Demon,5; bonus3 bAddMonsterDropItem,529,RC_DemiHuman,1500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5203,'Tongue_Mask','Smiling Mask',4,20,NULL,200,NULL,2,NULL,0,0xFFFFFFFF,63,2,513,NULL,'0',0,253,'bonus bSpeedRate,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5204,'Event_Pierrot_Nose','Rudolph\'s Nose',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'0',0,49,'bonus2 bResEff,Eff_Blind,3000; bonus2 bAddMonsterDropItem,12130,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5205,'Wreath','Emperor\'s Laurel Crown',4,20,NULL,1000,NULL,3,NULL,0,0xFFFFFFFF,63,2,768,NULL,'0',1,261,'bonus bAllStats,1; bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5206,'Romantic_White_Flower','Romantic White Flower',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,63,2,1,NULL,'0',0,259,'bonus2 bSubRace,RC_Plant,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5207,'Gold_Spirit_Chain','Angel Blessing',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',0,260,'bonus bLuk,1; bonus2 bSubEle,Ele_Holy,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5208,'Rideword_Hat','Rideword Hat',4,20,NULL,300,NULL,3,NULL,1,0xFFFFFFFE,63,2,256,NULL,'40',1,262,'bonus2 bHPDrainRate,50,8; bonus2 bSPDrainRate,10,4; bonus2 bHPLossRate,10,5000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5209,'Yellow_Baseball_Cap','Love Dad Cap',4,20,NULL,300,NULL,2,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',1,263,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5210,'Flying_Angel','Flapping Angel Wing',4,20,NULL,300,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'10',1,264,'bonus bVariableCastrate,-3; bonus bAspdRate,3; bonus bInt,1; bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5211,'Dress_Hat','Dress Hat',4,0,NULL,200,NULL,3,NULL,1,0xFFFFFFFF,63,2,256,NULL,'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; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5212,'Satellite_Hairband','Satellite Hairband',4,0,NULL,1000,NULL,6,NULL,1,0xFFFFFFFF,63,2,256,NULL,'30',1,266,'bonus bMaxHP,50; bonus bMaxSP,10; skill "AL_RUWACH",1;',NULL,'sc_end SC_RUWACH;'); -REPLACE INTO `item_db_re` VALUES (5213,'Black_Bunny_Band','Sheila Hairnet',4,0,NULL,200,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,267,'bonus bAgi,2; bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5214,'Moonlight_Flower_Hat','Moonlight Flower Hat',4,0,NULL,200,NULL,3,NULL,0,0xFFFFFFFF,63,2,768,NULL,'1',1,268,'bonus bDex,2; bonus3 bAutoSpell,"AL_INCAGI",1,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5215,'Angelic_Chain_','Evolved Angel Wing',4,20,NULL,100,NULL,4,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',1,38,'bonus bMdef,3; bonus bDex,1; bonus bInt,1; bonus2 bSubRace,RC_Demon,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5216,'Satanic_Chain_','Evolved Evil Wing',4,20,NULL,100,NULL,6,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',1,39,'bonus bStr,1; bonus bAgi,1; bonus bFlee,3; bonus2 bSubRace,RC_Angel,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5217,'Magestic_Goat_TW','Evolved Majestic Goat',4,20,NULL,800,NULL,10,NULL,0,0x006444A2,63,2,256,NULL,'0',1,41,'bonus bStr,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5218,'Bunny_Band_','Evolved Bunny Band',4,20,NULL,100,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,15,'bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5219,'Drooping_Kitty_','Evolved Drooping Cat',4,250000,NULL,500,NULL,3,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',1,142,'bonus bMdef,18; bonus bFlee,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5220,'Smoking_Pipe_','Evolved Pipe',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,63,2,1,NULL,'0',0,55,'bonus bVit,1; bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5221,'Pair_Of_Red_Ribbon_','Evolved Pair of Red Ribbon',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,63,0,512,NULL,'45',0,169,'bonus bFlee,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5222,'Fish_On_Head_','Evolved Blue Fish',4,20,NULL,500,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'50',1,149,'bonus bAgi,1; bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5223,'Big_Golden_Bell_','Evolved Big Golden Bell',4,20,NULL,200,NULL,2,NULL,0,0xFFFFFFFE,63,2,768,NULL,'35',1,175,'bonus bAgi,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5224,'Orc_Hero_Helm_TW','Evolved Orc Hero Helm',4,500000,NULL,900,NULL,5,NULL,0,0xFFFFFFFE,63,2,768,NULL,'55',1,178,'bonus bStr,2; bonus bVit,1; bonus bMaxHPrate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5225,'Marcher_Hat','Parade Hat',4,20,NULL,200,NULL,4,NULL,1,0xFFFFFFFF,63,2,256,NULL,'10',1,269,'bonus bMdef,2; bonus4 bAutoSpellWhenHit,"AL_ANGELUS",5,30,0; bonus4 bAutoSpellWhenHit,"HP_ASSUMPTIO",1,1,0; bonus2 bResEff,Eff_Stun,1000; if(BaseClass==Job_Acolyte) bonus4 bAutoSpellOnSkill,"AL_HEAL","PR_LEXAETERNA",1,1000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5226,'Mini_Propeller_','Mini Propeller',4,20,NULL,200,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,270,'bonus bAgi,2; bonus bDex,1; bonus bFlee,10; bonus bVariableCastrate,-getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5227,'Red_Deviruchi_Cap','Red Deviruchi Hat',4,20,NULL,800,NULL,4,NULL,0,0xFFFFFFFE,63,2,256,NULL,'64',1,271,'bonus bStr,1; bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5228,'White_Deviruchi_Cap','Gray Deviruchi Hat',4,20,NULL,800,NULL,4,NULL,0,0xFFFFFFFE,63,2,256,NULL,'64',1,272,'bonus bStr,1; bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5229,'Gray_Deviruchi_Cap','Brown Deviruchi Hat',4,20,NULL,800,NULL,4,NULL,0,0xFFFFFFFE,63,2,256,NULL,'64',1,273,'bonus bStr,1; bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5230,'White_Drooping_Kitty','Gray Drooping Cat',4,250000,NULL,500,NULL,3,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',1,274,'bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5231,'Gray_Drooping_Kitty','Brown Drooping Cat',4,250000,NULL,500,NULL,3,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',1,275,'bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5232,'Pink_Drooping_Kitty','Pink Drooping Cat',4,250000,NULL,500,NULL,3,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',1,276,'bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5233,'Blue_Drooping_Kitty','Blue Drooping Cat',4,250000,NULL,500,NULL,3,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',1,277,'bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5234,'Yellow_Drooping_Kitty','Yellow Drooping Cat',4,250000,NULL,500,NULL,3,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',1,278,'bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5235,'Gray_Fur_Hat','Brown Beanie',4,20,NULL,350,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,279,'bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5236,'Blue_Fur_Hat','Blue Beanie',4,20,NULL,350,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,280,'bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5237,'Pink_Fur_Hat','Pink Beanie',4,20,NULL,350,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,281,'bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5238,'Red_Wizardry_Hat','Red Mage Hat',4,20,NULL,300,NULL,2,NULL,0,0x00810204,63,2,256,NULL,'0',1,282,'bonus bInt,2; bonus bMaxSP,150;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5239,'White_Wizardry_Hat','Gray Mage Hat',4,20,NULL,300,NULL,2,NULL,0,0x00810204,63,2,256,NULL,'0',1,283,'bonus bInt,2; bonus bMaxSP,150;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5240,'Gray_Wizardry_Hat','Brown Mage Hat',4,20,NULL,300,NULL,2,NULL,0,0x00810204,63,2,256,NULL,'0',1,284,'bonus bInt,2; bonus bMaxSP,150;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5241,'Blue_Wizardry_Hat','Blue Mage Hat',4,20,NULL,300,NULL,2,NULL,0,0x00810204,63,2,256,NULL,'0',1,285,'bonus bInt,2; bonus bMaxSP,150;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5242,'Yellow_Wizardry_Hat','Yellow Mage Hat',4,20,NULL,300,NULL,2,NULL,0,0x00810204,63,2,256,NULL,'0',1,286,'bonus bInt,2; bonus bMaxSP,150;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5243,'Chullos','Shafka',4,20,NULL,800,NULL,2,NULL,1,0xFFFFFFFF,63,2,768,NULL,'0',1,287,'bonus2 bResEff,Eff_Freeze,1000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5244,'Elven_Blindfold','Elven Blindfold',4,20,NULL,200,NULL,1,NULL,0,0xFFFFFFFF,63,2,512,NULL,'0',0,288,'bonus2 bResEff,Eff_Blind,10000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5245,'Elven_Sunglasses','Elven Sunglasses',4,20,NULL,200,NULL,1,NULL,0,0xFFFFFFFF,63,2,512,NULL,'0',0,289,'bonus2 bResEff,Eff_Blind,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5246,'Angelic_Helm','Angelic Helm',4,20,NULL,700,NULL,7,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,290,'bonus bAgi,1; bonus bLuk,1; bonus bMdef,3; bonus2 bSubRace,RC_Demon,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5247,'Satanic_Helm','Satanic Helm',4,20,NULL,700,NULL,8,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,291,'bonus bAgi,1; bonus bLuk,1; bonus bMdef,3; bonus2 bSubRace,RC_Demon,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5248,'Robotic_Blindfold','Robotic Blindfold',4,20,NULL,200,NULL,1,NULL,0,0xFFFFFFFF,63,2,512,NULL,'0',0,292,'bonus2 bResEff,Eff_Blind,10000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5249,'Human_Blindfold','Human Blindfold',4,20,NULL,200,NULL,1,NULL,0,0xFFFFFFFF,63,2,512,NULL,'0',0,293,'bonus2 bResEff,Eff_Blind,10000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5250,'Robotic_Ears','Robotic Ears',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,63,2,512,NULL,'0',0,294,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5251,'Round_Ears','Round Ears',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,63,2,512,NULL,'0',0,295,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5252,'Drooping_Nine_Tail','Drooping Ninetail',4,20,NULL,300,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'20',1,296,'bonus bAgi,1; bonus bDex,1; bonus3 bAutoSpellWhenHit,"PR_GLORIA",1,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5253,'Lif_Doll_Hat','Lif Doll Hat',4,20,NULL,200,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'20',1,297,'bonus bInt,1; .@r = getrefine(); bonus bMdef,.@r; bonus bDef,.@r*-1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5254,'Deviling_Hat','Deviling Hat',4,20,NULL,500,NULL,6,NULL,1,0xFFFFFFFF,63,2,256,NULL,'20',1,298,'bonus bBaseAtk,2; bonus bMatk,2; if(getrefine()>=7) bonus2 bExpAddRace,RC_All,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5255,'Triple_Poring_Hat','Triple Poring Hat',4,20,NULL,600,NULL,6,NULL,0,0xFFFFFFFF,63,2,256,NULL,'20',0,299,'bonus bLuk,3; bonus3 bAutoSpell,"BS_GREED",1,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5256,'Valkyrie_Feather_Band','Valkyrie Feather Band',4,20,NULL,100,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'20',1,300,'bonus bInt,1; bonus3 bAutoSpellWhenHit,"AL_HEAL",1,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5257,'Soulless_Wing','Soul Ring',4,20,NULL,300,NULL,3,NULL,0,0xFFFFFFFE,63,2,256,NULL,'20',1,301,'bonus bMdef,2; bonus3 bAutoSpellWhenHit,"HP_ASSUMPTIO",1,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5258,'Afro_Wig','Afro Wig',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,768,NULL,'10',1,302,'bonus3 bAutoSpellWhenHit,"NV_FIRSTAID",1,300; bonus2 bSubEle,Ele_Neutral,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5259,'Elephant_Hat_','Elephant Hat',4,20,NULL,500,NULL,6,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,215,'bonus bVit,1; bonus3 bAutoSpell,"WZ_WATERBALL",3,10; skill "AL_HOLYWATER",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5260,'Cookie_Hat','Cookie Hat',4,20,NULL,500,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,217,'bonus bAgi,1; bonus bFlee2,5; bonus bCritAtkRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5261,'Silver_Tiara_','Silver Tiara',4,20,NULL,500,NULL,5,NULL,0,0xFFFFFFFF,63,2,256,NULL,'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);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5262,'Gold_Tiara_','Golden Tiara',4,20,NULL,500,NULL,5,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,232,'bonus bStr,2; bonus bUnbreakableHelm; if((readparam(bDex)<56)&&(BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Thief)) bonus bDex,JobLevel/7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5263,'Ati_Atihan_Hat','Pagdayaw',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFE,63,2,769,NULL,'20',1,303,'bonus2 bSubEle,Ele_Water,1; bonus2 bSubEle,Ele_Fire,1; bonus2 bSubEle,Ele_Wind,1; bonus2 bAddEff,Eff_Curse,300;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5264,'Aussie_Flag_Hat','Australian Flag Hat',4,20,NULL,500,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,304,'bonus bAllStats,2;','specialeffect2 EF_GHOST; specialeffect2 EF_BAT; specialeffect2 EF_BAT2;',NULL); -REPLACE INTO `item_db_re` VALUES (5265,'Apple_Of_Archer_C','Apple of Archer',4,1,NULL,0,NULL,12,NULL,0,0xFFFFFFFE,63,2,256,NULL,'1',0,72,'bonus bDex,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5266,'Bunny_Band_C','Bunny Band',4,1,NULL,0,NULL,13,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',0,15,'bonus bMdef,5; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5267,'Sahkkat_C','Sakkat',4,1,NULL,0,NULL,10,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',0,67,'bonus bAgi,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5268,'Lord_Circlet_C','Grand Circlet',4,1,NULL,0,NULL,14,NULL,0,0xFFFFFFFE,63,2,256,NULL,'1',0,93,'bonus bStr,3; bonus bInt,3; bonus bLuk,3; bonus bMdef,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5269,'Flying_Angel_','Flapping Angel Wing',4,20,NULL,300,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'10',1,264,'bonus bInt,1; bonus bAgi,1; bonus bAspdRate,3; bonus bVariableCastrate,-3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5270,'Fallen_Leaves_','Autumn Leaves',4,20,NULL,100,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,241,'bonus bFlee2,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5271,'Chinese_Crown_','Phoenix Crown',4,20,NULL,500,NULL,4,NULL,1,0xFFFFFFFF,63,2,768,NULL,'0',1,221,'bonus bMdef,3; bonus2 bSubClass,Class_Boss,getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5272,'Tongue_Mask_','Tongue Mask',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,63,2,513,NULL,'0',0,253,'bonus3 bAutoSpell,"SM_PROVOKE",5,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5273,'Happy_Wig','Happy Wig',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,768,NULL,'0',1,305,'bonus bSpeedRate,25; bonus bDef,4; skill "TF_HIDING",1;',NULL,'sc_end SC_HIDING;'); -REPLACE INTO `item_db_re` VALUES (5274,'Shiny_Wig','Shiny Wig',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,768,NULL,'0',1,306,'bonus bSpeedRate,25; bonus bDef,4; skill "TF_HIDING",1;',NULL,'sc_end SC_HIDING;'); -REPLACE INTO `item_db_re` VALUES (5275,'Marvelous_Wig','Marvelous Wig',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,768,NULL,'0',1,307,'bonus bSpeedRate,25; bonus bDef,4; skill "TF_HIDING",1;',NULL,'sc_end SC_HIDING;'); -REPLACE INTO `item_db_re` VALUES (5276,'Fantastic_Wig','Fantastic Wig',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,768,NULL,'0',1,308,'bonus bSpeedRate,25; bonus bDef,4; skill "TF_HIDING",1;',NULL,'sc_end SC_HIDING;'); -REPLACE INTO `item_db_re` VALUES (5277,'Yellow_Bandana','Yellow Bandana',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFE,63,2,256,NULL,'20',1,309,'bonus bLuk,2; bonus bVit,2; bonus bLongAtkDef,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5278,'Yellow_Ribbon','Yellow Ribbon',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFE,63,2,256,NULL,'20',1,310,'bonus bLuk,2; bonus bVit,2; bonus bLongAtkDef,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5279,'Drooping_Kitty_C','Refined Drooping Cat',4,2,NULL,0,NULL,3,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',0,142,'bonus bMdef,15; bonus2 bResEff,Eff_Curse,3000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5280,'Magestic_Goat_C','Baphomet Horns',4,2,NULL,0,NULL,10,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',0,41,'bonus bStr,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5281,'Deviruchi_Cap_C','Refined Deviruchi Hat',4,2,NULL,0,NULL,4,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',0,123,'bonus bStr,1; bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5282,'euRO_Baseball_Cap','Europe Baseball Cap',4,0,NULL,200,NULL,5,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,216,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5283,'Chick_Hat','Chick Hat',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'10',0,311,'bonus bLuk,2; bonus bMaxHP,50; bonus bMaxSP,50; skill "TF_DOUBLE",2; bonus bDoubleRate,10; bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5284,'Water_Lily_Crown','Water Lily Crown',4,20,NULL,200,NULL,0,NULL,1,0xFFFFFFFF,63,2,256,NULL,'30',0,312,'bonus bDex,1; bonus bAgi,1; bonus bMdef,3; bonus bHPrecovRate,5; bonus bSPrecovRate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5285,'Vane_Hairpin','Vane Hairpin',4,20,NULL,300,NULL,4,NULL,1,0xFFFFFFFF,63,2,256,NULL,'30',0,313,'bonus bAgi,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5286,'Pecopeco_Hairband','Pecopeco Hairband',4,20,NULL,0,NULL,6,NULL,0,0xFFFFFFFF,63,2,256,NULL,'70',0,314,'bonus bSpeedRate,25; bonus bAspdRate,5; bonus bVariableCastrate,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5287,'Vacation_Hat','Vacation Hat',4,20,NULL,200,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'30',0,315,'bonus bVit,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5288,'Red_Glasses','Red Glasses',4,20,NULL,0,NULL,1,NULL,0,0xFFFFFFFF,63,2,512,NULL,'0',0,316,'bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5289,'Vanilmirth_Hat','Vanilmirth Hat',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'30',0,317,'bonus bUnbreakableHelm; bonus3 bAutoSpell,"MG_FIREBOLT",1,50; bonus3 bAutoSpell,"MG_COLDBOLT",1,50; bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",1,50; bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5290,'Drooping_Bunny_','Drooping Bunny',4,20,NULL,100,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,249,'bonus bDex,1; bonus bFlee,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5291,'Kettle_Hat','Kettle Hat',4,20,NULL,600,NULL,8,NULL,0,0xFFFFFFFF,63,2,256,NULL,'30',1,318,'bonus4 bAutoSpell,"SA_DELUGE",2,10,0; bonus3 bAutoSpell,"WZ_WATERBALL",3,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5292,'Dragon_Skull','Dragon Skull',4,20,NULL,800,NULL,10,NULL,0,0xFFFFFFFF,63,2,256,NULL,'50',1,319,'bonus2 bSubRace,RC_Dragon,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5293,'Ramen_Hat','Ramen Hat',4,20,NULL,0,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',0,320,'bonus bDex,4; bonus4 bAutoSpellWhenHit,"AL_DECAGI",1,30,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5294,'Whisper_Mask','Whisper Mask',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,769,NULL,'0',0,321,'bonus bAgi,3; bonus2 bSubEle,Ele_Ghost,-10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5295,'Golden_Bandana','Golden Bandana',4,20,NULL,2400,NULL,4,NULL,0,0xFFFFFFFF,63,2,768,NULL,'0',0,138,'bonus bMdef,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5296,'Drooping_Nine_Tail_','Drooping Nine Tail',4,20,NULL,300,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,296,'bonus bAgi,1; bonus bCritical,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5297,'Soulless_Wing_','Soul Wing',4,20,NULL,300,NULL,3,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,301,'bonus bAllStats,1; bonus2 bSPRegenRate,2,10000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5298,'Marvelous_Wig_','Dokebi\'s Wig',4,20,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,63,2,768,NULL,'0',1,307,'bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubEle,Ele_Fire,-5; bonus2 bSubEle,Ele_Water,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5299,'Ati_Atihan_Hat_','Pagdayaw',4,20,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,63,2,769,NULL,'1',0,303,'bonus3 bAutoSpell,"DC_SCREAM",1,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5300,'Bullock_Helm','Bullock Helm',4,20,NULL,800,NULL,4,NULL,0,0xFFFFFFFE,63,2,256,NULL,'45',1,322,'bonus bMaxHP,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5301,'Russian_Ribbon','Victory Hairband',4,0,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,323,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5302,'Lotus_Flower_Hat','Flower Lily',4,0,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'30',1,324,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5303,'Flower_Coronet','Flower Crown',4,20,NULL,300,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,325,'bonus bMdef,3; bonus bMaxSP,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5304,'Cap_Of_Blindness','Cap Of Blindness',4,20,NULL,800,NULL,4,NULL,1,0xFFFFFFFF,63,2,769,NULL,'30',1,326,'bonus2 bResEff,Eff_Curse,700; bonus2 bResEff,Eff_Blind,10000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5305,'Pirate_Dagger','Pirate Dagger',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'0',0,327,'bonus bBaseAtk,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5306,'Freyja_Crown','Freya\'s Crown',4,0,NULL,500,NULL,20,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',0,328,'bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5307,'Carmen_Miranda\'s_Hat','Carmen Miranda\'s Hat',4,20,NULL,400,NULL,10,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,329,'bonus bMdef,3; .@r = getrefine(); bonus2 bSubEle,Ele_Fire,(.@r>=7?10:5); if(.@r>=7){ bonus bBaseAtk,15; bonus bMatk,15; } bonus3 bAddMonsterDropItem,512,RC_All,10; bonus3 bAddMonsterDropItem,513,RC_All,10; bonus3 bAddMonsterDropItem,514,RC_All,10; bonus3 bAddMonsterDropItem,578,RC_All,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5308,'Brazilian_Flag_Hat','Brazil National Flag Hat',4,20,NULL,300,NULL,5,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,330,'bonus bSpeedAddRate,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5309,'Mahican','Wool Mask',4,20,NULL,200,NULL,1,NULL,0,0xFFFFFFFF,63,2,769,NULL,'0',1,331,'skill "RG_GRAFFITI",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5310,'Bulb_Hairband','Shining Electric Bulb Hairband',4,20,NULL,100,NULL,5,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,332,'bonus2 bSubEle,Ele_Dark,10; skill "MG_SIGHT",1;',NULL,'sc_end SC_SIGHT;'); -REPLACE INTO `item_db_re` VALUES (5311,'Large_Hibiscus','Large Hisbiscus',4,20,NULL,100,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,333,'bonus bMdef,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5312,'Ayothaya_Hat','Ayothaya King\'s Hat',4,20,NULL,100,NULL,5,NULL,1,0x000654E2,63,2,256,NULL,'0',1,334,'bonus bStr,1; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5313,'Diadem','Diadem',4,20,NULL,100,NULL,3,NULL,1,0xFFFFFFFF,63,2,768,NULL,'0',1,335,'bonus bInt,1; bonus bMatkRate,3; bonus bVariableCastrate,-3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5314,'Hockey_Mask','Hockey Mask',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,513,NULL,'50',0,336,'bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5315,'Observer','Observer',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,63,2,512,NULL,'35',0,337,'skill "WZ_ESTIMATION",1; /*Gold PC Room: bonus bAllStats,1;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5316,'Umbrella_Hat','Umbrella Hat',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'50',1,338,'bonus2 bSubEle,Ele_Water,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5317,'Fisherman_Hat','Fisherman\'s Hat',4,20,NULL,100,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'50',1,339,'bonus3 bAutoSpell,"WZ_WATERBALL",3,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5318,'Poring_Party_Hat','Poring Party Hat',4,20,NULL,0,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,340,'bonus bFlee,6;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5319,'Hellomother_Hat','Hello Mother Hat',4,20,NULL,200,NULL,3,NULL,1,0xFFFFFFFE,63,2,256,NULL,'1',1,341,'bonus bHPrecovRate,150; bonus bMaxHP,80+(80*getrefine());',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5320,'Champion_Wreath','Champion Wreath',4,20,NULL,500,NULL,8,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',1,261,'bonus bAllStats,2; bonus4 bAutoSpellWhenHit,"AL_HEAL",1,50,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5321,'Indonesian_Bandana','Bandana Merah Putih',4,20,NULL,500,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,342,'bonus2 bAddMonsterDropItem,518,300;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5322,'Scarf','Kerchief',4,20,NULL,100,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'24',1,343,'bonus bMdef,2; bonus bFlee,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5323,'Misstrance_Crown','Misstrance Crown',4,20,NULL,0,NULL,14,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',0,165,'bonus bAllStats,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5324,'Little_Angel_Doll','Little Angel Doll',4,20,NULL,300,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'10',1,344,'bonus bDex,3; bonus4 bAutoSpellWhenHit,"CR_GRANDCROSS",3,30,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5325,'Robo_Eye','Robo Eye',4,20,NULL,200,NULL,2,NULL,0,0xFFFFFFFF,63,2,512,NULL,'10',0,345,'bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5326,'Masquerade_C','Masquerade C',4,1,NULL,0,NULL,1,NULL,0,0xFFFFFFFF,63,2,512,NULL,'0',0,78,'bonus2 bAddRace,RC_DemiHuman,7; bonus2 bAddRace,RC_Player_Human,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5327,'Orc_Hero_Helm_C','Refined Helmet of Orc Hero',4,1,NULL,0,NULL,10,NULL,0,0xFFFFFFFE,63,2,768,NULL,'0',0,178,'bonus bStr,5; bonus bVit,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5328,'Evil_Wing_Ears_C','Evil Wing Ears C',4,1,NULL,0,NULL,4,NULL,0,0xFFFFFFFF,63,2,512,NULL,'0',0,152,'bonus bStr,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5329,'Dark_Blindfold_C','Dark Blindfold C',4,1,NULL,0,NULL,1,NULL,0,0xFFFFFFFF,63,2,512,NULL,'0',0,187,'bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Stun,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5330,'kRO_Drooping_Kitty_C','kRO Drooping Kitty C',4,1,NULL,0,NULL,9,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',0,142,'bonus bMdef,15; bonus2 bResEff,Eff_Curse,4000; bonus2 bResEff,Eff_Stun,1000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5331,'Corsair_C','Corsair C',4,1,NULL,0,NULL,14,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',0,105,'bonus bVit,3; bonus bInt,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5332,'Loki_Mask','Loki Mask',4,0,NULL,200,NULL,2,NULL,0,0xFFFFFFFF,63,2,513,NULL,'20',0,346,'bonus bFlee2,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5333,'Radio_Antenna','Radio Antenna',4,0,NULL,1500,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'50',1,347,'bonus bMdef,5; bonus bCritical,5; bonus bFlee,5; skill "MG_LIGHTNINGBOLT",1; bonus4 bAutoSpellWhenHit,"MG_THUNDERSTORM",5,30,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5334,'Angeling_Wanna_Fly','Flapping Angeling',4,0,NULL,700,NULL,5,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,348,'bonus bLuk,2; bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5335,'Jumping_Poring','Jumping Poring',4,0,NULL,300,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',0,349,'bonus bLuk,1; bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5336,'Guildsman_Recruiter','Guildsman Recruiter Hat',4,NULL,NULL,0,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'10',1,350,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5337,'Party_Recruiter_Hat','Party Recruiter Hat',4,0,NULL,0,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'10',1,351,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5338,'Bf_Recruiter_Hat','BF Recruiter Hat',4,0,NULL,0,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'10',1,352,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5339,'Friend_Recruiter_Hat','Friend Recruiter Hat',4,0,NULL,0,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'10',1,353,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5340,'Deprotai_Doll_Hat','Defolty Doll Hat',4,0,NULL,500,NULL,1,NULL,1,0xFFFFFFFF,63,2,256,NULL,'60',0,354,'bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus4 bAutoSpellWhenHit,"AL_ANGELUS",10,20,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5341,'Claris_Doll_Hat','Glaris Doll Hat',4,0,NULL,500,NULL,1,NULL,1,0xFFFFFFFF,63,2,256,NULL,'60',0,355,'bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bMagicHPGainValue,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5342,'Sorin_Doll_Hat','Sorin Doll Hat',4,0,NULL,500,NULL,1,NULL,1,0xFFFFFFFF,63,2,256,NULL,'60',0,356,'bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; autobonus "{ bonus bBaseAtk,50; }",20,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5343,'Tayelin_Doll_Hat','Telling Doll Hat',4,0,NULL,500,NULL,1,NULL,1,0xFFFFFFFF,63,2,256,NULL,'60',0,357,'bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bAddItemHealRate,504,10; bonus2 bAddItemHealRate,547,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5344,'Binit_Doll_Hat','Bennit Doll Hat',4,0,NULL,500,NULL,1,NULL,1,0xFFFFFFFF,63,2,256,NULL,'60',0,358,'bonus bVit,2; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; autobonus "{ bonus bAspdRate,5; }",20,30000,0,"{ specialeffect2 EF_HASTEUP; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5345,'Debril_Doll_Hat','W Doll Hat',4,0,NULL,500,NULL,1,NULL,1,0xFFFFFFFF,63,2,256,NULL,'60',0,359,'bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bAddRace,RC_Undead,5; bonus2 bMagicAddRace,RC_Undead,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5346,'Gf_Recruiter_Hat','GF Recruiter Hat',4,0,NULL,0,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'10',1,360,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5347,'Ph.D_Hat_','Ph.D Hat',4,20,NULL,100,NULL,5,NULL,1,0xFFFFFFFE,63,2,256,NULL,'0',1,98,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5348,'Big_Sis\'_Ribbon_','Big Ribbon',4,15000,NULL,200,NULL,3,NULL,1,0xFFFFFFFE,63,2,256,NULL,'0',1,28,'bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5349,'Boy\'s_Cap_','Boy\'s Cap',4,20,NULL,100,NULL,3,NULL,1,0xFFFFFFFE,63,2,256,NULL,'0',1,102,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5350,'Pirate_Bandana_','Pirate Bandana',4,20,NULL,100,NULL,4,NULL,1,0xFFFFFFFE,63,2,256,NULL,'0',1,74,'bonus bStr,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5351,'Sunflower_','Sunflower',4,20,NULL,100,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',0,37,'bonus2 bSubRace,RC_Insect,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5352,'Poporing_Cap','Poporing Cap',4,20,NULL,700,NULL,4,NULL,0,0xFFFFFFFE,63,2,256,NULL,'38',1,361,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5353,'Helm_Of_Sun_','Hat of the Sun God',4,20,NULL,2400,NULL,4,NULL,1,0x00CFDF80,63,2,768,NULL,'0',1,138,'bonus bStr,3; bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5354,'Muslim_Hat_M','Muslim Hat M',4,0,NULL,100,NULL,4,NULL,0,0xFFFFFFFF,63,1,256,NULL,'0',0,362,'bonus bVariableCastrate,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5355,'Muslim_Hat_F','Selendang',4,0,NULL,100,NULL,4,NULL,0,0xFFFFFFFF,63,0,256,NULL,'0',0,363,'bonus bVariableCastrate,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5356,'Pumpkin_Hat_H','Festival Pumpkin Hat',4,20,NULL,200,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,206,'bonus2 bSubRace,RC_Demon,5; bonus2 bAddRace,RC_Demon,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5357,'Wings_Of_Victory','Wings Of Victory',4,20,NULL,200,NULL,10,NULL,0,0xFFFFFFFF,63,2,768,NULL,'0',0,365,'bonus bMdef,10; bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5358,'Pecopeco_Wing_Ears','Peco Ears',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,63,2,512,NULL,'70',0,366,'bonus bAgi,1; bonus bMdef,2; bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5359,'J_Captain_Hat','Ship Captain Hat',4,20,NULL,300,NULL,3,NULL,1,0xFFFFFFFF,63,2,256,NULL,'60',1,367,'bonus bDex,1; bonus bMaxHP,100; bonus bLongAtkRate,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5360,'Whikebain_Ears','Hyuke\'s Black Cat Ears',4,20,NULL,200,NULL,4,NULL,0,0xFFFFFFFE,63,2,256,NULL,'45',1,368,'bonus bFlee,10; bonus bCritAtkRate,10; autobonus "{ bonus2 bIgnoreMdefClassRate,Class_Normal,100; bonus2 bIgnoreMdefClassRate,Class_Boss,100; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_STEAL; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5361,'Gang_Scarf','Gangster Scarf',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'0',0,369,'bonus bBaseAtk,5; if(BaseJob==Job_Rogue) skill "RG_GANGSTER",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5362,'Ninja_Scroll','Ninja Scroll',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'0',0,370,'bonus bMatkRate,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5363,'Helm_Of_Abyss','Helm Of Abyss',4,20,NULL,1000,NULL,9,NULL,1,0x000654E2,63,2,256,NULL,'70',1,371,'bonus2 bSubClass,Class_Normal,-5; bonus2 bSubClass,Class_Boss,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5364,'Dark_Snake_Lord_Hat','Evil Snake Lord Hat',4,20,NULL,500,NULL,4,NULL,1,0xFFFFFFFF,63,2,256,NULL,'60',1,372,'bonus bStr,1; bonus bInt,1; bonus bAgi,2; bonus2 bAddMonsterDropItem,12582,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5365,'Fried_Egg','Magnolia Hat',4,20,NULL,100,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',0,373,'bonus bBaseAtk,5; bonus3 bAutoSpellWhenHit,"BS_GREED",1,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5366,'Hat_0f_King','Love Dad Bandana',4,20,NULL,200,NULL,5,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,374,'bonus bAllStats,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5367,'Hyegun_Hat','Hyegun Hat',4,20,NULL,100,NULL,5,NULL,1,0xFFFFFFFF,63,2,769,NULL,'10',0,375,'bonus bMdef,3; bonus2 bSubRace,RC_Demon,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5368,'White_Wing','White Wing',4,20,NULL,100,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,38,'bonus2 bAddMonsterDropItem,12280,300;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5369,'Dark_Wing','Dark Wing',4,20,NULL,100,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,39,'bonus2 bAddMonsterDropItem,12279,300;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5370,'Orchid_Hairband','Orchid Hairband',4,20,NULL,200,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,376,'bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5371,'Hat_Of_Judge','Judge Hat',4,20,NULL,300,NULL,2,NULL,0,0xFFFFFFFF,63,2,768,NULL,'0',1,377,'bonus bLuk,1; bonus bMaxSP,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5372,'Drooping_White_Kitty','Koneko Hat',4,20,NULL,500,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,378,'bonus bInt,1; bonus bDelayRate,-3; bonus bMatkRate,3; bonus bMaxSPrate,3; bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5373,'Darkness_Helm','Dark Randgris Helm',4,20,NULL,300,NULL,2,NULL,1,0xFFFFFFFF,63,2,768,NULL,'0',1,379,'bonus bDex,3; bonus bMdef,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5374,'L_Magestic_Goat','Gigantic Majestic Goat',4,20,NULL,800,NULL,10,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,380,'bonus2 bAddRace,RC_DemiHuman,12; bonus2 bAddRace,RC_Player_Human,12; bonus bBaseAtk,(JobLevel*2)/7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5375,'L_Orc_Hero_Helm','Orc Hero Headdress',4,20,NULL,900,NULL,5,NULL,1,0xFFFFFFFF,63,2,768,NULL,'0',1,381,'bonus bStr,2; bonus3 bAutoSpellWhenHit,"BS_WEAPONPERFECT",3,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5376,'Satanic_Chain_P','Flying Evil Wing',4,20,NULL,100,NULL,6,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,382,'bonus bMaxSP,120; bonus2 bAddEff2,Eff_Curse,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5377,'Antique_Pipe','Gentleman\'s Pipe',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'0',0,383,'bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5378,'Rabbit_Ear_Hat','Bunny Top Hat',4,20,NULL,300,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,384,'bonus bAgi,3; bonus3 bAutoSpellWhenHit,"AL_INCAGI",5,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5379,'Balloon_Hat','Tam',4,0,NULL,800,NULL,5,NULL,1,0xFFFFFFFF,63,2,256,NULL,'50',1,385,'bonus bMdef,2; bonus bMatkRate,2+(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5380,'Fish_Head_Hat','Fish Head Hat',4,20,NULL,400,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,386,'bonus3 bAutoSpell,"SA_FROSTWEAPON",1,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5381,'Santa_Poring_Hat','Santa Poring Hat',4,20,NULL,100,NULL,4,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',0,387,'bonus bMdef,2; bonus2 bAddEle,Ele_Dark,3; bonus2 bSubEle,Ele_Dark,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5382,'Bell_Ribbon','Bell Ribbon',4,20,NULL,200,NULL,5,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,388,'bonus bVit,1; skill "AL_ANGELUS",1;',NULL,'sc_end SC_ANGELUS;'); -REPLACE INTO `item_db_re` VALUES (5383,'Hunting_Cap','Hunter\'s Cap',4,20,NULL,250,NULL,6,NULL,1,0xFFFFFFFE,63,2,256,NULL,'50',1,389,'bonus bLuk,1; bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Player_Doram,10; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5384,'Santa_Hat_1','Twin Pompom By JB',4,20,NULL,200,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'20',1,390,'bonus bLuk,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5385,'Yoyo_Hat','Yoyo Hat',4,20,NULL,300,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'20',1,391,'skill "TF_HIDING",1;',NULL,'sc_end SC_HIDING;'); -REPLACE INTO `item_db_re` VALUES (5386,'Ayam_','Ayam',4,0,NULL,70,NULL,7,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',0,228,'bonus bMdef,7; bonus bFlee,7; bonus2 bAddMonsterDropItem,12198,200;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5387,'Neko_Mimi_Kafra','Neko Mimi Kafra',4,20,NULL,200,NULL,1,NULL,1,0xFFFFFFFF,63,2,256,NULL,'30',1,392,'bonus bMdef,5; bonus2 bAddEffWhenHit,Eff_Silence,1000; bonus2 bAddEffWhenHit,Eff_Poison,1000; bonus2 bAddEffWhenHit,Eff_Curse,1000; bonus2 bAddEffWhenHit,Eff_Blind,1000; bonus2 bAddEffWhenHit,Eff_Stone,1000; bonus2 bAddEffWhenHit,Eff_Freeze,1000; bonus2 bAddEffWhenHit,Eff_Stun,1000; bonus2 bAddEffWhenHit,Eff_Sleep,1000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5388,'Snake_Head','Snake Head Hat',4,20,NULL,200,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'30',1,393,'skill "TF_DOUBLE",5; bonus bDoubleRate,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5389,'Angel_Spirit','Angel Spirit',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFF,63,2,512,NULL,'0',0,394,'bonus bStr,2; bonus bHit,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5390,'Santa_Hat_2','Frozen Twin Pompom',4,20,NULL,100,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,395,'bonus2 bResEff,Eff_Freeze,3000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5391,'Toast_C','Toast',4,20,NULL,0,NULL,1,NULL,0,0xFFFFFFFF,63,2,1,NULL,'0',0,188,'bonus bMaxHP,100; bonus2 bAddMonsterDropItem,617,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5392,'Louyang_Cap','Luoyang NewYear Hat',4,20,NULL,300,NULL,6,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,396,'bonus bLuk,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5393,'Valentine_Hat','Love Valentine\'s Hat',4,20,NULL,200,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',0,397,'bonus bMaxSPrate,7; bonus bMaxHPrate,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5394,'Bubblegum_Lower','Bubblegum',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'0',0,572,'bonus2 bExpAddClass,Class_All,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5395,'Tiraya_Bonnet','Striped Hat',4,20,NULL,500,NULL,6,NULL,1,0xFFFFFFFF,63,2,256,NULL,'50',1,398,'bonus bMaxHP,100+(getrefine()*20); bonus bLuk,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5396,'Jasper_Crest','Jasper Crest',4,20,NULL,700,NULL,6,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,399,'bonus bDex,1; bonus2 bAddRace,RC_Undead,5; .@r = getrefine(); if (.@r<6) { bonus2 bAddEff2,Eff_Blind,10; } else if (.@r>8) { bonus bDex,2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5397,'Scuba_Mask','Scuba Gear',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,512,NULL,'0',0,400,'bonus2 bSubEle,Ele_Water,10; bonus2 bExpAddRace,RC_Fish,10; bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5398,'Bone_Head','Bone Head',4,20,NULL,1200,NULL,10,NULL,1,0x000444A2,18,2,256,NULL,'85',1,401,'bonus bStr,2; bonus bMdef,5; bonus2 bResEff,Eff_Stun,500; bonus2 bResEff,Eff_Bleeding,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5399,'Mandragora_Cap','Mandragora Cap',4,20,NULL,300,NULL,5,NULL,1,0x00CFFF80,18,2,256,NULL,'85',0,402,'bonus bVit,3; bonus3 bAutoSpellWhenHit,"DC_SCREAM",5,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5400,'Fox_Hat','Fox Hat',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFF,63,0,769,NULL,'0',0,403,'bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5401,'Black_Glasses','Black Frame Glasses',4,20,NULL,200,NULL,2,NULL,0,0xFFFFFFFF,63,2,512,NULL,'70',0,404,'bonus bInt,1; bonus bMdef,2; bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5402,'Mischievous_Fairy','Mischievous Fairy',4,10,NULL,200,NULL,2,NULL,0,0xFFFFFFFF,63,2,512,NULL,'70',0,405,'bonus bUnbreakableHelm; bonus bFlee2,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5403,'Fish_In_Mouth','Fish In Mouth',4,10,NULL,200,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'30',0,406,'bonus2 bAddMonsterDropItem,579,500; bonus2 bAddItemHealRate,579,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5404,'Blue_Ribbon','Blue Ribbon',4,10,NULL,100,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'45',1,407,'bonus4 bAutoSpellWhenHit,"AC_CONCENTRATION",2,7,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5405,'Filir_Hat','Filir Hat',4,10,NULL,200,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'80',0,408,'bonus bShortWeaponDamageReturn,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5406,'Academy_Freshman_Hat','Academy Freshman Hat',4,0,NULL,500,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,409,'bonus bInt,1; bonus bDex,2; bonus bVit,1; bonus bDelayrate,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5407,'Academy_Graduating_Cap','Academy Completion Hat',4,0,NULL,200,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,410,'bonus bMaxSP,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5408,'Old_Bandanna','Old Bandana',4,0,NULL,0,NULL,10,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',0,6,'bonus bInt,2; bonus bMaxSP,50; bonus bVariableCastrate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5409,'New_Cowboy_Hat','Purple Cowboy Hat',4,20,NULL,500,NULL,8,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,411,'bonus bInt,2; bonus bVit,2; bonus bMaxSP,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5410,'Bread_Bag2','Brown Paperbag Hat',4,20,NULL,200,NULL,6,NULL,0,0xFFFFFFFF,63,2,769,NULL,'0',0,412,'bonus bMaxHP,100; bonus2 bResEff,Eff_Stun,400; bonus2 bSubRace,RC_DemiHuman,4; bonus2 bSubRace,RC_Player_Human,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5411,'White_Snake_Hat','White Snake Hat',4,20,NULL,500,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,413,'bonus bDex,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5412,'Sweet_Candy','Sweet Candy',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,1,NULL,'0',0,414,'bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5413,'Popcorn_Hat','Pop Corn Hat',4,20,NULL,300,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',0,415,'bonus2 bSubEle,Ele_Wind,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5414,'Campfire_Hat','Camp Fire Hat',4,20,NULL,300,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',0,416,'bonus2 bSubEle,Ele_Fire,10; bonus4 bAutoSpellWhenHit,"MG_FIREBALL",5,100,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5415,'Poring_Cake_Cap','Poring Cake Hat',4,20,NULL,1000,NULL,10,NULL,0,0xFFFFFFFF,63,2,256,NULL,'40',1,417,'bonus bMdef,5; bonus bCritical,5; bonus bFlee,5; bonus bFlee2,5; bonus bAspdRate,5; bonus bVariableCastrate,-5; bonus bDelayRate,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5416,'Beer_Cap','Beer Hat',4,20,NULL,600,NULL,4,NULL,0,0xFFFFFFFE,63,2,256,NULL,'18',1,418,'bonus bFlee2,5; skill "SM_RECOVERY",3; skill "MG_SRECOVERY",3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5417,'Crown_Parrot','Crown Parrots',4,20,NULL,200,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',0,419,'bonus bInt,1; bonus2 bResEff,Eff_Silence,10000; bonus3 bAutoSpell,"DC_SCREAM",1,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5418,'Soldier_Hat','Legionnaire Hat',4,20,NULL,400,NULL,8,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,420,'bonus bStr,1; bonus2 bAddClass,Class_All,3; bonus bUseSPrate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5419,'Evolved_Leaf','Leaves Of Grass',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'0',0,57,'bonus bVit,1; bonus2 bSubRace,RC_Plant,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5420,'Mask_Of_Ifrit','Mask Of Ifrit',4,20,NULL,800,NULL,12,NULL,1,0xFFFFFFFE,63,2,769,NULL,'50',0,421,'bonus bStr,2; bonus bInt,2; bonus bMdef,5; bonus2 bSubEle,Ele_Fire,10; bonus2 bSubEle,Ele_Water,-10; bonus2 bAddEle,Ele_Fire,10; bonus2 bMagicAtkEle,Ele_Fire,10; bonus3 bAutoSpell,"WZ_METEOR",3,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5421,'Ifrit\'s_Ear','Ears Of Ifrit',4,20,NULL,300,NULL,0,NULL,0,0xFFFFFFFE,63,2,512,NULL,'50',0,422,'bonus bStr,1; bonus bInt,1; bonus bMdef,3; bonus2 bAddEle,Ele_Fire,3; bonus2 bSkillAtk,"SM_BASH",4; bonus2 bSkillAtk,"SM_MAGNUM",4; bonus2 bSubEle,Ele_Fire,3; bonus2 bSubEle,Ele_Water,-3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5422,'Linguistic_Book_Cap','Linguistic Book Hat',4,20,NULL,70,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,423,'bonus bInt,1; bonus bMdef,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5423,'Lovecap_China','I Love China',4,20,NULL,250,NULL,10,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',0,424,'bonus bDex,3; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5424,'Fanta_Orange_Can','Fanta Orange Can Hat',4,20,NULL,100,NULL,3,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,425,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5425,'Fanta_Grape_Can','Fanta Grape Can Hat',4,20,NULL,100,NULL,3,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,426,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5426,'Karada_Meguri_Tea_Hat','Karada Meguricha Hat',4,20,NULL,100,NULL,3,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,427,'bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5427,'Royal_Milk_Tea_Hat','Black Tea Kochakaden Hat',4,20,NULL,100,NULL,3,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,428,'bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5428,'Bread_Bag1','RWC Anniversary Bread Envelope',4,NULL,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,769,NULL,'0',1,429,'bonus2 bSubRace,RC_DemiHuman,12; bonus2 bSubRace,RC_Player_Human,12;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5429,'Bogy_Cap','Bogy Cap',4,20,NULL,100,NULL,4,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,430,'bonus bHPrecovRate,5; bonus bSPrecovRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5430,'Sacred_Torch_Coronet','Torch Cap',4,20,NULL,0,NULL,6,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',0,431,'bonus2 bSubEle,Ele_Fire,20; skill "MG_FIREBOLT",5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5431,'Chicken_Hat','Chicken Hat',4,20,NULL,1000,NULL,0,NULL,1,0xFFFFFFFF,63,2,256,NULL,'30',1,432,'bonus3 bAutoSpell,"MC_LOUD",1,30; bonus bAspdRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5432,'Brazil_Baseball_Cap','bRO 4th Anniversary Hat',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,433,'if(gettime(DT_MONTH)==SEPTEMBER&&gettime(DT_DAYOFMONTH)>=10&&gettime(DT_DAYOFMONTH)<=24) bonus bAllStats,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5433,'Golden_Wreath','Golden Laurel',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,434,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5434,'Cola_Can','Cola Can',4,20,NULL,100,NULL,3,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,435,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5435,'Coke_Hat','Red Minstrel Hat',4,20,NULL,100,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'40',1,436,'bonus bInt,1; bonus bMaxSP,80; bonus bMdef,3; .@r = getrefine(); if(.@r>5) { bonus bMdef,.@r-5; bonus bMaxSP,(.@r-5)*10; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5436,'Bride\'s_Corolla','Bride\'s Corolla',4,20,NULL,200,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,437,'bonus bLuk,3; bonus bMdef,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5437,'Flower_Of_Fairy','Fairy Flower',4,20,NULL,200,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,438,'bonus bInt,1; bonus bMdef,1; bonus2 bSubRace,RC_Insect,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5438,'Fillet_Green','Cute Green Ribbon',4,500,NULL,100,NULL,1,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',0,439,'bonus bMaxSP,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5439,'Fillet_Red','Cute Red Ribbon',4,500,NULL,100,NULL,1,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',0,440,'bonus bMaxSP,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5440,'Fillet_Blue','Cute Blue Ribbon',4,500,NULL,100,NULL,1,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',0,441,'bonus bMaxSP,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5441,'Fillet_White','Cute White Ribbon',4,500,NULL,100,NULL,1,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',0,442,'bonus bMaxSP,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5442,'Necktie','Necktie',4,20,NULL,100,NULL,6,NULL,1,0xFFFFFFFF,63,2,256,NULL,'70',1,443,'bonus bVit,1; bonus bHit,-5; bonus bUseSPrate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5443,'Status_Of_Baby_Angel','Statue Of Baby Angel',4,20,NULL,600,NULL,6,NULL,1,0xFFFFFFFF,63,2,256,NULL,'70',1,444,'bonus bMdef,2; bonus4 bAutoSpellWhenHit,"PR_STRECOVERY",1,20,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5444,'Hair_Brush','Hair Brush',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,445,'bonus bCritical,6;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5445,'Candy_Cane_In_The_Mouth','Candy Cane In Mouth',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'0',0,446,'bonus bMaxSP,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5446,'Cat_Foot_Hairpin','Catfoot Hairpin',4,20,NULL,200,NULL,0,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,447,'bonus bFlee,5; bonus bFlee2,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5447,'Frog_Cap','Frog Hat',4,20,NULL,500,NULL,6,NULL,0,0xFFFFFFFF,63,2,256,NULL,'70',1,448,'bonus bMdef,1; bonus2 bAddRace,RC_Insect,12; bonus2 bMagicAddRace,RC_Insect,12;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5448,'Solo_Play_Box1','Indifferent Solo Hat',4,20,NULL,300,NULL,0,NULL,1,0xFFFFFFFF,63,2,769,NULL,'0',1,449,'skill "RG_GRAFFITI",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5449,'Solo_Play_Box2','Angry Solo Hat',4,20,NULL,300,NULL,0,NULL,1,0xFFFFFFFF,63,2,769,NULL,'0',1,450,'skill "RG_GRAFFITI",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5450,'Sun_Cap','Solar Hat',4,20,NULL,1000,NULL,0,NULL,0,0xFFFFFFFE,63,2,256,NULL,'20',1,451,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5451,'Dragonhelm_Gold','RWC 2008 Dragon Helm Gold',4,20,NULL,2500,NULL,14,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',0,452,'bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5452,'Dragonhelm_Silver','RWC 2008 Dragon Helm Silver',4,20,NULL,2500,NULL,10,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',0,453,'bonus2 bSubRace,RC_DemiHuman,7; bonus2 bSubRace,RC_Player_Human,7; bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player_Human,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5453,'Dragonhelm_Copper','RWC 2008 Dragon Helm Copper',4,20,NULL,2500,NULL,5,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',0,454,'bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bAddRace,RC_DemiHuman,1; bonus2 bAddRace,RC_Player_Human,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5454,'Dog_Cap_','Puppy Hat',4,20,NULL,500,NULL,3,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,234,'bonus bStr,1; bonus bInt,1; autobonus "{ bonus bCritical,100; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; autobonus "{ bonus2 bIgnoreMdefClassRate,Class_Normal,100; bonus2 bIgnoreMdefClassRate,Class_Boss,100; }",10,3000,BF_MAGIC,"{ specialeffect2 EF_MAGICALATTHIT; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5455,'Geographer_Band_','Decorative Geographer',4,20,NULL,500,NULL,1,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,238,'bonus bInt,1; bonus3 bAutoSpell,"AL_HEAL",5,50; bonus3 bAutoSpellWhenHit,"AL_HEAL",5,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5456,'Vacation_Hat_','Summer Hat',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,315,'bonus bVit,5; bonus bHPrecovRate,20; bonus bSPrecovRate,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5457,'Spring_Rabbit_Hat','Moon Rabbit Hat',4,20,NULL,300,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,455,'bonus bAgi,3; bonus bBaseAtk,5; bonus bMatkRate,5; .@r = getrefine(); if(.@r>4) { bonus bBaseAtk,.@r-4; bonus bMatkRate,.@r-4; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5458,'Pinwheel_Cap','Pinwheel Hat',4,20,NULL,200,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,456,'bonus bMaxHPrate,5; bonus bMaxSPrate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5459,'Drooping_Bunny_Chusuk','Drooping Bunny',4,0,NULL,100,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,249,'bonus bDex,1; bonus bFlee,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5460,'Adv_Dragon_Skull','Evolved Dragon Skull Hat',4,20,NULL,1000,NULL,14,NULL,0,0xFFFFFFFF,63,2,256,NULL,'60',1,457,'bonus bAllStats,2; bonus bMaxHPrate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5461,'Adv_Whisper_Mask','Evolved Whisper Mask',4,20,NULL,300,NULL,1,NULL,0,0xFFFFFFFF,63,2,769,NULL,'50',1,458,'bonus bDex,3; bonus2 bSubEle,Ele_Ghost,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5462,'Spiked_Scarf','Spiked Scarf',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,1,NULL,'90',0,459,'bonus bAtk,30; bonus bMaxHPrate,-2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5463,'Rainbow_Scarf','Rainbow Scarf',4,20,NULL,0,NULL,1,NULL,0,0xFFFFFFFF,63,2,1,NULL,'90',0,460,'bonus bMatk,30; bonus bMaxSPrate,-2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5464,'Zaha_Doll_Hat','Zaha Doll Hat',4,20,NULL,0,NULL,1,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,461,'bonus bInt,3; bonus bMdef,9; bonus2 bMagicAddEle,Ele_Undead,10; .@r0 = getrefine(); autobonus "{ .@r = getrefine(); bonus2 bSPLossRate,10,1000; bonus bMatk,30*.@r; bonus bFixedCast,-80*.@r; }",3*.@r0,3000,BF_MAGIC,"{ active_transform 1518,3000; specialeffect2 EF_POTION_BERSERK; showscript \\\"Bacsojin Power !\\\"; }"; autobonus2 "{ .@r = getrefine(); bonus2 bSPLossRate,10,1000; bonus bMatk,30*.@r; bonus bFixedCast,-80*.@r; }",.@r0,3000,BF_MAGIC,"{ active_transform 1518,3000; specialeffect2 EF_POTION_BERSERK; showscript \\\"Bacsojin Power !\\\"; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5465,'Celestial_Hat','Hat Of Fortune',4,20,NULL,500,NULL,3,NULL,1,0xFFFFFFFF,63,2,256,NULL,'40',1,462,'bonus bLuk,2; bonus bMdef,5; .@r = getrefine(); if(.@r>4) bonus bLuk,.@r-4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5466,'Wind_Milestone','Wind Milestone',4,20,NULL,100,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'30',1,463,'bonus bAgi,2; skill "AL_TELEPORT",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5467,'Helm_Of_Dragoon','Helm Of Dragon',4,20,NULL,1000,NULL,10,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,464,'bonus bStr,2; bonus bInt,2; bonus bDex,2; .@r = getrefine(); if(.@r>=7) bonus2 bExpAddRace,RC_Dragon,3; if(.@r>=9) bonus2 bExpAddRace,RC_Dragon,5; bonus3 bAutoSpell,"NPC_DRAGONFEAR",1,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5468,'Parade_Cap','Parade Hat',4,20,NULL,800,NULL,3,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,465,'bonus bDelayRate,-5; bonus bMdef,2; .@r = getrefine(); if(.@r>5) bonus bVariableCastrate,-(.@r-5);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5469,'Noble_Hat','Musketeer Hat',4,20,NULL,300,NULL,4,NULL,1,0xFFFFFFFF,63,2,256,NULL,'60',1,466,'bonus bDex,3; bonus bFlee,3; .@r = getrefine(); if(.@r>=7){ bonus bFlee,3; bonus bLongAtkRate,3; } if(.@r>=9){ bonus bFlee,4; bonus bLongAtkRate,2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5470,'Eyes_Of_Darkness','Eye Of Darkness',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,512,NULL,'50',0,467,'bonus bDex,1; bonus2 bResEff,Eff_Blind,10000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5471,'Hairband_Of_Reginleif','Hairband Of Reginleif',4,20,NULL,800,NULL,2,NULL,0,0xFFFFFFFF,63,2,512,NULL,'50',0,468,'bonus2 bSubEle,Ele_Water,3; bonus2 bSubEle,Ele_Fire,3; bonus2 bSubEle,Ele_Undead,3; bonus2 bSubEle,Ele_Ghost,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5472,'Red_White_Hat','Red Hat',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,469,'bonus3 bAddMonsterDropItem,554,RC_DemiHuman,200;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5473,'Forceps_Hairpin','Nipper Crab Hairpin',4,20,NULL,500,NULL,8,NULL,0,0xFFFFFFFF,63,2,256,NULL,'30',1,470,'bonus3 bAutoSpellWhenHit,"MG_COLDBOLT",1,30; bonus3 bAddMonsterDropItem,991,RC_Fish,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5474,'Notice_Board','AFK Hat',4,20,NULL,700,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'10',0,471,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5475,'Cube_Mask','Mask Cube',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,513,NULL,'0',0,472,'bonus bAllStats,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5476,'Hairband_Of_Grandpeco','Grand Peco Hairband',4,20,NULL,800,NULL,5,NULL,0,0xFFFFFFFF,63,2,768,NULL,'1',1,473,'bonus2 bAddRace,RC_Brute,7; bonus2 bMagicAddRace,RC_Brute,7; bonus2 bAddRace,RC_DemiHuman,7; bonus2 bMagicAddRace,RC_DemiHuman,7; bonus2 bAddRace,RC_Player_Doram,7; bonus2 bMagicAddRace,RC_Player_Doram,7; bonus3 bAddEff,Eff_Curse,10,ATF_SHORT;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5477,'Bro_Flag','Brazilian Flag Hat',4,20,NULL,100,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'30',1,474,'skill "SM_BASH",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5478,'Classic_Hat','Classic Hat',4,20,NULL,500,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,475,'bonus bStr,2; bonus bMaxHP,300;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5479,'Shaman\'s_Hair_Ornament','Shaman\'s Hair Decoration',4,20,NULL,300,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,476,'bonus bMdef,3; bonus2 bSubEle,Ele_Neutral,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5480,'Bizofnil_Wing_Deco','Bijofnil Wings',4,20,NULL,1000,NULL,6,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,477,'bonus bAllStats,2; bonus2 bSubEle,Ele_All,5; bonus2 bHPRegenRate,(MaxHp*2/100),10000; bonus2 bSPRegenRate,(MaxSp/100),10000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5481,'Hermose_Cap','Hermode Cap',4,20,NULL,1000,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,478,'bonus bAspdRate,10; bonus bBaseAtk,-20; bonus bMatkRate,-10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5482,'Dark_Knight_Mask','Dark Knight Mask',4,20,NULL,3000,NULL,5,NULL,0,0xFFFFFFFF,63,2,769,NULL,'1',1,479,'bonus bStr,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5483,'Odin_Mask','Odin Mask',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,513,NULL,'1',0,480,'bonus2 bSubClass,Class_Boss,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5484,'Taiwan_Flag_Hat','Holidays Hat',4,20,NULL,500,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',0,482,'bonus bAllStats,5; bonus2 bResEff,Eff_Stun,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5485,'Tiger_Face','Tiger Face',4,20,NULL,1000,NULL,3,NULL,0,0xFFFFFFFF,63,2,769,NULL,'60',1,483,'bonus2 bSubRace,RC_Brute,5; bonus2 bAddRace,RC_Brute,5; bonus2 bMagicAddRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5; bonus2 bAddRace,RC_Player_Doram,5; bonus2 bMagicAddRace,RC_Player_Doram,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5486,'J_Anniversary_Hat','Anniversary Hat',4,20,NULL,300,NULL,6,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,395,'bonus bAllStats,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5487,'J_Poringcake_Hat','Poring Cake Hat',4,20,NULL,500,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,417,'bonus bLuk,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5488,'J_Twin_Santahat','Twin Santa Hat',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,390,'bonus bLuk,1; bonus bMdef,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5489,'Love_Daddy','Love Daddy Hat',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,484,'bonus bDex,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5490,'Anubis_Helm','Anubis Helm',4,20,NULL,0,NULL,8,NULL,0,0xFFFFFFFF,63,2,768,NULL,'65',0,485,'bonus bMdef,5; bonus2 bSubClass,Class_Boss,10; bonus bHealpower2,10; bonus bAddItemHealRate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5491,'Hat_Of_Outlaw','Bandit Hat',4,20,NULL,800,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,486,'bonus bStr,2; bonus2 bSubEle,Ele_Fire,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5492,'Boy\'s_Cap_I','Student Cap',4,0,NULL,0,NULL,5,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',0,102,'bonus bMdef,3; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5493,'Ulle_Cap_I','Ulle\'s Cap',4,0,NULL,0,NULL,3,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',0,254,'bonus bDex,2; bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5494,'Spinx_Helm_I','Sphinx Hat',4,0,NULL,0,NULL,5,NULL,0,0x00004082,63,2,257,NULL,'0',0,137,'bonus bStr,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5495,'Power_Of_Thor','Power Of Thor',4,20,NULL,100,NULL,6,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,493,'bonus bInt,1; bonus bDex,1; bonus bMdef,3; bonus bFlee,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5496,'Dice_Hat','Dice Hat',4,20,NULL,300,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'50',0,494,'bonus bLuk,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5497,'King_Tiger_Doll_Hat','King Tiger Doll Hat',4,20,NULL,400,NULL,6,NULL,1,0xFFFFFFFE,63,2,256,NULL,'1',1,495,'bonus bStr,2; bonus bDex,2; bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Player_Doram,10; .@r = getrefine(); autobonus "{ bonus2 bSPLossRate,5,1000; bonus bBaseAtk,25*getrefine(); }",3*.@r,3000,BF_NORMAL,"{ active_transform 1115,3000; specialeffect2 EF_POTION_BERSERK; showscript \\\"Eddga Power !\\\"; }"; autobonus2 "{ bonus2 bSPLossRate,5,1000; bonus bBaseAtk,25*getrefine(); }",.@r,3000,BF_NORMAL,"{ active_transform 1115,3000; specialeffect2 EF_POTION_BERSERK; showscript \\\"Eddga Power !\\\"; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5498,'Wondering_Wolf_Helm','Wandering Wolf Helm',4,20,NULL,600,NULL,5,NULL,1,0xFFFFFFFE,63,2,768,NULL,'1',1,490,'bonus bAgi,5; bonus bFlee,10; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Brute,10; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,10; if(getrefine()>=7){ bonus2 bAddEff,Eff_Bleeding,10; } if(getrefine()>=9){ bonus3 bAutoSpellWhenHit,"MC_LOUD",1,1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5499,'Pizza_Hat','Pizza Hat',4,20,NULL,600,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',0,487,'skill "SM_PROVOKE",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5500,'Icecream_Hat','Icecream Hat',4,0,NULL,300,NULL,6,NULL,0,0xFFFFFFFF,63,2,256,NULL,'30',1,488,'bonus bMdef,3; skill "MG_FROSTDIVER",3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5501,'Pirate\'s_Pride','Pirate\'s Pride',4,0,NULL,100,NULL,6,NULL,0,0xFFFFFFFF,63,2,256,NULL,'10',0,496,'bonus2 bAddRace2,RC2_Ninja,5; bonus2 bSubRace2,RC2_Ninja,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5502,'Necromencer\'s_Hood','Necromancer\'s Hood',4,0,NULL,500,NULL,6,NULL,0,0xFFFFFFFF,63,2,768,NULL,'1',1,491,'bonus bInt,3; bonus bMdef,3; bonus bDefEle,Ele_Undead; bonus2 bSubEle,Ele_Dark,15; bonus2 bSubEle,Ele_Holy,-20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5503,'Rabbit_Magic_Hat','Rabbit Magic Hat',4,0,NULL,800,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,497,'bonus bDex,2; bonus bAgi,2; bonus bMdef,1; bonus bAspdRate,5; bonus bDelayRate,-4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5504,'China_Wedding_Veil','Wedding Weil',4,20,NULL,500,NULL,5,NULL,0,0xFFFFFFFF,63,2,768,NULL,'70',1,489,'bonus bMdef,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5505,'Asara_Fairy_Hat','Asara Fairy Hat',4,0,NULL,500,NULL,2,NULL,0,0xFFFFFFFF,63,2,768,NULL,'50',1,492,'skill "DC_DONTFORGETME",1; bonus bDex,2; bonus bLuk,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5506,'Blue_Pajamas_Hat','Blue Night Cap',4,0,NULL,100,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,501,'bonus bAtkRate,5; bonus bMatkRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5507,'Pink_Pajamas_Hat','Pink Night Cap',4,0,NULL,100,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,502,'bonus bAtkRate,5; bonus bMatkRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5508,'Shark_Hat','Shark Hat',4,20,NULL,500,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,503,'bonus bStr,1; bonus bAgi,2; bonus bMdef,1; bonus2 bAddEle,Ele_Water,5; bonus2 bSubDefEle,Ele_Water,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5509,'Sting_Hat','Sting hat',4,20,NULL,1000,NULL,10,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,504,'bonus bStr,2; bonus bVit,1; bonus bMdef,3; bonus2 bAddEle,Ele_Fire,5; bonus2 bSubDefEle,Ele_Earth,5; bonus3 bAutoSpell,"WZ_EARTHSPIKE",1,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5510,'Shower_Cap','Shower Cap',4,20,NULL,0,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,507,'bonus bMdef,3; bonus bFlee,3; bonus2 bAddEle,Ele_Water,10; bonus2 bSubRace,RC_Fish,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5511,'Samambaia','Samambaia',4,20,NULL,200,NULL,5,NULL,1,0xFFFFFFFF,63,2,768,NULL,'1',1,508,'bonus bHealPower,2; bonus bAspd,1; bonus bFixedCastrate,-10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5512,'Aquarius_Diadem','Aquarius Diadem',4,20,NULL,300,NULL,6,NULL,0,0xFFFFFFFF,63,2,256,NULL,'70',1,509,'bonus bStr,2; bonus bFlee,10; bonus2 bSubEle,Ele_Wind,5; if(getrefine()>6) { bonus bDef,1; bonus bBaseAtk,15; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5513,'Aquarius_Crown','Aquarius Crown',4,20,NULL,300,NULL,6,NULL,0,0xFFFFFFFF,63,2,256,NULL,'70',1,510,'bonus bStr,2; bonus bFlee,10; bonus2 bSubEle,Ele_Wind,5; if(getrefine()>6) { bonus bDef,1; bonus bBaseAtk,15; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5514,'Pisces_Diadem','Pisces Diadem',4,20,NULL,300,NULL,6,NULL,0,0xFFFFFFFF,63,2,256,NULL,'70',1,511,'bonus bInt,2; bonus bMdef,5; bonus2 bSubEle,Ele_Water,5; if(getrefine()>6) { bonus bDef,1; bonus bMatkRate,2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5515,'Pisces_Crown','Pisces Crown',4,20,NULL,300,NULL,6,NULL,0,0xFFFFFFFF,63,2,256,NULL,'70',1,512,'bonus bInt,2; bonus bMdef,5; bonus2 bSubEle,Ele_Water,5; if(getrefine()>6) { bonus bDef,1; bonus bMatkRate,2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5516,'Hawk_Eyes01','Hawk Eyes',4,10,NULL,1000,NULL,0,NULL,0,0x00000800,18,2,512,NULL,'0',0,23,'bonus bDex,1; bonus bLongAtkRate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5517,'Hawk_Eyes02','Hawk Eyes',4,10,NULL,1000,NULL,0,NULL,0,0x00080808,63,2,512,NULL,'0',0,23,'bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5518,'L_Magestic_Goat2','Gigantic Majestic Goat',4,20,NULL,800,NULL,5,NULL,0,0xFFFFFFFF,63,2,256,NULL,'50',1,513,'bonus2 bSubRace,RC_DemiHuman,12; bonus2 bSubRace,RC_Player_Human,12; bonus bBaseAtk,(JobLevel*2)/7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5519,'Peacock_Feather','Peacock Feather',4,20,NULL,800,NULL,4,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,514,'bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5520,'Rabbit_Earplug','Rabbit Earplugs',4,NULL,NULL,400,NULL,0,NULL,1,0xFFFFFFFF,63,2,768,NULL,'1',1,515,'bonus2 bAddClass,Class_All,4; bonus bMatkRate,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5521,'Angry_Mouth_C','Angry Mouth',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'0',0,194,'bonus bDelayRate,-3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5522,'Fanta_Zero_Lemon_Hat','Fanta Zero Lemon Hat',4,20,NULL,100,NULL,4,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,516,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5523,'Sakura_Mist_Hat','Sakura Mist Hat',4,20,NULL,100,NULL,4,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,517,'bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5524,'Sakura_Milk_Tea_Hat','Sakura Milk Tea Hat',4,20,NULL,100,NULL,4,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,518,'bonus bVit,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5525,'First_Leaf_Tea_Hat','Flower Hat',4,20,NULL,100,NULL,4,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,519,'bonus bMaxHP,80; bonus bMaxSP,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5526,'Lady_Tanee_Doll','Tanigumi Girl Doll',4,20,NULL,300,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'60',0,520,'bonus bAgi,2; bonus bFlee,3; bonus2 bSubEle,Ele_Wind,5; bonus2 bAddMonsterDropItem,513,200;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5527,'Lunatic_Hat','Lunatic Hat',4,20,NULL,300,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,521,'bonus bLuk,3; bonus bCritical,5; bonus2 bAddRace,RC_Plant,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5528,'King_Frog_Hat','Frog King Hat',4,20,NULL,500,NULL,4,NULL,1,0xFFFFFFFE,63,2,256,NULL,'30',0,522,'bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5529,'Evil\'s_Bone_Hat','Satanic Bone Helm',4,20,NULL,600,NULL,6,NULL,1,0xFFFFFFFF,63,2,768,NULL,'70',1,523,'bonus bStr,2; bonus bInt,2; bonus bMdef,2; bonus2 bSubEle,Ele_Neutral,5; skill "WZ_FROSTNOVA",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5530,'Raven_Cap','Raven Cap',4,20,NULL,100,NULL,6,NULL,1,0xFFFFFFFF,63,2,256,NULL,'30',1,524,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5531,'B_Dragon_Hat','Baby Dragon Hat',4,45000,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,525,'bonus bDex,2; .@bonus = max(getskilllv("TF_DOUBLE"), 5); skill "TF_DOUBLE",.@bonus; bonus bDoubleRate,.@bonus * 5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5532,'Pirate_Dagger_J','Pirate Dagger',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'0',0,327,'bonus bShortWeaponDamageReturn,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5533,'Emperor_Wreath_J','Emperor Wreath',4,20,NULL,800,NULL,3,NULL,1,0xFFFFFFFF,63,2,256,NULL,'80',1,261,'bonus bAllStats,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5534,'Fox_Hat_J','Fox Hat',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,513,NULL,'70',0,403,'bonus bAgi,1; bonus bFlee2,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5535,'Side_Cap','Side Cap',4,20,NULL,500,NULL,6,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,529,'bonus bVit,1; bonus bDex,1; bonus bMdef,3; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player_Human,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5536,'Spare_Card','Spare Card',4,20,NULL,10,NULL,1,NULL,0,0xFFFFFFFF,63,2,1,NULL,'1',0,526,'bonus bLuk,1; bonus2 bAddMonsterDropItem,6187,1000; bonus bFlee2,1; bonus2 bAddMonsterDropItem,617,5; bonus2 bAddMonsterDropItem,12132,30; bonus2 bAddMonsterDropItem,12130,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5537,'Quati_Hat','Kwati Hat',4,20,NULL,700,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'45',0,527,'bonus bAgi,3; bonus2 bAddRace,RC_Plant,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5538,'Tucan_Hat','Tucan Hat',4,20,NULL,600,NULL,2,NULL,1,0xFFFFFFFF,63,2,768,NULL,'45',0,528,'bonus bDex,3; bonus bCritical,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5539,'Jaguar_Hat','Jaguar Hat',4,20,NULL,400,NULL,4,NULL,1,0xFFFFFFFF,63,2,769,NULL,'25',1,530,'bonus bMdef,2; skill "MC_LOUD",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5540,'Freyja_SCirclet7','Freyja SCirclet7',4,20,NULL,700,NULL,8,NULL,0,0xFFFFFFFF,63,2,256,NULL,'20',0,18,'bonus bStr,1; bonus bInt,1; bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5541,'Freyja_SCirclet30','Freyja SCirclet30',4,20,NULL,700,NULL,8,NULL,0,0xFFFFFFFF,63,2,256,NULL,'20',0,18,'bonus bStr,1; bonus bInt,1; bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5542,'Freyja_SCirclet60','Freyja SCirclet60',4,20,NULL,700,NULL,8,NULL,0,0xFFFFFFFF,63,2,256,NULL,'20',0,18,'bonus bStr,1; bonus bInt,1; bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5543,'Freyja_SCirclet90','Freyja SCirclet90',4,20,NULL,700,NULL,8,NULL,0,0xFFFFFFFF,63,2,256,NULL,'20',0,18,'bonus bStr,1; bonus bInt,1; bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5544,'Time_Keeper_Hat','Time Keeper Hat',4,30000,NULL,0,NULL,6,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,240,'bonus bInt,2; bonus bMaxSP,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5545,'Aries_Diadem','Aries Diadem',4,20,NULL,400,NULL,3,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,531,'bonus bVit,2; bonus2 bSubEle,Ele_fire,5; if(getrefine()>6) { bonus bDef,1; bonus bVit,1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5546,'Aries_Crown','Aries Crown',4,20,NULL,400,NULL,3,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,532,'bonus bLuk,2; bonus2 bSubEle,Ele_Fire,5; if(getrefine()>6) { bonus bFlee,2; bonus bLuk,1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5547,'RJC_Katusa','RJC Katusa Flower',4,20,NULL,200,NULL,1,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,533,'bonus2 bSkillAtk,"WZ_HEAVENDRIVE",15+getequiprefinerycnt(EQI_HAND_R); bonus2 bSkillAtk,"WZ_EARTHSPIKE",15+getequiprefinerycnt(EQI_HAND_R); bonus2 bVariableCastrate,"WZ_HEAVENDRIVE",-25; bonus2 bVariableCastrate,"WZ_EARTHSPIKE",-25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5548,'Scarlet_Rose','Scarlet Rose',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'1',0,534,'bonus2 bAddClass,Class_All,1; bonus bMatkRate,1; bonus bMaxSP,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5549,'Taurus_Diadem','Taurus Diadem',4,20,NULL,300,NULL,6,NULL,0,0xFFFFFFFF,63,2,256,NULL,'70',1,535,'bonus bDex,2; bonus bMatkRate,2; bonus bDelayRate,-2; if (getrefine()>6) { bonus bMatkRate,1; bonus bDex,1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5550,'Taurus_Crown','Taurus Crown',4,20,NULL,300,NULL,6,NULL,0,0xFFFFFFFF,63,2,256,NULL,'70',1,536,'bonus bAgi,2; bonus2 bSubClass,Class_All,2; bonus bDelayRate,-2; bonus2 bAddEff,Eff_Stun,2000; if(getrefine()>6) { bonus2 bSubClass,Class_All,1; bonus bStr,1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5551,'Holy_Egg_Hat','Holy Egg Hat',4,20,NULL,0,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,537,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5552,'Fest_Lord_Circlet','Festival Grand Circlet',4,0,NULL,0,NULL,8,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',0,93,'bonus bStr,3; bonus bInt,3; bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5553,'Fest_Bunny_Band','Festival Bunny Band',4,0,NULL,0,NULL,7,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',0,15,'bonus bMdef,4; bonus2 bSubRace,RC_DemiHuman,9; bonus2 bSubRace,RC_Player_Human,9;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5554,'Octopus_Hat','Octopus Hat',4,20,NULL,200,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,538,'bonus bMdef,3; bonus3 bAutoSpell,"SM_PROVOKE",5,10; bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5555,'Leaf_Cat_Hat','Leaf Cat Hat',4,20,NULL,100,NULL,6,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,539,'bonus bAgi,2; bonus3 bAutoSpellWhenHit,"AL_HEAL",3,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5556,'Fur_Seal_Hat','Seal Hat',4,20,NULL,500,NULL,3,NULL,0,0xFFFFFFFF,63,2,769,NULL,'55',1,540,'bonus bInt,1; bonus3 bAutoSpell,"WZ_FROSTNOVA",1,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5557,'Wild_Rose_Hat','Wild Rose Hat',4,20,NULL,500,NULL,6,NULL,1,0xFFFFFFFE,63,2,256,NULL,'20',1,541,'bonus bAgi,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5558,'Saci_Hat','Luxury Hat',4,20,NULL,100,NULL,6,NULL,1,0xFFFFFFFF,63,2,256,NULL,'30',1,542,'bonus3 bAddMonsterDropItem,510,RC_Plant,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5559,'Piece_Of_White_Cloth_E','Piece Of White Cloth',4,0,NULL,0,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,543,'bonus2 bAddClass,Class_All,6; bonus bMatkRate,6; bonus bLongAtkRate,6; bonus bHealPower,6; bonus bVariableCastrate,-20; bonus bAspd,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5560,'Bullock_Helm_J','Bullock Helm',4,20,NULL,3000,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'75',1,322,'bonus bMaxHP,100; bonus bNoKnockback; 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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5561,'Rabbit_Magic_Hat_J','Magic Rabbit Hat',4,0,NULL,800,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,497,'bonus bInt,1; bonus bMaxSP,50; bonus4 bAutoSpellWhenHit,"MG_FIREBOLT",3,10,3; bonus4 bAutoSpellWhenHit,"MG_COLDBOLT",3,10,3; bonus4 bAutoSpellWhenHit,"MG_LIGHTNINGBOLT",3,10,3; bonus3 bAutoSpellWhenHit,"AL_HEAL",1,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5562,'Good_Wedding_Veil_J','Luxurious Wedding Veil',4,0,NULL,500,NULL,0,NULL,1,0xFFFFFFFF,63,2,768,NULL,'45',0,489,'bonus bMdef,10; bonus bVariableCastrate,-3; bonus bUseSPrate,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5563,'Dolor_Hat','Dolor Hat',4,20,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',0,547,'bonus3 bAutoSpell,"PR_LEXAETERNA",1,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5564,'Crown_Of_Deceit','Crown of Deceit',4,20,NULL,300,NULL,3,NULL,1,0xFFFFFFFF,63,2,768,NULL,'85',1,544,'.@r = getrefine(); bonus bInt,4; bonus bMdef,10; bonus bVariableCastrate,-10; if(.@r==7||.@r==8){ bonus bDef,2; bonus bMatkRate,5; bonus bVariableCastrate,-5; } if(.@r>=9){ bonus bMdef,5; bonus bMatkRate,5; bonus bVariableCastrate,-5; bonus bDelayrate,-5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5565,'Dragon_Arhat_Mask','Dragon Arhat Mask',4,0,NULL,0,NULL,5,NULL,0,0xFFFFFFFF,63,2,513,NULL,'1',0,545,'bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5566,'Tiger_Arhat_Mask','Tiger Arhat Mask',4,0,NULL,0,NULL,1,NULL,0,0xFFFFFFFF,63,2,513,NULL,'1',0,546,'bonus2 bAddRace,RC_DemiHuman,2; bonus2 bAddRace,RC_Player_Human,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5567,'Bright_Fury','Bright Fury',4,20,NULL,300,NULL,1,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,548,'bonus bStr,1; bonus2 bAddClass,Class_All,2; bonus bAspdRate,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5568,'Rabbit_Bonnet','Rabbit Bonnet',4,20,NULL,1000,NULL,1,NULL,0,0xFFFFFFFF,63,2,768,NULL,'0',1,549,'bonus bInt,2; bonus bDelayRate,-3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5569,'Gemini_Diadem','Gemini Diadem',4,20,NULL,300,NULL,6,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,550,'bonus bDex,2; bonus bMatkRate,2; if(getrefine()>6) { bonus bDex,1; bonus bMatk,30; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5570,'Gemini_Crown','Gemini Crown',4,20,NULL,300,NULL,6,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,551,'bonus bAgi,2; bonus bFlee,10; if(getrefine()>6) { bonus bHit,5; bonus bAtk,30; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5571,'Rasta_Wig','Rasta Wig',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,552,'bonus bStr,1; bonus3 bAutoSpellWhenHit,"BA_FROSTJOKER",1,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5572,'Savage_Baby_Hat','Savage Babe Hat',4,20,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,63,2,256,NULL,'30',1,553,'bonus bVit,2; bonus2 bAddEff,Eff_Stun,500; bonus2 bSubRace,RC_Brute,-10; bonus2 bSubRace,RC_Player_Doram,-10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5573,'Bogy_Horn','Dokebi Horn',4,20,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,63,2,256,NULL,'75',1,554,'bonus2 bAddMonsterDropItemGroup,IG_Jewel,100; bonus3 bAutoSpell,"MC_MAMMONITE",5,70;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5574,'Pencil_In_Mouth','Well-Chewed Pencil',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'10',0,555,'bonus bHit,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5575,'Onigiri_Hat','Rice Ball Hat',4,20,NULL,100,NULL,6,NULL,1,0xFFFFFFFF,63,2,256,NULL,'30',0,556,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5576,'Japan_Winecup','Wine Cup',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,1,NULL,'0',0,557,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5577,'Dark_Knight_MaskB','Dark Knight Mask',4,NULL,NULL,3000,NULL,5,NULL,0,0xFFFFFFFF,63,2,769,NULL,'80',1,479,'bonus bDex,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5578,'Voyage_Hat','Voyage Hat',4,200,NULL,10,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,236,'bonus bAgi,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5579,'Wanderer\'s_Sakkat','Wanderer\'s Sakkat',4,20,NULL,300,NULL,2,NULL,1,0xFFFFFFFF,63,2,768,NULL,'1',1,558,'bonus bFlee,3; .@r = getrefine(); if(.@r>=7){ bonus bFlee,2; bonus bAgi,2; } if(.@r>=9){ bonus bCritical,10; bonus bAspdRate,8; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5580,'Red_Beret','Red Beret',4,20,NULL,100,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',0,559,'bonus bAllStats,3; bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5581,'Cancer_Diadem','Cancer Diadem',4,20,NULL,300,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'70',1,560,'bonus bInt,2; bonus2 bSubEle,Ele_Water,5; if(getrefine()>6) { bonus bMdef,1; bonus bHealPower,3; bonus bMatkRate,2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5582,'Cancer_Crown','Cancer Crown',4,20,NULL,300,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'70',1,561,'bonus bStr,2; bonus2 bSubEle,Ele_Water,5; if(getrefine()>6) { bonus bDef,1; bonus bBaseAtk,15; bonus bFlee,10; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5583,'Para_Team_Hat','Eden Team Hat I',4,0,NULL,0,NULL,5,NULL,0,0xFFFFFFFF,63,2,256,NULL,'7',1,465,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5584,'Majestic_Evil_Horn','Majestic Evil Horns',4,0,NULL,400,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,562,'bonus2 bSubRace,RC_Demon,3; bonus2 bHPDrainRate,3,15; bonus2 bSPDrainRate,1,7; /*Gold PC Room bonus bSPGainValue,2; bonus bMagicSPGainValue,2; bonus2 bSubRace,RC_Demon,2;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5585,'Rune_Hairband','Rune Cloth Circlet',4,20,NULL,400,NULL,1,NULL,1,0xFFFFFFFF,63,2,768,NULL,'1',1,564,'bonus2 bSubEle,Ele_Neutral,3; bonus bHit,5; bonus2 bHPDrainRate,30,10; bonus2 bSPDrainRate,10,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5586,'Mosquito_Coil','Mosquito Coil',4,20,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,563,'bonus2 bAddDamageClass,1627,100; bonus2 bAddDamageClass,1095,20; bonus2 bAddDamageClass,1160,20; bonus2 bAddDamageClass,1105,20; bonus2 bAddDamageClass,1097,20; bonus2 bAddDamageClass,1051,20; bonus2 bAddDamageClass,1053,20; bonus2 bAddDamageClass,1054,20; bonus2 bAddDamageClass,1048,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5587,'Mosquito_Coil_1Use','Mosquito Coil',4,0,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,563,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5588,'Leo_Crown','Leo Crown',4,20,NULL,300,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,565,'bonus bStr,2; bonus2 bSubEle,Ele_Fire,5; if(getrefine()>6) { bonus bDef,1; bonus bFlee,10; bonus3 bAutoSpell,"TK_SEVENWIND",4,50; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5589,'Leo_Diadem','Leo Diadem',4,20,NULL,300,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,566,'bonus bDex,2; bonus2 bSubEle,Ele_Fire,5; if(getrefine()>6) { bonus bFlee,10; bonus bAspdRate,3; autobonus "{ bonus bSplashRange,1; }",10,10000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5590,'K_Poring_Cake_Cap','Poring Cake Hat',4,20,NULL,200,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,417,'bonus bLuk,3; bonus bMdef,5; bonus bMaxHP,BaseLevel*2; bonus bMaxSP,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5591,'Desert_Prince','Desert Prince',4,20,NULL,100,NULL,3,NULL,1,0xFFFFFFFF,63,2,256,NULL,'30',0,567,'bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5592,'Sigrun\'s_Wing','Sigrun\'s Wings',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,63,2,512,NULL,'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; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5593,'K_Rabbit_Bonnet','Rabbit Bonnet',4,20,NULL,200,NULL,1,NULL,1,0xFFFFFFFF,63,2,768,NULL,'1',1,549,'bonus bBaseAtk,10; bonus bMatk,10; bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3; bonus bDelayRate,-3; if(getrefine()>6) { bonus2 bSubDefEle,Ele_All,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5594,'Donut_In_Mouth','Donut In Mouth',4,20,NULL,50,NULL,1,NULL,0,0xFFFFFFFF,63,2,1,NULL,'1',0,569,'bonus2 bHPRegenRate,1,10000; bonus bMaxHP,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5595,'Eye_Of_Juno','Eye Of Juno',4,20,NULL,400,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'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; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5596,'4Leaf_Clover_In_Mouth','Four Leaf Clover',4,20,NULL,0,NULL,2,NULL,0,0xFFFFFFFF,63,2,1,NULL,'1',0,571,'bonus bBaseAtk,5; bonus bMatk,5; bonus bMdef,2; /*Gold PC Room: bonus bAllStats,1; bonus2 bExpAddRace,RC_All,2; */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5597,'Bubble_Gum_In_Mouth','Bubble Gum In Mouth',4,20,NULL,0,NULL,2,NULL,0,0xFFFFFFFF,63,2,1,NULL,'1',0,572,'bonus bBaseAtk,5; bonus bMatk,5; bonus bMdef,2; /*Gold PC Room: bonus bAllStats,1; bonus2 bDropAddClass,Class_All,5; */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5598,'Virgo_Crown','Virgo Crown',4,20,NULL,300,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'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; }"; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5599,'Virgo_Diadem','Virgo Diadem',4,20,NULL,300,NULL,3,NULL,1,0xFFFFFFFF,63,2,256,NULL,'70',1,574,'bonus bAspdRate,3; bonus2 bSubEle,Ele_Earth,5; if(getrefine()>6) bonus3 bAutoSpell,"MO_BALKYOUNG",1,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5600,'Br_Twin_Ribbon','Brazil Twin Ribbon',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,575,'bonus bAllStats,3; bonus bMdef,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5601,'Br_Beret','Brazil Beret',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,576,'bonus bAllStats,3; bonus bMdef,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5602,'Jaguar_Hat_J','Jaguar Hat J',4,20,NULL,300,NULL,0,NULL,1,0xFFFFFFFF,63,2,513,NULL,'50',0,530,'bonus2 bAddEle,Ele_Fire,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5603,'RTC_Winner_Only','RTC First Place',4,0,NULL,250,NULL,8,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,577,'bonus bAllStats,3; bonus bAspdRate,10; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5604,'RTC_Second_Best','RTC Second Place',4,0,NULL,250,NULL,6,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,578,'bonus bAllStats,2; bonus bAspdRate,7; bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player_Human,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5605,'RTC_Third_Best','RTC Third Place',4,0,NULL,250,NULL,4,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,579,'bonus bAllStats,1; bonus bAspdRate,5; bonus2 bAddRace,RC_DemiHuman,1; bonus2 bAddRace,RC_Player_Human,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5606,'Campume_Hat','Champune Hat',4,500,NULL,1200,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'3',1,580,'bonus bAllStats,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5607,'Lyria_Doll_Hat','Lyria Doll Hat',4,0,NULL,500,NULL,0,NULL,1,0xFFFFFFFF,63,2,256,NULL,'60',0,581,'bonus bMaxHP,500; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5608,'Dorothy_Doll_Hat','Dorothy Doll Hat',4,0,NULL,500,NULL,0,NULL,1,0xFFFFFFFF,63,2,256,NULL,'60',0,582,'bonus bMaxSP,80; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5609,'Chung_Hairband','Chung Hairband',4,0,NULL,500,NULL,5,NULL,1,0xFFFFFFFF,63,2,256,NULL,'60',0,583,'bonus bLuk,3; bonus bMdef,4; bonus3 bAutoSpellWhenHit,"MC_MAMMONITE",5,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5610,'Ice_Wing_Ear','Ice Wing Ear',4,0,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,512,NULL,'10',0,584,'bonus bLuk,1; bonus3 bAutoSpellWhenHit,"MG_COLDBOLT",5,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5611,'Turtle_Hat','Turtle Hat',4,0,NULL,300,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'10',1,585,'bonus bAgi,1; bonus3 bAutoSpellWhenHit,"AL_DECAGI",3,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5612,'F_Blue_Drooping_Kitty','F Blue Drooping Kitty',4,250000,NULL,500,NULL,1,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',1,277,'bonus bMdef,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5613,'F_Flying_Angel','F Flying Angel',4,20,NULL,300,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'10',1,264,'bonus bInt,1; bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5614,'F_Smoking_Pipe_','F Smoking Pipe',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFE,63,2,1,NULL,'0',0,55,'bonus bVit,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5615,'F_Pair_Of_Red_Ribbon_','F Pair Of Red Ribbon',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,512,NULL,'45',0,169,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5616,'F_Fish_On_Head_','F Fish On Head',4,20,NULL,500,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'50',1,149,'bonus bDex,1; bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5617,'F_Hibiscus','F Hibiscus',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'10',0,210,'bonus bInt,1; bonus bDex,1; bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5618,'F_Cat_Hat','F Cat Hat',4,20,NULL,300,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,182,'bonus bLuk,2; bonus bMdef,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5619,'F_Bunny_Band_','F Bunny Band',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,15,'bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5620,'F_Magestic_Goat_TW','F Magestic Goat TW',4,20,NULL,800,NULL,5,NULL,0,0x006444A2,63,2,256,NULL,'0',1,41,'bonus bStr,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5621,'F_Sheep_Hat','F Sheep Hat',4,20,NULL,150,NULL,1,NULL,0,0x00008110,63,2,256,NULL,'0',0,205,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5622,'F_Mini_Propeller_','F Mini Propeller',4,20,NULL,200,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,270,'bonus bDex,1; bonus bAgi,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5623,'F_Alice_Doll','F Alice Doll',4,20,NULL,500,NULL,0,NULL,1,0xFFFFFFFE,63,2,256,NULL,'30',0,208,'bonus bStr,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5624,'F_Red_Glasses','F Red Glasses',4,20,NULL,0,NULL,1,NULL,0,0xFFFFFFFF,63,2,512,NULL,'0',0,316,'bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5625,'F_Chick_Hat','F Chick Hat',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'10',0,311,'bonus bLuk,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5626,'F_White_Deviruchi_Cap','F White Deviruchi Cap',4,20,NULL,800,NULL,2,NULL,0,0xFFFFFFFE,63,2,256,NULL,'64',1,272,'bonus bStr,1; bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5627,'F_Vane_Hairpin','F Vane Hairpin',4,20,NULL,300,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'30',0,313,'bonus bAgi,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5628,'F_Pecopeco_Hairband','F Pecopeco Hairband',4,20,NULL,0,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',0,314,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5629,'F_Vacation_Hat','F Vacation Hat',4,20,NULL,200,NULL,1,NULL,1,0xFFFFFFFF,63,2,256,NULL,'30',0,315,'bonus bVit,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5630,'F_Charming_Ribbon','F Charming Ribbon',4,20,NULL,400,NULL,1,NULL,1,0xFFFFFFFF,63,2,256,NULL,'10',1,211,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5631,'F_Water_Lily_Crown','F Water Lily Crown',4,20,NULL,200,NULL,0,NULL,1,0xFFFFFFFF,63,2,256,NULL,'30',0,312,'bonus bDex,1; bonus bAgi,1; bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5632,'F_Vanilmirth_Hat','F Vanilmirth Hat',4,20,NULL,1000,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'30',0,317,'bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5633,'F_Drooping_Bunny_','F Drooping Bunny',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,249,'bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5634,'F_Kettle_Hat','F Kettle Hat',4,20,NULL,600,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'30',1,318,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5635,'F_Dragon_Skull','F Dragon Skull',4,20,NULL,800,NULL,5,NULL,0,0xFFFFFFFF,63,2,256,NULL,'50',1,319,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5636,'F_Ramen_Hat','F Ramen Hat',4,20,NULL,0,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',0,320,'bonus bDex,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5637,'F_Pink_Fur_Hat','F Pink Fur Hat',4,20,NULL,350,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,281,'bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5638,'F_Puppy_Hat','F Puppy Hat',4,20,NULL,500,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'30',0,234,'bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5639,'F_Magic_Eyes','F Magic Eyes',4,20,NULL,300,NULL,1,NULL,0,0x00810204,63,2,256,NULL,'30',1,209,'bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5640,'F_Jumping_Poring','F Jumping Poring',4,0,NULL,300,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',0,349,'bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5641,'F_Robo_Eye','F Robo Eye',4,20,NULL,200,NULL,1,NULL,0,0xFFFFFFFF,63,2,512,NULL,'10',0,345,'bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5642,'F_Yellow_Wizardry_Hat','F Yellow Wizardry Hat',4,20,NULL,300,NULL,1,NULL,0,0x00810204,63,2,256,NULL,'0',1,286,'bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5643,'F_Crescent_Helm','F Crescent Helm',4,20,NULL,3000,NULL,8,NULL,0,0x000444A2,63,2,768,NULL,'50',1,213,'bonus bVit,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5644,'F_Tiger_Mask','F Tiger Mask',4,20,NULL,400,NULL,2,NULL,0,0xFFFFFFFF,63,2,768,NULL,'50',0,181,'bonus bStr,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5645,'F_Fantastic_Wig','F Fantastic Wig',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,768,NULL,'0',1,308,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5646,'F_Whisper_Mask','F Whisper Mask',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,769,NULL,'0',0,321,'bonus bAgi,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5647,'F_Bunny_Band_C','F Bunny Band C',4,1,NULL,0,NULL,9,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',0,15,'bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5648,'F_Centimental_Flower_C','F Centimental Flower C',4,1,NULL,0,NULL,1,NULL,0,0xFFFFFFFE,63,2,1,NULL,'1',0,56,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5649,'F_Apple_Of_Archer_C','F Apple Of Archer C',4,1,NULL,0,NULL,7,NULL,0,0xFFFFFFFE,63,2,256,NULL,'1',0,72,'bonus bDex,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5650,'F_Elven_Ears_C','F Elven Ears C',4,1,NULL,0,NULL,2,NULL,0,0xFFFFFFFE,63,2,512,NULL,'1',0,73,'bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5651,'F_Brooch_C','F Brooch C',4,1,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'1',0,0,'bonus bAgi,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5652,'F_Magestic_Goat_C','F Magestic Goat C',4,2,NULL,0,NULL,5,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',0,41,'bonus bStr,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5653,'Darkness_Helm_J','Darkness Helm',4,20,NULL,500,NULL,3,NULL,1,0xFFFFFFFF,63,2,256,NULL,'70',1,586,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5654,'Holy_Marching_Hat_J','Holy Marching Hat',4,20,NULL,200,NULL,5,NULL,1,0xFFFFFFFF,63,2,256,NULL,'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; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5655,'Dark_Snake_Lord_Hat_J','Evil Snake Lord Hat',4,20,NULL,500,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'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; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5656,'Scooter_Hat_J','Scooter Helmet',4,20,NULL,1000,NULL,7,NULL,1,0xFFFFFFFF,63,2,256,NULL,'50',1,588,'bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5657,'Antique_Pipe_J','Captain\'s Pipe',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'30',0,383,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5658,'Imp_Hat','Imp Hat',4,20,NULL,400,NULL,1,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,589,'bonus3 bAutoSpell,"SA_FLAMELAUNCHER",1,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5659,'Sleepr_Hat','Sleeper Hat',4,20,NULL,400,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,590,'bonus3 bAutoSpell,"SA_SEISMICWEAPON",1,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5660,'Gryphon_Hat','Gryphon Hat',4,20,NULL,400,NULL,1,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,591,'bonus bAgi,2; if (getrefine() > 6) { bonus bAgi,2; } if (getrefine() > 8) { bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5661,'Red_Pirate_Bandana','Red Pirate Bandana',4,0,NULL,0,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'10',1,592,'bonus bStr,1; bonus bDex,1; bonus bAspdRate,2; bonus bVariableCastrate,-2; bonus3 bAutoSpell,"MO_EXTREMITYFIST",1,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5662,'Libra_Crown','Libra Crown',4,10,NULL,300,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,593,'bonus bDex,3; bonus2 bSubEle,Ele_Wind,7; if (getrefine()>=7) { bonus bMatkRate,3; } if (getrefine()>=9) { bonus bMatkRate,5; bonus3 bAutoSpellWhenHit,"WZ_FROSTNOVA",5,20;}',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5663,'Libra_Diadem','Libra Diadem',4,10,NULL,300,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,594,'bonus bBaseAtk,7; if (getrefine()>=7) { bonus3 bAutoSpell,"TK_SEVENWIND",2,5; } if (getrefine()>=9) { bonus bFlee,5; bonus2 bAddClass,Class_All,3; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5664,'Filir_Wing','Filir\'s Pinions',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,512,NULL,'70',0,595,'bonus bAspdRate,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5665,'Shaman_Hat','Shaman Hat',4,20,NULL,400,NULL,1,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,596,'bonus bMdef,5; bonus2 bSubEle,Ele_Neutral,3; bonus2 bSubEle,Ele_Water,3; bonus2 bSubEle,Ele_Earth,3; bonus2 bSubEle,Ele_Fire,3; bonus2 bSubEle,Ele_Wind,3; bonus2 bSubEle,Ele_Poison,3; bonus2 bSubEle,Ele_Holy,3; bonus2 bSubEle,Ele_Dark,3; bonus2 bSubEle,Ele_Ghost,3; bonus2 bSubEle,Ele_Undead,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5666,'Golden_Crown','Golden Crown',4,20,NULL,500,NULL,8,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,597,'bonus bInt,1; bonus bDex,1; bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5667,'Skull_Hood','Skull Hood',4,20,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,63,2,768,NULL,'30',1,598,'bonus2 bSubRace,RC_Demon,10; bonus2 bSubRace,RC_Undead,10; if(getrefine()>=7) autobonus "{ bonus bCritical,30; bonus bHit,10; }",10,10000,0,"{ specialeffect2 EF_ENHANCE; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5668,'Weird_Pumpkin_Hat','Weird Pumpkin Hat',4,20,NULL,0,NULL,5,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,206,'bonus bMdef,5; bonus2 bAddMonsterDropItem,6097,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5669,'Poring_Party_Hat_J','Poring Party Hat J',4,20,NULL,300,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,340,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5670,'Aniv_Star_Hat','Aniv Star Hat',4,20,NULL,300,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,599,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5671,'Drooping_Morocc_Minion','Drooping Morocc Minion',4,20,NULL,300,NULL,0,NULL,1,0xFFFFFFFF,63,2,256,NULL,'70',0,600,'bonus bSPGainValue,2; bonus3 bAutoSpellWhenHit,"NPC_CRITICALWOUND",2,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5672,'Southern_Cross','Southern Cross',4,20,NULL,600,NULL,3,NULL,1,0xFFFFFFFF,63,2,256,NULL,'50',1,601,'bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5673,'Home_Cherry_Blossom','Home Cherry Blossom',4,20,NULL,100,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'30',1,602,'bonus bNoCastCancel; bonus bVariableCastrate,35;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5674,'Pig_Moneybox','Pig Moneybox',4,20,NULL,1000,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'10',0,603,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5675,'Poring_Letter','Poring Letter',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'10',0,604,'bonus2 bAddMonsterDropItem,619,10; bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5676,'Scorpio_Crown','Scorpio Crown',4,20,NULL,300,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,605,'bonus bAspdRate,3; bonus2 bSubEle,Ele_Water,5; .@r = getrefine(); if (.@r>6) { bonus3 bAutoSpell,"TK_SEVENWIND",3,20; } if (.@r>7) { bonus bAspdRate,2; } if (.@r>8) { bonus3 bAutoSpell,"WZ_FROSTNOVA",5,10; } if (.@r>9) { bonus bAspdRate,2; bonus bBaseAtk,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5677,'Scorpio_Diadem','Scorpio Diadem',4,20,NULL,300,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,606,'bonus bDex,2; if (getrefine()>6) { bonus bDex,1; bonus bAtk,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5678,'Notation_Hairband','Notation Hairband',4,200,NULL,100,NULL,5,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,607,'bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5679,'Engineer_Cap','Engineer Cap',4,20,NULL,200,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'10',1,608,'bonus2 bAddRace,RC_Formless,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5680,'Hawkeyes','Hawkeyes',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,512,NULL,'10',0,609,'bonus bHit,10; bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5681,'F_Ribbon_Green','Green Ribbon',4,800,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,0,256,NULL,'0',1,244,'bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5682,'Triangle_Rune_Cap','Triangle Rune Cap',4,20,NULL,300,NULL,5,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,610,'bonus bInt,1; 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; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5683,'Majestic_Goat_Repl','Baphomet Horns',4,20,NULL,100,NULL,5,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,41,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5684,'Jewel_Crown_Repl','Ornate Crown',4,20,NULL,100,NULL,5,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,88,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5685,'Prontera_Army_Cap_Repl','Army Cap',4,20,NULL,100,NULL,5,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,48,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5686,'Feather_Bonnet_Repl','Nice Hat Feather',4,20,NULL,100,NULL,5,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,104,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5687,'Viking_Helm_Repl','Orc Helm',4,20,NULL,100,NULL,5,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,86,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5688,'2009Love_Daddy','2009 Love Dad',4,20,NULL,100,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,611,'bonus bVit,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5689,'Queen_Ant_Diadem','Queen Ant Diadem',4,20,NULL,300,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'75',1,612,'bonus3 bAutoSpellWhenHit,"MG_SIGHT",1,5; bonus2 bSubRace,RC_Insect,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5690,'Red_Wing_Hat','Red Wing Hat',4,20,NULL,600,NULL,5,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,613,'bonus bHPrecovRate,20; bonus bSPrecovRate,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5691,'Catain_Bandanna','Sailor\'s Bandana',4,20,NULL,10,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,542,'bonus bDex,1; bonus2 bSubEle,Ele_Poison,20; bonus2 bResEff,Eff_Poison,2000; bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5692,'Sea_Cat_Hat','Sea Cat Hat',4,20,NULL,10,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,539,'bonus bDex,1; bonus2 bResEff,Eff_Curse,2000; bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5693,'No_Fear_Underware','No Fear Underwear',4,0,NULL,0,NULL,10,NULL,0,0xFFFFFFFF,63,2,256,NULL,'20',0,30,'bonus bStr,1; bonus bInt,1; bonus bDex,1; bonus bMaxHP,700; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5694,'No_Fear_P_Headgear','No Fear P Headgear',4,0,NULL,0,NULL,1,NULL,0,0xFFFFFFFE,63,2,256,NULL,'20',0,614,'bonus bVit,1; bonus bMaxHP,100; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5695,'E_Blue_Drooping_Kitty','E Blue Drooping Kitty',4,250000,NULL,500,NULL,1,NULL,0,0,7,2,256,NULL,'0',1,277,'bonus bMdef,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5696,'E_Flying_Angel','E Flying Angel',4,20,NULL,300,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'10',1,264,'bonus bInt,1; bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5697,'E_Smoking_Pipe_','E Smoking Pipe',4,20,NULL,100,NULL,0,NULL,0,0,7,2,1,NULL,'0',0,55,'bonus bVit,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5698,'E_Pair_OE_Red_Ribbon_','E Pair OE Red Ribbon',4,20,NULL,100,NULL,1,NULL,0,0,7,2,512,NULL,'45',0,169,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5699,'E_Fish_On_Head_','E Fish On Head',4,20,NULL,500,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'50',1,149,'bonus bDex,1; bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5700,'E_Hibiscus','E Hibiscus',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'10',0,210,'bonus bInt,1; bonus bDex,1; bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5701,'E_Cat_Hat','E Cat Hat',4,20,NULL,300,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,182,'bonus bLuk,2; bonus bMdef,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5702,'E_Bunny_Band_','E Bunny Band',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,15,'bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5703,'E_Magestic_Goat_TW','E Magestic Goat TW',4,20,NULL,800,NULL,5,NULL,0,0x006444A2,63,2,256,NULL,'0',1,41,'bonus bStr,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5704,'E_Sheep_Hat','E Sheep Hat',4,20,NULL,150,NULL,1,NULL,0,0x00008110,63,2,256,NULL,'0',0,205,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5705,'E_Mini_Propeller_','E Mini Propeller',4,20,NULL,200,NULL,2,NULL,0,0,7,2,256,NULL,'0',1,270,'bonus bDex,1; bonus bAgi,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5706,'E_Alice_Doll','E Alice Doll',4,20,NULL,500,NULL,0,NULL,1,0xFFFFFFFE,63,2,256,NULL,'30',0,208,'bonus bStr,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5707,'E_Red_Glasses','E Red Glasses',4,20,NULL,0,NULL,1,NULL,0,0xFFFFFFFF,63,2,512,NULL,'0',0,316,'bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5708,'E_Chick_Hat','E Chick Hat',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'10',0,311,'bonus bLuk,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5709,'E_White_Deviruchi_Cap','E White Deviruchi Cap',4,20,NULL,800,NULL,2,NULL,0,0xFFFFFFFE,63,2,256,NULL,'64',1,272,'bonus bStr,1; bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5710,'E_Vane_Hairpin','E Vane Hairpin',4,20,NULL,300,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'30',0,313,'bonus bAgi,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5711,'E_Pecopeco_Hairband','E Pecopeco Hairband',4,20,NULL,0,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',0,314,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5712,'E_Vacation_Hat','E Vacation Hat',4,20,NULL,200,NULL,1,NULL,1,0xFFFFFFFF,63,2,256,NULL,'30',0,315,'bonus bVit,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5713,'E_Charming_Ribbon','E Charming Ribbon',4,20,NULL,400,NULL,1,NULL,1,0xFFFFFFFF,63,2,256,NULL,'10',1,211,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5714,'E_Water_Lily_Crown','E Water Lily Crown',4,20,NULL,200,NULL,0,NULL,1,0,7,2,256,NULL,'30',0,312,'bonus bDex,1; bonus bAgi,1; bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5715,'E_Vanilmirth_Hat','E Vanilmirth Hat',4,20,NULL,1000,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'30',0,317,'bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5716,'E_Drooping_Bunny_','E Drooping Bunny',4,20,NULL,100,NULL,1,NULL,0,0,7,2,256,NULL,'0',1,249,'bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5717,'E_Kettle_Hat','E Kettle Hat',4,20,NULL,600,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'30',1,318,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5718,'E_Dragon_Skull','E Dragon Skull',4,20,NULL,800,NULL,5,NULL,0,0xFFFFFFFF,63,2,256,NULL,'50',1,319,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5719,'E_Ramen_Hat','E Ramen Hat',4,20,NULL,0,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',0,320,'bonus bDex,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5720,'E_Pink_Fur_Hat','E Pink Fur Hat',4,20,NULL,350,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,281,'bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5721,'E_Puppy_Hat','E Puppy Hat',4,20,NULL,500,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'30',0,234,'bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5722,'E_Magic_Eyes','E Magic Eyes',4,20,NULL,300,NULL,1,NULL,0,0x00810204,63,2,256,NULL,'30',1,209,'bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5723,'E_Jumping_Poring','E Jumping Poring',4,0,NULL,300,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',0,349,'bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5724,'E_Robo_Eye','E Robo Eye',4,20,NULL,200,NULL,1,NULL,0,0xFFFFFFFF,63,2,512,NULL,'10',0,345,'bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5725,'E_Yellow_Wizardry_Hat','E Yellow Wizardry Hat',4,20,NULL,300,NULL,1,NULL,0,0x00810204,63,2,256,NULL,'0',1,286,'bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5726,'E_Crescent_Helm','E Crescent Helm',4,20,NULL,3000,NULL,8,NULL,0,0x000444A2,63,2,768,NULL,'50',1,213,'bonus bVit,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5727,'E_Tiger_Mask','E Tiger Mask',4,20,NULL,400,NULL,2,NULL,0,0xFFFFFFFF,63,2,768,NULL,'50',0,181,'bonus bStr,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5728,'E_Fantastic_Wig','E Fantastic Wig',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,768,NULL,'0',1,308,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5729,'E_Bunny_Band_C','E Bunny Band C',4,1,NULL,0,NULL,9,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',0,15,'bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5730,'E_Centimental_Flower_C','E Centimental Flower C',4,1,NULL,0,NULL,1,NULL,0,0xFFFFFFFE,63,2,1,NULL,'1',0,56,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5731,'E_Apple_OE_Archer_C','E Apple OE Archer C',4,1,NULL,0,NULL,7,NULL,0,0xFFFFFFFE,63,2,256,NULL,'1',0,72,'bonus bDex,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5732,'E_Elven_Ears_C','E Elven Ears C',4,1,NULL,0,NULL,2,NULL,0,0xFFFFFFFE,63,2,512,NULL,'1',0,73,'bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5733,'E_Brooch_C','E Brooch C',4,1,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,63,2,136,NULL,'1',0,0,'bonus bAgi,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5734,'E_Magestic_Goat_C','E Magestic Goat C',4,2,NULL,0,NULL,5,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',0,41,'bonus bStr,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5735,'E_Ribbon_Green','Green Ribbon',4,800,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,0,256,NULL,'0',1,244,'bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5736,'EF_Whisper_Mask','Whisper Mask',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,769,NULL,'0',0,321,'bonus bAgi,3; bonus2 bSubEle,Ele_Ghost,-10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5737,'Cactus_Hat','Cactus Hat',4,20,NULL,300,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',0,615,'bonus3 bAddMonsterDropItem,952,RC_Plant,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5738,'Snowman_Hat','Snowman Hat',4,20,NULL,300,NULL,4,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,616,'bonus bStr,1; bonus bInt,1; bonus bMdef,3; bonus2 bSubEle,Ele_Water,7; bonus2 bAddMonsterDropItem,12354,100; bonus2 bAddMonsterDropItem,530,300; bonus5 bAutoSpellwhenhit,"BA_FROSTJOKER",(getrefine()>7?5:1),20,BF_WEAPON|BF_MAGIC,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5739,'Sagittarius_Crown','Sagittarius Crown',4,20,NULL,300,NULL,3,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,617,'bonus bDex,2; bonus2 bSubEle,Ele_Fire,7; .@r = getrefine(); if (.@r>6) { bonus bAspdRate,2; } if (.@r>7) { bonus bAgi,2; } if (.@r>8) { bonus bLongAtkRate,5; } if (.@r>9) { autobonus "{ bonus bAgi,10; bonus bDex,10; }",3,10000,0,"{ specialeffect2 EF_ENHANCE; }"; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5740,'Sagittarius_Diadem','Sagittarius Diadem',4,20,NULL,300,NULL,3,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,618,'bonus bDex,2; bonus bMdef,3; bonus2 bSubEle,Ele_Fire,7; .@r = getrefine(); if (.@r>6) { bonus bVariableCastrate,-3; } if (.@r>7) { bonus5 bAutoSpell,"WZ_SIGHTRASHER",10,5,BF_MAGIC,0; } if (.@r>8) { bonus bVariableCastrate,-2; } if (.@r>9) { bonus bMatkRate,4; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5741,'Im_Egg_Shell_Hat','Eternal Egg Shell',4,20,NULL,0,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'10',1,101,'bonus2 bAddItemGroupHealRate,IG_Potion,10; bonus bHealPower2,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5742,'Rudolf_Santa_Hat','Rudolph Santa Hat',4,20,NULL,400,NULL,5,NULL,0,0xFFFFFFFF,63,2,256,NULL,'10',1,619,'bonus2 bAddMonsterDropItem,538,100; bonus2 bAddMonsterDropItem,539,100; bonus2 bAddItemHealRate,538,100; bonus2 bAddItemHealRate,539,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5743,'Orange_Stem_Hat','Orange Stem Hat',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',0,620,'bonus bLuk,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5744,'Capricorn_Crown','Capricorn Crown',4,20,NULL,300,NULL,3,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,621,'bonus bVit,2; bonus bDex,2; if (getrefine()>6) { bonus3 bAutoSpell,"TK_SEVENWIND",1,500; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5745,'Capricorn_Diadem','Capricorn Diadem',4,20,NULL,300,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,622,'bonus bDex,2; bonus bMdef,5; bonus2 bSubEle,Ele_Earth,5; .@r = getrefine(); if (.@r>6) { bonus bInt,2; } if (.@r>7) { bonus bVariableCastrate,-3; } if (.@r>8) { bonus bHealPower2,4; } if (.@r>9) { bonus3 bAutoSpell,"BS_HAMMERFALL",5,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5746,'Rune_Circlet','Rune Circlet',4,20,NULL,100,NULL,12,NULL,1,0x00000080,56,2,256,NULL,'100',1,623,'bonus bStr,1; bonus bInt,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,10; bonus bMatk,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5747,'Mitra','Mitra',4,20,NULL,100,NULL,12,NULL,1,0x00000100,56,2,256,NULL,'100',1,624,'bonus bVit,1; bonus bInt,1; bonus bMdef,5; bonus bHealPower,5; if(readparam(bInt)>=120){ bonus bMatk,10; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5748,'Sniper_Goggle','Sniper Goggles',4,20,NULL,100,NULL,12,NULL,1,0x00000800,56,2,768,NULL,'100',1,625,'bonus bAgi,1; bonus bDex,1; bonus bMdef,5; if(readparam(bAgi)>=120){ bonus bLongAtkRate,4; bonus bAspd,1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5749,'Driver_Band','Driver Band',4,20,NULL,100,NULL,12,NULL,1,0x00000400,56,1,256,NULL,'100',1,626,'bonus bStr,1; bonus bDex,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,10; bonus bCritical,3; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5750,'Shadow_Handicraft','Shadow Crown',4,20,NULL,100,NULL,12,NULL,1,0x00020000,56,2,256,NULL,'100',1,627,'bonus bAgi,1; bonus bInt,1; bonus bMdef,5; if(readparam(bAgi)>=120){ bonus bBaseAtk,10; bonus bFlee,3; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5751,'Minstrel_Song_Hat','Minstrel Song Hat',4,20,NULL,100,NULL,12,NULL,1,0x00080000,56,1,256,NULL,'100',1,628,'bonus bInt,1; bonus bLuk,1; bonus bMdef,5; bonus bLongAtkRate,5; bonus2 bSkillUseSP,"MI_RUSH_WINDMILL",10; bonus2 bSkillUseSP,"MI_ECHOSONG",10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5752,'Midas_Whisper','Midas Whispers',4,20,NULL,100,NULL,12,NULL,1,0x00040000,56,2,256,NULL,'100',1,629,'bonus bStr,1; bonus bDex,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,5; bonus bAspd,1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5753,'Magic_Stone_Hat','Magic Stone Hat',4,20,NULL,100,NULL,12,NULL,1,0x00000200,56,2,256,NULL,'100',1,630,'bonus bInt,1; bonus bDex,1; bonus bMdef,5; if(readparam(bDex)>=120){ bonus bMatk,10; bonus bVariableCastrate,-2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5754,'Blazing_Soul','Burning Spirit',4,20,NULL,100,NULL,12,NULL,1,0x00008000,56,2,256,NULL,'100',1,631,'bonus bStr,1; bonus bVit,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,10; bonus bHit,3; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5755,'Silent_Executer','Silent Enforcer',4,20,NULL,100,NULL,12,NULL,0,0x00001000,56,2,513,NULL,'100',0,632,'bonus bAgi,1; bonus bMdef,5; if(readparam(bAgi)>=120){ bonus bBaseAtk,10; bonus bFlee2,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5756,'Wind_Whisper','Wispers of Wind',4,20,NULL,100,NULL,12,NULL,1,0x00010000,56,2,256,NULL,'100',1,633,'bonus bInt,1; bonus bDex,1; bonus bMdef,5; if(readparam(bInt)>=120){ bonus bMatk,10; bonus bFlee,3; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5757,'Schmidt_Helm','Reissue Schmitz Helm',4,20,NULL,100,NULL,12,NULL,1,0x00004000,56,2,768,NULL,'100',1,634,'bonus bVit,2; bonus bInt,1; bonus bMdef,5; if(readparam(bInt)>=120){ bonus bMatk,10; bonus bDef,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5758,'Dying_Swan','Resting Swan',4,20,NULL,100,NULL,17,NULL,1,0x00080000,56,0,256,NULL,'100',1,635,'bonus bInt,1; bonus bLuk,1; bonus bMdef,5; bonus bLongAtkRate,5; bonus2 bSkillUseSP,"WA_SWING_DANCE",10; bonus2 bSkillUseSP,"WA_SYMPHONY_OF_LOVER",10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5759,'Noah_Hat','Noah Hat',4,20,NULL,500,NULL,1,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,636,'bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5760,'Driver_Band_','Driver Band',4,20,NULL,100,NULL,12,NULL,1,0x00000400,56,0,256,NULL,'100',1,637,'bonus bStr,1; bonus bDex,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,10; bonus bCritical,3; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5761,'Sloth_Hat','Sloth Hat',4,20,NULL,800,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,638,'bonus bAgi,2; bonus3 bAutoSpell,"AS_SONICBLOW",5,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5762,'Duneyrr_Helm','Duneyrr Helm',4,20,NULL,100,NULL,5,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,639,'bonus bAllStats,1; bonus bMdef,5; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; bonus2 bSubRace,RC_Brute,2; bonus2 bSubRace,RC_Player_Doram,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5763,'Red_Bunny_Band','Red Bunny Band',4,0,NULL,200,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,640,'bonus bAgi,2; bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5764,'Love_Rabbit_Hood','Love Rabbit Hood',4,20,NULL,300,NULL,1,NULL,1,0xFFFFFFFF,63,2,769,NULL,'10',0,549,'bonus3 bAutoSpell,"PR_GLORIA",3,((readparam(bAgi)>=80)?30:10);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5765,'Black_Tail_Ribbon','Black Tail Ribbon',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,256,NULL,'10',1,642,'bonus bMdef,5; bonus bLongAtkDef,10; bonus2 bSubEle,Ele_Neutral,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5766,'Amistr_Cap','Amistr Cap',4,20,NULL,500,NULL,4,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,643,'bonus bVit,1+(getrefine()/2); bonus5 bAutoSpell,"KN_PIERCE",5,10,BF_WEAPON,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5767,'Samurai_Mask','Samurai Mask',4,20,NULL,300,NULL,1,NULL,0,0xFFFFFFFF,63,2,1,NULL,'50',0,644,'bonus2 bAddClass,Class_All,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5768,'Sakura_Coronet','Sakura Coronet',4,20,NULL,800,NULL,1,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,645,'bonus bMdef,3; bonus bMaxSP,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5769,'Gold_Angel_Sculpture','Gold Angel Sculpture',4,100,NULL,0,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'70',0,646,'skill "RG_GRAFFITI",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5770,'Splash_Hat','Splash Hat',4,20,NULL,100,NULL,3,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,649,'autobonus "{}",3,180000,BF_WEAPON,"{ sc_start SC_WINDWEAPON,180000,1; specialeffect2 EF_ENHANCE; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5771,'Family_Hat','Family Hat',4,20,NULL,100,NULL,3,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,650,'bonus bDex,1; bonus bMdef,1; bonus bMaxHPrate,2; bonus bMaxSPrate,2; skill "PR_MAGNIFICAT",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5772,'Red_Navy_Hat','Red Navy Hat',4,3000,NULL,500,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'95',1,651,'bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5773,'Navy_Beret','Navy Beret',4,3000,NULL,500,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'95',1,652,'bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5774,'Red_Pirate_Hat','Red Pirate Hat',4,3000,NULL,500,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'95',1,496,'bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5775,'Choco_Donut_In_Mouth','Choco Donut In Mouth',4,20,NULL,50,NULL,1,NULL,0,0xFFFFFFFF,63,2,1,NULL,'1',0,653,'bonus bMaxHP,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5776,'Blazing_Sun','Blazing Sun',4,0,NULL,500,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,654,'bonus2 bVariableCastrate,"MG_FIREBOLT",-5; bonus2 bSkillAtk,"MG_FIREBOLT",5; bonus2 bVariableCastrate,"MG_FIREBALL",-5; bonus2 bSkillAtk,"MG_FIREBALL",5; bonus2 bSkillAtk,"MG_FIREWALL",3; bonus2 bSkillAtk,"WZ_METEOR",3; bonus bUseSPrate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5777,'Remover_Hat','Remover Hat',4,20,NULL,800,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'30',0,655,'bonus bMdef,1; bonus3 bAddMonsterDropItem,713,RC_Formless,200; bonus3 bAddMonsterDropItem,971,RC_Formless,30; bonus3 bAddMonsterDropItem,972,RC_Formless,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5778,'Blue_Arara_Hat','Blue Arara Hat',4,20,NULL,100,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,656,'bonus bStr,2; autobonus "{ bonus bAspdRate,5; }",10,10000,0,"{ specialeffect2 EF_ENHANCE; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5779,'Drooping_Boto','Drooping Boto',4,20,NULL,100,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,657,'bonus bInt,2; autobonus "{ bonus bMatkRate,3; }",10,10000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5780,'Tendrilion_Hat','Tendrilion Hat',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,658,'skill "WZ_EARTHSPIKE",3; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5781,'Persika','Persika',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',0,659,'bonus bFlee,1; bonus bMaxSP,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5782,'Hoplite_Helmet','Hoplite Helmet',4,20,NULL,700,'0',4,0,1,0xFFFFFFFF,63,2,769,NULL,'1',1,660,'bonus bMaxHPrate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5783,'YellowBunny_Hairband','YellowBunny Hairband',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,662,'bonus bStr,1; bonus bInt,1; bonus bDex,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5784,'PinkBunny_Hairband','PinkBunny Hairband',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,663,'bonus bStr,1; bonus bInt,2; bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5785,'Green_Bunny_Hairband','Green Bunny Hairband',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,664,'bonus bStr,2; bonus bInt,1; bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5786,'Ancient_Elven_Ear','Ancient Elven Ear',4,10,NULL,200,NULL,1,NULL,0,0xFFFFFFFF,63,2,512,NULL,'1',0,665,'bonus bLuk,1; bonus bMaxHP,100; bonus bMaxSP,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5787,'Tha_Maero_Mask','Tha Maero Mask',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,513,NULL,'30',0,666,'bonus bMdef,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5788,'3D_Glasses','3D Glasses',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,512,NULL,'1',0,661,'bonus2 bMagicAddRace,RC_Formless,4; bonus2 bSubEle,Ele_Neutral,5; bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5789,'Thanatos_Mal_Mask','Thanatos Mal Mask',4,20,NULL,100,NULL,3,NULL,0,0xFFFFFFFF,63,2,513,NULL,'30',0,667,'bonus bVit,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5790,'Holy_Mom_Love','TM',4,20,NULL,500,NULL,0,NULL,1,0xFFFFFFFF,63,2,768,NULL,'45',1,610,'bonus2 bSubRace,RC_Demon,-5; bonus2 bSubRace,RC_Undead,-5; bonus3 bAutoSpell,"AL_BLESSING",1,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5791,'Tenkaippin_Ramen','Tenkaippin Ramen',4,20,NULL,500,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'30',0,668,'bonus bInt,-1; bonus bDex,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5792,'Fish_Pin','Fish Pin',4,20,NULL,100,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,669,'bonus2 bSubRace,RC_Fish,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5793,'Ribbon_Of_Life','Ribbon Of Life',4,20,NULL,0,NULL,2,NULL,0,0xFFFFFFFF,63,2,512,NULL,'1',0,575,'bonus bInt,1; bonus bMdef,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5794,'3D_Glasses_','3D Glasses',4,20,NULL,0,NULL,1,NULL,1,0xFFFFFFFF,63,2,512,NULL,'1',0,661,'.@tmp = BaseLevel/30; if(BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Archer||BaseClass==Job_Gunslinger) { bonus bBaseAtk,(3+.@tmp); } else if(BaseClass==Job_Mage||BaseClass==Job_Acolyte||BaseClass==Job_Ninja||BaseClass==Job_Soul_Linker) { bonus bMatk,(3+.@tmp); } else if(BaseClass==Job_Thief) { bonus bFleeRate,(1+.@tmp); } else if(BaseClass==Job_Novice||BaseClass==Job_SuperNovice||BaseClass==Job_Taekwon||BaseClass==Job_Star_Gladiator||BaseClass==Job_Star_Gladiator2) { bonus bMaxHP,(50+BaseLevel); bonus bMaxSP,(50+.@tmp); }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5795,'Red_Dress_Hat','Bright Red Dress Hat',4,20,NULL,200,NULL,0,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,670,'bonus bMdef,7+(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5796,'Cheer_Scarf','Cheer Scarf',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'1',0,369,'bonus2 bExpAddClass,Class_All,10; bonus bMaxHP,200; bonus bMaxSP,50;',NULL,NULL); -#REPLACE INTO `item_db_re` VALUES (5796,'Rooting_Scarf','Rooting Scarf',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'1',0,369,'bonus2 bExpAddClass,Class_All,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5797,'Cheer_Scarf2','Cheer Scarf2',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'1',0,369,'bonus2 bExpAddClass,Class_All,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5798,'Cheer_Scarf3','Cheer Scarf3',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'1',0,369,'bonus2 bExpAddClass,Class_All,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5799,'Cheer_Scarf4','Cheer Scarf4',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'1',0,369,'bonus2 bExpAddClass,Class_All,40;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5800,'Blush_Of_Groom','Blush of Groom',4,20,NULL,50,NULL,0,NULL,0,0xFFFFFFFF,63,2,512,NULL,'0',0,125,'bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5801,'Ribbon_Of_Bride','Red Tailed Ribbon',4,20,NULL,100,NULL,5,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,167,'bonus bAllStats,2; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus3 bAutoSpellWhenHit,"AL_HEAL",(getskilllv("AL_HEAL")==10?10:5),20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5802,'Upgrade_Elephant_Hat','Upgraded Elephant Hat',4,0,NULL,500,NULL,3,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,215,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5803,'Flower_Love_Hat','Love Flower Hat',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,5,'bonus2 bAddMonsterDropItem,608,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5804,'Pirate_Eyepatch','Pirate Eye Bandage',4,1000,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,512,NULL,'0',0,13,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5805,'Victorious_Coronet','Victorious Coronet',4,0,NULL,150,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'70',0,43,'bonus bMaxHPrate,15; bonus bSPrecovRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5806,'Poem_Natalia_Hat','Poet Natalie\'s Hat',4,20,NULL,300,NULL,5,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',0,67,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5807,'October_Fest_Cap','October Fest Cap',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFE,63,2,256,NULL,'50',1,104,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5808,'Diabolus_Helmet','Dark Bacilium',4,20,NULL,250,NULL,5,NULL,1,0x000FDF80,18,2,769,NULL,'0',1,364,'.@r = getrefine(); bonus2 bResEff,Eff_Stone,2000+(.@r*200); bonus2 bResEff,Eff_Freeze,2000+(.@r*200); bonus2 bResEff,Eff_Stun,2000+(.@r*200);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5809,'Boom_Boom_Hat','Boom Boom Hat',4,0,NULL,100,NULL,6,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',0,216,'bonus bAllStats,5; bonus bSpeedRate,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5810,'Ph.D_Hat_V','Ph.D Hat V',4,20,NULL,100,NULL,3,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',1,98,'bonus bInt,5; bonus bVit,3; bonus bDex,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5811,'Santa_Beard','Santa\'s Beard',4,20,NULL,100,NULL,5,NULL,0,0xFFFFFFFF,63,2,1,NULL,'0',0,25,'bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5812,'Hat_Of_Expert','Hat Of Expert',4,0,NULL,0,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,16,'bonus3 bAddEffWhenHit,Eff_Bleeding,500,ATF_TARGET|ATF_SELF; bonus3 bAddEffWhenHit,Eff_Silence,500,ATF_TARGET|ATF_SELF; bonus3 bAddEffWhenHit,Eff_Confusion,500,ATF_TARGET|ATF_SELF; bonus3 bAddEffWhenHit,Eff_Curse,500,ATF_TARGET|ATF_SELF; bonus3 bAddEffWhenHit,Eff_Blind,500,ATF_TARGET|ATF_SELF;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5813,'Red_Ph.D_Hat','Red Ph.D Hat',4,1000,NULL,500,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,481,'bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5814,'Ati_Atihan_Hat3','Ati Atihan Hat3',4,20,NULL,0,NULL,2,NULL,0,0xFFFFFFFF,63,2,769,NULL,'20',0,303,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5815,'Classic_Hat_J','Classic Hat',4,20,NULL,500,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,475,'bonus bStr,1; bonus2 bSubSize,Size_All,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5816,'Cowboy_Hat_J','Purple Cowboy Hat',4,20,NULL,500,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,411,'bonus bBaseAtk,15; bonus bFlee,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5817,'Valentine_Pledge','Valentine Pledge',4,20,NULL,0,NULL,3,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus bAllStats,2; bonus bMdef,3; bonus bHealPower,10; bonus2 bAddClass,Class_All,3; bonus bMatkRate,3; bonus bFlee,10; bonus bAspdRate,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5818,'Carnival_Hat','Carnival Hat',4,0,NULL,0,NULL,6,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,505,'bonus bAllStats,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5819,'Carnival_Circlet','Carnival Circlet',4,0,NULL,0,NULL,6,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,506,'bonus bAllStats,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5820,'Black_Elven_Ears','Black Elven Ears',4,10,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,63,2,512,NULL,'0',0,498,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5821,'Gold_Tulip_Hairpin','Gold Tulip Hairpin',4,10,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,499,'bonus2 bExpAddClass,Class_All,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5822,'Love_Chick_Hat','Love Chick Hat',4,10000,NULL,100,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,500,'bonus bLuk,4; bonus bMaxHP,100; bonus bMaxSP,100; bonus2 bSubRace,RC_Brute,7; bonus2 bSubRace,RC_Player_Doram,7; bonus2 bSubRace,RC_DemiHuman,7; bonus2 bSubRace,RC_Player_Human,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5823,'Love_Arrow','Arrow of Love',4,5000,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus bDex,5; bonus bAgi,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5824,'Fools_Day_Hat','Fools Day Hat',4,20,NULL,300,NULL,6,NULL,0,0xFFFFFFFF,63,2,256,NULL,'30',1,265,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5825,'Badge_Of_Order_Grace','Badge Of Order Grace',4,0,NULL,0,NULL,1,NULL,0,0xFFFFFFFF,63,2,136,NULL,'0',0,0,'bonus bMdef,1; bonus2 bAddClass,Class_All,10; bonus bMatkRate,10; bonus bMaxHP,1500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5826,'Valkyrie_Helmet','Valkyrie Helmet',4,0,NULL,0,NULL,10,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',0,225,'bonus bStr,2; bonus bInt,2; bonus bDex,2; bonus bAgi,2; bonus bAspdRate,3; bonus bMdef,5; bonus bCastrate,-3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5827,'Book_File_Hat','Book File Hat',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,423,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5828,'Honor_Gold_Ring','Honor Gold Ring',4,0,NULL,50,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'1',0,0,'bonus bAllStats,1; bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5829,'Ordinary_Armor','Ordinary Armor',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,16,NULL,'30',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5830,'Woe_Sahkkat','Woe Sahkkat',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'60',1,67,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5831,'Woe_Big_Sis_Ribbon','Woe Big Sis Ribbon',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'60',1,28,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5832,'Woe_Vane_Hairpin','Woe Vane Hairpin',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'60',1,313,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5833,'Woe_Picnic_Hat','Woe Picnic Hat',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'60',1,117,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5834,'Woe_Crown','Woe Crown',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'60',1,45,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5835,'Woe_Tiara','Woe Tiara',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'60',1,19,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5836,'Woe_Boys_Cap','Woe Boys Cap',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'60',1,102,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5837,'Woe_Sunglass','Woe Sunglass',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,63,2,512,NULL,'70',0,12,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5838,'Woe_Fin_Helm','Woe Fin Helm',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,63,2,512,NULL,'70',0,100,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5839,'Woe_Blush','Woe Blush',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,63,2,512,NULL,'70',0,125,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5840,'Woe_Elven_Ears','Woe Elven Ears',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,63,2,512,NULL,'70',0,73,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5841,'Shaman_Hat_','Shaman Hat',4,20,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,63,2,256,NULL,'30',1,596,'bonus bLuk,2; bonus3 bSubEle,Ele_Neutral,3,BF_MAGIC; bonus3 bSubEle,Ele_Water,3,BF_MAGIC; bonus3 bSubEle,Ele_Earth,3,BF_MAGIC; bonus3 bSubEle,Ele_Fire,3,BF_MAGIC; bonus3 bSubEle,Ele_Wind,3,BF_MAGIC; bonus3 bSubEle,Ele_Poison,3,BF_MAGIC; bonus3 bSubEle,Ele_Holy,3,BF_MAGIC; bonus3 bSubEle,Ele_Dark,3,BF_MAGIC; bonus3 bSubEle,Ele_Ghost,3,BF_MAGIC; bonus3 bSubEle,Ele_Undead,3,BF_MAGIC;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5842,'Loyal_Ring1','Loyal Ring1',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'1',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5843,'Loyal_Ring2','Loyal Ring2',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'1',0,0,'bonus bAllStats,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5844,'Loyal_Ring3','Loyal Ring3',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'1',0,0,'bonus bAllStats,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5845,'Buzzy_Ball_Board','Buzzy Ball Board',4,50,NULL,400,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,641,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5846,'Buzzy_Ball_Gum','Buzzy Ball Gum',4,50,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,1,NULL,'1',0,572,'bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5847,'Fools_Day_hat_','Fools Day Helmet',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',0,647,'bonus bInt,5; bonus bVit,-3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5848,'Robin_Eyepatch','Robin Eyepatch',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,512,NULL,'1',0,50,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5849,'Doctor_Hairband','Doctor Hairband',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',0,60,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5850,'Golden_Savage_Hat','Golden Savage Hat',4,20,NULL,500,NULL,5,NULL,0,0xFFFFFFFF,63,2,256,NULL,'50',1,648,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5851,'Summer_Knight','Summer Knight',4,20,NULL,0,NULL,1,NULL,0,0xFFFFFFFF,63,2,768,NULL,'60',0,138,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5852,'Easter_Egg_Shell','Easter Egg Shell',4,20,NULL,500,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5853,'IdRO_Crown','IdRO Crown',4,10,NULL,0,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,165,'bonus bHPrecovRate,7; bonus bSPrecovRate,7; if(getrefine()>7){ bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; bonus bMdef,2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5855,'Fishing_Rod','Fishing Rod',4,10,NULL,0,NULL,0,NULL,NULL,0xFFFFFFFF,63,2,136,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5856,'Passion_FB_Hat','Passion FB Hat',4,20,NULL,600,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,671,'bonus bStr,2; bonus bDex,2; autobonus "{ bonus bFlee,-15; bonus2 bAddClass,Class_All,5; }",30,10000,0,"{ specialeffect2 EF_ENHANCE; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5857,'Cool_FB_Hat','Cool FB Hat',4,20,NULL,600,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,672,'bonus bInt,2; bonus bVit,2; autobonus3 "{ bonus bHealPower,20; }",150,5000,"AL_HEAL","{ specialeffect2 EF_HEAL3; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5858,'Victory_FB_Hat','Victory FB Hat',4,20,NULL,600,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,673,'bonus bInt,2; bonus bDex,2; autobonus "{ bonus bMatkRate,5; bonus bDef,-30; }",3,10000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5859,'Glory_FB_Hat','Glory FB Hat',4,20,NULL,600,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,674,'bonus bAllStats,1; bonus bAspd,1; bonus bBaseAtk,BaseLevel/7; bonus bMatk,BaseLevel/7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5864,'Shadow_Booster','Magical Booster',4,10,NULL,300,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,512,NULL,'1',1,873,'bonus bAspd,1; bonus bDelayrate,-1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5868,'Bushy_Moustache','Bushy Moustache',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'0',0,1004,'bonus bUnbreakableHelm; bonus bBaseAtk,10; bonus bMatk,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5869,'Mimic_Egg_Shell','Mimic Egg Shell',4,10,NULL,100,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,999,'bonus2 bAddEffWhenHit,Eff_Stone,600; bonus bSpeedRate,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5870,'Bunny_Egg_Shell','Bunny Egg Shell',4,10,NULL,100,NULL,5,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,1000,'bonus bAgi,3; bonus bAspd,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5871,'Picky_Egg_Shell','Picky Egg Shell',4,10,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,1001,'bonus bVit,3; bonus bMdef,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5873,'Helmet_Of_Siegfried','Helmet Of Siegfried',4,20,NULL,600,NULL,7,NULL,1,0x000444A2,63,2,256,NULL,'60',1,1055,'bonus bAllStats,5; bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubRace,RC_Dragon,5; bonus3 bAutoSpellWhenHit,"HP_ASSUMPTIO",5,5; bonus2 bHPLossRate,600,1000; bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5874,'Circlet_Of_Kriemhild','Circlet Of Kriemhild',4,20,NULL,600,NULL,7,NULL,1,0x000444A2,63,2,256,NULL,'60',1,1056,'bonus bAllStats,5; bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubRace,RC_Dragon,5; bonus3 bAutoSpellWhenHit,"PR_KYRIE",9,5; bonus2 bHPLossRate,400,1000; bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5875,'Diadem_Of_Bruenhild','Diadem Of Bruenhild',4,20,NULL,600,NULL,7,NULL,1,0x000444A2,63,2,256,NULL,'60',1,1057,'bonus bAllStats,5; bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubRace,RC_Dragon,5; bonus3 bAutoSpellWhenHit,"SM_ENDURE",8,5; bonus2 bHPLossRate,400,1000; bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5881,'Weissbier_Hat','Weissbier Hat',4,20,NULL,300,NULL,5,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,1079,'bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bDex,10; if(getrefine()>6){ bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bDex,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5882,'Red_Wizardry_Hat_C','Red Mage Hat C',4,20,NULL,300,NULL,1,NULL,0,0x00810204,63,2,256,NULL,'0',1,282,'bonus bInt,2; bonus bMaxSP,150;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5883,'White_Wizardry_Hat_C','Gray Mage Hat C',4,20,NULL,300,NULL,1,NULL,0,0x00810204,63,2,256,NULL,'0',1,283,'bonus bInt,2; bonus bMaxSP,150;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5884,'Gray_Wizardry_Hat_C','Brown Mage Hat C',4,20,NULL,300,NULL,1,NULL,0,0x00810204,63,2,256,NULL,'0',1,284,'bonus bInt,2; bonus bMaxSP,150;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5885,'Blue_Wizardry_Hat_C','Blue Mage Hat C',4,20,NULL,300,NULL,1,NULL,0,0x00810204,63,2,256,NULL,'0',1,285,'bonus bInt,2; bonus bMaxSP,150;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5886,'Yellow_Wizardry_Hat_C','Yellow Mage Hat C',4,20,NULL,300,NULL,1,NULL,0,0x00810204,63,2,256,NULL,'0',1,286,'bonus bInt,2; bonus bMaxSP,150;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5887,'Half_L_Magestic_Goat','Half L Majestic Goat',4,20,NULL,800,NULL,5,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,380,'bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus bBaseAtk,(JobLevel*2)/7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5892,'RCC2013_1ST_CROWN','RCC2013 1ST CROWN',4,20,NULL,2500,NULL,7,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',0,1106,'bonus bAllStats,5; skill "AL_TELEPORT",1;','sc_start SC_SPEEDUP0,INFINITE_TICK,25;','sc_end SC_SPEEDUP0;'); -REPLACE INTO `item_db_re` VALUES (5893,'RCC2013_2ND_CROWN','RCC2013 2ND CROWN',4,20,NULL,2500,NULL,7,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',0,1107,'bonus bAllStats,4; skill "AL_TELEPORT",1;','sc_start SC_SPEEDUP0,INFINITE_TICK,25;','sc_end SC_SPEEDUP0;'); -REPLACE INTO `item_db_re` VALUES (5894,'RCC2013_3RD_CROWN','RCC2013 3RD CROWN',4,20,NULL,2500,NULL,7,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',0,1108,'bonus bAllStats,3; skill "AL_TELEPORT",1;','sc_start SC_SPEEDUP0,INFINITE_TICK,25;','sc_end SC_SPEEDUP0;'); -REPLACE INTO `item_db_re` VALUES (5895,'RCC2013_ANV_Hat','RCC2013 ANV Hat',4,20,NULL,2500,NULL,7,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',0,1109,'bonus bAllStats,1; bonus2 bAddClass,Class_All,2; bonus bMatkRate,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5900,'Divine_Guard_Hat','Divine Guard Hat',4,0,NULL,200,NULL,10,NULL,1,0x00004000,56,2,256,NULL,'100',1,1121,'.@r = getrefine(); bonus2 bSubSize,Size_All,5; if(.@r>=7) { .@level = getskilllv("AL_HEAL"); bonus3 bAutoSpellWhenHit,"AL_HEAL",(.@level ? .@level : 5),10; } if(.@r>=9) { bonus2 bSkillAtk,"LG_RAYOFGENESIS",20; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5901,'Focus_Beret','Focus Beret',4,0,NULL,200,NULL,10,NULL,1,0x00008000,56,2,256,NULL,'100',1,1122,'.@r = getrefine(); bonus4 bAutoSpellOnSkill,"SR_DRAGONCOMBO","SR_FALLENEMPIRE",max(getskilllv("SR_FALLENEMPIRE"),1),100; if(.@r>=7) { autobonus "{ bonus bAspd,2; }",30,5000,0,"{ specialeffect2 EF_ENHANCE; }"; } if(.@r>=9) { bonus2 bSkillAtk,"SR_FALLENEMPIRE",30; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5902,'Harvester_Hat','Harvester Hat',4,0,NULL,200,NULL,10,NULL,1,0x00040000,56,2,256,NULL,'100',1,1123,'.@r = getrefine(); bonus2 bAddMonsterDropItem,6211,100; bonus2 bAddMonsterDropItem,6212,100; if(.@r>=7) { bonus2 bAddMonsterDropItem,6210,50; } if(.@r>=9) { bonus2 bSkillAtk,"GN_CARTCANNON",15; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5903,'Deadman_Bandana','Deadman Bandana',4,0,NULL,200,NULL,15,NULL,1,0x00810204,63,2,256,NULL,'99',1,1124,'.@r = getrefine(); .@rate = 1; bonus bCritical,.@r*2; bonus bFixedCastrate,-2; bonus3 bAutoSpellWhenHit,"SL_SWOO",getskilllv("SL_SWOO"),(.@rate*10); if (.@r>=7) { bonus bMatk,20; .@rate += 3; } if(.@r>=9) { bonus bVariableCastrate,-20; bonus2 bSkillUseSP,"SL_STUN",5; bonus2 bSkillUseSP,"SL_SMA",5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5904,'Inconspicuous_Hat','Inconspicuous Hat',4,0,NULL,200,NULL,10,NULL,1,0x00020000,56,2,256,NULL,'100',1,1125,'.@r = getrefine(); if (.@r>=9) { .@matk = 5; } bonus bMatkRate,(7+.@matk); if (.@r>=7) { bonus bMatk,(readparam(bInt)/5)*2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5905,'Lyrica_Hat','Lyrica Hat',4,0,NULL,200,NULL,10,NULL,1,0x00080000,56,2,256,NULL,'100',1,1126,'.@r = getrefine(); bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15; if(.@r>=7) { bonus bFixedCastrate,4*(getskilllv("WM_LESSON")); } if(.@r>=9) { bonus2 bSkillUseSP,"WM_SEVERE_RAINSTORM",10; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5906,'Oni_Horns_','Oni Horns',4,0,NULL,20,NULL,10,NULL,1,0x00001000,56,2,256,NULL,'100',1,1127,'bonus2 bSkillAtk,"GC_COUNTERSLASH",(10*getskilllv("GC_WEAPONBLOCKING")); .@r = getrefine(); if(.@r > 6){ bonus bAtk,20; bonus bHit,5; } if(.@r > 9){ bonus3 bAutoSpell,"GC_CROSSIMPACT",1,10; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5907,'Sea_Captain_Hat','Sea Captain Hat',4,0,NULL,200,NULL,20,NULL,1,0x00000400,56,2,256,NULL,'100',1,1128,'bonus2 bSkillAtk,"NC_AXEBOOMERANG",20; .@dmg = 20; .@r = getrefine(); if (.@r>=7) { .@dmg += getskilllv("BS_WEAPONRESEARCH"); } if (.@r>=9) { .@dmg += getskilllv("NC_TRAININGAXE"); } bonus2 bSkillAtk,"NC_AXETORNADO",.@dmg;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5909,'C_Valkyrie_Circlet','C Valkyrie Circlet',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,940,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5914,'Earmuff_Flowerform','C Flutter Butterfly',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1378,'hateffect HAT_EF_FLUTTER_BUTTERFLY,true;',NULL,'hateffect HAT_EF_FLUTTER_BUTTERFLY,false;'); -REPLACE INTO `item_db_re` VALUES (5917,'Yellow_Scarf','Yellow Scarf',4,0,NULL,100,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1,NULL,'90',0,1170,'bonus bLongAtkDef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5918,'Gambler_Seal','Gambler Seal',4,0,NULL,500,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,512,NULL,'70',0,1202,'.@dex = readparam(bDex); .@luk = readparam(bLuk); .@critical = 3 + (.@luk / 10); .@critical_dmg = 3 - (.@dex/10) * 2; .@sub_arrowstorm = 10; .@sub_gateofhell = 10; bonus bBaseAtk,(.@luk/10)*2; bonus bMatk,(.@luk / 10) * 2; if (.@luk > 107) { .@critical += 5; .@critical_dmg += 10; } if (.@luk > 119) { .@critical += 10; .@critical_dmg += 17; .@sub_arrowstorm += 30; .@sub_gateofhell += 30; } bonus bCritical,.@critical; bonus bCritAtkRate,.@critical_dmg; bonus2 bSubSkill,"RA_ARROWSTORM",.@sub_arrowstorm; bonus2 bSubSkill,"SR_GATEOFHELL",.@sub_gateofhell;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5919,'Camellia_Hair_Pin','Camellia Hair Pin',4,0,NULL,1000,NULL,NULL,NULL,1,0xFFFFFFFF,63,2,256,NULL,'50',1,1203,'bonus bMdef,20; bonus3 bAutoSpell,"AL_PNEUMA",1,30+getrefine()*5; hateffect(HAT_EF_CAMELLIA_HAIR_PIN,true); /* CONFIRM The Rate*/',NULL,'hateffect(HAT_EF_CAMELLIA_HAIR_PIN,false);'); -REPLACE INTO `item_db_re` VALUES (5920,'Medical_Boots','Medical Boots',4,0,NULL,300,NULL,10,NULL,0,0xFFFFFFFF,63,2,64,NULL,'10',1,NULL,'.@r = getrefine(); bonus bHealPower,10+((.@r/2) * 2); bonus2 bSkillUseSP,"AB_CHEAL",(.@r * 5);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5933,'Crow_Tengu_Mask','Crow Tengu Mask',4,20,NULL,300,NULL,0,NULL,0,0xFFFFFFFF,63,2,512,NULL,'80',0,1287,'bonus2 bAddSize,Size_All,1; bonus bLongAtkRate,2; if(readparam(bStr)>=108) { bonus2 bAddSize,Size_All,1; bonus bLongAtkRate,2; } if(readparam(bStr)>=120) { bonus2 bAddSize,Size_All,2; bonus bLongAtkRate,3; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5937,'Flying_Helmet','Flying Helmet',4,1,NULL,300,NULL,5,NULL,1,0xFFFFFFFF,63,2,256,NULL,'20',1,820,'bonus bMdef,5; bonus bHPGainValue,100; bonus2 bSPGainRace,RC_Dragon,5; .@r = getrefine(); if (.@r>=5) { bonus2 bSubRace,RC_Dragon,5; } if (.@r>=7) { bonus2 bSubRace,RC_Dragon,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5938,'Octopus_Hat_','Octopus Hat',4,20,NULL,880,NULL,8,NULL,1,0xFFFFFFFF,63,2,256,NULL,'60',1,538,'bonus bMdef,8; bonus bUnbreakableHelm,1; bonus2 bAddItemHealRate,579,50; bonus2 bAddItemHealRate,544,125; bonus2 bAddItemHealRate,551,125; .@r = getrefine(); if (.@r>=5) { bonus2 bAddItemHealRate,579,50; bonus2 bAddItemHealRate,544,125; bonus2 bAddItemHealRate,551,125; } if (.@r>=6) { bonus2 bAddItemHealRate,579,50; bonus2 bAddItemHealRate,544,125; bonus2 bAddItemHealRate,551,125; } if (.@r>=7) { bonus2 bAddItemHealRate,579,50; bonus2 bAddItemHealRate,544,125; bonus2 bAddItemHealRate,551,125; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5943,'Owlviscount_Silk_Hat','Owl Viscount Silk Hat',4,0,NULL,500,NULL,15,NULL,1,0xFFFFFFFF,63,2,256,NULL,'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; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5945,'Well_Chewed_Pencil','Well-Chewed Pencil',4,20,NULL,300,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'30',0,931,'bonus bStr,1; autobonus "{ bonus bAtkEle,Ele_Fire; }",50,60000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; /* Unknow rate and specialeffect */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5965,'_Riot_Chip','Riot Chip',4,0,NULL,300,NULL,NULL,NULL,1,0xFFFFFFFF,63,2,256,NULL,'100',1,1201,'bonus bFixedCastrate,-50; .@r = getrefine(); bonus2 bAddClass,Class_All,.@r; bonus2 bMagicAddClass,Class_All,.@r;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5966,'KarduiEar','KarduiEar',4,0,NULL,300,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,512,NULL,'70',0,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; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5967,'FlyingGalapago','Flying Galapago',4,0,NULL,500,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1,NULL,'110',0,1358,'set .@bblvl,max(getskilllv("HT_BLITZBEAT"),1); set .@luk,min(readparam(bLuk),120); bonus bAgi,1; bonus3 bAutoSpell,"HT_BLITZBEAT",.@bblvl,50 + (.@luk / 3) + (.@bblvl * 2); bonus2 bSkillAtk,"HT_BLITZBEAT",getskilllv("HT_STEELCROW") * 40;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5968,'DVAngelNurseCap','DVAngelNurseCap',4,0,NULL,500,NULL,10,NULL,1,0xFFFFFFFF,63,2,256,NULL,'50',1,1359,'if (BaseClass == Job_Acolyte) bonus bHealPower,3; bonus bNoCastCancel; .@r = getrefine(); bonus bHealPower,(.@r > 8) ? 12 : ((.@r > 6) ? 9 : ((.@r > 4) ? 6 : 0));',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5969,'QueenAnzRevenge','QueenAnzRevenge',4,0,NULL,400,NULL,7,NULL,1,0xFFFFFFFF,63,2,256,NULL,'100',1,1360,'bonus bStr,5; .@r = getrefine(); bonus2 bAddClass,Class_All,7+(.@r > 8 ? 4 : (.@r > 6 ? 3 : (.@r > 4 ? 2 : 0))); bonus bNoSizeFix;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5971,'Moon_Eyepatch','Moon Eyepatch',4,0,NULL,100,NULL,NULL,NULL,1,0xFFFFFFFF,63,2,512,NULL,'10',0,1370,'bonus2 bSubEle,Ele_Water,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5972,'Chatty_Parrot','Chatty Parrot',4,0,NULL,100,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1,NULL,'80',0,1116,'bonus bMatkRate,BaseLevel/50; bonus bVariableCast,-readparam(bInt)/30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5973,'Ancient_Elven_Ear_J','Ancient Elven Ear J',4,0,NULL,200,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,512,NULL,'70',0,665,'bonus bLuk,10; bonus bMdef,10; bonus bFlee2,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5978,'Syringe_Toy','Toy Syringe',4,0,NULL,100,NULL,3,NULL,0,0xFFFFFFFF,63,2,1,NULL,'70',0,842,'bonus bMdef,3; bonus2 bAddItemHealRate,545,150; bonus2 bAddItemHealRate,546,150; bonus2 bAddItemHealRate,547,150;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5979,'C_Angel_Fluttering','C Angel Fluttering',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1380,'hateffect HAT_EF_ANGEL_FLUTTERING,true;',NULL,'hateffect HAT_EF_ANGEL_FLUTTERING,false;'); -REPLACE INTO `item_db_re` VALUES (5980,'C_Classical_Fhat','C Classical Fhat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1381,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (5985,'Noble_Mask','Noble Mask',4,0,NULL,200,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,512,NULL,'30',1,1409,'bonus2 bSkillAtk,"PA_SACRIFICE",BaseLevel*2; bonus2 bSkillVariableCast,"PA_PRESSURE",-2000; bonus2 bSkillVariableCast,"CR_DEVOTION",-2000; if (BaseLevel > 149) { bonus bMaxHPrate,3; bonus bAspdRate,3; } else if (BaseLevel > 99) { bonus bMaxHPrate,2; bonus bAspdRate,2; } else { bonus bMaxHPrate,1; bonus bAspdRate,1; }',NULL,NULL); -#=================================================================== -# More Etc Items -#=================================================================== -REPLACE INTO `item_db_re` VALUES (6000,'Dark_Ashes','Ashes of Darkness',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6001,'Essence_Of_Fire','Essence of Fire',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6002,'Token_Of_Apostle','Token of Apostle',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6003,'Soul_Pendant','Pendant of Spirit',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6004,'Bapho_Doll','Cursed Baphomet Doll',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6005,'New_Year_Rice_Cake','New Year Rice Cake',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6006,'Rice_Cake_Delivery_Box','Rice Cake Delivery Box',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6007,'New_Year_Rice_Cake_Soup','New Year Rice Cake Soup',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6008,'Wood','Wood',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6009,'Large_Magical_Fan','Big Fan Of Magic',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6010,'Pickaxe','Hoe',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6011,'Blue_Card_B','Blue B Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6012,'Blue_Card_C','Blue C Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6013,'Blue_Card_J','Blue J Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6015,'Blue_Card_M','Blue M Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6016,'Blue_Card_Q','Blue Q Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6017,'Blue_Card_T','Blue T Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6018,'Blue_Card_V','Blue V Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6019,'Blue_Card_Z','Blue Z Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6020,'Fur','Fur',3,704,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6021,'Peaked_Hat','Peaked Hat',3,433,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6022,'Hard_Skin','Hard Skin',3,884,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6023,'Mystic_Horn','Mystic Horn',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6024,'17Carat_Dia','17Carat Diamond',3,6000000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6025,'Towel_Of_Memory','Towel of Memory',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6026,'Marriage_Covenant','Written Oath Of Marriage',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6027,'Crystal_Of_Feardoom','Crystal Of Feardom',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6028,'Seal_Scroll','Sealed Scroll',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6029,'Morocc_Tracing_Log','Morocc Tracing Log',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6030,'Glitering_PaperA','Glittering Paper',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6031,'Glitering_PaperB','Glittering Paper',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6032,'Horn_Of_Hilsrion','Horn of Hillslion',3,500,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6033,'Horn_Of_Tendrilion','Horn of Tendrilion',3,500,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6034,'Weird_Part','Weird Part',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6035,'Decaying_Stem','Decaying Stem',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6036,'Invite_To_Meeting','Meeting Invitation',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6037,'Rough_File','Messy File',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6038,'Neat_Report','Neat Report',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6039,'Piece_Of_Fish','Piece of Fish',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6040,'Some_Of_Report','Part of a Report',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6041,'Strong_Bine','Strong Vine',3,30,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6042,'Ordinary_Branch','Ordinary Branch',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6043,'Letter_From_Lugen','Letter from Lugen',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6044,'Letter_From_Otto','Letter from Otto',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6045,'Supply_Box','Supply Box',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6046,'Clothing_Dye_Coupon','Clothing Dye Coupon',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6047,'Clothing_Dye_Coupon_II','Clothing Dye Coupon II',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6048,'Unidentified_Mineral','Unidentified Mineral',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6049,'Marlin','Marlin',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6050,'Mercenary_Contract','Mercenary Contract',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6051,'Gray_Hollow','Gray Hollow',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6052,'Ornamental_Hairpin','Ornament Hairpin',3,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6053,'Yuanbao','Circle Step',3,100,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6054,'Blue_Card_6','Number 6 Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6055,'Blue_Card_Annyver','Character Week Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6056,'Blue_Card_Sary','Character Year Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6057,'Blue_Card_E','Character Lee Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6058,'Blue_Card_Ven','Character Ben Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6059,'Blue_Card_Nt','Character Project Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6060,'Moon_Admin_Ticket','Month Viewing Ticket',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6061,'Plantain','Blood Beginner',3,100,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6062,'Moon_Cake15','Letter Moon Cake',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6063,'Moon_Cake16','Letter Moon Cake',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6064,'Moon_Cake17','Letter Moon Cake',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6065,'Moon_Cake18','Letter Moon Cake',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6066,'Moon_Cake19','Letter Moon Cake',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6067,'Moon_Cake20','Letter Moon Cake',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6068,'Rabbit_Skin','Leather Rabbit',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6069,'ABUNDANCE','Abundance',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6070,'Shaman\'s_Old_Paper','Shaman\'s Document',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6071,'Broken_Sword','Broken Sword',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6072,'Wing_Of_Bizofnil','Bijofnil Feather',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6073,'Dragon\'s_Mane','Dragon\'s Mane',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6074,'Bazett\'s_Order','Bazett\'s Order',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6075,'Crystalized_Teardrop','Crystalized Teardrop',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6076,'Portable_Toolbox','Portable Toolbox',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6077,'Rough_Mineral','Rough Mineral',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6078,'Stone_Fragments','Stone Fragment',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6079,'Flower_Of_Alfheim','Flower Of Alfheim',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6080,'Manuk_Coin','Manuk Coin',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6081,'Splendide_Coin','Splendide Coin',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6082,'Spirit_Of_Alfheim','Spirit Of Alfheim',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6083,'Dolly_Capsule','Capsule Dolls',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6084,'Bradium_Fragments','Bradium Fragments',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6085,'Shaggy_Muffler','Shaggy Muffler',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6086,'Withered_Flower','Withered Flower',3,890,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6087,'Crystal_Of_Soul_01','Spiritual Crystal',3,1050,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6088,'Crystal_Of_Soul_02','Spiritual Crystal',3,1050,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6089,'Piece_Of_Darkness','Dark Piece',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6090,'Purified_Bradium','Refined Bradium',3,1100,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6091,'Dark_Red_Scale','Darkred Scale Piece',3,200000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6092,'Singing_Crystal_Piece','Piece Of Singing Crystal',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6093,'Egg_Of_Draco','Draco\'s Egg',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6094,'Traditional_Cookie','Traditional Sweets',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6095,'Flavored_Alcohol','Flavored Alcohol',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6096,'Fish_With_Blue_Back','Fish With Blue Back',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6097,'Pumpkin_Pie_','Pumpkin Pie',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6098,'Small_Snow_Flower','Small Snow Flower',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6099,'Grilled_Rice_Cake','Grilled Rice Cake',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6100,'Damp_Darkness','Damp Darkness',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6101,'Attendance_Card','Attendance Card',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6102,'Report_On_Splendide','Report On Splendide',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6103,'Report_On_Manuk','Report On Manuk',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6104,'Big_Cell','Big Cell',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6105,'Morning_Dew','Morning Dew',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6106,'Well_Ripened_Berry','Well Ripened Berry',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6107,'Sunset_On_The_Rock','Sunset On The Rock',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6108,'Apple_Pudding','Apple Pudding',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6109,'Plant_Neutrient','Plant Neutrient',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6110,'Vital_Flower','Vital Flower',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6111,'Mystic_Stone','Mystic Stone',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6112,'Fresh_Plant','Fresh Plant',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6113,'Vital_Flower_','Vital Flower',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6114,'Flame_Gemstone','Flame Gemstone',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6115,'Bun_','Bun',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6116,'Succu_Pet_Coupon','Succubus Pet Exchange Coupon',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6117,'Imp_Pet_Coupon','Imp Pet Exchange Coupon',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6118,'Chung_E_Pet_Coupon','Chung E Exchange Coupon',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6119,'Natural_Leather','Cow Leather',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6120,'Face_Paint','Face Paint',3,120,NULL,20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6121,'Makeover_Brush','Makeover Brush',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6122,'Paint_Brush','Paint Brush',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6123,'Surface_Paint','Surface Paint',3,200,NULL,30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6124,'Wolf\'s_Flute','Wolf Flute',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6125,'Lucky_Box','Spring Time Box',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6126,'Happy_Box','Summer Happy Box',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6127,'Purification_Stone','Purification Stone',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6128,'Guillotine_Antidote','Antidote',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6129,'Ticket_Nightmare','Nightmare Terror Exchange Coupon',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6130,'Ticket_Loli_Ruri','Loli Ruri Exchange Coupon',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6131,'Ticket_Goblin_Leader','Goblin Leader Exchange Coupon',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6132,'Ticket_Incubus','Incubus Exchange Coupon',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6133,'Ticket_Miyabi_Ningyo','Miyabi Ningyo Exchange Coupon',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6134,'Ticket_Whisper','Giant Whisper Exchange Coupon',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6135,'Ticket_Wicked_Nymph','Evil Nymph Exchange Coupon',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6136,'Ticket_Medusa','Medusa Exchange Coupon',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6137,'Ticket_Stoneshooter','Stone Shooter Exchange Coupon',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6138,'Ticket_Marionette','Marionette Exchange Coupon',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6139,'Ticket_Leafcat','Leaf Cat Exchange Coupon',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6140,'Ticket_Dullahan','Dullahan Exchange Coupon',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6141,'Ticket_Shinobi','Shinobi Exchange Coupon',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6142,'Ticket_Golem','Golem Exchange Coupon',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6143,'Ticket_Civil_Servant','Civil Servant Exchange Coupon',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6144,'Heartbroken_Tears','Regrettable Tears',3,1000,NULL,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6145,'Vulcan_Bullet','Vulcan Bullet',3,10,NULL,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6146,'Magic_Gear_Fuel','Magic Gear Fuel',3,300,NULL,30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6147,'Liquid_Condensed_Bullet','Liquid Condensed Bullet',3,100,NULL,3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6148,'Chocolate_Of_Eternity','Eternity Of Chocolate',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6149,'Plain_Chocolate','Simple Chocolate',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6150,'Key_Of_The_Mansion','Key of The Mansion',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6151,'Peice_Of_Great_Bradium','Giant Bradium Fragment',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6152,'Glittering_Crystal','Glittering Crystal',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6153,'Special_Exchange_Coupon','Special Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6154,'Broken_Horn_Pipe','Broken Horn Pipe',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6155,'Coke_Membership_Card','Member Card',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6156,'Approval_Report','Approval Report',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6157,'Poring_Ticket','Poring Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6158,'Drops_Ticket','Drops Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6159,'Poporing_Ticket','Poporing Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6160,'Lunatic_Ticket','Lunatic Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6161,'Picky_Ticket','Picky Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6162,'Pecopeco_Ticket','Peco Peco Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6163,'Savage_Baby_Ticket','Savage Babe Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6164,'Spore_Ticket','Spore Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6165,'Poison_Spore_Ticket','Poison Spore Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6166,'Chonchon_Ticket','Chonchon Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6167,'Steel_Chonchon_Ticket','Steel Chonchon Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6168,'Petit_Ticket','Sky Petite Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6169,'Deviruchi_Ticket','Deviruchi Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6170,'Isis_Ticket','Isis Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6171,'Smokie_Ticket','Smokie Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6172,'Dokebi_Ticket','Dokebi Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6173,'Desert_Wolf_B_Ticket','Baby Desert Wolf Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6174,'Yoyo_Ticket','Yoyo Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6175,'Sohee_Ticket','Sohee Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6176,'Rocker_Ticket','Rocker Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6177,'Hunter_Fly_Ticket','Hunter Fly Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6178,'Orc_Warrior_Ticket','Orc Warrior Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6179,'Bapho_Jr_Ticket','Bapho Jr. Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6180,'Munak_Ticket','Munak Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6181,'Bongun_Ticket','Bongun Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6182,'Goblin_Ticket','Christmas Goblin Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6183,'Hardtack_Ticket','Rice Cake Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6184,'Zherlthsh_Ticket','Zherlthsh Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6185,'Alice_Ticket','Alice Exchange Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6186,'Monkey_Wrench','Monkey Wrench',3,500,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6187,'Blank_Card','Blank Card',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6188,'Slot_Coupon','Slotting Advertisement',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6189,'Magic_Book_FB','Old Spell Book (Fire Bolt)',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6190,'Magic_Book_CB','Old Spell Book (Cold Bolt)',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6191,'Magic_Book_LB','Old Spell Book (Lightening Bolt)',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6192,'Magic_Book_SG','Old Spell Book (Storm Gust)',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6193,'Magic_Book_LOV','Old Spell Book (Lord Of Vermilion)',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6194,'Magic_Book_MS','Old Spell Book (Meteor Storm)',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6195,'Magic_Book_CM','Old Spell Book (Comet)',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6196,'Magic_Book_TV','Old Spell Book (Tetra Vortex)',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6197,'Magic_Book_TS','Old Spell Book (Thunder Storm)',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6198,'Magic_Book_JT','Old Spell Book (Jupitel Thunder)',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6199,'Magic_Book_WB','Old Spell Book (Water Ball)',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6200,'Magic_Book_HD','Old Spell Book (Heaven\'s Drive)',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6201,'Magic_Book_ES','Old Spell Book (Earth Spike)',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6202,'Magic_Book_ES_','Old Spell Book (Earth Strain)',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6203,'Magic_Book_CL','Old Spell Book (Chain Lightning)',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6204,'Magic_Book_CR','Old Spell Book (Crimson Rock)',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6205,'Magic_Book_DL','Old Spell Book (Drain Life)',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6206,'I_Love_You','I Love You',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6207,'Thank_You','Thank You',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6208,'I_Respect_You','I Respect You',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6209,'Glory_Of_Knights','Knight\'s Honor',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6210,'Seed_Of_Horny_Plant','Seed Of Thorny Plant',3,600,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6211,'Bloodsuck_Plant_Seed','Bloodsuck Plant Seed',3,800,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6212,'Bomb_Mushroom_Spore','Bomb Mushroom Spore',3,1000,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6213,'Explosive_Powder','Explosive Powder',3,500,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6214,'Smoke_Powder','Smoke Powder',3,500,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6215,'Tear_Gas','Tear Gas',3,500,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6216,'Oil_Bottle','Oil Bottle',3,1000,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6217,'Mandragora_Flowerpot','Mandragora Flowerpot',3,2000,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6218,'Disin_Delivery_Box','Delivery Daishin Box',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6219,'Para_Team_Mark','Eden Group Mark',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6220,'Mysterious_Dyestuff','Mysterious Dyestuff',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6221,'Mystic_Leaf_Cat_Ball','Mystic Leaf Cat Ball',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6222,'Shining_Beads','Shining Beads',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6223,'Carnium','Carnium',3,2000,NULL,150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6224,'Bradium','Bradium',3,2000,NULL,150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6225,'HD_Carnium','HD Carnium',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6226,'HD_Bradium','HD Bradium',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6228,'Guarantee_Weapon_9Up','+9 Weapon Refine Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6229,'Guarantee_Weapon_8Up','+8 Weapon Refine Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6230,'Guarantee_Weapon_7Up','+7 Weapon Refine Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6231,'Guarantee_Weapon_6Up','+6 Weapon Refine Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6232,'Guarantee_Armor_9Up','+9 Armor Refine Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6233,'Guarantee_Armor_8Up','+8 Armor Refine Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6234,'Guarantee_Armor_7Up','+7 Armor Refine Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6235,'Guarantee_Armor_6Up','+6 Armor Refine Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6236,'Blue_Card_7','Blue Card 7',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6237,'Guarana_Fruit','Guarana Fruit',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6238,'Guarantee_Weapon_11Up','+11 Weapon Refine Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6239,'Guarantee_Armor_11Up','+11 Armor Refine Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6240,'HD_Oridecon','HD Oridecon',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6241,'HD_Elunium','HD Elunium',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6242,'Midgard_Coin','Midgard Coin',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6243,'Exchange_Coupon','Exchange Coupon',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6244,'Gun_Powder','Gun Powder',3,10,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6245,'Black_Powder','Black Powder',3,100,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6246,'Yellow_Powder','Yellow Powder',3,100,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6247,'White_Powder','White Powder',3,100,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6248,'Melange_Pot','Melange Pot',3,600,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6249,'Savage_Meat','Savage Meat',3,100,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6250,'Cooking_Skewer','Cooking Skewer',3,300,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6251,'Black_Charcoal','Black Charcoal',3,300,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6252,'Wolf_Blood','Blood Of Wolf',3,100,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6253,'Cold_Ice','Cold Ice',3,100,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6254,'Beef_Head_Meat','Beef Head',3,100,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6255,'Large_Cookpot','Large Cookpot',3,500,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6256,'Ice_Fragment','Ice Piece',3,100,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6257,'Ice_Crystal','Ice Crystal',3,100,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6258,'Comodo_Tropic_Fruit','Comodo Tropical Fruit',3,800,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6259,'Drocera_Tentacle','Drosera Tentacle',3,100,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6260,'Petti_Tail','Petite\'s Tail',3,100,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6261,'Fine_Noodle','Fine Noodles',3,500,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6262,'Cool_Gravy','Cool Gravy',3,400,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6263,'Coconut_Fruit','Coconut Fruit',3,100,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6264,'Melon','Melon',3,100,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6265,'Pineapple','Pineapple',3,100,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6266,'Cheat_Key','Key Of Deception',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6267,'Virtual_Key','Key Of Illusion',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6268,'Mirth_Key','Key Of Gaiety',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6269,'Master_Brush','A Master\'s Blush',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6270,'Mins_Picture','A Picture Of Minstrel Song',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6271,'Mins_Receipt','Receipt',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6272,'Experiment_Seed','Experiment Seed',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6273,'Altered_Seed','Seed For Experiment',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6274,'Saint_Cloth_Piece','A Piece Of Cloth Of A Saint',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6275,'King_Shield','Shield Of King',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6276,'Clear_Reagent','Clear Reagent',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6277,'Red_Reagent','Red Reagent',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6278,'Black_Reagent','Black Reagent',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6279,'Apple_Bomb_CB','Apple Bomb Guidebook',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6280,'Pinepple_Bomb_CB','Pineapple Bomb Guidebook',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6281,'Coconut_Bomb_CB','Coconut Fruit Bomb Guidebook',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6282,'Melon_Bomb_CB','Melon Bomb Guidebook',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6283,'Banana_Bomb_CB','Banana Bomb Guidebook',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6284,'Plant_Genetic_Grow','How To Grow Plant Genes',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6285,'Quality_Potion_Book','Manual: How To Make High Quality Potion',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6286,'F_Max_Weight_Up_Scroll','F Max Weight Up Scroll',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6287,'F_Clothing_Dye_Coupon','Omni Clothing Dye',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6288,'F_Happy_Box','F Happy Box',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6289,'F_Mysterious_Dyestuff','F Mysterious Dyestuff',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6290,'F_New_Style_Coupon','F New Style Coupon',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6291,'F_Enriched_Elunium','F Enriched Elunium',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6292,'F_Enriched_Oridecon','F Enriched Oridecon',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6293,'F_Token_Of_Siegfried','F Token Of Siegfried',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6294,'F_Marriage_Covenant','F Marriage Covenant',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6295,'F_Clothing_Dye_Coupon2','F Clothing Dye Coupon2',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6296,'RF_Taining_Notice','Training Notice',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6297,'Bottle_To_Throw','Throwing Bottle',3,300,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6298,'Pumpkin_Head_Crushed','Pumpkin Head Crushed',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6299,'Worn_Cloth_Piece','Worn Cloth Piece',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6300,'J_7Draw','event',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6301,'J_Semi_Draw','event',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6302,'GM_Handwriting','GM Handwriting',3,20004,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6303,'Changed_Hydra_Ball','Changed Hydra Ball',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6304,'Sapa_Feat_Cert','Proof Of Sapha\'s Honor',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6305,'Frozen_Skin_Piece','Frozen Piece Of Skin',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6306,'Solid_Bloodstain','Hard Bloodstain',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6307,'Suspicious_Magic_Stone','Cursed Magical Stone',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6308,'Unidentified_Relic','Unidentified Relic',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6309,'E_Max_Weight_Up_Scroll','E Max Weight Up Scroll',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6310,'E_Cloth_Dye_Coupon','E Cloth Dye Coupon',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6311,'E_Happy_Box','E Happy Box',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6312,'E_Mysterious_Dyestuff','E Mysterious Dyestuff',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6313,'E_New_Style_Coupon','E New Style Coupon',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6314,'E_Enriched_Elunium','E Enriched Elunium',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6315,'E_Enriched_Oridecon','E Enriched Oridecon',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6316,'E_Token_Of_Siegfried','E Token Of Siegfried',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6317,'E_Marriage_Covenant','E Marriage Covenant',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6318,'E_Cloth_Dye_Coupon2','E Cloth Dye Coupon2',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6319,'Small_Bradium','Small Bradium',3,324,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6320,'Premium_Reset_Stone','Premium Reset Stone',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6321,'Rakehorn_Helm','Rakehorn Helm',3,822,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6322,'Antler_Helm','Antler Helmet',3,800,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6323,'Twinhorn_Helm','Two-Horned Helmet',3,728,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6324,'Singlehorn_Helm','Single Horned Helmet',3,702,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6325,'White_Spider_Limb','White Spider Limb',3,1004,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6326,'Queen_Wing_Piece','Queen Wing Piece',3,1630,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6327,'Limited_High_Density_Bradium','(Limited)High Density Bradium',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6328,'Calender_January','Calender January',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6329,'Calender_February','Calender February',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6330,'Calender_March','Calender March',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6331,'Calender_April','Calender April',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6332,'Calender_May','Calender May',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6333,'Calender_June','Calender June',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6334,'Calender_July','Calender July',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6335,'Calender_August','Calender August',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6336,'Calender_September','Calender September',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6337,'Calender_October','Calender October',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6338,'Calender_November','Calender November',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6339,'Calender_December','Calender December',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6340,'Fade_Notation_Green','Fade Notation Green',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6341,'Fade_Notation_Red','Fade Notation Red',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6342,'Fade_Notation_Purple','Fade Notation Purple',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6343,'Fade_Notation_Blue','Fade Notation Blue',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6344,'Muscle_Story','Muscle Story',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6345,'Love_Ball','Love Lump',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6346,'Seagate_Mark','Seagate Mark',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6347,'Bless_Word_Paper1','Bless Word Paper',3,4020,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6348,'Bless_Word_Paper2','Bless Word Paper',3,4020,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6349,'Bless_Word_Paper3','Bless Word Paper',3,4020,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6350,'Bless_Word_Paper4','Bless Word Paper',3,4020,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6351,'Bless_Word_Paper5','Bless Word Paper',3,4020,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6352,'Bless_Word_Paper6','Bless Word Paper',3,4020,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6353,'Bless_Word_Paper7','Bless Word Paper',3,4020,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6354,'Bless_Word_Paper8','Bless Word Paper',3,4020,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6355,'Bless_Word_Paper9','Bless Word Paper',3,4020,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6356,'Bless_Word_Paper10','Bless Word Paper',3,4020,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6357,'Fortune_Cookie_Fail','Fortune Cookie Fail',3,4020,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6358,'Free_Cash_Coupon','Free Cash Coupon',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6359,'Guidebook_Exchange','Guidebook Exchange',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6360,'Scarlet_Pts','Scarlet Point',3,100,NULL,5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6361,'Indigo_Pts','Indigo Point',3,100,NULL,5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6362,'Yellow_Wish_Pts','Yellow Wish Point',3,100,NULL,5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6363,'Lime_Green_Pts','Lime Green Point',3,100,NULL,5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6364,'Woe_Coin','GvG Coin',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6365,'Arena_Coin','Arena Coin',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6366,'Turbo_Track_Coin','Turbo Track Coin',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6367,'Kafra_Coin','Kafra Coin',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6368,'Endless_Coin','Endless Tower Coin',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6369,'Amatsu_Bead_A','Amatsu Bead A',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6370,'Amatsu_Bead_Ma','Amatsu Bead Ma',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6371,'Amatsu_Bead_Tsu','Amatsu Bead Tsu',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6372,'Amatsu_Bead_Jam','Amatsu Bead Jam',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6373,'Amatsu_Bead_Bo','Amatsu Bead Bo',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6374,'Amatsu_Bead_Ree','Amatsu Bead Ree',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6375,'Amatsu_Bead_!','Amatsu Bead !',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6376,'KVM_Badge','KVM Badge',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6377,'Buy_Market_Permit','Buy Market Permit',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6378,'Winning_Mark','Winning Mark',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6379,'Card_Coin','Card Coin',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6380,'Mora_Coin','Mora Coin',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6381,'Field_Shovel','Field Shovel',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6382,'Urn','Urn',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6383,'Clue_Of_Lope','Lope\'s Clue',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6384,'Ring_Of_Lope','Lope\'s Ring',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6385,'Research_Tool_Bag','Research Tool Bag',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6386,'Bathtub_R_Sample','Bath Water Sample',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6387,'Teeth_Sample','Teeth Sample',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6388,'Scale_Sample','Scale Sample',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6389,'Puddle_R_Sample','Sample Of Puddle Research',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6390,'Small_Pocket','Small Pocket',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6391,'Splendid_Supply_Kit','Splendid Supply Kit',3,20,NULL,2000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6392,'Bradium_Box','Bradium Box',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6393,'Round_Feather','Round Feather',3,525,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6394,'Golden_Feather','Golden Feather',3,487,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6395,'Angel_Magic_Power','Angel Magic Powder',3,615,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6396,'Auger_Of_Spirit','Auger Of Spirit',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6397,'PR_Team_Ticket','PR Team Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6398,'Develop_Team_Ticket','Develop Team Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6399,'Marketing_Team_Ticket','Marketing Team Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6400,'Operating_Team_Ticket','Operating Team Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6401,'Palm_O','Palm Oil',3,0,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6402,'Oil_Palm_F','Palm Oil Fruit',3,0,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6403,'Comodo_L','Comodo Leather',3,5,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6404,'Caress_H','Keris Hilt',3,0,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6405,'Cendrawasih_F','Cendrawasih Feather',3,3,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6406,'Cendrawasih_SF','Shining Cendrawasih Feather',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6407,'Sang_Stone_Fragment','Raw Crystal Stone Fragment',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6408,'Sang_Stone','Raw Crystal Stone',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6409,'Sang_Stone_Mass','Raw Crystal Stone Mass',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6410,'Idul_Fitri_Card','Idul Fitri Card',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6411,'Ripe_Watermelon','Ripe Watermelon',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6412,'Special_Medal','Special Medal',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6413,'New_Insurance','New Insurance',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6414,'Raganta_Card','Ragunta Card',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6415,'Strange_Embryo','Strange Embryo',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6416,'Pet_Exchange','Pet Exchange',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6417,'Silvervine','Silvervine Fruit',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6418,'Agrade_Coin','A Grade Coin',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6419,'Bgrade_Coin','B Grade Coin',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6420,'Cgrade_Coin','C Grade Coin',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6421,'Dgrade_Coin','D Grade Coin',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6422,'Egrade_Coin','E Grade Coin',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6423,'Anger_Seagod','Sea God\'s Wrath',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6424,'Halloween_Fragment','Spirit Piece',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6425,'Halloween_Certificate','Halloween Certificate',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6426,'Bad_Can','Bad Canned Food',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6427,'Bad_Can_Sack','Bad Canned Food Sack',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6428,'Bravery_Card_A','Adventure Card A',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6429,'Bravery_Card_B','Adventure Card B',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6430,'Picture_Piece','Picture Fragment',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6431,'Bucket','Pail',3,0,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6432,'Full_Bucket','Full Pail',3,0,NULL,3000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6433,'Clean_Brush','Cleaning Brush',3,0,NULL,300,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6434,'Fix_Kit','Fix Kit',3,0,NULL,1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6435,'Fresh_Fruit','Fresh Fruit',3,0,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6436,'Ptotection_Seagod','Sea God\'s Call',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6437,'Scaraba_Perfume','Scaraba Perfume',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6438,'Unbreakable_Weap','Unbreakable Weapon',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6439,'Unbreakable_Def','Unbreakable Armor',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6440,'General_Lubricant','General Lubrication',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6441,'High_RankLubricant','Advanced Lubrication',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6442,'Octopus_Hunt_Stick','Octopus Hunting Skewer',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6443,'Sillit_Pong_Bottle','Sillit Pong Bottle',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6444,'Emperium_G','Emperium G',3,2,NULL,1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6445,'Blue_Card_X','Blue Card X',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6446,'Green_Paper','Green Paper',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6447,'Red_Paper','Red Paper',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6448,'White_Paper','White Paper',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6449,'Casual_Diary','Casual Diary',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6450,'Honest_Diary','Honest Diary',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6451,'Unknown_Fish','Unknown Fish',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6452,'Etoile_Ring','Etoile Ring',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6453,'Undelivered_Gift','Undelivered Gift',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6454,'Santa_Bag','Santa Bag',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6455,'Tiny_Ticket','Tiny Ticket',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6456,'Guarantee_Weapon_5Up','+5 Weapon Refine Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6457,'Guarantee_Armor_5Up','+5 Armor Refine Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6459,'Jae_Sinho_Unpo','Jae Sinho Unpo',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6460,'Jae_Sinho_Undo','Jae Sinho Undo',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6461,'Mimong_Sungjin','Mimong Sungjin',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6462,'Gilsang_Yeoui','Gilsang Yeoui',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6463,'Sin_Sun_Jeonsul','Sin Sun Jeonsul',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6464,'Hate_Bundle','Hate Crate',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6465,'Guard_Coin','Guard Coin',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6466,'Clean_Water','Clean Water',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6467,'Perfume','Perfume',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6468,'Thai_Perfume','Thai Perfume',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6469,'Will_Of_Warrior','Warrior\'s Will',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6470,'Blood_Thirst','Blood Thirst',3,1200,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6471,'Goast_Chill','Chills Of Death',3,1600,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6472,'Holy_Mom_Blaze','Holy Mom Blaze',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6473,'Amatsu_Orb01','Amatsu Orb01',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6474,'Amatsu_Orb02','Amatsu Orb02',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6475,'Amatsu_Orb03','Amatsu Orb03',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6476,'Amatsu_Orb04','Amatsu Orb04',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6477,'Amatsu_Orb05','Amatsu Orb05',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6478,'Amatsu_Orb06','Amatsu Orb06',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6479,'Amatsu_Orb07','Amatsu Orb07',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6480,'Event_coin','Poring Coin',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6481,'Holy_Rock_Piece','Holy Rock Piece',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6482,'Ancient_City_Key','Ancient City Key',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6483,'Dream_Scroll','Dream Scroll',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6484,'Enchant_Book','Enchant Book',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6485,'BlueCard_2','Blue 2 Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6486,'BlueCard_0','Blue 0 Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6487,'BlueCard_1','Blue 1 Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6488,'Thanks_Invest_Ticket','Thanks Invest Ticket',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6489,'Cats_Invest_Certif','Cats Invest Certificate',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6490,'Magic_Clay_Fragment','Magic Clay Fragment',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6491,'Magic_Clay','Magic Clay',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6492,'Magic_Clay_Lump','Magic Clay Lump',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6493,'Makibishi','Makibishi',3,30,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6494,'Kafra_Coin2','Kafra Coin',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6495,'Para_Logro_Badge','Eden Merit Badge',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6496,'Tikbalang_Thick_Spine','Tikbalang\'s Thick Spine',3,300,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6497,'Lesser_Agimat','Lesser Agimat',3,20,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6498,'Jejellopy','Jejellopy',3,200,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6499,'Ancient_Grudge','Ancient Grudge',3,500,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6500,'Sharp_Bamboo','Sharpened Bamboo',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6501,'Salt_Bag','Salt Bag',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6502,'Silver_Cross','The Cross',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6503,'Soul_Protection','Spiritual Protection',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6504,'Cast_Iron_Caldron','Cast-Iron Caldron',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6505,'Purified_Bone','Purified Spirit Bone',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6506,'Memorial_Bouquet','Offering Bouquet',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6507,'Evil_Bone','Evil Spirit Bone',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6508,'Silver_Bracelet','Silver Bracelet',3,300,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6509,'Mysterious_Flower','Mysterious Flower',3,500,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6510,'Elegant_Flower','Elegant Flower',3,300,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6511,'Beautiful_Flower','Beautiful Flower',3,300,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6512,'Charm_Fire','Fire Amulet',3,100,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6513,'Charm_Ice','Ice Amulet',3,100,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6514,'Charm_Wind','Wind Amulet',3,100,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6515,'Charm_Earth','Earth Amulet',3,100,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6516,'Bakonawa_Doll','Bakonawa Doll',3,3000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6517,'Bangungot_Doll','Bangungot Doll',3,3000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6518,'Buwaya_Doll','Buwaya Doll',3,3000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6519,'Collected_Samples','Collected Sample',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6520,'Lost_Belongings','Lost Belongings',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6521,'Royal_Certificate','Royal Certificate',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6522,'Royal_Certificate_','Royal Certificate',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6523,'Bakonawa_Spirit_Piece','Piece of Bakonawa\'s Spirit',3,3000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6524,'Bangungot_Spirit_Piece','Piece of Bangungot\'s Spirit',3,3000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6525,'Buwaya_Spirit_Piece','Piece of Buwaya\'s Spirit',3,3000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6526,'BlueCard_Happy','BlueCard Happy',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6527,'BlueCard_Enjoy','BlueCard Enjoy',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6528,'BlueCard_Light','BlueCard Light',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6529,'BlueCard_Mid','BlueCard Mid',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6530,'BlueCard_Fall','BlueCard Fall',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6531,'Royal_Certificate__','Royal Certificate',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6532,'Honey_Songpyun','Honey Songpyun',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6533,'Torn_Document','Torn Document',3,2,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6534,'Fruit_Sundae','Fruit Sundae',3,2,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6535,'Red_Cloth','Red Cloth',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6536,'Star_Decor','Star Decor',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6537,'Sky_Medal','Sky Medal',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6538,'Real_Blank_Card','Real Blank Card',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6539,'Old_Left_Lapine','Old Left Lapine',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6540,'Golden_Leaf','Golden Leaf',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6541,'Avant_Research_Data','Avant Research Data',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6542,'Star_Shape_Mushroom','Star Shape Mushroom',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6543,'Lv110_Achieved_Coin','Lv110 Achieved Coin',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6544,'Lv120_Achieved_Coin','Lv120 Achieved Coin',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6545,'Firm_Hair','Firm Hair',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6546,'Younger_Bro_Letter','Younger Bro Letter',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6547,'Stained_Research_Book','Stained Research Book',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6548,'Piece_Of_Lapine_Wing','Piece Of Lapine Wing',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6549,'Courtesy_Ticket','Courtesy Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6550,'Brownie_Ticket','Brownie Ticket',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6551,'RWC_Spirit_Auger','RWC Spirit Auger',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6552,'Mail_Package','Mail Package',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6553,'Leaf_Made_Wood','Leaf Made Wood',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6554,'Seed_Box','Seed Box',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6555,'Birthday_Candle','Birthday Candle',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6556,'Nespresso_Ticket','Nespresso Ticket',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6557,'Fancy_Fairy_Wing','Fancy Fairy Wing',3,2350,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6558,'Pile_Of_Acorn','Pile Of Acorn',3,1500,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6559,'Eye_Drops','Eye Drops',3,1780,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6560,'Leaf_Bookmark','Leaf Bookmark',3,3000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6561,'Dustball','Dustball',3,2000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6562,'Tiny_Mouse_Tail','Tiny Mouse Tail',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6563,'Weeds','Weeds',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6564,'Captive_Hatchling','Captive Hatchling',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6565,'Racy_Spice','Racy Spice',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6566,'Cacao99_Recipe','Cacao99 Recipe',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6567,'Choco_Drink_Recipe','Choco Drink Recipe',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6581,'Holy_Amulet','Holy Amulet',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6583,'3rd_Test_Pass','3rd Test Pass',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6592,'Small_Wooden_Chest','Small Wooden Chest',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6593,'Cryptura_Hair_Coupon','Cryptura Hair Coupon',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6594,'Magic_Bronze_Bullion','Magic Bronze Bullion',3,0,NULL,1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6595,'Hammer_Of_Velund','Hammer Of Velund',3,0,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6596,'Anvil_Of_Velund','Anvil Of Velund',3,0,NULL,2000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6597,'Bracelet_Of_Velund','Bracelet Of Velund',3,0,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6598,'Rib_Of_Jormungand','Rib Of Jormungand',3,0,NULL,10000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6599,'Spirit_Of_Hugin','Spirit Of Hugin',3,0,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6600,'Spirit_Of_Munin','Spirit Of Munin',3,0,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6601,'Chisel_Of_Giant','Chisel Of Giant',3,0,NULL,1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6602,'Secret_Of_Rune','Secret Of Rune',3,0,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6603,'Skin_Of_Hraesvelg','Skin Of Hraesvelg',3,0,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6604,'Essence_Rune_Magic','Essence Rune Magic',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6605,'Muspellium','Muspellium',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6606,'P_Cart_C','Cute Cart Remodel Coupon',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6607,'Temporal_Crystal','Temporal Crystal',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6608,'Coagulated_Spell','Coagulated Spell',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6609,'Glast_Decayed_Nail','Glast Decayed Nail',3,2800,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6610,'Glast_Horrendous_Mouth','Glast Horrendous Mouth',3,3200,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6611,'Colorful_Key','Colorful Key',3,50000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6612,'Gold_Coin_Basket','Gold Coin Basket',3,300000,NULL,200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6613,'Colorful_Brooch','Colorful Brooch',3,100000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6615,'Siege_Guild_Coin','Siege Guild Coin',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6616,'Lmtd_Manny_Card','Limited Manny Card',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6617,'Lmtd_Sid_Card','Limited Sid Card',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6618,'Lmtd_Diego_Card','Limited Diego Card',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6619,'Lmtd_Scrat_Card','Limited Scrat Card',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6623,'Rough_Energy_Crystal','Rough Energy Crystal',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6624,'Purified_Energy_Crystal','Purified Energy Crystal',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6625,'High_Purity_Energy_Xtal','High Energy Crystal',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); - -REPLACE INTO `item_db_re` VALUES (6635,'Blacksmith_Blessing','Blacksmith Blessing',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6636,'STRStone_Top','STR Stone (Upper)',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6637,'INTStone_Top','INT Stone (Upper)',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6638,'AGIStone_Top','AGI Stone (Upper)',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6639,'DEXStone_Top','DEX Stone (Upper)',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6640,'VITStone_Top','VIT Stone (Upper)',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6641,'LUKStone_Top','LUK Stone (Upper)',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6642,'ATKStone_Middle','ATK Stone (Middle)',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6643,'MATKStone_Middle','MATK Stone (Middle)',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6644,'HITStone_Bottom','HIT Stone (Lower)',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6645,'FLEEStone_Bottom','FLEE Stone (Lower)',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); - -REPLACE INTO `item_db_re` VALUES (6669,'Jade_Leaf','Emerald Leaf',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); - -REPLACE INTO `item_db_re` VALUES (6697,'Costumes_Exchange_Coupons','Costumes Exchange Coupons',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6646,'Poring_Badge','Poring Badge',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6648,'Shabby_Crown','Old Crown',3,10,NULL,10,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6649,'Broken_Horn','Broken Horn',3,10,NULL,10,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6650,'Shabby_Ring','Old Ring',3,10,NULL,10,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6651,'Rusty_Bracelet','Rusty Bracalet',3,10,NULL,10,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6652,'Old_Photo_Album','Old Photo Album',3,10,NULL,10,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6653,'Shabby_Pill','Old Pill',3,10,NULL,10,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6654,'Needle_And_Thread','Needle And Thread',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6655,'Firm_Pumpkin','Firm Pumpkin',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6656,'Goast_Free_Charm','Goast Free Charm',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6657,'Memory_Of_Jack','Memory Of Jack',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6658,'Halloween_Coin','Halloween Coin',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6665,'RWC_Inicializer','RWC Inicializer',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6671,'Geffen_Coin_Magic_Tournament','Geffen Coin Magic Tournament',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6672,'Shard_of_Gray','Shard of Gray',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6673,'Bossnia_Tickets','Bossnia Tickets',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6674,'GM_Coin','GM Coin',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6681,'XMAS_Cookie','Christmas Cookie',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6682,'Bag_Of_Selling_Goods','Bag Of Selling Goods',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6683,'Dried_Flower','Dried Flower',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6684,'TokenOfHero','Token Of Hero',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6685,'Morocc_Certification','Morocc Certification',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6686,'Brick','Brick',3,10,NULL,2000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6687,'Rope__','Rope',3,10,NULL,2000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6688,'Wood_','Wood',3,10,NULL,2000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6689,'BurningSkin','Burning Bug Skin',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6690,'YummyStem','Yummy Stem',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6691,'BurningFeather','Burning Feather',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6692,'PatrolLog','Patrol Log',3,10,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6693,'Stone_Of_Blessing','Stone Of Blessing',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6694,'Monster_Blood','Monster Blood',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6695,'ToothOfFlameGolem','Golem\'s Fiery Stone Tooth',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6696,'ToothOfFlameFrilldora','Frilldora\'s Fiery Nape',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6698,'Wooden_Axe','Wooden Axe',3,10,NULL,1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6699,'Faith_Silence','Faith Silence',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6700,'White_Snake_Scale','White Snake Scale',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6701,'Treasure_Dwarf','Treasure Dwarf',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6702,'Sweat_Dwarf','Sweat Dwarf',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6703,'Warrior_Tears','Warrior Tears',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6704,'Warrior_Anger','Warrior Anger',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6705,'Warrior_Certificate','Warrior Certificate',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6706,'Guardian_Flowers','Guardian Flowers',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6707,'Jeremy_Beauty_Coupon','Jeremy Beauty Coupon',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6708,'Mana_crystal','Mana Crystal',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6709,'Crisp_Silk','Crisp Silk',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6710,'Tied_Snake','Tied Snake',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6712,'Lovely_Stick','Lovely Stick',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6713,'Heart_of_Soul','Heart of Soul',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6714,'Sheenas_Soul','Sheena\'s Soul',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6715,'P_Of_Evil_Soul','Darklord Soulpiece',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6716,'Cri_Stone','CRI Stone (Upper)',6,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6717,'MaxHP_Stone','Stamina Stone (Middle)',6,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6718,'MaxSP_Stone','Magic Stone (Lower)',6,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6719,'Jitterbug\'s_Tooth','Jitterbug\'s Tooth',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6720,'Status_Reset_Coupon','Status Reset Coupon',18,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'resetstatus;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6721,'Status_Reset_Coupon_','Status Reset Coupon',18,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'resetstatus;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6722,'Delicious_Clam_Flesh','Delicious Clam Flesh',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6723,'Delicious_Canned_Food','Delicious Canned Food',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6724,'Savage_Box','Savage Box',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6725,'Grand_Peco_Box','Grand Peco Box',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6726,'Desert_Wolf_Box','Desert Wolf Box',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6727,'Arranged_Photo_Album','Arranged Photo Album',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6732,'Monster_Coin','Monster Coin',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6733,'Tingly_Feather','Tingly Feather',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6734,'Unknown_Meal','Unknown Meal',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6735,'Special_Condiment','Special Condiment',3,0,NULL,20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6736,'Minced_Meat','Minced Meat',3,0,NULL,20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6737,'Fermented_Wheat_Flour','Fermented Wheat Flour',3,0,NULL,20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6738,'Rissole','Rissole',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6739,'Recipe','Recipe',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6740,'HealStone_Top','Recovery Stone (Upper)',6,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6741,'HealStone2_Top','Recovery Skill Stone (Upper)',6,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6742,'HealStone_Middle','Recovery Stone (Middle)',6,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6743,'HPStone_Middle','HP Stone (Middle)',6,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6744,'SPStone_Middle','SP Stone (Middle)',6,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6745,'HealStone_Bottom','Recovery Stone (Low)',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6746,'Iron_Artifacts','Steel Artifact',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6747,'Iron_Artifacts_','Steel Artifact',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6748,'Excavator_Repoet','Daily Report He And His Team',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6749,'Power_Control_Device','Operation Control Device',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6750,'Failed_Engine','Failed Engine',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6751,'Crushed_Can_Iron_Plate','Crushed Can Iron Plate',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6752,'Charleston_Parts','Charleston Parts',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6753,'Sign_Of_Destruction','Token Of Destruction',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6754,'Collected_Herb','Collected Medicinal Herbs',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6755,'Contaminated_Magic','Contaminated Magic',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6756,'Condensed_Energy','Cohesive Energy',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6757,'Memory_Record','The Memory Recorder',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); - -REPLACE INTO `item_db_re` VALUES (6762,'Banana_Can','Banana Can',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6763,'Spicy_Rice_Cake','Spicy Rice Cake',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6764,'Hotdog','Hot Dog',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6765,'Big_Wheel_Cracker','Ferris Wheel Biscuit',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6766,'Ice_World_Ticket','Tickets Ice Kingdom',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6767,'Summer_Fes_Coin','Summer Festival Coins',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6768,'Red_Beans_Of_Ice','Shaved Ice For Red Beans',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6769,'Sweet_Rice_Cake','Sweet Bread',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6770,'Shark','Shark',3,1,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6771,'Bluefin_Tuna','Bonito',3,1,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6772,'Octopus','Octopus',3,1,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6773,'Snapper','Sea Bream',3,1,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6774,'Piranha','Piranha',3,1,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6775,'Salmon','Salmon',3,1,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6776,'Eels','Eel',3,1,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6777,'Carp','Carp',3,1,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6778,'Squid_2','Squid',3,1,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6779,'Mackerel','Mackerel',3,1,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6780,'Crucian_Carp','Crucian Carp',3,1,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6781,'Living_Earthworm','Earthworms Alive',3,1,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6782,'Fresh_Lobster','Fresh Shrimp',3,1,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6784,'Squid_Skewer','Squid Skewer',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6785,'Fantastic_Sauce','Source Of Fantasy',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6786,'Squid_Of_Bbq','Squid Barbecue',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6787,'Good_Firewood','Long Firewood',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6788,'Rose_Knife','Rose Knife',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6789,'Custom_Pan','Customized Plates',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6790,'BigStone_Top','Large Stone (Upper)',6,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6791,'MediumStone_Top','Medium Stone (Upper)',6,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6792,'SmallStone_Top','Small Stone (Upper)',6,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6795,'Ticket_Special_RO2','Ticket Special RO2',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6796,'RO2_Name_Card','RO2 Name Card',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6797,'11th_Coin','11th Anniversary Coin',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6803,'Fragments_Of_Gigan','Fragments Of Gigan',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6804,'ORGANIC_PUMPKIN','Organic Pumpkin',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6805,'INORGANIC_PUMPKIN','Inorganic Pumpkin',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6813,'Kafra_Ticket','Kafra Ticket',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6814,'Swordman_Soul','Swordman Soul',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6815,'Merchant_Soul','Merchant Soul',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6816,'Thief_Soul','Thief Soul',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6817,'Mage_Soul','Mage Soul',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6818,'Archer_Soul','Archer Soul',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6819,'Acolyte_Soul','Acolyte Soul',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6820,'Particles_Of_Energy','Energy Fragment',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6821,'Solo_Troops_Badge','Single Union Badge',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6824,'Lab_Memory_Record','Experimental Dong Memory Record',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6825,'Air_Cleaner_Box','Air Cleaner Box',3,10,NULL,10000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6826,'Fresh_Grapes','Fresh Grapes',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6827,'Normal_Parts','Complete Machine Parts',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6828,'Gravity_Parts','Gravity Safety Device',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6832,'Questioned_Parts','Questioned Parts',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6833,'Limited_Token_of_Ziegfried','(Limited) Token of Ziegfried',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6834,'Legendary_Fur','Legendary Fur',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6835,'Legendary_Mane','Legendary Mane',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6836,'Talisman_Of_Soul','Talisman Of Soul',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6837,'Piece_Of_Soul_Mouse','Piece Of Soul Mouse',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6838,'Secret_Orders_Of_Prophet_K','Secret Orders Of Prophet K',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6839,'Gold_Choco_Coin','Gold Choco Coin',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6840,'Silver_Choco_Coin','Silver Choco Coin',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6841,'Bronze_Choco_Coin','Bronze Choco Coin',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6842,'Huge_Jewery','Huge Jewery',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6843,'Thin_Ring','Thin Ring',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6844,'Mild_Stone','Mild Stone',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6845,'That_Thing','That Thing',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6846,'Limited_Gym_Membership_Card','(Limited)Gym Membership Card',6,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6847,'Very_Small_Box','Very Small Box',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6848,'Light_Box','Light Box',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6849,'Request_Complete_Certificate','Request Complete Certificate',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6850,'Questionable_Box','Questionable Box',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6851,'Questionable_Document','Questionable Document',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6852,'Super_Corrector','Super Corrector',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6853,'Thanks_Bouquet','Thanks Bouquet',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6854,'Novus_Captured','Novus Captured',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6855,'Tatacho_Captured','Tatacho Captured',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6856,'Manuscript_Written_By_Pigoreum','Manuscript Written By Pigoreum',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6857,'Very_Hard_Stone','Very Hard Stone',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6858,'Lude_Captured','Lude Captured',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6859,'Wanderer_Captured','Wanderer Captured',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6860,'Piece_Of_Soul_Cow','Piece Of Soul Cow',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6862,'Piece_Of_Soul_Tiger','Piece Of Soul Tiger',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6863,'Strong_Piece_Of_Soul_Tiger','Strong Piece Of Soul Tiger',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6864,'Safe_to_19_Weapon_Certificate','Safe to 19 Weapon Certificate',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6865,'Safe_to_19_Armor_Certificate','Safe to 19 Armor Certificate',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6866,'Piece_Of_Soul_Rabbit','Piece Of Soul Rabbit',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6867,'Large_Insect_Barrel','Large Insect Barrel',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6868,'Medium_Insect_Barrel','Medium Insect Barrel',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6869,'Dust','Dust',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6870,'Safe_to_13_Weapon_Certificate','Safe to 13 Weapon Certificate',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6871,'Safe_to_14_Weapon_Certificate','Safe to 14 Weapon Certificate',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6872,'Safe_to_15_Weapon_Certificate','Safe to 15 Weapon Certificate',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6873,'Safe_to_16_Weapon_Certificate','Safe to 16 Weapon Certificate',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6874,'Safe_to_17_Weapon_Certificate','Safe to 17 Weapon Certificate',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6875,'Safe_to_18_Weapon_Certificate','Safe to 18 Weapon Certificate',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6876,'Safe_to_13_Armor_Certificate','Safe to 13 Armor Certificate',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6877,'Safe_to_14_Armor_Certificate','Safe to 14 Armor Certificate',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6878,'Safe_to_15_Armor_Certificate','Safe to 15 Armor Certificate',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6879,'Safe_to_16_Armor_Certificate','Safe to 16 Armor Certificate',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6880,'Safe_to_17_Armor_Certificate','Safe to 17 Armor Certificate',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6881,'Safe_to_18_Armor_Certificate','Safe to 18 Armor Certificate',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6882,'Advanced_Bait','Advanced Bait',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6883,'Pet_Snow_Bunny_Exchange_Ticket','Pet Snow Bunny Exchange Ticket',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6884,'Pet_Tikbalang_Exchange_Ticket','Pet Tikbalang Exchange Ticket',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6885,'Piece_Of_Soul_Dragon','Piece Of Soul Dragon',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6886,'Strong_Piece_Of_Soul_Dragon','Strong Piece Of Soul Dragon',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6892,'Invasion_Plan','Invasion Plan',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6893,'Human\'s_Cookbook','Human\'s Cookbook',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6894,'Champion_Badge','Champion Badge',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6895,'Processed_Ancient_Rune','Processed Ancient Rune',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6896,'Processed_Mystic_Rune','Processed Mystic Rune',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6897,'Blue_Whale','Blue Whale',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6898,'Whale','Whale',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6899,'Giant_Octopus','Giant Octopus',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6900,'Giant_Squid','Giant Squid',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6901,'Sturgeon','Sturgeon',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6902,'King_Lobster','King Lobster',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6903,'King_Earthworm','King Earthworm',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6904,'Piece_Of_Soul_Snake','Piece Of Soul Snake',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6905,'Broken_Magic_Stone','Broken Magic Stone',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6906,'Limited_High_Density_Kalunium','(Limited)High Density Kalunium',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6907,'Piece_Of_Soul_Horse','Piece Of Soul Horse',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6908,'ASPDStone_Robe','Stone ASPD (Garment)',6,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bAspd,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6909,'Actinidia_Cat_Fruit','Actinidia Cat Fruit',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6910,'Limited_Purified_Oridecon','(Limited) Purified Oridecon',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6911,'Limited_Purified_Eluminium','(Limited) Purified Eluminium',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6912,'Piece_Of_Soul_Sheep','Piece Of Soul Sheep',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6913,'Holy_Rosary','Holy Rosary',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6914,'Black_Horn','Black Horn',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6915,'Captured_Soul','Captured Soul',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6916,'Piece_Of_Soul_Monkey','Piece Of Soul Monkey',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6917,'Piece_Of_Soul_Chicken','Piece Of Soul Chicken',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6919,'TokenOfHonor','Honor Token',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6920,'Rune_Magic_Powder','Rune Magic Powder',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6921,'Dehumidifiers','Dehumidifiers',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6922,'Sandpaper','Sandpaper',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6923,'Bright_Fire_Lights','Bright Fire Lights',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6924,'Red_Eye','Red Eye',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6925,'Letter_Of_Prisoner','Letter Of Prisoner',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6926,'Midgards_Histories','Rune-Midgarts History Book',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6927,'Stone_That_Contained_Sea','Stone That Contained Sea',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6928,'Poring_Scourer','Poring Scourer',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6929,'Letter_With_Stamped_Seal','Letter With Stamped Seal',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6930,'Samples_New_Business_Items','Samples New Business Items',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6931,'Secret_Documents','Secret Documents',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6932,'Rare_Book','Rare Book',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6933,'Banquet_Invitation_Letter','Banquet Invitation Letter',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6934,'Magnificent_Dish','Magnificent Dish',3,10,NULL,1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6935,'Advanced_Dish','Advanced Dish',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6936,'Cold_Core','Cold Core',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6937,'Silicone_Shell','Silicone Shell',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6938,'Hedgehog_Picks','Hedgehog Picks',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6939,'Old_Belt','Worn-Out Belt',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6940,'Moving_Dark_Matter','Moving Black Material',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6941,'Fragments_Valkyrie_Power','Fragments Valkyrie Power',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6942,'Will_Master','Will Master',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6943,'ATKStone_Top','ATK Stone (Upper)',6,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6944,'MATKStone_Top','MATK Stone (Upper)',6,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6945,'STRStone_Middle','STR Stone (Middle)',6,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6946,'INTStone_Middle','INT Stone (Middle)',6,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6947,'AGIStone_Middle','AGI Stone (Middle)',6,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6948,'DEXStone_Middle','DEX Stone (Middle)',6,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6949,'VITStone_Middle','VIT Stone (Middle)',6,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6950,'LUKStone_Middle','LUK Stone (Middle)',6,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6951,'HPStone_Bottom','HP Stone (Lower)',6,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6953,'Ramor_Refine_Ticket','Ramor Refine Ticket',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'/*Refine succeed guarantee until +9 for item 2598 only*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6954,'Piece_Of_Soul_Dog','Piece Of Soul Dog',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6955,'Piece_Of_Soul_Pig','Piece Of Soul Pig',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6956,'Captured_Sheep','Captured Sheep',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6957,'Lamb_Fleece','Lamb Fleece',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6958,'Lamb_Horns','Lamb Horns',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6960,'Air_Stronghold_Key','Sky Fortress Key',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6961,'LargeScrap','Huge Metal Scrap',3,10,0,1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6962,'OldTank','Old Fuel',3,10,0,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6963,'HPdrainStone_Robe','HP Absorption Stone (Garment)',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6964,'SPdrainStone_Robe','SP Absorption Stone (Garment)',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6965,'Reactor_P_FIRE_','Fire Property Reactor Blueprint',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6966,'Reactor_P_WATER_','Water Property Reactor Blueprint',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6967,'Reactor_P_GROUND_','Earth Property Reactor Blueprint',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6968,'Reactor_P_WIND_','Wind Property Reactor Blueprint',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6969,'Reactor_T_FIRE_','Fire Resistance Reactor Blueprint',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6970,'Reactor_T_WATER_','Water Resistance Reactor Blueprint',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6971,'Reactor_T_GROUND_','Earth Resistance Reactor Blueprint',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6972,'Reactor_T_WIND_','Wind Resistance Reactor Blueprint',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6973,'Reactor_Cure_101_','Recovery101 Reactor Blueprint',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6974,'Reactor_Cure_102_','Recovery102 Reactor Blueprint',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6975,'Reactor_Cure_201_','Recovery201 Reactor Blueprint',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6976,'Reactor_Cure_202_','Recovery202 Reactor Blueprint',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6977,'Reactor_A_STR_','STR Reactor Blueprint',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6978,'Reactor_A_INT_','INT Reactor Blueprint',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6979,'Reactor_A_DEF_','DEF Reactor Blueprint',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6980,'Reactor_A_AVOI_','Perfect Dodge Reactor Blueprint',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6981,'Reactor_A_ATK_','Attack Reactor Blueprint',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6982,'Reactor_A_MATK_','Magical Reactor Blueprint',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6983,'Reactor_A_MHP_','HP Reactor Blueprint',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6984,'Reactor_A_MSP_','SP Reactor Blueprint',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6985,'Reactor_A_FROZ_','Frozen Reactor Blueprint',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6986,'Reactor_A_ASPD_','ASPD Reactor Blueprint',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (6999,'HPdrainStone_Top','HP Absorption Stone (Upper)',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); - -# -REPLACE INTO `item_db_re` VALUES (7001,'Mould_Powder','Mould Powder',3,466,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7002,'Ogre_Tooth','Ogre Tooth',3,658,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7003,'Anolian_Skin','Anolian Skin',3,968,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7004,'Mud_Lump','Mud Lump',3,876,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7005,'Skull','Skull',3,1044,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7006,'Wing_Of_Red_Bat','Wing of Red Bat',3,168,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7007,'Claw_Of_Rat','Claw of Rat',3,748,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7008,'Stiff_Horn','Stiff Horn',3,636,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7009,'Glitter_Shell','Glitter Shell',3,528,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7010,'Tail_Of_Steel_Scorpion','Tail of Steel Scorpion',3,548,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7011,'Claw_Of_Monkey','Claw of Monkey',3,466,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7012,'Tough_Scalelike_Stem','Tough Scalelike Stem',3,412,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7013,'Coral_Reef','Coral Reef',3,772,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7014,'Old_Portrait','Old Portrait',3,1500,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7015,'Bookclip_In_Memory','Bookclip in Memory',3,3000,NULL,20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7016,'Spoon_Stub','Spoon Stub',3,2500,NULL,20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7017,'Executioner\'s_Mitten','Executioner\'s Mitten',3,4500,NULL,30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7018,'Young_Twig','Young Twig',3,50,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7019,'Loki\'s_Whispers','Loki\'s Whispers',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7020,'Mother\'s_Nightmare','Mother\'s Nightmare',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7021,'Foolishness_Of_Blind','Foolishness of the Blind',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7022,'Old_Hilt','Old Hilt',3,150,NULL,30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7023,'Blade_Lost_In_Darkness','Blade Lost in Darkness',3,12000,NULL,40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7024,'Bloody_Edge','Bloody Edge',3,10000,NULL,40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7025,'Lucifer\'s_Lament','Lucifer\'s Lament',3,30000,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7026,'Key_Of_Clock_Tower','Key of Clock Tower',3,100,NULL,30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7027,'Underground_Key','Key of Underground',3,100,NULL,30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7028,'Invite_For_Duel','Invite for Duel',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7029,'Admission_For_Duel','Admission for Duel',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7030,'Claw_Of_Desert_Wolf','Claw of Desert Wolf',3,208,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7031,'Old_Frying_Pan','Old Frying Pan',3,196,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7032,'Piece_Of_Egg_Shell','Piece of Egg Shell',3,168,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7033,'Poison_Spore','Poison Spore',3,114,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7034,'Red_Socks_With_Holes','Red Stocking',3,100,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7035,'Matchstick','Matchstick',3,100,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7036,'Fang_Of_Garm','Fang of Hatii',3,100,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7037,'Trade_Coupon','Coupon',2,100,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'/*set pcroom,(gettimetick(2)+7200);*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7038,'Yarn','Yarn',3,100,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7039,'Novice_Nametag','Newbie Tag',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7040,'Megaphone','Megaphone',3,1,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7041,'Fine_Grit','Fine Grit',3,120,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7042,'Leather_Bag_Of_Infinity','Leather Bag of Infinity',3,1,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7043,'Fine_Sand','Fine Sand',3,100,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7044,'Vigorgra','Vigorgra',3,1,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7045,'Magic_Paint','Magic Paint',3,1,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7046,'Cart_Parts','Cart Parts',3,1,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7047,'Alice\'s_Apron','Alice\'s Apron',3,2424,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7048,'Talon_Of_Griffin','Talon of Griffon',3,5418,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7049,'Stone','Stone',3,0,NULL,30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7050,'Cotton_Mat','Cotton Mat',3,100,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7051,'Silk_Mat','Silk Mat',3,100,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7052,'Old_Magazine','Old Papers',3,100,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7053,'Cyfar','Cyfar',3,772,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7054,'Brigan','Brigan',3,746,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7055,'Animal_Pooopoo','Animal Poop',3,100,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7056,'Payroll_Of_Kafra','Payment Statement for Kafra Employee',3,1,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7057,'Gallar_Horn','Gjallar',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7058,'Gullraifnir','Gleipnir',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7059,'Cargo_Free_Ticket','Free Ticket for Kafra Storage',3,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7060,'Warp_Free_Ticket','Free Ticket for Kafra Transportation',3,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7061,'Cart_Free_Ticket','Free Ticket for the Cart Service',3,1,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7062,'Broken_Turtle_Shell','Broken Turtle Shell',3,280,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7063,'Soft_Feather','Soft Feather',3,280,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7064,'Dragon_Fly_Wing','Wing of Dragonfly',3,520,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7065,'Sea_Otter_Leather','Sea-Otter Fur',3,820,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7066,'Ice_Piece','Ice Cubic',3,660,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7067,'Stone_Piece','Stone Fragment',3,640,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7068,'Burn_Tree','Burnt Tree',3,722,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7069,'Broken_Armor_Piece','Destroyed Armor',3,1042,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7070,'Broken_Shell','Broken Shell',3,900,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7071,'Tatters_Clothes','Tattered Clothes',3,1280,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7072,'Rust_Suriken','Old Shuriken',3,1780,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7073,'Jewel_Of_Prayer','Freya\'s Jewel',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7074,'Iron_Glove','Thor\'s Gauntlets',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7075,'Iron_Maiden','Iron Maiden',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7076,'Mystery_Wheel','Wheel of the Unknown',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7077,'Silver_Fancy','Silver Ornament',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7078,'Anger_Of_Valkurye','Wrath of Valkyrie',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7079,'Feather_Of_Angel','Feather of Angel Wing',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7080,'Foot_Step_Of_Cat','Cat Tread',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7081,'Beard_Of_Women','Woman\'s Moustache',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7082,'Root_Of_Stone','Root of Stone',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7083,'Soul_Of_Fish','Spirit of Fish',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7084,'Saliva_Of_Bird','Sputum of Bird',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7085,'Tendon_Of_Bear','Sinew of Bear',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7086,'Symbol_Of_Sun','Emblem of the Sun God',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7087,'Breath_Of_Soul','Breath of Spirit',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7088,'Crystal_Of_Snow','Snow Crystal',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7089,'Indication_Of_Tempest','Omen of Tempest',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7090,'Slilince_Wave','Ripple',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7091,'Rough_Billows','Billow',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7092,'Air_Stream','Drifting Air',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7093,'Wheel','Cogwheel',3,1512,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7094,'Mystery_Piece','Fragment',3,1344,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7095,'Broken_Steel_Piece','Metal Fragment',3,1075,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7096,'Cold_Magma','Lava',3,1109,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7097,'Burning_Heart','Burning Heart',3,924,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7098,'Live_Coal','Live Coal',3,638,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7099,'Old_Magic_Circle','Worn-out Magic Scroll',3,773,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7100,'Sharp_Leaf','Sharp Leaf',3,806,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7101,'Peco_Wing_Feather','Peco Peco Feather',3,454,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7102,'Hideous_Dream','Nightmare',3,1075,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7103,'Unknown_Liquid_Bottle','Unknown Liquid Bottle',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7104,'Fake_Angel_Wing','False Angel Wing',3,756,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7105,'Fake_Angel_Loop','False Heaven Ring',3,924,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7106,'Goat\'s_Horn','Antelope Horn',3,672,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7107,'Gaoat\'s_Skin','Antelope Skin',3,756,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7108,'Boroken_Shiled_Piece','Piece of Shield',3,1680,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7109,'Shine_Spear_Blade','Shining Spear Blade',3,840,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7110,'Vroken_Sword','Broken Sword',3,588,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7111,'Smooth_Paper','Slick Paper',3,706,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7112,'Fright_Paper_Blade','Sharp Paper',3,907,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7113,'Broken_Pharaoh_Symbol','Broken Pharaoh Emblem',3,2016,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7114,'Tutankhamen\'s_Mask','Masque of Tutankhamen',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7115,'Harpy\'s_Feather','Harpy Feather',3,1142,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7116,'Harpy\'s_Claw','Harpy Talon',3,1210,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7117,'Rent_Spell_Book','Torn Magic Book',3,1142,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7118,'Rent_Scroll','Torn Scroll',3,1361,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7119,'Spawns','Bacillus',3,1025,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7120,'Burning_Horse_Shoe','Burning Horseshoe',3,823,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7121,'Honey_Jar','Honey Pot',3,622,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7122,'Hot_Hair','Burning Hair',3,974,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7123,'Dragon\'s_Skin','Dragon Skin',3,1025,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7124,'Sand_Lump','Sand Clump',3,706,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7125,'Scropion\'s_Nipper','Scorpion Claw',3,706,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7126,'Large_Jellopy','Large Jellopy',3,840,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7127,'Alcol_Create_Book','Alcohol Creation Guide',3,100000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7128,'FireBottle_Create_Book','Bottle Grenade Creation Guide',3,100000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7129,'Acid_Create_Book','Acid Bottle Creation Guide',3,100000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7130,'Plant_Create_Book','Plant Bottle Creation Guide',3,100000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7131,'Mine_Create_Book','Marine Sphere Creation Guide',3,100000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7132,'Coating_Create_Book','Glistening Coat Creation Guide',3,100000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7133,'Slim_Potion_Create_Book','Condensed Potion Creation Guide',3,240000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7134,'Medicine_Bowl','Medicine Bowl',3,8,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7135,'Fire_Bottle','Bottle Grenade',3,200,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7136,'Acid_Bottle','Acid Bottle',3,200,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7137,'MenEater_Plant_Bottle','Plant Bottle',3,200,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7138,'Mini_Bottle','Marine Sphere Bottle',3,200,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7139,'Coating_Bottle','Glistening Coat',3,200,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7140,'Seed_Of_Life','Seed of Life',3,60000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7141,'Yggdrasilberry_Dew','Morning Dew of Yggdrasil',3,20000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7142,'Germination_Breed','Embryo',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7143,'Life_Force_Pot','Glass Tube',3,5000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7144,'Normal_Potion_Book','Potion Creation Guide',3,100000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7145,'Rag_T_Shirts','Ragnarok T-shirt',3,1,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7146,'Vacance_Ticket','Vacation Ticket',3,1,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7147,'Jasmin','Jasmine',3,1,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7148,'Mother_Letter','Mother\'s Letter',3,1,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7149,'Yellow_Plate','Yellow Plate',3,220,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7150,'Bamboo_Cut','Piece of Bamboo',3,310,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7151,'Oil_Paper','Oil Paper',3,210,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7152,'Glossy_Hair','Glossy Hair',3,340,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7153,'Old_Japaness_Clothes','Worn-out Kimono',3,590,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7154,'Poison_Powder','Poisonous Powder',3,160,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7155,'Poison_Toad\'s_Skin','Poisonous Toad Skin',3,280,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7156,'Broken_Shuriken','Broken Shuriken',3,470,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7157,'Black_Mask','Dark Mask',3,315,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7158,'Broken_Wine_Vessel','Broken Liquor Jar',3,160,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7159,'Tengu\'s_Nose','Tengu Nose',3,400,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7160,'Lord\'s_Passable_Ticket','Feudal Lord Permit',3,1,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7161,'Black_Bear\'s_Skin','Black Bear Skin',3,384,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7162,'Cloud_Piece','Cloud Crumb',3,390,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7163,'Sharp_Feeler','Hard Feeler',3,570,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7164,'Hard_Peach','Solid Peach',3,400,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7165,'Limpid_Celestial_Robe','Transparent Celestial Robe',3,650,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7166,'Soft_Silk_Cloth','Soft Silk',3,1200,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7167,'Mystery_Iron_Bit','Strange Steel Piece',3,430,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7168,'Great_Wing','Giant Butterfly Wing',3,614,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7169,'Taegeuk_Plate','Ba Gua',3,2800,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7170,'Tuxedo','Tuxedo',3,43000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7171,'Leopard_Skin','Leopard Skin',3,282,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7172,'Leopard_Talon','Leopard Claw',3,290,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7173,'BurnBuster_Bag','iROGM02\'s Backpack',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7174,'Packing_Ribbon','Wrapping Lace',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7175,'Packing_Paper','Wrapping Paper',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7176,'XMAS_Coupon','Royal Certificate',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7177,'Part_Of_Star\'s_Sob','Crumb of Sobbing Starlight',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7178,'Star\'s_Sob','Sobbing Starlight',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7179,'Donation_Card','Proof of Donation',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7180,'Introduction_Of_Mr.Han','Hahn Sukbong\'s Recommendation',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7181,'Receipt_01','Receipt',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7182,'Cacao','Cacao',3,200,NULL,20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7183,'Sister_Letter','Letter from Sister',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7184,'Piano_Keyboard','Piano Key',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7185,'Quiz_Ticket','Quiz Entry',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7186,'Thin_Stem','Thin Trunk',3,380,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7187,'Festival_Mask','Festival Mask',3,100,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7188,'Browny_Root','Brown Root',3,560,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7189,'Heart_Of_Tree','Wooden Heart',3,680,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7190,'Solid_Peeling','Solid Husk',3,140,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7191,'Lamplight','Lamp',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7192,'Blade_Of_Pinwheel','Vane',3,160,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7193,'Germinating_Sprout','Sprout',3,230,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7194,'Soft_Leaf','Soft Blade of Grass',3,400,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7195,'Air_Rifle','Slingshot',3,210,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7196,'Shoulder_Protection','Shoulder Protector',3,230,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7197,'Tough_Vines','Tough Vines',3,500,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7198,'Great_Leaf','Huge Leaf',3,610,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7199,'Coupon','Coupon',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7200,'Flexible_String','Elastic Band',3,380,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7201,'Log','Log',3,250,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7202,'Beetle_Nipper','Pincher of Beetle',3,290,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7203,'Solid_Twig','Strong Branch',3,190,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7204,'Gunpowder','Gunpowder',3,320,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7205,'Piece_Of_Black_Cloth','Piece of Black Cloth',3,526,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7206,'Black_Kitty_Doll','Black Cat Doll',3,1440,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7207,'Old_Manteau','Old Manteau',3,1050,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7208,'Rusty_Cleaver','Rusty Kitchen Knife',3,1780,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7209,'Dullahan\'s_Helm','Helm of Dullahan',3,1350,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7210,'Dullahan_Armor','Armor Piece of Dullahan',3,790,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7211,'Rojerta_Piece','Fragment of Rossata Stone',3,2600,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7212,'Hanging_Doll','Hung Doll',3,1020,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7213,'Needle_Pouch','Needle Packet',3,832,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7214,'Bat_Cage','Bat Cage',3,880,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7215,'Broken_Needle','Broken Needle',3,690,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7216,'Red_Scarf','Red Muffler',3,660,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7217,'Spool','Spool',3,424,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7218,'Rotten_Rope','Decomposed Rope',3,390,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7219,'Striped_Socks','Striped Sock',3,920,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7220,'Ectoplasm','Ectoplasm',3,322,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7221,'Tangled_Chain','Tangled Chains',3,740,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7222,'Tree_Knot','Wooden Gnarl',3,468,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7223,'Distorted_Portrait','Contorted Self-Portrait',3,2032,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7224,'Stone_Of_Intelligence','Stone of Sage',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7225,'Pumpkin_Bucket','Pumpkin Lantern',3,486,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7226,'Pill','Pellet',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7227,'TCG_Card','TCG Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7228,'Gold_Bullion','Gold Bullion',3,100000,NULL,300,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7229,'Silver_Bullion','Silver Bullion',3,50000,NULL,300,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7230,'White_Gold_Bullion','Platinum Bullion',3,200000,NULL,300,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7231,'Gold_Ore','Gold Ore',3,20,NULL,150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7232,'Silver_Ore','Silver Ore',3,20,NULL,150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7233,'Mithril_Ore','Mithril Ore',3,20,NULL,150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7234,'Soul_Of_Guild','Spirit of Guild',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7235,'Soul_Of_Courage','Spirit of Charge',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7236,'Soul_Of_Guard','Spirit of Protection',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7237,'Soul_Of_Partnership','Spirit of Association',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7238,'Soul_Of_Correspondence','Spirit of Coordination',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7239,'Soul_Of_Proceeding','Spirit of Advance',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7240,'Soul_Of_Confidence','Spirit of Trust',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7241,'Soul_Of_Agreement','Spirit of Union',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7242,'Soul_Of_Harmony','Spirit of Combination',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7243,'Soul_Of_Cooperate','Spirit of Cooperation',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7244,'Soul_Of_Unity','Spirit of Solidarity',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7245,'Soul_Of_Friendship','Spirit of Friendship',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7246,'Soul_Of_Peace','Spirit of Peace',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7247,'Soul_Of_Spirit','Spirit of Determination',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7248,'Soul_Of_Honor','Spirit of Honor',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7249,'Soul_Of_Service','Spirit of Service',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7250,'Soul_Of_Glory','Spirit of Glory',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7251,'Soul_Of_Victory','Spirit of Victory',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7252,'Herb_Medicine','Herbal Medicine',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7253,'Taeguk_Flag','Golden Korean Flag',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7254,'Digital_Print_Ticket','Digital Picture Printing Coupon',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7255,'China_Marble01','Mystic Orb',3,0,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7256,'China_Marble02','Mystic Orb',3,0,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7257,'China_Marble03','Mystic Orb',3,0,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7258,'China_Marble04','Mystic Orb',3,0,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7259,'China_Marble05','Mystic Orb',3,0,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7260,'China_Marble06','Mystic Orb',3,0,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7261,'China_Marble07','Mystic Orb',3,0,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7262,'Fan','Folding Fan of Cat Ghost',3,466,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7263,'Cat_Eyed_Stone','Cat\'s Eye',3,954,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7264,'Dried_Sand','Dry Sand',3,322,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7265,'Dragon_Horn','Dragon Horn',3,544,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7266,'Dragon_Fang','Denture from Dragon Mask',3,436,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7267,'Tiger_Skin_Panties','Tiger Panty',3,298,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7268,'Little_Blacky_Ghost','Little Ghost Doll',3,1210,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7269,'Bib','Pinafore',3,960,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7270,'Milk_Bottle','Nursing Bottle',3,1100,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7271,'Figure','Novice Figure',3,10000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7272,'Meat_Dumpling_Doll','Rice Ball Doll',3,500,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7273,'Golden_Necklace','RWC Necklace',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7274,'Ancient_Translator','Translated Ancient Language',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7275,'Ancient_Document','Record of Ancient Language',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7276,'Picture_Letter','Doodled Message',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7277,'Munak_Doll','Munak Doll',3,8900,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7278,'Wellbeing_Letter','Letter to Wife',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7279,'Vita500_Lid','Vita500 Lid',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7280,'Quiz_Ticket01','1st Quiz Entry',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7281,'Quiz_Ticket02','2nd Quiz Entry',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7282,'Quiz_Ticket03','3rd Quiz Entry',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7283,'Quiz_Ticket04','4th Quiz Entry',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7284,'Quiz_Ticket05','5th Quiz Entry',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7285,'Thread_Skein','Holy Threads',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7286,'Chilli','Red Chile',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7287,'Thread_Skein_','Holier Threads',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7288,'Thai_Ring','Engagement Ring',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7289,'Olivine','Peridot',3,3000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7290,'Phlogopite','Phlogopite',3,3000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7291,'Agate','Agate',3,3000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7292,'Muscovite','Muscovite',3,3000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7293,'Rose_Quartz','Rose Quartz',3,3000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7294,'Turquoise','Turquoise',3,3000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7295,'Citrine','Citrin',3,3000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7296,'Pyroxene','Pyroxene',3,3000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7297,'Biotite','Biotite',3,3000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7298,'Leaf_Clothes','Fig Leaf',3,538,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7299,'Bamboo_Basket','Straw Basket',3,632,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7300,'Gemstone','Gemstone',3,1420,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7301,'Sword_Accessory','Tassel',3,798,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7302,'KRATHONG','Krathong',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7303,'Bag_Of_Rice','Straw Rice Bag',3,0,NULL,800,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7304,'Witch\'s_Spell_Book','Witch\'s Spell Scroll',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7305,'Authority_Of_Nine_World','Symbol of the Nine Realms',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7306,'Fragment_Of_Soul','Piece of Spirit',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7307,'Whisper_Of_Soul','Spiritual Whispers',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7308,'Witch\'s_Potion','Witch\'s Tonic',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7309,'Wing_Of_Crow','Crow Wing',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7310,'Free_Peco_Ticket','Free Ticket for Peco Ride',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7311,'Free_Flying_Ship_Ticket','Free Ticket for Flyship',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7312,'Jubilee','Jubilee',3,32,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7313,'Seal_Of_Witch','Witch\'s Medal',3,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7314,'The_Sign','The Sign',3,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7315,'Dark_Crystal_Fragment','Dark Crystal Fragment',3,422,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7316,'Long_Limb','Insect Leg',3,658,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7317,'Screw','Rusty Screw',3,534,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7318,'Old_Pick','Old Pick',3,512,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7319,'Old_Steel_Plate','Used Iron Plate',3,1024,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7320,'Air_Pollutant','Dust Pollutant',3,256,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7321,'Fragment_Of_Crystal','Crystal Fragment',3,552,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7322,'Poisonous_Gas','Toxic Gas',3,666,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7323,'Battered_Kettle','Battered Kettle',3,256,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7325,'Tube','Flexible Tube',3,102,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7326,'Fluorescent_Liquid','Fluorescent Liquid',3,712,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7327,'Headlamp','Flashlight',3,1024,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7328,'Legendary_Scroll','Legend of Songkran',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7329,'Old_Copper_Key','Old Bronze Key',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7330,'2anny','Mystic Orb',3,0,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7331,'Flower_Of_Heaven','Heaven Flower',3,500,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7332,'Slate','Complete Tablet',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7333,'Piece_Of_Slate_1','Prontera Tablet',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7334,'Piece_Of_Slate_2','Payon Tablet',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7335,'Piece_Of_Slate_3','Morocc Tablet',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7336,'Piece_Of_Slate_4','Geffen Tablet',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7337,'Eye_Of_Hellion','Eye of Hellion',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7338,'RO_Transportation_Card','One-way Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7339,'RO_Transportation_Card_','Commemorative Travel Card',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7340,'Will_Of_Darkness','Will of the Darkness',3,734,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7341,'Worn_Out_Pendant','Old Pendant',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7342,'File01','File Folder',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7343,'File02','Sealed File Folder',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7344,'File03','Shinokas Case File',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7345,'Armlet_Of_Prisoner','Handcuffs',3,724,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7346,'Pile_Of_Ymir_Heart','Ymir\'s Heart Piece',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7347,'Lab_Staff_Record','Research Chart',3,840,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7348,'Indication_Of_Member01','Membership Card',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7349,'Indication_Of_Member02','Archive Permit',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7350,'Pass','Pass',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7351,'Friend\'s_Diary','Friend\'s Diary',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7352,'Transparent_Plate01','Transparent Plate',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7353,'Transparent_Plate02','Transparent Plate',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7354,'Transparent_Plate03','Transparent Plate',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7355,'Transparent_Plate04','Transparent Plate',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7356,'Piece_Of_Crest1','Crest Piece',3,5000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7357,'Piece_Of_Crest2','Crest Piece',3,5000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7358,'Piece_Of_Crest3','Crest Piece',3,5000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7359,'Piece_Of_Crest4','Crest Piece',3,5000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7360,'RO_Festival_Ticket','RO Festival Invitation',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7361,'Lotto01','Lotto Ball 01',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7362,'Lotto02','Lotto Ball 02',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7363,'Lotto03','Lotto Ball 03',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7364,'Lotto04','Lotto Ball 04',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7365,'Lotto05','Lotto Ball 05',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7366,'Lotto06','Lotto Ball 06',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7367,'Lotto07','Lotto Ball 07',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7368,'Lotto08','Lotto Ball 08',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7369,'Lotto09','Lotto Ball 09',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7370,'Lotto10','Lotto Ball 10',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7371,'Lotto11','Lotto Ball 11',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7372,'Lotto12','Lotto Ball 12',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7373,'Lotto13','Lotto Ball 13',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7374,'Lotto14','Lotto Ball 14',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7375,'Lotto15','Lotto Ball 15',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7376,'Lotto16','Lotto Ball 16',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7377,'Lotto17','Lotto Ball 17',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7378,'Lotto18','Lotto Ball 18',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7379,'Lotto19','Lotto Ball 19',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7380,'Lotto20','Lotto Ball 20',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7381,'Lotto21','Lotto Ball 21',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7382,'Lotto22','Lotto Ball 22',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7383,'Lotto23','Lotto Ball 23',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7384,'Lotto24','Lotto Ball 24',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7385,'Lotto25','Lotto Ball 25',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7386,'Lotto26','Lotto Ball 26',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7387,'Lotto27','Lotto Ball 27',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7388,'Lotto28','Lotto Ball 28',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7389,'Lotto29','Lotto Ball 29',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7390,'Lotto30','Lotto Ball 30',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7391,'Lotto31','Lotto Ball 31',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7392,'Lotto32','Lotto Ball 32',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7393,'Lotto33','Lotto Ball 33',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7394,'Lotto34','Lotto Ball 34',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7395,'Lotto35','Lotto Ball 35',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7396,'Lotto36','Lotto Ball 36',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7397,'Lotto37','Lotto Ball 37',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7398,'Lotto38','Lotto Ball 38',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7399,'Word_Card01','Selamat',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7400,'Word_Card02','Hari',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7401,'Word_Card03','Kemerdekaan',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7402,'Word_Card04','Republik',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7403,'Word_Card05','Indonesia',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7404,'Word_Card06','Ke-60',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7405,'Crushed_Can','Crushed Can',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7406,'Moon_Cake1','Yuebing',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7407,'Moon_Cake2','Yuebing',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7408,'Moon_Cake3','Yuebing',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7409,'Moon_Cake4','Yuebing',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7410,'Moon_Cake5','Yuebing',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7411,'Moon_Cake6','Yuebing',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7412,'Moon_Cake7','Yuebing',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7413,'Moon_Cake8','Yuebing',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7414,'Moon_Cake9','Yuebing',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7415,'Stone_Of_Summons','Summoning Stone',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7416,'Letter_Of_Recommend','Letter of Recommendation',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7417,'Mission_ScrollA','Written Request(A)',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7418,'Mission_ScrollB','Written Request(B)',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7419,'Embryo_HandBook','Embryo Creation Guide',3,48000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7420,'Skull_','Skull',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7421,'Key_Red','Red Key',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7422,'Key_Yellow','Yellow Key',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7423,'Key_Blue','Blue Key',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7424,'Key_Green','Green Key',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7425,'Key_Black','Black Key',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7426,'Magic_Gem_Red','Red Charm Stone',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7427,'Magic_Gem_Yellow','Yellow Charm Stone',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7428,'Magic_Gem_Blue','Blue Charm Stone',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7429,'Magic_Gem_Green','Green Charm Stone',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7430,'Magic_Gem_Black','Black Charm Stone',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7431,'Several_Books','Pile of Books',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7432,'Leather_Pouch','Leather Pouch',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7433,'Scroll','Blank Scroll',3,4000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7434,'Elemental_Potion_Book','Elemental Potion Creation Guide',3,100000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7435,'Golden_Bracelet','Golden Ornament',3,1907,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7436,'Piece_Of_Memory_Green','Fragment of Agony',3,1506,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7437,'Piece_Of_Memory_Purple','Fragment of Misery',3,1506,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7438,'Piece_Of_Memory_Blue','Fragment of Hatred',3,1506,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7439,'Piece_Of_Memory_Red','Fragment of Despair',3,1506,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7440,'Red_Feather','Red Feather',3,1335,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7441,'Blue_Feather','Blue Feather',3,1408,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7442,'Cursed_Seal','Cursed Seal',3,1332,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7443,'Tri_Headed_Dragon_Head','Three-Headed Dragon\'s Head',3,956,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7444,'Treasure_Box','Treasure Box',3,300000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7445,'Dragonball_Green','Green Bijou',3,887,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7446,'Dragonball_Blue','Blue Bijou',3,887,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7447,'Dragonball_Red','Red Bijou',3,887,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7448,'Dragonball_Yellow','Yellow Bijou',3,887,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7449,'Bloody_Page','Bloody Page',3,681,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7450,'Piece_Of_Bone_Armor','Skeletal Armor Piece',3,2050,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7451,'Scale_Of_Red_Dragon','Fire Dragon Scale',3,1852,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7452,'Yellow_Spice','Yellow Spice',3,750,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7453,'Sweet_Sauce','Sweet Sauce',3,525,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7454,'Plain_Sauce','Savory Sauce',3,525,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7455,'Hot_Sauce','Spicy Sauce',3,525,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7456,'Red_Spice','Red Spice',3,750,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7457,'Cooking_Oil','Cooking Oil',3,375,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7458,'Baphomet\'s_Horn','Fortune Horn',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7459,'RAMADAN_','Idul Fitri Card',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7460,'Niflheim_Ticket','Niflheim Express Ticket',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7461,'BlueCard_A','Blue A Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7462,'BlueCard_E','Blue E Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7463,'BlueCard_F','Blue F Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7464,'BlueCard_H','Blue H Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7465,'BlueCard_L','Blue L Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7466,'BlueCard_N','Blue N Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7467,'BlueCard_O','Blue O Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7468,'BlueCard_P','Blue P Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7469,'BlueCard_U','Blue U Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7470,'BlueCard_W','Blue W Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7471,'BlueCard_Y','Blue Y Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7472,'Cookbook01','Level 1 Cookbook',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7473,'Cookbook02','Level 2 Cookbook',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7474,'Cookbook03','Level 3 Cookbook',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7475,'Cookbook04','Level 4 Cookbook',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7476,'Cookbook05','Level 5 Cookbook',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7477,'Cookbook06','Level 6 Cookbook',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7478,'Cookbook07','Level 7 Cookbook',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7479,'Cookbook08','Level 8 Cookbook',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7480,'Cookbook09','Level 9 Cookbook',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7481,'Cookbook10','Level 10 Cookbook',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7482,'Pot','Pot',3,150,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7483,'Key_Of_Seal','Key of the Seal',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7484,'Warrior_Symbol','Symbol of a Brave Warrior',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7485,'2nd_Floor_Pass','Cloud General',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7486,'3rd_Floor_Pass','Wind General',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7487,'Tavern_Wine','Culinary Wine',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7488,'Delivery_Box','Delivery Package',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7489,'Villa_Spare_Key','Cottage Key',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7490,'Kyll_Hire_Letter','Letter to Elly',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7491,'Iron_Box','Steel Box',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7492,'Yellow_Key_Card','Yellow Keycard',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7493,'Golden_Key','Golden Key',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7494,'Kiel_Button','Luxurious Button',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7495,'Blue_Key_Card','Blue Keycard',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7496,'Red_Key_Card','Red Keycard',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7497,'Steel_Piece','Metal Fragment',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7498,'Rosimier_Key','Rosimier Mansion Keys',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7499,'Family_Portrait','Family Portrait',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7500,'Elysia_Portrait','Woman\'s Portrait',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7501,'Kyll_Hire_Letter2','K.H\'s Letter',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7502,'Piece_Memo_Of_James','James\'s Note',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7503,'Man_Portrait','Man\'s Portrait',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7504,'Toy_Motor','Power Device',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7505,'Toy_Key','Toy Key',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7506,'Black_Key_Card','Black Keycard',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7507,'Sturdy_Iron_Piece','Solid Iron Piece',3,842,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7508,'Elysia_Ring','Allysia\'s Ring',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7509,'Fancy_Key_Card','Luxurious Keycard',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7510,'Valhalla_Flower','Valhalla\'s Flower',3,200000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7511,'Rune_Of_Darkness','Rune of Darkness',3,2526,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7512,'Burnt_Parts','Burnt Part',3,1600,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7513,'Pocket_Watch__','Pocket Watch',3,3420,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7514,'Monster_Ticket','Monster Ticket',3,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7515,'Marvelous_Medal','Prize Medal',3,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7516,'Green_Key_Card','Green Keycard',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7517,'Gold_Coin_','Gold Coin',3,1000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7518,'Women\'s_Medal','Women\'s Medal',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7519,'Money_Envelope','Handsel',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7520,'Chinese_Scroll','Please Be Rich',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7521,'Flame_Stone','Flame Stone',3,150,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7522,'Ice_Stone','Ice Stone',3,150,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7523,'Wind_Stone','Wind Stone',3,150,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7524,'Shadow_Orb','Shadow Orb',3,300,NULL,20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7525,'Summer_Feast_Ticket','Summer Festival Ticket',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7526,'Manuscript_Paper','Manuscript Paper',3,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7527,'Life_Book','Book About True Life',3,0,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7528,'Id_Lottery_Ticket','Lottery Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7529,'Stolen_Sandals','Stolen Sandal',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7530,'Travel_Brochure_01','Travel Brochure [Amatsu]',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7531,'Travel_Brochure_02','Travel Brochure [Kunlun]',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7532,'Travel_Brochure_03','Travel Brochure [Luoyang]',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7533,'Travel_Brochure_04','Travel Brochure [Ayothaya]',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7534,'Photo_Album_01','Amatsu Completed Photo Album',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7535,'Photo_Album_02','Kunlun Completed Photo Album',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7536,'Photo_Album_03','Luoyang Completed Photo Album',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7537,'Photo_Album_04','Ayothaya Completed Photo Album',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7538,'Sifted_Sand','Sand for Work',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7539,'Poring_Coin','Poring Coin',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7540,'Lotto39','Lotto Ball 39',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7541,'Lotto40','Lotto Ball 40',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7542,'Lotto41','Lotto Ball 41',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7543,'Lotto42','Lotto Ball 42',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7544,'Lotto43','Lotto Ball 43',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7545,'Lotto44','Lotto Ball 44',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7546,'Lotto45','Lotto Ball 45',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7547,'Soccer_Ball','Soccer Ball',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7548,'Soccer_Shoes','Soccer Shoes',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7549,'Brazilian_Flag','Brazilian Flag',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7550,'Ticket01','6.13 Ticket',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7551,'Ticket02','6.18 Ticket',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7552,'Ticket03','6.22 Ticket',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7553,'Lotus_Flower','Lotus Flower',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7554,'Striped_Candle','Striped Candle',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7555,'Green_Incense','Green Incense',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7556,'Longing_Heart','Longing Heart',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7557,'Invitation_Letter','Invitation Letter',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7558,'Invitation_Ticket','Invitation Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7559,'Key_Of_Flower_Garden','Key to the Secret Garden',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7560,'Longing_Heart2','Longing Heart',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7561,'Ice_Heart','Glacial Heart',3,606,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7562,'Ice_Scale','Ice Scale',3,3020,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7563,'Bloody_Rune','Bloody Rune',3,2016,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7564,'Rotten_Meat','Rotten Meat',3,102,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7565,'Sticky_Poison','Sticky Poison',3,350,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7566,'Will_Of_Darkness_','Will of Red Darkness',3,1530,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7567,'Suspicious_Hat','Suspicious Hat',3,1290,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7568,'White_Mask','White Mask',3,1060,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7569,'Hammer_Of_Wind','Wind Hammer',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7570,'Temple_Lottery_Ticket','Temple Lottery Ticket',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7571,'Diary_Of_Blue','Bruspetti\'s Diary',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7572,'Magic_Necklace','Ashy Necklace',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7573,'Magic_Necklace_','Sparkling Necklace',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7574,'Ice_Particle','Freezing Snow Powder',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7575,'Red_Jewel_','Red Jewel',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7576,'Blue_Jewel_','Blue Jewel',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7577,'Golden_Jewel_','Yellow Jewel',3,20,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7578,'Anti_Spell_Bead','Countermagic Crystal',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7579,'Silk_Handkerchief','Silk Handkerchief of Zhi Nu',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7580,'Black_Bead','Black Marble',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7581,'Anniversary_Ticket','Celebration Document',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7582,'Gem_Of_Ruin','Jewel of Destruction',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7583,'Evil_Mind','Evil Mind',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7584,'Proof_Of_Guard1','Guard\'s First Proof',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7585,'Proof_Of_Guard2','Guard\'s Second Proof',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7586,'Proof_Of_Guard3','Guard\'s Third Proof',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7587,'Proof_Of_Guard4','Guard\'s Fourth Proof',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7588,'IPOD_Ticker','IPOD Coupon',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7589,'Moon_Cake10','Lettered Moon Snack 01',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7590,'Moon_Cake11','Lettered Moon Snack 02',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7591,'Moon_Cake12','Lettered Moon Snack 03',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7592,'Moon_Cake13','Lettered Moon Snack 04',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7593,'Moon_Cake14','Lettered Moon Snack 05',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7594,'Sonia\'s_Letter','Sonia\'s Letter',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7595,'Unique_Sword','Special Sword',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7596,'Unique_Shield','Special Shield',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7597,'Magic_Stone','Magic Stone',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7598,'BlueCard_I','Blue I Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7599,'BlueCard_D','Blue D Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7600,'BlueCard_K','Blue K Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7601,'BlueCard_S','Blue S Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7602,'BlueCard_R','Blue R Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7603,'RO_Party_Ticket','RO Party Invitation Ticket',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7604,'Flour','Flour',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7605,'Chicken_Egg','Chicken Egg',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7606,'Coin','Token of the Ox',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7607,'Evil_Dragon_Head','Neck of Demon Dragon',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7608,'Premium_Ticket','Premium Ticket',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7609,'Pumpkin_Mojo','Pumpkin Mojo',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7610,'Food_Ticket','Food Exchange Ticket',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7611,'Fox_Symbol','Symbol of Fox',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7612,'Heart_Of_Fox_Queen','Heart of Queen Fox',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7613,'Small_Rice_Dough','Small Rice Cake Dough',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7614,'Special_Packing_Paper','Wrapping Paper',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7615,'MVP_Ticket','MVP Voucher',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7616,'Mini_Boss_Ticket','Miniboss Voucher',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7617,'Monster_Ticket_','Monster Voucher',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7618,'Monster_Crystal','Monster Crystal',3,2,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7619,'Enriched_Elunium','Enriched Elunium',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7620,'Enriched_Oridecon','Enriched Oridecon',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7621,'Token_Of_Siegfried','Token Of Siegfried',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7622,'New_Style_Coupon','Hairstyle Coupon',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7623,'Name_Change_Coupon','Ticket Of Identification',3,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7624,'Spring_Stanza23','Spring Stanza23',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7625,'Registration_Ticket','Registration Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7626,'Bubble_Gum_Token','Bubble Gum Token',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7627,'Sage_Key','Sage Key',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7628,'Idiot_Key','Idiot Key',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7629,'Pink_Gift_Box','Pink Gift Box',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7630,'Clean_Beach_Brush','Clean Beach Brush',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7631,'Trash_Debris','Trash Debris',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7632,'To_Afterworld_Record','Terrible Report Card',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7633,'To_Heaven_Record','Heavensent Report Card',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7634,'Rose_Of_Father','Father Rose',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7635,'Perfume_Pouch','Incense Bag',3,100,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7636,'Magic_Potion_Bottle','Magic Potion Bottle',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7637,'Father_Giftbox','Father Giftbox',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7638,'TW_Green_Box','TW Green Box',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7639,'TW_Red_Box','TW Red Box',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7640,'Butterfly_Hair_Decoration','Butterfly Hair Decoration',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7641,'Medical_Cure_Box','Medical Cure Box',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7642,'Bloody_Coin','Bloody Coin',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7643,'Bloody_Letter','Bloody Letter',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7644,'Unsent_Letter','Unsent Letter',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7646,'RO_Luk_Bookmark','RO Luk Bookmark',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7647,'Taiwan_Luk_Coin','Taiwan Luk Coin',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7648,'Snake_Bookmark','Snake Bookmark',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7649,'Big_Luk_Bookmark','Big Luk Bookmark',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7651,'Mystery_Egg','Mystery Egg',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7663,'Full_Metal_Jacket','Full Metal Jacket',3,200,NULL,2,'10',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7664,'Shooting_Mine','Grenade Launcher',3,450,NULL,3,'10',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7665,'Dragon_Tail_Missile','Dragon Tail Missile',3,1500,NULL,100,'10',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7666,'TimeTravel_Scroll','Time Travel Scroll',3,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7667,'Abandoned_Machine','Abandoned Machine',3,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7668,'Clean_Bandage','Clean Bandage',3,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7669,'Rubbing_Alchohol','Rubbing Alchohol',3,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7670,'Sour_Grass','Sour Grass',3,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7671,'Firstaid_Kit','First Aid Kit',3,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7672,'Relief_Food','Relief Food',3,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7674,'Mysterious_Ingredient','Mysterious Ingredient',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7675,'Mysterious_Doll','Mysterious Doll',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7676,'Transmission_Coupon','Transmission Coupon',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7679,'Oneclick_Weapon_7UP','One Click Weapon 7UP',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7680,'Oneclick_Weapon_9UP','One Click Weapon 9UP',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7681,'Oneclick_Armor_7UP','One Click Armor 7UP',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7682,'Oneclick_Armor_9UP','One Click Armor 9UP',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7690,'Special_Exchange_Coupons','Special Exchange Coupons',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7701,'Dragon_Spirit','Soul',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7702,'Special_Cogwheel','Special Cogwheel',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7703,'Piece_Of_Cogwheel','Piece of Cogwheel',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7704,'Broken_Thermometer','Broken Thermometer',3,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7705,'Note_Of_Geologist','Note of Geologist',3,2,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7706,'Spoiled_Carrot_Juice','Broken Carrot Juice',3,20,NULL,40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7707,'Spoiled_Banana_Juice','Broken Banana Juice',3,20,NULL,40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7708,'Spoiled_Apple_Juice','Broken Apple Juice',3,20,NULL,40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7709,'Spoiled_Grape_Juice','Broken Grape Juice',3,20,NULL,40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7710,'Black_Gemstone','Black Gemstone',3,600,NULL,30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7711,'Update_Ticket','Event Ticket',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7712,'Nokia5500','Nokia 5500',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7713,'BlueCard_A_','Blue A(2) Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7714,'BlueCard_R_','Blue R(2) Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7715,'Handmade_Choco_Recipe','Handmade Chocolate Recipe',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7716,'Strawberry_Choco_Recipe','Chocolate Strawberry Recipe',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7717,'Choco_Tart_Recipe','Chocolate Tart Recipe',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7718,'Cacao_Bean','Cacao Bean',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7719,'BlueCard_G','Blue G Card',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7720,'Gold_Coin_US','Gold Coin',3,100,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7721,'Treasure_Box_','Treasure Box',3,100,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7722,'Debt_Note','Debt Note',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7723,'Diamond_Of_Ruin','Diamond of Ruin',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7724,'Forbidden_Secret_Art','Forbidden Secret Art',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7725,'Unlucky_Emerald','Unlucky Emerald',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7726,'Token_Of_King','Token of King',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7727,'HP_Doctor_Ticket','HP Doctor Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7728,'SP_Doctor_Ticket','SP Doctor Ticket',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7729,'Rok_Star_Badge','Rok Star Badge',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7730,'Mission_Certificate1','Mission Ticket 1',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7731,'Mission_Certificate2','Mission Ticket 2',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7732,'Mission_Certificate3','Mission Ticket 3',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7733,'Mission_Certificate4','Mission Ticket 4',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7734,'Mission_Certificate5','Mission Ticket 5',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7735,'Mission_Certificate6','Mission Ticket 6',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7736,'Mission_Certificate7','Mission Ticket 7',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7737,'Mission_Certificate8','Mission Ticket 8',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7738,'Mission_Certificate9','Mission Ticket 9',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7739,'Mission_Certificate10','Mission Ticket 10',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7740,'Mission_Certificate11','Mission Ticket 11',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7741,'Mission_Certificate12','Mission Ticket 12',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7742,'Kaong','Kaong',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7743,'Gulaman','Gulaman',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7744,'Leche_Flan','Leche Flan',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7745,'Ube_Jam','Ube Jam',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7746,'Sago','Sago',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7747,'Langka','Langka',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7748,'Sweet_Bean','Sweet Beans',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7749,'Sweet_Banana','Sweet Bananas',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7750,'Macapuno','Macapuno',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7751,'Old_White_Cloth','Old White Cloth',3,550,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7752,'Clattering_Skull','Clattering Skull',3,840,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7753,'Broken_Farming_Utensil','Broken Farming Utensil',3,330,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7754,'Broken_Crown','Broken Crown',3,3000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7755,'Research_Note','Research Note',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7756,'Sealed_Book','Sealed Book',3,2000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7757,'Mithril','Mithril',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7758,'Star_Crystal','Star Crystal',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7759,'Geology_Report','Geologist\'s Report',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7760,'Yaga_Magic_Book','Yaga\'s Magic Book',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7761,'Magic_Gourd_Bottle','Magic Gourd Bottle',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7762,'Yaga_Pestle','Yaga\'s Pestle',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7763,'Sticky_Herb','Sticky Herb',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7764,'High_Strength_Adhesive','High Strength Adhesive',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7765,'Yaga_Secret_Medicine','Baba Yaga\'s Secret Medicine',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7766,'Bok_Choy','Bok Choy',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7767,'Chung_E_Cake','Green Maiden\'s Cake',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7768,'Squid','Squid',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7769,'Egg_Yolk','Egg Yolk',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7770,'Sweet_Rice','Sweet Rice',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7771,'Lotus_Leaf','Lotus Leaf',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7772,'String','String',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7773,'War_Badge','Wat Badge',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7774,'Chung_E_Ticket','Green Maiden Ticket',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7775,'Spring_Rabbit_Ticket','Spring Rabbit Ticket',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7776,'Max_Weight_Up_Scroll','Gym Pass',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7777,'Gold_Box','Sealed Golden Box',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7778,'Silver_Box','Sealed Silver Box',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7779,'Gold_Key_TW','Golden Key',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7780,'Silver_Key','Silver Key',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7781,'Heart_Box','Engrave Treasure Box',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7782,'Gold_Key77','Episode 13.1 Poporing Key',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7783,'Silver_Key77','Episode 13.2 Poring Key',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7784,'Fawner_Coupon1','Free Coupon 1',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7785,'Fawner_Coupon2','Free Coupon 2',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7786,'Fawner_Coupon3','Free Coupon 3',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7787,'Fawner_Coupon4','Free Coupon 4',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7788,'Fawner_Coupon5','Free Coupon 5',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7789,'Fawner_Coupon6','Free Coupon 6',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7790,'Fawner_Coupon7','Free Coupon 7',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7791,'Fawner_Coupon8','Free Coupon 8',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7792,'Guyak','Guyak',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7793,'Golden_Apple','Golden Apple',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7794,'Fate_Of_Crow','The Crow of Destiny',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7795,'Mami_Photo_Album','Mammi\'s Photo Album',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7796,'Author_Autograph','Author\'s Autograph',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7797,'Author_Memo','Author\'s Memo',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7798,'Dark_Debris','Fragment of Darkness',3,500,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7799,'Dark_Crystal','Crystal of Darkness',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7800,'Golden_Apple_','Golden Charm Apple',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7801,'Girl_Fan_Letter','Girl\'s Letter',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7802,'Autograph_Book','Signature Notebook',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7803,'Battle_Manual_TW','Beginner\'s Field Manual',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#REPLACE INTO `item_db_re` VALUES (7804,'????_???','????_???',3,NULL,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7805,'Brown_Ring','Brown Jenoss\'s Family Ring',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7806,'Black_Anvil','God Anvil',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7807,'Ore','God Mineral',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7808,'Gold_Hammer','God Hammer',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7809,'Gold_Furnace','God Furnace',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7810,'Yellow_Cat_Eyed_Stone','Symbol of Richness',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7811,'Gold_Anvil','Anvil',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7812,'Red_Cat_Eyed_Stone','Symbol of Bravery',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7813,'Th_Red_Ring','Red Jenoss\'s Family Ring',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7814,'Green_Ring','Green Jenoss\'s Family Ring',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7815,'Blue_Ring','Blue Jenoss\'s Family Ring',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7816,'Blue_Cat_Eyed_Stone','Symbol of Faith',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7817,'White_Cat_Eyed_Stone','Symbol of Peace',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7818,'RJC_Golden_Necklace','Jessur\'s Necklace',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7819,'Nokia5300','Nokia 5300',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7820,'Morroc_Skin','Piece of Morocc Skin',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7821,'Green_Apple','Green Apple',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7822,'Whole_Barbecue','Whole Barbecue',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7823,'Meat_Veg_Skewer','Meat Veg Skewer',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7824,'Spirit_Liquor','Spirit Liquor',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7825,'Heroic_Stone','Heroic Stone',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7826,'Continental_Guard_Paper','Continental Guard Paper',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7827,'Mineral_Report','Mineral Evals',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7828,'BF_Badge1','Bravery Badge',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7829,'BF_Badge2','Valor Badge',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7830,'Goddess_Tear','Goddess Tear',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7831,'Valkyrie_Token','Valkyrie\'s Token',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7832,'Brynhild_Armor_Piece','Brynhild Armor Piece',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7833,'Hero_Remains','Hero\'s Remains',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7834,'Andvari_Ring','Andvari\'s Ring',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7835,'Dusk_Glow','Dusk Glow',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7836,'Dawn_Essence','Dawn Essence',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7837,'Cold_Moonlight','Cold Moonlight',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7838,'Hazy_Starlight','Hazy Starlight',3,1,NULL,500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7839,'Crystal_Key','Crystal Key',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7840,'Valkyrie_Gift','Valkyrie\'s Gift',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7841,'Spotted_Paper','Stained Piece Of Paper',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7842,'Torn_Paper','Torn Piece Of Paper',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7843,'Old_Paper','Old Piece Of Paper',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7844,'Burnt_Paper','Burnt Pieces Of Paper',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7845,'Copy_Of_Spotted_Paper','Copy Of Spotted Paper',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7846,'Copy_Of_Torn_Paper','Copy Of Torn Paper',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7847,'Copy_Of_Old_Paper','Copy Of Old Paper',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7848,'Copy_Of_Burnt_Paper','Copy Of Burnt Paper',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7849,'Soul_Crystal','Soul Crystal',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7850,'Wooden_Block_','Wooden Block',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7851,'Pass_F1','Wii Raffle Ticket',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7852,'Pass_F2','Divx Player Raffle Ticket',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7853,'Pass_F3','iPod nano Raffle Ticket',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7854,'Pass_CF','Comodo Festival Ticket',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7855,'Heart','Heart',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7856,'Girl_Bunch_Of_Flower_','Girl\'s Bouquet',3,20,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7857,'Handmade_Kitty_Doll','Hand-made Kitty Doll',3,20,NULL,30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7858,'Dragonball_Yellow_','Dragonball Yellow',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7859,'Game_Ticket','Game Ticket',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7860,'Peeps','Peeps',3,0,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7861,'Jelly_Bean','Jelly Bean',3,0,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7862,'Marshmallow','Marshmallow',3,0,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7863,'GOLD_ID4','Special Gold',3,20,NULL,200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7864,'Love_Flower','Love Flower',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7865,'Gold_Pouch','Gold Pouch',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7866,'Certificate','Certificate',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7867,'SesamePouch','Sesame Bag',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7868,'Water','Fresh Water',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7869,'RicePouch','Rice Pouch',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7870,'Corn','Corn',3,5,NULL,20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7871,'BeanPouch','Bean Bag',3,10,NULL,20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7872,'Grass','Herb',3,10,NULL,30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7873,'MVP_Monster_Scroll','MVP Monster Scroll',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7874,'Monster_Scroll','Create Monster Scroll',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7875,'Pirate_Box','Pirate Treasure',3,300000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7876,'Gold_Key','Golden Key',3,0,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7877,'Red_Ring','Red Ring',3,0,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7878,'Lusalka_Hair','Lusalka\'s Hair',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7879,'Golden_Thread','Golden Thread',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7880,'Babayaga_Silver_Spoon','Baba Yaga\'s Silver Spoon',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7881,'Book_Of_Magic','Mystery Magic Book',3,0,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7882,'Pointed_Branch','Sharp Branch',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7883,'Pointed_Wooden_Flute','Wooden Flute',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7884,'Jade_Plate','Jade Plate',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7885,'Sacred_Arrow','Sacred Arrow',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7886,'Bean_Paste','Bean Paste',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7887,'Dried_Fruit_Box','Dried Fruit Box',3,0,NULL,30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7888,'Bag_Of_Nuts','Bag of Nuts',3,0,NULL,30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7889,'Chicken_Feed','Chicken Feed',3,0,NULL,20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7891,'Mug','Mug',3,2,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7892,'Charcoal','Charcoal',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7893,'Sulfur','Sulphur',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7894,'Nitrate','Nitrogen Acid',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7895,'TRO_Memory_Book01','Rama5 Book',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7896,'TRO_Memory_Book02','Loykrathong Book',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7897,'TRO_Memory_Book03','Constitution Book',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7898,'VVS_Balmung','VV Strong Balmung',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7899,'Spiritualist_Dagger','Dagger Of Psychic',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7900,'Jenoss_Ring1','Jonathan Family Ring',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7901,'Jenoss_Ring2','Jillberriel Family Ring',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7902,'Jenoss_Ring3','Jessur Family Ring',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7903,'Jenoss_Ring4','Jenoss Family Ring',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7904,'Piano_Key','Piano Key',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7905,'Rok_Star_Badge_','Rok Star Badge',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7906,'Poppy_Wreath','Poppy Wreath',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7907,'Bobbin_Of_Goddess','Bobbin Of Goddess',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7908,'Louis_Hair_Coupon','Louise\'s Beauty Coupon',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7909,'Stolen_Cookie','Stolen Cookie',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7910,'Stolen_Candy','Stolen Candy',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7911,'Yulia_Hat','Yulia\'s Hat',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7912,'Portable_Snowman','Portable Snowman Machine',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7913,'Test_Certificate','Battle Test Certificate',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7914,'Ancient_Document_TW','Ancient Language Document',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7915,'Copper_Coin_','Bronze Coin',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7916,'Silver_Coin_','Silver Coin',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7917,'Magic_Potion','Magic Potion',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7918,'Particle_Of_Memory','Fragment Of Memory',3,2000,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7919,'Festival_Ticket','Festival Ticket',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7920,'Hero\'s_Arsenal','He\'s Arsenal',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7921,'Essence_Of_Dragon','Essence Of Dragon',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7922,'RWC_Ticket','RWC Voucher Items',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7923,'KRATHONG_','Krathong',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7924,'Gold_Paper','Gold Paper',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7925,'Silver_Paper','Silver Paper',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7926,'Incense','Incense',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7927,'Candle_TW','Candle TW',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7928,'Brazilian_Flag_','Brazil National Flag',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7929,'Golden_Coin_','Gold Coin',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7930,'Cowking\'s_Nose_Ring','Devil\'s Cattle Ring',3,0,NULL,1000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7931,'Poison_Kit','Poison Kit',3,1,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7932,'Poison_Herb_Nerium','Poison Herb Nerium',3,1,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7933,'Poison_Herb_Rantana','Poison Herb Rantana',3,1,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7934,'Poison_Herb_Makulata','Poison Herb Makulata',3,1,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7935,'Poison_Herb_Seratum','Poison Herb Seratum',3,1,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7936,'Poison_Herb_Scopolia','Poison Herb Scoporia',3,1,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7937,'Poison_Herb_Amoena','Poison Herb Amoena',3,1,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7938,'Light_Granule','Light Granule',3,1500,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7939,'Elder_Branch','Elder Branch',3,1500,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7940,'Special_Alloy_Trap','Special Alloy Trap',3,300,NULL,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7941,'Halloween_Ticket','Halloween Ticket',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7942,'Letter_From_Chico','Chico Cesar Letter',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7943,'Caskinya','Caskinya',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7944,'Sealed_Box','Sealed Box',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7945,'Almighty_Charm','Universal Amulet',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7946,'Valentine_Gold_Ring','Gold Ring Of Valentine',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7947,'Valentine_Silver_Ring','Silver Ring Of Valentine',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7948,'Box','Box',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7949,'Woven_Wool','Woven Wool',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7950,'Ayothaya_Ticket','Ayothaya Fest Ticket',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7951,'Gold_Tulip','Golden Tulip Flower',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7952,'Gift_From_Romiros','Gift Of Lomi Ross',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7953,'Gift_From_Juliedge','Gift Of Juliet',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7954,'Festival_Ticket_','Summer Festival Ticket',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7955,'Lost_Card1','Lost Card1',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7956,'Lost_Card2','Lost Card2',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7957,'Lost_Card3','Lost Card3',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7958,'Lost_Card4','Lost Card4',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7959,'Ancient_Gold_Coin','Ancient Gold Coin',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7960,'Ancient_Silver_Coin','Ancient Silver Coin',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7961,'Weapon_Exchange','Weapon Exchange',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7962,'Treasure_Map1','Treasure Map1',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7963,'Treasure_Map2','Treasure Map2',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7964,'Treasure_Map3','Treasure Map3',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7965,'Treasure_Map4','Treasure Map4',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7966,'Weird_Parchment1','Weird Parchment1',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7967,'Weird_Parchment2','Weird Parchment2',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7968,'Weird_Parchment3','Weird Parchment3',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7969,'Weird_Parchment4','Weird Parchment4',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7970,'Unwritten_Letter1','Unwritten Letter1',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7971,'Unwritten_Letter2','Unwritten Letter2',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7972,'Oath_Day_Letter','Oath Day Letter',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7973,'Immortality_Egg','Immortality Egg',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7974,'Illusion_Piece','Illusion Piece',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7975,'Cupid_Choco','Cupid Choco',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7976,'Gf_Magic_Coin','Gf Magic Coin',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7977,'Hunting_Medal_Badge','Hunting Medal Badge',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7978,'Spring_Stanza1','Spring Stanza1',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7979,'Spring_Stanza2','Spring Stanza2',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7980,'Spring_Stanza3','Spring Stanza3',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7981,'Spring_Stanza4','Spring Stanza4',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7982,'Spring_Stanza5','Spring Stanza5',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7983,'Spring_Stanza6','Spring Stanza6',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7984,'Spring_Stanza7','Spring Stanza7',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7985,'Spring_Stanza8','Spring Stanza8',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7986,'Spring_Stanza9','Spring Stanza9',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7987,'Spring_Stanza10','Spring Stanza10',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7988,'Spring_Stanza11','Spring Stanza11',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7989,'Spring_Stanza12','Spring Stanza12',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7990,'Spring_Stanza13','Spring Stanza13',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7991,'Spring_Stanza14','Spring Stanza14',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7992,'Spring_Stanza15','Spring Stanza15',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7993,'Spring_Stanza16','Spring Stanza16',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7994,'Spring_Stanza17','Spring Stanza17',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7995,'Spring_Stanza18','Spring Stanza18',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7996,'Spring_Stanza19','Spring Stanza19',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7997,'Spring_Stanza20','Spring Stanza20',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7998,'Spring_Stanza21','Spring Stanza21',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (7999,'Spring_Stanza22','Spring Stanza22',3,2,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -# Pet Eggs -#=================================================================== -REPLACE INTO `item_db_re` VALUES (9001,'Poring_Egg','Poring Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9002,'Drops_Egg','Drops Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9003,'Poporing_Egg','Poporing Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9004,'Lunatic_Egg','Lunatic Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9005,'Picky_Egg','Picky Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9006,'Chonchon_Egg','Chonchon Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9007,'Steel_Chonchon_Egg','Steel Chonchon Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9008,'Hunter_Fly_Egg','Hunter Fly Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9009,'Savage_Bebe_Egg','Savage Babe Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9010,'Baby_Desert_Wolf_Egg','Baby Desert Wolf Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9011,'Rocker_Egg','Rocker Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9012,'Spore_Egg','Spore Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9013,'Poison_Spore_Egg','Poison Spore Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9014,'PecoPeco_Egg','Peco Peco Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9015,'Smokie_Egg','Smokie Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9016,'Yoyo_Egg','Yoyo Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9017,'Orc_Warrior_Egg','Orc Warrior Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9018,'Munak_Egg','Munak Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9019,'Dokkaebi_Egg','Dokebi Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9020,'Sohee_Egg','Sohee Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9021,'Isis_Egg','Isis Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9022,'Green_Petite_Egg','Green Petite Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9023,'Deviruchi_Egg','Deviruchi Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9024,'Bapho_Jr._Egg','Bapho Jr. Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9025,'Bongun_Egg','Bongun Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9026,'Zherlthsh_Egg','Zealotus Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9027,'Alice_Egg','Alice Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9028,'Rice_Cake_Egg','Hard Rice Cake',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9029,'Santa_Goblin_Egg','Christmas Goblin\'s Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9030,'Chung_E_Egg','Green Maiden Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9031,'Spring_Rabbit_Egg','Spring Rabbit Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9032,'Knife_Goblin_Egg','Knife Goblin Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9033,'Flail_Goblin_Egg','Flail Goblin Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9034,'Hammer_Goblin_Egg','Hammer Goblin Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9035,'Red_Deleter_Egg','Red Deleter Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9036,'Diabolic_Egg','Diabolic Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9037,'Wanderer_Egg','Wanderer Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9038,'New_Year_Doll_Egg','New Year Doll Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9039,'Bacsojin_Egg','Bacsojin Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9040,'Civil_Servant_Egg','Civil Servant Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9041,'Leaf_Cat_Egg','Leaf Cat Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9042,'Loli_Ruri_Egg','Loli Ruri Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9043,'Marionette_Egg','Marionette Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9044,'Shinobi_Egg','Shinobi Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9045,'Whisper_Egg','Whisper Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9046,'Goblin_Leader_Egg','Goblin Leader Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9047,'Wicked_Nymph_Egg','Wicked Nymph Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9048,'Miyabi_Ningyo_Egg','Miyabi Ningyo Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9049,'Dullahan_Egg','Dullahan Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9050,'Medusa_Egg','Medusa Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9051,'Stone_Shooter_Egg','Stone Shooter Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9052,'Incubus_Egg','Incubus Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9053,'Golem_Egg','Golem Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9054,'Nightmare_Terror_Egg','Nightmare Terror Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9055,'Succubus_Egg','Succubus Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9056,'Imp_Egg','Imp Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9057,'Egg_Of_Tiny','Egg Of Tiny',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9058,'Snow_Rabbit_Egg','Christmas Snow Rabbit Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9059,'Tikbalang_Pet','Tikbalang Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9060,'Brownie_Egg','Domovoi Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9061,'Marin_Egg','Marin Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9062,'Novice_Poring_Egg','Novice Poring Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9063,'Woodie_Egg','Woodie Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9064,'Elephant_Egg','Elephant Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9065,'Gorilla_Egg','Gorilla Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9066,'Lion_Egg','Lion Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9067,'Rhino_Egg','Rhino Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9068,'Blue_Unicorn_Egg','Blue Unicorn Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9069,'Mastering_Egg','Mastering Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9070,'Savage_Egg','Savage Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9071,'Grand_Peco_Peco_Egg','Grand Peco Peco Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9072,'Orc_Hero_Egg','Orc Hero Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9073,'Orc_Lord_Egg','Orc Lord Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9074,'Rubylit_Egg','Rubylit Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9075,'Sapphilit_Egg','Sapphilit Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9076,'Emelit_Egg','Emelit Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9077,'Topalit_Egg','Topalit Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9078,'Amelit_Egg','Amelit Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9079,'Mythlit_Egg','Mythlit Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9080,'Tamadora_Egg','Tamadora Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); - -REPLACE INTO `item_db_re` VALUES (9087,'High_Orc_Egg','High Orc Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9088,'Angeling_Egg','Angeling Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9089,'Am_Mut_Egg','Am Mut Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9090,'Little_Isis_Egg','Little Isis Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9091,'Choco_Egg','Choco Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9092,'Eggring_Egg','Eggring Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9093,'Hyegun_Egg','Hyegun Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9094,'Dr_Lunatic_Egg','Leaf Lunatic Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9095,'Nine_Tail_Egg','Nine Tail Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9096,'Cat_o_Nine_Tail_Egg','Cat o Nine Tail Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9097,'Diabolic_2_Egg','Diabolic Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9098,'Fire_Deleter_Egg','Fire Deleter Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9099,'Teddy_Bear_Egg','Teddy Bear Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9100,'Gremlin_Egg','Gremlin Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9101,'Scatletoncarrier','Scatleton\'s Cage',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9102,'Mummy_Egg','Mummy Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9103,'Willow_Egg','Willow Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9104,'Roween_Egg','Roween Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9105,'Hodremlin_Egg','Hodremlin Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9106,'Metaller_Egg','Metaller Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9107,'Ancient_Mummy_Egg','Ancient Mummy Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9108,'Xm_Teddy_Bear_Egg','Xmas Teddy Bear Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9109,'Sweet_Drops_Egg','Sweet Drops Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); - -REPLACE INTO `item_db_re` VALUES (9111,'Phreeoni_Egg','Phreeoni Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9112,'Moonlight_Egg','Moonlight Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9113,'Roost_Of_Skelion','Roost Of Skelion',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9114,'Pouring_Egg','Pouring Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9115,'Bacsojin2_Egg_','Bacsojin Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9116,'Rigid_Nightmare_Terror_Egg','Rigid Nightmare Terror Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9117,'Contaminated_Wanderer_Egg','Contaminated Wanderer Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9118,'Aliot_Egg','Aliot Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9119,'Alicel_Egg','Alicel Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9120,'Aliza_Egg','Aliza Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9121,'Orc_Hero_Egg_','Orc Hero Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9122,'Gloom_Under_Egg','Gloom Under Night Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9123,'Ep_17_2_C_Admin1_Egg','Child Admin Beta Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (9124,'Ep_17_2_C_Admin2_Egg','Child Admin Alpha Egg',7,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#=================================================================== -# Pet Accessories -#=================================================================== -REPLACE INTO `item_db_re` VALUES (10001,'Skull_Helm','Skull Helm',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (10002,'Monster_Oxygen_Mask','Monster Oxygen Mask',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (10003,'Transparent_Headgear','Transparent Head Protector',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (10004,'Pacifier','Pacifier',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (10005,'Wig','Wig',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (10006,'Queen\'s_Hair_Ornament','Queen\'s Hair Ornament',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (10007,'Silk_Ribbon','Silk Ribbon',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (10008,'Punisher','Punisher',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (10009,'Wild_Flower','Wild Flower',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (10010,'Battered_Pot','Battered Pot',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (10011,'Stellar_Hairpin','Stellar Hairpin',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (10012,'Tiny_Egg_Shell','Tiny Egg Shell',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (10013,'Backpack','Backpack',8,1500,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (10014,'Rocker_Glasses','Rocker Glasses',8,2000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (10015,'Green_Lace','Green Lace',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (10016,'Golden_Bell','Golden Bell',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (10017,'Bark_Shorts','Bark Shorts',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (10018,'Monkey_Circlet','Monkey Circlet',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (10019,'Red_Muffler','Red Scarf',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (10020,'Sword_Of_Grave_Keeper','Grave Keeper\'s Sword',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (10021,'Round_Hair_Ornament','Circular Headgear',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (10022,'Golden_Earing','Gold Earring',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (10023,'Green_Lucky_Bag','Green Jewel Bag',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (10024,'Fashionable_Glasses','Fashion Glasses',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (10025,'Star_Hairband','Hairband Of Stars',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (10026,'Wine_On_Sleeve','Tassel for Durumagi',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (10027,'Spirit_Chain_','Pet Soul Ring',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (10028,'Nice_Badge','Beautiful Badges',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (10029,'Jade_Trinket','Jade Trinket',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (10030,'Summer_Fan','Summer Fan',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (10031,'Death_Coil','Ring Of Death',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (10032,'Queen\'s_Coronet','Queen\'s Coronet',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (10033,'Apro_Hair','Afro',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (10034,'Ball_Mask','Masked Ball',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (10035,'Windup_Spring','Spring',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (10036,'Hell_Horn','Horn Of Hell',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (10037,'Black_Butterfly_Mask','Black Butterfly Mask',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (10038,'Horn_Protector','Horn Barrier',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (10039,'Tw_Backpack','Tw Backpack',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (10040,'Red_Bell_Necklace','Red Bell Necklace',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (10041,'Shiny_Star_Button','Shiny Star Button',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (10042,'Dark_Mane','Dark Mane',8,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#=================================================================== -# Misc "Etc" Books -#=================================================================== -REPLACE INTO `item_db_re` VALUES (11000,'Prontera_Book_01','History book of Prontera',3,8000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11001,'Adventure_Story01','Adventure Story Vol.1',3,8000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11002,'Great_Chef_Orleans01','Chef King Orleans Vol.1',3,8000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11003,'Legend_Of_Kafra01','Kafra Legend Vol.1',3,8000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11004,'Mercenary_Rebellion','Old Book',3,10000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11005,'Tyrant_Schmidt','Rune Royal Family Book',3,10000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11006,'Blood_Flower01','Blood Flower Vol.1',3,8000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11007,'Blood_Flower02','Blood Flower Vol.2',3,8000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11008,'Barmund','Biographical Dictionary Copy Edition',3,10000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11009,'Adventure_Story02','Adventure Story Vol.2',3,8000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11010,'Reward_List_Book','Battlegrounds Catalog',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11011,'Barmund_Note','Varmunt\'s Note',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11012,'Expedition_Report','Expedition Report',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11013,'Expedition_Report_Vol1','Expedition Report Vol1',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11014,'Expedition_Report_Vol2','Expedition Report Vol2',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11015,'Expedition_Report_Vol3','Expedition Report Vol3',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11016,'Expedition_Report_Vol4','Expedition Report Vol4',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11017,'Reward_List_Book2','KVM Reward Items Catalog',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11018,'Splendide_Selling_Item','Splendide Selling Item',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11019,'Manuk_Selling_Item','Manuk Selling Item',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11020,'Japan_Book1','Japan Book1',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11021,'Japan_Book2','Japan Book2',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11022,'Mix_Cook_Book','Mix Cook Book',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11023,'Increase_Stamina_Study','Increase Stamina Study',3,10,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11024,'Vital_Drink_CB','Vital Drink CB',3,10,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11025,'Swordman_Book_Basic','Swordman Book Basic',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11026,'Swordman_Book_Practice','Swordman Book Practice',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11027,'Swrodman_Book_Misc','Swrodman Book Misc',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11028,'Thief_Book_Basic','Thief Book Basic',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11029,'Thief_Book_Practice','Thief Book Practice',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11030,'Thief_Book_Misc','Thief Book Misc',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11031,'Archer_Book_Basic','Archer Book Basic',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11032,'Archer_Book_Practice','Archer Book Practice',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11033,'Archer_Book_Misc','Archer Book Misc',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11034,'Acol_Book_Basic','Acol Book Basic',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11035,'Acol_Book_Practice','Acol Book Practice',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11036,'Acol_Book_Misc','Acol Book Misc',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11037,'Mage_Book_Basic','Mage Book Basic',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11038,'Mage_Book_Practice','Mage Book Practice',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11039,'Mage_Book_Misc','Mage Book Misc',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11040,'Mer_Book_Basic','Mer Book Basic',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11041,'Mer_Book_Practice','Mer Book Practice',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11042,'Mer_Book_Misc','Mer Book Misc',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11043,'TK_Book_Basic','TK Book Basic',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11044,'TK_Book_Practice','TK Book Practice',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11045,'TK_Book_Misc','TK Book Misc',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11046,'Ninja_Book_Basic','Ninja Book Basic',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11047,'Ninja_Book_Practice','Ninja Book Practice',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11048,'Ninja_Book_Misc','Ninja Book Misc',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11049,'Gun_Book_Basic','Gun Book Basic',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11050,'Gun_Book_Practice','Gun Book Practice',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11051,'Gun_Book_Misc','Gun Book Misc',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11052,'SN_Book_Basic','SN Book Basic',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11053,'SN_Book_Practice','SN Book Practice',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11054,'SN_Book_Misc','SN Book Misc',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11055,'Basic_Adventure','Basic Adventure',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11056,'Elemental_Spirit_Guide','Elemental Spirit Guide',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11057,'Feb_Sweets','February Sweets',3,20,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11058,'Novice_Combi_Book','Novice Combi Book',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11059,'WoE_TE_Rental_List','WoE TE Rental List',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11060,'Energy_Xtal_Combi_Book','Energy Crystal Book',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11061,'Honor_Proof_Exchange_List','Honor Proof Exchange List',3,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#=================================================================== -# More Usable Items -#=================================================================== -REPLACE INTO `item_db_re` VALUES (11500,'Light_Yellow_Pot','Light Yellow Potion',0,550,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(175,235),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11501,'Light_White_Pot','Light White Potion',0,1200,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(325,405),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11502,'Light_Blue_Pot','Light Blue Potion',0,5000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 0,rand(40,60);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11503,'Siege_White_Potion','WoE White Potion',0,0,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(400,500),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11504,'Siege_Blue_Potion','WoE Blue Potion',0,0,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 0,rand(50,70);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11505,'Iris','Iris',0,0,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 0,150;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11506,'Fanta_Orange','Fanta Orange',0,800,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(50,70),rand(10,12);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11507,'Fanta_Grape','Fanta Grape',0,800,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(50,70),rand(10,12);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11508,'Karada_Meguri_Tea','Karada Meguricha',0,800,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(50,70),rand(10,12);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11509,'Royal_Milk_Tea','Black Tea Kochakaden',0,800,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(50,70),rand(10,12);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11510,'Coke_Zero','Coca Cola Zero',0,800,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(50,70),rand(10,12);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11511,'Coke_No_Cal','Diet Coca Cola',0,800,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(50,70),rand(10,12);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11512,'Coca_Cola','Coca Cola',0,800,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(50,70),rand(10,12);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11513,'Protect_Neck_Candy','Protect Neck Candy',0,200,NULL,1,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(5,25),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11514,'Enriched_Slim_Pot','Enriched Slim Pot',0,0,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(335,415),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11515,'Coconut','Coconut',0,1500,NULL,120,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(300,400),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11516,'Asai_Fruit','Asai Fruit',0,15,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(16,22),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11517,'Puri_Potion','Puri Potion',0,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(400,600),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11518,'N_Blue_Potion','Blue Potion',0,0,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 0,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11519,'Beef_Toast','Beef Toast',0,1200,NULL,40,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(170,250),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11520,'Mora_Mandarin','Mora Mandar',0,500,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'100',NULL,NULL,'itemheal 0,rand(50,80);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11521,'Pingui_Berry_Juice','Pingui Berry Juice',0,500,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'100',NULL,NULL,'itemheal rand(400,800),rand(50,80);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11522,'Red_Raffle_Sap','Red Raffle Sap',0,2500,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'100',NULL,NULL,'itemheal rand(400,800),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11523,'Yellow_Raffle_Sap','Yellow Raffle Sap',0,3000,NULL,120,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'110',NULL,NULL,'itemheal rand(600,1000),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11524,'White_Raffle_Sap','White Raffle Sap',0,3500,NULL,140,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'120',NULL,NULL,'itemheal rand(800,1200),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11525,'Mora_Hip_Tea','Mora Hip Tea',0,20,NULL,150,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'120',NULL,NULL,'itemheal rand(1500,2000),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11526,'Rafflecino','Rafflecino',0,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'120',NULL,NULL,'itemheal 0,rand(120,160);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11527,'Baklava','Baklava',0,3500,NULL,600,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 1200,440;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11528,'Kanafeh','Kanafeh',0,1500,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 300,240;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11529,'MAAMOUL_','Maamoul',0,500,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 120,60;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11530,'Jujube','Jujube',0,10,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 30,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11531,'Coffee','Coffee',0,10,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 0,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11532,'Nasi_Goreng','Nasi Goreng',0,15,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(17,23),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11533,'Satay','Satay',0,15,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(17,23),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11534,'Coco_Juice','Coconut Juice',0,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(17,23),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11535,'Almond_Chocolate','Almond Chocolate',0,190,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 0,rand(8,16);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11536,'Cat_Hard_Biscuit','Cat Biscuit',0,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(70,110),0; callfunc "F_Cat_Hard_Biscuit";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11537,'Rice_weevil_Bug','Rice Weevil Bug',0,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(100,150),0; callfunc "F_Rice_Weevil_Bug";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11538,'Octupus_Leg','Fresh Octopus Legs',0,20,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(35,60),rand(5,10);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11539,'Athale_Choco','Athale Choco',0,1,NULL,80,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 50,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11540,'Shyai_Choco','Shyai Choco',0,1,NULL,80,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 50,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11541,'Mid_Choco','Mid Choco',0,1,NULL,80,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 50,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11542,'Zonda_Choco','Zonda Choco',0,1,NULL,80,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 50,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11543,'Goedo_Choco','Goedo Choco',0,1,NULL,80,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 50,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11544,'Huike_Choco','Huike Choco',0,1,NULL,80,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 50,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11545,'Rune_Choco','Rune Choco',0,1,NULL,80,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 50,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11546,'Pope_Choco','Pope Choco',0,1,NULL,80,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 50,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11547,'Woe_Violet_Potion','Siege Purple Potion',0,0,NULL,120,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(500,700),rand(60,85);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11548,'Woe_White_Potion','Siege White Potion',0,0,NULL,80,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 10,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11549,'Woe_Blue_Potion','Siege Blue Potion',0,0,NULL,80,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 0,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11550,'Pumpkin_Cake','Pumpkin Cake',0,10,NULL,80,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 5,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11551,'Savory_Herb_Salad','Savory Herb Salad',0,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(20,30),0; sc_start SC_STRFOOD,180000,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11552,'Apple_Carrot_Salad','Apple Carrot Salad',0,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(20,30),0; sc_start SC_AGIFOOD,180000,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11553,'Casual_Stew','Casual Stew',0,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(20,30),0; sc_start SC_VITFOOD,180000,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11554,'Golden_Roasted_Apple','Golden Roasted Apple',0,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(20,30),0; sc_start SC_DEXFOOD,180000,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11555,'Red_Potion_RG','Red Potion RG',0,0,NULL,40,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 325,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11557,'TE_White_Potion','TE White Potion',0,200,NULL,300,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 325,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11558,'TE_White_Slim_Potion','TE White Slim Potion',0,275,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 325,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11563,'Hot_Tee','Hot Tea',2,10,NULL,20,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 0,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11564,'Sweet_Canape','Sweet Canape',2,10,NULL,20,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 1000,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11565,'White_Potion_B','White Potion',0,10,NULL,150,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(325,405),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11566,'Yellow_Potion_','Yellow Potion',0,10,NULL,130,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(175,235),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11567,'Novice_Potion_B','Novice Potion',0,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(44,66),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11568,'Red_Slim_Potion_B','Red Slim Potion',0,10,NULL,20,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(45,65),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11569,'Orange_Potion_','Orange Potion',0,10,NULL,100,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(105,145),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11570,'Red_Potion_','Red Potion',0,10,NULL,70,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(45,65),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11571,'Green_Potion_','Green Potion',0,10,NULL,70,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11572,'Blue_Potion_B','Blue Potion',0,10,NULL,150,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 0,rand(40,60);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11573,'White_Slim_Potion_B','White Slim Potion',0,10,NULL,50,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(325,405),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11574,'Yellow_Slim_Potion_','Yellow Slim Potion',0,10,NULL,30,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(175,235),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11575,'Lucky_Cookie_B','Lucky Cookie',3,10,NULL,30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11576,'Lucky_Candy_Cane_B','Lucky Lollipop',3,10,NULL,30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11577,'Rice_Ball_B','Rice Ball',0,10,NULL,30,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 200,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11578,'Candy_Striper_B','Candy Bar',0,10,NULL,40,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(105,145),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11579,'Lucky_Candy_B','Lucky Candy',3,10,NULL,30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11580,'Candy_B','Candy',0,10,NULL,30,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(45,65),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11581,'Piece_Of_Cake_B','Piece of Cake',0,10,NULL,100,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(270,330),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11582,'Well_Baked_Cookie_B','Well-baked Cookie',0,10,NULL,30,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(160,200),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11583,'Chocolate_Drink_B','Chocolate Drink',0,10,NULL,150,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(330,410),rand(45,65); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11584,'White_Chocolate_B','White Chocolate',0,10,NULL,80,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 50,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11585,'HandMade_Chocolate_B','Hand-made Chocolate',0,10,NULL,80,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 50,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11586,'HandMade_Chocolate_B_','Hand-made White Chocolate',0,10,NULL,80,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 50,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11587,'Chocolate_B','Chocolate',0,10,NULL,20,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 1,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11588,'Fresh_Strawberries','Fresh Strawberries',0,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(32,56),rand(16,28);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11589,'Iceflake','Cold Snow Cone',0,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 5,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11590,'Meat_Skewer5','Skewer No.5',0,5000,NULL,300,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(760,810),10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11592,'Trance_Candy_R','Trans Candy Red',0,20,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 45,0; transform 1507,600000,SC_MTF_MHP,1000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11593,'Trance_Candy_B','Trans Candy Blue',0,20,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 45,0; transform 1102,600000,SC_MTF_MSP,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11594,'Trance_Candy_Y','Trans Candy Yellow',0,20,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 45,0; transform 1130,600000,SC_MTF_PUMPKIN,2000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11595,'Trance_Candy_G','Trans Candy Green',0,20,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 45,0; transform 1508,600000,SC_MTF_HITFLEE,10,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11596,'Blood_In_Skull','Blood In Skull',0,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(600,800),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11597,'Iron_Bug','Iron Worm',0,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11598,'Bitter_Cacao_Bean','Bitter Cacao Bean',0,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11599,'Superstar_Potion','Superstar Potion',0,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11600,'Shining_Holy_Water','Shining Holy Water',0,10,NULL,15,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'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; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11602,'Catnip_Fruit','Catnip Fruit',0,15,NULL,1,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(10,40),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11601,'Delicious_Anchovy','Delicious Anchovy',0,20,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(30,46),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11605,'Cookies_Bat','Cookie Bat',0,0,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(50,100),0; /*TODO*/',NULL,NULL); - -REPLACE INTO `item_db_re` VALUES (11616,'Yummy_Meat','Delicious Meat',0,1400,700,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(100,150),0;',NULL,NULL); - -REPLACE INTO `item_db_re` VALUES (11621,'Red_Syrup','Red Syrup',0,800,400,7,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'60',NULL,NULL,'itemheal 325,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11622,'Yellow_Syrup','Yellow Syrup',0,1200,600,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'60',NULL,NULL,'itemheal 900,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11623,'White_Syrup','White Syrup',0,1500,750,14,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'60',NULL,NULL,'itemheal 1800,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11624,'Blue_Syrup','Blue Syrup',0,7000,3500,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'60',NULL,NULL,'itemheal 0,180;',NULL,NULL); -# -REPLACE INTO `item_db_re` VALUES (11701,'Girl_Bunch_Of_Flower','Girl\'s Bouquet',0,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(105,145),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11702,'Moon_Cookie','Moon Cookie',0,0,NULL,300,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11703,'Mysterious_Blood','Mystery Blood',0,0,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 0,rand(25,35);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11704,'KETUPAT_F','Ketupat',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(70,90),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11705,'Special_White_Potion','Children\'s Potion',0,1,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(425,425),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11706,'Steak','Steak',0,1,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(700,1000),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11707,'Roasted_Beef','Roast Beef',0,1,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 0,rand(100,200);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11708,'Fore_Flank_Sirloin','Fore Flank Sirloin',0,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(30,50),rand(1,5);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11709,'Fanta_Zero_Lemon','Fanta Zero Lemon',0,800,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(50,70),rand(10,12);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11710,'Sakura_Mist','Sakura Mist',0,800,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(50,70),rand(10,12);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11711,'Sakura_Milk_Tea','Sakura Milk Tea',0,800,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(50,70),rand(10,12);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11712,'First_Leaf_Tea','Flower',0,800,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(50,70),rand(10,12);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (11713,'Julia\'s_Candy','Julia\'s Candy',0,0,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(40,45),0;',NULL,NULL); -# -REPLACE INTO `item_db_re` VALUES (12000,'Cold_Scroll_2_5','Level 5 Frost Diver',11,2000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "MG_FROSTDIVER",5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12001,'Holy_Scroll_1_3','Level 3 Heal',11,2000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "AL_HEAL",3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12002,'Holy_Scroll_1_5','Level 5 Heal',11,2000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "AL_HEAL",5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12003,'Holy_Scroll_2_1','Level 1 Teleport',11,1000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "AL_TELEPORT",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12004,'Arrow_Container','Quiver',2,2,NULL,250,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 1750,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12005,'Iron_Arrow_Container','Iron Arrow Quiver',2,2,NULL,250,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 1770,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12006,'Steel_Arrow_Container','Steel Arrow Quiver',2,2,NULL,250,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 1753,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12007,'Ori_Arrow_Container','Oridecon Arrow Quiver',2,2,NULL,250,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 1765,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12008,'Fire_Arrow_Container','Fire Arrow Quiver',2,2,NULL,250,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 1752,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12009,'Silver_Arrow_Container','Silver Arrow Quiver',2,2,NULL,250,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 1751,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12010,'Wind_Arrow_Container','Wind Arrow Quiver',2,2,NULL,250,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 1755,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12011,'Stone_Arrow_Container','Stone Arrow Quiver',2,2,NULL,250,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 1756,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12012,'Crystal_Arrow_Container','Crystal Arrow Quiver',2,2,NULL,250,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 1754,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12013,'Shadow_Arrow_Container','Shadow Arrow Quiver',2,2,NULL,250,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 1767,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12014,'Imma_Arrow_Container','Immaterial Arrow Quiver',2,2,NULL,250,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 1757,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12015,'Rusty_Arrow_Container','Rusty Arrow Quiver',2,2,NULL,250,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 1762,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12016,'Speed_Up_Potion','Speed Potion',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_SPEEDUP1,5000,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12017,'Slow_Down_Potion','Slow Potion',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_SLOWDOWN,5000,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12018,'Fire_Cracker','Firecracker',2,2,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12019,'Holy_Egg','Holy Egg',11,2,NULL,150,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "ALL_RESURRECTION",2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12020,'Water_Of_Darkness','Cursed Water',11,2,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "ITEM_ENCHANTARMS",8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12021,'Pork_Belly','Pork',0,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(70,99),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12022,'Spareribs','Galbi',0,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(70,99),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12023,'Giftbox_China','Wrapped Box',2,1000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_GiftBoxChina,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12024,'Red_Pouch_Of_Surprise','Red Pouch',2,50,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'monster "this",-1,-1,"--ja--",-1-MOBG_Red_Pouch_Of_Surprise,1,"";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12025,'Egg_Boy','Dano Festival Egg',2,1000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_EggBoy,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12026,'Egg_Girl','Dano Festival Egg',2,1000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_EggGirl,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12027,'Giggling_Box','Giggling Box',2,1000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 9,0; sc_start SC_CURSE,30000,0,3000,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12028,'Box_Of_Thunder','Box of Thunder',2,1000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_SPEEDUP0,20000,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12029,'Gloomy_Box','Box of Gloom',11,1000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "AC_CONCENTRATION",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12030,'Box_Of_Grudge','Box of Resentment',2,1000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_ATKPOTION,60000,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12031,'Sleepy_Box','Box of Drowsiness',2,1000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_MATKPOTION,60000,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12032,'Box_Of_Storm','Box of Storms',11,1000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "ITEM_ENCHANTARMS",2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12033,'Box_Of_Sunlight','Box of Sunlight',2,1000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_Intravision,30000,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12034,'Painting_Box','Box of Panting',2,1000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 0,9; sc_start SC_SILENCE,30000,0,3000,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12035,'Lotto_Box01','Lotto Box 01',2,0,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_LottoBox1,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12036,'Lotto_Box02','Lotto Box 02',2,0,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_LottoBox2,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12037,'Lotto_Box03','Lotto Box 03',2,0,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_LottoBox3,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12038,'Lotto_Box04','Lotto Box 04',2,0,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_LottoBox4,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12039,'Lotto_Box05','Lotto Box 05',2,0,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_LottoBox5,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12040,'Stone_Of_Intelligence_','Stone of Sage',2,100000,NULL,300,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'homevolution;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12041,'Str_Dish01','Fried Grasshopper Legs',0,2000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_STRFOOD,1200000,1; percentheal 5,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12042,'Str_Dish02','Seasoned Sticky Webfoot',0,4000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_STRFOOD,1200000,2; percentheal 5,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12043,'Str_Dish03','Bomber Steak',0,6000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_STRFOOD,1200000,3; percentheal 5,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12044,'Str_Dish04','Herb Marinade Beef',0,8000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_STRFOOD,1200000,4; percentheal 5,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12045,'Str_Dish05','Lutie Lady\'s Pancake',0,10000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_STRFOOD,1200000,5; percentheal 10,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12046,'Int_Dish01','Grape Juice Herbal Tea',0,2000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INTFOOD,1200000,1; percentheal 0,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12047,'Int_Dish02','Autumn Red Tea',0,4000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INTFOOD,1200000,2; percentheal 0,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12048,'Int_Dish03','Honey Herbal Tea',0,6000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INTFOOD,1200000,3; percentheal 0,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12049,'Int_Dish04','Morocc Fruit Wine',0,8000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INTFOOD,1200000,4; percentheal 0,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12050,'Int_Dish05','Mastela Fruit Wine',0,10000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INTFOOD,1200000,5; percentheal 0,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12051,'Vit_Dish01','Steamed Crab Nippers',0,2000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_VITFOOD,1200000,1; percentheal 5,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12052,'Vit_Dish02','Assorted Seafood',0,4000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_VITFOOD,1200000,2; percentheal 5,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12053,'Vit_Dish03','Clam Soup',0,6000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_VITFOOD,1200000,3; percentheal 5,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12054,'Vit_Dish04','Seasoned Jellyfish',0,8000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_VITFOOD,1200000,4; percentheal 5,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12055,'Vit_Dish05','Spicy Fried Bao',0,10000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_VITFOOD,1200000,5; percentheal 10,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12056,'Agi_Dish01','Frog Egg Squid Ink Soup',0,2000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_AGIFOOD,1200000,1; percentheal 3,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12057,'Agi_Dish02','Smooth Noodle',0,4000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_AGIFOOD,1200000,2; percentheal 3,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12058,'Agi_Dish03','Tentacle Cheese Gratin',0,6000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_AGIFOOD,1200000,3; percentheal 3,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12059,'Agi_Dish04','Lutie Cold Noodle',0,8000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_AGIFOOD,1200000,4; percentheal 3,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12060,'Agi_Dish05','Steamed Bat Wing in Pumpkin',0,10000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_AGIFOOD,1200000,5; percentheal 6,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12061,'Dex_Dish01','Honey Grape Juice',0,2000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_DEXFOOD,1200000,1; percentheal 2,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12062,'Dex_Dish02','Chocolate Mousse Cake',0,4000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_DEXFOOD,1200000,2; percentheal 2,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12063,'Dex_Dish03','Fruit Mix',0,6000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_DEXFOOD,1200000,3; percentheal 2,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12064,'Dex_Dish04','Cream Sandwich',0,8000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_DEXFOOD,1200000,4; percentheal 2,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12065,'Dex_Dish05','Green Salad',0,10000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_DEXFOOD,1200000,5; percentheal 5,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12066,'Luk_Dish01','Fried Monkey Tails',0,2000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_LUKFOOD,1200000,1; percentheal 3,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12067,'Luk_Dish02','Mixed Juice',0,4000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_LUKFOOD,1200000,2; percentheal 3,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12068,'Luk_Dish03','Fried Sweet Potato',0,6000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_LUKFOOD,1200000,3; percentheal 4,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12069,'Luk_Dish04','Steamed Ancient Lips',0,8000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_LUKFOOD,1200000,4; percentheal 4,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12070,'Luk_Dish05','Fried Scorpion Tails',0,10000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_LUKFOOD,1200000,5; percentheal 5,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12071,'Str_Dish06','Shiny Marinade Beef',0,20000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_STRFOOD,1200000,6; percentheal 10,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12072,'Str_Dish07','Whole Roast',0,40000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_STRFOOD,1200000,7; percentheal 10,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12073,'Str_Dish08','Bearfoot Special',0,60000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_STRFOOD,1200000,8; percentheal 15,6;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12074,'Str_Dish09','Tendon Satay',0,80000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_STRFOOD,1200000,9; percentheal 15,8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12075,'Str_Dish10','Steamed Tongue',0,100000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_STRFOOD,1200000,10; percentheal 20,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12076,'Int_Dish06','Red Mushroom Wine',0,20000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INTFOOD,1200000,6; percentheal 2,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12077,'Int_Dish07','Special Royal Jelly Herbal Tea',0,40000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INTFOOD,1200000,7; percentheal 4,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12078,'Int_Dish08','Royal Family Tea',0,60000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INTFOOD,1200000,8; percentheal 6,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12079,'Int_Dish09','Tristan XII',0,80000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INTFOOD,1200000,9; percentheal 8,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12080,'Int_Dish10','Dragon Breath Cocktail',0,100000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INTFOOD,1200000,10; percentheal 10,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12081,'Vit_Dish06','Awfully Bitter Bracer',0,20000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_VITFOOD,1200000,6; percentheal 13,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12082,'Vit_Dish07','Sumptuous Feast',0,40000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_VITFOOD,1200000,7; percentheal 16,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12083,'Vit_Dish08','Giant Burito',0,60000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_VITFOOD,1200000,8; percentheal 19,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12084,'Vit_Dish09','Ascending Dragon Soup',0,80000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_VITFOOD,1200000,9; percentheal 22,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12085,'Vit_Dish10','Immortal Stew',0,100000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_VITFOOD,1200000,10; percentheal 25,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12086,'Agi_Dish06','Chile Shrimp Gratin',0,20000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_AGIFOOD,1200000,6; percentheal 7,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12087,'Agi_Dish07','Steamed Alligator with Vegetable',0,40000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_AGIFOOD,1200000,7; percentheal 8,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12088,'Agi_Dish08','Incredibly Spicy Curry',0,60000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_AGIFOOD,1200000,8; percentheal 9,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12089,'Agi_Dish09','Special Meat Stew',0,80000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_AGIFOOD,1200000,9; percentheal 10,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12090,'Agi_Dish10','Steamed Desert Scorpions',0,100000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_AGIFOOD,1200000,10; percentheal 15,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12091,'Dex_Dish06','Peach Cake',0,20000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_DEXFOOD,1200000,6; percentheal 5,6;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12092,'Dex_Dish07','Soul Haunted Bread',0,40000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_DEXFOOD,1200000,7; percentheal 5,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12093,'Dex_Dish08','Special Toast',0,60000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_DEXFOOD,1200000,8; percentheal 5,8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12094,'Dex_Dish09','Heavenly Fruit Juice',0,80000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_DEXFOOD,1200000,9; percentheal 5,9;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12095,'Dex_Dish10','Hwergelmir\'s Tonic',0,100000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_DEXFOOD,1200000,10; percentheal 10,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12096,'Luk_Dish06','Lucky Soup',0,20000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_LUKFOOD,1200000,6; percentheal 6,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12097,'Luk_Dish07','Assorted Shish Kebob',0,40000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_LUKFOOD,1200000,7; percentheal 7,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12098,'Luk_Dish08','Strawberry Flavored Rice Ball',0,60000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_LUKFOOD,1200000,8; percentheal 9,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12099,'Luk_Dish09','Blood Flavored Soda',0,80000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_LUKFOOD,1200000,9; percentheal 10,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12100,'Luk_Dish10','Cooked Nine Tail\'s Tails',0,100000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_LUKFOOD,1200000,10; percentheal 14,8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12101,'Citron','Citron',0,20,NULL,300,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_FLEEFOOD,180000,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12102,'Meat_Skewer','Grilled Skewer',0,20,NULL,300,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_HITFOOD,180000,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12103,'Bloody_Dead_Branch','Bloody Branch',2,10000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'monster "this",-1,-1,"--ja--",-1-MOBG_Bloody_Dead_Branch,1,"";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12104,'Random_Quiver','Random Quiver',2,10000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_Quiver,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12105,'Set_Of_Taiming_Item','Taming Gift Set',2,10000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_Taming,1); getrandgroupitem(IG_Taming,1); getrandgroupitem(IG_Taming,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12106,'Accessory_Box','Jewelry Box',2,10000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_Accesory,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12107,'Wrapped_Mask','Wrapped Mask',2,10000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_Mask,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12108,'Bundle_Of_Magic_Scroll','Scroll Package',2,10000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_Scroll,1); getrandgroupitem(IG_Scroll,1); getrandgroupitem(IG_Scroll,1); getrandgroupitem(IG_Scroll,1); getrandgroupitem(IG_Scroll,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12109,'Poring_Box','Poring Box',2,10000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'monster "this",-1,-1,"--ja--",-1-MOBG_Poring_Box,1,"";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12110,'First_Aid_Kit','First Aid Kit',2,10000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_FirstAid,1); getrandgroupitem(IG_FirstAid,1); getrandgroupitem(IG_FirstAid,1); getrandgroupitem(IG_FirstAid,1); getrandgroupitem(IG_FirstAid,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12111,'Food_Package','Bundle of Food',2,10000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_FoodBag,1); getrandgroupitem(IG_FoodBag,1); getrandgroupitem(IG_FoodBag,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12112,'Tropical_Sograt','Tropical Sograt',2,1000,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_CURSE,10000,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12113,'Vermilion_The_Beach','Vermilion on the Beach',2,1000,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_STUN,10000,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12114,'Elemental_Fire','Elemental Converter',11,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "ITEM_ENCHANTARMS",4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12115,'Elemental_Water','Elemental Converter',11,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "ITEM_ENCHANTARMS",2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12116,'Elemental_Earth','Elemental Converter',11,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "ITEM_ENCHANTARMS",3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12117,'Elemental_Wind','Elemental Converter',11,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "ITEM_ENCHANTARMS",5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12118,'Resist_Fire','Fireproof Potion',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start4 SC_ARMOR_ELEMENT_FIRE,1200000,-15,0,20,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12119,'Resist_Water','Coldproof Potion',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start4 SC_ARMOR_ELEMENT_WATER,1200000,20,0,0,-15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12120,'Resist_Earth','Earthproof Potion',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start4 SC_ARMOR_ELEMENT_EARTH,1200000,0,20,-15,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12121,'Resist_Wind','Thunderproof Potion',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start4 SC_ARMOR_ELEMENT_WIND,1200000,0,-15,0,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12122,'Sesame_Pastry','Sesame Pastry',2,2,NULL,70,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_HITFOOD,180000,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12123,'Honey_Pastry','Honey Pastry',2,2,NULL,70,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_FLEEFOOD,180000,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12124,'Rainbow_Cake','Rainbow Cake',2,2,NULL,70,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_BATKFOOD,60000,10; sc_start SC_MATKFOOD,60000,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12125,'Outdoor_Cooking_Kits','Outdoor Cooking Kit',2,500,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'cooking 11;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12126,'Indoor_Cooking_Kits','Home Cooking Kit',2,1000,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'cooking 12;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12127,'High_end_Cooking_Kits','Professional Cooking Kit',2,2000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'cooking 13;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12128,'Imperial_Cooking_Kits','Royal Cooking Kit',2,5000,NULL,70,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'cooking 14;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12129,'Fantastic_Cooking_Kits','Fantastic Cooking Kit',2,10000,NULL,70,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'cooking 15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12130,'Cookie_Bag','Cookie Bag',2,2,NULL,70,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_CookieBag,1); getrandgroupitem(IG_CookieBag,1); getrandgroupitem(IG_CookieBag,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12131,'Lucky_Potion','Lucky Potion',0,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/* sc_start SC_LUKFOOD,180000,15; */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12132,'Red_Bag','Santa\'s Bag',2,0,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_XMAS,600000,0; sc_start SC_SPEEDUP0,600000,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12133,'Ice_Cream_','McDonald\'s Ice Cone',0,0,NULL,80,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'if(gettime(DT_DAYOFMONTH)!=MDiceCone) { MDiceCone = gettime(DT_DAYOFMONTH); percentheal 50,50; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12134,'Red_Envelope','Red Envelope',2,1,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'Zeny += rand(1000,10000);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12135,'Green_Ale','Green Ale',2,20,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 50,50; sc_start SC_CONFUSION,10000,0,1000,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12136,'Women\'s_Bundle','Women\'s Bundle',2,0,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem callfunc("F_Rand",558,529,2668,7518),1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12137,'1st_Stage_Prize','First Stage Prize',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12138,'2nd_Stage_Prize','Second Stage Prize',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12139,'3rd_Stage_Prize','Third Stage Prize',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12140,'4th_Stage_Prize','Fourth Stage Prize',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12141,'5th_Stage_Prize','Fifth Stage Prize',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12142,'Magic_Book','Book of Magic',2,0,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_AGIFOOD,1800000,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12143,'Red_Can','Red Can',2,50000,NULL,300,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 25,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12144,'Sphere_Case_Wind','Lightning Sphere Pack',2,2,NULL,350,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13204,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12145,'Sphere_Case_Darkness','Blind Sphere Pack',2,2,NULL,350,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13206,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12146,'Sphere_Case_Poison','Poison Sphere Pack',2,2,NULL,350,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13205,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12147,'Sphere_Case_Water','Freezing Sphere Pack',2,2,NULL,350,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13207,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12148,'Sphere_Case_Fire','Flare Sphere Pack',2,2,NULL,350,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13203,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12149,'Bullet_Case','Cartridge',2,2,NULL,250,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13200,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12150,'Bullet_Case_Blood','Blood Cartridge',2,2,NULL,250,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13202,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12151,'Bullet_Case_Silver','Silver Cartridge',2,2,NULL,250,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13201,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12152,'Special_Box','Special Present',2,0,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Special_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12153,'Bow_Mercenary_Scroll1','Bowman Scroll 1',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6017,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12154,'Bow_Mercenary_Scroll2','Bowman Scroll 2',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6018,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12155,'Bow_Mercenary_Scroll3','Bowman Scroll 3',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6019,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12156,'Bow_Mercenary_Scroll4','Bowman Scroll 4',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6020,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12157,'Bow_Mercenary_Scroll5','Bowman Scroll 5',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6021,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12158,'Bow_Mercenary_Scroll6','Bowman Scroll 6',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6022,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12159,'Bow_Mercenary_Scroll7','Bowman Scroll 7',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6023,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12160,'Bow_Mercenary_Scroll8','Bowman Scroll 8',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6024,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12161,'Bow_Mercenary_Scroll9','Bowman Scroll 9',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6025,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12162,'Bow_Mercenary_Scroll10','Bowman Scroll 10',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6026,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12163,'SwordMercenary_Scroll1','Fencer Scroll 1',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6037,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12164,'SwordMercenary_Scroll2','Fencer Scroll 2',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6038,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12165,'SwordMercenary_Scroll3','Fencer Scroll 3',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6039,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12166,'SwordMercenary_Scroll4','Fencer Scroll 4',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6040,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12167,'SwordMercenary_Scroll5','Fencer Scroll 5',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6041,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12168,'SwordMercenary_Scroll6','Fencer Scroll 6',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6042,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12169,'SwordMercenary_Scroll7','Fencer Scroll 7',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6043,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12170,'SwordMercenary_Scroll8','Fencer Scroll 8',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6044,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12171,'SwordMercenary_Scroll9','Fencer Scroll 9',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6045,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12172,'SwordMercenary_Scroll10','Fencer Scroll 10',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6046,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12173,'SpearMercenary_Scroll1','Spearman Scroll 1',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6027,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12174,'SpearMercenary_Scroll2','Spearman Scroll 2',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6028,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12175,'SpearMercenary_Scroll3','Spearman Scroll 3',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6029,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12176,'SpearMercenary_Scroll4','Spearman Scroll 4',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6030,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12177,'SpearMercenary_Scroll5','Spearman Scroll 5',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6031,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12178,'SpearMercenary_Scroll6','Spearman Scroll 6',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6032,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12179,'SpearMercenary_Scroll7','Spearman Scroll 7',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6033,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12180,'SpearMercenary_Scroll8','Spearman Scroll 8',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6034,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12181,'SpearMercenary_Scroll9','Spearman Scroll 9',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6035,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12182,'SpearMercenary_Scroll10','Spearman Scroll 10',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 6036,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12183,'Holy_Arrow_Quiver','Holy Arrow Quiver',2,2,NULL,250,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 1772,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12184,'Mercenary_Red_Potion','Mercenary Red Potion',2,500,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_heal 1000,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12185,'Mercenary_Blue_Potion','Mercenary Blue Potion',2,1000,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_heal 0,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12186,'Red_Box','Old Red Box',2,50000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_RedBox,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12187,'Green_Box','Old Green Box',2,50000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_GreenBox,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12188,'Magical_Moon_Cake','Grace Moon Cake',0,20,NULL,300,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 50,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12189,'Red_Box_','Old Red Box',2,50000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_RedBox_2,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12190,'Moon_Cake','Moon Cake',2,2,NULL,300,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_SPEEDUP0,180000,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12191,'Special_Moon_Cake','Special Moon Cake',2,2,NULL,500,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_ASPDPOTION0,600000,4; sc_start SC_SPEEDUP0,600000,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12192,'Pumpkin_Pie','Pumpkin Pie',0,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 5,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12193,'Brezel','Pretzel',2,20,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 5,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12194,'Hometown_Gift','Hometown Gift',2,20,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_HometownGift,1); getrandgroupitem(IG_HometownGift,1); getrandgroupitem(IG_HometownGift,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12195,'Plain_Rice_Cake','Plain Rice Cake',0,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 0,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12196,'Hearty_Rice_Cake','Hearty Rice Cake',0,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 50,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12197,'Salty_Rice_Cake','Salty Rice Cake',0,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 10,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12198,'Lucky_Rice_Cake','Lucky Rice Cake',2,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INCLUK,1200000,21;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12199,'Rice_Scroll','Scroll of Magic',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12200,'Event_Cake','X-mas Cake',11,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 5,0; itemskill "PR_MAGNIFICAT",3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12201,'Red_Box_C','Commonplace Red Box',2,20,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#=================================================================== -# Cash Shop Usable Items -#=================================================================== -REPLACE INTO `item_db_re` VALUES (12202,'Str_Dish10_','Steamed Tongue',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_FOOD_STR_CASH,1800000,10; percentheal 15,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12203,'Agi_Dish10_','Steamed Scorpion',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_FOOD_AGI_CASH,1800000,10; percentheal 15,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12204,'Int_Dish10_','Dragon Breath Cocktail',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_FOOD_INT_CASH,1800000,10; percentheal 15,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12205,'Dex_Dish10_','Hwergelmir\'s Tonic',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_FOOD_DEX_CASH,1800000,10; percentheal 15,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12206,'Luk_Dish10_','Cooked Nine Tail\'s Tails',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_FOOD_LUK_CASH,1800000,10; percentheal 15,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12207,'Vit_Dish10_','Stew Of Immortality',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_FOOD_VIT_CASH,1800000,10; percentheal 15,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12208,'Battle_Manual','Battle Manual',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_EXPBOOST,1800000,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12209,'Insurance','Life Insurance',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_LIFEINSURANCE,1800000,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12210,'Bubble_Gum','Bubble Gum',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_ITEMBOOST,1800000,200;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12211,'Kafra_Card','Kafra Card',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashStore";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12212,'Giant_Fly_Wing','Giant Fly Wing',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashPartyCall";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12213,'Neuralizer','Neuralizer',11,2,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashReset";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12214,'Convex_Mirror','Convex Mirror',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_BOSSMAPINFO,600000,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12215,'Blessing_10_Scroll','LV10 Blessing Scroll',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,240000,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12216,'Inc_Agi_10_Scroll','LV10 Agil Scroll',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'if(Hp>15) { skilleffect "AL_INCAGI",0; sc_start SC_INCREASEAGI,240000,10; heal -15,0; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12217,'Aspersio_5_Scroll','LV5 Aspersio Scroll',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'if(countitem(523)>0) { skilleffect "PR_ASPERSIO",0; sc_start SC_ASPERSIO,180000,5; delitem 523,1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12218,'Assumptio_5_Scroll','LV5 Assumptio Scroll',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_ASSUMPTIO,100000,5; skilleffect "HP_ASSUMPTIO",0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12219,'Wind_Walk_10_Scroll','LV10 Wind Walker Scroll',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'skilleffect "SN_WINDWALK",0; sc_start SC_WINDWALK,250000,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12220,'Adrenaline_Scroll','LV5 Adrenaline Scroll',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'.@type = getiteminfo(getequipid(EQI_HAND_R),11); if (.@type==W_1HAXE||.@type==W_2HAXE||.@type==W_MACE) { skilleffect "BS_ADRENALINE",0; sc_start SC_ADRENALINE,150000,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12221,'Megaphone_','Megaphone',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'input .@megaphone$; announce strcharinfo(0) + ": " + .@megaphone$,bc_all,0xFF0000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12225,'Sweet_Candy_Striper','Sweet Candy Cane',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1245;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12226,'Examination1','Examination 1',0,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12227,'Examination2','Examination 2',0,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12228,'Examination3','Examination 3',0,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12229,'Examination4','Examination 4',0,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12230,'Examination5','Examination 5',0,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12231,'Examination6','Examination 6',0,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12232,'Gingerbread','Ginger Bread',2,20,NULL,150,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_ASPDPOTION1,900000,0; sc_start SC_SPEEDUP0,900000,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12233,'Kvass','Kvass',0,20,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 100,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12234,'Cacao99','Fierce Cacao 99%',0,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 25,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12235,'Strawberry_Choco','Chocolate Strawberry',2,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 0,5; skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,240000,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12236,'Choco_Tart','Chocolate Tart',11,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 5,0; itemskill "AL_ANGELUS",5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12237,'Choco_Lump','Junky Chocolate',2,0,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 0,5; sc_start SC_POISON,18000,0; sc_start SC_BLEEDING,18000,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12238,'New_Year_Rice_Cake_1','New Year Rice Cake',2,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_DPOISON,10000,0,1000,0; sc_start SC_POISON,50000,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12239,'New_Year_Rice_Cake_2','New Year Rice Cake',2,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_DPOISON,10000,0,1000,0; sc_start SC_POISON,50000,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12240,'Old_Yellow_Box','Old Yellow Box',2,20,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_YellowBox,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12241,'M_Center_Potion','Mercenary Concentration Potion',2,800,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_sc_start SC_ASPDPOTION0,1800000,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12242,'M_Awakening_Potion','Mercenary Awakening Potion',2,1500,NULL,150,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_sc_start SC_ASPDPOTION1,1800000,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12243,'M_Berserk_Potion','Mercenary Berserk Potion',2,3000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_sc_start SC_ASPDPOTION2,1800000,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12244,'Old_Gift_Box','Old Gift Box',2,20,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_OldGiftBox,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12245,'Green_Ale_US','Green Ale',0,5000,NULL,500,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 100,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12246,'Magic_Card_Album','Mystical Card Album',2,10000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_MagicCardAlbum,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12247,'Halohalo','Halo-Halo',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'20',NULL,NULL,'sc_start SC_INCALLSTATUS,600000,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12248,'Masquerade_Ball_Box','Fancy Ball Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_Masquerade,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12249,'Payroll_Of_Kafra_','Payment Statement for Kafra Employee',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12250,'Str_Dish10_M','Steamed Tongue',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_STRFOOD,3600000,10; percentheal 20,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12251,'Agi_Dish10_M','Steamed Desert Scorpions',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_AGIFOOD,3600000,10; percentheal 15,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12252,'Int_Dish10_M','Dragon Breath Cocktail',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INTFOOD,3600000,10; percentheal 10,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12253,'Dex_Dish10_M','Hwergelmir\'s Tonic',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_DEXFOOD,3600000,10; percentheal 10,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12254,'Luk_Dish10_M','Cooked Nine Tail',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_LUKFOOD,3600000,10; percentheal 14,8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12255,'Vit_Dish10_M','Immortal Stew',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_VITFOOD,3600000,10; percentheal 25,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12256,'PRO_Gift_Box','PRO Gift Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12257,'Cold_Medicine','Cold Medicine',0,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'50',NULL,NULL,'percentheal 25,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12258,'Bombring_Box','Bomb Poring Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'if(strcharinfo(3)=="job3_rang02") { monster "this",-1,-1,"--ja--",1904,1,""; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12259,'Miracle_Medicine','Miracle Tonic',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getexp2(3000000,1500000);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12260,'Cool_Summer_Outfit','Cool Summer Outfit',2,0,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_SUMMER,600000,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12261,'Secret_Medicine','Leap of Fantasy',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getexp2(2000000,1000000);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12262,'Inspector_Certificate_','Authoritative Badge',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_SPEEDUP0,540000,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12263,'Comp_Battle_Manual','Field Manual',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_EXPBOOST,1800000,200;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12264,'Comp_Bubble_Gum','Bubble Gum',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_ITEMBOOST,1800000,200;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12265,'Comp_Insurance','Life Insurrance',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_LIFEINSURANCE,1800000,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12266,'Sesame_Pastry_','Sesame Pastry',2,2,NULL,70,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_HITFOOD,180000,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12267,'Honey_Pastry_','Honey Pastry',2,2,NULL,70,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_FLEEFOOD,180000,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12268,'Rainbow_Cake_','Rainbow Cake',2,2,NULL,70,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_ATKPOTION,60000,10; sc_start SC_MATKFOOD,60000,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12269,'Tasty_Colonel','Tasty Pink Ration',2,2,NULL,70,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_ATKPOTION,600000,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12270,'Tasty_Major','Tasty White Ration',2,2,NULL,70,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_MATKPOTION,600000,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12271,'Mre_A','Military Ration A',0,2,NULL,70,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 5,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12272,'Mre_B','Military Ration B',2,2,NULL,70,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_HITFOOD,600000,33;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12273,'Mre_C','Military Ration C',2,2,NULL,70,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_FLEEFOOD,600000,33;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12274,'Gold_Pill_1','Daehwandan',0,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start2 SC_INCREASE_MAXHP,3600000,5,10; percentheal 10,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12275,'Gold_Pill_2','Taecheongdan',0,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start2 SC_INCREASE_MAXSP,3600000,5,10; percentheal 0,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12276,'Mimic_Scroll','Mimic Scroll',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 2058,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12277,'Disguise_Scroll','Disguise Scroll',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 2059,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12278,'Alice_Scroll','Alice Scroll',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 2060,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12279,'Undead_Element_Scroll','Undead Elemental Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start4 SC_ARMOR_RESIST,300000,20,20,20,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12280,'Holy_Element_Scroll','Holy Elemental Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_BENEDICTIO; sc_start SC_BENEDICTIO,300000,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12281,'Tresure_Box_WoE','Event Treasure Box',2,20,NULL,150,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Tresure_Box_WoE_);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12282,'Internet_Cafe1','Internet Cafe1',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INCALLSTATUS,5400000,3; sc_start SC_ATKPOTION,5400000,15; sc_start SC_MATKPOTION,5400000,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12283,'Internet_Cafe2','Internet Cafe2',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INCSTR,5400000,8; sc_start SC_INCDEX,5400000,4; sc_start SC_INCAGI,5400000,6; sc_start SC_ATKPOTION,5400000,32; sc_start SC_INCFLEE,5400000,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12284,'Internet_Cafe3','Internet Cafe3',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INCINT,5400000,8; sc_start SC_INCVIT,5400000,4; sc_start SC_INCDEX,5400000,6; sc_start SC_MATKPOTION,5400000,40;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12285,'Internet_Cafe4','Internet Cafe4',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INCDEX,5400000,8; sc_start SC_INCLUK,5400000,4; sc_start SC_INCAGI,5400000,6; sc_start SC_ATKPOTION,5400000,24; sc_start SC_MATKPOTION,5400000,24;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12286,'Masquerade_Ball_Box2','Masquerade Ball Box2',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_Masquerade_2,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12287,'Love_Angel','Love Angel Magic Powder',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'setfont 1;',NULL,'setfont 0;'); -REPLACE INTO `item_db_re` VALUES (12288,'Squirrel','Squirrel Magic Powder',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'setfont 2;',NULL,'setfont 0;'); -REPLACE INTO `item_db_re` VALUES (12289,'Gogo','Gogo Magic Powder',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'setfont 3;',NULL,'setfont 0;'); -REPLACE INTO `item_db_re` VALUES (12290,'Mysterious_Can','Mysterious Can Magic Powder',2,10,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 5,0; skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,120000,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12291,'Mysterious_PET_Bottle','Mysterious PET Bottle',2,10,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 5,0; skilleffect "AL_INCAGI",0; sc_start SC_INCREASEAGI,120000,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12292,'Unripe_Fruit','Unripe Yggdrasilberry',0,500,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 20,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12293,'Dried_Yggdrasilberry','Dried Yggdrasilberry',0,500,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 0,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12294,'PC_Bang_Coin_Box1','PC-Room Coin Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2740,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12295,'PC_Bang_Coin_Box2','PC-Room Coin Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2739,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12296,'PC_Bang_Coin_Box3','PC-Room Coin Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2738,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12297,'PC_Bang_Coin_Box4','PC-Room Coin Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2738,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12298,'SP_Potion','SP Consumption Reduction Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_SPCOST_RATE,3600000,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12299,'Mega_Resist_Potion','Mega Resist Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_COMMONSC_RESIST,3600000,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12300,'Wild_Rose_Scroll','Wild Rose Contract',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 1965,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12301,'Doppelganger_Scroll','Doppelganger Contract',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 1966,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12302,'Ygnizem_Scroll','Egnigem Cenia Contract',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 1967,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12303,'Water_Of_Blessing','Blessing Of Water',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12304,'Picture_Diary','Diary Magic Powder',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'setfont 4;',NULL,'setfont 0;'); -REPLACE INTO `item_db_re` VALUES (12305,'Mini_Heart','Mini Heart Magic Powder',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'setfont 5;',NULL,'setfont 0;'); -REPLACE INTO `item_db_re` VALUES (12306,'Newcomer','Freshman Magic Powder',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'setfont 6;',NULL,'setfont 0;'); -REPLACE INTO `item_db_re` VALUES (12307,'Kid','Kid Magic Powder',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'setfont 7;',NULL,'setfont 0;'); -REPLACE INTO `item_db_re` VALUES (12308,'Magic_Castle','Magic Magic Powder',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'setfont 8;',NULL,'setfont 0;'); -REPLACE INTO `item_db_re` VALUES (12309,'Bulging_Head','JJangu Magic Powder',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'setfont 9;',NULL,'setfont 0;'); -REPLACE INTO `item_db_re` VALUES (12310,'Spray_Of_Flowers','Spray Of Flowers',2,0,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_FLEEFOOD,300000,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12311,'Large_Spray_Of_Flowers','Huge Spray Of Flowers',11,0,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "ALL_PARTYFLEE",5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12312,'Thick_Manual50','Thick Battle Manual',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_EXPBOOST,3600000,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12313,'Protection_Of_Angel','Guardian Angel',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/* itemskill "ALL_ANGEL_PROTECT",1; */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12314,'Noive_Box','Adventurer Returns Support Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Noive_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12315,'Goddess_Bless','Goddess Of Blessing',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12316,'Angel_Bless','Angel Of Blessing',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12317,'Powder_Snow','Snow Powder',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12318,'Little_Heart','Small Hearts',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12319,'Strawberry_Cake','Rune Strawberry Cake',2,0,NULL,300,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_ATKPOTION,600000,5; sc_start SC_MATKPOTION,600000,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12320,'Pineapple_Juice','Schwarzwald Pine Jubilee',2,0,NULL,300,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_HITFOOD,600000,10; sc_start SC_FLEEFOOD,600000,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12321,'Spicy_Sandwich','Arunafeltz Desert Sandwich',2,0,NULL,300,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INCCRI,600000,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12322,'Chocolate_Pie','Chocolate Pie',0,0,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 5,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12323,'N_Fly_Wing','Novice Fly Wing',11,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "AL_TELEPORT",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12324,'N_Butterfly_Wing','Novice Butterfly Wing',11,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "AL_TELEPORT",3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12325,'N_Magnifier','Novice Magnifier',11,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "MC_IDENTIFY",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12326,'J_Firecracker','Large Firecracker',2,2,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12327,'Charm_Of_Luck','Charm Of Luck',2,1000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INCLUK,3600000,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12328,'Charm_Of_Happiness','Charm Of Happiness',2,1800,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INCLUK,3600000,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12329,'Recall_MaleGM','Summon Male GameMaster Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 2000,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12330,'Recall_FemaleGM','Summon Female GameMaster Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 2001,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12331,'Ginseng','Ginseng',0,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 6,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12332,'Fruit_Juice','Fruit Juice',0,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 0,6;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12333,'Ansila','Ancilla',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 0,15; sc_start SC_ANCILLA,60000,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12334,'Cherish_Box','Treasure Edition Helm Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_Cherish_Box,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12335,'Yummy_Skewered_Dish','Grilled Delicious Skewer',0,1000,NULL,350,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 60,60;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12336,'Baked_Mushroom','Grilled Mushroom',0,500,NULL,300,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 30,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12337,'Grilled_Sausage','Grilled Sausages',0,300,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 20,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12338,'Grilled_Corn','Grilled Corn',2,100,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INCSTR,180000,2; sc_start SC_INCINT,180000,2; sc_start SC_INCAGI,180000,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12339,'Cherish_Box_Ori','Treasure Edition Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_Cherish_Box_Ori,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12340,'Mysterious_Rice_Powder','Chewy Rice Powder',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1815;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12341,'Special_Alloy_Trap_Box','Special Alloy Trap Box',2,30000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7940,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12342,'Manuk\'s_Opportunity','Manuk\'s Opportunity',2,0,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_POTION_BERSERK; sc_start SC_MANU_ATK,600000,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12343,'Manuk\'s_Courage','Manuk\'s Courage',2,0,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_GUARD; sc_start SC_MANU_DEF,600000,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12344,'Pinguicula\'s_fruit_Jam','Pinguicula\'s Fruit Jam',2,0,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_POTION_BERSERK; sc_start SC_SPL_ATK,600000,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12345,'Luciola\'s_Honey_Jam','Luciola\'s Honey Jam',2,0,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_GUARD; sc_start SC_SPL_DEF,600000,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12346,'Unripe_Acorn','Unripe Acorn',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'heal -100,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12347,'Acorn_Jelly','Acorn Jelly',11,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "ALL_REVERSEORCISH",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12348,'Manuk\'s_Faith','Manuk\'s Faith',2,0,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_POTION_BERSERK; sc_start SC_MANU_MATK,600000,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12349,'Cornus\'_Tears','Cornus\' Tears',2,0,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_POTION_BERSERK; sc_start SC_SPL_MATK,600000,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12350,'Angeling_Potion','Angeling Potion',11,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,120000,5; itemskill "AL_ANGELUS",5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12351,'Shout_Megaphone','Scream Megaphone',11,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "MC_LOUD",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12352,'Dun_Tele_Scroll3','Dungeon Teleport Scroll 3',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashDungeon",3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12353,'Tiny_Waterbottle','Small Bottle',2,800,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_WATERWEAPON,90000,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12354,'Buche_De_Noel','Buche De Noel',2,2,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_ANGELUS; bonus_script "{ bonus bHPrecovRate,3; bonus bSPrecovRate,3; bonus bHit,3; bonus bCritical,7; }",600,0,0,EFST_BUCHEDENOEL;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12355,'Xmas_Gift','Xmas Gift',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_Xmas_Gift,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12356,'Louise_Costume_Box','Louise Costume Box',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_Louise_Costume_Box,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12357,'Shiny_Wing_Gown','Shiny Wing Gown',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1630;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12358,'Fan_Of_Wind','Fan Of Wind',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1513;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12359,'Very_Soft_Plant','Very Soft Plant',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1586;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12360,'Very_Red_Juice','Very Red Juice',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1505;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12361,'Delicious_Shaved_Ice','Delicious Shaved Ice',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1143;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12362,'Kuloren','Kuloren',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1401;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12363,'Fit_Pipe','Fit Pipe',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1179;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12364,'Staff_Of_Leader','Staff Of Leader',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1299;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12365,'Charming_Lotus','Charming Lotus',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1416;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12366,'Gril_Doll','Girl\'s Doll',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1404;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12367,'Luxury_Whisky_Bottle','Luxury Whisky Bottle',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1504;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12368,'Splendid_Mirror','Splendid Mirror',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1148;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12369,'Oilpalm_Coconut','Oilpalm Coconut',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1495;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12370,'Gril\'s_Naivety','Girl\'s Naivety',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1374;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12371,'Magical_Lithography','Magical Lithography',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1040;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12372,'Hell_Contract','Hell Contract',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1379;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12373,'Boy\'s_Naivety','Boy\'s Pure Heart',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1370;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12374,'Flaming_Ice','Ice Fireworks',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1837;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12375,'Acaraje','Akaraje',2,0,NULL,80,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_STEAL; bonus_script "{ bonus bHit,5; bonus bAspdRate,10; }",1200,0,0,EFST_ACARAJE;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12376,'Mysterious_Can2','Mysterious Can2',2,10,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 3,0; itemskill "PR_GLORIA",2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12377,'Mysterious_PET_Bottle2','Mysterious PET Bottle2',2,10,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 0,3; itemskill "PR_MAGNIFICAT",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12378,'2009_Rice_Cake_Soup','Rice Cake Soup',2,10,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 50,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12379,'Pope\'s_Cookie','Pope Cookie',2,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12380,'Desert_Wolf_Babe_Scroll','Job Change Flute',2,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 2034,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12381,'ValkyrieA_Scroll','Ancient Languages Scroll',2,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'if(strcharinfo(3)=="job3_arch02") { mercenary_create 2037,1800000; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12382,'ValkyrieB_Scroll','Ancient Languages Scroll',2,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'if(strcharinfo(3)=="job3_arch02") { mercenary_create 2038,1800000; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12383,'Vulcan_Bullet_Magazine','Vulcan Bullet Magazine',2,11000,NULL,500,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6145,1000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12384,'Rainbow_Ruby_Water','Rainbow Ruby',11,0,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'if(strcharinfo(3)=="job3_war02") { itemskill "WL_FROSTMISTY",5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12385,'Rainbow_Ruby_Fire','Rainbow Ruby',11,0,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'if(strcharinfo(3)=="job3_war02") { itemskill "WL_CRIMSONROCK",5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12386,'Rainbow_Ruby_Wind','Rainbow Ruby',11,0,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'if(strcharinfo(3)=="job3_war02") { itemskill "WL_CHAINLIGHTNING",5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12387,'Rainbow_Ruby_Earth','Rainbow Ruby',11,0,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'if(strcharinfo(3)=="job3_war02") { itemskill "WL_EARTHSTRAIN",5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12388,'Runstone_Crush','Rhydo Runestone For Apprentice',11,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'if(strcharinfo(3)=="job3_rune02") { itemskill "RK_CRUSHSTRIKE",1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12389,'Runstone_Storm','Pertz Runestone For Apprentice',11,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'if(strcharinfo(3)=="job3_rune02") { itemskill "RK_STORMBLAST",1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12390,'Runstone_Millennium','Verkana Runestone For Apprentice',11,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'if(strcharinfo(3)=="job3_rune02") { itemskill "RK_MILLENNIUMSHIELD",1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12391,'Lucky_Egg_C','Lucky Egg C',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Lucky_Egg_C);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12392,'RepairA','Repair A',2,220,NULL,100,NULL,NULL,NULL,NULL,0x00000400,56,2,NULL,NULL,NULL,NULL,NULL,'if ( checkmadogear() ) { itemheal rand(200,300),0; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12393,'RepairB','Repair B',2,500,NULL,140,NULL,NULL,NULL,NULL,0x00000400,56,2,NULL,NULL,NULL,NULL,NULL,'if ( checkmadogear() ) { itemheal rand(300,400),0; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12394,'RepairC','Repair C',2,1100,NULL,180,NULL,NULL,NULL,NULL,0x00000400,56,2,NULL,NULL,NULL,NULL,NULL,'if ( checkmadogear() ) { itemheal rand(400,500),0; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12395,'Tantanmen','Tantan Noodle',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1519;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12396,'Fools_Day_Box','Gift Box?',11,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'.@rnd = rand(1,10); if(.@rnd==1) itemskill "AL_TELEPORT",1; else if(.@rnd==2) itemskill "AL_TELEPORT",3; else if(.@rnd==3) percentheal 50,0; else if(.@rnd==4) percentheal 0,50; else if(.@rnd==5) end; else if(.@rnd==6) getitem 512,1; else if(.@rnd==7) itemskill "ALL_REVERSEORCISH",1; else if(.@rnd==8) specialeffect2 EF_MAPPILLAR2; else if(.@rnd==9) specialeffect2 EF_ANGEL2; else specialeffect2 EF_COIN;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12397,'Fools_Day_Box2','Gift Box?',11,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'.@rnd = rand(1,10); if(.@rnd==1) itemskill "TF_DETOXIFY",1; else if(.@rnd==2) itemskill "TF_PICKSTONE",1; else if(.@rnd==3) itemskill "BA_FROSTJOKER",1; else if(.@rnd==4) itemskill "DC_SCREAM",1; else if(.@rnd==5) end; else if(.@rnd==6) getitem 909,1; else if(.@rnd==7) itemskill "AL_RUWACH",1; else if(.@rnd==8) specialeffect2 EF_BEGINASURA; else if(.@rnd==9) specialeffect2 EF_MVP; else specialeffect2 EF_CURSEATTACK;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12398,'PCBang_Gift_Box','PCRoom Gift Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12399,'Castle_Treasure_Box','Castle Treasure Box',2,20,NULL,1000,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'Zeny += 1000000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12400,'Water_Of_Blessing_','Water Of Blessing',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12401,'Rune_Kn_Test_Int','Rune Kn Test Int',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INCINT,300000,40;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12402,'29Fruit','29Fruit',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 5,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12403,'Lucky_Egg_C2','Lucky Egg C2',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Lucky_Egg_C2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12404,'Acti_Potion','Acti Potion',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_STEAL; bonus_script "{ bonus2 bAddClass,Class_All,3; bonus bMatkRate,3; bonus2 bSubEle,Ele_All,3; }",120,0,0,EFST_POPECOOKIE;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12405,'Underripe_Yggseed','Underripe Yggseed',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 30,30; skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,140000,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12406,'Psychic_ArmorS','Psychic ArmorS',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_ENERGYCOAT; sc_start4 SC_ELEMENTALCHANGE,10000,1,Ele_Ghost,1,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12407,'PCBang_Coupon_Box','PC Cafe Coupon Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12408,'Leaf_Cat_Ball','Hydra Ball',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 2081;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12409,'Pork_Belly_H','1st Class Pork Belly',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12410,'Spareribs_H','Thick Pork Belly',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12411,'HE_Battle_Manual','HE Battle Manual',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_EXPBOOST,900000,200;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12412,'HE_Bubble_Gum','HE Bubble Gum',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_ITEMBOOST,900000,300;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12413,'PCBang_Coupon_Box2','PC Cafe Coupon Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12414,'Guarana_Candy','Guarana Candy',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_ASPDPOTION0,1800000,0; sc_start SC_INCREASEAGI,140000,5; skilleffect "AL_INCAGI",0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12415,'Siege_Teleport_Scroll2','Siege Teleport Scroll Silver',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12416,'Lucky_Egg_C3','Lucky Egg C3',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Lucky_Egg_C3);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12417,'Boost500','Boost500',2,100,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_BOOST500,500000,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12418,'Full_SwingK','Full SwingK',2,100,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_FULL_SWING_K,500000,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12419,'Mana_Plus','Mana Plus',2,100,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_MANA_PLUS,500000,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12420,'Stamina_Up_M','Stamina Up M',2,100,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_MUSTLE_M,500000,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12421,'Digestive_F','Falmons F',2,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_LIFE_FORCE_F,500000,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12422,'HP_Increase_PotionS','HP Increase Potion (Small)',2,100,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,1; percentheal 1,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12423,'HP_Increase_PotionM','HP Increase Potion (Medium)',2,100,NULL,40,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,2; percentheal 2,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12424,'HP_Increase_PotionL','HP Increase Potion (Large)',2,100,NULL,80,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,3; percentheal 5,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12425,'SP_Increase_PotionS','SP Increase Potion (Small)',2,100,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start2 SC_ENERGY_DRINK_RESERCH,500000,1,1; percentheal 0,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12426,'SP_Increase_PotionM','SP Increase Potion (Medium)',2,100,NULL,40,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start2 SC_ENERGY_DRINK_RESERCH,500000,1,2; percentheal 0,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12427,'SP_Increase_PotionL','SP Increase Potion (Large)',2,100,NULL,80,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start2 SC_ENERGY_DRINK_RESERCH,500000,1,3; percentheal 0,8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12428,'Enrich_White_PotionZ','Concentrated White Potion Z',0,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_EXTRACT_WHITE_POTION_Z,500000,20; heal 1000,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12429,'Savage_BBQ','Savage Full Roast',2,NULL,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_SAVAGE_STEAK,300000,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12430,'Wug_Blood_Cocktail','Cocktail Warg Blood',2,NULL,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_COCKTAIL_WARG_BLOOD,300000,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12431,'Minor_Brisket','Minor Stew',2,NULL,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_MINOR_BBQ,300000,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12432,'Siroma_Icetea','Siroma Iced Tea',2,NULL,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_SIROMA_ICE_TEA,300000,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12433,'Drocera_Herb_Stew','Drosera Herb Salad',2,NULL,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_DROCERA_HERB_STEAMED,300000,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12434,'Petti_Tail_Noodle','Petite Tail Noodles',2,NULL,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_PUTTI_TAILS_NOODLES,300000,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12435,'Black_Thing','Black Mass',2,NULL,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_STOMACHACHE,60000,rand(5,10);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12436,'Vitata500','Vitata 500',0,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start2 SC_VITATA_500,500000,20,5; itemheal 0,200;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12437,'Enrich_Celermine_Juice','Concentrated Ceromain Soup',2,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_EXTRACT_SALAMINE_JUICE,500000,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12438,'F_Giant_Fly_Wing','F Giant Fly Wing',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12439,'F_Battle_Manual','F Old Battle Manual',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12440,'F_Insurance','F Insurance',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12441,'F_Bubble_Gum','F Old Bubble Gum',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12442,'F_Kafra_Card','F Kafra Card',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12443,'F_Neuralizer','F Neuralizer',2,2,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12444,'F_Dun_Tele_Scroll1','WoE Telport Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashSiegeTele";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12445,'F_Str_Dish10_','F Str Dish10',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_STRFOOD,1800000,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12446,'F_Agi_Dish10_','F Agi Dish10',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_AGIFOOD,1800000,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12447,'F_Int_Dish10_','F Int Dish10',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INTFOOD,1800000,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12448,'F_Dex_Dish10_','F Dex Dish10',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_DEXFOOD,1800000,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12449,'F_Luk_Dish10_','F Luk Dish10',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_LUKFOOD,1800000,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12450,'F_Vit_Dish10_','F Vit Dish10',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_VITFOOD,1800000,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12451,'F_WOB_Rune','F WOB Rune',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12452,'F_WOB_Schwaltz','F WOB Schwarz',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12453,'F_WOB_Rachel','F WOB Rachel',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12454,'F_WOB_Local','F WOB Local',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12456,'F_Greed_Scroll','F Greed Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12457,'F_Glass_Of_Illusion','F Glass Of Illusion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12458,'F_Abrasive','F Abrasive',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12459,'F_Med_Life_Potion','F Med Life Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_HEAL3; sc_start2 SC_L_LIFEPOTION,600000,-7,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12460,'F_Small_Life_Potion','F Small Life Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_HEAL3; sc_start2 SC_S_LIFEPOTION,600000,-5,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12461,'F_Regeneration_Potion','F Regeneration Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12462,'F_B_Mdef_Potion','F B Mdef Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect EF_SPELLBREAKER; bonus_script "{ bonus3 bSubEle,Ele_All,3,BF_MAGIC; }",180,0,0,EFST_PROTECT_MDEF;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12463,'F_S_Mdef_Potion','F S Mdef Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect EF_SPELLBREAKER; bonus_script "{ bonus3 bSubEle,Ele_All,3,BF_MAGIC; }",60,0,0,EFST_PROTECT_MDEF;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12464,'F_B_Def_Potion','F B Def Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect EF_GUARD; bonus_script "{ bonus3 bSubEle,Ele_All,3,BF_SHORT; }",180,0,0,EFST_PROTECT_DEF;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12465,'F_S_Def_Potion','F S Def Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect EF_GUARD; bonus_script "{ bonus3 bSubEle,Ele_All,3,BF_SHORT; }",60,0,0,EFST_PROTECT_DEF;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12466,'F_Blessing_10_Scroll','F Blessing 10 Scroll',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12467,'F_Inc_Agi_10_Scroll','F Inc Agi 10 Scroll',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12468,'F_Aspersio_5_Scroll','F Aspersio 5 Scroll',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12470,'F_Wind_Walk_10_Scroll','F Wind Walk 10 Scroll',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12471,'F_Adrenaline_Scroll','F Adrenaline Scroll',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12472,'F_Convex_Mirror','F Convex Mirror',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12473,'RWC_Parti_Box','RWC Parti Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_RWC_Parti_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12474,'RWC_Final_Comp_Box','RWC Final Comp Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_RWC_Final_Comp_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12475,'Cure_Free','Cure Free',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_end SC_SILENCE; sc_end SC_BLEEDING; sc_end SC_POISON; sc_end SC_CURSE; sc_end SC_ORCISH; sc_end SC_CHANGEUNDEAD; itemheal 500,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12476,'PCBang_Coupon_Box3','PCBang Coupon Box3',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12477,'Gift_Bundle','Gift Bundle',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*getgroupitem(IG_Gift_Bundle);*/ getitem 547,30; getitem 608,2; getitem 6302,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12478,'Chance_Box','Chance Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12479,'Caracas_Ring_Box','Caracas Ring Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*getgroupitem(IG_Caracas_Ring_Box);*/ rentitem 2841,270000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12480,'Attend_3Day_Box','Attend 3Day Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12481,'Attend_7Day_Box','Attend 7Day Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12482,'Attend_10Day_Box','Attend 10Day Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12483,'Attend_15Day_Box','Attend 15Day Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12484,'Attend_20Day_Box','Attend 20Day Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12485,'Attend_25Day_Box','Attend 25Day Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12486,'GoldPC_First_Box','GoldPC First Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12487,'PC_4Leaf_Clover_Box','PC 4Leaf Clover Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12488,'Ticket_Gift_Box','Ticket Gift Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12489,'Ticket_Gift_Box2','Ticket Gift Box2',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12490,'Vivid_Notation','Christmas Music Box',2,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'playbgm rand(53,58)+".mp3";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12491,'Curious_Snowball','Curious Snowball',2,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_Snowball";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12492,'Crumpled_Paper','Crumpled Paper',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_Crumpled_Paper,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12493,'Lucky_Egg_C4','Lucky Egg C4',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Lucky_Egg_C4);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12494,'E_Giant_Fly_Wing','E Giant Fly Wing',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12495,'E_Battle_Manual','E Battle Manual',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12496,'E_Insurance','E Insurance',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12497,'E_Bubble_Gum','E Bubble Gum',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_ITEMBOOST,1800000,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12498,'E_Kafra_Card','E Kafra Card',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12499,'E_Neuralizer','E Neuralizer',2,2,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12500,'E_Dun_Tele_Scroll1','E Dun Tele Scroll1',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12501,'E_Str_Dish10_','Steamed Tongue',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_STRFOOD,1800000,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12502,'E_Agi_Dish10_','Steamed Desert Scorpions',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_AGIFOOD,1800000,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12503,'E_Int_Dish10_','Dragon Breath Cocktail',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INTFOOD,1800000,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12504,'E_Dex_Dish10_','Hwergelmir\'s Tonic',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_DEXFOOD,1800000,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12505,'E_Luk_Dish10_','Cooked Nine Tail',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_LUKFOOD,1800000,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12506,'E_Vit_Dish10_','Immortal Stew',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_VITFOOD,1800000,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12507,'E_WOB_Rune','Yellow Butterfly Wing',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashCity",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12508,'E_WOB_Schwaltz','Green Butterfly Wing',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashCity",2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12509,'E_WOB_Rachel','Red Butterfly Wing',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashCity",3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12510,'E_WOB_Local','Blue Butterfly Wing',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashCity",5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12511,'E_Siege_Teleport_Scroll','E Siege Teleport Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12512,'E_Greed_Scroll','E Greed Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12513,'E_Glass_Of_Illusion','E Glass Of Illusion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12514,'E_Abrasive','E Abrasive',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_MAGICALATTHIT; sc_start SC_INCCRI,300000,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12515,'E_Med_Life_Potion','E Med Life Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_HEAL3; sc_start2 SC_L_LIFEPOTION,600000,-7,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12516,'E_Small_Life_Potion','E Small Life Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_HEAL3; sc_start2 SC_S_LIFEPOTION,600000,-5,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12517,'E_Regeneration_Potion','E Regeneration Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12518,'E_B_Mdef_Potion','E B Mdef Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12519,'E_S_Mdef_Potion','E S Mdef Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12520,'E_B_Def_Potion','E B Def Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12521,'E_S_Def_Potion','E S Def Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12522,'E_Blessing_10_Scroll','Blessing Scroll Lv 10',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "AL_BLESSING",10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12523,'E_Inc_Agi_10_Scroll','Increase Agility Scroll Lv 10',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "AL_INCAGI",10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12524,'E_Aspersio_5_Scroll','Aspersio Scroll Lv 5',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "PR_ASPERSIO",5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12525,'E_Assumptio_5_Scroll','Assumptio Scroll Lv 5',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "HP_ASSUMPTIO",5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12526,'E_Wind_Walk_10_Scroll','Wind Walk Scroll Lv 10',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "SN_WINDWALK",10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12527,'E_Adrenaline_Scroll','Adrenaline Scroll',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "BS_ADRENALINE",5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12528,'E_Convex_Mirror','Convex Mirror',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_BOSSMAPINFO,600000,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12529,'White_Slim_Potion_Box','White Slim Potion Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 547,200;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12530,'Mastela_Fruit_Box','Mastela Fruit Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 522,200;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12531,'White_Potion_Box','White Potion Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 504,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12532,'Royal_Jelly_Box2','Royal Jelly Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 526,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12533,'Blue_Herb_Box2','Blue Herb Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 510,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12534,'Yggdrasil_Seed_Box','Yggdrasil Seed Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 608,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12535,'Iggdrasilberry_Box','Iggdrasilberry Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 607,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12536,'NY_Rice_Cake_Soup','NY Rice Cake Soup',2,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12537,'Solo_Gift_Basket','Solo Gift Basket',2,1000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*getgroupitem(IG_Solo_Gift_Basket);*/ getitem 597,5; getitem 596,3; getitem 561,3; getitem 573,4; getitem 559,10; getitem 560,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12538,'Couple_Event_Basket','Couple Event Basket',2,2000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*getgroupitem(IG_Couple_Event_Basket);*/ getitem 14546,10; getitem 14547,10; getitem 14548,10; getitem 14549,10; getitem 14550,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12539,'Splendid_Box','Splendid Box',2,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Splendid_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12540,'GM_Warp_Box','GM Warp Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_GM_Warp_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12541,'Fortune_Cookie1','Fortune Cookie1',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_Fortune_Cookie1,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12542,'Fortune_Cookie2','Fortune Cookie2',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Fortune_Cookie2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12543,'Fortune_Cookie3','Fortune Cookie3',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Fortune_Cookie3);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12544,'Mystic_Tree_Branch','Mystic Tree Branch',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12545,'Lucky_Egg_C5','Lucky Egg C5',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Lucky_Egg_C5);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12546,'Suspicious_Dish','Suspicious Dish',2,100,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_POISON,50000,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12547,'Chalcenodny_Box','Chalcenodny Box',2,0,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12548,'Buy_Market_Permit2','Shabby Purchase Street Stall License',2,500,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'buyingstore 2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12549,'White_Slim_Pot_Box2','White Slim Pot Box2',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 547,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12550,'Poison_Bottle_Box2','Deadly Poison Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 678,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12551,'MVP_Tele_Scroll','MVP Tele Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12552,'Quest_Tele_Scroll','Quest Tele Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12553,'Brysinggamen_Piece_Box','Brysinggamen Piece Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12554,'Asprika_Piece_Box','Asprika Piece Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12555,'Brynhild_Piece_Box','Brynhild Piece Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12556,'Sleipnir_Piece_Box','Sleipnir Piece Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12557,'Mjolnir_Piece_Box','Mjolnir Piece Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12558,'Magingiorde_Piece_Box','Magingiorde Piece Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12559,'Tenkaippin_Strong','Tenkaippin Strong',2,650,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12560,'Tenkaippin_Clean','Tenkaippin Clean',2,650,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12561,'Mysterious_Seed','Mysterious Seed',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'warp "bif_fild01",32,382;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12562,'Bubble_Gum_Plus','Bubble Gum Plus',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12563,'BM75','BM75',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12564,'3D_Glasses_Box','3D Glasses Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12565,'Cheer_Scarf_Box','Cheer Scarf Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12566,'Cheer_Scarf2_Box','Cheer Scarf2 Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12567,'Cheer_Scarf3_Box','Cheer Scarf3 Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12568,'Cheer_Scarf4_Box','Cheer Scarf4 Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12569,'Cheer_Scarf6_Box','Cheer Scarf6 Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12570,'Cheer_Scarf8_Box','Cheer Scarf8 Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12571,'Cheer_Scarf10_Box','Cheer Scarf10 Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12572,'Cheer_Scarf10_Box2','Cheer Scarf10 Box2',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12573,'Fruit_Basket','Fruit Basket',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_Fruit_Basket,1); getrandgroupitem(IG_Fruit_Basket,1); getrandgroupitem(IG_Fruit_Basket,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12574,'Mora_Berry','Mora Berry',2,0,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal 0,rand(50,65); specialeffect2 EF_GUARD; bonus_script "{ bonus2 bAddDefMonster,2137,50; bonus2 bAddDefMonster,2136,50; bonus2 bAddDefMonster,2134,50; bonus2 bAddDefMonster,2133,50; bonus2 bAddDefMonster,2132,50; }",120;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12575,'Arrow_Of_Elf_Cntr','Arrow Of Elf Cntr',2,500,NULL,250,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 1773,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12576,'Hunting_Arrow_Cntr','Hunting Arrow Cntr',2,500,NULL,250,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 1774,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12577,'Lucky_Egg_C6','Lucky Egg C6',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Lucky_Egg_C6);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12578,'Rapid_Life_Water','Rapid Life Water',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_HEAL3; bonus_script "{ bonus2 bHPRegenRate,(MaxHp/100*6),3000; }",600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12579,'Ring_Of_Valkyrie_Box','Ring Of Valkyrie Box',2,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12580,'Vending_Search_Scroll','Universal Catalog Silver',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'searchstores 10,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12581,'Vending_Search_Scroll2','Universal Catalog Gold',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'searchstores 10,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12582,'Siege_Supply_Box','WoE Supply Box',11,0,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12583,'PR_Team_Box','Public Relations box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6397,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12584,'Develop_Team_box','Development Team box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6398,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12585,'Marketing_Team_Box','Marketing Team box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6399,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12586,'Operating_Team_Box','Operation Team box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6400,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12587,'Summer_Night_box','A Summer Night\'s Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12246,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12588,'Summer_Night_box2','A Summer Night\'s Box2',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12103,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12589,'Summer_Night_box3','A Summer Night\'s Box3',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12106,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12591,'Uni_Catalog_Bz','Universal Catalog Bronze',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'searchstores 10,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12592,'Cyclops_Box1','Cyclops Box1',11,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12593,'Cyclops_Box2','Cyclops Box2',11,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12594,'Cyclops_Box3','Cyclops Box3',11,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12595,'Lucky_Egg_C7','Lucky Egg C7',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Lucky_Egg_C7);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12596,'Magic_Candy','Magic Candy',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_HASTEUP; bonus_script "{ bonus bMatk,30; bonus bFixedCastrate,-70; bonus bNoCastCancel; bonus2 bSPLossRate,90,10000; }",60,0,0,EFST_MAGIC_CANDY;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12597,'Opor_Ayam','Opor Ayam',11,20,NULL,150,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12598,'Dendeng_Balado','Dendeng Balado',11,20,NULL,150,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12599,'Kurma','Kurma',11,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12600,'Treasure_Box_Scroll','Treasure Chest Summoned',11,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12601,'Cold_Watermelon_Juice','Fresh Watermelon Juice',0,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 5,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12602,'Special_Box1','Special Box I',11,100,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12603,'Special_Box2','Special Box II',11,100,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12604,'Special_Box3','Special Box III',11,100,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12605,'Special_Box4','Special Box IV',11,100,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12606,'Special_Box5','Special Box V',11,100,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12607,'Lolli_Pop_Box','Delicious Lollipop Box',11,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12608,'Splendid_Box2','Splendid Box2',11,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12609,'Old_Ore_Box','Old Ore Box',2,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Old_Ore_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12610,'Mysterious_Egg','Mysterious Egg',2,NULL,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem callfunc("F_Rand",12545,12493,12577,12391,12403,12416),1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12612,'Old_Coin_Pocket','Old Coin Bag',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Old_Coin_Pocket);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12613,'High_Coin_Pocket','Improved Coin Bag',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_High_Coin_Pocket);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12614,'Mid_Coin_Pocket','Intermediate Coin Bag',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Mid_Coin_Pocket);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12615,'Low_Coin_Pocket','Minor Coin Bag',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Low_Coin_Pocket);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12616,'Sgrade_Pocket','S Grade Coin Bag',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Sgrade_Pocket);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12617,'Agrade_Pocket','A Grade Coin Bag',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Agrade_Pocket);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12618,'Bgrade_Pocket','B Grade Coin Bag',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Bgrade_Pocket);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12619,'Cgrade_Pocket','C Grade Coin Bag',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Cgrade_Pocket);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12620,'Dgrade_Pocket','D Grade Coin Bag',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Dgrade_Pocket);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12621,'Egrade_Pocket','E Grade Coin Bag',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Egrade_Pocket);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12622,'Boarding_Halter','Reins Of Mount',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'setmounting();',NULL,'if (ismounting()) setmounting();'); -REPLACE INTO `item_db_re` VALUES (12623,'High_Weapon_Box','Advanced Weapons Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_Advanced_Weapons_Box,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12624,'Delicious_Jelly','Delicious Jelly',0,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 3,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12625,'Sapa_Feat_Cert_Pack','Sapa Feat Cert Pack',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12626,'Wander_Man_Scroll','Wander Man Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 2213,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12627,'Wicked_Nymph_Scroll','Wicked Nymph Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 2214,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12628,'Kasa_Scroll','Kasa Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 2215,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12629,'Salamander_Scroll','Salamander Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 2216,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12630,'Teddy_Bear_Scroll','Teddy Bear Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 2217,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12631,'Macro_Stone_A','Macro Stone A',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12632,'Macro_Stone_B','Macro Stone B',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12633,'Malang_Cat_Can','Malangdo Cat Can',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_MAGICALATTHIT; bonus_script "{ bonus2 bExpAddRace,RC_All,10; bonus2 bDropAddRace,RC_All,20; }",1200,1,0,EFST_OVERLAPEXPUP;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12634,'Macro_Stone_A1','Macro Stone A1',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12635,'Macro_Stone_A2','Macro Stone A2',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12636,'Malang_Sp_Can','Malangdo Canned Specialties',2,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'warp "malangdo",140,114;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12637,'Gong_Bug_Pocket','Sow Bug Pocket',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13208,200;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12638,'Dried_Squid_Box','Dried Squid Box',2,20,NULL,2000,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13292,200;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12639,'Flying_Fish_Box','Flying Fish Box',2,20,NULL,2000,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13293,200;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12640,'Starfish_Box','Starfish Box',2,20,NULL,500,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13291,200;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12641,'Lucky_Egg_C8','Lucky Egg C8',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Lucky_Egg_C8);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12642,'Fruit_Of_Mastela_Box2','Fruit Of Mastela 100 Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 522,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12643,'E_Coin_Pack50','E Coin Pack50',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6422,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12644,'PCBang_Coupon_Box4','PCBang Coupon Box4',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12645,'J_Aspersio_5_Scroll_C','J Aspersio 5 Scroll C',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_ASPERSIO,180000,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12646,'Takoyaki','Fried Octopus Legs',2,20,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 5,5; sc_start SC_LUKFOOD,600000,9; sc_start SC_ATKPOTION,600000,20; sc_start SC_MATKPOTION,600000,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12647,'Ink_Ball','Sea Ink',2,20,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Ink_Ball);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12648,'Special_Potion_Set','Comprehensive Set Of Potions',2,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 501,10; getitem 502,10; getitem 503,10; getitem 504,10; getitem 505,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12649,'Lv70_Imperial_Gift','Level 70 Bounty',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12073,5; getitem 12088,5; getitem 12078,5; getitem 12083,5; getitem 12093,5; getitem 12098,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12650,'Lv90_Imperial_Gift','Level 90 Bounty',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12263,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12651,'Lv110_Imperial_Gift','Level 110 Bounty',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12623,1; getitem 16765,1; getitem 16765,1; getitem 16765,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12652,'Lv130_Imperial_Gift','Level 130 Bounty',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12613,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12653,'Lv150_Imperial_Gift','Level 150 Bounty',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 16740,1; getitem 16740,1; getitem 16740,1; getitem 5364,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12654,'Lucky_Egg_C9','Lucky Egg C9',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Lucky_Egg_C9);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12655,'Brain_Powder','Brain Powder',2,2000,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12656,'Magical_Powder','Magical Powder',2,3000,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12657,'Madness_Powder','Madness Powder',2,4000,NULL,300,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12658,'Trans_Scroll_Devi','Transformation Scroll(Deviruchi)',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'transform 1109,1200000,SC_MTF_ASPD,10,5; showscript "Traaaansformation-!! Deviruchi form!!";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12659,'Trans_Scroll_Ray_Arch','Transformation Scroll(Raydric)',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'transform 1276,1200000,SC_MTF_RANGEATK,25; showscript "Traaaansformation-!! Raydric form!!";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12660,'Trans_Scroll_Mavka','Transformation Scroll(Mavka)',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'transform 1884,1200000,SC_MTF_RANGEATK,25; showscript "Traaaansformation-!! Mavka form!!";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12661,'Trans_Scroll_Marduk','Transformation Scroll(Marduk)',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'transform 1140,1200000,SC_MTF_MATK,25; showscript "Traaaansformation-!! Marduk form!!";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12662,'Trans_Scroll_Banshee','Transformation Scroll(Banshee)',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'transform 1867,1200000,SC_MTF_MATK,25; showscript "Traaaansformation-!! Banshee form!!";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12663,'Trans_Scroll_Poring','Transformation Scroll(Poring)',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'transform 1002,1200000,SC_MTF_CRIDAMAGE,25; showscript "Traaaansformation-!! Poring form!!";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12664,'Trans_Scroll_Golem','Transformation Scroll(Golem)',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'transform 1040,1200000,SC_MTF_MLEATKED,5,20,2; showscript "Traaaansformation-!! Golem form!!";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12665,'Grovel_Buff','Grovel Buff',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12666,'Thai_Perfume_MATK','Thai Perfume MATK',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_MAGICALATTHIT; bonus_script "{ bonus bMatk,24; }",600,0,0,EFST_SKF_MATK;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12667,'Thai_Perfume_ATK','Thai Perfume ATK',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_MAGICALATTHIT; bonus_script "{ bonus bBaseAtk,24; }",600,0,0,EFST_SKF_ATK;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12668,'Thai_Perfume_ASPD','Thai Perfume ASPD',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_MAGICALATTHIT; bonus_script "{ bonus bAspdRate,3; }",600,0,0,EFST_SKF_ASPD;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12669,'Thai_Perfume_CAST','Thai Perfume CAST',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_MAGICALATTHIT; bonus_script "{ bonus bVariableCastrate,-5; }",600,0,0,EFST_SKF_CAST;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12670,'Beast_Powder','Beast Powder',2,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12671,'99lv_Battle_Manual','99lv Battle Manual',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12672,'Start_New_Box','Start New Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 617,2; getitem 12263,2; getitem 12329,3; getitem 12330,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12673,'Lucky_Egg_C10','Lucky Egg C10',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Lucky_Egg_C10);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12674,'God_Material_Box','God Material Box',2,20,NULL,500,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_God_Material_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12675,'Sg_Weapon_Supply_Box','WoE Weapon Supply Box',2,20,NULL,500,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Sg_Weapon_Supply_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12676,'Sg_Violet_Potion_Box','Siege Violet Potion Box',2,20,NULL,500,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 11547,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12677,'Siege_Arrow_Quiver_S','Siege Arrow Quiver S',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'130',NULL,NULL,'getitem 1775,200;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12678,'Siege_Arrow_Quiver_A','Siege Arrow Quiver A',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'95',NULL,NULL,'getitem 1776,200;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12679,'Sg_White_Potion_Box','Siege White Potion Box',2,20,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 11548,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12680,'Sg_Blue_Potion_Box','Siege Blue Potion Box',2,20,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 11549,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12681,'Nestea_Lemon','Nestea Lemon',2,0,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12682,'Nestea_Blacktea','Nestea Black Tea',2,0,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12683,'Sg_Vi_Potion_Box200','Siege Violet Potion Box (200)',2,20,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 11547,200;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12684,'ASPD_Potion','ASPD Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_ATTHASTE_CASH,900000,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12685,'Gryphon_Egg_Scroll','Gryphon Egg Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12686,'Str_Dish20','Str Dish20',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12687,'Int_Dish20','Int Dish20',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12688,'Vit_Dish20','Vit Dish20',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12689,'Dex_Dish20','Dex Dish20',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12690,'Old_C_Album_Helm','Headgear Card Album',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_CardAlbum_Helm,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12691,'Old_C_Album_Armor','Armor Card Album',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_CardAlbum_Armor,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12692,'Old_C_Album_Shield','Shield Card Album',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_CardAlbum_Shield,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12693,'Old_C_Album_Garment','Garment Card Album',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_CardAlbum_Garment,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12694,'Old_C_Album_Shoes','Shoes Card Album',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_CardAlbum_Shoes,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12695,'Old_C_Album_Acc','Accessory Card Album',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_CardAlbum_Acc,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12696,'RWC_Cele_Fire','RWC Celebration Firecracker',2,0,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'bonus_script "{ bonus bAllStats,3; bonus2 bAddClass,Class_All,5; bonus2 bMagicAddClass,Class_All,5; bonus bMatkRate,5; }",10,0,0,EFST_2011RWC;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12697,'RWC_Cele_Fire2','RWC Celebration Firecracker',2,0,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'bonus_script "{ bonus bAllStats,3; bonus2 bAddClass,Class_All,5; bonus2 bMagicAddClass,Class_All,5; bonus bMatkRate,5; }",10,0,0,EFST_2011RWC;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12698,'Old_C_Album_Weapon','Weapon Card Album',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_CardAlbum_Weapon,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12699,'Tikbalang_Belt','Tikbalang Harness',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 2313;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12700,'Insideout_Shirt','Inside-out Shirt',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'warp "malaya",242,211;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12701,'Old_Blue_Box_F','Old Blue Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12702,'Old_Bleu_Box','Old Navy Box',2,0,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_BleuBox,1); getrandgroupitem(IG_BleuBox,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12703,'Holy_Egg_2','Holy Egg',2,0,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_Holy_Egg_2,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12704,'Elixir_Of_Life','Elixir of Life',0,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'85',NULL,NULL,'percentheal 100,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12705,'Noble_Nameplate','Noble Nameplate',2,0,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'90',NULL,NULL,'sc_start SC_EXPBOOST,1800000,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12706,'Lucky_Cookie01','Lucky Cookie',11,0,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "PR_GLORIA",5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12707,'Lucky_Cookie02','Lucky Cookie',11,0,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "PR_MAGNIFICAT",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12708,'Lucky_Cookie03','Lucky Cookie',11,0,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "PR_IMPOSITIO",3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12709,'Guyak_Candy','Guyak Candy',0,0,NULL,150,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 30,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12710,'Guyak_Pudding','Guyak Pudding',2,0,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_SPEEDUP1,300000,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12711,'Pretzel','Pretzel',0,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemheal rand(50,90),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12712,'Green_Beer','Green Beer',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 0,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12713,'Monster_Extract','Monster Extract',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12714,'Easter_Scroll','Easter Scroll',2,1,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_Easter_Scroll,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12715,'Black_Treasure_Box','Black Treasure Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12716,'Indian_Rice_Cake','Indian Rice Cake',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#=================================================================== -# Guillotine Cross Poisons -#=================================================================== -REPLACE INTO `item_db_re` VALUES (12717,'Poison_Paralysis','Paralyze',2,2,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12718,'Poison_Leech','Leech End',2,2,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12719,'Poison_Oblivion','Oblivion Curse',2,2,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12720,'Poison_Contamination','Disheart',2,2,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12721,'Poison_Numb','Toxin',2,2,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12722,'Poison_Fever','Pyrexia',2,2,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12723,'Poison_Laughing','Magic Mushroom',2,2,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12724,'Poison_Fatigue','Venom Bleed',2,2,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#=================================================================== -# Rune Knight's Rune Stones -#=================================================================== -REPLACE INTO `item_db_re` VALUES (12725,'Runstone_Nosiege','Nauthiz Rune',2,100,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_REFRESH",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12726,'Runstone_Rhydo','Raido Rune',2,100,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_CRUSHSTRIKE",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12727,'Runstone_Verkana','Berkana Rune',2,100,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_MILLENNIUMSHIELD",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12728,'Runstone_Isia','Isa Rune',2,100,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_VITALITYACTIVATION",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12729,'Runstone_Asir','Othila Rune',2,100,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_FIGHTINGSPIRIT",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12730,'Runstone_Urj','Uruz Rune',2,100,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_ABUNDANCE",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12731,'Runstone_Turisus','Thurisaz Rune',2,100,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_GIANTGROWTH",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12732,'Runstone_Pertz','Wyrd Rune',2,100,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_STORMBLAST",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12733,'Runstone_Hagalas','Hagalaz Rune',2,100,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_STONEHARDSKIN",1;',NULL,NULL); -#=================================================================== -# Rune Knight Rune Ores -#=================================================================== -REPLACE INTO `item_db_re` VALUES (12734,'Runstone_Quality','Luxurious Rune',0,2,NULL,100,NULL,NULL,NULL,NULL,0x00000080,56,2,NULL,NULL,NULL,NULL,NULL,'makerune 8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12735,'Runstone_Ancient','Ancient Rune',0,2,NULL,100,NULL,NULL,NULL,NULL,0x00000080,56,2,NULL,NULL,NULL,NULL,NULL,'makerune 30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12736,'Runstone_Mystic','Mystic Rune',0,2,NULL,100,NULL,NULL,NULL,NULL,0x00000080,56,2,NULL,NULL,NULL,NULL,NULL,'makerune 60;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12737,'Runstone_Ordinary','General Rune',0,2,NULL,100,NULL,NULL,NULL,NULL,0x00000080,56,2,NULL,NULL,NULL,NULL,NULL,'makerune 4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12738,'Runstone_Rare','Rare Rune',0,2,NULL,100,NULL,NULL,NULL,NULL,0x00000080,56,2,NULL,NULL,NULL,NULL,NULL,'makerune 15;',NULL,NULL); -#=================================================================== -# More usable items -#=================================================================== -REPLACE INTO `item_db_re` VALUES (12739,'Snow_Flower','Snow Flowers',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 10,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12740,'Inc_Str_Scroll','Amplification Scroll',2,1,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_POTION_BERSERK; bonus_script "{ bonus bStr,20; }",60,0,0,EFST_STR_SCROLL;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12741,'Inc_Int_Scroll','Intellect Amplification Scroll',2,1,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_SPELLBREAKER; bonus_script "{ bonus bInt,20; }",60,0,0,EFST_INT_SCROLL;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12742,'Valentine_Gift_Box1','Valentine Gift Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7946,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12743,'Valentine_Gift_Box2','Valentine Gift Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7947,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12744,'Chocotate_Box','Chocolate Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 558,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12745,'Skull_Scroll','Skull Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12746,'Destruction_Scroll','Destruction Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12747,'Royal_Scroll','Royal Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12748,'Immune_Scroll','Immune Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12749,'Mystic_Scroll','Mystic Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12750,'Battle_Scroll','Battle Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12751,'Armor_Scroll','Armor Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12752,'Prayer_Scroll','Prayer Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12753,'Soul_Scroll','Soul Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12754,'New_Year_Bun','Chinese Pastel',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 50,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12755,'Traditional_Firecrack','Chinese Fireworks',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_POK_JAP; /* itemskill "MO_CALLSPIRITS",3; itemskill "MO_FINGEROFFENSIVE",5; */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12756,'New_Gift_Envelope','Chinese New Year Envelope',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*getgroupitem(IG_New_Gift_Envelope);*/ getrandgroupitem(IG_New_Gift_Envelope,0);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12757,'Loyal_Ring1_Box','Loyal Ring1 Box',2,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12758,'Loyal_Ring2_Box','Loyal Ring2 Box',2,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12759,'Loyal_Ring3_Box','Loyal Ring3 Box',2,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12760,'Bubble_Gum_Green','Bubble Gum Green',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INCSTR,1200000,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12761,'Bubble_Gum_Yellow','Bubble Gum Yellow',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INCINT,1200000,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12762,'Bubble_Gum_Orange','Bubble Gum Orange',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INCDEX,1200000,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12763,'Bubble_Gum_Red','Bubble Gum Red',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INCAGI,1200000,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12764,'Fools_Day_Box_Tw','Fools Day Box Tw',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12765,'Summer_Knight_Box','Summer Knight Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12766,'Reward_Job_BM25','Reward Job BM25',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12767,'Passion_FB_Hat_Box','Passion FB Hat Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*getgroupitem(IG_Passion_FB_Hat_Box);*/ rentitem 5856,3600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12768,'Cool_FB_Hat_Box','Cool FB Hat Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*getgroupitem(IG_Cool_FB_Hat_Box);*/ rentitem 5857,3600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12769,'Victory_FB_Hat_Box','Victory FB Hat Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*getgroupitem(IG_Victory_FB_Hat_Box);*/ rentitem 5858,3600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12770,'Glory_FB_Hat_Box','Glory FB Hat Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*getgroupitem(IG_Glory_FB_Hat_Box);*/ rentitem 5859,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12771,'Passion_Hat_Box2','Passion Hat Box2',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*getgroupitem(IG_Passion_Hat_Box2);*/ rentitem 5856,21600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12772,'Cool_Hat_Box2','Cool Hat Box2',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*getgroupitem(IG_Cool_Hat_Box2);*/ rentitem 5857,21600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12773,'Victory_Hat_Box2','Victory Hat Box2',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*getgroupitem(IG_Victory_Hat_Box2);*/ rentitem 5858,21600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12774,'Empty_Potion_Bottle','Empty Potion Bottle',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12775,'Ancient_Spirit_Agimat','Greater Agimat of Ancient Spirit',2,20,NULL,600,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_PROVIDENCE; bonus_script "{ bonus2 bAddRace,RC_Demon,10; bonus2 bMagicAddRace,RC_Demon,10; }",1200;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12776,'Agi_Dish20','Agi Dish20',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12777,'Luk_Dish20','Luk Dish20',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12778,'Bapho_Jr_Scroll','Bapho Jr Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 2325,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12779,'Galapago_Scroll','Galapago Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 2326,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12780,'10M_Zeny_Check','10M Zeny Check',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12781,'1M_Zeny_Check','1M Zeny Check',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12782,'100T_Zeny_Check','100T Zeny Check',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12783,'10000_Zeny_Check','10000 Zeny Check',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12784,'1000_Zeny_Check','1000 Zeny Check',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12785,'Dragon_Egg_Scroll','Dragon Egg Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12786,'Change_Slot_Card','Character Position Change Coupon',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'CharMoves++;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12787,'Diabolic_Scroll','Diabolic Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 2342,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12788,'No100_Firecracker','No100 Firecracker',2,2,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12789,'Juicy_Fruit','Juicy Fruit',2,2,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12790,'Change_Name_Card','Character Name Change Coupon',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'CharRename++;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12791,'Combat_Pill','Combat Pill',2,20,NULL,150,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_POTION_BERSERK; bonus_script "{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bMaxHPrate,3; bonus bMaxSPrate,3; }",60,0,0,EFST_GM_BATTLE; /* showscript */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12792,'P_Combat_Pill','P Combat Pill',2,20,NULL,150,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_POTION_BERSERK; bonus_script "{ bonus2 bAddClass,Class_All,10; bonus bMatkRate,10; bonus bMaxHPrate,5; bonus bMaxSPrate,5; }",60,0,0,EFST_GM_BATTLE;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12793,'Combat_Pill_Box10','Combat Pill Box10',2,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12791,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12794,'P_Combat_Pill_Box10','P Combat Pill Box10',2,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12792,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12795,'2011_RWC_Scroll_Kr','2011 RWC Scroll Kr',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12796,'Red_Booster','Red Booster',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "AC_CONCENTRATION",max(getskilllv("AC_CONCENTRATION"),3); specialeffect2 EF_POTION_BERSERK; showscript "Oh My GOODNESS!!! I FEEL AWESOMELY STRONG!!! WOWOW";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12797,'Wish_Maiden_Scroll','Wish Maiden Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 2344,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12798,'Zealotus_Scroll','Zealotus Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 2345,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12799,'PCBang_Coupon_Box5','PCBang Coupon Box5',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12800,'Ktullanux_Scroll','Ktullanux Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 2346,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12801,'Eddga_Scroll','Eddga Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 2347,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12802,'Time_Guardian_Box','Time Guardian Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12803,'Beginner_Kit_Box','Beginner Kit Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12804,'Cru_Scroll','Cru Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12805,'Mystic_Powder','Mystic Powder',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12806,'Scaraba_Scroll','Scaraba Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 2378,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12807,'Mercenary_Casting_','Mercenary Casting',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'20',NULL,NULL,'getitem 12160,5; getitem 12170,5; getitem 12180,5; getitem 12808,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12808,'Mother_Love_Box','Mother Love Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'40',NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12809,'Level_Up_Box','Level Up Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'120',NULL,NULL,'getitem 12263,5; getitem 12264,5; getitem 12265,5; getitem 12766,5; getitem 12819,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12810,'Event_Gift_Box','Event Gift Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12811,'Event_Gift_Box_','Event Gift Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 607,3; getitem callfunc("F_Rand",22528,22802,12246,6228,6229,6230,6232,6233,6234),1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12812,'Snow_Flip','Snow Flip',11,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "ECL_SNOWFLIP",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12813,'Peony_Mommy','Peony Mamy',11,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "ECL_PEONYMAMY",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12814,'Slapping_Herb','Slapping Herb',11,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "ECL_SADAGUI",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12815,'Yggdrasil_Dust','Yggdrasil Dust',11,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "ECL_SEQUOIADUST",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12816,'Old_Ore_Box_','Old Ore Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'60',NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12817,'Old_Card_Album_','Old Card Album',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'80',NULL,NULL,'getrandgroupitem(IG_CardAlbum,1); getitem 12818,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12818,'High_Weapon_Box_','High Weapon Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'100',NULL,NULL,'getrandgroupitem(IG_Advanced_Weapons_Box,1); getitem 12809,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12819,'Zherlthsh_Tck_Box_','Zherlthsh Tck Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'150',NULL,NULL,'getitem 6184,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12820,'Mao_Guai_Scroll','Mao Guai Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 2348,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12821,'Loli_Ruri_Scroll','Loli Ruri Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 2349,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12822,'Songpyun_Box50','Songpyun Box50',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 663,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12823,'Sedora_Scroll','Sedora Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 2350,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12824,'Chepet_Scroll','Chepet Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'mercenary_create 2351,1800000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12826,'Wind_Type_Scroll','Wind Type Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Wind_Type_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12827,'Water_Type_Scroll','Water Type Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Water_Type_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12828,'Fire_Type_Scroll','Fire Type Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Fire_Type_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12829,'Earth_Type_Scroll','Earth Type Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Earth_Type_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12831,'Potion_Box','Potion Box',2,0,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 545,100; getitem 546,100; getitem 547,100; getitem 505,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12834,'Undead_Egg','Undead Egg',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12835,'Girls_Heart','Girls Heart',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12837,'Wooden_Treasure_Box','Wooden Treasure Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12838,'Iron_Treasure_Box','Iron Treasure Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'10',NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12839,'bronze_Treasure_Box','bronze Treasure Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'20',NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12840,'Silver_Treasure_Box','Silver Treasure Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'30',NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12841,'Golden_Treasure_Box','Golden Treasure Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'40',NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12842,'Platinum_Treasure_Box','Platinum Treasure Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'50',NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12843,'Pearl_Treasure_Box','Pearl Treasure Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'60',NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12844,'Diamond_Treasure_Box','Diamond Treasure Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'70',NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12845,'WOB_Amatsu','Amatsu_Butterfly_Wing',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12846,'Unripe_Apple2','Little Unripe Apple',2,10,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 2398;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12847,'Old_Equipment_Box','Old Equipment Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12848,'Falcon_Flute','Falcon Flute',11,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'if(getskilllv("HT_FALCON")) { if(!checkoption(Option_Wug) && !checkoption(Option_Wugrider)) setfalcon (!checkfalcon()); }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12849,'Combination_Kit','Combination Kit',2,40,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'cooking 30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12850,'Heaven_Scroll','Heaven Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Heaven_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12851,'Vocation_Scroll','Vocation Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Vocation_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12852,'Wisdom_Scroll','Wisdom Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Wisdom_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12853,'Patron_Scroll','Patron Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Patron_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12860,'Mommy_Day_Cake','Mommy Day Cake',2,0,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 50,50; skilleffect "HP_ASSUMPTIO",0; sc_start SC_ASSUMPTIO,100000,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12863,'Treasure_Chest_Summoned_II','Treasure Chest Summoned II',2,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'monster "this",-1,-1,"--ja--",rand(1324,1363),1,"";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12873,'TE_Potion_Box','TE Potion Box',18,0,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem(11558,10);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12874,'Frost_Giant_Blood','Frost Giant Blood',2,0,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_POTION_CON; sc_start4 SC_GVG_GIANT,10000,3000,0,100,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12875,'Golem_Stone','Golem Stone',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_POTION_CON; sc_start4 SC_GVG_GOLEM,10000,0,200,50,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12876,'Elf_Tear_Stun','Elf Tear Stun',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start2 SC_GVG_STUN,10000,3000,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12877,'Elf_Tear_Stone_Curse','Elf Tear Stone Curse',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start2 SC_GVG_STONE,10000,3000,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12878,'Elf_Tear_Freezing','Elf Tear Freezing',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start2 SC_GVG_FREEZ,10000,3000,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12879,'Elf_Tear_Sleep','Elf Tear Sleep',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start2 SC_GVG_SLEEP,10000,3000,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12880,'Elf_Tear_Curse','Elf Tear Curse',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start2 SC_GVG_CURSE,10000,3000,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12881,'Elf_Tear_Silence','Elf Tear Silence',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start2 SC_GVG_SILENCE,10000,3000,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12882,'Elf_Tear_Blind','Elf Tear Blind',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start2 SC_GVG_BLIND,10000,3000,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12883,'Almighty','Almighty',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_BASH3D; sc_start SC_2011RWC_SCROLL,1800000,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12884,'Infinite_Concentration_Potion','Infinite Concentration Potion',11,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_ASPDPOTION0,1800000,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12885,'Infinite_Awakening_Potion','Infinite Awakening Potion',11,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_ASPDPOTION1,1800000,6;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12886,'Infinite_Berserk_Potion','Infinite Berserk Potion',11,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_ASPDPOTION2,1800000,9;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12887,'C_Wing_Of_Fly','Infinite Flywing',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "AL_TELEPORT",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12888,'Siege_Kit_Box','Siege Kit Box',18,0,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12889,'Weapon_Box_Spear','Weapon Box(Spear)',2,10,NULL,200,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12890,'Weapon_Box_Mace','Weapon Box(Mace)',2,10,NULL,200,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12891,'Weapon_Box_Dagger','Weapon Box(Dagger)',2,10,NULL,200,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12892,'Weapon_Box_Axe','Weapon Box(Axe)',2,10,NULL,200,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12893,'Weapon_Box_Bow','Weapon Box(Bow)',2,10,NULL,200,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12894,'Weapon_Box_Sword','Weapon Box(Sword)',2,10,NULL,200,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12895,'Weapon_Box_Knuckle','Weapon Box(Knuckle)',2,10,NULL,200,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12896,'Weapon_Box_Book','Weapon Box(Book)',2,10,NULL,200,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12897,'Weapon_Box_Guitar','Weapon Box(Guitar)',2,10,NULL,200,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12898,'Weapon_Box_Whip','Weapon Box(Whip)',2,10,NULL,200,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12899,'Weapon_Box_Staff','Weapon Box(Staff)',2,10,NULL,200,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12900,'Battle_Manual_Box','Battle Manual Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12208,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12901,'Insurance_Package','Insurance Package',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12209,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12902,'Bubble_Gum_Box','Bubble Gum Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12210,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12903,'Str_Dish_Box','Steamed Tongue Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12202,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12904,'Agi_Dish_Box','Steamed Scorpion Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12203,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12905,'Int_Dish_Box','Dragon Breath Cocktail Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12204,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12906,'Dex_Dish_Box','Hwergelmir\'s Tonic Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12205,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12907,'Luk_Dish_Box','Nine Tail Dish Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12206,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12908,'Vit_Dish_Box','Stew Of Immortality Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12207,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12909,'Kafra_Card_Box','Kafra Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12211,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12910,'Giant_Fly_Wing_Box','Giant Fly Wing Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12212,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12911,'Neuralizer_Box','Neuralizer Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12213,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12912,'Convex_Mirror_Box','Convex Mirror Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12214,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12913,'Blessing_10_Scroll_Box','Blessing 10 Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12215,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12914,'Inc_Agi_10_Scroll_Box','Increase AGI 10 scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12216,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12915,'Aspersio_5_Scroll_Box','Aspersio 5 Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Aspersio_5_Scroll_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12916,'Assumptio_5_Scroll_Box','Assumptio 5 Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12218,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12917,'Wind_Walk_10_Scroll_Box','Wind Walk 10 Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12219,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12918,'Adrenaline_Scroll_Box','Adrenaline 5 Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12220,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12919,'Megaphone_Box','Megaphone Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12221,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12920,'Enriched_Elunium_Box','Enriched Elunium Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7619,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12921,'Enriched_Oridecon_Box','Enriched Oridecon Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7620,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12922,'Token_Of_Siegfried_Box','Token of Siegfried Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7621,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12923,'Pet_Egg_Scroll_Box1','December Lucky Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Pet_Egg_Scroll_Box1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12924,'Pet_Egg_Scroll_Box2','Pet Egg Box 2',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Pet_Egg_Scroll_Box2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12925,'Pet_Egg_Scroll1','Kafra Item Mall Prize Package',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Pet_Egg_Scroll1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12926,'Pet_Egg_Scroll2','December Lucky Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Pet_Egg_Scroll2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12927,'J_Aspersio_5_Scroll_Box','Aspersio Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12928,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12928,'J_Aspersio_5_Scroll','Sacred Scroll',11,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "PR_ASPERSIO",5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12929,'Pet_Egg_Scroll_Box3','Pet Egg Box 3',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Pet_Egg_Scroll_Box3);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12930,'Pet_Egg_Scroll_Box4','Pet Egg Box 4',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Pet_Egg_Scroll_Box4);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12931,'Pet_Egg_Scroll_Box5','Pet Egg Box 5',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Pet_Egg_Scroll_Box5);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12932,'Pet_Egg_Scroll3','Episode 13.2 Key Package',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Pet_Egg_Scroll3);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12933,'Pet_Egg_Scroll4','Summer Hat Pack',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Pet_Egg_Scroll4);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12934,'Pet_Egg_Scroll5','Pet Egg Scroll5',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Pet_Egg_Scroll5);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12935,'Infiltrator_Box','Infiltrator Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Infiltrator_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12936,'Muramasa_Box','Muramasa Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Muramasa_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12937,'Excalibur_Box','Excalibur Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Excalibur_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12938,'Combat_Knife_Box','Combat Knife Box',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Combat_Knife_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12939,'Counter_Dagger_Box','Dagger of Counter Box',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Counter_Dagger_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12940,'Kaiser_Knuckle_Box','Kaiser Knuckle Box',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Kaiser_Knuckle_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12941,'Pole_Axe_Box','Poll Axe Box',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Pole_Axe_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12942,'Mighty_Staff_Box','Mighty Staff Box',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Mighty_Staff_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12943,'Right_Epsilon_Box','Light Epsilon Box',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Right_Epsilon_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12944,'Balistar_Box','Ballista Box',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Balistar_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12945,'Diary_Of_Great_Sage_Box','Sage\'s Diary Box',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Diary_Of_Great_Sage_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12946,'Asura_Box','Asura Box',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Asura_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12947,'Apple_Of_Archer_Box','Apple of Archer Box',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Apple_Of_Archer_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12948,'Bunny_Band_Box','Bunny Band Box',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Bunny_Band_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12949,'Sahkkat_Box','Sakkat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Sahkkat_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12950,'Lord_Circlet_Box','Grand Circlet Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Lord_Circlet_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12951,'Elven_Ears_Box','Elven Ears Box',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Elven_Ears_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12952,'Steel_Flower_Box','Steel Flower Box',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Steel_Flower_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12953,'Critical_Ring_Box','Critical Ring Box',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Critical_Ring_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12954,'Earring_Box','Earring Box',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Earring_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12955,'Ring_Box','Ring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Ring_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12956,'Necklace_Box','Necklace Box',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Necklace_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12957,'Glove_Box','Glove Box',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Glove_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12958,'Brooch_Box','Brooch Box',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Brooch_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12959,'Rosary_Box','Rosary Box',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Rosary_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12960,'Safety_Ring_Box','Safety Ring Box',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Safety_Ring_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12961,'Vesper_Core01_Box','Vesper Core 01 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Vesper_Core01_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12962,'Vesper_Core02_Box','Vesper Core 02 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Vesper_Core02_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12963,'Vesper_Core03_Box','Vesper Core 03 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Vesper_Core03_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12964,'Vesper_Core04_Box','Vesper Core 04 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Vesper_Core04_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12965,'Emergency_Box1','Emergency Level 1 Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12968,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12966,'Emergency_Box2','Emergency Level 2 Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12969,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12967,'Emergency_Box3','Emergency Level 3 Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12970,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12968,'Emergency_Scroll1','Emergency Level 1 Scroll',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'unitskilluseid getcharid(3),"GD_ITEMEMERGENCYCALL",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12969,'Emergency_Scroll2','Emergency Level 2 Scroll',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'unitskilluseid getcharid(3),"GD_ITEMEMERGENCYCALL",2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12970,'Emergency_Scroll3','Emergency Level 3 Scroll',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'unitskilluseid getcharid(3),"GD_ITEMEMERGENCYCALL",3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12971,'Teleport_Box1','Teleport Scroll Box 1',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12977,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12972,'Teleport_Box2','Teleport Scroll Box 2',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12978,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12973,'Teleport_Box3','Teleport Scroll Box 3',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12979,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12974,'Teleport_Box4','Teleport Scroll Box 4',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12980,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12975,'Teleport_Box5','Teleport Scroll Box 5',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12981,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12976,'Teleport_Box6','Teleport Scroll Box 6',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12982,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12977,'Teleport_Scroll1','Teleport Scroll 1',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashTele",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12978,'Teleport_Scroll2','Teleport Scroll 2',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashTele",2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12979,'Teleport_Scroll3','Teleport Scroll 3',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashTele",3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12980,'Teleport_Scroll4','Teleport Scroll 4',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashTele",4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12981,'Teleport_Scroll5','Teleport Scroll 5',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashTele",5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12982,'Teleport_Scroll6','Teleport Scroll 6',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashTele",6;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12983,'Pet_Egg_Scroll_Box6','Pet Egg Scroll Box 6',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Pet_Egg_Scroll_Box6);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12984,'Pet_Egg_Scroll_Box7','Pet Egg Scroll Box 7',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Pet_Egg_Scroll_Box7);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12985,'Pet_Egg_Scroll_Box8','Pet Egg Scroll Box 8',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Pet_Egg_Scroll_Box8);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12986,'Pet_Egg_Scroll_Box9','Adventurer Pack Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Pet_Egg_Scroll_Box9);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12987,'Pet_Egg_Scroll_Box10','Pet Egg Scroll Box 10',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Pet_Egg_Scroll_Box10);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12988,'Pet_Egg_Scroll_Box11','Pet Egg Scroll Box 11',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Pet_Egg_Scroll_Box11);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12989,'Pet_Egg_Scroll6','Pet Egg Scroll 6',18,NULL,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Pet_Egg_Scroll6);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12990,'Pet_Egg_Scroll7','Pet Egg Scroll 7',18,NULL,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Pet_Egg_Scroll7);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12991,'Pet_Egg_Scroll8','Party Hard Pack',18,NULL,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Pet_Egg_Scroll8);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12992,'Pet_Egg_Scroll9','Adventurer Pack',18,NULL,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Pet_Egg_Scroll9);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12993,'Pet_Egg_Scroll10','Pet Egg Scroll 10',18,NULL,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Pet_Egg_Scroll10);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12994,'Pet_Egg_Scroll11','Pet Egg Scroll 11',18,NULL,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Pet_Egg_Scroll11);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12995,'White_Herb_Box','White Herb Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 509,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12996,'Blue_Herb_Box','Blue Herb Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 510,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12997,'Elunium_Box','Elunium Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 985,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12998,'Oridecon_Box','Oridecon Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 984,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (12999,'Branch_Of_Dead_Tree_Box','Dead Branch Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 604,3;',NULL,NULL); -#=================================================================== -# More Weapons -#=================================================================== -# Daggers and Ninja Weapons -#=================================================================== -REPLACE INTO `item_db_re` VALUES (13000,'Jujube_Dagger','Jujube Dagger',5,10000,NULL,600,'39',NULL,1,0,0x3E9F7EEF,63,2,2,1,'1',1,1,'bonus bAtkEle,Ele_Wind;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13001,'Dragon_Killer','Dragon Killer',5,20,NULL,900,'110',NULL,1,0,0x3E9F7EEF,63,2,2,4,'60',1,1,'bonus bIgnoreDefRace,RC_Dragon; bonus2 bExpAddRace,RC_Dragon,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13002,'Ginnungagap','Ginnungagap',5,20,NULL,700,'148',NULL,1,0,0x3E9F7EEF,63,2,2,4,'70',1,1,'bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Blind,500; bonus2 bAddEff2,Eff_Blind,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13003,'Coward','Cowardice Blade',5,52000,NULL,700,'80',NULL,1,1,0x02021040,63,2,2,3,'55',1,1,'bonus bDef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13004,'Coward_','Cowardice Blade',5,52000,NULL,700,'80',NULL,1,2,0x02021040,63,2,2,3,'55',1,1,'bonus bDef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13005,'Angelwing_Short_Sword','Angelic Wing Dagger',5,20,NULL,600,'120',NULL,1,1,0x00000001,63,2,2,4,'50',1,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13006,'Khukri','Khukri',5,240000,NULL,600,'150',NULL,1,0,0x02000000,63,2,2,3,'65',1,1,'bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Curse,1000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13007,'Jitte','Jitte',5,20000,NULL,400,'70',NULL,1,0,0x02000000,63,2,2,2,'35',1,1,'bonus bBreakWeaponRate,200;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13008,'Jitte_','Jitte',5,20000,NULL,400,'70',NULL,1,1,0x02000000,63,2,2,2,'35',1,1,'bonus bBreakWeaponRate,200;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13009,'Kamaitachi','Kamaitachi',5,48000,NULL,900,'125',NULL,2,0,0x02000000,63,2,2,4,'70',1,1,'bonus bAtkEle,Ele_Wind; bonus bCritical,3; bonus bAspdRate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13010,'Asura','Asura',5,3000,NULL,600,'50:50',NULL,1,2,0x02000000,63,2,2,1,'12',1,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13011,'Asura_','Asura',5,3000,NULL,600,'50:50',NULL,1,3,0x02000000,63,2,2,1,'12',1,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13012,'Murasame','Murasame',5,20,NULL,700,'95',NULL,1,1,0x02000000,63,2,2,2,'24',1,1,'bonus bAtkEle,Ele_Water; bonus2 bCriticalAddRace,RC_DemiHuman,10; bonus2 bCriticalAddRace,RC_Player_Human,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13013,'Murasame_','Murasame',5,20,NULL,700,'95',NULL,1,2,0x02000000,63,2,2,2,'24',1,1,'bonus bAtkEle,Ele_Water; bonus2 bCriticalAddRace,RC_DemiHuman,10; bonus2 bCriticalAddRace,RC_Player_Human,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13014,'Hakujin','Hakujin',5,20,NULL,800,'120',NULL,1,0,0x02000000,63,2,2,3,'42',1,1,'bonus bInt,2; bonus3 bAutoSpell,"AL_HEAL",1,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13015,'Hakujin_','Hakujin',5,20,NULL,800,'120',NULL,1,1,0x02000000,63,2,2,3,'42',1,1,'bonus bInt,2; bonus3 bAutoSpell,"AL_HEAL",1,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13016,'Poison_Knife_','Poison Knife',5,20,NULL,800,'64',NULL,1,2,0x028F5EEE,63,2,2,3,'65',1,1,'bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,3000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13017,'House_Auger_','Ice Pick',5,20,NULL,600,'70',NULL,1,1,0x028F5EEE,63,2,2,4,'36',1,1,'bonus bDefRatioAtkClass,Class_All;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13018,'Sucsamad_','Sucsamad',5,20,NULL,800,'140',NULL,1,1,0x028F5EEE,63,2,2,4,'36',1,1,'bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Wind,10; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13019,'Ginnungagap_','Ginnungagap',5,20,NULL,700,'148',NULL,1,1,0x3E9F7EEF,63,2,2,4,'70',1,1,'bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Blind,500; bonus2 bAddEff2,Eff_Blind,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13020,'Warrior_Balmung_','Warrior\'s Balmung',5,20,NULL,1000,'170',NULL,1,0,0xFFFFFFFF,63,2,2,4,'48',1,1,'bonus bAllStats,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13021,'Combat_Knife_C','Combat Knife',5,1,NULL,0,'129',NULL,1,0,0x028F5EEE,63,2,2,4,'1',0,1,'bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Demon,-10; bonus bMaxSPrate,10; bonus bSPDrainValue,3; /*Gold PC Room: bonus bBaseAtk,10; bonus bMatk,10;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13022,'Counter_Dagger_C','Dagger of Counter',5,1,NULL,0,'209',NULL,1,0,0x00810204,63,2,2,4,'1',0,1,'bonus bCriticalRate,90; /*Gold PC Room: bonus bBaseAtk,10; bonus bMatk,10;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13023,'Asura_C','Ashura',5,1,NULL,0,'120:98',NULL,1,0,0x02000000,63,2,2,1,'1',0,1,'/*Gold PC Room: bonus bBaseAtk,10; bonus bMatk,10; */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13024,'Sword_Breaker_C','Refined Swordbreaker',5,2,NULL,0,'105',NULL,1,0,0x028F5EEE,63,2,2,4,'0',0,1,'bonus bBreakWeaponRate,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13025,'Mail_Breaker_C','Refined Mailbreaker',5,2,NULL,0,'105',NULL,1,0,0x028F5EEE,63,2,2,4,'0',0,1,'bonus bBreakArmorRate,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13026,'Moonlight_Sword_C','Moonlight Dagger',5,2,NULL,0,'85',NULL,1,0,0x028F5EEE,63,2,2,4,'0',0,1,'bonus bMaxSPrate,10; bonus bSPDrainValue,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13027,'Scalpel','Scalpel',5,20,NULL,500,'120',NULL,1,3,0x028F5EEE,18,2,2,4,'55',1,1,'bonus2 bAddEff,Eff_Bleeding,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13028,'Tooth_Blade','Tooth Blade',5,20,NULL,700,'130',NULL,1,1,0x028F5EEE,18,2,2,4,'55',1,1,'if(getrefine()>=9){ bonus3 bAutoSpell,"NPC_SLOWCAST",2,70; } else bonus3 bAutoSpell,"NPC_SLOWCAST",1,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13029,'Prinsence_Knife','Prinsense Knife',5,20,NULL,0,'120',NULL,1,0,0x028F5EEE,63,2,2,1,'0',0,1,'bonus2 bAddClass,Class_All,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13030,'Dragon_Killer_','Dragon Killer',5,20,NULL,900,'110',NULL,1,2,0x3E9F7EEF,63,2,2,4,'60',1,1,'bonus bIgnoreDefRace,RC_Dragon; bonus2 bExpAddRace,RC_Dragon,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13031,'Sword_Breaker_','Swordbreaker',5,20,NULL,1000,'70',NULL,1,3,0x028F5EEE,63,2,2,4,'36',1,1,'bonus bBreakWeaponRate,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13032,'Mail_Breaker_','Mailbreaker',5,20,NULL,1000,'70',NULL,1,3,0x028F5EEE,63,2,2,4,'36',1,1,'bonus bBreakArmorRate,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13033,'Assasin_Dagger_','Assassin Dagger',5,20,NULL,600,'140',NULL,1,1,0x00001000,63,2,2,4,'36',1,1,'bonus bMaxHPrate,20; bonus bMaxSPrate,15; bonus bAspdRate,2; bonus bAtkEle,Ele_Dark;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13034,'Twilight_Desert','Desert Twilight',5,20,NULL,600,'130',NULL,1,2,0x00001000,18,2,2,2,'70',1,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13035,'Sandstorm','Sandstorm',5,20,NULL,600,'50',NULL,1,4,0x00001000,18,2,2,2,'70',1,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13036,'BF_Dagger1','Brave Assassin\'s Damascus',5,20,NULL,0,'120',NULL,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_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(Class==Job_Ninja||Class==Job_Rogue||Class==Job_Stalker) bonus bMatk,90;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13037,'BF_Dagger2','Valorous Assassin\'s Damascus',5,20,NULL,0,'120',NULL,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_Human,75; bonus bUnbreakableWeapon; autobonus "{ bonus bDefRatioAtkClass,Class_All; }",10,6000,BF_WEAPON,"{ specialeffect2 EF_HASTEUP; }"; if(Class==Job_Ninja||Class==Job_Rogue||Class==Job_Stalker) bonus bMatk,90;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13038,'Dagger_Of_Hunter','Dagger of Hunter',5,20,NULL,700,'120',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13039,'Ivory_Knife','Ivory Knife',5,20,NULL,700,'130',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13040,'N_Cutter','Novice Cutter',5,0,NULL,0,'50',NULL,1,3,0x3E9F7EEF,63,2,2,1,'1',0,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13041,'N_Main_Gauche','Novice Main Gauche',5,0,NULL,0,'63',NULL,1,3,0x3E9F7EEF,63,2,2,1,'1',0,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13042,'Krieger_Dagger1','Glorious Gladius',5,20,NULL,0,'120',NULL,1,0,0x3E9F7EEF,63,2,2,4,'80',1,1,'bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus3 bAutoSpell,"PR_LEXDIVINA",1,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) bonus4 bAutoSpellOnSkill,"RG_RAID","NPC_WIDEBLEEDING",1,250;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13043,'Fortune_Sword_I','Fortune Sword',5,0,NULL,0,'120',NULL,1,0,0x028F5EEE,63,2,2,4,'0',0,1,'bonus bFlee2,20; bonus bLuk,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13044,'House_Auger_I','Ice Pick',5,0,NULL,0,'105',NULL,1,0,0x028F5EEE,63,2,2,4,'0',0,1,'bonus bDefRatioAtkClass,Class_All; autobonus "{ bonus bFlee,20; }",10,10000,BF_WEAPON|BF_MISC;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13045,'Kamaitachi_I','Kamaitachi',5,0,NULL,0,'155',NULL,2,0,0x02000000,63,2,2,4,'0',0,1,'bonus bUnbreakableWeapon; bonus bCritical,10; bonus bAspdRate,5; bonus bAtkEle,Ele_Wind;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13046,'Krieg','Krierg',5,20,NULL,500,'110',NULL,1,3,0x00021040,18,2,2,2,'50',1,1,'bonus3 bAddEffOnSkill,"RG_BACKSTAP",Eff_Bleeding,1000; bonus2 bSkillAtk,"RG_BACKSTAP",15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13047,'Weihna','Weihna',5,20,NULL,500,'135',NULL,1,2,0x00021040,18,2,2,3,'50',1,1,'bonus3 bAddEffOnSkill,"RG_RAID",Eff_Poison,100; autobonus "{ bonus2 bAddClass,Class_All,10; }",5,5000,BF_WEAPON|BF_SHORT,"{ specialeffect2 EF_POTION_BERSERK; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13048,'Damascus_C','Damascus',5,0,NULL,0,'153',NULL,1,0,0x028F5EEE,63,2,2,3,'1',0,1,'bonus2 bAddSize,Size_All,40;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13049,'Lacma','Lacma',5,20,NULL,650,'45',NULL,1,1,0x3E9F7EEF,63,2,2,3,'1',1,1,'.@r = getrefine(); if (.@r>=3) { bonus bBaseAtk,40; bonus bMatk,40; } if(.@r>=6){ bonus2 bAddSize,Size_Medium,8; bonus2 bMagicAddSize,Size_Medium,8; autobonus "{ bonus bNoSizeFix; }",10,5000; } if(.@r>=9){ bonus2 bAddSize,Size_Medium,20; bonus2 bMagicAddSize,Size_Medium,20; } if(.@r>12){ bonus bNoSizeFix; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13050,'P_Dagger1','Eden Dagger I',5,0,NULL,0,'124:60',NULL,1,0,0x3E9F7EEF,63,2,2,2,'26',0,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13051,'P_Dagger2','Eden Dagger II',5,0,NULL,0,'158:70',NULL,1,0,0x3E9F7EEF,63,2,2,2,'40',0,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13052,'Tourist_Dagger','Tourist Dagger',5,0,NULL,500,'51',NULL,1,0,0x3E9F7EEF,63,2,2,1,'1',0,1,'bonus bAgi,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13053,'F_Moonlight_Sword_C','Moonlight Sword',5,2,NULL,0,'85',NULL,1,0,0x028F5EEE,63,2,2,4,'0',0,1,'bonus bSPDrainValue,3; bonus bMaxSPrate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13054,'F_Combat_Knife_C','Combat Knife',5,1,NULL,0,'129',NULL,1,0,0x028F5EEE,63,2,2,4,'1',0,1,'bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus bSPDrainValue,3; bonus bMaxSPrate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13055,'F_Asura_C','Asura',5,1,NULL,0,'120',NULL,1,0,0x02000000,63,2,2,1,'1',0,1,'bonus bMatkRate,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13056,'F_Counter_Dagger_C','Counter Dagger',5,1,NULL,0,'209',NULL,1,0,0x00810204,63,2,2,4,'1',0,1,'bonus bCriticalRate,90;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13057,'E_Moonlight_Sword_C','Moonlight Sword',5,2,NULL,0,'85',NULL,1,0,0x028F5EEE,63,2,2,4,'0',0,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13058,'E_Combat_Knife_C','Combat Knife',5,1,NULL,0,'129',NULL,1,0,0x028F5EEE,63,2,2,4,'1',0,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13059,'E_Asura_C','Asura',5,1,NULL,0,'120',NULL,1,0,0x02000000,63,2,2,1,'1',0,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13060,'E_Counter_Dagger_C','Counter Dagger',5,1,NULL,0,'209',NULL,1,0,0x00810204,63,2,2,4,'1',0,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13061,'Black_Wing','Black Wing',5,20,NULL,600,'142',NULL,1,1,0x00020000,63,2,2,3,'102',1,1,'.@r = getrefine(); bonus2 bSkillAtk,"SC_FATALMENACE",30; if(.@r>=6){ bonus2 bSkillAtk,"SC_FATALMENACE",.@r*2; bonus bMatkRate,(.@r*3); }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13062,'Ancient_Dagger','Ancient Dagger',5,20,NULL,600,'107:120',NULL,0,0,0x028F5EEE,18,2,2,4,'120',1,1,'bonus bMaxSP,100; bonus bSPrecovRate,5; bonus2 bAddEff2,Eff_Curse,20; bonus3 bAddEff,Eff_Curse,20,ATF_SELF;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13063,'Adventure_Knife','Adventure Knife',5,0,NULL,0,'60',NULL,1,0,0x02021040,63,2,2,1,'1',0,1,'bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13064,'Academy_Knife','Academy Knife',5,0,NULL,700,'110',NULL,1,1,0x02021040,63,2,2,1,'1',1,1,'bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13065,'Academy_Eti_Knife','Academy Eti Knife',5,0,NULL,1200,'120',NULL,1,1,0x00000001,63,2,2,1,'1',1,1,'bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13066,'P_Dagger3','Eden Dagger III',5,0,NULL,0,'165:80',NULL,1,0,0x3E9F7EEF,63,2,2,3,'60',0,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13067,'Caress','Keris',5,20,NULL,700,'107:70',NULL,1,1,0x3E9F7EEF,18,2,2,3,'30',1,1,'bonus2 bHPDrainRate,20,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13068,'Saurel','Pompano',5,0,NULL,0,'160:100',NULL,3,0,0x3E9F7EEF,63,2,2,1,'50',0,1,'bonus bAgi,3; bonus bUnbreakableWeapon; 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; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13069,'Aztoe_Nail','As-nail',5,56000,NULL,500,'160:80',NULL,1,0,0x000654E2,63,2,2,4,'110',1,1,'bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Freeze,100+(getrefine()*50);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13070,'Scarletto_Nail','Scarlet-nail',5,56000,NULL,500,'160:80',NULL,1,0,0x000654E2,63,2,2,4,'110',1,1,'bonus bAtkEle,Ele_Fire; bonus2 bAddEff,Eff_Stone,100+(getrefine()*50);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13071,'Upg_Dagger','Upg Dagger',5,20,NULL,600,'55',NULL,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);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13072,'Velum_Damascus','Vellum Damascus',5,20,NULL,1000,'180',NULL,1,0,0x3E9F7EEF,63,2,2,4,'95',1,1,'bonus4 bSetDefRace,RC_Player_Human,10000,5000,1; bonus4 bSetMDefRace,RC_Player_Human,10000,5000,1; bonus bAspdRate,getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13073,'Counter_Dagger_','Counter Dagger',5,120000,NULL,550,'140',NULL,1,1,0x00810204,63,2,2,4,'55',1,1,'bonus bCritical,90;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13074,'Ninja_Cutter','Ninja Sword Prototype',5,0,NULL,0,'0',NULL,1,0,0x02000000,63,2,2,4,'99',1,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13075,'Kurenai','Kurenai',5,5000,NULL,700,'130',NULL,1,0,0x02000000,63,2,2,3,'99',1,1,'bonus bInt,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13076,'Raksasa_Dagger','Nachal Sword',5,40000,NULL,600,'120:100',NULL,1,1,0x02000000,63,2,2,3,'110',1,1,'bonus bInt,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13077,'Kagekiri','Kagekiri',5,40000,NULL,600,'50:120',NULL,1,0,0x02000000,7,2,2,4,'100',1,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13078,'Mikatsuki','Mikacheuki',5,40000,NULL,600,'50:120',NULL,1,1,0x02000000,63,2,2,4,'100',1,1,'bonus bUseSPrate,-5; bonus bVariableCastrate,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13079,'Metal_Dagger','Metal Dagger',5,20,NULL,0,'55',0,NULL,1,0x02821269,63,2,2,3,'1',1,1,'.@r = getrefine(); bonus bBaseAtk,(.@r*5); bonus bMatk,(.@r*2); .@i = min(BaseLevel/10,12); if(.@i>2) bonus bBaseAtk,((.@i-2)*5);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13081,'Octo_kitchen_Knife','Discount knife Octopus',5,200000,NULL,700,'140',0,NULL,3,0x228F5EEE,63,2,2,4,'105',1,1,'.@r = getrefine(); bonus bHit,.@r;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13083,'TE_Woe_Knife','TE Woe Knife',5,0,NULL,0,'100:100',NULL,1,0,0x3E9F7EEF,63,2,2,3,'40',1,1,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Silence,3000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13085,'Volcano_Knife','Volcano Knife',5,10,NULL,200,'80',NULL,NULL,0,0x280002E,63,2,2,4,'60',NULL,1,'bonus bAtkEle,Ele_Fire; bonus bAgi,2; bonus bMaxHPrate,-2; bonus2 bSubEle,Ele_Fire,2; bonus2 bSubEle,Ele_Water,-5; .@r = getrefine(); if(.@r>=7){ bonus bMaxHPrate,.@r-6; bonus2 bSubEle,Ele_Fire,3; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13086,'Goldsmithing_Dagger','Goldsmithing Dagger',5,20,NULL,500,'35:25',NULL,1,0,0x028756E6,63,2,2,1,'1',1,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13088,'Greater_Lease','Greater Lease',5,10,NULL,500,'110:50',NULL,NULL,1,0x280006E,63,2,2,4,'30',1,1,'.@r = getrefine(); if (.@r >= 5) bonus bMatk,30; if (.@r >= 7) bonus bMatk,40; if (.@r >= 9) bonus bMatk,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13089,'FaceWorm_Leg','Faceworm Leg',5,20,NULL,500,'110:50',NULL,1,1,0x028F5EEF,63,2,2,3,'24',1,1,'bonus bAtkEle,Ele_Poison; autobonus "{}",30,5000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; active_transform 2528,5000; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13090,'FaceWormQueen_Leg','Faceworm Queen Leg',5,20,NULL,500,'180:120',NULL,1,2,0x028F5EEF,63,2,2,4,'100',1,1,'bonus bInt,3; autobonus "{ bonus3 bAutoSpell,\\\"NPC_EARTHQUAKE\\\",1,200; }",8,5000,BF_NORMAL,"{ specialeffect2 EF_POTION_BERSERK; active_transform 2529,5000; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13092,'RWC_Memory_Knife','RWC Memory Knife',5,20,NULL,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; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13093,'Thanos_Dagger','Thanos Dagger',5,10,NULL,800,'100:130',NULL,1,1,0x000E5CEA,56,2,2,4,'120',1,1,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000;',NULL,'heal -1000,0;'); -REPLACE INTO `item_db_re` VALUES (13094,'Devil_Pierced_Dagger','Evil Slayer Stabber Dagger',5,0,NULL,900,'120',NULL,1,1,0x3E9F7EEF,63,2,2,3,'100',1,1,'bonus2 bAddRace,RC_Undead,10; bonus2 bAddRace,RC_Demon,10; .@r = getrefine(); if(.@r>=9) { .@dmg = 5; if(.@r>=12) { .@dmg += 7; } bonus2 bAddClass,Class_All,.@dmg; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13096,'Half_BF_Dagger2','Half BF Dagger2',5,20,NULL,0,'120',NULL,1,0,0x3E9F7EEF,63,2,2,3,'1',1,1,'bonus bStr,1; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon; 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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13097,'Ru_Blue_Dagger','Blue Dagger',5,10,NULL,1000,'160',NULL,1,1,0x00020000,56,2,2,3,'100',1,1,'bonus bStr,5; bonus bInt,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13098,'Ru_Blue_Ashura','Blue Ashura',5,10,NULL,1000,'150:150',NULL,1,1,0x02000000,7,2,2,3,'100',1,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13099,'Ru_Blue_Knife','Blue Knife',5,10,NULL,500,'160',NULL,1,1,0x00010000,56,2,2,3,'100',1,1,'bonus bVit,5; bonus bInt,5;',NULL,NULL); -#=================================================================== -# Guns -#=================================================================== -REPLACE INTO `item_db_re` VALUES (13100,'Six_Shooter','Six Shooter',5,4500,NULL,400,'30',NULL,7,1,0x41000000,63,2,34,1,'10',1,17,'bonus bHit,-10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13101,'Six_Shooter_','Six Shooter',5,4500,NULL,400,'30',NULL,7,2,0x41000000,63,2,34,1,'10',1,17,'bonus bHit,-10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13102,'Crimson_Bolt','Crimson Bolt',5,20000,NULL,450,'45',NULL,7,1,0x41000000,63,2,34,2,'35',1,17,'bonus bHit,-10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13103,'Crimson_Bolt_','Crimson Bolt',5,20000,NULL,450,'45',NULL,7,2,0x41000000,63,2,34,2,'35',1,17,'bonus bHit,-10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13104,'The_Garrison','Garrison',5,48000,NULL,500,'70',NULL,7,1,0x41000000,63,2,34,2,'55',1,17,'bonus bHit,-10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13105,'The_Garrison_','Garrison',5,48000,NULL,500,'70',NULL,7,2,0x41000000,63,2,34,2,'55',1,17,'bonus bHit,-10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13106,'Gold_Lux','Gold Lux',5,100000,NULL,500,'20',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13107,'Wasteland_Outlaw','Wasteland\'s Outlaw',5,20,NULL,580,'68',NULL,7,2,0x41000000,63,2,34,3,'70',1,17,'bonus bHit,readparam(bAgi)/10; bonus bAspdRate,readparam(bAgi)/14;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13108,'BF_Pistol1','Soldier Revolver',5,0,NULL,0,'70',NULL,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_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; autobonus "{ bonus bAspdRate,100; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13109,'Wasteland_Outlaw_C','Wasteland Outlaw',5,20,NULL,0,'100',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13110,'Krieger_Pistol1','Glorious Pistol',5,0,NULL,0,'80',NULL,7,0,0x41000000,63,2,34,4,'80',1,17,'bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5){ bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) { bonus4 bAutoSpellOnSkill,"GS_RAPIDSHOWER","GS_GLITTERING",1,1000; bonus2 bSkillAtk,"GS_RAPIDSHOWER",.@r*2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13111,'Sharpshooter_Revolver','Sharpshooter Revolver',5,20,NULL,0,'105',NULL,7,0,0x41000000,63,2,34,4,'1',1,17,'bonus bDex,2; bonus2 bSkillAtk,"GS_DESPERADO",25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13112,'P_Revolver1','Eden Revlover I',5,0,NULL,0,'44',NULL,7,0,0x41000000,63,2,34,1,'26',0,17,'bonus bHit,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13113,'P_Revolver2','Eden Revlover II',5,0,NULL,0,'60',NULL,7,0,0x41000000,63,2,34,1,'40',0,17,'bonus bHit,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13114,'P_Revolver3','Eden Revolver III',5,0,NULL,0,'76',NULL,7,0,0x41000000,63,2,34,3,'60',0,17,'bonus bHit,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13115,'Upg_Revolver','Upg Revolver',5,20,NULL,500,'35',NULL,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);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13116,'Novice_Revolver','Novice Revolver',5,0,NULL,500,'20',NULL,7,0,0x41000000,63,2,34,1,'1',0,17,'bonus bHit,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13117,'TE_Woe_Pistol','TE Woe Pistol',5,0,NULL,0,'60',NULL,7,0,0x41000000,63,2,34,3,'40',1,17,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Curse,3000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13118,'Tiny_Flame','Fading Flame',5,1,NULL,100,'0',NULL,7,0,0x41000000,63,2,34,1,'1',1,17,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13119,'Freedom_Flame','Freedom Flame',5,1,NULL,100,'100',NULL,7,2,0x41000000,63,2,34,3,'99',1,17,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13120,'H_FEATHER_H_FIRE','Heaven\'s Feather & Hell\'s Fire',5,1200000,NULL,800,'150',NULL,9,1,0x41000000,63,2,34,3,'99',1,17,'bonus2 bSkillAtk,"GS_DESPERADO",20; bonus2 bAddEff,Eff_Burning,200;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13122,'ALTAIR_ARES','Altair & Ares',5,1450000,NULL,1000,'200',NULL,9,0,0x40000000,63,2,34,3,'140',1,17,'bonus bHit,5; bonus bAspdRate,10; bonus bLongAtkRate,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13124,'ALTAIR_ARES_','Altair & Ares',5,1450000,NULL,1000,'200',NULL,9,1,0x40000000,63,2,34,3,'140',1,17,'bonus bHit,5; bonus bAspdRate,10; bonus bLongAtkRate,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13125,'Metal_Revolver','Metal Revolver',5,0,NULL,0,'30',NULL,7,1,0x41000000,63,2,34,3,'1',1,17,'.@r = getrefine(); bonus bBaseAtk,3*.@r; bonus bLongAtkRate,1; if (BaseLevel >= 20) { bonus bBaseAtk,3*(min(BaseLevel,120)/10); }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13126,'Infinity_Pistol','Infinity Pistol',5,10,NULL,500,'175',NULL,7,1,0x40000000,63,2,34,4,'100',0,17,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13127,'Crimson_Revolver','Crimson Revolver',5,20,NULL,1000,'100',NULL,7,2,0x41000000,63,2,34,3,'70',1,17,'.@r = getrefine(); bonus bBaseAtk,(.@r<=15?pow(.@r,2):225); if(BaseLevel>=70){ bonus bBaseAtk,(BaseLevel/10)*5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13128,'Revolver_of_Vicious_Mind','Revolver of Vicious Mind',5,20,NULL,1500,'150',NULL,7,1,0x41000000,63,2,34,4,'160',1,17,'bonus bAtk,pow(min(getrefine(),15),2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13129,'Unity_Revolver','Unity Revolver',5,20,NULL,500,'95',NULL,7,1,0x41000000,63,2,34,3,'1',1,17,'bonus bBaseAtk,pow(getrefine(),2)*125/100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13138,'Dark_Rose','Dark Rose',5,20,NULL,1800,'150',NULL,7,2,0x40000000,63,2,34,3,'120',1,17,'.@r = getrefine(); bonus bAspdRate,10; if (.@r >= 7) { bonus bLongAtkRate,15; if (.@r >= 9) { bonus bAspd,1; } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13146,'Calf_Deathadder','Calf Deathadder',5,0,0,1400,'170',NULL,7,2,0x40000000,63,2,34,4,'150',1,17,'.@r = getrefine(); bonus bAspdRate,10; bonus bLongAtkRate,(.@r/2)*5 + (.@r > 11 ? 5 : 0); if(.@r > 6){ bonus bAspdRate,5; } if(.@r > 8){ bonus2 bSkillAtk,"RL_FIREDANCE",25; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13150,'Branch','Branch',5,3000,NULL,500,'50',NULL,9,3,0x41000000,63,2,34,1,'1',1,18,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13151,'The_Cyclone','Cyclone',5,17500,NULL,700,'120',NULL,9,1,0x41000000,63,2,34,2,'24',1,18,'bonus bHit,10; bonus bCritical,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13152,'The_Cyclone_','Cyclone',5,17500,NULL,700,'120',NULL,9,2,0x41000000,63,2,34,2,'24',1,18,'bonus bHit,10; bonus bCritical,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13153,'Dusk','Dusk',5,23500,NULL,750,'150',NULL,9,1,0x41000000,63,2,34,2,'56',1,18,'bonus bHit,10; bonus bCritical,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13154,'Rolling_Stone','Rolling Stone',5,12000,NULL,900,'135',NULL,9,1,0x41000000,63,2,34,1,'14',1,20,'bonus bSplashRange,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13155,'Black_Rose','Black Rose',5,32000,NULL,900,'180',NULL,9,1,0x41000000,63,2,34,2,'35',1,20,'bonus bSplashRange,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13156,'Gate_Keeper','Gate Keeper',5,56000,NULL,1000,'210',NULL,9,0,0x41000000,63,2,34,2,'24',1,20,'bonus bSplashRange,1; bonus3 bAutoSpell,"GS_SPREADATTACK",6,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13157,'Drifter','Drifter',5,80000,NULL,2300,'50',NULL,9,1,0x41000000,63,2,34,2,'55',1,19,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13158,'Butcher','Butcher',5,130000,NULL,2500,'75',NULL,9,0,0x41000000,63,2,34,3,'68',1,19,'bonus2 bCriticalAddRace,RC_Brute,10; bonus2 bCriticalAddRace,RC_Player_Doram,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13159,'Butcher_','Butcher',5,130000,NULL,2500,'75',NULL,9,1,0x41000000,63,2,34,3,'68',1,19,'bonus2 bCriticalAddRace,RC_Brute,10; bonus2 bCriticalAddRace,RC_Player_Doram,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13160,'Destroyer','Destroyer',5,110000,NULL,1200,'220',NULL,9,0,0x41000000,63,2,34,2,'52',1,21,'bonus bBreakArmorRate,200;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13161,'Destroyer_','Destroyer',5,110000,NULL,1200,'220',NULL,9,1,0x41000000,63,2,34,2,'52',1,21,'bonus bBreakArmorRate,200;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13162,'Inferno','Inferno',5,230000,NULL,1250,'280',NULL,9,1,0x41000000,63,2,34,2,'65',1,21,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13163,'Long_Barrel','Long Barrel',5,40000,NULL,1000,'150',NULL,9,0,0x41000000,63,2,34,3,'70',1,18,'bonus bHit,10; bonus bCritical,20; bonus bAspdRate,-3; bonus3 bAutoSpell,"GS_TRACKING",5,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13164,'Long_Barrel_','Long Barrel',5,40000,NULL,1000,'150',NULL,9,1,0x41000000,63,2,34,3,'70',1,18,'bonus bHit,10; bonus bCritical,20; bonus bAspdRate,-3; bonus3 bAutoSpell,"GS_TRACKING",5,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13165,'Jungle_Carbine','Jungle Carbine',5,56000,NULL,700,'170',NULL,9,0,0x41000000,63,2,34,3,'70',1,18,'bonus bHit,10; bonus bCritical,4; bonus bAspdRate,10; bonus bHit,-readparam(bDex)/3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13166,'Jungle_Carbine_','Jungle Carbine',5,56000,NULL,700,'170',NULL,9,1,0x41000000,63,2,34,3,'70',1,18,'bonus bHit,10; bonus bCritical,4; bonus bAspdRate,10; bonus bHit,-readparam(bDex)/3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13167,'Gate_KeeperDD','Gate Keeper-DD',5,72000,NULL,1300,'200',NULL,9,0,0x41000000,63,2,34,4,'70',1,20,'bonus bSplashRange,1; bonus3 bAutoSpell,"GS_SPREADATTACK",6,50; bonus bDef,getrefine(); bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13168,'Thunder_P','Thunder P',5,76000,NULL,700,'80',NULL,9,1,0x41000000,63,2,34,3,'70',1,20,'bonus bSplashRange,1; bonus bHit,-5; bonus bAspdRate,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13169,'Thunder_P_','Thunder P',5,76000,NULL,700,'80',NULL,9,2,0x41000000,63,2,34,3,'70',1,20,'bonus bSplashRange,1; bonus bHit,-5; bonus bAspdRate,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13170,'Lever_Action_Rifle','Lever Action Rifle',5,20,NULL,770,'138',NULL,9,2,0x41000000,63,2,34,3,'70',1,18,'bonus bHit,20; bonus bCritical,50; bonus bAspdRate,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13171,'BF_Rifle1','Soldier Rifle',5,0,NULL,0,'50',NULL,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_Human,75; bonus2 bVariableCastrate,"GS_TRACKING",-25; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13172,'BF_Gatling_Gun1','Soldier Gatling Gun',5,0,NULL,0,'80',NULL,9,0,0x41000000,63,2,34,3,'80',1,19,'bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; autobonus "{ bonus bBaseAtk,80; bonus2 bHPLossRate,120,1000; }",10,6000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13173,'BF_Shotgun1','Soldier Shotgun',5,0,NULL,0,'100',NULL,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_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; autobonus "{ bonus bBaseAtk,80; bonus2 bHPLossRate,100,1000; }",30,6000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13174,'BF_Launcher1','Soldier Grenade Launcher',5,0,NULL,0,'300',NULL,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_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; autobonus "{ bonus bBaseAtk,300; bonus2 bHPLossRate,120,1000; }",30,9000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13175,'Lever_Action_Rifle_C','Lever Action Rifle',5,20,NULL,0,'170',NULL,9,0,0x41000000,63,2,34,3,'1',0,18,'bonus bHit,20; bonus bCritical,50; bonus bAspdRate,-5; bonus2 bAddClass,Class_All,40;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13176,'Krieger_Rifle1','Glorious Rifle',5,0,NULL,0,'90',NULL,9,0,0x41000000,63,2,34,4,'80',1,18,'bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) { bonus2 bVariableCastrate,"GS_TRACKING",25; bonus2 bSkillAtk,"GS_TRACKING",.@r * 3; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13177,'Krieger_Gatling1','Glorious Gatling Gun',5,0,NULL,0,'90',NULL,9,0,0x41000000,63,2,34,4,'80',1,19,'bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(.@r,14)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(.@r,14)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) { bonus2 bAddClass,Class_All,.@r; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13178,'Krieger_Shotgun1','Glorious Shotgun',5,0,NULL,0,'110',NULL,9,0,0x41000000,63,2,34,4,'80',1,20,'bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bSplashRange,1; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(.@r,14)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(.@r,14)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) { bonus2 bSkillAtk,"GS_SPREADATTACK",.@r * 2; bonus3 bAddEffOnSkill,"GS_SPREADATTACK",Eff_Stun,2000; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13179,'Krieger_Launcher1','Glorious Grenade Launcher',5,0,NULL,0,'330',NULL,9,0,0x41000000,63,2,34,4,'80',1,21,'bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(.@r,14)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(.@r,14)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,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; }"; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13180,'Novice_Rifle','Novice Rifle',5,0,NULL,500,'50',NULL,9,3,0x41000000,1,2,34,1,'1',0,18,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13181,'Novice_Shotgun','Novice Shotgun',5,0,NULL,1000,'80',NULL,9,0,0x41000000,1,2,34,1,'1',0,20,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13182,'Novice_Gatling','Novice Gatling',5,0,NULL,1500,'40',NULL,9,0,0x41000000,1,2,34,1,'1',0,19,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13183,'Novice_Grenade_Launcher','Novice Grenade Launcher',5,0,NULL,1500,'40',NULL,9,0,0x41000000,1,2,34,1,'1',0,21,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13184,'TE_Woe_Rifle','TE Woe Rifle',5,0,NULL,0,'80',NULL,9,0,0x41000000,63,2,34,3,'40',1,18,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Silence,1000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13185,'TE_Woe_Gatling','TE Woe Gatling',5,0,NULL,0,'100',NULL,7,0,0x41000000,63,2,34,3,'40',1,19,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Stun,1000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13186,'TE_Woe_Shotgun','TE Woe Shotgun',5,0,NULL,0,'100',NULL,7,0,0x41000000,63,2,34,3,'40',1,20,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Poison,1000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13187,'TE_Woe_Grenade','TE Woe Grenade',5,0,NULL,0,'100',NULL,9,0,0x41000000,63,2,34,3,'40',1,21,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Blind,1000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13189,'COLORSCOPE','Color Scope',5,1350000,NULL,1200,'240',NULL,9,2,0x40000000,63,2,34,3,'105',1,18,'bonus bHit,20; bonus bCriticalRate,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13190,'RAG203_','RAG203',5,1800000,NULL,1300,'260',NULL,9,1,0x40000000,63,2,34,3,'140',1,18,'bonus bHit,10; bonus bCriticalRate,15; bonus4 bAutoSpell,"AL_DECAGI",1,30,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13192,'DEATHFIRE','Death Fire',5,1250000,NULL,2000,'400',NULL,9,1,0x40000000,63,2,34,3,'108',1,20,'bonus bSplashRange,1; bonus bAtkRange,5; bonus bHit,-50; bonus bAspdRate,-10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13193,'R_THUNDER','Rolling Thunder',5,1350000,NULL,1800,'280',NULL,9,1,0x40000000,63,2,34,3,'120',1,20,'bonus bSplashRange,1; bonus bHit,-10; bonus bAspdRate,-10; bonus3 bAutoSpell,"MG_THUNDERSTORM",5,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13194,'P_BREAKER','Peace Breaker',5,1950000,NULL,1400,'250',NULL,9,0,0x41000000,63,2,34,3,'140',1,20,'bonus bHit,-25; bonus bAspdRate,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13195,'RAG203','RAG203',5,1800000,NULL,1300,'260',NULL,9,0,0x40000000,63,2,34,3,'140',1,18,'bonus bHit,10; bonus bCriticalRate,15; bonus4 bAutoSpell,"AL_DECAGI",1,30,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13196,'P_BREAKER_','Peace Breaker',5,1950000,NULL,1400,'250',NULL,9,1,0x41000000,63,2,34,3,'140',1,20,'bonus bHit,-25; bonus bAspdRate,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13197,'MINIMAY','Mini Mei',5,1600000,NULL,2500,'220',NULL,9,2,0x41000000,63,2,34,2,'106',1,19,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13198,'TEMPEST','Tempest',5,2200000,NULL,2500,'250',NULL,9,0,0x41000000,63,2,34,4,'140',1,19,'bonus bHit,-25; bonus bCritical,10; bonus bLongAtkRate,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13199,'TEMPEST_','Tempest',5,2200000,NULL,2500,'250',NULL,9,1,0x41000000,63,2,34,4,'140',1,19,'bonus bHit,-25; bonus bCritical,10; bonus bLongAtkRate,20;',NULL,NULL); -#=================================================================== -# Bullets -#=================================================================== -REPLACE INTO `item_db_re` VALUES (13200,'Bullet','Bullet',10,1,NULL,1,'25',NULL,NULL,NULL,0x41000000,63,2,32768,NULL,'1',NULL,3,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13201,'Silver_Bullet','Surplus Silver Bullet',10,15,NULL,2,'15',NULL,NULL,NULL,0x41000000,63,2,32768,NULL,'1',NULL,3,'bonus bAtkEle,Ele_Holy;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13202,'Shell_Of_Blood','Surplus Bloody Shell',10,30,NULL,2,'30',NULL,NULL,NULL,0x41000000,63,2,32768,NULL,'1',NULL,3,'bonus2 bAddEff,Eff_Bleeding,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13203,'Flare_Sphere','Surplus Flare Sphere',10,80,NULL,5,'50',NULL,NULL,NULL,NULL,NULL,NULL,32768,NULL,NULL,NULL,5,'bonus bAtkEle,Ele_Fire;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13204,'Lighting_Sphere','Surplus Lightning Sphere',10,80,NULL,5,'50',NULL,NULL,NULL,NULL,NULL,NULL,32768,NULL,NULL,NULL,5,'bonus bAtkEle,Ele_Wind;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13205,'Poison_Sphere','Surplus Poison Sphere',10,80,NULL,5,'50',NULL,NULL,NULL,NULL,NULL,NULL,32768,NULL,NULL,NULL,5,'bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13206,'Blind_Sphere','Surplus Blind Sphere',10,80,NULL,5,'50',NULL,NULL,NULL,NULL,NULL,NULL,32768,NULL,NULL,NULL,5,'bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Blind,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13207,'Freezing_Sphere','Surplus Freezing Sphere',10,80,NULL,5,'50',NULL,NULL,NULL,NULL,NULL,NULL,32768,NULL,NULL,NULL,5,'bonus bAtkEle,Ele_Water;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13208,'Gong_Bug','Sow Bug',10,0,NULL,5,'50',NULL,NULL,NULL,0x41000000,63,2,32768,NULL,'50',NULL,3,'bonus2 bAddEff,Eff_Stun,1000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13210,'Slug_Bullet_1','Slug Ammunition L',10,250,NULL,250,'30',NULL,NULL,NULL,NULL,NULL,NULL,32768,NULL,NULL,NULL,3,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13211,'Slug_Bullet_2','Slug Ammunition M',10,500,NULL,500,'30',NULL,NULL,NULL,NULL,NULL,NULL,32768,NULL,NULL,NULL,3,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13212,'Slug_Bullet_3','Slug Ammunition H',10,750,NULL,750,'30',NULL,NULL,NULL,NULL,NULL,NULL,32768,NULL,NULL,NULL,3,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13213,'Slug_Bullet_4','Slug Ammunition SH',10,1000,NULL,1000,'30',NULL,NULL,NULL,NULL,NULL,NULL,32768,NULL,NULL,NULL,3,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13214,'Slug_Bullet_5','Slug Ammunition XH',10,1200,NULL,1200,'30',NULL,NULL,NULL,NULL,NULL,NULL,32768,NULL,NULL,NULL,3,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13215,'AP_Ammo','Armor-Piercing Bullet',10,15,NULL,2,'50',NULL,NULL,0,0x41000000,63,2,32768,NULL,'100',NULL,3,'bonus bAtkEle,Ele_Neutral;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13216,'Blaze_Bullet','Blazing Bullet',10,10,NULL,2,'40',NULL,NULL,NULL,0x41000000,63,2,32768,NULL,'100',NULL,3,'bonus bAtkEle,Ele_Fire;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13217,'Freezing_Bullet','Freezing Bullet',10,10,NULL,2,'40',NULL,NULL,NULL,0x41000000,63,2,32768,NULL,'100',NULL,3,'bonus bAtkEle,Ele_Water;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13218,'Electric_Shock_Bullet','Lightning Bullet',10,10,NULL,2,'40',NULL,NULL,NULL,0x41000000,63,2,32768,NULL,'100',NULL,3,'bonus bAtkEle,Ele_Wind;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13219,'Magical_Stone_Bullet','Magic Stone Bullet',10,10,NULL,2,'40',NULL,NULL,NULL,0x41000000,63,2,32768,NULL,'100',NULL,3,'bonus bAtkEle,Ele_Earth;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13220,'Sanctified_Bullet','Purifying Bullet',10,10,NULL,2,'40',NULL,NULL,NULL,0x41000000,63,2,32768,NULL,'100',NULL,3,'bonus bAtkEle,Ele_Holy;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13221,'Silver_Bullet_','Silver Bullet',10,5,NULL,2,'15',NULL,NULL,NULL,0x41000000,63,2,32768,NULL,'1',NULL,3,'bonus bAtkEle,Ele_Holy;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13222,'Shell_Of_Blood_','Bloody Shell',10,10,NULL,2,'30',NULL,NULL,NULL,0x41000000,63,2,32768,NULL,'1',NULL,3,'bonus2 bAddEff,Eff_Bleeding,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13223,'Flare_Sphere_','Flare Sphere',10,15,NULL,5,'50',NULL,NULL,NULL,NULL,NULL,NULL,32768,NULL,NULL,NULL,5,'bonus bAtkEle,Ele_Fire;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13224,'Lighting_Sphere_','Lightning Sphere',10,15,NULL,5,'50',NULL,NULL,NULL,NULL,NULL,NULL,32768,NULL,NULL,NULL,5,'bonus bAtkEle,Ele_Wind;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13225,'Poison_Sphere_','Poison Sphere',10,15,NULL,5,'50',NULL,NULL,NULL,NULL,NULL,NULL,32768,NULL,NULL,NULL,5,'bonus bAtkEle,Ele_Poison;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13226,'Blind_Sphere_','Blind Sphere',10,15,NULL,5,'50',NULL,NULL,NULL,NULL,NULL,NULL,32768,NULL,NULL,NULL,5,'bonus bAtkEle,Ele_Dark;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13227,'Freezing_Sphere_','Freezing Sphere',10,15,NULL,5,'50',NULL,NULL,NULL,NULL,NULL,NULL,32768,NULL,NULL,NULL,5,'bonus bAtkEle,Ele_Water;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13228,'Flare_Bullet','Flare Bullet',10,10,NULL,2,'20',NULL,NULL,NULL,0x41000000,63,2,32768,NULL,'1',NULL,3,'bonus bAtkEle,Ele_Fire;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13229,'Lightning_Bullet','Lightning Bullet',10,10,NULL,2,'20',NULL,NULL,NULL,0x41000000,63,2,32768,NULL,'1',NULL,3,'bonus bAtkEle,Ele_Wind;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13230,'Ice_Bullet','Ice Bullet',10,10,NULL,2,'20',NULL,NULL,NULL,0x41000000,63,2,32768,NULL,'1',NULL,3,'bonus bAtkEle,Ele_Water;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13231,'Poison_Bullet','Poison Bullet',10,10,NULL,2,'20',NULL,NULL,NULL,0x41000000,63,2,32768,NULL,'1',NULL,3,'bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13232,'Blind_Bullet','Blind Bullet',10,10,NULL,2,'20',NULL,NULL,NULL,0x41000000,63,2,32768,NULL,'1',NULL,3,'bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Blind,500;',NULL,NULL); -#=================================================================== -# Shurikens & Kunais -#=================================================================== -REPLACE INTO `item_db_re` VALUES (13250,'Shuriken','Shuriken',10,4,NULL,1,'10',NULL,NULL,NULL,0x02000000,63,2,32768,NULL,'1',NULL,6,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13251,'Nimbus_Shuriken','Nimbus Shuriken',10,10,NULL,1,'30',NULL,NULL,NULL,0x02000000,63,2,32768,NULL,'20',NULL,6,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13252,'Flash_Shuriken','Flash Shuriken',10,20,NULL,1,'45',NULL,NULL,NULL,0x02000000,63,2,32768,NULL,'40',NULL,6,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13253,'Sharp_Leaf_Shuriken','Sharp Leaf Shuriken',10,40,NULL,1,'70',NULL,NULL,NULL,0x02000000,63,2,32768,NULL,'60',NULL,6,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13254,'Thorn_Needle_Shuriken','Thorn Needle Shuriken',10,100,NULL,1,'100',NULL,NULL,NULL,0x02000000,63,2,32768,NULL,'80',NULL,6,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13255,'Kunai_Of_Icicle','Icicle Kunai',10,10,NULL,1,'30',NULL,NULL,NULL,0x02000000,63,2,32768,NULL,'1',NULL,7,'bonus bAtkEle,Ele_Water;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13256,'Kunai_Of_Black_Soil','Black Earth Kunai',10,10,NULL,1,'30',NULL,NULL,NULL,0x02000000,63,2,32768,NULL,'1',NULL,7,'bonus bAtkEle,Ele_Earth;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13257,'Kunai_Of_Furious_Wind','High Wind Kunai',10,10,NULL,1,'30',NULL,NULL,NULL,0x02000000,63,2,32768,NULL,'1',NULL,7,'bonus bAtkEle,Ele_Wind;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13258,'Kunai_Of_Fierce_Flame','Heat Wave Kunai',10,10,NULL,1,'30',NULL,NULL,NULL,0x02000000,63,2,32768,NULL,'1',NULL,7,'bonus bAtkEle,Ele_Fire;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13259,'Kunai_Of_Deadly_Poison','Fell Poison Kunai',10,10,NULL,1,'30',NULL,NULL,NULL,0x02000000,63,2,32768,NULL,'1',NULL,7,'bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,500;',NULL,NULL); -#=================================================================== -# Genetic Created Bombs And Throwing Items -#=================================================================== -REPLACE INTO `item_db_re` VALUES (13260,'Apple_Bomb','Apple Bomb',10,100,NULL,1,'0',NULL,NULL,NULL,0x00040000,56,2,32768,NULL,'99',NULL,9,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13261,'Coconut_Bomb','Coconut Bomb',10,100,NULL,1,'0',NULL,NULL,NULL,0x00040000,56,2,32768,NULL,'99',NULL,9,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13262,'Melon_Bomb','Melon Bomb',10,100,NULL,1,'0',NULL,NULL,NULL,0x00040000,56,2,32768,NULL,'99',NULL,9,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13263,'Pineapple_Bomb','Pineapple Bomb',10,100,NULL,1,'0',NULL,NULL,NULL,0x00040000,56,2,32768,NULL,'99',NULL,9,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13264,'Banana_Bomb','Banana Bomb',10,100,NULL,1,'0',NULL,NULL,NULL,0x00040000,56,2,32768,NULL,'99',NULL,9,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13265,'Black_Lump','Black Lump',10,100,NULL,50,'0',NULL,NULL,NULL,0x00040000,56,2,32768,NULL,'99',NULL,9,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13266,'Black_Hard_Lump','Hard Black Lump',10,100,NULL,50,'0',NULL,NULL,NULL,0x00040000,56,2,32768,NULL,'99',NULL,9,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13267,'Very_Hard_Lump','Extremely Hard Black Lump',10,100,NULL,50,'0',NULL,NULL,NULL,0x00040000,56,2,32768,NULL,'99',NULL,9,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13268,'Mysterious_Powder','Mysterious Powder',10,100,NULL,10,'0',NULL,NULL,NULL,0x00040000,56,2,32768,NULL,'99',NULL,9,'sc_start SC_MYSTERIOUS_POWDER,10000,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13269,'Boost500_To_Throw','Throwing Boost 500',10,100,NULL,10,'0',NULL,NULL,NULL,0x00040000,56,2,32768,NULL,'99',NULL,9,'sc_start SC_BOOST500,500000,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13270,'Full_SwingK_To_Throw','Throwing Full Swing K',10,100,NULL,50,'0',NULL,NULL,NULL,0x00040000,56,2,32768,NULL,'99',NULL,9,'sc_start SC_FULL_SWING_K,500000,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13271,'Mana_Plus_To_Throw','Throwing Mana Plus',10,100,NULL,50,'0',NULL,NULL,NULL,0x00040000,56,2,32768,NULL,'99',NULL,9,'sc_start SC_MANA_PLUS,500000,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13272,'Cure_Free_To_Throw','Throwing Cure Free',10,100,NULL,50,'0',NULL,NULL,NULL,0x00040000,56,2,32768,NULL,'99',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13273,'Stamina_Up_M_To_Throw','Throwing Muramura M',10,100,NULL,10,'0',NULL,NULL,NULL,0x00040000,56,2,32768,NULL,'99',NULL,9,'sc_start SC_MUSTLE_M,500000,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13274,'Digestive_F_To_Throw','Throwing Falmons F',10,100,NULL,10,'0',NULL,NULL,NULL,0x00040000,56,2,32768,NULL,'99',NULL,9,'sc_start SC_LIFE_FORCE_F,500000,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13275,'HP_Inc_PotS_To_Throw','Throwing Increase HP Potion (Small)',10,100,NULL,20,'0',NULL,NULL,NULL,0x00040000,56,2,32768,NULL,'99',NULL,9,'/* Item bonus in source because of BaseLevel check */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13276,'HP_Inc_PotM_To_Throw','Throwing Increase HP Potion (Medium)',10,100,NULL,40,'0',NULL,NULL,NULL,0x00040000,56,2,32768,NULL,'99',NULL,9,'/* Item bonus in source because of BaseLevel check */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13277,'HP_Inc_PotL_To_Throw','Throwing Increase HP Potion (Large)',10,100,NULL,80,'0',NULL,NULL,NULL,0x00040000,56,2,32768,NULL,'99',NULL,9,'/* Item bonus in source because of BaseLevel check */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13278,'SP_Inc_PotS_To_Throw','Throwing Increase SP Potion (Small)',10,100,NULL,20,'0',NULL,NULL,NULL,0x00040000,56,2,32768,NULL,'99',NULL,9,'/* Item bonus in source because of BaseLevel check */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13279,'SP_Inc_PotM_To_Throw','Throwing Increase SP Potion (Medium)',10,100,NULL,40,'0',NULL,NULL,NULL,0x00040000,56,2,32768,NULL,'99',NULL,9,'/* Item bonus in source because of BaseLevel check */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13280,'SP_Inc_PotL_To_Throw','Throwing Increase SP Potion (Large)',10,100,NULL,80,'0',NULL,NULL,NULL,0x00040000,56,2,32768,NULL,'99',NULL,9,'/* Item bonus in source because of BaseLevel check */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13281,'En_White_PotZ_To_Throw','Throwing Concentrated White Potion Z',10,100,NULL,70,'0',NULL,NULL,NULL,0x00040000,56,2,32768,NULL,'99',NULL,9,'sc_start SC_EXTRACT_WHITE_POTION_Z,500000,20; itemheal 1000,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13282,'Vitata500_To_Throw','Throwing Vitata 500',10,100,NULL,50,'0',NULL,NULL,NULL,0x00040000,56,2,32768,NULL,'99',NULL,9,'sc_start2 SC_VITATA_500,500000,20,5; itemheal 0,200;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13283,'En_Cel_Juice_To_Throw','Throwing Ceromain Soup',10,100,NULL,50,'0',NULL,NULL,NULL,0x00040000,56,2,32768,NULL,'99',NULL,9,'sc_start SC_EXTRACT_SALAMINE_JUICE,500000,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13284,'Savage_BBQ_To_Throw','Throwing Savage Full Roast',10,100,NULL,50,'0',NULL,NULL,NULL,0x00040000,56,2,32768,NULL,'99',NULL,9,'sc_start SC_SAVAGE_STEAK,300000,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13285,'Wug_Cocktail_To_Throw','Throwing Cocktail Warg Blood',10,100,NULL,50,'0',NULL,NULL,NULL,0x00040000,56,2,32768,NULL,'99',NULL,9,'sc_start SC_COCKTAIL_WARG_BLOOD,300000,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13286,'M_Brisket_To_Throw','Throwing Minor Stew',10,100,NULL,50,'0',NULL,NULL,NULL,0x00040000,56,2,32768,NULL,'99',NULL,9,'sc_start SC_MINOR_BBQ,300000,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13287,'Siroma_Icetea_To_Throw','Throwing Siroma Iced Tea',10,100,NULL,50,'0',NULL,NULL,NULL,0x00040000,56,2,32768,NULL,'99',NULL,9,'sc_start SC_SIROMA_ICE_TEA,300000,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13288,'Drocera_Stew_To_Throw','Throwing Drosera Herb Salad',10,100,NULL,50,'0',NULL,NULL,NULL,0x00040000,56,2,32768,NULL,'99',NULL,9,'sc_start SC_DROCERA_HERB_STEAMED,300000,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13289,'Petti_Noodle_To_Throw','Throwing Petite Tail Soup',10,100,NULL,50,'0',NULL,NULL,NULL,0x00040000,56,2,32768,NULL,'99',NULL,9,'sc_start SC_PUTTI_TAILS_NOODLES,300000,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13290,'Black_Thing_To_Throw','Throwing Black Mass',10,100,NULL,50,'0',NULL,NULL,NULL,0x00040000,56,2,32768,NULL,'99',NULL,9,'sc_start SC_STOMACHACHE,60000,rand(5,10);',NULL,NULL); -#=================================================================== -# More Shurikens & Kunais -#=================================================================== -REPLACE INTO `item_db_re` VALUES (13291,'Starfish','Starfish',10,0,NULL,5,'110',NULL,NULL,NULL,0x02000000,63,2,32768,NULL,'50',NULL,6,'bonus bAtkEle,Ele_Neutral; bonus2 bAddEff,Eff_Stun,1000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13292,'Dried_Squid','Dried Squid',10,10,NULL,20,'50',NULL,NULL,NULL,0x02000000,63,2,32768,NULL,'1',NULL,7,'bonus bAtkEle,Ele_Neutral; bonus2 bAddEff,Eff_Stun,1000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13293,'Flying_Fish','Flying Fish',10,10,NULL,20,'50',NULL,NULL,NULL,0x02000000,63,2,32768,NULL,'1',NULL,7,'bonus bAtkEle,Ele_Neutral; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13294,'Explosive_Kunai','Explosive Kunai',10,100,NULL,1,'50',NULL,NULL,NULL,0x02000000,63,2,32768,NULL,'100',NULL,7,'bonus bAtkEle,Ele_Neutral;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13295,'Light_Shuriken','Light Shuriken',10,0,NULL,5,'5',NULL,NULL,NULL,0xFFFFFFFF,63,2,32768,NULL,NULL,NULL,0,NULL,NULL,NULL); -#=================================================================== -# Ninja Fuuma Shurikens -#=================================================================== -REPLACE INTO `item_db_re` VALUES (13300,'Huuma_Bird_Wing','Huuma Wing Shuriken',5,90000,NULL,3000,'150',NULL,1,0,0x02000000,63,2,34,4,'65',1,22,'bonus bAtkEle,Ele_Wind; bonus bDex,-2; bonus bAgi,-1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13301,'Huuma_Giant_Wheel','Huuma Giant Wheel Shuriken',5,40000,NULL,2500,'50',NULL,1,3,0x02000000,63,2,34,4,'42',1,22,'bonus2 bAddEff,Eff_Bleeding,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13302,'Huuma_Giant_Wheel_','Huuma Giant Wheel Shuriken',5,40000,NULL,2500,'50',NULL,1,4,0x02000000,63,2,34,4,'42',1,22,'bonus2 bAddEff,Eff_Bleeding,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13303,'Huuma_Blaze','Huuma Blaze Shuriken',5,78000,NULL,1500,'185',NULL,1,0,0x02000000,63,2,34,4,'55',1,22,'bonus bAtkEle,Ele_Fire; bonus bDex,-2; bonus3 bAutoSpell,"MG_FIREBALL",5,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13304,'Huuma_Calm_Mind','Huuma Calm Mind',5,20,NULL,1550,'112',NULL,1,2,0x02000000,63,2,34,3,'70',1,22,'bonus2 bSkillAtk,"NJ_HUUMA",30; bonus bNoCastCancel;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13305,'BF_Huuma_Shuriken1','Brave Huuma Front Shuriken',5,20,NULL,0,'55',NULL,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_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13306,'BF_Huuma_Shuriken2','Valorous Huuma Front Shuriken',5,20,NULL,0,'55',NULL,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_Human,95; autobonus "{ bonus2 bSkillAtk,\\\"NJ_HUUMA\\\",100; bonus2 bSkillAtk,\\\"NJ_ISSEN\\\",100; }",50,10000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13307,'Krieger_Huuma_Shuriken1','Glorious Shuriken',5,20,NULL,0,'55:90',NULL,1,0,0x02000000,63,2,34,4,'80',1,22,'bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; autobonus "{ bonus2 bSkillAtk,\\\"NJ_HUUMA\\\",100; bonus2 bSkillAtk,\\\"NJ_ISSEN\\\",100; }",50,10000; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-3,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-3,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) { bonus5 bAutoSpellOnSkill,"NJ_ISSEN","AL_HEAL",10,1000,1; bonus4 bAutoSpellOnSkill,"NJ_HUUMA","NPC_CRITICALWOUND",2,200; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13308,'Huuma_Blaze_I','Huuma Blaze Shuriken',5,0,NULL,0,'230',NULL,1,0,0x02000000,63,2,34,4,'0',0,22,'bonus bAtkEle,Ele_Fire; bonus3 bAutoSpell,"MG_FIREBALL",5,30; bonus bDex,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13309,'Huuma_Giant_Wheel_C','Huuma Giant Wheel Shuriken',5,0,NULL,0,'99',NULL,1,0,0x02000000,63,2,34,4,'1',0,22,'bonus2 bAddEff,Eff_Bleeding,100; bonus2 bAddSize,Size_All,80;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13310,'P_Huuma_Shuriken1','P.Huuma Suriken I',5,0,NULL,0,'150:50',NULL,1,0,0x02000000,63,2,34,3,'60',0,22,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13311,'Huuma_Shadow','Sword Huuma Shuriken',5,5000,NULL,1500,'170',NULL,1,0,0x02000000,63,2,34,3,'99',1,22,'bonus bStr,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13312,'Huuma_Job_Test','Prototype Huuma Shuriken',5,0,NULL,3000,'0',NULL,1,0,0x02000000,63,2,34,4,'99',1,22,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13313,'Huuma_Swirling_Petal','Flower Huuma Shuriken',5,100000,NULL,1500,'150:50',NULL,1,2,0x02000000,63,2,34,3,'110',1,22,'bonus2 bSkillAtk,"KO_HUUMARANKA",20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13314,'Huuma_Fluttering_Snow','Wave Huuma Shuriken',5,100000,NULL,1500,'200:50',NULL,1,0,0x02000000,63,2,34,4,'110',1,22,'bonus bAtkEle,Ele_Water; bonus3 bAutoSpell,"NJ_HYOUSYOURAKU",max(getskilllv("NJ_HYOUSYOURAKU"),1),30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13315,'Huuma_Thunderstorm','Thunderstorm Huuma Shuriken',5,100000,NULL,1500,'200:50',NULL,1,0,0x02000000,63,2,34,4,'110',1,22,'bonus bAtkEle,Ele_Wind; bonus3 bAutoSpell,"NJ_RAIGEKISAI",max(getskilllv("NJ_RAIGEKISAI"),1),30; bonus2 bAddEff,Eff_Blind,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13316,'Upg_Huuma_Shuriken','Upg Huuma Shuriken',5,20,NULL,1500,'55',NULL,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); bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13317,'TE_Woe_Huuma','TE Woe Huuma',5,0,NULL,0,'80:100',NULL,1,0,0x22000000,63,2,2,3,'40',1,22,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Bleeding,1000; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13321,'Half_BF_Huuma_Shuriken2','Half BF Huuma Shuriken',5,20,NULL,0,'55',NULL,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_Human,40; autobonus "{ bonus2 bSkillAtk,\\\"NJ_HUUMA\\\",100; bonus2 bSkillAtk,\\\"NJ_ISSEN\\\",100; }",50,10000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13322,'Huuma_Metal_Shuriken','Huuma Metal Shuriken',5,20,NULL,0,'50',NULL,1,1,0x02000000,63,2,34,3,'1',1,22,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bBaseAtk,.@r*5; bonus bMatk,.@r*3; bonus bLongAtkRate,.@r; if (BaseLevel >= 20 && BaseLevel <= 120) bonus bBaseAtk,3*.@r/10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13323,'Infinity_Shuriken','Infinity Shuriken',5,0,NULL,500,'150:40',NULL,1,1,0x20000000,63,2,34,4,'100',1,22,'bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13327,'Crimson_Huuma_Shuriken','Crimson Huuma Shuriken',5,20,NULL,1000,'100',NULL,1,2,0x22000000,63,2,34,3,'70',1,22,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bBaseAtk,(.@r<=15?pow(.@r,2):225); bonus bMatk,(.@r<=15?(pow(.@r,2)/2):225); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*5);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13328,'Huuma_Shuriken_of_Vicious_Mind','Huuma Shuriken of Vicious Mind',5,20,NULL,1500,'150:50',NULL,1,1,0x22000000,63,2,34,4,'160',1,22,'bonus bAtk,pow(min(getrefine(),15),2); bonus bMatk,pow(min(getrefine(),15),2)/2; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13329,'Unity_Huuma_Shuriken','Unity Huuma Shuriken',5,20,NULL,500,'95',NULL,1,1,0x22000000,63,2,34,3,'1',1,22,'bonus bBaseAtk,pow(getrefine(),2)*125/100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13332,'Huuma_Shuriken_of_Dancing_Petals','Huuma Shuriken of Dancing Petals',5,0,NULL,2000,'250',NULL,1,2,0x20000000,63,2,34,4,'100',1,22,'.@r = getrefine(); .@bonus = 20; if (.@r>=7) { bonus bLongAtkRate,10; } if (.@r>=9) { .@bonus += 20; } bonus2 bSkillAtk,"KO_HUUMARANKA",.@bonus;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13337,'Illusion_Huuma_Fluttering_Snow','Illusion Huuma Fluttering Snow',5,0,NULL,1500,'250:50',NULL,1,2,0x02000000,63,2,34,4,'120',1,22,'.@r = getrefine(); bonus bBaseAtk,(30*(.@r/3)); bonus bLongAtkRate,(3*.@r);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13338,'Illusion_Wing_Shuriken','Illusion Wing Shuriken',5,0,NULL,1500,'300',NULL,1,2,0x02000000,63,2,34,4,'120',1,22,'bonus bDex,2; bonus2 bSkillAtk,"KO_HAPPOKUNAI",(9*getrefine());',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13345,'Huuma_Shuriken_Clearness','Huuma Shuriken Clearness',5,20,NULL,1300,'230',NULL,1,2,0x22000000,63,2,34,4,'100',1,22,'.@r = getrefine(); bonus bLongAtkRate,2*(.@r/3); bonus bBaseAtk,10*(.@r/2); if (.@r >= 7) { bonus2 bSkillAtk,"KO_HUUMARANKA",30; if (.@r >= 9) { bonus2 bSkillCooldown,"KO_HUUMARANKA",-1000; if (.@r >= 11) { bonus2 bAddEle,Ele_Fire,15; bonus2 bAddEle,Ele_Dark,15; bonus2 bAddRace,RC_Undead,30; bonus2 bAddRace,RC_Demon,30; } } }',NULL,NULL); -#=================================================================== -# More 1-Handed Swords -#=================================================================== -REPLACE INTO `item_db_re` VALUES (13400,'Cutlas_','Cutlus',5,20,NULL,900,'150',NULL,1,1,0x000654E2,63,2,2,4,'40',1,2,'skill "SM_BASH",5; bonus bStr,2; bonus bDef,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13401,'Excalibur_C','Excalibur',5,1,NULL,0,'199',NULL,1,0,0x000654E2,63,2,2,4,'1',0,2,'bonus bInt,10; bonus bLuk,10; bonus bAtkEle,Ele_Holy;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13402,'Cutlas_C','Cutlus',5,2,NULL,0,'185',NULL,1,0,0x000654E2,63,2,2,4,'0',0,2,'skill "SM_BASH",5; bonus bStr,2; bonus bDef,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13403,'Solar_Sword_C','Solar Sword',5,2,NULL,0,'120',NULL,1,0,0x000654E2,63,2,2,4,'0',0,2,'bonus bAtkEle,Ele_Fire; bonus2 bSPLossRate,15,10000; bonus2 bHPDrainRate,1000,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13404,'Platinum_Shotel','Platinum Shotel',5,20,NULL,1500,'130',NULL,1,1,0x000654E2,58,2,2,4,'55',1,2,'bonus bCritical,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13405,'Curved_Sword','Curved Sword',5,20,NULL,800,'125',NULL,1,2,0x000654E2,58,2,2,4,'55',1,2,'bonus bAspdRate,10; bonus2 bAddEff,Eff_Curse,300;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13406,'Edger','Edger',5,20,NULL,0,'120',NULL,1,0,0x000654E2,63,2,2,1,'0',0,2,'bonus2 bAddClass,Class_All,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13407,'Nagan_C','Refined Nagan',5,1,NULL,0,'148',NULL,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_Human,40;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13408,'Fire_Brand_C','Refined Fireblend',5,1,NULL,0,'120',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13409,'Immaterial_Sword_C','Refined Immaterial Sword',5,1,NULL,0,'160',NULL,1,0,0x000654E2,63,2,2,4,'0',0,2,'bonus bAtkEle,Ele_Ghost; bonus3 bSPVanishRate,80,45,BF_WEAPON|BF_MAGIC|BF_MISC; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13410,'BF_Sword1','Valorous Gladiator Blade',5,20,NULL,0,'115',NULL,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_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13411,'BF_Sword2','Brave Gladiator Blade',5,20,NULL,0,'115:74',NULL,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_Human,75; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13412,'Twin_Edge_B','Twin Edge of Naght Sieger',5,20,NULL,1500,'150',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13413,'Twin_Edge_R','Twin Edge of Naght Sieger',5,20,NULL,1500,'160',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13414,'Elemental_Sword','Elemental Sword',5,20,NULL,1200,'105:95',NULL,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,1000; bonus4 bAutoSpellOnSkill,"MG_LIGHTNINGBOLT","WZ_EARTHSPIKE",3,1000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13415,'N_Falchion','Novice Falchion',5,0,NULL,0,'59',NULL,1,3,0x000654E3,63,2,2,1,'2',0,2,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13416,'Krieger_Onehand_Sword1','Glorious Flamberge',5,20,NULL,0,'130',NULL,1,0,0x000654E3,63,2,2,4,'80',1,2,'bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>6) bonus bAspdRate,5; if(.@r>8) { bonus bAspdRate,5; bonus4 bAutoSpellOnSkill,"SM_BASH","NPC_CRITICALWOUND",2,200; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13417,'Krieger_Onehand_Sword2','Glorious Rapier',5,20,NULL,0,'130:80',NULL,1,0,0x000654E3,63,2,2,4,'80',1,2,'.@r = getrefine(); bonus bInt,6; bonus bInt,.@r-5; bonus bUnbreakableWeapon; if(.@r>5) bonus bUseSPrate,-10; if(.@r>8) bonus bInt,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13418,'Krieger_Onehand_Sword3','Glorious Holy Avenger',5,20,NULL,0,'130:80',NULL,1,0,0x000444A2,63,2,2,4,'80',1,2,'.@r = getrefine(); bonus bInt,6; bonus bInt,.@r-5; bonus bUnbreakableWeapon; if(.@r>5) bonus bUseSPrate,-10; if(.@r>8) bonus4 bAutoSpellOnSkill,"PA_PRESSURE","PR_LEXAETERNA",1,1000; if(.@r>9) bonus bInt,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13419,'Holy_Saber','Holy saber',5,20,NULL,0,'160',NULL,1,0,0x000654E2,63,2,2,3,'0',0,2,'bonus2 bAddEle,Ele_Undead,40; bonus2 bMagicAddEle,Ele_Undead,40;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13420,'Honglyun\'s_Sword','Honglyun\'s Sword',5,20,NULL,1200,'160',NULL,1,1,0x000654E2,63,2,2,4,'70',1,2,'bonus bStr,2; bonus bInt,2; bonus3 bAutoSpell,"WZ_METEOR",1,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13421,'Ruber','Ruber',5,20,NULL,1500,'170',NULL,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; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13422,'Flamberge_C','Flamberge',5,0,NULL,0,'185',NULL,1,0,0x00004080,63,2,2,3,'1',0,2,'bonus2 bAddSize,Size_All,40;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13423,'P_Sabre1','Eden Sabre I',5,0,NULL,0,'147',NULL,1,0,0x000654E2,63,2,2,2,'26',0,2,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13424,'P_Sabre2','Eden Sabre II',5,0,NULL,0,'170',NULL,1,0,0x000654E2,63,2,2,2,'40',0,2,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13425,'Tourist_Sword','Tourist Sword',5,0,NULL,500,'61',NULL,1,0,0x000654E3,63,2,2,1,'1',0,2,'bonus bStr,1; bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13426,'F_Cutlas_C','Cutlus',5,2,NULL,0,'185',NULL,1,0,0x000654E2,63,2,2,4,'0',0,2,'skill "SM_BASH",5; bonus bStr,2; bonus bDef,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13427,'F_Solar_Sword_C','Solar Sword',5,2,NULL,0,'120',NULL,1,0,0x000654E2,63,2,2,4,'0',0,2,'bonus bAtkEle,Ele_Fire; bonus bHPDrainValue,1; bonus2 bSPLossRate,15,10000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13428,'Priest_Sword','Priest Sword',5,20,NULL,1200,'170',NULL,1,3,0x000654E2,63,2,2,4,'50',1,2,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13429,'E_Cutlas_C','Cutlus',5,2,NULL,0,'185',NULL,1,0,0x000654E2,63,2,2,4,'0',0,2,'skill "SM_BASH",5; bonus bStr,2; bonus bDef,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13430,'E_Solar_Sword_C','Solar Sword',5,2,NULL,0,'120',NULL,1,0,0x000654E2,63,2,2,4,'0',0,2,'bonus bAtkEle,Ele_Fire;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13431,'Chrome_Sword','Chrome Sword',5,20,NULL,2200,'180',NULL,1,0,0x000444A2,18,2,2,3,'110',1,2,'bonus bAgi,1; bonus bMaxHPrate,-5; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13432,'Adventure_Sword','Adventure Sword',5,0,NULL,0,'80',NULL,1,0,0x00004082,63,2,2,1,'1',0,2,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13433,'Academy_Sword','Academy Sword',5,0,NULL,1200,'120',NULL,1,1,0x00004082,63,2,2,1,'30',1,2,'bonus bMaxHP,200; bonus bMaxSP,100; .@b = BaseLevel/10; bonus bMaxHP,-40*.@b; bonus bMaxSP,-20*.@b;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13434,'P_Saber3','Eden Saber III',5,0,NULL,0,'185',NULL,1,0,0x000654E2,63,2,2,3,'60',0,2,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13435,'Fire_Brand_','Fireblend',5,20,NULL,500,'100:108',NULL,1,3,0x000654E2,63,2,2,4,'40',1,2,'bonus bAtkEle,Ele_Fire; skill "MG_FIREBOLT",3; bonus3 bAutoSpell,"MG_FIREBOLT",3,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13436,'Ice_Falchon_','Ice Falchion',5,20,NULL,600,'100:108',NULL,1,3,0x000654E2,63,2,2,4,'40',1,2,'bonus bAtkEle,Ele_Water; skill "MG_COLDBOLT",3; bonus3 bAutoSpell,"MG_COLDBOLT",3,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13437,'Orcish_Sword_','Orcish Sword',5,20,NULL,800,'90',NULL,1,4,0x000654E3,63,2,2,3,'5',1,2,'bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13438,'Magical_Blade','Magical Blade',5,60000,NULL,2000,'165:110',NULL,1,2,0x000654E3,63,2,2,4,'105',1,2,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13439,'TE_Woe_Sword','TE Woe Sword',5,0,NULL,0,'120:100',NULL,1,0,0x000654E3,63,2,2,3,'40',1,2,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Poison,3000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13440,'Ceremonial_Sword','Ceremonial Sword',5,20,NULL,500,'60',NULL,1,0,0x00000063,5,2,2,1,'1',1,2,'bonus bAtkEle,Ele_Holy;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13441,'Thanos_Sword','Thanos Sword',5,10,NULL,700,'150:100',NULL,1,1,0x00004082,56,2,2,4,'120',1,2,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000;',NULL,'heal -1000,0;'); -REPLACE INTO `item_db_re` VALUES (13442,'Old_Parasol','Old Parasol',5,10,NULL,500,'120:80',NULL,NULL,3,0x000654E2,63,2,2,3,'80',1,2,'bonus bMatk,getrefine(); skill "MG_SOULSTRIKE",10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13444,'Pala','Pala',5,20,NULL,700,'190',NULL,0,1,0x000654E2,63,2,2,3,'0',1,2,'bonus bAspdRate,8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13445,'Half_BF_Sword1','Half BF Sword1',5,20,NULL,0,'115',NULL,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_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13446,'Star_Dust_Blade_','Star Dust Blade',5,1,NULL,1000,'140',NULL,1,3,0x00000001,63,2,2,4,'45',1,2,'bonus2 bAddEff,Eff_Stun,500; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13447,'Byeorrun_Gum_','Byeollungum',5,1,NULL,900,'150',NULL,1,2,0x000654E2,63,2,2,4,'40',1,2,'bonus2 bSubClass,Class_Normal,-10; bonus2 bAddClass,Class_Boss,50; bonus bAllStats,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13448,'Magical_Blade_','Magical Blade',5,1,NULL,2000,'165:110',NULL,1,3,0x000654E3,63,2,2,4,'105',1,2,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13449,'Gladius_Daemonicus','Gladius Daemonicus',5,20,NULL,1200,'130',NULL,NULL,2,0x000654E2,63,2,2,4,'80',1,2,'bonus bAspdRate,10; .@r = getrefine(); if(.@r>=9){ autobonus "{ bonus bAspd,3; }",30,5000; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13450,'Saber__','Saber',5,10,NULL,1000,'115',NULL,NULL,2,0x000654E2,63,2,2,3,'27',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13451,'Ru_Blue_Sword','Ru Blue Sword',5,1,NULL,1200,'200',NULL,1,1,0x00000080,56,2,2,3,'100',1,2,'bonus bStr,5; bonus bAgi,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13452,'Ru_Gold_Sword','Ru Gold Sword',5,0,NULL,1200,'190',NULL,1,2,0x00000080,56,2,2,3,'120',1,2,'bonus bStr,8; bonus bAgi,8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13453,'Mysteltainn__','Mysteltainn',5,20,NULL,1000,'170',NULL,1,3,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13454,'Crimson_Saber','Crimson Saber',5,20,NULL,850,'85',NULL,1,2,0x000654E3,63,2,2,3,'70',1,2,'.@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13455,'Saber_of_Vicious_Mind','Saber of Vicious Mind',5,20,NULL,1350,'135',NULL,1,1,0x000654E3,63,2,2,4,'160',1,2,'bonus bAtk,pow(min(getrefine(),15),2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13456,'Unity_Sword','Unity Sword',5,20,NULL,420,'80',NULL,1,1,0x000654E3,56,2,2,3,'1',1,2,'bonus bBaseAtk,pow(getrefine(),2)*125/100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13457,'Unity_Dagger','Unity Dagger',5,20,NULL,270,'52',NULL,1,1,0x028F5EEF,63,2,2,3,'1',1,1,'bonus bBaseAtk,pow(getrefine(),2)*125/100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13460,'Sealed_Magic_Sword','Sealed Magic Sword',5,0,NULL,1500,'100',NULL,1,2,0x00065480,58,2,2,4,'100',1,2,'.@r = getrefine(); .@sp = -100; bonus3 bAutoSpell,"MG_FIREBOLT",5,100; if (.@r >= 7) { .@sp += 50; .@matk = 85; if (.@r >= 10) { bonus bAspd,1; .@sp += 50; .@matk += 45; } bonus bMatk,.@matk; } bonus bMaxSP,.@sp;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13461,'Sealed_Evil_Sword','Sealed Evil Sword',5,0,NULL,1500,'100',NULL,1,2,0x00065480,58,2,2,4,'100',1,2,'.@r = getrefine(); .@def = -50; .@mdef = -10; bonus3 bAutoSpell,"WZ_FROSTNOVA",5,100; if (.@r >= 7) { .@crit = 30; .@mdef += 10; if (.@r >= 10) { bonus bAspd,1; .@crit += 20; .@def += 50; } bonus bCritical,.@crit; } bonus bDef,.@def; bonus bMdef,.@mdef;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13462,'Sealed_Max_Sword','Sealed Maximum Sword',5,0,NULL,1500,'100',NULL,1,2,0x00065480,58,2,2,4,'100',1,2,'.@r = getrefine(); .@hp = -1000; bonus3 bAutoSpell,"MG_COLDBOLT",5,100; if (.@r >= 7) { .@atk = 65; .@hp += 500; if (.@r >= 10) { bonus bAspd,1; .@atk += 45; .@hp += 500; } bonus bBaseAtk,.@atk; } if (.@hp) { bonus bMaxHP,.@hp; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13469,'Illusion_Immaterial_Sword','Illusion Immaterial Sword',5,0,NULL,900,'180',NULL,1,2,0x000654E2,63,2,2,4,'120',1,2,'.@r = getrefine(); bonus bSPDrainValue,-1; bonus bUnbreakableWeapon; if (.@r >= 12) { .@val = 20; } bonus2 bSPVanishRate,(80+(20*.@r)),(30+.@val); bonus bAtkEle,Ele_Ghost;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13473,'God\'s_Sword','God\'s Sword',5,NULL,NULL,1300,'150',NULL,1,2,0x000654E3,56,2,2,4,'120',1,2,'bonus bAgi,5; bonus bCritical,50; bonus bFlee2,20; bonus2 bAddRace,RC_Demon,30; .@r = getrefine(); .@rate = 1+.@r; .@s = getskilllv("ASC_BREAKER"); .@slv = 3; if(.@s>3) { .@slv = .@s; } bonus3 bAutoSpell,"ASC_BREAKER",.@slv,.@rate; if(.@r>=8){ skill "ASC_BREAKER",3; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13474,'Sword___','Sword',5,1,NULL,500,'25',NULL,1,4,0x000654E3,63,2,2,1,'2',1,2,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13475,'Falchion___','Falchion',5,1,NULL,600,'39',NULL,1,4,0x000654E3,63,2,2,1,'2',1,2,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13476,'Blade___','Blade',5,1,NULL,700,'53',NULL,1,4,0x000654E3,63,2,2,1,'2',1,2,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13477,'Lapier___','Rapier',5,10,NULL,500,'70',NULL,1,3,0x000654E3,63,2,2,2,'14',1,2,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13478,'Scimiter___','Scimitar',5,10,NULL,700,'85',NULL,1,3,0x000654E3,63,2,2,2,'14',1,2,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13479,'Tsurugi___','Tsurugi',5,1,NULL,1200,'130',NULL,1,2,0x000654E2,63,2,2,3,'27',1,2,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13480,'Ring_Pommel_Saber__','Ring Pommel Saber',5,1,NULL,900,'100',NULL,1,3,0x000654E2,63,2,2,2,'14',1,2,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13481,'Saber___','Saber',5,1,NULL,1000,'115',NULL,NULL,3,0x000654E2,63,2,2,3,'27',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13482,'Orcish_Blade','Orcish Blade',5,1,NULL,1200,'120',NULL,1,1,0x000654E2,63,2,2,3,'50',1,2,'bonus2 bSkillAtk,"SM_BASH",5; bonus bMaxHP,150; bonus bHealPower2,5; bonus bUseSPrate,-50; .@r = getrefine(); if(.@r>=7){ bonus2 bSkillAtk,"SM_BASH",5; bonus bHealPower2,5; } if(.@r>=9){ bonus2 bSkillAtk,"SM_BASH",5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13483,'Beginner_Genetic\'s_Sword','Beginner Genetic\'s Sword',5,1,NULL,0,'140',NULL,1,1,0x00040000,56,2,2,3,'100',1,2,'.@r = getrefine(); bonus bVariableCastrate,-10; if(.@r>=7){ bonus2 bSkillAtk,"GN_CARTCANNON",15; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13485,'Honglyun\'s_Sword_','Honglyun\'s Sword',5,1,NULL,800,'180',NULL,1,2,0x00040000,56,2,2,4,'100',1,2,'.@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bLongAtkRate,4*(.@r/3); if(.@r>=9){ bonus2 bSkillUseSPrate,"GN_CARTCANNON",10; } if(.@r>=11){ bonus2 bSkillAtk,"GN_CARTCANNON",15; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13492,'Abyss_Blade','Abyss Blade',5,1,NULL,1200,'150:130',NULL,1,1,0x00065480,56,2,2,4,'165',1,2,'.@r = getrefine(); bonus bUnbreakableWeapon; if(.@r>=7){ bonus2 bAddClass,Class_All,5; bonus2 bSubRace,RC_Player_Human,5; } if(.@r>=9){ bonus2 bAddClass,Class_All,5; bonus2 bSubRace,RC_Player_Human,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13493,'Cannon_Rapier-OS','Cannon Rapier-OS',5,20,NULL,800,'160:150',NULL,1,2,0x000654E3,63,2,2,4,'130',1,2,'.@r = getrefine(); bonus3 bAutoSpell,"MG_FIREBALL",min(.@r,10),100; if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus2 bSkillAtk,"MG_FIREBALL",30; if (.@r >= 11) { bonus3 bAutoSpell,"WL_HELLINFERNO",3,100; } } }',NULL,NULL); -#=================================================================== -# More Cash Shop Items -#=================================================================== -REPLACE INTO `item_db_re` VALUES (13495,'Sealed_Red_Lotus_Sword','Sealed Red Lotus Sword',5,1,NULL,0,'180',NULL,1,2,0x00040000,56,2,2,4,'99',1,2,'.@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bLongAtkRate,4*(.@r/3); if(.@r>=7){ bonus2 bSkillUseSPrate,"GN_CARTCANNON",10; } if(.@r>=9){ bonus2 bSkillAtk,"GN_CARTCANNON",15; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13497,'Edge_','Edge',5,1,NULL,1200,'60',NULL,1,1,0x000654E2,63,2,2,4,'60',1,2,'bonus bHit,-40; bonus3 bAddEffOnSkill,"RG_RAID",Eff_Bleeding,100; bonus2 bSkillAtk,"RG_RAID",50; .@s = getskilllv("SM_SWORD"); bonus bHit,3*.@s; bonus2 bAddClass,Class_All,2; .@r = getrefine(); if(.@r>=9){ bonus bHit,2*.@s; bonus2 bAddClass,Class_All,2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13498,'Nagan_','Nagan',5,1,NULL,500,'120',NULL,1,1,0x000654E2,63,2,2,4,'60',1,2,'.@b = readparam(bStr); bonus bCritical,1*(.@b/10); bonus bCritAtkRate,2; skill "TF_DOUBLE",5; .@r = getrefine(); if(.@r>=1){ bonus bCritAtkRate,1*(.@b/10); }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13499,'Kladenets','Kladenets',5,1,NULL,1500,'180:160',NULL,1,1,0x000654E2,56,2,2,4,'130',1,2,'.@r = getrefine(); .@rate = 1+.@r; bonus3 bAutoSpellWhenHit,"SO_PSYCHIC_WAVE",3,.@rate; if(.@r>=10){ bonus bFixedCastrate,-70; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13500,'Insurance60_Package','Life Insurrance Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14500,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13501,'Assorted_Scroll_Box','Experience Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13502,'Drooping_Kitty_Box','Refined Drooping Cat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5279,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13503,'Magestic_Goat_Box','Baphomet Horns Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5280,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13504,'Deviruchi_Cap_Box','Refined Deviruchi Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5281,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13505,'Executioner_Box','Executioner Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1174,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13506,'Brood_Axe_Box','Refined Bloody Axe Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1373,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13507,'Tomahawk_Box','Tomahawk Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1374,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13508,'Bow_Of_Rudra_Box','Rudra Bow Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1729,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13509,'Cutlas_Box','Cutlus Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13402,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13510,'Solar_Sword_Box','Solar Sword Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13403,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13511,'Sword_Breaker_Box','Refined Swordbreaker Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13024,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13512,'Mail_Breaker_Box','Refined Mailbreaker Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13025,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13513,'Moonlight_Sword_Box','Moonlight Dagger Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13026,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13514,'Spanner_Box','Wrench Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1534,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13515,'Grape_Box','Grape Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 514,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13516,'Royal_Jelly_Box','Royal Jelly Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 526,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13517,'Yggdrasilberry_Box','Yggdrasil Berry Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 607,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13518,'Weapon_Card_Scroll_Box','Weapon Card Pet Egg Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13558,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13519,'Armor_Card_Scroll_Box','Armor Card Pet Egg Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13559,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13520,'Helmet_Card_Scroll_Box','Helmet Card Pet Egg Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13560,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13521,'Hood_Card_Scroll_Box','Garment Card Pet Egg Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13561,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13522,'Hood_Card_Scroll_Box2','Shield Card Pet Egg Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13562,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13523,'Shoes_Card_Scroll_Box','Shoes Card Pet Egg Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13563,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13524,'Accy_Card_Scroll_Box','Accessory Card Pet Egg Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13564,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13525,'Zeny_Scroll_Box','Zeny Pet Egg Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14508,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13526,'Pet_Egg_Scroll_Box1_','Pet Egg Scroll Box 12',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12925,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13527,'Pet_Egg_Scroll_Box2_','Pet Egg Scroll Box 13',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12926,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13528,'Pet_Egg_Scroll_Box3_','Pet Egg Scroll Box 14',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12932,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13529,'Pet_Egg_Scroll_Box4_','Pet Egg Scroll Box 15',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12933,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13530,'Pet_Egg_Scroll_Box5_','Pet Egg Scroll Box 16',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12934,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13531,'Light_Red_Pot_Box','Light Red Potion Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 598,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13532,'Light_Orange_Pot_Box','Light Orange Potion Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 599,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13533,'Light_Yellow_Pot_Box','Light Yellow Potion Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 11500,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13534,'Light_White_Pot_Box','Light White Potion Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 11501,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13535,'Light_Center_Pot_Box','Light Concentration Potion Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14509,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13536,'Light_Awakening_Pot_Box','Light Awakening Potion Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14510,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13537,'Light_Berserk_Pot_Box','Light Berserk Potion Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14511,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13538,'Meteor_10_Scroll_Box','Meteor Storm Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14512,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13539,'Storm_10_Scroll_Box','Storm Gust Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14513,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13540,'Vermilion_10_Scroll_Box','Lord of Vermilion Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14514,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13541,'Lex_Aeterna_Scroll_Box','Lex Aeterna Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14515,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13542,'Magnificat_5_Scroll_Box','Magnificat Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14516,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13543,'CP_Helm_Scroll_Box','Chemical Protection Helm Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_CP_Helm_Scroll_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13544,'CP_Shield_Scroll_Box','Chemical Protection Shield Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_CP_Shield_Scroll_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13545,'CP_Armor_Scroll_Box','Chemical Protection Armor Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_CP_Armor_Scroll_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13546,'CP_Weapon_Scroll_Box','Chemical Protection Weapon Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_CP_Weapon_Scroll_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13547,'Repair_Scroll_Box','Repair Weapon Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Repair_Scroll_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13548,'Big_Bun_Box','Big Bun Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14522,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13549,'Pill__Box','Pill Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14523,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13550,'Superb_Fish_Slice_Box','Fish Slice Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14524,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13551,'Chewy_Ricecake_Box','Chewy Ricecake Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14525,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13552,'Oriental_Pastry_Box','Pastry Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14526,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13553,'Dun_Tele_Scroll1_Box','Dungeon Teleport Scroll 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14527,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13554,'Weapon_Card_Scroll_Box2','Weapon Card Pet Egg Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13565,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13555,'Weapon_Card_Scroll_Box3','Weapon Card Pet Egg Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13566,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13556,'Armor_Card_Scroll_Box2','Armor Card Pet Egg Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13567,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13557,'Accy_Card_Scroll_Box2','Accessory Card Pet Egg Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13568,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13558,'Weapon_Card_Scroll','Weapon Card Pet Egg Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13559,'Armor_Card_Scroll','Armor Card Pet Egg Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13560,'Helmet_Card_Scroll','Helmet Card Pet Egg Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13561,'Hood_Card_Scroll','Garment Card Pet Egg Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13562,'Hood_Card_Scroll2','Shield Card Pet Egg Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13563,'Shoes_Card_Scroll','Shoes Card Pet Egg Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13564,'Accy_Card_Scroll','Accessory Card Pet Egg Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13565,'Weapon_Card_Scroll2','Weapon Card Pet Egg Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13566,'Weapon_Card_Scroll3','Weapon Card Pet Egg Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13567,'Armor_Card_Scroll2','Armor Card Pet Egg Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13568,'Accy_Card_Scroll2','Accessory Card Pet Egg Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13569,'PVP_Tele_Scroll_Box','PVP Teleport Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14528,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13570,'Giant_Fly_Wing_Box50','Giant Fly Wing 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12212,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13571,'Giant_Fly_Wing_Box100','Giant Fly Wing 100 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12212,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13572,'Dex_Dish_Box30','Hwergelmir\'s Tonic 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12205,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13573,'Dex_Dish_Box50','Hwergelmir\'s Tonic 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12205,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13574,'Luk_Dish_Box30','Nine Tail Dish 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12206,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13575,'Luk_Dish_Box50','Nine Tail Dish 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12206,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13576,'Inc_Agi_10_Box30','Increase Agility Scroll 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12216,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13577,'Inc_Agi_10_Box50','Increase Agility Scroll 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12216,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13578,'Vit_Dish_Box30','Stew of Immortality 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12207,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13579,'Vit_Dish_Box50','Stew of Immortality 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12207,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13580,'Insurance_Package30','Life Insurrance 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12209,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13581,'Insurance_Package50','Life Insurrance 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12209,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13582,'Convex_Mirror_Box5','Convex Mirror 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12214,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13583,'Convex_Mirror_Box30','Convex Mirror 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12214,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13584,'Blessing10_Box30','Blessing Scroll 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12215,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13585,'Blessing10_Box50','Blessing Scroll 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12215,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13586,'Adrenaline10_Box30','Adrenaline Rush Scroll 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12220,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13587,'Adrenaline10_Box50','Adrenaline Rush Scroll 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12220,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13588,'Assumptio_5_Box30','Assumptio Scroll 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12218,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13589,'Assumptio_5_Box50','Assumptio Scroll 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12218,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13590,'Aspersio_5_Box30','Aspersio Scroll 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12217,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13591,'Aspersio_5_Box50','Aspersio Scroll 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12217,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13592,'Agi_Dish_Box30','Steamed Scorpion 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12203,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13593,'Agi_Dish_Box50','Steamed Scorpion 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12203,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13594,'Wind_Walk10_Box30','Wind Walk Scroll 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12219,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13595,'Wind_Walk10_Box50','Wind Walk Scroll 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12219,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13596,'Int_Dish_Box30','Dragon Breath Cocktail 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12204,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13597,'Int_Dish_Box50','Dragon Breath Cocktail 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12204,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13598,'Battle_Manual_Box1','Field Manual Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12208,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13599,'Battle_Manual_Box5','Field Manual 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12208,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13600,'Siegfried_Box5','Token of Siegfried 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7621,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13601,'Siegfried_Box20','Token of Siegfried 20 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7621,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13602,'Kafra_Card_Box30','Kafra Card 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12211,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13603,'Kafra_Card_Box50','Kafra Card 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12211,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13604,'Str_Dish_Box30','Steamed Tongue 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12202,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13605,'Str_Dish_Box50','Steamed Tongue 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12202,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13606,'Bubble_Gum_Box1','Bubble Gum Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12210,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13607,'Bubble_Gum_Box5','Bubble Gum 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12210,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13608,'Megaphone_Box1','Megaphone Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12221,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13609,'Megaphone_Box5','Megaphone 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12221,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13610,'Enriched_Elunium_Box5','Enriched Elunium 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7619,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13611,'Enriched_Oridecon_Box5','Enriched Oridecon 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7620,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13612,'Handcuff_Box','Arrest Handcuffs Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2706,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13613,'Super_Pet_Egg_Box1','Super Pet Egg Box 1',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13617,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13614,'Super_Pet_Egg_Box2','Super Pet Egg Box 2',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13618,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13615,'Super_Pet_Egg_Box3','Super Pet Egg Box 3',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13619,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13616,'Super_Pet_Egg_Box4','Super Pet Egg Box 4',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13620,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13617,'Super_Pet_Egg1','Super Pet Egg 1',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Super_Pet_Egg1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13618,'Super_Pet_Egg2','Super Pet Egg 2',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Super_Pet_Egg2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13619,'Super_Pet_Egg3','Super Pet Egg 3',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Super_Pet_Egg3);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13620,'Super_Pet_Egg4','Super Pet Egg 4',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Super_Pet_Egg4);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13621,'Greed_Box30','Greed Scroll 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14529,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13622,'Greed_Box50','Greed Scroll 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14529,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13623,'Greed_Box100','Greed Scroll 100 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14529,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13624,'Flee_30_Scroll_Box','Evasion Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14530,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13625,'Accuracy_30_Scroll_Box','Concentration Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14531,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13626,'Super_Card_Pet_Egg_Box1','Super Card Pet Egg Box 1',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13630,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13627,'Super_Card_Pet_Egg_Box2','Super Card Pet Egg Box 2',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13631,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13628,'Super_Card_Pet_Egg_Box3','Super Card Pet Egg Box 3',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13632,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13629,'Super_Card_Pet_Egg_Box4','Super Card Pet Egg Box 4',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13633,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13630,'Super_Card_Pet_Egg1','Super Card Pet Egg 1',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Super_Card_Pet_Egg1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13631,'Super_Card_Pet_Egg2','Super Card Pet Egg 2',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Super_Card_Pet_Egg2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13632,'Super_Card_Pet_Egg3','Super Card Pet Egg 3',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Super_Card_Pet_Egg3);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13633,'Super_Card_Pet_Egg4','Super Card Pet Egg 4',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Super_Card_Pet_Egg4);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13634,'Vigorgra_Package1','1 Hour Package Vol. 1',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Vigorgra_Package1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13635,'Vigorgra_Package2','1 Hour Package Vol. 2',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Vigorgra_Package2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13636,'Vigorgra_Package3','1 Hour Package Vol. 3',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Vigorgra_Package3);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13637,'Vigorgra_Package4','1 Hour Package Vol. 4',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Vigorgra_Package4);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13638,'Vigorgra_Package5','1 Hour Package Vol. 5',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Vigorgra_Package5);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13639,'Vigorgra_Package6','1 Hour Package Vol. 6',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Vigorgra_Package6);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13640,'Vigorgra_Package7','2 Hour Package Vol. 1',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Vigorgra_Package7);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13641,'Vigorgra_Package8','2 Hour Package Vol. 2',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Vigorgra_Package8);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13642,'Vigorgra_Package9','2 Hour Package Vol. 3',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Vigorgra_Package9);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13643,'Vigorgra_Package10','2 Hour Package Vol. 4',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Vigorgra_Package10);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13644,'Vigorgra_Package11','2 Hour Package Vol. 5',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Vigorgra_Package11);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13645,'Vigorgra_Package12','2 Hour Package Vol. 6',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Vigorgra_Package12);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13646,'Infiltrator_Box1','Refined Infiltrator Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1267,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13647,'Muramasa_Box1','Refined Muramasa Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1173,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13648,'Excalibur_Box1','Refined Excalibur Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13401,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13649,'Combat_Knife_Box1','Refined Combat Knife Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13021,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13650,'Counter_Dagger_Box1','Refined Dagger of Counter Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13022,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13651,'Kaiser_Knuckle_Box1','Refined Kaiser Knuckle Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1817,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13652,'Pole_Axe_Box1','Refined Pole Axe Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1419,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13653,'Mighty_Staff_Box1','Refined Mighty Staff Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1623,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13654,'Right_Epsilon_Box1','Refined Light Epsilon Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1372,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13655,'Balistar_Box1','Refined Ballista Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1728,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13656,'Diary_Of_Sage_Box1','Refined Sage\'s Diary Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1563,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13657,'Asura_Box1','Refined Ashura Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13023,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13658,'Apple_Of_Archer_Box1','Refined Apple of Archer Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5265,1209600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13659,'Bunny_Band_Box1','Refined Bunny Band Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5266,1209600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13660,'Sahkkat_Box1','Refined Sakkat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5267,1209600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13661,'Lord_Circlet_Box1','Refined Grand Circlet Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5268,1209600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13662,'Elven_Ears_Box1','Refined Elven Ears Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2686,1209600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13663,'Steel_Flower_Box1','Refined Romantic Flower Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2687,1209600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13664,'Critical_Ring_Box1','Refined Critical Ring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2688,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13665,'Earring_Box1','Refined Earring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2689,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13666,'Ring_Box1','Refined Ring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2690,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13667,'Necklace_Box1','Refined Necklace Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2691,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13668,'Glove_Box1','Refined Glove Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2692,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13669,'Brooch_Box1','Refined Brooch Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2693,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13670,'Rosary_Box1','Refined Rosary Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2694,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13671,'Safety_Ring_Box1','Refined Safety Ring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2695,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13672,'Vesper_Core01_Box1','Refined Vesper Core 01 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2696,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13673,'Vesper_Core02_Box1','Refined Vesper Core 02 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2697,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13674,'Vesper_Core03_Box1','Refined Vesper Core 03 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2698,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13675,'Vesper_Core04_Box1','Refined Vesper Core 04 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2699,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13676,'Drooping_Kitty_Box1','Refined Drooping Cat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5279,1209600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13677,'Magestic_Goat_Box1','Refined Majestic Goat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5280,1209600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13678,'Deviruchi_Cap_Box1','Refined Deviruchi Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5281,1209600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13679,'Executioner_Box1','Refined Executioner Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1174,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13680,'Brood_Axe_Box1','Refined Bloody Axe Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1373,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13681,'Tomahawk_Box1','Refined Tomahawk Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1374,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13682,'Bow_Of_Rudra_Box1','Refined Rudra Bow Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1729,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13683,'Cutlas_Box1','Refined Cutlus Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13402,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13684,'Solar_Sword_Box1','Refined Solar Sword Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13403,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13685,'Sword_Breaker_Box1','Refined Swordbreaker Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13024,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13686,'Mail_Breaker_Box1','Refined Mailbreaker Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13025,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13687,'Moonlight_Sword_Box1','Refined Moonlight Dagger Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13026,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13688,'Spanner_Box1','Refined Wrench Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1534,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13689,'Bok_Choy_Box','Bok Choy Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7766,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13690,'Chung_E_Cake_Box','Green Maiden Cake Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7767,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13691,'Freyja_Overcoat_Box','Freya\'s Clothes Box',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2369,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13692,'Freyja_Boots_Box','Freya\'s Boots Box',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2428,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13693,'Freyja_Cape_Box','Freya\'s Manteau Box',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2533,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13694,'Freyja_Crown_Box','Freya\'s Crown Box',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5306,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13695,'Battle_Manual25_Box','Field Manual 25% Box',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14532,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13696,'Battle_Manual100_Box','Field Manual 100% Box',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14533,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13697,'J_Blessing10_Box','Blessing Scroll 10 Box',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12215,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13698,'J_Inc_Agi10_Box','Increase Agility Scroll 10 Box',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12216,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13699,'J_Wind_Walk10_Box','Wind Walk Scroll 10 Box',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12219,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13700,'J_Adrenaline10_Box','Adrenaline Rush Scroll 10 Box',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12220,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13701,'Pet_Egg_Scroll12','Pet Egg Scroll 12',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Pet_Egg_Scroll12);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13702,'Pet_Egg_Scroll13','Pet Egg Scroll 13',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Pet_Egg_Scroll13);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13703,'Pet_Egg_Scroll14','Pet Egg Scroll 14',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Pet_Egg_Scroll14);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13704,'Super_Pet_Egg5','Super Pet Egg 5',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Super_Pet_Egg5);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13705,'Super_Pet_Egg6','Super Pet Egg 6',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Super_Pet_Egg6);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13706,'Super_Pet_Egg7','Super Pet Egg 7',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Super_Pet_Egg7);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13707,'Super_Pet_Egg8','Super Pet Egg 8',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Super_Pet_Egg8);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13708,'Pet_Egg_Scroll_E','Pet Egg Scroll E',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Pet_Egg_Scroll_E);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13709,'BRO_Package_1','BRO Package Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13710,'Max_Weight_Up_Box','Gym Pass Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7776,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13711,'Small_Life_Potion_Box','Small Life Potion 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14534,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13712,'Small_Life_Potion_Box30','Small Life Potion 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14534,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13713,'Small_Life_Potion_Box50','Small Life Potion 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14534,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13714,'Med_Life_Potion_Box','Medium Life Potion 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14535,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13715,'Med_Life_Potion_Box30','Medium Life Potion 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14535,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13716,'Med_Life_Potion_Box50','Medium Life Potion 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14535,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13717,'Abrasive_Box5','Abrasive 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14536,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13718,'Abrasive_Box10','Abrasive 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14536,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13719,'Regeneration_Box5','Regeneration Potion 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14537,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13720,'Regeneration_Box10','Regeneration 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14537,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13721,'Dun_Tele_Scroll_Box10','Dungeon Teleport Scroll 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14527,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13722,'Pecopeco_Hairband_Box','Peco Peco Hairband Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5286,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13723,'Red_Glasses_Box','Red Glasses Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5288,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13724,'Whisper_Mask_Box','Whisper Mask Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5294,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13725,'Ramen_Hat_Box','Ramen Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Ramen_Hat_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13726,'Gold_Box_','Golden Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7777,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13727,'Silver_Box_','Silver Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7778,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13728,'Gold_Key1_Box','Golden Key 1 Box',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7779,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13729,'Gold_Key5_Box','Golden Key 5 Box',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7779,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13730,'Silver_Key1_Box','Silver Key 1 Box',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7780,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13731,'Silver_Key5_Box','Silver Key 5 Box',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7780,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13734,'Pecopeco_Hairband_Box1','Peco Peco Hairband Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5286,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13735,'Red_Glasses_Box1','Red Glasses Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5288,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13736,'Whisper_Mask_Box1','Whisper Mask Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5294,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13737,'Ramen_Hat_Box1','Ramen Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5293,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13738,'Glass_Of_Illusion_Box5','Glass of Illusion 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14538,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13739,'Glass_Of_Illusion_Box10','Glass of Illusion 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14538,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13740,'Shadow_Armor_S_Box5','Shadow Armor Scroll 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14539,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13741,'Shadow_Armor_S_Box10','Shadow Armor Scroll 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14539,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13742,'Shadow_Armor_S_Box30','Shadow Armor Scroll 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14539,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13743,'Holy_Armor_S_Box5','Holy Armor Scroll 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14540,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13744,'Holy_Armor_S_Box10','Holy Armor Scroll 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14540,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13745,'Holy_Armor_S_Box30','Holy Armor Scroll 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14540,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13746,'S_Def_Potion_Box10','Small Defense Potion 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14541,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13747,'S_Def_Potion_Box30','Small Defense Potion 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14541,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13748,'S_Def_Potion_Box50','Small Defense Potion 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14541,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13749,'B_Def_Potion_Box10','Big Defense Potion 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14542,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13750,'B_Def_Potion_Box30','Big Defense Potion 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14542,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13751,'B_Def_Potion_Box50','Big Defense Potion 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14542,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13752,'S_Mdef_Potion_Box10','Small Magic Defense Potion 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14543,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13753,'S_Mdef_Potion_Box30','Small Magic Defense Potion 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14543,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13754,'S_Mdef_Potion_Box50','Small Magic Defense Potion 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14543,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13755,'B_Mdef_Potion_Box10','Big Magic Defense Potion 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14544,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13756,'B_Mdef_Potion_Box30','Big Magic Defense Potion 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14544,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13757,'B_Mdef_Potion_Box50','Big Magic Defense Potion 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14544,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13758,'Battle_Manual_X3_Box','Field Manual 300% Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14545,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13759,'In_Blue_Herb_Box','Blue Herb Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 510,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13760,'Honey_Box','Honey Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 518,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13761,'Empty_Bottle_Box','Empty Bottle Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 713,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13762,'In_Royal_Jelly_Box','Royal Jelly Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 526,70;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13763,'5_Anniversary_Coin_Box','Coin Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2709,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13764,'Battle_Manual_Box_TW','Beginner\'s Field Manual 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7803,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13765,'Certificate_TW_Box','Certificate Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*getitem 7804,1;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13766,'Nagan_Box','Refined Nagan Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13407,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13767,'Skewer_Box','Refined Brocca Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1424,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13768,'Survival_Rod_Box','Refined Survivor\'s Rod Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1628,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13769,'Quadrille_Box','Refined Quadrille Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1537,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13770,'Great_Axe_Box','Refined Great Axe Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1378,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13771,'Bloody_Roar_Box','Refined Bloody Roar Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1273,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13772,'Hardback_Box','Refined Hardcover Book Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1567,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13773,'Fire_Brand_Box','Refined Fireblend Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Fire_Brand_Box); /*rentitem 13408,604800;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13774,'Immaterial_Sword_Box','Refined Immaterial Sword Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13409,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13775,'Unholy_Touch_Box','Refined Unholy Touch Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1274,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13776,'Cloak_Of_Survival_Box','Refined Survivor\'s Manteau Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2535,1209600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13777,'Masquerade_Box','Refined Masquerade Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5326,1209600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13778,'Orc_Hero_Helm_Box','Refined Helmet of Orc Hero Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5327,1209600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13779,'Evil_Wing_Ears_Box','Refined Wing of Diablo Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5328,1209600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13780,'Dark_Blindfold_Box','Refined Dark Blinder Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5329,1209600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13781,'kRO_Drooping_Kitty_Box','Refined Drooping Cat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5330,1209600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13782,'Corsair_Box','Refined Corsair Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5331,1209600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13783,'Bloody_Iron_Ball_Box','Refined Bloodied Shackle Ball Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2710,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13784,'Spiritual_Ring_Box','Refined Spiritual Ring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2711,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13785,'Nagan_Box1','Refined Nagan Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13407,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13786,'Skewer_Box1','Refined Brocca Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1424,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13787,'Survival_Rod_Box1','Refined Survivor\'s Rod Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1628,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13788,'Quadrille_Box1','Refined Quadrille Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1537,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13789,'Great_Axe_Box1','Refined Great Axe Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1378,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13790,'Bloody_Roar_Box1','Refined Bloody Roar Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1273,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13791,'Hardback_Box1','Refined Hardcover Book Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1567,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13792,'Fire_Brand_Box1','Refined Fireblend Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13408,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13793,'Immaterial_Sword_Box1','Refined Immaterial Sword Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13409,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13794,'Unholy_Touch_Box1','Refined Unholy Touch Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1274,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13795,'Cloak_Of_Survival_Box1','Refined Survivor\'s Manteau Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2535,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13796,'Masquerade_Box1','Refined Masquerade Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5326,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13797,'Orc_Hero_Helm_Box1','Refined Helmet of Orc Hero Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5327,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13798,'Evil_Wing_Ears_Box1','Refined Wing of Diablo Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5328,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13799,'Dark_Blindfold_Box1','Refined Dark Blinder Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5329,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13800,'kRO_Drooping_Kitty_Box1','Refined Drooping Cat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5330,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13801,'Corsair_Box1','Refined Corsair Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5331,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13802,'Bloody_Iron_Ball_Box1','Refined Bloodied Shackle Ball Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2710,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13803,'Spiritual_Ring_Box1','Refined Spiritual Ring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2711,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13804,'Fire_Cracker_Love_Box','I Love You Firecracker Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14546,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13805,'Fire_Cracker_Wday_Box','Whiteday Firecracker Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14547,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13806,'Fire_Cracker_Vday_Box','Valentine\'s Day Firecracker Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14548,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13807,'Fire_Cracker_Bday_Box','Birthday Firecracker Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14549,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13808,'Fire_Cracker_Xmas_Box','Xmas Firecracker Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14550,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13809,'Blue_Gemstone_Box','Blue Gemstone Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 717,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13810,'Blue_Potion_Box','Light Blue Potion Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 11502,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13811,'Food_Box_Lv1','Food Box Vol 1',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14551,1; getitem 14554,1; getitem 14557,1; getitem 14560,1; getitem 14563,1; getitem 14566,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13812,'Food_Box_Lv2','Food Box Vol 2',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14552,1; getitem 14555,1; getitem 14558,1; getitem 14561,1; getitem 14564,1; getitem 14567,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13813,'Food_Box_Lv3','Food Box Vol 3',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14553,1; getitem 14556,1; getitem 14559,1; getitem 14562,1; getitem 14565,1; getitem 14568,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13814,'Indonesia_Box','Healing Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 503,100; getitem 12684,10; getitem 607,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13815,'Knife_Goblin_Box','Knife Goblin Taming Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14569,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13816,'Flail_Goblin_Box','Flail Goblin Taming Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14570,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13817,'Hammer_Goblin_Box','Hammer Goblin Taming Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14571,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13818,'Red_Deleter_Box','Red Deleter Taming Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14572,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13819,'Diabolic_Box','Diabolic Taming Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14573,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13820,'Wanderer_Box','Wanderer Taming Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14574,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13821,'Green_Apple_Box','Green Apple Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7821,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13822,'Whole_Barbecue_Box','Barbeque Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7822,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13823,'Meat_Veg_Skewer_Box','Meat Skewer Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7823,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13824,'Spirit_Liquor_Box','Spirit Liquor Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7824,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13825,'Green_Box_','Old Green Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13826,'Power_Box1','Power Box 1',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 682,1; getitem 12123,1; getitem 12122,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13827,'Power_Box2','Power Box 2',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 683,1; getitem 12123,1; getitem 12122,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13828,'Resist_Box1','Resist Box 1',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12118,1; getitem 12119,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13829,'Resist_Box2','Resist Box 2',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12120,1; getitem 12121,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13830,'Stat_Boost1','Stat Boost 1',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INCSTR,60000,5; sc_start SC_INCAGI,60000,5; sc_start SC_INCVIT,60000,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13831,'Stat_Boost2','Stat Boost 2',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INCINT,60000,5; sc_start SC_INCLUK,60000,5; sc_start SC_INCDEX,60000,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13832,'Stat_Boost3','Stat Boost 3',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INCAGI,60000,5; sc_start SC_INCVIT,60000,5; sc_start SC_INCDEX,60000,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13833,'Stat_Boost4','Stat Boost 4',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INCINT,60000,5; sc_start SC_INCVIT,60000,5; sc_start SC_INCDEX,60000,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13834,'Dun_Tele_Scroll2_Box5','Dungeon Teleport Scroll II 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14581,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13835,'Dun_Tele_Scroll2_Box10','Dungeon Teleport Scroll II 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14581,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13836,'Mbl_Str_Dish_Box','Steamed Tongue Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12250,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13837,'Mbl_Agi_Dish_Box','Steamed Desert Scorpions Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12251,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13838,'Mbl_Int_Dish_Box','Dragon Breath Cocktail Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12252,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13839,'Mbl_Dex_Dish_Box','Hwergelmir\'s Tonic Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12253,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13840,'Mbl_Luk_Dish_Box','Cooked Nine Tail Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12254,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13841,'Mbl_Vit_Dish_Box','Immortal Stew Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12255,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13842,'Mbl_Kafra_Card_Box','Payment Statement for Kafra Employee Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12249,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13843,'Mbl_Battle_Manual_Box','Field Manual Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14532,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13844,'Heroic_Stone_Box','Heroic Stone Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7825,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13845,'Mysterious_Travel_Sack1','Mystery Travel Sack A',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Mysterious_Travel_Sack1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13846,'Mysterious_Travel_Sack2','Mystery Travel Sack B',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Mysterious_Travel_Sack2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13847,'Mysterious_Travel_Sack3','Mystery Travel Sack C',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Mysterious_Travel_Sack3);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13848,'Mysterious_Travel_Sack4','Mystery Travel Sack D',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Mysterious_Travel_Sack4);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13849,'WOB_Box_Rune5','Yellow Butterfly Wing 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14582,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13850,'WOB_Box_Rune10','Yellow Butterfly Wing Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14582,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13851,'WOB_Box_Schawaltz5','Green Butterfly Wing 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14583,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13852,'WOB_Box_Schawaltz10','Green Butterfly Wing Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14583,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13853,'WOB_Box_Rachel5','Red Butterfly Wing 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14584,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13854,'WOB_Box_Rachel10','Red Butterfly Wing Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14584,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13855,'WOB_Box_Local5','Blue Butterfly Wing 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14585,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13856,'WOB_Box_Local10','Blue Butterfly Wing Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14585,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13857,'Spark_Candy_Box5','Candy 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14586,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13858,'Spark_Candy_Box10','Candy 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14586,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13859,'Directive_A_Envelope','Directive Envelope A',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2734,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13860,'Directive_B_Envelope','Directive Envelope B',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2735,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13861,'Mini_Battle_Manual_Box','Small Field Manual Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12208,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13862,'Trial_Box','Trial Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12208,2; getitem 12215,15; getitem 12216,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13863,'Repair_Scroll_Box10','Repair Weapon Scroll 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14521,10; getitem 1002,10; getitem 998,10; getitem 756,10; getitem 999,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13864,'Hockey_Mask_Box','Hockey Mask Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5314,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13865,'Observer_Box','Observer Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5315,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13866,'Flying_Angel_Box','Flying Angel Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5210,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13867,'Neko_Mimi_Box','Neko Mimi Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5099,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13868,'MFH_Box','Moonlight Flower Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5214,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13869,'Chick_Hat_Box','Baby Chick Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5283,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13870,'New_Style_Box','Beauty Gift Certificate Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7622,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13871,'Magician_Card_Box','Mage Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Magician_Card_Box); /*getitem 4327,1; getitem 4309,1; getitem 4325,1; getitem 4208,1; getitem 4258,1; getitem 4191,1;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13872,'Acolyte_Card_Box','Acolyte Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Acolyte_Card_Box); /*getitem 4185,1; getitem 4312,1; getitem 4217,1; getitem 4280,1; getitem 4293,1;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13873,'Archer_Card_Box','Archer Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Archer_Card_Box); /*getitem 4297,1; getitem 4234,1; getitem 4199,1; getitem 4178,1; getitem 4252,1;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13874,'Swordman_Card_Box','Swordman Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Swordman_Card_Box); /*getitem 4319,1; getitem 4331,1; getitem 4220,1; getitem 4311,1; getitem 4246,1;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13875,'Thief_Card_Box','Thief Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Thief_Card_Box); /*getitem 4230,1; getitem 4210,1; getitem 4257,1; getitem 4172,1; getitem 4272,1;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13876,'Merchant_Card_Box','Merchant Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Merchant_Card_Box); /*getitem 4206,1; getitem 4281,1; getitem 4186,1; getitem 4233,1; getitem 4321,1;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13877,'Clock_Tower_Card_Box','Clock Tower Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 4244,1; getitem 4299,1; getitem 4313,1; getitem 4229,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13878,'Geffenia_Card_Box','Geffenia Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 4218,1; getitem 4269,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13879,'Owl_Card_Box','Owl Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 4237,1; getitem 4238,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13880,'Ghost_Card_Box','Ghost Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 4193,1; getitem 4294,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13881,'Nightmare_Card_Box','Nightmare Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 4127,1; getitem 4166,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13882,'Curse_Card_Box','Curse Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 4076,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13883,'Sleep_Card_Box','Sleep Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 4024,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13884,'Freeze_Card_Box','Freeze Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 4055,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13885,'Stun_Card_Box','Stun Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 4017,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13886,'Silence_Card_Box','Silence Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 4057,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13887,'Blind_Card_Box','Blind Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 4020,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13888,'Chaos_Card_Box','Chaos Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 4104,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13889,'Elunium_Box_','Elunium Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 985,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13890,'Oridecon_Box_','Oridecon Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 984,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13891,'Fire_Converter_Box','Fire Converter Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12114,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13892,'Water_Converter_Box','Water Converter Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12115,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13893,'Wind_Converter_Box','Wind Converter Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12117,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13894,'Earth_Converter_Box','Earth Converter Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12116,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13895,'Starter_Pack','Starter Pack',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7229,2; getitem 569,300; getitem 504,20; getitem 505,20; getitem 7060,30; getitem 2403,1; getitem 5039,1; getitem 2503,1; getitem 2307,1; getitem 616,1; getitem 603,1; getitem 617,1; getitem 610,5; getitem 604,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13896,'Mimic_Summon_Box5','Mimic Summoning 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12276,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13897,'Disguise_Summon_Box5','Disguise Summoning 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12277,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13898,'Alice_Summon_Box5','Alice Summoning 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12278,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13899,'Mimic_Summon_Box10','Mimic Summoning 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12276,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13900,'Disguise_Summon_Box10','Disguise Summoning 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12277,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13901,'Alice_Summon_Box10','Alice Summoning 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12278,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13902,'Fish_Head_Hat_Box','Fish Head Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5380,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13903,'Santa_Poring_Hat_Box','Santa Poring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5381,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13904,'Bell_Ribbon_Box','Bell Ribbon Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5382,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13905,'Hard_Core_Set_Box','XM Hardcore Set Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Hard_Core_Set_Box); /*getitem 12208,10; getitem 12209,10; getitem 12210,10;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13906,'Kitty_Set_Box','XM Kitty Set Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Kitty_Set_Box); /*getitem 5230,1; getitem 5231,1; getitem 5232,1; getitem 5233,1; getitem 5234,1;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13907,'Soft_Core_Set_Box','XM Softcore Set Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Soft_Core_Set_Box); /*getitem 12208,5; getitem 12209,5; getitem 12210,5;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13908,'Deviruchi_Set_Box','XM Deviruchi Set Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Deviruchi_Set_Box); /*getitem 5227,1; getitem 5228,1; getitem 5229,1;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13909,'MVP_Hunt_Box','MVP Hunting Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_MVP_Hunt_Box); /*getitem 7621,1; getitem 12210,1; getitem 12221,1; getitem 12214,3;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13910,'Brewing_Box','XM Brewing Set Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Brewing_Box); /*getitem 12204,10; getitem 12205,10; getitem 12206,10;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13911,'Xmas_Pet_Scroll','Christmas Pet Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Xmas_Pet_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13912,'Party_Blessing_Box','Party Blessing 10 Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14588,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13913,'Party_Inc_Agi_Box','Party Increase Agi 10 Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14589,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13914,'Party_Assumptio_Box','Party Assumptio 5 Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14590,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13915,'Love_Angel_Box','Love Angel Magic Powder Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12287,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13916,'Squirrel_Box','Squirrel Magic Powder Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12288,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13917,'Gogo_Box','Gogo Magic Powder Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12289,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13918,'Drooping_W_Kitty_Box','Koneko Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5372,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13919,'L_Magestic_Goat_Box','Baphomet Horns Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5374,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13920,'Satanic_Chain_P_Box','Flying Evil Wing Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5376,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13921,'Antique_Pipe_Box','Gentleman\'s Pipe Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5377,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13922,'Rabbit_Ear_Hat_Box','Bunny Top Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5378,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13923,'Darkness_Helm_Box','Dark Randgris Helm Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5373,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13924,'L_Orc_Hero_Helm_Box','Orc Hero Headdress Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5375,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13925,'Lucky_Scroll08','Lucky Scroll08',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Lucky_Scroll08);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13926,'Crusader_Card_Box','Crusader Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 4371,1; getitem 4311,1; getitem 4319,1; getitem 4331,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13927,'Alchemist_Card_Box','Alchemist Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 4281,1; getitem 4233,1; getitem 4343,1; getitem 4186,1; getitem 4036,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13928,'Rogue_Card_Box','Rogue Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 4039,1; getitem 4210,1; getitem 4257,1; getitem 4230,1; getitem 4348,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13929,'Bard_Dancer_Card_Box','Bard Dancer Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 4297,1; getitem 4234,1; getitem 4178,1; getitem 4381,1; getitem 4252,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13930,'Sage_Card_Box','Sage card box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 4382,1; getitem 4258,1; getitem 4325,1; getitem 4208,1; getitem 4327,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13931,'Monk_Card_Box','Monk Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 4312,1; getitem 4332,1; getitem 4185,1; getitem 4293,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13932,'Sylph_Box','Sylph Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 4345,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13933,'Undine_Box','Undine Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 4350,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13934,'Salamander_Box','Salamander Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 4380,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13935,'Soul_Box','Soul Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 4388,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13936,'Noum_Bpx','Gnome Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 4335,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13937,'Robo_Eye_Box','Robo Eye Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5325,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13938,'Twin_Ribbon_Box','Maiden\'s Twin Ribbon Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5187,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13939,'Diadem_Box','Diadem Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5313,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13940,'Siege_Tele_Scroll_Box','WoE Teleport Scroll 100 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14591,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13941,'Valentine_Scroll_TW','Taiwan Valentine Scroll',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13942,'Love_Angel_Box_1m','Love Angel Magic Powder Box 30 Days',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14009,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13943,'Squirrel_Box_1m','Squirrel Magic Powder Box 30 Days',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14010,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13944,'Gogo_Box_1m','Gogo Magic Powder Box 30 Days',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14011,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13945,'Br_SwordPackage','Swordman Package',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Br_SwordPackage);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13946,'Br_MagePackage','Magician Package',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Br_MagePackage);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13947,'Br_AcolPackage','Acolyte Package',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Br_AcolPackage);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13948,'Br_ArcherPackage','Archer Package',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Br_ArcherPackage);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13949,'Br_MerPackage','Merchant Package',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Br_MerPackage);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13950,'Br_ThiefPackage','Thief Package',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Br_ThiefPackage);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13951,'Wasteland_Outlaw_Box','Western Outlaw Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13109,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13952,'Lever_Action_Rifle_Box','Lever Action Rifle Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13170,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13953,'All_In_One_Ring_Box','All In One Ring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_All_In_One_Ring_Box); /*rentitem All_In_One_Ring,604800;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13954,'Spiritual_Tunic_Box','Spiritual Tunic Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2384,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13955,'Recuperative_Armor_Box','Recuvative Armor Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2385,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13956,'Shelter_Resistance_Box','Shell Of Resistance Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2132,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13957,'Sylphid_Manteau_Box','Silf Manteau Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2543,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13958,'Refresh_Shoes_Box','Refresh Shoes Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2439,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13959,'Toast_Box','Crunch Toast Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5391,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13960,'Name_Change_Coupon_Box','Identification Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7623,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13961,'Mojji_Box','Mochi Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 554,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13962,'Deprotai_Doll_Hat_Box','Defolty Doll Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5340,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13963,'Claris_Doll_Hat_Box','Glaris Doll Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5341,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13964,'Sorin_Doll_Hat_Box','Sorin Doll Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5342,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13965,'Tayelin_Doll_Hat_Box','Tailring Doll Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5343,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13966,'Binit_Doll_Hat_Box','Vinit Doll Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5344,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13967,'Debril_Doll_Hat_Box','W Doll Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5345,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13968,'Bubblegum_Lower_Box','Bubble Gum Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5394,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13969,'Lucky_Clip_Box','Lucky Clip Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2742,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13970,'Iron_10_Box','Iron Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 998,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13971,'Steel_10_Box','Steel Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 999,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13972,'Coal_10_Box','Coal Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 1003,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13973,'Poison_Bottle_30_Box','Poison Bottle Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 678,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13974,'TW_Scroll01','Fisherman Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13975,'Picture_Diary_Box','Diary Magic Powder Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12304,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13976,'Mini_Heart_Box','Mini Heart Magic Powder Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12305,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13977,'Newcomer_Box','Freshman Magic Powder Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12306,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13978,'Kid_Box','Kid Magic Powder Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12307,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13979,'Magic_Castle_Box','Magic Magic Powder Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12308,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13980,'Bulging_Head_Box','JJangu Magic Powder Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12309,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13981,'Picture_Diary_Box_1m','Diary Magic Powder Box 30 Days',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12304,2592000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13982,'Mini_Heart_Box_1m','Mini Heart Magic Powder Box 30 Days',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12305,2592000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13983,'Newcomer_Box_1m','Freshman Magic Powder Box 30 Days',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12306,2592000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13984,'Kid_Box_1m','Kid Magic Powder Box 30 Days',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12307,2592000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13985,'Magic_Castle_Box_1m','Magic Magic Powder Box 30 Days',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12308,2592000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13986,'Bulging_Head_Box_1m','JJangu Magic Powder Box 30 Days',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12309,2592000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13987,'Ori_Stone_5_Box','Rough Oridecon 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 756,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13988,'Ori_Stone_50_Box','Rough Oridecon 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 756,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13989,'Acidbomb_10_Box','Acid Bomb 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Acidbomb_10_Box); /*getitem 7135,10; getitem 7136,10;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13990,'Job_Manual50_Box','JOB Battle Manual Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14592,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13991,'Tiger_Mask_Box','Tiger Mask Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5098,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13992,'Cat_Hat_Box','Pussy Cat Bell Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5099,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13993,'Alice_Doll_Box','Alice Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5137,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13994,'Speed_Up_Potion_Box5','Speed Potion 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12016,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13995,'Speed_Up_Potion_Box10','Speed Potion 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12016,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13996,'Big_Bun_Box100','Big Bun 100 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14522,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13997,'Big_Bun_Box500','Big Bun 500 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14522,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13998,'Giant_Fly_Wing_Box500','Giant Fly Wing 500 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12212,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (13999,'Pill__Box100','Pill 100 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14523,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14000,'Pill__Box500','Pill 500 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14523,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14001,'Basic_Siege_Supply_Box','Recruit Siege Supply Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Basic_Siege_Supply_Box); /*getitem 11503,25; getitem 11504,10;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14002,'Adv_Siege_Supply_Box','Veteran Siege Supply Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Adv_Siege_Supply_Box); /*getitem 11503,50; getitem 11504,20;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14003,'Elite_Siege_Supply_Box','Elite Siege Supply Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Elite_Siege_Supply_Box); /*getitem 11503,100; getitem 11504,50;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14004,'Poison_Bottle_10_Box','Poison Bottle 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 678,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14005,'Poison_Bottle_5_Box','Poison Bottle 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 678,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14006,'F_Drooping_W_Kitty_Box','Evolved Drooping Cat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5372,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14007,'F_Rabbit_Ear_Hat_Box','Evolved Rabbits Headband Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5378,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14008,'F_L_Orc_Hero_Helm_Box','Evolved Helmet Of Orc Hero Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5375,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14009,'F_Love_Angel_Box','Love Angel Magic Powder Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12287,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14010,'F_Squirrel_Box','Squillroll Magic Powder Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12288,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14011,'F_Gogo_Box','Gogo Magic Powder Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12289,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14012,'F_Love_Angel_Box_1m','Love Angel Magic Powder Box 30 Days',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13915,2592000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14013,'F_Squirrel_Box_1m','Squillroll Magic Powder Box 30 Days',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13916,2592000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14014,'F_Gogo_Box_1m','Gogo Magic Powder Box 30 Days',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13917,2592000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14015,'F_Wasteland_Outlaw_Box','Western Outlaw Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13107,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14016,'F_Lever_Action_Rifle_Box','Lever Action Rifle Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13170,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14017,'F_All_In_One_Ring_Box','All In One Ring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2741,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14018,'F_Spritual_Tunic_Box','Spiritual Tunic Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2384,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14019,'F_Recuperative_Box','Recuvative Armor Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2385,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14020,'F_Shelter_Resist_Box','Shell Of Resistance Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2132,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14021,'F_Sylphid_Manteau_Box','Silf Manteau Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2543,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14022,'F_Refresh_Shoes_Box','Refresh Shoes Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2439,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14023,'F_Toast_Box','Crunch Toast Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5391,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14024,'F_Robo_Eye_Box','Robo Eye Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5325,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14025,'F_Twin_Ribbon_Box','Maiden\'s Twin Ribbon Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5187,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14026,'F_Diadem_Box','Diadem Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5313,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14027,'F_Fish_Head_Hat_Box','Fish Head Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5380,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14028,'F_Santa_Poring_Hat_Box','SantaPoring Cap Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5381,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14029,'F_Bell_Ribbon_Box','Bell Ribbon Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5382,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14030,'F_Mimic_Scroll_Box5','Mimic Summoning 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12276,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14031,'F_Disguise_Scroll_Box5','Disguise Summoning 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12277,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14032,'F_Alice_Scroll_Box5','Alice Summoning 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12278,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14033,'F_Mimic_Scroll_Box10','Mimic Summoning 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12276,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14034,'F_Disguise_Scroll_Box10','Disguise Summoning 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12277,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14035,'F_Alice_Scroll_Box10','Alice Summoning 10 Box)',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12278,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14036,'F_New_Style_Coupon_Box','New Style Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7622,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14037,'F_Repair_Scroll_Box','Repair Weapon Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14521,5; getitem 1002,5; getitem 998,5; getitem 756,5; getitem 999,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14038,'F_Repair_Scroll_Box10','Repair Weapon Scroll 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14521,10; getitem 1002,10; getitem 998,10; getitem 756,10; getitem 999,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14039,'F_Hockey_Mask_Box','Hockey Mask Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5314,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14040,'F_Observer_Box','Observer Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5315,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14041,'F_WOB_Rune_Box5','Yellow Butterfly Wing 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14582,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14042,'F_WOB_Rune_Box10','Yellow Butterfly Wing Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14582,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14043,'F_WOB_Schwaltz_Box5','Green Butterfly Wing 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14583,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14044,'F_WOB_Schwaltz_Box10','Green Butterfly Wing Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14583,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14045,'F_WOB_Rachel_Box5','Red Butterfly Wing 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14584,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14046,'F_WOB_Rachel_Box10','Red Butterfly Wing Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14584,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14047,'F_WOB_Local_Box5','Blue Butterfly Wing 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14585,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14048,'F_WOB_Local_Box10','Blue Butterfly Wing Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14585,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14049,'F_Spark_Candy_Box5','Candy 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14586,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14050,'F_Spark_Candy_Box10','Candy 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14586,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14051,'F_Dun_Tel_Scroll2_Box5','Dungeon Teleport Scroll II 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14581,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14052,'F_Dun_Tel_Scroll2_Box10','Dungeon Teleport Scroll II 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14581,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14053,'F_Little_Angel_Doll_Box','Little Angel Doll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5324,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14054,'F_Triple_Poring_Hat_Box','Poring 3 Hats Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5255,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14055,'F_Nagan_Box','Refined Nagan Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13407,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14056,'F_Skewer_Box','Refined Brocca Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1424,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14057,'F_Survival_Rod_Box','Refined Survivor\'s Rod Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1628,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14058,'F_Quadrille_Box','Refined Quadrille Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1537,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14059,'F_Great_Axe_Box','Refined Great Axe Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1378,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14060,'F_Bloody_Roar_Box','Refined Bloody Roar Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1273,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14061,'F_Hardback_Box','Refined Hardcover Book Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1567,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14062,'F_Fire_Brand_Box','Refined Fireblend Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13408,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14063,'F_Immaterial_Sword_Box','Refined Immaterial Sword Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13409,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14064,'F_Unholy_Touch_Box','Refined Unholy Touch Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1274,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14065,'F_Clack_Of_Servival_Box','Refined Survivor\'s Manteau Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2535,1209600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14066,'F_Masquerade_Box','Refined Masquerade Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5326,1209600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14067,'F_Orc_Hero_Helm_Box','Refined Helmet of Orc Hero Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5327,1209600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14068,'F_Ear_Of_Devil_Wing_Box','Refined Wing of Diablo Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5328,1209600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14069,'F_Dark_Blindfold_Box','Refined Dark Blinder Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5329,1209600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14070,'F_K_Drooping_Kitty_Box','Refined Drooping Cat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5330,1209600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14071,'F_Corsair_Box','Refined Corsair Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5331,1209600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14072,'F_Bloody_Iron_Ball_Box','Refined Bloodied Shackle Ball Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2710,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14073,'F_Spiritual_Ring_Box','Refined Spiritual Ring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2711,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14074,'F_G_O_I_Box5','Wine Glass of Illusion 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14538,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14075,'F_G_O_I_Box10','Glass Of Illusion 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14538,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14076,'F_Shadow_Armor_S_Box5','Scroll of Shadow Armor 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14539,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14077,'F_Shadow_Armor_S_Box10','Scroll of Shadow Armor 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14539,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14078,'F_Shadow_Armor_S_Box30','Scroll of Shadow Armor 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14539,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14079,'F_Holy_Armor_S_Box5','Scroll of Holy Armor 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14540,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14080,'F_Holy_Armor_S_Box10','Scroll of Holy Armor 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14540,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14081,'F_Holy_Armor_S_Box30','Scroll of Holy Armor 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14540,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14082,'FS_Def_Potion_Box10','Small Defense Potion 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14541,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14083,'FS_Def_Potion_Box30','Small Physical Defense Potion 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14541,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14084,'FS_Def_Potion_Box50','Small Physical Defense Potion 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14541,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14085,'FB_Def_Potion_Box10','Big Defense Potion 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14542,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14086,'FB_Def_Potion_Box30','Large Physical Defense Potion 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14542,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14087,'FB_Def_Potion_Box50','Large Physical Defense Potion 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14542,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14088,'FS_Mdef_Potion_Box10','Small Magic Defense Potion 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14543,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14089,'FS_Mdef_Potion_Box30','Small Magical Defense Potion 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14543,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14090,'FS_Mdef_Potion_Box50','Small Magical Defense Potion 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14543,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14091,'FB_Mdef_Potion_Box10','Big Magic Defense Potion 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14544,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14092,'FB_Mdef_Potion_Box30','Large Magical Defense Potion 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14544,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14093,'FB_Mdef_Potion_Box50','Large Magical Defense Potion 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14544,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14094,'F_Flying_Angel_Box','Flying Angel Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5210,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14095,'F_Cat_Hat_Box','Neko Mimi Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5099,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14096,'F_M_F_H_Box','Moonlight Flower Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5214,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14097,'F_Chick_Hat_Box','Baby Chick Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5283,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14098,'F_Pecopeco_Hairband_Box','Peco Peco Hairband Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5286,1209600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14099,'F_Red_Glasses_Box','Red Glasses Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5288,1209600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14100,'F_Whisper_Mask_Box','Whisper Mask Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5294,1209600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14101,'F_Ramen_Hat_Box','Ramen Hat Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5293,1209600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14102,'F_Dun_Tele_Scroll1_Box','Dungeon Teleport Scroll 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14527,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14103,'F_Max_Weight_Up_Box','Gym Membership Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7776,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14104,'F_S_Life_Potion_Box','Small Life Potion 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14534,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14105,'F_S_Life_Potion_Box30','Small Life Potion 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14534,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14106,'F_S_Life_Potion_Box50','Small Life Potion 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14534,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14107,'F_M_Life_Potion_Box','Medium Life Potion 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14535,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14108,'F_M_Life_Potion_Box30','Large Life Potion 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14535,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14109,'F_M_Life_Potion_Box50','Large Life Potion 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14535,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14110,'F_Abrasive_Box5','Abrasive 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14536,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14111,'F_Abrasive_Box10','Abrasive 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14536,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14112,'F_Regeneration_Box5','Regeneration Potion 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14537,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14113,'F_Regeneration_Box10','Regeneration Potion 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14537,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14114,'F_Dun_Tele_Scroll_Box10','Dungeon Teleport Scroll 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14527,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14115,'F_Infiltrator_Box','Refined Infiltrator Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1267,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14116,'F_Muramasa_Box','Refined Muramasa Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1173,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14117,'F_Excalibur_Box','Refined Excalibur Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13401,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14118,'F_Combat_Knife_Box','Combat Knife Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13021,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14119,'F_Counter_Dagger_Box','Counter Dagger Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13022,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14120,'F_Kaiser_Knuckle_Box','Refined Kaiser Knuckle Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1817,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14121,'F_Mighty_Staff_Box','Refined Mighty Staff Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1623,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14122,'F_Right_Epsilon_Box','Light Epsilon Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1372,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14123,'F_Balistar_Box','Refined Ballista Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1728,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14124,'F_Diary_Of_Great_Sage','Sage\'s Diary Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1563,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14125,'F_Asura_Box','Asura Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13023,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14126,'F_Apple_Of_Archer_Box','Apple of Archer Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5265,1209600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14127,'F_Bunny_Band_Box','Bunny Band Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5266,1209600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14128,'F_Sahkkat_Box','Refined Sakkat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5267,1209600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14129,'F_Lord_Circlet_Box','Refined Grand Circlet Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5268,1209600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14130,'F_Elven_Ears_Box','Elven Ears Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2686,1209600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14131,'F_Steel_Flower_Box','Steel Flower Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2687,1209600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14132,'F_Critical_Ring_Box','Critical Ring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2688,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14133,'F_Earring_Box','Earring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2689,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14134,'F_Ring_Box','Ring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2690,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14135,'F_Necklace_Box','Necklace Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2691,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14136,'F_Glove_Box','Glove Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2692,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14137,'F_Brooch_Box','Brooch Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2693,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14138,'F_Rosary_Box','Rosary Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2694,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14139,'F_Safety_Ring_Box','Safety Ring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2695,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14140,'F_Vesper_Core_Box01','Refined Vesper Core 01 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2696,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14141,'F_Vesper_Core_Box02','Refined Vesper Core 02 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2697,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14142,'F_Vesper_Core_Box03','Refined Vesper Core 03 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2698,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14143,'F_Vesper_Core_Box04','Refined Vesper Core 04 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2699,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14144,'F_Vigorgra_Package1','Vigorgra Box1',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12250,2; getitem 12251,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14145,'F_Vigorgra_Package2','Vigorgra Box2',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12250,2; getitem 12255,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14146,'F_Vigorgra_Package3','Vigorgra Box3',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12252,2; getitem 12253,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14147,'F_Vigorgra_Package4','Vigorgra Box4',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12252,2; getitem 12255,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14148,'F_Vigorgra_Package5','Vigorgra Box5',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12252,2; getitem 12250,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14149,'F_Vigorgra_Package6','Vigorgra Box6',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12250,2; getitem 12251,2; getitem 12208,2; getitem 12215,15; getitem 12217,20; getitem 12211,1; getitem 7621,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14150,'F_Vigorgra_Package7','Vigorgra Box7',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12250,4; getitem 12251,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14151,'F_Vigorgra_Package8','Vigorgra Box8',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12250,4; getitem 12255,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14152,'F_Vigorgra_Package9','Start your Journey Pack',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12252,4; getitem 12253,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14153,'F_Vigorgra_Package10','Siege Mode Pack',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12252,4; getitem 12255,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14154,'F_Vigorgra_Package11','1 Hour Survival Pack',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12252,4; getitem 12250,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14155,'F_Vigorgra_Package12','Weekend Hunting Pack',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12250,4; getitem 12251,4; getitem 12208,4; getitem 12215,30; getitem 12217,40; getitem 12211,2; getitem 7621,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14156,'F_Battle_Manual_Box','Battle Manual Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12208,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14157,'F_Insurance_Package','Insurance Package',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12209,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14158,'F_Bubble_Gum_Box','Bubble Gum Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12210,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14159,'F_Str_Dish_Box','Steamed Tongue Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12202,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14160,'F_Agi_Dish_Box','Steamed Scorpion Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12203,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14161,'F_Int_Dish_Box','Dragon Breath Cocktail Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12204,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14162,'F_Dex_Dish_Box','Hwergelmir\'s Tonic Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12205,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14163,'F_Luk_Dish_Box','Nine Tail Dish Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12206,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14164,'F_Vit_Dish_Box','Stew Of Immortality Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12207,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14165,'F_Kafra_Card_Box','Kafra Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12211,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14166,'F_Giant_Fly_Wing_Box','Giant Fly Wing Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12212,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14167,'F_Neuralizer_Box','Neuralizer Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12213,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14168,'F_Convex_Mirror_Box','Convex Mirror Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12214,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14169,'F_Blessing_10_Scroll_Box','Blessing 10 Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12215,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14170,'F_Inc_Agi_10_Scroll_Box','Increase AGI 10 scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12216,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14171,'F_Aspersio_5_Scroll_Box','Aspersio 5 Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12217,10; getitem 523,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14172,'F_Assumptio_5_Scroll_Box','Assumptio 5 Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12218,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14173,'F_Wind_Walk_10_Scroll_Box','Wind Walk 10 Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12219,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14174,'F_Adrenaline_Scroll_Box','Adrenaline 5 Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12220,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14175,'F_Megaphone_Box','Megaphone 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12221,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14176,'F_Enriched_Elunium_Box','Enriched Elunium Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7619,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14177,'F_Enriched_Oridecon_Box','Enriched Oridecon Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7620,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14178,'F_Token_Of_Siegfried_Box','Token of Siegfried Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7621,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14179,'F_Giant_Fly_Wing_Box50','Giant Fly Wing 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12212,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14180,'F_Giant_Fly_Wing_Box100','Giant Fly Wing 100 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12212,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14181,'F_Dex_Dish_Box30','Hwergelmir\'s Tonic 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12205,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14182,'F_Dex_Dish_Box50','Hwergelmir\'s Tonic 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12205,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14183,'F_Luk_Dish_Box30','Nine Tail Dish 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12206,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14184,'F_Luk_Dish_Box50','Nine Tail Dish 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12206,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14185,'F_Inc_Agi_10_Box30','Increase Agility Scroll 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12216,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14186,'F_Inc_Agi_10_Box50','Increase Agility Scroll 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12216,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14187,'F_Vit_Dish_Box30','Stew of Immortality 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12207,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14188,'F_Vit_Dish_Box50','Stew of Immortality 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12207,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14189,'F_Insurance_Package30','Life Insurrance 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12209,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14190,'F_Insurance_Package50','Life Insurrance 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12209,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14191,'F_Convex_Mirror_Box5','Convex Mirror 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12214,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14192,'F_Convex_Mirror_Box30','Convex Mirror 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12214,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14193,'F_Blessing10_Box30','Blessing Scroll 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12215,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14194,'F_Blessing10_Box50','Lv10 Blessing Scroll Box 50',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12215,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14195,'F_Adrenaline10_Box30','Adrenaline Rush Scroll 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12220,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14196,'F_Adrenaline10_Box50','Adrenaline Rush Scroll 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12220,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14197,'F_Assumptio_5_Box30','Assumptio Scroll 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12218,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14198,'F_Assumptio_5_Box50','Lv5 Assumptio Scroll Box 50',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12218,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14199,'F_Aspersio_5_Box30','Aspersio Scroll 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12217,30; getitem 523,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14200,'F_Aspersio_5_Box50','Aspersio Scroll 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12217,50; getitem 523,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14201,'F_Agi_Dish_Box30','Steamed Scorpion 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12203,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14202,'F_Agi_Dish_Box50','Steamed Scorpion 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12203,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14203,'F_Wind_Walk10_Box30','Wind Walk Scroll 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12219,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14204,'F_Wind_Walk10_Box50','Wind Walk Scroll 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12219,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14205,'F_Int_Dish_Box30','Dragon Breath Cocktail 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12204,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14206,'F_Int_Dish_Box50','Dragon Breath Cocktail 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12204,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14207,'F_Battle_Manual_Box1','Field Manual Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12208,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14208,'F_Battle_Manual_Box5','Battle Manual 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12208,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14209,'F_Siegfried_Box5','Token of Siegfried 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7621,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14210,'F_Siegfried_Box20','Token of Siegfried 20 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7621,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14211,'F_Kafra_Card_Box30','Kafra Card 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12211,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14212,'F_Kafra_Card_Box50','Kafra Card 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12211,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14213,'F_Str_Dish_Box30','Steamed Tongue 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12202,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14214,'F_Str_Dish_Box50','Steamed Tongue 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12202,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14215,'F_Bubble_Gum_Box1','Bubble Gum Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12210,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14216,'F_Bubble_Gum_Box5','Bubble Gum 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12210,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14217,'F_Megaphone_Box1','Megaphone Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12221,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14218,'F_Megaphone_Box5','Megaphone 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12221,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14219,'F_Enriched_Elunium_Box5','Enriched Elunium 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7619,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14220,'F_Enriched_Oridecon_Box5','Enriched Oridecon 5 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7620,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14221,'MP_Scroll_Box','Mystical Amplification Scroll 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14593,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14222,'MP_Scroll_Box30','Mystical Amplification Scroll 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14593,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14223,'MP_Scroll_Box50','Mystical Amplification Scroll 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14593,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14224,'Quagmire_Scroll_Box','Quagmire Scroll 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14594,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14225,'Quagmire_Scroll_Box30','Quagmire Scroll 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14594,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14226,'Quagmire_Scroll_Box50','Quagmire Scroll 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14594,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14227,'Healing_Staff_Box','Healing Staff Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1638,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14228,'Praxinus_Box','Praccsinos Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2752,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14229,'Cherry_Blossom_Scroll','Cherry Blossom Scroll',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Sakura_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14230,'Note_Headphones_Box','Note Headphones Box',18,NULL,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5151,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14231,'Novice_Breastplate_Boxes','Novice Breastplate Boxes',18,NULL,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14232,'Yggdrasilberry_Box_','Yggdrasil Berry 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 607,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14233,'Dead_Tree_Branch_Box1','Dead Branch 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 604,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14234,'Dead_Tree_Branch_Box2','Dead Branch 25 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 604,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14235,'Field_Manual_Box_2','Field Manual 2 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12208,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14236,'Steamed_Tongue_Box_20','Steamed Tongue 20 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12202,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14237,'Steamed_Desert_Scorpions_Box_20','Steamed Desert Scorpions Box(20)',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12203,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14238,'Stew_Of_Immortality_Box_20','Immortal Stew 20 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12207,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14239,'Dragon_Breath_Cocktail_Box_20','Dragon Breath Cocktail 20 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12204,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14240,'Hwergelmir\'s_Tonic_Box_20','Hwergelmir\'s Tonic 20 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12205,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14241,'Nine_Tail_Dish_Box_20','Nine Tail Dish 20 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12206,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14242,'Beholder_Ring_Box','Beholder Ring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Beholder_Ring_Box); /*rentitem 2753,604800;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14243,'Hallow_Ring_Box','Hallow Ring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Hallow_Ring_Box); /*rentitem 2754,604800;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14244,'Clamorous_Ring_Box','Clamorous Ring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Clamorous_Ring_Box); /*rentitem 2755,604800;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14245,'Chemical_Ring_Box','Chemical Ring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Chemical_Ring_Box); /*rentitem 2756,604800;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14246,'Insecticide_Ring_Box','Insecticide Ring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Insecticide_Ring_Box); /*rentitem 2757,604800;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14247,'Fisher_Ring_Box','Fisher Ring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Fisher_Ring_Box); /*rentitem 2758,604800;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14248,'Decussate_Ring_Box','Decussate Ring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Decussate_Ring_Box); /*rentitem 2759,604800;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14249,'Bloody_Ring_Box','Bloody Ring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Bloody_Ring_Box); /*rentitem 2760,604800;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14250,'Satanic_Ring_Box','Satanic Ring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Satanic_Ring_Box); /*rentitem 2761,604800;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14251,'Dragoon_Ring_Box','Dragon Ring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Dragoon_Ring_Box); /*rentitem 2762,604800;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14252,'Beholder_Ring_Box2','Beholder Ring Box II',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2753,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14253,'Hallow_Ring_Box2','Hallow Ring Box II',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2754,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14254,'Clamorous_Ring_Box2','Clamorous Ring Box II',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2755,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14255,'Chemical_Ring_Box2','Chemical Ring Box II',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2756,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14256,'Insecticide_Ring_Box2','Insecticide Ring Box II',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2757,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14257,'Fisher_Ring_Box2','Fisher Ring Box II',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2758,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14258,'Decussate_Ring_Box2','Decussate Ring Box II',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2759,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14259,'Bloody_Ring_Box2','Bloody Ring Box II',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2760,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14260,'Satanic_Ring_Box2','Satanic Ring Box II',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2761,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14261,'Dragoon_Ring_Box2','Dragon Ring Box II',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2762,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14262,'Diary_Magic_Powder_Box','Diary Magic Powder Box',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12304,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14263,'Mini_Heart_Magic_Powder_Box','Mini Heart Magic Powder Box',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12305,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14264,'Freshman_Magic_Powder_Box','Freshman Magic Powder Box',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12306,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14265,'Kid_Magic_Powder_Box','Kid Magic Powder Box',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12307,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14266,'Magic_Magic_Powder_Box','Magic Magic Powder Box',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12308,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14267,'JJangu_Magic_Powder_Box','JJangu Magic Powder Box',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12309,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14268,'Diary_Magic_Powder_Box4','Diary Magic Powder Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14269,'Mini_Heart_Magic_Powder_Box4','Mini Heart Magic Powder Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14270,'Freshman_Magic_Powder_Box4','Freshman Magic Powder Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14271,'Kid_Magic_Powder_Box4','Kid Magic Powder Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14272,'Magic_Magic_Powder_Box4','Magic Magic Powder Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14273,'JJangu_Magic_Powder_Box4','JJangu Magic Powder Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14274,'Amplification_10_Scroll_Box2','Mystical Amplification Scroll 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14593,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14275,'Amplification_30_Scroll_Box2','Mystical Amplification Scroll 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14593,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14276,'Amplification_50_Scroll_Box2','Mystical Amplification Scroll 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14593,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14277,'Quagmire_10_Scroll_Box2','Quagmire Scroll 10 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14594,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14278,'Quagmire_30_Scroll_Box2','Quagmire Scroll 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14594,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14279,'Quagmire_50_Scroll_Box2','Quagmire Scroll 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14594,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14280,'Healing_Staff_Box2','Healing Staff Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 1638,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14281,'Praccsinos_Box','Praccsinos Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2752,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14282,'Emperium_Box','Emperium Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 714,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14283,'Marriage_Certificate_Box','Written Oath Of Marriage Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6026,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14284,'Muffler_Box','Muffler Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2548,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14285,'Balkiriah_Shield_Box','Balkiriah Shield Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2137,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14286,'Skull_Ring_Box','Skull Ring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2763,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14287,'Baricade_Repair_Kit','Barricade Repair Kit',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 1019,30; getitem 999,10; getitem 1011,10; getitem 984,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14288,'Guardian_Stone_Repair_Kit','Guardian Stone Repair Kit',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 984,1; getitem 985,1; getitem 7049,30; getitem 717,5; getitem 716,5; getitem 715,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14289,'Cloth_Dye_Coupon_Box','New Clothing Dye Coupon Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6046,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14290,'Cloth_Dye_Coupon2_Box','Original Clothing Dye Coupon Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6047,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14291,'Cloth_Dye_Coupon3_Box','Clothing Dye Coupon Box',2,NULL,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6046,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14292,'Cloth_Dye_Coupon4_Box','Clothing Dye Coupon Box II',2,NULL,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6047,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14293,'Mercenary_Contract_Box','Mercenary Contract Box',2,NULL,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6050,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14294,'Mercenary_Contract_Box5','Mercenary Contract Box 5ea',2,NULL,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6050,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14295,'Mercenary_Contract_Box10','Mercenary Contract Box 10ea',2,NULL,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6050,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14296,'Angel_Scroll','Angel Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Angel_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14297,'Devil_Scroll','Devil Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Devil_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14298,'Surprise_Scroll','Surprise Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Surprise_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14300,'Mask_Of_Ifrit_Box','Mask Of Ifrit Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5420,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14301,'Ifrit\'s_Ear_Box','Ears Of Ifrit Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5421,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14304,'Scuba_Mask_Box','Scuba Mask Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5397,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14306,'RWC_Special_Scroll','RWC Special Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_RWC_Special_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14307,'RWC_Limited_Scroll','RWC Limited Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_RWC_Limited_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14308,'Ardor_Scroll','Ardor Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14314,'PhreeoniS_Box','Phreeoni Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14597,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14315,'GhostringS_Box','Ghostring Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14598,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14316,'July7_Scroll','July7 Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_July7_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14317,'Bacsojin_Scroll','Bacsojin Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Bacsojin_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14321,'Holy_Sabre_Box','Holy Sabre Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13419,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14322,'Book_Of_Prayer_Box','Book of Prayer Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1578,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14323,'Phenomena_Whip_Box','Phenomena Whip Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1982,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14324,'Staff_Of_Darkness_Box','Staff of Darkness Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1642,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14325,'Monk_Knuckle_Box','Monk Knuckle Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1828,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14326,'Mace_Of_Madness_Box','Mace of Madness Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1547,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14327,'Spear_Of_Excellent_Box','Spear of Excellent Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1427,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14328,'Bow_Of_Evil_Box','Bow of Evil Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1744,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14329,'Katar_Of_Speed_Box','Katar of Speed Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1283,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14330,'Sharpshooter_Revolver_Box','Sharpshooter Revolver Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13111,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14343,'Spiked_Scarf_Box','Spiked Scarf Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5462,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14344,'Rainbow_Scarf_Box','Rainbow Scarf Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5463,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14345,'Animal_Scroll','Animal Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Animal_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14349,'Mental_Potion20_Box','Mental Potion 20 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14600,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14350,'Mental_Potion50_Box','Mental Potion 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14600,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14351,'Tyr\'s_Blessing20_Box','Tyr\'s Blessing 20 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14601,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14352,'Tyr\'s_Blessing50_Box','Tyr\'s Blessing 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14601,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14361,'Orc_HeroS_Box','Orc HeroS Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14604,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14362,'Orc_LoadS_Box','Orc LoadS Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14605,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14363,'Heart_Scroll','Heart Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Heart_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14372,'Powder_Snow_Box','Powder Snow Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12317,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14375,'Holy_Celestial_Axe_Box','Celestial Axe Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 1383,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14376,'Angeling_Pot_Box','Angeling Potion Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12350,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14377,'Shout_Megaphone_Box','Scream Megaphone Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12351,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14379,'Love_Daddy_Box','Love Daddy Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5489,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14380,'Anubis_Helm_Box','Anubis Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5490,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14381,'Piercing_Box_M','Piercing Box M',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 1644,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14382,'Lich_Bone_Box_M','Lich Bone Box M',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 1645,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14383,'Long_Horn_Box_M','Long Horn Box M',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 1428,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14384,'Hunting_Spear_Box_M','Hunting Spear Box M',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 1429,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14385,'Death_Note_Box_M','Death Note Box M',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 1579,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14386,'Destruction_Box_M','Destruction Box M',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2003,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14387,'Rider_Insignia_Box_M','Rider Insignia Box M',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2551,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14388,'Mithril_Cape_Box_M','Mithril Cape Box M',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2552,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14389,'Sniping_Box_M','Sniping Box M',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2398,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14390,'Orleans_Box_M','Orleans Box M',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2785,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14391,'Spiritual_Box_M','Spiritual Box M',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2786,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14392,'Variant_Box_M','Variant Box M',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2449,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14393,'Almighty_Charm_Box','Universal Amulet Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7945,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14407,'Xmas_Scroll','Xmas Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14408,'New_Year_Scroll','New Year Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_New_Year_Scroll);',NULL,NULL); -# -REPLACE INTO `item_db_re` VALUES (14426,'Fortune_Sword_Box','Neo Fortune Sword Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13043,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14427,'House_Auger_Box','Neo House Auger',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13044,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14428,'Kamaitachi_Box','Neo Kamaitachi Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13045,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14429,'Berserk_Guitar_Box','Neo Berserk Guitar Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1928,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14430,'Doom_Slayer_Box','Neo Doom Slayer Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1386,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14431,'Huuma_Blaze_Shuriken_Box','Neo Huuma Blaze Shuriken Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13308,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14432,'Odin\'s_Blessing_Box','Neo Odin\'s Blessing Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 15001,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14433,'Ring_Of_Flame_Lord_Box','Neo Ring of Flame Lord Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2792,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14434,'Ring_Of_Resonance_Box','Neo Ring of Resonance Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2793,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14435,'Boys_Cap_Box','Neo Boys Cap Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5492,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14436,'Ulle\'s_Cap_Box','Neo Ulle\'s Cap Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5493,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14437,'Sphinx_Helm_Box','Neo Sphinx Helm Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5494,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14438,'Honglyun\'s_Sword_Box','Honglyun\'s Sword Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13420,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14439,'Power_Of_Thor_Box','Power Of Thor Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5495,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14440,'Dice_Hat_Box','Dice Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5496,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14441,'King_Tiger_Doll_Hat_Box','King Tiger Doll Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5497,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14442,'Wondering_Wolf_Helm_Box','Wondering Wolf Helm Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5498,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14443,'Pizza_Hat_Box','Pizza Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5499,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14444,'Icecream_Hat_Box','Icecream Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5500,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14447,'Pirate\'s_Pride_Box','Pirate\'s Pride Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5501,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14448,'Necromencer\'s_Hood_Box','Necromancer\'s Hood Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5502,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14459,'Rabbit_Magic_Hat_Box','Magic Rabbit Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5503,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14460,'China_Wedding_Veil_Box','RO 5th Wedding Anniversary Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5504,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14461,'Asara_Fairy_Hat_Box','Ashura Fairy Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5505,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14466,'Valentine_Pledge_Box','Valentine\'s Emblem Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Valentine_Pledge_Box); /*rentitem 5817,525600;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14469,'Ox_Tail_Scroll','Ox Tail Egg',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Ox_Tail_Scroll);',NULL,NULL); -#REPLACE INTO `item_db_re` VALUES (14470,'','',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#REPLACE INTO `item_db_re` VALUES (14471,'','',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#REPLACE INTO `item_db_re` VALUES (14472,'','',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#REPLACE INTO `item_db_re` VALUES (14473,'','',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#REPLACE INTO `item_db_re` VALUES (14474,'','',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#REPLACE INTO `item_db_re` VALUES (14475,'','',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#REPLACE INTO `item_db_re` VALUES (14476,'','',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#REPLACE INTO `item_db_re` VALUES (14477,'','',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#REPLACE INTO `item_db_re` VALUES (14478,'','',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#REPLACE INTO `item_db_re` VALUES (14479,'','',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#REPLACE INTO `item_db_re` VALUES (14480,'','',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#REPLACE INTO `item_db_re` VALUES (14481,'','',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#REPLACE INTO `item_db_re` VALUES (14482,'','',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#REPLACE INTO `item_db_re` VALUES (14483,'','',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#REPLACE INTO `item_db_re` VALUES (14484,'','',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14485,'Academy_Badge_Box','Academy Badge Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2751,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14486,'Academy_Fresh_Hat_Box','Academy Fresh Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5406,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14487,'Academy_Gradu_Cap_Box','Academy Gradu Cap Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5407,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14488,'Blue_Pajamas_Hat_Box','Blue Pajamas Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5506,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14489,'Pink_Pajamas_Hat_Box','Pink Pajamas Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5507,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14490,'Shark_Hat_Box','Shark Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5508,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14494,'Samambaia_Box','Samambaia Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5511,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14495,'Aquarius_Diadem_Box','Aquarius Diadem Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5512,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14496,'Aquarius_Crown_Box','Aquarius Crown Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5513,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14497,'Pisces_Diadem_Box','Pisces Diadem Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5514,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14498,'Pisces_Crown_Box','Pisces Crown Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5515,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14499,'Peacock_Feather_Box','Peacock Feather Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5519,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14500,'Insurance60','Life Insurrance Certificate',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_LIFEINSURANCE,3600000,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14505,'Dungeon_1_hour_Ticket','Dungeon 1 Hour Ticket',2,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'warp "1@sthb",0,0; /*No map+coord info*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14506,'Dungeon_Ticket','Dungeon Ticket',2,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'warp "1@sthc",0,0; /*No map+coord info*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14508,'Zeny_Scroll','Zeny Pet Egg Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'Zeny += rand(1000,77777);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14509,'Light_Center_Pot','Light Concentration Potion',2,800,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_ASPDPOTION0,1800000,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14510,'Light_Awakening_Pot','Light Awakening Potion',2,1500,NULL,20,NULL,NULL,NULL,NULL,0xFFF7FEEF,63,2,NULL,NULL,'40',NULL,NULL,'sc_start SC_ASPDPOTION1,1800000,6;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14511,'Light_Berserk_Pot','Light Berserk Potion',2,3000,NULL,20,NULL,NULL,NULL,NULL,0x41E646A6,63,2,NULL,NULL,'85',NULL,NULL,'sc_start SC_ASPDPOTION2,1800000,9;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14512,'Meteor_10_Scroll','Meteor Storm Scroll',11,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "WZ_METEOR",10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14513,'Storm_10_Scroll','Storm Gust Scroll',11,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "WZ_STORMGUST",10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14514,'Vermilion_10_Scroll','Lord of Vermilion Scroll',11,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "WZ_VERMILION",10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14515,'Lex_Aeterna_Scroll','Lex Aeterna Scroll',11,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "PR_LEXAETERNA",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14516,'Magnificat_5_Scroll','Magnificat Scroll',11,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "PR_MAGNIFICAT",5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14517,'CP_Helm_Scroll','Chemical Protection Helm Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'unitskilluseid getcharid(3),"AM_CP_HELM",5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14518,'CP_Shield_Scroll','Chemical Protection Shield Scrol',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'unitskilluseid getcharid(3),"AM_CP_SHIELD",5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14519,'CP_Armor_Scroll','Chemical Protection Armor Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'unitskilluseid getcharid(3),"AM_CP_ARMOR",5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14520,'CP_Weapon_Scroll','Chemical Protection Weapon Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'unitskilluseid getcharid(3),"AM_CP_WEAPON",5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14521,'Repair_Scroll','Repair Weapon Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'unitskilluseid getcharid(3),"BS_REPAIRWEAPON",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14522,'Big_Bun','Big Bun',0,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 100,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14523,'Pill_','Pill',0,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 0,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14524,'Superb_Fish_Slice','Superb Fish Slice',0,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 100,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14525,'Chewy_Ricecake','Chewy Ricecake',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_ATKPOTION,1800000,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14526,'Oriental_Pastry','Oriental Pastry',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_MATKPOTION,1800000,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14527,'Dun_Tele_Scroll1','Dungeon Teleport Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashDungeon",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14528,'PVP_Tele_Scroll','PVP Teleport Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'warp "pvp_n_room",52,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14529,'Greed_Scroll','Greed Scroll',11,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "BS_GREED",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14530,'Flee_30_Scroll','Evasion Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_FLEEFOOD,1800000,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14531,'Accuracy_30_Scroll','Concentration Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_HITFOOD,1800000,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14532,'Battle_Manual25','Field Manual 25%',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_EXPBOOST,1800000,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14533,'Battle_Manual100','Field Manual 100%',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_EXPBOOST,1800000,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14534,'Small_Life_Potion','Small Life Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_HEAL3; sc_start4 SC_S_LIFEPOTION,600000,-5,5,0,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14535,'Med_Life_Potion','Medium Life Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_HEAL3; sc_start4 SC_L_LIFEPOTION,600000,-7,4,0,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14536,'Abrasive','Abrasive',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_MAGICALATTHIT; sc_start SC_INCCRI,300000,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14537,'Regeneration_Potion','Regeneration Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_LIGHTSPHERE; sc_start SC_INCHEALRATE,1800000,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14538,'Glass_Of_Illusion','Glass of Illusion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_STEAL; sc_start SC_INCFLEE2,60000,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14539,'Shadow_Armor_S','Shadow Armor Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_CLOAKING; sc_start4 SC_ELEMENTALCHANGE,1800000,1,Ele_Dark,1,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14540,'Holy_Armor_S','Holy Armor Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_BENEDICTIO; sc_start4 SC_ELEMENTALCHANGE,1800000,1,Ele_Holy,1,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14541,'S_Def_Potion','Small Defense Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_GUARD; sc_start SC_DEF_RATE,60000,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14542,'B_Def_Potion','Big Defense Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_GUARD; sc_start SC_DEF_RATE,180000,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14543,'S_Mdef_Potion','Small Magic Defense Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_SPELLBREAKER; sc_start SC_MDEF_RATE,60000,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14544,'B_Mdef_Potion','Big Magic Defense Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_SPELLBREAKER; sc_start SC_MDEF_RATE,180000,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14545,'Battle_Manual_X3','Field Manual 300%',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_EXPBOOST,1800000,300;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14546,'Fire_Cracker_Love','I Love You Firecracker',2,2,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14547,'Fire_Cracker_Wday','Whiteday Firecracker',2,2,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14548,'Fire_Cracker_Vday','Valentine\'s Day Firecracker',2,2,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14549,'Fire_Cracker_Bday','Birthday Firecracker',2,2,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14550,'Fire_Cracker_Xmas','Xmas Firecracker',2,2,NULL,20,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14551,'Str_Dish01_','Fried Grasshopper Legs',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_STRFOOD,1200000,1; percentheal 5,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14552,'Str_Dish02_','Seasoned Sticky Webfoot',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_STRFOOD,1200000,2; percentheal 5,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14553,'Str_Dish03_','Bomber Steak',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_STRFOOD,1200000,3; percentheal 5,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14554,'Int_Dish01_','Grape Juice Herbal Tea',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INTFOOD,1200000,1; percentheal 0,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14555,'Int_Dish02_','Autumn Red Tea',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INTFOOD,1200000,2; percentheal 0,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14556,'Int_Dish03_','Honey Herbal Tea',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INTFOOD,1200000,3; percentheal 0,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14557,'Vit_Dish01_','Steamed Crab Nippers',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_VITFOOD,1200000,1; percentheal 5,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14558,'Vit_Dish02_','Assorted Seafood',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_VITFOOD,1200000,2; percentheal 5,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14559,'Vit_Dish03_','Clam Soup',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_VITFOOD,1200000,3; percentheal 5,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14560,'Agi_Dish01_','Frog Egg Squid Ink Soup',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_AGIFOOD,1200000,1; percentheal 3,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14561,'Agi_Dish02_','Smooth Noodle',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_AGIFOOD,1200000,2; percentheal 3,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14562,'Agi_Dish03_','Tentacle Cheese Gratin',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_AGIFOOD,1200000,3; percentheal 3,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14563,'Dex_Dish01_','Honey Grape Juice',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_DEXFOOD,1200000,1; percentheal 2,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14564,'Dex_Dish02_','Chocolate Mousse Cake',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_DEXFOOD,1200000,2; percentheal 2,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14565,'Dex_Dish03_','Fruit Mix',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_DEXFOOD,1200000,3; percentheal 2,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14566,'Luk_Dish01_','Fried Monkey Tails',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_LUKFOOD,1200000,1; percentheal 3,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14567,'Luk_Dish02_','Mixed Juice',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_LUKFOOD,1200000,2; percentheal 3,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14568,'Luk_Dish03_','Fried Sweet Potato',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_LUKFOOD,1200000,3; percentheal 4,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14569,'Knife_Goblin_Ring','Knife Goblin Ring',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1122;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14570,'Flail_Goblin_Ring','Flail Goblin Ring',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1123;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14571,'Hammer_Goblin_Ring','Hammer Goblin Ring',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1125;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14572,'Holy_Marble','Holy Marble',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1385;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14573,'Red_Burning_Stone','Red Burning Stone',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1382;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14574,'Skull_Of_Vagabond','Vagabond\'s Skull',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1208;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14575,'Str_Dish05_','Lutie Lady\'s Pancake',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_STRFOOD,1200000,5; percentheal 10,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14576,'Int_Dish05_','Mastela Fruit Wine',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INTFOOD,1200000,5; percentheal 0,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14577,'Vit_Dish05_','Spicy Fried Bao',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_VITFOOD,1200000,5; percentheal 10,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14578,'Agi_Dish05_','Steamed Bat Wing in Pumpkin',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_AGIFOOD,1200000,5; percentheal 6,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14579,'Dex_Dish05_','Green Salad',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_DEXFOOD,1200000,5; percentheal 5,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14580,'Luk_Dish05_','Fried Scorpion Tails',0,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_LUKFOOD,1200000,5; percentheal 5,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14581,'Dun_Tele_Scroll2','Dungeon Teleport Scroll II',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashDungeon",2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14582,'WOB_Rune','Yellow Butterfly Wing',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashCity",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14583,'WOB_Schwaltz','Green Butterfly Wing',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashCity",2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14584,'WOB_Rachel','Red Butterfly Wing',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashCity",3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14585,'WOB_Local','Blue Butterfly Wing',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashCity",4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14586,'Spark_Candy','Jumping Candy',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_HASTEUP; bonus_script "{ bonus2 bHPLossRate,100,10000; bonus bBaseAtk,20; bonus bAspdRate,25; bonus bNoWalkDelay; }",60,0,0,EFST_STEAMPACK;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14587,'Repair_Scroll_','Equipment Repair Spell Book',11,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "BS_REPAIRWEAPON",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14588,'Pty_Blessing_Scroll','Party Blessing 10 Scroll',11,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "CASH_BLESSING",10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14589,'Pty_Inc_Agi_Scroll','Party Increase Agi 10 Scroll',11,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "CASH_INCAGI",10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14590,'Pty_Assumptio_Scroll','Party Assumptio 5 Scroll',11,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "CASH_ASSUMPTIO",5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14591,'Siege_Teleport_Scroll','WoE Teleport Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashSiegeTele";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14592,'Job_Manual50','JOB Battle Manual',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_JEXPBOOST,1800000,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14593,'Magic_Power_Scroll','Mystical Amplification Scroll',11,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "HW_MAGICPOWER",10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14594,'Quagmire_Scroll','Quagmire Scroll',11,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "WZ_QUAGMIRE",5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14595,'Unsealed_Magic_Spell','Unsealed Magic Spell',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'warp "yuno_fild09",255,127;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14596,'Pierre_Treasurebox','Pierre\'s Treasure Box',2,0,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_Pierre_Treasurebox,1); getrandgroupitem(IG_Pierre_Treasurebox,1); getrandgroupitem(IG_Pierre_Treasurebox,1); getrandgroupitem(IG_Pierre_Treasurebox,1); getrandgroupitem(IG_Pierre_Treasurebox,1); getrandgroupitem(IG_Pierre_Treasurebox,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14597,'PhreeoniS','Phreeoni Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start2 SC_ITEMSCRIPT,180000,4121,EFST_FOOD_BASICHIT;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14598,'GhostringS','Ghostring Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start2 SC_ITEMSCRIPT,60000,4047,EFST_ARMOR_PROPERTY;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14599,'Greed_Scroll_C','Greed Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "BS_GREED",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14600,'Mental_Potion','Mental Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_SPELLBREAKER; bonus_script "{ bonus bUseSPrate,-10; bonus bMaxSPrate,10; }",1800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14601,'Tyr\'s_Blessing','Tyr\'s Blessing',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_FLEEFOOD,300000,30; sc_start SC_HITFOOD,300000,30; sc_start SC_ATKPOTION,300000,20; sc_start SC_MATKPOTION,300000,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14602,'TaogunkaS','Tao Gunka Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_LIGHTSPHERE; bonus_script "{ bonus bMaxHPrate,100; bonus bDefRate,-50; bonus bMdefRate,-50; }",180,0,0,EFST_MVPCARD_TAOGUNKA;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14603,'MistressS','Mistress Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_SPELLBREAKER; bonus_script "{ bonus bNoGemStone; bonus bUseSPrate,25; }",180,0,0,EFST_MVPCARD_MISTRESS;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14604,'Orc_HeroS','Orc Hero Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_LIGHTSPHERE; bonus_script "{ bonus2 bResEff,Eff_Stun,10000; }",180,0,0,EFST_MVPCARD_ORCHERO;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14605,'Orc_LoadS','Orc Lord Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_LIGHTSPHERE; bonus_script "{ bonus bShortWeaponDamageReturn,30; }",180,0,0,EFST_MVPCARD_ORCLORD;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14606,'Job_Manual25','JOB Battle Manual',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14607,'Luxurious_Dinner_W','Luxurious Western Food',2,10000,NULL,600,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INCALLSTATUS,3600000,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14608,'Luxurious_Dinner_E','Manchu-Han Imperial Feast',2,20000,NULL,1200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INCALLSTATUS,3600000,6;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14609,'Spoiled_Cuisine','Spoiled Cuisine',2,5000,NULL,300,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 10,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14611,'M_Def_Potion','M Def Potion',11,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_GUARD; sc_start SC_DEF_RATE,120000,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14612,'M_Mdef_Potion','M Mdef Potion',11,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_SPELLBREAKER; sc_start SC_MDEF_RATE,120000,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14613,'RWC_Scroll_2012','RWC Scroll 2012',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_RWC_Scroll_2012);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14614,'Ex_Def_Potion','Ex Def Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_GUARD; sc_start SC_DEF_RATE,1800000,3; sc_start SC_MDEF_RATE,1800000,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14616,'STR_Biscuit_Stick','Bar Cookie Of Strength',2,1,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_FOOD_STR_CASH,1800000,15; sc_start SC_ATKPOTION,600000,rand(11,111);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14617,'VIT_Biscuit_Stick','Bar Cookie Of Vitality',2,1,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_FOOD_VIT_CASH,1800000,15; bonus_script "{ bonus bHPRecovRate,rand(11,33); }",1800,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14618,'AGI_Biscuit_Stick','Bar Cookie Of Agility',2,1,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_FOOD_AGI_CASH,1800000,15; sc_start SC_FLEEFOOD,600000,rand(11,33);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14619,'INT_Biscuit_Stick','Bar Cookie Of Intelligence',2,1,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_FOOD_INT_CASH,1800000,15; sc_start SC_MATKPOTION,600000,rand(11,111);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14620,'DEX_Biscuit_Stick','Bar Cookie Of Dexterity',2,1,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_FOOD_DEX_CASH,1800000,15; sc_start SC_HITFOOD,600000,rand(11,33);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14621,'LUK_Biscuit_Stick','Bar Cookie Of Lucky',2,1,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_FOOD_LUK_CASH,1800000,15; sc_start SC_CRIFOOD,600000,rand(11,33);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14623,'Golden_Treasure_Box_','Golden Treasure Box',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*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)*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14624,'Blue_Scroll','Blue Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Blue_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14626,'Indigo_Scroll','Indigo Scroll',2,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Indigo_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14627,'Christmas_Scroll','Christmas Scroll',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14628,'Costume_Festival_Box','Costume Festival Box',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14629,'Costume_Enchantment_Stone_Box','Costume Enchantment Stone Box',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem callfunc("F_Rand",6636,6637,6638,6639,6640,6641,6642,6643,6644,6645),1;',NULL,NULL); -# -REPLACE INTO `item_db_re` VALUES (14643,'Violet_Scroll','Violet Scroll',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Violet_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14663,'Scroll_Sealed_Dark_Lord','Scroll Sealed Dark Lord',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*TODO: Confirm the rates*/ getitem callfunc("F_Rand",6228,6232,4488,4169,19739,24032,24033,24031,24030,24028,24029,24028,24027),1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14664,'Bi_Hwang_Scroll','Bi Hwang Scroll',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Bi_Hwang_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14665,'Jung_Bi_Scroll','Jung Bi Scroll',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Jung_Bi_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14666,'Je_Un_Scroll','Je Un Scroll',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Je_Un_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14667,'Yong_Kwang_Scroll','Yong Kwang Scroll',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Yong_Kwang_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14672,'Steel_Fighter_Scroll_Lv20','Steel Fighter Scroll (Lv20)',0,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14673,'Steel_Fighter_Scroll_Lv25','Steel Fighter Scroll (Lv25)',0,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14674,'Cup_Of_Boza','Cup Of Boza',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'bonus_script "{ bonus bVit,10; bonus2 bSubEle,Ele_Fire,5; }",120; /*EFST_CUP_OF_BOZA 120000*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14675,'Shadow_Box_II','Shadow Box II',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14679,'Article_Sealed_Storm_Scroll','Article Sealed Storm Scroll',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14681,'Costume_Enchantment_Stone_Box_II','Costume Enchantment Stone Box II',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14682,'Sealed_Beelzebub_Scroll','Sealed Beelzebub Scroll',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14689,'Sealed_Kiel-D-01_Scroll','Sealed Kiel-D-01 Scroll',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14695,'Costume_Enchant_Stone_Box_3','Costume Enchant Stone Box III',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem rand(6790,6792),1; getitem 4936,1; getitem 4937,1; getitem 4938,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14696,'Sealed_Gloom_Under_Night_Gachapon','Sealed Gloom Under Night Gachapon',18,0,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/* 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); */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14699,'Garuda_Scroll','Memorial Garuda Lucky Egg',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getgroupitem(IG_Garuda_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14701,'TW_13y_Lucky_Egg_06','Midgard Immortal Lucky Egg',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getgroupitem(IG_TW_13y_Lucky_Egg_06);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14704,'Gemstone_Shadow_Box','Gemstone Shadow Box',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 24084,1; getitem 24085,1; getitem 24086,1; getitem 24087,1; getitem 24088,1; getitem 24089,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14705,'Sealed_Fallen_Bishop_Hibram_Scroll','Sealed Fallen Bishop Hibram Scroll',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*TODO: COnfirm the rates*/ getitem callfunc("F_Rand",6228,6232,14704,19884,14695,6697),1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14713,'Sealed_Ifrit_Scroll','Sealed Ifrit Scroll',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/* getitem callfunc("F_Rand",Sealed ifrit card, 9 weapons smelting ticket, Armor 9 smelting ticket, costume Noah\'s hats, costumes Enchantment Stone Box); */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14717,'2013_RWC_Scroll','2013 RWC Scroll',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_2013_RWC_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14718,'Scroll_Turtle_General_Sealed','Scroll Turtle General Sealed',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*TODO: Confirm the rates*/ getitem callfunc("F_Rand",6228,6232,19751,14695),1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14723,'Limited_Neuralizer_I','(Limited)Neuralizer I',11,2,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashReset";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14724,'Limited_Neuralizer_II','(Limited)Neuralizer II',11,2,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashReset";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14725,'Sealed_Bacsojin_Scroll','Sealed Bacsojin Scroll',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*TODO: Confirm the rates*/ getitem callfunc("F_Rand",4372,6228,6232,19750,14730,17474),1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14726,'Grid_Shadow_Box','Grid Shadow Box',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 24114,1; getitem 24115,1; getitem 24116,1; getitem 24117,1; getitem 24118,1; getitem 24119,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14727,'Heal_Shadow_Box','Heal Shadow Box',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 24120,1; getitem 24121,1; getitem 24122,1; getitem 24123,1; getitem 24124,1; getitem 24125,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14728,'Hiding_Shadow_Box','Hiding Shadow Box',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 24126,1; getitem 24127,1; getitem 24128,1; getitem 24129,1; getitem 24130,1; getitem 24131,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14729,'Cloaking_Shadow_Box','Cloaking Shadow Box',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 24132,1; getitem 24133,1; getitem 24134,1; getitem 24135,1; getitem 24136,1; getitem 24137,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14730,'Costume_Festival_Box_II','Costume Festival Box II',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*TODO: No clue yet*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14731,'Teleport_Shadow_Box','Teleport Shadow Box',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 24138,1; getitem 24139,1; getitem 24140,1; getitem 24141,1; getitem 24142,1; getitem 24143,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14732,'Steal_Shadow_Box','Steal Shadow Box',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 24144,1; getitem 24145,1; getitem 24146,1; getitem 24147,1; getitem 24148,1; getitem 24149,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14733,'Sealed_Pharaoh_Scroll','Sealed Pharaoh Scroll',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*TODO: Confirm the rates*/ getitem callfunc("F_Rand",6228,6232,14726,20034,17474),1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14735,'Costama_Egg22','Shapeshifter Costume',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Shapeshifter_Costume);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14739,'Sealed_General_Egnigem_Cenia_Scroll','Sealed General Egnigem Cenia Scroll',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*TODO: Confirm the rates*/ getitem callfunc("F_Rand",4482,6228,6232,24156,19935),1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14740,'Sealed_Vesper_Scroll','Sealed Vesper Scroll',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14741,'Imortal_Midgard_Scroll','Midgard Celebration Lucky Egg',18,0,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Imortal_Midgard_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14753,'Hero_Midgard_Egg','Hero Midgard Egg',18,0,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Hero_Midgard_Egg);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14758,'Safe_To_Smelting_Scroll','Safe To Smelting Scroll',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem callfunc("F_Rand",6238,6239,6228,6232,24216,17474,969),1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14765,'Limited_Edition_JOB_Battle_Manual','Limited Edition JOB Battle Manual',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_JEXPBOOST,3600000,35;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14766,'Limited_Power_Booster','Limited Power Booster',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'bonus_script "{ bonus bBaseAtk,30; bonus bMatk,30; bonus2 bAddClass,Class_All,1; bonus bMatkRate,1; bonus bHit,30; bonus bFlee,30; bonus bAspd,1; bonus bUseSPrate,-5; bonus bFixedCastrate,-30; }",1800,1,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (14805,'July_Lucky_Scroll','Almighty Lucky Egg',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_July_Lucky_Scroll);',NULL,NULL); -#=================================================================== -# More Armors -#=================================================================== -REPLACE INTO `item_db_re` VALUES (15000,'Bone_Plate','Bone Plate',4,20,NULL,1000,NULL,60,NULL,1,0x000654E2,18,2,16,NULL,'85',1,0,'bonus bStr,1; bonus bMdef,3; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus2 bIgnoreDefRaceRate,RC_Brute,10; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,10; bonus3 bAutoSpellWhenHit,"NPC_WIDEBLEEDING",1,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15001,'Odin\'s_Blessing_I','Odin\'s Blessing',4,0,NULL,0,NULL,10,NULL,0,0xFFFFFFFE,63,2,16,NULL,'0',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15002,'Rune_Plate','Rune Plate',4,0,NULL,0,NULL,95,NULL,1,0x00000080,63,2,16,NULL,'99',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15003,'Freyja_SRobe7','Freyja Soul Robe7',4,0,NULL,300,NULL,7,NULL,0,0xFFFFFFFF,63,2,16,NULL,'20',0,0,'bonus bMaxHP,700;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15004,'Freyja_SRobe30','Freyja Soul Robe30',4,0,NULL,300,NULL,7,NULL,0,0xFFFFFFFF,63,2,16,NULL,'20',0,0,'bonus bMaxHP,700;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15005,'Freyja_SRobe60','Freyja Soul Robe60',4,0,NULL,300,NULL,7,NULL,0,0xFFFFFFFF,63,2,16,NULL,'20',0,0,'bonus bMaxHP,700;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15006,'Freyja_SRobe90','Freyja Soul Robe90',4,0,NULL,300,NULL,7,NULL,0,0xFFFFFFFF,63,2,16,NULL,'20',0,0,'bonus bMaxHP,700;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15007,'Time_Keepr_Robe','Time Keeper Robe',4,30000,NULL,0,NULL,62,NULL,0,0xFFFFFFFF,63,2,16,NULL,'1',1,0,'bonus bMdef,1; bonus bStr,2; bonus bMaxHP,200;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15008,'Flame_Sprits_Armor__','Flame Sprits Armor',4,20,NULL,1000,NULL,25,NULL,0,0xFFFFFFFF,63,2,16,NULL,'1',1,0,'bonus bMdef,1; bonus bDefEle,Ele_Fire; bonus2 bSubDefEle,Ele_Earth,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15009,'Para_Team_Uniform1','Eden Team Uniform I',4,0,NULL,0,NULL,35,NULL,0,0xFFFFFFFF,63,2,16,NULL,'7',0,0,'bonus bMaxHP,100; bonus bMaxSP,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15010,'Para_Team_Uniform2','Eden Team Uniform II',4,0,NULL,0,NULL,46,NULL,0,0xFFFFFFFF,63,2,16,NULL,'26',0,0,'bonus bMaxHP,200; bonus bMaxSP,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15011,'Para_Team_Uniform3','Eden Team Uniform III',4,0,NULL,0,NULL,58,NULL,0,0xFFFFFFFF,63,2,16,NULL,'40',0,0,'bonus bMaxHP,300; bonus bMaxSP,30; bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15012,'Puente_Robe','Puente Robe',4,12000,NULL,400,NULL,42,NULL,1,0xFFFFFFFF,63,2,16,NULL,'22',1,0,'bonus bFixedCastrate,-3; bonus bHealPower,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15013,'Claire_Suits','Claire Suits',4,28000,NULL,2800,NULL,58,NULL,1,0xFFFFFFFE,18,2,16,NULL,'22',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15014,'Ebone_Armor','Ebon Armor',4,40000,NULL,4500,NULL,93,NULL,1,0x00004080,56,2,16,NULL,'100',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15015,'Upg_Adv_Suit','Upg Adv Suit',4,20,NULL,150,NULL,25,NULL,1,0xFFFFFFFF,63,2,16,NULL,'1',1,0,'bonus bMaxHPrate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15016,'Upg_Coat','Upg Coat',4,20,NULL,600,NULL,47,NULL,1,0xFFFFFFFE,63,2,16,NULL,'1',1,0,'bonus bMaxHPrate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15017,'Upg_Saint_Robe','Upg Saint Robe',4,20,NULL,300,NULL,55,NULL,1,0x00048530,63,2,16,NULL,'1',1,0,'bonus bMdef,5; bonus bMaxHPrate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15018,'Upg_Tights','Upg Tights',4,20,NULL,250,NULL,32,NULL,1,0x00080808,63,2,16,NULL,'1',1,0,'bonus bDex,1; bonus bMaxHPrate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15019,'Upg_Thief_Cloth','Upg Thief Cloth',4,20,NULL,100,NULL,45,NULL,1,0x02021040,63,2,16,NULL,'1',1,0,'bonus bAgi,1; bonus bMaxHPrate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15020,'Upg_Mail','Upg Mail',4,20,NULL,1650,NULL,60,NULL,1,0x000654E2,63,2,16,NULL,'1',1,0,'bonus bMaxHPrate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15021,'Upg_Formal_Dress','Upg Formal Dress',4,20,NULL,150,NULL,45,NULL,1,0xFFFFFFFE,63,2,16,NULL,'1',1,0,'bonus bMaxHPrate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15022,'Brazil_Swimsuit','Brazil Swimsuit',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,16,NULL,'1',1,0,'bonus bStr,4; bonus bInt,4; bonus bMdef,3; bonus2 bSubEle,Ele_Water,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15023,'Half_Brynhild','Half Brynhild',4,20,NULL,0,NULL,60,NULL,0,0xFFFFFFFF,63,2,16,NULL,'47',0,0,'bonus bMdef,10; bonus bMaxHP,20*BaseLevel; bonus bMaxSP,5*BaseLevel; bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bUnbreakableArmor; bonus bNoKnockback;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15024,'Army_Padding','Army Padding',4,0,NULL,10,NULL,10,NULL,0,0xFFFFFFFF,63,2,16,NULL,'1',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15025,'Golden_Rod_Robe','Golden Rod Robe',4,20,NULL,500,NULL,40,NULL,0,0x00000200,63,2,16,NULL,'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; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15026,'Aqua_Robe','Aqua Robe',4,20,NULL,500,NULL,40,NULL,0,0x00000200,63,2,16,NULL,'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; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15027,'Crimson_Robe','Crimson Robe',4,20,NULL,500,NULL,40,NULL,0,0x00000200,63,2,16,NULL,'100',1,0,'bonus bDefEle,Ele_Fire; bonus bMdef,10; bonus bInt,1; bonus2 bSkillVariableCast,"WZ_METEOR",-3000; if(readparam(bInt)>=120){ bonus bInt,1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15028,'Forest_Robe','Forest Robe',4,20,NULL,500,NULL,40,NULL,0,0x00000200,63,2,16,NULL,'100',1,0,'bonus bDefEle,Ele_Earth; bonus bMdef,10; bonus bInt,1; bonus2 bSkillVariableCast,"WZ_HEAVENDRIVE",-3000; if(readparam(bInt)>=120){ bonus bInt,1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15029,'Robe_Of_Affection','Robe Of Affection',4,20,NULL,300,NULL,22,NULL,0,0x00000100,56,2,16,NULL,'100',1,0,'bonus bDefEle,Ele_Holy; bonus bMdef,10; bonus bInt,1; bonus2 bSkillUseSP,"AB_CLEMENTIA",50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15030,'Robe_Of_Judgement','Robe Of Judgement',4,20,NULL,300,NULL,22,NULL,0,0x00000100,56,2,16,NULL,'100',1,0,'bonus bDefEle,Ele_Dark; bonus bMdef,10; bonus bStr,2; bonus bInt,1; bonus2 bSubRace,RC_All,-10; bonus2 bSubRace,RC_Undead,20; bonus2 bSubRace,RC_Demon,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15031,'Para_Team_Armor','Paradise Uniform IV',4,0,NULL,0,NULL,70,NULL,0,0xFFFFFFFF,63,2,16,NULL,'60',0,0,'bonus bMdef,5; bonus bMaxHP,500; bonus bMaxSP,50; bonus bStr,1; bonus bInt,1; bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15032,'Tidung','Tidung',4,10,NULL,500,NULL,2,NULL,1,0xFFFFFFFE,63,2,16,NULL,'0',1,0,'bonus bMdef,10; bonus2 bResEff,Eff_Stun,1500; bonus2 bResEff,Eff_Freeze,1500; bonus2 bSubClass,Class_All,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15033,'Tutorial_Mattle','Tutorial Mantle',4,0,NULL,600,NULL,37,NULL,0,0x00000000,63,2,16,NULL,'1',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15034,'Tutorial_Mattle_','Tutorial Mantle',4,0,NULL,600,NULL,37,NULL,1,0x00000000,63,2,16,NULL,'1',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15035,'2010_Love_Daddy','2010 Love Dad',4,10,NULL,100,NULL,6,NULL,1,0xFFFFFFFF,63,2,16,NULL,'0',1,0,'bonus bAllStats,1; bonus bMaxHP,150; bonus bMaxSP,150; bonus2 bResEff,Eff_Stone,9000; bonus2 bResEff,Eff_Freeze,9000; bonus2 bResEff,Eff_Stun,9000; bonus2 bResEff,Eff_Sleep,9000; bonus2 bResEff,Eff_Silence,9000; bonus2 bResEff,Eff_Curse,9000; bonus2 bResEff,Eff_Confusion,9000; bonus2 bResEff,Eff_Blind,9000; bonus2 bResEff,Eff_Poison,9000; bonus2 bResEff,Eff_Bleeding,9000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15036,'Ur_Plate','Ur\'s Plate',4,20,NULL,3000,NULL,110,NULL,0,0x00000080,56,2,16,NULL,'100',1,0,'bonus bMdef,10; bonus bMaxHPrate,getrefine(); bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubEle,Ele_Neutral,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15037,'Peuz_Plate','Peuz\'s Plate',4,20,NULL,3000,NULL,110,NULL,0,0x00000080,56,2,16,NULL,'100',1,0,'bonus bMdef,10; bonus bBaseAtk,20; bonus bFlee,17;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15038,'Sabah_Cloth','Sapha\'s Cloth',4,20,NULL,100,NULL,45,NULL,1,0x00001000,63,2,16,NULL,'100',1,0,'bonus bLuk,3; bonus3 bAutoSpell,"ASC_METEORASSAULT",max(getskilllv("ASC_METEORASSAULT"),1),20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15039,'Nab_Cloth','Nab\'s Cloth',4,20,NULL,100,NULL,45,NULL,1,0x00001000,63,2,16,NULL,'100',1,0,'bonus bStr,2; bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15040,'Prison_Uniform','Prison Uniform',4,10,NULL,1500,NULL,5,NULL,0,0xFFFFFFFF,63,2,16,NULL,'50',1,0,'.@r = getrefine(); bonus bHit,.@r; bonus bFlee,.@r;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15041,'Boitata_Armor','Boitata Armor',4,20,NULL,600,NULL,45,NULL,1,0xFFFFFFFF,63,2,16,NULL,'60',1,0,'bonus bMdef,3; bonus2 bSubEle,Ele_Neutral,7; bonus bMaxHPrate,5; bonus bFlee,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15042,'White_Wing_Suits','White Wing Suits',4,20,NULL,100,NULL,45,NULL,1,0x00000800,63,2,16,NULL,'100',1,0,'.@r = getrefine(); bonus bLongAtkRate,.@r*2; bonus bFlee,.@r;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15043,'Black_Wing_Suits','Black Wing Suits',4,20,NULL,100,NULL,45,NULL,1,0x00000800,56,2,16,NULL,'100',1,0,'bonus bInt,2; bonus bBaseAtk,getrefine()*3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15044,'Green_Operation_Coat','Green Surgical Gown',4,56000,NULL,660,NULL,66,NULL,1,0x00040000,63,2,16,NULL,'100',1,0,'bonus bDex,1; bonus bMaxSP,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15045,'Armor_Of_Valor','Armor Of Valor',4,0,NULL,0,NULL,4,NULL,0,0xFFFFFFFF,63,2,16,NULL,'0',0,0,'bonus bHPrecovRate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15046,'Siege_Plate','Siege Plate',4,0,NULL,3300,NULL,85,NULL,1,0x006444A2,63,2,16,NULL,'95',1,0,'bonus bMdef,5; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; .@r = getrefine(); if(.@r>5) { bonus bHealpower2,12; bonus bAddItemHealRate,12; } if(.@r>8) { bonus bMaxHPrate,25; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15047,'Siege_Suits','Siege Suit',4,0,NULL,750,NULL,50,NULL,1,0x636E5CEA,63,2,16,NULL,'95',1,0,'bonus bMdef,10; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; .@r = getrefine(); if(.@r>5) { bonus bFlee2,5; bonus bLongAtkDef,20; } if(.@r>8) { bonus bMaxHPrate,15; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15048,'Siege_Robe','Siege Robe',4,0,NULL,500,NULL,40,NULL,1,0x00818315,63,2,16,NULL,'95',1,0,'bonus bMdef,20; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; .@r = getrefine(); if(.@r>5) { bonus bFlee,5; bonus bLongAtkDef,15; } if(.@r>8) { bonus bMaxHP,1000; bonus bMaxSP,100; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15049,'Armor_Of_Faith','Armor Of Faith',4,20,NULL,1000,NULL,0,NULL,0,0xFFFFFFFF,63,2,16,NULL,'50',1,0,'bonus bStr,4; bonus bInt,4; bonus bVit,4; bonus bDex,4; bonus bAgi,4; bonus bLuk,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15050,'Armor_Of_Sanctity','Armor Of Sanctity',4,20,NULL,1000,NULL,0,NULL,0,0xFFFFFFFF,63,2,16,NULL,'50',1,0,'bonus bStr,4; bonus bInt,4; bonus bVit,4; bonus bDex,4; bonus bAgi,4; bonus bLuk,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15051,'Bakonawa_Armor','Bakunawa Scale Armor',4,20,NULL,500,NULL,55,NULL,0,0xFFFFFFFF,63,2,16,NULL,'1',1,0,'bonus2 bSubClass,Class_Boss,getrefine()/2; bonus bAllStats,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15052,'Bayani_Bakonawa_Armor','Bayani Bakunawa Scale Armor',4,20,NULL,500,NULL,55,NULL,1,0xFFFFFFFF,63,2,16,NULL,'1',1,0,'bonus2 bSubClass,Class_Boss,getrefine()/2; bonus bAllStats,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15053,'Special_Ninja_Suit','Special Ninja Suit',4,10000,NULL,1200,NULL,70,NULL,0,0x02000000,63,2,16,NULL,'100',1,0,'bonus bAgi,1+(getrefine()/3);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15054,'Ninja_Scale_Armor','Ninja Scale Armor',4,10000,NULL,1800,NULL,90,NULL,1,0x02000000,63,2,16,NULL,'100',1,0,'bonus bMaxHPrate,15; bonus bMaxSPrate,-30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15055,'Tenebris_Latitantes','Armor of Nothingness',4,10000,NULL,1500,NULL,60,NULL,1,0x02000000,63,2,16,NULL,'100',1,0,'bonus bAgi,1; bonus4 bAutoSpellWhenHit,"KO_ZANZOU",1,50,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15056,'Special_Ninja_Suit_','Special Ninja Suit',4,10000,NULL,1200,NULL,70,NULL,1,0x02000000,63,2,16,NULL,'100',1,0,'bonus bAgi,1+(getrefine()/3);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15057,'Pure_White_Apron','Pure White Apron',4,20,NULL,600,'0',50,0,1,0xFFFFFFFF,63,2,16,NULL,'0',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15058,'Rider_Suit','Rider Suit',4,20,NULL,1000,'0',40,0,1,75,7,2,16,NULL,'1',1,0,'bonus bAgi,1+(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15059,'2011Love_Daddy','2011Love Daddy',4,20,NULL,100,'0',80,0,1,0xFFFFFFFF,63,2,16,NULL,'0',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15060,'Sky_Blue_Smock','Sky Blue Smock',4,20,NULL,300,'0',1,0,1,0xFFFFFFFF,63,2,16,NULL,'0',1,0,'bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; if(BaseLevel<80) { bonus bHealPower,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15061,'Egir_Armor','Egir Armor',4,200000,NULL,2600,NULL,55,NULL,1,0xFFFFFFFF,63,2,16,NULL,'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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15062,'TE_Woe_Coat','TE Woe Coat',4,0,NULL,0,NULL,15,NULL,0,0xFFFFFFFF,63,2,16,NULL,'40',1,NULL,'bonus bMdef,15; bonus bMaxHP,250; bonus bMaxSP,250; bonus2 bSubRace,RC_Player_Human,10; bonus2 bResEff,Eff_Freeze,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15063,'TE_Woe_Chain_Mail','TE Woe Chain Mail',4,0,NULL,0,NULL,25,NULL,0,0x000444A2,63,2,16,NULL,'40',1,NULL,'bonus bMdef,5; bonus bMaxHP,450; bonus bMaxSP,50; bonus2 bSubRace,RC_Player_Human,15; bonus2 bResEff,Eff_Freeze,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15064,'TE_Woe_Mage_Coat','TE Woe Mage Coat',4,0,NULL,0,NULL,5,NULL,0,0x00818315,63,2,16,NULL,'40',1,NULL,'bonus bMdef,25; bonus bMaxHP,200; bonus bMaxSP,200; bonus2 bSubRace,RC_Player_Human,5; bonus2 bResEff,Eff_Freeze,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15066,'Engraved_Armor','Engraved Plate Armor',4,100000,NULL,3000,NULL,120,NULL,1,0x00004082,63,2,16,NULL,'150',1,NULL,'bonus bMdef,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15067,'Rune_Suit','Rune Suit',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,16,NULL,'1',1,NULL,'bonus2 bExpAddRace,RC_All,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15068,'Im_Angel\'s_Protection','Advanced Angelic Protection',4,10000,NULL,600,NULL,40,NULL,1,0x00000001,63,2,16,NULL,'99',1,0,'bonus bMdef,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15069,'Suit_Of_Sid','Suit Of Sid',4,20,NULL,1000,NULL,30,NULL,0,0xFFFFFFFF,63,2,16,NULL,'0',1,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15070,'Clothes_of_Happiness','Clothes of Happiness',4,10,NULL,1000,NULL,5,NULL,1,0xFFFFFFFF,63,2,16,NULL,'1',1,NULL,'bonus bMdef,5; bonus bLuk,getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15071,'Valkyrian_Robe','Valkyrian Robe',4,20,NULL,2800,NULL,55,NULL,1,0x000FFF80,58,2,16,NULL,'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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15072,'Nectar_Suit','Nectar Suit',4,20,NULL,300,NULL,35,NULL,1,0xFFFFFFFF,63,2,16,NULL,'1',1,0,'bonus bVit,3; bonus bMdef,5; bonus bMaxHPrate,(getrefine()/2); bonus bMaxSPrate,(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15073,'Anti_Magic_Suit','Anti-Magic Suits',4,10,NULL,1500,NULL,50,NULL,1,0xFFFFFFFF,63,2,16,NULL,'99',1,0,'.@r = getrefine(); bonus bMaxHPrate,5+((.@r >= 9) ? 2 : 0); bonus bMdef,10+((.@r >= 7) ? 5 : 0);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15074,'Geffen_Mage_Robe','Geffen Magic Robe',4,10,NULL,1000,NULL,40,NULL,1,0xFFFFFFFF,63,2,16,NULL,'99',1,0,'.@r = getrefine(); bonus bUseSPrate,-10-((.@r>=7) ? 5: 0); bonus bVariableCastrate,15-((.@r>=9) ? 5: 0); bonus bNoCastCancel2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15087,'Azure_Dragon_Armor','Azure Dragon Armor',4,20,NULL,500,NULL,55,NULL,1,0xFFFFFFFF,63,2,16,NULL,'70',1,0,'bonus bDefEle,Ele_Water; bonus bMdef,5; bonus2 bAddEle,Ele_Water,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15088,'School_Uniform','School Uniform',4,20,NULL,500,NULL,25,NULL,1,0xFFFFFFFF,63,2,16,NULL,'0',1,0,'bonus bAgi,1; bonus bLuk,1; bonus bMaxHP,BaseLevel*3; bonus bMaxSP,BaseLevel/2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15089,'Menswear','Menswear',4,10,NULL,300,NULL,40,NULL,0,0xFFFFFFFE,63,2,16,NULL,'80',1,NULL,'.@r = getrefine(); bonus bAspdRate,3+((.@r>=7)?2:0); bonus bDelayrate,-3-((.@r>=7)?2:0); bonus bVariableCastrate,-3-((.@r>=7)?2:0);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15090,'Armor_Of_Gray','Armor of Gray',4,10,NULL,2400,NULL,90,NULL,1,0x000654E2,56,2,16,NULL,'120',1,0,'bonus bMdef,10; bonus2 bSubEle,Ele_Holy,10+getrefine()*2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15091,'Gray_Robe','Gray Robe',4,20,NULL,1300,NULL,55,NULL,1,0x00018314,56,2,16,NULL,'120',1,0,'bonus2 bSubEle,Ele_Holy,10+getrefine()*2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15093,'Hero_Plate','Hero Plate',4,10,NULL,4000,NULL,120,NULL,1,0x00004082,63,2,16,NULL,'160',1,NULL,'bonus bMdef,5; bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bMatk,10; bonus bBaseAtk,10; bonus bHit,10; bonus bFlee,10; bonus2 bSkillAtk,"LG_BANISHINGPOINT",10; bonus2 bSkillAtk,"RK_HUNDREDSPEAR",10; .@r = getrefine(); bonus5 bAutoSpell,"AL_HEAL",10,50+.@r,BF_SHORT,0; bonus5 bAutoSpell,"WZ_STORMGUST",10,50+.@r,BF_SHORT,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15094,'Hero_Magic_Coat','Hero Magic Coat',4,10,NULL,800,NULL,50,NULL,1,0x00010204,63,2,16,NULL,'160',1,NULL,'bonus bMatk,10; bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bFlee,10; bonus2 bSkillAtk,"WL_CRIMSONROCK",10; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",10; .@r = getrefine(); if (.@r) { bonus bFixedCastrate,21-.@r/2; bonus bNoCastCancel2; bonus bMdef,.@r/2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15095,'Hero_Judgement_Shawl','Hero Judgement Shawl',4,10,NULL,500,NULL,77,NULL,1,0x00008110,63,2,16,NULL,'160',1,NULL,'bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bMatk,10; bonus bBaseAtk,10; bonus bHit,10; bonus bFlee,10; bonus2 bSkillAtk,"AB_JUDEX",10; bonus2 bSkillAtk,"AB_ADORAMUS",10; bonus2 bSkillAtk,"SR_DRAGONCOMBO",10; bonus2 bSkillAtk,"SR_SKYNETBLOW",10; bonus2 bSkillAtk,"SR_EARTHSHAKER",10; .@r = getrefine(); bonus5 bAutoSpell,"PR_KYRIE",10,50+.@r,BF_SHORT,0; bonus5 bAutoSpell,"PR_LEXAETERNA",1,50+.@r,BF_MAGIC,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15096,'Hero_Trade_Mail','Hero Trade Mail',4,10,NULL,500,NULL,100,NULL,1,0x00040420,56,2,16,NULL,'160',1,NULL,'bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bMatk,10; bonus bBaseAtk,10; .@r = getrefine(); if(readparam(bStr) >= 90) bonus bStr,.@r/2; if(readparam(bInt) >= 90) bonus bInt,.@r/2; if(readparam(bAgi) >= 90) bonus bAgi,.@r/2; if(readparam(bVit) >= 90) bonus bVit,.@r/2; if(readparam(bDex) >= 90) bonus bDex,.@r/2; if(readparam(bLuk) >= 90) bonus bLuk,.@r/2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15097,'Hero_Hidden_Cloth','Hero Hidden Cloth',4,10,NULL,200,NULL,70,NULL,1,0x00021040,63,2,16,NULL,'160',1,0,'bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus2 bSkillAtk,"SC_FATALMENACE",10; bonus2 bSkillAtk,"SC_TRIANGLESHOT",10; bonus2 bSkillAtk,"GC_CROSSIMPACT",10; bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",10; autobonus "{ bonus bCritical,20; bonus bFlee,20; bonus2 bAddClass,Class_All,10; bonus bMatkRate,10; }",(5+getrefine())*10,10000,BF_WEAPON;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15098,'Hero_Taget_Suits','Hero Target Suit',4,10,NULL,200,NULL,60,NULL,1,0x00080808,56,2,16,NULL,'160',1,NULL,'bonus bMaxHPrate,5; bonus bMaxSPrate,5; .@r = getrefine(); bonus bAllStats,1; bonus5 bAutoSpell,"AC_CONCENTRATION",10,(5+.@r)*5,BF_WEAPON,0; bonus5 bAutoSpell,"AC_DOUBLE",10,(5+.@r)*5,BF_WEAPON,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15100,'Frozen_Breastplate','Frozen Breastplate',4,20,NULL,1500,NULL,20,NULL,1,0xFFFFFFFF,63,2,16,NULL,'130',1,0,'bonus bDefEle,Ele_Water;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15101,'Harden_Breastplate','Hardened Breastplate',4,20,NULL,1500,NULL,20,NULL,1,0xFFFFFFFF,63,2,16,NULL,'130',1,0,'bonus bDefEle,Ele_Earth;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15102,'Hunter_Mail','Hunter Mail',4,20,NULL,500,NULL,30,NULL,1,0xFFFFFFFF,63,2,16,NULL,'50',1,0,'.@r = getrefine(); if (.@r>5) .@a = (.@r-5); else .@a = 0; bonus2 bAddRace,RC_Brute,3+.@a; bonus2 bMagicAddRace,RC_Brute,3+.@a; bonus2 bAddRace,RC_Player_Doram,3+.@a; bonus2 bMagicAddRace,RC_Player_Doram,3+.@a;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15103,'Kirin_Armor','Kirin Armor',4,10,NULL,500,NULL,55,NULL,1,0xFFFFFFFF,63,2,16,NULL,'70',NULL,NULL,'bonus bDefEle,Ele_Holy;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15104,'FishingMan_Mail','FishingMan Mail',4,10,NULL,500,NULL,30,NULL,1,0xFFFFFFFF,63,2,16,NULL,'50',NULL,NULL,'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; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15105,'Kaftan','Kaftan',4,20,NULL,400,NULL,13,NULL,1,0xFFFFFFFF,63,2,16,NULL,'0',1,0,'bonus bMdef,3; bonus2 bSubRace,RC_Demon,5; bonus2 bSubRace,RC_Undead,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15106,'Engineer_Mail','Engineer Mail',4,20,NULL,500,NULL,30,NULL,1,0xFFFFFFFF,63,2,16,NULL,'50',1,0,'.@r = getrefine(); bonus2 bAddRace,RC_Formless,3; bonus2 bMagicAddRace,RC_Formless,3; if (.@r>5) { bonus2 bAddRace,RC_Formless,.@r-5; bonus2 bMagicAddRace,RC_Formless,.@r-5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15108,'Venomous_Insect_Armor','Venomous Insect Armor',4,20,NULL,500,NULL,55,NULL,1,0xFFFFFFFF,63,2,16,NULL,'70',1,0,'bonus bDefEle,Ele_Poison; bonus bMdef,5; bonus2 bAddEle,Ele_Poison,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15110,'Supplement_Part_Str','Supplement Part Str',4,25000,NULL,2000,NULL,80,NULL,NULL,0x00000400,56,2,16,NULL,'100',1,0,'bonus2 bAddClass,Class_All,5+getrefine()/4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15111,'Upgrade_Part_Plate','Reinforced Parts - Gloves',4,10,NULL,3000,NULL,110,NULL,NULL,0x00000400,56,2,16,NULL,'100',1,NULL,'bonus bUnbreakableArmor; 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; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15116,'Airship_Armor','Airship\'s Armor',4,10,NULL,700,NULL,100,NULL,0,0xFFFFFFFF,63,2,16,NULL,'125',0,NULL,'bonus bMaxHP,1000; bonus bMaxSP,100; bonus bMdef,10; bonus bAllStats,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15117,'Felock_Armor','Felrock\'s Armor',4,10,NULL,750,NULL,70,NULL,0,0xFFFFFFFF,63,2,16,NULL,'125',1,NULL,'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; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15121,'Robe_Of_Sarah','Sarah\'s Battle Robe',4,10,NULL,800,NULL,35,NULL,1,0xFFFFFFFF,63,2,16,NULL,'145',1,NULL,'autobonus "{ bonus bMatk,getrefine()*8; }",3,10000,BF_MAGIC;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15123,'Whikebain_Suit','Whikebain Suit',4,0,NULL,900,NULL,56,NULL,1,0x00001000,56,2,16,NULL,'105',1,NULL,'.@r = getrefine(); bonus bCritAtkRate,(.@r>=7)?(6):((.@r>=5)?(4):(0)); bonus3 bAutoSpell,"DC_WINKCHARM",1,10; /* Confirm: Success rate */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15125,'Female_Diver_Suit','Female Diver\'s Suit',4,20,NULL,300,NULL,20,NULL,1,0xFFFFFFFF,63,2,16,NULL,'80',1,0,'bonus2 bAddMonsterDropItem,579,500+(getrefine()*100); if (getrefine()>=7) { bonus bHPrecovRate,-100; bonus bHPGainValue,100; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15126,'Female_Poring_Balloon','Private Doram Suits',4,20,NULL,700,NULL,80,NULL,1,0x80000000,7,2,16,NULL,'100',1,NULL,'bonus bMaxHP,500; bonus bMaxSP,100; .@r = getrefine()/3; bonus bDex,.@r; bonus bInt,.@r;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15128,'Excelion_Suit','Excelion Suit',4,20,NULL,1000,NULL,100,NULL,0,0xFFFFFFFF,63,2,16,NULL,'99',1,NULL,'bonus bVit,6 + (BaseLevel > 129 ? 4 : 0); bonus bMaxHPrate,(getrefine() / 3) * 4; bonus bUnbreakableArmor;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15129,'Blue_Bellflower_Hat','Luxury Doram Suit',4,20,NULL,800,NULL,100,NULL,1,0x80000000,7,2,16,NULL,'140',1,NULL,'bonus bMaxHPrate,10; bonus bMaxSPrate,10; .@r = getrefine()/2; bonus bDex,.@r; bonus bInt,.@r;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15138,'Aegir_Armor','Aegir Armor',4,10,NULL,1600,NULL,25,NULL,1,0xFFFFFFFF,63,2,16,NULL,'40',1,NULL,'bonus bMaxHP,500; bonus bMaxSP,50; bonus bUnbreakableArmor;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15141,'Rift_Ancient_Armor','Rift Ancient Armor',4,10,NULL,500,NULL,30,NULL,1,0xFFFFFFFF,63,2,16,NULL,'100',1,NULL,'.@r = getrefine(); bonus bMaxHP,(.@r >= 9 ? 1500 : .@r >= 7 ? 900 : 500); bonus bMaxSP,-100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15143,'Vermin_Cloth','Vermin Cloth',4,10,NULL,1200,NULL,30,NULL,1,0xFFFFFFFF,63,2,16,NULL,'70',1,0,'.@r = getrefine(); bonus bMdef,5+.@r; bonus2 bSubRace,RC_Plant,(5+.@r);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15144,'Agriculture_Clothes','Agriculture Clothes',4,10,NULL,1200,NULL,30,NULL,1,0xFFFFFFFF,63,2,16,NULL,'70',1,0,'.@r = getrefine(); bonus bMdef,5+.@r; bonus2 bSubRace,RC_Insect,5+.@r;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15145,'EvilDragon_Armor','Evil Dragon Armor',4,0,NULL,4000,NULL,60,NULL,1,0xFFFFFFFF,63,2,16,NULL,'99',1,NULL,'.@r = getrefine(); if(.@r>=10){ bonus2 bHPDrainRate,60,6; bonus2 bSPDrainRate,50,5; } else if(.@r>=9){ bonus2 bHPDrainRate,40,4; bonus2 bSPDrainRate,30,3; } else if(.@r>=8){ bonus2 bHPDrainRate,30,3; bonus2 bSPDrainRate,20,2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15146,'Flattery_Robe','Flattery Robe',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,16,NULL,'100',1,NULL,'skill "SM_ENDURE",1; .@i = BaseLevel; bonus bMatk,(.@i>=140)?(150):((.@i>=120)?(100):(50));',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15147,'Invective_Robe','Invective Robe',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,16,NULL,'100',1,NULL,'skill "AC_CONCENTRATION",1; .@i = getrefine()*4; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,.@i; bonus2 bIgnoreDefRaceRate,RC_Demon,.@i; bonus2 bIgnoreDefRaceRate,RC_Undead,.@i;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15150,'White_Shirt','White Shirt',4,20,NULL,50,NULL,25,NULL,1,0x80000000,7,2,16,NULL,'6',1,NULL,'bonus bMaxHP,70; bonus bFlee,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15151,'White_Eco-Shirt','White Eco-Shirt',4,20,NULL,100,NULL,40,NULL,1,0x80000000,7,2,16,NULL,'15',1,NULL,'bonus bMaxHP,150; bonus bFlee,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15152,'Unity_Mail','Unity Mail',4,10,NULL,300,NULL,45,NULL,1,0xFFFFFFFF,63,2,16,NULL,'1',1,0,'.@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bStr,2; bonus bMaxHPrate,2*(.@r/2); }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15153,'Unity_Mantle','Unity Mantle',4,10,NULL,300,NULL,45,NULL,1,0xFFFFFFFF,63,2,16,NULL,'1',1,0,'.@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bAgi,2; bonus bFlee,3*(.@r/2); }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15154,'Unity_Suit','Unity Suit',4,10,NULL,300,NULL,45,NULL,1,0xFFFFFFFF,63,2,16,NULL,'1',1,0,'.@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bDex,2; bonus bCritical,2*(.@r/2); }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15155,'Unity_Robe','Unity Robe',4,10,NULL,300,NULL,45,NULL,1,0xFFFFFFFF,63,2,16,NULL,'1',1,0,'.@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bInt,2; bonus bUseSPrate,-(.@r/2); }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15156,'Elegant_Doram_Suit','Elegant Doram Suit',4,20,NULL,900,NULL,120,NULL,1,0x80000000,7,2,16,NULL,'175',1,NULL,'bonus bMaxHPrate,15; bonus bMaxSPrate,15; .@r = getrefine(); bonus bDex,.@r; bonus bInt,.@r; if(.@r > 9) bonus bUseSPrate,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15162,'Lounge_Suit','Lounge Suit',4,20,NULL,300,NULL,40,NULL,1,0xFFFFFFFE,63,2,16,NULL,'80',1,NULL,'bonus bAspdRate,3; bonus bCastrate,-3; bonus bDelayrate,-3; if(getrefine() > 6) { bonus bAspdRate,2; bonus bCastrate,-2; bonus bDelayrate,-2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15163,'Agenda_Robe','Agenda Robe',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,16,NULL,'100',1,NULL,'skill "SA_SPELLBREAKER",1; if (BaseLevel >= 140) { .@val = 14; } else if (BaseLevel >= 120) { .@val = 9; } else { .@val = 5; } bonus bMatkRate,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15164,'Consultative_Robe','Consultation Robe',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,16,NULL,'100',1,NULL,'.@r = getrefine(); bonus bVit,5; skill "PA_SACRIFICE",1; bonus2 bSubEle,Ele_Dark,.@r*3; bonus2 bSubEle,Ele_Fire,.@r*3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15165,'Pure_White_Marching_Hat','Pure White Marching Hat',4,20,NULL,300,NULL,0,NULL,1,0xFFFFFFFF,63,2,256,NULL,'60',1,1470,'.@r = getrefine(); bonus bStr,2; autobonus "{ bonus bAtkEle,Ele_Ghost; }",5+.@r,60000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; /* Unknow Rates */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15166,'Rosary_Necklace','Rosary Necklace',4,20,NULL,300,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'60',0,1471,'bonus bFlee2,2; bonus bHealPower,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15169,'Kardui_Robe','Kardui Robe',4,20,NULL,800,NULL,60,NULL,1,0xFFFFFFFF,63,2,16,NULL,'90',1,0,'.@r = getrefine(); bonus bMatk,10; bonus bMdef,5; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; if(.@r>=7) { bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; } if(.@r>=8) { bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; bonus bUnbreakableArmor; } if(.@r>=9) { bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15174,'Surfer_Swimsuit','Surfer Swimsuit',4,20,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,63,2,16,NULL,'40',1,NULL,'bonus bMaxHPrate,(getrefine()/3)+5; bonus bMaxSPrate,(getrefine()/3)+5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15175,'Flame_Dragon_Armor','Flame Dragon Armor',4,20,NULL,400,NULL,100,NULL,1,0xFFFFFFFF,63,2,16,NULL,'90',1,0,'.@r = getrefine(); if (.@r>=9) .@val = 20; else if (.@r>=7) .@val = 10; bonus bAllStats,1; bonus bHit,10+.@val; bonus2 bAddClass,Class_Boss,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15176,'Vigilante_Suit','Vigilante Suit',4,0,NULL,500,NULL,50,NULL,0,0x00020000,56,2,16,NULL,'100',1,0,'.@r = getrefine(); bonus bDex,5; bonus bLongAtkRate,3*(.@r/2); if (.@r>=9) bonus2 bSkillAtk,"SC_TRIANGLESHOT",20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15177,'Elemental_Robe','Elemental Robe',4,0,NULL,500,NULL,40,NULL,0,0x00010000,56,2,16,NULL,'100',1,0,'.@r = getrefine(); bonus bAspdRate,10; bonus bMatk,5*(.@r/2); if (.@r>=9) bonus3 bAutoSpell,"MG_THUNDERSTORM",max(5,getskilllv("MG_THUNDERSTORM")),50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15178,'Golden_Ninja_Suit','Golden Ninja Suit',4,0,NULL,500,NULL,50,NULL,0,0x20000000,63,2,16,NULL,'100',1,0,'.@r = getrefine(); bonus bflee,5*(.@r/2); if (.@r>=9) bonus2 bSkillAtk,"KO_HAPPOKUNAI",20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15179,'Mine_Worker\'s_Vest','Mine Worker\'s Vest',4,0,NULL,1500,NULL,80,NULL,0,0x00000400,56,2,16,NULL,'100',1,0,'.@r = getrefine(); bonus bFlee,(10+4*(.@r/2)); if (.@r>=9) bonus bCritical,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15180,'Hippie_Clothes','Hippie Clothes',4,NULL,NULL,50,NULL,50,NULL,NULL,0x00080000,56,2,16,NULL,'100',1,NULL,'.@r = getrefine(); bonus bBaseAtk,20; if (.@r >= 9) bonus3 bAutoSpell,"AC_DOUBLE",max(3,getskilllv("AC_DOUBLE")),10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15181,'Para_Team_Uniform100','Awakened Eden Group Uniform I',4,20,NULL,0,NULL,80,NULL,0,0xFFFFFFFF,63,2,16,NULL,'100',NULL,NULL,'bonus bAllStats,1; bonus bMaxHP,700; bonus bMaxSP,100; bonus bMdef,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15182,'Para_Team_Uniform115','Awakened Eden Group Uniform II',4,20,NULL,0,NULL,85,NULL,0,0xFFFFFFFF,63,2,16,NULL,'115',NULL,NULL,'bonus bAllStats,1; bonus bMaxHP,1100; bonus bMaxSP,120; bonus bMdef,11;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15183,'Para_Team_Uniform130','Awakened Eden Group Uniform III',4,20,NULL,0,NULL,90,NULL,0,0xFFFFFFFF,63,2,16,NULL,'130',NULL,NULL,'bonus bAllStats,2; bonus bMaxHP,1100; bonus bMaxSP,120; bonus bMdef,11;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15184,'Para_Team_Uniform145','Awakened Eden Group Uniform IV',4,20,NULL,0,NULL,100,NULL,0,0xFFFFFFFF,63,2,16,NULL,'145',NULL,NULL,'bonus bAllStats,2; bonus bMaxHP,1500; bonus bMaxSP,150; bonus bMdef,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15185,'Para_Team_Uniform160','Awakened Eden Group Uniform V',4,20,NULL,0,NULL,100,NULL,0,0xFFFFFFFF,63,2,16,NULL,'160',NULL,NULL,'bonus bAllStats,2; bonus bMaxHP,1500; bonus bMaxSP,150; bonus bMdef,15; bonus2 bSubEle,Ele_All,5; bonus2 bSubEle,Ele_Neutral,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15186,'Kafra_Uniform','Kafra Uniform',4,20,NULL,500,NULL,40,NULL,1,0xFFFFFFFF,63,2,16,NULL,'1',1,NULL,'bonus2 bExpAddClass,Class_All,5; bonus2 bDropAddClass,Class_All,5; .@r = getrefine(); bonus bMaxHP,100*.@r; bonus bMaxSP,20*.@r; bonus bMaxHPrate,(3*(.@r>=7)+5*(.@r>=9)); bonus bMaxSPrate,(3*(.@r>=7)+5*(.@r>=9)); if(.@r>=12){ bonus bHPrecovRate,100; bonus bSPrecovRate,100; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15189,'Einherjar_Armor','Einherjar Armor',4,20,NULL,800,NULL,60,NULL,1,0xFFFFFFFF,63,2,16,NULL,'90',1,NULL,'bonus bMdef,5; bonus bBaseAtk,10; .@r = getrefine(); if(.@r>=7){ bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; } if(.@r>=8){ bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; } if(.@r>=9){ bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15191,'Khalitzburg_Knight_Armor','Khalitzburg Knight Armor',4,20,NULL,100,NULL,45,NULL,1,0xFFFFFFFF,63,2,16,NULL,'100',1,0,'bonus bLongAtkRate,2*getrefine(); bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15195,'Illusion_Puente_Robe','Illusion Puente Robe',4,20,NULL,400,NULL,52,NULL,1,0xFFFFFFFF,63,2,16,NULL,'99',1,0,'bonus bFixedCastrate,-3; .@r = getrefine(); bonus bHealPower2,(5+.@r); bonus bAddItemHealRate,(5+.@r);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15204,'Abyss_Dress','Abyss Dress',4,10,NULL,400,NULL,120,NULL,0,0xFFFFFFFF,63,2,16,NULL,'90',1,0,'.@r = getrefine(); bonus bNoKnockback; bonus bUnbreakableArmor; bonus bDefEle,Ele_dark; if (.@r>=5) { .@val = 10; if (.@r>=7) { .@val += 15; if (.@r>=9) { .@val += 15; } } bonus2 bAddEle,Ele_Dark,.@val; bonus2 bAddEle,Ele_Undead,.@val; bonus2 bMagicAddEle,Ele_Dark,.@val; bonus2 bMagicAddEle,Ele_Undead,.@val; bonus2 bAddRace,RC_Undead,.@val; bonus2 bAddRace,RC_Demon,.@val; bonus2 bMagicAddRace,RC_Undead,.@val; bonus2 bMagicAddRace,RC_Demon,.@val; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15205,'Medical_Scrubs','Medical Scrubs',4,20,NULL,1000,NULL,50,NULL,1,0xFFFFFFFF,63,2,16,NULL,'100',1,NULL,'.@r = getrefine(); bonus bMdef,10; bonus bDelayrate,-10; .@val = 1; if (.@r >= 7) { .@def = 50; bonus bUnbreakableArmor,1; .@val += 2; if (.@r >= 8) { .@def += 100; .@val += 3; bonus2 bSubRace,RC_DemiHuman,7; bonus2 bSubRace,RC_Player_Human,7; if (.@r >= 9) { .@def += 150; .@val += 4; bonus2 bResEff,Eff_Stone,5000; } } bonus bDef,.@def; } bonus bHealPower,2*.@val; bonus bHealPower2,.@val; bonus bAddItemHealRate,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15209,'Drake_Coat','Drake Coat',4,20,NULL,1200,NULL,60,NULL,1,0xFFFFFFFF,63,2,16,NULL,'100',1,0,'.@r = getrefine(); bonus bMaxHP,500; bonus bMaxSP,50; bonus bMdef,10; bonus2 bAddClass,Class_All,3; if (.@r>=7) { bonus bMaxHP,1000; bonus bMaxSP,100; bonus2 bAddClass,Class_All,3; } if (.@r>=9) { bonus bMaxHP,1500; bonus bMaxSP,150; bonus2 bAddClass,Class_All,4; bonus bNoSizeFix; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15212,'YSF01_Plate','YSF01 Plate',4,0,NULL,2100,NULL,78,NULL,1,0xFFFFFFFF,63,2,16,NULL,'170',1,0,'.@r = getrefine(); if (.@r >= 13) { .@val = 11; } else if (.@r >= 11) { .@val = 7; } else if (.@r >= 8) { .@val = 5; } if (readparam(bStr) >= 125) { .@val += .@r; } if (.@val) { bonus2 bAddClass,Class_All,.@val; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15250,'Beginner\'s_Suit','Beginner\'s Suit',4,0,NULL,0,NULL,40,NULL,1,0xFFFFFFFF,63,2,16,NULL,'100',0,0,'bonus bAllStats,1; bonus bMaxHP,400; bonus bMaxSP,100; bonus2 bAddClass,Class_All,2; bonus2 bMagicAddClass,Class_All,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15280,'S_Cri_Hit_Armor','Critical Hit Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'.@r = getrefine(); .@val = 7; bonus bBaseAtk,15; if (.@r > 1) { bonus bCritAtkRate,(.@r/2); if (.@r >= 7) { .@val += 7; } } bonus bCritical,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15283,'Mighty_Black_Threaded_Armor','Mighty Black Threaded Armor',4,20,NULL,800,NULL,60,NULL,1,0xFFFFFFFF,63,2,16,NULL,'100',1,0,'.@r = getrefine(); bonus bBaseAtk,10; bonus2 bIgnoreDefClassRate,Class_All,10; if (.@r>=7) { bonus bBaseAtk,20; bonus2 bIgnoreDefClassRate,Class_All,20; } if (.@r>=8) { bonus bBaseAtk,20; bonus2 bIgnoreDefClassRate,Class_All,20; bonus bUnbreakableArmor; } if (.@r>=9) { bonus bBaseAtk,30; bonus2 bIgnoreDefClassRate,Class_All,20; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15348,'Illusion_Goibne_Armor','Illusion Goibne Armor',4,0,NULL,3500,NULL,158,NULL,1,0xFFFFFFFE,63,2,16,NULL,'130',1,0,'bonus bMaxHPrate,10; .@r = getrefine(); if (.@r >= 9) { bonus bDef,150; } else if (.@r >= 7) { bonus bDef,50; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15352,'Nature_Dress','Nature Dress',4,10,NULL,400,NULL,120,NULL,0,0xFFFFFFFF,63,2,16,NULL,'90',1,0,'.@r = getrefine(); bonus bNoKnockback; bonus bUnbreakableArmor; bonus bDefEle,Ele_Earth; if (.@r>8) .@a = 40; else if (.@r>6) .@a = 25; else if (.@r>=5) .@a = 10; bonus2 bAddEle,Ele_Earth,.@a; bonus2 bAddEle,Ele_Wind,.@a; bonus2 bMagicAddEle,Ele_Earth,.@a; bonus2 bMagicAddEle,Ele_Wind,.@a; bonus2 bAddRace,RC_Demihuman,.@a; bonus2 bAddRace,RC_Brute,.@a; bonus2 bAddRace,RC_Player_Doram,.@a; bonus2 bMagicAddRace,RC_Demihuman,.@a; bonus2 bMagicAddRace,RC_Brute,.@a; bonus2 bMagicAddRace,RC_Player_Doram,.@a; bonus2 bAddRace,RC_Player_Human,.@a; bonus2 bMagicAddRace,RC_Player_Human,.@a;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15376,'Illusion_Armor_A-type','Illusion Armor A-type',4,0,NULL,1000,NULL,105,NULL,1,0xFFFFFFFF,63,2,16,NULL,'130',1,0,'.@r = getrefine(); bonus bBaseAtk,(100+10*(.@r/2)); if (.@r >= 7) { bonus bAspdRate,10; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15377,'Illusion_Armor_B-type','Illusion Armor B-type',4,0,NULL,1000,NULL,105,NULL,1,0xFFFFFFFF,63,2,16,NULL,'130',1,0,'.@r = getrefine(); bonus bMatk,(100+10*(.@r/2)); if (.@r >= 7) { bonus bVariableCastrate,-10; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15378,'Lava_Leather_Armor','Lava Leather Armor',4,20,NULL,1500,NULL,85,NULL,1,0xFFFFFFFF,63,2,16,NULL,'175',1,0,'.@r = getrefine(); bonus bBaseAtk,100; if (.@r>=7) bonus bDef,100; if (.@r>=9) bonus bDef,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15379,'Lava_Leather_Suit','Lava Leather Suit',4,20,NULL,1000,NULL,70,NULL,1,0xFFFFFFFF,63,2,16,NULL,'175',1,0,'.@r = getrefine(); bonus bBaseAtk,100; if (.@r>=7) bonus bBaseAtk,50; if (.@r>=9) bonus bCritAtkRate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15380,'Lava_Leather_Robe','Lava Leather Robe',4,20,NULL,750,NULL,55,NULL,1,0xFFFFFFFF,63,2,16,NULL,'175',1,0,'.@r = getrefine(); bonus bMatk,100; if (.@r>=7) bonus bMatk,50; if (.@r>=9) bonus bMatk,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15384,'Ritual_Robes','Ritual Robes',4,10,NULL,400,NULL,0,NULL,1,0xFFFFFFFF,63,2,16,NULL,'100',1,0,'.@r = getrefine(); bonus bHealPower,5; bonus bDelayrate,-10; bonus bMaxHPrate,5; if (.@r>=7) { bonus bMaxHPrate,5; bonus bHealPower,5; } if (.@r>=8) { bonus bMaxHPrate,5; bonus bHealPower,10; bonus bUseSPrate,-10; bonus2 bResEff,Eff_Sleep,10000; } if (.@r>=9) { bonus bMaxHPrate,5; bonus bHealPower,10; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15405,'Fafnir_Scale','Fafnir Scale',4,20,NULL,1500,NULL,120,NULL,0,0xFFFFFFFF,63,2,16,NULL,'100',1,0,'.@r = getrefine(); bonus bMdef,15; bonus bUnbreakableArmor; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bSkillAtk,"RK_DRAGONBREATH",50; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",50; bonus bDelayrate,-2*getskilllv("RK_DRAGONBREATH_WATER"); bonus bLongAtkRate,2*getskilllv("RK_DRAGONBREATH"); if (.@r>=5) { bonus bMaxHPrate,20; bonus bMaxSPrate,20; bonus bDelayrate,-5; } if (.@r>=7) { bonus bMaxHPrate,20; bonus bMaxSPrate,20; bonus bDelayrate,-5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15409,'Bloody_Doll\'s_Dress','Bloody Doll\'s Dress',4,10,NULL,500,NULL,40,NULL,1,0xFFFFFFFF,63,2,16,NULL,'90',1,0,'.@r = getrefine(); bonus bMdef,5; bonus bMatk,10; bonus bDex,3; bonus2 bSubRace,RC_Player_Human,7; if (.@r>=7) { bonus bAspdRate,10; bonus bDelayrate,-10; } if (.@r>=8) bonus bUnbreakableArmor;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15417,'Armor_of_Purple_Thread','Armor of Purple Thread',4,20,NULL,800,NULL,60,NULL,1,0xFFFFFFFF,63,2,16,NULL,'100',1,0,'.@r = getrefine(); bonus bBaseAtk,10; bonus bPerfectHitAddRate,5; if (.@r>=7) { bonus bBaseAtk,20; bonus bPerfectHitAddRate,5; } if (.@r>=8) { bonus bBaseAtk,20; bonus bPerfectHitAddRate,10; } if (.@r>=9) { bonus bBaseAtk,30; bonus bPerfectHitAddRate,10; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15419,'Mighty_White_Threaded_Armor','Mighty White Threaded Armor',4,20,NULL,800,NULL,60,NULL,1,0xFFFFFFFF,63,2,16,NULL,'100',1,0,'.@r = getrefine(); bonus bMatk,10; bonus2 bIgnoreMdefRaceRate,RC_All,10; if (.@r>=7) { bonus bMatk,20; bonus2 bIgnoreMdefRaceRate,RC_All,20; } if (.@r>=8) { bonus bMatk,20; bonus2 bIgnoreMdefRaceRate,RC_All,20; bonus bUnbreakableArmor; } if (.@r>=9) { bonus bMatk,30; bonus2 bIgnoreMdefRaceRate,RC_All,20; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15420,'Ice_Prison_Dress','Ice Prison Dress',4,10,NULL,400,NULL,120,NULL,0,0xFFFFFFFF,63,2,16,NULL,'90',1,0,'.@r = getrefine(); bonus bNoKnockback; bonus bUnbreakableArmor; bonus bDefEle,Ele_Water; if (.@r>8) .@a = 40; else if (.@r>6) .@a = 25; else if (.@r>=5) .@a = 10; bonus2 bAddEle,Ele_Fire,.@a; bonus2 bAddEle,Ele_Water,.@a; bonus2 bMagicAddEle,Ele_Fire,.@a; bonus2 bMagicAddEle,Ele_Water,.@a; bonus2 bAddRace,RC_Demihuman,.@a; bonus2 bAddRace,RC_Formless,.@a; bonus2 bMagicAddRace,RC_Demihuman,.@a; bonus2 bMagicAddRace,RC_Formless,.@a; bonus2 bAddRace,RC_Player_Human,.@a; bonus2 bMagicAddRace,RC_Player_Human,.@a;',NULL,NULL); -#=================================================================== -# More Maces -#=================================================================== -REPLACE INTO `item_db_re` VALUES (15388,'King_Schmidt_Suit','King Schmidt\'s Suit',4,0,0,900,NULL,150,NULL,1,0xFFFFFFFF,63,2,16,NULL,'130',1,NULL,'.@r = getrefine(); bonus2 bAddSize,Size_Medium,10; bonus2 bAddSize,Size_Large,10; bonus2 bMagicAddSize,Size_Medium,10; bonus2 bMagicAddSize,Size_Large,10; if(.@r > 6){ bonus2 bAddEle,Ele_Fire,10; bonus2 bAddEle,Ele_Dark,10; bonus2 bMagicAddEle,Ele_Fire,10; bonus2 bMagicAddEle,Ele_Dark,10; } if(.@r > 8){ bonus2 bSubRace,RC_Dragon,15; bonus2 bSubRace,RC_Formless,15; } if(.@r > 10){ bonus2 bSubSize,Size_Medium,10; bonus2 bSubSize,Size_Large,10; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (15389,'King_Schmidt_Manteau','King Schmidt\'s Manteau',4,0,0,600,NULL,70,NULL,1,0xFFFFFFFF,63,2,4,NULL,'130',1,NULL,'.@r = getrefine(); bonus2 bAddEle,Ele_Fire,(.@r/3)*2; bonus2 bAddEle,Ele_Dark,(.@r/3)*2; bonus2 bMagicAddEle,Ele_Fire,(.@r/3)*2; bonus2 bMagicAddEle,Ele_Dark,(.@r/3)*2; if(.@r > 6){ bonus2 bSubRace,RC_Dragon,5; bonus2 bSubRace,RC_Formless,5; } if(.@r > 10){ bonus2 bAddRace,RC_Dragon,15; bonus2 bAddRace,RC_Formless,15; bonus2 bMagicAddRace,RC_Dragon,15; bonus2 bMagicAddRace,RC_Formless,15; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16000,'Erde','Erde',5,20,NULL,500,'130',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16001,'Red_Square_Bag','Red Square Bag',5,20,NULL,500,'130',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16002,'Stunner_C','Stunner',5,0,NULL,0,'175',NULL,1,0,0x00008110,63,2,2,3,'1',0,8,'bonus2 bAddEff,Eff_Stun,1000; bonus2 bAddSize,Size_All,40;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16003,'Carga_Mace','Carga Mace',5,20,NULL,1500,'175',NULL,1,2,0x0004C5B2,63,2,2,3,'100',1,8,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16004,'P_Mace1','Eden Mace I',5,0,NULL,0,'142',NULL,1,0,0x0004C5B2,63,2,2,2,'26',0,8,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16005,'P_Mace2','Eden Mace II',5,0,NULL,0,'163',NULL,1,0,0x0004C5B2,63,2,2,2,'40',0,8,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16006,'Tourist_Mace','Tourist Mace',5,0,NULL,500,'45',NULL,1,0,0x0004C5B3,63,2,2,1,'1',0,8,'bonus bInt,1; bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16007,'Mjolnir_C','Mjolnir',5,20,NULL,0,'250',NULL,1,0,0x000444A2,63,2,2,4,'95',0,8,'bonus bAtkEle,Ele_Wind; bonus bStr,15; bonus bDex,40;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16008,'F_Spanner_C','Spanner',5,2,NULL,0,'150',NULL,1,0,0x00008110,63,2,2,3,'0',0,8,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16009,'E_Spanner_C','Spanner',5,2,NULL,0,'150',NULL,1,0,0x00008110,63,2,2,3,'0',0,8,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16010,'Red_Ether_Bag','Red Ether Bag',5,20,NULL,1000,'15:100',NULL,1,1,0x0004C5B2,63,2,2,3,'102',1,8,'.@r = getrefine(); if(.@r>=6){ bonus2 bSkillAtk,"GN_CRAZYWEED",20+((.@r-5)*2); bonus2 bSkillAtk,"GN_DEMONIC_FIRE",20+((.@r-5)*2); } else { bonus2 bSkillAtk,"GN_CRAZYWEED",20; bonus2 bSkillAtk,"GN_DEMONIC_FIRE",20; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16011,'Adventure_Mace','Adventure Mace',5,0,NULL,0,'60',NULL,1,0,0x00008110,63,2,2,1,'1',0,8,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16012,'Academy_Mace','Academy Mace',5,0,NULL,1000,'110',NULL,1,1,0x00008110,63,2,2,1,'1',1,8,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16013,'Mace_Of_Judgement','Mace Of Judgement',5,20,NULL,1200,'140:180',NULL,1,2,0x00000100,56,2,2,3,'100',1,8,'bonus bAtkEle,Ele_Holy; 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; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16014,'P_Mace3','Eden Mace III',5,0,NULL,0,'172',NULL,1,0,0x0004C5B3,63,2,2,3,'60',0,8,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16015,'Cat_Club','Cat Club',5,20,NULL,700,'88',NULL,1,3,0x0004C5B3,63,2,2,1,'1',1,8,'bonus2 bAddRace,RC_Brute,15; bonus2 bAddRace,RC_Player_Doram,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16016,'Tuna','Tuna',5,0,NULL,0,'180',NULL,1,0,0x0004C5B3,63,2,2,1,'50',0,8,'bonus bUnbreakableWeapon; bonus2 bAddEff,Eff_Stun,1500; bonus3 bAutoSpell,"SM_BASH",max(getskilllv("SM_BASH"),5),20; bonus2 bAddEff2,Eff_Freeze,100; if(BaseLevel>99) bonus bBaseAtk,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16017,'Bloody_Cross','Bloody Cross',5,20,NULL,1500,'170',NULL,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);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16018,'Mace_Of_Judgement2','Empowered Mace Of Judgement',5,20,NULL,1200,'170:180',NULL,1,1,0x00000100,56,2,2,3,'130',1,8,'bonus bAtkEle,Ele_Holy; 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; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16019,'Upg_Mace','Upg Mace',5,20,NULL,800,'80',NULL,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);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16020,'Velum_Stunner','Vellum Stunner',5,20,NULL,1500,'170',NULL,1,0,0x0004C5B3,63,2,2,4,'95',1,8,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus2 bAddEff,Eff_Stun,1000+.@r; bonus4 bSetDefRace,RC_Player_Human,10000,5000,1; bonus4 bSetMDefRace,RC_Player_Human,10000,5000,1; bonus bAspdRate,.@r;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16021,'Velum_Flail','Vellum Flail',5,20,NULL,1500,'170',NULL,1,0,0x0004C5B3,63,2,2,4,'95',1,8,'bonus bUnbreakableWeapon; bonus3 bStateNoRecoverRace,RC_Player_Human,10000,10000; .@r = getrefine(); bonus bHit,.@r/2; bonus bCritical,.@r;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16022,'Nemesis_','Nemesis',5,20,NULL,900,'120',NULL,1,2,0x00008110,63,2,2,4,'60',1,8,'bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Holy;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16023,'Metal_Mace','Metal Mace',5,20,NULL,0,'80',NULL,1,1,0x0004C5B3,63,2,2,3,'1',1,8,'bonus bUnbreakableWeapon; bonus bBaseAtk,(getrefine()*5); .@i = min(BaseLevel/10,12); if(.@i>2) bonus bBaseAtk,((.@i-2)*5);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16024,'Quadrille_','Quadrille',5,10,NULL,900,'165',NULL,NULL,2,0x00008110,63,2,2,4,'40',1,8,'bonus2 bAddRace,RC_Undead,10; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus2 bAddEle,Ele_Earth,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16025,'TE_Woe_Mace','TE Woe Mace',5,0,NULL,0,'120',NULL,1,0,0x0004C5B3,63,2,2,3,'40',1,8,'bonus bUnbreakableWeapon; bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Freeze,3000; bonus bHPRecovRate,5; bonus bSPRecovRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16026,'RWC_Memory_Mace','RWC Memory Mace',5,20,NULL,800,'100',NULL,1,1,0x0004C5B2,63,2,2,3,'1',1,8,'bonus bUnbreakableWeapon; .@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; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16027,'Hammer_Of_Evil_Slayer','Evil Slayer Destroyer Hammer',5,10,NULL,1350,'125',NULL,1,1,0x0004C5B3,63,2,2,3,'100',1,8,'bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; .@r = getrefine(); bonus2 bAddClass,Class_All,(.@r>=12?12:(.@r>=9?5:0));',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16028,'Thanos_Hammer','Thanos Hammer',5,10,NULL,3000,'180:120',NULL,1,1,0x0004C5B2,56,2,2,4,'120',1,8,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000;',NULL,'heal -1000,0;'); -REPLACE INTO `item_db_re` VALUES (16029,'Noble_Cross','Noble Cross',5,10,NULL,1500,'195:150',NULL,NULL,1,0x00000010,58,2,2,4,'40',1,8,'bonus bAtkEle,Ele_Holy; bonus3 bAutoSpell,"PR_TURNUNDEAD",6,50; bonus2 bSPDrainValueRace,RC_Undead,1; bonus2 bSPGainRace,RC_Undead,12;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16030,'Pilebuncker_S','Pile Bunker S',5,20,NULL,3000,'400',NULL,1,1,0x00000400,56,2,2,4,'130',1,8,'bonus bAspdRate,getrefine()/2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16031,'Pilebuncker_P','Pile Bunker P',5,20,NULL,4000,'450',NULL,1,NULL,0x00000400,56,2,2,4,'130',1,8,'bonus bBaseAtk,getrefine()*5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16032,'Pilebuncker_T','Pile Bunker T',5,20,NULL,3500,'400',NULL,1,1,0x00000400,56,2,2,4,'130',1,8,'bonus bUseSPrate,getrefine()*-1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16033,'Robot\'s_Arm','Robot\'s Arm',5,30000,NULL,3000,'195',NULL,1,2,0x0004C5B2,56,2,2,4,'130',1,8,'bonus bUnbreakableWeapon; bonus bCritical,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16034,'Half_Mjolnir','Half Mjolnir',5,20,NULL,6000,'350',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16035,'Half_BF_Morning_Star1','Half BF Morning Star1',5,20,NULL,0,'105',NULL,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_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16036,'Ru_Blue_Mace','Blue Mace',5,10,NULL,1500,'170',NULL,1,1,0x00008000,56,2,2,3,'100',1,8,'bonus bVit,5; bonus bInt,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16037,'Ru_Gold_Mace','Ru Gold Mace',5,0,NULL,1500,'170',NULL,1,2,0x00008000,56,2,2,3,'120',1,8,'bonus bVit,8; bonus bInt,8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16038,'Infinity_Mace','Infinity Mace',5,10,NULL,500,'155',NULL,1,1,0x0004C780,56,2,2,4,'100',1,8,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16039,'Spoon','Spoon',5,10,NULL,1000,'80',NULL,1,1,0x0004C5B3,63,2,2,3,'40',1,8,'bonus bAspd,10; bonus2 bAddEff,Eff_Curse,1000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16040,'Crimson_Mace','Crimson Mace',5,20,NULL,800,'80',NULL,1,2,0x0004C5B3,63,2,2,3,'70',1,8,'.@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16041,'Mace_of_Vicious_Mind','Mace of Vicious Mind',5,20,NULL,1300,'130',NULL,1,1,0x0004C5B3,63,2,2,4,'160',1,8,'bonus bAtk,pow(min(getrefine(),15),2); bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16043,'Meteor_Strike','Meteor Strike',5,0,NULL,20000,'1',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16048,'Unity_Mace','Unity Mace',5,20,NULL,400,'76',NULL,1,1,0x0004C5B3,63,2,2,3,'1',1,8,'bonus bBaseAtk,pow(getrefine(),2)*125/100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16051,'Valkyrie_Hammer_','Valkyrie Hammer',5,0,NULL,100,'50',NULL,1,4,0x0004C5B3,63,2,2,4,'70',1,8,'.@r = getrefine(); bonus bMatk,50; if (BaseJob==Job_Novice) { bonus bBaseAtk,150; bonus bMatk,200; bonus bUseSPrate,-5; bonus bHit,10; bonus bMaxHP,500+(200*.@r); bonus bMaxSP,400; bonus bVit,.@r; bonus bFlee2,.@r; bonus bAspdRate,.@r; bonus bVariableCastrate,-.@r/2; } if (BaseClass==Job_Swordman) { bonus bVit,.@r; bonus bMaxHP,500; bonus bMaxSP,100; } if (BaseJob==Job_Priest) { bonus bBaseAtk,50; bonus bMatk,100; bonus bAspdRate,.@r; } if (BaseJob==Job_Monk) { bonus bMaxSP,200; bonus bUseSPrate,-5; bonus bFlee2,.@r; } if (BaseClass==Job_Merchant) { bonus bBaseAtk,100; bonus bHit,10; bonus bVariableCastrate,-.@r/2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16060,'Liquor_Bottle','Liquor Bottle',5,0,NULL,700,'120',NULL,1,3,0x0004C5B3,63,2,2,3,'100',1,8,'bonus bUnbreakableWeapon; bonus2 bAddEff,Eff_Stun,(300*getrefine());',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16063,'Illusion_Long_Mace','Illusion Long Mace',5,20,NULL,800,'185',NULL,3,2,0x00008110,63,2,2,4,'99',1,8,'bonus bLongAtkDef,(10+3*(getrefine()/2));',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16065,'Illusion_Iron_Driver','Illusion Iron Driver',5,0,NULL,2000,'210',NULL,2,2,0x00000100,56,2,2,4,'120',1,8,'.@r = getrefine(); bonus bAspd,(.@r/2); bonus2 bSkillAtk,"AB_DUPLELIGHT",(3*.@r);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16088,'Sapphire_Mace-OS','Sapphire Mace-OS',5,20,NULL,800,'185',NULL,1,2,0x00040000,56,2,2,4,'130',1,8,'.@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bAddClass,Class_All,3; if (.@r >= 7) { bonus bVariableCastrate,-7; if (.@r >= 9) { bonus2 bSkillAtk,"GN_CARTCANNON",20; if (.@r >= 11) { bonus bLongAtkRate,15; } } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16089,'Ultio-OS','Ultio-OS',5,20,NULL,1200,'150:170',NULL,1,2,0x00000100,56,2,2,4,'130',1,8,'.@r = getrefine(); bonus bMatkRate,3; if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus2 bSkillAtk,"AB_ADORAMUS",20; if (.@r >= 11) { bonus2 bMagicAtkEle,Ele_Holy,15; } } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16092,'Engine_Pilebuncker','Engine Pilebuncker',5,0,NULL,3200,'450',NULL,1,2,0x00000400,56,2,2,4,'170',1,8,'.@r = getrefine(); bonus bUnbreakableWeapon; bonus bAspdRate,.@r; bonus2 bSkillAtk,"NC_VULCANARM",10; if (.@r>=9) { bonus2 bSkillAtk,"NC_ARMSCANNON",15; bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",15; } if (.@r>=11) bonus2 bSkillAtk,"NC_VULCANARM",15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16093,'Coolant_Injection','Coolant Injection',5,0,NULL,1400,'210',NULL,1,2,0x00040000,56,2,2,4,'170',1,8,'.@r = getrefine(); bonus bUnbreakableWeapon; bonus bLongAtkRate,10; bonus2 bAddClass,Class_All,.@r; if (.@r>=9) bonus2 bSkillAtk,"GN_CARTCANNON",25; if (.@r>=11) bonus bLongAtkRate,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16094,'Gene_Rod','Gene Rod',5,0,NULL,1400,'195',NULL,1,2,0x00040000,56,2,2,4,'170',1,8,'.@r = getrefine(); bonus bUnbreakableWeapon; bonus bBaseAtk,4*.@r; bonus2 bSkillAtk,"GN_CRAZYWEED",20; if (.@r>=9) bonus2 bSkillAtk,"GN_CRAZYWEED",30; if (.@r>=11) bonus2 bSkillCooldown,"GN_CRAZYWEED",-2000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16095,'Lucis_Flail','Lucis Flail',5,NULL,NULL,1000,'180:160',NULL,1,2,0x00000100,56,2,2,4,'170',1,8,'.@r = getrefine(); bonus bUnbreakableWeapon; bonus bAspd,1; bonus bMatk,4*.@r; if (.@r>=9) { bonus2 bSkillAtk,"AB_DUPLELIGHT",40; } if (.@r>=11) bonus3 bAutoSpell,"AB_JUDEX",max(2,getskilllv("AB_JUDEX")),50; /* Unknow Rates */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16096,'Bright_Pendulum','Bright Pendulum',5,0,NULL,1300,'210',NULL,1,2,0x00008000,56,2,2,4,'170',1,8,'.@r = getrefine(); bonus bUnbreakableWeapon; bonus bBaseAtk,4*.@r; bonus bVariableCastrate,-10; if (.@r>=9) { bonus2 bSkillAtk,"MO_FINGEROFFENSIVE",50; bonus2 bSkillAtk,"MO_INVESTIGATE",50; } if (.@r>=11) bonus2 bAddClass,Class_All,10;',NULL,NULL); -#=================================================================== -# More Rental Boxes -#=================================================================== -REPLACE INTO `item_db_re` VALUES (16131,'Lady_Tanee_Doll_Box','Lady Tanee Doll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5526,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16132,'Lunatic_Hat_Box','Lunatic Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5527,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16133,'G_Staff_Of_Light_Box','Staff Of Light Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2006,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16134,'King_Frog_Hat_Box','Frog King Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5528,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16135,'Evil\'s_Bone_Hat_Box','Satanic Bone Helm Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5529,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16185,'Raven_Cap_Box','Raven Cap Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5530,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16186,'B_Dragon_Hat_Box','Baby Dragon Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5531,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16192,'Quati_Hat_Box','Kwati Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5537,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16193,'Tucan_Hat_Box','Tucan Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5538,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16194,'Jaguar_Hat_Box','Jaguar Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5539,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16195,'Tw_March_Scroll','Tw March Scroll',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16226,'Aries_Diadem_Box','Aries Diadem Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5545,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16227,'Aries_Crown_Box','Aries Crown Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5546,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16228,'RJC_Katusa_Box','RJC Katusa Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5547,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16229,'Scarlet_Rose_Box','Scarlet Rose Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5548,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16230,'Taurus_Diadem_Box','Taurus Diadem Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5549,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16231,'Taurus_Crown_Box','Taurus Crown Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5550,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16232,'Reginleif_Box','Reginleif Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5471,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16235,'Octopus_Hat_Box','Octopus Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5554,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16236,'Leaf_Cat_Hat_Box','Leaf Cat Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5555,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16237,'Fur_Seal_Hat_Box','Fur Seal Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5556,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16238,'Wild_Rose_Hat_Box','Wild Rose Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5557,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16239,'Saci_Hat_Box','Saci Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5558,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16244,'Dolor_Hat_Box','Dolor Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5563,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16245,'Tw_April_Scroll','Tw April Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Tw_April_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16246,'Crown_Of_Deceit_Box','Crown Of Deceit Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5564,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16247,'Dragon_Arhat_Mask_Box','Dragon Arhat Mask Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5565,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16248,'Tiger_Arhat_Mask_Box','Tiger Arhat Mask Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5566,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16249,'Knight_Gift_Box','Knight Gift Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16250,'Valkyrie\'s_Gift_Box','Valkyrie\'s Gift Box',18,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getitem 5826,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16251,'Gemini_Diadem_Box','Gemini Diadem Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5569,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16252,'Gemini_Crown_Box','Gemini Crown Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5570,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16253,'Rabbit_Scroll','Rabbit Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16254,'Energizing_Potion_Box','Energizing Potion Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16257,'Buddah_Scroll','Buddah Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Buddah_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16258,'HD_Bradium_Box5','HD Bradium 5 Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6226,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16259,'HD_Carnium_Box5','HD Carnium 5 Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6225,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16260,'HD_Bradium_Box10','HD Bradium 10 Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6226,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16261,'HD_Carnium_Box10','HD Carnium 10 Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6225,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16262,'F_HD_Bradium_Box5','HD Bradium 5 Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6226,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16263,'F_HD_Carnium_Box5','HD Carnium 5 Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6225,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16264,'HD_Bradium_10_Box2','HD Bradium 10 Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6226,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16265,'HD_Carnium_10_Box2','HD Carnium 10 Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6225,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16266,'Indonesia_Beret_Box','Indonesia Beret Box',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getitem 5580,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16267,'HE_Battle_Manual_Box','HE Battle Manual Box',2,20,10,1,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12411,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16268,'HE_Bubble_Gum_Box','HE Bubble Gum Box',2,20,10,1,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12412,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16269,'Cancer_Diadem_Box','Cancer Diadem Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5581,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16270,'Cancer_Crown_Box','Cancer Crown Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5582,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16304,'Evil_Incarnation_Disable','Evil Incarnation',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Evil_Incarnation);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16305,'Upg_Guard_Box','Upg Guard Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2149,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16306,'F_Upg_Guard_Box','F Upg Guard Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2149,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16307,'Upg_Buckler_Box','Upg Buckler Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2150,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16308,'F_Upg_Buckler_Box','F Upg Buckler Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2150,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16309,'Upg_Shield_Box','Upg Shield Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2151,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16310,'F_Upg_Shield_Box','F Upg Shield Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2151,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16311,'Upg_Shoes_Box','Upg Shoes Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2459,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16312,'F_Upg_Shoes_Box','F Upg Shoes Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2459,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16313,'Upg_Boots_Box','Upg Boots Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2460,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16314,'F_Upg_Boots_Box','F Upg Boots Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2460,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16315,'Upg_Greave_Box','Upg Greave Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2461,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16316,'F_Upg_Greave_Box','F Upg Greave Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2461,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16317,'Upg_Hood_Box','Upg Hood Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2561,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16318,'F_Upg_Hood_Box','F Upg Hood Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2561,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16319,'Upg_Muffler_Box','Upg Muffler Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2562,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16320,'F_Upg_Muffler_Box','F Upg Muffler Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2562,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16321,'Upg_Manteau_Box','Upg Manteau Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2563,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16322,'F_Upg_Manteau_Box','F Upg Manteau Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2563,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16323,'Upg_Clip_Box','Upg Clip Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2828,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16324,'F_Upg_Clip_Box','F Upg Clip Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2828,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16327,'Upg_Adv_Suit_Box','Upg Adv Suit Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 15015,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16328,'F_Upg_Adv_Suit_Box','F Upg Adv Suit Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 15015,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16329,'Upg_Coat_Box','Upg Coat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 15016,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16330,'F_Upg_Coat_Box','F Upg Coat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 15016,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16331,'Upg_Saint_Robe_Box','Upg Saint Robe Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 15017,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16332,'F_Upg_Saint_Robe_Box','F Upg Saint Robe Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 15017,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16333,'Upg_Tights_Box','Upg Tights Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 15018,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16334,'F_Upg_Tights_Box','F Upg Tights Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 15018,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16335,'Upg_Thief_Cloth_Box','Upg Thief Cloth Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 15019,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16336,'F_Upg_Thief_Cloth_Box','F Upg Thief Cloth Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 15019,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16337,'Upg_Mail_Box','Upg Mail Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 15020,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16338,'F_Upg_Mail_Box','F Upg Mail Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 15020,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16339,'Upg_Formal_Dress_Box','Upg Formal Dress Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 15021,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16340,'F_Upg_Formal_Dress_Box','F Upg Formal Dress Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 15021,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16341,'Greed_Clip_Box','Greed Clip Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2829,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16342,'F_Greed_Clip_Box','F Greed Clip Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2829,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16343,'Leo_Crown_Box','Leo Crown Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5588,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16344,'Leo_Diadem_Box','Leo Diadem Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5589,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16345,'F_Leo_Crown_Box','F Leo Crown Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5588,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16346,'F_Leo_Diadem_Box','F Leo Diadem Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5589,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16360,'Desert_Prince_Box','Desert Prince Box',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5591,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16361,'FDesert_Prince_Box','FDesert Prince Box',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5591,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16362,'Sigrun\'s_Wing_Box','Sigrun\'s Wing Box',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5592,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16363,'FSigrun\'s_Wing_Box','FSigrun\'s Wing Box',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5592,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16368,'Virgo_Crown_Box','Virgo Crown Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5598,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16371,'Tw_Aug_Scroll','Tw Aug Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Tw_Aug_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16372,'F_Clover_Box_Mouth','F Clover Box Mouth',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_F_Clover_Box_Mouth); /*rentitem 4Leaf_Clover_In_Mouth,3600;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16374,'Mouth_Bubble_Gum_Box','Mouth Bubble Gum Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Mouth_Bubble_Gum_Box); /*rentitem Bubble_Gum_In_Mouth,3600;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16378,'Siege_Tele_Scroll_Box_30','Siege Teleport Scroll 30 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14591,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16379,'Siege_Teleport_Scroll_Silver_10Box','Siege Teleport Scroll Silver 10Box',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getitem 12415,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16380,'Siege_Teleport_Scroll_Silver_30Box','Siege Teleport Scroll Silver 30Box',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getitem 12415,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16381,'WoE_Teleport_Scroll_100_Box','WoE Teleport Scroll 100 Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12444,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16382,'WoE_Teleport_Scroll_30_Box','WoE Teleport Scroll 30 Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12444,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16385,'F_Clover_Box_Mouth2','F Clover Box Mouth2',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_F_Clover_Box_Mouth2); /*rentitem 4Leaf_Clover_In_Mouth,7200;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16386,'F_Clover_Box_Mouth4','F Clover Box Mouth4',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_F_Clover_Box_Mouth4); /*rentitem 4Leaf_Clover_In_Mouth,14400;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16389,'BGum_Box_In_Mouth2','BGum Box In Mouth2',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_BGum_Box_In_Mouth2); /*rentitem Bubble_Gum_In_Mouth,7200;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16390,'BGum_Box_In_Mouth4','BGum Box In Mouth4',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_BGum_Box_In_Mouth4); /*rentitem Bubble_Gum_In_Mouth,14400;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16393,'HD_Ori_Box5','HD Oridecon 5 Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6240,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16394,'HD_Ori_Box10','HD Oridecon 10 Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6240,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16395,'HD_Elu_Box5','HD Elunium 5 Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6241,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16396,'HD_Elu_Box10','HD Elunium 10 Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6241,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16397,'Virgo_Diadem_Box','Virgo Diadem Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5599,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16398,'Virgo_Crown_Box_','Virgo Crown Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5598,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16399,'Virgo_Diadem_Box_','Virgo Diadem Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5599,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16405,'Midgard_Coin_Box_','Midgard Coin Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6242,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16406,'FMidgard_Coin_Box','FMidgard Coin Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6242,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16409,'Tw_Sep_Scroll','Tw Sep Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Tw_Sep_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16410,'Chung_Hairband_Box','Chung Hairband Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5609,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16411,'FChung_Hairband_Box','FChung Hairband Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5609,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16412,'Ice_Wing_Ear_Box','Ice Wing Ear Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5610,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16413,'FIce_Wing_Ear_Box','FIce Wing Ear Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5610,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16414,'Turtle_Hat_Box','Turtle Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5611,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16415,'FTurtle_Hat_Box','FTurtle Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5611,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16418,'Giant_Fly_Wing_Box_500','Giant Fly Wing Box 500',2,20,10,1,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12212,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16419,'Greed_Scroll_Box_30','Greed Scroll Box 30',2,20,10,1,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14529,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16420,'Adventurer_Pack','Adventurer Pack',2,20,10,1,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12208,10; getitem 12210,10; getitem 12216,20; getitem 12215,20; getitem 7621,10; getitem 12209,10; getitem 12211,5; getitem 12445,10; getitem 12446,10; getitem 12447,10; getitem 12448,10; getitem 12449,10; getitem 12450,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16421,'Written_Oath_Of_Marriage_Box','Written Oath Of Marriage Box',2,20,10,1,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6026,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16422,'Magestic_Goat_Box_','Magestic Goat Box',2,20,10,1,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5280,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16423,'Episode_13.1_Key_Package','Episode 13.1 Key Package',2,20,10,1,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7782,1; getitem 12208,2; getitem 14582,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16424,'Executioner_Box_','Executioner Box',2,20,10,1,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1174,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16425,'Cutlus_Box','Cutlus Box',2,20,10,1,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13402,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16426,'Moonlight_Dagger_Box','Moonlight Dagger Box',2,20,10,1,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13026,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16427,'Wrench_Box','Wrench Box',2,20,10,1,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1534,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16428,'Solar_Sword_Box_','Solar Sword Box',2,20,10,1,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13403,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16429,'Tomahawk_Box_','Tomahawk Box',2,20,10,1,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1374,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16430,'Rudra_Bow_Box','Rudra Bow Box',2,20,10,1,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1729,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16431,'Pole_Axe_Box_','Pole Axe Box',2,20,10,1,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1419,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16436,'Libra_Crown_Box','Libra Crown Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5662,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16437,'Libra_Crown_Box_','Libra Crown Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5662,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16438,'Libra_Diadem_Box','Libra Diadem Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5663,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16439,'Libra_Diadem_Box_','Libra Diadem Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5663,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16440,'Filir_Wing_Box','Filir Wing Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5664,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16446,'Tw_October_Scroll','Tw October Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Tw_October_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16447,'Scorpio_Crown_Box','Scorpio Crown Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5676,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16448,'Scorpio_Diadem_Box','Scorpio Diadem Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5677,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16449,'Scorpio_Crown_Box_','Scorpio Crown Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5676,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16450,'FScorpio_Diadem_Box','FScorpio Diadem Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5677,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16456,'My_Scroll1','My Scroll1',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_My_Scroll1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16457,'Tw_Nov_Scroll','Tw Nov Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Tw_Nov_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16461,'Red_Wing_Hat_Box','Red Wing Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5690,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16462,'FRed_Wing_Hat_Box','FRed Wing Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5690,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16466,'My_Scroll2','My Scroll2',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_My_Scroll2);',NULL,NULL); -# -REPLACE INTO `item_db_re` VALUES (16481,'Small_Life_Potion_Box_10','Small Life Potion Box (10)',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12516,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16483,'Abrasive_Box_10','Abrasive Box (10)',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12514,10;',NULL,NULL); -# -REPLACE INTO `item_db_re` VALUES (16503,'E_Insurance_Package','E Insurance Package',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12209,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16504,'Bubble_Gum_Box_10','Bubble Gum Box(10)',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12210,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16505,'Steamed_Tongue_Box_10','Steamed Tongue Box (10)',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12501,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16506,'Steamed_Desert_Scorpions_Box_10','Steamed Desert Scorpions Box (10)',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12502,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16507,'Dragon_Breath_Cocktail_Box_10','Dragon Breath Cocktail Box (10)',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12503,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16508,'Hwergelmir\'s_Tonic_Box_10','Hwergelmir\'s Tonic Box (10)',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12504,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16509,'Cooked_Nine_Tail_Box_10','Cooked Nine Tail Box (10)',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12505,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16510,'Immortal_Stew_Box_10','Immortal Stew Box (10)',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12506,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16514,'Blessing_Scroll_Box_10','Blessing Scroll Box (10)',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12522,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16515,'Increase_Agility_Scroll_Box_10','Increase Agility Scroll Box (10)',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12523,10;',NULL,NULL); -# -REPLACE INTO `item_db_re` VALUES (16542,'Xmas_Bless','Xmas Bless',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Xmas_Bless);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16543,'Snowman_Hat_Box','Snowman Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5738,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16544,'FSnowman_Hat_Box','FSnowman Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5738,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16548,'Sagittarius_Crown_Box','Sagittarius Crown Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5739,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16549,'Sagittarius_Diadem_Box','Sagittarius Diadem Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5740,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16550,'Sagittarius_Crown_Box_','Sagittarius Crown Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5739,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16551,'Sagittarius_Diadem_Box_','Sagittarius Diadem Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5740,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16554,'Elven_Sunglasses_Box','Elven Sunglasses Box',2,20,NULL,1,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5245,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16555,'Pr_Reset_Stone_Box','Pr Reset Stone Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*getgroupitem(IG_Pr_Reset_Stone_Box);*/ getitem 6320,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16556,'FPremium_Reset_Stone_Box','Reset Stone Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*getgroupitem(IG_FPr_Reset_Stone_Box);*/ getitem 6320,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16557,'CP_Helm_Scroll10','CP Helm Scroll10',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14517,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16558,'CP_Shield_Scroll10','CP Shield Scroll10',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14518,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16559,'CP_Armor_Scroll10','CP Armor Scroll10',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14519,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16560,'CP_Weapon_Scroll10','CP Weapon Scroll10',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14520,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16561,'CP_Scroll_Package','CP Scroll Package',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16562,'Majestic_Devil_Scroll','Majestic Devil Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Majestic_Devil_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16563,'BM100_Box_5','BM100 Box 5',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14533,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16565,'Capricorn_Crown_Box','Capricorn Crown Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5744,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16566,'Capricorn_Crown_Box_','Capricorn Crown Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5744,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16567,'Capricorn_Diadem_Box','Capricorn Diadem Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5745,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16568,'FCapricorn_Diadem_Box','FCapricorn Diadem Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5745,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16569,'Summer_Scroll','Summer Scroll',2,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16570,'Muscles_Story_J_Box','Muscle Knights Summertime Guide Box',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16571,'Rice_Ball_Hat_Box','Rice Ball Hat Box',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getitem 5575,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16576,'Illusion_Nothing','Illusion Nothing',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Illusion_Nothing);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16577,'Dragon_Captain','Dragon Captain',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16582,'Red_Bunny_Band_Box','Red Bunny Band Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5763,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16584,'Sloth_Hat_Box','Sloth Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5761,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16585,'F_Sloth_Hat_Box','F Sloth Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5761,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16586,'Duneyrr_Helm_Box','Duneyrr Helm Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5762,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16587,'F_Duneyrr_Helm_Box','F Duneyrr Helm Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5762,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16588,'Thoughtful_Hat_Box','Thoughtful Hat Box',2,20,10,1,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem callfunc("F_Rand",5336,5337,5338,5346,5339,5474),1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16589,'Thoughtful_Hat_Box_','Thoughtful Hat Box',2,20,10,1,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem callfunc("F_Rand",5336,5337,5338,5346,5339,5474),1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16590,'Thoughtful_Hat_Box__','Thoughtful Hat Box',2,20,10,1,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem callfunc("F_Rand",5336,5337,5338,5346,5339,5474),1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16598,'Activation_Potion_Box_II','Activation Potion Box II',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -# -REPLACE INTO `item_db_re` VALUES (16659,'Zodiac_Diadem_Pack','Zodiac Diadem Box',2,20,NULL,1,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem callfunc("F_Rand",5545,5549,5569,5581,5589,5599,5663,5677,5740,5745,5512,5514),1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16600,'Spring_Flower_Scr_Tw','Spring Flower Scr Tw',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16601,'Blue_Arara_Hat_Box','Blue Arara Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5778,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16602,'F_Blue_Arara_Hat_Box','F Blue Arara Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5778,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16603,'Drooping_Votto_Box','Drooping Votto Box',18,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/* getitem drooping votto hat,1; */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16604,'Drooping_Votto_Box_','Drooping Votto Box',18,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/* getitem drooping votto hat[1],1; */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16606,'Tendrilrion_Hat_Box','Tendrilrion Hat Box',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5780,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16619,'Yellow_Bunnyband_Box','Yellow Bunnyband Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5783,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16620,'Yellow_Bunny_Headband_Box','Yellow Bunny Headband Box',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5783,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16622,'Pink_Bunny_Band_Box','Pink Bunny Band Box',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5784,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16623,'Green_Bunny_Band_Box','Green Bunny Band Box',18,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5785,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16625,'Half_Asprika_box7','Half Asprika Box7',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2566,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16628,'Brynhild_Box','Half Brynhild Box',2,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'47',NULL,NULL,'rentitem 15023,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16631,'Aributa_Scroll','Aributa Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16638,'Ribbon_Of_Life_Box','Life Ribbon Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Life_Ribbon_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16639,'Ribbon_Of_Life_Box2','Life Ribbon Box2',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Life_Ribbon_Box2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16640,'Ribbon_Of_Life_Box3','Life Ribbon Box3',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Life_Ribbon_Box3);',NULL,NULL); -# -REPLACE INTO `item_db_re` VALUES (16652,'Flame_Light','Flame Light',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Flame_Light);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16653,'BM75_10Box','BM75 10Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12563,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16654,'Valiant_Will','Valiant Will',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16655,'Rapid_Life_Potion_10_Box','Rapid Life Potion 10 Box',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getitem 12578,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16658,'Rapid_Water_Box_10','Rapid Water Box(10)',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12578,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16664,'Leo_Scroll','Leo Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16665,'Virgo_Scroll','Virgo Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16666,'Magic_Candy_Box10','Magic Candy Box10',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Magic_Candy_Box10); /*getitem Magic_Candy,10;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16668,'Kotak_Ketupat_Warna_Warni','Kotak Ketupat Warna Warni',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'rentitem 2869,20160000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16670,'Field_Manual_Box_A','Field Manual Box A',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14532,10; if (!rand(10)) getitem callfunc("F_Rand",603,617),1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16673,'Libra_Scroll','Libra Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Libra_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16675,'Splash_Scroll','Splash Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Splash_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16676,'Zodiac_Crown_Pack','Zodiac Crown Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem callfunc("F_Rand",5546,5550,5570,5582,5588,5598,5662,5676,5739,5744,5513,5515),1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16677,'Universal_Catalog_Gold_Box10','Universal Catalog Gold 10 Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12581,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16678,'Universal_Catalog_Gold_Box50','Universal Catalog Gold 50 Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12581,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16679,'Universal_Catalog_Gold_Box10_','Universal Catalog Gold 10 Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12581,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16680,'Universal_Catalog_Gold_Box50_','Universal Catalog Gold 50 Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12581,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16681,'BR_Independence_Scroll','BR Independence Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_BR_Independence_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16682,'Boarding_Halter_Box','Boarding Halter Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Boarding_Halter_Box); /*rentitem 12622,604800;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16683,'B_Halter_Box_30Days','B Halter Box 30Days',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12622,2592000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16684,'Wing_Of_Fly_Box10','Wing Of Fly Box10',2,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 601,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16685,'Wing_Of_Fly_Box50','Wing Of Fly Box50',2,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 601,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16686,'Wing_Of_Fly_Box100','Wing Of Fly Box100',2,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 601,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16687,'RWC2010_SuitcaseA','RWC2010 SuitcaseA',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_RWC2010_SuitcaseA);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16688,'RWC2010_SuitcaseB','RWC2010 SuitcaseB',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_RWC2010_SuitcaseB);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16691,'Scorpius_Scroll','Scorpius Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16692,'Alice_Hat_Box','Alice Hat Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5137,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16693,'Crescent_Helm_Box','Crescent Helm Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5142,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16694,'Crescent_Helm_Box_','Crescent Helm Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5142,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16695,'Dragon_Skull_Box','Dragon Skull Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5292,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16696,'Dragon_Skull_Box_','Dragon Skull Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5292,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16697,'Drooping_Bunny_Box','Drooping Bunny Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5290,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16698,'Drooping_Bunny_Box_','Drooping Bunny Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5290,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16699,'Evolved_Blue_Fish_Box','Evolved Blue Fish Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5222,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16701,'Evolved_Pair_of_Red_Ribbon_Box','Evolved Pair of Red Ribbon Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5221,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16702,'Evolved_Pair_of_Red_Ribbon_Box_','Evolved Pair of Red Ribbon Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5221,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16703,'Evolved_Pipe_Box','Evolved Pipe Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5220,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16704,'Evolved_Pipe_Box_','Evolved Pipe Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5220,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16705,'Hibiscus_Box','Hibiscus Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5139,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16706,'Hibiscus_Box_','Hibiscus Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5139,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16707,'Jumping_Poring_Box','Jumping Poring Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5335,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16708,'Jumping_Poring_Box_','Jumping Poring Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5335,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16709,'Kettle_Hat_Box','Kettle Hat Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5291,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16710,'Kettle_Hat_Box_','Kettle Hat Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5291,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16711,'Magic_Eyes_Box','Magic Eyes Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5138,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16712,'Magic_Eyes_Box_','Magic Eyes Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5138,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16713,'Mini_Propeller_Box','Mini Propeller Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5226,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16714,'Mini_Propeller_Box_','Mini Propeller Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5226,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16715,'Puppy_Hat_Box','Puppy Hat Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5182,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16716,'Puppy_Hat_Box_','Puppy Hat Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5182,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16717,'Sheep_Hat_Box','Sheep Hat Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5133,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16718,'Sheep_Hat_Box_','Sheep Hat Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5133,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16719,'Tiger_Mask_Box_','Tiger Mask Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5098,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16720,'Tiger_Mask_Box__','Tiger Mask Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5098,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16721,'Vaccation_Hat_Box','Vacation Hat Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5629,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16722,'Vane_Hairpin_Box','Vane Hairpin Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5285,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16723,'Vane_Hairpin_Box_','Vane Hairpin Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5285,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16724,'Vanilmirth_Hat_Box','Vanilmirth Hat Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5289,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16725,'Vanilmirth_Hat_Box_','Vanilmirth Hat Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5289,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16726,'Water_Lily_Crown_Box','Water Lily Crown Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5284,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16727,'Water_Lily_Crown_Box_','Water Lily Crown Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5284,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16728,'Pink_Beanie_Hat_Box','Pink Beanie Hat Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5237,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16729,'Pink_Beanie_Hat_Box_','Pink Beanie Hat Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5237,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16730,'Green_Ribbon_Box','Green Ribbon Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5193,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16731,'Green_Ribbon_Box_','Green Ribbon Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5193,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16732,'Gray_Deviruchi_Hat_Box','Gray Deviruchi Hat Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5229,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16733,'Gray_Deviruchi_Hat_Box_','Gray Deviruchi Hat Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5229,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16734,'Blue_Drooping_Cat_Box','Blue Drooping Cat Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5233,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16735,'Blue_Drooping_Cat_Box_','Blue Drooping Cat Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5233,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16736,'Fantastic_Wig_Box','Fantastic Wig Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5276,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16737,'Fantastic_Wig_Box_','Fantastic Wig Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5276,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16738,'Yellow_Mage_Hat_Box','Yellow Mage Hat Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5242,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16739,'Yellow_Mage_Hat_Box_','Yellow Mage Hat Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5242,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16740,'Ptotection_Seagod_Box','The Sea God\'s Call 23 Hour Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 6436,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16741,'Hairtail_Box1','Cutlass 1 Hour Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*getgroupitem(IG_Hairtail_Box1);*/ rentitem 1198,3600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16742,'Hairtail_Box2','Cutlass 7 Day Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*getgroupitem(IG_Hairtail_Box2);*/ rentitem 1198,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16743,'Spearfish_Box1','Marlin 1 Hour Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*getgroupitem(IG_Spearfish_Box1);*/ rentitem 1489,3600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16744,'Spearfish_Box2','Marlin 7 Day Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*getgroupitem(IG_Spearfish_Box2);*/ rentitem 1489,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16745,'Saurel_Box1','Pompano 1 Hour Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*getgroupitem(IG_Saurel_Box1);*/ rentitem 13068,3600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16746,'Saurel_Box2','Pompano 7 Day Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*getgroupitem(IG_Saurel_Box2);*/ rentitem 13068,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16747,'Tuna_Box1','Tuna 1 Hour Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*getgroupitem(IG_Tuna_Box1);*/ rentitem 16016,3600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16748,'Tuna_Box2','Tuna 7 Day Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*getgroupitem(IG_Tuna_Box2);*/ rentitem 16016,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16749,'Malang_Crab_Box1','Malangdo Crab 1 Hour Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*getgroupitem(IG_Malang_Crab_Box1);*/ rentitem 18107,3600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16750,'Malang_Crab_Box2','Malangdo Crab 7 Day Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*getgroupitem(IG_Malang_Crab_Box2);*/ rentitem 18107,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16751,'Brindle_Eel_Box1','Zebra Eel 1 Hour Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*getgroupitem(IG_Brindle_Eel_Box1);*/ rentitem 18108,3600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16752,'Brindle_Eel_Box2','Zebra Eel 7 Day Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*getgroupitem(IG_Brindle_Eel_Box2);*/ rentitem 18108,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16753,'Unbreak_Weap_Box','Unbreakable Weapon Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6438,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16754,'F_Unbreak_Weap_Box','Unbreakable Weapon Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6438,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16755,'Unbreak_Def_Box','Unbreakable Armor Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6439,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16756,'F_Unbreak_Def_Box','Unbreakable Armor Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6439,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16757,'Hallo_Scroll','Hallo Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Hallo_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16760,'Umbala_Spirit_Box2','Umbala Spirit Box2',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Umbala_Spirit_Box2); /*rentitem Umbala_Spirit,604800;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16761,'F_Umbala_Spirit_Box2','F Umbala Spirit Box2',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_F_Umbala_Spirit_Box2); /*rentitem Umbala_Spirit,604800;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16763,'Ptotection_Seagod_Box2','The Sea God\'s Call 7 Day Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*getgroupitem(IG_Ptotection_Seagod_Box2);*/ rentitem 6436,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16764,'Ptotection_Seagod_Box3','The Sea God\'s Call 15 Day Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*getgroupitem(IG_Ptotection_Seagod_Box3);*/ rentitem 6436,1209600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16765,'Octo_Hstick_Box','Octopus Hunting Skewer 23 Hour Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*getgroupitem(IG_Octo_Hstick_Box);*/ rentitem 6442,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16766,'Octo_Hstick_Box2','Octopus Hunting Skewer 3 Day Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*getgroupitem(IG_Octo_Hstick_Box2);*/ rentitem 6442,259200;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16767,'Octo_Hstick_Box3','Octopus Hunting Skewer 7 Day Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*getgroupitem(IG_Octo_Hstick_Box3);*/ rentitem 6442,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16770,'Silvervine_Fruit_Box10','Silvervine 10 Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*getgroupitem(IG_Silvervine_Fruit_Box10);*/ getitem 6417,10; getitem 12636,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16771,'Silvervine_Fruit_Box40','Silvervine 40 Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*getgroupitem(IG_Silvervine_Fruit_Box40);*/ getitem 6417,40; getitem 12636,120;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16774,'Asgard_Scroll','Asgard Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Asgard_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16775,'Sagittarius_Scroll','Sagittarius Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Sagittarius_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16776,'Universal_Catalog_Gold_Box10__','Universal Catalog Gold 10 Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12581,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16777,'Universal_Catalog_Gold_Box50__','Universal Catalog Gold 50 Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12581,50;',NULL,NULL); -# -REPLACE INTO `item_db_re` VALUES (16821,'Dungeon_Teleport_Scroll_Box_5','Dungeon Teleport Scroll Box(5)',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16822,'Dungeon_Teleport_Scroll_Box_10','Dungeon Teleport Scroll Box(10)',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16826,'Sagittarius_Scr_Box','Sagittarius Scr Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Sagittarius_Scr_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16837,'Dungeon_Teleport_Scroll_II_Box_5','Dungeon Teleport Scroll II Box(5)',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16838,'Dungeon_Teleport_Scroll_II_Box_10','Dungeon Teleport Scroll II Box(10)',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16864,'Siege_Map_Teleport_Scroll_Box_10','Siege Map Teleport Scroll Box(10)',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14591,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16865,'Siege_Map_Teleport_Scroll_Box_30','Siege Map Teleport Scroll Box(30)',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14591,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16866,'Siege_Map_Teleport_Scroll_II_Box_10','Siege Map Teleport Scroll II Box(10)',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14591,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16867,'Siege_Map_Teleport_Scroll_II_Box_30','Siege Map Teleport Scroll II Box(30)',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14591,30;',NULL,NULL); -# -REPLACE INTO `item_db_re` VALUES (16972,'Weather_Report_Box','Weather Report Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*getgroupitem(IG_Weather_Report_Box);*/ getitem 19507,1; getitem 19518,1; getitem 19520,1; getitem 19519,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16973,'Yellow_Hat_Box','Yellow Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 19515,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16974,'Comin_Actor_Box','Comin Actor Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*getgroupitem(IG_Comin_Actor_Box);*/ getitem 19514,1; getitem 19521,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16975,'Singing_Bird_Box','Singing Bird Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 19516,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16976,'Hen_Set_Box','Hen Set Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*getgroupitem(IG_Hen_Set_Box);*/ getitem 19513,1; getitem 19517,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16977,'Red_Minicrown_Box','Red Minicrown Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 19522,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16979,'Silvervine_Fruit_Box4','Silvervine 4 Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*getgroupitem(IG_Silvervine_Fruit_Box4);*/ getitem 6417,4; getitem 12636,12;',NULL,NULL); -# -REPLACE INTO `item_db_re` VALUES (16990,'Sagittar_Diadem_Scroll','Sagittar Diadem Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Sagittar_Diadem_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16991,'Sagittar_Di_Scroll_Box','Sagittar Di Scroll Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Sagittar_Di_Scroll_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16992,'Butterfly_Wing_Box20','Butterfly Wing Box20',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 602,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16993,'Butterfly_Wing_Box50','Butterfly Wing Box50',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 602,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16995,'Old_Hat_Box','Old Hat Box',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16996,'Capri_Crown_Scroll','Capri Crown Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Capri_Crown_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16997,'Capri_Crown_Scroll_Box','Capri Crown Scroll Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Capri_Crown_Scroll_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16998,'Archangel_Wing_Box','Archangel Wings Box',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2573,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (16999,'Bravery_Bag_Box','Bravery Bag Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2576,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17000,'Wander_Man_Box5','Wander Man Box5',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12626,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17001,'Wander_Man_Box10','Wander Man Box10',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12626,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17002,'Wicked_Nymph_Box5','Wicked Nymph Box5',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12627,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17003,'Wicked_Nymph_Box10','Wicked Nymph Box10',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12627,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17004,'Kasa_Scroll_Box5','Kasa Scroll Box5',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12628,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17005,'Kasa_Scroll_Box10','Kasa Scroll Box10',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12628,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17006,'Salamander_Box5','Salamander Box5',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12629,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17007,'Salamander_Box10','Salamander Box10',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12629,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17008,'Teddy_Bear_Box5','Teddy Bear Box5',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12630,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17009,'Teddy_Bear_Box10','Teddy Bear Box10',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12630,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17011,'Capricon_Di_Scroll','Capricon Di Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Capricon_Di_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17012,'Capricon_Di_Scroll_Box','Capricon Di Scroll Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Capricon_Di_Scroll_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17013,'Malang_Woe_Encard_Box','Malang Woe Encard Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*getgroupitem(IG_Malang_Woe_Encard_Box);*/ getitem 16740,1; getitem 16765,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17014,'Butterfly_ear_Box','Butterfly ear Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 19509,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17015,'Stuckhead_Screw_Box','Stuckhead Screw Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 19510,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17016,'Aquarius_Diadem_Scroll','Aquarius Diadem Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Aquarius_Diadem_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17017,'Aquarius_Di_Scroll_Box','Aquarius Di Scroll Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Aquarius_Di_Scroll_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17018,'Libra_Scroll2','Libra Scroll2',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17019,'Scorpio_Scroll2','Scorpio Scroll2',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17020,'Tw_Nov_Scroll2','Tw Nov Scroll2',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Tw_Nov_Scroll2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17021,'Summer_Scroll3','Summer Scroll3',2,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Summer_Scroll3);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17022,'Super_Pet_Egg1_2','Super Pet Egg1 2',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Super_Pet_Egg1_2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17023,'Super_Pet_Egg4_2','Super Pet Egg4 2',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Super_Pet_Egg4_2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17024,'Lovely_Aquarius_Scroll','Lovely Aquarius Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Lovely_Aquarius_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17025,'Lovely_Aquarius_Box','Lovely Aquarius Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Lovely_Aquarius_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17026,'Boitata_Scroll','Boitata Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Boitata_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17028,'Pisces_Diadem_Scroll','Pisces Diadem Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Pisces_Diadem_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17029,'Pisces_Diadem_Box_','Pisces Diadem Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Pisces_Diadem_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17030,'St_Pat_Hat_box','St Pat Hat box',18,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 18565,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17035,'Energetic_Pisces_Scroll','Energetic Pisces Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Energetic_Pisces_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17036,'Energetic_Pisces_Box','Energetic Pisces Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Energetic_Pisces_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17037,'Trans_Box_Devi','Trans Box Devi',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12658,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17038,'Trans_Box_Ray_Arch','Trans Box Ray Arch',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12659,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17039,'Trans_Box_Mavka','Trans Box Mavka',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12660,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17040,'Trans_Box_Marduk','Trans Box Marduk',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12661,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17041,'Trans_Box_Banshee','Trans Box Banshee',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12662,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17042,'Trans_Box_Poring','Trans Box Poring',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12663,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17043,'Trans_Box_Golem','Trans Box Golem',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12664,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17050,'Aries_Scroll_','Aries Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Aries_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17051,'Aries_Scroll_Box','Aries Scroll Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Aries_Scroll_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17052,'Holy_Mom_Blaze_Box','Holy Mom Blaze Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6472,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17056,'Wiz_Card_Album','Wiz Card Album',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17057,'Swordman_Card_Album','Swordman Card Album',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17058,'Thief_Card_Album','Thief Card Album',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17059,'Acolyte_Card_Album','Acolyte Card Album',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17060,'Merchant_Card_Album','Merchant Card Album',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17061,'Archer_Card_Album','Archer Card Album',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17062,'Taurus_Diadem_Scroll','Taurus Diadem Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Taurus_Diadem_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17063,'Taurus_Di_Scroll_Box','Taurus Di Scroll Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Taurus_Di_Scroll_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17064,'Tw_Sagitt_Scroll','Tw Sagitt Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17066,'Poison_Bottle_Box50','Poison Bottle Box50',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 678,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17067,'Poison_Bottle_Box100','Poison Bottle Box100',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 678,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17068,'Acidbomb_Box50','Acidbomb Box50',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7135,50; getitem 7136,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17069,'Acidbomb_Box100','Acidbomb Box100',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7135,100; getitem 7136,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17070,'Acidbomb_Box500','Acidbomb Box500',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7135,500; getitem 7136,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17071,'Superb_Fish_Box50','Superb Fish Box50',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14524,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17072,'Superb_Fish_Box100','Superb Fish Box100',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14524,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17073,'Superb_Fish_Box500','Superb Fish Box500',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14524,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17074,'Empty_Bottle_Box10','Empty Bottle Box10',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 713,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17075,'Empty_Bottle_Box100','Empty Bottle Box100',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 713,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17076,'Empty_Bottle_Box500','Empty Bottle Box500',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 713,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17077,'Taurus_Crown_Scroll','Taurus Crown Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Taurus_Crown_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17078,'Taurus_Crown_Scroll_Box','Taurus Crown Scroll Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Taurus_Crown_Scroll_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17079,'Indonesia_Box2','Indonesia Box2',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 602,5; getitem 601,50; getitem 12118,3; getitem 12119,3; getitem 12120,3; getitem 12121,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17080,'Scorpio_Scroll3','Scorpio Scroll3',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17081,'Yggdrasil_Crown_Box','Yggdrasil Crown Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 18580,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17082,'Gemi_Diadem_Scroll','Gemi Diadem Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Gemi_Diadem_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17083,'Gemi_Diadem_Scroll_Box','Gemi Diadem Scroll Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Gemi_Diadem_Scroll_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17084,'Upg_Katar_Box','Upg Katar Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 1292,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17085,'Upg_Two_Handed_Axe_Box','Upg Two Handed Axe Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 1394,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17086,'Upg_Lance_Box','Upg Lance Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 1491,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17087,'Upg_Book_Box','Upg Book Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 1585,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17088,'Upg_Staff_Box','Upg Staff Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2015,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17089,'Upg_Dagger_Box','Upg Dagger Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13071,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17090,'Upg_Revolver_Box','Upg Revolver',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13115,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17091,'Upg_Mace_Box','Upg Mace Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 16019,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17092,'Upg_Bow_Box','Upg Bow Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 18112,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17093,'Upg_Twohand_Sword_Box','Upg Two-Handed Sword Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 21000,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17094,'Upg_Katar_Box2','Upg Katar Box',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17095,'Upg_Two_Handed_Axe_Box2','Upg Two-Hand Axe Box2',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17096,'Upg_Lance_Box2','Upg Lance Box2',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17097,'Upg_Book_Box2','Upg_Book_Box2',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17098,'Upg_Staff_Box2','Upg_Staff_Box2',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17099,'Upg_Dagger_Box2','Upg_Dagger_Box2',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17100,'Upg_Revolver_Box2','Upg_Revolver_Box2',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17101,'Upg_Mace_Box2','Upg_Mace_Box2',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17102,'Upg_Bow_Box2','Upg_Bow_Box2',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17103,'Upg_Twohand_Sword_Box2','Upg_Twohand_Sword_Box2',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17104,'HD_Oridecon_50Box','HD Oridecon 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6240,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17105,'HD_Elunium_50Box','HD Elunium 50 Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6241,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17106,'Max_Weight_Up_10Box','Heavy Lifter Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7776,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17107,'Gemi_Crown_Scroll','Gemi Crown Scroll',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Gemi_Crown_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17108,'Gemi_Crown_Scroll_Box','Gemi Crown Scroll Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Gemi_Crown_Scroll_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17109,'Capri_Scroll','Capri Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17110,'Aquarius_Scroll','Aquarius Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17113,'Pisces_Scroll','Pisces Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17114,'Horn_Of_Ancient_Box','Horn Of Ancient Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 18595,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17115,'Sprout_Hat_Box','Sprout Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 18596,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17116,'Mercury_Helm_Box','Mercury Helm Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 18597,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17117,'Aries_Scroll','Aries Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17118,'ASPD_Potion_Box10','ASPD Enhanced Potion Box',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12684,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17120,'Taurus_Scroll','Taurus Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17121,'Starry_Scroll','Starry Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17122,'Immuned_Shield_Box','Immuned Shield Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2168,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17123,'Black_Devil_Mask_Box','Black Devil Mask Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 18599,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17124,'Cat_Ears_Beret_Box','Cat Ears Beret Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 18600,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17125,'Red_Bread_Hat_Box','Red Bread Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 18601,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17126,'ASPD_Potion_Box10_2','ASPD Enhanced Potion Box',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,0,'getitem 12684,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17127,'Leo_Scroll2','Leo Scroll2',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17134,'RWC_Scroll','RWC Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17138,'Ms_Cancer_Scroll','Ms Cancer Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Ms_Cancer_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17139,'RWC_Super_Scroll','RWC Super Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_RWC_Super_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17140,'Leo_Scroll_','Leo Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Leo_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17141,'Ms_Virgo_Scroll','Ms Virgo Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Ms_Virgo_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17143,'Ms_Scorpio_Scroll','Ms Scorpio Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Ms_Scorpio_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17146,'Dep_Alice_Hat_Box','Dep Alice Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 18630,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17147,'Ribbon_Chef_Hat_Box','Ribbon Chef Hat Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 18631,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17152,'Bridal_Ribbon_Box','Bridal Ribbon Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 18636,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17155,'Upg_Huuma_Shuriken_Box','Upg Huuma Shuriken Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13316,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17156,'TCG_Card_Scroll','Bossnia Ticket Scroll',2,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_TCG_Card_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17157,'Vital_Flower_Box','Vital Flower Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6113,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17158,'Flame_Gemstone_Box','Flame Gemstone Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6114,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17159,'Change_Name_Card_Box','Name Change Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17160,'Character_Name_Change_Card_Box','Character Name Change Card Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17162,'Boarding_Halter_Box7','Boarding Halter Box7',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12622,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17165,'Challenge_Kit','Challenge Kit',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Challenge_Kit); /*getitem Blessing_10_Scroll,20; getitem Inc_Agi_10_Scroll,20;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17176,'Boarding_Halter_Box3','Halter Lead Box[Trial]',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17181,'Jan_Groove_Box','Jan Groove Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17184,'3rd_Test_Pass_Box','3rd Test Pass Box',18,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6583,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17203,'Free_Pass_Box','Free Pass Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17204,'Shining_Egg','Shining Egg',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getgroupitem(IG_Shining_Egg);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17207,'Idn_Heart_Scroll','Idn Heart Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Idn_Heart_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17209,'Tw_Rainbow_Scroll','Tw Rainbow Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Tw_Rainbow_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17210,'Tw_Red_Scroll','Tw Red Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Tw_Red_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17211,'Tw_Orange_Scroll','Tw Orange Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Tw_Orange_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17212,'Tw_Yellow_Scroll','Tw Yellow Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Tw_Yellow_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17226,'Infinite_Concentration_Potion_','Infinite Concentration Potion',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12884,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17227,'Infinite_Awakening_Potion_','Infinite Awakening Potion',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12885,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17228,'Infinite_Berserk_Potion_','Infinite Berserk Potion',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12886,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17229,'Infinite_Flywing_Box','Infinite Flywing Box',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12887,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17230,'Valerian_Scroll','Valerian Egg',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getgroupitem(IG_Valerian_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17231,'Refinement_Ore_Box','Refinement Ore Box',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7619,1; getitem 7620,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17232,'Refinement_Box_7','Refinement box(7)',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6230,1; getitem 6234,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17233,'Scroll_Of_Death','Scroll Of Death',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Scroll_Of_Death);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17234,'Scroll_Of_Life','Scroll Of Life',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Scroll_Of_Life);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17235,'Scroll_Of_Magic','Scroll Of Magic',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Scroll_Of_Magic);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17236,'Scroll_Of_Thews','Scroll Of Thews',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Scroll_Of_Thews);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17237,'Scroll_Of_Darkness','Scroll Of Darkness',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Scroll_Of_Darkness);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17238,'Scroll_Of_Holiness','Scroll Of Holiness',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Scroll_Of_Holiness);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17239,'Horned_Scroll','Horned Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Horned_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17240,'Mercury_Scroll','Mercury Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Mercury_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17241,'Amistr_Cap_Box','Amistir Cap Box',2,10,NULL,10,NULL,4,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 5766,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17244,'Event_Almighty_Box','Event Almighty Box',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12883,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17242,'Immortal_Egg','Immortal Egg',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getgroupitem(IG_Immortal_Egg);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17245,'Idn_Independ_Scroll','Idn Independ Scroll',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17246,'HD_Elunium_Box_30','HD Elunium Box(30)',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6241,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17247,'HD_Oridecon_Box_30','HD Oridecon Box(30)',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6240,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17251,'C_Wing_Of_Fly_3Day_Box','C Wing Of Fly 3Day Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_C_Wing_Of_Fly_3Day_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17252,'RWC_2012_Set_Box','RWC 2012 Set Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_RWC_2012_Set_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17253,'RWC_2012_Ring_Box','RWC 2012 Ring Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2966,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17254,'RWC_2012_Pendant_Box','RWC 2012 Pendant Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2968,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17255,'Sapphire_Egg','Sapphire Egg',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getgroupitem(IG_Sapphire_Egg);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17256,'Good_Student_Gift_Box','Good Student Gift Box',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Good_Student_Gift_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17257,'Bad_Student_Gift_Box','Bad Student Gift Box',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Bad_Student_Gift_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17262,'Ex_Def_Potion_Box','Special Defense Potion Box',18,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Ex_Def_Potion_Box); /*getitem Ex_Def_Potion,5; getitem RWC_Scroll_2012,1;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17263,'Infinite_Concentration_Potion_3rd_Box','Infinite Concentration Potion 3rd Box',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12884,259200;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17264,'Infinite_Awakening_Potion_3rd_Box','Infinite Awakening Potion 3rd Box',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12885,259200;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17265,'Infinite_Berserk_Potion_3rd_Box','Infinite Berserk Potion 3rd Box',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12886,259200;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17266,'Limited_Battle_Manual_Package','Limited Battle Manual Package',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 17263,1; getitem 17264,1; getitem 17265,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17270,'STR_Biscuit_Stick_Box','Bar Cookie Of Strength Box',18,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14616,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17271,'VIT_Biscuit_Stick_Box','Bar Cookie Of Vitality Box',18,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14617,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17272,'AGI_Biscuit_Stick_Box','Bar Cookie Of Agility Box',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14618,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17273,'INT_Biscuit_Stick_Box','Bar Cookie Of Intellgence Box',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14619,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17274,'DEX_Biscuit_Stick_Box','Bar Cookie Of Dexterity Box',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14620,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17275,'LUK_Biscuit_Stick_Box','Bar Cookie Of Luck Box',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14621,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17277,'Unlimited_Box','Unlimited Box',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Unlimited_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17278,'Unlimited_Box_10','Unlimited Box(10)',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Unlimited_Box_10);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17281,'Refinement_Ore_Box_IV','Refinement Ore Box IV',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7619,5; getitem 7620,5; getitem 14627,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17282,'Refinement_Ore_Box_IV_10','Refinement Ore Box IV(10)',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7619,50; getitem 7620,50; getitem 14627,11;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17283,'Refinement_Ore_Box_IV_20','Refinement Ore Box IV(20)',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7619,100; getitem 7620,100; getitem 14627,23;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17285,'Events_Beauty_Gift_Box','Events Beauty Gift Box',18,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'/*TODO*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17292,'Shadow_Box','Shadow Box',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem callfunc("F_Rand",24018,24019,24020,24021,24022,24023,24024,24025,24026),1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17293,'Shadow_Physical_Package','Shadow Physical Package',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem callfunc("F_Rand",24018,24019,24020,24024,24025,24026),1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17294,'Shadow_Magical_Package','Shadow Magical Package',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem callfunc("F_Rand",24021,24022,24023,24024,24025,24026),1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17298,'Support_Package','Support Package',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Support_Package);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17299,'Support_Package_10','Support Package(10)',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Support_Package_10);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17302,'Shadow_Box_II_','Shadow Box II',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17303,'Shadow_Set_Box_II','Shadow Set Box II',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17304,'Neuralizer_Box_3','Neuralizer Box 3',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12213,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17306,'Status_Reset_Coupon_Box','Status Reset Coupon Box',18,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getitem callfunc("F_Rand",6720,6721),1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17307,'Midgard_Scroll','Midgard Egg',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getgroupitem(IG_Midgard_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17308,'Half_Asprika_box1','Half Asprika box1',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 2566,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17311,'Half_Brynhild_box1','Half Brynhild box1',2,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'47',NULL,NULL,'rentitem 15023,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17314,'Infinite_Giant_Fly_Wing_Box','Infinite Giant Fly Wing Box',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12212,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17315,'Lucky_Silvervine_Fruit_Box_10','Lucky Silvervine Fruit Box(10)',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6417,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17316,'Lucky_Silvervine_Fruit_Box_110','Lucky Silvervine Fruit Box(110)',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6417,110;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17317,'Sweet_Midgard_Scroll','Sweet Midgard Egg',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getgroupitem(IG_Sweet_Midgard_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17320,'IdRO10th_Scroll','Birthday IdRO10th Scroll',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getgroupitem(IG_IdRO10th_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17321,'Three_Master_Package','Three Master Package',18,10,NULL,10,NULL,NULL,NULL,0,0x0,0,2,NULL,NULL,NULL,NULL,NULL,'/*TODO: Confirm the items and rates*/ getitem 14534,20; getitem 14535,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17322,'Three_Master_Package_10','Three Master Package(10)',18,10,NULL,10,NULL,NULL,NULL,0,0x0,0,2,NULL,NULL,NULL,NULL,NULL,'/*TODO: Confirm the items and rates*/ getitem 14534,200; getitem 14535,200;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17326,'Requiem_Scroll','Requiem Egg',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getgroupitem(IG_Requiem_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17331,'Event_Almighty_Box_','Event Almighty Box',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Event_Almighty_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17332,'Event_Almighty_Box_100','Event Almighty Box(100)',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Event_Almighty_Box_100);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17337,'Holy_Spirit_Scroll','Holy Spirit Egg',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getgroupitem(IG_Holy_Spirit_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17338,'Ore_Box_V','Ore Box V',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7619,5; getitem 7620,5; getitem 14696,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17339,'Ore_Box_V_10','Ore Box V(10)',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7619,50; getitem 7620,50; getitem 14696,11;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17394,'Event_Old_Headgear_Box','Event Old Headgear Box',2,20,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/* TODO */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17396,'Half_L_Magestic_Goat_Box1','Half L Magestic Goat Box1',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5887,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17397,'Half_L_Magestic_Goat_Box7','Half L Magestic Goat Box7',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 5887,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17398,'Half_BF_Spear1_Box1','Half BF Spear1 Box1',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1439,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17399,'Half_BF_Spear1_Box7','Half BF Spear1 Box7',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1439,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17400,'Half_BF_Book2_Box1','Half BF Book2 Box1',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1597,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17401,'Half_BF_Book2_Box7','Half BF Book2 Box7',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1597,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17402,'Half_BF_Staff4_Box1','Half BF Staff4 Box1',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1673,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17403,'Half_BF_Staff4_Box7','Half BF Staff4 Box7',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1673,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17404,'Half_BF_Staff2_Box1','Half BF Staff2 Box1',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1674,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17405,'Half_BF_Staff2_Box7','Half BF Staff2 Box7',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1674,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17406,'Half_BF_Knuckle1_Box1','Half BF Knuckle1 Box1',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1838,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17407,'Half_BF_Knuckle1_Box7','Half BF Knuckle1 Box7',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 1838,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17408,'Half_BF_Dagger2_Box1','Half BF Dagger2 Box1',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13096,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17409,'Half_BF_Dagger2_Box7','Half BF Dagger2 Box1s',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13096,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17410,'Half_BF_Huuma_Shuriken2_Box1','Half BF Huuma Shuriken2 Box1',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13321,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17411,'Half_BF_Huuma_Shuriken2_Box7','Half BF Huuma Shuriken2 Box7',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13321,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17412,'Half_BF_Sword1_Box1','Half BF Sword1 Box1',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13445,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17413,'Half_BF_Sword1_Box7','Half BF Sword1 Box7',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 13445,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17414,'Half_Mjolnir_Box1','Half Mjolnir Box1',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 16034,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17415,'Half_Mjolnir_Box7','Half Mjolnir Box7',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 16034,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17416,'Half_BF_Morning_Star1_Box1','Half BF Morning Star1 Box1',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 16035,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17417,'Half_BF_Morning_Star1_Box7','Half BF Morning Star1 Box1',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 16035,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17418,'Half_BF_Bow1_Box1','Half BF Bow1 Box1',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 18124,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17419,'Half_BF_Bow1_Box7','Half BF Bow1 Box7',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 18124,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17420,'Half_BF_Katar2_Box1','Half BF Katar2 Box1',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 28002,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17421,'Half_BF_Katar2_Box7','Half BF Katar2 Box7',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 28002,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17422,'Half_BF_Two_Handed_Axe1Box1','Half BF Two Handed Axe1Box1',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 28102,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17423,'Half_BF_Two_Handed_Axe1Box7','Half BF Two Handed Axe1Box7',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 28102,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17424,'Half_BF_Rifle1_Box1','Half BF Rifle1 Box1',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 28203,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17425,'Half_BF_Rifle1_Box7','Half BF Rifle1 Box7',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 28203,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17426,'Half_BF_Shotgun1_Box1','Half BF Shotgun1 Box1',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 28204,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17427,'Half_BF_Shotgun1_Box7','Half BF Shotgun1 Box7',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 28204,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17429,'11_Anniversary_Shadow_Box','11 Anniversary Shadow Box',18,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/* getitem callfunc("F_Rand",Ritual\'s Flute (weapon, earrings, pendants), every risyeo\'s (shields, armor, shoes)),1; */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17430,'11_Anniversary_Shadow_Package','11 Anniversary Shadow Package',18,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/* getitem Ritual\'s Flute (weapon, earrings, pendants),1; getitem every risyeo\'s (shields, armor, shoes)),1; */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17431,'Thanks_Giving_Scroll','Miracle Lucky Egg',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getgroupitem(IG_Thanks_Giving_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17432,'Lucky_Silvervine_Fruit_Box_II_10','Lucky Silvervine Fruit Box II(10)',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*getgroupitem(Lucky_Silvervine_Fruit_Box_II10);*/ getitem 6417,10; getitem 14705,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17433,'Lucky_Silvervine_Fruit_Box_II_110','Lucky Silvervine Fruit Box II(110)',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*getgroupitem(Lucky_Silvervine_Fruit_Box_II110);*/ getitem 6417,110; getitem 14705,11;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17435,'Idn_Legend_Hero_Scroll','Legend Hero Lucky Egg',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getgroupitem(IG_Idn_Legend_Hero_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17438,'Three_Master_Package_II','Three Master Package II',3,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/* TODO */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17439,'Three_Master_Package_II10','Three Master Package II(10)',3,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/* TODO */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17440,'Name_Change_Card_Box','Name Change Card Box',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12790,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17441,'Halter_Lead_Box','Halter Lead Box',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12622,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17443,'Reinforcement_Buckler_Box','Reinforcement Buckler Box',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 2150,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17442,'Emperium_G_Box','Emperium G Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6444,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17447,'Blessing_Midgard_Scroll','Blessing Midgard Lucky Egg',18,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getgroupitem(IG_Blessing_Midgard_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17449,'Cookies_Bar_Set','Set Bar Cookies',2,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'for (.@i = 14616; .@i <= 14621; .@i++) getitem .@i,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17455,'Premium_Battle_Manual_Box','Premium Battle Manual Box',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 22614,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17456,'Support_Package_II','Support Package II',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Support_Package_II);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17457,'Support_Package_II_10','Support Package II(10)',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Support_Package_II_10);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17461,'Costama_Egg18','Frozen Egg Costume',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Costama_Egg18);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17464,'Winter_Midgard_Scroll','Winter Midgard Egg',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getgroupitem(IG_Winter_Midgard_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17465,'Refinement_Ore_Box_VI','Refinement Ore Box VI',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7619,5; getitem 7620,5; getitem 14718,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17466,'Refinement_Ore_Box_VI_10','Refinement Ore Box VI(10)',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7619,50; getitem 7620,50; getitem 14718,11;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17467,'Limited_Token_of_Ziegfried_Box_50','(Limited) Token of Ziegfried Box(50)',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6833,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17468,'Neuralizer_II_Box_3','Neuralizer II Box (3)',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14724,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17469,'Neuralizer_I_Box','Neuralizer I Box',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14723,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17470,'Costama_Egg19','Headgear Costume Scroll',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Costama_Egg19);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17471,'Spring_Festival_Scroll','Spring Festival Lucky Egg',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getgroupitem(IG_Spring_Festival_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17472,'Support_Package_III','Support Package III',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Support_Package_III);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17473,'Support_Package_III_10','Support Package III(10)',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Support_Package_III_10);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17474,'Infinite_Giant_Fly_Wing_Box_V','Infinite Giant Fly Wing Box V',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 12212,86400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17475,'Limited_Gym_Membership_Card_Box_10','(Limited)Gym Membership Card Box(10)',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 17475,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17477,'Unlimited_Box_II','Unlimited Box II',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Unlimited_Box_II);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17478,'Unlimited_Box_II_10','Unlimited Box II(10)',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Unlimited_Box_II_10);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17479,'Midgard_Fes_Scroll','Midgard Festival Egg',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Midgard_Fes_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17481,'Costama_Egg21','Flower Blossom Scroll',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Costama_Egg21);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17482,'Solaris_Festival_Scroll','Solaris Festival Scroll',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Solaris_Festival_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17483,'Three_Master_Package_III','Three Master Package III',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Three_Master_Package_III);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17484,'Three_Master_Package_III_10','Three Master Package III(10)',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Three_Master_Package_III_10);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17490,'Time_Travel_Scroll','Time Travel Lucky Egg',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Time_Travel_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17491,'Refinement_Ore_Box_VII','Refinement Ore Box VII',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7619,5; getitem 7620,5; getitem 4482,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17492,'Refinement_Ore_Box_VII_10','Refinement Ore Box VII(10)',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7619,50; getitem 7620,50; getitem 4482,11;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17493,'Costama_Egg23','Burning Feather Costume Scroll',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Costama_Egg23);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17494,'Happy_Time_Scroll','Rise Midgard Lucky Egg',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Happy_Time_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17495,'Lucky_Silvervine_Fruit_Box_III10','Lucky Silvervine Fruit Box III(10)',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Lucky_Silvervine_Fruit_Box_III10);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17496,'Lucky_Silvervine_Fruit_Box_III110','Lucky Silvervine Fruit Box III(110)',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Lucky_Silvervine_Fruit_Box_III110);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17497,'Costama_Egg24','Seaside Costume Scroll',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Costama_Egg24);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17498,'Three_Master_Package_IV','Three Master Package IV',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14534,20; getitem 14535,20; getitem 12578,20; getitem 22812,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17499,'Three_Master_Package_IV_10','Three Master Package IV(10)',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14534,200; getitem 14535,200; getitem 12578,200; getitem 22812,11;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17501,'Support_Package_IV','Support Package IV',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12208,2; getitem 12210,2; getitem 12883,2; getitem 14600,2; /*getitem Mysterious Water of Life,6;*/ if(!rand(100)) getitem 22823,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17502,'Support_Package_IV_10','Support Package IV(10)',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12208,20; getitem 12210,20; getitem 12883,20; getitem 14600,20; /*getitem Mysterious Water of Life,60;*/ if(!rand(100)) getitem 22823,11;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17507,'Nyangvine_Box4','Actinidia Cat Fruit Box(4)',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6909,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17508,'Nyangvine_Box10','Actinidia Cat Fruit Box(10)',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6909,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17509,'Nyangvine_Box40','Actinidia Cat Fruit Box(40)',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6909,40;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17510,'Smelting_Ore_Box_VIII','Smelting Ore Box VIII',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7619,5; getitem 7620,5; getitem 22828,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17511,'Smelting_Ore_Box_VIII_10','Smelting Ore Box VIII(10)',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7619,50; getitem 7620,50; getitem 22828,11;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17512,'Limited_Purified_Eluminium_Box_30','(Limited) Purified Eluminium Box(30)',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6911,30; getitem 6635,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17513,'Limited_Purified_Oridecon_Box_30','(Limited) Purified Oridecon Box(30)',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6910,30; getitem 6635,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17515,'Unlimited_Box_III','Unlimited Box III',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12684,5; getitem 12796,10; if(!rand(30)) getitem 14758,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17516,'Unlimited_Box_III_10','Unlimited Box III(10)',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12684,50; getitem 12796,100; if(!rand(30)) getitem 14758,11;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17517,'Costama_Egg28','Animal Costume Scroll',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Costama_Egg28);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17519,'Epic_Heroes_Scroll','Epic Heroes Scroll',18,0,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Epic_Heroes_Lucky_Egg);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17520,'Limited_Edition_Manual_Box','Limited Edition Manual Box',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14765,3; /*getitem (limited edition battle manual),2;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17521,'Three_Master_Package_V','Three Master Package V',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14534,20; getitem 14535,20; /*getitem Mysterious Water of Life,20;*/ getitem 22842,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17522,'Three_Master_Package_V_10','Three Master Package V(10)',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14534,200; getitem 14535,200; /*getitem Mysterious Water of Life,200;*/ getitem 22842,11;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17523,'Costama_Egg29','Mystical Costume Scroll',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Costama_Egg29);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17524,'Limited_Power_Booster_Box','Limited Power Booster Box',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14766,1; getitem 22873,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17525,'Limited_Power_Booster_Box_100','Limited Power Booster Box(100)',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14766,100; getitem 22873,11;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17526,'Majestic_Lucky_Scroll','Majestic Lucky Egg',18,0,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Majestic_Lucky_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17527,'Nyangvine_Box200','Actinidia Cat Fruit Box(200)',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6909,200; getitem 12636,rand(1,5); /*TODO: Fix the 12636 amount*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17532,'Blessing_Lucky_Scroll','Blessing Lucky Egg',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Blessing_Lucky_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17544,'Smelting_Ore_Box_IX','Smelting Ore Box IX',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7619,5; getitem 7620,5; getitem 22888,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17545,'Smelting_Ore_Box_IX_10','Smelting Ore Box IX(10)',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7619,50; getitem 7620,50; getitem 22888,11;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17547,'Limited_2015_Neuralizer_Box','(Limited)2015 Neuralizer Box',2,20,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 22894,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17548,'Limited_2015_Status_Initialization_Volume_Box','(Limited)2015 Status Initialization Volume Box',2,20,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 22895,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17549,'Limited_High_Density_Bradium_Box_30','(Limited)High Density Bradium Box(30)',2,20,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6327,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17550,'Limited_High_Density_Kalunium_Box_30','(Limited)High Density Kalunium Box(30)',2,20,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6906,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17552,'Garnet_Lucky_Scroll','Garnet Lucky Egg',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Garnet_Lucky_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17567,'Event_Almighty_Box__','Event Almighty Box',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 22902,1; bonus_script "{ bonus bAllStats,10; bonus bBaseAtk,30; bonus bMatk,30; }",1800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17568,'Event_Almighty_Box_100_','Event Almighty Box(100)',18,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 22902,11; bonus_script "{ bonus bAllStats,10; bonus bBaseAtk,30; bonus bMatk,30; }",1800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17569,'Dungeon_1_hour_Ticket_Box','Dungeon 1 Hour Ticket Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14505,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17572,'Erzulie_Lucky_Scroll','Erzulie Lucky Egg',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Erzulie_Lucky_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17584,'Venus_Lucky_Scroll','Venus Lucky Egg',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Venus_Lucky_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17588,'Amora_Lucky_Scroll','Amora Lucky Egg',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Amora_Lucky_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17598,'Sograt_Lucky_Scroll','Sograt Lucky Scroll',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Sograt_Lucky_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17607,'Sanctuary_Lucky_Scroll','Sanctuary Lucky Egg',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Sanctuary_Lucky_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17613,'Chronosian_Lucky_Scroll','Chronosian Lucky Egg',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Chronosian_Lucky_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17628,'Cyborg_Lucky_Scroll','Cyborg Lucky Egg',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Cyborg_Lucky_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17633,'Undine_Lucky_Scroll','Undine Lucky Egg',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Undine_Lucky_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17648,'Smithy_Lucky_Scroll','Smithy Lucky Egg',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Smithy_Lucky_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17659,'Ganymede_Lucky_Scroll','Ganymede Lucky Egg',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Ganymede_Lucky_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17665,'LastAngel_LuckyScroll','LastAngel LuckyScroll',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_LastAngel_LuckyScroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17671,'Valkyrie_Lucky_Scroll','Valkyrie Lucky Egg',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Valkyrie_Lucky_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17674,'Rainbow_Lucky_Scroll','Splash Rainbow Lucky Egg',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Splash_Rainbow_Lucky_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17681,'Midgard_Lucky_Scroll','Midgard Lucky Scroll',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Midgard_Lucky_Scroll);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (17692,'June_Lucky_Scroll','Blessing Scarlet Egg',18,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_Blessing_Scarlet_Scroll);',NULL,NULL); -#=================================================================== -# Mechanic/Genetic Cannonballs -#=================================================================== -REPLACE INTO `item_db_re` VALUES (18000,'Cannon_Ball','Cannon Ball',10,100,NULL,10,'100',NULL,NULL,NULL,0x00040400,56,2,32768,NULL,'99',NULL,8,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18001,'Holy_Cannon_Ball','Holy Cannon Ball',10,200,NULL,10,'120',NULL,NULL,NULL,0x00040400,56,2,32768,NULL,'99',NULL,8,'bonus bAtkEle,Ele_Holy;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18002,'Dark_Cannon_Ball','Dark Cannon Ball',10,200,NULL,10,'120',NULL,NULL,NULL,0x00040400,56,2,32768,NULL,'99',NULL,8,'bonus bAtkEle,Ele_Dark;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18003,'Soul_Cannon_Ball','Soul Cannon Ball',10,200,NULL,10,'120',NULL,NULL,NULL,0x00040400,56,2,32768,NULL,'99',NULL,8,'bonus bAtkEle,Ele_Ghost;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18004,'Iron_Cannon_Ball','Iron Cannon Ball',10,500,NULL,10,'250',NULL,NULL,NULL,0x00040400,56,2,32768,NULL,'99',NULL,8,NULL,NULL,NULL); -#=================================================================== -# More Bows -#=================================================================== -REPLACE INTO `item_db_re` VALUES (18100,'Shooting_Star_C','Shooting Star',5,20,NULL,0,'190',NULL,5,0,0x00080800,63,2,34,4,'1',1,11,'bonus bLongAtkRate,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18101,'F_Bow_Of_Rudra_C','Rudra Bow',5,2,NULL,0,'185',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18102,'E_Bow_Of_Rudra_C','Rudra Bow',5,2,NULL,0,'185',NULL,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18103,'Mystic_Bow','Mystic Bow',5,0,NULL,1700,'75:100',NULL,5,0,0x00080800,56,2,34,3,'105',1,11,'bonus bInt,4; bonus2 bSkillUseSP,"WM_SEVERE_RAINSTORM",10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18104,'Adventure_Bow','Adventure Bow',5,0,NULL,0,'60',NULL,1,0,0x00080800,63,2,34,1,'1',0,11,'bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18105,'Academy_Bow','Academy Bow',5,0,NULL,1200,'90',NULL,5,1,0x00080800,63,2,34,1,'1',1,11,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18106,'P_Bow3','Eden Bow III',5,0,NULL,0,'140',NULL,5,0,0x000A0848,63,2,34,3,'60',0,11,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18107,'Malang_Snow_Crab','Malangdo Crab',5,0,NULL,0,'120',NULL,5,0,0x000A0848,63,2,34,1,'50',0,11,'bonus bUnbreakableWeapon; bonus bLuk,3; bonus bCritAtkRate,50; if(BaseLevel>99) { bonus bLongAtkRate,10; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18108,'Brindle_Eel','Zebra Eel',5,0,NULL,0,'180',NULL,5,0,0x00080800,63,2,34,1,'50',0,11,'bonus bUnbreakableWeapon; bonus bAgi,3; autobonus "{ bonus bAspd,2; }",10,7000,BF_WEAPON,"{ specialeffect2 EF_HASTEUP; }"; if(BaseLevel>99) { bonus bLongAtkRate,10; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18109,'Catapult','Thief Crossbow',5,56000,NULL,1100,'150',NULL,5,2,0x00020000,63,2,34,4,'100',1,11,'.@r = getrefine(); bonus2 bSkillAtk,"SC_TRIANGLESHOT",(.@r*2); bonus2 bSkillUseSP,"SC_TRIANGLESHOT",(.@r*2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18110,'Big_CrossBow','Giant Crossbow',5,56000,NULL,900,'160',NULL,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; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18111,'Creeper_Bow','Creeper Bow',5,56000,NULL,1500,'150',NULL,5,2,0x00080800,63,2,34,3,'120',1,11,'bonus bDex,1; bonus3 bAutoSpell,"PF_SPIDERWEB",1,200;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18112,'Upg_Bow','Upg Bow',5,20,NULL,600,'60',NULL,5,1,0x000A0848,63,2,34,3,'1',1,11,'.@r = getrefine(); bonus bBaseAtk,(.@r*7); bonus bLongAtkRate,(.@r*2); if(BaseJob==Job_Hunter) bonus bBaseAtk,20; if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*10);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18113,'Velum_Arbalest','Vellum Arbalest',5,20,NULL,1100,'50',NULL,5,0,0x000A0848,63,2,34,4,'95',1,11,'bonus3 bSPVanishRaceRate,RC_Player_Human,1000,4; bonus bAspd,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18114,'Velum_CrossBow','Vellum CrossBow',5,20,NULL,1100,'110',NULL,5,0,0x000A0848,63,2,34,4,'95',1,11,'bonus2 bAddRace,RC_Player_Human,30+getrefine(); bonus2 bIgnoreDefRaceRate,RC_Player_Human,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18115,'Orc_Archer_Bow_','Orc Archer Bow',5,20,NULL,1600,'120',NULL,5,1,0x000A0848,63,2,34,3,'65',1,11,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18116,'Metal_Bow','Metal Bow',5,20,NULL,0,'50',NULL,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 = min(BaseLevel/10,12); if(.@i>2) bonus bBaseAtk,((.@i-2)*5);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18117,'Royal_Bow','Royal Bow',5,200000,NULL,1500,'80',NULL,5,1,0x000A0808,63,2,34,4,'105',1,11,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18118,'TE_Woe_Bow','TE Woe Bow',5,0,NULL,0,'120',NULL,5,0,0x000A0848,63,2,34,3,'40',1,11,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Curse,3000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18119,'Thanos_Bow','Thanos Bow',5,10,NULL,1300,'180:110',NULL,5,1,0x00080808,56,2,34,4,'120',1,11,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000;',NULL,'heal -1000,0;'); -REPLACE INTO `item_db_re` VALUES (18120,'Bow_Of_Evil_Slayer','Evil Slayer Piercer Bow',5,10,NULL,1350,'115',NULL,5,1,0x000A0808,63,2,34,3,'100',1,11,'bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; .@r = getrefine(); bonus2 bAddClass,Class_All,(.@r>=12?12:(.@r>=9?5:0));',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18121,'Bow_of_Vicious_Mind','Bow of Vicious Mind',5,20,NULL,1700,'170',NULL,5,1,0x000A0808,63,2,34,4,'160',1,11,'bonus bAtk,pow(min(getrefine(),15),2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18122,'Gigantic_Bow','Giant Bow',5,20,NULL,3000,'195',NULL,5,1,0x00000800,63,2,34,4,'130',1,11,'bonus bLongAtkRate,40; bonus bAspdRate,-15; bonus bHit,-50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18123,'Bow_Of_Storm','Bow of Storms',5,20,NULL,1500,'160',NULL,5,1,0x00080800,63,2,34,4,'130',1,11,'bonus bLongAtkRate,30; bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; bonus2 bSkillUseSP,"WM_SEVERE_RAINSTORM",15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18124,'Half_BF_Bow1','Half BF Bow1',5,20,NULL,0,'100',NULL,5,0,0x000A0848,63,2,34,3,'80',1,11,'bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player_Human,30; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18125,'Arcus_Daemonicus','Arcus Daemonicus',5,20,NULL,1000,'130',NULL,5,2,0x00020008,63,2,34,4,'80',1,11,'/*Fix me: bonus2 bAddClass,Class_All,50; when equipped with shadow arrows*/ if(getrefine()>9){ bonus bAspd,1; bonus bUseSPrate,-20; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18126,'Ru_Blue_Bow','Blue Bow',5,10,NULL,1200,'150',NULL,5,1,0x00000800,56,2,34,3,'100',1,11,'bonus bAgi,5; bonus bDex,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18127,'Ru_Gold_Bow','Ru Gold Bow',5,0,NULL,1200,'150',NULL,5,2,0x00000800,56,2,34,3,'120',1,11,'bonus bAgi,8; bonus bDex,8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18128,'Infinity_Bow','Infinity Bow',5,20,NULL,500,'160',NULL,5,1,0x00020800,56,2,34,4,'100',1,11,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18130,'Crimson_Bow','Crimson Bow',5,20,NULL,1200,'120',NULL,5,2,0x000A0848,63,2,34,3,'70',1,11,'.@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18132,'Unity_Bow','Unity Bow',5,20,NULL,600,'114',NULL,5,2,0x000A0848,63,2,34,3,'1',1,11,'bonus bBaseAtk,pow(getrefine(),2)*125/100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18137,'Burning_Bow_','Burning Bow',5,20,NULL,1400,'95',NULL,5,2,0x000A0808,63,2,34,3,'55',1,11,'bonus2 bSubEle,Ele_Fire,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18138,'Frozen_Bow_','Frozen Bow',5,20,NULL,1400,'100',NULL,5,2,0x000A0808,63,2,34,3,'55',1,11,'bonus2 bAddEff,Eff_Freeze,1000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18139,'Earth_Bow_','Earth Bow',5,20,NULL,1400,'105',NULL,5,2,0x000A0808,63,2,34,3,'55',1,11,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18140,'Gust_Bow_','Gust Bow',5,20,NULL,1400,'95',NULL,5,2,0x000A0808,63,2,34,3,'55',1,11,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18145,'Vigilante_Bow','Vigilante Bow',5,0,NULL,1000,'140',NULL,5,2,0x00020000,56,2,34,3,'100',1,11,'.@r = getrefine(); .@bonus = 5*(readparam(bDex)/20); if (.@r>=7) { .@bonus += 10; } if (.@r>=9) { bonus2 bSkillAtk,"AC_DOUBLE",50; } bonus bLongAtkRate,.@bonus;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18149,'Illusion_Ballista','Illusion Ballista',5,0,NULL,3500,'200',NULL,5,2,0x00080800,58,2,34,4,'100',1,11,'bonus bLongAtkRate,getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18174,'Illusion_Hunter_Bow','Illusion Hunter Bow',5,0,NULL,1500,'165',NULL,5,2,0x00000800,56,2,34,4,'120',1,11,'.@r = getrefine(); bonus bCritical,.@r; if (.@r >= 7) { bonus bAspdRate,10; if (.@r >= 9) { bonus bCritAtkRate,15; if (.@r >= 11) { bonus2 bAddRace,RC_Insect,30; bonus2 bAddRace,RC_Brute,30; bonus2 bAddRace,RC_Player_Doram,30; } } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18178,'Virtual_Bow-OS','Virtual Bow-OS',5,20,NULL,1200,'200',NULL,5,2,0x00000800,56,2,34,4,'130',1,11,'.@r = getrefine(); bonus2 bAddClass,Class_All,3; if (.@r >= 7) { bonus bLongAtkRate,7; if (.@r >= 9) { .@dmg = 30; if (.@r >= 11) { .@dmg += 20; } bonus2 bSkillAtk,"RA_ARROWSTORM",.@dmg; } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18179,'MH-P89-OS','MH-P89-OS',5,20,NULL,1200,'170',NULL,5,2,0x00080000,56,2,34,4,'130',1,11,'.@r = getrefine(); bonus2 bAddClass,Class_All,3; if (.@r >= 7) { bonus bLongAtkRate,7; if (.@r >= 9) { bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; if (.@r >= 11) { bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15; } } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18180,'AC-B44-OS','AC-B44-OS',5,20,NULL,600,'190:135',NULL,5,2,0x00020000,56,2,34,4,'130',1,11,'.@r = getrefine(); .@dmg = 5; if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus2 bSkillAtk,"SC_TRIANGLESHOT",15; if (.@r >= 11) { .@dmg += 10; } } } bonus2 bWeaponDamageRate,W_BOW,.@dmg;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18184,'Rapid_Fire','Rapid Fire',5,20,NULL,1500,'185',NULL,5,2,0x00020000,56,2,34,4,'170',1,11,'.@r = getrefine(); bonus bLongAtkRate,10; bonus bBaseAtk,4*.@r; if (.@r>=11) .@val = 35; else if (.@r>=9) .@val = 20; bonus2 bSkillAtk,"SC_TRIANGLESHOT",.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18185,'Sharp_Star_Bow','Sharp Star Bow',5,20,NULL,1500,'150',NULL,5,2,0x00000800,56,2,34,4,'170',1,11,'.@r = getrefine(); bonus bCritical,5; bonus bCritAtkRate,.@r; if (.@r>=9) bonus bLongAtkRate,7; if (.@r>=11) bonus2 bSkillAtk,"SN_SHARPSHOOTING",10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18186,'Aiming_Bow','Aiming Bow',5,20,NULL,1000,'210',NULL,5,2,0x00000800,56,2,34,4,'170',1,11,'.@r = getrefine(); bonus bDelayrate,-1*(5+.@r); if (.@r>=9) bonus2 bSkillAtk,"RA_AIMEDBOLT",30; if (.@r>=11) { bonus2 bSkillAtk,"RA_AIMEDBOLT",15; bonus2 bSkillCooldown,"RA_AIMEDBOLT",-1000; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18187,'Falken_Shooter','Falken Shooter',5,20,NULL,1000,'210',NULL,5,2,0x00000800,56,2,34,4,'170',1,11,'.@r = getrefine(); bonus bLongAtkRate,10; bonus bBaseAtk,4*.@r; if (.@r>=9) bonus2 bSkillAtk,"RA_ARROWSTORM",25; if (.@r>=11) bonus2 bSkillCooldown,"RA_ARROWSTORM",-700;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18188,'Wind_Gale','Wind Gale',5,20,NULL,1000,'200',NULL,5,2,0x00080000,56,2,34,4,'170',1,11,'.@r = getrefine(); bonus bLongAtkRate,10+.@r; if (.@r>=9) bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",30; if (.@r>=11) bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000;',NULL,NULL); -#=================================================================== -# More Headgears -#=================================================================== -REPLACE INTO `item_db_re` VALUES (18500,'Cheer_Scarf6','Cheer Scarf6',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'1',0,369,'bonus2 bExpAddClass,Class_All,60;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18501,'Cheer_Scarf8','Cheer Scarf8',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'1',0,369,'bonus2 bExpAddClass,Class_All,80;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18502,'Cheer_Scarf10','Cheer Scarf10',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'1',0,369,'bonus2 bExpAddClass,Class_All,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18503,'Small_Horn_Of_Devil','Small Devil Horns',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,63,2,512,NULL,'1',0,562,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bMaxHPrate,10; bonus bMaxSPrate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18504,'Anubis_Helm_J','Anubis Helm J',4,20,NULL,1000,NULL,0,NULL,0,0xFFFFFFFF,63,2,769,NULL,'70',0,485,'bonus bMdefRate,-50; bonus bDefRate,-50; bonus5 bAutoSpellWhenHit,"NPC_WIDESTONE",2,10,BF_WEAPON|BF_MAGIC,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18505,'Umbala_Spirit','Umbala Spirit',4,0,NULL,0,NULL,1,NULL,0,0xFFFFFFFF,63,2,1,NULL,'30',0,675,'bonus bMaxHPrate,1; bonus2 bAddMonsterDropItem,517,500; bonus2 bAddItemHealRate,517,25; /*Gold PC Room: bonus bAllStats,1;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18506,'Hattah_Black','Hattah Black',4,12000,NULL,4000,NULL,2,NULL,1,0xFFFFFFFF,63,2,769,NULL,'1',1,676,'bonus bMaxHPrate,10; bonus bMaxSPrate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18507,'Elven_Ears_','Elven Ears',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFE,63,2,512,NULL,'70',0,73,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18508,'Garuda_Hat','Garuda Hat',4,20,NULL,100,NULL,4,NULL,1,0xFFFFFFFE,63,2,256,NULL,'30',1,677,'bonus bLuk,5; bonus bMdef,3; bonus2 bSubEle,Ele_All,5; bonus bHit,10; bonus bDelayRate,-5; .@r = getrefine(); if(.@r>=7) bonus2 bAddMonsterDropItem,522,100*(.@r-6);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18509,'RWC2010_Indonesia','RWC2010 Indonesia',4,20,NULL,100,NULL,6,NULL,1,0xFFFFFFFE,63,2,256,NULL,'15',1,678,'bonus bLuk,5; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bAddItemHealRate,501,100; bonus2 bAddItemHealRate,504,100; bonus bCritical,10; bonus bAspd,1; bonus2 bAddClass,Class_All,3; bonus bMatkRate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18510,'Blood_Angel_Hair_Band','Blood Angel Hair Band',4,0,NULL,0,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'60',0,679,'bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_DemiHuman,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18511,'Blood_Angel_Wing_Ear','Blood Angel Wing Ear',4,0,NULL,0,NULL,1,NULL,0,0xFFFFFFFF,63,2,512,NULL,'60',0,680,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18512,'Juho_Necktie','Juho Necktie',4,0,NULL,0,NULL,1,NULL,1,0xFFFFFFFF,63,2,256,NULL,'20',1,443,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18513,'Shining_Sunflower','Shining Sunflower',4,20,NULL,300,NULL,0,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',0,681,'bonus bLuk,2; bonus3 bAutoSpellWhenHit,"SM_ENDURE",1,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18514,'Para_Team_Hat2','Eden Team Hat II',4,0,NULL,0,NULL,5,NULL,1,0xFFFFFFFF,63,2,256,NULL,'60',1,682,'autobonus "{ bonus bBaseAtk,10; }",70,5000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; autobonus "{ bonus bMatk,10; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_SPELLBREAKER; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18515,'RTC_Winner_Headgear','RTC Winner Hat',4,20,NULL,100,NULL,2,NULL,1,0xFFFFFFFF,63,2,512,NULL,'1',0,683,'bonus bAllStats,5; bonus bIntravision; bonus2 bSubRace,RC_DemiHuman,15; bonus2 bSubRace,RC_Player_Human,15; bonus2 bAddEff,Eff_Curse,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18516,'RTC_2nd_Headgear','RTC 2nd Winner Hat',4,20,NULL,100,NULL,2,NULL,1,0xFFFFFFFF,63,2,512,NULL,'1',0,684,'bonus bAllStats,3; bonus bIntravision; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bAddEff,Eff_Curse,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18517,'RTC_3rd_Headgear','RTC 3rd Winner Hat',4,20,NULL,100,NULL,2,NULL,1,0xFFFFFFFF,63,2,512,NULL,'1',0,685,'bonus bAllStats,1; bonus bIntravision; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bAddEff,Eff_Curse,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18518,'Ear_Of_Angel\'s_Wing_','Angel Wing Ears',4,20,NULL,100,NULL,3,NULL,1,0xFFFFFFFF,63,2,512,NULL,'70',0,158,'bonus bStr,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18519,'Ear_Of_Devil\'s_Wing_','Evil Wing Ears',4,20,NULL,100,NULL,3,NULL,1,0xFFFFFFFF,63,2,512,NULL,'70',0,152,'bonus bStr,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18520,'Jaty_C','Jaty Crown',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,686,'bonus2 bSubRace,RC_Plant,5; bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Brute,5; bonus2 bAddRace,RC_Plant,5; bonus2 bAddRace,RC_Player_Doram,5; bonus2 bAddRace,RC_Player_Doram,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18521,'Lucky_Clover','Lucky Clover',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'50',0,571,'bonus bLuk,1; bonus bMaxSP,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18522,'Evil_Marcher_Hat','Evil Marcher Hat',4,20,NULL,500,NULL,10,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,687,'bonus bStr,2; bonus bMdef,1; .@r = getrefine(); if(.@r>=7) { bonus bCritAtkRate,10; }; bonus2 bAddClass,Class_All,(.@r>=9?7:2); if(.@r>=9) { bonus bLongAtkRate,5; };',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18523,'Super_Scell','Thunderstorm Cloud',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',0,688,'bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",max(getskilllv("MG_LIGHTNINGBOLT"),5),50+(getskilllv("MG_LIGHTNINGBOLT")*5); bonus3 bAutoSpell,"MG_THUNDERSTORM",max(getskilllv("MG_THUNDERSTORM"),5),50+(getskilllv("MG_THUNDERSTORM")*5);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18524,'Dokkebi_Mask','Dokkebi Mask',4,20,NULL,700,NULL,1,NULL,0,0xFFFFFFFF,63,2,513,NULL,'50',0,689,'bonus bStr,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18525,'Watermelon_Hat','Watermelon Cap',4,20,NULL,100,NULL,4,NULL,1,0xFFFFFFFF,63,2,256,NULL,'30',1,690,'bonus bVit,1; bonus bLuk,1; bonus bMdef,4; bonus2 bAddEle,Ele_Fire,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18526,'Yummy_Lollipop','Candy Cane In Mouth',4,20,NULL,100,NULL,2,NULL,0,0xFFFFFFFF,63,2,1,NULL,'1',0,446,'bonus bMatk,5; bonus bBaseAtk,5; bonus bAspd,1; bonus bFixedCastrate,-20; bonus bHealPower,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18527,'Gloomy_Pumpkin_Hat','Dark Pumpkin-head',4,20,NULL,500,NULL,5,NULL,0,0xFFFFFFFF,63,2,256,NULL,'45',1,691,'bonus2 bAddMonsterDropItem,12192,10; bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18528,'Tare_Neko_Cru','Drooping Neko Crew',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,256,NULL,'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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18529,'Drooping_Wild_Rose','Accurate Wild Rose',4,20,NULL,500,NULL,5,NULL,1,0xFFFFFFFF,63,2,768,NULL,'30',1,541,'bonus bMaxHPrate,-10; bonus bAspdRate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18530,'Tha_Despero_Mask','Thanatos Despero Mask',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,513,NULL,'30',0,693,'bonus bUnbreakableHelm; bonus bLuk,-5; bonus bFlee,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18531,'Drooping_Permeter','Drooping Permeter',4,20,NULL,1000,NULL,8,NULL,1,0xFFFFFFFF,63,2,256,NULL,'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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18532,'Heart_Ribbon_Band','Heart Ribbon Hairband',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,256,NULL,'10',1,708,'bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18533,'Honeybee_Hat','Honey Bee Hat',4,20,NULL,100,NULL,3,NULL,1,0xFFFFFFFF,63,2,256,NULL,'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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18534,'Fancy_Phantom_Mask','Fancy Phantom Mask',4,20,NULL,1000,NULL,5,NULL,1,0xFFFFFFFF,63,2,768,NULL,'20',1,710,'bonus bStr,1; bonus2 bAddClass,Class_All,5; bonus bDelayRate,-1; bonus bMaxHP,getrefine()*100; bonus2 bSkillAtk,"MC_MAMMONITE",20; bonus2 bSkillAtk,"NJ_ZENYNAGE",20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18535,'Pumpkin_Hat_2010','Pumpkin Hat 2010',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,206,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18536,'Foxtail','Foxtail',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'0',0,711,'bonus bMatk,10; bonus bFixedCast,-100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18537,'Malangdo_Hat','Malangdo Hat',4,20,NULL,100,NULL,5,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,726,'bonus bFlee,6;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18538,'Devil_Whisper','Spirit Whispers',4,20,NULL,300,NULL,3,NULL,0,0xFFFFFFFF,63,2,512,NULL,'0',0,712,'bonus bUnbreakableHelm; 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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18539,'Skull_Cap','Skull Cap',4,40,NULL,200,NULL,5,NULL,1,0xFFFFFFFF,63,2,256,NULL,'10',1,713,'bonus bMatkRate,2; .@r = getrefine(); if(.@r >= 5) { bonus bMatkRate,3; } if(.@r >= 7) { bonus bMatkRate,3; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18540,'Evil_Mask','Evil Mask',4,20,NULL,1000,NULL,3,NULL,0,0xFFFFFFFF,63,2,513,NULL,'10',0,714,'bonus2 bSPLossRate,1,2000; bonus bAspdRate,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18541,'Little_Feather_Hat','Little Feather Hat',4,20,NULL,500,NULL,1,NULL,1,0xFFFFFFFF,63,2,256,NULL,'30',1,715,'bonus bDex,2; bonus bCritAtkRate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18542,'Love_Guard','Love Guard',4,20,NULL,500,NULL,10,NULL,1,0xFFFFFFFF,63,2,768,NULL,'10',1,716,'bonus bHealPower2,5; bonus bAddItemHealRate,5; bonus bHealPower,(getrefine()>6)?5:2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18543,'Witchs_Hat','Witchs Hat',4,20,NULL,300,NULL,7,NULL,1,0xFFFFFFFF,63,2,256,NULL,'20',1,717,'bonus bMdef,5; bonus bVariableCastrate,(getrefine()>6?10:5);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18544,'Blrabbit_Hband','Blrabbit Hband',4,20,NULL,100,NULL,6,NULL,0,0xFFFFFFFF,63,2,256,NULL,'30',1,718,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18545,'Whrabbit_Hband','Whrabbit Hband',4,20,NULL,100,NULL,6,NULL,0,0xFFFFFFFF,63,2,256,NULL,'30',1,719,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18546,'Lover_In_Mouth','Lover In Mouth',4,20,NULL,300,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'0',0,720,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18547,'Campus_Festival','Campus Festival',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,721,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18548,'Tiny_Hat','Tiny Hat',4,20,NULL,30,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,722,'bonus bInt,1; bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18549,'Nabi_Hair_Pin','Butterfly Hairpin',4,20,NULL,200,NULL,3,NULL,1,0xFFFFFFFF,63,2,256,NULL,'20',1,723,'bonus bInt,1; bonus bAgi,1; bonus bMdef,3; bonus2 bAddRace,RC_Plant,5; bonus2 bMagicAddRace,RC_Plant,5; bonus2 bSubRace,RC_Plant,5; bonus3 bAddMonsterDropItem,709,RC_Plant,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18550,'Asgard_Blessing','Asgard Blessing',4,20,NULL,300,NULL,3,NULL,1,0xFFFFFFFF,63,2,256,NULL,'30',1,724,'bonus bAllStats,2; bonus2 bSubEle,Ele_All,5; bonus2 bRegenPercentHP,2,10000; bonus2 bRegenPercentSP,1,10000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18551,'Galaxy_Circlet','Galaxy Circlet',4,20,NULL,1000,NULL,5,NULL,1,0xFFFFFFFF,63,2,256,NULL,'50',1,725,'.@r = getrefine(); .@a = .@r*10; .@b = .@r/2; bonus bMdef,5; bonus bMaxHP,.@a; bonus bMaxSP,.@a; bonus2 bSubEle,Ele_Earth,.@b; bonus2 bSubEle,Ele_Fire,.@b; bonus2 bSubEle,Ele_Water,.@b;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18552,'Proba_Angel_Blessing','Proba Angel Blessing',4,20,NULL,1200,NULL,0,NULL,1,0xFFFFFFFF,63,2,256,NULL,'10',1,444,'bonus bLuk,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18553,'Mini_Tree','Mini Tree',4,20,NULL,50,NULL,5,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,727,'bonus2 bResEff,Eff_Stun,20; bonus2 bResEff,Eff_Curse,20; bonus2 bResEff,Eff_Blind,20; bonus2 bResEff,Eff_Confusion,20; bonus2 bAddMonsterDropItem,529,300; bonus2 bAddMonsterDropItem,529,644;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18554,'King_Prawn_Hat','King Prawn Hat',4,20,NULL,1000,NULL,8,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',0,728,'bonus2 bAddItemGroupHealRate,IG_Fish,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18555,'General_Helmet','General Helmet',4,20,NULL,200,NULL,3,NULL,1,0xFFFFFFFF,63,2,256,NULL,'10',1,729,'bonus bMdef,3; bonus2 bAddRace,RC_Dragon,5; bonus2 bMagicAddRace,RC_Dragon,5; bonus2 bSubRace,RC_Dragon,5; bonus3 bAddMonsterDropItem,7444,RC_Dragon,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18556,'Angel_Helmet','Angel Helmet',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,512,NULL,'0',0,3,'bonus3 bAddMonsterIdDropItem,6464,2220,310;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18557,'Devil_Helmet','Devil Helmet',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,512,NULL,'0',0,12,'bonus3 bAddMonsterIdDropItem,6345,1812,310;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18558,'Sinsuncho_Hat','Sinsuncho Hat',4,20,NULL,1000,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'10',0,730,'bonus2 bExpAddRace,RC_Plant,5; bonus2 bSubRace,RC_Plant,-10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18559,'Fafnir_Skin','Fafnir Skin',4,20,NULL,100,NULL,3,NULL,0,0xFFFFFFFF,63,2,512,NULL,'50',0,152,'bonus bCritical,3; bonus bHPrecovRate,-100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18560,'Fafnir_Mask','Fafnir Mask',4,20,NULL,300,NULL,2,NULL,0,0xFFFFFFFF,63,2,1,NULL,'50',0,180,'bonus bCritical,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18561,'B_Feather_Beret','B Feather Beret',4,20,NULL,300,NULL,5,NULL,1,0xFFFFFFFF,63,2,256,NULL,'40',1,731,'bonus bVit,2; bonus bMdef,3; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18562,'Bone_Hat','Bone Hat',4,20,NULL,200,NULL,3,NULL,1,0xFFFFFFFF,63,2,256,NULL,'10',1,732,'bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18563,'Heart_Wing_Hairband','Heart Wing Hairband',4,20,NULL,300,NULL,0,NULL,1,0xFFFFFFFF,63,2,256,NULL,'50',1,733,'.@r = getrefine()/3; bonus bUseSPrate,-(10+.@r*3); bonus bDelayrate,-(5+.@r*3);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18564,'Love_Piece','Love Piece',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'50',0,734,'bonus bNoCastCancel; bonus bUseSPrate,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18565,'Leprechaun_Hat','St Patrick\'s Hat',4,20,NULL,300,NULL,8,NULL,1,0xFFFFFFFF,63,2,256,NULL,'40',1,735,'bonus bStr,1; bonus bInt,1; bonus bMdef,4; if(getrefine()>7){ bonus2 bAddMonsterDropItem,12135,50; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18566,'Nut_Donut_In_Mouth','Nut Donut In Mouth',4,20,NULL,0,NULL,1,NULL,0,0xFFFFFFFF,63,2,1,NULL,'0',0,736,'bonus bBaseAtk,5; bonus bMatk,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18567,'Stretched_Nose','Stretched Nose',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'0',0,737,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18568,'Humming_Bird','Humming Bird',4,20,NULL,100,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'10',0,702,'bonus bMdef,6;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18569,'Soft_Sheep_Hat','Soft Sheep Hat',4,20,NULL,1000,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'10',1,738,'bonus bMaxHPrate,1+getrefine(); if(getrefine()>9) { bonus2 bExpAddClass,Class_All,5; };',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18570,'Ancient_Gold_Deco','Ancient Gold Ornament',4,20,NULL,400,NULL,7,NULL,1,0xFFFFFFFE,63,2,256,NULL,'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 bMatkRate,8; bonus bHealPower,7; } if(BaseClass==Job_Archer){ bonus bDex,3; bonus bLongAtkRate,10; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18571,'Lucky_Hat','Lucky Hat',4,20,NULL,1000,NULL,0,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',0,740,'bonus2 bExpAddRace,RC_All,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18572,'Korean_Judge_Hat','Korean Judge Hat',4,20,NULL,300,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'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_Human,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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18573,'White_Feather','White Feather',4,20,NULL,500,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'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; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18574,'Lord_of_Death','Lord of Death',4,20,NULL,1000,NULL,10,NULL,1,0xFFFFFFFF,63,2,256,NULL,'70',1,742,'bonus bMdef,5; .@r = getrefine(); bonus2 bAddClass,Class_Boss,(.@r>5?.@r+5:10); bonus2 bMagicAddClass,Class_Boss,(.@r>5?.@r+5:10); bonus2 bSubClass,Class_Normal,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18575,'Wunderkammer','Wunderkammer',4,20,NULL,500,NULL,10,NULL,1,0xFFFFFFFF,63,2,769,NULL,'20',0,743,'bonus bMdef,10; bonus3 bAutoSpell,"AS_SONICBLOW",1,30; bonus3 bAutoSpell,"CR_SHIELDCHARGE",5,20; bonus3 bAutoSpellWhenHit,"AL_PNEUMA",1,20; bonus3 bAutoSpellWhenHit,"CR_GRANDCROSS",5,5; bonus3 bAutoSpellWhenHit,"ASC_METEORASSAULT",5,5; bonus3 bAutoSpellWhenHit,"MO_CALLSPIRITS",5,10; bonus3 bAutoSpellWhenHit,"MO_EXPLOSIONSPIRITS",5,10; bonus3 bAutoSpellWhenHit,"PR_KYRIE",5,10; bonus3 bAutoSpellWhenHit,"AC_CONCENTRATION",5,5; bonus3 bAutoSpellWhenHit,"WZ_QUAGMIRE",3,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18576,'YinYang_Earring','YinYang Earring',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,512,NULL,'50',0,744,'bonus2 bSkillAtk,"MO_CHAINCOMBO",10; bonus2 bSkillAtk,"MO_TRIPLEATTACK",5; bonus2 bSkillAtk,"MO_COMBOFINISH",5; bonus2 bSkillUseSP,"MO_CHAINCOMBO",1; bonus2 bSkillUseSP,"MO_COMBOFINISH",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18577,'24_Bolt','24 Bolt',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFF,63,2,512,NULL,'10',0,696,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18578,'Helm_Of_Valor','Helm Of Valor',4,0,NULL,0,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',0,258,'bonus2 bAddRace,RC_All,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18579,'9th_Anni_Hat','9th Anni Hat',4,0,NULL,90,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,745,'bonus bMdef,9;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18580,'Yggdrasil_Crown','Yggdrasil Crown',4,20,NULL,200,NULL,3,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,746,'bonus bMdef,3; bonus bHealPower,2; .@r = getrefine(); bonus bHealpower2,10; if(.@r >= 7){ bonus bHealPower,5; } if(.@r >= 9){ bonus bHealPower,3; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18581,'Red_Tiger_Mask','Red Tiger Mask',4,20,NULL,400,NULL,2,NULL,0,0xFFFFFFFF,63,2,768,NULL,'50',0,747,'bonus bStr,3; bonus bMaxHP,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18582,'Blue_Tiger_Mask','Blue Tiger Mask',4,20,NULL,400,NULL,2,NULL,0,0xFFFFFFFF,63,2,768,NULL,'50',0,748,'bonus bStr,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18583,'Navy_Drooping_Kitty','Navy Drooping Kitty',4,250000,NULL,500,NULL,3,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',1,749,'bonus bMdef,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18584,'Brown_Drooping_Kitty','Brown Drooping Kitty',4,250000,NULL,500,NULL,3,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',1,750,'bonus bMdef,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18585,'Orange_Bunny_Hairband','Orange Bunny Hairband',4,20,NULL,10,NULL,0,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,751,'bonus bStr,1; bonus bInt,2; bonus bVit,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18586,'Violet_Bunny_Hairband','Violet Bunny Hairband',4,20,NULL,10,NULL,0,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,752,'bonus bStr,1; bonus bInt,3; bonus bVit,2; bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18587,'Blue_Bunny_Hairband','Blue Bunny Hairband',4,20,NULL,10,NULL,0,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,753,'bonus bStr,3; bonus bInt,1; bonus bVit,2; bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18588,'Silver_Bunny_Hairband','Silver Bunny Hairband',4,20,NULL,10,NULL,0,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,754,'bonus bStr,2; bonus bInt,3; bonus bVit,1; bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18589,'Strawberry_Hat','Strawberry Hat',4,20,NULL,100,NULL,5,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,755,'.@r = getrefine(); bonus2 bAddMonsterDropItem,578,(.@r>10?200:100+(.@r*10));',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18590,'Gemma_Hairband','Gemma Hairband',4,20,NULL,200,NULL,3,NULL,1,0xFFFFFFFF,63,2,256,NULL,'10',1,564,'bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18591,'Mini_Glasses_','Mini Glasses',4,20,NULL,100,NULL,2,NULL,1,0xFFFFFFFE,63,2,512,NULL,'0',0,47,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18592,'Nestea_Hat','Nestea Hat',4,20,NULL,200,NULL,5,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,756,'bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18593,'Fancy_Mini_Crown','Fancy Mini Crown',4,20,NULL,100,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'30',1,707,'bonus bInt,1; bonus bMdef,5; bonus bVariableCastRate,-3; bonus bHealPower,3; bonus bUseSPrate,-3; .@r = getrefine(); bonus bMatkRate,(.@r>6)?(5):((.@r>4)?(4):(3));',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18594,'Magni_Cap_','Magni Cap',4,30000,NULL,1000,NULL,9,NULL,1,0xFFFFFFFE,63,2,256,NULL,'0',1,250,'bonus bStr,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18595,'Horn_Of_Ancient','Horn of Ancient',4,40,NULL,200,NULL,8,NULL,1,0xFFFFFFFF,63,2,256,NULL,'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; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18596,'Sprout_Hat','Sprout Hat',4,20,NULL,200,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'70',1,758,'skill "WZ_HEAVENDRIVE",3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18597,'Mercury_Helm','Mercury Riser',4,40,NULL,200,NULL,10,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,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; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18598,'Mini_Tree_J','Mini Tree J',4,20,NULL,50,NULL,0,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',0,727,'bonus bMdef,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18599,'Black_Devil_Mask','Black Devil Mask',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,512,NULL,'0',0,760,'bonus bAllStats,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18600,'Cat_Ears_Beret','Cat Ear Beret',4,20,NULL,100,NULL,5,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,761,'bonus2 bAddClass,Class_All,5; .@r = getrefine(); if(.@r < 5) .@r = 5; bonus2 bSubRace,RC_DemiHuman,(.@r - 5); bonus2 bAddRace,RC_DemiHuman,(.@r - 5); bonus2 bSubRace,RC_Player_Human,(.@r - 5); bonus2 bAddRace,RC_Player_Human,(.@r - 5);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18601,'Red_Bread_Hat','Red Bread Hat',4,20,NULL,300,NULL,0,NULL,1,0xFFFFFFFF,63,2,256,NULL,'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);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18602,'Watermelon_Slice','Watermelon Bite',4,20,NULL,100,NULL,4,NULL,0,0xFFFFFFFF,63,2,1,NULL,'30',0,763,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18603,'Black_Devil_Mask_','Black Devil Mask',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,512,NULL,'0',0,760,'bonus bAllStats,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18604,'Falcon_Mask','Falcon Mask',4,10,NULL,30,NULL,0,NULL,0,0xFFFFFFFF,63,2,513,NULL,'50',0,782,'bonus2 bAddEle,Ele_Water,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18605,'Dark_Age','Dark Age',4,20,NULL,200,NULL,3,NULL,1,0xFFFFFFFF,63,2,256,NULL,'10',1,766,'bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18606,'Tear_Drop','Tear Drop',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,513,NULL,'30',0,767,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18607,'Blush_','Blush',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,512,NULL,'0',0,125,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18608,'Pair_Of_Red_Ribbon2','Small Ribbons',4,20,NULL,100,NULL,2,NULL,1,0xFFFFFFFF,63,2,512,NULL,'45',0,169,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18609,'Dark_Blindfold_','Dark Blinder',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFE,63,2,512,NULL,'0',0,187,'bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Stun,200;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18610,'7th_Anni_Hat_B','7th Anni Hat B',4,20,NULL,500,NULL,4,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,778,'bonus bAllStats,5; bonus bMdef,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18611,'Black_Glasses_','Black Glasses',4,20,NULL,200,NULL,2,NULL,1,0xFFFFFFFF,63,2,512,NULL,'0',0,404,'bonus bInt,1; bonus bMdef,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18612,'White_Musang_Hat','White Musang Hat',4,40,NULL,400,NULL,3,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,770,'bonus bStr,2; bonus bVit,2; bonus bLuk,1; bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18613,'Black_Musang_Hat','Black Musang Hat',4,40,NULL,400,NULL,3,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,771,'bonus bInt,2; bonus bDex,2; bonus bAgi,1; bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18614,'Grim_Reaper_Hat','Grim Reaper Hat',4,20,NULL,200,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'20',1,732,'bonus bFlee,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18615,'Injured_Eyepatch','Injured Eyepatch',4,20,NULL,200,NULL,2,NULL,0,0xFFFFFFFE,63,2,512,NULL,'20',0,772,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18616,'Long_Tongue','Long Tongue',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFE,63,2,1,NULL,'20',0,773,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18617,'Onigiri_In_Mouth','Onigiri In Mouth',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFE,63,2,1,NULL,'20',0,774,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18618,'Airplane_Hat','Airplane Hat',4,20,NULL,200,NULL,8,NULL,1,0xFFFFFFFE,63,2,256,NULL,'20',1,775,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18619,'Thief_Bandana','Thief Bandana',4,20,NULL,200,NULL,1,NULL,0,0xFFFFFFFE,63,2,256,NULL,'20',1,776,'bonus3 bAutoSpell,"TF_STEAL",1,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18620,'Heart_Eyepatch','Heart Eyepatch',4,5,NULL,50,NULL,2,NULL,0,0xFFFFFFFF,63,2,512,NULL,'20',1,779,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18621,'Gangster_Mask_A','Gangster Mask A',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'0',0,52,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18622,'Rocket_Helm1','Rocket Helm 1',4,20,NULL,1000,NULL,20,NULL,1,0xFFFFFFFF,63,2,256,NULL,'95',1,764,'bonus bAllStats,5; bonus bMdef,5; bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18623,'Rocket_Helm2','Rocket Helm 2',4,20,NULL,1000,NULL,20,NULL,1,0xFFFFFFFF,63,2,256,NULL,'95',1,765,'bonus bAllStats,4; bonus bMdef,5; bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18624,'Rocket_Helm3','Rocket Helm 3',4,20,NULL,1000,NULL,20,NULL,1,0xFFFFFFFF,63,2,256,NULL,'95',1,768,'bonus bAllStats,3; bonus bMdef,5; bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18625,'Rocket_Helm_RWC','Rocket Helm RWC',4,10000,NULL,1000,NULL,20,NULL,1,0xFFFFFFFF,63,2,256,NULL,'95',1,769,'bonus bAllStats,2; bonus bMdef,5; bonus bUnbreakableHelm; bonus bSpeedRate,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18626,'Gelato_Hat','Gelato Hat',4,20,NULL,200,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'40',1,777,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18627,'Dried_Leaf','Dried Leaf',4,20,NULL,50,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'10',0,711,'bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18628,'Tare_Brownie','Tare Brownie',4,20,NULL,500,NULL,5,NULL,1,0xFFFFFFFF,63,2,256,NULL,'50',0,781,'bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18629,'B_Desert_Wolf_Hat','Baby Desert Wolf Hat',4,10,NULL,300,NULL,0,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,783,'bonus bMdef,5; bonus bLongAtkDef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18630,'Dep_Alice_Hat','Drooping Alicel',4,20,NULL,500,NULL,6,NULL,0,0xFFFFFFFE,63,2,256,NULL,'70',1,784,'bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; if (getrefine() > 10) { autobonus "{ bonus bAspdRate,100; }",10,7000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18631,'Ribbon_Chef_Hat','Ribbon Chef Hat',4,20,NULL,300,NULL,5,NULL,0,0xFFFFFFFF,63,2,256,NULL,'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; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18632,'Yellow_Poring_Hairpin','Yellow Poring Hairpin',4,20,NULL,100,NULL,3,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,786,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18633,'Pink_Poring_Hairpin','Pink Poring Hairpin',4,20,NULL,100,NULL,3,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,787,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18634,'Green_Poring_Hairpin','Green Poring Hairpin',4,20,NULL,100,NULL,3,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,788,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18635,'Blue_Poring_Hairpin','Blue Poring Hairpin',4,20,NULL,100,NULL,3,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,789,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18636,'Bridal_Ribbon','Bridal Ribbon',4,20,NULL,200,NULL,6,NULL,0,0xFFFFFFFF,63,2,256,NULL,'30',1,790,'bonus bDex,1; bonus3 bAutoSpellWhenHit,"DC_WINKCHARM",1,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18637,'Ancient_Admiral_Helm','Ancient Admiral Helm',4,20,NULL,700,NULL,4,NULL,1,0xFFFFFFFF,63,2,768,NULL,'0',1,660,'bonus bStr,2; bonus bVit,1; if (getrefine() > 7) bonus bSpeedRate,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18638,'Citron_Hat','Citron Hat',4,20,NULL,400,NULL,3,NULL,1,0xFFFFFFFE,63,2,256,NULL,'1',1,791,'bonus bLuk,3; bonus2 bSubRace,RC_Plant,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18639,'Naval_Officer_Hat','Naval Officer Hat',4,20,NULL,200,NULL,2,NULL,1,0xFFFFFFFE,63,2,256,NULL,'1',1,792,'bonus bLuk,3; bonus2 bAddEle,Ele_Water,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18640,'Starfish_Headband','Starfish Headband',4,20,NULL,200,NULL,2,NULL,1,0xFFFFFFFE,63,2,256,NULL,'1',1,793,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18641,'Ribbon_Magic_Hat','Ribbon Magic Hat',4,20,NULL,200,NULL,2,NULL,1,0xFFFFFFFE,63,2,256,NULL,'1',1,794,'bonus bMaxSP,50; bonus bMatkRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18642,'hand_Scissorhand_Model','Scissorhand Model',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFE,63,2,1,NULL,'20',0,795,'bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18643,'Rockhand_Model','Rockhand Model',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFE,63,2,1,NULL,'20',0,796,'bonus bStr,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18644,'Paperhand_Model','Paperhand Model',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFE,63,2,1,NULL,'20',0,797,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18645,'Sailor_Hat','Sailor Hat',4,20,NULL,200,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,798,'bonus bInt,1; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18646,'Cow_Hat','Cow Hat',4,20,NULL,300,NULL,4,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,799,'bonus bDex,2; bonus2 bAddMonsterDropItem,519,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18647,'Star_Eyepatch','Star Eyepatch',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',0,800,'bonus2 bResEff,Eff_Stun,1500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18648,'Tongue_Charm','Tongue Charm',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'1',0,801,'bonus2 bSubRace,RC_Demon,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18649,'Lude_Mask','Lude Mask',4,10,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,513,NULL,'0',1,802,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18650,'RWC_Shouting_Mouth','RWC Shouting Mouth',4,20,NULL,50,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'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!!\\\"; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18651,'Ignis_Cap','Ignis Cap',4,20,NULL,800,NULL,8,NULL,1,0xFFFFFFFF,63,2,256,NULL,'40',1,803,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18652,'Vanargand_Helm','Vanargandr Helm',4,20,NULL,1500,NULL,10,NULL,1,0xFFFFFFFF,63,2,256,NULL,'80',1,804,'.@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; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18653,'Devi_Headphone','Deviruchi Headphone',4,20,NULL,200,NULL,8,NULL,1,0xFFFFFFFF,63,2,256,NULL,'30',1,805,'bonus bMdef,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18655,'Lupin_One_Eyed_Glasses','Goedo Monocle',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,512,NULL,'50',0,807,'bonus bAgi,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18656,'Wit_Pumpkin_Hat','Witch\'s Pumpkin Hat',4,20,NULL,300,NULL,10,NULL,0,0xFFFFFFFF,63,2,256,NULL,'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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18657,'Pegasus_Wing_Ears','Pegasus Wing Ears',4,20,NULL,500,NULL,1,NULL,0,0xFFFFFFFF,63,2,512,NULL,'80',0,568,'bonus bUnbreakableHelm; .@i = BaseLevel; bonus bAspdRate,(.@i>=150)?(3):((.@i>=100)?(2):((.@i>=50)?(1):(0)));',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18658,'Holy_Santa_Beard','Holy Santa Beard',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'1',0,25,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18659,'Boitata_Hat','Boitata Hat',4,20,NULL,0,NULL,5,NULL,1,0xFFFFFFFF,63,2,768,NULL,'0',1,808,'autobonus "{ bonus bAtkEle,Ele_Fire; }",10,180000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; bonus3 bAutospell,"AS_SONICBLOW",5,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18660,'Indi_Feather_Band','Indian Feather Headband',4,20,NULL,400,NULL,3,NULL,1,0xFFFFFFFE,63,2,256,NULL,'0',1,809,'bonus bAgi,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18661,'Trident_Helmet','Trident Helm',4,20,NULL,400,NULL,3,NULL,1,0xFFFFFFFE,63,2,256,NULL,'20',1,810,'bonus bStr,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18662,'Antler_Fedora','Antler Fedora',4,20,NULL,400,NULL,3,NULL,0,0xFFFFFFFE,63,2,256,NULL,'1',1,811,'bonus bInt,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18663,'Sunglasses_Bball_Hat','Sunglasses Baseball Hat',4,20,NULL,200,NULL,2,NULL,1,0xFFFFFFFE,63,2,256,NULL,'20',1,812,'bonus bInt,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18664,'Blind_Glasses','Blind Glasses',4,20,NULL,400,NULL,3,NULL,0,0xFFFFFFFE,63,2,512,NULL,'20',1,813,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18665,'Orange_In_Mouth','Orange In Mouth',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFE,63,2,1,NULL,'20',0,814,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18666,'CD_In_Mouth','CD In Mouth',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFE,63,2,1,NULL,'20',0,815,'bonus3 bAutoSpell,"MG_COLDBOLT",3,30; bonus3 bAutoSpell,"MG_SOULSTRIKE",3,30; bonus3 bAutoSpell,"WZ_EARTHSPIKE",3,30; bonus3 bAutoSpell,"MG_FIREBOLT",3,30; bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",3,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18667,'Cat_Lace_Hairband','Cat Lace Hairband',4,20,NULL,500,NULL,2,NULL,1,0xFFFFFFFE,63,2,256,NULL,'60',0,816,'bonus bDex,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18668,'Droopy_Turtle_Hat','Droopy Turtle Hat',4,20,NULL,300,NULL,1,NULL,1,0xFFFFFFFE,63,2,256,NULL,'1',1,694,'skill "AL_DECAGI",3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18669,'Cowhide_Hat','Cowhide Hat',4,20,NULL,200,NULL,3,NULL,1,0xFFFFFFFE,63,2,256,NULL,'1',1,819,'bonus bDex,2; bonus bMaxHPrate,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18670,'Hankie_In_Mouth','Hankie In Mouth',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,1,NULL,'12',0,818,'bonus bDex,3; bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18671,'Rudolf_Hairband','Rudolf Hairband',4,20,NULL,200,NULL,5,NULL,0,0xFFFFFFFF,63,2,256,NULL,'30',1,836,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18672,'Tare_Pope','Drooping Pope',4,20,NULL,300,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',0,817,'bonus bMdef,1; bonus bSPrecovRate,2; bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18673,'Tare_Pope_','Drooping Pope',4,20,NULL,300,NULL,0,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,817,'bonus bUnbreakableHelm; bonus bMdef,7; .@r = getrefine(); bonus bHealPower,(.@r>=7?5+(.@r-6):5); if (.@r>=9) { bonus bMatkRate, ( .@r >= 12 ? 12 : 7 ); }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18674,'Planewing_Hat','Planewing Hat',4,20,NULL,200,NULL,3,NULL,1,0xFFFFFFFE,63,2,256,NULL,'1',1,820,'bonus bAgi,3; bonus bAspdRate,1; bonus2 bSPLossRate,5,10000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18675,'Green_Apple_Hat','Green Apple Hat',4,20,NULL,200,NULL,3,NULL,1,0xFFFFFFFE,63,2,256,NULL,'20',1,821,'bonus bDex,2; bonus bHit,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18676,'Hexagon_Spectacles','Hexagon Spectacles',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFE,63,2,512,NULL,'10',0,822,'bonus2 bMagicAddRace,RC_Insect,4; bonus2 bSubRace,RC_Insect,5; bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18677,'Cherry_Twig_In_Mouth','Cherry Twig In Mouth',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFE,63,2,1,NULL,'20',0,823,'bonus2 bAddRace,RC_Plant,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18678,'Leek_In_Mouth','Leek In Mouth',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFE,63,2,1,NULL,'20',0,824,'bonus2 bSubSize,Size_Small,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18679,'Abacus_In_Mouth','Abacus In Mouth',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFE,63,2,1,NULL,'20',0,825,'skill "MC_IDENTIFY",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18680,'Tw_Frog_Hat','Tw Frog Hat',4,20,NULL,200,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'35',0,826,'bonus bAgi,1; bonus2 bExpAddRace,RC_Insect,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18681,'Puppy_Ears_Hat','Puppy Ears Hat',4,20,NULL,200,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,827,'bonus bVit,2; bonus bMaxHp,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18682,'Teardrop','Teardrop',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,512,NULL,'1',1,828,'bonus bMaxSP,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18683,'Carrot_In_Mouth','Carrot In Mouth',4,20,NULL,200,NULL,1,NULL,0,0xFFFFFFFF,63,2,1,NULL,'1',0,829,'bonus2 bSubRace,RC_Plant,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18684,'Showy_High_Cap','Showy High Cap',4,20,NULL,200,NULL,3,NULL,1,0xFFFFFFFE,63,2,256,NULL,'1',1,830,'bonus bStr,3; bonus bInt,2; bonus2 bAddItemHealRate,505,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18685,'Stardust_Hairband','Stardust Hairband',4,20,NULL,1000,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'10',0,831,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18686,'2011_RMSC_1','2011 RMSC 1',4,20,NULL,2500,NULL,20,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',0,832,'bonus bUnbreakableHelm; bonus bAllStats,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18687,'2011_RMSC_2','2011 RMSC 2',4,20,NULL,2500,NULL,20,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',0,832,'bonus bUnbreakableHelm; bonus bAllStats,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18688,'2011_RMSC_3','2011 RMSC 3',4,20,NULL,2500,NULL,20,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',0,832,'bonus bUnbreakableHelm; bonus bAllStats,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18689,'2011_RMSC_4','2011 RMSC 4',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',0,832,'bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18690,'Sirt_Evil_Eye','Sirt Evil Eye',4,20,NULL,400,NULL,0,NULL,0,0xFFFFFFFF,63,2,512,NULL,'50',0,345,'bonus bUnbreakableHelm; bonus bStr,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18691,'Rising_Black_Dragon','Rising Black Dragon',4,20,NULL,100,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,863,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18692,'Mike_Hat','Mike Hat',4,20,NULL,200,NULL,3,NULL,1,0xFFFFFFFE,63,2,256,NULL,'1',1,837,'bonus bDex,2; bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18693,'Sleeping_Kitty_Cat','Sleeping Kitty Cat',4,20,NULL,200,NULL,4,NULL,1,0xFFFFFFFE,63,2,256,NULL,'20',1,838,'bonus2 bAddRace,RC_Brute,2; bonus2 bAddRace,RC_Player_Doram,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18694,'Red_Hood','Red Hood',4,20,NULL,200,NULL,3,NULL,1,0xFFFFFFFE,63,2,256,NULL,'20',1,839,'bonus bCritical,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18695,'Phoenix_Crown','Phoenix Crown',4,20,NULL,400,NULL,3,NULL,1,0xFFFFFFFE,63,2,256,NULL,'20',1,840,'bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18696,'Orange_Hat','Orange Hat',4,20,NULL,200,NULL,3,NULL,0,0xFFFFFFFE,63,2,256,NULL,'20',1,841,'skill "MC_MAMMONITE",2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18697,'Syringe_In_Mouth','Syringe In Mouth',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFE,63,2,1,NULL,'20',0,842,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18698,'Cheesy_Snack_In_Mouth','Cheesy Snack In Mouth',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFE,63,2,1,NULL,'20',0,843,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18699,'Starving_Fish_Hat','Starving Fish Hat',4,20,NULL,1200,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',0,844,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18700,'Rabbit_Ribbon','Rabbit Ribbon',4,20,NULL,500,NULL,3,NULL,1,0xFFFFFFFF,63,2,256,NULL,'50',1,845,'bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18701,'Ancient_Civil_Man','Ancient Civil Man',4,20,NULL,500,NULL,2,NULL,0,0xFFFFFFFE,63,2,256,NULL,'70',0,846,'bonus bInt,3; bonus bDex,2; bonus bLuk,1; if(getiteminfo(getequipid(EQI_HAND_R),11)==W_BOOK) bonus bVariableCastrate,-3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18702,'Shaving_Cream','Shaving Cream',4,20,NULL,50,NULL,1,NULL,0,0xFFFFFFFF,63,2,1,NULL,'10',0,847,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18703,'Stem_In_Mouth','Stem In Mouth',4,20,NULL,50,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'1',0,848,'bonus2 bResEff,Eff_Poison,2000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18704,'Drosera_Hairpin','Drosera Hairpin',4,20,NULL,640,NULL,6,NULL,1,0xFFFFFFFF,63,2,256,NULL,'64',1,850,'bonus bMdef,4; bonus bMaxSP,64; bonus2 bSubRace,RC_Insect,-10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18706,'Can_Hat','Can Hat',4,20,NULL,400,NULL,3,NULL,0,0xFFFFFFFE,63,2,256,NULL,'20',1,851,'bonus bLuk,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18707,'Maneater_Flower_Hat','Maneater Flower Hat',4,20,NULL,500,NULL,3,NULL,0,0xFFFFFFFE,63,2,256,NULL,'20',1,852,'bonus bFlee,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18708,'Candy_Hat','Candy Hat',4,20,NULL,200,NULL,3,NULL,0,0xFFFFFFFE,63,2,256,NULL,'20',1,853,'skill "AL_HEAL",3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18709,'Black_Knitted_Hat','Black Knitted Hat',4,20,NULL,200,NULL,3,NULL,1,0xFFFFFFFE,63,2,256,NULL,'0',1,854,'bonus bMaxSP,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18710,'Sugared_Fruit_Stick','Sugared Fruit Stick',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFE,63,2,1,NULL,'20',0,855,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18711,'Electric_Sunglass','Electric Sunglass',4,20,NULL,400,NULL,3,NULL,0,0xFFFFFFFE,63,2,512,NULL,'20',0,856,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18712,'Fan_In_Mouth','Fan In Mouth',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFE,63,2,1,NULL,'20',0,857,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18713,'Monkey_On_Fur_Hat','Monkey On Fur Hat',4,20,NULL,300,NULL,6,NULL,1,0xFFFFFFFF,63,2,256,NULL,'20',1,858,'bonus bDex,1; bonus bAgi,1; bonus bFlee,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18714,'Hippo_Hat','Hippo Hat',4,20,NULL,500,NULL,5,NULL,1,0xFFFFFFFF,63,2,256,NULL,'10',1,859,'bonus2 bSubEle,Ele_Water,10; bonus5 bAutoSpellWhenHit,"WZ_FROSTNOVA",1,1,BF_WEAPON|BF_MAGIC,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18715,'Helm_Of_Thoth','Helm Of Thoth',4,20,NULL,2500,NULL,2,NULL,1,0xFFFFFFFE,63,2,768,NULL,'80',0,860,'bonus bInt,2; bonus bMdef,5; bonus bMaxSP,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18716,'Strawberry_In_Mouth','Strawberry In Mouth',4,20,NULL,50,NULL,2,NULL,0,0xFFFFFFFF,63,2,1,NULL,'10',0,861,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18718,'Rose_Hairband','Rose Hairband',4,20,NULL,200,NULL,3,NULL,0,0xFFFFFFFF,63,2,256,NULL,'30',0,864,'bonus bInt,1; bonus bVit,1; bonus bAspdRate,3; bonus bVariableCastrate,-3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18724,'L_Magestic_Goat_','Gigantic Majestic Goat',4,20,NULL,800,NULL,5,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,380,'bonus2 bAddRace,RC_DemiHuman,12; bonus2 bAddRace,RC_Player_Human,12; bonus bBaseAtk,(JobLevel*2)/7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18727,'Sedora_Hat','Sedora Hat',4,20,NULL,300,NULL,13,NULL,1,0xFFFFFFFF,63,2,256,NULL,'10',1,869,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18728,'Egir_Helm','Egir Helm',4,200000,NULL,800,NULL,10,NULL,1,0xFFFFFFFF,63,2,256,NULL,'110',1,870,'bonus bMdef,5; bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18729,'MVP_Basketball','MVP Basketball',4,20,NULL,150,NULL,6,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,871,'bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bAddItemHealRate,522,30; .@r = getrefine(); bonus bVariableCastrate,(.@r>=12)?(-5):((.@r>=10)?(-4):(-3));',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18730,'Cryptura_Academy_Hat','Cryptura Academy Hat',4,0,NULL,200,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,872,'bonus bMaxHP,15; bonus bMaxSP,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18732,'TE_Woe_Cap','TE Woe Cap',4,0,NULL,0,NULL,5,NULL,0,0xFFFFFFFF,63,2,256,NULL,'40',1,14,'bonus bMdef,5; bonus bBaseAtk,5; bonus bMatk,5; bonus2 bAddRace,RC_Player_Human,10; bonus2 bMagicAddRace,RC_Player_Human,10; bonus2 bResEff,Eff_Freeze,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18733,'TE_Woe_Bone_Helm','TE Woe Bone Helm',4,0,NULL,0,NULL,10,NULL,0,0x000444A2,63,2,256,NULL,'40',1,103,'bonus bBaseAtk,10; bonus2 bAddRace,RC_Player_Human,20; bonus2 bResEff,Eff_Freeze,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18734,'TE_Woe_Magic_Eyes','TE Woe Magic Eyes',4,0,NULL,0,NULL,5,NULL,0,0x00818315,63,2,256,NULL,'40',1,209,'bonus bMdef,5; bonus bMatk,10; bonus2 bMagicAddRace,RC_Player_Human,20; bonus2 bResEff,Eff_Freeze,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18736,'Censor_Bar_','Censor Bar',4,0,NULL,100,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,512,NULL,'1',0,229,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18737,'Fortier_Mask','Fortier Masque',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFF,63,2,512,NULL,'10',0,876,'bonus bUnbreakableHelm; bonus2 bMagicAtkEle,Ele_Fire,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18739,'Carnation_Hairband','Carnation Hairband',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,878,'bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18740,'C_Hair_Of_The_Strong','RMSC2012 Special Costume',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'0',0,879,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18741,'C_Will_O_Wisp','Costume Will O Wisp',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',NULL,880,NULL,'sc_start SC_STRANGELIGHTS,INFINITE_TICK,0;','sc_end SC_STRANGELIGHTS;'); -REPLACE INTO `item_db_re` VALUES (18742,'C_MoonStar_Accessory','Costume Moon and Stars',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'0',0,881,NULL,'sc_start SC_MOONSTAR,INFINITE_TICK,0;','sc_end SC_MOONSTAR;'); -REPLACE INTO `item_db_re` VALUES (18743,'C_Spirit_Of_Chung_E','Costume Spirit Of Chung E',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'0',0,882,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18744,'C_World_Star','Costume Twilight',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'0',0,883,NULL,'sc_start SC_SUPER_STAR,INFINITE_TICK,0;','sc_end SC_SUPER_STAR;'); -REPLACE INTO `item_db_re` VALUES (18745,'Choco_Stick_In_Mouth','Choco Stick In Mouth',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'10',0,884,'bonus bMaxSP,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18746,'Chilly_Breath','Chilly Breath',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'10',0,885,'bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18747,'Eyes_Of_Ifrit','Eyes Of Ifrit',4,20,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,63,2,512,NULL,'0',0,886,'bonus bDex,1; bonus2 bResEff,Eff_Curse,2500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18748,'Gold_Ingot_Poring_Hat','Gold Ingot Poring Hat',4,20,NULL,200,NULL,3,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,887,'bonus bDex,2; bonus bLuk,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18749,'Majoruros_Horn','Majoruros Horn',4,20,NULL,500,NULL,8,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,888,'bonus bStr,2; bonus bMaxHP,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18750,'Poker_Card_In_Mouth','Poker Card In Mouth',4,20,NULL,50,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'10',0,889,'bonus2 bAddRace,RC_DemiHuman,2; bonus2 bAddRace,RC_Player_Human,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18752,'Cursed_Book','Cursed Book',4,20,NULL,300,NULL,3,NULL,1,0xFFFFFFFE,63,2,256,NULL,'99',1,890,'.@r = getrefine(); bonus2 bHPLossRate,.@r,5000; bonus2 bHPDrainRate,40,4+(.@r/2); bonus2 bSPDrainRate,10,1+(.@r/3);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18753,'Tw_Rice_Ball','Tw Rice Ball',4,20,NULL,100,NULL,6,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',0,892,'bonus bLuk,1; bonus2 bAddMonsterDropItem,564,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18754,'Blood_Sucker','Blood Sucker',4,20,NULL,300,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'40',0,893,'bonus bUnbreakableHelm; bonus2 bHPDrainRate,30,5; bonus bHPrecovRate,-100; bonus bSPrecovRate,-100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18755,'Feather_Beret_','Feather Beret',4,0,NULL,600,NULL,1,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,224,'bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18756,'Black_Shiba_Inu_Hat','Black Shiba Inu Hat',4,20,NULL,400,NULL,6,NULL,1,0xFFFFFFFF,63,2,256,NULL,'50',1,894,'bonus bBaseAtk,30; bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Player_Doram,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18758,'Hat_Of_Scrat','Hat Of Scrat',4,20,NULL,200,NULL,3,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,896,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18759,'Stretched_Nose_M','Wood Goblin\'s Nose',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFF,63,2,512,NULL,'50',0,737,'bonus bUnbreakableHelm; bonus2 bAddMonsterDropItem,1032,400; bonus2 bAddMonsterDropItem,1033,100; bonus3 bAddMonsterDropItem,576,RC_Plant,40;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18760,'Remodel_Wizardry_Hat','Improved Mage Hat',4,20,NULL,300,NULL,2,NULL,1,0x00810204,63,2,256,NULL,'0',1,112,'bonus bInt,2; bonus bMaxSP,150; .@r = getrefine(); bonus bMatk,.@r; if(.@r>=7) bonus bInt,.@r-6;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18761,'Remodel_Magician_Hat','Improved Magician Hat',4,20,NULL,500,NULL,6,NULL,1,0x00818314,63,2,256,NULL,'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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18762,'Remodel_Mask_Of_Fox','Improved Kitsune Mask',4,20,NULL,300,NULL,2,NULL,0,0xFFFFFFFE,63,2,256,NULL,'0',1,153,'bonus bAgi,2; bonus bLuk,2; if(getrefine()>=7) bonus bFlee2,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18763,'Remodel_Joker_Jester','Improved Joker Jester',4,20,NULL,100,NULL,3,NULL,1,0xFFFFFFFE,63,2,256,NULL,'0',1,89,'bonus bLuk,2; bonus bMdef,5; if(getrefine()>=7) bonus bCritAtkRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18764,'Remodel_Bunny_Band','Improved Bunny Band',4,20,NULL,100,NULL,3,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,15,'bonus bLuk,2; if(getrefine()>=7) bonus bCritical,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18765,'Enhanced_Corsair','Enhanced Corsair',4,20,NULL,500,NULL,10,NULL,1,0xFFFFFFFE,63,2,256,NULL,'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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18766,'Enhanced_Helm_Of_Angel','Enhanced Helm of Angel',4,20,NULL,1600,NULL,10,NULL,1,0x00CFDF80,63,2,256,NULL,'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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18767,'Enhanced_Helm_Of_Sun','Enhanced Hat of the Sun God',4,20,NULL,2400,NULL,4,NULL,1,0x00CFDF80,63,2,768,NULL,'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);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18768,'Enhanced_Bone_Helm','Enhanced Bone Helm',4,20,NULL,800,NULL,15,NULL,1,0x000444A2,63,2,256,NULL,'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);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18769,'Remodel_Munak_Turban','Improved Munak Hat',4,20,NULL,300,NULL,5,NULL,1,0xFFFFFFFF,63,2,769,NULL,'0',1,51,'bonus2 bSubRace,RC_Undead,10; if(getrefine()>=7) bonus2 bAddRace,RC_Undead,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18770,'Remodel_Bongun_Hat','Improved Bongun Hat',4,20,NULL,300,NULL,5,NULL,1,0xFFFFFFFF,63,2,769,NULL,'0',1,139,'bonus2 bSubRace,RC_Demon,10; if(getrefine()>=7) bonus2 bAddRace,RC_Demon,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18771,'Remodel_Opera_Mask','Improved Opera Phantom Mask',4,20,NULL,200,NULL,2,NULL,0,0xFFFFFFFF,63,2,512,NULL,'20',0,128,'bonus bBaseAtk,5; bonus bMatk,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18772,'Improved_Binoculars','Advanced Binoculars',4,20,NULL,100,NULL,2,NULL,0,0x00080808,63,2,512,NULL,'50',0,83,'bonus bDex,1; bonus bLongAtkRate,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18773,'Improved_Fin_Helm','Advanced Fin Helm',4,20,NULL,300,NULL,5,NULL,0,0x00004082,63,2,512,NULL,'65',0,100,'bonus bMaxHP,300+BaseLevel; /* unconfirmed */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18774,'Improved_Assassin_Mask','Advanced Assassin Mask',4,20,NULL,100,NULL,1,NULL,0,0x00001100,63,2,1,NULL,'70',0,180,'bonus bCritical,1; bonus bCritAtkRate,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18775,'Improved_Welding_Mask','Advanced Welding Mask',4,20,NULL,300,NULL,2,NULL,0,0x00040420,63,2,513,NULL,'50',0,79,'bonus2 bSubEle,Ele_Fire,10; bonus bDex,5; bonus bLuk,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18776,'Improved_Kiss_Of_Angel','Advanced Angel\'s Kiss',4,10000,NULL,300,NULL,6,NULL,1,0x00000001,63,2,256,NULL,'99',1,255,'bonus bSPrecovRate,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18779,'RWC_Champ_Crown_Red','RWC Champ Crown First Place',4,20,NULL,500,NULL,12,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',NULL,902,'bonus2 bResEff,Eff_Stun,10000; bonus2 bResEff,Eff_Curse,10000; bonus bUnbreakableHelm; bonus bAllStats,7; bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18780,'RWC_Champ_Crown_Blue','RWC Champ Crown Second Place',4,20,NULL,500,NULL,12,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',NULL,903,'bonus2 bResEff,Eff_Curse,10000; bonus bUnbreakableHelm; bonus bAllStats,7; bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18781,'RWC_Champ_Crown_Black','RWC Champ Crown Third Place',4,20,NULL,500,NULL,12,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',NULL,904,'bonus2 bResEff,Eff_Curse,10000; bonus bUnbreakableHelm; bonus bAllStats,3; bonus bMdef,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18782,'Butterfly_Wing_Ear_J','Butterfly Wing Ear',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,512,NULL,'0',0,695,'bonus bDex,2; bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18785,'King_Poring_Hat','King Poring Hat',4,20,NULL,600,NULL,10,NULL,1,0xFFFFFFFF,63,2,256,NULL,'10',1,905,'bonus bDex,1; bonus bLuk,1; .@r = getrefine(); if(.@r>=3){ bonus bDex,(.@r-4); bonus bLuk,(.@r-4); }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18786,'Anemos_Mask','Anemos Mask',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFF,63,2,512,NULL,'10',0,906,'bonus bUnbreakableHelm; bonus2 bMagicAtkEle,Ele_Wind,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18787,'Goal_Tender_Mask','Goal Tender Mask',4,20,NULL,200,NULL,5,NULL,0,0xFFFFFFFF,63,2,513,NULL,'50',0,336,'bonus2 bAddRace,RC_DemiHuman,8; bonus2 bAddRace,RC_Player_Human,8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18790,'Rainbow_Poring_Hat','Rainbow Poring Hat',4,20,NULL,100,NULL,3,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,900,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18791,'Shrine_Maiden_Hat','Shrine Maiden Hat',4,20,NULL,200,NULL,30,NULL,1,0xFFFFFFFF,63,2,256,NULL,NULL,NULL,908,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18792,'Idn_Sakkat','Indonesian Independence Sakkat',4,10,NULL,400,NULL,NULL,NULL,0,0xFFFFFFFE,63,2,256,NULL,'45',1,901,'bonus bVit,10; bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus2 bSubRace,RC_DemiHuman,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18793,'Sorc_Night_Cap','Sorcerer\'s Night Cap',4,20,NULL,200,NULL,25,NULL,1,0x00010000,56,2,256,NULL,'100',1,911,'.@r = getrefine(); bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",50; bonus2 bSkillAtk,"MG_FIREBOLT",50; bonus2 bSkillAtk,"MG_COLDBOLT",50; bonus bMdef,10; if(.@r>6) bonus2 bSkillAtk,"SC_SPELLFIST",25; if(.@r>8) bonus bAspd,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18796,'RWC_Champ_Crown_QF','RWC Champ Crown Fourth Place',4,20,NULL,500,NULL,12,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',NULL,914,'bonus2 bResEff,Eff_Curse,10000; bonus bUnbreakableHelm; bonus bAllStats,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18803,'Rose_Cascade','Rose Cascade',4,0,NULL,500,NULL,NULL,NULL,1,0xFFFFFFFF,63,2,256,NULL,NULL,1,920,'.@dex = readparam(bDex); bonus bUseSPrate,-5-((.@dex >= 120)?5:0)-((.@dex >= 100)?5:0);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18805,'Eclipse_Hat','Eclipse Hat',4,20,NULL,300,NULL,2,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,922,'bonus bLuk,3; bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18806,'Black_Rabbit_Hat','Black Rabbit Hat',4,20,NULL,300,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,923,'bonus bDex,2; bonus bAgi,3; bonus3 bAutoSpellWhenHit,"AL_INCAGI",5,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18807,'Yellow_Yuzu_Hat','Yellow Yuzu Hat',4,20,NULL,400,NULL,3,NULL,1,0xFFFFFFFE,63,2,256,NULL,'0',1,924,'bonus bVit,2; bonus bLuk,3; bonus2 bSubRace,RC_Plant,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18808,'Wing_Form_Spectacle','Wing Form Spectacle',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,512,NULL,'0',1,925,'bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18810,'Hell_Pumpkin_Hat','Hell Pumpkin Hat',4,20,NULL,500,NULL,12,NULL,0,0xFFFFFFFF,63,2,256,NULL,'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_Human,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18813,'New_Wave_Sunglasses','New Wave Sunglasses',4,10,NULL,100,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,512,NULL,'30',NULL,856,'bonus bDelayrate,-10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18814,'Angel_School_Cap','Angel School Cap',4,20,NULL,100,NULL,4,NULL,1,0xFFFFFFFE,63,2,256,NULL,'0',1,927,'bonus bInt,2; bonus bVit,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18815,'Devil_School_Cap','Devil School Cap',4,20,NULL,100,NULL,4,NULL,1,0xFFFFFFFE,63,2,256,NULL,'0',1,928,'bonus bStr,2; bonus bVit,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18816,'Adv_Angel_School_Cap','Evoked Angel School Cap',4,20,NULL,100,NULL,4,NULL,1,0xFFFFFFFE,63,2,256,NULL,'0',1,929,'bonus bInt,2; bonus bVit,2; bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18817,'Adv_Devil_School_Cap','Evoked Devil School Cap',4,20,NULL,100,NULL,4,NULL,1,0xFFFFFFFE,63,2,256,NULL,'0',1,930,'bonus bStr,2; bonus bVit,2; bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18818,'Red_Pencil_In_Mouth','Red Pencil In Mouth',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'0',0,931,'bonus bUnbreakableHelm; bonus bHit,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18819,'Blue_Pencil_In_Mouth','Blue Pencil In Mouth',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'0',0,932,'bonus bUnbreakableHelm; bonus bHit,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18820,'Gray_Helmet','Gray Helmet',4,20,NULL,450,NULL,35,NULL,1,0xFFFFFFFF,56,2,256,NULL,'120',1,941,'bonus2 bSubEle,Ele_Holy,3+getrefine()/2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18821,'Rainbow_Feather_Deco','Rainbow Feather Deco',4,20,NULL,300,NULL,5,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,934,'bonus2 bAddClass,Class_All,1; bonus bMatkRate,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18823,'Imperial_Feather','Imperial Feather',4,10,NULL,500,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,512,NULL,'70',1,935,'bonus bAspdRate,1; bonus2 bSubEle,Ele_Wind,5; if(readparam(bAgi)>107){ bonus bAspd,1; bonus bAspdRate,1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18827,'Valkyrie_Circlet','Valkyrie Circlet',4,0,NULL,300,NULL,10,NULL,1,0xFFFFFFFF,63,2,256,NULL,NULL,1,940,'bonus bStr,3; bonus2 bAddEle,Ele_Dark,10; bonus2 bAddRace,RC_Demon,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18828,'2012RMSCNO1','2012 RWC Winners Helmet',4,1000,NULL,1000,NULL,20,NULL,1,0xFFFFFFFF,63,2,256,NULL,'60',1,942,'bonus bAllStats,5; bonus bMdef,5; bonus bSpeedAddRate,10; skill "AL_TELEPORT",1; bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18829,'2012RMSCNO2','2012 RWC Runners-Up Helmet',4,1000,NULL,1000,NULL,20,NULL,1,0xFFFFFFFF,63,2,256,NULL,'60',1,943,'bonus bAllStats,4; bonus bMdef,5; bonus bSpeedAddRate,10; skill "AL_TELEPORT",1; bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18830,'2012RMSCNO3','2012 RWC 2nd Runner Helmet',4,1000,NULL,1000,NULL,20,NULL,1,0xFFFFFFFF,63,2,256,NULL,'60',1,944,'bonus bAllStats,3; bonus bMdef,5; bonus bSpeedAddRate,10; skill "AL_TELEPORT",1; bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18831,'2012RMSCNO4','2012 RWC Special Helmet',4,0,NULL,1000,NULL,20,NULL,1,0xFFFFFFFF,63,2,256,NULL,'95',0,945,'bonus bAllStats,2; bonus bMdef,5; bonus bSpeedAddRate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18832,'Rolf_Von_Gigue_666','Rolf Von Gigue 666',4,20,NULL,300,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,946,'bonus3 bAutoSpell,"BS_ADRENALINE",2,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18839,'Poring_Sunglasses','Poring Sunglasses',4,0,NULL,100,NULL,10,NULL,1,0xFFFFFFFF,63,2,512,NULL,'1',0,954,'bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18841,'Small_Poring_Band','Small Poring Band',4,20,NULL,350,NULL,8,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,955,'.@r = getrefine(); bonus bAspdRate,2*(.@r/3); if(.@r>9) bonus bAspd,1; bonus2 bExpAddRace,RC_All,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18842,'Hat_Of_Girl','Hat Of Girl',4,20,NULL,350,NULL,8,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,956,'.@r = getrefine(); bonus bInt,2*(.@r/3); bonus2 bSubRace,RC_DemiHuman,7; bonus bMaxHPrate,-3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18843,'Small_Deviling_Hat','Small Deviling Hat',4,20,NULL,350,NULL,7,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,957,'.@r = getrefine(); if(.@r>7) bonus bMaxHPrate,.@r-7; bonus2 bSubRace,RC_DemiHuman,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18844,'Blue_Poring_Bubble','Blue Poring Bubble',4,20,NULL,50,NULL,5,NULL,0,0xFFFFFFFF,63,2,1,NULL,'0',0,958,'bonus bAllStats,2; bonus bUnbreakableHelm; bonus bFlee,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18845,'Banshee_Master_Kiss','Banshee Master Kiss',4,20,NULL,200,NULL,5,NULL,0,0xFFFFFFFF,63,2,1,NULL,'0',0,959,'bonus bUnbreakableHelm; bonus bMaxSPrate,3; autobonus2 "{ bonus2 bSubRace,RC_DemiHuman,100; bonus2 bSubRace,RC_Player_Human,100; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18846,'Seagod_Protector','Seagod Protector',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,512,NULL,'10',0,960,'bonus2 bSubDefEle,Ele_Water,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18847,'Jolly_Roger','Jolly Roger',4,20,NULL,500,NULL,10,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,962,'bonus bVit,1; bonus2 bSubDefEle,Ele_Water,2; bonus2 bAddEle,Ele_Water,2; .@r = getrefine(); if(.@r>6) { bonus2 bAddEle,Ele_Water,3; } if(.@r>8) { bonus2 bSubDefEle,Ele_Water,3; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18848,'Lush_Rose','Lush Rose',4,10,NULL,200,'0:20',0,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,963,'bonus bMagicHPGainValue,100; bonus bMagicSPGainValue,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18849,'Celines_Ribbon','Celines Ribbon',4,10,NULL,200,NULL,NULL,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,967,'bonus bDex,3; bonus bMatk,40+getrefine(); bonus bMagicHPGainValue,200; bonus2 bHPLossRate,50,5000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18850,'Polar_Bear_Cap','Polar Bear Cap',4,20,NULL,300,NULL,7,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',0,966,'bonus bUnbreakableHelm; bonus bDex,1; bonus bAgi,1; bonus bMdef,3; bonus bHPrecovRate,5; bonus bSPrecovRate,3; bonus2 bAddMonsterDropItem,12354,100;',NULL,NULL); -#REPLACE INTO `item_db_re` VALUES (18851,'C_Polar_Bear_Cap','Costume Polar Bear Cap',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',1,966,'/*Is this correct item?*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18851,'ValentineHeart','Valentine Heart',4,20,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,397,'bonus bMaxHPrate,5+(getrefine()/2); bonus bAllStats,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18852,'Berry_Hat_Decoration','Tasty Strawberry Hat',4,20,NULL,150,NULL,4,NULL,NULL,0xFFFFFFFF,63,2,256,NULL,'30',1,968,'bonus bAllStats,1; if(getrefine()>11) bonus bAspd,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18853,'Berry_Hat_Decoration_','Tasty Strawberry Hat',4,20,NULL,150,NULL,4,NULL,NULL,0xFFFFFFFF,63,2,256,NULL,'30',1,968,'bonus bAllStats,1; if(getrefine()>11) bonus bAspd,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18854,'ValentineYellowHeart','Yellow Valentine Heart',4,20,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,865,'bonus bMaxSPrate,2+(getrefine()/2); bonus bAllStats,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18855,'Aviator_Hat','Aviator Hat',4,10,NULL,100,NULL,10,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,972,'bonus bAgi,3; bonus bInt,3; autobonus "{ bonus bAtkEle,Ele_Wind; }",500,180,BF_NORMAL;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18856,'W_King_Tiger_Doll_Hat','W King Tiger Doll Hat',4,10,NULL,0,NULL,10,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,973,'bonus bStr,2; bonus bDex,2; bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Player_Doram,10; .@r = getrefine(); autobonus "{ bonus2 bSPLossRate,5,1000; bonus bBaseAtk,25*getrefine(); }",3*.@r,3000,BF_NORMAL,"{ active_transform 1115,3000; specialeffect2 EF_POTION_BERSERK; showscript \\\"Traaaansformation-!! Eddga form!!\\\"; }"; autobonus2 "{ bonus2 bSPLossRate,5,1000; bonus bBaseAtk,25*getrefine(); }",.@r,3000,BF_NORMAL,"{ active_transform 1115,3000; specialeffect2 EF_POTION_BERSERK; showscript \\\"Traaaansformation-!! Eddga form!!\\\"; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18857,'Curupira_Hat','Curupira Hat',4,10,NULL,100,NULL,20,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,974,'bonus bDex,3; bonus2 bAddEffWhenHit,Eff_Confusion,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18858,'Pink_Angeling_Bubble','Pink Angeling Bubble',4,10,NULL,50,NULL,5,NULL,0,0xFFFFFFFF,63,2,1,NULL,'1',NULL,975,'bonus bMaxHP,200; bonus bAspdRate,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18859,'Angeling_Bubble','Angeling Bubble',4,10,NULL,50,NULL,5,NULL,0,0xFFFFFFFF,63,2,1,NULL,'1',NULL,976,'bonus bDex,1; bonus bMatkRate,2; bonus bMaxHP,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18860,'Red_Flower_Hat','Red Flower Hat',4,10,NULL,200,NULL,10,NULL,1,0xFFFFFFFF,63,2,256,NULL,'50',1,1033,'bonus bDex,5; bonus2 bSubDefEle,Ele_Earth,3; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; if (getrefine() >= 12) { bonus bShortWeaponDamageReturn,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18861,'Zaha_Doll_Hat_J','Zaha Doll J Hat',4,10,NULL,100,NULL,NULL,NULL,1,0xFFFFFFFF,63,2,256,NULL,'50',1,461,'bonus bHealPower,15; bonus bUseSPrate,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18863,'Exorcist_Robe','Exorcist Robe',4,10,NULL,1700,NULL,57,NULL,1,0xFFFFFFFF,63,2,16,NULL,'60',1,NULL,'bonus bMdef,5; .@r = getrefine(); if (.@r >= 3) { bonus2 bAddRace,RC_Undead,.@r/3*5; } if (BaseClass==Job_Acolyte) bonus2 bAddRace,RC_Undead,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18864,'Earth_Goddess_Flower_J','Earth Goddess Flower',4,10,NULL,250,NULL,6,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,864,'bonus bVit,2; skill "WZ_EARTHSPIKE",5; bonus2 bSubEle,Ele_Earth,15; .@r = getrefine(); if(.@r>=8){ bonus2 bSubEle,Ele_Earth,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18865,'Sword_Master_Crown','Sword Master Crown',4,10,NULL,1000,NULL,30,NULL,1,0xFFFFFFFF,63,2,256,NULL,'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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18867,'Vajra','Vajra',4,0,NULL,300,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1,NULL,'48',0,983,'bonus bDex,1; bonus bLongAtkRate,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18868,'Assassin_Skull_Mask','Assassin Skull Mask',4,10,NULL,500,NULL,2,NULL,0,0xFFFFFFFF,63,2,513,NULL,'70',NULL,984,'bonus bCritical,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18870,'Very_Sweet_Candy_Bar','Very Sweet Candy Bar',4,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1,NULL,'1',1,446,'bonus bAllStats,2; bonus bBaseAtk,10; bonus bMatk,10; bonus2 bExpAddClass,Class_All,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18871,'Very_Sweet_Candy','Very Sweet Candy',4,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1,NULL,'1',1,446,'bonus bAllStats,1; bonus bBaseAtk,5; bonus bMatk,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18872,'Snake_Hat','Snake Hat',4,20,NULL,100,NULL,5,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,986,'bonus bStr,3; bonus bInt,3; bonus bMdef,5; bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18873,'Sweet_Valentine_Out','Sweet Valentine Out',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',1,865,'bonus bMaxHPrate,7; bonus bMaxSPrate,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18874,'One_Eyed_Glass_','Cyclops Glasses',4,10,NULL,100,NULL,NULL,NULL,1,0xFFFFFFFF,63,2,512,NULL,'1',NULL,23,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18877,'Baron_Evil_Eye','Baron\'s Evil Eye',4,10,NULL,300,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,512,NULL,'30',NULL,989,'bonus bDelayrate,-5; bonus bUseSPrate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18878,'Palace_Guard_Cap','Palace Guard Cap',4,10,NULL,1000,NULL,15,NULL,1,0xFFFFFFFF,63,2,256,NULL,'50',1,991,'.@r = max(5,getrefine()); bonus2 bSubEle,Ele_Neutral,.@r; bonus bLongAtkDef,.@r; bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18879,'Angry_Scorpion_Hat','Angry Scorpion Hat',4,10,NULL,100,NULL,5,NULL,0,0xFFFFFFFF,63,2,256,NULL,'0',1,995,'bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18880,'Advanced_Jao_King_Hat','Advanced Jao King Hat',4,10,NULL,1500,NULL,4,NULL,1,0xFFFFFFFF,63,2,256,NULL,'175',1,996,'bonus bAllStats,3; bonus bMaxHPrate,5; bonus bMaxSPrate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18882,'Kannam_On_Head','Kannam On Head',4,10,NULL,200,NULL,5,NULL,0,0xFFFFFFFF,63,2,256,NULL,'20',1,1003,'bonus3 bAutoSpellWhenHit,"SA_DELUGE",1,50; .@r = getrefine(); if (.@r > 3) bonus3 bAutoSpellWhenHit,"WZ_WATERBALL",.@r/3,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18885,'Jejecap','Jejecap',4,0,NULL,100,NULL,8,NULL,0,0xFFFFFFFF,63,2,256,NULL,'70',1,1011,'bonus bStr,2; bonus bInt,3; bonus2 bSubRace,RC_DemiHuman,11; bonus2 bSubRace,RC_Player_Human,11; bonus2 bAddItemHealRate,522,70;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18887,'Aqua_Bunny_Band','Aqua Bunny Band',4,0,NULL,100,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,1012,'bonus bVit,3; .@r = getrefine(); bonus bMdef,(.@r>8?10:5); bonus bMatkRate,(.@r>8?6:2); if(.@r>11) bonus bFixedCastrate,-10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18888,'Maroon_Bunny_Band','Maroon Bunny Band',4,0,NULL,100,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,1013,'bonus bInt,5; bonus bLuk,5; .@r = getrefine(); bonus2 bAddClass,Class_All,(.@r>8?6:2); bonus bMatkRate,(.@r>8?9:5); if(.@r>11) bonus bFixedCastrate,-10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18889,'Golden_Bunny_Band','Golden Bunny Band',4,0,NULL,100,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,1014,'bonus bAgi,5; bonus bLuk,5; .@r = getrefine(); bonus2 bAddClass,Class_All,(.@r>8?7:2); if(.@r>8) bonus bMatkRate,5; if(.@r>11) bonus bFixedCastrate,-10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18890,'Gray_Bunny_Band','Gray Bunny Band',4,0,NULL,0,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,1015,'bonus bInt,5; bonus bLuk,5; .@r = getrefine(); bonus2 bAddClass,Class_All,(.@r>8?6:2); bonus bMatkRate,(.@r>8?9:5); if(.@r>11) bonus bFixedCastrate,-10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18891,'Husky_Hat','Husky Hat',4,0,NULL,500,NULL,5,NULL,1,0xFFFFFFFF,63,2,256,NULL,'70',1,1016,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus3 bAutoSpell,"SN_WINDWALK",5,10+(getrefine()*3);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18892,'Ufo_Poring_Hat','Ufo Poring Hat',4,0,NULL,1000,NULL,5,NULL,1,0xFFFFFFFF,63,2,256,NULL,'10',1,1017,'bonus bMdef,5; bonus bCritical,5; bonus bFlee,5; bonus bHit,5; bonus bFlee2,5; .@r = getrefine(); if(.@r>8){ bonus bDelayRate,-5; bonus bAspdRate,5; } else if(.@r>6) bonus bVariableCastrate,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18893,'Dragon_Claw_Helm','Dragon Claw Helm',4,0,NULL,1000,NULL,5,NULL,1,0xFFFFFFFF,63,2,256,NULL,'10',1,1018,'bonus2 bSubRace,RC_DemiHuman,8; bonus2 bSubRace,RC_Player_Human,8; bonus2 bSubRace,RC_Dragon,8; bonus2 bAddItemGroupHealRate,IG_Meat,200; if(getrefine()>11){ bonus bMaxHPrate,7; bonus bMaxSPrate,3; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18894,'Rainbow_Star','Rainbow Star',4,0,NULL,500,NULL,5,NULL,0,0xFFFFFFFF,63,2,512,NULL,'70',0,1019,'bonus2 bSubRace,RC_Player_Human,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18895,'Celestial_Dark_Flame','Celestial Dark Flame',4,0,NULL,200,NULL,5,NULL,0,0xFFFFFFFF,63,2,512,NULL,'50',0,1008,'bonus2 bSubEle,Ele_Fire,8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18896,'Pterios_Fins','Pterios Fins',4,0,NULL,200,NULL,5,NULL,0,0xFFFFFFFF,63,2,512,NULL,'50',0,1009,'bonus2 bSubEle,Ele_Fire,8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18897,'Azure_Diadem','Azure Diadem',4,0,NULL,200,NULL,5,NULL,0,0xFFFFFFFF,63,2,512,NULL,'50',0,1010,'bonus2 bSubEle,Ele_Water,8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18898,'Yggdrasil_Herald_Crown','Yggdrasil Herald Crown',4,0,NULL,200,NULL,6,NULL,1,0xFFFFFFFF,63,2,256,NULL,'60',1,997,'bonus bAllStats,5; bonus bMaxHP,100; bonus bMaxSP,50; .@r = getrefine(); .@rate = max(.@r,7)-7; if(.@rate){ bonus bMaxHPrate,.@rate; bonus bVariableCastrate,-.@rate; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18900,'Weisswurst','Weisswurst',4,20,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,1,NULL,'60',0,1022,'bonus bMaxHP,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18901,'Seppl_Hat','Seppl Hat',4,20,NULL,500,NULL,5,NULL,1,0xFFFFFFFF,63,2,256,NULL,'60',0,1023,'bonus bVit,3; bonus bHPrecovRate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18902,'Shovel_Hat','Shovel Hat',4,0,NULL,500,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'50',0,1024,'bonus bVit,3; bonus2 bAddMonsterDropItem,553,500; bonus2 bAddItemHealRate,553,700;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18908,'Isabella_Red_Ear','Isabella Red Ear',4,10,NULL,300,NULL,8,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,1030,'bonus bStr,5; bonus bMaxHPrate,5; bonus2 bSubDefEle,Ele_Fire,10; .@r = getrefine(); if(.@r>=9) bonus bAspd,1+(.@r-9)/2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18909,'Isabella_Brown_Ear','Isabella Brown Ear',4,10,NULL,300,NULL,8,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,1031,'bonus bMaxHPrate,10; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bMatk,getrefine()*2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18910,'Isabella_Blue_Ear','Isabella Blue Ear',4,10,NULL,300,NULL,8,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,1032,'bonus bMaxHPrate,10; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bAddSize,Size_Medium,10; if(getrefine()>=12){ bonus bShortWeaponDamageReturn,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18917,'LoveLove_Balloon','LoveLove Balloon',4,10,NULL,200,NULL,5,NULL,0,0xFFFFFFFF,63,2,1,NULL,'1',0,1039,'bonus bAllStats,1; bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18918,'Long_Octopus_Balloon','Long Octopus Balloon',4,10,NULL,200,NULL,5,NULL,0,0xFFFFFFFF,63,2,1,NULL,'1',NULL,1040,'bonus bVit,1; bonus bInt,1; bonus bMaxSP,30; bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18925,'GodOfWinds_Fan','GodOfWinds Fan',4,0,NULL,300,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1,NULL,NULL,0,1051,'bonus2 bSkillAtk,"WZ_VERMILION",3; bonus2 bSkillAtk,"WL_CHAINLIGHTNING",3; bonus bUseSPrate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18929,'Elephant_Model_Hat','Elephant Model Hat',4,10,NULL,300,NULL,10,NULL,1,0xFFFFFFFF,63,2,256,NULL,'30',1,1065,'.@r = getrefine(); bonus bDex,2+((.@r >= 2 && .@r <= 8) ? 1 : ((.@r > 8) ? (.@r/8): 0)); bonus3 bAutoSpellWhenHit,"WZ_STORMGUST",5,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18930,'Gorilla_Model_Hat','Gorilla Model Hat',4,10,NULL,300,NULL,10,NULL,1,0xFFFFFFFF,63,2,256,NULL,'30',1,1066,'bonus bStr,2+((getrefine()>=11) ? 3 : 0); bonus3 bAutoSpell,"KN_BOWLINGBASH",1,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18931,'Lion_Model_Hat','Lion Model Hat',4,10,NULL,300,NULL,10,NULL,1,0xFFFFFFFF,63,2,256,NULL,'30',1,1067,'.@r = getrefine(); bonus bInt,2+((.@r >= 2 && .@r <= 8) ? 1 : ((.@r > 8) ? (.@r/8): 0)); bonus3 bAutoSpellWhenHit,"WZ_METEOR",5,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18932,'Rhino_Model_Hat','Rhino Model Hat',4,10,NULL,300,NULL,10,NULL,1,0xFFFFFFFF,63,2,256,NULL,'30',1,1068,'.@r = getrefine(); bonus bVit,2+((.@r >= 11) ? (.@r/11) : 0); bonus3 bAutoSpellWhenHit,"WZ_VERMILION",1,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18933,'Mechanical_Plant_Hat','Mechanical Plant Hat',4,20,NULL,500,NULL,10,NULL,1,0xFFFFFFFF,63,2,256,NULL,'45',1,1069,'.@r = getrefine()/2; bonus bDex,2; bonus bMdef,7; bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",5+(5*.@r);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18934,'Fox_Ears_Bell_Ribbon','Fox Ears Bell Ribbon',4,0,NULL,400,NULL,4,NULL,1,0xFFFFFFFF,63,2,256,NULL,'50',1,1070,'bonus bAgi,2; bonus bAspdRate,10; .@r = getrefine(); autobonus "{ bonus bCritical,100; bonus bLongAtkRate,5+max(0,getrefine()-6); }",50+(.@r*2),5000,BF_NORMAL,"{ active_transform 1150,5000; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18936,'Golden_Fish','Golden Fish In Mouth',4,1,NULL,10,NULL,1,NULL,0,0xFFFFFFFF,63,2,1,NULL,'1',0,1081,'bonus bAllStats,2; bonus bBaseAtk,10; bonus bMatk,10; bonus2 bExpAddRace,RC_Fish,2; bonus2 bSubRace,RC_Fish,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18937,'Memories_Of_Lovers','Memories Of Lovers',4,0,NULL,100,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,512,NULL,NULL,1,1072,'bonus bMdef,7; bonus bMaxHPrate,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18938,'Astro_Circle','Astro Circle',4,0,NULL,300,NULL,1,NULL,0,0xFFFFFFFF,63,2,256,NULL,'70',1,1073,'bonus bInt,1; .@r = getrefine(); if(.@r>6){ .@t = ((.@r-6)*2); } bonus2 bSubSkill,"WZ_METEOR",20+.@t; bonus2 bSubSkill,"WL_CRIMSONROCK",20+.@t; bonus2 bSubSkill,"WL_COMET",5; bonus2 bSkillAtk,"WZ_METEOR",(.@r/3)*5; bonus2 bSkillAtk,"WL_CRIMSONROCK",(.@r/3)*5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18940,'10_Gallon_Hat_Of_Flame','10 Gallon Hat Of Flame',4,10,NULL,1000,NULL,0,NULL,0,0xFFFFFFFF,63,2,256,NULL,'90',1,1075,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18947,'Pipe_Of_Jiraiya','Jiraiya\'s Pipe',4,10,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,1,NULL,'70',NULL,1088,'bonus2 bSkillUseSP,"NJ_KOUENKA",-5; bonus2 bVariableCastrate,"NJ_KAENSIN",-10; bonus2 bSkillAtk,"NJ_BAKUENRYU",20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18948,'Mask_Of_Orochimaru','Orochimaru\'s Mask',4,10,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,1,NULL,'70',NULL,1089,'bonus2 bSkillUseSP,"NJ_HYOUSENSOU",-5; bonus2 bVariableCastrate,"NJ_SUITON",-10; bonus2 bSkillAtk,"NJ_HYOUSYOURAKU",20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18949,'Scroll_Of_Tsunade','Tsunade\'s Scroll',4,10,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,1,NULL,'70',NULL,1090,'bonus2 bSkillUseSP,"NJ_HUUJIN",-5; bonus2 bVariableCastrate,"NJ_RAIGEKISAI",-10; bonus2 bSkillAtk,"NJ_KAMAITACHI",20;',NULL,NULL); -# -REPLACE INTO `item_db_re` VALUES (18960,'Love_Daddy_2013','Love Daddy 2013',4,10,NULL,10,NULL,10,NULL,1,0xFFFFFFFF,63,2,256,NULL,NULL,1,1104,'.@r = getrefine(); bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; if(readparam(bStr) >= 90){ bonus bAtk,15; if(.@r >= 9) bonus bAtk,15; } if(readparam(bInt) >= 90){ bonus bMatk,15; if(.@r >= 9) bonus bMatk,15; } if(readparam(bVit) >= 90){ bonus bMaxHP,500; if(.@r >= 9) bonus bMaxHP,500; } if(readparam(bAgi) >= 90){ bonus bAspdRate,2; if(.@r >= 9) bonus bAspdRate,3; } if(readparam(bDex) >= 90){ bonus bLongAtkRate,3; if(.@r >= 9) bonus bLongAtkRate,3; } if(readparam(bLuk) >= 90){ bonus bCritical,5; if(.@r >= 9) bonus bCritical,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18970,'Magical_Moon_Cat','Magical Moon Cat',4,20,NULL,50,NULL,5,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,1308,'skill "ALL_CATCRY",1; bonus bAllStats,3; bonus bDelayrate,-5-(getrefine()/2); bonus bVariableCastrate,-5-(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18971,'Old_Rune_Circlet','Old Rune Circlet',4,10,NULL,100,NULL,10,NULL,1,0x00000080,56,2,256,NULL,'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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18972,'Old_Mitra','Old Mitra',4,10,NULL,100,NULL,10,NULL,1,0x00000100,56,2,256,NULL,'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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18973,'Old_Driver_Band_R','Old Driver Band',4,10,NULL,100,NULL,10,NULL,1,0x00000400,56,2,256,NULL,'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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18974,'Old_Driver_Band_Y','Old Driver Band(Yellow)',4,10,NULL,100,NULL,10,NULL,1,0x00000400,56,2,256,NULL,'170',1,637,'bonus bAllStats,1; .@r = getrefine(); bonus bBaseAtk,4*.@r; bonus bAspd,.@r/5; bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus2 bSkillAtk,"NC_ARMSCANNON",5*(.@r/2); bonus2 bSkillCooldown,"NC_SELFDESTRUCTION",-10000*(.@r/4);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18975,'Old_Shadow_Handicraft','Old Shadow Handicraft',4,10,NULL,100,NULL,10,NULL,1,0x00020000,56,2,256,NULL,'170',1,627,'bonus bAllStats,1; .@r = getrefine(); bonus bBaseAtk,4*.@r; bonus bMatk,4*.@r; bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus2 bSkillAtk,"SC_TRIANGLESHOT",25*.@r/2; if (.@r>=6) { bonus2 bSkillCooldown,"SC_ENERVATION",-1000; bonus2 bSkillCooldown,"SC_UNLUCKY",-1000; } if (.@r>=8) { bonus2 bSkillCooldown,"SC_LAZINESS",-1000; bonus2 bSkillCooldown,"SC_WEAKNESS",-1000; } if (.@r>=10) { bonus2 bSkillCooldown,"SC_IGNORANCE",-1000; bonus2 bSkillCooldown,"SC_GROOMY",-1000; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18976,'Old_Minstrel_Song_Hat','Old Minstrel Song\'s Hat',4,10,NULL,100,NULL,10,NULL,1,0x00080000,56,1,256,NULL,'170',1,628,'bonus bAllStats,1; .@r = getrefine(); bonus bLongAtkRate,.@r; bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus2 bSkillAtk,"CG_ARROWVULCAN",20*.@r/2; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",5*.@r/2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18977,'Old_Midas_Whisper','Old Midas Whisper',4,10,NULL,100,NULL,10,NULL,1,0x00040000,56,2,256,NULL,'170',1,629,'bonus bAllStats,1; .@r = getrefine(); bonus bBaseAtk,4*.@r; bonus bLongAtkRate,.@r; bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus2 bSkillAtk,"GN_CARTCANNON",15*.@r/2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18978,'Old_Magic_Stone_Hat','Old Magic Stone Hat',4,10,NULL,100,NULL,10,NULL,1,0x00000200,56,2,256,NULL,'170',1,630,'bonus bAllStats,1; .@r = getrefine(); bonus bMdef,5; bonus bMatkRate,.@r; bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus2 bSkillAtk,"WL_SOULEXPANSION",5*.@r/2; bonus2 bSkillCooldown,"WL_CRIMSONROCK",-1000-(.@r*100);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18979,'Old_Blazing_Soul','Old Blazing Soul',4,10,NULL,100,NULL,10,NULL,1,0x00008000,56,2,256,NULL,'170',1,631,'bonus bAllStats,1; .@r = getrefine(); bonus bBaseAtk,4*.@r; bonus bCritical,2*.@r; bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",15*.@r/2; bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",20*.@r/2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18980,'Old_Wind_Whisper','Old Wind Whisper',4,10,NULL,100,NULL,10,NULL,1,0x10000,56,2,256,NULL,'170',1,633,'bonus bAllStats,1; .@r = getrefine(); bonus bAtk2,4*.@r; bonus bMatkRate,.@r; bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus bMdef,5; bonus2 bSkillAtk,"SO_POISON_BUSTER",15*(.@r/2); bonus2 bSkillAtk,"SO_VARETYR_SPEAR",20*(.@r/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18981,'Old_Dying_Swan','Old Dying Swan',4,10,NULL,100,NULL,10,NULL,1,0x00080000,56,0,256,NULL,'170',1,635,'bonus bAllStats,1; .@r = getrefine(); bonus bLongAtkRate,.@r; bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus2 bSkillAtk,"CG_ARROWVULCAN",20*.@r/2; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",5*.@r/2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18982,'Old_Circlet_Of_Bone','Old Circlet Of Bones',4,10,NULL,100,NULL,10,NULL,1,0x00001000,56,2,256,NULL,'170',1,1141,'bonus bAllStats,1; .@r = getrefine(); bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus bCriticalRate,.@r; bonus bAspdRate,1; bonus2 bSkillAtk,"GC_CROSSIMPACT",10*.@r/2; bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",20*.@r/2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18983,'Old_Protect_Of_Crown','Old Protect Of Crown',4,10,NULL,100,NULL,10,NULL,1,0x00004000,56,2,256,NULL,'170',1,1140,'bonus bAllStats,1; .@r = getrefine(); bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus bMdef,5; bonus bBaseAtk,4*.@r; bonus bAspd,.@r/5; bonus2 bSkillAtk,"LG_CANNONSPEAR",20*.@r/2; bonus2 bSkillAtk,"LG_OVERBRAND",5*.@r/2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18984,'Old_Camo_RabbitHood','Old Camouflage Rabbit Hood',4,10,NULL,100,NULL,10,NULL,1,0x0000800,56,2,256,NULL,'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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18985,'Falconer_Flute','Falconer Flute',4,0,NULL,100,NULL,NULL,NULL,0,0x0000800,63,2,1,NULL,'75',0,1143,'set .@bblvl,max(getskilllv("HT_BLITZBEAT"),1); set .@luk,min(readparam(bLuk),120); bonus3 bAutoSpell,"HT_BLITZBEAT",.@i,((.@bblvl / 3) * 10) + (.@luk * 10) + (((.@bblvl / 5) * .@bblvl) * 2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (18987,'RWC13_Jormungandr_Hat','RWC13 Jormungandr Hat',4,20,NULL,2500,NULL,7,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,1149,'bonus bAllStats,2; bonus bVariableCastrate,-5; bonus bDelayrate,-5; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,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;',NULL); -REPLACE INTO `item_db_re` VALUES (18997,'Riot_Chip','Runaway Chip',4,10,NULL,300,NULL,NULL,NULL,1,0xFFFFFFFF,63,2,256,NULL,'100',1,1201,'bonus bHit,50; bonus bFlee,50; bonus bMaxSPrate,-50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19019,'Elemental_Crown','Elemental Crown',4,0,NULL,500,NULL,10,NULL,1,0xFFFFFFFF,63,2,256,NULL,'50',1,1219,'.@r = getrefine(); bonus bLongAtkRate,4; bonus bDex,(3+(BaseLevel>99?.@r:.@r/2));',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19020,'Survive_Circlet','Survive Circlet',4,0,NULL,500,NULL,10,NULL,1,0xFFFFFFFF,63,2,256,NULL,'50',1,1220,'.@r = getrefine(); bonus bInt,(3 + (BaseLevel > 99 ? .@r : .@r/2)); bonus bMatkRate,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19021,'Gigant_Helm','Gigant Helm',4,0,NULL,500,NULL,10,NULL,1,0xFFFFFFFF,63,2,256,NULL,'50',1,1221,'.@r = getrefine(); bonus bStr,(3 + (BaseLevel > 99 ? .@r : .@r/2)); bonus2 bAddClass,Class_All,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19022,'Floating_Stone_Of_Int','Floating Stone Of Intelligence',4,NULL,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,256,NULL,NULL,NULL,1230,NULL,'sc_start SC_FSTONE,INFINITE_TICK,0;','sc_end SC_FSTONE;'); -REPLACE INTO `item_db_re` VALUES (19024,'Protect_Feathers','Protect Feathers',4,0,NULL,500,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,512,NULL,'70',0,1232,'bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; bonus bAspdRate,-5; .@vit = readparam(bVit); if (.@vit >= 108) { bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3; bonus bAspdRate,-5; } if (.@vit >= 120) { bonus bMaxHPRate,3; bonus bMdef,3; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19026,'Aegir_Helm','Aegir Helm',4,10,NULL,800,NULL,10,NULL,1,0xFFFFFFFF,63,2,256,NULL,'40',1,870,'bonus bVit,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19030,'Pretty_Rabbit_Hood','Pretty Rabbit Hood',4,10,NULL,100,NULL,20,NULL,1,0xFFFFFFFF,63,2,769,NULL,'1',1,1085,'bonus bMaxHP,(15*BaseLevel);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19031,'Fallen_Angel_Blessing','Fallen Angel Blessing',4,0,NULL,200,NULL,1,NULL,0,0xFFFFFFFF,63,2,512,NULL,'10',1,1250,'bonus2 bAddRace,RC_Angel,5; bonus2 bSubRace,RC_Angel,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19033,'Rift_Ancient_Decoration','Rift Ancient Decoration',4,20,NULL,200,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'100',1,376,'.@r = getrefine(); bonus bMaxHP,1000+(.@r >= 9 ? 1000 : .@r >=7 ? 400 : 0);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19038,'12_Anniversary_Crown_Of_Saint','12 Anniversary Crown of Saint',4,10,NULL,120,NULL,12,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,1117,'bonus bAllStats,2; bonus bMdef,12;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19039,'12_Anniversary_Elf_Ears','12 Anniversary Elf Ears',4,10,NULL,120,NULL,0,NULL,0,0xFFFFFFFF,63,2,512,NULL,'0',1,875,'bonus2 bSubRace,RC_All,4; bonus2 bSubRace,RC_Player_Human,-4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19047,'Angeling_KnitCap','Angeling KnitCap',4,0,NULL,300,NULL,5,NULL,1,0xFFFFFFFF,63,2,256,NULL,'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); }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19048,'Elemental_Clothe','Elemental Clothes',4,0,NULL,500,NULL,45,NULL,1,0xFFFFFFFF,63,2,16,NULL,'80',1,NULL,'.@r = getrefine(); bonus bLongAtkRate,2+((.@r >= 9) ? 3 : 0)+((.@r >= 8) ? 2 : 0); if (.@r >= 7) bonus bUnbreakableArmor;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19050,'Loki_Nidhogg_Hat','Loki & Nidhoggur\'s Hat',4,0,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,1304,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19051,'Warrior_Moon_Cat','Warrior Moon Cat',4,20,NULL,100,NULL,5,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,1308,'/*Enables use of Level 1 Monster\'s Cry*/ bonus bAllStats,3; bonus2 bHPDrainRate,40,5; bonus2 bSPDrainRate,10,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19052,'Sigruns_Wing','Rental Sigrun\'s Wing',4,10,NULL,0,NULL,2,NULL,0,0xFFFFFFFF,63,2,512,NULL,'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; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19053,'Fighter_Moon_Cat','Fighter Moon Cat',4,20,NULL,100,NULL,5,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,1308,'/*Enables use of Level 1 Monster\'s Cry*/ .@r = getrefine(); bonus bAllStats,3; bonus2 bAddEff,Eff_Stun,500+(.@r*100);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19079,'Celestial_Woman\'s_Flower','Celestial Woman\'s Flower',4,20,NULL,300,NULL,5,NULL,1,0xFFFFFFFF,63,2,256,NULL,'20',1,438,'bonus bHPGainValue,100; bonus bMdef,5; bonus2 bSPGainRace,RC_Undead,5; if (getrefine()>=5) { bonus2 bSubRace,RC_Undead,5; } if (getrefine()>=7) { bonus2 bSubRace,RC_Undead,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19081,'Faceworm_Egg_Shell','Faceworm Egg Shell',4,20,NULL,500,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'30',1,1356,'bonus bHit,20; bonus2 bAddRace2,RC2_FACEWORM,5; bonus2 bMagicAddRace2,RC2_FACEWORM,5; bonus2 bSubRace2,RC2_FACEWORM,5; .@r = getrefine(); if (.@r>=5) { bonus2 bAddRace2,RC2_FACEWORM,10; bonus2 bMagicAddRace2,RC2_FACEWORM,10; bonus2 bSubRace2,RC2_FACEWORM,10; } if (.@r>=7) { bonus2 bAddRace2,RC2_FACEWORM,15; bonus2 bMagicAddRace2,RC2_FACEWORM,15; bonus2 bSubRace2,RC2_FACEWORM,15; } if (.@r>=9) { bonus2 bAddRace2,RC2_FACEWORM,20; bonus2 bMagicAddRace2,RC2_FACEWORM,20; bonus2 bSubRace2,RC2_FACEWORM,20; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19082,'Bio_Protector','Bio Protector',4,0,NULL,500,NULL,3,NULL,0,0xFFFFFFFF,63,2,512,NULL,'50',1,1366,'bonus bHit,10; bonus bVariableCastrate,-5; bonus bPerfectHitRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19083,'Mask_of_Hero','Mask of Hero',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFF,63,2,512,NULL,'70',0,1367,'bonus bVit,10; bonus bMdef,10; bonus bShortWeaponDamageReturn,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19084,'Parfaille_Vigilante_Hat','Parfaille Vigilante Hat',4,0,NULL,100,NULL,2,NULL,0,0x80000000,63,2,256,NULL,'20',1,1368,'bonus bLuk,1; bonus3 bAutoSpell,"AL_BLESSING",3,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19085,'Sigrun\'s_Wings_','Sigrun\'s Wings',4,20,NULL,100,NULL,2,NULL,1,0xFFFFFFFF,63,2,512,NULL,'1',0,568,'if(BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Thief||(BaseJob==Job_Taekwon&&Class!=Job_Soul_Linker)) { bonus bAspd,1; bonus bAgi,-2; } else if(BaseClass==Job_Mage||BaseClass==Job_Acolyte||Class==Job_Ninja||Class==Job_Soul_Linker){ bonus bMatk,3; bonus bHealPower,2; } else if(BaseClass==Job_Archer||BaseClass==Job_Gunslinger) bonus bLongAtkRate,1; else if(BaseJob==Job_Novice||BaseJob==Job_SuperNovice) { bonus bMaxHP,60; bonus bMaxSP,30; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19086,'Robo_Eye_','Robo Eye',4,20,NULL,200,NULL,2,NULL,1,0xFFFFFFFF,63,2,512,NULL,'10',0,345,'bonus2 bAddClass,Class_All,1; bonus bMatkRate,1; bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19087,'Angel_Spirit_','Angel Spirit',4,20,NULL,200,NULL,0,NULL,1,0xFFFFFFFF,63,2,512,NULL,'0',0,394,'bonus bStr,1; bonus bHit,8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19088,'Binoculars_','Binoculars',4,20,NULL,100,NULL,2,NULL,1,0x00080808,63,2,512,NULL,'50',0,83,'bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19089,'Blinker_','Blinker',4,1500,NULL,100,NULL,0,NULL,1,0xFFFFFFFE,63,2,512,NULL,'0',0,82,'bonus2 bResEff,Eff_Blind,5000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19090,'Alarm_Mask_','Alarm Mask',4,20,NULL,100,NULL,2,NULL,1,0xFFFFFFFE,63,2,513,NULL,'0',0,170,'bonus2 bResEff,Eff_Blind,2500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19091,'Opera_Ghost_Mask_','Opera Phantom Mask',4,20,NULL,200,NULL,2,NULL,1,0xFFFFFFFE,63,2,512,NULL,'20',0,128,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19092,'Machoman_Glasses_','Machoman\'s Glasses',4,36000,NULL,100,NULL,1,NULL,1,0xFFFFFFFE,63,2,512,NULL,'0',0,92,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19093,'Spinning_Eyes_','Geek Glasses',4,20000,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,63,2,512,NULL,'0',0,27,'bonus2 bResEff,Eff_Blind,800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19094,'Mr_Smile_','Mr. Smile',4,60,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,63,2,513,NULL,'0',0,65,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19095,'Happy_Balloon_K','Happy Balloon',4,0,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'1',0,1289,'bonus2 bDropAddRace,RC_All,10; bonus2 bExpAddRace,RC_All,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19101,'Glastheim_Observer','Glastheim Observer',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'80',1,1041,'bonus2 bAddClass,Class_All,2; bonus bDelayrate,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19102,'Pale_Moon_Hat','Pale Moon Hat',4,20,NULL,500,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'30',1,913,'bonus bFlee,20; bonus2 bAddRace2,RC2_THANATOS,5; bonus2 bSubRace2,RC2_THANATOS,5; bonus2 bMagicAddRace2,RC2_THANATOS,5; if(getrefine()>4) { bonus2 bAddRace2,RC2_THANATOS,10; bonus2 bSubRace2,RC2_THANATOS,10; bonus2 bMagicAddRace2,RC2_THANATOS,10; } if(getrefine()>6) { bonus2 bAddRace2,RC2_THANATOS,15; bonus2 bSubRace2,RC2_THANATOS,15; bonus2 bMagicAddRace2,RC2_THANATOS,15; } if(getrefine()>8) { bonus2 bAddRace2,RC2_THANATOS,20; bonus2 bSubRace2,RC2_THANATOS,20; bonus2 bMagicAddRace2,RC2_THANATOS,20; } /* skill 3044,1; */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19109,'Valhalla_Idol','Valhalla Idol',4,0,NULL,300,NULL,2,NULL,0,0xFFFFFFFF,63,2,512,NULL,'70',0,1423,'bonus bMaxSP,50; bonus4 bAutoSpellWhenHit,"MG_SAFETYWALL",10,50,0; hateffect(HAT_EF_VALHALLA_IDOL,true);',NULL,'hateffect(HAT_EF_VALHALLA_IDOL,false);'); -REPLACE INTO `item_db_re` VALUES (19111,'Laser_Of_Eagle','Laser of Eagle',4,0,NULL,400,NULL,5,NULL,1,0xFFFFFFFF,63,2,256,NULL,'100',1,1424,'bonus bDex,2; bonus bLongAtkRate,10; bonus5 bAutoSpell,"PR_LEXAETERNA",1,50,BF_LONG,1; /*TODO: Chance to transform become Shechil while attacking.*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19112,'Tengu_Scroll','Tengu Scroll',4,20,NULL,300,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'40',0,1445,'bonus2 bHPDrainRate,30,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19114,'Sting_Silk_Ribbon','Sting Silk Ribbon',4,20,NULL,300,NULL,15,NULL,1,0xFFFFFFFF,63,2,256,NULL,'70',1,1457,'bonus bUnbreakableHelm; bonus2 bSubEle,Ele_Earth,20; if(getrefine()>4) { bonus2 bSubSize,Size_All,2; } if(getrefine()>6) { bonus2 bSubSize,Size_All,3; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19115,'Republic_Hat','Republic Hat',4,0,NULL,400,NULL,3,NULL,1,0xFFFFFFFF,63,2,256,NULL,'100',1,1458,'.@r = getrefine(); .@val = 6; if (.@r >= 7) { .@val += 2; } if (.@r >= 9) { .@val += 4; } bonus bLongAtkRate,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19116,'Red_Baby_Dragon','Red Baby Dragon',4,0,NULL,700,NULL,NULL,1,1,0xFFFFFFFF,63,2,256,NULL,'90',1,1463,'.@r=getrefine(); bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus2 bSkillAtk,"RK_DRAGONBREATH",(.@r>=8?45:(.@r>=6?30:15)); bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",(.@r>=8?45:(.@r>=6?30:15));',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19117,'Poring_Sunglasses_','Poring Sunglasses',4,0,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,63,2,512,NULL,'1',0,954,'bonus2 bDropAddRace,RC_All,5; bonus2 bExpAddRace,RC_All,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19118,'Poring_Sunglasses__','Poring Sunglasses',4,0,NULL,10,NULL,0,NULL,1,0xFFFFFFFF,63,2,512,NULL,'1',0,954,'bonus2 bDropAddRace,RC_All,4; bonus2 bExpAddRace,RC_All,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19125,'Cylinder_Hairband','Cylinder Hairband',4,20,NULL,300,NULL,12,NULL,1,0xFFFFFFFF,63,2,256,NULL,'90',1,1477,'bonus bStr,5; bonus bInt,5; bonus2 bVariableCastrate,"GN_CARTCANNON",-100; bonus2 bSkillUseSP,"GN_CARTCANNON",30; bonus2 bSkillUseSP,"GN_CART_TORNADO",5; bonus2 bSkillAtk,"GN_CARTCANNON",10; bonus2 bSkillAtk,"GN_CART_TORNADO",5; if (getrefine()>=5) { bonus2 bSkillAtk,"GN_CARTCANNON",20; bonus2 bSkillAtk,"GN_CART_TORNADO",10; } if (getrefine()>=8) { bonus2 bSkillAtk,"GN_CARTCANNON",30; bonus2 bSkillAtk,"GN_CART_TORNADO",20; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19126,'Shadow_Booster_','Magical Booster',4,10,NULL,300,NULL,NULL,NULL,1,0xFFFFFFFF,63,2,512,NULL,'1',1,873,'bonus bAspd,1; bonus bDelayrate,-1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19128,'Ifrit\'s_Ear_','Ears Of Ifrit',4,20,NULL,300,NULL,0,NULL,1,0xFFFFFFFE,63,2,512,NULL,'50',0,422,'bonus bStr,1; bonus bMdef,3; bonus bInt,1; bonus2 bSkillAtk,"MG_FIREBOLT",3; bonus2 bSkillAtk,"WZ_FIREPILLAR",3; bonus2 bSkillAtk,"WZ_METEOR",3; bonus2 bSkillAtk,"SM_BASH",4; bonus2 bSkillAtk,"SM_MAGNUM",4; bonus2 bSkillAtk,"KN_PIERCE",3; bonus2 bSubEle,Ele_Fire,3; bonus2 bSubEle,Ele_Water,-3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19129,'Chick_Hat_','Chick Hat',4,20,NULL,100,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'10',0,311,'bonus bLuk,2; bonus bMaxHP,50; bonus bMaxSP,50; skill "TF_DOUBLE",2; bonus bDoubleRate,10; bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19130,'Magic_Eyes_','Magic Eyes',4,20,NULL,300,NULL,3,NULL,1,0x00810204,63,2,256,NULL,'54',1,209,'bonus bMdef,5; bonus bVariableCastrate,-10; bonus bUseSPrate,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19131,'Radio_Antenna_','Radio Antenna',4,0,NULL,1500,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,347,'bonus bMdef,5; bonus bCritical,5; bonus bFlee,5; skill "MG_LIGHTNINGBOLT",1; bonus4 bAutoSpellWhenHit,"MG_THUNDERSTORM",5,30,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19132,'Masquerade_','Masquerade',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFE,63,2,512,NULL,'0',0,78,'bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player_Human,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19133,'Odin_Mask_','Odin\'s Mask',4,20,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,63,2,513,NULL,'1',0,480,'bonus2 bSubClass,Class_Boss,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19134,'Wickebines_Black_Cat_Ears','Wickebine\'s Black Cat Ears',4,20,NULL,200,NULL,4,NULL,1,0xFFFFFFFE,63,2,256,NULL,'45',1,368,'bonus bFlee,10; bonus bCritAtkRate,10; autobonus "{ bonus2 bIgnoreMdefClassRate,Class_Normal,100; bonus2 bIgnoreMdefClassRate,Class_Boss,100; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_STEAL; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19137,'Strawberry_Mouth_Guard','Strawberry Mouth Guard',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'80',0,861,'bonus bVit,2; bonus bLongAtkDef,5; bonus bShortWeaponDamageReturn,5; if (Baselevel>=100) { bonus bMaxHP,2000; } else { bonus bMaxHP,200; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19138,'Seraphim_Coronet','Seraphim Coronet',4,20,NULL,300,NULL,0,NULL,0,0xFFFFFFFF,63,2,512,NULL,'70',0,1487,'bonus bStr,2; .@int = readparam(bInt); bonus bBaseAtk,(.@int/8)*5; bonus bHealPower,.@int/8; bonus bVariableCastrate,.@int/8; if ((.@int>=108)) { bonus bBaseAtk,50; bonus bHealPower,5; bonus bVariableCastrate,4; } if ((.@int>=120)) { bonus bBaseAtk,125; bonus bHealPower,10; bonus bVariableCastrate,6; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19139,'SurviveOrb','Survive Orb',4,0,NULL,300,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1,NULL,'50',0,1488,'skill "TF_HIDING",1; bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; bonus bVariableCastrate,-3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19140,'Squirrel_Ear_Hat','Squirrel Ear Hat',4,0,NULL,200,NULL,10,NULL,1,0xFFFFFFFF,63,2,256,NULL,'100',1,1486,'.@r = getrefine(); bonus bAspd,1; bonus bCriticalLong,5; bonus bCritAtkRate,10; bonus2 bIgnoreDefRaceRate,RC_All,10; if (.@r > 4) { bonus bAspd,1; bonus bCriticalLong,10; bonus bCritAtkRate,2; bonus2 bIgnoreDefRaceRate,RC_All,20; } if (.@r > 6) { bonus bAspd,1; bonus bCriticalLong,15; bonus bCritAtkRate,6; bonus2 bIgnoreDefRaceRate,RC_All,30; } if (.@r > 8) { bonus bAspd,1; bonus bCriticalLong,20; bonus bCritAtkRate,12; bonus2 bIgnoreDefRaceRate,RC_All,40; autobonus "{ bonus bCritAtkRate,100; }",70,5000; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19141,'Dolor_Thanatos_Mask','Dolor Thanatos Mask',4,20,NULL,200,NULL,6,NULL,0,0xFFFFFFFF,63,2,513,NULL,'100',0,666,'bonus bMdef,8; bonus bAllStats,1; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,1; bonus2 bSubEle,Ele_Fire,5; bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Wind,5; bonus2 bSubEle,Ele_Earth,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19142,'Drooping_Rebellion','Drooping Rebellion',4,20,NULL,500,NULL,1,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',0,1444,'bonus bLongAtkRate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19143,'Poring_Balloon','Poring Balloon',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'1',0,1426,'bonus2 bAddMonsterDropItem,909,2000; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19144,'Ferlock\'s_Hat','Ferlock\'s Hat',4,20,NULL,1000,NULL,1,NULL,1,0xFFFFFFFF,63,2,256,NULL,'50',0,1489,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19145,'Whistle','Whistle',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'1',0,1478,'bonus bBaseAtk,10; bonus bMatk,10; bonus bHPGainValue,10; bonus bSPGainValue,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19146,'Marin_Balloon','Marin Balloon',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'1',0,1430,'bonus4 bAutoSpellWhenHit,"WZ_QUAGMIRE",1,50,0; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19147,'Drops_Balloon','Drops Balloon',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'1',0,1427,'bonus bLuk,2; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19148,'Santa_Poring_Balloon','Santa Poring Balloon',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'1',0,1428,'bonus2 bAddItemGroupHealRate,IG_Candy,200; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19149,'Poporing_Balloon','Poporing Balloon',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'1',0,1429,'bonus2 bAddEff,Eff_Poison,500; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19150,'Metalring_Balloon','Metalring Balloon',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'1',0,1431,'bonus3 bAutoSpell,"RG_STRIPWEAPON",1,50; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19151,'Devilring_Balloon','Devilring Balloon',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'1',0,1434,'bonus2 bAddEff,Eff_Curse,500; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19152,'Angelring_Balloon','Angelring Balloon',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'1',0,1435,'bonus2 bAddItemHealRate,504,100; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19153,'Ghostring_Balloon','Ghostring Balloon',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'1',0,1436,'bonus3 bAutoSpell,"MG_SOULSTRIKE",5,10; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19154,'Arch_Angelring_Balloon','Arch Angelring Balloon',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'1',0,1437,'skill "ALL_RESURRECTION",1; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19155,'Demons_Eyes','Demon\'s Eyes',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,63,2,512,NULL,'60',0,1490,'bonus2 bSubRace,RC_Player_Human,3; bonus bFlee2,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19156,'Lunar_Rainbow','Lunar Rainbow',4,20,NULL,200,NULL,10,NULL,1,0xFFFFFFFF,63,2,256,NULL,'80',1,704,'bonus bAgi,3; bonus bMdef,10; bonus bMatk,(10*getrefine());',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19157,'Drooping_Rebellion_','Drooping Rebellion',4,20,NULL,200,NULL,1,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,1444,'bonus bAllStats,1; bonus bUseSPrate,-10; .@r = getrefine(); if (.@r >= 9) { bonus bAspd,1; } if (.@r >= 12) { bonus bSpeedRate,25; } bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19158,'C_Gemini_Eyes','Costume GeminiS58 Eyes Blue',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'0',0,1456,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19159,'Barrel_Helm','Barrel Helm',4,20,NULL,420,NULL,59,NULL,1,0xFFFFFFFF,63,2,769,NULL,'60',1,1498,'bonus bVit,5; bonus bHPrecovRate,-10; .@r = getrefine(); if (.@r >= 7) { bonus bDef,100; skill "CR_AUTOGUARD",1; } if (.@r >= 8) { bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; if(BaseJob==Job_SuperNovice) { skill "CR_AUTOGUARD",5; } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19162,'Scuba_Mask_','Scuba Mask',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,512,NULL,'40',1,400,'bonus bBaseAtk,5; bonus bMatk,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19164,'Para_Team_Hat100','Awakened Eden Group Hat I',4,20,NULL,0,NULL,10,NULL,1,0xFFFFFFFF,63,2,256,NULL,'100',1,1529,'autobonus "{ bonus bBaseAtk,15; }",70,5000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; autobonus "{ bonus bMatk,15; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_SPELLBREAKER; }"; .@r = getrefine(); if(.@r >= 7){ bonus bAtk,10; bonus bMatk,10; if(.@r >= 9){ bonus bAllStats,1; if(.@r >= 12){ bonus2 bRegenPercentSP,1,10000; } } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19165,'Para_Team_Hat160','Awakened Eden Group Hat II',4,20,NULL,0,NULL,10,NULL,1,0xFFFFFFFF,63,2,256,NULL,'160',1,1530,'autobonus "{ bonus bBaseAtk,30; }",70,5000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; autobonus "{ bonus bMatk,30; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_SPELLBREAKER; }"; .@r = getrefine(); if(.@r >= 7){ bonus bAtk,15; bonus bMatk,15; if(.@r >= 9){ bonus bAllStats,2; if(.@r >= 12){ bonus2 bRegenPercentHP,2,10000; bonus2 bRegenPercentSP,1,10000; } } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19166,'RO_Celebration_Hat','RO Celebration Hat',4,20,NULL,140,NULL,14,NULL,1,0xFFFFFFFF,63,2,256,NULL,'14',1,1541,'bonus bMaxSP,140; bonus2 bSPRegenRate,6,4000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19168,'Band_Of_Kafra_','Kafra Staff Headband',4,20,NULL,500,NULL,0,NULL,1,0xFFFFFFFF,63,2,256,NULL,NULL,1,106,'bonus2 bSubClass,Class_All,5; .@r = getrefine()*10; bonus2 bAddMonsterDropItem,23177,10+.@r; bonus2 bAddMonsterDropItem,7059,10+.@r; bonus2 bAddMonsterDropItem,7060,10+.@r;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19171,'Magician_Knit_Hat','Magician Knit Hat',4,20,NULL,500,NULL,10,NULL,1,0xFFFFFFFF,63,2,256,NULL,'10',1,854,'.@r = getrefine(); bonus bMdef,10; bonus2 bAddRace,RC_Undead,5; bonus2 bMagicAddRace,RC_Undead,5; bonus2 bSubRace,RC_Undead,2; bonus bSPGainValue,5; bonus bLongSPGainValue,5; bonus bMagicSPGainValue,5; if (.@r>=7) { bonus bMdef,5; bonus2 bAddRace,RC_Undead,10; bonus2 bMagicAddRace,RC_Undead,10; bonus2 bSubRace,RC_Undead,3; bonus bSPGainValue,10; bonus bLongSPGainValue,10; bonus bMagicSPGainValue,10; } if (.@r>=9) { bonus bMdef,5; bonus2 bAddRace,RC_Undead,10; bonus2 bMagicAddRace,RC_Undead,10; bonus2 bSubRace,RC_Undead,5; bonus bSPGainValue,10; bonus bLongSPGainValue,10; bonus bMagicSPGainValue,10; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19172,'Sitting_Pope_Casual','Sitting Pope Casual',4,1000,NULL,400,NULL,5,NULL,1,0xFFFFFFFF,63,2,256,NULL,'100',1,1553,'bonus bInt,2; bonus bDelayrate,-10; .@r = getrefine(); if (.@r>=7) bonus bDelayrate,-10; if (.@r>=9) bonus bDelayrate,-10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19173,'Floating_Ice','Floating Ice',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'90',0,1562,'bonus2 bAddItemHealRate,536,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19176,'Fallen_Angel_Blessing_','Fallen Angel Blessing',4,20,NULL,200,NULL,1,NULL,1,0xFFFFFFFF,63,2,512,NULL,'10',0,1250,'bonus2 bAddRace,RC_Angel,5; bonus2 bSubRace,RC_Angel,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19177,'Elemental_Crown_','Elemental Crown',4,0,NULL,500,NULL,10,NULL,0,0xFFFFFFFF,63,2,256,NULL,'50',1,1219,'.@r = getrefine(); bonus bDex,3 + (.@r/2); bonus bLongAtkRate,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19178,'Elemental_Crown__','Elemental Crown',4,0,NULL,500,NULL,10,NULL,1,0xFFFFFFFF,63,2,256,NULL,'50',1,1219,'.@r = getrefine(); bonus bDex,3 + (.@r/2); bonus bLongAtkRate,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19179,'Rabbit_Magic_Hat_','Magic Rabit Hat',4,0,NULL,800,NULL,4,NULL,1,0xFFFFFFFF,63,2,256,NULL,'0',1,497,'bonus bDex,1; bonus bAgi,1; bonus bMdef,1; bonus bAspdRate,5; bonus bDelayRate,-4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19180,'Anubis_Helm_','Anubis Helm',4,20,NULL,0,NULL,8,NULL,1,0xFFFFFFFF,63,2,768,NULL,'65',0,485,'bonus bMdef,5; bonus2 bSubClass,Class_Boss,10; bonus bHealpower2,10; bonus bAddItemHealRate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19181,'New_Wave_Sunglasses_','New Wave Sunglasses',4,20,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,63,2,512,NULL,'30',0,856,'bonus bDelayRate,-5;',NULL,NULL); -# -REPLACE INTO `item_db_re` VALUES (19189,'Racing_Cap_MC','Racing Cap (Mechanic)',4,20,NULL,0,NULL,10,NULL,1,0x00000400,56,2,256,NULL,'100',1,1134,'.@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*((.@r/3)); if (.@r>=8) bonus bCritAtkRate,5*getskilllv("BS_OVERTHRUST"); if (.@r>=11) { skill "TF_DOUBLE",5; bonus bDoubleRate,25; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19190,'Racing_Cap_GN','Racing Cap (Geneticist)',4,20,NULL,0,NULL,10,NULL,1,0x00040000,56,2,256,NULL,'100',1,1134,'.@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus2 bSkillAtk,"GN_CART_TORNADO",5*getskilllv("AM_AXEMASTERY"); if (.@r>=11) bonus3 bAutoSpell,"GN_CART_TORNADO",max(2,getskilllv("GN_CART_TORNADO")),50; /* Unknow Rates */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19191,'Racing_Cap_GC','Racing Cap (Guillotine Cross)',4,20,NULL,0,NULL,10,NULL,1,0x00001000,56,2,256,NULL,'100',1,1134,'.@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus bCritAtkRate,5*getskilllv("AS_LEFT"); if (.@r>=11) autobonus "{ bonus bCritAtkRate,20; }",50,5000,BF_WEAPON; /* Unknow Rate and Effect */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19192,'Racing_Cap_SC','Racing Cap (Shadow Chaser)',4,20,NULL,0,NULL,10,NULL,1,0x00020000,56,2,256,NULL,'100',1,1134,'.@r = getrefine(); bonus bMatk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus bMatk,5*getskilllv("RG_PLAGIARISM"); if (.@r>=11) bonus3 bAutoSpell,"HW_MAGICPOWER",5,30; /* Unknow Rates */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19193,'Racing_Cap_WL','Racing Cap (Warlock)',4,20,NULL,0,NULL,10,NULL,1,0x00000200,56,2,256,NULL,'100',1,1134,'.@r = getrefine(); bonus bMatk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus2 bSkillCooldown,"WL_TETRAVORTEX",-500*(getskilllv("WZ_METEOR")+getskilllv("WZ_VERMILION")); if (.@r>=11) bonus2 bFixedCastrate,"HW_MAGICPOWER",-50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19194,'Racing_Cap_SO','Racing Cap (Sorcerer)',4,20,NULL,0,NULL,10,NULL,1,0x00010000,56,2,256,NULL,'100',1,1134,'.@r = getrefine(); bonus bMatk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) { bonus2 bSkillAtk,"MG_THUNDERSTORM",5*getskilllv("SA_AUTOSPELL"); bonus2 bSkillAtk,"MG_FIREBALL",5*getskilllv("SA_AUTOSPELL"); } if (.@r>=11) { bonus2 bSkillAtk,"MG_FIREBOLT",50; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",50; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19195,'Racing_Cap_RK','Racing Cap (Rune Knight)',4,20,NULL,0,NULL,10,NULL,1,0x00000080,56,2,256,NULL,'100',1,1134,'.@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus bCritAtkRate,5*getskilllv("KN_TWOHANDQUICKEN"); if (.@r>=11) { bonus bUnbreakableWeapon; skill "TF_DOUBLE",5; bonus bDoubleRate,25; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19196,'Racing_Cap_RG','Racing Cap (Royal Guard)',4,20,NULL,0,NULL,10,NULL,1,0x00004000,56,2,256,NULL,'100',1,1134,'.@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus2 bSkillAtk,"LG_RAGEBURST",10*getskilllv("KN_SPEARMASTERY"); if (.@r>=11) bonus2 bSkillCooldown,"LG_EARTHDRIVE",-1000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19197,'Racing_Cap_AB','Racing Cap (Archbishop)',4,20,NULL,0,NULL,10,NULL,1,0x00000100,56,2,256,NULL,'100',1,1134,'.@r = getrefine(); bonus bMatk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus2 bSkillAtk,"AB_DUPLELIGHT",10*getskilllv("PR_MACEMASTERY"); /*if (.@r>=11) bonus3 bAutoSpell,"AB_ADORAMUS",max(5,getskilllv("AB_ADORAMUS")),50; Unknow Rate and Blue Gemstone consume mechanic */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19198,'Racing_Cap_SR','Racing Cap (Sura)',4,20,NULL,0,NULL,10,NULL,1,0x00008000,56,2,256,NULL,'100',1,1134,'.@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus2 bSkillUseSP,"SR_KNUCKLEARROW",getskilllv("MO_COMBOFINISH"); if (.@r>=11) bonus2 bSkillAtk,"SR_KNUCKLEARROW",50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19199,'Racing_Cap_RA','Racing Cap (Ranger)',4,20,NULL,0,NULL,10,NULL,1,0x00000800,56,2,256,NULL,'100',1,1134,'.@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus2 bSkillAtk,"RA_AIMEDBOLT",3*getskilllv("HT_STEELCROW"); if (.@r>=11) bonus bDelayrate,-15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19200,'Racing_Cap_MI','Racing Cap (Minstrel)',4,20,NULL,0,NULL,10,NULL,1,0x00080000,56,1,256,NULL,'100',1,1134,'.@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus bBaseAtk,5*getskilllv("BA_MUSICALLESSON"); if (.@r>=11) bonus3 bAutoSpell,"WM_REVERBERATION",max(2,getskilllv("WM_REVERBERATION")),50; /* Unknow rates*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19201,'Racing_Cap_WA','Racing Cap (Wanderer)',4,20,NULL,0,NULL,10,NULL,1,0x00080000,56,0,256,NULL,'100',1,1134,'.@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus bBaseAtk,5*getskilllv("DC_DANCINGLESSON"); if (.@r>=11) bonus3 bAutoSpell,"WM_REVERBERATION",max(2,getskilllv("WM_REVERBERATION")),50; /* Unknow rates*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19202,'Racing_Cap_GS','Racing Cap (Gunslinger)',4,20,NULL,0,NULL,10,NULL,1,0x40000000,63,2,256,NULL,'100',1,1134,'.@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) { bonus2 bSkillCooldown,"RL_HAMMER_OF_GOD",-2000*getskilllv("GS_PIERCINGSHOT"); bonus2 bSkillCooldown,"RL_D_TAIL",-200*getskilllv("GS_GROUNDDRIFT"); } if (.@r>=11) bonus2 bSkillCooldown,"RL_C_MARKER",-1000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19203,'Racing_Cap_NJ','Racing Cap (Ninja)',4,20,NULL,0,NULL,10,NULL,1,0x20000000,63,2,256,NULL,'100',1,1134,'.@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus bLongAtkRate,getskilllv("NJ_HUUMA"); if (.@r>=11) bonus2 bSkillAtk,"KO_HUUMARANKA",30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19204,'Racing_Cap_SN','Racing Cap (Super Novice)',4,20,NULL,0,NULL,10,NULL,1,0x00000001,63,2,256,NULL,'100',1,1134,'.@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus bCritAtkRate,10*getskilllv("TF_DOUBLE"); if (.@r>=11) { bonus bAspd,1; bonus bBaseAtk,20; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19205,'Racing_Cap_SU','Racing Cap (Summoner)',4,20,NULL,0,NULL,10,NULL,1,0x80000000,63,2,256,NULL,'100',1,1134,'.@r = getrefine(); bonus bBaseAtk,5*(.@r/2); bonus bMatk,5*.@r/2; bonus bAspdRate,2*(.@r/3); if (.@r>=8) { bonus2 bSkillCooldown,"SU_SVG_SPIRIT",-4000*getskilllv("SU_LUNATICCARROTBEAT"); bonus2 bSkillCooldown,"SU_NYANGGRASS",-8000*getskilllv("SU_CN_METEOR"); bonus2 bSkillCooldown,"SU_BUNCHOFSHRIMP",-4000*getskilllv("SU_FRESHSHRIMP"); } if (.@r>=11) bonus bDelayrate,-15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19209,'Illusion_Nurse_Cap','Illusion Nurse Cap',4,20,NULL,200,NULL,1,NULL,1,0x00008110,63,2,256,NULL,'99',1,64,'.@r = getrefine(); bonus bInt,(1+(.@r/2)); bonus bHealPower,(3*(.@r/2));',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19210,'Illusion_Apple_of_Archer','Illusion Apple of Archer',4,20,NULL,200,NULL,1,NULL,1,0xFFFFFFFE,63,2,256,NULL,'99',1,72,'bonus bDex,(3+(getrefine()/2));',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19223,'Illusion_Cap','Illusion Cap',4,0,NULL,400,NULL,15,NULL,1,0x000654E3,63,2,256,NULL,'120',1,14,'bonus2 bAddClass,Class_All,1; bonus bBaseAtk,(2*getrefine());',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19247,'Illusion_Fancy_Flower','Illusion Fancy Flower',4,0,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,256,NULL,'120',0,4,'bonus bMatkRate,1; bonus bMatk,(2*getrefine());',NULL,NULL); -# -REPLACE INTO `item_db_re` VALUES (19246,'Royal_Guard_Necklace','Royal Guard Necklace',4,20,NULL,300,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'80',0,1629,'bonus bAspd,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19266,'Survive_Circlet_','Survivor\'s Circlet',4,0,NULL,500,NULL,10,NULL,1,0xFFFFFFFF,63,2,256,NULL,'1',1,1220,'.@r = getrefine(); bonus bInt,3; bonus bMatk,10*(.@r/2)+(BaseLevel > 129 ? 50 : 0); if (.@r >= 10) {bonus bMatkRate,5;}',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19269,'Happy_Flapping_Wings','Happy Flapping Angel Wings',4,20,NULL,500,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'30',1,1251,'.@r = getrefine(); .@a = 15; if (.@r >= 7) .@a += 15; if (.@r>=8) bonus2 bResEff,Eff_Stone,10000; if (.@r>=9) .@a += 20; bonus2 bAddRace2,RC2_CLOCKTOWER,.@a; bonus2 bMagicAddRace2,RC2_CLOCKTOWER,.@a; bonus2 bSubRace2,RC2_CLOCKTOWER,.@a; bonus2 bAddMonsterDropItem,1061,500; /* Unofficial rates, info get from bRO itemdescription */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19272,'Garden_of_Eden','Garden of Eden',4,20,NULL,400,NULL,5,NULL,1,0xFFFFFFFF,63,2,256,NULL,'100',1,1653,'.@r = getrefine(); bonus bInt,5; bonus bDex,5; bonus2 bIgnoreMdefRaceRate,RC_All,20; bonus2 bMagicAtkEle,Ele_All,10; if (.@r>=7) { bonus2 bIgnoreMdefRaceRate,RC_All,30; bonus2 bMagicAtkEle,Ele_All,15; } if (.@r>=9) { bonus2 bIgnoreMdefRaceRate,RC_All,50; bonus bVariableCastrate,-15; }',NULL,'sc_end SC_TELEKINESIS_INTENSE;'); -REPLACE INTO `item_db_re` VALUES (19273,'Gemini_Red_Eyes','Gemini Red Eyes',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,512,NULL,'100',0,1654,'.@val = 100*(readparam(bVit)>89?50:10); bonus2 bResEff,Eff_Sleep,.@val; bonus2 bResEff,Eff_Stone,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19274,'Open_Air_Headset','Open Air Headset',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'90',0,1655,'bonus bDelayrate,-5; bonus bUseSPrate,-5; bonus bSPGainValue,5; bonus bMagicSPGainValue,5; bonus bLongSPGainValue,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19285,'Siegfried\'s_Helmet','Siegfried\'s Helmet',4,20,NULL,500,NULL,0,NULL,1,0xFFFFFFFF,63,2,256,NULL,'100',1,1055,'.@r = getrefine(); bonus2 bSubClass,Class_Boss,5; bonus bUnbreakableHelm; if (.@r>=6) { bonus bFlee2,5; bonus2 bSubClass,Class_Boss,5; } if (.@r>=8) { bonus bFlee2,5; bonus2 bSubClass,Class_Boss,10; bonus bNoKnockback; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19289,'C_Moon_Eyepatch','Costume Moon Eyepatch',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1370,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19291,'C_Shiba_Inu','Costume Shiba Inu',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1669,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19294,'C_CatEars_Cyber_HeadP_R','Costume Cyber Cat Ear Headphones (Red)',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1668,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19299,'Tree_Sprout','Tree Sprout',4,20,NULL,300,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'80',0,848,'bonus bVariableCastrate,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19306,'Gambler_Card','Heart Card in Mouth',4,20,NULL,300,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'80',0,1679,'bonus bCritAtkRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19310,'Beginner\'s_Cap','Beginner\'s Cap',4,20,NULL,0,NULL,10,NULL,0,0xFFFFFFFF,63,2,256,NULL,'100',0,102,'bonus bAllStats,1; bonus MaxHp,200;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19326,'Book_of_Soyga','Book of Soyga',4,20,NULL,1000,NULL,0,NULL,1,0xFFFFFFFF,63,2,256,NULL,'90',1,423,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19327,'Seraphim_Feather','Seraphim Feather',4,20,NULL,300,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'80',0,1704,'bonus bHealPower,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19329,'Devil\'s_Hand','Devil\'s Hand',4,10,NULL,1000,NULL,18,NULL,0,0xFFFFFFFF,63,2,256,NULL,'100',1,1018,'.@r = getrefine(); .@a = getskilllv("SR_RIDEINLIGHTNING"); .@b = getskilllv("SR_EARTHSHAKER"); .@c = getskilllv("SR_RAMPAGEBLASTER"); bonus bNoCastCancel; bonus bAspdRate,10; bonus2 bFixedCastrate,"SR_HOWLINGOFLION",-100; bonus2 bSkillAtk,"SR_HOWLINGOFLION",20; if (.@r>=7) { bonus2 bSkillAtk,"SR_HOWLINGOFLION",30; bonus bAspdRate,5; } if (.@r>=9) { bonus2 bSkillAtk,"SR_HOWLINGOFLION",50; bonus bAspdRate,5; } if (.@r>=10) bonus bIgnoreDefClass,Class_All; if (.@r>=10 && .@a==5) { bonus2 bVariableCastrate,"SR_HOWLINGOFLION",-50; bonus2 bVariableCastrate,"MO_STEELBODY",-50; bonus2 bVariableCastrate,"MO_CALLSPIRITS",-50; } if (.@r>=10 && .@b==5) bonus2 bSkillCooldown,"SR_HOWLINGOFLION",-9500; if (.@r>=10 && .@c==5) bonus2 bAddClass,Class_Boss,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19337,'Safety_Glasses','Safety Glasses',4,20,NULL,500,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'40',1,1721,'.@r = getrefine(); bonus2 bSubEle,Ele_Poison,10; if (.@r<7) .@a = 15; else if (.@r<9) .@a = 30; else if (.@r>=9) .@a = 50; if (.@r>=8) bonus2 bSubEle,Ele_Poison,15; /* bonus2 bAddRace2,RC2_HEARTHUNTER,.@a; bonus2 bMagicAddRace2,RC2_HEARTHUNTER,.@a; bonus2 bSubRace2,RC2_HEARTHUNTER,.@a; Hearthunter Warbase is not implemented yet */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19342,'Bull_Hat','Bull Hat',4,20,NULL,500,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'130',1,819,'.@r = getrefine(); bonus2 bSubEle,Ele_Wind,10; if (.@r<7) .@a = 15; if (.@r>=7 && .@r<9) .@a = 30; if (.@r>=8) bonus2 bSubEle,Ele_Wind,15; if (.@r>=9) .@a = 50; bonus2 bAddRace2,RC2_ROCKRIDGE,.@a; bonus2 bMagicAddRace2,RC2_ROCKRIDGE,.@a; bonus2 bSubRace2,RC2_ROCKRIDGE,.@a;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19343,'Circlet_Of_Phoenix','Circlet Of Phoenix',4,0,NULL,1000,NULL,18,NULL,0,0xFFFFFFFF,63,2,256,NULL,'100',1,1056,'.@r = getrefine(); .@mdef = 15; .@hp = 10; .@dmg = 10; .@cast = -10; bonus2 bFixedCastrate,"LG_OVERBRAND",-100; if (.@r>=7) { .@cast -= 5; .@dmg += 15; if (.@r>=9) { .@cast -= 5; .@dmg += 25; if (.@r>=10) { bonus2 bIgnoreDefClassRate,Class_All,100; } } } if (getskilllv("LG_KINGS_GRACE")>=5) { bonus2 bSkillCooldown,"LG_INSPIRATION",-10000; bonus2 bSkillVariableCast,"LG_INSPIRATION",-2000; } if (getskilllv("LG_MOONSLASHER")>=5) { bonus2 bSkillVariableCast,"LG_OVERBRAND",-1000; } if (getskilllv("LG_FORCEOFVANGUARD")>=5) { .@hp += 10; .@mdef += 15; bonus bMaxSPrate,10; bonus bDef,150; } bonus bMdef,.@mdef; bonus bMaxHPrate,.@hp; bonus2 bSkillAtk,"LG_OVERBRAND",.@dmg; bonus bVariableCastrate,.@cast;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19344,'Illusion_Hot_blooded_Headband','Illusion Hot-blooded Headband',4,0,NULL,100,NULL,3,NULL,1,0xFFFFFFFE,63,2,256,NULL,'120',1,154,'.@r = getrefine(); bonus bStr,2; bonus bBaseAtk,(10*(.@r/2)); if (.@r >= 7) { bonus2 bAddEle,Ele_Water,10; bonus2 bAddEle,Ele_Wind,10; bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Neutral,10; if (.@r >= 9) { bonus2 bAddSize,Size_Small,15; bonus2 bAddSize,Size_Large,15; } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19366,'Illusion_Goibne_Helm','Illusion Goibne Helm',4,0,NULL,1000,NULL,25,NULL,1,0xFFFFFFFE,63,2,256,NULL,'130',1,258,'.@r = getrefine(); .@vit = 3; if (.@r >= 7) { .@vit += 5; if (.@r >= 9) { bonus bDelayrate,-12; } } bonus bVit,.@vit; bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19379,'Striking_Hat','Striking Hat',4,20,NULL,400,NULL,5,NULL,1,0xFFFFFFFF,63,2,256,NULL,'100',1,1759,'.@r = getrefine(); bonus bDex,5; bonus bAgi,5; bonus bLongAtkRate,5; bonus bAspdRate,10; bonus bPerfectHitAddRate,10; bonus bHit,2*.@r; bonus bDelayrate,-2*.@r; if (.@r>=7) { bonus bPerfectHitAddRate,20; bonus bLongAtkRate,10; } if (.@r>=9) { bonus bPerfectHitAddRate,20; bonus bLongAtkRate,10; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19380,'Floating_Ball','Floating Ball',4,10,NULL,200,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,512,NULL,'100',NULL,1760,'bonus bMatk,35; bonus2 bMagicAddClass,Class_Boss,2; if (readparam(bDex)>=90) { bonus bMatk,70; bonus2 bMagicAddClass,Class_Boss,3; } if (readparam(bDex)>=125) { bonus bMatk,140; bonus2 bMagicAddClass,Class_Boss,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19381,'Protect_Cloth','Protect Cloth',4,20,NULL,300,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'90',0,1761,'bonus bMdef,5; bonus bMaxHPrate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19387,'Experimental_Goat_Cap','Experimental Goat Cap',4,20,NULL,500,NULL,2,NULL,1,0xFFFFFFFF,63,2,256,NULL,'40',1,1768,'.@r = getrefine(); .@sub = 10; .@dmg = 15; if (.@r >= 7) { .@dmg += 15; if (.@r >= 8) { .@sub += 15; if (.@r >= 9) { .@dmg += 20; } } } bonus2 bSubEle,Ele_Earth,.@sub; /*bonus2 bAddRace2,RC2_WERNER_LAB,.@dmg; bonus2 bMagicAddRace2,RC2_WERNER_LAB,.@dmg; bonus2 bSubRace2,RC2_WERNER_LAB,.@dmg; Werner\'s Central lab is not implemented yet */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19391,'Eyes_Of_Illusion','Eyes Of Illusion',4,20,NULL,500,NULL,2,NULL,0,0xFFFFFFFF,63,2,512,NULL,'100',0,1779,'bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bSubRace,RC_Player_Human,5; bonus2 bResEff,Eff_Blind,10000; if (getskilllv("GN_ILLUSIONDOPING")==5) skill "SA_DISPELL",5; if (getskilllv("GN_MANDRAGORA")==5) bonus2 bFixedCastrate,"GN_MANDRAGORA",-70;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19396,'Racing_Cap_SG','Racing Cap (Star Gladiator)',4,20,NULL,0,NULL,10,NULL,1,0x00400000,63,2,256,NULL,'100',1,1134,'.@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus bBaseatk,5*getskilllv("TK_HPTIME"); if (.@r>=11) autobonus3 "{ bonus2 bSkillAtk,\\\"SJ_SOLARBURST\\\",30; }",1000,10000,"SJ_PROMINENCEKICK";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19397,'Racing_Cap_SL','Racing Cap (Soul Linker)',4,20,NULL,0,NULL,10,NULL,1,0x00800000,63,2,256,NULL,'100',1,1134,'.@r = getrefine(); bonus bMatk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus bMaxSP,100*getskilllv("TK_SPTIME"); if (.@r>=11) autobonus3 "{ bonus2 bSkillAtk,\\\"SP_SPA\\\",30; bonus2 bSkillAtk,\\\"SP_SWHOO\\\",30; }",1000,10000,"SL_SMA";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19407,'Work_Cap','Work Cap',4,200,NULL,1000,NULL,18,NULL,0,0xFFFFFFFF,63,2,256,NULL,'100',1,1793,'.@r = getrefine(); bonus bMdef,15; bonus bVit,10; bonus2 bSkillAtk,"NC_AXETORNADO",20; bonus2 bVariableCastrate,"BS_GREED",-100; if (getskilllv("NC_MAGICDECOY") >= 5) bonus2 bAddClass,Class_Boss,50; if (getskilllv("NC_AXEBOOMERANG") >= 5) bonus bBaseAtk,100; if (getskilllv("NC_MAGMA_ERUPTION") >= 5) bonus2 bAddMonsterDropItem,732,10; if (.@r>=7) bonus2 bSkillAtk,"NC_AXETORNADO",30; if (.@r>=9) bonus2 bSkillAtk,"NC_AXETORNADO",50; if (.@r>=10) bonus bIgnoreDefClass,Class_All;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19409,'Black_Feather_Hat','Black Feather Hat',4,20,NULL,1000,NULL,18,NULL,0,0xFFFFFFFF,63,2,256,NULL,'100',1,731,'.@r = getrefine(); bonus bSPGainValue,50; bonus bLongSPGainValue,50; bonus bMagicSPGainValue,50; bonus bMdef,15; bonus bDex,10; bonus2 bSkillAtk,"SC_FEINTBOMB",10; if (getskilllv("SC_INVISIBILITY") >= 5) bonus2 bAddClass,Class_Boss,50; if (getskilllv("SC_MAELSTROM") >= 3) skill "TK_JUMPKICK",7; if (getskilllv("SC_REPRODUCE") >= 10) bonus bUseSPrate,-30; if (.@r>=7) { bonus2 bSkillAtk,"SC_FEINTBOMB",15; bonus bHit,30; } if (.@r>=9) { bonus2 bSkillAtk,"SC_FEINTBOMB",25; bonus bHit,20; } if (.@r>=10) bonus bIgnoreDefClass,Class_All;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19426,'Spirit_King\'s_Crown','Spirit King\'s Crown',4,20,NULL,600,NULL,12,NULL,0,0xFFFFFFFF,63,2,256,NULL,'100',1,1118,'.@r = getrefine(); bonus bMdef,15; bonus bFixedCastrate,-7*.@r; bonus bDelayrate,-10; bonus2 bSkillAtk,"SO_EARTHGRAVE",10; bonus2 bSkillAtk,"SO_DIAMONDDUST",10; bonus bVariableCastrate,-6*getskilllv("SO_EL_SYMPATHY"); if (getskilllv("SO_WARMER") >= 5) { bonus2 bSkillCooldown,"SO_EARTHGRAVE",-1000; bonus2 bSkillCooldown,"SO_DIAMONDDUST",-1000; bonus2 bSkillCooldown,"SO_VARETYR_SPEAR",-1000; } if (getskilllv("SO_ELEMENTAL_SHIELD") >= 5) bonus2 bMagicAddClass,Class_Boss,25; if (.@r>=7) { bonus2 bSkillAtk,"SO_EARTHGRAVE",15; bonus2 bSkillAtk,"SO_DIAMONDDUST",15; bonus bDelayrate,-5; } if (.@r>=9) { bonus bDelayrate,-5; bonus2 bSkillAtk,"SO_EARTHGRAVE",25; bonus2 bSkillAtk,"SO_DIAMONDDUST",25; } if (.@r>=10) bonus2 bIgnoreMdefClassRate,Class_All,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19428,'Illusion_Morpheus\'s_Hood','Illusion Morpheus\'s Hood',4,20,NULL,200,NULL,15,NULL,1,0xFFFFFFFF,63,2,256,NULL,'130',1,256,'.@r = getrefine(); bonus bInt,10; bonus bMdef,15; bonus bMaxSPrate,20; bonus bVariableCastrate,-(3*(.@r/2)); if (.@r >= 7) { bonus bMatk,30; if (.@r >= 9) { bonus bNoCastCancel; } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19451,'Heavenly_Order','Heavenly Order',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,512,NULL,'100',0,1093,'skill "MC_IDENTIFY",1,0; .@a = readparam(bStr); .@b = readparam(bAgi); .@c = readparam(bVit); .@d = readparam(bInt); .@e = readparam(bDex); .@f = readparam(bLuk); bonus bHit,2*(.@a/18); bonus bMaxHPrate,2*(.@a/18); bonus bFlee,2*(.@b/18); bonus bDelayrate,-2*(.@b/18); bonus bMdef,2*(.@c/18); bonus bVariableCastrate,-2*(.@c/18); bonus bMaxSPrate,2*(.@d/18); bonus bUseSPrate,-2*(.@d/18); bonus bCritical,2*(.@e/18); bonus bAspdRate,2*(.@e/18); bonus bBaseAtk,15*(.@f/18); bonus bMatk,15*(.@f/18); bonus bDef,20*(.@f/18);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19453,'Jeje_Cap','Jeje Cap',4,20,NULL,1000,NULL,18,NULL,0,0xFFFFFFFF,63,2,256,NULL,'100',1,1011,'.@r = getrefine(); .@dmg = 10; .@delay = -15-6*getskilllv("GN_CRAZYWEED"); bonus bMdef,15; bonus bNoCastCancel; bonus2 bVariableCastrate,"GN_CRAZYWEED",-50; bonus2 bVariableCastrate,"CR_ACIDDEMONSTRATION",-50; bonus2 bVariableCastrate,"CR_FULLPROTECTION",-50; if (.@r>=7) { .@dmg += 15; if (.@r>=9) { .@dmg += 25; if (.@r>=10) { bonus bIgnoreDefClass,Class_All; } } } if (getskilllv("GN_FIRE_EXPANSION") == 5) bonus2 bAddClass,Class_Boss,50; if (getskilllv("GN_CRAZYWEED") == 5) { .@delay -= 25; bonus2 bSkillCooldown,"GN_CRAZYWEED",-4500; } bonus2 bSkillAtk,"CR_ACIDDEMONSTRATION",.@dmg; bonus2 bSkillAtk,"GN_CRAZYWEED",.@dmg; bonus bDelayrate,.@delay;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19469,'Saint_Crown','Saint Crown',4,20,NULL,600,NULL,12,NULL,0,0xFFFFFFFF,63,2,256,NULL,'100',1,1117,'.@r = getrefine(); .@a = 5*(getskilllv("AB_LAUDAAGNUS")+getskilllv("AB_LAUDARAMUS")); .@dmg = 20; .@aspd = 10; bonus bMdef,15; bonus2 bSkillUseSP,"AB_JUDEX",15; bonus2 bSkillUseSP,"AB_ADORAMUS",15; bonus2 bVariableCastrate,"AB_JUDEX",-5*getskilllv("AB_ORATIO"); bonus2 bVariableCastrate,"AB_ADORAMUS",-5*getskilllv("AB_ORATIO"); if (getskilllv("AB_CLEARANCE") >= 5) { bonus2 bMagicAddClass,Class_Boss,25; } bonus2 bMagicAddEle,Ele_Undead,.@a; bonus2 bMagicAddEle,Ele_Ghost,.@a; bonus2 bMagicAddEle,Ele_Earth,.@a; bonus2 bMagicAddEle,Ele_Neutral,.@a; bonus2 bMagicAddRace,RC_DemiHuman,2*.@r; bonus2 bMagicAddRace,RC_Player_Human,2*.@r; if (.@r >= 7) { .@dmg += 30; .@aspd += 5; if (.@r >= 9) { .@dmg += 50; .@aspd += 5; if (.@r >= 10) { bonus bNoGemStone; } } } bonus bAspdRate,.@aspd; bonus2 bSkillAtk,"AB_JUDEX",.@dmg; bonus2 bSkillAtk,"AB_ADORAMUS",.@dmg;',NULL,NULL); -#=================================================================== -# Costume System -#=================================================================== -REPLACE INTO `item_db_re` VALUES (19433,'C_Resonate_Taego','Costume Resonate Taego',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1823,'hateffect(HAT_EF_RESONATETAEGO,true);',NULL,'hateffect(HAT_EF_RESONATETAEGO,false);'); -REPLACE INTO `item_db_re` VALUES (19500,'T_Mr_Smile','T Mr Smile',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,6144,NULL,'0',0,65,'bonus bStr,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19501,'T_Spinx_Helm','T Spinx Helm',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'0',0,137,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19502,'T_Goggle','T Goggle',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,3072,NULL,'0',0,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19503,'T_Munak_Hat','T Munak Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,7168,NULL,'0',0,51,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19504,'T_Sunglasses','T Sunglasses',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'0',0,12,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19505,'T_Cigarette','T Cigarette',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'0',0,54,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19506,'T_Valkyrie_Feather_Band','T Valkyrie Feather Band',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'0',0,300,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19507,'Fine_Sun','Clear Sun',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,654,'bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19508,'T_Gemmed_Sallet','T Gemmed Sallet',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'0',0,0,'bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19509,'Butterfly_Wing_Ear','Butterfly Wing Ears',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,695,'bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19510,'Nut_On_Head','Screw Stuck in Head',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,696,'bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19511,'Heart_Eye_Patch1','Heart Eye Patch 1',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,697,'bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19512,'Heart_Eye_Patch2','Heart Eye Patch 2',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,698,'bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19513,'Chicken_Beak','Chicken Bill',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,699,'bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19514,'Charlie_Beard','Charlies Beard',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,700,'bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19515,'Yellow_Hat','Yellow Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,701,'bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19516,'Singing_Bird','Singing Bird',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,702,'bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19517,'Cocks_Comb','Chicken Crest',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,703,'bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19518,'Rainbow','Rainbow',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,704,'bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19519,'Lightning_Cloud','Thunderstorm Cloud',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,688,'bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19520,'Rain_Cloud','Rain Cloud',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,705,'bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19521,'Charlie_Hat','Charlies Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,706,'bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19522,'Mini_Crown1','Mini Crown',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,707,'bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19523,'Donation_Ribbon','Green Ribbon',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,244,'bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19524,'C_Green_Feeler','Costume Green Feeler',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,85,'bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19525,'C_Jack_A_Dandy','Costume Jack A Dandy',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'0',0,58,'bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19526,'C_Helm','Costume Helm',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,40,'bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19527,'C_Sharp_Gear','Costume Spiky Band',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,43,'bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19528,'C_Iron_Cane','Costume Iron Cain',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,53,'bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19529,'C_Angelic_Chain','Costume Angel Wing',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,38,'bonus bUnbreakableHelm; bonus bVit,1; bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19530,'C_Wild_Rose','Costume Wild Rose',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,541,'bonus bUnbreakableHelm; bonus bBaseAtk,2; bonus bMatk,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19531,'C_Cube_Mask','Costume Cube Mask',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,6144,NULL,'0',0,472,'bonus bUnbreakableHelm; bonus bFlee,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19532,'C_Red_Bunny_Band','Red Bunny Band',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,640,'bonus bUnbreakableHelm; bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19533,'C_Spore_Hat','Costume Spore Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,114,'bonus bUnbreakableHelm; bonus bVit,1; bonus2 bExpAddRace,RC_All,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19534,'C_Tha_Despero_Mask','Costume Thanatos Despero Mask',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,6144,NULL,'1',0,693,'bonus2 bAddClass,Class_All,1; bonus bMatkRate,1; bonus bHealPower,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19535,'C_Sinsuncho_Hat','Costume Sinsuncho Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,730,'bonus bUnbreakableHelm; bonus bStr,1; bonus2 bExpAddRace,RC_All,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19536,'C_Rose_Corsage','Costume Rose Corsage',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,533,'bonus bUnbreakableHelm; bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19537,'C_Gryphon_Hat','Costume Gryphon Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,591,'bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19538,'Full_Moon','Full Moon',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'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 */ }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19539,'C_Reginleif_Hairband','Costume Hairband Of Reginleif',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,468,'bonus bAllStats,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19540,'C_Rabbit_Earplug','Costume Rabbit Earplugs',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,7168,NULL,'1',0,515,'bonus bAgi,1; bonus bFlee,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19541,'C_Romantic_White_Flower','Costume Romantic White Flower',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,259,'bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19542,'C_Devil_Whisper','Costume Devil Whisper',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,712,'bonus bUnbreakableHelm; bonus2 bSubRace,RC_Angel,1; bonus2 bSubRace,RC_Demon,1; bonus3 bAddMonsterDropItem,523,RC_Angel,400; bonus3 bAddMonsterDropItem,12020,RC_Demon,400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19543,'Oliver_Wolf_Hood','Oliver Wolf Hood',4,20,NULL,300,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'70',0,849,'bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19544,'C_Tare_Neko_Cru','Costume Tare Neko Cru',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,692,'bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19545,'C_Boys_Cap','Costume Boy\'s Cap',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'100',0,102,'bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19546,'C_Valkyrie_Helm','Costume Valkyrie Helm',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'100',0,225,'bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19547,'C_Deviruchi_Cap','Costume Deviruchi Cap',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'100',0,123,'bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19548,'C_Frog_Cap','Costume Frog Cap',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'100',0,448,NULL,'bonus bUnbreakableHelm;',NULL); -REPLACE INTO `item_db_re` VALUES (19549,'C_Magestic_Goat','Costume Magestic Goat',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'100',0,41,'bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19550,'C_Blush','Costume Blush',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'100',0,125,'bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19551,'C_Elven_Ears','Costume Elven Ears',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'100',0,73,'bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19552,'C_Centimental_Flower','Costume Centimental Flower',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'100',0,56,'bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19553,'C_Assassin_Mask_','Costume Assassin Mask',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'100',0,180,'bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19554,'C_Hahoe_Mask','Costume Hahoe Mask',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,6144,NULL,'100',0,230,'bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19555,'C_Crescent_Helm','Costume Crescent Moon Helm',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,3072,NULL,'1',0,213,'bonus bVit,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19556,'C_Kabuki_Mask','Costume Kabuki Mask',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,7168,NULL,'1',0,214,'bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19557,'C_Ayothaya_Hat','Costume Ayothaya Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,334,'bonus bStr,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19558,'C_Crow_Hat','Costume Crow Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,524,'bonus bVit,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19559,'C_Baby_Dragon_Hat','Costume Baby Dragon Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,525,'bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19560,'C_Coati_Hat','Costume Coati Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,527,'bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19561,'C_Tucan_Hat','Costume Tucan Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,528,'bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19562,'C_Jaguar_Hat','Costume Jaguar Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,7168,NULL,'1',0,530,'bonus bStr,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19563,'C_Dragon_Arhat_Mask','Costume Dragon Arhat Mask',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,6144,NULL,'1',0,545,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19564,'C_Tiger_Arhat_Mask','Costume Tiger Arhat Mask',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,6144,NULL,'1',0,546,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19565,'C_Chung_Hairband','Costume Chung Hairpin',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,583,'bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19566,'C_Samurai_Mask','Costume Samurai Mask',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,644,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19567,'C_Hatta_Black','Costume Hatta Black',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,676,'bonus bVit,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19568,'C_Ancient_Horns','Costume Ancient Horns',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,757,'bonus bStr,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19569,'C_Sprout_Hat','Costume Sprout Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,758,'bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19570,'C_Mercury_Riser','Costume Mercury Riser',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,759,'bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19571,'C_White_Musang_Hat','Costume White Musang Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,770,'bonus bStr,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19572,'C_Black_Musang_Hat','Costume Black Musang Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,771,'bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19573,'C_Heart_Wing_Hairband','Costume Heart Wing Hairband',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,733,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19574,'C_Lord_of_Death','Costume Lord of Death',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,3072,NULL,'0',0,742,'bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19575,'C_Ascension_Black_Dragon','Costume Ascension Black Dragon',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,863,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19576,'C_Tare_Pope','Costume Tare Pope',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,817,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19577,'10th_Anni_Poring_Hat','10th Anni Poring Hat',4,10,NULL,100,NULL,1,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,874,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19578,'C_Goggle','Costume Googles',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,3072,NULL,'1',0,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19579,'C_Red_Wind_Hat','Costume Red Wind Hat',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,613,'bonus bHPrecovRate,20; bonus bSPrecovRate,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19580,'C_Sphinx_Helm','Costume Sphinx Helm',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,5120,NULL,'1',0,137,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19581,'C_Adventurers_Hat','Costume Adventurer\'s Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,891,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19582,'C_Cowboy_Hat','Costume Cowboy Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,411,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19583,'C_Zorro_Mask','Costume Zorro Mask',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,50,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19584,'C_Pirate_Dagger','Costume Dagger In Mouth',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,327,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19585,'C_Feather_Beret','Costume Feather Beret',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,224,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19586,'C_Pink_Bunny_Band_J','Costume Pink Bunny Hair Band',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,898,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19587,'C_King_Poring_Hat','Costume King Poring Hat',4,0,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,905,'bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19588,'C_Cat_Hat_J','Costume Cat Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,182,'bonus bAllStats,3; bonus2 bExpAddClass,Class_All,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19589,'C_Fallen_Angel_Lost_J','Costume Fallen Angel Lost',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'0',0,907,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19590,'C_Twin_Ribbon_J','Costume Maiden\'s Twin Ribbon',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'0',0,239,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19591,'C_Ribbon_Red','Costume Red Ribbon',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,246,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19592,'C_Hibiscus','Costume Hibiscus',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,210,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19593,'C_Laurel_Wreath','Costume Laurel Wreath',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,237,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19594,'C_Decorative_Geographer','Costume Decorative Geographer',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,238,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19595,'C_Dress_Hat_J','Costume April\'s Fool Day',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,265,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19596,'C_Flapping_Angel_Wing','Costume Flapping Angel Wing',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,264,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19597,'C_Magic_Eyes','Costume Magic Eyes',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,209,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19598,'C_Wondering_Wolf_Helm','Costume Wandering Wolf Hat',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFE,63,2,3072,NULL,'0',0,490,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19599,'C_Imp_Hat','Costume Imp Hat',4,20,NULL,400,NULL,1,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,589,'bonus3 bAutoSpell,"SA_FLAMELAUNCHER",1,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19600,'Drooping_Kiehl','Costume Drooping Kiehl',4,0,NULL,40,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'30',NULL,909,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19601,'Drooping_Aliot','Costume Drooping Aliot',4,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',NULL,910,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19602,'C_Invisible_Cap','Costume Invisible Cap',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19603,'C_Invisible_Sunglasses','Costume Invisible Sunglasses',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19604,'C_Invisible_Mask','Costume Invisible Flu Mask',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19605,'C_Gang_Scarf','Costume Gang Scarf',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,369,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19606,'C_Ninja_Scroll','Costume Ninja Scroll',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,370,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19607,'C_Love_Chick_Hat','Costume Love Chick Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,500,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19608,'C_Chick_Hat','Costume Baby Chick',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,311,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19609,'C_Red_Glasses','Costume Red Glasses',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,316,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19610,'C_Whisper_Mask','Costume Whisper Mask',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,7168,NULL,'1',0,321,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19611,'C_Peco_Ears','Costume Peco Ears',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,366,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19612,'C_Note_Headphone','Costume Note Headphone',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,3072,NULL,'1',0,220,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19613,'C_Valkyrie_Feather_Band','Costume Valkyrie Feather Hat',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,300,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19614,'C_Super_Novice_Hat','Costume Super Novice Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,193,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19615,'C_Loki_Mask','Costume Loki Mask',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,6144,NULL,'1',0,346,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19616,'C_Wickebines_Black_Cat_Ears','Costume Wickebine\'s Black Cat Ears',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,368,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19617,'C_Puppy_Headband','Costume Puppy Headband',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,NULL,NULL,199,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19618,'C_Mask_Of_Fox','Costume Kitsune Mask',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,NULL,NULL,153,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19619,'C_Corsair','Costume Corsair',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'0',0,105,'bonus bVit,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19620,'C_Dectective_Hat','Costume Detective Hat',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,NULL,NULL,189,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19621,'C_Ear_Of_Devils_Wing','Costume Evil Wing Ear',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,2048,NULL,NULL,NULL,152,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19622,'C_Crescent_Hairpin','Costume Crescent Hairpin',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,NULL,NULL,132,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19623,'C_Bijofnil_Wings','Costume Bijofnil Wings',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,NULL,NULL,477,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19624,'C_Round_Eyes','Costume Blank Eyes',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,2048,NULL,NULL,NULL,185,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19625,'C_Bunny_Band','Costume Bunny Band',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,NULL,NULL,15,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19627,'C_Satellite_Hairband','Costume Satellite Hairband',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,266,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19628,'C_Headset','Costume Headset',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,97,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19629,'C_Tiara','Costume Tiara',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,19,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19630,'C_Crown','Costume Crown',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,45,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19631,'C_Poring_Fedora_Hat','Costume Poring Fedora Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,919,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19632,'C_Hat','Costume Hat',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,16,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19633,'C_Flower_Hairband','Costume Flower Band',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,5,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19634,'C_Flu_Mask','Costume Flu Mask',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,8,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19635,'C_Mini_Propeller','Costume Mini Propeller',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,46,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19636,'C_Pierrot_Nose','Costume Clown Nose',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,49,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19637,'C_Nurse_Cap','Costume Nurse Cap',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,64,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19638,'C_Mr_Smile','Costume Mr. Smile',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,6144,NULL,'1',0,65,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19639,'C_Sahkkat','Costume Sakkat',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,67,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19640,'C_Charming_Ribbon','Costume Charming Ribbon',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,211,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19641,'C_Helm_of_Darkness','Costume Helm of Darkness',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,3072,NULL,'1',0,233,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19642,'C_Moonlight_Flower_Hat','Costume Moonlight Flower Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,3072,NULL,'1',0,268,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19643,'C_Whikebain_Ears','Costume Wickebine Ears',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,368,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19644,'C_Takius_Blindfold','Costume Takius Blindfold',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,184,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19645,'C_Phoenix_Crown','Costume Phoenix Crown',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,221,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19646,'C_Ramen_Hat','Costume Ramen Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,320,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19647,'C_Red_Deviruchi_Hat','Costume Red Deviruchi Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,271,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19648,'C_Autumn_Leaves','Costume Autumn Leaves',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,241,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19649,'C_White_Baby_Cat_Ears','Costume White Baby Cat Ears',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,926,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19650,'C_Rainbow_Feather_Deco','Costume Rainbow Feather Deco',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,934,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19651,'C_RWC_Shouting_Mouth','Costume RWC Shouting Mouth',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,194,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19652,'C_Rabbit_Magic_Hat','Costume Rabbit Magic Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,497,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19653,'C_Marcher_Hat','Costume Marcher Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,269,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19654,'C_J_Captain_Hat','Costume Ship Captain Hat',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,367,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19655,'C_Tiraya_Bonnet','Costume Tiraya Bonnet',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'0',0,398,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19656,'C_Minstrel_Hat','Wandering Minstrel Hat',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'0',0,240,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19657,'C_Captain_Hat','Costume Captain Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,236,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19658,'C_Vacation_Hat','Costume Vacation Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,315,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19659,'C_Brown_Beanie','Costume Brown Beanie',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,279,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19660,'C_Coppola','Costume Coppola',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,252,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19661,'C_Sweet_Bonnet','Costume Sweet Bonnet',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,938,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19662,'C_Magician_Hat','Costume Magician Hat',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,130,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19663,'Wishing_Sky_Lantern','Costume Wish Lamp',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,947,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19664,'C_Campus_Festival','Costume Campus Festival',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,721,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19665,'C_Poring_Cake_Hat','Costume Poring Cake Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,417,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19666,'C_Cookie_Hat','Costume Cookie Hat',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,217,'bonus2 bAddItemHealRate,513,1100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19667,'C_Dragon_Helm','Costume Dragon Helm',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,464,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19668,'C_Wind_Milestone','Costume Wind Milestone',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,463,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19669,'C_Reginleif_Hairband_','Costume Reginleif Hairband',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,214,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19670,'C_Southern_Cross','Costume Southern Cross',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,601,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19671,'C_Piggie_Bank','Costume Piggie Bank',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,603,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19672,'C_Poring_Letter','Costume Poring Letter',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'0',0,604,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19676,'C_Rainbow_Poring_Hat','Costume Rainbow Poring Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,900,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19677,'C_Soulless_Wing','Costume Soulless Wing',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',NULL,301,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19678,'C_Bell_Ribbon','Costume Bell Ribbon',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,388,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19682,'C_Santa_Poring_Hat','Costume SantaPoring Cap',4,10,NULL,100,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,387,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19684,'C_Happy_Wig','Costume Happy Wig',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'0',0,305,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19685,'C_ShineSantaPoring','Costume Shining Santa Poring',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,961,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19686,'C_SantaHairband','Costume Santa Hairband',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,964,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19687,'C_Lush_Rose','Costume Lush Rose',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,963,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19689,'C_Ati_Atihan_Hat','Costume Ati Atihan',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,7168,NULL,'1',0,303,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19690,'C_Dark_Snake_Lord_Hat_J','Costume Dark Snake Lord Hat',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,372,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19695,'C_Kettle_Hat','Costume Kettle Hat',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,318,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19694,'C_Vane_Hairpin','Costume Vane Hairpin',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'0',0,313,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19696,'C_Friend_Mochiring_Hat','Costume Friend Mochiring Hat',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,965,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19697,'C_Rudolph_Santa_Hat','Costume Rudolph Santa Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,NULL,0,619,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19701,'C_Red_Bonnet','Costume Red Bonnet',4,10,NULL,100,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,190,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19702,'C_Santa_Hat_1','Costume Twin Pompom By JB',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,390,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19706,'C_Red_Dress_Hat','Costume Red Dress Hat',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,670,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19707,'C_Polar_Bear_Cap','Costume Polar Bear Cap',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'0',0,966,'bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19708,'C_White_Snake_Hat','Costume White Snake Hat',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,256,NULL,'1',0,413,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19709,'C_Yellow_Ribbon','Costume Yellow Ribbon',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,310,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19710,'C_Wings_Of_Victory','Costume Wings Of Victory',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,3072,NULL,'1',0,365,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19712,'C_Little_Angel_Doll','Costume Little Angel Doll',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,344,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19713,'C_Lucky_Clover','Costume Lucky Clover',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,571,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19714,'C_Lady_Tanee_Doll','Costume Lady Tanee Doll',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,520,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19715,'C_Scarf','Costume Scarf',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,343,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19716,'C_Alice_Doll','Costume Alice Doll',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,208,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19717,'C_Pink_Ribbon','Costume Pink Ribbon',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,245,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19718,'C_Gothic_Head_Dress','Costume Gothic Headdress',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,978,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19719,'C_Coronet','Costume Coronet',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,33,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19720,'C_Romantic_Gent','Costume Romantic Gent',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,31,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19721,'C_Darkness_Helm','Costume Darkness Helm',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,586,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19722,'C_Black_Glasses','Costume Black Glasses',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,404,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19723,'C_Sacred_Torch_Coronet','Costume Sacred Torch Coronet',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,431,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19724,'C_Deprotai_Doll_Hat','Costume Deprote Doll Hat',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,354,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19725,'C_Bread_Bag','Costume Bread Bag',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,7168,NULL,'1',0,412,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19726,'C_Scarlet_Rose','Costume Scarlet Rose',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,534,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19727,'C_Devilring_Hat','Costume Devilring Hat',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,298,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19728,'C_Tare_Zonda','Costume Tare Zonda',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,985,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19729,'C_Neko_Mimi_Kafra','Costume Neko Mimi Kafra',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,392,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19730,'C_Snake_Hat','Costume Snake Hat',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'0',0,986,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19731,'C_Satanic_Chain','Costume Evolved Evil Wing',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,39,'bonus bStr,1; bonus bAgi,1; bonus bFlee,3; bonus2 bSubRace,RC_Angel,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19732,'C_Goblin_Mask_04','Costume Goblin Leader Mask',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,6144,NULL,'1',0,174,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19733,'C_Panda_Cap','Costume Panda Cap',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,115,'bonus bAllStats,1; bonus2 bExpAddClass,Class_All,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19734,'C_Binoculars','Costume Binoculars',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,83,'bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19735,'C_Fin_Helm','Costume Fin Helm',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,100,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19736,'C_Gas_Mask','Costume Gas Mask',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,6144,NULL,'1',0,91,'bonus2 bResEff,Eff_Poison,3000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19737,'C_Corsair_K','Costume Refined Corsair',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,105,'bonus bVit,3; bonus bInt,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19738,'C_Detective_Hat_K','Costume Renown Detective\'s Cap',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,189,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19739,'C_Sleeping_Kitty_Cat','Costume Sleeping Kitty Hat',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,838,'bonus2 bAddRace,RC_Brute,2; bonus2 bAddRace,RC_Player_Doram,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19741,'C_Majestic_Devil_Horns','Costume Majestic Devil Horns',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,562,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19742,'C_Small_Golden_Wings','Costume Small Golden Wings',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,NULL,NULL,724,'bonus2 bExpAddRace,RC_All,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19743,'C_Anubis_Helm','Costume Anubis Helm',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,7168,NULL,'1',0,485,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19744,'C_Black_Tail_Ribbon','Costume Black Tail Ribbon',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,642,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19745,'C_Holy_Marching_Hat_J','Costume Holy Marching Hat',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,587,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19746,'C_Cap_Of_Blindness','Costume Executioner Hood',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,7168,NULL,'1',0,326,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19747,'C_Tha_Despero_Mask_','Costume Tha Despero Mask',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,6144,NULL,'1',0,693,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19748,'C_Diadem','Costume Diadem',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,3072,NULL,'1',0,335,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19749,'C_Gold_Spirit_Chain','Costume Gold Spirit Chain',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,260,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19750,'C_Saint_Frill_Ribbon','Costume Saint Frill Ribbon',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,987,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19751,'C_Light_Darkness_Crown','Costume Light Darkness Crown',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,988,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19752,'C_Shelter_Wing_Ears','Costume Shelter Wing Ears',4,10,NULL,300,NULL,3,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,990,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19753,'C_Celestial_Hat','Costume Celestial Hat',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,462,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19754,'C_Good_Wedding_Veil','Costume Good Wedding Veil',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,3072,NULL,'1',0,489,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19755,'C_YinYang_Earring','Costume YinYang Earring',4,10,NULL,300,NULL,3,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,744,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19756,'C_Holy_Mom_Love','Costume Holy Mom Love',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,3072,NULL,'1',0,610,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19757,'C_Water_Lily_Crown','Costume Water Lily Crown',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,312,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19758,'C_Frog_King_Hat','Costume Frog King Hat',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,522,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19759,'C_Umbrella_Hat','Costume Umbrella Hat',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,338,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19760,'C_Rainbow_Veil','Costume Rainbow Veil',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,3072,NULL,'1',0,992,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19761,'C_White_Lily','Costume White Lily',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,993,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19762,'C_Happy_Peace_Proof','Costume Happy Peace Proof',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,994,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19763,'C_Leaf_Cat_Hat','Costume Leaf Cat Hat',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,539,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19764,'C_Monster_Card','Costume Monster Card',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,NULL,NULL,526,'bonus2 bExpAddRace,RC_All,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19765,'C_Wing_Angels_Ears','Costume Wing Angels Ears',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,158,'bonus2 bExpAddRace,RC_All,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19767,'C_Home_Cherry_Blossom','Costume Home Cherry Blossom',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,602,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19768,'C_Sakura_Coronet','Costume Sakura Coronet',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,645,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19769,'C_Elf_Ears','Costume Elf Ears',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,405,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19770,'C_Sake','Costume Sake',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,NULL,NULL,557,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19771,'C_Butterfly_Hairpin','Costume Buterfly Hairpin',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,723,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19772,'C_Honeybee_Hat','Costume Honeybee Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,709,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19773,'C_Angeling_Pin','Costume Angeling Pin',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,222,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19774,'C_Laurel','Costume Laurel',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,261,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19775,'C_Marvelous_Wig','Costume Dokebi Hat',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,63,2,3072,NULL,'1',0,307,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19776,'C_Tomboy_Fairy','Costume Tomboy Fairy',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,998,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19777,'C_Twinkle_Little_Star','Costume Shiny Small Star',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1005,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19778,'C_King_Berry','Costume King Berry',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,968,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19779,'C_Persika','Costume Persika',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,659,'bonus bAllStats,1; bonus2 bExpAddClass,Class_All,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19780,'C_Rabbit_Ear_Knit_Hat','Costume Knit Rabbit Ears',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,867,'bonus bMaxHPrate,3; bonus bMaxSPrate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19781,'C_Ear_Of_Angel\'s_Wing_','Costume Angel Wing Ears',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,158,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19782,'C_Drooping_Kitty','Costume Refined Drooping Cat',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,142,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19783,'C_Granpa_Beard','Costume Grampa Beard',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,25,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19784,'C_Morrigane\'s_Helm','Costume Morrigane\'s Helm',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,257,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19785,'C_Well_Baked_Toast','Costume Crunch Toast',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,188,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19786,'C_Mistress_Crown','Costume Crown of Mistress',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,165,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19787,'C_Devoted_Eyes','Costume Devoted Eyes',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1021,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19788,'C_Heart_Eyebandage','Costume Heart Eyebandage',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,779,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19789,'C_Sweet_Gents','Costume Sweet Gent',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,29,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19790,'C_Wedding_Veil','Costume Wedding Veil',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,44,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19791,'C_Alarm_Mask','Costume Alarm Mask',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,6144,NULL,'1',0,170,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19792,'C_Goblin_Mask_01','Costume Poker Face',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,6144,NULL,'1',0,171,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19793,'C_Goblin_Mask_02','Costume Surprised Mask',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,6144,NULL,'1',0,172,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19794,'C_Goblin_Mask_03','Costume Annoyed Mask',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,6144,NULL,'1',0,173,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19795,'C_Lord_Circlet','Costume Grand Circlet',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,93,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19796,'C_Bone_Helm','Costume Bone Helm',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,103,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19797,'C_Apple_Of_Archer','Costume Apple of Archer',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,72,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19798,'C_Angry_Mouth','Costume Angry Snarl',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,194,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19799,'C_Golden_Gear','Costume Golden Gear',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,30,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19800,'C_Carnation_Hairband','Costume Carnation Headband',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,878,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19801,'C_Foxhat','Costume Foxhat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,6144,NULL,'1',0,403,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19802,'C_Lazy_Ninetail','Costume Lazy Ninetail',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,296,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19803,'C_Windtoy_Hat','Costume Windtoy Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,456,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19804,'C_Red_Vane_Hairpin','Costume Red Vane Hairpin',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1044,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19805,'C_Taboo_Curse_Scroll','Costume Curse Scroll',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1045,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19806,'C_Full_Bloom_Hairpin','Costume Bloom Hairpin',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1046,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19807,'C_Majestihelm','Costume Majestihelm',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1047,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19808,'C_Blazing_Sun','Costume Blazing Sun',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,654,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19810,'C_Ifrit_Ear','Costume Ifrit Ear',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,422,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19811,'C_Beer_Hat','Costume Beer Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,418,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19812,'C_Big_Hibiscus','Costume Big Hibiscus',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,333,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19813,'C_Icecream_Hat','Costume Icecream Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,488,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19814,'C_Bright_Wig','Costume Bright Wig',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,306,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19815,'C_Lolita_Ten_Gallon_Hat','Costume Lolita Ten Gallon Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1048,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19816,'C_Pecopeco_Cap','Costume Pecopeco Cap',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1049,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19817,'C_Ifrits_Breath','Costume Ifrits Breath',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1050,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19818,'C_Drooping_Morooc_Minion','Costume Drooping Morooc Minion',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,600,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19819,'C_Gang_Doogun','Costume Gang Doogun',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,3072,NULL,'1',0,491,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19821,'C_Hyegun_Hat','Costume Yao Jun',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,7168,NULL,'1',0,375,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19822,'C_Yellow_Doogun','Costume Yellow Doogun',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,309,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19823,'C_White_Cat_Hood','Costume White Cat Hood',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,63,2,3072,NULL,'1',0,1052,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19824,'C_Evil_Druid_Hat','Costume Evil Druid Hat',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',NULL,1053,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19825,'C_Vicious_Stop_Bandage','Costume Vicious Stop Bandage',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',NULL,1054,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19826,'C_Ice_Wing_Ear','Costume Ice Wing Ear',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,584,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19827,'C_Amistr_Cap','Costume Amistr',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,643,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19828,'C_Fedora','Costume Bucket Hat',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,195,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19829,'C_Straw_Hat','Costume Straw Hat',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'0',0,146,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19830,'C_Sunglasses','Costume Sunglasses',4,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,2048,NULL,'1',NULL,12,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19831,'C_Filir_Hat','Costume Filir Hat',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,408,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19832,'C_Poring_Hat','Costume Poring Hat',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,120,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19833,'C_Fillet','Costume Fillet',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,34,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19834,'C_Baseball_Cap','Costume Baseball Cap',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,216,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19835,'C_Lif_Doll_Hat','Costume Lif Doll Hat',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,297,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19836,'C_L_Magestic_Goat','Costume Majestic Goat',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,380,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19837,'C_Asara_Fairy','Costume Asara Fairy Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,3072,NULL,'1',0,492,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19839,'C_Vanilmirth_Hat','Costume Vanilmirth Hat',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,317,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19841,'C_Dragonhelm_Copper','Costume Dragon Helm Copper',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,454,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19842,'C_Puppy_Hat','Costume Puppy Hat',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,234,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19843,'C_Cat_Hairband','Costume Kitty Band',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,2,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19844,'C_Turban','Costume Turban',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,7,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19845,'C_Hair_Protector','Costume Bao Bao',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,127,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19846,'C_Opera_Ghost_Mask','Costume Opera Masque',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,128,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19847,'C_Big_Sis_Ribbon','Costume Big Ribbon',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,28,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19848,'C_Angeling_Hat','Costume Angeling Hat',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,204,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19849,'C_Munak_Turban','Costume Munak Hat',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,63,2,7168,NULL,'1',0,51,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19850,'C_Bongun_Hat','Costume Bongun Hat',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,63,2,7168,NULL,'1',0,139,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19851,'C_Brown_Bear_Cap','Costume Teddybear Hat',4,20,NULL,10,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,143,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19852,'C_Galapago_Cap','Costume Galapago Cap',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,192,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19853,'C_Filir_Wing_Ears','Costume Filir Wings',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,595,'bonus2 bExpAddClass,Class_All,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19854,'C_Ear_Of_Black_Cat_','Costume Black Cat Ears',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,141,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19856,'C_Iceflake_Hat','Costume Snow Cone Hat',4,10,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1080,'bonus2 bAddEle,Ele_Fire,5; bonus2 bMagicAddEle,Ele_Fire,5; bonus2 bAddMonsterDropItem,11589,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19857,'C_King_Prawn_Hat','Costume Crayfish Hat',4,10,NULL,10,NULL,0,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,728,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19858,'C_Leaf_Headgear','Costume Smokie Leaf',4,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,148,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19859,'C_Flying_Angel','Costume Flying Angel',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'0',0,264,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19860,'C_Cryptura_Hair_Cap','Costume School Criatura Hat',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'0',0,872,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19861,'C_Heart_Hair_Pin','Costume Heart Hairpin',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'0',0,126,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19862,'C_Horn_Of_Succubus','Costume Succubus Horn',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'0',0,150,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19863,'C_Inccubus_Horn','Costume Incubus Horn',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'0',0,156,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19864,'C_Dokebi\'s_Wig','Costume Dokebi\'s Wig',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,3072,NULL,'0',0,302,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19865,'C_Joker_Jester','Costume Joker Jester',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'0',0,89,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19866,'C_Blue_Pajamas_Hat','Costume Blue Pajamas',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'0',0,501,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19871,'C_Music_Decoration','Costume Decoration of Music',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'0',0,1074,NULL,'sc_start SC_DECORATION_OF_MUSIC,INFINITE_TICK,0;','sc_end SC_DECORATION_OF_MUSIC;'); -REPLACE INTO `item_db_re` VALUES (19874,'C_Carnival_Circlet','Costume Carnival Circlet',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'0',0,506,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19876,'C_Rabbit_Ear_Hat','Costume Bunny Top Hat',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',NULL,384,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19878,'C_Drooping_Bunny','Costume Evolved Drooping Bunny',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',NULL,249,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19882,'C_Flowerpot_Mask','Costume Flowerpot Mask',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,6144,NULL,'1',NULL,1086,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19883,'C_Piamette_Hood','Costume Piamette Hood',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',NULL,1087,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19884,'C_Vanargandr_Helm','Costume Vanargand Helm',4,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',NULL,804,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19885,'C_Blinker','Costume Blinker',4,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,2048,NULL,'1',NULL,82,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19886,'C_Luxury_Sunglasses','Costume Purple Glasses',4,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,2048,NULL,'1',NULL,26,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19887,'C_One_Eyed_Glass','Costume Cyclops Glasses',4,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,2048,NULL,'1',NULL,23,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19888,'C_Glasses','Costume Glasses',4,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,2048,NULL,'1',NULL,3,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19889,'C_Pair_Of_Red_Ribbon','Costume Small Ribbons',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,NULL,NULL,169,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19902,'C_Cigar','Costume Cigarette',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,NULL,NULL,54,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19903,'C_Witchs_Hat','Costume Witch\'s Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,717,'bonus bVariableCastrate,-10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19910,'C_Halloween_Hat','Costume Halloween Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,NULL,1,1098,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19912,'C_Cat_Eye','Costume: Cat eye',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1100,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19913,'C_Poo_Poo_Hat','Costume Poo Poo Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,NULL,1,76,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19914,'Felock_Cap','Felrock\'s Hat',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1101,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19916,'C_Black_Cat_Hat','Costume Black Cat Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1105,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19917,'C_Gloomy_Pumpkin_Hat','Costume Pumpkin Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,691,'bonus bSpeedRate,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19918,'C_Lude_Mask','Costume Lude Mask',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,6144,NULL,'1',0,802,'bonus bAddItemHealRate,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19919,'C_Cube_Mask_','Costume Quve Mask',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,6144,NULL,'1',0,472,'bonus bAspdRate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19920,'C_Adv_Whisper_Mask','Costume Evolved Whisper Mask',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,7168,NULL,'1',0,458,'bonus bFlee,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19922,'C_Noah_Hat','Costume Noah\'s Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,7168,NULL,'1',0,636,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19925,'C_One_Eyed_Glasses','Costume Monocle',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,807,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19928,'C_Gothic_Heart_Wing','Costume Gothic Heart Wing',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,3072,NULL,'1',0,1111,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19929,'C_Classical_Ribbon','Costume Classical Ribbon',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,NULL,0,1112,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19930,'C_Angel_Mini_Silk_Hat','Costume Angel Mini Silk Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1113,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19931,'C_Lazy_Raccoon','Costume Lazy Smokie',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,NULL,0,168,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19932,'C_Cap_Of_Concentration','Costume Model Training Hat',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,NULL,0,157,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19934,'C_10Gallon_Hat_Of_Flame','Costume Alive Ten Gallon Hat Of Flame',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1075,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19935,'C_Hunting_Cap_Of_Gust','Costume Hunting Cap Of Gust',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,1076,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19936,'C_Knit_Cap_Of_Water','Costume Knit Cap Of Water',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,1077,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19937,'C_Silk_Hat_Of_Earth','Costume Silk Hat of Earth',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,1078,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19938,'C_Love_Rabbit_Hood','Costume Love Rabbit Hood',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,7168,NULL,'1',0,549,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19939,'C_Antler','Costume Antlers',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,71,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19941,'C_Ear_Mufs','Costume Ear Muffs',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,70,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19949,'C_RWC2013_Japan_Hat','Costume RWC2013 Japan Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1136,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19952,'C_Bubble_Gum_in_Mouth','Costume Bubble Gum in Mouth',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,572,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19953,'C_Parade_Cap','Costume Parade Cap',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,465,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19954,'C_3D_Glasses','Costume 3D Glasses',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,661,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19955,'C_Mini_Tree_J','Costume Mini Tree J',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,NULL,0,727,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19956,'C_Soldier_Hat','Costume Soldier Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,420,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19957,'C_Scooter_Hat','Costume Scooter Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,588,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19958,'C_Choir_Hat','Costume Choir Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1137,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19959,'C_Drooping_Argiope','Costume Drooping Argiope',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1138,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19960,'C_Chain_Puppet','Costume Chain Puppet',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1139,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19961,'C_Rune_Circlet','Costume Rune Circlet',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,623,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19962,'C_Mitra','Costume Mitra',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,624,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19963,'C_Driver_Band_R','Costume Driver Band(Red)',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,626,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19964,'C_Driver_Band_Y','Costume Driver Band(Yellow)',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,637,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19965,'C_Shadow_Handicraft','Costume Shadow Handicraft',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,627,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19966,'C_Minstrel_Song_Hat','Costume Minstrel Song\'s Hat',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,628,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19967,'C_Midas_Whisper','Costume Midas Whisper',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,629,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19968,'C_Magic_Stone_Hat','Costume Magic Stone Hat',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,630,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19969,'C_Blazing_Soul','Costume Blazing Soul',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,631,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19970,'C_Wind_Whisper','Costume Wind Whisper',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,633,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19971,'C_Dying_Swan','Costume Dying Swan',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,635,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19972,'C_Protect_Of_Crown','Costume Protect Of Crown',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1140,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19973,'C_Circlet_Of_Bone','Costume Circlet Of Bones',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1141,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19974,'C_Camouflage_RabbitHood','Costume Camouflage Rabbit Hood',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1142,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19976,'C_Cat_Santa_Hat','Cat Santa Hat',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1144,'bonus bAspdRate,10; bonus bSpeedRate,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19977,'C_Golden_Exclamation','Costume Golden Exclamation Mark',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1145,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19978,'C_Silver_Exclamation','Costume Silver Exclamation Mark',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1146,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19979,'C_Golden_Question','Costume Golden Question Mark',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1147,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19980,'C_Silver_Question','Costume Silver Question Mark',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1148,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19982,'C_Santa\'s_Hat','Costume Santa Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,NULL,0,20,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19983,'C_Flower_Hairpin','Costume Flower Hairpin',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,145,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19984,'C_Winter_Hat','Costume Fashion Winter Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,196,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19985,'C_Aura_Quartz_Crown','Costume Aura Quartz',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,866,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19986,'C_Lunatic_Hat','Costume Lunatic Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,521,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19987,'C_Blue_Fur_Hat','Costume Blue Fur Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,280,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19988,'C_Elder_Crown','Costume Elder Crown',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,933,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19989,'C_Mouton_Life','Costume Mouton Life',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1156,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19990,'C_Snow_Rabbit_Knit_Hat','Costume Rabbit Knit Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1157,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19991,'C_Galanthus_Guard','Costume Galanthus Guard',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1158,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19992,'C_Chilly_Breath','Costume Chilly Breath',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,885,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19994,'C_saLUsalo_Hat','Costume saLUsalo Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1171,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19997,'C_Bomb_Hat','Costume Bomb Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1191,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19998,'C_Dragon_Turtle_Hat','Costume Dragon Turtle Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1192,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19996,'Horse_King','Horse King',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,7168,NULL,'1',NULL,1189,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (19999,'C_Mouse_Hat1','Costume Mouse Hat 1',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1193,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20000,'C_Mouse_Hat2','Costume Mouse Hat 2',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1194,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20001,'C_Mouse_Hat3','Costume Mouse Hat 3',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1195,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20002,'C_Mouse_Hat4','Costume Mouse Hat 4',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1196,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20003,'C_Mouse_Hat5','Costume Mouse Hat 5',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1197,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20004,'C_Big_Golden_Bell','Costume Big Golden Bell',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,175,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20005,'C_Pegasus_Wing_Ears','Costume Sigrun Wing',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,568,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20006,'C_Dark_Knight_Mask','Costume Dark Knight Mask',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,3072,NULL,'1',0,479,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20007,'C_Bullock_Helm_J','Costume Horned Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,322,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20008,'C_General_Helmet','Costume Dragon General Helm',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,729,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20009,'C_Dragon_Skull','Costume Dragon Skull Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,319,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20010,'C_Rainbow_Wing_Ears','Costume Rainbow Ears Feather',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1198,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20011,'C_Lightning_Speed','Costume Lightning Speed',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1199,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20012,'C_Double_Horn_Helm','Costume Double Horn Helm',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1200,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20013,'C_Chef_Hat','Costume Chef Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,111,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20014,'Lincoln_Hat','Costume Lincoln Hat',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,NULL,0,1204,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20015,'Lincoln_Beard','Costume Lincoln Beard',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,NULL,0,1205,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20016,'Lobster_Hat','Costume Cool Dinner Hat',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,NULL,0,1206,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20017,'C_Marionette_Doll','Costume Marionette Doll',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,NULL,0,212,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20018,'C_Holo_Ear','Costume Holo Ear',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,NULL,0,1208,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20019,'Beret_Of_Artist','Costume Beret Of Artist',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,NULL,0,1209,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20020,'C_Zaha_Doll_Hat','Costume Zaha Doll Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,461,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20021,'C_Heart_Ribbon_Hairband','Costume Heart Ribbon Hairband',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,708,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20022,'C_Love_Piece','Costume Love Fragment',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,734,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20023,'C_Red_Beret','Costume Red Beret',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,559,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20024,'C_Orange_Ribbon','Costume Orange Ribbon',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,247,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20025,'C_Cow_Hat1','Costume Cow Hat 1',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1211,'bonus bDex,2; bonus2 bAddMonsterDropItem,519,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20026,'C_Cow_Hat2','Costume Cow Hat 2',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1212,'bonus bDex,2; bonus2 bAddMonsterDropItem,519,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20027,'C_Cow_Hat3','Costume Cow Hat 3',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1213,'bonus bDex,2; bonus2 bAddMonsterDropItem,519,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20028,'C_Cow_Hat4','Costume Cow Hat 4',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1214,'bonus bDex,2; bonus2 bAddMonsterDropItem,519,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20029,'C_Donut_in_Mouth','Costume Donut in Mouth',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,569,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20030,'C_Choco_Donut_in_Mouth','Costume Choco Donut in Mouth',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,653,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20031,'C_Bunny_Head_Dress','Costume Bunny Headress',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1215,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20032,'C_Firinto_Scarf','Costume Firinto Scarf',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1216,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20033,'C_Buddhist_Priest_Crown','Costume Monk Crown',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1217,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20034,'C_Jack_Castle_Bat','Costume Jack Castle Bat',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1041,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20035,'C_Miracle_Blue_Rose','Costume Miracle Blue Rose',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1064,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20036,'C_Sword_Master_Crown','Costume Sword Master Crown',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,981,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20037,'C_Owlduke_Silk_Hat','Costume Owlduke Silk Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,982,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20038,'C_Alphonse_Helmet','Costume Alphonse Helmet',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,NULL,0,1214,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20039,'C_Butterfly_Wing_Ear_J','Costume Butterfly Wing Ears',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,695,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20040,'C_Rose_Crown','Costume Chung Hairpin',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,583,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20041,'C_Earth_Goddess_Flower','Costume Rose Headband',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,864,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20042,'C_Hermose_Cap','Costume Hermos Cap',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,478,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20043,'C_Red_Cherry_Blossom','Costume Cherryblossom in Mouth',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,823,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20044,'C_Carmen_Miranda_Hat','Costume Carmen Miranda\'s Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,329,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20045,'C_Samambaia','Costume Samambaia',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,508,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20046,'C_Decoration_bluerose','Costume Blue Ribbon Band',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1222,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20047,'C_Pray_Cherry_Blossom','Costume Prayer Cherry Blossom',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1223,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20048,'C_Wind_Of_The_Prairie','Costume Wind Prairie',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1224,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20049,'C_Plaster','Costume Giant Band Aid',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',NULL,147,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20050,'C_Ph.D_Hat','Costume Ph.D Hat',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',NULL,98,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20051,'C_Stop_Post','Costume Stop Post',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,59,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20052,'C_AFK_Hat','Costume AFK Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,471,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20053,'C_W_King_Tiger_Doll_Hat','Costume White King Tiger Doll Hat',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,973,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20054,'C_Baby_Pacifier','Costume Baby Pacifier',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',NULL,191,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20055,'C_Ghost_Bandana','Costume Ghost Bandana',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,61,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20056,'C_Bride_Corolla','Costume Bride\'s Corolla',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,437,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20057,'C_Feather_Bonnet','Costume Feather Bonnet',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',NULL,104,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20058,'C_Hot_Blood_Headband','Costume Hot Blood Headband',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,154,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20059,'C_Welding_Mask','Costume Welding Mask',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,6144,NULL,'1',0,79,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20060,'C_Construction_Helmet','Costume Construction Helmet',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,95,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20061,'C_Demo_Mask','Costume Demo Mask',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,52,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20062,'C_Angel_Stair','Costume Angel Stair',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,NULL,NULL,'sc_start SC_HAT_EFFECT,INFINITE_TICK,0;','sc_end SC_HAT_EFFECT;'); -REPLACE INTO `item_db_re` VALUES (20063,'C_Yellow_Brain_Hat','Costume Yellow Brain Hat',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1228,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20064,'C_Blue_Brain_Hat','Costume Blue Brain Hat',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1229,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20065,'C_Hairband_Of_Grandpeco','Costume Grand Peco Hairband',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,473,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20066,'C_Pecopeco_Hairband','Costume Pecopeco Hairband',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,314,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20067,'C_White_Rabbit_Headband','Costume White Rabbit Headband',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',NULL,719,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20068,'C_Black_Rabbit_Headband','Costume Black Rabbit Headband',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',NULL,718,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20069,'C_Gryphon_Hairband','Costume Gryphon Hairband',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1233,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20070,'C_Alpaca_Hood','Costume Alpaca Hood',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1234,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20071,'C_Worg_In_Mouth','Costume Worg In Mouth',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1235,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20073,'C_Hair_Band','Costume Hair Band',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',NULL,9,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20074,'C_Biretta','Costume Biretta',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',NULL,11,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20075,'C_Little_Fhat','Costume Little Feather Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,715,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20076,'C_Idun_Wing_Ears','Costume Idun Feather Ears',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,724,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20077,'C_Wing_Form_Spectacle','Costume Wing Frame Sunglasses',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,925,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20078,'C_White_Feather','Costume White Feather',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,741,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20079,'C_Love_Daddy_2013','Costume Forgotten Angel Wing',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1104,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20080,'C_Shaman\'s_Hair_Orna','Costume Shaman Hair Ornament',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,476,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20081,'C_Metal_Dragon_Helm','Costume Metal Dragon Helm',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1242,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20082,'C_Metal_Dragon_Hat','Costume Metal Dragon Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1243,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20083,'C_Mythlit_Hat','Costume Mythlit Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1244,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20084,'C_Clover_Coronet','Costume Ceremonial Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,325,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20085,'C_Clover_Silkhat','Costume St Patrick\'s Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,735,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20086,'C_Dragon_Cintamani_Hat1','Costume Dragon Cintamani Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1245,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20087,'C_Dragon_Cintamani_Hat2','Costume Dragon Cintamani Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1246,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20088,'C_Dragon_Cintamani_Hat3','Costume Dragon Cintamani Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1247,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20089,'C_Dragon_Cintamani_Hat4','Costume Dragon Cintamani Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1248,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20090,'C_Egg_Shell','Costume Egg Shell',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,101,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20091,'C_Smoking_Pipe','Costume Pipe',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,55,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20092,'C_Sales_Signboard','Costume Sales Banner',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,183,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20093,'C_Star_Sparkling','Costume Wizard Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,36,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20094,'C_Fillet_Green','Costume Green Ribbon',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,439,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20095,'C_Fillet_Red','Costume Red Ribbon',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,440,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20096,'C_Fillet_Blue','Costume Blue Ribbon',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,441,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20097,'C_Fillet_White','Costume White Ribbon',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,442,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20098,'C_Vampire_Hairband','Costume Vampire Hairband',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1238,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20099,'C_Ljosalfar','Flying Ljosalfar',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1239,NULL,'sc_start SC_LJOSALFAR,INFINITE_TICK,0;','sc_end SC_LJOSALFAR;'); -REPLACE INTO `item_db_re` VALUES (20100,'C_Volume_Fhat','Costume Volume Fhat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1240,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20101,'C_Bragi_Wing_Ears','Costume Bragi Wing Ears',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1241,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20102,'C_Horse_King_J','Costume Horse King J',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,7168,NULL,'1',0,1189,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20103,'C_Drooping_Panda','Costume Drooping Panda',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1029,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20104,'C_Picky_Egg_Shell','Costume Picky Egg Shell',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1001,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20105,'C_Fish_Head_Hat','Costume Fish Head',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,386,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20106,'C_Classic_Hat','Costume Classic Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,475,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20107,'C_Fish_In_Mouth','Costume Fish In Mouth',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,406,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20108,'C_Blind_Glasses','Costume Blind Glasses',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,813,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20109,'C_Jolly_Roger','Costume Jolly Roger Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,962,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20110,'C_Coiledup_Snake','Costume Coiledup Snake',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1258,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20111,'C_Coiledup_Snake_Hat2','Costume Coiledup Snake Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1259,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20112,'C_Aqua_Ten_Gallon_Hat','Costume Aqua Ten Gallon Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1256,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20113,'C_Star_Reading_Hat','Costume Star Reading Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1253,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20114,'C_Funeral_Costume','Costume Funeral Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,77,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20115,'C_Under_Rim_Glasses','Under Rim Glasses',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1255,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20116,'C_Mermaid_Headphone','Mermaid Headphone',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1254,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20117,'C_Raspberry_Mousse_Hat','Raspberry Mousse Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1257,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20118,'C_Hat_Of_Cake','Costume Cake Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,109,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20119,'C_Fur_Hat','Costume Beanie',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,160,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20120,'C_Antenna','Costume Aerial',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,97,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20121,'C_Lotus_Flower_Hat','Costume Flower Lily',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,324,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20122,'Happy_Summer_Ribbon','Costume Happy Summer Ribbon',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1260,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20123,'C_Eagle_Eyes','Costume Eagle Eyes',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,63,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20124,'C_Masquerade','Costume Masquerade',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,78,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20125,'C_Mini_Glasses','Costume Mini Glasses',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,47,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20126,'C_Odium_Thanatos_Mask','Costume Odium Thanatos Mask',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,6144,NULL,'1',0,667,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20127,'C_Abysmal_Knight_Helm','Costume Abysmal Knight Helm',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,371,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20128,'C_Remover_Hat','Costume Remover Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,655,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20129,'C_Poporing_Cap','Costume Poporing Cap',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,361,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20130,'C_Whisper_Tall_Hat','Costume Whisper Tall Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1265,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20131,'C_C_Tower_Manager_Incom','Costume Clock Tower Manager',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1266,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20132,'C_Subject_Aura','Costume Aura Vicious Mind',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1267,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20133,'C_Poring_Mascot_Costume','Costume Poring Mascot',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1268,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20134,'C_Helm_Of_Abyss_White','Costume White Helm Of Abyss',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1269,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20135,'C_12_Anniversary_Crown_Of_Saint','Costume 12 Anniversary Crown of Saint',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1117,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20136,'C_12_Anniversary_Elf_Ears','Costume 12 Anniversary Elf Ears',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,875,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20137,'C_Bomb_Wick','Costume Bomb Wick',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,66,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20138,'C_Sea_Otter_Hat','Costume Sea Otter Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,162,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20139,'C_Horse_Hairpin','Costume Horse Hairpin',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1271,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20140,'C_Horse_Hairpin_','Costume Horse Hairpin',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1272,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20141,'C_Observer','Costume Observer',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,337,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20142,'C_Machoman_Glasses','Costume Machoman Glasses',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,92,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20143,'C_Candy_Cane_In_Mouth','Costume Candy Cane In Mouth',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,665,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20144,'C_Ancient_Elven_Ear','Costume Ancient Elven Ear',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,665,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20145,'C_Robo_Eye','Costume Robo Eye',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,345,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20146,'C_Angel_Spirit','Costume Angel of Ghost',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,394,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20147,'C_Bell_Pigeon','Costume Bell of Piegon',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1034,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20148,'C_Musketeer_Hat','Costume Musketeer Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,466,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20149,'C_Hexagon_Spectacles','Costume Hexagon Glasses',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,822,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20150,'C_Wind_Fan','Costume Wind Fan',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1051,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20151,'C_Poison_Spore_Hat','Costume Poison Spore Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,899,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20152,'C_Straw_Rice_Bag','Costume Straw Rice Bag',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,7168,NULL,'1',0,1273,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20153,'C_Monochrome_Cap','Costume Monochrome Cap',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1274,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20154,'C_Maple_Which_Falls','Costume Maple Which Falls',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1275,NULL,'sc_start SC_MAPLE_FALLS,INFINITE_TICK,0;','sc_end SC_MAPLE_FALLS;'); -REPLACE INTO `item_db_re` VALUES (20155,'C_Ladys_Feather_Hat','Costume Lady\'s Feather Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,NULL,0,1276,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20156,'C_Fan_in_Mouth','Costume Fan in Mouth',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,857,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20157,'C_Fish_On_Head','Costume Evolved Blue Fish',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,149,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20158,'C_Circlet','Costume Circlet',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,18,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20159,'C_Blue_Hair_Band','Costume Blue Hairband',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,136,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20160,'C_Fried_Egg','Costume Magnolia Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,373,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20161,'C_Prontera_Army_Cap','Costume Army Cap',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,48,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20162,'C_Fleece_Hat','Costume Fleece Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,7168,NULL,'1',0,1277,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20163,'C_Fleece_Hat_','Costume Fleece Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,7168,NULL,'1',0,1278,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20164,'C_Duneyrr_Hat','Costume Duneyrr Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,639,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20165,'C_Tendrilion_Hat','Costume Tendrilion Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,658,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20166,'C_Hockey_Mask','Costume Hockey Mask',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,6144,NULL,'1',0,336,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20167,'C_Deviruchi_Headphone','Costume Deviruchi Headphone',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,805,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20168,'C_Skull_Hood','Costume Skull Hood',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,3072,NULL,'1',0,598,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20169,'C_Long_Tongue','Costume Long Tongue',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,773,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20170,'C_Brown_Deviruchi_Cap','Costume Brown Deviruchi Cap',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,273,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20171,'C_Sepia_Cap','Costume Sepia Cap',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1280,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20172,'C_Pumpkin_Head','Costume Pumpkin Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1281,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20173,'C_Lude_Hood','Costume Lude Hood',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1282,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20174,'C_Halloween_Hat_Orange','Costume Orange Halloween Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1283,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20175,'C_Diabolic_Headphone','Costume Diabolic Headphone',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1284,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20176,'Happy_Pierrot_Mask','Costume Happy Pierrot Mask',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,6144,NULL,'1',0,1288,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20177,'C_Drooping_Dorasuke','Costume Drooping Dorasuke',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1290,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20178,'C_Puppy_Love','Costume Puppy Love',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,94,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20179,'C_Monkey_On_Fur_Hat','Costume Monkey Coat Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,858,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20180,'C_Westren_Grace','Costume Western Grace',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,32,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20181,'C_Mistic_Rose','Costume Mystic Rose',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,198,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20182,'C_Mottled_Egg_Shell','Costume Rainbow Eggshell',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,124,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20183,'C_There_Is_Something','Costume There\'s..Something..',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,3072,NULL,'1',0,1091,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20184,'C_Party_Hat','Costume Party Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,144,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20185,'C_Fashionable_Glasses','Costume Fashionable Glasses',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,131,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20186,'C_Magni_Cap','Costume Magni\'s Cap',4,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,250,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20187,'C_Fricca\'s_Circlet','Costume Fricca\'s Circlet',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,251,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20188,'C_Morpheus\'s_Hood','Costume Morpheus\'s Hood',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,256,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20189,'C_Goibne\'s_Helm','Costume Goibne\'s Helm',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,258,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20190,'C_Chick_Hat_J','Costume Chick Hat J',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,432,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20191,'C_Black_Cat_Ears_Beret','Costume Black Cat Ears Beret',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1071,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20192,'C_Green_Foxtail','Costume Green Foxtail',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1058,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20193,'C_Foxtail','Costume Foxtail',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,711,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20194,'C_Lion_Mask','Costume Lion Mask',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,202,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20195,'C_Scratching_Cat','Costume Scratching Cat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,6144,NULL,'1',0,1292,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20196,'C_Leopard_Ear_Hat','Costume Leopard Ear Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1293,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20197,'C_Amistr_Beret','Costume Amistr Beret',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1294,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20198,'C_Misty_Ears','Costume Misty Ears',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1295,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20199,'C_Evil_Marcher_Hat','Costume Evil Marcher Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,687,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20200,'C_Rabbit_Head_Dress','Costume Rabbit Head Dress',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1095,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20201,'C_Banshee_Master_Kiss','Costume Banshee Master Kiss',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,959,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20202,'C_Deviruchi_Balloon','Costume Deviruchi Balloon',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1082,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20203,'C_Bandana','Costume Bandana',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,6,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20204,'C_Hunting_Cap','Costume Hunter Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,389,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20205,'C_Fancy_Flower','Costume Fancy Flower',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,4,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20206,'C_Chicken_Hat','Costume Chicken Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,7168,NULL,'1',0,1296,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20207,'C_Stripe_Band','Costume Striped Hairband',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,133,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20208,'C_Necktie','Costume Neck Tie',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,443,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20209,'C_Mermaid_Longing','Costume Mermaid Bubbles',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1299,NULL,'sc_start SC_MERMAID_LONGING,INFINITE_TICK,0;','sc_end SC_MERMAID_LONGING;'); -REPLACE INTO `item_db_re` VALUES (20210,'C_Chicken_Hat_','Costume Chicken Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,7168,NULL,'1',0,1297,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20211,'C_Chicken_Hat__','Costume Chicken Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,7168,NULL,'1',0,1298,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20212,'C_Loki_Nidhogg_Hat','Costume Loki & Nidhoggur\'s Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1304,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20213,'C_Sirt_Evil_Eye','Costume Robot Eyes',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,345,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20214,'C_Evil_Marcher_Hat_J','Costume Evil Marcher Hat J',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1002,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20215,'C_Black_Devil_Mask','Costume Black Devil Mask',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,760,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20216,'C_Rideword_Hat','Costume Rideword Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,890,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20217,'C_Arabian_Veil','Costume Arabian Veil',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1300,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20218,'C_Spell_Circuit','Costume Spell Circuit',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1301,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20219,'C_Angel_Marcher_Hat','Costume Angel Marcher Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1302,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20220,'C_Dark_Night_Veil','Costume Dark Night Veil',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,3072,NULL,'1',0,1303,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20221,'C_Eyes_Of_Ifrit','C Eyes Of Ifrit',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,886,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20222,'C_Santa_Hat_2','Costume Blue Pigtail Santa Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,NULL,0,395,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20223,'C_Centimental_Leaf','Costume Romantic Leaf',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,57,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20224,'C_Red_Tailed_Ribbon','Costume Red Tailed Ribbon',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,167,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20225,'C_Pumpkin_Hat','Costume Pumpkin-Head',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,206,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20226,'C_Hair_Brush','Costume Red Comb',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,445,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20227,'C_Husky_Hat','Costume Husky Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1016,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20228,'C_Pig_MoneyBox','Costume Pig MoneyBox',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,603,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20230,'C_Mask_Of_Bankrupt','Costume Bankruptcy Mask',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,6144,NULL,'1',0,936,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20231,'C_Snowman_Hat','Costume Snowman Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,616,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20232,'C_Celines_Ribbon','Costume Celine Ribbon',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,967,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20233,'C_Gold_Angel_Sculpture','Costume Golden Angel',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,646,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20234,'C_Baphomet_Hat','Costume Baphomet Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,7168,NULL,'1',0,1311,'bonus bMaxHPrate,15; bonus bMaxSPrate,15; bonus2 bAddRace,RC_All,15; bonus2 bMagicAddRace,RC_All,15; bonus2 bAddItemHealRate,519,2015;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20235,'C_Frozen_Land_Rose','Costume Frozen Rose',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1025,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20236,'C_Hellomother_Hat','Costume Arc Angeling Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,241,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20237,'C_Pink_Fur_Hat','Costume Pink Beanie',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,281,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20238,'C_Blue_Drooping_Kitty','Costume Drooping Blue Cat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,277,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20239,'C_Large_Ribbon_Muffler','Costume Large Ribbon Muffler',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1312,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20240,'C_Gift_Of_Snow','Costume Gift of Snow',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,NULL,'/*TODO: ViewID*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20241,'C_Eclipse_Hat','Costume Eclipse Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,922,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20242,'C_Snownow_Hat','Costume Snownow Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1313,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20243,'C_Choco_Mint_Bonnet','Costume Choco Mint Bonnet',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1314,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20244,'C_Zealotus_Mask','Costume Zealotus Mask',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,3072,NULL,'1',0,200,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20245,'C_Cat_Paw_Hairpin','Costume Cat Paw Hairpin',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,447,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20246,'C_Decoration_Time','Costume Decoration Time',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1309,NULL,'sc_start SC_TIME_ACCESSORY,INFINITE_TICK,0;','sc_end SC_TIME_ACCESSORY;'); -REPLACE INTO `item_db_re` VALUES (20247,'C_Fate_Of_Black_Hand','Costume Fate Of Black Hand',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1310,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20248,'C_Black_Strong_Hair','Costume Black Strong Hair',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1315,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20249,'C_Red_Strong_Hair','Costume Red Strong Hair',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1316,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20250,'C_White_Strong_Hair','Costume White Strong Hair',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1317,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20251,'C_Rose_Cascade','Costume Rose Cascade',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,920,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20252,'C_Accessory_of_Ascetic','Costume Mage Decoration',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1150,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20253,'C_Droopy_Alice_Doll','Costume Drooping Alicel',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,784,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20254,'C_Ribbon_Yellow','Costume Yellow Ribbonn',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,243,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20255,'C_Love_Cheek','Costume Love Cheeks',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1318,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20256,'C_Honey_Pancakes','Costume Honey Pancake',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1319,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20257,'C_Black_Rabbit_Bonnet','Costume Black Rabbit Bonnet',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1320,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20258,'C_Blue_Head_Dress','Costume Blue Headdress',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1321,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20259,'C_Pink_Clover','Costume Pink Clover',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1322,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20260,'C_Stardust','Costume Stardust',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,81,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20262,'C_Fox_Ears_Bell_Ribbon','Costume Fox Ears Drop Ribbon',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1070,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20263,'C_Hat_Of_Drowsy_Cat','Costume Sleeping Cat Hat J',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,838,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20264,'C_Blood_Sucker','Costume Blood Sucker',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,893,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20265,'C_Bird_Nest_Hat','Costume Bird Nest Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,235,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20266,'C_Secret_Zipper','Costume Secret Zipper',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1324,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20267,'C_Penguin_Cap','Costume Penguin Cap',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1325,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20268,'C_Sleep_Eclipse_Family','Costume Sleep Eclipse Family',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1326,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20269,'C_White_Fox_Ear_Ribbon','Costume White Fox Ear Ribbon',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1327,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20270,'C_Gryphon_Wing_Ears','Costume Gryphon Wing Ears',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1328,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20271,'C_Sunflower','Costume Sunflower',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,37,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20272,'C_Snowy_Horn','Costume Unicorn Horn',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,42,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20273,'C_Soft_Sheep_Hat','Costume Soft Sheep Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,738,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20274,'C_Polar_Bear_Cap_J','Costume Polar Bear Cap J',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,966,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20277,'C_Balloon_Hat','Costume Balloon Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,385,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20278,'C_Man_Medal','Costume Man\'s Medal',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,775,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20279,'C_Cheering_Whistle','Costume Cheering Whistle',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,952,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20280,'C_Well-Chewed_Pencil','Costume Well-Chewed Pencil',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,555,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20281,'C_Kindergarten_Hat','Costume Kindergarten Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,977,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20282,'C_White_Student_Cap','Costume White Student Cap',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,877,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20283,'C_Over_Protector','Costume Over Protector',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1329,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20284,'C_Cherry_Blossom_Hat','Costume Sakura Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1330,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20285,'C_Blossom_Fluttering','Costume Dancing Fallen Sakura',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1331,'hateffect HAT_EF_BLOSSOM_FLUTTERING,true;',NULL,'hateffect HAT_EF_BLOSSOM_FLUTTERING,false;'); -REPLACE INTO `item_db_re` VALUES (20286,'C_Under_Rim_Glasses_Red','Costume Under Rim Glasses Red',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1332,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20287,'C_Mans_Medal_Gold','Costume Man\'s Medal(Gold)',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1333,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20288,'C_Bijou_Hat','Costume Bijou Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1334,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20291,'C_Helm_of_Thoth','Costume Helm of Thoth',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,7168,NULL,'1',0,860,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20292,'C_Black_Ramen_Hat','Costume Black Ramen Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1338,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20293,'C_Sleeper_Hat','Costume Sleeper Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,590,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20294,'C_Savage_Babe_Hat','Costume Savage Babe Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,553,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20295,'C_Poring_Sunglasses','Costume Poring Sunglasses',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,954,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20296,'C_Yoyo_Hat','Costume Yoyo Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,391,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20297,'C_Cactus_Hat','Costume Cactus Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,615,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20298,'C_Happy_Lunatic_Ear','Costume Happy Lunatic Hanging Ear',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1340,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20299,'C_Face_Crusher','Costume Face Crusher',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,6144,NULL,'1',0,1341,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20300,'C_Hill_Wind_Mask','Costume Hill Wind Mask',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,7168,NULL,'1',0,1342,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20301,'C_Golden_Savage_Hat','Costume Golden Savage Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,648,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20302,'C_Beelzebub_Crown','Costume Beelzebub Crown',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1343,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20303,'C_Mandragora_Cap','Costume Mandragora Cap',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,402,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20304,'C_Raccoon_Hat','Costume Raccoon Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,118,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20305,'C_NettyHeart_BalloonGum','Costume Nettie Heart Bubble Gum',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'0',0,720,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20307,'C_Beginner_Cap','Costume Beginner Cap',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1348,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20311,'C_Magical_Booster','Costume Magical Booster',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,873,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20312,'C_Barons_Evil_Eye','Costume Baron\'s Evil Eye',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,989,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20313,'C_CD_in_Mouth','Costume CD in Mouth',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,815,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20314,'C_New_Wave_Sunglasses','Costume New Wave Sunglasses',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,856,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20315,'C_Analyze_Eye','Costume Analyze Eye',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1351,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20316,'C_Seraph_Wing_Helm','Costume Seraph Wing Helm',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1352,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20317,'C_Nekomimi_Cyber_Headphone','Costume Nekomimi Cyber Headphone',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1353,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20318,'C_Charleston_Antenna','Costume Charleston Antenna',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1354,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20319,'C_Crimson_Booster','Costume Crimson Booster',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1355,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20320,'C_Red_Bandana','Costume Red Bandana',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,62,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20321,'C_Pterios_Fins','Costume Pterios Fins',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1009,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20322,'C_Seal_Hat','Costume Seal Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,540,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20323,'C_Sparkling_Sound','Costume Sparkling Sound',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1074,NULL,'sc_start SC_DECORATION_OF_MUSIC,INFINITE_TICK,0;','sc_end SC_DECORATION_OF_MUSIC;'); -REPLACE INTO `item_db_re` VALUES (20324,'C_Pigeon_Hat','Costume Pigeon Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1362,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20325,'C_Little_Aquarium','Costume Little Aquarium',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1363,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20326,'C_Sailor_Collar','Costume Sailor Collar',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1364,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20327,'C_Marine_Cap','Costume Marine Cap',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1365,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20328,'C_Mackerel_Pike','Costume Mackerel Pike',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1081,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20329,'C_Tare_HSchool_Doll_Hat','Costume Very Cute Doll Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1084,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20330,'C_Sombrero','Costume Sombrero',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,151,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20331,'C_Desert_Prince','Costume Desert Prince',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,567,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20332,'C_Pure_White_Ribbon','Costume Pure White Ribbon',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1175,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20333,'C_Family_Hat','Costume Family Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,650,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20334,'C_Joystick_Hat','Costume Joystick Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1305,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20335,'C_Watery_Eyes','Costume Watery Eyes',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,828,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20338,'C_Colorful_Dancing_Octopus','Costume Colorful Dancing Octopus',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1007,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20339,'C_Flower_Summer_Hat','Costume Flower Summer Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1369,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20340,'C_Straight_Pony_Black','Costume Straight Pony Black',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1371,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20341,'C_Bouncing_Hair_Black','Costume Bouncing Hair Black',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1372,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20342,'C_Loose_Wave_Twin','Costume Loose Wave Twin',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1373,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20344,'C_Happy_Balloon_J','Costume: Happy Balloon',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1289,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20345,'C_Seagod_Protector','Costume Seagod Protector',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,960,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20346,'C_Drooping_Permeter','Costume Drooping Permeter',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,694,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20347,'C_Poring_Pirate_Hat','Costume Poring Pirate Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,726,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20348,'C_Sunday_Hat','Costume Sunday Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,117,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20349,'C_FlyingGalapago','Costume Flying Galapago',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1358,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20350,'C_Cowlick_YL','Costume Bouncing Hair Yellow',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1382,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20351,'C_Cowlick_GN','Costume Bouncing Hair Green',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1383,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20352,'C_Cowlick_PP','Costume Bouncing Hair Purple',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1384,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20353,'C_Cowlick_RD','Costume Bouncing Hair Red',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1385,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20354,'C_Cowlick_OM','Costume Bouncing Hair Crimson',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1386,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20355,'C_Cowlick_BU','Costume Bouncing Hair Blue',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1387,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20356,'C_Cowlick_WH','Costume Bouncing Hair White',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1388,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20357,'C_Straight_Pony_YL','Costume Straight Pony Yellow',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1389,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20358,'C_Straight_Pony_GN','Costume Straight Pony Green',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1390,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20359,'C_Straight_Pony_PP','Costume Straight Pony Purple',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1391,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20360,'C_Straight_Pony_RD','Costume Straight Pony Red',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1392,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20361,'C_Straight_Pony_OM','Costume Straight Pony Crimson',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1393,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20362,'C_Straight_Pony_BU','Costume Straight Pony Blue',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1394,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20363,'C_Straight_Pony_WH','Costume Straight Pony White',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1395,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20364,'C_Loose_Wave_Twin_YL','Costume Loose Wave Twin Yellow',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1396,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20365,'C_Loose_Wave_Twin_GN','Costume Loose Wave Twin Green',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1397,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20366,'C_Loose_Wave_Twin_PP','Costume Loose Wave Twin Purple',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1398,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20367,'C_Loose_Wave_Twin_RD','Costume Loose Wave Twin Red',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1399,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20368,'C_Loose_Wave_Twin_OM','Costume Loose Wave Twin Crimson',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1400,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20369,'C_Loose_Wave_Twin_BU','Costume Loose Wave Twin Blue',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1401,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20370,'C_Loose_Wave_Twin_WH','Costume Loose Wave Twin White',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1402,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20371,'C_Special_Kafra_Hat','Costume Special Kafra Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,581,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20372,'C_Ribbon_Hat','Costume Ribbon Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,956,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20373,'C_Watermelon_Hat','Costume Watermelon Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,690,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20374,'C_Mechanical_Plant_Hat','Costume Mechanical Plant Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1069,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20375,'C_Ignis_Cap','Costume Ignis Cap',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,803,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20376,'C_Memories_Of_Lovers','Costume Memory of Lovers',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1072,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20377,'C_Flight_Cap','Costume Flight Cap',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,820,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20378,'C_Skymet','Costume Sky Met',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,868,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20379,'C_Pocketwatch_Hair_Ornament','Costume Pocketwatch Hair Ornament',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1404,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20380,'C_Mechanical_Feather_Hairband','Costume Mechanical Feather Hairband',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1405,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20381,'C_Steampunk_Hat','Costume Steampunk Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1406,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20382,'C_Silver_Sniper_Doll','Costume Silver Sniper Doll',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1407,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20383,'C_Magicdecoy_Doll','Costume Magic Decoy Doll',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1408,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20384,'C_Douce_Tiara','Costume Douce Tiara',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1410,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20386,'C_Victory_Wing_Helm','Costume Victory Wing Helm',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,677,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20391,'C_Silent_Executor','Costume Silent Executor',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,3072,NULL,'1',0,632,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20392,'C_Sniper_Google','Costume Sniper Google',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,3072,NULL,'1',0,625,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20393,'C_Schmitz_Helm','Costume Schmitz Helm',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,634,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20394,'C_Pumpkin_Toque','Costume Pumpkin Toque',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1411,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20395,'C_BlackWitchHat','Costume Black Witch Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1006,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20396,'C_Woodie_Hat','Costume: Woodie Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,939,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20397,'C_Jakk','Costume Jack',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,6144,NULL,'1',0,1415,'autobonus2 "{}",31,10000,BF_WEAPON|BF_MAGIC,"{ active_transform 1130,10000; specialeffect2 372; /*Confirm Special Effect*/ }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20398,'C_Niflheim_Bunny_Hat','Costume Niffleheim Bunny Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1285,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20399,'C_Crow_Tengu_Mask','Costume Crow Tengu Mask',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1287,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20400,'C_Ichthys_Rosario','Costume Ichthys Rosario',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1028,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20401,'C_Angel_Guidance','Costume Angel Guidance',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1188,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20402,'C_Holy_Klobuk','Costume Holy Klobuk',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,895,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20403,'C_Dolor_Thanatos','Costume Dolor Thanatos',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,547,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20404,'C_Blessing_Of_Angels','Costume Blessing of Angel',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1425,'hateffect(HAT_EF_BLESSING_OF_ANGELS,true);',NULL,'hateffect(HAT_EF_BLESSING_OF_ANGELS,false);'); -REPLACE INTO `item_db_re` VALUES (20405,'C_Eremes_Scarf','Costume Eremes Scarf',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1416,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20406,'C_Commandments_Of_Chain','Costume Chain of Commandments',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1417,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20407,'C_Subject_Aura_Red','Costume Vicious Mind Aura Crimson',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1418,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20408,'C_Requiem_Crown_of_Light_and_Dark','Costume Requiem Crown of Light and Dark',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1419,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20409,'C_There_is_Something_','Costume There is Something',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1091,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20416,'C_1Grade_Balloon','Costume Grade 1 Balloon',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1426,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20417,'C_2Grade_Balloon','Costume Grade 2 Balloon',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1427,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20418,'C_3Grade_Balloon','Costume Grade 3 Balloon',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1428,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20419,'C_4Grade_Balloon','Costume Grade 4 Balloon',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1429,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20420,'C_5Grade_Balloon','Costume Grade 5 Balloon',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1430,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20421,'C_6Grade_Balloon','Costume Grade 6 Balloon',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1431,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20422,'C_7Grade_Balloon','Costume Grade 7 Balloon',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1432,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20423,'C_8Grade_Balloon','Costume Grade 8 Balloon',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1433,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20424,'C_9Grade_Balloon','Costume Grade 9 Balloon',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1434,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20425,'C_10Grade_Balloon','Costume Grade 10 Balloon',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1435,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20426,'C_11Grade_Balloon','Costume Grade 11 Balloon',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1436,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20427,'C_12Grade_Balloon','Costume Grade 12 Balloon',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1437,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20428,'C_13Grade_Balloon','Costume Grade 13 Balloon',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1438,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20429,'C_Piamette_Bowtie','Costume Piamette Bowtie',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1439,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20430,'C_Morocc_Kid_Servant','Costume Loyal Servant of Devil Morocc',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1440,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20431,'C_Magician_Headdress','Costume Magician Headdress',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1441,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20432,'C_Khalitzburg_KN_Helm','Costume Khalitzburg Knight Helm',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1442,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20433,'C_Louise_Red_Hat','Costume Louise Red Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1443,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20434,'C_Drooping_Gunslinger','Costume Drooping Gunslinger',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1444,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20435,'C_Camellia_Hair_Pin','Costume Camellia Hair Pin',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1203,'hateffect(HAT_EF_CAMELLIA_HAIR_PIN,true);',NULL,'hateffect(HAT_EF_CAMELLIA_HAIR_PIN,false);'); -REPLACE INTO `item_db_re` VALUES (20436,'C_Angelring_Furhat','Costume Angelring Furhat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,953,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20437,'C_Sakura_Hairband','Costume Sakura Hairband',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,949,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20438,'C_Abacus_In_Mouth','Costume Abacus In Mouth',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,825,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20439,'C_New_Year_Shine','Costume New Year Shine',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,0,'hateffect(HAT_EF_GLOW_OF_NEW_YEAR,true);',NULL,'hateffect(HAT_EF_GLOW_OF_NEW_YEAR,false);'); -REPLACE INTO `item_db_re` VALUES (20440,'C_Tone_of_Gold','Costume Tone of Gold',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1447,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20441,'C_Large_Ribbon_Muffler_Red','Costume Large Ribbon Muffler Red',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1448,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20442,'C_Red_and_White_Mochiring_Hat','Costume Red and White Mochiring Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1449,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20446,'C_Bunny_Eggshell','Costume Bunny Eggshell',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1339,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20447,'C_Small_Poring_Band','Costume Small Porings Headband',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,955,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20448,'C_Cons_Of_Water','Costume Water Spellcaster',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1451,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20449,'C_White_Black_Temp','Costume White and Black Temptation',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1452,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20450,'C_Gram_Peony','Costume Gram Peony',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1453,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20451,'C_Sky_of_Memory','Costume Sky of Memory',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1454,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20452,'C_Crown_of_Strawberry_Prince','Costume Crown of Strawberry Prince',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1455,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20455,'C_Republic_Hat','Costume Republic Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1458,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20456,'C_Combat_Vestige','Costume Combat Vestige',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1460,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20457,'C_Feather_Fluttering','Costume Fluttering Feathers',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1461,'hateffect(HAT_EF_FEATHER_FLUTTERING,true);',NULL,'hateffect(HAT_EF_FEATHER_FLUTTERING,false);'); -REPLACE INTO `item_db_re` VALUES (20458,'C_Wild_Poring_Rider','Costume Wild Poring Rider',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1422,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20459,'C_Valhalla_Idol','Costume Valhalla Idol',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1423,'hateffect(HAT_EF_VALHALLA_IDOL,true);',NULL,'hateffect(HAT_EF_VALHALLA_IDOL,false);'); -REPLACE INTO `item_db_re` VALUES (20460,'C_Thorny_Hairband','Costume Thorny Hairband',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,921,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20461,'C_93_Style_Bloody_Wings','Costume 93 Style Bloody Wings',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1037,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20462,'C_Cat_Ears_Cape','Costume Cat Ears Cape',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1464,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20463,'C_Two_Tone_Beret','Costume Two Tone Beret',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1465,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20464,'C_Monochrome_RibbonHat','Costume Monochrome Ribbon Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1466,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20465,'C_Glasses_Without_Lens','Costume Glasses Without Lens',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1467,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20466,'C_Crimson_Ribbon','Costume Crimson Ribbon',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1468,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20467,'C_Elemental_Crown','Costume Elemental Crown',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1219,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20468,'C_Youinone_Mask','You in ONE',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,7168,NULL,'1',0,1462,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20470,'C_SweetChocolate_Hat','Costume Sweet Chocolate Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1469,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20481,'C_Mask_of_Ifrit','Costume Mask of Ifrit',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,7168,NULL,'0',0,421,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20482,'C_Heaven_Cage','Costume Heaven Cage',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1286,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20483,'C_Butterfly_Barrettes','Costume Butterfly Barrettes',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1027,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20486,'C_Twin_Margaret','Costume Twin Margaret',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1472,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20487,'C_Floral_Waltz','Costume Waltz of Flowers',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1473,'hateffect(HAT_EF_FLORAL_WALTZ,true);',NULL,'hateffect(HAT_EF_FLORAL_WALTZ,false);'); -REPLACE INTO `item_db_re` VALUES (20488,'C_Pope_Ribbon','Costume Pope Ribbon',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1474,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20489,'C_Pope_Crown','C Pope Crown',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1475,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20490,'C_Full_Bloom_Hp_Blue','Costume: Full Bloom HP(Blue)',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1476,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20491,'C_Laser_of_Eagle','Costume Laser of Eagle',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1424,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20492,'C_Unidentified_Flying_Poring','Costume Unidentified Flying Poring',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1017,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20493,'C_Wing_Headphone','Costume Wing Headphone',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1347,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20495,'C_Quati_Hat_J','Costume Quati Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,527,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20496,'C_Black_Shiba_Inu_Hat','Costume Black Shiba Inu Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,894,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20497,'C_Umbala_Spirit','Costume Umbala Spirit',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,675,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20498,'C_Elephant_Hat','Costume Elephant Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,215,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20499,'C_Cat_Ears_Hat','Costume Cat Ears Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1479,NULL,NULL,NULL); -#=================================================================== -# New Garments -#=================================================================== -REPLACE INTO `item_db_re` VALUES (20500,'T_Archangel_Wing','Archangel Wing',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,8192,NULL,'1',0,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20502,'C_Devil_Wing','Costume Little Devil Wings',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,8192,NULL,'1',0,12,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20504,'C_Cupid_Wing_Pink','Costume Cupid\'s Pink Wings',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,8192,NULL,'1',0,14,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20506,'Invisible_Manteau','Invisible Manteau',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,8192,NULL,'1',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20507,'C_Poring_Bag','Costume Poring Bag',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,8192,NULL,'1',0,16,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20508,'C_Poster_Girl_Hat','Costume Poster Girl Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1446,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20509,'C_Wings_of_Uriel','Costume Wings of Uriel',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,8192,NULL,'1',0,17,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20510,'C_SwordWing','Costume Sword Wing',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,8192,NULL,'1',0,19,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20511,'C_Blue_Fairy_Wing','Blue Wings of Fairy',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,8192,NULL,'1',0,21,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20512,'C_Bag_of_Adventurer_j','Costume Adventurer\'s Backpack',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,8192,NULL,'1',0,2,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20514,'C_Thanatos_Sword','Costume Thanatos Sword',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,8192,NULL,'1',0,23,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20515,'C_Magic_Circle','Costume Magic Circle',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,8192,NULL,'1',0,0,'hateffect(HAT_EF_MAGICCIRCLE,true);',NULL,'hateffect(HAT_EF_MAGICCIRCLE,false);'); -REPLACE INTO `item_db_re` VALUES (20516,'C_Wings_of_Michael','Costume Wings of Michael',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,8192,NULL,'1',0,24,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20517,'C_GiantCatBag_TW','Costume Giant Cat Backpack',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,8192,NULL,'1',0,25,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20519,'C_Full_BloomCherry_Tree','Costume Full Bloom Cherry Tree',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,8192,NULL,'1',0,0,'hateffect(HAT_EF_FULL_BLOOMCHERRY_TREE,true);',NULL,'hateffect(HAT_EF_FULL_BLOOMCHERRY_TREE,false);'); -REPLACE INTO `item_db_re` VALUES (20522,'C_Blessings_Of_Soul','Costume Blessings Of Soul',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,0,'hateffect(HAT_EF_C_BLESSINGS_OF_SOUL,true);',NULL,'hateffect(HAT_EF_C_BLESSINGS_OF_SOUL,false);'); -REPLACE INTO `item_db_re` VALUES (20524,'C_Shining_Angel_Wings','Costume Shining Angel Wings',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,8192,NULL,'1',0,0,'hateffect(HAT_EF_C_SHINING_ANGEL_WING,true);',NULL,'hateffect(HAT_EF_C_SHINING_ANGEL_WING,false);'); -REPLACE INTO `item_db_re` VALUES (20530,'C_Wings_of_Gabriel','Costume Wings of Gabriel',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,8192,NULL,'1',0,37,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20533,'C_PinkButterfly_Wing_T','Costume Fly Like a Butterfly (Pink)',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,8192,NULL,'1',0,38,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20535,'C_Digital_Space','Costume Digital Space',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,8192,NULL,'1',0,0,'hateffect(HAT_EF_DIGITAL_SPACE,true);',NULL,'hateffect(HAT_EF_DIGITAL_SPACE,false);'); -REPLACE INTO `item_db_re` VALUES (20537,'C_Falling_Red_Foliage','Costume Falling Red Foliage',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,8192,NULL,'1',0,0,'hateffect(HAT_EF_C_MAPLE_WHICH_FALLS_RD,true);',NULL,'hateffect(HAT_EF_C_MAPLE_WHICH_FALLS_RD,false);'); -REPLACE INTO `item_db_re` VALUES (20538,'Costume_Magic_Circle_Rainbow','Costume Magic Circle Rainbow',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,8192,NULL,'1',0,0,'hateffect(HAT_EF_MAGICCIRCLERAINBOW,true);',NULL,'hateffect(HAT_EF_MAGICCIRCLERAINBOW,false);'); -REPLACE INTO `item_db_re` VALUES (20543,'C_Halloween_Poring_Bag','Costume Halloween Poring Bag',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,8192,NULL,'1',0,44,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20546,'C_Backside_Ribbon_Bell','Costume Giant Ribbon Bell',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,8192,NULL,'1',0,46,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20547,'C_Ghost_Effect','Costume Ghost Effect',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,8192,NULL,'1',0,0,'hateffect(HAT_EF_C_GHOST_EFFECT,true);',NULL,'hateffect(HAT_EF_C_GHOST_EFFECT,false);'); -REPLACE INTO `item_db_re` VALUES (20548,'Costume_Popping_Poring_Aura','Costume Popping Poring Aura',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,8192,NULL,'1',0,0,'hateffect(HAT_EF_C_POPPING_PORING_AURA,true);',NULL,'hateffect(HAT_EF_C_POPPING_PORING_AURA,false);'); -REPLACE INTO `item_db_re` VALUES (20570,'C_HeartChocoBag','Costume HeartChocoBag',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,8192,NULL,'1',0,47,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20572,'C_WingOfHeart','Costume WingOfHeart',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,8192,NULL,'1',0,50,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20576,'C_Cat_Fork','Costume Cat Fork',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,8192,NULL,'1',0,53,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20582,'C_T_Bear_Bag','Costume Bear Backpack',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,8192,NULL,'1',0,60,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20584,'C_Big_Foxtail','Costume Fox Tail',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,8192,NULL,'1',0,62,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20588,'C_Nifl_Bloom','Costume Broom of Witch',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,8192,NULL,'1',0,65,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20592,'C_Santa_Backpack','Costume Santa\'s Pocket',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,8192,NULL,'1',0,70,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20600,'Fantastic_Aura','Fantastic Aura',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,8192,NULL,'1',0,0,'/*TODO: View ID*/ bonus bUnbreakableHelm;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20700,'Egir_Manteau','Egir Manteau',4,200000,NULL,300,NULL,10,NULL,1,0xFFFFFFFF,63,2,4,NULL,'110',1,0,'bonus bUnbreakableGarment; .@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); }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20701,'Sol_Manteau','Sol Manteau',4,0,NULL,700,NULL,20,NULL,1,0xFFFFFFFF,63,2,4,NULL,'65',1,0,'bonus2 bSubDefEle,Ele_Earth,5; bonus2 bMagicSubDefEle,Ele_Earth,5; bonus2 bSubRace,RC_Fish,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20702,'TE_Woe_Muffler','TE Woe Muffler',4,0,NULL,0,NULL,5,NULL,0,0xFFFFFFFF,63,2,4,NULL,'40',1,NULL,'bonus bMdef,5; bonus2 bAddRace,RC_Player_Human,5; bonus2 bMagicAddRace,RC_Player_Human,5; bonus2 bResEff,Eff_Freeze,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20703,'TE_Woe_Manteau','TE Woe Manteau',4,0,NULL,0,NULL,10,NULL,0,0x000444A2,63,2,4,NULL,'40',1,NULL,'bonus2 bAddRace,RC_Player_Human,10; bonus2 bResEff,Eff_Freeze,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20704,'TE_Woe_Magic_Manteau','TE Woe Magic Manteau',4,0,NULL,0,NULL,5,NULL,0,0x00818315,63,2,4,NULL,'40',1,NULL,'bonus2 bMagicAddRace,RC_Player_Human,10; bonus2 bResEff,Eff_Freeze,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20706,'Amistr_Bag','Amistr Bag',4,10,NULL,500,NULL,18,NULL,0,0xFFFFFFFF,63,2,4,NULL,'1',NULL,4,'bonus bAllStats,1; bonus2 bSubEle,Ele_All,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20707,'Kirin_Wing','Kirin Wing',4,20,NULL,0,NULL,18,NULL,0,0xFFFFFFFF,63,2,4,NULL,'0',1,6,'bonus bAllStats,1; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20709,'Mana_Manteau','Mana Manteau',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4,NULL,'1',1,NULL,'bonus2 bExpAddRace,RC_All,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20710,'Impr_Angel\'s_Warmth','Advanced Angelic Cardigan',4,10000,NULL,400,NULL,6,NULL,1,0x00000001,63,2,4,NULL,'99',1,0,'bonus bHPrecovRate,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20711,'Manteau_Of_Diego','Manteau Of Diego',4,20,NULL,600,NULL,15,NULL,1,0xFFFFFFFF,63,2,4,NULL,'0',1,0,'bonus bInt,1; bonus bDex,1; bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20712,'Valkyrie_Cape','Valkyrie Cape',4,10,NULL,500,NULL,10,NULL,1,0x6007DFFE,58,2,4,NULL,'1',1,0,'.@val = 2 * (min(10,getrefine())/2); if (BaseClass == Job_Mage || BaseClass == Job_Archer || BaseClass == Job_Acolyte) bonus bFlee2,(5+.@val); else if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief) bonus bShortWeaponDamageReturn,(5+.@val);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20714,'Assassin\'s_Muffler','Assassin\'s Muffler',4,20,NULL,100,NULL,16,NULL,1,0xFFFFFFFF,63,2,4,NULL,'50',1,0,'.@r = getrefine(); if (.@r>5) { bonus bAgi,(.@r-5)*2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20716,'Spirit_Manteau','Spirit Manteau',4,20,NULL,700,NULL,20,NULL,1,0xFFFFFFFF,63,2,4,NULL,'65',1,0,'bonus2 bSubEle,Ele_Ghost,5; bonus2 bSubRace,RC_Angel,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20717,'FaceWorm_Skin','Gigant Snake Skin',4,10,NULL,400,NULL,38,NULL,0,0xFFFFFFFF,63,2,4,NULL,'1',1,0,'bonus bMdef,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20718,'FaceWorm_Skin_','Gigant Snake Skin',4,10,NULL,400,NULL,38,NULL,1,0xFFFFFFFF,63,2,4,NULL,'1',1,0,'bonus bMdef,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20721,'Cloak_Of_Gray','Cloak of Gray',4,20,NULL,600,NULL,45,NULL,1,0xFFFFFFFF,56,2,4,NULL,'120',1,0,'bonus2 bSubEle,Ele_Holy,5+getrefine()/2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20724,'Love_Dad_Wings_2012','Love Dad Wings 2012',4,0,NULL,100,NULL,15,NULL,1,0xFFFFFFFF,63,2,4,NULL,'1',1,5,'.@r = getrefine(); if ((readparam(bStr)>89)) { bonus bAllStats,1; bonus bStr,.@r; bonus bMaxHPRate,1; bonus bMaxSPRate,1; } if ((readparam(bAgi)>89)) { bonus bAllStats,1; bonus bAgi,.@r; bonus bMaxHPRate,1; bonus bMaxSPRate,1; } if ((readparam(bVit)>89)) { bonus bAllStats,1; bonus bVit,.@r; bonus bMaxHPRate,1; bonus bMaxSPRate,1; } if ((readparam(bInt)>89)) { bonus bAllStats,1; bonus bInt,.@r; bonus bMaxHPRate,1; bonus bMaxSPRate,1; } if ((readparam(bDex)>89)) { bonus bAllStats,1; bonus bDex,.@r; bonus bMaxHPRate,1; bonus bMaxSPRate,1; } if ((readparam(bLuk)>89)) { bonus bAllStats,1; bonus bLuk,.@r; bonus bMaxHPRate,1; bonus bMaxSPRate,1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20725,'Ribbon_Piamat','Ribbon Piamat',4,10,NULL,100,'0:10',NULL,NULL,1,0xFFFFFFFF,63,2,4,NULL,'30',1,7,'bonus bInt,1; bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20726,'Fire_Dragon\'s_Coat','Fire Dragon\'s Coat',4,20,NULL,300,NULL,0,NULL,1,0xFFFFFFFF,63,2,4,NULL,'30',1,0,'bonus bMaxHPrate,5; bonus2 bMagicAtkEle,Ele_Fire,2; if (getrefine()>=7) { bonus2 bMagicAtkEle,Ele_Fire,3; } bonus2 bMagicAtkEle,Ele_Water,-10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20727,'Brilliant_Golden_Wings','Brilliant Golden Wings',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,8192,NULL,'1',1,5,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20728,'Water_Dragon_Coat','Water Dragon Coat',4,10,NULL,300,NULL,0,NULL,1,0xFFFFFFFF,63,2,4,NULL,'30',1,0,'bonus bMaxHPrate,5; bonus2 bMagicAtkEle,Ele_Water,2; if (getrefine()>=7) { bonus2 bMagicAtkEle,Ele_Water,3; } bonus2 bMagicAtkEle,Ele_Wind,-10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20730,'Loyalists_Hood','Loyalists Hood',4,10,NULL,200,NULL,30,NULL,1,0xFFFFFFFF,63,2,8192,NULL,'80',NULL,NULL,'bonus bStr,2; bonus bMaxHPrate,10; bonus bNoKnockback; bonus2 bSubEle,Ele_All,-20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20732,'Supplement_Part_Con','Supplement Part Con',4,25000,NULL,500,NULL,20,NULL,1,0x00000400,56,2,4,NULL,'100',1,NULL,'.@r = getrefine(); bonus bMaxHPrate,6+(.@r/2); if(.@r>=9){bonus bHPrecovRate,50;}',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20733,'Upgrade_Part_Engine','Reinforced Parts - Engine',4,10,NULL,1500,NULL,25,NULL,1,0x00000400,56,2,4,NULL,'100',1,NULL,'bonus bDelayrate,-10; .@r = getrefine(); if(.@r>=7) {bonus2 bSubEle,0,10;}; if(.@r>=9) {bonus bDelayrate,-10;}',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20737,'C_Kirin_Wing','Costume Kirin Wing',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,8192,NULL,'1',0,6,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20743,'Airship_Cape','Airship\'s Cloak',4,10,NULL,0,NULL,25,NULL,1,0xFFFFFFFF,63,2,4,NULL,'125',0,NULL,'bonus2 bSubEle,Ele_Neutral,10; bonus bFlee,20; bonus bVariableCastrate,-20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20744,'Felock_Cape','Felrock\'s Cloak',4,10,NULL,400,NULL,12,NULL,1,0xFFFFFFFF,63,2,4,NULL,'125',1,NULL,'bonus2 bSubEle,Ele_Neutral,10; bonus bFlee,20; bonus bVariableCastrate,-10; .@r = getrefine(); if(.@r>=7) { bonus bVariableCastrate,-10; } if(.@r>=9) { bonus bVariableCastrate,-10;} if(.@r>=12) { bonus bVariableCastrate,-5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20746,'C_Rudra_Wing','Costume Rudra Wings',4,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,8192,NULL,'1',0,8,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20748,'Manteau_Of_Fallen','Fallen Warrior Manteau',4,10,NULL,600,NULL,20,NULL,0,0xFFFFFFFF,63,2,4,NULL,'120',1,NULL,'.@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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20749,'Manteau_Of_Fallen_','Fallen Warrior Manteau',4,10,NULL,600,NULL,30,NULL,1,0xFFFFFFFF,63,2,4,NULL,'170',1,NULL,'.@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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20753,'Lian_Robe','Lian Robe',4,0,NULL,700,NULL,20,1,1,0xFFFFFFFF,63,2,4,NULL,'65',1,NULL,'bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubRace,RC_Formless,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20756,'Aegir_Cloak','Aegir Cloak',4,10,NULL,300,NULL,10,NULL,1,0xFFFFFFFF,63,2,4,NULL,'40',1,NULL,'bonus bUnbreakableGarment; bonus bMaxHP,500; bonus bMaxSP,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20761,'C_Wing_Of_Happiness','Costume Happiness Wings',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,8192,NULL,'1',0,9,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20762,'C_GreatDevilWing','Costume Great Devil Wings',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,8192,NULL,'1',0,10,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20763,'C_Amistr_Bag','Costume Amistr Bag',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,8192,NULL,'1',0,4,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20764,'C_Fallen_Angel_Wing','Costume Fallen Angel Wing',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,8192,NULL,'1',0,3,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20765,'C_Archangel_Wing','Costume Archangel Wing',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,8192,NULL,'1',0,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20773,'Excelion_Wing','Excelion Wing',4,20,NULL,900,NULL,40,NULL,0,0xFFFFFFFF,63,2,4,NULL,'99',1,NULL,'bonus bFlee,getrefine() * 2; bonus bFlee2,8 + (BaseLevel > 129 ? 2 : 0);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20778,'Red_Lotus_Stole','Red Lotus Stole',4,20,NULL,700,NULL,8,NULL,1,0xFFFFFFFF,63,2,4,NULL,'1',1,0,'.@r = getrefine(); bonus bMaxSPrate,10; bonus bMdef,3; bonus bUseSPrate,-1*(1+(2*.@r/3)); if (.@r>=10) { bonus bSPGainValue,20; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20779,'Rift_Manteau','Rift Manteau',4,20,NULL,500,NULL,16,NULL,1,0xFFFFFFFF,63,2,4,NULL,'100',1,NULL,'.@r = getrefine(); bonus bMaxHP,(.@r >= 9 ? 1300 : .@r >= 7 ? 700 : 300); bonus bMaxSP,-50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20780,'Unity_STR_Manteau','Unity STR Manteau',4,32000,NULL,300,NULL,20,NULL,1,0xFFFFFFFF,63,2,4,NULL,'1',1,0,'.@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bMaxHPrate,2*(.@r/2); }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20781,'Unity_AGI_Manteau','Unity AGI Manteau',4,32000,NULL,300,NULL,20,NULL,1,0xFFFFFFFF,63,2,4,NULL,'1',1,0,'.@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bFlee,3*(.@r/2); }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20782,'Unity_INT_Muffler','Unity INT Muffler',4,32000,NULL,300,NULL,20,NULL,1,0xFFFFFFFF,63,2,4,NULL,'1',1,0,'.@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bUseSPrate,-(.@r/2); }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20783,'Hero_Cape','Hero Cape',4,0,NULL,100,NULL,NULL,NULL,1,0xFFFFFFFF,63,2,4,NULL,'10',1,NULL,'.@r = getrefine(); bonus2 bSubEle,Ele_Neutral,1+(.@r/3); bonus bFlee,1+(.@r/3); if (.@r > 9) { bonus2 bSubEle,Ele_Neutral,20; bonus bFlee,20; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20787,'Unity_Exquisite_Muffler','Unity Exquisite Muffler',4,32000,NULL,300,NULL,20,NULL,1,0xFFFFFFFF,63,2,4,NULL,'1',1,0,'.@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bCritical,2*(.@r/2); }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20788,'Private_Doram_Manteau','Private Doram Manteau',4,20,NULL,300,NULL,20,NULL,1,0x80000000,7,2,4,NULL,'100',1,NULL,'bonus bFlee,5; bonus2 bSubEle,Ele_Neutral,2; bonus bFlee2,getrefine()/3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20789,'Luxury_Doram_Manteau','Luxury Doram Manteau',4,20,NULL,400,NULL,25,NULL,1,0x80000000,7,2,4,NULL,'140',1,NULL,'bonus bFlee,7; bonus2 bSubEle,Ele_Neutral,3; .@r = getrefine()/3; bonus bFlee2,.@r; bonus bLuk,.@r;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20790,'Elegant_Doram_Manteau','Elegant Doram Manteau',4,20,NULL,500,NULL,30,NULL,1,0x80000000,7,2,4,NULL,'175',1,NULL,'bonus bFlee,10; bonus2 bSubEle,Ele_Neutral,5; .@r = getrefine()/2; bonus bFlee2,.@r; bonus bInt,.@r; bonus bDex,.@r; bonus bLuk,.@r;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20797,'Etran_Shirt','Etran Shirt',4,0,NULL,150,NULL,NULL,NULL,1,0xFFFFFFFF,63,2,4,NULL,'1',1,NULL,'bonus bMdef,10; bonus bMaxHPrate,2; .@r = getrefine(); if (.@r >= 6) bonus bMaxHPrate,4; if (.@r >= 7) bonus bMaxHPrate,6; if (.@r >= 8) bonus bMaxHPrate,8; if (.@r >= 9) bonus bNoKnockback;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20798,'GrimReaper_Protection','Costume Grim Reaper Protection',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1450,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20799,'Elemental_Towel','Elemental Towel',4,20,NULL,400,NULL,13,NULL,1,0xFFFFFFFF,63,2,4,NULL,'100',1,0,'bonus bLongAtkRate,2; if(getrefine()>=7) { bonus2 bSkillUseSP,"RA_ARROWSTORM",20; bonus2 bSkillUseSP,"WM_SEVERE_RAINSTORM",60; } if(getrefine()>=8) { bonus bLongAtkRate,2; } if(getrefine()>=9) { bonus bLongAtkRate,3; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20800,'Enforcer_Cape','Enforcer Cape',4,20,NULL,300,NULL,18,NULL,1,0xFFFFFFFF,63,2,4,NULL,'100',1,0,'.@r = getrefine(); bonus bMdef,10; if (getskilllv("AS_GRIMTOOTH")==5) { bonus2 bSkillAtk,"AS_GRIMTOOTH",50; } if (getskilllv("GC_CROSSIMPACT") == 5) { bonus2 bSkillAtk,"GC_CROSSIMPACT",5; } if (getskilllv("ASC_BREAKER") == 10) { bonus2 bSkillAtk,"ASC_BREAKER",50; } if (.@r>=7) { .@delay += 3; bonus2 bSkillAtk,"AS_GRIMTOOTH",Baselevel; bonus2 bSkillAtk,"ASC_BREAKER",Baselevel/3; bonus2 bSkillAtk,"GC_CROSSIMPACT",Baselevel/30; } if (.@r>=9) { .@delay += 3; bonus bMaxSPrate,5; } bonus bDelayrate,-.@delay; if(eaclass()&EAJL_THIRD && BaseJob == Job_Assassin) { if (.@r >= 7) { bonus bMaxHPrate,20; bonus bLongAtkDef,35; } else { bonus bMaxHPrate,15; bonus bLongAtkDef,20; } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20813,'Coak_of_Survival','Cloak of Survival',4,1000,NULL,550,NULL,10,NULL,1,0x00810204,63,2,4,NULL,'75',1,0,'bonus bMdef,5; bonus bVit,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20814,'Wakwak_Manteau','Wakwak Manteau',4,20,NULL,400,NULL,40,NULL,1,0xFFFFFFFF,63,2,4,NULL,'100',1,0,'bonus2 bAddClass,Class_All,5; .@s = readparam(bStr); .@r = getrefine(); if (.@r>=5) { bonus bBaseAtk,2*(.@s/10); } if (.@r>=7) { bonus bBaseAtk,3*(.@s/10); }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20815,'SeraphimRobe','Seraphim Robe',4,0,NULL,300,NULL,18,NULL,1,0xFFFFFFFF,63,2,4,NULL,'1',1,NULL,'bonus bMaxHPrate,10; bonus2 bMagicAtkEle,Ele_Neutral,5; .@r = getrefine(); if (.@r > 6) { bonus2 bSubEle,Ele_Dark,20; bonus2 bSubEle,Ele_Holy,20; bonus bMatkRate,10; } if (.@r > 8) { bonus2 bSubEle,Ele_Dark,10; bonus2 bSubEle,Ele_Holy,10; bonus bVariableCastrate,-5; } if (getskilllv("CR_TRUST") > 0) { bonus2 bSubEle,Ele_Holy,.@r*3; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20819,'Oxygen_Bottle','Oxygen Bottle',4,0,NULL,500,NULL,0,NULL,1,0xFFFFFFFF,63,2,4,NULL,'40',1,0,'bonus bFlee,12+getrefine(); bonus bHit,getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20820,'Elemental_Cape','Elemental Cape',4,0,NULL,500,NULL,12,NULL,0,0x00010000,56,2,4,NULL,'100',1,0,'.@r = getrefine(); bonus bFlee,(10+5*(.@r/3)); bonus2 bSubEle,Ele_Neutral,10; if (.@r>=9) bonus bAspdRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20821,'Golden_Scarf','Golden Scarf',4,0,NULL,500,NULL,12,NULL,0,0x20000000,63,2,4,NULL,'100',1,0,'.@r = getrefine(); bonus bFlee,20; if (.@r>=9) { bonus bLongAtkRate,10; } else if (.@r>=7) { bonus bLongAtkRate,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20822,'Mine_Worker\'s_Backpack','Mine Worker\'s Backpack',4,0,NULL,600,NULL,16,NULL,0,0x00000400,56,2,4,NULL,'100',1,0,'.@r = getrefine(); bonus bAspdRate,(5+(.@r/2)); if (.@r>=9) bonus bBaseAtk,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20823,'Para_Team_Manteau100','Awakened Eden Group Manteau I',4,0,NULL,0,NULL,20,NULL,0,0xFFFFFFFF,63,2,4,NULL,'100',1,0,'bonus2 bSubEle,Ele_Neutral,10; bonus bFlee,12; .@r = getrefine(); if(.@r >= 7){ bonus bMaxHP,500; bonus bFlee2,2; if(.@r >= 9){ bonus bMaxHP,500; bonus2 bSubEle,Ele_All,10; bonus2 bSubEle,Ele_Neutral,-10; } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20824,'Para_Team_Manteau130','Awakened Eden Group Manteau II',4,0,NULL,0,NULL,25,NULL,0,0xFFFFFFFF,63,2,4,NULL,'130',1,0,'bonus2 bSubEle,Ele_Neutral,10; bonus bFlee,12; bonus bMaxHP,500; bonus bFlee2,2; .@r = getrefine(); if(.@r >= 7){ bonus bMaxHP,500; bonus2 bSubEle,Ele_All,10; bonus2 bSubEle,Ele_Neutral,-10; if(.@r >= 9){ bonus2 bSubEle,Ele_Neutral,5; } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20825,'Para_Team_Manteau160','Awakened Eden Group Manteau III',4,0,NULL,0,NULL,30,NULL,0,0xFFFFFFFF,63,2,4,NULL,'160',1,0,'bonus2 bSubEle,Ele_All,10; bonus bFlee,12; bonus bMaxHP,1000; bonus bFlee2,2; .@r = getrefine(); if(.@r >= 7){ bonus2 bSubEle,Ele_Neutral,5; if(.@r >= 9){ skill "BS_GREED",1; } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20826,'Angel_Feather','Angel Feather',4,0,NULL,200,NULL,18,NULL,1,0xFFFFFFFF,63,2,4,NULL,'1',1,18,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20830,'Wings_of_Seraph','Wings of Seraph',4,0,NULL,200,NULL,18,NULL,1,0xFFFFFFFF,63,2,4,NULL,'1',1,8,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20831,'Adventurer\'s_Spirit','Adventurer\'s Spirit',4,1000,NULL,400,NULL,40,NULL,1,0xFFFFFFFF,63,2,4,NULL,'100',1,0,'.@r = getrefine(); bonus bInt,5; if (.@r>=5) bonus bMatk,5*(readparam(bInt)/60); if (.@r>=7) bonus bMatk,5*(readparam(bInt)/10);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20834,'Drifter\'s_Cape','Drifter\'s Cape',4,0,NULL,400,NULL,0,NULL,0,0xFFFFFFFF,63,2,4,NULL,'100',1,0,'.@r = getrefine(); .@bonus = 20; if (.@r>=7) { .@bonus += 5; } if (.@r>=9) { .@bonus += 5; } bonus2 bSubEle,Ele_Neutral,.@bonus;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20836,'Skin_of_Lindwyrm','Skin of Lindwyrm',4,1000,NULL,600,NULL,15,NULL,1,0xFFFFFFFF,63,2,4,NULL,'100',1,0,'bonus bAgi,5; bonus bVit,5; bonus bMdef,10; bonus2 bSubEle,Ele_Fire,5; bonus2 bSubEle,Ele_Water,5; bonus2 bSubRace,RC_Dragon,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; .@r = getrefine(); .@val = (readparam(bAgi)+readparam(bVit))/20; if (.@r>=7) { skill "TF_HIDING",1; if (.@r>=8) { bonus bMaxHPrate,.@val; bonus bVariableCastrate,-1*.@val; if (.@r>=9) { skill "AS_CLOAKING",1; } } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20837,'Skin_of_Gwiber','Skin of Gwiber',4,20,NULL,600,NULL,15,NULL,1,0xFFFFFFFF,63,2,4,NULL,'100',1,0,'bonus bInt,5; bonus bDex,5; bonus bMdef,10; bonus2 bSubEle,Ele_Dark,5; bonus2 bSubEle,Ele_Undead,5; bonus2 bSubRace,RC_Demon,5; bonus2 bSubRace,RC_Undead,5; .@r = getrefine(); .@val = (readparam(bInt)+readparam(bDex))/20; if (.@r>=7) { bonus bSPGainValue,10; if (.@r>=8) { bonus bBaseAtk,5*.@val; bonus bDelayrate,-2*.@val; if (.@r>=9) { bonus bSPGainValue,10; } } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20838,'Illusion_Muffler','Illusion Muffler',4,20,NULL,400,NULL,8,NULL,1,0xFFFFFFFE,63,2,4,NULL,'99',1,0,'.@r = getrefine(); bonus bMaxHP,(100+(100*.@r)); bonus bMaxSP,(10+(5*.@r));',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20840,'Illusion_Ancient_Cape','Illusion Ancient Cape',4,0,NULL,600,NULL,18,NULL,1,0xFFFFFFFE,63,2,4,NULL,'100',1,0,'.@val = min(getrefine(),10)/2; bonus bAgi,(2+.@val);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20845,'Maracco_Skin','Malach\'s Skin',4,20,NULL,600,NULL,15,NULL,1,0xFFFFFFFF,63,2,4,NULL,'100',1,0,'bonus bStr,5; bonus bLuk,5; bonus bMdef,10; bonus2 bSubEle,Ele_Ghost,5; bonus2 bSubEle,Ele_Holy,5; bonus2 bSubRace,RC_Angel,5; bonus2 bSubRace,RC_Formless,5; .@r = getrefine(); .@s = (readparam(bStr)+readparam(bLuk))/20; if (.@r>=7) { bonus bCritAtkRate,5; if (.@r>=8) { bonus bAspdRate,.@s; bonus bCritical,.@s; if (.@r>=9) { bonus bCritAtkRate,5; } } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20846,'Temporal_Manteau','Temporal Manteau',4,20,NULL,400,NULL,38,NULL,1,0xFFFFFFFF,63,2,4,NULL,'100',1,0,'bonus bMdef,10; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20847,'Illusion_Survivor_Manteau','Illusion Survivor Manteau',4,0,NULL,550,NULL,30,NULL,1,0x00810204,63,2,4,NULL,'130',1,0,'bonus bVit,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20856,'YSF01_Manteau','YSF01 Manteau',4,0,NULL,750,NULL,32,NULL,1,0xFFFFFFFF,63,2,4,NULL,'170',1,0,'.@r = getrefine(); if (.@r >= 8) { bonus bBaseAtk,20; if (.@r >= 11) { .@val = -3; if (.@r >= 13) { .@val += -4; } } } if (readparam(bVit) >= 125) { .@val += -10; } if (.@val) { bonus bDelayrate,.@val; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20859,'Phreeoni_Wings','Phreeoni Wings',4,20,NULL,300,NULL,10,NULL,1,0xFFFFFFFF,63,2,4,NULL,'100',1,0,'.@r = getrefine(); bonus bMaxHPrate,10; bonus bHit,10; if (.@r>=7) bonus bHit,20; if (.@r>=8) bonus bHit,30; if (.@r>=9) bonus bHit,40; if (.@r>=10) bonus bHit,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20860,'Battle_Surcoat','Battle Surcoat',4,20,NULL,300,NULL,10,NULL,1,0xFFFFFFFF,63,2,4,NULL,'70',1,0,'.@r = getrefine(); if (.@r>=9) { bonus bAspdRate,9; bonus bFlee,30; skill "TF_DOUBLE",10; skill "MO_TRIPLEATTACK",10; bonus bDoubleRate,50; } else if (.@r>=7) { bonus bAspdRate,6; bonus bFlee,20; skill "TF_DOUBLE",5; skill "MO_TRIPLEATTACK",5; bonus bDoubleRate,25; } else { bonus bAspdRate,3; bonus bFlee,10; skill "TF_DOUBLE",3; skill "MO_TRIPLEATTACK",3; bonus bDoubleRate,15; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20863,'Menblatt\'s_Wings','Menblatt\'s Wings',4,20,NULL,400,NULL,40,NULL,1,0xFFFFFFFF,63,2,4,NULL,'100',1,0,'.@r = getrefine(); bonus bBaseAtk,30; if (.@r>=5) bonus bLongAtkRate,readparam(bDex)/60; if (.@r>=7) bonus bLongAtkRate,readparam(bDex)/10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20906,'Beginner\'s_Cloak','Beginner\'s Cloak',4,20,NULL,0,NULL,10,NULL,0,0xFFFFFFFF,63,2,4,NULL,'100',0,0,'bonus2 bSubEle,Ele_Neutral,20; bonus bVariableCastrate,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20922,'Leviathan_Muffler','Leviathan Muffler',4,20,NULL,200,NULL,18,NULL,1,0xFFFFFFFF,63,2,4,NULL,'100',1,0,'.@r = getrefine(); bonus bMdef,5; bonus2 bAddEle,Ele_Water,15+.@r; bonus2 bMagicAddEle,Ele_Water,15+.@r; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bAspdRate,.@r; if (.@r>=10) bonus2 bSubEle,Ele_Water,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20923,'Illusion_Goibne_Spaulders','Illusion Goibne Spaulders',4,0,NULL,1000,NULL,47,NULL,1,0xFFFFFFFE,63,2,4,NULL,'130',1,0,'.@r = getrefine(); bonus bMdef,2; bonus bVit,1; if (.@r >= 7) { .@val = 5; if (.@r >= 9) { .@val += 10; } } if (.@val) { bonus2 bAddEle,Ele_Water,.@val; bonus2 bAddEle,Ele_Wind,.@val; bonus2 bAddEle,Ele_Earth,.@val; bonus2 bAddEle,Ele_Fire,.@val; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20925,'Commander_Manteau2','Commander Manteau',4,20,NULL,300,NULL,20,NULL,1,0xFFFFFFFF,63,2,4,NULL,'100',1,0,'.@r = getrefine(); bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bMdef,10; bonus bBaseAtk,10; bonus bMatk,10; bonus2 bSubRace,RC_Player_Human,3; if (.@r>=5) { bonus bBaseAtk,20; bonus bMatk,20; bonus bMaxHPrate,7; bonus bMaxSPrate,7; } if (.@r>=7) { bonus bBaseAtk,30; bonus bMatk,30; bonus bMaxHPrate,10; bonus bMaxSPrate,10; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20931,'Prism_Rangers_Scarf','Prism Rangers Scarf',4,20,NULL,300,NULL,12,NULL,0,0xFFFFFFFF,63,2,4,NULL,'100',1,0,'.@r = getrefine(); bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; if (.@r >= 7) { .@val = 10; } else if (.@r >= 5) { .@val = 5; } else { .@val = 2; } bonus bMaxHPrate,.@val; bonus bMaxSPrate,.@val; bonus bLongAtkRate,.@val+2*getskilllv("RA_AIMEDBOLT"); if (getskilllv("RA_WUGRIDER") == 3) { bonus2 bSkillCooldown,"RA_UNLIMIT",-180000; } if (getskilllv("RA_CAMOUFLAGE") == 5) { bonus bDelayrate,-10; } bonus2 bSkillCooldown,"RA_ARROWSTORM",-200; bonus2 bSkillAtk,"RA_ARROWSTORM",1;',NULL,'sc_end SC_UNLIMIT;'); -REPLACE INTO `item_db_re` VALUES (20932,'Old_Morroc_Shawl','Old Morocc Shawl',4,20,NULL,300,NULL,10,NULL,1,0xFFFFFFFF,63,2,4,NULL,'100',1,0,'.@r= getrefine(); bonus bMaxHPrate,5; bonus bFlee,10; if (.@r>=7) bonus bFlee,20; if (.@r>=8) { bonus bFlee,30; bonus bRestartFullRecover; } if (.@r>=9) bonus bFlee,40; if (.@r>=10) bonus bFlee2,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20933,'Illusion_Engine_wing_A-type','Illusion Engine wing A-type',4,0,NULL,900,NULL,50,NULL,1,0xFFFFFFFF,63,2,4,NULL,'130',1,NULL,'.@r = getrefine(); bonus bMaxHP,1000+(100*(.@r/2)); if (.@r >= 7) { bonus bAspdRate,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20934,'Illusion_Engine_wing_B-type','Illusion Engine wing B-type',4,0,NULL,900,NULL,50,NULL,1,0xFFFFFFFF,63,2,4,NULL,'130',1,NULL,'.@r = getrefine(); bonus bMaxHP,1000+(100*(.@r/2)); if (.@r >= 7) { bonus bVariableCastrate,-5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20935,'Lava_Leather_Manteau','Lava Leather Manteau',4,20,NULL,400,NULL,50,NULL,1,0xFFFFFFFF,63,2,4,NULL,'175',1,0,'bonus bHit,10; .@r = getrefine(); if (.@r>=7) bonus bHit,5; if (.@r>=9) bonus bHit,5; if (.@r>=11) bonus bDelayrate,-3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20936,'Lava_Leather_Muffler','Lava Leather Muffler',4,20,NULL,350,NULL,35,NULL,1,0xFFFFFFFF,63,2,4,NULL,'175',1,0,'bonus bCritical,5; .@r = getrefine(); if (.@r>=7) bonus bCritical,5; if (.@r>=9) bonus bCritAtkRate,5; if (.@r>=11) bonus2 bAddClass,Class_All,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20937,'Lava_Leather_Hood','Lava Leather Hood',4,20,NULL,300,NULL,25,NULL,1,0xFFFFFFFF,63,2,4,NULL,'175',1,0,'bonus bVariableCastrate,-10; .@r = getrefine(); if (.@r>=7) bonus bVariableCastrate,-10; if (.@r>=9) bonus bVariableCastrate,-10; if (.@r>=11) bonus2 bMagicAtkEle,Ele_Fire,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20941,'Phoenix_Muffler','Phoenix Muffler',4,20,NULL,200,NULL,18,NULL,1,0xFFFFFFFF,63,2,4,NULL,'100',1,0,'.@r = getrefine(); bonus bMdef,5; bonus2 bAddEle,Ele_Fire,15+.@r; bonus2 bMagicAddEle,Ele_Fire,15+.@r; bonus2 bSubRace,RC_Player_Human,5; bonus bAspdRate,.@r; if (.@r>=10) bonus2 bSubEle,Ele_Fire,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20942,'Manteau_Of_Guardsman','Manteau Of Guardsman',4,20,NULL,500,NULL,15,NULL,1,0xFFFFFFFF,63,2,4,NULL,'100',1,0,'.@r = getrefine(); bonus bMdef,15; bonus bMaxHPrate,5+3*(.@r/3); bonus bMaxSPrate,5+3*(.@r/3); bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20943,'Geffen_Magic_Muffler','Geffen Magic Muffler',4,20,NULL,550,NULL,20,NULL,1,0xFFFFFFFE,63,2,4,NULL,'99',1,0,'.@r = getrefine(); .@val = -10; bonus bMatk,(10*(.@r/2)); bonus bMatkRate,(.@r/3); if (.@r >= 7) { bonus2 bMagicAtkEle,Ele_All,5; } if (.@r >= 9) { .@val -= 10; } bonus bVariableCastrate,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20944,'Anti_Magic_Manteau','Anti Magic Manteau',4,20,NULL,750,NULL,23,NULL,1,0xFFFFFFFE,63,2,4,NULL,'99',1,0,'.@r = getrefine(); bonus bMaxHP,(300+(100*(.@r/2))); bonus bMaxHPRate,(2*(.@r/3)); if (.@r >= 7) { bonus2 bAddClass,Class_All,7; } if (.@r >= 9) { bonus bVariableCastrate,-10; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20948,'Illusion_Morpheus\'s_Shawl','Illusion Morpheus\'s Shawl',4,20,NULL,600,NULL,8,NULL,1,0xFFFFFFFF,63,2,4,NULL,'130',1,0,'bonus bMaxSPrate,10; bonus bMdef,5; .@r = getrefine(); if (.@r >= 7) { .@bonus = -10; if (.@r >= 9) { .@bonus -= 10; } bonus bVariableCastrate,.@bonus; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20949,'Ladon_Skin','Ladon\'s Skin',4,20,NULL,600,NULL,15,NULL,1,0xFFFFFFFF,63,2,4,NULL,'100',1,0,'bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5; bonus2 bSubEle,Ele_Wind,5; bonus2 bSubEle,Ele_Earth,5; bonus bAgi,5; bonus bVit,5; bonus bMdef,10; .@r = getrefine(); if (.@r>=7) { .@val = 10; bonus bSPGainValue,10; bonus bLongSPGainValue,10; if (.@r>=8) { .@s = (readparam(bAgi)+readparam(bVit))/20; bonus bBaseAtk,15*.@s; bonus bHit,5*.@s; if (.@r>=9) { .@val += 10; } } bonus bSPGainValue,.@val; bonus bLongSPGainValue,.@val; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20952,'Nameless_Assassin_Muffler','Nameless Assassin\'s Muffler',4,20,NULL,100,NULL,10,NULL,1,0xFFFFFFFF,63,2,4,NULL,'100',1,0,'.@r= getrefine(); bonus bMdef,5; bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus2 bSubRace,RC_Player_Human,5; if (.@r>=7) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bAspd,1; bonus bHPGainValue,5; bonus bLongHPGainValue,5; } if (.@r>=8) bonus bSpeedRate,40; if (.@r>=9) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bAspd,1; bonus bHPGainValue,5; bonus bLongHPGainValue,5; } if (.@r>=10) skill "AS_CLOAKING",3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20962,'Typhon_Skin','Typhon\'s Skin',4,20,NULL,600,NULL,15,NULL,1,0xFFFFFFFF,63,2,4,NULL,'100',1,0,'bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Fish,5; bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubEle,Ele_Poison,5; bonus bAgi,5; bonus bVit,5; bonus bMdef,10; .@r = getrefine(); if (.@r>=7) { .@sp = 10; if (.@r>=8) { .@s = (readparam(bAgi)+readparam(bVit))/20; bonus bMatk,15*.@s; bonus bDef,20*.@s; if (.@r>=9) { .@sp += 10; } } bonus bMagicSPGainValue,.@sp; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (20969,'Rainbow_Muffler','Rainbow Muffler',4,20,NULL,300,NULL,12,NULL,0,0xFFFFFFFF,63,2,4,NULL,'100',1,0,'.@r = getrefine(); .@lvl = getskilllv("WM_GLOOMYDAY"); if (.@r >= 7) { .@val = 10; } else if (.@r >= 5) { .@val = 5; } else { .@val = 2; } bonus bMaxHPrate,.@val; bonus bMaxSPrate,.@val; bonus bMatkRate,.@val+(4*.@lvl); bonus2 bSubRace,RC_Player_Human,5; bonus2 bSkillAtk,"WM_METALICSOUND",4*.@lvl; if (getskilllv("WM_FRIGG_SONG") == 5) { bonus2 bSkillCooldown,"WM_METALICSOUND",-200; bonus bAspdRate,10; } if (getskilllv("WM_LULLABY_DEEPSLEEP") == 5) { skill "AL_HEAL",10; bonus bMagicHPGainValue,200; bonus bMagicSPGainValue,20; }',NULL,NULL); -#=================================================================== -# More 2-Handed Swords -#=================================================================== -REPLACE INTO `item_db_re` VALUES (21000,'Upg_Twohand_Sword','Upg Two-Handed Sword',5,20,NULL,1500,'100',NULL,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);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (21001,'Velum_Claymore','Vellum Claymore',5,20,NULL,3500,'260',NULL,1,0,0x00004082,63,2,34,4,'95',1,3,'bonus2 bAddRace,RC_Player_Human,80; bonus2 bIgnoreDefRaceRate,RC_Player_Human,30; .@r = getrefine(); if(.@r>=6) { bonus2 bAddRace,RC_Player_Human,40; } if(.@r>=9) { autobonus2 "{ bonus bShortWeaponDamageReturn,20; bonus bMagicDamageReturn,20; }",6000,2000,BF_WEAPON,"{ specialeffect2 EF_REFLECTSHIELD; }"; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (21002,'Velum_Katzbalger','Vellum Katzbalger',5,20,NULL,2500,'100',NULL,1,0,0x00004082,63,2,34,4,'95',1,3,'bonus3 bHPVanishRaceRate,RC_Player_Human,1000,8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (21003,'Muramasa_','Muramasa',5,20,NULL,1000,'155',NULL,1,2,0x00004082,63,2,34,4,'48',1,3,'bonus bCritical,30; bonus bAspdRate,8; bonus2 bAddEff2,Eff_Curse,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (21004,'Alca_Bringer_','Alca Bringer',5,20,NULL,3400,'280',NULL,2,2,0x00004082,63,2,34,3,'100',1,3,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (21005,'Metal_Two_Hand_Sword','Metal Two Hand Sword',5,20,NULL,0,'95',NULL,1,1,0x00004082,63,2,34,3,'1',1,3,'.@r = getrefine(); bonus bBaseAtk,(.@r*6); bonus bMatk,(.@r*2); .@i = min(BaseLevel/10,12); if(.@i>2) bonus bBaseAtk,((.@i-2)*5);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (21006,'TE_Woe_Two_Hand_Sword','TE Woe Two Hand Sword',5,0,NULL,0,'150',NULL,1,0,0x00004082,63,2,34,3,'40',1,3,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Bleeding,3000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (21007,'Heavy_Sword','Heavy Greatsword',5,20,NULL,2500,'330',NULL,1,1,0x00004082,63,2,34,1,'150',1,3,'bonus bStr,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (21008,'Small_Karasuma','Small Karasuma',5,20,NULL,1000,'170',NULL,1,2,0x00004082,63,2,34,4,'50',1,3,'bonus bCritAtkRate,getrefine()*2; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (21009,'Thanos_Great_Sword','Thanos Great Sword',5,10,NULL,1300,'280:120',NULL,1,1,0x00004082,56,2,34,4,'120',1,3,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000;',NULL,'heal -1000,0;'); -REPLACE INTO `item_db_re` VALUES (21010,'Tw_Sword_Of_Evil_Slayer','Evil Slayer Slaher Sword',5,0,NULL,2000,'225',NULL,1,1,0x00004082,63,2,34,3,'100',1,3,'bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; .@r = getrefine(); if(.@r>=9) { .@dmg = 5; if(.@r>=12) { .@dmg += 7; } bonus2 bAddClass,Class_All,.@dmg; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (21011,'Giant_Blade','Gigantic Blade',5,30000,NULL,5000,'300',NULL,1,1,0x00004082,56,2,34,4,'130',1,3,'bonus bUnbreakableWeapon; bonus bAspdRate,-5; bonus bCritAtkRate,getrefine(); if(readparam(bStr)<=110){ bonus bAtk,-250; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (21012,'Some_Wizard_MagicSword','Some Wizard MagicSword',5,0,NULL,2200,'200:150',NULL,1,2,0x00000080,56,2,34,4,'110',1,3,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (21013,'Hetairoi_Sword','Hetairoi Sword',5,0,NULL,2200,'210',NULL,1,2,0x00000080,56,2,34,4,'110',1,3,'bonus2 bSkillUseSP,"KN_AUTOCOUNTER",2; bonus2 bSkillUseSP,"LK_PARRYING",25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (21014,'Infinity_Two-Handed_Sword','Infinity Two-Handed Sword',5,20,NULL,500,'230',NULL,1,1,0x00004082,56,2,34,4,'100',1,3,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (21015,'Crimson_Two-Handed_Sword','Crimson Two-Handed Sword',5,20,NULL,1700,'170',NULL,1,2,0x00004082,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);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (21016,'Two_Handed_Sword_of_Vicious_Mind','Two-Handed Sword of Vicious Mind',5,20,NULL,2200,'220',NULL,1,1,0x00004082,63,2,34,4,'160',1,3,'bonus bAtk,pow(min(getrefine(),15),2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (21018,'Lindy_Hop','Lindy Hop',5,20,NULL,3400,'340',NULL,1,2,0x00004082,56,2,34,4,'170',1,3,'.@r = getrefine(); bonus2 bAddClass,Class_All,.@r/2; bonus bAspdRate,.@r; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (21019,'Onimaru','Onimaru',5,0,NULL,4200,'75',NULL,1,2,0x00000080,56,2,34,4,'130',1,3,'.@bStr = readparam(bStr); .@r = getrefine(); bonus bBaseAtk,(min(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; bonus4 bAutoSpell,"NPC_WIDECURSE",4,100,0; if (.@r > 8) bonus4 bAutoSpellOnSkill,"LK_BERSERK","BS_OVERTHRUST",5,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (21039,'Royal_Knight\'s_Broadsword','Royal Knight\'s Broadsword',5,20,NULL,4000,'280',NULL,1,2,0x00004082,56,2,34,4,'175',1,3,'.@r = getrefine(); bonus bBaseAtk,20*(.@r/2); if (.@r>=7) bonus bCritAtkRate,10; if (.@r>=9) bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (21047,'Beam_Claymor-OS','Beam Claymor-OS',5,20,NULL,1800,'250',NULL,1,2,0x00004082,56,2,34,4,'130',1,3,'.@r = getrefine(); bonus bUnbreakableWeapon; bonus bCritical,5; if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus bCritAtkRate,15; if (.@r >= 11) { bonus2 bAddSize,Size_Small,20; bonus2 bAddSize,Size_Medium,20; } } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (21050,'Illusion_Tae_Goo_Lyeon','Illusion Tae Goo Lyeon',5,20,NULL,2000,'250',NULL,1,2,0x00004082,56,2,34,4,'120',1,3,'.@r = getrefine(); bonus bFlee2,10; bonus bLongAtkRate,.@r*2; if (.@r >= 7) { bonus bUseSPrate,-20; if (.@r >= 9) { bonus bDelayrate,-20; if (.@r >= 11) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; } } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (21051,'Volar','Volar',5,20,NULL,2800,'280',NULL,1,2,0x00000080,56,2,34,4,'170',1,3,'.@r = getrefine(); bonus2 bSkillAtk,"KN_BOWLINGBASH",30; bonus bBaseAtk,4*.@r; if (.@r>=9) { bonus2 bSkillCooldown,"KN_BOWLINGBASH",-1000; bonus2 bSkillCooldown,"RK_IGNITIONBREAK",-1000; } if (.@r>=11) { bonus bUnbreakableWeapon; bonus2 bSkillAtk,"KN_BOWLINGBASH",20; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (21052,'Vernan','Vernan',5,20,NULL,6500,'300',NULL,1,2,0x00000080,56,2,34,4,'170',1,3,'.@r = getrefine(); bonus bLongAtkRate,.@r; bonus2 bAddClass,Class_All,5; if (.@r>=9) { bonus2 bSkillAtk,"LK_SPIRALPIERCE",30; bonus2 bSkillAtk,"RK_SONICWAVE",30; } if (.@r>=11) { bonus2 bSkillCooldown,"RK_SONICWAVE",-1500; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (21058,'Up_Dragonic_Slayer','Patent Dragonic Slayer',5,NULL,NULL,2000,'200',NULL,1,2,0x00000080,56,2,34,4,'150',1,2,'.@r = getrefine(); bonus bMaxHPrate,.@r/2*5; bonus bMaxSPrate,.@r/2*5; bonus2 bSkillAtk,"RK_DRAGONBREATH",.@r/3*5; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",.@r/3*5; if (.@r>=7){ bonus bDelayRate,-10; bonus bVariableCastrate,-10; } if (.@r>=9){ bonus bLongAtkRate,10; } if (.@r>=11){ bonus bDelayRate,-7; bonus bMaxSPrate,5; }',NULL,NULL); -#=================================================================== -# New Shoes -#=================================================================== -REPLACE INTO `item_db_re` VALUES (22000,'Temporal_Str_Boots','Temporal Boots Of Strength',4,20,NULL,600,NULL,25,NULL,0,0xFFFFFFFE,56,2,64,NULL,'99',1,NULL,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAtk,7*(.@r/3); if(readparam(bStr)>=120) bonus bAtk,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22001,'Temporal_Int_Boots','Temporal Boots Of Intelligence',4,20,NULL,600,NULL,20,NULL,0,0xFFFFFFFE,56,2,64,NULL,'99',1,NULL,'.@r = getrefine(); bonus bMdef,5; bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMatk,10*(.@r/3); if(readparam(bInt)>=120) bonus bMatk,60;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22002,'Temporal_Agi_Boots','Temporal Boots Of Agility',4,20,NULL,600,NULL,25,NULL,0,0xFFFFFFFE,56,2,64,NULL,'99',1,NULL,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAspdRate,3*(.@r/3); if(readparam(bAgi)>=120) bonus bAspd,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22003,'Temporal_Vit_Boots','Temporal Boots Of Vitality',4,20,NULL,600,NULL,25,NULL,0,0xFFFFFFFE,56,2,64,NULL,'99',1,NULL,'.@r = getrefine(); bonus bMaxHP,300+(300*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); if(readparam(bVit)>=120) bonus bMaxHPrate,8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22004,'Temporal_Dex_Boots','Temporal Boots Of Dexterity',4,20,NULL,600,NULL,25,NULL,0,0xFFFFFFFE,56,2,64,NULL,'99',1,NULL,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bDex,3*(.@r/3); if(readparam(bDex)>=120){ bonus bLongAtkRate,5; bonus bFixedCast,-500; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22005,'Temporal_Luk_Boots','Temporal Boots Of Luck',4,20,NULL,600,NULL,20,NULL,0,0xFFFFFFFE,56,2,64,NULL,'99',1,NULL,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMdef,5; bonus bCritAtkRate,2*(.@r/3); if(readparam(bLuk)>=120) bonus bCritAtkRate,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22006,'Temporal_Str_Boots_','Temporal Boots Of Strength',4,20,NULL,600,NULL,25,NULL,1,0xFFFFFFFE,56,2,64,NULL,'99',1,NULL,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAtk,7*(.@r/3); if(readparam(bStr)>=120) bonus bAtk,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22007,'Temporal_Vit_Boots_','Temporal Boots Of Vitality',4,20,NULL,600,NULL,25,NULL,1,0xFFFFFFFE,56,2,64,NULL,'99',1,NULL,'.@r = getrefine(); bonus bMaxHP,300+(300*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); if(readparam(bVit)>=120) bonus bMaxHPrate,8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22008,'Temporal_Dex_Boots_','Temporal Boots Of Dexterity',4,20,NULL,600,NULL,25,NULL,1,0xFFFFFFFE,56,2,64,NULL,'99',1,NULL,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bDex,3*(.@r/3); if(readparam(bDex)>=120){ bonus bLongAtkRate,5; bonus bFixedCast,-500; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22009,'Temporal_Int_Boots_','Temporal Boots Of Intelligence',4,20,NULL,600,NULL,20,NULL,1,0xFFFFFFFE,56,2,64,NULL,'99',1,NULL,'.@r = getrefine(); bonus bMdef,5; bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMatk,10*(.@r/3); if(readparam(bInt)>=120) bonus bMatk,60;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22010,'Temporal_Agi_Boots_','Temporal Boots Of Agility',4,20,NULL,600,NULL,25,NULL,1,0xFFFFFFFE,56,2,64,NULL,'99',1,NULL,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAspdRate,3*(.@r/3); if(readparam(bAgi)>=120) bonus bAspd,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22011,'Temporal_Luk_Boots_','Temporal Boots Of Luck',4,20,NULL,600,NULL,20,NULL,1,0xFFFFFFFE,56,2,64,NULL,'99',1,NULL,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMdef,5; bonus bCritAtkRate,2*(.@r/3); if(readparam(bLuk)>=120) bonus bCritAtkRate,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22012,'Mana_Boots','Mana Boots',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,64,NULL,'1',1,NULL,'bonus2 bExpAddRace,RC_All,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22014,'Enhanced_Variant_Shoes','Enhanced Variant Shoes',4,20,NULL,500,NULL,13,NULL,1,0x7CCFDF80,63,2,64,NULL,'85',1,0,'bonus bMaxHPrate,12; bonus bMaxSPrate,12; .@r = getrefine(); bonus bDef,.@r; bonus bMdef,.@r;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22015,'Impr_Angel\'s_Arrival','Advanced Angel\'s Reincarnation',4,10000,NULL,300,NULL,8,NULL,1,0x00000001,63,2,64,NULL,'99',1,0,'bonus bMaxHP,500; bonus bMaxSP,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22016,'Assassin\'s_Shoes','Assassin\'s Shoes',4,20,NULL,300,NULL,10,NULL,0,0xFFFFFFFF,63,2,64,NULL,'30',1,0,'bonus2 bExpAddRace,RC_DemiHuman,5+getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22017,'Fisherman_Shoes','Fisherman\'s Shoes',4,20,NULL,300,NULL,10,NULL,0,0xFFFFFFFF,63,2,64,NULL,'30',1,0,'bonus2 bExpAddRace,RC_Fish,5+getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22018,'Shoes_Of_Wise_Man','Shoes Of Wise Man',4,10,NULL,300,NULL,15,NULL,1,0xFFFFFFFF,63,2,64,NULL,'50',1,NULL,'.@r = getrefine(); if(.@r>5){ bonus bInt,.@r-5; bonus bMaxHPrate,-(.@r-5); }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22032,'Exorcist_Shoes','Exorcist\'s Shoes',4,20,NULL,300,NULL,10,NULL,0,0xFFFFFFFF,63,2,64,NULL,'30',1,0,'bonus2 bExpAddRace,RC_Demon,5+getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22033,'Boots_Of_Gray','Boots of Gray',4,20,NULL,400,NULL,25,NULL,1,0xFFFFFFFF,56,2,64,NULL,'120',1,0,'bonus2 bSubEle,Ele_Holy,2+getrefine()/3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22034,'Crimson_Gaiter','Crimson Gaiter',4,0,NULL,500,NULL,10,NULL,0,0xFFFFFFFF,63,2,64,NULL,'50',1,NULL,'bonus bCritical,2; bonus bCritAtkRate,2; if(getrefine()>=7){ bonus bCritical,3; bonus bCritAtkRate,3; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22035,'Vet_Nepen_Heel','Heoric Nepenthes Shoes',4,10,NULL,300,NULL,10,NULL,1,0xFFFFFFFF,63,2,64,NULL,'160',1,NULL,'.@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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22036,'Vet_SliverFox_Boots','Heroic Silver Fox Leather Boots',4,10,NULL,300,NULL,15,NULL,1,0xFFFFFFFF,63,2,64,NULL,'160',1,NULL,'.@r = getrefine(); if (.@r>=8 && .@r<=13) .@i=.@r; else if (.@r>13) .@i=13; bonus bLongAtkRate,5+.@i;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22037,'Vet_Ungo_Boots','Heroic Ungoliant Upgrade Boots',4,10,NULL,300,NULL,10,NULL,1,0xFFFFFFFF,63,2,64,NULL,'160',1,NULL,'.@r = getrefine(); if (.@r>=8 && .@r<=13) .@i=.@r; else if (.@r>13) .@i=13; bonus bUseSPrate,-5-.@i;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22042,'Talaria_Shoes','Talaria Shoes',4,10,NULL,300,NULL,15,NULL,1,0xFFFFFFFF,63,2,64,NULL,'50',1,NULL,'bonus bAgi,2; bonus bAspd,1; bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22043,'Supplement_Part_Agi','Supplement Part Agi',4,25000,NULL,350,NULL,25,NULL,1,0x00000400,56,2,64,NULL,'100',1,NULL,'bonus bAspdRate,5+(getrefine()/4);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22044,'Upgrade_Part_Booster','Reinforced Parts - Booster',4,10,NULL,1000,NULL,23,NULL,1,0x00000400,56,2,64,NULL,'100',1,NULL,'bonus2 bSkillUseSP,"NC_HOVERING",15; if(getrefine()>=7){bonus2 bSkillUseSP,"NC_HOVERING",-20;}',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22045,'Beach_Sandals','Summer Sandals',4,10,NULL,200,NULL,5,NULL,0,0xFFFFFFFF,63,2,64,NULL,'0',1,0,'bonus bFlee,5; bonus3 bAutoSpellWhenHit,"AL_INCAGI",10,300;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22046,'Airship_Boots','Airship\'s Boots',4,10,NULL,0,NULL,26,NULL,0,0xFFFFFFFF,63,2,64,NULL,'125',0,NULL,'bonus bAgi,1; bonus bAspdRate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22047,'Felock_Boots','Felrock\'s Boots',4,10,NULL,250,NULL,13,NULL,0,0xFFFFFFFF,63,2,64,NULL,'125',1,NULL,'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; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22059,'Aegir_Shoes','Aegir Shoes',4,10,NULL,300,NULL,13,NULL,1,0xFFFFFFFF,63,2,64,NULL,'40',1,NULL,'bonus bUnbreakableShoes; bonus bMaxHP,500; bonus bMaxSP,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22064,'Thorny_Shoes','Thorny Shoes',4,0,NULL,1000,NULL,25,NULL,1,0xFFFFFFFF,63,2,64,NULL,'70',1,NULL,'bonus bShortWeaponDamageReturn,getrefine()/2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22066,'Spirit_Shoes','Spirit Shoes',4,10,NULL,250,NULL,12,NULL,1,0xFFFFFFFE,63,2,64,NULL,'90',1,NULL,'bonus bMdef,3; bonus2 bSubEle,Ele_All,5; .@r = getrefine(); bonus bMaxHPrate,.@r*1; bonus bMaxSPrate,.@r*1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22067,'Witch_Shoes','Shoe of Witch',4,10,NULL,400,NULL,10,NULL,0,0xFFFFFFFE,63,2,64,NULL,'1',1,NULL,'skill "ALL_CATCRY",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22069,'Lian_Shoes','Lian Shoes',4,0,NULL,250,NULL,12,NULL,1,0xFFFFFFFF,63,2,64,NULL,'90',1,NULL,'bonus bMdef,3; bonus2 bSubEle,Ele_Neutral,5; .@r = getrefine(); bonus bMaxHPrate,.@r; bonus bMaxSPrate,.@r;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22072,'Hikingboots','Hikingboots',4,0,NULL,500,NULL,10,NULL,1,0xFFFFFFFF,63,2,64,NULL,'100',1,NULL,'.@r = getrefine(); bonus bMaxHPRate,4+(.@r/3); bonus bMaxSPRate,4+(.@r/3); if (.@r > 9) bonus bSpeedRate,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22075,'Rift_Shoes','Rift Shoes',4,20,NULL,250,NULL,12,NULL,1,0xFFFFFFFF,63,2,64,NULL,'100',1,NULL,'.@r = getrefine(); bonus bMaxHP,(.@r >= 9 ? 1300 : .@r >= 7 ? 700 : 300); bonus bMaxSP,-50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22076,'Wooden_Slipper','Wooden Slipper',4,20,NULL,50,NULL,10,NULL,1,0x80000000,7,2,64,NULL,'9',1,NULL,'bonus2 bHPRegenRate,2,10000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22077,'Red_Eco-Friendly_Shoes','Red Eco-Friendly Shoes',4,20,NULL,100,NULL,20,NULL,1,0x80000000,7,2,64,NULL,'18',1,NULL,'bonus bCritical,5; bonus2 bHPRegenRate,4,10000; bonus2 bSPRegenRate,1,10000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22078,'Unity_STR_Boots','Unity STR Boots',4,10,NULL,300,NULL,20,NULL,1,0xFFFFFFFF,63,2,64,NULL,'1',1,NULL,'.@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bStr,.@r/2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22079,'Unity_AGI_Boots','Unity AGI Boots',4,10,NULL,300,NULL,20,NULL,1,0xFFFFFFFF,63,2,64,NULL,'1',1,NULL,'.@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bAgi,.@r/2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22080,'Unity_DEX_Boots','Unity DEX Boots',4,10,NULL,300,NULL,20,NULL,1,0xFFFFFFFF,63,2,64,NULL,'1',1,NULL,'.@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bDex,.@r/2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22081,'Unity_INT_Boots','Unity INT Boots',4,10,NULL,300,NULL,20,NULL,1,0xFFFFFFFF,63,2,64,NULL,'1',1,NULL,'.@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bInt,.@r/2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22082,'Polyhedron_Shoes','Polyhedron Shoes',4,0,NULL,500,NULL,12,NULL,1,0xFFFFFFFF,63,2,64,NULL,'90',1,NULL,'.@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; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22083,'Private_Doram_Shoes','Private Doram Shoes',4,20,NULL,500,NULL,25,NULL,1,0x80000000,7,2,64,NULL,'100',1,NULL,'bonus bMaxHP,100; bonus bMaxSP,50; .@r = getrefine()/3; bonus bHPrecovRate,.@r*10; bonus bSPrecovRate,.@r*10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22084,'Luxury_Doram_Shoes','Luxury Doram Shoes',4,20,NULL,600,NULL,30,NULL,1,0x80000000,7,2,64,NULL,'140',1,NULL,'bonus bMaxHP,300; bonus bMaxSP,100; .@r = getrefine()/3; bonus bHPrecovRate,20*.@r; bonus bSPrecovRate,20*.@r;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22085,'Elegant_Doram_Shoes','Elegant Doram Shoes',4,20,NULL,700,NULL,35,NULL,1,0x80000000,7,2,64,NULL,'175',1,NULL,'bonus bMaxHPrate,10; bonus bMaxSPrate,5; .@r = getrefine()/2; bonus bMaxHP,100*.@r; bonus bMaxSP,20*.@r; if(.@r >= 4) bonus2 bSkillUseSP,"SU_LOPE",5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22089,'Crimson_Gaiter_','Crimson Gaiter',4,0,NULL,500,NULL,10,NULL,1,0xFFFFFFFF,63,2,64,NULL,'50',1,NULL,'bonus bCritical,2; bonus bCritAtkRate,2; if(getrefine()>=7){ bonus bCritical,3; bonus bCritAtkRate,3; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22101,'Angel_Poring_Boots','Angel Poring Boots',4,10,NULL,300,NULL,15,NULL,1,0xFFFFFFFF,63,2,64,NULL,'1',1,NULL,'bonus bAllStats,1; skill "AL_HEAL",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22103,'Excelion_Leg','Excelion Leg',4,0,NULL,500,NULL,13,NULL,0,0xFFFFFFFF,63,2,64,NULL,'100',1,NULL,'.@r = getrefine(); bonus bMaxHP,5+((BaseLevel > 129) ? 4 : 0)+(.@r/3)*3; bonus bMaxSP,5+((BaseLevel > 129) ? 4 : 0)+(.@r/3)*3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22104,'Pororoca_Shoes','Pororoca Shoes',4,20,NULL,500,NULL,15,NULL,0,0xFFFFFFFF,63,2,64,NULL,'100',1,0,'bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bMdef,15; bonus bMatkRate,2; bonus2 bMagicAtkEle,Ele_Water,2; skill "SA_DELUGE",5; if (getrefine()>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bMatkRate,3; bonus2 bMagicAtkEle,Ele_Water,3; } if (getrefine()>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bMatkRate,5; bonus2 bMagicAtkEle,Ele_Water,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22106,'Giant_Boots','Giant Boots',4,0,NULL,500,NULL,13,NULL,1,0xFFFFFFFF,63,2,64,NULL,'85',1,NULL,'bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; bonus bMaxHPrate,2; bonus bMaxSPrate,2; .@r = getrefine(); if (.@r > 4) { bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; bonus bMaxHPrate,4; bonus bMaxSPrate,4; } if (.@r > 6) { bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; bonus bMaxHPrate,4; bonus bMaxSPrate,4; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22107,'Modified_Str_Boots','Modified Str Boots',4,20,NULL,600,NULL,25,NULL,0,0x60000000,63,2,64,NULL,'99',1,NULL,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAtk,7*(.@r/3); if(readparam(bStr)>=120) bonus bBaseAtk,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22108,'Modified_Int_Boots','Modified Int Boots',4,20,NULL,600,NULL,25,NULL,0,0x60000000,63,2,64,NULL,'99',1,NULL,'.@r = getrefine(); bonus bMdef,5; bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMatk,10*(.@r/3); if(readparam(bInt)>=120) bonus bMatk,60;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22109,'Modified_Agi_Boots','Modified Agi Boots',4,20,NULL,600,NULL,25,NULL,0,0x60000000,63,2,64,NULL,'99',1,NULL,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAspdRate,3*(.@r/3); if(readparam(bAgi)>=120) bonus bAspd,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22110,'Modified_Vit_Boots','Modified Vit Boots',4,20,NULL,600,NULL,25,NULL,0,0x60000000,63,2,64,NULL,'99',1,NULL,'.@r = getrefine(); bonus bMaxHP,300+(300*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); if(readparam(bVit)>=120) bonus bMaxHPrate,8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22111,'Modified_Dex_Boots','Modified Dex Boots',4,20,NULL,600,NULL,25,NULL,0,0x60000000,63,2,64,NULL,'99',1,NULL,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bDex,3*(.@r/3); if(readparam(bDex)>=120){ bonus bLongAtkRate,5; bonus bFixedCast,-500; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22112,'Modified_Luk_Boots','Modified Luk Boots',4,20,NULL,600,NULL,25,NULL,0,0x60000000,63,2,64,NULL,'99',1,NULL,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMdef,5; bonus bCritAtkRate,2*(.@r/3); if(readparam(bLuk)>=120) bonus bCritAtkRate,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22113,'Modified_Str_Boots_','Modified Str Boots',4,20,NULL,600,NULL,25,NULL,1,0x60000000,63,2,64,NULL,'99',1,NULL,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAtk,7*(.@r/3); if(readparam(bStr)>=120) bonus bBaseAtk,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22114,'Modified_Int_Boots_','Modified Int Boots',4,20,NULL,600,NULL,25,NULL,1,0x60000000,63,2,64,NULL,'99',1,NULL,'.@r = getrefine(); bonus bMdef,5; bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMatk,10*(.@r/3); if(readparam(bInt)>=120) bonus bMatk,60;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22115,'Modified_Agi_Boots_','Modified Agi Boots',4,20,NULL,600,NULL,25,NULL,1,0x60000000,63,2,64,NULL,'99',1,NULL,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAspdRate,3*(.@r/3); if(readparam(bAgi)>=120) bonus bAspd,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22116,'Modified_Vit_Boots_','Modified Vit Boots',4,20,NULL,600,NULL,25,NULL,1,0x60000000,63,2,64,NULL,'99',1,NULL,'.@r = getrefine(); bonus bMaxHP,300+(300*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); if(readparam(bVit)>=120) bonus bMaxHPrate,8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22117,'Modified_Dex_Boots_','Modified Dex Boots',4,20,NULL,600,NULL,25,NULL,1,0x60000000,63,2,64,NULL,'99',1,NULL,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bDex,3*(.@r/3); if(readparam(bDex)>=120){ bonus bLongAtkRate,5; bonus bFixedCast,-500; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22118,'Modified_Luk_Boots_','Modified Luk Boots',4,20,NULL,600,NULL,25,NULL,1,0x60000000,63,2,64,NULL,'99',1,NULL,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMdef,5; bonus bCritAtkRate,2*(.@r/3); if(readparam(bLuk)>=120) bonus bCritAtkRate,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22120,'Shoes_of_Punishment','Shoes of Punishment',4,20,NULL,500,NULL,15,NULL,0,0xFFFFFFFF,63,2,64,NULL,'100',1,0,'bonus bMdef,15; bonus bMatkRate,2; bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus2 bSkillAtk,"AB_JUDEX",30; bonus2 bMagicAddEle,Ele_Holy,2; .@r = getrefine(); if (.@r>=5) { bonus bMatkRate,3; bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus2 bMagicAddEle,Ele_Holy,3; } if (.@r>=7) { bonus bMatkRate,5; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bMagicAddEle,Ele_Holy,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22122,'Para_Team_Boots100','Awakened Eden Group Boots I',4,0,NULL,0,NULL,22,NULL,0,0xFFFFFFFF,63,2,64,NULL,'100',1,NULL,'bonus bAllStats,1; bonus bHPrecovRate,30; bonus bSPrecovRate,14;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22123,'Para_Team_Boots115','Awakened Eden Group Boots II',4,0,NULL,0,NULL,25,NULL,0,0xFFFFFFFF,63,2,64,NULL,'115',1,NULL,'bonus bAllStats,1; bonus bHPrecovRate,36; bonus bSPrecovRate,18;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22124,'Para_Team_Boots130','Awakened Eden Group Boots III',4,0,NULL,0,NULL,27,NULL,0,0xFFFFFFFF,63,2,64,NULL,'130',1,NULL,'bonus bAllStats,2; bonus bHPrecovRate,36; bonus bSPrecovRate,18;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22125,'Para_Team_Boots145','Awakened Eden Group Boots IV',4,0,NULL,0,NULL,30,NULL,0,0xFFFFFFFF,63,2,64,NULL,'145',1,NULL,'bonus bAllStats,2; bonus bHPrecovRate,40; bonus bSPrecovRate,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22126,'Para_Team_Boots160','Awakened Eden Group Boots V',4,0,NULL,0,NULL,30,NULL,0,0xFFFFFFFF,63,2,64,NULL,'160',1,NULL,'bonus bAllStats,2; bonus bHPrecovRate,40; bonus bSPrecovRate,20; bonus bUseSPrate,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22131,'Spurred_Boots','Spurred Boots',4,0,NULL,500,NULL,0,NULL,1,0xFFFFFFFF,63,2,64,NULL,'100',1,0,'.@r = getrefine(); .@bonus = 5; if (.@r >=7) { .@bonus += 5; } if (.@r >=9) { .@bonus += 5; } bonus bMaxSPrate,.@bonus; bonus bSpeedRate,25; /* fix me: unknown speed value */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22133,'Illusion_Shoes','Illusion Shoes',4,20,NULL,400,NULL,10,NULL,1,0xFFFFFFFE,63,2,64,NULL,'99',1,0,'.@r = getrefine(); bonus bMaxHP,(100+(100*.@r)); bonus bMaxSP,(10+(5*.@r));',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22134,'Enforcer_Shoes','Enforcer Shoes',4,20,NULL,400,NULL,12,NULL,0,0xFFFFFFFF,63,2,64,NULL,'100',1,0,'.@r = getrefine(); .@hpsp = 3; .@a = getskilllv("GC_WEAPONCRUSH"); .@b = getskilllv("GC_WEAPONBLOCKING"); .@c = getskilllv("GC_COUNTERSLASH"); if (.@r >= 5) { .@hpsp += 7; .@dmg = BaseLevel; if (.@r >= 7) { .@hpsp += 10; .@dmg += BaseLevel + 30*getskilllv("AS_POISONREACT"); } bonus2 bSkillAtk,"ASC_METEORASSAULT",.@dmg; } bonus bMaxHPrate,.@hpsp; bonus bMaxSPrate,.@hpsp; bonus bMdef,10; skill "BS_MAXIMIZE",1; bonus2 bSkillUseSP,"ASC_METEORASSAULT",8; bonus2 bAddClass,Class_All,4*.@a; bonus2 bSkillCooldown,"GC_HALLUCINATIONWALK",-5000*.@b; bonus2 bIgnoreDefClassRate,Class_All,20*.@c; bonus2 bVariableCastrate,"ASC_METEORASSAULT",-7*(.@a+.@b+.@c);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22138,'Devil_Worshipper_Shoes','Devil Worshipper Shoes',4,20,NULL,500,NULL,15,NULL,0,0xFFFFFFFF,63,2,64,NULL,'100',1,0,'bonus bMdef,15; bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bMatkRate,2; bonus2 bMagicAtkEle,Ele_Neutral,2; bonus2 bMagicAtkEle,Ele_Fire,2; .@r = getrefine(); if (.@r>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bMatkRate,3; bonus2 bMagicAtkEle,Ele_Neutral,3; bonus2 bMagicAtkEle,Ele_Fire,3; } if (.@r>=5) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bMatkRate,5; bonus2 bMagicAtkEle,Ele_Neutral,5; bonus2 bMagicAtkEle,Ele_Fire,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22141,'YSF01_Greave','YSF01 Greave',4,0,NULL,1300,NULL,25,NULL,1,0xFFFFFFFF,63,2,64,NULL,'170',1,0,'.@r = getrefine(); if (.@r >= 8) { bonus bAspdRate,8; if (.@r >= 11) { bonus bAspd,1; if (.@r >= 13) { .@val = 10; } } } if (readparam(bLuk) >= 125) { .@val += 30; } if (.@val) { bonus bCritAtkRate,.@val; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22145,'Tengu\'s_Shoes','Tengu\'s Shoes',4,20,NULL,400,NULL,12,NULL,0,0xFFFFFFFF,63,2,64,NULL,'100',1,0,'.@r = getrefine(); .@a = getskilllv("SR_GENTLETOUCH_REVITALIZE"); .@b = getskilllv("SR_GENTLETOUCH_CURE"); .@c = getskilllv("SR_GENTLETOUCH_ENERGYGAIN"); .@hpsp = 3; if (.@r >= 5) { .@hpsp += 7; .@red = 5; if (.@r >= 7) { .@hpsp += 10; .@red += 5; } bonus2 bSkillUseSP,"MO_BODYRELOCATION",.@red; } bonus bMdef,10; bonus bMaxHPrate,.@hpsp+(2*.@b); bonus bMaxSPrate,.@hpsp; skill "SA_CASTCANCEL",1; bonus2 bSkillUseSP,"MO_BODYRELOCATION",5; bonus bDef,30*.@a; bonus2 bSubRace,RC_DemiHuman,.@a; bonus2 bSubRace,RC_Player_Human,.@a; bonus2 bVariableCastrate,"MO_CALLSPIRITS",-.@c*10; bonus2 bVariableCastrate,"MO_STEELBODY",-.@c*10; bonus2 bFixedCastrate,"CH_SOULCOLLECT",-.@c*10; bonus bAspdRate,2*getskilllv("SR_GENTLETOUCH_CHANGE"); bonus2 bAddClass,Class_All,4*getskilllv("SR_GENTLETOUCH_QUIET");',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22170,'Survivor\'s_Shoes','Survivor\'s Shoes',4,10,NULL,500,NULL,15,NULL,0,0xFFFFFFFF,63,2,64,NULL,'100',1,0,'.@r = getrefine(); if (.@r >= 7) { .@hpsp = 20; .@dmg = 10; } else if (.@r >= 5) { .@hpsp = 10; .@dmg = 5; } else { .@hpsp = 3; .@dmg = 2; } bonus bMdef,15; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bMaxHPrate,.@hpsp; bonus bMaxSPrate,.@hpsp; bonus bMatkRate,.@dmg; bonus2 bMagicAtkEle,Ele_Wind,.@dmg; bonus2 bMagicAtkEle,Ele_Earth,.@dmg;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22171,'Ancient_Hero_Boots','Ancient Hero Boots',4,20,NULL,600,NULL,15,NULL,1,0xFFFFFFFF,63,2,64,NULL,'100',1,0,'.@r = getrefine(); bonus bMaxHP,500; bonus bMaxSP,50; bonus bMaxHPrate,2*(.@r/3); bonus bMaxSPrate,.@r/3; if (.@r >= 9) { .@val = -300; if (.@r >= 12) { .@val -= 200; if (.@r >= 14) { bonus bDelayRate,-5; } } bonus bFixedCast,.@val; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22172,'Gray_Wing_Boots','Gray Wing Boots',4,20,NULL,500,NULL,15,NULL,0,0xFFFFFFFF,63,2,64,NULL,'100',1,0,'.@r = getrefine(); bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bMdef,15; bonus bLongAtkRate,2; bonus bCritAtkRate,2; skill "TF_HIDING",1; if (.@r>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bLongAtkRate,3; bonus bCritAtkRate,3; } if (.@r>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bLongAtkRate,5; bonus bCritAtkRate,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22173,'Beginner\'s_Boots','Beginner\'s Boots',4,20,NULL,0,NULL,10,NULL,1,0xFFFFFFFF,63,2,64,NULL,'100',0,0,'bonus bMaxHP,300; bonus bMaxSP,50; bonus bFlee,15; bonus bHPrecovRate,10; bonus bSPrecovRate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22189,'Pilgrim_Shoes','Pilgrim Shoes',4,20,NULL,500,NULL,15,NULL,0,0xFFFFFFFF,63,2,64,NULL,'100',1,0,'.@r = getrefine(); bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bDef,50*getskilllv("AB_SECRAMENT"); bonus bMdef,15; bonus bAspdRate,4*getskilllv("AB_CANTO"); bonus2 bSkillCooldown,"AB_PRAEFATIO",-1000; bonus bDelayrate,-6*getskilllv("AB_PRAEFATIO"); bonus2 bSubRace,RC_DemiHuman,2*getskilllv("AB_SECRAMENT"); bonus2 bSubRace,RC_Player_Human,2*getskilllv("AB_SECRAMENT"); bonus bHealPower,5*getskilllv("AB_HIGHNESSHEAL"); if (.@r>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bUseSPrate,-3; } if (.@r>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bUseSPrate,-5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22190,'Illusion_Boots','Illusion Boots',4,0,NULL,600,NULL,16,NULL,1,0x416E5CEA,63,2,64,NULL,'100',1,0,'.@r = getrefine(); bonus bCritical,(5*(.@r/3)); bonus bAspdRate,.@r;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22192,'Illusion_Goibne\'s_Greaves','Illusion Goibne\'s Greaves',4,0,NULL,1200,NULL,42,NULL,1,0xFFFFFFFE,63,2,64,NULL,'130',1,0,'.@r = getrefine(); bonus bMaxHPrate,5; bonus bMaxSPrate,5; if (.@r >= 7) { bonus bVariableCastrate,-5; if (.@r >= 9) { bonus bLongAtkRate,10; } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22195,'Booster_Shoes','Booster Shoes',4,20,NULL,800,NULL,30,NULL,1,0xFFFFFFFF,63,2,64,NULL,'100',1,NULL,'.@r = getrefine(); bonus bMdef,10; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bSubRace,RC_Player_Human,5; if (.@r>=7) { if (readparam(bStr)>=125) bonus bBaseAtk,90; if (readparam(bAgi)>=125) bonus bAspd,2; if (readparam(bVit)>=125) bonus bMaxHPrate,12; if (readparam(bInt)>=125) bonus bMatk,120; if (readparam(bDex)>=125) bonus bLongAtkRate,10; if (readparam(bLuk)>=125) bonus bCritAtkRate,20; } if (.@r>=9) { if (readparam(bStr)>=125) bonus bBaseAtk,90; if (readparam(bAgi)>=125) bonus bAspd,2; if (readparam(bVit)>=125) bonus bMaxHPrate,12; if (readparam(bInt)>=125) bonus bMatk,120; if (readparam(bDex)>=125) bonus bLongAtkRate,10; if (readparam(bLuk)>=125) bonus bCritAtkRate,20; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22196,'Illusion_Leg_A-type','Illusion Leg A-type',4,20,NULL,500,NULL,20,NULL,1,0xFFFFFFFF,63,2,64,NULL,'130',1,NULL,'.@r = getrefine(); bonus bMaxSP,200+(20*(.@r/2)); if (.@r >= 7) { bonus bLongAtkRate,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22197,'Illusion_Leg_B-type','Illusion Leg B-type',4,20,NULL,500,NULL,20,NULL,1,0xFFFFFFFF,63,2,64,NULL,'130',1,NULL,'.@r = getrefine(); bonus bMaxSP,200+(20*(.@r/2)); if (.@r >= 7) { bonus2 bMagicAtkEle,Ele_All,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22198,'Traveler_Shoes','Traveler Shoes',4,20,NULL,500,NULL,15,NULL,0,0xFFFFFFFF,63,2,64,NULL,'100',1,0,'bonus bMdef,15; bonus bMaxHPrate,3+(2*getskilllv("WM_FRIGG_SONG")); bonus bMaxSPrate,3; bonus bMatkRate,2; bonus2 bMagicAtkEle,Ele_Neutral,5; bonus bAllStats,getskilllv("WA_SWING_DANCE"); bonus bAspdRate,4*getskilllv("MI_HARMONIZE"); bonus2 bSkillAtk,"WM_METALICSOUND",10*getskilllv("WM_GLOOMYDAY"); bonus2 bVariableCastrate,"WM_METALICSOUND",-10*getskilllv("WM_GLOOMYDAY"); bonus3 bAddEff,Eff_Sleep,2*getskilllv("WM_LULLABY_DEEPSLEEP"),ATF_MAGIC; .@r = getrefine(); if (.@r>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bMatkRate,3; bonus2 bMagicAtkEle,Ele_Neutral,3; } if (.@r>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bMatkRate,5; bonus2 bMagicAtkEle,Ele_Neutral,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22199,'Lava_Leather_Boots','Lava Leather Boots',4,20,NULL,600,NULL,50,NULL,1,0xFFFFFFFF,63,2,64,NULL,'175',1,0,'.@r = getrefine(); bonus2 bAddClass,Class_All,2; if (.@r>=7) bonus bBaseAtk,25; if (.@r>=9) bonus bBaseAtk,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22200,'Lava_Leather_Shoes','Lava Leather Shoes',4,20,NULL,600,NULL,50,NULL,1,0xFFFFFFFF,63,2,64,NULL,'175',1,0,'.@r = getrefine(); bonus bCritical,5; if (.@r>=7) bonus2 bAddSize,Size_All,5; if (.@r>=9) bonus bCritAtkRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22201,'Lava_Leather_Sandals','Lava Leather Sandals',4,20,NULL,500,NULL,25,NULL,1,0xFFFFFFFF,63,2,64,NULL,'175',1,0,'.@r = getrefine(); bonus2 bMagicAtkEle,Ele_Fire,3; if (.@r>=7) bonus bMatk,25; if (.@r>=9) bonus bMatk,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22207,'Imperial_Boots','Imperial Boots',4,20,NULL,400,NULL,12,NULL,0,0xFFFFFFFF,63,2,64,NULL,'100',1,0,'.@r = getrefine(); bonus bMdef,10; bonus bMaxHPrate,3; bonus bMaxSPrate,3; skill "AL_INCAGI",1; bonus2 bSkillAtk,"LG_BANISHINGPOINT",10*getskilllv("LG_CANNONSPEAR"); bonus2 bAddClass,Class_All,4*getskilllv("CR_DEVOTION"); if (getskilllv("LG_INSPIRATION")>=5) bonus2 bSkillCooldown,"LG_SHIELDSPELL",-2000; bonus2 bIgnoreDefClassRate,Class_All,20*getskilllv("LG_PINPOINTATTACK"); if (.@r>=5) { bonus bMaxSPrate,7; bonus bMaxHPrate,7; bonus bLongAtkRate,5; } if (.@r>=7) { bonus bMaxSPrate,10; bonus bMaxHPrate,10; bonus bLongAtkRate,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22210,'Fluffy_Fish_Shoes','Fluffy Fish Shoes',4,20,NULL,100,NULL,12,NULL,0,0xFFFFFFFF,63,2,64,NULL,'100',1,0,'.@r = getrefine(); .@hpsp = 3; .@val = -10 * getskilllv("SU_SHRIMPARTY"); if (.@r>=5) { .@hpsp += 7; .@delay = -10; if (.@r>=7) { .@hpsp += 10; .@delay -= 10; } bonus bDelayrate,.@delay; } if (getskilllv("SU_SPIRITOFSEA") == 1) { autobonus3 "{ bonus2 bResEff,Eff_Stun,10000; bonus2 bResEff,Eff_Sleep,10000; bonus2 bResEff,EFF_Stone,10000; }",1000,30000,"SU_GROOMING"; } if (getskilllv("SU_GROOMING") == 5) { bonus bFixedCastrate,-50; bonus bNoKnockback; } bonus bMaxHPrate,.@hpsp; bonus bMaxSPrate,.@hpsp; bonus bMdef,10; bonus2 bVariableCastrate,"SU_FRESHSHRIMP",.@val; bonus2 bVariableCastrate,"SU_BUNCHOFSHRIMP",.@val; bonus2 bVariableCastrate,"SU_TUNABELLY",.@val; bonus2 bVariableCastrate,"SU_TUNAPARTY",.@val; bonus2 bVariableCastrate,"SU_SHRIMPARTY",.@val; bonus bHealPower,10*getskilllv("SU_PURRING");',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22214,'Authority_Sandals','Authority Sandals',4,20,NULL,500,NULL,10,NULL,0,0xFFFFFFFF,63,2,64,NULL,'100',1,0,'.@r = getrefine(); bonus bMdef,10; bonus bAllStats,10; bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; if (.@r>=7) bonus bAllStats,10; if (.@r>=9) bonus bAllStats,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22238,'Great_Hero_Boots','Great Hero Boots',4,20,NULL,600,NULL,15,NULL,1,0xFFFFFFFF,63,2,64,NULL,'150',1,0,'.@r = getrefine(); bonus bMaxHP,1500; bonus bMaxSP,150; bonus bMaxHPrate,.@r/3; bonus bMaxSPrate,.@r/3; if (.@r >= 7) { bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; } if (.@r >= 9) { .@val = -500; if (.@r >= 11) { .@val -= 200; if (.@r >= 13) { bonus bDelayRate,-5; bonus bVariableCastrate,-5; } } bonus bFixedCast,.@val; }',NULL,NULL); -#=================================================================== -# New Usable items -#=================================================================== -REPLACE INTO `item_db_re` VALUES (22508,'Para_Team_Mark_','Eden Group Mark',2,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'warp "moc_para01",171,115;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22507,'ShabbyOldScroll','Old Scroll',2,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_22507";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22510,'King_Wolf_Scroll','King Wolf Scroll',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*TODO, confirm the rates*/ getitem callfunc("F_Rand",6635,19598,5658,6238,6239),1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22511,'Fenrir_Card__','Fenrir\'s Power Scroll',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'bonus_script "{ bonus bMatk,25; bonus bFixedCastRate,-50; }",300,1025;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22513,'King_of_Gift_Box','King of Gift Box',2,10,NULL,100,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*TODO, confirm the rates*/ getitem callfunc("F_Rand",12817,4403,14512),1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22514,'Candy_Holder','Candy Holder',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_Candy_Holder,1); getrandgroupitem(IG_Candy_Holder,1); getrandgroupitem(IG_Candy_Holder,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22515,'Twisted_Key_of_Time','Twisted Key of Time',3,10,NULL,300,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22516,'Dark_Red_Clot','Black As Night Piece',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22517,'Loki_Summon_Scroll','Rocker Summoning Scroll',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22518,'Idn_Wisdom_Egg','Egg Of Wisdom',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getgroupitem(IG_Idn_Wisdom_Egg);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22519,'Pc_Stop_Cancel','Stops Buff',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22520,'Stops_Buff_Reset','Stops Buff Reset',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22521,'Level_Up_Box_','Level Up Box',18,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'80',NULL,NULL,'/*TODO*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22522,'Level_Up_Box100','Level Up Box(100)',18,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'100',NULL,NULL,'getgroupitem(IG_Level_Up_Box100);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22523,'Level_Up_Box120','Level Up Box(120)',18,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'120',NULL,NULL,'getgroupitem(IG_Level_Up_Box120);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22524,'Level_Up_Box130','Level Up Box(130)',18,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'130',NULL,NULL,'getgroupitem(IG_Level_Up_Box130);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22525,'Level_Up_Box140','Level Up Box(140)',18,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'140',NULL,NULL,'getgroupitem(IG_Level_Up_Box140);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22526,'Level_Up_Box150','Level Up Box(150)',18,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'150',NULL,NULL,'getgroupitem(IG_Level_Up_Box150);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22527,'Level_Up_Box160','Level Up Box(160)',18,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'160',NULL,NULL,'getgroupitem(IG_Level_Up_Box160);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22528,'Pet_Exchange_Ticket_Box','Pet Exchange Ticket Box',18,10,NULL,20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'/*TODO*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22530,'Christmas_Box','Christmas Box',18,10,NULL,200,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getgroupitem(IG_Christmas_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22531,'Special_Christmas_Box','Special Christmas Box',18,10,NULL,200,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getgroupitem(IG_Special_Christmas_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22532,'Santa_Gift','Santa Gift',18,10,NULL,200,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getgroupitem(IG_Santa_Gift);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22533,'New_Year_Gift_Box','New Year Gift Box',18,10,NULL,200,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'/*TODO*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22534,'Closedmind_Box','Closed Mind Box',18,10,NULL,1000,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getgroupitem(IG_Sealed_Mind_Box);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22535,'WorkerScroll_A','Scroll Summoning Workers(Male)',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22536,'WorkerScroll_B','Scroll Summoning Workers(Female)',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22537,'PrizeOfHero','Prize Of Hero',2,0,NULL,100,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getrandgroupitem(IG_PrizeOfHero,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22538,'Hanbok_bag','Hanbok bag',2,0,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_HANBOK,600000,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22540,'Runstone_Lux','Lux Anima Runestone',11,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,56,2,NULL,NULL,NULL,NULL,NULL,'itemskill "RK_LUXANIMA",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22541,'PC_Room_Coupon_Box_VI','PC Room Coupon Box VI',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22542,'Center_Potion_B','Concentration Potion',2,10,NULL,100,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_ASPDPOTION0,1800000,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22543,'Berserk_Potion_B','Berserk Potion',2,10,NULL,200,NULL,NULL,NULL,0,0x6,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_ASPDPOTION2,1800000,9;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22544,'Awakening_Potion_B','Awakening Potion',2,10,NULL,150,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_ASPDPOTION1,1800000,6;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22545,'Speed_Potion','Speed Potion',2,10,NULL,100,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_SPEEDUP1,5000,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22546,'Slow_Potion','Slow Potion',2,10,NULL,100,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_SLOWDOWN,5000,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22547,'Anti-Payne_Moment','Anti-Payne Moment',2,10,NULL,100,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22548,'Wed_Cursed','Wed Cursed',2,10,NULL,30,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22549,'Poison_Bottle_','Poison Bottle',2,10,NULL,100,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'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;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22550,'Cookie_Bag_B','Sweets Pocket',2,10,NULL,70,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22551,'Sesame_Pastry_B','Teacake',2,10,NULL,70,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22552,'Honey_Pastry_B','Fried Pastry',2,10,NULL,70,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22553,'Rainbow_Cake_B','Rainbow Bread',2,10,NULL,70,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22554,'First_Aid_Box','First Aid Box',18,10,NULL,200,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_FirstAid,1); getrandgroupitem(IG_FirstAid,1); getrandgroupitem(IG_FirstAid,1); getrandgroupitem(IG_FirstAid,1); getrandgroupitem(IG_FirstAid,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22555,'Gourmet_Chocolate','Gourmet Chocolate',0,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22556,'Luxury_Chocolate','Luxury Chocolate',0,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22557,'Masterpieces_of_Artisan_Chocolate','Masterpieces of Artisan Chocolate',0,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22558,'Lucky_Bag','Lucky Bag',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getrandgroupitem(IG_Lucky_Bag,1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22559,'Mock_Strawberry','Mock Strawberry',11,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 50,50; itemskill "SM_ENDURE",3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22563,'Lucky_Bag_Of_New_Era','Lucky Bag Of New Era',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/* TODO */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22566,'Frost_Crystal','Last Year\'s Frost',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22567,'Squad_Prize','Expedition Award Box',0,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22568,'Nyd_Summon_Scroll','Nidhoggur Summon Scroll',0,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,NULL,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22569,'Gift_New_start','Gift New start',18,10,NULL,100,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22571,'Easter_Egg','Easter Egg',11,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22589,'Savage_Ora','Savage Ora Ora',3,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22590,'Grand_Peco_Ora','Grand Peco Ora Ora',3,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22591,'Dest_Wolf_Ora','Desert Wolf Ora Ora',3,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22592,'Happy_Call_Box','Happy Call Box',18,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22605,'Gingerbread2','Ginger Bread',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22610,'New_Beginnings_Box','New Beginnings Box',2,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12803,1; getitem 12802,1; getitem 12809,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22611,'Packing_Envelope','Packed Envelope',11,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/* TODO */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22612,'Corrupt_Reagents','Corrupt Reagents',11,10,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/* TODO */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22613,'Contaminated_Reagents','Contaminated Reagents',11,10,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/* TODO */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22614,'Premium_Manual','Premium Manual',2,2,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_EXPBOOST,8640000,50; sc_start SC_ITEMBOOST,8640000,200;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22617,'Clear_Box_S','Clear Box S',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22618,'Clear_Box_A','Clear Box A',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22619,'Ghost_Summon_Scroll','Ghost Scroll',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/* mercenary_create M_E_DEVILING,1800000; */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22620,'Memorial_Box','Box Of Memories',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/* TODO */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22621,'Squid_Bbq','Barbecued Squid',2,5000,NULL,250,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'specialeffect2 EF_EXIT; sc_start SC_JP_EVENT04,300000,25; percentheal 5,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22623,'New_Start_Box','New Start Box',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12803,1; getitem 12802,1; getitem 12809,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22624,'Riesen_Bretzel','Riesen Bretzel',0,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 100,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22625,'Oktoberfest_Bag','Oktoberfest Bag',2,0,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_OKTOBERFEST,600000,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22626,'January_Gift_Box','January Gift Box',2,0,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 19052,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22627,'February_Gift_Box','February Gift Box',2,0,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12105,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22628,'Green_Package','Green Package',18,0,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 17162,1; getitem 14534,5; getitem 12323,20; getitem 12324,20; getitem 12325,10; getitem 14533,2; getitem 22629,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22629,'Green_Package40','Green Package 40',18,0,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14289,1; getitem 12215,10; getitem 12216,10; getitem 14534,10; getitem 14533,5; getitem 12766,5; getitem 22630,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22630,'Green_Package80','Green Package 80',18,0,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7621,5; getitem 12209,5; getitem 14527,10; getitem 14533,5; getitem 12766,5; getitem 22631,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22631,'Green_Package99','Green Package 99',18,0,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12213,1; getitem 7676,1; getitem 5883,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22640,'17173_Green_Package','Green Package',18,0,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 17162,1; getitem 14534,5; getitem 12323,20; getitem 12324,20; getitem 12325,10; getitem 14533,2; getitem 22641,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22641,'17173_Green_Package40','Green Package 40',18,0,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14289,1; getitem 12215,10; getitem 12216,10; getitem 14534,10; getitem 14533,5; getitem 12766,5; getitem 22642,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22642,'17173_Green_Package80','Green Package 80',18,0,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7621,5; getitem 12209,5; getitem 14527,10; getitem 14533,5; getitem 12766,5; getitem 22643,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22643,'17173_Green_Package99','Green Package 99',18,0,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12213,1; getitem 7676,1; getitem 5883,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22644,'S_Green_Package','Green Package',18,0,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 17162,1; getitem 14534,5; getitem 12323,20; getitem 12324,20; getitem 12325,10; getitem 14533,2; getitem 22645,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22645,'S_Green_Package40','Green Package 40',18,0,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 14289,1; getitem 12215,10; getitem 12216,10; getitem 14534,10; getitem 14533,5; getitem 12766,5; getitem 22646,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22646,'S_Green_Package80','Green Package 80',18,0,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 7621,5; getitem 12209,5; getitem 14527,10; getitem 14533,5; getitem 12766,5; getitem 22647,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22647,'S_Green_Package99','Green Package 99',18,0,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12213,1; getitem 7676,1; getitem 5883,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22648,'Angeling_Package','Angel Ring Package',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem callfunc("F_Rand",12539,6230,6234/*,Angeling Balloon*/),1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22649,'Deviling_Package','Devil Ring Package',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem callfunc("F_Rand",603,6230,6234/*,Angeling Balloon*/),1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22652,'Briliant_Hat_Box','Brilliant Hat Box',2,10,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/* TODO */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22653,'Wet_Card_Album','Wet Card Album',2,10000,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/* TODO */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22654,'Golden_Seal_Card','Golden Seal Card',3,20,NULL,50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22657,'Honey_Songpyun_','Honey Songpyun',0,20,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 20,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22659,'Pig_Steamed_Ribs','Pig Steamed Ribs',0,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'bonus_script "{ bonus bAspdRate,5; bonus bUseSPrate,-2; }",180;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22658,'Cow_Steamed_Ribs','Cow Steamed Ribs',0,20,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'bonus_script "{ bonus bVariableCastrate,5; bonus bUseSPrate,-3; }",180;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22669,'HALLOWEEN_G_BOX','Halloween Box',2,0,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getgroupitem(IG_HALLOWEEN_G_BOX);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22670,'DARK_INVITATION','Invitation of Darkness',2,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'.@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; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22671,'March_Gift_Box','March Gift Box',2,10,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*2 Lucky Eggs*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22672,'April_Gift_Box','April Gift Box',2,10,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem callfunc("F_Rand",2566,2856,2857,15023),1209600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22673,'May_Gift_Box','May Gift Box',2,10,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 22777,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22674,'June_Gift_Box','June Gift Box',2,10,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*1 Potion Box*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22676,'Hangul_Day_Event_Box','Hangul Day Event Box',2,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'0',NULL,NULL,'getitem 22675,10; getitem 607,9;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22675,'Mysterious_Scroll','Mysterious Scroll',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INTFOOD,3600000,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22679,'Chest_Of_Death','Death\'s Chest',2,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'170',NULL,NULL,'getitem rand(6814,6819),1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22685,'Solo_Christmas_Gift','Single Union Christmas Gift',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'0',NULL,NULL,'getgroupitem(IG_Solo_Christmas_Gift);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22686,'Solo_Cookie','Single Cookie',0,0,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'0',NULL,NULL,'percentheal 5,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22687,'Pieces_Of_Sentiment','Sentimental Fragment',11,0,NULL,1,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'100',NULL,NULL,'callfunc("F_Pieces_Of_Sentiment");',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22691,'Piece_Of_Record1','Record Fragment',0,NULL,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'warp "un_bk_q",98,143;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22692,'Piece_Of_Record2','Record Fragment',0,NULL,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'warp "un_bk_q",45,276;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22693,'Piece_Of_Record3','Record Fragment',0,NULL,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'warp "un_bk_q",217,346;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22694,'Piece_Of_Record4','Record Fragment',0,NULL,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'warp "un_bk_q",273,235;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22695,'Piece_Of_Record5','Record Fragment',0,NULL,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'warp "un_bk_q",275,290;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22699,'Test_Reagent','Test Reagent',2,NULL,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'bonus_script "bonus bFlee,100;",5,9; sc_start SC_BLIND,5000,0,10000,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22700,'Jumping_Support_Box','Jumping Support Box',18,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*TODO: getitem 12529,1; getitem 12323,200; getitem 12324,50; and 5 boxes that containing quivers + oridecons*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22702,'STR_Soul_Potion','STR Reduction Potion',11,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashReduceStat",bStr,-1,22702;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22703,'AGI_Soul_Potion','STR Reduction Potion',11,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashReduceStat",bAgi,-1,22703;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22704,'VIT_Soul_Potion','STR Reduction Potion',11,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashReduceStat",bVit,-1,22704;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22705,'INT_Soul_Potion','STR Reduction Potion',11,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashReduceStat",bInt,-1,22705;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22706,'DEX_Soul_Potion','STR Reduction Potion',11,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashReduceStat",bDex,-1,22706;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22707,'LUK_Soul_Potion','STR Reduction Potion',11,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashReduceStat",bLuk,-1,22707;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22708,'Pitapat_Box','Thrilling Box',2,10,NULL,100,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*No clue the random item yet*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22717,'Wanderer_Ball','Wanderer Ball',3,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22718,'Lude_Ball','Lude Ball',3,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22719,'Tatacho_Ball','Tatacho Ball',3,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22720,'Novus_Ball','Novus Ball',3,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22721,'?_Box','? Box',18,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*No clue the random item yet*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22734,'Revolution_Quiz_Box','Revolution Quiz Box',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 6635,2; getitem 6423,1; /*1x Enchanted Letter Introduction*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22735,'Sealed_Moonlight_Flower_Scroll','Sealed Moonlight Flower Scroll',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*TODO: Confirm the rates*/ getitem callfunc("F_Rand",6228,6232,24150,19934,6635,17474),1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22736,'July_Gift_Box','July Gift Box',2,10,NULL,100,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 20212,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22737,'Bullet_Case_Blood_','Bloody Cartridge',2,10,NULL,250,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13222,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22738,'Bullet_Case_Silver_','Silver Cartridge',2,10,NULL,250,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13221,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22739,'Sphere_Case_Wind_','Lightning Sphere Pack',2,10,NULL,350,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13224,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22740,'Sphere_Case_Darkness_','Blind Sphere Pack',2,10,NULL,350,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13226,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22741,'Sphere_Case_Poison_','Poison Sphere Pack',2,10,NULL,350,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13225,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22742,'Sphere_Case_Water_','Freezing Sphere Pack',2,10,NULL,350,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13227,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22743,'Sphere_Case_Fire_','Flare Sphere Pack',2,10,NULL,350,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13223,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22744,'Bullet_Case_AP','Armor-Piercing Cartridge',2,10,NULL,250,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13215,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22745,'Bullet_Case_Blaze','Incandescence Shot Cartridge',2,10,NULL,250,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13216,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22746,'Bullet_Case_Fleeze','Glaciation Shot Cartridge',2,10,NULL,250,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13217,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22747,'Bullet_Case_Electric','Dengeki Shot Cartridge',2,10,NULL,250,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13218,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22748,'Bullet_Case_Stone','Hearthstone Shot Cartridge',2,10,NULL,250,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13219,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22749,'Sanctified_Bullet_Case','Purification Shot Cartridge',2,10,NULL,250,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13220,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22750,'Trans_Scroll_Horn_Scaraba','Transformation Scroll(Horn Scaraba)',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'transform 2161,1200000,SC_MTF_ASPD2,2,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22751,'Trans_Scroll_Wanderer','Transformation Scroll(Wanderer)',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'transform 1208,1200000,SC_MTF_ASPD2,2,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22752,'Trans_Scroll_Gazeti','Transformation Scroll(Gazeti)',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'transform 1778,1200000,SC_MTF_RANGEATK2,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22753,'Trans_Scroll_Kobold_Archer','Transformation Scroll(Kobold Archer)',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'transform 1282,1200000,SC_MTF_RANGEATK2,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22754,'Trans_Scroll_Necromancer','Transformation Scroll(Necromancer)',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'transform 1870,1200000,SC_MTF_RANGEATK2,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22755,'Trans_Scroll_Wind_Ghost','Transformation Scroll(Wind Ghost)',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'transform 1263,1200000,SC_MTF_MATK2,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22756,'August_Gift_Box','August Gift Box',2,10,NULL,100,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12246,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22757,'Collection_Of_Scrolls_Magical_Transformation','Collection Of Scrolls Magical Transformation',18,10,NULL,200,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 22755,1; getitem 22754,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22758,'Collection_Of_Scrolls_Shooting_Transformation','Collection Of Scrolls Shooting Transformation',18,10,NULL,200,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 22753,1; getitem 22752,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22759,'Collection_Of_Scrolls_Attack_Speed_Transformation','Collection Of Scrolls Attack Speed Transformation',18,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 22751,1; getitem 22750,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22760,'Argiope_Transportin','Argiope Transportin',2,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*No Info*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22761,'Luciola_Vespa_Transportin','Luciola Vespa Transportin',2,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*No Info*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22762,'Centipede_Transportin','Centipede Transportin',2,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*No Info*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22764,'Pet_Exchange_Ticket_Box_','Pet Exchange Ticket Box',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'/*TODO: Confirm the allowed pet_id and chance*/ getitem callfunc("F_Rand",6116,6117,6118,6129,6130,6130,6132,6133,6134,6135,6136,6137,6138,6139,6140,6141,6142,6143),1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22770,'Shark_Skewer','Shark Skewer',0,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*No Info*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22771,'Bluefin_Tuna_Skewer','Bluefin Tuna Skewer',0,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INCATKRATE,5000,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22772,'Sea_Bream_Skewer','Sea Bream Skewer',0,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_INCMATKRATE,5000,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22773,'Piranha_Skewer','Piranha Skewer',0,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_ASPDPOTION0,5000,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22774,'Salmon_Skewer','Salmon Skewer',0,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_SPEEDUP0,5000,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22775,'Eels_Skewer','Eels Skewer',0,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_DEF_RATE,5000,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22776,'Carp_Skewer','Carp Skewer',0,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_MDEF_RATE,5000,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22777,'Gift_Buff_Set','Gift Buff Set',2,10,NULL,100,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getgroupitem(IG_Gift_Buff_Set);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22781,'PC_Bang_Normal_Box','PC Bang Normal Box',2,10,NULL,200,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getitem 547,20; /*No Info*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22782,'PC_Bang_Wooden_Box','PC Bang Wooden Box',2,10,NULL,200,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getitem 547,30; /*No Info*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22783,'PC_Bang_Golden_Box','PC Bang Golden Box',2,10,NULL,200,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getitem 547,1; getitem 985,10; /*No Info*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22784,'PC_Bang_Platinum_Box','PC Bang Platinum Box',2,10,NULL,200,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getitem 547,1; getitem 12017,10; getitem 678,12; /*No Info*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22979,'C_Battle_Gum_2','[Sale] Battle Manual and Bubble Gum',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_EXPBOOST,1800000,50; sc_start SC_ITEMBOOST,1800000,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22802,'Safe_to_6_Equipment_Certificate','Safe to 6 Equipment Certificate',3,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22808,'Special_Gift_Box','Special Gift Box',2,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22812,'Sealed_Dracula_Scroll','Sealed Dracula Scroll',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getitem callfunc("F_Rand",6228,6232,22813,19937,17314, 6635),1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22813,'Bearer\'s_Shadow_Box','Bearer\'s Shadow Box',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getitem callfunc("F_Rand",24180,24181,24182,24183,24184,24185),1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22814,'Cat_Hand_Ticket','Cat Hand Ticket',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22822,'Summer_Vacation_Costumes','Summer Vacation Costumes',2,NULL,NULL,100,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'sc_start SC_DRESSUP,600000,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22823,'Sealed_Sniper_Scroll','Sealed Sniper Scroll',2,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'/*getitem callfunc("F_Rand",4491,6228,6232,24196, Hasty Shadow Armor, 19882, 17474, 6635),1;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22826,'Enchant_Stone_Box4','Costume Enchantment Stone Box 4',2,10,NULL,100,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getitem callfunc("F_Rand",6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6740,6741,6742,6743,6744,6745,6790,6791,6792,6908),1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22827,'Shadow_Cube','Shadow Cube',2,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'/*No Info*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22828,'Sealed_Album_Scroll','Sealed Album Scroll',2,10,NULL,100,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getitem callfunc("F_Rand",22829,6232,6228,24208,24209,17474/*,Enchanted Letter*/),1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22829,'Sealed_Card_Album','Sealed Card Album',2,10,NULL,100,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getitem callfunc("F_Rand",4488,4497,4486,4480,4485,4539,4487,4494,4538,4489,4490,4482,4503,4483,4491),1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22837,'Integer_Time','Integer Time',2,10,NULL,50,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getitem 673,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22838,'Something_Candy_Holder','Something Candy Holders',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getgroupitem(IG_Something_Candy_Holder);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22842,'Sealed_Dracula_Scroll_II','Sealed Dracula Scroll II',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getitem callfunc("F_Rand",22846,6228,6232,24223,24227,17474/*, Enchant Letter*/),1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22843,'Superstar_Snack','Superstar Snack',2,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'bonus_script "{ bonus bAtk2,50; bonus bMatk,50; }",300;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22844,'Sealed_Dracula_Card_Album','Sealed Dracula Card Album',2,10,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'/*No Info*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22845,'Sealed_Fortune_Egg','Sealed Fortune Egg',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getitem callfunc("F_Rand",4488,4497,4486,4480,4485,4539,4487,4494,4538,4489,4490,4482,4503,22846),1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22846,'Sealed_Dracula_Card_','Sealed Dracula Card',2,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'bonus_script "{ bonus2 bSPDrainRate,50,5; }",300;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22847,'Prontera_Medal','Prontera Medal',2,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'warp "prontera",159,192; /*No coord info*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22848,'Prison_Key','Prison Key',2,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'warp "prt_prison",0,0; /*No coord info*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22849,'Prontera_Time_Crystal','Prontera Time Crystal',2,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'warp "prt_q",155,27;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22850,'January_Gift_Box_','January Gift Box',2,10,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem 19052,604800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22851,'February_Gift_Box_','February Gift Box',2,10,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12105,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22852,'March_Gift_Box_','March Gift Box',2,10,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*2 Lucky Eggs*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22853,'April_Gift_Box_','April Gift Box',2,10,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem callfunc("F_Rand",2566,2856,2857,15023),1209600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22854,'May_Gift_Box_','May Gift Box',2,10,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 22777,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22855,'June_Gift_Box_','June Gift Box',2,10,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*1 Potion Box*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22856,'July_Gift_Box_','July Gift Box',2,10,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 20212,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22857,'August_Gift_Box_','August Gift Box',2,10,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12246,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22858,'September_Gift_Box','September Gift Box',2,10,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*2 Lucky Eggs*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22859,'October_Gift_Box','October Gift Box',2,10,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12529,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22860,'November_Gift_Box','November Gift Box',2,10,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem callfunc("F_Rand",2566,2856,2857,15023),1209600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22861,'December_Gift_Box','December Gift Box',2,10,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 22869,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22868,'Enchant_Stone_Box5','Costume Enchantment Stone Box 5',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getgroupitem(IG_Enchant_Stone_Box5);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22869,'Lucky_Roulette_Tickets','Lucky Roulette Ticket',2,10,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'50',NULL,NULL,'RouletteBronze++;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22870,'Xmas_Package_14','Christmas Package',3,0,NULL,10,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22873,'Sealed_Beelzebub_Scroll_II','Sealed Beelzebub Scroll II',2,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem callfunc("F_Rand",22875,6238,6239,6228,6232,24231,24232,17474,6635),1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22874,'Sealed_Beelzebub_Card_Album','Sealed Beelzebub Card Album',2,10,NULL,50,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*No Info*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22875,'Sealed_Beelzebub_Card','Sealed Beelzebub Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bVariableCastrate,-15; /*Item removed on 2014-12-17*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22876,'Old_Money_Pocket','Old Money Pocket',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'Zeny += rand(500,550);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22881,'Binding_Rope','Rope Gallows',2,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*Used to catch a Lost Sheep*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22882,'Choco_Tteokguk','Chocolate Rice Cake Soup',2,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 10,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22883,'September_Gift_Box_','September Gift Box',2,10,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*2 Lucky Eggs*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22884,'October_Gift_Box_','October Gift Box',2,10,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12529,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22885,'November_Gift_Box_','November Gift Box',2,10,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'rentitem callfunc("F_Rand",2566,2856,2857,15023),1209600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22886,'December_Gift_Box_','December Gift Box',2,10,NULL,100,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 22869,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22887,'PC-Room_Box','PC-Room Box',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 12531,1; getitem callfunc("F_Rand",6230,6234,22654),1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22888,'New_Year\'s_Scroll','New Year\'s Scroll',2,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem callfunc("F_Rand",6238,6239,6228,6232,24240,24241,24242,17474),1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22893,'New_Year\'s_Shadow_Cube','New Year\'s Shadow Cube',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*Get a random Shadow Equip (No info which one)*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22894,'Limited_2015_Neuralizer','(Limited)2015 Neuralizer',2,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashReset";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22895,'Limited_2015_Status_Initialization_Volume','(Limited)2015 Status Initialization Volume',2,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*Works like item 6320, can reset up to 3x within 1 hour*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22896,'Limited_Old_Status_Initialization_Volume','(Limited)Old Status Initialization Volume',2,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*Works like item 6320, can reset up to 3x within 1 hour*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22899,'Parchment_City','Parchment City',2,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "AL_INCAGI",1; heal -15,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22901,'Question_Old_Blue_Box','Mysterious Blue Box',2,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'callfunc("F_Mysterious_box");',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22902,'Sealed_Card_Album_Scroll_II','Sealed Card Album Scroll II',2,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem callfunc("F_Rand",6238,6239,17474,22829,24243,24244,24245),1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22905,'Enchant_Stone_Box6','Costume Enchantment Stone Box 6',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getgroupitem(IG_Enchant_Stone_Box6);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22953,'Enchant_Stone_Box7','Costume Enchantment Stone Box 7',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getgroupitem(IG_Enchant_Stone_Box7);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22984,'Kahluna_Milk','Kahluna Milk',0,6,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_DORAM_BUF_01, 180000, 0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (22985,'Basil','Basil',0,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_DORAM_BUF_02, 180000, 0;',NULL,NULL); -# -REPLACE INTO `item_db_re` VALUES (23001,'Enchant_Stone_Box8','Costume Enchantment Stone Box 8',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getgroupitem(IG_Enchant_Stone_Box8);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (23012,'S_Small_Mana_Potion','[Sale] Small Mana Potion',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'bonus_script "bonus2 bRegenPercentSP,5,5000;",600,9; /* fix me: unknown flag and specialeffect ; disabled when LK_BERSERK */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (23016,'Cursed_Fragment','Cursed Fragment',2,1,NULL,1,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'callfunc("F_Cursed_Fragment");',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (23038,'S_Slim_White_Box','[Sale] Slim White Potion Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 11573,200;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (23042,'S_Seed_Of_Yggdrasil','[NotForSale]Yggdrasil Seed',0,0,NULL,300,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'percentheal 50,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (23043,'S_Seed_Of_Yggdrasil_Box','[Sale] Yggdrasil Seed Box',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 23042,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (23046,'S_Mystic_Powder','[Sale] Mystic Powder',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'bonus_script "{ bonus bFlee,20; bonus bLuk,10; }",300,9; /* fix me: unknown flag and specialeffect */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (23047,'S_Blessing_Tyr','[Sale] Blessing of Tyr',2,0,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_FLEEFOOD,300000,30; sc_start SC_HITFOOD,300000,30; sc_start SC_ATKPOTION,300000,20; sc_start SC_MATKPOTION,300000,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (23048,'S_Resilience_Potion','[Sale] Resilience Enhancement Potion',2,NULL,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'bonus_script "bonus bAddItemHealRate,20;",1800,9; /* fix me: unknown flag and specialeffect */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (23058,'Enchant_Stone_Box9','Costume Enchantment Stone Box 9',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getgroupitem(IG_Enchant_Stone_Box9);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (23076,'Build_Up_Potion_SS','Build Up Potion SS',2,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'if (strcharinfo(3) == "slabw01") { sc_start SC_EP16_2_BUFF_SS,10000,0; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (23077,'Build_Up_Potion_SC','Build Up Potion SC',2,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'if (strcharinfo(3) == "slabw01") { sc_start SC_EP16_2_BUFF_SC,10000,0; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (23078,'Build_Up_Potion_AC','Build Up Potion AC',2,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'if (strcharinfo(3) == "slabw01") { sc_start SC_EP16_2_BUFF_AC,10000,0; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (23080,'Cursed_Crystal','Cursed Crystal',2,1,NULL,500,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'callfunc("F_Cursed_Crystal");',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (23086,'Enchant_Stone_Box10','Costume Enchantment Stone Box 10',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getgroupitem(IG_Enchant_Stone_Box10);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (23087,'Small_Leather_Bag','Small Leather Bag',2,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 25180,1; getitem 25181,1; getitem 25182,1; getitem 25183,1; getitem 25184,1; getitem 25185,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (23123,'Bullet_Case_Flare','Flare Bullet Cartridge',2,10,NULL,250,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13228,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (23124,'Bullet_Case_Lighting','Lightning Bullet Cartridge',2,10,NULL,250,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13229,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (23125,'Bullet_Case_Ice','Ice Bullet Cartridge',2,10,NULL,250,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13230,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (23126,'Bullet_Case_Poison','Poison Bullet Cartridge',2,10,NULL,250,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13231,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (23127,'Bullet_Case_Blind','Blind Bullet Cartridge',2,10,NULL,250,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'getitem 13232,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (23174,'Enchant_Stone_Box11','Costume Enchantment Stone Box 11',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getgroupitem(IG_Enchant_Stone_Box11);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (23177,'Kafra_Card_','Kafra Card',2,2,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'callfunc "F_CashStore";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (23188,'Unprocessed_Parts','Unprocessed Parts',2,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1632;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (23189,'Small_Needle_Kit','Small Needle Kit',2,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1622;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (23187,'Sap_Liquid','Sap Liquid',2,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1180;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (23191,'Varetyr_Spear_Scroll_1_5','Level 5 Varetyr Spear',11,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "SO_VARETYR_SPEAR",5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (23192,'Diamond_Dust_Scroll_1_5','Level 5 Diamond Dust',11,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "SO_DIAMONDDUST",5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (23193,'Crimson_Rock_Scroll_1_5','Level 5 Crimson Rock',11,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "WL_CRIMSONROCK",5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (23194,'Sienna_Execrate_Scroll_1_5','Level 5 Sienna Execrate',11,10,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "WL_SIENNAEXECRATE",5,true;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (23196,'Agust_Lucky_Scroll','Shining Blue Lucky Egg',18,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getgroupitem(IG_Agust_Lucky_Scroll);',NULL,NULL); -# -REPLACE INTO `item_db_re` VALUES (23228,'Hazy_Mooncake','Hazy Mooncake',0,768,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/* unknown */',NULL,NULL); -# -REPLACE INTO `item_db_re` VALUES (23256,'Elixir_Bandages','Elixir Bandages',2,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'pet 1041;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (23277,'Mado_Box','Emergency Magic Gear',2,10000,NULL,3000,NULL,NULL,NULL,NULL,0x00000400,56,2,NULL,NULL,'100',NULL,NULL,'setmadogear 1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (23280,'N_Fly_Wing_','Novice Fly Wing',11,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'1:98',NULL,NULL,'itemskill "AL_TELEPORT",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (23288,'Compressed_Wing_Of_Fly','Compressed Fly Wing',11,1000,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "AL_TELEPORT",1;',NULL,NULL); -# -REPLACE INTO `item_db_re` VALUES (23299,'Enchant_Stone_Box12','Costume Enchantment Stone Box 12',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getgroupitem(IG_Enchant_Stone_Box12);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (23307,'S_Shining_Def_Scroll','[Sale] Shining Defense Scroll',2,NULL,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'bonus_script "{ bonus bDef,500; bonus bMdef,200; }",600; /* fix me: unknown flag and specialeffect */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (23340,'S_Megaphone','[Sale] Megaphone',2,NULL,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'input .@megaphone$; announce strcharinfo(0) + ": " + .@megaphone$,bc_all,0xFF0000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (23524,'Enchant_Stone_Box13','Costume Enchantment Stone Box 13',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getgroupitem(IG_Enchant_Stone_Box13);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (23629,'Enchant_Stone_Box14','Costume Enchantment Stone Box 14',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getgroupitem(IG_Enchant_Stone_Box14);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (23682,'Enchant_Stone_Box15','Costume Enchantment Stone Box 15',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getgroupitem(IG_Enchant_Stone_Box15);',NULL,NULL); -#=================================================================== -# Shadow Equipments -#=================================================================== -REPLACE INTO `item_db_re` VALUES (24000,'T1_Shadow_Armor','Shadow Armor (Tier 1)',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'bonus bStr,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24001,'T1_Shadow_Weapon','Shadow Gauntlets (Tier 1)',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24002,'T1_Shadow_Shield','Shadow Shield (Tier 1)',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,NULL,'bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24003,'T1_Shadow_Shoes','Shadow Shoes (Tier 1)',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'1',1,NULL,'bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24004,'T1_Shadow_R_Accessory','Shadow Ring (Tier 1)',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1048576,NULL,'1',1,NULL,'bonus bVit,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24005,'T1_Shadow_L_Accessory','Shadow Pendant (Tier 1)',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2097152,NULL,'1',1,NULL,'bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24006,'T2_Shadow_Armor','Shadow Armor (Tier 2)',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'30',1,NULL,'bonus bStr,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24007,'T2_Shadow_Weapon','Shadow Gauntlets (Tier 2)',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'30',1,NULL,'bonus bDex,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24008,'T2_Shadow_Shield','Shadow Shield (Tier 2)',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'60',1,NULL,'bonus bLuk,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24009,'T2_Shadow_Shoes','Shadow Shoes (Tier 2)',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'90',1,NULL,'bonus bAgi,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24010,'T2_Shadow_R_Accessory','Shadow Ring (Tier 2)',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1048576,NULL,'120',1,NULL,'bonus bVit,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24011,'T2_Shadow_L_Accessory','Shadow Pendant (Tier 2)',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2097152,NULL,'150',1,NULL,'bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24012,'S_Promotion_Weapon','Shadow Weapon',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24013,'S_Promotion_Armor','Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24014,'S_Promotion_Shoes','Shadow Shoes',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'1',1,NULL,'bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24015,'S_Promotion_Shield','Shadow Shield',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,NULL,'bonus bVit,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24016,'S_Promotion_Earring','Shadow Earring',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1048576,NULL,'1',1,NULL,'bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24017,'S_Promotion_Pendant','Shadow Pendant',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2097152,NULL,'1',1,NULL,'bonus bStr,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24018,'S_Physical_Earring','Physical Earring (Shadow)',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1048576,NULL,'1',1,0,'bonus bAspdRate,(getrefine()>=7)?2:1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24019,'S_Physical_Weapon','Physical Weapon (Shadow)',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,0,'bonus bBaseAtk,10; if(getrefine()>=7) { bonus2 bAddClass,Class_All,1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24020,'S_Physical_Pendant','Physical Pendant (Shadow)',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2097152,NULL,'1',1,0,'bonus bMaxHP,100; if(getrefine()>=7) { bonus bMaxHPrate,1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24021,'S_Magical_Earring','Magical Earring (Shadow)',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1048576,NULL,'1',1,0,'bonus bVariableCastrate,-(getrefine()>=7)?2:1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24022,'S_Magical_Weapon','Magical Weapon (Shadow)',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,0,'bonus bMatk,10; if(getrefine()>=7) { bonus bMatkRate,1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24023,'S_Magical_Pendant','Magical Pencil (Shadow)',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2097152,NULL,'1',1,0,'bonus bMaxSP,50; if(getrefine()>=7) { bonus bMaxSPrate,1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24024,'S_Breezy_Armor','Breeze Armor (Shadow)',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,0,'bonus bFlee,5+(getrefine()>=7 ? 10 : 0);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24025,'S_Champion_Shoes','Champion Shoes (Shadow)',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'1',1,0,'bonus bMaxHP,20; bonus bMaxSP,20; if(getrefine()>=7) { bonus bMaxHP,1; bonus bMaxSP,1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24026,'S_Athena_Shield','Athena Shield (Shadow)',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,0,'bonus bDef,(getrefine()>=7)?20:10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24027,'S_Immune_Armor','Immune Shadow Armor',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,0,'bonus2 bSubEle,0,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24028,'S_Hard_Armor','Hard Shadow Armor',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,0,'bonus bMaxHP,50; if(getrefine()>=7) { bonus bMaxHPrate,1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24029,'S_Ancient_Armor','Ancient Shadow Armor',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,0,'bonus bHit,(getrefine()>=7)?20:10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24030,'S_Critical_Armor','Critital Shadow Armor',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,0,'bonus bCritical,(getrefine()>=7)?10:5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24031,'S_Kingbird_Weapon','Kingbird\'s Shadow Weapon',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,0,'bonus bBaseAtk,10; if(getrefine()>=7) { bonus bLongAtkRate,1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24032,'S_Cri_Hit_Weapon','Critical Hit Shadow Weapon',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,0,'bonus bBaseAtk,10; if(getrefine()>=7) { bonus bCritAtkRate,1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24033,'S_Healing_Weapon','Healing Shadow Weapon',12,0,NULL,0,'0:10',NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'if (getrefine()>=7) bonus bHealPower2,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24034,'S_Lucky_Weapon','Lucky Shadow Weapon',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,0,'bonus bLuk,1; if(getrefine()>=7) { bonus bLuk,1; } if(getrefine()>=9) { bonus bLuk,1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24035,'S_Power_Earring','Power Shadow Earring',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1048576,NULL,'1',1,0,'bonus bStr,1; .@r = getrefine(); if(.@r>=7) { bonus bStr,1; } if(.@r>=9) { bonus bStr,1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24036,'S_Int_Pendant','Intelligent Shadow Pendant',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2097152,NULL,'1',1,0,'bonus bInt,1; .@r = getrefine(); if(.@r>=7) { bonus bInt,1; } if(.@r>=9) { bonus bInt,1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24037,'S_Dexterous_Armor','Dexterous Shadow Armor',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,0,'bonus bDex,1; .@r = getrefine(); if(.@r>=7) { bonus bDex,1; } if(.@r>=9) { bonus bDex,1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24038,'S_Vital_Shoes','Vital Shadow Shoes',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'1',1,0,'bonus bVit,1; .@r = getrefine(); if(.@r>=7) { bonus bVit,1; } if(.@r>=9) { bonus bVit,1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24039,'S_Athletic_Shield','Athletic Shadow Shield',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,0,'bonus bAgi,1; .@r = getrefine(); if(.@r>=7) { bonus bAgi,1; } if(.@r>=9) { bonus bAgi,1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24040,'S_Lucky_Armor','Lucky Shadow Armor',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,0,'bonus bLuk,1; bonus bCritical,(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24041,'S_Power_Pendant','Power Shadow Pendant',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2097152,NULL,'1',1,0,'bonus bStr,1; bonus bBaseAtk,getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24042,'S_Int_Earring','Intelligent Shadow Earring',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1048576,NULL,'1',1,0,'bonus bInt,1; bonus bMatk,getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24043,'S_Dexterous_Weapon','Dexterous Shadow Weapon',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,0,'bonus bDex,1; bonus bHit,getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24044,'S_Vital_Shield','Vital Shadow Shield',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,0,'bonus bVit,1; bonus bDef,getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24045,'S_Athletic_Shoes','Athletic Shadow Shoes',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'1',1,0,'bonus bAgi,1; bonus bFlee,getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24046,'S_Resist_Spell_Pendant','Resist Spell Power Pendant (Shadow)',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2097152,NULL,'1',1,0,'bonus bMdef,(getrefine()>=7)?6:3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24047,'S_Rapid_Pendant','Rapid Pendant (Shadow)',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2097152,NULL,'1',1,NULL,'.@r = getrefine(); bonus bAspdRate,1+((.@r>=9)?2:(.@r>=7)?1:0);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24048,'S_Caster_Pendant','Caster Pendant (Shadow)',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2097152,NULL,'1',1,NULL,'.@r = getrefine(); bonus bVariableCastrate,1+((.@r>=9)?2:(.@r>=7)?1:0);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24049,'S_Hard_Earring','Hard Earring (Shadow)',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1048576,NULL,'1',1,NULL,'bonus bMaxHP,100; .@r = getrefine(); bonus bMaxHPRate,((.@r>=9)?2:(.@r>=7)?1:0);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24050,'S_Wise_Earring','Wise Earring (Shadow)',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1048576,NULL,'1',1,NULL,'bonus bMaxSP,50; .@r = getrefine(); bonus bMaxSPRate,((.@r>=9)?2:(.@r>=7)?1:0);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24051,'S_Athena_Earring','Athena Earring (Shadow)',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1048576,NULL,'1',1,0,'bonus bDef,(getrefine()>=7)?20:10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24052,'S_Cranial_Shield','Cranial Shield (Shadow)',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,0,'bonus2 bSubRace,7,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,7,1; } if(.@r>=9) { bonus2 bSubRace,7,1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24053,'S_Safeguard_Shield','Safeguard Shield (Shadow)',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,0,'bonus2 bSubRace,10,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,10,1; } if(.@r>=9) { bonus2 bSubRace,10,1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24054,'S_Brutal_Shield','Brutal Shield (Shadow)',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,0,'bonus2 bSubRace,2,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,2,1; } if(.@r>=9) { bonus2 bSubRace,2,1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24055,'S_Gargantua_Shield','Gargantua Shield (Shadow)',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,0,'bonus2 bSubRace,4,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,4,1; } if(.@r>=9) { bonus2 bSubRace,4,1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24056,'S_Homers_Shield','Homers Shield (Shadow)',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,0,'bonus2 bSubRace,5,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,5,1; } if(.@r>=9) { bonus2 bSubRace,5,1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24057,'S_Dragoon_Shield','Dragoon Shield (Shadow)',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,0,'bonus2 bSubRace,9,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,9,1; } if(.@r>=9) { bonus2 bSubRace,9,1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24058,'S_Satanic_Shield','Satanic Shield (Shadow)',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,0,'bonus2 bSubRace,8,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,8,1; } if(.@r>=9) { bonus2 bSubRace,8,1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24059,'S_Flameguard_Shield','Flameguard Shield (Shadow)',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,0,'bonus2 bSubRace,0,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,0,1; } if(.@r>=9) { bonus2 bSubRace,0,1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24060,'S_Requiem_Shield','Requiem Shield (Shadow)',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,0,'bonus2 bSubRace,1,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,1,1; } if(.@r>=9) { bonus2 bSubRace,1,1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24061,'S_Cadi_Shield','Cadi Shield (Shadow)',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,0,'bonus2 bSubRace,3,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,3,1; } if(.@r>=9) { bonus2 bSubRace,3,1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24062,'S_Bloody_Shoes','Bloody Shoes (Shadow)',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'1',1,0,'bonus2 bAddRace,7,2; bonus2 bMagicAddRace,7,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,7,1; bonus2 bMagicAddRace,7,1; } if(.@r>=9) { bonus2 bAddRace,7,2; bonus2 bMagicAddRace,7,2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24063,'S_Liberation_Shoes','Liberation Shoes (Shadow)',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'1',1,0,'bonus2 bAddRace,10,2; bonus2 bMagicAddRace,10,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,10,1; bonus2 bMagicAddRace,10,1; } if(.@r>=9) { bonus2 bAddRace,10,2; bonus2 bMagicAddRace,10,2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24064,'S_Chemical_Shoes','Chemical Shoes (Shadow)',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'1',1,0,'bonus2 bAddRace,3,2; bonus2 bMagicAddRace,3,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,3,1; bonus2 bMagicAddRace,3,1; } if(.@r>=9) { bonus2 bAddRace,3,2; bonus2 bMagicAddRace,3,2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24065,'S_Clamorous_Shoes','Clamorous Shoes (Shadow)',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'1',1,0,'bonus2 bAddRace,2,2; bonus2 bMagicAddRace,2,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,2,1; bonus2 bMagicAddRace,2,1; } if(.@r>=9) { bonus2 bAddRace,2,2; bonus2 bMagicAddRace,2,2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24066,'S_Insecticide_Shoes','Insecticide Shoes (Shadow)',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'1',1,0,'bonus2 bAddRace,4,2; bonus2 bMagicAddRace,4,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,4,1; bonus2 bMagicAddRace,4,1; } if(.@r>=9) { bonus2 bAddRace,4,2; bonus2 bMagicAddRace,4,2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24067,'S_Fisher_Shoes','Fisher Shoes (Shadow)',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'1',1,0,'bonus2 bAddRace,5,2; bonus2 bMagicAddRace,5,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,5,1; bonus2 bMagicAddRace,5,1; } if(.@r>=9) { bonus2 bAddRace,5,2; bonus2 bMagicAddRace,5,2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24068,'S_Seraphim_Shoes','Seraphim Shoes (Shadow)',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'1',1,0,'bonus2 bAddRace,8,2; bonus2 bMagicAddRace,8,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,8,1; bonus2 bMagicAddRace,8,1; } if(.@r>=9) { bonus2 bAddRace,8,2; bonus2 bMagicAddRace,8,2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24069,'S_Beholder_Shoes','Beholder Shoes (Shadow)',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'1',1,0,'bonus2 bAddRace,0,2; bonus2 bMagicAddRace,0,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,0,1; bonus2 bMagicAddRace,0,1; } if(.@r>=9) { bonus2 bAddRace,0,2; bonus2 bMagicAddRace,0,2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24070,'S_Divine_Shoes','Divine Shoes (Shadow)',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'1',1,0,'bonus2 bAddRace,1,2; bonus2 bMagicAddRace,1,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,1,1; bonus2 bMagicAddRace,1,1; } if(.@r>=9) { bonus2 bAddRace,1,2; bonus2 bMagicAddRace,1,2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24071,'S_Dragoon_Shoes','Dragoon Shoes (Shadow)',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'1',1,0,'bonus2 bAddRace,9,2; bonus2 bMagicAddRace,9,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,9,1; bonus2 bMagicAddRace,9,1; } if(.@r>=9) { bonus2 bAddRace,9,2; bonus2 bMagicAddRace,9,2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24072,'S_Big_Armor','Large Shadow Armor',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,0,'bonus2 bSubSize,2,2; .@r = getrefine(); if(.@r>=7) { bonus2 bSubSize,2,1; } if(.@r>=9) { bonus2 bSubSize,2,2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24073,'S_Medium_Armor','Medium Shadow Armor',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,0,'bonus2 bSubSize,1,2; .@r = getrefine(); if(.@r>=7) { bonus2 bSubSize,1,1; } if(.@r>=9) { bonus2 bSubSize,1,2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24074,'S_Small_Armor','Small Shadow Armor',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,0,'bonus2 bSubSize,0,2; .@r = getrefine(); if(.@r>=7) { bonus2 bSubSize,0,1; } if(.@r>=9) { bonus2 bSubSize,0,2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24075,'S_Big_Weapon','Large Shadow Weapon',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,0,'bonus2 bAddSize,2,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddSize,2,1; } if(.@r>=9) { bonus2 bAddSize,2,2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24076,'S_Medium_Weapon','Medium Shadow Weapon',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,0,'bonus2 bAddSize,1,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddSize,1,1; } if(.@r>=9) { bonus2 bAddSize,1,2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24077,'S_Small_Weapon','Small Shadow Weapon',12,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,0,'bonus2 bAddSize,0,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddSize,0,1; } if(.@r>=9) { bonus2 bAddSize,0,2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24078,'S_Spiritual_Weapon','Spiritual Shadow Weapon',12,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,131072,NULL,'1',1,0,'bonus bUseSPrate,-5; if(getrefine()>=7){bonus bSPrecovRate,5;}',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24079,'S_Spiritual_Earring','Spiritual Shadow Earring',12,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1048576,NULL,'1',1,NULL,'bonus bMaxSP,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24080,'S_Spiritual_Pendent','Spiritual Shadow Pendant',12,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,2097152,NULL,'1',1,NULL,'bonus bMaxSPrate,(getrefine()>=7?2:1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24081,'S_Malicious_Armor','Malicious Shas Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'bonus bMaxHP,100; if(getrefine()>=7){bonus bMaxHPrate,1;}',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24082,'S_Malicious_Shoes','Malicious Shas Shadow Shoes',12,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,524288,NULL,'1',1,NULL,'bonus bMaxHPrate,(getrefine()>=7?2:1);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24083,'S_Malicious_Shield','Malicious Shas Shadow Shield',12,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,262144,NULL,'1',1,NULL,'bonus bHPrecovRate,(getrefine()>=7?10:5);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24084,'S_Gemstone_Armor','Gemstone Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'bonus bCritical,5+(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24085,'S_Gemstone_Shoes','Gemstone Shadow Shoes',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'1',1,NULL,'bonus bFlee,5+(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24086,'S_Gemstone_Shield','Gemstone Shadow Shield',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,NULL,'bonus bDef,5+(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24087,'S_Gemstone_Weapon','Gemstone Shadow Weapon',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'bonus bHit,5+(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24088,'S_Gemstone_Earring','Gemstone Shadow Earring',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1048576,NULL,'1',1,NULL,'bonus bMatk,5+(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24089,'S_Gemstone_Pendent','Gemstone Shadow Pendant',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2097152,NULL,'1',1,NULL,'bonus bBaseAtk,5+(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24090,'S_Stability_Shield','Stability Shadow Shield',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,NULL,'bonus bDef,3; .@r = getrefine(); bonus2 bResEff,Eff_Stun,.@r/2; bonus2 bResEff,Eff_Freeze,.@r/2; bonus2 bResEff,Eff_Curse,.@r/2; bonus2 bResEff,Eff_Bleeding,.@r/2; bonus2 bResEff,Eff_Stone,.@r; bonus2 bResEff,Eff_Sleep,.@r; bonus2 bResEff,Eff_Silence,.@r; bonus2 bResEff,Eff_Blind,.@r;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24091,'S_Plasterer\'s_Armor','Harrods Plaster Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'bonus bDef,1; bonus2 bResEff,Eff_Stone,getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24092,'S_Plasterer\'s_Shoes','Harrods Plaster Shadow Shoes',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'1',1,NULL,'bonus bDef,1; bonus2 bResEff,Eff_Stone,getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24093,'S_Insomniac_Armor','Insomnia Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'bonus bDef,1; bonus2 bResEff,Eff_Sleep,getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24094,'S_Insomniac_Shoes','Insomnia Shadow Shoes',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'1',1,NULL,'bonus bDef,1; bonus2 bResEff,Eff_Sleep,getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24095,'S_Peerless_Armor','Peerless Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'bonus bDef,1; bonus2 bResEff,Eff_Silence,getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24096,'S_Peerless_Shoes','Peerless Shadow Shoes',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'1',1,NULL,'bonus bDef,1; bonus2 bResEff,Eff_Silence,getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24097,'S_Adurate_Armor','Andre Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'bonus bDef,1; bonus2 bResEff,Eff_Blind,getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24098,'S_Adurate_Shoes','Andre Shadow Shoes',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'1',1,NULL,'bonus bDef,1; bonus2 bResEff,Eff_Blind,getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24099,'Unfreez_Weapon_S','Unfreezing Shadow Weapon',12,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'bonus bDef,1; bonus2 bResEff,Eff_Freeze,getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24100,'Unfreeze_Earing_S','Unfreezing Shadow Earring',12,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1048576,NULL,'1',1,NULL,'bonus bDef,1; bonus2 bResEff,Eff_Freeze,getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24101,'Unfreeze_Pendent_S','Unfreezing Shadow Pendant',12,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,2097152,NULL,'1',1,NULL,'bonus bDef,1; bonus2 bResEff,Eff_Freeze,getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24102,'Vitality_Earing_S','Vitality Shadow Earring',12,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1048576,NULL,'1',1,NULL,'bonus bDef,1; bonus2 bResEff,Eff_Bleeding,getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24103,'Vitality_Pendant_S','Vitality Shadow Pendant',12,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2097152,NULL,'1',1,NULL,'bonus bDef,1; bonus2 bResEff,Eff_Bleeding,getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24104,'S_Neutral_Weapon','Neutral Shadow Weapon',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'bonus bDef,1; bonus2 bResEff,Eff_Stun,getrefine()/2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24105,'S_Neutral_Earring','Neutral Shadow Earring',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1048576,NULL,'1',1,NULL,'bonus bDef,1; bonus2 bResEff,Eff_Stun,getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24106,'S_Neutral_Pendent','Neutral Shadow Pendant',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2097152,NULL,'1',1,NULL,'bonus bDef,1; bonus2 bResEff,Eff_Stun,getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24107,'S_Curse_Lift_Earring','Frozen Curse Shadow Earring',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1048576,NULL,'1',1,NULL,'bonus bDef,1; bonus2 bResEff,Eff_Curse,getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24108,'S_Curse_Lift_Pendent','Frozen Curse Shadow Pendant',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2097152,NULL,'1',1,NULL,'bonus bDef,1; bonus2 bResEff,Eff_Curse,getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24109,'S_Caster_earring','Caster Shadow Earrings',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1048576,NULL,'1',1,NULL,'bonus bVariableCastrate,-1-((getrefine()>=7)?1:0);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24110,'S_Caster_Weapon','Caster Shadow Weapon',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'.@r = getrefine(); bonus bVariableCastrate,-1-((.@r>=7)?1:0)-((.@r>=9)?2:0);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24111,'S_Spell_Flow_Shoes','Spellflow Shadow Shoes',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'1',1,NULL,'bonus bUseSPrate,1; if(getrefine()>=7) bonus bSPrecovRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24112,'S_Spell_Flow_Armor','Spellflow Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'bonus bUseSPrate,1+((getrefine()>=7)?1:0)+((getrefine()>=9)?1:0);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24113,'S_Spell_Flow_Shield','Spellflow Shadow Shield',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,NULL,'bonus bUseSPrate,1; if(getrefine()>=7) bonus bMaxSPrate,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24114,'S_Greed_Armor','Grid Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'skill "BS_GREED",1; bonus2 bSkillUseSP,"BS_GREED",100-(getrefine()*10);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24115,'S_Greed_Shoes','Grid Shadow Shoes',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'1',1,NULL,'skill "BS_GREED",1; bonus2 bSkillUseSP,"BS_GREED",-100+(getrefine()*10);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24116,'S_Greed_Shield','Grid Shadow Shield',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,NULL,'skill "BS_GREED",1; bonus2 bSkillUseSP,"BS_GREED",-100+(getrefine()*10);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24117,'S_Greed_Weapon','Grid Shadow Weapon',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'skill "BS_GREED",1; bonus2 bSkillUseSP,"BS_GREED",-100+(getrefine()*10);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24118,'S_Greed_Earring','Grid Shadow Earring',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1048576,NULL,'1',1,NULL,'skill "BS_GREED",1; bonus2 bSkillUseSP,"BS_GREED",-100+(getrefine()*10);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24119,'S_Greed_Pendant','Grid Shadow Pendant',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2097152,NULL,'1',1,NULL,'skill "BS_GREED",1; bonus2 bSkillUseSP,"BS_GREED",-100+(getrefine()*10);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24120,'S_Heal_Armor','Heal Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'skill "AL_HEAL",1; bonus2 bSkillUseSP,"AL_HEAL",-50+(getrefine()*5);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24121,'S_Heal_Shoes','Heal Shadow Shoes',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'1',1,NULL,'skill "AL_HEAL",1; bonus2 bSkillUseSP,"AL_HEAL",-50+(getrefine()*5);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24122,'S_Heal_Shield','Heal Shadow Shield',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,NULL,'skill "AL_HEAL",1; bonus2 bSkillUseSP,"AL_HEAL",-50+(getrefine()*5);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24123,'S_Heal_Weapon','Heal Shadow Weapon',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'skill "AL_HEAL",1; bonus2 bSkillUseSP,"AL_HEAL",-50+(getrefine()*5);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24124,'S_Heal_Earring','Heal Shadow Earring',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1048576,NULL,'1',1,NULL,'skill "AL_HEAL",1; bonus2 bSkillUseSP,"AL_HEAL",-50+(getrefine()*5);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24125,'S_Heal_Pendant','Heal Shadow Pendant',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2097152,NULL,'1',1,NULL,'skill "AL_HEAL",1; bonus2 bSkillUseSP,"AL_HEAL",-50+(getrefine()*5);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24126,'S_Hiding_Armor','Hiding Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'skill "TF_HIDING",1; bonus2 bSkillUseSP,"TF_HIDING",-50+(getrefine()*5);',NULL,'sc_end SC_HIDING;'); -REPLACE INTO `item_db_re` VALUES (24127,'S_Hiding_Shoes','Hiding Shadow Shoes',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'1',1,NULL,'skill "TF_HIDING",1; bonus2 bSkillUseSP,"TF_HIDING",-50+(getrefine()*5);',NULL,'sc_end SC_HIDING;'); -REPLACE INTO `item_db_re` VALUES (24128,'S_Hiding_Shield','Hiding Shadow Shield',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,NULL,'skill "TF_HIDING",1; bonus2 bSkillUseSP,"TF_HIDING",-50+(getrefine()*5);',NULL,'sc_end SC_HIDING;'); -REPLACE INTO `item_db_re` VALUES (24129,'S_Hiding_Weapon','Hiding Shadow Weapon',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'skill "TF_HIDING",1; bonus2 bSkillUseSP,"TF_HIDING",-50+(getrefine()*5);',NULL,'sc_end SC_HIDING;'); -REPLACE INTO `item_db_re` VALUES (24130,'S_Hiding_Earring','Hiding Shadow Earring',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1048576,NULL,'1',1,NULL,'skill "TF_HIDING",1; bonus2 bSkillUseSP,"TF_HIDING",-50+(getrefine()*5);',NULL,'sc_end SC_HIDING;'); -REPLACE INTO `item_db_re` VALUES (24131,'S_Hiding_Pendant','Hiding Shadow Pendant',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2097152,NULL,'1',1,NULL,'skill "TF_HIDING",1; bonus2 bSkillUseSP,"TF_HIDING",-50+(getrefine()*5);',NULL,'sc_end SC_HIDING;'); -REPLACE INTO `item_db_re` VALUES (24132,'S_Cloaking_Armor','Cloaking Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'skill "AS_CLOAKING",1; bonus2 bSkillUseSP,"AS_CLOAKING",-50+(getrefine()*5);',NULL,'sc_end SC_CLOAKING;'); -REPLACE INTO `item_db_re` VALUES (24133,'S_Cloaking_Shoes','Cloaking Shadow Shoes',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'1',1,NULL,'skill "AS_CLOAKING",1; bonus2 bSkillUseSP,"AS_CLOAKING",-50+(getrefine()*5);',NULL,'sc_end SC_CLOAKING;'); -REPLACE INTO `item_db_re` VALUES (24134,'S_Cloaking_Shield','Cloaking Shadow Shield',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,NULL,'skill "AS_CLOAKING",1; bonus2 bSkillUseSP,"AS_CLOAKING",-50+(getrefine()*5);',NULL,'sc_end SC_CLOAKING;'); -REPLACE INTO `item_db_re` VALUES (24135,'S_Cloaking_Weapon','Cloaking Shadow Weapon',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'skill "AS_CLOAKING",1; bonus2 bSkillUseSP,"AS_CLOAKING",-50+(getrefine()*5);',NULL,'sc_end SC_CLOAKING;'); -REPLACE INTO `item_db_re` VALUES (24136,'S_Cloaking_Earring','Cloaking Shadow Earring',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1048576,NULL,'1',1,NULL,'skill "AS_CLOAKING",1; bonus2 bSkillUseSP,"AS_CLOAKING",-50+(getrefine()*5);',NULL,'sc_end SC_CLOAKING;'); -REPLACE INTO `item_db_re` VALUES (24137,'S_Cloaking_Pendant','Cloaking Shadow Pendant',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2097152,NULL,'1',1,NULL,'skill "AS_CLOAKING",1; bonus2 bSkillUseSP,"AS_CLOAKING",-50+(getrefine()*5);',NULL,'sc_end SC_CLOAKING;'); -REPLACE INTO `item_db_re` VALUES (24138,'S_Teleport_Armor','Teleport Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'skill "AL_TELEPORT",1; bonus2 bSkillUseSP,"AL_TELEPORT",-50+(getrefine()*5);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24139,'S_Teleport_Shoes','Teleport Shadow Shoes',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'1',1,NULL,'skill "AL_TELEPORT",1; bonus2 bSkillUseSP,"AL_TELEPORT",-50+(getrefine()*5);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24140,'S_Teleport_Shield','Teleport Shadow Shield',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,NULL,'skill "AL_TELEPORT",1; bonus2 bSkillUseSP,"AL_TELEPORT",-50+(getrefine()*5);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24141,'S_Teleport_Weapon','Teleport Shadow Weapon',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'skill "AL_TELEPORT",1; bonus2 bSkillUseSP,"AL_TELEPORT",-50+(getrefine()*5);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24142,'S_Teleport_Earring','Teleport Shadow Earring',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1048576,NULL,'1',1,NULL,'skill "AL_TELEPORT",1; bonus2 bSkillUseSP,"AL_TELEPORT",-50+(getrefine()*5);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24143,'S_Teleport_Pendant','Teleport Shadow Pendant',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2097152,NULL,'1',1,NULL,'skill "AL_TELEPORT",1; bonus2 bSkillUseSP,"AL_TELEPORT",-50+(getrefine()*5);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24144,'S_Steal_Armor','Steal Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'skill "TF_STEAL",1; bonus2 bSkillUseSP,"TF_STEAL",-50+(getrefine()*5);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24145,'S_Steal_Shoes','Steal Shadow Shoes',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'1',1,NULL,'skill "TF_STEAL",1; bonus2 bSkillUseSP,"TF_STEAL",-50+(getrefine()*5);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24146,'S_Steal_Shield','Steal Shadow Shield',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,NULL,'skill "TF_STEAL",1; bonus2 bSkillUseSP,"TF_STEAL",-50+(getrefine()*5);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24147,'S_Steal_Weapon','Steal Shadow Weapon',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'skill "TF_STEAL",1; bonus2 bSkillUseSP,"TF_STEAL",-50+(getrefine()*5);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24148,'S_Steal_Earring','Steal Shadow Earring',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1048576,NULL,'1',1,NULL,'skill "TF_STEAL",1; bonus2 bSkillUseSP,"TF_STEAL",-50+(getrefine()*5);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24149,'S_Steal_Pendant','Steal Shadow Pendant',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2097152,NULL,'1',1,NULL,'skill "TF_STEAL",1; bonus2 bSkillUseSP,"TF_STEAL",-50+(getrefine()*5);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24150,'S_Infinity_Earring','Infinity Shadow Earring',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1048576,NULL,'1',1,NULL,'.@r = getrefine(); bonus2 bSubSize,Size_All,1+((.@r >= 9) ? 2 : (.@r >= 7) ? 1 : 0);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24151,'S_Infinity_Pendant','Infinity Shadow Pendant',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2097152,NULL,'1',1,NULL,'.@r = getrefine(); bonus2 bSubSize,Size_All,1+((.@r >= 9) ? 2 : (.@r >= 7) ? 1 : 0);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24152,'S_Solid_Weapon','Solid Shadow Weapon',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'bonus bBaseAtk,5+(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24153,'S_Solid_Earring','Solid Shadow Earring',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1048576,NULL,'1',1,NULL,'bonus bHit,5+(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24154,'S_Immortal_Armor','Solid Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'bonus bDef,5+(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24155,'S_Immortal_Pendant','Solid Shadow Pendant',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2097152,NULL,'1',1,NULL,'bonus bMdef,(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24156,'S_Executioner_Weapon','Demi-Human Shadow Weapon',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5+(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24157,'S_Exorcist_Weapon','Exorcist Shadow Weapon',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'bonus2 bIgnoreDefRaceRate,RC_Demon,5+(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24158,'S_Hunting_Weapon','Hunting Shadow Weapon',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'bonus2 bIgnoreDefRaceRate,RC_Brute,5+(getrefine()/2); bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5+(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24159,'S_Insect_Net_Weapon','Insect Shadow Weapon',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'bonus2 bIgnoreDefRaceRate,RC_Insect,5+(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24160,'S_Fishing_Weapon','Fishing Shadow Weapon',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'bonus2 bIgnoreDefRaceRate,RC_Fish,5+(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24161,'S_Dragon_Killer_Weapon','Dragon Killer Shadow Weapon',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'bonus2 bIgnoreDefRaceRate,RC_Dragon,5+(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24162,'S_Corrupt_Weapon','Angelus Shadow Weapon',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'bonus2 bIgnoreDefRaceRate,RC_Angel,5+(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24163,'S_Vibration_Weapon','Formless Shadow Weapon',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'bonus2 bIgnoreDefRaceRate,RC_Formless,5+(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24164,'S_Holy_Water_Weapon','Holy Water Shadow Weapon',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'bonus2 bIgnoreDefRaceRate,RC_Undead,5+(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24165,'S_Scissors_Weapon','Plant Shadow Weapon',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'bonus2 bIgnoreDefRaceRate,RC_Plant,5+(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24166,'S_Penetration_Earring','Penetration Shadow Earring',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1048576,NULL,'1',1,NULL,'.@r = getrefine(); bonus2 bIgnoreDefRaceRate,RC_All,5+(.@r/2); bonus2 bIgnoreDefRaceRate,RC_Player_Human,-5-(.@r/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24167,'S_Penetration_Pendent','Penetration Shadow Pendant',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2097152,NULL,'1',1,NULL,'.@r = getrefine(); bonus2 bIgnoreDefRaceRate,RC_All,5+(.@r/2); bonus2 bIgnoreDefRaceRate,RC_Player_Human,-5-(.@r/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24168,'S_Tempest_Earring','Tempest Shadow Earring',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1048576,NULL,'1',1,NULL,'bonus2 bIgnoreMdefClassRate,Class_Normal,5+(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24169,'S_Tempest_Pendent','Tempest Pendant Shadow',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2097152,NULL,'1',1,NULL,'bonus2 bIgnoreMdefClassRate,Class_Normal,5+(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24170,'S_M_Executioner_Weapon','Magic Demi-Human Shadow Weapon',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5+(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24171,'S_M_Exorcist_Weapon','Magic Exorcist Shadow Weapon',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'bonus2 bIgnoreMdefRaceRate,RC_Demon,5+(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24172,'S_M_Hunting_Weapon','Magic Hunting Shadow Weapon',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'bonus2 bIgnoreMdefRaceRate,RC_Brute,5+(getrefine()/2); bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,5+(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24173,'S_M_Insect_Net_Weapon','Magic Insect Shadow Weapon',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'bonus2 bIgnoreMdefRaceRate,RC_Insect,5+(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24174,'S_M_Fishing_Weapon','Magic Fishing Shadow Weapon',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'bonus2 bIgnoreMdefRaceRate,RC_Fish,5+(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24175,'S_M_Dragon_K_Weapon','Magic Dragon Killer Shadow Weapon',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'bonus2 bIgnoreMdefRaceRate,RC_Dragon,5+(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24176,'S_M_Corrupt_Weapon','Magic Angelus Shadow Weapon',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'bonus2 bIgnoreMdefRaceRate,RC_Angel,5+(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24177,'S_M_Vibration_Weapon','Magic Formless Shadow Weapon',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'bonus2 bIgnoreMdefRaceRate,RC_Formless,5+(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24178,'S_M_Holy_Water_Weapon','Magic Holy Water Shadow Weapon',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'bonus2 bIgnoreMdefRaceRate,RC_Undead,5+(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24179,'S_M_Scissors_Weapon','Magic Caesars Shadow Weapon',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'bonus2 bIgnoreMdefRaceRate,RC_Plant,5+(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24180,'S_Bearers_Armor','Bearer\'s Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'bonus bMdef,1+(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24181,'S_Bearers_Shoes','Bearer\'s Shadow Shoes',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'1',1,NULL,'bonus bMaxSP,50+(5*(getrefine()/2));',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24182,'S_Bearers_Shield','Bearer\'s Shadow Shield',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,NULL,'bonus bDef,5+(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24183,'S_Bearers_Weapon','Bearer\'s Shadow Weapon',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'bonus bMaxHP,100+(10*(getrefine()/2));',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24184,'S_Bearers_Earring','Bearer\'s Shadow Earring',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1048576,NULL,'1',1,NULL,'bonus bMatk,5+(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24185,'S_Bearers_Pendent','Bearer\'s Shadow Pendant',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2097152,NULL,'1',1,NULL,'bonus bBaseAtk,5+(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24186,'S_Basis_Armor','Basis Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'.@r = getrefine(); bonus2 bAddEle,Ele_Neutral,1+(.@r/2); bonus2 bMagicAddEle,Ele_Neutral,1+(.@r/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24187,'S_Hallowed_Armor','Hallowed Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'.@r = getrefine(); bonus2 bAddEle,Ele_Dark,1+(.@r/2); bonus2 bMagicAddEle,Ele_Dark,1+(.@r/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24188,'S_Saharic_Armor','Underneith Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'.@r = getrefine(); bonus2 bAddEle,Ele_Water,1+(.@r/2); bonus2 bMagicAddEle,Ele_Water,1+(.@r/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24189,'S_Underneath_Armor','Underneath Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'.@r = getrefine(); bonus2 bAddEle,Ele_Earth,1+(.@r/2); bonus2 bMagicAddEle,Ele_Earth,1+(.@r/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24190,'S_Flam_Armor','Flame Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'.@r = getrefine(); bonus2 bAddEle,Ele_Fire,1+(.@r/2); bonus2 bMagicAddEle,Ele_Fire,1+(.@r/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24191,'S_Windy_Armor','Windy Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'.@r = getrefine(); bonus2 bAddEle,Ele_Wind,1+(.@r/2); bonus2 bMagicAddEle,Ele_Wind,1+(.@r/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24192,'S_Envenom_Armor','Envenom Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'.@r = getrefine(); bonus2 bAddEle,Ele_Poison,1+(.@r/2); bonus2 bMagicAddEle,Ele_Poison,1+(.@r/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24193,'S_Damned_Armor','Damned Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'.@r = getrefine(); bonus2 bAddEle,Ele_Holy,1+(.@r/2); bonus2 bMagicAddEle,Ele_Holy,1+(.@r/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24194,'S_Geist_Armor','Exorcism Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'.@r = getrefine(); bonus2 bAddEle,Ele_Ghost,1+(.@r/2); bonus2 bMagicAddEle,Ele_Ghost,1+(.@r/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24195,'S_Divine_Armor','Divine Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'.@r = getrefine(); bonus2 bAddEle,Ele_Undead,1+(.@r/2); bonus2 bMagicAddEle,Ele_Undead,1+(.@r/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24196,'S_Hasty_Shoes','Hasty Shadow Shoes',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'1',1,NULL,'bonus bFlee,5+(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24197,'S_Hasty_Armor','Hasty Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'bonus bFlee,5+(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24198,'S_Basis_Shield','Basis Shadow Shield',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,NULL,'.@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Neutral,.@i; bonus2 bMagicSubDefEle,Ele_Neutral,.@i;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24199,'S_Hallowed_Shield','Hallowed Shadow Shield',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,NULL,'.@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Dark,.@i; bonus2 bMagicSubDefEle,Ele_Dark,.@i;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24200,'S_Saharic_Shield','Saharic Shadow Shield',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,NULL,'.@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Water,.@i; bonus2 bMagicSubDefEle,Ele_Water,.@i;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24201,'S_Underneath_Shield','Underneath Shadow Shield',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,NULL,'.@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Earth,.@i; bonus2 bMagicSubDefEle,Ele_Earth,.@i;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24202,'S_Flam_Shield','Flame Shadow Shield',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,NULL,'.@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Fire,.@i; bonus2 bMagicSubDefEle,Ele_Fire,.@i;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24203,'S_Windy_Shield','Windy Shadow Shield',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,NULL,'.@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Wind,.@i; bonus2 bMagicSubDefEle,Ele_Wind,.@i;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24204,'S_Envenom_Shield','Envenom Shadow Shield',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,NULL,'.@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Poison,.@i; bonus2 bMagicSubDefEle,Ele_Poison,.@i;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24205,'S_Damned_Shield','Damned Shadow Shield',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,NULL,'.@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Holy,.@i; bonus2 bMagicSubDefEle,Ele_Holy,.@i;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24206,'S_Geist_Shield','Exorcism Shadow Shield',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,NULL,'.@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Ghost,.@i; bonus2 bMagicSubDefEle,Ele_Ghost,.@i;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24207,'S_Divine_Shield','Divine Shadow Shield',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,NULL,'.@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Undead,.@i; bonus2 bMagicSubDefEle,Ele_Undead,.@i;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24208,'S_Expert_Shoes','Expert Shadow Shoes',12,20,NULL,100,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'150:175',1,NULL,'bonus2 bExpAddRace,RC_All,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24209,'S_Expert_Shield','Expert Shadow Shield',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'150:175',1,NULL,'bonus2 bExpAddRace,RC_All,(getrefine()/4);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24210,'S_Beginner_Shoes','Beginner Shadow Shoes',12,20,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'1:49',1,NULL,'bonus2 bExpAddRace,RC_All,getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24211,'S_Beginner_Shield','Beginner Shadow Shield',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1:49',1,NULL,'bonus2 bExpAddRace,RC_All,getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24212,'S_Rookie_Shoes','Rookie Shadow Shoes',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'50:99',1,NULL,'bonus2 bExpAddRace,RC_All,(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24213,'S_Rookie_Shield','Rookie Shadow Shield',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'50:99',1,NULL,'bonus2 bExpAddRace,RC_All,(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24214,'S_Advanced_Shoes','Advanced Shadow Shoes',12,20,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'100:149',1,NULL,'bonus2 bExpAddRace,RC_All,(getrefine()/3);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24215,'S_Advanced_Shield','Advanced Shadow Shield',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'100:149',1,NULL,'bonus2 bExpAddRace,RC_All,(getrefine()/3);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24216,'S_Attack_Armor','Attack Shadow Armor',12,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'.@r = getrefine(); autobonus "{ bonus bBaseAtk,("+.@r+"*5); }",(.@r*2)+10,3000,BF_NORMAL;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24217,'S_Blitz_Earring','Blitz Shadow Earring',12,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1048576,NULL,'1',1,NULL,'.@r = getrefine(); bonus bHit,(.@r/2)+5; if(.@r>=7){ bonus bAspd,1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24218,'S_Blitz_Pendent','Blitz Shadow Pendant',12,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2097152,NULL,'1',1,NULL,'.@r = getrefine(); bonus bAtk2,(.@r/2)+5; if(.@r>=7){ bonus bAspd,1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24219,'S_ColdBolt_Armor','Cold Bolt Shadow Armor',12,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'.@r = getrefine(); if(.@r>=2) autobonus "{ bonus3 bAutoSpell,\\\"MG_COLDBOLT\\\",("+.@r+"/2),1000; }",(.@r*2)+100,100,BF_SHORT;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24220,'S_FireBolt_Armor','Fire Bolt Shadow Armor',12,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'.@r = getrefine(); if(.@r>=2) autobonus "{ bonus3 bAutoSpell,\\\"MG_FIREBOLT\\\",("+.@r+"/2),1000; }",(.@r*2)+100,100,BF_SHORT;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24221,'S_LightingBolt_Armor','Lightning Bolt Shadow Armor',12,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'.@r = getrefine(); if(.@r>=2) autobonus "{ bonus3 bAutoSpell,\\\"MG_LIGHTNINGBOLT\\\",("+.@r+"/2),1000; }",(.@r*2)+100,100,BF_SHORT;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24222,'S_EarthSpike_Armor','Earth Spike Shadow Armor',12,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'.@r = getrefine(); if(.@r>=2) autobonus "{ bonus3 bAutoSpell,\\\"WZ_EARTHSPIKE\\\",("+.@r+"/2),1000; }",(.@r*2)+100,100,BF_SHORT;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24223,'S_Enhance_Force_Weapon','Enhanced Force Shadow Weapon',12,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,56,2,131072,NULL,'100',1,NULL,'bonus bAtk2,10; bonus2 bAddClass,Class_All,(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24224,'S_Force_Weapon','Force Shadow Weapon',12,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'70',1,NULL,'.@r = getrefine(); bonus2 bAddClass,Class_All,(.@r<7)?1:((.@r<9)?2:3);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24225,'S_Force_Earring','Force Shadow Earring',12,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1048576,NULL,'70',1,NULL,'.@r = getrefine(); bonus bAtk2,(5+.@r); if(.@r>=7) bonus bMaxHPrate,1; if(.@r>=9) bonus bMaxSPrate,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24226,'S_Force_Pendant','Force Shadow Pendant',12,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2097152,NULL,'70',1,NULL,'.@r = getrefine(); bonus bAtk2,(5+.@r); if(.@r>=7) bonus bMaxHPrate,1; if(.@r>=9) bonus bMaxSPrate,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24227,'S_Enhance_Spirit_Weapon','Enhanced Soul Shadow Weapon',12,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,56,2,131072,NULL,'100',1,NULL,'bonus bMatk,10; bonus bMatkRate,(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24228,'S_Spirit_Weapon','Soul Shadow Weapon',12,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'70',1,NULL,'.@r = getrefine(); bonus bMatkRate,(.@r<7)?1:((.@r<9)?2:3);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24229,'S_Spirit_Earring','Soul Shadow Earring',12,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1048576,NULL,'70',1,NULL,'.@r = getrefine(); bonus bMatk,(5+.@r); if(.@r>=7) bonus bMaxHPrate,1; if(.@r>=9) bonus bMatkRate,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24230,'S_Spirit_Pendant','Soul Shadow Pendant',12,10,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2097152,NULL,'70',1,NULL,'.@r = getrefine(); bonus bMatk,(5+.@r); if(.@r>=7) bonus bMaxHPrate,1; if(.@r>=9) bonus bMatkRate,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24231,'S_Blitz_Shoes','Blitz Shadow Shoes',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'1',1,NULL,'bonus bFlee,5; .@r = getrefine(); if(.@r>=2){ bonus bCritical,2; } if(.@r>=7){ bonus bAspd,1; } if(.@r>=9){ bonus bAspd,1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24232,'S_Blitz_Shield','Blitz Shadow Shield',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,NULL,'bonus bCritical,5; .@r = getrefine(); if(.@r>=2){ bonus bCritical,2; } if(.@r>=7){ bonus bAspd,1; } if(.@r>=9){ bonus bAspd,1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24233,'S_Exceed_Weapon','Exceeding Shadow Weapon',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'100',1,NULL,'.@r = getrefine()/2; bonus bBaseAtk,5; bonus bMatk,5; bonus2 bAddClass,Class_All,.@r; bonus bMatkRate,.@r;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24234,'S_Titan_Earring','Titan Shadow Earring',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1048576,NULL,'1',1,NULL,'.@r = getrefine(); .@rate = (.@r<7)?1:((.@r<9)?2:4); bonus2 bAddSize,Size_Large,.@rate; bonus2 bMagicAddSize,Size_Large,.@rate;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24235,'S_Titan_Pendant','Titan Shadow Pendant',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2097152,NULL,'1',1,NULL,'.@r = getrefine(); .@rate = (.@r<7)?1:((.@r<9)?2:4); bonus2 bAddSize,Size_Large,.@rate; bonus2 bMagicAddSize,Size_Large,.@rate;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24236,'S_Boned_Earring','Boned Shadow Earring',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1048576,NULL,'1',1,NULL,'.@r = getrefine(); .@rate = (.@r<7)?1:((.@r<9)?2:4); bonus2 bAddSize,Size_Medium,.@rate; bonus2 bMagicAddSize,Size_Medium,.@rate;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24237,'S_Boned_Pendant','Boned Shadow Pendant',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2097152,NULL,'1',1,NULL,'.@r = getrefine(); .@rate = (.@r<7)?1:((.@r<9)?2:4); bonus2 bAddSize,Size_Medium,.@rate; bonus2 bMagicAddSize,Size_Medium,.@rate;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24238,'S_Gigantic_Earring','Gigantic Shadow Earring',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1048576,NULL,'1',1,NULL,'.@r = getrefine(); .@rate = (.@r<7)?1:((.@r<9)?2:4); bonus2 bAddSize,Size_Small,.@rate; bonus2 bMagicAddSize,Size_Small,.@rate;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24239,'S_Gigantic_Pendant','Gigantic Shadow Pendant',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2097152,NULL,'1',1,NULL,'.@r = getrefine(); .@rate = (.@r<7)?1:((.@r<9)?2:4); bonus2 bAddSize,Size_Small,.@rate; bonus2 bMagicAddSize,Size_Small,.@rate;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24240,'S_Caster_Shoes','Caster Shadow Shoes',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'1',1,NULL,'bonus bMatk,5; bonus bUseSPrate,-1-(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24241,'S_Caster_Shield','Caster Shadow Shield',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,NULL,'bonus bMatk,5; bonus bUseSPrate,-1-(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24242,'S_Caster_Armor','Caster Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'bonus bMatk,5; bonus bUseSPrate,-1-(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24243,'S_Reload_Shoes','Reload Shadow Shoes',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'1',1,NULL,'.@r = getrefine(); bonus bDelayrate,(.@r<7)?-1:((.@r<9)?-2:-3);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24244,'S_Reload_Shield','Reload Shadow Shield',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,NULL,'.@r = getrefine(); bonus bDelayrate,(.@r<7)?-1:((.@r<9)?-2:-3);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24245,'S_Reload_Armor','Reload Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'.@r = getrefine(); bonus bDelayrate,(.@r<7)?-1:((.@r<9)?-2:-3);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24246,'S_Swordman_Earring','Swordman Shadow Earring',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1048576,NULL,'1',1,NULL,'.@r = getrefine(); bonus2 bSkillUseSPrate,"SM_BASH",20+(3*.@r);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24247,'S_Merchant_Earring','Merchant Shadow Earring',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1048576,NULL,'1',1,NULL,'.@r = getrefine(); bonus2 bSkillUseSPrate,"MC_MAMMONITE",20+(3*.@r);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24248,'S_Acolyte_Earring','Acolyte Shadow Earring',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1048576,NULL,'1',1,NULL,'.@r = getrefine(); bonus2 bSkillUseSPrate,"AL_HEAL",20+(3*.@r);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24249,'S_Magician_Earring','Magician Shadow Earring',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1048576,NULL,'1',1,NULL,'.@r = getrefine(); bonus2 bSkillUseSPrate,"MG_COLDBOLT",20+(3*.@r); bonus2 bSkillUseSPrate,"MG_FIREBOLT",20+(3*.@r); bonus2 bSkillUseSPrate,"MG_LIGHTNINGBOLT",20+(3*.@r);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24250,'S_Swordman_Pendant','Swordman Shadow Pendant',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2097152,NULL,'1',1,NULL,'.@r = getrefine(); bonus2 bSkillAtk,"SM_MAGNUM",20+(5*.@r);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24251,'S_Merchant_Pendant','Merchant Shadow Pendant',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2097152,NULL,'1',1,NULL,'.@r = getrefine(); bonus2 bSkillAtk,"MC_CARTREVOLUTION",20+(5*.@r);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24252,'S_Acolyte_Pendant','Acolyte Shadow Pendant',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2097152,NULL,'1',1,NULL,'.@r = getrefine(); bonus2 bSkillAtk,"AL_HOLYLIGHT",20+(5*.@r);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24253,'S_Thief_Pendant','Thief Shadow Pendant',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2097152,NULL,'1',1,NULL,'.@r = getrefine(); bonus2 bSkillAtk,"TF_POISON",20+(5*.@r);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24254,'S_Magician_Pendant','Magician Shadow Pendant',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2097152,NULL,'1',1,NULL,'.@r = getrefine(); bonus2 bSkillAtk,"MG_FIREWALL",20+5*.@r;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24255,'S_Archer_Pendant','Archer Shadow Pendant',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2097152,NULL,'1',1,NULL,'.@r = getrefine(); bonus2 bSkillAtk,"AC_SHOWER",20+(5*.@r);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24256,'Knight_Shadow_Shoes','Knight Shadow Shoes',12,NULL,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,524288,NULL,'1',1,NULL,'.@r = getrefine(); bonus2 bSkillAtk,"KN_PIERCE",20+.@r*5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24257,'Crusader_Shadow_Shoes','Crusader Shadow Shoes',12,NULL,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,524288,NULL,'1',1,NULL,'.@r = getrefine(); bonus2 bSkillUseSPrate,"CR_HOLYCROSS",(20+(3*.@r));',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24258,'Blacksmith_Shadow_Shoes','Blacksmith Shadow Shoes',12,NULL,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,524288,NULL,'1',1,NULL,'.@r = getrefine(); .@val = 20+(5*.@r); bonus2 bSkillUseSPrate,"BS_HAMMERFALL",.@val; bonus2 bSkillUseSPrate,"BS_ADRENALINE",.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24259,'Alchemist_Shadow_Shoes','Alchemist Shadow Shoes',12,NULL,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,524288,NULL,'1',1,NULL,'.@r = getrefine(); if (BaseJob==Job_Alchemist) bonus bHealPower,30+7*.@r;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24260,'Priest_Shadow_Shoes','Priest Shadow Shoes',12,NULL,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,524288,NULL,'1',1,NULL,'.@r = getrefine(); .@val = 20+(3*.@r); bonus2 bSkillUseSPrate,"PR_KYRIE",.@val; bonus2 bSkillUseSPrate,"PR_LEXAETERNA",.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24261,'Monk_Shadow_Shoes','Monk Shadow Shoes',12,NULL,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,524288,NULL,'1',1,NULL,'.@r = getrefine(); bonus2 bSkillAtk,"MO_CHAINCOMBO",20+.@r*5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24262,'Assassin_Shadow_Shoes','Assassin Shadow Shoes',12,NULL,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,524288,NULL,'1',1,NULL,'.@r = getrefine(); bonus2 bSkillAtk,"AS_GRIMTOOTH",20+.@r*5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24263,'Rogue_Shadow_Shoes','Rogue Shadow Shoes',12,NULL,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,524288,NULL,'1',1,NULL,'.@a = getskilllv("SM_SWORD"); .@r = max(getrefine(),6); bonus bBaseAtk,.@a+((.@r-6)*.@a);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24264,'Wizard_Shadow_Shoes','Wizard Shadow Shoes',12,NULL,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,524288,NULL,'1',1,NULL,'.@r = getrefine(); bonus2 bVariableCastrate,"WZ_STORMGUST",-1*(20+(3*.@r)); bonus2 bVariableCastrate,"WZ_VERMILION",-1*(20+(3*.@r)); bonus2 bVariableCastrate,"WZ_METEOR",-1*(20+(3*.@r));',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24265,'Sage_Shadow_Shoes','Sage Shadow Shoes',12,NULL,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,524288,NULL,'1',1,NULL,'.@r = getrefine(); bonus2 bSkillAtk,"WZ_HEAVENDRIVE",20+.@r*5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24266,'Hunter_Shadow_Shoes','Hunter Shadow Shoes',12,NULL,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,524288,NULL,'1',1,NULL,'.@r = getrefine(); bonus2 bSkillAtk,"HT_BLITZBEAT",20+.@r*5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24267,'Bard_Shadow_Shoes','Bard Shadow Shoes',12,NULL,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,524288,NULL,'1',1,NULL,'.@a = getskilllv("BA_MUSICALLESSON"); .@r = max(getrefine(),6); bonus bBaseAtk,.@a+((.@r-6)*.@a);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24268,'Dancer_Shadow_Shoes','Dancer Shadow Shoes',12,NULL,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,524288,NULL,'1',1,NULL,'.@a = getskilllv("DC_DANCINGLESSON"); .@r = max(getrefine(),6); bonus bBaseAtk,.@a+((.@r-6)*.@a);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24269,'Knight_Shadow_Armor','Knight Shadow Armor',12,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'.@r = getrefine(); bonus2 bSkillUseSPrate,"KN_BOWLINGBASH",(20+(.@r*3));',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24270,'Crusader_Shadow_Armor','Crusader Shadow Armor',12,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'.@r = getrefine(); bonus2 bSkillAtk,"CR_GRANDCROSS",20+.@r*5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24271,'Blacksmith_Shadow_Armor','Blacksmith Shadow Armor',12,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'.@r = getrefine(); .@val = 5; if (.@r > 6) { .@val += .@r-6; } autobonus3 "{ bonus2 bAddSize,Size_All,"+.@val+"; bonus2 bMagicAddSize,Size_All,"+.@val+"; }",1000,50000,"BS_WEAPONPERFECT";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24272,'Alchemist_Shadow_Armor','Alchemist Shadow Armor',12,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'.@a = getskilllv("AM_LEARNINGPOTION"); .@r = max(getrefine(),6); bonus bBaseAtk,.@a+((.@r-6)*.@a);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24273,'Priest_Shadow_Armor','Priest Shadow Armor',12,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'.@r = getrefine(); bonus2 bSkillAtk,"PR_MAGNUS",20+.@r*5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24274,'Monk_Shadow_Armor','Monk Shadow Armor',12,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'.@r = getrefine(); bonus2 bSkillAtk,"MO_FINGEROFFENSIVE",20+.@r*5; bonus2 bSkillAtk,"MO_INVESTIGATE",20+.@r*5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24275,'Assassin_Shadow_Armor','Assassin Shadow Armor',12,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'.@r = getrefine(); bonus2 bSkillUseSPrate,"AS_SONICBLOW",(20+(.@r*3));',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24276,'Rogue_Shadow_Armor','Rogue Shadow Armor',12,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'.@r = getrefine(); bonus2 bSkillAtk,"RG_BACKSTAP",20+.@r*5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24277,'Wizard_Shadow_Armor','Wizard Shadow Armor',12,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'.@r = getrefine(); bonus2 bSkillAtk,"WZ_JUPITEL",20+.@r*5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24278,'Sage_Shadow_Armor','Sage Shadow Armor',12,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'autobonus3 "{ .@r = getrefine(); if (.@r>=9) { bonus bAspd,2; } else if (.@r>=7) { bonus bAspd,1; } bonus bAspdRate,.@r; }",1000,50000,"SA_AUTOSPELL"; /* Unknow Specialeffect */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24279,'Hunter_Shadow_Armor','Hunter Shadow Armor',12,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'.@r = getrefine(); bonus2 bSkillAtk,"HT_CLAYMORETRAP",20+.@r*5; bonus2 bSkillAtk,"HT_LANDMINE",20+.@r*5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24280,'Bard_Shadow_Armor','Bard Shadow Armor',12,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'.@r = getrefine()+5; autobonus3 "{ bonus2 bSPRegenRate,"+.@r+",5000; }",1000,30000,"BA_POEMBRAGI"; autobonus3 "{ bonus2 bSPRegenRate,"+.@r+",5000; }",1000,30000,"BA_ASSASSINCROSS"; autobonus3 "{ bonus2 bSPRegenRate,"+.@r+",5000; }",1000,30000,"BA_APPLEIDUN"; autobonus3 "{ bonus2 bSPRegenRate,"+.@r+",5000; }",1000,30000,"BA_WHISTLE"; /* Unknow Specialeffect */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24281,'Dancer_Shadow_Armor','Dancer Shadow Armor',12,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'.@r = getrefine()+5; autobonus3 "{ bonus2 bSPRegenRate,"+.@r+",5000; }",1000,30000,"DC_FORTUNEKISS"; autobonus3 "{ bonus2 bSPRegenRate,"+.@r+",5000; }",1000,30000,"DC_SERVICEFORYOU"; autobonus3 "{ bonus2 bSPRegenRate,"+.@r+",5000; }",1000,30000,"DC_DONTFORGETME"; autobonus3 "{ bonus2 bSPRegenRate,"+.@r+",5000; }",1000,30000,"DC_HUMMING"; /* Unknow Special Effect */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24282,'Super_Novice_Shadow_Weapon','Super Novice Shadow Weapon',12,0,NULL,0,NULL,0,NULL,0,0x00000001,63,2,131072,NULL,'1',1,0,'.@r = getrefine(); bonus bMaxHP,1000; bonus bMaxSP,200; bonus2 bIgnoreDefClassRate,Class_Normal,3*(getskilllv("SM_SWORD")+.@r); bonus2 bIgnoreMDefClassRate,Class_Normal,3*(getskilllv("MG_SRECOVERY")+.@r); if (.@r>=7) { bonus bMaxHPrate,5; bonus bMaxSPrate,5; } if (.@r>=9) { bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bSPrecovRate,100; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24283,'Gunslinger_Shadow_Weapon','Gunslinger Shadow Weapon',12,0,NULL,0,NULL,0,NULL,0,0x41000000,63,2,131072,NULL,'1',1,0,'.@r = getrefine(); bonus2 bIgnoreDefClassRate,Class_Normal,3*(getskilllv("GS_SNAKEEYE")+.@r); .@aspd = 1; if (.@r>=7) { .@aspd += 1; bonus bLongAtkRate,3; } if (.@r>=9) { .@aspd += 1; bonus bLongAtkRate,5; bonus bAspd,.@aspd; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24284,'Taekwondo_Shadow_Weapon','Taekwondo Shadow Weapon',12,0,NULL,0,NULL,0,NULL,0,0x00E00000,63,2,131072,NULL,'1',1,0,'.@r = getrefine(); bonus bAspd,1; bonus2 bAddClass,Class_All,.@r; bonus bMatkRate,.@r; if (.@r>=7) { bonus bMaxHP,1000; bonus bMaxSP,200; bonus bAspd,1; } if (.@r>=9) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bAspd,1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24285,'Ninja_Shadow_Weapon','Ninja Shadow Weapon',12,0,NULL,0,NULL,0,NULL,0,0x22000000,63,2,131072,NULL,'1',1,NULL,'.@r = getrefine(); .@val = 3; bonus2 bSkillCooldown,"KO_BAKURETSU",-2000; bonus bMatk,(3*getskilllv("NJ_NINPOU")); if (.@r >= 7) { .@val += 3; if (.@r >= 9) { .@val += 4; } } bonus2 bAddClass,Class_Normal,.@val; bonus bMatkRate,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24286,'Doram_Magical_Shadow_Weapon','Doram Magical Shadow Weapon',12,0,NULL,0,NULL,0,NULL,0,0x80000000,7,2,131072,NULL,'1',1,0,'.@r = getrefine(); bonus bVariableCastrate,-(5+.@r); if (getskilllv("SU_POWEROFLAND")==1) bonus bFixedCast,-100; if (getskilllv("SU_POWEROFSEA")==1) { bonus bUseSPrate,-3; } if (.@r>=7) bonus bMatkRate,5; if (.@r>=9) bonus bMatkRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24287,'Doram_Physical_Shadow_Weapon','Doram Physical Shadow Weapon',12,0,NULL,0,NULL,0,NULL,0,0x80000000,7,2,131072,NULL,'1',1,0,'.@r = getrefine(); bonus bLongAtkRate,.@r; if (getskilllv("SU_POWEROFLIFE")==1) bonus bAspd,1; if (.@r>=7) bonus bFlee2,2; if (.@r>=9) bonus bFlee2,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24288,'Rune_Knight_Shadow_Weapon','Rune Knight Shadow Weapon',12,10,NULL,0,NULL,0,NULL,0,0x00000080,56,2,131072,NULL,'99',1,NULL,'.@r = getrefine(); bonus2 bSkillAtk,"RK_SONICWAVE",20+.@r*5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24289,'Royal_Guard_Shadow_Weapon','Royal Guard Shadow Weapon',12,10,NULL,0,NULL,0,NULL,0,0x00004000,56,2,131072,NULL,'99',1,NULL,'.@r = getrefine(); bonus2 bSkillAtk,"LG_CANNONSPEAR",20+.@r*5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24290,'Mechanic_Shadow_Weapon','Mechanic Shadow Weapon',12,10,NULL,0,NULL,0,NULL,0,0x00000400,56,2,131072,NULL,'99',1,NULL,'.@r = getrefine(); bonus2 bSkillAtk,"NC_VULCANARM",20+.@r*5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24291,'Genetic_Shadow_Weapon','Genetic Shadow Weapon',12,10,NULL,0,NULL,0,NULL,0,0x00040000,56,2,131072,NULL,'99',1,NULL,'.@r = getrefine(); bonus2 bSkillAtk,"GN_CART_TORNADO",20+.@r*5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24292,'Arcbishop_Shadow_Weapon','Arcbishop Shadow Weapon',12,10,NULL,0,NULL,0,NULL,0,0x00000100,56,2,131072,NULL,'99',1,NULL,'.@r = getrefine(); bonus2 bSkillAtk,"AB_DUPLELIGHT",20+.@r*5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24293,'Sura_Shadow_Weapon','Sura Shadow Weapon',12,10,NULL,0,NULL,0,NULL,0,0x00008000,56,2,131072,NULL,'99',1,NULL,'.@r = getrefine(); bonus2 bSkillCooldown,"SR_RAMPAGEBLASTER",-1*(2000+500*.@r);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24294,'Guillotine_Cross_Shadow_Weapon','Guillotine Cross Shadow Weapon',12,10,NULL,0,NULL,0,NULL,0,0x00001000,56,2,131072,NULL,'99',1,NULL,'.@r = getrefine(); bonus2 bSkillUseSPrate,"GC_DARKILLUSION",(20+(.@r*3));',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24295,'Shadow_Chaser_Shadow_Weapon','Shadow Chaser Shadow Weapon',12,10,NULL,0,NULL,0,NULL,0,0x00020000,56,2,131072,NULL,'99',1,NULL,'.@r = getrefine(); bonus2 bSkillAtk,"SC_TRIANGLESHOT",20+.@r*5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24296,'Warlock_Shadow_Weapon','Warlock Shadow Weapon',12,10,NULL,0,NULL,0,NULL,0,0x00000200,56,2,131072,NULL,'99',1,NULL,'.@r = getrefine(); bonus2 bSkillAtk,"WL_DRAINLIFE",20+.@r*5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24297,'Sorcerer_Shadow_Weapon','Sorcerer Shadow Weapon',12,10,NULL,0,NULL,0,NULL,0,0x00010000,56,2,131072,NULL,'99',1,NULL,'.@r = getrefine(); bonus2 bSkillCooldown,"SO_DIAMONDDUST",-1*((300*.@r)+1000);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24298,'Ranger_Shadow_Weapon','Ranger Shadow Weapon',12,10,NULL,0,NULL,0,NULL,0,0x00000800,56,2,131072,NULL,'99',1,NULL,'.@r = getrefine(); bonus2 bSkillAtk,"RA_CLUSTERBOMB",20+.@r*5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24299,'Minstrel_Shadow_Weapon','Maestro Shadow Weapon',12,10,NULL,0,NULL,0,NULL,0,0x00080000,56,1,131072,NULL,'99',1,NULL,'.@r = getrefine(); bonus bMaxHPrate,3; bonus bDef,.@r*(getskilllv("MI_HARMONIZE")+getskilllv("MI_RUSH_WINDMILL")+getskilllv("MI_ECHOSONG"));',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24300,'Wanderer_Shadow_Weapon','Wanderer Shadow Weapon',12,10,NULL,0,NULL,0,NULL,0,0x00080000,56,0,131072,NULL,'99',1,NULL,'.@r = getrefine(); bonus bMaxHPrate,3; bonus bDef,.@r*(getskilllv("WA_SWING_DANCE")+getskilllv("WA_SYMPHONY_OF_LOVER")+getskilllv("WA_MOONLIT_SERENADE"));',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24301,'Rune_Knight_Shadow_Shield','Rune Knight Shadow Shield',12,0,NULL,0,NULL,NULL,NULL,0,0x00000080,56,2,262144,NULL,'99',1,NULL,'autobonus3 "{ .@r = getrefine(); if (.@r>=9) { bonus bAspd,2; } else if (.@r>=7) { bonus bAspd,1; } bonus bAspdRate,.@r; }",1000,50000,"RK_ENCHANTBLADE";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24302,'Royal_Guard_Shadow_Shield','Royal Guard Shadow Shield',12,10,NULL,0,NULL,0,NULL,0,0x00004000,56,2,262144,NULL,'99',1,NULL,'.@r = getrefine(); bonus2 bSkillAtk,"LG_EARTHDRIVE",20+.@r*5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24303,'Mechanic_Shadow_Shield','Mechanic Shadow Shield',12,10,NULL,0,NULL,0,NULL,0,0x00000400,56,2,262144,NULL,'99',1,NULL,'.@r = getrefine(); bonus2 bSkillAtk,"NC_FLAMELAUNCHER",20+.@r*5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24304,'Genetic_Shadow_Shield','Genetic Shadow Shield',12,10,NULL,0,NULL,0,NULL,0,0x00040000,56,2,262144,NULL,'99',1,NULL,'.@r = getrefine(); bonus bMaxHPrate,3; bonus bDef,.@r*(getskilllv("GN_CART_TORNADO")+getskilllv("GN_CARTBOOST")+getskilllv("GN_CARTCANNON"));',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24305,'Archbishop_Shadow_Shield','Archbishop Shadow Shield',12,10,NULL,0,NULL,0,NULL,0,0x00000100,56,2,262144,NULL,'99',1,NULL,'.@r = getrefine(); bonus2 bSkillAtk,"AB_ADORAMUS",20+.@r*5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24306,'Sura_Shadow_Shield','Sura Shadow Shield',12,10,NULL,0,NULL,0,NULL,0,0x00008000,56,2,262144,NULL,'99',1,NULL,'.@r = getrefine(); bonus2 bSkillAtk,"SR_SKYNETBLOW",20+.@r*5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24307,'Guillotine_Cross_Shadow_Shield','Guillotine Cross Shadow Shield',12,10,NULL,0,NULL,0,NULL,0,0x00001000,56,2,262144,NULL,'99',1,NULL,'.@r = getrefine(); bonus2 bSkillCooldown,"GC_DARKCROW",-(10000+(2000*.@r));',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24308,'Shadow_Chaser_Shadow_Shield','Shadow Chaser Shadow Shield',12,10,NULL,0,NULL,0,NULL,0,0x00020000,56,2,262144,NULL,'99',1,NULL,'autobonus3 "{ .@r = getrefine(); if (.@r>=9) { bonus bAspd,2; } else if (.@r>=7) { bonus bAspd,1; } bonus bAspdRate,.@r; }",1000,50000,"SC_AUTOSHADOWSPELL";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24309,'Warlock_Shadow_Shield','Warlock Shadow Shield',12,10,NULL,0,NULL,0,NULL,0,0x00000200,56,2,262144,NULL,'99',1,NULL,'.@r = getrefine(); bonus2 bSkillAtk,"WL_EARTHSTRAIN",20+.@r*5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24310,'Sorcerer_Shadow_Shield','Sorcerer Shadow Shield',12,10,NULL,0,NULL,0,NULL,0,0x00010000,56,2,262144,NULL,'99',1,NULL,'.@r = getrefine(); bonus2 bSkillCooldown,"SO_EARTHGRAVE",-1*((300*.@r)+1000);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24311,'Ranger_Shadow_Shield','Ranger Shadow Shield',12,10,NULL,0,NULL,0,NULL,0,0x00000800,56,2,262144,NULL,'99',1,NULL,'.@r = getrefine(); bonus2 bSkillUseSPrate,"RA_AIMEDBOLT",(20+(5*.@r));',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24312,'Minstrel_Shadow_Shield','Minstrel Shadow Shield',12,10,NULL,0,NULL,0,NULL,0,0x00080000,56,1,262144,NULL,'99',1,NULL,'.@r = getrefine(); bonus bMaxSPrate,3; bonus bMdef,.@r*(getskilllv("MI_HARMONIZE")+getskilllv("MI_RUSH_WINDMILL")+getskilllv("MI_ECHOSONG"))/5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24313,'Wanderer_Shadow_Shield','Wanderer Shadow Shield',12,10,NULL,0,NULL,0,NULL,0,0x00080000,56,0,262144,NULL,'99',1,NULL,'.@r = getrefine(); bonus bMaxSPrate,3; bonus bMdef,.@r*(getskilllv("WA_SWING_DANCE")+getskilllv("WA_SYMPHONY_OF_LOVER")+getskilllv("WA_MOONLIT_SERENADE"))/5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24314,'Ninja_Shadow_Shield','Ninja Shadow Shield',12,10,NULL,0,NULL,0,NULL,0,0x02000000,63,2,262144,NULL,'1',1,NULL,'.@r = getrefine(); bonus bAspd,1; bonus bBaseAtk,(3*getskilllv("NJ_TOBIDOUGU")); autobonus3 "{ bonus bAspd,1; }",1000,50000,"NJ_NEN"; .@val = 4 * .@r; if (.@r >= 7) { .@val += 10; if (.@r >= 9) { .@val += 10; } } bonus2 bIgnoreDefClassRate,Class_Normal,.@val; bonus2 bIgnoreMdefClassRate,Class_Normal,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24315,'Taekwon_Shadow_Shield','Taekwon Shadow Shield',12,10,NULL,0,NULL,0,NULL,0,0x00E00000,63,2,262144,NULL,'1',1,NULL,'.@r = getrefine(); .@val = 3; if (.@r >= 7) { .@val += 2; if (.@r >= 9) { .@val += 3; } } bonus2 bIgnoreDefClassRate,Class_Normal,(3*(getskilllv("TK_HPTIME")+.@r)); bonus2 bIgnoreMdefClassRate,Class_Normal,(3*(getskilllv("TK_SPTIME")+.@r)); bonus2 bAddClass,Class_All,.@val; bonus bMatkRate,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24316,'Doram_Physical_Shadow_Shield','Doram Physical Shadow Shield',12,10,NULL,0,NULL,0,NULL,0,0x80000000,7,2,262144,NULL,'1',1,NULL,'.@r = getrefine(); bonus2 bAddClass,Class_All,3; autobonus3 "{ bonus bAspd,1; }",1000,50000,"SU_ARCLOUSEDASH"; bonus2 bSkillCooldown,"SU_LUNATICCARROTBEAT",-(.@r*200); if (.@r>=7) bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",5; if (.@r>=9) bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24317,'Doram_Magical_Shadow_Shield','Doram Magical Shadow Shield',12,10,NULL,0,NULL,0,NULL,0,0x80000000,7,2,262144,NULL,'1',1,NULL,'.@r = getrefine(); bonus bMatkRate,3; autobonus3 "{ bonus2 bSPRegenRate,5,5000; }",1000,30000,"SU_BUNCHOFSHRIMP"; bonus2 bSkillCooldown,"SU_CN_METEOR",-(.@r*100); if (.@r>=7) bonus2 bSkillAtk,"SU_CN_METEOR",5; if (.@r>=9) bonus2 bSkillAtk,"SU_CN_METEOR",5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24318,'Super_Novice_Shadow_Shield','Super Novice Shadow Shield',12,10,NULL,0,NULL,0,NULL,0,0x00000001,63,2,262144,NULL,'1',1,NULL,'.@r = getrefine(); bonus bMaxHP,1000; bonus bMaxSP,200; bonus bAspdRate,(2*getskilllv("TF_DOUBLE")+.@r); bonus bVariableCastrate,-(2*getskilllv("AC_OWL")+.@r); if (.@r>=7) { bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; } if (.@r>=9) { bonus2 bAddClass,Class_All,3; bonus bMatkRate,3; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24319,'Gunslinger_Shadow_Shield','Gunslinger Shadow Shield',12,10,NULL,0,NULL,0,NULL,0,0x41000000,63,2,262144,NULL,'1',1,NULL,'.@r = getrefine(); bonus bCritAtkRate,5; bonus bCritical,(getskilllv("GS_SINGLEACTION")*2)+.@r; if (.@r>=7) bonus bCritAtkRate,2; if (.@r>=9) bonus bCritAtkRate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24320,'S_Hasty_Shoes_II','Hasty Shadow Shoes II',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'1',1,NULL,'.@val = 1; if (getrefine() >= 7) { .@val += 1; } bonus bFlee,5; bonus2 bAddClass,Class_All,.@val; bonus bMatkRate,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24321,'S_Bearer\'s_Pendant_II','Bearer\'s Shadow Pendant II',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2097152,NULL,'1',1,NULL,'bonus bBaseAtk,5; if (getrefine() >= 7) { .@val = 3; } else { .@val = 1; } bonus bMaxHPrate,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24322,'S_Gemstone_Earring_II','Gemstone Shadow Earring II',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1048576,NULL,'1',1,NULL,'if (getrefine() >= 7) { .@val = 3; } else { .@val = 2; } bonus bMatk,5; bonus bUseSPrate,-.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24323,'S_Spellflow_Shield_II','Spellflow Shadow Shield II',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,NULL,'bonus bMatkRate,1 + (getrefine() >= 7); bonus bUseSPrate,-1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24324,'S_Spiritual_Weapon_II','Spiritual Shadow Weapon II',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'bonus bSPrecovRate,5; bonus2 bAddClass,Class_All,1 + (getrefine() >= 7);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24325,'S_Malicious_Armor_II','Malicious Shadow Armor II',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'bonus bMaxHP,100; bonus2 bAddClass,Class_All,1 + (getrefine() >= 7);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24326,'S_Sigrun_Armor','Sigrun Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'.@r = getrefine(); bonus bLuk,1; bonus bHit,.@r; if (BaseClass == Job_Swordman || BaseClass == Job_Thief || (BaseClass == Job_Taekwon && BaseJob != Job_Soul_Linker)) { bonus bBaseAtk,15; } else if (BaseClass == Job_Merchant || BaseClass == Job_Archer || BaseClass == Job_Gunslinger) { bonus bLongAtkRate,3; } else if (BaseClass == Job_Mage || BaseClass == Job_Acolyte || BaseClass == Job_Ninja || BaseJob == Job_Soul_Linker) { bonus bMatk,15; } else if (BaseClass == Job_Novice || BaseJob == Job_Summoner) { bonus bAspdRate,5; bonus bMaxHP,1000; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24327,'S_Sigrun_Shield','Sigrun Shadow Shield',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,NULL,'.@r = getrefine(); bonus bVit,1; bonus bDef,5*.@r; if (BaseClass == Job_Swordman || BaseClass == Job_Thief || (BaseClass == Job_Taekwon && BaseJob != Job_Soul_Linker)) { bonus bAspd,1; } else if (BaseClass == Job_Merchant || BaseClass == Job_Archer || BaseClass == Job_Gunslinger) { bonus bFlee,15; } else if (BaseClass == Job_Mage || BaseClass == Job_Acolyte || BaseClass == Job_Ninja || BaseJob == Job_Soul_Linker) { bonus bMaxSPrate,2; bonus bHealPower,3; } else if (BaseClass == Job_Novice || BaseJob == Job_Summoner) { bonus bVariableCastrate,-5; bonus bMaxSP,300; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24328,'S_Force_Executioner_Weapon','Force Executioner Shadow Weapon',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'.@r = getrefine(); bonus bBaseAtk,5+.@r; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,.@r/2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24329,'S_Spirit_Magic_Executioner_Weapon','Spirit Magic Executioner Shadow Weapon',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'.@r = getrefine(); bonus bMatk,5+.@r; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,.@r/2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24330,'S_Caster_Armor_II','Caster Shadow Armor II',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'bonus bInt,3; bonus bSPrecovRate,20; bonus bVariableCastrate,-getrefine()/2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24331,'S_Reload_Armor_II','Reload Shadow Armor II',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'bonus bHPrecovRate,20; bonus bVit,3; bonus bDelayrate,-(getrefine()/3);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24332,'S_Critical_Shield','Critical Shadow Shield',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,NULL,'.@r = getrefine(); bonus bCritical,5+.@r/2; if (.@r >= 9) { bonus bCritAtkRate,2; } else if (.@r >= 7) { bonus bCritAtkRate,1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24333,'S_Critical_Shoes','Critical Shadow Shoes',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'1',1,NULL,'.@r = getrefine(); bonus bFlee,5+.@r/2; if (.@r >= 9) { bonus bCritical,4; } else if (.@r >= 7) { bonus bCritical,2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24334,'S_Magic_Compose_Armor','Magic Compose Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'.@r = getrefine(); if (.@r > 1) { .@val = .@r/2; bonus3 bAutoSpell,"MG_COLDBOLT",.@val,(5+.@r); bonus4 bAutoSpellOnSkill,"MG_COLDBOLT","MG_FIREBOLT",.@val,1000; bonus4 bAutoSpellOnSkill,"MG_FIREBOLT","MG_LIGHTNINGBOLT",.@val,1000; bonus4 bAutoSpellOnSkill,"MG_LIGHTNINGBOLT","WZ_EARTHSPIKE",.@val,1000; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24335,'S_Gemstone_Weapon_II','Gemstone Shadow Weapon II',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'bonus bHit,5; if (getrefine() >= 7) { bonus bUseSPrate,3; } else { bonus bUseSPrate,2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24336,'S_Gemstone_Shield_II','Gemstone Shadow Shield II',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,NULL,'bonus bDef,5; if (getrefine() >= 7) { bonus bUseSPrate,3; } else { bonus bUseSPrate,2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24337,'S_Bearer\'s_Armor_II','Bearer\'s Shadow Armor II',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'bonus bMDef,1; if (getrefine() >= 7) { bonus bMaxHPrate,3; } else { bonus bMaxHPrate,1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24338,'S_Bearer\'s_Shoes_II','Bearer\'s Shadow Shoes II',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'1',1,NULL,'bonus bMaxSP,50; if (getrefine() >= 7) { bonus bMaxHPrate,3; } else { bonus bMaxHPrate,1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24339,'S_Almighty_Earring','Almighty Shadow Earring',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1048576,NULL,'1',1,NULL,'bonus bAllStats,getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24340,'S_Almighty_Pendant','Almighty Shadow Pendant',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2097152,NULL,'1',1,NULL,'bonus bAllStats,getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24341,'S_All_Race_Shoes','All Race Shadow Shoes',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'1',1,NULL,'.@r = getrefine(); if (.@r >= 9) { .@val = 5; } else if (.@r >= 7) { .@val = 3; } else { .@val = 2; } bonus2 bAddRace,RC_All,.@val; bonus2 bMagicAddRace,RC_All,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24342,'S_All_Race_Shield','All Race Shadow Shield',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,NULL,'.@r = getrefine(); if (.@r >= 9) { .@val = 3; } else if (.@r >= 7) { .@val = 2; } else { .@val = 1; } bonus2 bSubRace,RC_All,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24343,'S_Blitz_Weapon','Blitz Shadow Weapon',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'.@r = getrefine(); bonus bAspdRate,5+.@r/2; if (.@r >= 7) { bonus bAspd,1; if (.@r >= 9) { bonus bDelayrate,-1; } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24344,'S_Blitz_Armor','Blitz Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'.@r = getrefine(); bonus bDef,25+5*(.@r/2); if (.@r >= 7) { bonus bAspd,1; if (.@r >= 9) { bonus bDelayrate,-1; } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24345,'S_Tempest_Shield','Tempest Shadow Shield',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,NULL,'bonus2 bIgnoreMdefClassRate,Class_Normal,5+(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24346,'S_Tempest_Shoes','Tempest Shadow Shoes',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'1',1,NULL,'bonus2 bIgnoreMdefClassRate,Class_Normal,5+(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24347,'S_Magic_Executioner_Holy_Water_Armor','Magic Executioner Holy Water Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'.@val = 5 + (getrefine()/2); bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,.@val; bonus2 bIgnoreMdefRaceRate,RC_Undead,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24348,'S_Magic_Exorcist_Corrupted_Armor','Magic Exorcist Corrupted Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'.@val = 5 + (getrefine()/2); bonus2 bIgnoreMdefRaceRate,RC_Demon,.@val; bonus2 bIgnoreMdefRaceRate,RC_Angel,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24349,'S_Magic_Vibration_Dragon_Killer_Armor','Magic Vibration Dragon Killer Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'.@val = 5 + (getrefine()/2); bonus2 bIgnoreMdefRaceRate,RC_Formless,.@val; bonus2 bIgnoreMdefRaceRate,RC_Dragon,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24350,'S_Magic_Scissor_Hunting_Armor','Magic Scissor Hunting Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'.@val = 5 + (getrefine()/2); bonus2 bIgnoreMdefRaceRate,RC_Plant,.@val; bonus2 bIgnoreMdefRaceRate,RC_Brute,.@val; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24351,'S_Magic_Fishing_Insect_Net_Armor','Magic Fishing Insect Net Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'.@val = 5 + (getrefine()/2); bonus2 bIgnoreMdefRaceRate,RC_Fish,.@val; bonus2 bIgnoreMdefRaceRate,RC_Insect,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24352,'S_Plasterer\'s_Armor_II','Plasterer\'s Shadow Armor II',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'bonus bDef,1; bonus2 bResEff,Eff_Stone,100*getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24353,'S_Insomniac_Shoes_II','Insomniac Shadow Shoes II',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'1',1,NULL,'bonus bDef,1; bonus2 bResEff,Eff_Sleep,100*getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24354,'S_Peerless_Armor_II','Peerless Shadow Armor II',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'bonus bDef,1; bonus2 bResEff,Eff_Silence,100*getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24355,'S_Adulate_Shoes_II','Adulate Shadow Shoes II',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'1',1,NULL,'bonus bDef,1; bonus2 bResEff,Eff_Blind,100*getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24356,'S_Unfreezing_Weapon_II','Unfreezing Shadow Weapon II',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'bonus bDef,1; bonus2 bResEff,Eff_Freeze,100*getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24357,'S_Vitality_Earring_II','Vitality Shadow Earring II',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1048576,NULL,'1',1,NULL,'bonus bDef,1; bonus2 bResEff,Eff_Bleeding,100*getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24358,'S_Neutral_Weapon_II','Neutral Shadow Weapon II',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'bonus bDef,1; bonus2 bResEff,Eff_Stun,100*(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24359,'S_Uncursed_Pendant_II','Uncursed Shadow Pendant II',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2097152,NULL,'1',1,NULL,'bonus bDef,1; bonus2 bResEff,Eff_Curse,100*getrefine();',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24360,'S_Tension_Weapon','Tension Shadow Weapon',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'bonus bMaxHP,100 + 150*(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24361,'S_Tension_Earring','Tension Shadow Earring',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1048576,NULL,'1',1,NULL,'bonus bMaxHPrate,1; bonus bBaseAtk,5; bonus bMaxHP,50*(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24362,'S_Tension_Pendant','Tension Shadow Pendant',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2097152,NULL,'1',1,NULL,'.@val = 2 + (getrefine()/3); bonus bBaseAtk,5; bonus bHealPower2,.@val; bonus bAddItemHealRate,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24363,'S_Elegant_Weapon','Elegant Shadow Weapon',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'bonus bMaxHP,100 + 150*(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24364,'S_Elegant_Earring','Elegant Shadow Earring',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1048576,NULL,'1',1,NULL,'bonus bMaxHPrate,1; bonus bMatk,5; bonus bMaxHP,50*(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24365,'S_Elegant_Pendant','Elegant Shadow Pendant',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2097152,NULL,'1',1,NULL,'.@val = 2 + (getrefine()/3); bonus bMatk,5; bonus bHealPower2,.@val; bonus bAddItemHealRate,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24366,'S_Healing_Shield','Healing Shadow Shield',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,NULL,'.@r = getrefine(); bonus bMatk,10; if (.@r >= 7) { .@val = 3; if (.@r >= 9) { .@val += 5; } bonus bHealPower,.@val; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24367,'S_Healing_Shoes','Healing Shadow Shoes',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'1',1,NULL,'.@r = getrefine(); bonus bMatk,10; if (.@r >= 7) { .@val = 3; if (.@r >= 9) { .@val += 5; } bonus bHealPower,.@val; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24368,'S_Restore_Earring','Restore Shadow Earring',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1048576,NULL,'1',1,NULL,'.@r = getrefine(); if (.@r >= 9) { .@val = 50; } else if (.@r >= 7) { .@val = 30; } else { .@val = 20; } bonus bHPrecovRate,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24369,'S_Restore_Pendant','Restore Shadow Pendant',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2097152,NULL,'1',1,NULL,'.@r = getrefine(); if (.@r >= 9) { .@val = 50; } else if (.@r >= 7) { .@val = 30; } else { .@val = 20; } bonus bSPrecovRate,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24370,'S_Mortal_Blow_Weapon','Mortal Blow Shadow Weapon',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'.@r = getrefine(); if (.@r >= 9) { .@val = 7; } else if (.@r >= 7) { .@val = 4; } else { .@val = 2; } bonus bCritAtkRate,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24371,'S_Mortal_Blow_Earring','Mortal Blow Shadow Earring',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1048576,NULL,'1',1,NULL,'.@r = getrefine(); if (.@r >= 9) { .@val = 3; } else if (.@r >= 7) { .@val = 2; } else { .@val = 1; } bonus bCritAtkRate,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24372,'S_Mortal_Blow_Pendant','Mortal Blow Shadow Pendant',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2097152,NULL,'1',1,NULL,'.@r = getrefine(); if (.@r >= 9) { .@val = 3; } else if (.@r >= 7) { .@val = 2; } else { .@val = 1; } bonus bCritAtkRate,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24373,'S_Penetration_Shoes','Penetration Shadow Shoes',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'1',1,NULL,'bonus2 bIgnoreDefClassRate,Class_Normal,5+(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24374,'S_Penetration_Shield','Penetration Shadow Shield',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,NULL,'bonus2 bIgnoreDefClassRate,Class_Normal,5+(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24375,'S_Executioner_Holy_Water_Armor','Executioner Holy Water Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'.@val = 5 + (getrefine()/2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,.@val; bonus2 bIgnoreDefRaceRate,RC_Undead,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24376,'S_Exorcist_Corrupted_Armor','Exorcist Corrupted Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'.@val = 5 + (getrefine()/2); bonus2 bIgnoreDefRaceRate,RC_Demon,.@val; bonus2 bIgnoreDefRaceRate,RC_Angel,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24377,'S_Vibration_Dragon_Killer_Armor','Vibration Dragon Killer Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'.@val = 5 + (getrefine()/2); bonus2 bIgnoreDefRaceRate,RC_Formless,.@val; bonus2 bIgnoreDefRaceRate,RC_Dragon,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24378,'S_Scissor_Hunting_Armor','Scissor Hunting Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'.@val = 5 + (getrefine()/2); bonus2 bIgnoreDefRaceRate,RC_Plant,.@val; bonus2 bIgnoreDefRaceRate,RC_Brute,.@val; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24379,'S_Fishing_Insect_Net_Armor','Fishing Insect Net Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'.@val = 5 + (getrefine()/2); bonus2 bIgnoreDefRaceRate,RC_Fish,.@val; bonus2 bIgnoreDefRaceRate,RC_Insect,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24380,'S_Sentimental_Weapon','Sentimental Shadow Weapon',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'bonus MaxSP,10+15*(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24381,'S_Sentimental_Earring','Sentimental Shadow Earring',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1048576,NULL,'1',1,NULL,'bonus bBaseAtk,5; bonus bMaxSPrate,1; bonus bMaxSP,5*(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24382,'S_Sentimental_Pendant','Sentimental Shadow Pendant',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2097152,NULL,'1',1,NULL,'bonus bBaseAtk,5; bonus bSPrecovRate,2+(getrefine()/3);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24383,'S_Enchanting_Weapon','Enchanting Shadow Weapon',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'bonus bMaxSP,10+15*(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24384,'S_Enchanting_Earring','Enchanting Shadow Earring',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1048576,NULL,'1',1,NULL,'bonus bMatk,5; bonus bMaxSPrate,1; bonus bMaxSP,5*(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24385,'S_Enchanting_Pendant','Enchanting Shadow Pendant',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2097152,NULL,'1',1,NULL,'bonus bMatk,5; bonus bSPrecovRate,2+(getrefine()/3);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24386,'S_Infinity_Weapon','Infinity Shadow Weapon',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'.@r = getrefine(); .@val = .@r/3; if (.@val) { bonus2 bAddSize,Size_All,.@val; bonus2 bMagicAddSize,Size_All,.@val; bonus2 bSubSize,Size_All,.@val; if (.@r >= 10) { bonus bNoSizeFix; } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24387,'S_Beginner\'s_Armor','Beginner\'s Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'100',1,NULL,'bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24388,'S_Beginner\'s_Shield','Beginner\'s Shadow Shield',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'100',1,NULL,'bonus bVit,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24389,'S_Beginner\'s_Shoes','Beginner\'s Shadow Shoes',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'100',1,NULL,'bonus bAgi,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24390,'S_Beginner\'s_Weapon','Beginner\'s Shadow Weapon',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'100',1,NULL,'bonus bStr,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24391,'S_Beginner\'s_Earring','Beginner\'s Shadow Earring',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1048576,NULL,'100',1,NULL,'bonus bDex,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24392,'S_Beginner\'s_Pendant','Beginner\'s Shadow Pendant',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2097152,NULL,'100',1,NULL,'bonus bLuk,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24393,'S_Physical_Shoes','Physical Shadow Shoes',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'1',1,NULL,'.@r = getrefine(); if (.@r >= 9) { bonus bAspdRate,8; } else if (.@r >= 7) { bonus bAspdRate,5; } else { bonus bAspdRate,2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24394,'S_Physical_Shield','Physical Shadow Shield',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,NULL,'.@r = getrefine(); bonus bMaxHP,200; if (.@r >= 9) { bonus bMaxHPrate,5; } else if (.@r >= 7) { bonus bMaxHPrate,2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24395,'S_Physical_Armor','Physical Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'.@r = getrefine(); bonus bBaseAtk,20; if (.@r >= 9) { bonus2 bAddClass,Class_All,5; } else if (.@r >= 7) { bonus2 bAddClass,Class_All,2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24396,'S_Magical_Shoes','Magical Shadow Shoes',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'1',1,NULL,'.@r = getrefine(); if (.@r >= 9) { bonus bVariableCastrate,8; } else if (.@r >= 7) { bonus bVariableCastrate,5; } else { bonus bVariableCastrate,2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24397,'S_Magical_Shield','Magical Shadow Shield',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,NULL,'.@r = getrefine(); bonus bMaxSP,100; if (.@r >= 9) { bonus bMaxSPrate,5; } else if (.@r >= 7) { bonus bMaxSPrate,2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24398,'S_Magical_Armor','Magical Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'.@r = getrefine(); bonus bMatk,20; if (.@r >= 9) { bonus bMatkRate,5; } else if (.@r >= 7) { bonus bMatkRate,2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24399,'S_Immune_Athena_Shield','Immune Athena Shadow Shield',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,NULL,'bonus bDef,50+20*(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24400,'S_Hard_Champion_Shoes','Hard Champion Shadow Shoes',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'1',1,NULL,'.@val = getrefine()/2; bonus bMaxHP,200; bonus bMaxSP,100; bonus bMaxHPrate,.@val; bonus bMaxSPrate,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24401,'S_Kingbird_Ancient_Armor','Kingbird Ancient Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'.@r = getrefine(); bonus bBaseAtk,15; bonus bLongAtkRate,.@r/2; if (.@r >= 7) { bonus bHit,30; } else { bonus bHit,15; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24402,'Rebellion_Shadow_Armor','Rebellion Shadow Armor',12,10,NULL,0,NULL,NULL,NULL,NULL,0x40000000,63,2,65536,NULL,'100',1,NULL,'.@r = getrefine(); bonus2 bSkillCooldown,"RL_HEAT_BARREL",-1000*(1+.@r/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24403,'Kagerou_Shadow_Armor','Kagerou Shadow Armor',12,10,NULL,0,NULL,NULL,NULL,NULL,0x20000000,63,1,65536,NULL,'100',1,NULL,'.@r = getrefine(); bonus2 bSkillAtk,"KO_HUUMARANKA",20+.@r*5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24404,'Oboro_Shadow_Armor','Oboro Shadow Armor',12,10,NULL,0,NULL,NULL,NULL,NULL,0x20000000,63,0,65536,NULL,'100',1,NULL,'.@r = getrefine(); bonus2 bSkillAtk,"NJ_KOUENKA",20+.@r*5; bonus2 bSkillAtk,"NJ_HYOUSENSOU",20+.@r*5; bonus2 bSkillAtk,"NJ_HUUJIN",20+.@r*5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24405,'Rebellion_Shadow_Shoes','Rebellion Shadow Shoes',12,10,NULL,0,NULL,NULL,NULL,NULL,0x40000000,63,2,524288,NULL,'100',1,NULL,'.@r = getrefine(); bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",20+.@r*5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24406,'Kagerou_Shadow_Shoes','Kagerou Shadow Shoes',12,10,NULL,0,NULL,NULL,NULL,NULL,0x20000000,63,1,524288,NULL,'100',1,NULL,'.@r = getrefine(); bonus2 bSkillAtk,"KO_HAPPOKUNAI",20+.@r*5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24407,'Oboro_Shadow_Shoes','Oboro Shadow Shoes',12,10,NULL,0,NULL,NULL,NULL,NULL,0x20000000,63,0,524288,NULL,'100',1,NULL,'.@r = getrefine(); bonus2 bSkillCooldown,"KO_ZANZOU",-1000*(1+.@r/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24408,'Doram_Physical_Shadow_Armor','Doram Physical Shadow Armor',12,10,NULL,0,NULL,NULL,NULL,NULL,0x80000000,7,2,65536,NULL,'100',1,NULL,'.@r = getrefine(); bonus2 bSkillAtk,"SU_PICKYPECK",20; bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",.@r*3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24409,'Doram_Physical_Shadow_Shoes','Doram Physical Shadow Shoes',12,10,NULL,0,NULL,NULL,NULL,NULL,0x80000000,7,2,524288,NULL,'100',1,NULL,'.@r = getrefine(); bonus2 bSkillCooldown,"SU_HISS",-3000*(1+.@r/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24410,'Doram_Magical_Shadow_Armor','Doram Magical Shadow Armor',12,10,NULL,0,NULL,NULL,NULL,NULL,0x80000000,7,2,65536,NULL,'100',1,NULL,'.@r = getrefine(); bonus2 bSkillAtk,"SU_CN_METEOR",20; bonus2 bSkillAtk,"SU_SV_STEMSPEAR",.@r*3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24411,'Doram_Magical_Shadow_Shoes','Doram Magical Shadow Shoes',12,10,NULL,0,NULL,NULL,NULL,NULL,0x80000000,7,2,524288,NULL,'100',1,NULL,'.@r = getrefine(); bonus2 bSkillCooldown,"SU_CHATTERING",-3000*(1+.@r/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24412,'Star_Emperor_Shadow_Armor','Star Emperor Shadow Armor',12,10,NULL,0,NULL,NULL,NULL,NULL,0x00400000,63,2,65536,NULL,'100',1,NULL,'.@r = getrefine(); bonus2 bSkillAtk,"SJ_NEWMOONKICK",20; bonus2 bSkillAtk,"SJ_FULLMOONKICK",.@r*3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24413,'Star_Emperor_Shadow_Shoes','Star Emperor Shadow Shoes',12,10,NULL,0,NULL,NULL,NULL,NULL,0x00400000,63,2,524288,NULL,'100',1,NULL,'.@r = getrefine(); bonus2 bSkillCooldown,"SJ_DOCUMENT",-3000*(1+.@r/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24414,'Soul_Reaper_Shadow_Armor','Soul Reaper Shadow Armor',12,10,NULL,0,NULL,NULL,NULL,NULL,0x00800000,63,2,65536,NULL,'100',1,NULL,'.@r = getrefine(); bonus2 bSkillAtk,"SP_SWHOO",20; bonus2 bSkillAtk,"SP_SPA",.@r*3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24415,'Soul_Reaper_Shadow_Shoes','Soul Reaper Shadow Shoes',12,10,NULL,0,NULL,NULL,NULL,NULL,0x00800000,63,2,524288,NULL,'100',1,NULL,'.@r = getrefine(); bonus2 bSkillCooldown,"SP_SOULREAPER",-3000-1000*(.@r/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24416,'S_Temporal_Transcendent_Weapon','Temporal Transcendent Shadow Weapon',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'bonus bCritAtkRate,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24417,'S_Temporal_Transcendent_Armor','Temporal Transcendent Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'bonus bAspd,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24418,'S_Temporal_Transcendent_Shield','Temporal Transcendent Shadow Shield',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,262144,NULL,'1',1,NULL,'bonus bVariableCastrate,-10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24419,'S_Temporal_Transcendent_Shoes','Temporal Transcendent Shadow Shoes',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,524288,NULL,'1',1,NULL,'bonus bAspdRate,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24420,'S_Temporal_Transcendent_Earring','Temporal Transcendent Shadow Earring',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1048576,NULL,'1',1,NULL,'bonus bMatk,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24421,'S_Temporal_Transcendent_Pendant','Temporal Transcendent Shadow Pendant',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2097152,NULL,'1',1,NULL,'bonus bBaseAtk,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24423,'S_Tempest_Weapon','Tempest Shadow Weapon',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,131072,NULL,'1',1,NULL,'bonus2 bIgnoreDefClassRate,Class_Normal,5+(getrefine()/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (24424,'S_Tempest_Armor','Tempest Shadow Armor',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,65536,NULL,'1',1,NULL,'bonus2 bIgnoreDefClassRate,Class_Normal,5+(getrefine()/2);',NULL,NULL); - -REPLACE INTO `item_db_re` VALUES (25000,'SPdrainStone_Top','SP Absorption Stone (Upper)',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25001,'DEFStone_Middle','Def Stone(Middle)',6,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25002,'ChangeLUK_Middle','LUK Exchange Stone(Middle)',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25003,'ChangeSTR_Middle','STR Exchange Stone(Middle)',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25004,'ChangeAGI_Middle','AGI Exchange Stone(Middle)',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25005,'ChangeINT_Middle','INT Exchange Stone(Middle)',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25006,'ChangeVIT_Middle','VIT Exchange Stone(Middle)',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25007,'ChangeDEX_Middle','DEX Exchange Stone(Middle)',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25008,'ChangeVIT_Bottom','VIT Exchange Stone(Lower)',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25009,'ChangeAGI_Bottom','AGI Exchange Stone(Lower)',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25010,'ChangeDEX_Bottom','DEX Exchange Stone(Lower)',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25011,'ChangeLUK_Bottom','LUK Exchange Stone(Lower)',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25012,'ChangeSTR_Bottom','STR Exchange Stone(Lower)',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25013,'ChangeINT_Bottom','INT Exchange Stone(Lower)',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25014,'MDEFStone_Bottom','Mdef Stone(Lower)',6,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25015,'EXPStone_Bottom','EXP Stone(Lower)',6,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25016,'ATKStone_Bottom','ATK Stone (Lower)',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25017,'MATKStone_Bottom','MATK Stone (Lower)',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#=================================================================== -# New etc. -#=================================================================== -REPLACE INTO `item_db_re` VALUES (25043,'Thorny_Vine_Flute','Thorny Vine Flute',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25044,'Hard_Thorny_Vine','Hard Thorny Vine',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25045,'Luxurious_Cloth','Luxurious Cloth',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25046,'Boarding_Pass','Boarding Pass',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25047,'Kahlunac','Kahlunac',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25048,'Hearty_Lunchbox','Hearty Lunchbox',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25049,'Basilac_Clam','Basilac Clam',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); - -REPLACE INTO `item_db_re` VALUES (25058,'TwinkleEffect_Top','Twinkle Effect (Upper)',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25059,'GhostEffect_Middle','Ghost Effect (Middle)',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25060,'Critical_Stone','Critical Stone (Middle)',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25061,'Range_Stone','Range Stone (Middle)',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25062,'Greed_Stone','Greed Stone (Lower)',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25063,'MaxHP2_Stone','Health Stone (Lower)',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25064,'MaxSP2_Stone','Magic Stone (Lower)',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25065,'Detoxify_Stone','Detoxify Stone (Lower)',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25066,'Recovery_Stone','Recovery Stone (Lower)',6,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25067,'CastingStone_Robe','Casting Stone (Garment)',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25068,'ASPDStone_Top','ASPD Stone (Upper)',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25069,'ReloadStone_Top','Reload Stone (Upper)',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25070,'ReloadStone_Middle','Reload Stone (Middle)',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25071,'ReloadStone_Bottom','Reload Stone (Lower)',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25072,'Kyrie_Stone','Kyrie Stone (Lower)',3,10,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); - -REPLACE INTO `item_db_re` VALUES (25127,'Silent_Energy_Particle','Silent Energy Particle',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25128,'Weak_Energy_Particle','Weak Energy Particle',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25129,'Unstable_Energy_Particle','Unstable Energy Particle',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25130,'Sinister_Energy_Particle','Sinister Energy Particle',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25131,'Fallen_Energy_Particle','Fallen Energy Particle',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25132,'Pumpkin_Deco','Pumpkin Deco',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25133,'Dried_White_Stem','Dried White Stem',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25136,'ElectricEffect_Middle','Electric Effect (Middle)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25137,'GreenFloor_Bottom','Green Floor Effect (Lower)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25138,'ShrinkEffect_Middle','Shrink Effect (Middle)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25139,'Identify_Stone','Identify Stone (Lower)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25141,'EXPStone_Middle','Experience Stone (Middle)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25142,'Doram_Token','Doram Token',3,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25143,'Gift_Stuffed_Doll','Gift Stuffed Doll',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25144,'Bridge_Postured_Doll','Bridge Postured Doll',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25145,'Burnt_Spector_Doll','Burnt Spector Doll',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25146,'Cold_Blooded_Queen_Doll','Cold Blooded Queen Doll',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25147,'Well_Eatenl_Rabbit_Doll','Well Eatenl Rabbit Doll',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25148,'Cute_Starved_Demon_Doll','Cute Starved Demon Doll',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25149,'Doll_With_Warm_Scarf','Doll With Warm Scarf',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25150,'Hugging_Alice_Pilow','Hugging Alice Pilow',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25151,'Rachels_Revolver','Rachel\'s Revolver',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25152,'Cherish_Bouquet','Cherished Bouquet',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25153,'Broken_Gun_Wreck','Broken Gun Wreck',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25154,'Antique_Powder','Antique Gunpowder',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25155,'Swz_Honor_Token','Schwarz\'s Honor Token',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25156,'Piece_Of_Chimera','Piece of Chimera',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25157,'Fallen_Leaves_Branch','Fallen Leaves Branch',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25158,'Core_Jelly','Core Jelly',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25159,'Heart_Hunter_Seal','Heart Hunter\'s Seal',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25160,'Borrow_Book','Borrowed Book',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25161,'Handmade_cookie2','Delicious Handmade Cookie',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25162,'Anchovy_cookie','Crispy Anchovy',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25163,'Arms_Shop_AD','Arms Shop Ad',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25164,'Fresh_Tea_Leaves','Fresh Tea Leaves',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25165,'High_Class_Tea','High Class Tea',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25166,'Very_Shining_Ring','Very Shining Ring',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25167,'Old_Letter','Old Letter',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25170,'MinorCastingStone_Robe','Minor Casting Stone (Garment)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25171,'EXPStone_Top','Experience Stone (Upper)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25172,'CastingStone_Top','Variable Casting Stone (Upper)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25173,'CastingStone_Middle','Variable Casting Stone (Middle)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25174,'CastingStone_Bottom','Variable Casting Stone (Lower)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25175,'LexAeternaStone_Middle','Lex Aeterna Stone (Middle)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25176,'BlueAuraEffect_Middle','Blue Aura Effect (Middle)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25177,'ShadowEffect_Middle','Shadow Effect (Middle)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25178,'PinkGlowEffect_Middle','Pink Glow Effect (Middle)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25179,'Blessing_Star','Blessing Star',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25180,'Old_Couple_Ring','Old Rings',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25181,'Wood_Rosary','Wood Rosary',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25182,'Assassin_PT_Dagger','Assassin\'s Mark Dagger',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25183,'Deco_Thimble_Archer','Decorated Archer\'s Thimble',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25184,'Portable_Sewingbox','Portable Sewingbox',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25185,'Locket_Pendant','Locket Pendant',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25187,'Slug_Bullet','Slug Bullet',3,1200,NULL,1200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25205,'ShrinkEffect_Bottom','Shrink Effect (Lower)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25206,'ElectricEffect_Top','Electric Effect (Upper)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25223,'Para_Team_Coin','Eden Group Coin',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25224,'WhiteBodyEffect_Middle','White Body Effect (Middle)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25225,'ExplodingEffect_Middle','Crimson Wave Effect (Middle)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25226,'WaterFieldEffect_Bottom','Water Field Effect (Lower)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25227,'Heal_Stone','Heal Stone (Lower)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25228,'Teleport_Stone','Teleport Stone (Lower)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25229,'Steal_Stone','Steal Stone (Lower)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25231,'Suspicious_Bottle','Suspicious Bottle',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25232,'Cheap_Lubricant','Cheap Lubricant',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25233,'Cotton_Tufts','Cotton Tufts',3,1000,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25238,'New_Normal_Lubricant','New Normal Lubricant',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25239,'New_Advanced_Lubricant','New Advanced Lubricant',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25246,'Juice_Mix_Package','Juice Mix Package',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25247,'Purple_Ore','Purple Ore',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25248,'Purple_Ore_Crate','Purple Ore Crate',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25249,'Buffalo_Bandit_Mane','Buffalo Bandit Mane',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25250,'Rock_Ridge_Coin','Rock Ridge Coin',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25256,'Hazy_Dream_Fragment','Hazy Dream Fragment',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25257,'Bloody_Love_Letter','Bloody Love Letter',3,780,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25258,'Broken_Arrow','Broken Arrow',3,550,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25260,'Fragment_of_Purple_Ore','Fragment of Purple Ore',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25271,'Illusion_Stone','Illusion Stone',3,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25272,'Illusion_Gemstone','Illusion Gemstone',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25276,'Clean_Bone','Clean Bone',3,348,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25277,'Deadly_Poison_Powder','Deadly Poison Powder',3,644,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25278,'Bandits_Scarf','Bandit\'s Scarf',3,330,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25279,'Crude_Ammo','Crude Ammo',3,300,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25280,'Broken_Shotgun','Broken Shotgun',3,910,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25281,'Crude_Scimitar','Crude Scimitar',3,970,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25282,'Worn_Revolver','Worn Revolver',3,820,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25283,'Brown_Muffler','Brown Muffler',3,420,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25284,'Swamp_Bug_Shell','Swamp Bug Shell',3,230,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25285,'Brown_Rat_Tail','Brown Rat Tail',3,210,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25290,'Sweets_Festival_Coin','Sweets Festival Coin',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25302,'DoubleAttack_Stone','Double Attack Stone (Garment)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25303,'Critical_Stone_Robe','Critical Stone (Garment)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25304,'Critical_Stone_Top','Critical Stone (Upper)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25305,'Critical_Stone_Bottom','Critical Stone (Lower)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25306,'CastStone_Robe','Variable Casting Stone (Garment)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25375,'Powerful_Soul_Essence','Powerful Soul Essence',3,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25377,'Luxurious_Pet_Food','Luxurious Pet Food',3,0,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25409,'SuraStone_Top','Champion Stone (Upper)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25410,'SuraStone_Middle','Champion Stone (Middle)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25411,'SuraStone_Lower','Champion Stone (Lower)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25412,'SuraStone_Robe','Sura Stone (Garment)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25413,'RangerStone_Top','Sniper Stone (Upper)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25414,'RangerStone_Middle','Sniper Stone (Middle)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25415,'RangerStone_Lower','Sniper Stone (Lower)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25416,'RangerStone_Robe','Ranger Stone (Garment)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25417,'SorcererStone_Top','Scholar Stone (Upper)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25418,'SorcererStone_Middle','Scholar Stone (Middle)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25419,'SorcererStone_Lower','Scholar Stone (Lower)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25420,'SorcererStone_Robe','Sorcerer Stone (Garment)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25445,'RuneknightStone_Top','Lord Knight Stone (Upper)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25446,'RuneknightStone_Middle','Lord Knight Stone (Middle)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25447,'RuneknightStone_Lower','Lord Knight Stone (Lower)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25448,'RuneknightStone_Robe','Rune Knight Stone (Garment)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25449,'GeneticStone_Robe','Genetic Stone (Garment)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25450,'GeneticStone_Top','Creator Stone (Upper)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25451,'GeneticStone_Middle','Creator Stone (Middle)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25452,'GeneticStone_Lower','Creator Stone (Lower)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25453,'WarlockStone_Top','High Wizard Stone (Upper)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25454,'WarlockStone_Middle','High Wizard Stone (Middle)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25455,'WarlockStone_Lower','High Wizard Stone (Lower)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25456,'WarlockStone_Robe','Warlock Stone (Garment)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -# -REPLACE INTO `item_db_re` VALUES (25464,'World_Moving_Rights','World Moving Rights',3,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -# -REPLACE INTO `item_db_re` VALUES (25490,'ShadowchaserStone_Top','Stalker Stone (Upper)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25491,'ShadowchaserStone_Middle','Stalker Stone (Middle)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25492,'ShadowchaserStone_Lower','Stalker Stone (Lower)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25493,'ShadowchaserStone_Robe','Shadow Chaser Stone (Garment)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25494,'MechanicStone_Top','Mastersmith Stone (Upper)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25495,'MechanicStone_Middle','Mastersmith Stone (Middle)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25496,'MechanicStone_Lower','Mastersmith Stone (Lower)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25497,'MechanicStone_Robe','Mechanic Stone (Garment)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25498,'WanderMinstrelStone_Top','Clown Gypsy Stone (Upper)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25499,'WanderMinstrelStone_Middle','Clown Gypsy Stone (Middle)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25500,'WanderMinstrelStone_Lower','Clown Gypsy Stone (Lower)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25501,'WanderMinstrelStone_Robe','Wanderer Minstrel Stone (Garment)',3,20,NULL,100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25670,'M_M_Defense','Modification Module (Defense)',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'.@r = getrefine(); .@def = 25; if (.@r >= 9) { .@def += 20; } else if (.@r >= 7) { .@def += 10; } bonus bDef,.@def;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25671,'M_M_Magic_Defense','Modification Module (Magic Defense)',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'.@r = getrefine(); .@mdef = 2; if (.@r >= 9) { .@mdef += 6; } else if (.@r >= 7) { .@mdef += 3; } bonus bMDef,.@mdef;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25672,'M_M_Vit','Modification Module (Vit)',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bVit,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25673,'M_M_Luk','Modification Module (Luk)',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bLuk,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25674,'M_M_Str','Modification Module (Str)',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bStr,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25675,'M_M_Agi','Modification Module (Agi)',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bAgi,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25676,'M_M_Int','Modification Module (Int)',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bInt,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25677,'M_M_Dex','Modification Module (Dex)',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bDex,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25678,'M_M_HP_recovery','Modification Module (HP recovery)',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bHPrecovRate,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25679,'M_M_SP_recovery','Modification Module (SP recovery)',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bSPrecovRate,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25680,'M_M_Spell5','Modification Module (Spell)',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMatk,18; bonus bVariableCastrate,-10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25681,'M_M_Attack_Delay_4','Modification Module (Attack Speed)',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bAspdRate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25682,'M_M_Fatal4','Modification Module (Fatal)',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,10; bonus bCritical,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25683,'M_M_Expert_Archer5','Modification Module (Expert Archer)',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bLongAtkRate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25684,'M_M_Vital','Modification Module (Vital)',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'.@r = getrefine(); bonus bMaxHPrate,5; if (.@r >= 9) { bonus bMaxHP,1250; } else if (.@r >= 7) { bonus bMaxHP,500; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25685,'M_M_Mental','Modification Module (Mental)',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'.@r = getrefine(); bonus bMaxSPrate,5; if (.@r >= 9) { bonus bMaxSP,250; } else if (.@r >= 7) { bonus bMaxSP,100; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25686,'M_M_Heal','Modification Module (Heal)',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'.@r = getrefine(); .@val = 5; if (.@r >= 9) { .@val += 10; } else if (.@r >= 7) { .@val += 5; } bonus bHealPower,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25687,'M_M_Power','Modification Module (Power)',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'.@r = getrefine(); bonus2 bAddClass,Class_All,5; if (.@r >= 9) { bonus bBaseAtk,50; } else if (.@r >= 7) { bonus bBaseAtk,25; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25688,'M_M_Magic','Modification Module (Magic)',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'.@r = getrefine(); bonus bMatkRate,5; if (.@r >= 9) { bonus bMatk,50; } else if (.@r >= 7) { bonus bMatk,25; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25689,'M_M_Shooter','Modification Module (Shooter)',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'.@r = getrefine(); .@val = 3; if (.@r >= 9) { .@val += 4; } else if (.@r >= 7) { .@val += 2; } bonus bLongAtkRate,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25690,'M_M_Fast','Modification Module (Fast)',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'.@r = getrefine(); bonus bAspd,1; if (.@r >= 9) { bonus bAspdRate,6; } else if (.@r >= 7) { bonus bAspdRate,3; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25691,'M_M_Caster','Modification Module (Caster)',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'.@r = getrefine(); .@val = -5; if (.@r >= 9) { .@val -= 6; } else if (.@r >= 7) { .@val -= 3; } bonus bVariableCastrate,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25692,'M_M_Critical','Modification Module (Critical)',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'.@r = getrefine(); bonus bCritical,5; if (.@r >= 9) { bonus bCritAtkRate,10; } else if (.@r >= 7) { bonus bCritAtkRate,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25693,'M_M_Delay_After_skill','Modification Module (Delay after skill)',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'.@r = getrefine(); .@val = -5; if (.@r >= 9) { .@val -= 10; } else if (.@r >= 7) { .@val -= 5; } bonus bDelayrate,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25694,'M_M_Fixed_Casting','Modification Module (Fixed Casting)',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'.@r = getrefine(); .@val = -300; if (.@r >= 9) { .@val -= 400; } else if (.@r >= 7) { .@val -= 200; } bonus bFixedCast,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25695,'M_M_Above_All','Modification Module (Above All)',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'.@r = getrefine(); bonus2 bSubEle,Ele_All,5; if (.@r >= 7) { bonus2 bSubSize,Size_All,5; if (.@r >= 9) { bonus2 bSubRace,RC_All,5; bonus2 bSubRace,RC_Player_Human,-5; } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25696,'M_M_Drain_Life','Modification Module (Drain Life)',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bHPDrainRate,20,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25697,'M_M_Drain_Soul','Modification Module (Drain Soul)',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bSPDrainRate,10,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25698,'M_M_Magic_Healing','Modification Module (Magic Healing)',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'autobonus "{ bonus2 bHPRegenRate,400,500; }",20,10000,BF_MAGIC;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25699,'M_M_Magic_Soul','Modification Module (Magic Soul)',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'autobonus "{ bonus2 bSPRegenRate,80,500; }",10,10000,BF_MAGIC;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25700,'M_M_Unlimited_Vital','Modification Module (Unlimited Vital)',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'autobonus2 "{ bonus bVit,50; bonus2 bHPRegenRate,400,500; bonus2 bSPLossRate,20,1000; }",10,10000,BF_WEAPON|BF_MAGIC; /* unknown rate */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25701,'M_M_Spell_Buster','Modification Module (Spell Buster)',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'autobonus "{ bonus bInt,50; bonus bMatkRate,15; bonus2 bAddClass,Class_All,-15; }",20,10000,BF_MAGIC; /* unknown rate */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25702,'M_M_Firing_Shot','Modification Module (Firing Shot)',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'autobonus "{ bonus bDex,50; bonus bLongAtkRate,10; bonus2 bSPLossRate,20,1000; }",20,10000,BF_WEAPON; /* unknown rate */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25703,'M_M_Overpower','Modification Module (Overpower)',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'autobonus "{ bonus bStr,50; bonus2 bAddClass,Class_All,15; bonus bMatkRate,-15; }",20,10000,BF_WEAPON; /* unknown rate */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25704,'M_M_Fatal_Flash','Modification Module (Fatal Flash)',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'autobonus "{ bonus bStr,50; bonus bCritAtkRate,10; bonus2 bHPLossRate,300,1000; }",20,10000,BF_WEAPON; /* unknown rate */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (25705,'M_M_Lucky_Strike','Modification Module (Lucky Strike)',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'autobonus "{ bonus bLuk,50; bonus2 bMagicAtkEle,Ele_All,10; bonus2 bHPLossRate,300,1000; }",20,10000,BF_MAGIC; /* unknown rate */',NULL,NULL); -#=================================================================== -# New Spears -#=================================================================== -REPLACE INTO `item_db_re` VALUES (26007,'Illusion_Spectral_Spear','Illusion Spectral Spear',5,20,NULL,2000,'240',NULL,3,1,0x00004082,63,2,34,4,'99',1,5,'.@r = getrefine(); .@val = 3*(.@r/2); bonus2 bAddEle,Ele_Dark,(20+.@val); bonus2 bAddRace,RC_Demon,(20+.@val); bonus2 bAddRace,RC_Undead,(20+.@val); bonus2 bSubRace,RC_Demon,(10+.@val); bonus2 bSubEle,Ele_Undead,(10+.@val); bonus2 bSubEle,Ele_Dark,(10+.@val); bonus bHPGainValue,50; bonus bSPGainValue,(.@r/2); bonus2 bAddEff2,Eff_Confusion,1000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (26016,'Royal_Knight\'s_Lance','Royal Knight\'s Lance',5,20,NULL,1000,'205',NULL,1,2,0x00004082,63,2,34,3,'175',1,5,'.@r = getrefine(); bonus bLongAtkRate,3*(.@r/2); if (.@r>=7) bonus2 bAddClass,Class_All,5; if (.@r>=9) bonus2 bAddRace,RC_All,15;',NULL,NULL); -#=================================================================== -# New Staves -#=================================================================== -REPLACE INTO `item_db_re` VALUES (26100,'Paradise_Foxtail_Staff_II','Eden Group Foxtail Staff II',5,20,NULL,0,'135:165',NULL,1,0,0x80000000,7,2,2,2,'40',0,10,'bonus bDex,4; bonus bInt,4; bonus bLongAtkRate,6;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (26101,'Paradise_Foxtail_Staff_III','Eden Group Foxtail Staff III',5,20,NULL,0,'150:195',NULL,1,0,0x80000000,7,2,2,3,'60',0,10,'bonus bDex,5; bonus bInt,5; bonus bLongAtkRate,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (26107,'Elder_Staff','Elder Staff',5,0,NULL,500,'60:150',NULL,1,3,0x00008110,63,2,2,3,'100',1,10,'.@r = getrefine(); .@bonus = 10; if (.@r>=7) { .@bonus += 5; } if (.@r>=9) { .@bonus += 10; } bonus bHealPower,.@bonus;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (26109,'Illusion_Staff_of_Bordeaux','Illusion Staff of Bordeaux',5,20,NULL,500,'60:180',NULL,1,2,0x00010200,58,2,2,4,'99',1,10,'bonus bInt,3; bonus bDex,2; if (getskilllv("SA_DRAGONOLOGY") == 5) { .@val = getrefine()/3; bonus bMatkRate,(5+.@val); bonus bUseSPrate,(-15-(5*.@val)); }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (26110,'CandyCaneRod','Candy Cane Rod',5,20,NULL,500,'10:140',NULL,1,2,0x00818315,63,2,2,4,'99',1,10,'bonus bInt,2; bonus bFlee,2*getrefine(); if(getrefine()>= 10) { bonus bFlee2,10; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (26138,'Hellfire_Staff','Hellfire Staff',5,20,NULL,800,'110:180',NULL,1,2,0x00818314,63,2,2,4,'175',1,23,'.@r = getrefine; bonus bInt,5; bonus bMatk,15*(.@r/2); bonus bUnbreakableWeapon; if (.@r>=9) .@val = 15; else if (.@r>=7) .@val = 5; bonus2 bMagicAtkEle,Ele_Fire,.@val; bonus2 bMagicAtkEle,Ele_Earth,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (26139,'Icicle_Staff','Icicle Staff',5,20,NULL,800,'110:180',NULL,1,2,0x00818314,63,2,2,4,'175',1,23,'.@r = getrefine; bonus bInt,5; bonus bMatk,15*(.@r/2); bonus bUnbreakableWeapon; if (.@r>=9) .@val = 15; else if (.@r>=7) .@val = 5; bonus2 bMagicAtkEle,Ele_Water,.@val; bonus2 bMagicAtkEle,Ele_Holy,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (26151,'Rutilus_Stick-OS','Rutilus Stick-OS',5,20,NULL,900,'80:175',NULL,1,2,0x00818315,63,2,2,4,'130',1,10,'.@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bMagicAddEle,Ele_Neutral,5; bonus2 bMagicAddEle,Ele_Earth,5; if (.@r >= 7) { bonus bVariableCastrate,-7; if (.@r >= 9) { autobonus "{ bonus2 bMagicAtkEle,Ele_Fire,30; }",5,10000,BF_MAGIC; /* unknown rate */ if (.@r >= 11) { bonus bDelayrate,-10; } } }',NULL,NULL); -#REPLACE INTO `item_db_re` VALUES ( 26154,'Spirit_Plumb','Spirit Plumb',5,20,NULL,1100,'70:160',NULL,1,2,0x00000000,63,2,2,4,'100',1,10,'.@r = getrefine(); bonus bMatk,10*(.@r/2); bonus bMaxSPrate,2*(.@r/3); if (.@r >= 7) { bonus2 bSkillAtk,"SP_SPA",15; if (.@r >= 9) { bonus bVariableCastrate,-10; if (.@r >= 11) { bonus2 bSkillAtk,"SP_SWHOO",20; } } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (26155,'Meowmeow_Foxtail','Meowmeow Foxtail',5,20,NULL,1100,'300:300',NULL,1,2,0x80000000,7,2,2,4,'100',1,10,'.@r = getrefine(); bonus bMatk,10*(.@r/2); bonus bBaseAtk,10*(.@r/2); bonus2 bAddClass,Class_All,2*(.@r/3); bonus bMatkRate,2*(.@r/3); if (.@r >= 7) { bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",15; bonus2 bSkillAtk,"SU_SV_STEMSPEAR",15; if (.@r >= 9) { bonus bVariableCastrate,-10; bonus bAspdRate,10; if (.@r >= 11) { bonus2 bSkillAtk,"SU_PICKYPECK",15; bonus2 bSkillAtk,"SU_CN_METEOR",15; } } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (26158,'Crimson_Rose_Stick','Crimson Rose Stick',5,20,NULL,700,'100:180',NULL,1,2,0x00000200,56,2,2,4,'170',1,10,'.@r = getrefine(); bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Fire,5; bonus2 bMagicAtkEle,Ele_Dark,5; if (.@r >= 9) { bonus2 bSkillAtk,"WL_HELLINFERNO",30; } if (.@r >= 11) { bonus2 bSkillCooldown,"WL_CRIMSONROCK",-1000; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (26159,'Psychic_Spear_Rod','Psychic Spear Rod',5,20,NULL,800,'120:180',NULL,1,2,0x00010000,56,2,2,4,'170',1,10,'.@r = getrefine(); bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Wind,5; bonus2 bMagicAtkEle,Ele_Neutral,5; if (.@r >= 9) { bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",30; } if (.@r >= 11) { bonus2 bSkillCooldown,"SO_VARETYR_SPEAR",-2000; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (26160,'Dust_Grave','Dust Grave',5,20,NULL,800,'120:180',NULL,1,2,0x00010000,56,2,2,4,'170',1,10,'.@r = getrefine(); if (.@r >= 11) .@val = 50; else if (.@r >= 9) .@val = 30; bonus2 bSkillAtk,"SO_DIAMONDDUST",.@val; bonus2 bSkillAtk,"SO_EARTHGRAVE",.@val; bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Water,5; bonus2 bMagicAtkEle,Ele_Earth,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (26161,'Penitentia','Penitentia',5,20,NULL,700,'100:175',NULL,1,2,0x00000100,56,2,2,4,'170',1,10,'.@r = getrefine(); bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Holy,5; if (.@r >= 9) { bonus2 bSkillAtk,"PR_MAGNUS",(.@r>=11) ? 50 : 30; bonus2 bSkillAtk,"AB_JUDEX",30; }',NULL,NULL); -#=================================================================== -# New Whips -#=================================================================== -REPLACE INTO `item_db_re` VALUES (26200,'Hippie_Rope','Hippie Rope',5,0,NULL,1000,'140',NULL,2,2,0x00080000,56,0,2,3,'100',1,14,'.@r = getrefine(); .@lvl = getskilllv("DC_DANCINGLESSON"); bonus bAspdRate,.@lvl; if (.@r>=7) bonus bBaseAtk,(5*.@lvl); if (.@r>=9) bonus bAspd,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (26212,'Heart_Whip','Heart Whip',5,NULL,NULL,1200,'100:190',NULL,2,2,0x00080000,56,NULL,2,4,'170',1,14,'.@r = getrefine(); bonus bMatk,4*.@r; bonus2 bMagicAtkEle,Ele_Neutral,10; if (.@r>=9) bonus2 bSkillAtk,"WM_METALICSOUND",30; if (.@r>=11) bonus2 bSkillCooldown,"WM_METALICSOUND",-2000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (26213,'Scarlet_Ribbon','Scarlet Ribbon',5,0,NULL,1200,'180',NULL,2,2,0x00080000,56,0,2,4,'170',1,14,'.@r = getrefine(); bonus bVariableCastrate,-10; bonus bLongAtkRate,.@r; if (.@r>=9) bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-1000; if (.@r>=11) bonus2 bSkillUseSPrate,"WM_SEVERE_RAINSTORM",20;',NULL,NULL); -#=================================================================== -# More Cards -#=================================================================== -REPLACE INTO `item_db_re` VALUES (27012,'Kick_Step_Card','Kick Step Card',6,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,16,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,8; if((eaclass()&EAJ_THIRDMASK) == EAJ_MECHANIC){ bonus bLongAtkDef,30; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27013,'Kick_&_Kick_Card','Kick & Kick Card',6,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,2,NULL,NULL,NULL,NULL,'bonus2 bSkillAtk,"NC_VULCANARM",10+((getrefine()>=10)*20);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27014,'Green_Cenere_Card','Green Cenere Card',6,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,64,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,2; autobonus2 "{ bonus2 bHPRegenRate,1000,1000; }",30,5000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27015,'Repair_Robot_Turbo_Card','Repair Robot Turbo Card',6,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,769,NULL,NULL,NULL,NULL,'bonus bHPrecovRate,25; bonus bSPrecovRate,25; .@r = getrefine(); bonus bHPGainValue,30+((.@r>=7)*10); bonus bSPGainValue,3+((.@r>=7)*3);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27016,'Exploration_Rover_Turbo_Card','Exploration Rover Turbo Card',6,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,2,NULL,NULL,NULL,NULL,'bonus2 bCriticalAddRace,RC_Formless,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27017,'Scrap_Robots_Card','Scrap Robots Card',6,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_Formless,10*((getrefine()>=7)*5); /* TODO: Has a chance to gain accessories when a monster is killed. */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27018,'GC109_Card','GC109 Card',6,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,136,NULL,NULL,NULL,NULL,'bonus bDelayrate,-(1+(BaseLevel>=90)+(BaseLevel>=120));',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27019,'DR815_Card','DR815 Card',6,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,136,NULL,NULL,NULL,NULL,'bonus bHit,1+(BaseLevel>=90)+(BaseLevel>=120);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27020,'T_W_O_Card','T W O Card',6,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,2,NULL,NULL,NULL,NULL,'bonus2 bAddClass,Class_All,10; bonus3 bAutoSpell,"NPC_WIDESOULDRAIN",2,50+((getrefine()/3)*10);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27025,'Lich_Lord_Card','Lich Lord Card',6,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,136,NULL,NULL,NULL,NULL,'bonus bDef,30; bonus bMdef,10; bonus2 bAddEff,Eff_Silence,900; if(getequipid() == 28483){ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; } /* TODO: Confirm Mob ID to transform */ autobonus "{ bonus bIgnoreDefClass,Class_All; bonus bIgnoreMdefRace,RC_All; }",20,7000,BF_WEAPON|BF_MAGIC,"{ active_transform 1875,7000; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27026,'Fire_Condor_Card','Fire Condor Card',6,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,136,NULL,NULL,NULL,NULL,'bonus2 bVariableCastRate,"MG_FIREBALL",-50; bonus2 bSkillAtk,"MG_FIREBALL",100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27027,'Fire_Sandman_Card','Fire Sandman Card',6,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,16,NULL,NULL,NULL,NULL,'bonus bDef,50; bonus2 bSubDefEle,Ele_Fire,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27028,'Fire_Frilldora_Card','Fire Frilldora Card',6,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,2,NULL,NULL,NULL,NULL,'.@r = getrefine(); bonus2 bMagicAddEle,Ele_Earth,3+((.@r>=7)*5)+((.@r>=9)*7);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27029,'Fire_Golem_Card','Fire Golem Card',6,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,32,NULL,NULL,NULL,NULL,'bonus2 bSubDefEle,Ele_Fire,20; bonus2 bAddEle,Ele_Fire,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27030,'Fulbuk_Card','Firebug Card',6,20,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,769,NULL,NULL,NULL,NULL,'bonus3 bAddEff,Eff_Burning,700,ATF_WEAPON|ATF_MAGIC;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27081,'Angry_Moonlight_Flower_Card','Angry Moonlight Flower Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'skill "PA_PRESSURE",4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27082,'Angry_Nine_Tail_Card','Angry Nine Tail Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'.@val = 5; bonus bCritAtkRate,10; if (getrefine() >= 10) { .@val += 10; } bonus bCritical,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27083,'Resentful_Bongun_Card','Resentful Bongun Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bBaseAtk,20; bonus bMatk,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27084,'Resentful_Sohee_Card','Resentful Sohee Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bMatk,10; if (getrefine() >= 10) { bonus bMatkRate,2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27085,'Resentful_Munak_Card','Resentful Munak Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bBaseAtk,15; bonus bMatk,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27086,'Resentful_Soldier_Card','Resentful Soldier Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'if (getiteminfo(getequipid(EQI_COMPOUND_ON),11) == W_BOW) { bonus3 bAutoSpell,"AC_DOUBLE",5,30; if (getrefine() >= 10) { bonus2 bWeaponDamageRate,W_BOW,20; } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27087,'Truthful_Wizard_Card','Truthful Wizard Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bMatk,25; autobonus "{ bonus bNoCastCancel; }",5,5000,BF_MAGIC,"{ showscript \\\"This is the truth!\\\"; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27088,'Fury_Hero_Card','Fury Hero Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus2 bAddClass,Class_All,2; bonus5 bAutoSpell,"SM_ENDURE",1,5,BF_SHORT,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27101,'Sweet_Nightmare_Card','Sweet Nightmare Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bMatk,20; bonus bNoCastCancel;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27102,'Matt_Drainliar_Card','Matt Drainliar Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus2 bResEff,Eff_Burning,10000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27103,'Living_Dead_Card','Living Dead Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bBaseAtk,20; bonus bUnbreakableWeapon; bonus bUnbreakableArmor;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27104,'Furious_Dracula_Card','Furious Dracula Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'skill "PF_HPCONVERSION",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27105,'Bomi_Card','Bomi Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8,NULL,NULL,NULL,NULL,'skill "HW_NAPALMVULCAN",4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27106,'Awaken_Pere_Card','Awaken Pere Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'if (BaseJob == Job_Bard || BaseJob == Job_Dancer) { bonus bMatk,(15*getrefine()); }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27107,'Playing_Pere_Card','Playing Pere Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8,NULL,NULL,NULL,NULL,'bonus2 bAddEle,Ele_Neutral,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27108,'Singing_Pere_Card','Singing Pere Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,128,NULL,NULL,NULL,NULL,'bonus2 bMagicAddEle,Ele_Neutral,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27109,'Jitterbug_Card','Jitterbug Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus2 bSubDefEle,Ele_Neutral,10; bonus bMaxHP,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27110,'Furious_Gazeti_Card','Furious Gazeti Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bLongAtkDef,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27111,'Furious_Snowier_Card','Furious Snowier Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus2 bAddItemHealRate,11522,50; bonus2 bAddItemHealRate,11523,50; bonus2 bAddItemHealRate,11524,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27112,'Furious_Ice Titan_Card','Furious Ice Titan Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bDef,(5*(1+getrefine()));',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27113,'Awaken_Ktullanux_Card','Awaken Ktullanux Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bMagicAtkEle,Ele_Water,(20+(3*getrefine()));',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27114,'Ominous_Solider_Card','Ominous Solider Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,(10+(getrefine()/3)); .@val = 50; if (BaseLevel >= 160) { .@val += 50; bonus bVit,3; } bonus bDef,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27115,'Ominous_Permeter_Card','Ominous Permeter Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'.@r = getrefine(); bonus bInt,1; bonus bMaxSP,(80+10*(.@r/2)); if (.@r >= 7) { bonus bSPrecovRate,30; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27116,'Ominous_Heater_Card','Ominous Heater Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bCritical,3; bonus bCritAtkRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27117,'Ominous_Assaulter_Card','Ominous Assaulter Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'.@type = getiteminfo(getequipid(EQI_COMPOUND_ON),11); if (.@type == W_WHIP || .@type == W_MUSICAL || .@type == W_BOOK || .@type == W_2HSWORD || .@type == W_2HSPEAR) { .@r = getrefine(); bonus bCritical,5; bonus bBaseAtk,(3*.@r); } bonus bCritAtkRate,(10+.@r);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27118,'Ominous_Freezer_Card','Ominous Freezer Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,10; bonus bStr,2; if (BaseLevel >= 160) { .@val = 10; } if (getrefine() >= 9) { .@val += 10; } if (.@val) { bonus2 bSkillAtk,"RK_HUNDREDSPEAR",.@val; bonus2 bSkillAtk,"LG_OVERBRAND",.@val; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27119,'Ominous_Turtle_General_Card','Ominous Turtle General Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus bDef,30; bonus bMdef,5; bonus2 bSubSize,Size_All,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27120,'Iara_Card','Iara Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'skill "PR_STRECOVERY",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27121,'Piranha_Card','Piranha Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'.@val = 10; if (getrefine() >= 9) { .@val += 5; } bonus2 bAddRace,RC_Fish,.@val; bonus2 bMagicAddRace,RC_Fish,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27122,'Curupira_Card','Curupira Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'.@val = 3; .@r = getrefine(); if (.@r>=7) { .@val += 5; } if (.@r>=9) { .@val += 7; } bonus2 bMagicAddEle,Ele_Water,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27123,'Tucan_Card','Toucan Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'.@val = 10; if (getrefine() >= 9) { .@val += 5; } bonus2 bMagicAddRace,RC_Insect,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27124,'Jaguar_Card','Jaguar Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'.@val = 10; if (getrefine() >= 9) { .@val += 5; } bonus2 bMagicAddRace,RC_Brute,.@val; bonus2 bMagicAddRace,RC_Player_Doram,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27125,'Headless_Mule_Card','Headless Mule Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus2 bMagicAtkEle,Ele_Water,20; bonus2 bMagicAtkEle,Ele_Holy,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27126,'Boitata_Card','Boitata Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddEle,Ele_Wind,40; bonus2 bAddEle,Ele_Earth,40; bonus2 bAddRace,RC_Brute,40; bonus2 bAddRace,RC_Player_Doram,40; bonus2 bAddRace,RC_Insect,40;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27147,'Humanoid_Chimera_Card','Humanoid Chimera Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bHit,(BaseLevel >= 90 ? 15 : 5);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27148,'Material_Chimera_Card','Material Chimera Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bFlee,(BaseLevel >= 90 ? 20 : 10);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27149,'Heart_Hunter_Card','Heart Hunter Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'.@type = getiteminfo(getequipid(EQI_COMPOUND_ON),11); .@r = getrefine(); if(.@type == 17 || .@type == 18 || .@type == 21){ bonus bLongAtkRate,5+.@r+(.@r >= 10 ? 5 : 0); }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27150,'Toxic_Enchanted_Chimera_Card','Toxic Enchanted Chimera Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bMaxHP,1000; bonus bMaxSP,200; if(getrefine() >= 12){ bonus bMaxHPrate,15; bonus bMaxSPrate,15; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27151,'Heart_Hunter_Evil_Card','Heart Hunter Evil Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddEffWhenHit,Eff_Freeze,3000 + (readparam(bInt) >= 110 ? 1000 : 0); bonus bMdef,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27152,'Cutie_Card','Cutie Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,10; .@r = getrefine()/2; bonus bAgi,.@r; bonus bAspdRate,.@r;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27157,'Wood_Goblin_Card','Wood Goblin Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'.@r = getrefine(); bonus2 bAddEle,Ele_Water,(.@r >= 9 ? 10 : 5); bonus2 bAddEle,Ele_Earth,(.@r >= 9 ? 10 : 5); bonus2 bSubDefEle,Ele_Water,-5; bonus2 bSubDefEle,Ele_Earth,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27158,'Les_Card','Les Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Wind,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27159,'Uzhas_Card','Uzhas Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus2 bMagicAddRace,RC_Demon,(getrefine() >= 9 ? 15 : 10);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27160,'Vavayaga_Card','Vavayaga Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bFlee,getrefine()*2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27161,'Mavka_Card','Mavka Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus2 bMagicAtkEle,Ele_Fire,20; bonus2 bMagicAtkEle,Ele_Earth,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27162,'Gopinich_Card','Gopinich Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bSPDrainValue,5; bonus bUseSPrate,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27163,'Faceworm_Card','Faceworm Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bAgi,-1; bonus bDex,-1; bonus bAspdRate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27164,'Faceworm_Queen_Card','Faceworm Queen Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,-10; .@r = getrefine(); bonus bCritical,15 + .@r; bonus bCritAtkRate,.@r;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27165,'Dark_Faceworm_Card','Dark Faceworm Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bVit,-1; bonus bInt,-1; bonus bDelayrate,-3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27166,'Faceworm_Egg_Card','Faceworm Egg Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'.@r = getrefine(); .@sub = 2+(.@r >= 9 ? 3 : .@r >= 7 ? 1 : 0); bonus2 bSubEle,Ele_Fire,.@sub;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27167,'Faceworm_Larva_Card','Faceworm Larva Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Neutral,15; bonus2 bMagicAtkEle,Ele_Water,getrefine()*3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27168,'Irene_High_Elder_Card','Irene High Elder Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bHit,10 + 5 * (getrefine()/3);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27169,'Payon_Soldier_Card','Payon Soldier Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'.@atk = 5; .@r = getrefine(); if(getiteminfo(getequipid(EQI_HAND_R),11) == W_SPEAR && .@r >= 10){ .@atk += 20; if(.@r >= 14){ .@atk += 20; } } bonus bAtk,.@atk; bonus bMatk,.@atk;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27170,'Shotgun_Buffalo_Bandit_Card','Shotgun Buffalo Bandit Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,128,NULL,NULL,NULL,NULL,'bonus bAgi,7; bonus bHit,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27171,'Revolver_Buffalo_Bandit_Card','Revolver Buffalo Bandit Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8,NULL,NULL,NULL,NULL,'bonus bStr,4; bonus2 bAddClass,Class_All,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27172,'Scimitar_Buffalo_Bandit_Card','Scimitar Buffalo Bandit Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'.@bonus = 5; .@type = getiteminfo(getequipid(EQI_COMPOUND_ON),11); if (.@type == W_DAGGER) { .@r = getrefine(); if (.@r>=10) { .@bonus += 20; } if (.@r>=14) { .@bonus += 20; } } bonus bBaseAtk,.@bonus; bonus bMatk,.@bonus;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27173,'Elite_Shotgun_Buffalo_Bandit_Card','Elite Shotgun Buffalo Bandit Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'.@bonus = 10; .@r = getrefine(); if (.@r>=10) { .@bonus += 20; } if (.@r>=14) { .@bonus += 20; } bonus2 bSkillAtk,"GS_SPREADATTACK",.@bonus;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27174,'Elite_Revolver_Buffalo_Bandit_Card','Elite Revolver Buffalo Bandit Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'.@bonus = 10; .@r = getrefine(); if (.@r>=10) { .@bonus += 20; } if (.@r>=14) { .@bonus += 20; } bonus2 bSkillAtk,"GS_RAPIDSHOWER",.@bonus;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27175,'Elite_Scimitar_Buffalo_Bandit_Card','Elite Scimitar Buffalo Bandit Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddSize,Size_Small,10; bonus2 bMagicAddSize,Size_Small,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27176,'Brown_Rat_Card','Brown Rat Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'.@str = readparam(bStr); .@bonus = 3*(.@str/10); if (.@str>=120) { .@bonus += 40; } bonus bBaseAtk,.@bonus; bonus bAspdRate,(.@str/10);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27177,'Marsh_Arclouse_Card','Marsh Arclouse Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'.@int = readparam(bInt); .@bonus = 3*(.@int/10); if (.@int>=120) { .@bonus += 40; } bonus bMatk,.@bonus; bonus bAspdRate,(.@int/10);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27178,'Gaster_Card','Gaster Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubClass,Class_Normal,25; bonus2 bSubClass,Class_Boss,-50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27179,'Coyote_Card','Coyote Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bNoCastCancel; .@hp = -12; .@sp = -6; if (getrefine() >= 10) { .@hp += 6; .@sp += 3; } bonus bMaxHPrate,.@hp; bonus bMaxSPrate,.@sp;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27180,'Mechaspider_Card','Mechaspider Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,128,NULL,NULL,NULL,NULL,'bonus bBreakWeaponRate,500; bonus bBreakArmorRate,500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27181,'Airship_Raid_Card','Airship Raid Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'.@r = getrefine(); bonus bLongAtkRate,1 + .@r/2; bonus bCritical,.@r/2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27182,'Captain_Felock_Card','Captain Felock Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bAtk,30; .@r = getrefine(); bonus2 bSkillAtk,"RL_AM_BLAST",.@r >= 10 ? 60 : 30; bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",.@r >= 10 ? 60 : 30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27183,'Gigantes_Card','Gigantes Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,128,NULL,NULL,NULL,NULL,'bonus bAtk,20; if(readparam(bStr) >= 120) { bonus bAtk,20; bonus bAspdRate,3; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27184,'Knight_Sakray_Card','Knight Sakray Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bAtk,20; bonus2 bAddRace,RC_Demon,30; bonus2 bAddRace,RC_Undead,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27196,'Nihil_M_Heine_Card','Nihil M. Heine Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bMagicAddSize,Size_Small,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27197,'Agnes_Lugenburg_Card','Agnes Lugenburg Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddSize,Size_Small,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27198,'Jurgen_Wigner_Card','Jurgen Wigner Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddRace,RC_Brute,15; bonus2 bAddRace,RC_Player_Doram,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27199,'Spica_Nerius_Card','Spica Nerius Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bMagicAddRace,RC_Brute,15; bonus2 bMagicAddRace,RC_Player_Doram,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27249,'Arhi_Card','Arhi Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bAtk,15; bonus bMatk,15; bonus bMaxHP,500; bonus bHit,15; bonus bFlee,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27250,'Dio_Anemos_Card','Dio Anemos Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bMatkRate,3; bonus2 bMagicAtkEle,Ele_Neutral,5; bonus2 bMagicAtkEle,Ele_Earth,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27251,'Geffen_Gang_Member_Card','Geffen Gang Member Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,3; bonus bAspdRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27252,'Geffen_Bully_Card','Geffen Bully Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,5; bonus bAspdRate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27253,'Geffen_Shoplifter_Card','Geffen Shoplifter Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bMatkRate,3; bonus2 bMagicAtkEle,Ele_Fire,5; bonus2 bMagicAtkEle,Ele_Holy,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27254,'Faymont_Card','Faymont Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bSPrecovRate,10; bonus3 bAutoSpellWhenHit,"CH_SOULCOLLECT",1,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27255,'Ordre_Card','Ordre Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bMatkRate,3; bonus2 bMagicAtkEle,Ele_Wind,5; bonus2 bMagicAtkEle,Ele_Water,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27256,'Blut_Hase_Card','Blut Hase Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus2 bAddClass,Class_All,3; bonus bLongAtkRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27257,'Kuro_Akuma_Card','Kuro Akuma Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bCastrate,3; bonus bLongAtkRate,5; bonus2 bSkillAtk,"NJ_HUUJIN",5; bonus2 bSkillAtk,"NJ_HYOUSENSOU",5; bonus2 bSkillAtk,"NJ_KOUENKA",5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27258,'Ifodes_Card','Ifodes Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus2 bAddClass,Class_All,3; bonus bAspdRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27259,'Licheniyes_Card','Licheniyes Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bMatkRate,3; bonus2 bMagicAtkEle,Ele_Holy,5; bonus bHealPower,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27260,'Odoric_Card','Odoric Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bAspdRate,3; bonus bLongAtkRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27261,'Ju_Card','Ju Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'.@rate = 10 + (getiteminfo(getequipid(EQI_HAND_R),11) == W_BOOK ? 20 : 0) + (getrefine() >= 14 ? 20 : 0); bonus2 bSkillAtk,"MG_FIREBOLT",.@rate; bonus2 bSkillAtk,"MG_COLDBOLT",.@rate; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",.@rate;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27262,'Dwigh_Card','Dwigh Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus2 bMagicAtkEle,Ele_Dark,20; bonus2 bMagicAtkEle,Ele_Neutral,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27263,'Fay_Kanavian_Card','Fay Kanavian Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'autobonus "{ bonus bDef,300; }",100,10000,BF_WEAPON|BF_SHORT,"{ active_transform 1040,10000; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27264,'Evil_Shadow_Card','Evil Shadow Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Dark,30; bonus2 bSubEle,Ele_Undead,30; bonus2 bSubEle,Ele_Holy,-30; bonus2 bSubEle,Ele_Fire,-30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27265,'Evil_Fanatics_Card','Evil Fanatics Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddEle,Ele_Dark,30; bonus2 bAddEle,Ele_Undead,30; bonus2 bMagicAddEle,Ele_Dark,30; bonus2 bMagicAddEle,Ele_Undead,30; bonus2 bAddEle,Ele_Holy,-30; bonus2 bAddEle,Ele_Fire,-30; bonus2 bMagicAddEle,Ele_Holy,-30; bonus2 bMagicAddEle,Ele_Fire,-30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27286,'Colorful_Teddy_Bear_Card','Colorful Teddy Bear Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bMatk,5; bonus2 bMagicAddSize,Size_Large,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27287,'Shiny_Teddy_Bear_Card','Shiny Teddy Bear Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bUseSPrate,10; bonus2 bMagicAtkEle,Ele_Holy,(3*getrefine());',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27288,'Hardworking_Pitman_Card','Hardworking Pitman Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'.@val = 10; bonus2 bAddClass,Class_All,5; if (getrefine() >= 10) { .@val += 5; } bonus bHit,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27289,'Soul_Fragment_Card','Soul Fragment Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bMatk,5; bonus2 bMagicAddSize,Size_Medium,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27290,'Haunted_Obsidian_Card','Haunted Obsidian Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'.@agi = readparam(bAgi); .@val = .@agi/10; if (.@val) { bonus bFlee,(3*.@val); bonus bAspdRate,.@val; if (.@agi >= 120) { bonus bAspd,1; } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27291,'Ancient_Tri_Joint_Card','Ancient Tri Joint Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bBaseAtk,30; bonus bMaxHPrate,-1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27292,'Ancient_Stalactic_Golem_Card','Ancient Stalactic Golem Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'.@vit = readparam(bVit); .@val = .@vit/10; if (.@val) { bonus bAspdRate,.@val; bonus bMaxHP,(150*.@val); if (.@vit >= 120) { bonus bDelayrate,-3; } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27293,'Ancient_Megalith_Card','Ancient Megalith Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bMatk,30; bonus bMaxSPrate,-1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27294,'Ancient_Tao_Gunka_Card','Ancient Tao Gunka Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'.@val = 30; if (getrefine() >= 10) { .@val += 20; } bonus2 bIgnoreDefClassRate,Class_Boss,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27295,'Ancient_Stone_Shooter_Card','Ancient Stone Shooter Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'.@luk = readparam(bLuk); .@crit = .@luk/10; if (.@luk >= 120) { .@crit += 5; } bonus bAspdRate,1; bonus bCritAtkRate,.@crit;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27296,'Ancient_Wootan_Shooter_Card','Ancient Wootan Shooter Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'.@dex = readparam(bDex); .@val = .@dex/10; if (.@val) { bonus bAspdRate,.@val; bonus2 bWeaponDamageRate,W_BOW,.@val; if (.@dex >= 120) { bonus bBaseAtk,40; } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27297,'Ancient_Wootan_Fighter_Card','Ancient Wootan Fighter Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bCritical,5; bonus bCritAtkRate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27298,'Ancient_Wootan_Defender_Card','Ancient Wootan Defender Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'.@val = 30; if (getrefine() >= 10) { .@val += 20; } bonus2 bSubClass,Class_Boss,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27301,'Labyrinth_Doppelganger_Card','Labyrinth Doppelganger Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddClass,Class_All,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27304,'E_EA2S_Card','E EA2S Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bHPrecovRate,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27305,'EL_A17T_Card','EL A17T Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus5 bAutoSpell,"WL_HELLINFERNO",3,1,ATF_SHORT|ATF_WEAPON,1; /* fix me: unknown rate */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27306,'Bellare_Card','Bellare Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'if (getiteminfo(getequipid(EQI_COMPOUND_ON),11) == W_REVOLVER) { .@r = getrefine(); bonus bHit,20; bonus bLongAtkRate,(5+.@r); if (.@r >= 10) { bonus2 bSkillAtk,"RL_FIREDANCE",15; } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27307,'Greater_Bellare_Card','Greater Bellare Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'if (getiteminfo(getequipid(EQI_COMPOUND_ON),11) == W_GATLING) { .@r = getrefine(); bonus bHit,20; bonus bLongAtkRate,(5+.@r); if (.@r >= 10) { bonus2 bSkillAtk,"RL_R_TRIP",15; } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27308,'Sanare_Card','Sanare Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'.@r = getrefine(); .@val = 2; if (.@r >= 9) { .@val += 3; } if (.@r >= 11) { .@val += 5; } bonus bHealPower,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27309,'Greater_Sanare_Card','Greater Sanare Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bMatk,10; .@val = 5; if (getrefine() >= 9) { .@val += 5; } bonus2 bMagicAtkEle,Ele_Holy,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27310,'Plaga_Card','Plaga Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bMatk,10; .@val = 5; if (getrefine() >= 9) { .@val += 5; } bonus2 bMagicAtkEle,Ele_Neutral,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27311,'Mutant_Plaga_Card','Mutant Plaga Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'if (getiteminfo(getequipid(EQI_COMPOUND_ON),11) == W_KNUCKLE) { .@r = getrefine(); bonus bHit,20; bonus bBaseAtk,15; if (.@r >= 10) { .@val = 15; } bonus2 bAddSize,Size_Large,(.@r+.@val); }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27312,'Dolor_Card','Dolor Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus2 bAddRace,RC_Demon,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27313,'Mutant_Dolor_Card','Mutant Dolor Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'if (getiteminfo(getequipid(EQI_COMPOUND_ON),11) == W_KATAR) { .@r = getrefine(); bonus bCritical,7; bonus bBaseAtk,15; bonus bCritAtkRate,(2*.@r); if (.@r >= 10) { bonus2 bAddSize,Size_Large,15; } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27314,'Venenum_Card','Venenum Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus2 bAddRace,RC_Brute,15; bonus2 bAddRace,RC_Player_Doram,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27315,'Mutant_Venenum_Card','Mutant Venenum Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus2 bMagicAddRace,RC_Brute,15; bonus2 bMagicAddRace,RC_Player_Doram,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27316,'Twin_Caput_Card','Twin Caput Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bDef,50; bonus2 bSubDefEle,Ele_Poison,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27317,'Mutant_Twin_Caput_Card','Mutant Twin Caput Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus2 bAddRace,RC_Formless,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27318,'Miguel_Card','Miguel Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,20; bonus2 bSubRace,RC_All,-10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27319,'R48_85_BESTIA_Card','R48-85-BESTIA Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddEle,Ele_Poison,40;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27320,'E_EA1L_card','E-EA1L card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'.@r = getrefine(); .@val = 3; if (.@r >= 9) { .@val += 2; if (.@r >= 11) { .@val += 5; } } bonus2 bMagicAtkEle,Ele_Fire,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27321,'Despair_God_Morocc_Card','Despair God Morocc Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus2 bAddClass,Class_All,10; bonus bMaxHPRate,-50; bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player_Human,30; bonus2 bAddRace,RC_Angel,30; autobonus3 "{ }",1000,5000,"NV_FIRSTAID","{ active_transform 3097,5000; }"; /* unknown transformation rates */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27322,'Demon_God\'s_Apostle_Ahat_Card','Demon God\'s Apostle Ahat Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bMaxSPrate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27323,'Demon_God\'s_Apostle_Shnaim_Card','Demon God\'s Apostle Shnaim Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27324,'Brinaranea_Card','Brinaranea Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bMagicAtkEle,Ele_Water,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27325,'Muspellskoll_Card','Muspellskoll Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubDefEle,Ele_Fire,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27326,'Morocc\'s_Minion_Card','Morocc\'s Minion Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bBaseAtk,100; bonus bAspdRate,25; bonus bMaxHPrate,-20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27327,'Grim_Reaper_Ankou_Card','Grim Reaper Ankou Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'.@r = getrefine(); bonus3 bAutoSpellWhenHit,"NPC_WIDECURSE",3,(1+.@r); autobonus2 "{ bonus2 bAddClass,Class_All,25; bonus bMatkRate,25; }",(1+.@r),10000,BF_WEAPON|BF_MAGIC; autobonus3 "{ }",1000,5000,"NV_FIRSTAID","{ active_transform 3029,5000; }"; /* unknown rates */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27328,'Corrupt_Life_Card','Corrupt Life Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,769,NULL,NULL,NULL,NULL,'bonus bMaxHP,500; bonus bMaxSP,50; bonus2 bSubRace,RC_Angel,-50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27330,'Kronecker_Card','Kronecker Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27331,'Kronecker_G_Heine_Card','Kronecker G. Heine Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8,NULL,NULL,NULL,NULL,'bonus bVariableCastrate,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27332,'Skia_Card','Skia Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,128,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27333,'Skia_Nerius_Card','Skia Nerius Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,128,NULL,NULL,NULL,NULL,'bonus bAspdRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27334,'Chaotic_Baphomet_Card','Chaotic Baphomet Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddClass,Class_All,25; bonus2 bSubRace,RC_Demon,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27335,'Chaotic_Baphomet_Junior_Card','Chaotic Baphomet Junior Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bCritical,readparam(bAgi)/15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27336,'Chaotic_Sidewinder_Card','Chaotic Sidewinder Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubDefEle,Ele_Poison,15; bonus2 bSubRace,RC_Brute,15; bonus2 bSubRace,RC_Player_Doram,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27337,'Chaotic_Hunter_Fly_Card','Chaotic Hunter Fly Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubDefEle,Ele_Wind,15; bonus2 bSubRace,RC_Insect,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27338,'Chaotic_Mantis_Card','Chaotic Mantis Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bStr,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27339,'Chaotic_Ghostring_Card','Chaotic Ghostring Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bBaseAtk,20; bonus2 bAddSize,Size_Small,25; bonus2 bAddSize,Size_Large,25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27340,'Chaotic_Killer_Mantis_Card','Chaotic Killer Mantis Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27341,'Chaotic_Poporing_Card','Chaotic Poporing Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubDefEle,Ele_Water,15; bonus2 bSubRace,RC_Fish,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27342,'Chaotic_Stem_Worm_Card','Chaotic Stem Worm Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bHit,10; bonus2 bSubDefEle,Ele_Earth,20; bonus2 bSubDefEle,Ele_Neutral,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27343,'Chaotic_Acolyte_Card','Chaotic Acolyte Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,128,NULL,NULL,NULL,NULL,'bonus bDelayrate,-4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27346,'Rigid_Muspellskoll_Card','Rigid Muspellskoll Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_Dragon,30; bonus2 bSubRace,RC_Demon,30; bonus2 bSubRace,RC_Brute,30; bonus2 bSubRace,RC_Player_Doram,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27347,'Rigid_Kaho_Card','Rigid Kaho Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bMagicAddEle,Ele_Earth,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27348,'Rigid_Lava_Golem_Card','Rigid Lava Golem Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,63,2,2,NULL,NULL,NULL,NULL,'.@r = getrefine(); bonus2 bMagicAddEle,Ele_Neutral,3+((.@r>=7)*5)+((.@r>=9)*7);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27349,'Rigid_Explosion_Card','Rigid Explosion Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_Dragon,15; bonus2 bSubDefEle,Ele_Fire,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27350,'Rigid_Earth_Deleter_Card','Rigid Earth Deleter Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,768,NULL,NULL,NULL,NULL,'.@r = getrefine(); bonus bMaxSPrate,2+(.@r/2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27351,'Rigid_Sky_Deleter_Card','Rigid Sky Deleter Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,768,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27352,'Rigid_Nightmare_Terror_Card','Rigid Nightmare Terror Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bMaxSPrate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27353,'Rigid_Blazer_Card','Rigid Blazer Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_Demon,15; bonus2 bSubDefEle,Ele_Neutral,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27354,'Contaminated_Raydric_Card','Contaminated Raydric Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bAddClass,Class_All,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27355,'Contaminated_Raydric_Archer_Card','Contaminated Raydric Archer Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bLongAtkRate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27356,'Frozen_Gargoyle_Card','Frozen Gargoyle Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32,NULL,NULL,NULL,NULL,'bonus2 bSubSize,Size_Medium,25; bonus2 bSubSize,Size_Large,25; bonus2 bSubSize,Size_Small,-5; bonus bDef,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27357,'Contaminated_Sting_Card','Contaminated Sting Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bDef,100+25*(getrefine()/3);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27358,'Prison_Breaker_Card','Prison Breaker Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_Wind,30; bonus2 bSubEle,Ele_Poison,30; bonus2 bSubEle,Ele_Dark,30; bonus2 bSubEle,Ele_Earth,30; bonus2 bSubEle,Ele_Undead,30; bonus2 bSubEle,Ele_Holy,-100; bonus2 bSubEle,Ele_Ghost,-100; bonus2 bSubEle,Ele_Fire,-100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27359,'Ice_Ghost_Card','Ice Ghost Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bMagicAddEle,Ele_Water,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27360,'Flame_Ghost_Card','Flame Ghost Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bMagicAddEle,Ele_Fire,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27361,'Contaminated_Wanderer_Card','Contaminated Wanderer Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bAddSize,Size_Large,30; bonus2 bAddSize,Size_Medium,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27362,'Contaminated_Spider_Queen_Card','Contaminated Spider Queen Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus2 bSubEle,Ele_All,-30; bonus2 bMagicAtkEle,Ele_Earth,100; bonus2 bMagicAtkEle,Ele_Water,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (27363,'Contaminated_Dark_Lord_Card','Contaminated Dark Lord Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8,NULL,NULL,NULL,NULL,'bonus bAspd,1;',NULL,NULL); -#=================================================================== -# New Katars -#=================================================================== -REPLACE INTO `item_db_re` VALUES (28000,'Thanos_Katar','Thanos Katar',5,10,NULL,1800,'220:80',NULL,1,1,0x00001000,56,2,34,4,'120',1,16,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000;',NULL,'heal -1000,0;'); -REPLACE INTO `item_db_re` VALUES (28001,'Katar_Of_Evil_Slayer','Evil Slayer Ripper Katar',5,0,NULL,1200,'120',NULL,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) { .@dmg = 5; if(.@r>=12) { .@dmg += 7; } bonus2 bAddClass,Class_All,.@dmg; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28002,'Half_BF_Katar2','Half BF Katar2',5,20,NULL,0,'130',NULL,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_Human,35; bonus bCritAtkRate,10; bonus bAspdRate,3; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28005,'Ru_Blue_Katar','Blue Katar',5,10,NULL,1200,'190',NULL,1,1,0x00001000,56,2,34,3,'100',1,16,'bonus bAgi,5; bonus bStr,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28006,'Ru_Gold_Katar','Ru Gold Katar',5,0,NULL,1200,'190',NULL,1,2,0x00001000,56,2,34,3,'120',1,16,'bonus bAgi,8; bonus bStr,8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28007,'Crimson_Katar','Crimson Katar',5,20,NULL,1300,'130',NULL,1,2,0x00001000,63,2,34,3,'70',1,16,'.@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28008,'Katar_of_Vicious_Mind','Katar of Vicious Mind',5,20,NULL,1800,'180',NULL,1,1,0x00001000,63,2,34,4,'160',1,16,'bonus bAtk,pow(min(getrefine(),15),2);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28010,'Juliette_D._Rachel','Juliette D. Rachel',5,20,NULL,2500,'300',NULL,1,2,0x00001000,56,2,34,4,'170',1,16,'.@r = getrefine(); bonus2 bAddClass,Class_All,(.@r/2); bonus bAspdRate,.@r; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28011,'Unity_Katar','Unity Katar',5,20,NULL,650,'123',NULL,1,1,0x00001000,63,2,34,3,'1',1,16,'bonus bBaseAtk,pow(getrefine(),2)*125/100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28022,'Illusion_Infiltrator','Illusion Infiltrator',5,0,NULL,1500,'200',NULL,1,2,0x00001000,58,2,34,4,'100',1,16,'bonus2 bAddRace,RC_DemiHuman,60; bonus2 bAddRace,RC_Player_Human,60; bonus bDef,3; .@flee = 5; .@flee2 = 2; if (getrefine() >= 9) { .@flee += 5; .@flee2 += 2; bonus2 bAddClass,Class_All,5; } bonus bFlee,.@flee; bonus bFlee2,.@flee2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28023,'Illusion_Sharpened_Legbone_of_Ghoul','Illusion Sharpened Legbone of Ghoul',5,0,NULL,1700,'220',NULL,1,2,0x00001000,58,2,34,3,'100',1,16,'autobonus "{ bonus bDefEle,Ele_Undead; sc_start SC_ENDURE,6000,1; }",40,6000,BF_WEAPON|BF_SHORT,"{ active_transform 1036,6000; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28038,'Meuchler-OS','Meuchler-OS',5,20,NULL,1300,'190',NULL,1,2,0x00001000,63,2,34,4,'130',1,16,'.@r = getrefine(); bonus2 bAddClass,Class_All,3; if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",15; if (.@r >= 11) { bonus2 bAddSize,Size_Small,20; bonus2 bAddSize,Size_Medium,20; } } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28042,'Ripper_Cross','Ripper Cross',5,20,NULL,1500,'250',NULL,1,2,0x00001000,56,2,34,4,'170',1,16,'.@r = getrefine(); bonus2 bAddClass,Class_All,5; bonus bLongAtkRate,.@r; if (.@r>=9) bonus2 bSkillAtk,"GC_ROLLINGCUTTER",30; if (.@r>=11) bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28044,'Agudo_Filo','Agudo Filo',5,20,NULL,2000,'270',NULL,1,2,0x00001000,56,2,34,4,'170',1,16,'.@r = getrefine(); bonus bCritAtkRate,5; bonus bBaseAtk,4*.@r; if (.@r>=9) bonus2 bAddSize,Size_All,15; if (.@r>=11) { bonus bUnbreakableWeapon; bonus2 bAddClass,Class_All,7; }',NULL,NULL); -#=================================================================== -# New Axes -#=================================================================== -REPLACE INTO `item_db_re` VALUES (28100,'Thanos_Axe','Thanos Axe',5,10,NULL,4000,'300:80',NULL,1,1,0x000444A2,56,2,34,4,'120',1,7,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000;',NULL,'heal -1000,0;'); -REPLACE INTO `item_db_re` VALUES (28101,'Tornado_Axe','Tornado Axe',5,30000,NULL,4000,'320',NULL,1,1,0x000444A2,56,2,34,4,'100',1,7,'bonus bAtkEle,Ele_Wind; bonus2 bSkillCooldown,"NC_AXETORNADO",-1000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28102,'Half_BF_Two_Handed_Axe1','Half BF Two Handed Axe1',5,20,NULL,0,'200',NULL,1,0,0x000444A2,63,2,34,3,'80',1,7,'bonus bStr,3; bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player_Human,30; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28103,'Ru_Blue_Axe_M','Blue Twohand Axe',5,10,NULL,3000,'330',NULL,1,1,0x00000400,56,2,34,3,'1',1,7,'bonus bStr,5; bonus bVit,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28104,'Ru_Gold_Axe_M','Ru Gold Axe M',5,0,NULL,3000,'330',NULL,1,2,0x00000400,56,2,34,3,'120',1,7,'bonus bStr,8; bonus bVit,8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28105,'Infinity_Axe','Infinity Axe',5,10,NULL,500,'265',NULL,1,1,0x000444A2,56,2,34,4,'100',1,7,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28106,'Crimson_Two-Handed_Axe','Crimson Two-Handed Axe',5,20,NULL,2000,'200',NULL,1,2,0x000444A2,63,2,34,3,'70',1,7,'.@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28107,'Two_Handed_Axe_of_Vicious_Mind','Two Handed Axe of Vicious Mind',5,20,NULL,2500,'250',NULL,1,1,0x000444A2,63,2,34,4,'160',1,7,'bonus bAtk,pow(min(getrefine(),15),2); bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28110,'Unity_Two-Handed_Axe','Unity Two-Handed Axe',5,20,NULL,1000,'190',NULL,1,1,0x000444A2,63,2,34,3,'1',1,7,'bonus bBaseAtk,pow(getrefine(),2)*125/100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28116,'Mine_Worker\'s_Pickaxe','Mine Worker\'s Pickaxe',5,10,NULL,4000,'300',NULL,1,2,0x00000400,56,2,34,3,'100',1,7,'bonus bUnbreakableWeapon; autobonus "{ bonus bCritical,20; }",5,7000,BF_SHORT,"{ specialeffect2 EF_ENCHANCE; }"; .@r = getrefine(); if (.@r>=9) { bonus bCritAtkRate,15; } else if (.@r>=7) { bonus bCritAtkRate,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28136,'Blasti-OS','Blasti-OS',5,20,NULL,4500,'400',NULL,1,2,0x00000400,56,2,34,4,'130',1,7,'.@r = getrefine(); .@red = 10; bonus bUnbreakableWeapon; if (.@r >= 7) { .@red += 15; if (.@r >= 9) { bonus bLongAtkRate,15; if (.@r >= 11) { bonus bDelayrate,-10; } } } bonus2 bSubSize,Size_Medium,.@red; bonus2 bSubSize,Size_Large,.@red;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28138,'Maxi_Spanner','Maxi Spanner',5,0,NULL,4500,'340',NULL,1,2,0x00000400,56,2,34,4,'170',1,7,'.@r = getrefine(); bonus bBaseAtk,4*.@r; bonus bUnbreakableWeapon; bonus2 bSubSize,Size_Small,10; bonus2 bSubSize,Size_Medium,10; if (.@r>=9) { bonus2 bSkillCooldown,"NC_AXETORNADO",-1000; bonus2 bSkillCooldown,"NC_MAGMA_ERUPTION",-1000; } if (.@r>=11) bonus2 bSkillAtk,"NC_AXETORNADO",15;',NULL,NULL); -#=================================================================== -# New Guns -#=================================================================== -REPLACE INTO `item_db_re` VALUES (28200,'END_OF_HORIZO','End Of The Horizon',5,2700000,NULL,2400,'410',NULL,9,1,0x40000000,63,2,34,4,'110',1,21,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28201,'Southern_Cross_R','Southern Cross',5,2800000,NULL,2000,'480',NULL,9,0,0x40000000,63,2,34,4,'141',1,21,'bonus3 bAutoSpell,"GC_CROSSIMPACT",1,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28202,'Southern_Cross_R_','Southern Cross',5,2800000,NULL,2000,'480',NULL,9,1,0x40000000,63,2,34,4,'141',1,21,'bonus3 bAutoSpell,"GC_CROSSIMPACT",1,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28203,'Half_BF_Rifle1','Half BF Rifle1',5,0,NULL,0,'50',NULL,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_Human,30; bonus2 bVariableCastrate,"GS_TRACKING",-20; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28204,'Half_BF_Shotgun1','Half BF Shotgun1',5,0,NULL,0,'100',NULL,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_Human,30; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; autobonus "{ bonus bBaseAtk,80; bonus2 bHPLossRate,100,1000; }",30,6000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28223,'Just_Finish','Finisher',5,20,NULL,2000,'200',NULL,9,2,0x40000000,63,2,34,3,'120',1,18,'.@r = getrefine(); bonus bLongAtkRate,15; if (.@r >= 7) { bonus2 bSkillAtk,"RL_AM_BLAST",30; bonus2 bSkillAtk,"RL_MASS_SPIRAL",30; if (.@r >= 9) { bonus2 bSkillCooldown,"RL_AM_BLAST",-1000; } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28224,'Dust_Fire','Dustfire',5,20,NULL,1300,'300',NULL,9,2,0x40000000,63,2,34,3,'120',1,20,'.@r = getrefine(); bonus bSplashRange,1; bonus2 bAddEff,Eff_Blind,50; if (.@r >= 7) { bonus2 bSkillAtk,"RL_S_STORM",15; if (.@r >= 9) { bonus2 bSkillAtk,"RL_BANISHING_BUSTER",15; } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28225,'Burning_Rose','Burning Rose',5,20,NULL,2500,'200',NULL,9,2,0x40000000,63,2,34,3,'120',1,19,'bonus bLongAtkRate,15; if (.@r >= 7) { bonus2 bSkillAtk,"RL_FIRE_RAIN",30; if (.@r >= 9) { bonus2 bSkillCooldown,"RL_FIRE_RAIN",-1000; } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28226,'Revenger','Avenger',5,20,NULL,1800,'350',NULL,9,2,0x40000000,63,2,34,3,'120',1,21,'bonus bLongAtkRate,20; if (.@r >= 7) { bonus2 bSkillAtk,"RL_D_TAIL",15; if (.@r >= 9) { bonus2 bSkillCooldown,"RL_H_MINE",-1000; } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28240,'Calf_Kingcobra','Calf Kingcobra',5,0,0,900,'230',NULL,9,2,0x40000000,63,2,34,4,'150',1,18,'.@r = getrefine(); bonus bAspdRate,10 + (.@r > 6 ? 5 : 0); bonus bLongAtkRate,(.@r/2)*5 + (.@r > 11 ? 5 : 0); if(.@r > 8){ bonus bCritAtkRate,15; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28241,'Calf_Diamondback','Calf Diamondback',5,0,NULL,3000,'220',NULL,9,2,0x40000000,63,2,34,4,'150',1,19,'.@r = getrefine(); bonus bDex,2; bonus2 bAddClass,Class_All,2; bonus bLongAtkRate,(.@r/2)*5 + (.@r > 11 ? 5 : 0); if(.@r > 6){ bonus2 bSkillAtk,"RL_R_TRIP",20; } if(.@r > 8){ bonus2 bSkillUseSPrate,"RL_R_TRIP",5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28242,'Calf_Anaconda','Calf Anaconda',5,10,NULL,1400,'305',NULL,9,2,0x40000000,63,2,34,4,'150',1,20,'.@r = getrefine(); bonus bSplashRange,1; bonus bMaxSPrate,2; bonus bLongAtkRate,(.@r/2)*5 + (.@r > 8 ? 5 : 0); if(.@r > 6){ bonus2 bSkillAtk,"RL_BANISHING_BUSTER",20; } if(.@r > 11){ bonus2 bSkillUseSPrate,"RL_BANISHING_BUSTER",15; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28243,'Calf_Python','Calf Python',5,10,0,2000,'360',NULL,9,2,0x40000000,63,2,34,4,'150',1,21,'.@r = getrefine(); bonus bDex,2; bonus2 bAddClass,Class_All,2; bonus bLongAtkRate,(.@r/2)*5; if(.@r > 6){ bonus bAspdRate,5; } if(.@r > 8){ bonus2 bSkillAtk,"RL_D_TAIL",15 + (.@r > 11 ? 15 : 0); }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28244,'Illusion_Gate_Keeper_DD','Illusion Gate Keeper DD',5,0,NULL,1300,'240',NULL,9,2,0x40000000,63,2,34,4,'120',1,20,'.@r = getrefine(); bonus bDex,1; bonus bSplashRange,1; .@val = 5*(.@r/2); if (.@r >= 7) { bonus bAspdRate,15; if (.@r >= 9) { .@val += 5; if (.@r >= 11) { bonus5 bAutoSpell,"GS_SPREADATTACK",max(6,getskilllv("GS_SPREADATTACK")),50,BF_LONG|BF_WEAPON,1; } } } bonus bLongAtkRate,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28253,'HR-S55-OS','HR-S55-OS',5,20,NULL,1000,'250',NULL,9,2,0x41000000,63,2,34,4,'130',1,18,'.@r = getrefine(); bonus2 bAddClass,Class_All,3; if (.@r >= 7) { bonus bLongAtkRate,7; if (.@r >= 9) { bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",20; if (.@r >= 11) { bonus2 bSkillCooldown,"RL_HAMMER_OF_GOD",-5000; } } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28254,'Illusion_Butcher','Illusion Butcher',5,20,NULL,2500,'210',NULL,9,2,0x41000000,63,2,34,4,'120',1,19,'.@r = getrefine(); bonus bLongAtkRate,2*(readparam(bStr)/15); bonus bBaseAtk,10*.@r; if (.@r >= 7) { bonus2 bSkillAtk,"RL_FIRE_RAIN",20; if (.@r >= 9) { bonus2 bSkillAtk,"RL_R_TRIP",15; if (.@r >= 11) { bonus2 bAddRace,RC_Brute,30; bonus2 bAddRace,RC_Player_Doram,30; bonus2 bAddRace,RC_Demon,30; } } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28255,'Master_Soul_Rifle','Master Soul Rifle',5,20,NULL,1000,'150:210',NULL,9,2,0x40000000,63,2,34,4,'100',1,18,'.@r = getrefine(); bonus bMatk,10*(.@r/3); bonus bAspdRate,3*(.@r/3); if (.@r >= 7) { bonus bAspd,1; bonus bMatkRate,5; if (.@r >= 9) { .@chance = 1; /* unknown rate*/ if (.@r >= 11) { .@chance += 1; bonus5 bAutoSpell,"WL_SOULEXPANSION",3,1,BF_LONG,1; } bonus5 bAutoSpell,"MG_SOULSTRIKE",10,.@chance,BF_LONG,1; } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28256,'Demon_Slayer_Shot','Demon Slayer Shot',5,20,NULL,1400,'275',NULL,9,2,0x40000000,63,2,34,4,'100',1,20,'.@r = getrefine(); bonus bSplashRange,1; bonus bLongAtkRate,3*(.@r/2); bonus bMaxSPrate,2*(.@r/3); if (.@r >= 7) { bonus2 bAddClass,Class_Boss,10; if (.@r >= 9) { autobonus3 "{ bonus bBaseAtk,50; bonus bLongAtkRate,10; }",1000,90000,"RL_P_ALTER"; if (.@r >= 11) { bonus2 bAddRace,RC_Undead,15; bonus2 bAddRace,RC_Demon,15; } } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28257,'Golden_Lord_Launcher','Golden Lord Launcher',5,20,NULL,2100,'320',NULL,9,2,0x40000000,63,2,34,4,'100',1,21,'.@r = getrefine(); bonus bLongAtkRate,3*(.@r/2); bonus bBaseAtk,15*(.@r/3); if (.@r >= 7) { .@val = 15; if (.@r >= 9) { bonus2 bSkillCooldown,"RL_D_TAIL",-1000; if (.@r >= 11) { .@val += 15; } } bonus2 bSkillAtk,"RL_D_TAIL",.@val; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28258,'The_Black','The Black',5,20,NULL,2700,'205',NULL,9,2,0x40000000,63,2,34,4,'100',1,19,'.@r = getrefine(); bonus bLongAtkRate,2*(.@r/3); bonus bBaseAtk,10*(.@r/2); if (.@r >= 7) { .@val = 15; bonus2 bSkillUseSPrate,"RL_R_TRIP",-10; if (.@r >= 9) { autobonus3 "{ bonus bBaseAtk,50; bonus bLongAtkRate,10; }",1000,90000,"RL_P_ALTER"; if (.@r >= 11) { .@val += 15; } } bonus2 bSkillAtk,"RL_R_TRIP",.@val; }',NULL,NULL); -#=================================================================== -# New Accessories -#=================================================================== -REPLACE INTO `item_db_re` VALUES (28302,'Vesper_Core01_','Vesper Core 01',4,20,NULL,500,NULL,1,NULL,1,0x00CFFF80,18,2,136,NULL,'1',0,0,'bonus bMdef,3; bonus bInt,2; bonus bMaxSPrate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28303,'Vesper_Core02_','Vesper Core 02',4,20,NULL,500,NULL,1,NULL,1,0x00CFFF80,18,2,136,NULL,'1',0,0,'bonus bMdef,3; bonus bStr,3; bonus bBaseAtk,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28304,'Vesper_Core03_','Vesper Core 03',4,20,NULL,500,NULL,1,NULL,1,0x00CFFF80,18,2,136,NULL,'1',0,0,'bonus bMdef,3; bonus bAgi,3; bonus bFlee,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28305,'Vesper_Core04_','Vesper Core 04',4,20,NULL,500,NULL,1,NULL,1,0x00CFFF80,18,2,136,NULL,'1',0,0,'bonus bMdef,3; bonus bDex,3; bonus bHit,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28306,'Bless_Of_Moon','Luna\'s Blessing',4,20,NULL,100,NULL,5,NULL,0,0xFFFFFFFF,63,2,136,NULL,'1',0,NULL,'bonus bAllStats,1; bonus bMdef,2; bonus3 bAutoSpell,"CG_TAROTCARD",5,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28315,'RCC2013_ARMLET','RCC2013_ARMLET',4,200,NULL,200,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,136,NULL,'1',0,NULL,'bonus2 bAddClass,Class_All,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28316,'RCC2013_ARMLET_','RCC2013_ARMLET_',4,200,NULL,200,NULL,NULL,NULL,1,0xFFFFFFFF,63,2,136,NULL,'1',0,NULL,'bonus2 bAddClass,Class_All,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28317,'RCC2013_RING','RCC2013_RING',4,200,NULL,200,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,136,NULL,'1',0,NULL,'bonus2 bAddClass,Class_All,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28318,'RCC2013_RING_','RCC2013_RING_',4,200,NULL,200,NULL,NULL,NULL,1,0xFFFFFFFF,63,2,136,NULL,'1',0,NULL,'bonus2 bAddClass,Class_All,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28310,'Earring_Of_Sarah_L','Sarah\'s Left Earring',4,10,NULL,100,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,136,NULL,'145',0,NULL,'skill "AL_HEAL",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28311,'Earring_Of_Sarah_R','Sarah\'s Right Earring',4,10,NULL,100,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,136,NULL,'145',0,NULL,'skill "AL_TELEPORT",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28320,'Assassin\'s_Despair','Assassin\'s Despair',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'50',0,0,'bonus bAspd,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28321,'Falconer_Claw','Falconer Claw',4,0,NULL,100,NULL,5,NULL,1,0x00000800,63,2,136,NULL,'80',0,NULL,'bonus bDex,1; bonus2 bSkillAtk,"HT_BLITZBEAT",getskilllv("HT_STEELCROW")*10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28322,'Falconer_Glove','Falconer Glove',4,0,NULL,100,NULL,5,NULL,1,0x00000800,63,2,136,NULL,'80',0,NULL,'bonus bDex,1; bonus bUseSPrate,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28326,'Broken_Chip_1','Broken Chips 01',4,10,NULL,100,NULL,NULL,NULL,1,0xFFFFFFFF,63,2,136,NULL,'100',0,NULL,'bonus bStr,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28327,'Broken_Chip_2','Broken Chips 02',4,10,NULL,100,NULL,NULL,NULL,1,0xFFFFFFFF,63,2,136,NULL,'100',0,NULL,'bonus bInt,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28332,'Jewel_Ring','Jewerly Ring',4,10,NULL,100,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,136,NULL,'1',0,NULL,'/* bonus bLuk,20; Event bonus */ autobonus "{ bonus bAspd,2; bonus bVariableCastrate,-30; }",50,5000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_ENCHANCE; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28333,'Gold_PC_Room_Ring','Gold PC Room Ring',4,10,NULL,0,NULL,NULL,NULL,1,0xFFFFFFFF,63,2,136,NULL,'1',0,NULL,'bonus bMaxHPrate,3; bonus bMaxSPrate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28342,'Critical_Anklet','Critical Anklet',4,0,NULL,200,NULL,3,NULL,1,0xFFFFFFFF,63,2,136,NULL,'50',0,NULL,'bonus bCritical,5; bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28352,'Vesper_Gear_01','Vesper Gear 01',4,20,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,63,2,136,NULL,'90',0,0,'bonus bMdef,3; bonus bMatkRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28353,'Vesper_Gear_02','Vesper Gear 02',4,20,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,63,2,136,NULL,'90',0,0,'bonus bMdef,3; bonus2 bAddClass,Class_All,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28354,'City_Map','City Map',4,0,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'1',0,0,'/* todo */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28355,'Shining_Holy_Water_','Shining Holy Water',4,0,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'1',0,0,'/* todo */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28356,'Prontera_Badge','Prontera Badge',4,0,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'1',0,0,'/*warp "prontera",159,192; 15 mins cooldown */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28357,'Vesper_Gear_03','Vesper Gear 03',4,20,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,63,2,136,NULL,'90',0,0,'bonus bMdef,3; bonus bFlee,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28358,'Cursed_Lucky_Clover','Cursed Lucky Clover',4,0,NULL,100,NULL,NULL,NULL,1,0xFFFFFFFF,63,2,136,NULL,'100',0,NULL,'bonus bLuk,2; bonus bFlee,3; bonus2 bAddEff2,Eff_Curse,5;',NULL,'sc_end SC_CLOAKING; /*FIXME: Because the combo has Cloaking skill*/'); -REPLACE INTO `item_db_re` VALUES (28359,'Vesper_Gear_04','Vesper Gear 04',4,20,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,63,2,136,NULL,'90',0,0,'bonus bMdef,3; bonus bHit,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28370,'Broken_Chip_Green','Broken Chip (Green)',4,0,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,63,2,136,NULL,'100',0,0,'bonus2 bAddClass,Class_All,5; bonus bDelayrate,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28371,'Broken_Chip_Red','Broken Chip (Red)',4,0,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,63,2,136,NULL,'100',0,0,'bonus2 bMagicAddClass,Class_All,5; bonus bVariableCastrate,-10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28372,'Imperial_Ring','Imperial Ring',4,0,NULL,500,NULL,3,NULL,1,0xFFFFFFFF,63,2,136,NULL,'50',0,NULL,'bonus bStr,1; bonus bInt,1; bonus bMaxHPRate,3; bonus bMaxSPRate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28374,'Foxtail_Ring','Foxtail Ring',4,20,NULL,100,NULL,0,NULL,0,0x80000000,7,2,136,NULL,'1',0,NULL,'bonus2 bExpAddRace,RC_All,5; .@lvl = min(BaseLevel/5,10); bonus bAtk,2*.@lvl; bonus bMatk,2*.@lvl; bonus bMaxHP,10*.@lvl; bonus bMaxSP,5*.@lvl;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28377,'Magical_Ring','Magical Ring',4,0,NULL,100,NULL,NULL,NULL,1,0xFFFFFFFF,63,2,136,NULL,'20',0,NULL,'bonus2 bMagicAtkEle,Ele_Fire,5; bonus2 bMagicAtkEle,Ele_Water,5; bonus2 bMagicAtkEle,Ele_Earth,5; bonus2 bMagicAtkEle,Ele_Wind,5; if (BaseLevel > 4) { bonus2 bSkillAtk,"MG_FIREBOLT",BaseLevel/5; bonus2 bSkillAtk,"MG_COLDBOLT",BaseLevel/5; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",BaseLevel/5; bonus2 bSkillAtk,"WZ_EARTHSPIKE",BaseLevel/5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28379,'Shadow_Ring','Shadow Ring',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'20',0,0,'.@s = getskilllv("RG_STEALCOIN"); .@r = getskilllv("RG_RAID"); if (.@s>=1) .@a = .@s; else .@a = 1; bonus3 bAutoSpell,"RG_STEALCOIN",.@a,50; bonus2 bSkillAtk,"RG_BACKSTAP",2*BaseLevel; bonus3 bAddEff,Eff_Stun,.@r*100,ATF_SHORT; autobonus3 "{ bonus2 bSkillAtk,\\\"SC_TRIANGLESHOT\\\",BaseLevel/3; }",1000,20000,5010,"{ specialeffect2 153; }"; /* Placeholder specialeffect */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28380,'Fresh_Grass_Necklace','Fresh Grass Necklace',4,20,NULL,100,NULL,0,NULL,1,0x80000000,7,2,136,NULL,'100',0,NULL,'bonus bFlee2,5; bonus2 bSkillCooldown,"SU_SCAROFTAROU",-5000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28381,'Cute_Grass_Necklace','Cute Grass Necklace',4,20,NULL,10,NULL,0,NULL,1,0x80000000,7,2,136,NULL,'100',0,NULL,'bonus bHealPower,5; bonus2 bSkillCooldown,"SU_TUNAPARTY",-7000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28382,'Charm_Grass_Necklace','Charm Grass Necklace',4,20,NULL,10,NULL,0,NULL,1,0x80000000,7,2,136,NULL,'100',0,NULL,'bonus bMdef,5; bonus2 bVariableCastrate,"SU_CN_METEOR",-1000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28386,'Fallen_Monk_Rosary','Fallen Monk Rosary',4,0,NULL,100,NULL,NULL,NULL,1,0xFFFFFFFF,63,2,136,NULL,'20',0,NULL,'bonus bAspdRate,5; bonus bCritical,5; bonus2 bSkillUseSP,"CH_SOULCOLLECT",-5; if (BaseLevel > 14) bonus2 bSkillAtk,"SR_DRAGONCOMBO",BaseLevel/15; if (BaseLevel > 19) bonus2 bSkillAtk,"SR_KNUCKLEARROW",BaseLevel/20; if (BaseLevel > 29) bonus2 bSkillAtk,"SR_SKYNETBLOW",BaseLevel/30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28391,'S_Thief_Earring','Thief Shadow Earring',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1048576,NULL,'1',1,NULL,'autobonus3 "{ .@val = 30+(getrefine()*10); bonus bBaseAtk,.@val; bonus bFlee,.@val; }",200,5000,"TF_THROWSTONE","{ specialeffect2 EF_ENHANCE; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28392,'S_Archer_Earring','Archer Shadow Earring',12,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1048576,NULL,'1',1,NULL,'autobonus3 "{ .@val = 30+(getrefine()*10); bonus bBaseAtk,.@val; bonus bHit,.@val; }",200,5000,"AC_DOUBLE","{ specialeffect2 EF_ENHANCE; }";',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28410,'Sapphire_Wrist','Sapphire Wrist',4,0,NULL,500,NULL,3,NULL,1,0xFFFFFFFF,63,2,136,NULL,'50',0,NULL,'bonus bDex,5; bonus bLuk,5; bonus bInt,5; bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",BaseLevel/5; bonus2 bVariableCastrate,"CR_ACIDDEMONSTRATION",-(BaseLevel/4); .@n = getskilllv("CR_SLIMPITCHER"); bonus bDex,.@n/2; bonus bLuk,.@n/2; bonus bInt,.@n/2; bonus bMatk,(.@n/2)*20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28411,'Emerald_Earring','Emerald Earring',4,0,NULL,500,NULL,3,NULL,1,0xFFFFFFFF,63,2,136,NULL,'50',0,NULL,'bonus bDex,5; bonus bAgi,5; bonus bInt,5; bonus2 bSkillAtk,"CG_ARROWVULCAN",BaseLevel; bonus2 bSkillAtk,"BA_MUSICALSTRIKE",BaseLevel; bonus2 bSkillAtk,"DC_THROWARROW",BaseLevel; bonus2 bSkillAtk,"WM_METALICSOUND",2*(BaseLevel/5); .@n = getskilllv("WM_METALICSOUND"); bonus2 bVariableCastrate,"WM_METALICSOUND",.@n/2; bonus bDex,.@n/2; bonus bAgi,.@n/2; bonus bInt,.@n/2; bonus bMatk,(.@n/2)*20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28413,'Lesser_Mackerel_Talisman','Lesser Mackerel Talisman',4,0,NULL,100,NULL,1,NULL,1,0x80000000,63,2,136,NULL,'100',NULL,NULL,'bonus bVit,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28414,'Intermediate_Mackerel_Talisman','Intermediate Mackerel Talisman',4,0,NULL,100,NULL,1,NULL,1,0x80000000,63,2,136,NULL,'140',NULL,NULL,'bonus bVit,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28415,'Greater_Mackerel_Talisman','Greater Mackerel Talisman',4,0,NULL,100,NULL,1,NULL,1,0x80000000,63,2,136,NULL,'175',NULL,NULL,'bonus bVit,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28416,'Lesser_Leaf_Talisman','Lesser Leaf Talisman',4,0,NULL,100,NULL,1,NULL,1,0x80000000,63,2,136,NULL,'100',NULL,NULL,'bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28417,'Intermediate_Leaf_Talisman','Intermediate Leaf Talisman',4,0,NULL,100,NULL,1,NULL,1,0x80000000,63,2,136,NULL,'140',NULL,NULL,'bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28418,'Greater_Leaf_Talisman','Greater Leaf Talisman',4,0,NULL,100,NULL,1,NULL,1,0x80000000,63,2,136,NULL,'175',NULL,NULL,'bonus bInt,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28419,'Lesser_Rabbit_Talisman','Lesser Rabbit Talisman',4,0,NULL,100,NULL,1,NULL,1,0x80000000,63,2,136,NULL,'100',NULL,NULL,'bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28420,'Intermediate_Rabbit_Talisman','Intermediate Rabbit Talisman',4,0,NULL,100,NULL,1,NULL,1,0x80000000,63,2,136,NULL,'140',NULL,NULL,'bonus bDex,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28421,'Greater_Rabbit_Talisman','Greater Rabbit Talisman',4,0,NULL,100,NULL,1,NULL,1,0x80000000,63,2,136,NULL,'175',NULL,NULL,'bonus bDex,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28422,'Shiny_Branch_Talisman','Shiny Branch Talisman',4,0,NULL,100,NULL,1,NULL,1,0x80000000,63,2,136,NULL,'100',NULL,NULL,'bonus2 bVariableCastrate,"SU_SV_STEMSPEAR",-50; bonus2 bSkillAtk,"SU_SV_STEMSPEAR",(readparam(bInt)/2)+(20 * getskilllv("SU_SV_STEMSPEAR")); /* Need to confirm damage formula */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28423,'Fresh_Tuna_Talisman','Fresh Tuna Talisman',4,0,NULL,100,NULL,1,NULL,1,0x80000000,63,2,136,NULL,'100',NULL,NULL,'bonus2 bSkillCooldown,"SU_TUNAPARTY",-5000; bonus3 bAutoSpellWhenHit,"SU_TUNAPARTY",max(1,getskilllv("SU_TUNAPARTY")),10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28424,'Chubby_Worm_Talisman','Chubby Worm Talisman',4,0,NULL,100,NULL,1,NULL,1,0x80000000,63,2,136,NULL,'100',NULL,NULL,'bonus2 bVariableCastrate,"SU_PICKYPECK",-50; bonus2 bSkillAtk,"SU_PICKYPECK",(readparam(bDex)/2)+(20 * getskilllv("SU_PICKYPECK")); /* Need to confirm damage formula */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28425,'Mercenary_Ring_A','Mercenary Ring Type A',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'99',0,0,'bonus bVit,3; if (BaseClass == Job_Gunslinger || BaseJob == Job_Novice || BaseJob == Job_SuperNovice || BaseClass == Job_Ninja || BaseClass == Job_Taekwon) { bonus bMaxHP,1000; bonus bMaxSP,200; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28426,'Mercenary_Ring_B','Mercenary Ring Type B',4,20,NULL,200,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'99',0,0,'bonus bInt,3; if (BaseClass == Job_Gunslinger || BaseJob == Job_Novice || BaseJob == Job_SuperNovice || BaseClass == Job_Ninja || BaseClass == Job_Taekwon) { bonus bVariableCastrate,-30; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28429,'Arquien\'s_Necklace','Arquien\'s Necklace',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'20',0,0,'bonus2 bSkillAtk,"MC_CARTREVOLUTION",Baselevel; bonus2 bSkillAtk,"NC_AXETORNADO",(Baselevel/3); bonus2 bSkillAtk,"NC_POWERSWING",(Baselevel/5); bonus2 bSkillUseSP,"NC_POWERSWING",2; bonus2 bAddMonsterDropItem,529,2000; bonus2 bAddMonsterDropItem,530,2000; bonus2 bAddMonsterDropItem,573,500; bonus2 bAddItemHealRate,529,100; bonus2 bAddItemHealRate,530,100; /* Unknow drop rates */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28430,'Arch_Bishop_Ring','Arch Bishop Ring',4,20,NULL,400,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'90',0,0,'bonus bLuk,2; bonus bFlee2,5; bonus bUseSPrate,-5; bonus bHealPower,15; bonus bAddItemHealRate,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28433,'Luminous_Blue_Stone','Luminous Blue Stone',4,20,NULL,400,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'90',0,0,'bonus bAgi,2; bonus bCritical,5; bonus bAspdRate,5; bonus bCritAtkRate,2; skill "MG_SIGHT",1; if (readparam(bLuk)>=100) { bonus bCritical,10; bonus bCritAtkRate,10; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28434,'Fist_Fighter_Glove','Fist Fighter\'s Glove',4,20,NULL,400,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'90',0,0,'bonus bStr,2; bonus bMaxSP,100; bonus2 bAddClass,Class_All,2; skill "MO_ABSORBSPIRITS",1; if (readparam(bStr)>99) bonus2 bAddClass,Class_All,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28437,'Hibram\'s_Gloves','Hibram\'s Gloves',4,20,NULL,400,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'90',0,0,'skill "AL_HEAL",3; bonus bInt,2; bonus bMatkRate,2; bonus bUseSPrate,-5; if (readparam(bInt)>=110) bonus bMatkRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28438,'Fairy_Leaf_Powder','Fairy Leaf Powder',4,20,NULL,400,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'90',0,0,'bonus bDex,2; bonus bDelayrate,-5; bonus bLongAtkRate,2; skill "SM_MAGNUM",3; if (readparam(bDex)>=100) bonus bLongAtkRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28441,'Vigilante_Badge','Vigilante Badge',4,0,NULL,200,NULL,0,NULL,0,0x00020000,56,2,136,NULL,'100',0,0,'bonus bFlee,10; bonus bLongAtkRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28442,'Hippie_Feather','Hippie Feather',4,0,NULL,200,NULL,0,NULL,1,0x00080000,56,2,136,NULL,'100',0,0,'bonus bHit,5; bonus bFlee,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28443,'Para_Team_Str_Ring100','Awakened Eden Group Ring of Strength I',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'100',NULL,NULL,'bonus2 bAddClass,Class_All,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28444,'Para_Team_Str_Necklace100','Awakened Eden Group Necklace of Strength I',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'100',NULL,NULL,'bonus bStr,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28445,'Para_Team_Str_Ring115','Awakened Eden Group Ring of Strength II',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'115',NULL,NULL,'bonus2 bAddClass,Class_All,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28446,'Para_Team_Str_Necklace115','Awakened Eden Group Necklace of Strength II',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'115',NULL,NULL,'bonus bStr,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28447,'Para_Team_Str_Ring130','Awakened Eden Group Ring of Strength III',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'130',NULL,NULL,'bonus2 bAddClass,Class_All,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28448,'Para_Team_Str_Necklace130','Awakened Eden Group Necklace of Strength III',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'130',NULL,NULL,'bonus bStr,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28449,'Para_Team_Str_Ring145','Awakened Eden Group Ring of Strength IV',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'145',NULL,NULL,'bonus2 bAddClass,Class_All,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28450,'Para_Team_Str_Necklace145','Awakened Eden Group Necklace of Strength IV',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'145',NULL,NULL,'bonus bStr,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28451,'Para_Team_Str_Ring160','Awakened Eden Group Ring of Strength V',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'160',NULL,NULL,'bonus2 bAddClass,Class_All,5; skill "AL_HEAL",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28452,'Para_Team_Str_Necklace160','Awakened Eden Group Necklace of Strength V',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'160',NULL,NULL,'bonus bStr,4; skill "AL_TELEPORT",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28453,'Para_Team_Magic_Ring100','Awakened Eden Group Ring of Magic I',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'100',NULL,NULL,'bonus bMatkRate,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28454,'Para_Team_Magic_Necklace100','Awakened Eden Group Necklace of Magic I',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'100',NULL,NULL,'bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28455,'Para_Team_Magic_Ring115','Awakened Eden Group Ring of Magic II',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'115',NULL,NULL,'bonus bMatkRate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28456,'Para_Team_Magic_Necklace115','Awakened Eden Group Necklace of Magic II',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'115',NULL,NULL,'bonus bInt,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28457,'Para_Team_Magic_Ring130','Awakened Eden Group Ring of Magic III',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'130',NULL,NULL,'bonus bMatkRate,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28458,'Para_Team_Magic_Necklace130','Awakened Eden Group Necklace of Magic III',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'130',NULL,NULL,'bonus bInt,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28459,'Para_Team_Magic_Ring145','Awakened Eden Group Ring of Magic IV',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'145',NULL,NULL,'bonus bMatkRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28460,'Para_Team_Magic_Necklace145','Awakened Eden Group Necklace of Magic IV',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'145',NULL,NULL,'bonus bInt,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28461,'Para_Team_Magic_Ring160','Awakened Eden Group Ring of Magic V',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'160',NULL,NULL,'bonus bMatkRate,5; skill "AL_HEAL",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28462,'Para_Team_Magic_Necklace160','Awakened Eden Group Necklace of Magic V',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'160',NULL,NULL,'bonus bInt,4; skill "AL_TELEPORT",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28463,'Para_Team_Agi_Ring100','Awakened Eden Group Ring of Agility I',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'100',NULL,NULL,'bonus bLongAtkRate,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28464,'Para_Team_Agi_Necklace100','Awakened Eden Group Necklace of Agility I',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'100',NULL,NULL,'bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28465,'Para_Team_Agi_Ring115','Awakened Eden Group Ring of Agility II',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'115',NULL,NULL,'bonus bLongAtkRate,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28466,'Para_Team_Agi_Necklace115','Awakened Eden Group Necklace of Agility II',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'115',NULL,NULL,'bonus bDex,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28467,'Para_Team_Agi_Ring130','Awakened Eden Group Ring of Agility III',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'130',NULL,NULL,'bonus bLongAtkRate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28468,'Para_Team_Agi_Necklace130','Awakened Eden Group Necklace of Agility III',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'130',NULL,NULL,'bonus bDex,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28469,'Para_Team_Agi_Ring145','Awakened Eden Group Ring of Agility IV',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'145',NULL,NULL,'bonus bLongAtkRate,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28470,'Para_Team_Agi_Necklace145','Awakened Eden Group Necklace of Agility IV',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'145',NULL,NULL,'bonus bDex,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28471,'Para_Team_Agi_Ring160','Awakened Eden Group Ring of Agility V',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'160',NULL,NULL,'bonus bLongAtkRate,4; skill "AL_HEAL",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28472,'Para_Team_Agi_Necklace160','Awakened Eden Group Necklace of Agility V',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'160',NULL,NULL,'bonus bDex,4; skill "AL_TELEPORT",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28483,'Royal_Guardian_Ring','Royal Guardian Ring',4,0,NULL,10,NULL,1,NULL,1,0xFFFFFFFF,63,2,136,NULL,'99',NULL,NULL,'.@b = min(BaseLevel/25,7); bonus bMaxHPrate,.@b; bonus bMaxSPrate,.@b;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28484,'Rebel_Scarf','Rebel Scarf',4,20,NULL,400,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'100',0,0,'.@M = getskilllv("RL_MASS_SPIRAL"); .@F = getskilllv("RL_FIRE_RAIN"); .@H = getskilllv("RL_HEAT_BARREL"); .@S = getskilllv("RL_S_STORM"); .@D = getskilllv("RL_D_TAIL"); .@E = getskilllv("RL_E_CHAIN"); bonus2 bAddClass,Class_All,5; bonus bAspdRate,2*.@M; bonus bVariableCastrate,-10; bonus bDelayrate,-(.@F); bonus2 bSkillCooldown,"RL_HEAT_BARREL",-4000*.@S; bonus2 bSkillCooldown,"RL_S_STORM",-100*.@S; bonus bCritAtkRate,3*.@D; bonus2 bSkillAtk,"RL_FIRE_RAIN",5*.@F; bonus2 bSkillAtk,"RL_MASS_SPIRAL",5*.@M; bonus2 bSkillAtk,"RL_QD_SHOT",5*.@E; bonus2 bSkillAtk,"RL_S_STORM",5*.@S; bonus2 bSkillUseSP,"RL_FIREDANCE",10; bonus2 bSkillUseSP,"RL_FIRE_RAIN",4*.@F; bonus2 bSkillUseSP,"RL_MASS_SPIRAL",2*.@M; if(getiteminfo(getequipid(EQI_HAND_R),11) == W_GRENADE) { autobonus3 "{ bonus3 bAutoSpell,\\\"RL_D_TAIL\\\",max(1,getskilllv(\\\"RL_D_TAIL\\\")),10;}",1000,50000,"RL_C_MARKER","{specialeffect2 311;}"; } /* Placeholder Effect */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28485,'Shinobi_Sash_H','Shinobi Sash H',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'100',0,0,'bonus bMatkRate,5; bonus bAspdRate,5; bonus bDelayrate,-5; .@a = (getskilllv("KO_GENWAKU")+getskilllv("KO_JYUSATSU")+getskilllv("KO_KYOUGAKU")); bonus2 bMagicAddEle,Ele_Dark,4*.@a; bonus2 bSkillAtk,"NJ_BAKUENRYU",10*getskilllv("NJ_KOUENKA"); bonus2 bSkillAtk,"NJ_KAMAITACHI",10*getskilllv("NJ_HUUJIN"); bonus2 bSkillAtk,"NJ_HYOUSYOURAKU",20*getskilllv("NJ_HYOUSENSOU");',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28491,'Hunting_Knife','Hunting Knife',4,20,NULL,400,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'90',0,0,'bonus bLuk,2; bonus bHit,10; bonus bCriticalLong,5; skill "TF_HIDING",1; if (readparam(bLuk)>=100) { bonus bHit,5; bonus bCriticalLong,10; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28492,'Thieve_Guide_V1','Thieve\'s Guide Vol.1',4,20,NULL,10,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'100',0,0,'bonus bStr,5; bonus bAgi,5; bonus bInt,5; if (getskilllv(2292)==3) skill "SN_WINDWALK",5; if (getskilllv(2293)==3) skill "HP_ASSUMPTIO",5; if (getskilllv(2294)==3) skill "WS_OVERTHRUSTMAX",5; if (getskilllv(2295)==3) skill "ASC_METEORASSAULT",5; if (getskilllv(2296)==3) skill "LK_BERSERK",1; if (getskilllv(2297)==3) skill "HW_MAGICPOWER",5; if (getskilllv(220)==1) { bonus bStr,5; bonus bAgi,5; bonus bInt,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28495,'Sheriffs_Left_Badge','Sheriff\'s Left Badge',4,0,NULL,200,NULL,0,NULL,1,0xFFFFFFFF,63,2,128,NULL,'100',0,0,'if (readparam(bStr) > 89) bonus2 bAddClass,Class_All,3; if (readparam(bVit) > 89) bonus bMaxHP,1000; if (readparam(bDex) > 89) bonus bLongAtkRate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28496,'Sheriffs_Right_Badge','Sheriff\'s Right Badge',4,0,NULL,200,NULL,0,NULL,1,0xFFFFFFFF,63,2,8,NULL,'100',0,0,'if (readparam(bVit) > 89) bonus bMaxHP,1000; if (readparam(bInt) > 89) bonus bMatkRate,3; if (readparam(bDex) > 89) bonus bVariableCastrate,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28499,'Proof_of_Glory','Proof of Glory',4,0,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'100',NULL,NULL,'bonus bAllStats,1; bonus2 bAddRace,RC_All,2; bonus2 bMagicAddRace,RC_All,2; if(BaseLevel>=150) { bonus bAllStats,1; bonus2 bAddRace,RC_All,2; bonus2 bMagicAddRace,RC_All,2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28500,'Zealous_Necklace','Zealous Necklace',4,20,NULL,200,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'100',0,0,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28501,'Horn_of_Kirin','Horn of Kirin',4,20,NULL,500,NULL,3,NULL,1,0xFFFFFFFF,63,2,136,NULL,'50',0,0,'bonus bAgi,2; bonus bAspdRate,2; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Brute,1; bonus2 bSubRace,RC_Player_Doram,1; bonus2 bSubRace,RC_Fish,1; bonus2 bSubRace,RC_Player_Human,1; bonus2 bSubRace,RC_Demon,2; bonus2 bSubRace,RC_Undead,2; skill "AL_INCAGI",6; if (readparam(bAgi)>=100) { bonus bAspdRate,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28502,'Mob_Scarf','Mob Scarf',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,1,NULL,'100',0,1568,'skill "SA_SPELLBREAKER",2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28503,'Keraunos','Keraunos',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'100',0,0,'bonus bMaxHPrate,5; bonus2 bAddClass,Class_All,5; bonus bAspdRate,5; bonus2 bVariableCastrate,"SR_GATEOFHELL",-3*(BaseLevel/20); bonus2 bVariableCastrate,"SR_RIDEINLIGHTNING",-5*(BaseLevel/15); bonus2 bSkillCooldown,"SR_ASSIMILATEPOWER",-3000; bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28506,'Storm_Stone','Storm Stone',4,30000,NULL,500,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'90',0,0,'bonus bMaxSPrate,5; bonus bAspdRate,5; bonus2 bAddClass,Class_All,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28507,'Magician_Gloves','Magician\'s Gloves',4,20,NULL,500,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'80',0,0,'bonus bVariableCastrate,-10; bonus2 bMagicAtkEle,Ele_Earth,5; bonus2 bMagicAtkEle,Ele_Water,5; bonus2 bMagicAtkEle,Ele_Wind,5; bonus2 bMagicAtkEle,Ele_Fire,5; bonus2 bMagicAtkEle,Ele_Ghost,5; bonus2 bIgnoreMdefRaceRate,RC_All,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28508,'Illusion_Skull_Ring','Illusion Skull Ring',4,0,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,8,NULL,'100',0,0,'bonus3 bAddEff,Eff_Curse,5000,ATF_SELF|ATF_TARGET|ATF_SHORT|ATF_WEAPON;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28509,'Illusion_Ring','Illusion Ring',4,0,NULL,200,NULL,0,NULL,1,0xFFFFFFFE,63,2,136,NULL,'100',0,0,'bonus bStr,3; if (readparam(bStr) >= 100) { bonus bBaseAtk,30; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28510,'A_Vampire\'s_Servant','A Vampire\'s Servant',4,0,NULL,100,NULL,1,NULL,1,0xFFFFFFFF,63,2,8,NULL,'100',0,NULL,'bonus2 bSPDrainRate,1000,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28513,'JRO_Celine_Brooch','Celine\'s Brooch',4,20,NULL,500,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'100',0,0,'bonus bMaxHP,500; bonus bMaxSP,250; bonus bMatkRate,5; bonus bAspd,1; bonus bVariableCastrate,-10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28520,'Egir_Ring','Egir Ring',4,20,NULL,500,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'100',0,0,'bonus bMdef,5; bonus bAllStats,1; bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus2 bSubEle,Ele_Water,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28521,'Giant\'s_Protection','Giant\'s Protection',4,20,NULL,500,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'1',0,0,'bonus2 bAddClass,Class_All,5; if (readparam(bStr)>=120) { bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bBaseAtk,50; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28531,'Blacksmith\'s_Gloves','Blacksmith\'s Gloves',4,20,NULL,500,NULL,NULL,NULL,1,0xFFFFFFFF,63,2,136,NULL,'80',0,NULL,'bonus bDelayrate,-10; bonus2 bAddClass,Class_Boss,5; bonus2 bIgnoreDefRaceRate,RC_All,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28533,'Chemical_Glove','Chemical Glove',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'20',0,NULL,'.@s = getskilllv("GN_REMODELING_CART"); bonus bHit,20; bonus bAspdRate,5+.@s; bonus bBaseAtk,15*.@s; bonus bMaxHPrate,2*.@s; bonus2 bSkillUseSP,"GN_CART_TORNADO",.@s; bonus2 bAddItemHealRate,501,100; bonus2 bAddItemHealRate,502,100; bonus2 bAddItemHealRate,503,100; bonus2 bAddItemHealRate,504,100; bonus2 bSkillAtk,"MC_CARTREVOLUTION",Baselevel; bonus2 bSkillAtk,"GN_CARTCANNON",2*(Baselevel/20); bonus2 bSkillAtk,"GN_CART_TORNADO",2*(Baselevel/30);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28551,'Imperial_Glove','Imperial Glove',4,20,NULL,400,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'100',0,0,'bonus2 bAddClass,Class_All,5; bonus bVariableCastrate,-10; bonus bNoCastCancel;',NULL,NULL); -#REPLACE INTO `item_db_re` VALUES (28560,'Yin_Yang_Talisman','Yin Yang Talisman',4,20,NULL,300,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'50',0,0,'bonus bMatkRate,5; bonus bHit,20; bonus bAspdRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28564,'Valkyrie_Drop','Valkyrie Drop',4,20,NULL,30,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'100',0,0,'.@r = getskilllv("PR_IMPOSITIO"); bonus bSPrecovRate,50; bonus bVariableCastrate,-10; bonus bDelayrate,-5; bonus2 bVariableCastrate,"AB_ORATIO",-50; bonus2 bFixedCastrate,"AB_ORATIO",-100; bonus2 bMagicAddSize,Size_All,3*.@r; bonus2 bSkillAtk,"PR_MAGNUS",3*(Baselevel/2); if (.@r == 5) skill "ALL_ODINS_POWER",2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28565,'Perverse_Demon_Mask','Perverse Demon Mask',4,20,NULL,60,NULL,0,NULL,1,0xFFFFFFFF,63,2,128,NULL,'80',0,0,'.@s = readparam(bStr); .@a = readparam(bAgi); .@d = readparam(bDex); .@v = readparam(bvit); .@l = readparam(bLuk); .@i = readparam(bInt); bonus bStr,3*(.@i/18); bonus bAgi,3*(.@l/18); bonus bVit,3*(.@d/18); bonus bInt,3*(.@s/18); bonus bDex,3*(.@v/18); bonus bLuk,3*(.@a/18); bonus bMaxHPrate,(.@d/18); bonus bFlee2,(.@a/18); bonus bMaxHPrate,(.@d/18); bonus bVariableCastrate,-(.@v/18); bonus bDelayrate,-(.@i/18); bonus2 bIgnoreDefClassRate,Class_All,15*(.@l/18); bonus2 bIgnoreMdefClassRate,Class_All,15*(.@s/18);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28566,'Beginner\'s_Ring','Beginner\'s Ring',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,128,NULL,'100',0,0,'bonus bAspdRate,10; bonus bVariableCastrate,-10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28573,'Emerald_Ring','Emerald Ring',4,20,NULL,300,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'100',0,0,'.@a = getskilllv("AC_DOUBLE")/2; bonus bAgi,5+(.@a); bonus bVit,5+(.@a); bonus bDex,5+(.@a); bonus bBaseAtk,(20*.@a); bonus2 bSkillAtk,"AC_DOUBLE",Baselevel; bonus2 bSkillAtk,"AC_SHOWER",Baselevel; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",2*(Baselevel/10); bonus2 bSkillUseSP,"WM_RANDOMIZESPELL",18;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28575,'Verus_Core','Verus Core',4,10,NULL,500,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'80',0,0,'bonus bAspdRate,10; bonus2 bAddEle,Ele_All,5; bonus bPerfectHitAddRate,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28594,'Temporal_Ring','Temporal Ring',4,20,NULL,500,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'100',0,0,'bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bBaseAtk,50; bonus bMatk,50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28598,'Powered_Chip','Powered Chip',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'100',0,0,'bonus bStr,5; bonus bVit,5; bonus bDex,5; bonus2 bAddClass,Class_All,5; if (getskilllv("NC_ARMSCANNON") >= 3) bonus bDelayrate,-30; if (getskilllv("NC_NEUTRALBARRIER") >= 3) { bonus2 bVariableCastrate,"NC_ARMSCANNON",-50; bonus2 bVariableCastrate,"NC_FLAMELAUNCHER",-50; bonus2 bVariableCastrate,"NC_COLDSLOWER",-50; } if (getskilllv("NC_PILEBUNKER") >= 3) { bonus bStr,5; bonus bVit,5; bonus bDex,5; bonus bBaseAtk,100; } if (getskilllv("NC_RESEARCHFE") >= 5) bonus bNoMadoFuel;',NULL,NULL); -#=================================================================== -# More books -#=================================================================== -REPLACE INTO `item_db_re` VALUES (28600,'Ru_Blue_Book','Blue Book',5,10,NULL,500,'160',NULL,1,1,0x00000100,56,2,2,3,'100',1,15,'bonus bAgi,5; bonus bDex,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28601,'Ru_Gold_Book','Ru Gold Book',5,0,NULL,500,'160',NULL,1,2,0x00000008,63,2,2,3,'120',1,15,'bonus bVit,8; bonus bInt,8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28602,'Demon_Hunting_Bible','Demon Hunting Bible',5,0,NULL,500,'30:170',NULL,1,2,0x00000100,56,2,2,3,'110',1,15,'bonus bInt,2; bonus bDex,2; .@b = readparam(bInt); bonus2 bSkillAtk,"PR_MAGNUS",30+min(.@b,120); bonus bHealPower,10; bonus bAddItemHealRate,10; .@r = (getrefine()*1000); autobonus2 "{ bonus bIgnoreMdefRace,RC_All; }",50,1000+.@r,BF_WEAPON,"{ specialeffect2 EF_FLOWERCAST;}"; bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Holy;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28604,'Crimson_Bible','Crimson Bible',5,20,NULL,450,'45',NULL,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);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28605,'Book_of_Vicious_Mind','Book of Vicious Mind',5,20,NULL,950,'95',NULL,1,1,0x00010100,63,2,2,4,'160',1,15,'bonus bAtk,pow(min(getrefine(),15),2); bonus bMatk,pow(min(getrefine(),15),2); bonus bUnbreakableWeapon;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28606,'Unity_Bible','Unity Bible',5,20,NULL,220,'42',NULL,1,1,0x00410100,63,2,2,3,'1',1,15,'bonus bBaseAtk,pow(getrefine(),2)*125/100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28608,'Elemental_Origin','Elemental Origin',5,20,NULL,800,'120:150',NULL,1,2,0x00010000,56,2,2,3,'100',1,15,'.@r = getrefine(); bonus bInt,4; .@bonus = 10; if (.@r>=7) { .@bonus += 10; } if (.@r>=9) { .@bonus += 10; } bonus2 bSkillAtk,"MG_FIREBOLT",.@bonus; bonus2 bSkillAtk,"MG_COLDBOLT",.@bonus; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",.@bonus;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28612,'Illusion_Apocalypse','Illusion Apocalypse',5,0,NULL,800,'170',NULL,1,2,0x00410100,63,2,2,4,'100',1,15,'.@val = 10 + 10*(min(getrefine(),10)/3); bonus2 bAddEle,Ele_Water,.@val; bonus2 bAddEle,Ele_Earth,.@val; bonus2 bAddEle,Ele_Fire,.@val; bonus2 bAddEle,Ele_Wind,.@val; bonus2 bSubDefEle,Ele_Holy,-30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28618,'Book_of_the_Sun_God','Book of the Sun God',5,10,NULL,500,'180:170',NULL,1,4,0x00010100,63,2,2,3,'100',1,15,'.@r = getrefine(); bonus bMaxHP,200*.@r; bonus bMaxSP,50*.@r; bonus bAspdRate,.@r; if (.@r>=10) bonus3 bAutoSpell,"WZ_METEOR",5,200; else if (.@r>=8) bonus3 bAutoSpell,"WZ_METEOR",4,150; else bonus3 bAutoSpell,"WZ_METEOR",3,100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28619,'Prisoner_Diary','Prisoner\'s Diary',5,20,NULL,800,'210',NULL,1,2,0x00410100,63,2,2,3,'175',1,15,'.@r = getrefine(); bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bBaseAtk,20*(.@r/2); if (.@r>=9) .@val = 25; else if (.@r>=7) .@val = 10; if (.@r>=11) { bonus2 bAddEle,Ele_Dark,15; bonus2 bMagicAddEle,Ele_Dark,15; bonus2 bAddEle,Ele_Undead,15; bonus2 bMagicAddEle,Ele_Undead,15; } bonus2 bAddRace,RC_Demon,.@val; bonus2 bAddRace,RC_Undead,.@val; bonus2 bMagicAddRace,RC_Demon,.@val; bonus2 bMagicAddRace,RC_Undead,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28626,'Illusion_Tablet','Illusion Tablet',5,0,NULL,800,'170',NULL,1,2,0x00410100,63,2,2,4,'100',1,15,'.@val = 10 + 10*(min(getrefine(),10)/3); bonus2 bAddEle,Ele_Dark,.@val; bonus2 bAddEle,Ele_Undead,.@val; bonus2 bAddEle,Ele_Poison,.@val; bonus2 bAddEle,Ele_Ghost,.@val; bonus2 bSubDefEle,Ele_Dark,-30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28629,'Circuit_Board-OS','Circuit Board-OS',5,20,NULL,1200,'180',NULL,1,2,0x00410100,63,2,2,4,'130',1,15,'.@r = getrefine(); bonus2 bAddClass,Class_All,3; if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus2 bAddSize,Size_Small,20; bonus2 bAddSize,Size_Medium,20; if (.@r >= 11) { bonus bCritAtkRate,20; } } }',NULL,NULL); -#REPLACE INTO `item_db_re` VALUES ( 28631,'Thousand_Sun','Thousand Sun',5,20,NULL,900,'160',NULL,1,2,0x00000000,63,2,2,4,'100',1,15,'.@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bMaxSPrate,2*(.@r/3); if (.@r >= 7) { bonus2 bSkillAtk,"SJ_PROMINENCEKICK",15; if (.@r >= 9) { bonus bAspdRate,10; if (.@r >= 11) { bonus2 bSkillAtk,"SJ_SOLARBURST",20; } } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28633,'Boltijin','Boltijin',5,20,NULL,800,'120:175',NULL,1,2,0x00010000,56,2,2,4,'170',1,15,'.@r = getrefine(); bonus bMatk,4*.@r; if (.@r>=9) .@val = 30; if (.@r>=11) { bonus2 bSkillAtk,"WZ_EARTHSPIKE",50; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",50; } bonus2 bSkillAtk,"MG_FIREBOLT",20+.@val; bonus2 bSkillAtk,"MG_COLDBOLT",20+.@val; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",20+.@val;',NULL,NULL); -#=================================================================== -# More daggers -#=================================================================== -REPLACE INTO `item_db_re` VALUES (28700,'Ru_Gold_Dagger','Ru Gold Dagger',5,0,NULL,1000,'160',NULL,1,2,0x00020000,56,2,2,3,'120',1,1,'bonus bStr,8; bonus bInt,8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28701,'Ru_Gold_Knife','Ru Gold Knife',5,0,NULL,500,'160',NULL,1,2,0x00010000,56,2,2,3,'120',1,1,'bonus bVit,8; bonus bInt,8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28702,'Ru_Gold_Ashura','Ru Gold Ashura',5,0,NULL,1000,'150:150',NULL,1,2,0x2000000,63,2,2,3,'120',1,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28703,'Infinity_Dagger','Infinity Dagger',5,10,NULL,500,'125:100',NULL,1,1,0x028F5EEF,56,2,2,4,'100',1,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28705,'Crimson_Dagger','Crimson Dagger',5,20,NULL,550,'55',NULL,1,2,0x028F5EEF,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);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28706,'Dagger_of_Vicious_Mind','Dagger of Vicious Mind',5,20,NULL,1050,'105:50',NULL,1,1,0x028F5EEF,63,2,2,4,'160',1,1,'bonus bAtk,pow(min(getrefine(),15),2); bonus bMatk,pow(min(getrefine(),15),2)/2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28717,'Valkyrie_Knife','Valkyrie Knife',5,50,NULL,100,'50:50',NULL,1,4,0x228F5EEF,63,2,2,4,'70',1,1,'.@r = getrefine(); .@b = readparam(bDex)/10; if (BaseClass==Job_Novice) { bonus bMaxHP,300+(200*.@r); bonus bMaxSP,300+(20*.@r); bonus bBaseAtk,100; bonus bMatk,150+(15*.@r); bonus bUseSPrate,-5; bonus bUnbreakableWeapon; bonus bInt,2*.@r; bonus bDex,(2*.@r)-(.@r*.@b); bonus bCritical,7*.@r; bonus bAspdRate,10*.@r; bonus bCritAtkRate,1*.@r; } if (BaseClass==Job_Thief) { bonus bMaxSP,100; bonus bMatk,150; bonus bCritAtkRate,.@r; } if (BaseClass==Job_Mage) { bonus bMaxHP,200*.@r; bonus bMaxSP,20*.@r; } if (BaseJob==Job_Hunter) { bonus bMaxHP,200; bonus bUseSPrate,-5; bonus bInt,2*.@r; bonus bDex,2*.@r; } if (BaseJob==Job_Bard||BaseJob==Job_Dancer) { bonus bBaseAtk,100; bonus bAspdRate,10*.@r; bonus bUnbreakableWeapon; bonus bDex,-1*(.@r*.@b); } if (.@r>=7) { if (BaseClass==Job_Novice||BaseJob==Job_Mage) { bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28721,'Monokage','Monokage',5,10,NULL,800,'100',NULL,1,2,0x20000000,63,2,2,3,'100',1,1,'.@r = getrefine(); bonus2 bSkillAtk,"KO_BAKURETSU",getskilllv("NJ_TOBIDOUGU"); if (.@r>=9) { bonus bLongAtkRate,5; } else if (.@r>=7) { bonus bLongAtkRate,2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28725,'Illusion_Moonlight_Dagger','Illusion Moonlight Dagger',5,20,NULL,700,'150',NULL,1,1,0x028F5EEE,63,2,2,4,'99',1,1,'bonus bMaxSPrate,10; .@val = 3; if (getrefine() >= 10) { .@val += 4; } bonus bSPDrainValue,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28745,'Illusion_Counter_Dagger','Illusion Counter Dagger',5,0,NULL,900,'170',NULL,1,2,0x00810204,63,2,2,4,'120',0,1,'.@r = getrefine(); bonus bCritical,90; bonus bCritAtkRate,(3*(.@r/2)); if (.@r >= 7) { bonus2 bAddClass,Class_All,5; if (.@r >= 9) { bonus2 bAddSize,Size_All,20; if (.@r >= 11) { bonus2 bAddEle,Ele_All,20; } } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28755,'Kuroiro-OS','Kuroiro-OS',5,20,NULL,900,'150:150',NULL,1,2,0x22000000,63,2,2,4,'130',1,1,'.@r = getrefine(); .@dmg = 5; if (.@r >= 7) { .@dmg += 10; if (.@r >= 9) { bonus2 bSkillAtk,"KO_HAPPOKUNAI",20; if (.@r >= 11) { bonus2 bAddRace,RC_Demon,10; bonus2 bMagicAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; bonus2 bMagicAddRace,RC_Undead,10; } } } bonus2 bAddEle,Ele_Undead,.@dmg; bonus2 bMagicAddEle,Ele_Undead,.@dmg; bonus2 bAddEle,Ele_Dark,.@dmg; bonus2 bMagicAddEle,Ele_Dark,.@dmg;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28762,'Illusion_Bazerald','Illusion Bazerald',5,20,NULL,500,'120:170',NULL,1,2,0x228F5EEE,63,2,2,4,'120',1,1,'bonus bAtkEle,Ele_Fire; bonus bInt,5; .@r = getrefine(); bonus bMatkRate,(.@r/2); if (.@r >= 7) { bonus2 bMagicAtkEle,Ele_Fire,10; if (.@r >= 9) { bonus2 bSkillAtk,"MG_FIREBOLT",40; bonus2 bSkillAtk,"MG_FIREBALL",40; if (.@r >= 11) { bonus2 bSkillAtk,"WZ_METEOR",30; bonus2 bSkillAtk,"WL_CRIMSONROCK",30; } } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28763,'Surudoi_Kaze','Surudoi Kaze',5,20,NULL,1000,'150',NULL,1,2,0x22000000,63,2,2,4,'100',1,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28764,'Kiri_no_Tsuyu','Kiri no Tsuyu',5,20,NULL,1000,'150',NULL,1,2,0x22000000,63,2,2,4,'100',1,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28765,'Judgement_Slasher','Judgement Slasher',5,20,NULL,1100,'195',NULL,1,2,0x00001000,56,2,2,4,'170',1,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28766,'Repent_Slasher','Repent Slasher',5,20,NULL,700,'100',NULL,1,3,0x00001000,56,2,2,4,'170',1,1,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28767,'Jack_The_Knife','Jack The Knife',5,20,NULL,900,'195',NULL,1,2,0x00020000,56,2,2,4,'170',1,1,'.@r = getrefine(); bonus bBaseAtk,4*.@r; bonus2 bSkillAtk,"RG_BACKSTAP",40; if (.@r>=9) bonus2 bSkillAtk,"SC_FATALMENACE",30; if (.@r>=11) bonus2 bSkillUseSPrate,"SC_FATALMENACE",10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28768,'Platinum_Dagger','Platinum Dagger',5,20,NULL,1500,'150:170',NULL,1,2,0x00020000,56,2,2,4,'170',1,1,'.@r = getrefine(); bonus bMatk,4*.@r; bonus bMatkRate,5; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Fire,15; bonus2 bMagicAtkEle,Ele_Wind,15; bonus2 bMagicAtkEle,Ele_Water,15; bonus2 bMagicAtkEle,Ele_Earth,15; } if (.@r>=11) autobonus "{ bonus bMatk,100; bonus2 bMagicAddSize,Size_All,30; }",50,10000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; /* Unknow Rates and Specialeffect */',NULL,NULL); -#=================================================================== -# More shields -#=================================================================== -REPLACE INTO `item_db_re` VALUES (28900,'Guardsmen\'s_Shield','Guardsmen\'s Shield',4,20,NULL,3000,NULL,30,NULL,1,0xFFFFFFFF,63,2,32,NULL,'100',1,1,'.@r = getrefine(); skill "LG_SHIELDSPELL",1; bonus3 bAutoSpellWhenHit,"HP_ASSUMPTIO",3,(10+(.@r*10)); bonus bDef,(.@r*10); bonus bMdef,.@r;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28901,'Cursed_Mad_Bunny','Cursed Mad Bunny',4,20,NULL,100,NULL,0,NULL,0,0xFFFFFFFF,63,2,32,NULL,'1',1,1,'bonus bAspd,3; bonus2 bAddRace,RC_All,5; bonus2 bMagicAddRace,RC_All,5; bonus bShortWeaponDamageReturn,10; autobonus2 "{ bonus bMagicDamageReturn,60; }",10,2000,BF_MAGIC,"{ specialeffect2 EF_WIND; }"; .@r = getrefine(); if(.@r>=7) { bonus bBaseAtk,5; bonus bMatk,5; } if(.@r>=9) { bonus bBaseAtk,15; bonus bMatk,15; } if(.@r>=12) { bonus bCritical,10; bonus bNoCastCancel; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28902,'Mad_Bunny_','Mad Bunny',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,32,NULL,'1',1,1,'bonus2 bAddRace,RC_All,5; bonus2 bMagicAddRace,RC_All,5; bonus bShortWeaponDamageReturn,10; autobonus2 "{ bonus bMagicDamageReturn,60; }",10,2000,BF_MAGIC,"{ specialeffect2 EF_WIND; }"; .@r = getrefine(); if(.@r>=7) { bonus bBaseAtk,5; bonus bMatk,5; } if(.@r>=9) { bonus bBaseAtk,15; bonus bMatk,15; } if(.@r>=12) { bonus bCritical,10; bonus bNoCastCancel; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28903,'Scutum','Scutum',4,0,NULL,500,NULL,1,NULL,1,0xFFFFFFFF,63,2,32,NULL,'1',1,1,'.@r = getrefine(); bonus bFlee,5+(.@r*3); bonus bFlee2,1+(.@r*2); if (.@r > 10) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28904,'Unity_Guard','Unity Guard',4,20,NULL,300,NULL,60,NULL,1,0xFFFFFFFF,63,2,32,NULL,'100',1,1,'if(BaseLevel<100) { bonus bDef,12*getrefine(); }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28905,'Unity_Buckler','Unity Buckler',4,20,NULL,300,NULL,60,NULL,1,0xFFFFFFFF,63,2,32,NULL,'100',1,1,'if(BaseLevel<100) { bonus bMaxSPrate,2*getrefine(); }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28906,'Shield_Of_Flame','Shield Of Flame',4,0,NULL,500,NULL,80,NULL,1,0xFFFFFFFF,63,2,32,NULL,'90',1,1,'bonus2 bSubEle,Ele_Fire,25; .@r = getrefine(); if(.@r > 4) { bonus bAspd,1+((.@r > 6) ? 1 : 0); }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28907,'Shield_Of_Gust','Shield Of Gust',4,0,NULL,500,NULL,80,NULL,1,0xFFFFFFFF,63,2,32,NULL,'90',1,1,'bonus2 bSubEle,Ele_Wind,25; .@r = getrefine(); if(.@r > 4) { bonus bAspd,1+((.@r > 6) ? 1 : 0); }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28908,'Shield_Of_Water','Shield Of Water',4,0,NULL,500,NULL,80,NULL,1,0xFFFFFFFF,63,2,32,NULL,'90',1,1,'bonus2 bSubEle,Ele_Water,25; .@r = getrefine(); if(.@r > 4) { bonus bAspd,1+((.@r > 6) ? 1 : 0); }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28909,'Shield_Of_Earth','Shield Of Earth',4,0,NULL,500,NULL,80,NULL,1,0xFFFFFFFF,63,2,32,NULL,'90',1,1,'bonus2 bSubEle,Ele_Earth,25; .@r = getrefine(); if(.@r > 4) { bonus bAspd,1+((.@r > 6) ? 1 : 0); }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28910,'Rectangular_Large_Sleeve','Rectangular Large Sleeve',4,20,NULL,800,NULL,80,NULL,1,0xFFFFFFFF,63,2,32,NULL,'100',1,1,'bonus bLongAtkDef,5; .@r = getrefine(); if(.@r>=5) { bonus bLongAtkDef,5; } if(.@r>=7) { bonus bLongAtkDef,10; } if(.@r>=9) { bonus bLongAtkDef,15; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28913,'Ultra_Light_MShield','Ultralight Magic Shield',4,0,NULL,100,NULL,50,NULL,1,0xFFFFFFFF,63,2,32,NULL,'100',1,1,'.@r = getrefine(); .@val = 5; bonus2 bIgnoreDefClassRate,Class_Normal,10; if (.@r >= 9) { .@val += 5; } else if (.@r >= 7) { .@val += 2; } bonus bAspdRate,.@val; bonus2 bSubEle,Ele_Neutral,.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28915,'Bunker_Shield','Bunker Shield',4,20,NULL,3500,NULL,90,NULL,1,0xFFFFFFFF,63,2,32,NULL,'50',1,1,'.@r = getrefine(); if(.@r >= 5) { .@dmg = .@r - 4; } bonus2 bAddClass,Class_All,(4+.@dmg); bonus bAspdRate,-5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28916,'Gaia_Shield','Gaia Shield',4,20,NULL,2000,NULL,150,NULL,1,0xFFFFFFFF,63,2,32,NULL,'90',1,1,'bonus bMdef,10; bonus2 bSubEle,Ele_Earth,10; bonus2 bAddEle,Ele_Earth,5; bonus2 bMagicAddEle,Ele_Earth,5; .@r = getrefine(); if(.@r>=6) { bonus2 bSubEle,Ele_Earth,15; bonus2 bAddEle,Ele_Earth,10; bonus2 bMagicAddEle,Ele_Earth,10; } if(.@r>=8) { if(readparam(bStr)>=90) { bonus bBaseAtk,50; } if(readparam(bAgi)>=90) { bonus bAspdRate,5; } if(readparam(bVit)>=90) { bonus bHealPower2,10; bonus bAddItemHealRate,10; } if(readparam(bInt)>=90) { bonus bMatk,30; } if(readparam(bDex)>=90) { bonus bVariableCastrate,-5; } if(readparam(bLuk)>=90) { bonus bCritAtkRate,5; } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28918,'Shield_of_Chaos','Shield of Chaos',4,20,NULL,500,NULL,80,NULL,1,0xFFFFFFFF,63,2,32,NULL,'90',1,1,'.@r = getrefine(); bonus bMdef,5; bonus2 bSubEle,Ele_Dark,25; if (.@r>=5) bonus bAspd,1; if (.@r>=7) bonus bAspd,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28920,'Diamond_Shield','Diamond Shield',4,20,NULL,1000,NULL,50,NULL,0,0xFFFFFFFF,63,2,32,NULL,'100',1,1,'.@r = getrefine(); if(BaseLevel>=150) { bonus bDef,100+(20*(.@r/3)); }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28921,'Anemos_Shield','Anemos Shield',4,20,NULL,3500,NULL,150,NULL,1,0xFFFFFFFF,63,2,32,NULL,'90',1,1,'bonus bMdef,15; bonus2 bAddEle,Ele_Wind,5; bonus2 bMagicAddEle,Ele_wind,5; bonus2 bSubEle,Ele_Wind,10; bonus bUnbreakableShield; .@r = getrefine(); if (.@r>=6) { bonus2 bAddEle,Ele_Wind,10; bonus2 bMagicAddEle,Ele_wind,10; bonus2 bSubEle,Ele_Wind,15; } if (.@r>=8) { if (readparam(bStr)>=90) bonus bBaseAtk,50; if (readparam(bAgi)>=90) bonus bAspdRate,5; if (readparam(bVit)>=90) bonus bAddItemHealRate,10; if (readparam(bInt)>=90) bonus bMatk,30; if (readparam(bDex)>=90) bonus bVariableCastrate,-5; if (readparam(bLuk)>=90) bonus bCritAtkRate,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28922,'Illusion_Sacred_Mission','Illusion Sacred Mission',4,0,NULL,1600,NULL,190,NULL,1,0x00004000,56,2,32,NULL,'120',1,4,'bonus bVit,3; bonus bInt,2; bonus bMdef,3; bonus bUnbreakableShield; bonus2 bSkillAtk,"LG_EARTHDRIVE",(7*getrefine());',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28929,'Happy_Shield','Happy Shield',4,10,NULL,3500,NULL,150,NULL,1,0xFFFFFFFF,63,2,32,NULL,'90',1,1,'bonus bMdef,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28941,'Excelion_Shield','Excelion Shield',4,20,NULL,1200,NULL,95,NULL,1,0xFFFFFFFF,63,2,32,NULL,'100',1,1,'.@r = getrefine(); bonus bMdef,5; bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bBaseAtk,30*(.@r/3); bonus bMatk,30*(.@r/3); if (readparam(Baselevel)>=130) { bonus bMaxHPrate,5; bonus bMaxSPrate,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28951,'Nero_Shield','Nero Shield',4,20,NULL,500,NULL,80,NULL,1,0xFFFFFFFF,63,2,32,NULL,'90',1,1,'.@r = getrefine(); bonus bUnbreakableShield; bonus bMdef,5; bonus2 bSubEle,Ele_Water,10; bonus2 bAddEle,Ele_Water,5; bonus2 bMagicAddEle,Ele_Water,5; if (.@r>=6) { bonus2 bSubEle,Ele_Water,15; bonus2 bAddEle,Ele_Water,10; bonus2 bMagicAddEle,Ele_Water,10; } if (.@r>=8) { if (readparam(bStr)>=90) bonus bBaseAtk,50; if (readparam(bAgi)>=90) bonus bAspdRate,5; if (readparam(bInt)>=90) bonus bMatk,30; if (readparam(bVit)>=90) bonus bAddItemHealRate,10; if (readparam(bDex)>=90) bonus bVariableCastrate,-5; if (readparam(bLuk)>=90) bonus bCritAtkRate,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (28955,'Fotia_Shield','Fotia Shield',4,20,NULL,1000,NULL,120,NULL,1,0xFFFFFFFF,63,2,32,NULL,'90',1,1,'.@r = getrefine(); bonus bUnbreakableShield; bonus bMdef,5; bonus2 bSubEle,Ele_Fire,10; bonus2 bAddEle,Ele_Fire,5; bonus2 bMagicAddEle,Ele_Fire,5; if (.@r>=6) { bonus2 bSubEle,Ele_Fire,15; bonus2 bAddEle,Ele_Fire,10; bonus2 bMagicAddEle,Ele_Fire,10; } if (.@r>=8) { if (readparam(bStr)>=90) bonus bBaseAtk,50; if (readparam(bAgi)>=90) bonus bAspdRate,5; if (readparam(bInt)>=90) bonus bMatk,30; if (readparam(bVit)>=90) bonus bAddItemHealRate,10; if (readparam(bDex)>=90) bonus bVariableCastrate,-5; if (readparam(bLuk)>=90) bonus bCritAtkRate,5; }',NULL,NULL); -#=================================================================== -# Enchantment stones -#=================================================================== -REPLACE INTO `item_db_re` VALUES (29000,'Rune_of_Intellect_Lv_1','Rune of Intellect Lv 1',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'.@r = getrefine(); if (.@r>=7) { bonus bInt,5; } if (.@r>=10) { bonus bMatkRate,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29001,'Rune_of_Intellect_Lv_2','Rune of Intellect Lv 2',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'.@r = getrefine(); if (.@r>=7) { bonus bInt,6; } if (.@r>=11) { bonus bInt,1; bonus bMatkRate,7; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29002,'Rune_of_Intellect_Lv_3','Rune of Intellect Lv 3',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'.@r = getrefine(); if (.@r>=7) { bonus bInt,7; } if (.@r>=12) { bonus bInt,1; bonus bMatkRate,8; } if (.@r>=13) { bonus bInt,1; bonus bMatkRate,2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29003,'Rune_of_Dexterity_Lv_1','Rune of Dexterity Lv 1',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'.@r = getrefine(); if (.@r>=7) { bonus bDex,5; } if (.@r>=10) { bonus bLongAtkRate,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29004,'Rune_of_Dexterity_Lv_2','Rune of Dexterity Lv 2',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'.@r = getrefine(); if (.@r>=7) { bonus bDex,6; } if (.@r>=11) { bonus bDex,1; bonus bLongAtkRate,7; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29005,'Rune_of_Dexterity_Lv_3','Rune of Dexterity Lv 3',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'.@r = getrefine(); if (.@r>=7) { bonus bDex,7; } if (.@r>=12) { bonus bDex,1; bonus bLongAtkRate,8; } if (.@r>=13) { bonus bDex,1; bonus bLongAtkRate,2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29006,'Rune_of_Luck_Lv_1','Rune of Luck Lv 1',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'.@r = getrefine(); if (.@r>=7) { bonus bLuk,5; } if (.@r>=10) { bonus bCritAtkRate,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29007,'Rune_of_Luck_Lv_2','Rune of Luck Lv 2',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'.@r = getrefine(); if (.@r>=7) { bonus bLuk,6; } if (.@r>=11) { bonus bLuk,1; bonus bCritAtkRate,7; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29008,'Rune_of_Luck_Lv_3','Rune of Luck Lv 3',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'.@r = getrefine(); if (.@r>=7) { bonus bLuk,7; } if (.@r>=12) { bonus bLuk,1; bonus bCritAtkRate,8; } if (.@r>=13) { bonus bLuk,1; bonus bCritAtkRate,6; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29009,'Rune_of_Vitality_Lv_1','Rune of Vitality Lv 1',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'.@r = getrefine(); if (.@r>=7) { bonus bVit,5; } if (.@r>=10) { bonus bMaxHPrate,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29010,'Rune_of_Vitality_Lv_2','Rune of Vitality Lv 2',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'.@r = getrefine(); if (.@r>=7) { bonus bVit,6; } if (.@r>=11) { bonus bVit,1; bonus bMaxHPrate,7; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29011,'Rune_of_Vitality_Lv_3','Rune of Vitality Lv 3',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'.@r = getrefine(); if (.@r>=7) { bonus bVit,7; } if (.@r>=12) { bonus bVit,1; bonus bMaxHPrate,8; } if (.@r>=13) { bonus bVit,1; bonus bMaxHPrate,2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29013,'HPdrain3','HP Absorption 3',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bHPDrainRate,10,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29014,'STR3INT','STR+3 INT-3',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bStr,3; bonus bInt,-3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29015,'STR3DEX','STR+3 DEX-3',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bStr,3; bonus bDex,-3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29016,'INT3DEX','INT+3 DEX-3',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bInt,3; bonus bDex,-3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29017,'INT3VIT','INT+3 VIT-3',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bInt,3; bonus bVit,-3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29018,'DEX3VIT','DEX+3 VIT-3',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bDex,3; bonus bVit,-3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29019,'DEX3AGI','DEX+3 AGI-3',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bDex,3; bonus bAgi,-3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29020,'VIT3AGI','VIT+3 AGI-3',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bVit,3; bonus bAgi,-3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29021,'VIT3LUK','VIT+3 LUK-3',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bVit,3; bonus bLuk,-3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29022,'AGI3LUK','AGI+3 LUK-3',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bAgi,3; bonus bLuk,-3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29023,'AGI3STR','AGI+3 STR-3',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bAgi,3; bonus bStr,-3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29024,'LUK3STR','LUK+3 STR-3',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bLuk,3; bonus bStr,-3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29025,'LUK3INT','LUK+3 INT-3',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bLuk,3; bonus bInt,-3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29026,'Def20','DEF+20',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bDef,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29027,'EXP2','EXP+2%',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bExpAddClass,Class_All,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29028,'Atk1p_Top','ATK + 1%',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bAddClass,Class_All,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29029,'Atk1p_Bottom','ATK+1%(Lower)',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bAddClass,Class_All,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29030,'Matk1p_Top','MATK+1%',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMatkRate,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29031,'Matk1p_Bottom','MATK+1%(Lower)',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMatkRate,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29032,'SPdrain1_Top','SP Absorption 1',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bSPDrainRate,10,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29033,'Mdef4_Bottom','MDEF+4',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMdef,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29040,'Ghost_Effect','Ghost Effect',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'hateffect HAT_EF_C_GHOST_EFFECT,true;',NULL,'hateffect HAT_EF_C_GHOST_EFFECT,false;'); -REPLACE INTO `item_db_re` VALUES (29041,'Twinkle_Effect','Twinkle Effect',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'/* todo */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29046,'Greed','Greed',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'skill "BS_GREED",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29047,'Fatal0','Fatal',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29048,'Expert_Archer0','Expert Archer',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bLongAtkRate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29049,'HP100_','HP+100',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMaxHP,100; if (BaseLevel >= 120) { bonus bMaxHPrate,2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29050,'SP50_','SP+50',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMaxSP,50; if (BaseLevel >= 120) { bonus bMaxSPrate,2; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29051,'Detoxify','Detoxify',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'skill "TF_DETOXIFY",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29052,'Recovery','Recovery',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'skill "PR_STRECOVERY",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29053,'Skill_Delay1_Top','After Skill Delay1 Upper',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bDelayrate,-1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29054,'Skill_Delay1_Middle','After Skill Delay1 Middle',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bDelayrate,-1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29055,'Skill_Delay1_Bottom','After Skill Delay1 Lower',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bDelayrate,-1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29056,'FixedCasting05','Reduces Fixed Cast',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bFixedCast,-500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29057,'Kyrie','Kyrie',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'skill "PR_KYRIE",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29061,'Ambition1Lv','Mettle Lv. 1',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bAddClass,Class_All,3; bonus bHit,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29062,'Ambition2Lv','Mettle Lv. 2',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bAddClass,Class_All,6; bonus bHit,6;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29063,'Ambition3Lv','Mettle Lv. 3',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bAddClass,Class_All,9; bonus bHit,9;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29064,'Ambition4Lv','Mettle Lv. 4',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bAddClass,Class_All,12; bonus bHit,12;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29065,'Ambition5Lv','Mettle Lv. 5',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bAddClass,Class_All,15; bonus bHit,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29066,'Ambition6Lv','Mettle Lv. 6',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bAddClass,Class_All,18; bonus bHit,18;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29067,'Ambition7Lv','Mettle Lv. 7',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bAddClass,Class_All,21; bonus bHit,21;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29068,'Ambition8Lv','Mettle Lv. 8',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bAddClass,Class_All,24; bonus bHit,24;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29069,'Ambition9Lv','Mettle Lv. 9',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bAddClass,Class_All,27; bonus bHit,27;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29070,'Ambition10Lv','Mettle Lv. 10',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bAddClass,Class_All,33; bonus bHit,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29071,'Tab1Lv','Magic Essence Lv. 1',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMatkRate,3; bonus bFixedCast,-100;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29072,'Tab2Lv','Magic Essence Lv. 2',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMatkRate,6; bonus bFixedCast,-200;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29073,'Tab3Lv','Magic Essence Lv. 3',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMatkRate,9; bonus bFixedCast,-300;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29074,'Tab4Lv','Magic Essence Lv. 4',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMatkRate,12; bonus bFixedCast,-400;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29075,'Tab5Lv','Magic Essence Lv. 5',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMatkRate,15; bonus bFixedCast,-500;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29076,'Tab6Lv','Magic Essence Lv. 6',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMatkRate,18; bonus bFixedCast,-600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29077,'Tab7Lv','Magic Essence Lv. 7',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMatkRate,21; bonus bFixedCast,-700;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29078,'Tab8Lv','Magic Essence Lv. 8',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMatkRate,24; bonus bFixedCast,-800;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29079,'Tab9Lv','Magic Essence Lv. 9',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMatkRate,27; bonus bFixedCast,-900;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29080,'Tab10Lv','Magic Essence Lv. 10',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMatkRate,33; bonus bFixedCast,-1000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29081,'Expect1Lv','Acute Lv. 1',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,10; bonus bCritical,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29082,'Expect2Lv','Acute Lv. 2',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,20; bonus bCritical,6;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29083,'Expect3Lv','Acute Lv. 3',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,30; bonus bCritical,9;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29084,'Expect4Lv','Acute Lv. 4',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,40; bonus bCritical,12;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29085,'Expect5Lv','Acute Lv. 5',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,50; bonus bCritical,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29086,'Expect6Lv','Acute Lv. 6',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,60; bonus bCritical,18;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29087,'Expect7Lv','Acute Lv. 7',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,70; bonus bCritical,21;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29088,'Expect8Lv','Acute Lv. 8',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,80; bonus bCritical,24;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29089,'Expect9Lv','Acute Lv. 9',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,90; bonus bCritical,27;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29090,'Expect10Lv','Acute Lv. 10',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,110; bonus bCritical,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29091,'ArchLine1Lv','Master Archer Lv. 1',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bLongAtkRate,4; bonus bAspdRate,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29092,'ArchLine2Lv','Master Archer Lv. 2',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bLongAtkRate,8; bonus bAspdRate,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29093,'ArchLine3Lv','Master Archer Lv. 3',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bLongAtkRate,12; bonus bAspdRate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29094,'ArchLine4Lv','Master Archer Lv. 4',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bLongAtkRate,16; bonus bAspdRate,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29095,'ArchLine5Lv','Master Archer Lv. 5',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bLongAtkRate,20; bonus bAspdRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29096,'ArchLine6Lv','Master Archer Lv. 6',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bLongAtkRate,24; bonus bAspdRate,6;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29097,'ArchLine7Lv','Master Archer Lv. 7',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bLongAtkRate,28; bonus bAspdRate,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29098,'ArchLine8Lv','Master Archer Lv. 8',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bLongAtkRate,32; bonus bAspdRate,8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29099,'ArchLine9Lv','Master Archer Lv. 9',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bLongAtkRate,36; bonus bAspdRate,9;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29100,'ArchLine10Lv','Master Archer Lv. 10',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bLongAtkRate,44; bonus bAspdRate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29101,'Steel1Lv','Adamantine Lv. 1',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,5; bonus bDef,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29102,'Steel2Lv','Adamantine Lv. 2',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,10; bonus bDef,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29103,'Steel3Lv','Adamantine Lv. 3',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,15; bonus bDef,45;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29104,'Steel4Lv','Adamantine Lv. 4',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,20; bonus bDef,60;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29105,'Steel5Lv','Adamantine Lv. 5',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,25; bonus bDef,75;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29106,'Steel6Lv','Adamantine Lv. 6',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,30; bonus bDef,90;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29107,'Steel7Lv','Adamantine Lv. 7',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,35; bonus bDef,105;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29108,'Steel8Lv','Adamantine Lv. 8',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,40; bonus bDef,120;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29109,'Steel9Lv','Adamantine Lv. 9',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,45; bonus bDef,135;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29110,'Steel10Lv','Adamantine Lv. 10',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,55; bonus bDef,150;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29111,'Mercy1Lv','Affection Lv. 1',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bHealPower,5; bonus bMdef,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29112,'Mercy2Lv','Affection Lv. 2',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bHealPower,10; bonus bMdef,6;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29113,'Mercy3Lv','Affection Lv. 3',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bHealPower,15; bonus bMdef,9;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29114,'Mercy4Lv','Affection Lv. 4',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bHealPower,20; bonus bMdef,12;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29115,'Mercy5Lv','Affection Lv. 5',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bHealPower,25; bonus bMdef,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29116,'Mercy6Lv','Affection Lv. 6',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bHealPower,30; bonus bMdef,18;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29117,'Mercy7Lv','Affection Lv. 7',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bHealPower,35; bonus bMdef,21;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29118,'Mercy8Lv','Affection Lv. 8',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bHealPower,40; bonus bMdef,24;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29119,'Mercy9Lv','Affection Lv. 9',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bHealPower,45; bonus bMdef,27;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29120,'Mercy10Lv','Affection Lv. 10',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bHealPower,55; bonus bMdef,30;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29121,'Goddess_of_Justice_A','Goddess of Justice A',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bAtk,20; bonus bHit,2; bonus bMaxHP,300;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29122,'Goddess_of_Justice_S','Goddess of Justice S',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bAtk,40; bonus bHit,4; bonus bMaxHP,600;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29123,'Goddess_of_Mercy_A','Goddess of Mercy A',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMatk,20; bonus bHealPower,4; bonus bMaxSP,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29124,'Goddess_of_Mercy_S','Goddess of Mercy S',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMatk,40; bonus bHealPower,8; bonus bMaxSP,40;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29125,'Goddess_of_Insight_A','Goddess of Insight A',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bLongAtkRate,5; bonus bCritical,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29126,'Goddess_of_Insight_S','Goddess of Insight S',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bLongAtkRate,10; bonus bCritical,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29142,'Electric_Effect','Electric Effect',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'hateffect HAT_EF_ELECTRIC,true;',NULL,'hateffect HAT_EF_ELECTRIC,false;'); -REPLACE INTO `item_db_re` VALUES (29143,'Green_Floor_Effect','Green Flare Effect',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'hateffect HAT_EF_GREEN_FLOOR,true;',NULL,'hateffect HAT_EF_GREEN_FLOOR,false;'); -REPLACE INTO `item_db_re` VALUES (29144,'Shrink_Effect','Shrink Effect',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'hateffect HAT_EF_SHRINK,true;',NULL,'hateffect HAT_EF_SHRINK,false;'); -REPLACE INTO `item_db_re` VALUES (29145,'EXP2MIDDLE','Experience+2%',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bExpAddRace,RC_All,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29146,'Identify','Identify',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'skill "MC_IDENTIFY",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29147,'Resurrection','Resurrection',6,10,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'skill "ALL_RESURRECTION",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29148,'Leo_Stone','Leo Stone',6,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,64,NULL,NULL,NULL,NULL,'bonus bStr,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29149,'Pisces_Stone','Pisces Stone',6,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,64,NULL,NULL,NULL,NULL,'bonus bInt,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29150,'Capricorn_Stone','Capricorn Stone',6,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,64,NULL,NULL,NULL,NULL,'bonus bAgi,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29151,'Aquarius_Stone','Aquarius Stone',6,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,64,NULL,NULL,NULL,NULL,'bonus bVit,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29152,'Scorpio_Stone','Scorpio Stone',6,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,64,NULL,NULL,NULL,NULL,'bonus bDex,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29153,'Taurus_Stone','Taurus Stone',6,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,64,NULL,NULL,NULL,NULL,'bonus bLuk,1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29154,'FixedCasting03','Minor Fixed Cast Reduction',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bFixedCast,-300;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29155,'LexAeterna','Lex Aeterna',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus3 bAutoSpell,"PR_LEXAETERNA",1,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29156,'Casting_Top','Variable Cast Reduction Upper',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bVariableCastrate,-3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29157,'Casting_Middle','Variable Cast Reduction Middle',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bVariableCastrate,-3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29158,'Casting_Bottom','Variable Cast Reduction Lower',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bVariableCastrate,-3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29159,'EXP2TOP','Experience + 2%',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bExpAddRace,RC_All,2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29160,'BlueAura_Effect','Blue Aura Effect',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'/* todo */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29161,'Pink_Glow_Effect','Pink Glow Effect',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'/* todo */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29162,'Shadow_Effect','Shadow Effect',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'/* todo */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29166,'A-Tolerance','A-Tolerance',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus2 bSubClass,Class_All,1; .@r = getrefine(); bonus2 bSubRace,RC_DemiHuman,.@r/3; bonus2 bSubRace,RC_Formless,.@r/3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29167,'A-Hit','A-Hit',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bHit,20; .@r = getrefine(); if(.@r>=7){ bonus bHit,10; } if(.@r>=8){ bonus bHit,10; } if(.@r>=9){ bonus bHit,10; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29168,'A-Flee','A-Flee',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bFlee,20; .@r = getrefine(); if(.@r>=7){ bonus bFlee,10; } if(.@r>=8){ bonus bFlee,10; } if(.@r>=9){ bonus bFlee,10; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29169,'A-Mdef','A-Mdef',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMdef,2; .@r = getrefine(); if(.@r>=6){ bonus bMdef,4; } if(.@r>=8){ bonus bMdef,8; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29170,'S-Atk','S-Atk',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bBaseAtk,50; .@r = getrefine(); .@c = 100; .@t = 3000; if(.@r>=8){ .@t += 1000; } if(.@r>=9){ .@c += 100; .@t += 1000; } autobonus2 "{ bonus bBaseAtk,150; }",.@c,.@t;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29171,'S-Matk','S-Matk',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMatk,100; .@r = getrefine(); .@c = 100; .@t = 3000; if(.@r>=8){ .@t += 1000; } if(.@r>=9){ .@c += 100; .@t += 1000; } autobonus2 "{ bonus bMatk,150; }",.@c,.@t,BF_MAGIC;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29172,'S-Avoid','S-Avoid',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bFlee2,5; .@r = getrefine(); .@c = 100; .@t = 3000; if(.@r>=8){ .@t += 1000; } if(.@r>=9){ .@c += 100; .@t += 1000; } autobonus2 "{ bonus bFlee2,100; }",.@c,.@t;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29173,'S-MaxHP','S-MaxHP',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bMaxHP,2500; .@r = getrefine(); .@c = 100; .@t = 3000; if(.@r>=8){ .@t += 1000; } if(.@r>=9){ .@c += 100; .@t += 1000; } autobonus2 "{ bonus bMaxHP,7500; }",.@c,.@t;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29174,'S-Quick','S-Quick',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bVariableCastrate,-10; .@r = getrefine(); .@c = 100; .@t = 3000; if(.@r>=8){ .@t += 1000; } if(.@r>=9){ .@c += 100; .@t += 1000; } autobonus2 "{ bonus bVariableCastrate,-100; bonus bDelayrate,-100; }",.@c,.@t,BF_MAGIC;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29175,'S-Cri','S-Cri',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bCritical,10; .@r = getrefine(); .@c = 100; .@t = 3000; if(.@r>=8){ .@t += 1000; } if(.@r>=9){ .@c += 100; .@t += 1000; } autobonus2 "{ bonus bCritical,100; }",.@c,.@t;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29176,'Tenji','Tenji',6,10,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,64,NULL,NULL,NULL,NULL,'bonus2 bAddRace,RC_Brute,15; bonus2 bAddRace,RC_Plant,15; bonus2 bMagicAddRace,RC_Brute,15; bonus2 bMagicAddRace,RC_Plant,15; bonus2 bAddEle,Ele_Wind,15; bonus2 bAddEle,Ele_Earth,15; bonus2 bMagicAddEle,Ele_Wind,15; bonus2 bMagicAddEle,Ele_Earth,15; autobonus2 "{ bonus bVariableCastrate,-70;bonus bDelayrate,-70; bonus bIgnoreDefRace,RC_All; bonus bIgnoreMDefRace,RC_All; }",1,10000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29224,'WhiteBody_Effect','White Body Effect',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'hateffect HAT_EF_WHITEBODY,true;',NULL,'hateffect HAT_EF_WHITEBODY,false;'); -REPLACE INTO `item_db_re` VALUES (29225,'WaterField_Effect','Water Field Effect',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'hateffect HAT_EF_WATER_BELOW2,true;',NULL,'hateffect HAT_EF_WATER_BELOW2,false;'); -REPLACE INTO `item_db_re` VALUES (29226,'ExplodingWave_Effect','Crimson Wave Effect',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'/* todo */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29227,'Heal','Heal',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'skill "AL_HEAL",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29228,'Steal','Steal',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'skill "TF_STEAL",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29229,'Teleport','Teleport',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'skill "AL_TELEPORT",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29310,'Racing_RK_1','Racing(Rune Knight) 1Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29311,'Racing_RK_2','Racing(Rune Knight) 2Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29312,'Racing_RK_3','Racing(Rune Knight) 3Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29313,'Racing_RG_1','Racing(Royal Guard) 1Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29314,'Racing_RG_2','Racing(Royal Guard) 2Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29315,'Racing_RG_3','Racing(Royal Guard) 3Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29316,'Racing_MC_1','Racing(Mechanic) 1Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29317,'Racing_MC_2','Racing(Mechanic) 2Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29318,'Racing_MC_3','Racing(Mechanic) 3Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29319,'Racing_GN_1','Racing(Geneticist) 1Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29320,'Racing_GN_2','Racing(Geneticist) 2Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29321,'Racing_GN_3','Racing(Geneticist) 3Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29322,'Racing_GC_1','Racing(Guillotine Cross) 1Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29323,'Racing_GC_2','Racing(Guillotine Cross) 2Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29324,'Racing_GC_3','Racing(Guillotine Cross) 3Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29325,'Racing_SC_1','Racing(Shadow Chaser) 1Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29326,'Racing_SC_2','Racing(Shadow Chaser) 2Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29327,'Racing_SC_3','Racing(Shadow Chaser) 3Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29328,'Racing_WL_1','Racing(Warlock) 1Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29329,'Racing_WL_2','Racing(Warlock) 2Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29330,'Racing_WL_3','Racing(Warlock) 3Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29331,'Racing_SO_1','Racing(Sorcerer) 1Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29332,'Racing_SO_2','Racing(Sorcerer) 2Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29333,'Racing_SO_3','Racing(Sorcerer) 3Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29334,'Racing_AB_1','Racing(Archbishop) 1Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29335,'Racing_AB_2','Racing(Archbishop) 2Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29336,'Racing_AB_3','Racing(Archbishop) 3Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29337,'Racing_SR_1','Racing(Sura) 1Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29338,'Racing_SR_2','Racing(Sura) 2Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29339,'Racing_SR_3','Racing(Sura) 3Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29340,'Racing_RA_1','Racing(Ranger) 1Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29341,'Racing_RA_2','Racing(Ranger) 2Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29342,'Racing_RA_3','Racing(Ranger) 3Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29343,'Racing_WM_1','Racing(Wanderers & Minstrel) 1Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29344,'Racing_WM_2','Racing(Wanderers & Minstrel) 2Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29345,'Racing_WM_3','Racing(Wanderers & Minstrel) 3Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29346,'Racing_GS_1','Racing(Gunslinger) 1Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29347,'Racing_GS_2','Racing(Gunslinger) 2Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29348,'Racing_GS_3','Racing(Gunslinger) 3Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29349,'Racing_NJ_1','Racing(Ninja)1Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29350,'Racing_NJ_2','Racing(Ninja)2Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29351,'Racing_NJ_3','Racing(Ninja)3Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29352,'Racing_SN_1','Racing(Super Novice) 1Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29353,'Racing_SN_2','Racing(Super Novice) 2Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29354,'Racing_SN_3','Racing(Super Novice) 3Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29355,'Racing_SU_1','Racing(Summoner) 1Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29356,'Racing_SU_2','Racing(Summoner) 2Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29357,'Racing_SU_3','Racing(Summoner) 3Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29358,'Casting_Robe','Variable Casting Garment',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bVariableCastrate,-10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29359,'Fatal_Top','Fatal (Upper)',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29360,'Fatal_Bottom','Fatal (Lower)',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29361,'Fatal_Robe','Fatal (Garment)',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bCritAtkRate,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29362,'DoubleAttack','Double Attack',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'skill "TF_DOUBLE",3; bonus bDoubleRate,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29438,'Z-Knockback','Z-Knockback',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bNoKnockback;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29439,'Z-Immortal','Z-Immortal',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bUnbreakableHelm; /* fix me */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29440,'Z-Killgain','Z-Killgain',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bSPGainValue,2; .@r = getrefine(); if(.@r>=7){ bonus bSPGainValue,3; } if(.@r>=8){ bonus bSPGainValue,5; } if(.@r>=9){ bonus bSPGainValue,10; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29441,'Z-Reincarnation','Z-Reincarnation',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bRestartFullRecover;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29442,'Z-NoDispell','Z-NoDispell',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bNoCastCancel2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29443,'Z-Clairvoyance','Z-Clairvoyance',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bIntravision;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29444,'Z-Cast_Fixed','Z-Cast Fixed',6,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'bonus bFixedCastrate,-50;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29579,'Racing_SG_1','Racing (Star Gladiator) 1Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29580,'Racing_SG_2','Racing (Star Gladiator) 2Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29581,'Racing_SG_3','Racing (Star Gladiator) 3Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29582,'Racing_SL_1','Racing (Soul Linker) 1Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29583,'Racing_SL_2','Racing (Soul Linker) 2Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29584,'Racing_SL_3','Racing (Soul Linker) 3Lv',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29594,'Seyren_Memory','Seyren\'s Memory',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29595,'Howard_Memory','Howard\'s Memory',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29596,'Eremes_Memory','Eremes\'s Memory',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29598,'Catherine_Memory','Catherine\'s Memory',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29599,'Margaretha_Memory','Margaretha\'s Memory',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29600,'Cecil_Memory','Cecil\'s Memory',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29601,'Randel_Memory','Randel\'s Memory',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29602,'Flamel_Memory','Flamel\'s Memory',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29603,'Gertie_Memory','Gertie\'s Memory',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29604,'Celia_Memory','Celia\'s Memory',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29605,'Chen_Memory','Chen\'s Memory',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29606,'Trentini_Memory','Trentini\'s Memory',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (29607,'Alphoccio_Memory','Alphoccio\'s Memory',6,20,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); -#=================================================================== -# New Cards -#=================================================================== -REPLACE INTO `item_db_re` VALUES (31006,'LoVA_Hades_Card','LoVA Hades Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus2 bSubRace,RC_Undead,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31007,'LoVA_Realization_Hades_Card','LoVA Realization Hades Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bDefEle,Ele_Undead; bonus2 bSubRace,RC_Undead,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31008,'LoVA_Lulu_Card','LoVA Lulu Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus2 bHPRegenRate,BaseLevel,10000; if(getrefine()>=7) { bonus bAtk,6*(readparam(bStr)/60); bonus bMaxHPrate,readparam(bStr)/60; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31009,'LoVA_Realization_Lulu_Card','LoVA Realization Lulu Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus2 bHPRegenRate,BaseLevel,10000; if(getrefine()>=7) { bonus bAtk,6*(readparam(bStr)/20); bonus bMaxHPrate,readparam(bStr)/20; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31010,'LoVA_Kima_Card','LoVA Kima Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus2 bSPRegenRate,BaseLevel/6,10000; if(getrefine()>=7) { bonus bMatk,6*(readparam(bInt)/30); bonus bMaxSPrate,readparam(bInt)/30; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31011,'LoVA_Realization_Kima_Card','LoVA Realization Kima Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus2 bSPRegenRate,BaseLevel/2,10000; if(getrefine()>=7) { bonus bMatk,6*(readparam(bInt)/10); bonus bMaxSPrate,readparam(bInt)/10; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31012,'LoVA_Bahamut_Card','LoVA Bahamut Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bSkillAtk,"RK_DRAGONBREATH",5; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",5; if(getrefine()>=7) { bonus bDelayrate,-1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31013,'LoVA_Realization_Bahamut_Card','LoVA Realization Bahamut Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus2 bSkillAtk,"RK_DRAGONBREATH",15; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",15; if(getrefine()>=7) { bonus bDelayrate,-3; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31014,'LoVA_Ragnarok_Card','LoVA Ragnarok Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bMdef,7; bonus bMaxHPrate,6; if(getrefine()>=7) { bonus2 bSkillAtk,"HW_GRAVITATION",9; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31015,'LoVA_Realization_Ragnarok_Card','LoVA Realization Ragnarok Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,NULL,NULL,'bonus bMdef,10; bonus bMaxHPrate,10; if(getrefine()>=7) { bonus2 bSkillAtk,"HW_GRAVITATION",769; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31016,'Decorated_Evil_Tree_Card','Decorated Evil Tree Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16,NULL,NULL,NULL,NULL,'bonus bMaxHP,1000; bonus bMaxSP,150; bonus bFlee,-25;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31017,'Vicious_Cookie_Card','Vicious Cookie Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'.@r = getrefine(); bonus2 bAddClass,Class_All,1+.@r; bonus bMatkRate,1+.@r; bonus bMaxHPrate,-(2+(.@r*2));',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31018,'Evil_Dwelling_Box_Card','Evil Dwelling Box Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bMaxHP,-1225; bonus3 bAddEff,Eff_Curse,5000,ATF_MAGIC;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31019,'Creepy_Demon_Card','Creepy Demon Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,-13; bonus3 bAddEffWhenHit,Eff_Curse,4000,ATF_MAGIC;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31020,'Malicious_Baby_Ghost_Card','Malicious Baby Ghost Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,136,NULL,NULL,NULL,NULL,'bonus bMaxHPrate,-13; bonus3 bAddEffWhenHit,Eff_Curse,4000,ATF_WEAPON;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31021,'Dancing_Marionette_Card','Dancing Marionette Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bAspdRate,10; bonus2 bAddClass,Class_All,-3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31022,'Abandoned_Teddy_Bear_Card','Abandoned Teddy Bear Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,64,NULL,NULL,NULL,NULL,'bonus bMaxSPRate,20; bonus2 bAddEff2,Eff_Curse,20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31023,'Celine_Kimi_Card','Celine Kimi Card',6,20,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,NULL,NULL,'bonus bMatkRate,10; bonus5 bAutoSpell,"NPC_CRITICALWOUND",3,5+(10*(getrefine()/3)),BF_MAGIC,1;',NULL,NULL); -#=================================================================== -# More Costumes -#=================================================================== -REPLACE INTO `item_db_re` VALUES (31027,'C_Pretty_Bear','Costume Pretty Bear',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1480,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31028,'C_Black_Cat_Hood','Costume Black Cat Hood',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1481,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31029,'C_Pig_Nose','Costume Pig Nose',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1482,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31030,'C_Tiger_Face','Costume Tiger Face',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,7168,NULL,'1',0,483,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31031,'C_Tare_Pope_Casual','Costume Drooping Pope Casual',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1483,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31032,'C_Tare_Luwmin','Costume: Sailing Lumin',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1484,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31033,'C_BelieversCap','Costume Believer\'s Mask',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,7168,NULL,'1',0,1485,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31034,'C_Pirates_Hood','Costume Pirates Hood',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,592,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31035,'C_Bankruptcy_Of_Heart','Costume Bankruptcy of Heart',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,107,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31036,'C_Satto_Hat','Costume Used Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,227,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31037,'C_Beret','Costume Beret',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,226,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31038,'C_Cheks_Bandana','Costume Cheks Bandana',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1174,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31039,'C_Crown_of_Old_King_Red','Costume Crown of Old King Red',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1491,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31040,'C_Magical_Feather','Costume Magical Feather',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1279,'hateffect(HAT_EF_MAGICAL_FEATHER,true);',NULL,'hateffect(HAT_EF_MAGICAL_FEATHER,false);'); -REPLACE INTO `item_db_re` VALUES (31041,'C_Cat_Lace_Hairband','Costume Cat Lace Hairband',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,816,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31042,'C_Survival_Circlet','Costume Survival Circlet',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1220,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31043,'C_Ribbon_White','Costume Ribbon White',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,248,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31044,'C_Drooping_Kitty_Pink','Costume Drooping Kitty Pink',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,276,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31045,'C_Blue_Rear_Ribbon','Costume Blue Rear Ribbon',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1492,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31046,'C_White_Rose_Princess','Costume White Rose Princess',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1493,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31047,'C_First_Love_Cheek','Costume First Love Cheek',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1494,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31048,'C_White_Lily_Black_Ribbon','Costume White Lily Black Ribbon',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1495,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31049,'C_Marin_Hat','Costume Marin Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,948,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31050,'C_Golden_Poring_Hat','Costume Golden Poring Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1236,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31051,'C_Poring_Sun_Visor','Costume Poring Sun Visor',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1496,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31052,'C_Alchemist_Mask','Costume Alchemist Mask',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,7168,NULL,'1',0,1497,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31053,'C_Drooping_Eddga','Costume Drooping Eddga',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,495,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31054,'C_Sting_Hat','Costume Sting Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,504,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31055,'C_Poring_Soap_Pipe','Costume Poring Soap Pipe',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1499,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31056,'C_Furious_Wave','Costume Furious Wave',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,0,'hateffect(HAT_EF_DOUBLEGUMGANG,true); /* Need to confirm this */',NULL,'hateffect(HAT_EF_DOUBLEGUMGANG,false);'); -REPLACE INTO `item_db_re` VALUES (31057,'C_Eremes_Scarf_Black','Costume: Eremes\' Scarf (Black)',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1501,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31058,'C_Gelato_Hat','Costume Gelato Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,777,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31059,'C_Sailor_Hat','Costume Sailor Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,798,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31060,'C_Starfish_Headband','Costume Starfish Headband',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,793,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31061,'C_Nipper_Hairpin','Costume Nipper Hairpin',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,470,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31062,'C_Eleanor_Wig','Costume Eleanor Wig',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1502,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31063,'C_Hair_Bun_BU','Costume Hair in a Bun(Blue)',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1503,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31064,'C_Hair_Bun_RD','Costume Hair in a Bun(Red)',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1504,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31065,'C_Hair_Bun_YL','Costume Hair in a Bun(Yellow)',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1505,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31066,'C_Hair_Bun_GN','Costume Hair in a Bun(Green)',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1506,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31067,'C_Hair_Bun_BL','Costume Hair in a Bun(Black)',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1507,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31068,'C_Hair_Bun_WH','Costume Hair in a Bun(White)',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1508,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31069,'C_Hair_Bun_OM','Costume Hair in a Bun(Brown)',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1509,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31070,'C_Hair_Bun_PP','Costume Hair in a Bun(Purple)',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1510,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31071,'C_Roll_Twin_BU','Costume Roll Twin(Blue)',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1511,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31072,'C_Roll_Twin_RD','Costume Roll Twin(Red)',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1512,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31073,'C_Roll_Twin_YL','Costume Roll Twin(Yellow)',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1513,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31074,'C_Roll_Twin_GN','Costume Roll Twin(Green)',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1514,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31075,'C_Roll_Twin_BL','Costume Roll Twin(Black)',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1515,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31076,'C_Roll_Twin_WH','Costume Roll Twin(White)',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1516,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31077,'C_Roll_Twin_OM','Costume Roll Twin(Brown)',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1517,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31078,'C_Roll_Twin_PP','Costume Roll Twin(Purple)',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1518,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31079,'C_Long_Pony_BU','Costume Long Pony(Blue)',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1519,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31080,'C_Long_Pony_RD','Costume Long Pony(Red)',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1520,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31081,'C_Long_Pony_YL','Costume Long Pony(Yellow)',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1521,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31082,'C_Long_Pony_GN','Costume Long Pony(Green)',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1522,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31083,'C_Long_Pony_BL','Costume Long Pony(Black)',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1523,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31084,'C_Long_Pony_WH','Costume Long Pony(White)',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1524,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31085,'C_Long_Pony_OM','Costume Long Pony(Brown)',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1525,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31086,'C_Long_Pony_PP','Costume Long Pony(Purple)',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1526,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31087,'C_Dwarf_Beard','Costume Dwarf Beard',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1349,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31088,'C_Mad_Hatter','Costume Mad Hatter',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,5120,NULL,'1',0,1421,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31089,'C_Exploding_Crimson_Flame','Costume Exploding Crimson Flame',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1500,'hateffect(HAT_EF_BAKURETSU_HADOU,true); /* Need to confirm this */',NULL,'hateffect(HAT_EF_BAKURETSU_HADOU,false);'); -REPLACE INTO `item_db_re` VALUES (31090,'C_Angelring_Hat','Costume Angelring Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,348,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31091,'C_Show_Me_The_Zeny','Costume Show Me The Zeny',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1528,'hateffect(HAT_EF_GOLD_SHOWER,true);',NULL,'hateffect(HAT_EF_GOLD_SHOWER,false);'); -REPLACE INTO `item_db_re` VALUES (31092,'C_Rabbit_Ribbon_Hat','Costume Bunny Ribbon Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,845,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31093,'C_Under_Lamp','Costume Under Lamp',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1531,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31094,'C_Dice_Hat','Costume Dice Hairband',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,494,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31095,'C_JP_EV01','Costume Mythical Baphomet Horns',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1532,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31096,'C_JP_EV02','Costume Dog Ears of Bau Alma',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1533,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31097,'C_JP_EV03','Costume Bunny Ears of Minnie Doe Alma',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1534,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31098,'C_JP_EV04','Costume Fox Ears of Tamamo Loa',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1535,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31099,'C_JP_EV05','Costume Headdress of Ontama Aria',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1536,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31100,'C_JP_EV06','Costume Hat of Dumpty Alma',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1537,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31101,'C_JP_EV07','Costume Taini Hat Blue',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1538,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31102,'C_JP_EV08','Costume Taini Hat Orange',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1539,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31103,'C_JP_EV09','Costume Taini Hat Green',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1540,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31104,'C_Taini_Hat','Costume Taini Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,722,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31105,'C_RO_Celebration_Hat','Costume RO Celebration Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1541,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31106,'C_Eyepatch_of_Peace','Costume Eyepatch of Peace',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,697,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31107,'C_Eyepatch_of_Prosperity','Costume Eyepatch of Prosperity',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,698,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31113,'C_Doctor_Headband','Costume Doctor headband',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,60,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31114,'C_Theater_Prop','Costume Theater Prop',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,80,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31117,'C_Hoplite_Helmet','Costume Hoplite Helmet',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,7168,NULL,'1',0,660,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31118,'C_Assassin_Skull_Mask','Costume Scratch Mask',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,6144,NULL,'1',0,984,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31119,'C_Blue_Magicianhat','Costume Magician Hat Blue',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,285,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31120,'C_Vampire_Familiar','Costume Vampire Familiar',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1548,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31121,'C_Stall_Of_Bat','Costume Stall Of Bat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1549,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31122,'C_Bloody_Stop_Bandage','Costume Bloody Stop Bandage',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1550,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31123,'C_Ghostring_Tall_Hat','Costume Ghostring Tall Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1551,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31124,'C_Ribbon_Chef_Hat','Costume Ribbon Chief Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,785,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31125,'C_QueenAnzRevenge','Costume Queen Anne\'s Revenge',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1360,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31126,'C_Nestea_Hat','Costume Nestea Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,756,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31127,'C_Flag_Cap','Costume Flag Cap',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,482,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31128,'C_Bride_Mask','Costume Bride Mask',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,223,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31129,'C_Munchs_Scream','Costume Scratch Mask',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,6144,NULL,'1',0,75,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31130,'C_Indian_Hairband','Costume Indian Hairband',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,96,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31131,'C_Monk_Hat','Costume Monk Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,35,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31132,'C_Christmas_Wreath','Costume Christmas Wreath',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1554,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31133,'C_Gambler_Seal','Costume Gambler Seal',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1202,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31134,'C_Happy_Parrot_J','Costume Talkactive Parrot',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1116,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31135,'C_Mini_Crown1','Costume Luxury Mini Crown',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,707,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31136,'C_Clock_Casket','Costume Clock Casket',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1555,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31137,'C_Blue_Rose_Ornament','Costume Blue Rose Ornament',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1556,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31138,'C_Piamette_Red_Hood','Costume Piamette\'s Red Hood',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1557,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31139,'C_White_Rabbit_Ear','Costume White Rabbit Ears',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1558,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31140,'C_Cowboy_Hat_','Costume Black Cowboy Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1569,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31141,'C_Rose_Corsage_','Costume Cactus Flower Corsage',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1570,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31142,'C_Time_Prison','Costume Prison of Time',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1309,NULL,'sc_start SC_TIME_ACCESSORY,INFINITE_TICK,0;','sc_end SC_TIME_ACCESSORY;'); -REPLACE INTO `item_db_re` VALUES (31144,'C_Indi_Feather_Band','Costume Indian Feather Headband',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,809,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31145,'C_AliceFriesinger_Hat_69','Costume AliceFriesinger Hat 69',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1249,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31146,'C_KarduiEar','Costume Kardui Ears',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1357,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31147,'C_Tare_Domovoi','Costume Drooping Domovoi',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,781,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31148,'C_Tare_W_Doll','Costume Drooping W Doll',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,359,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31149,'C_Nydhog_Wig','Costume Nydhoggur Wig',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1563,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31150,'C_Shalosh_Head_Dress','Costume Shalosh Headdress',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1564,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31151,'C_Chasher_Ear','Costume Cheshire\'s Cat Ears',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1565,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31152,'C_Piamette_BowTie_Red','Costume Piamette\'s Red Bow Tie',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1566,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31153,'C_Aniv_Star_Hat2','Costume Cactus Flower Corsage',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1567,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31154,'C_Cap','C Cap',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,14,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31158,'C_Squirrel_Ear_Hat','Costume Squirrel Ear Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1486,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31160,'C_RuneHelm','Costume Rune Helm',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1361,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31161,'C_Tiger_Mask','Costume Tiger Mask',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,3072,NULL,'1',0,181,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31162,'C_Shaving_Foam','Costume Shaving Foam',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1129,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31163,'C_Goat_Hat','Costume Sheep Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,205,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31164,'C_Brown_Stall','Costume Brown Stole',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1572,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31165,'C_Piggyback','Costume Piggyback',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1574,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31166,'C_Teddy_Bear_Hood','Costume Teddy Bear Hood',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1571,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31167,'C_Lunatic_Hanging_Ear_BL','Costume Hanging Black Lunatic Ears',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1575,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31168,'C_Mouton_Life_BL','Costume Blue Mouton Life',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1573,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31169,'C_Hat_Of_Outlaw','Costume Hilarious Bandit Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,486,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31170,'C_Wind_Wings','Costume Wings of Wind',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,493,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31171,'C_Nekomimi','Costume Nekomimi',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,182,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31172,'C_Roast_Memory','Costume Roast Memory',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,7168,NULL,'1',0,1576,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31173,'C_Oyster_Parakeet','Costume Oyster Parakeet',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,419,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31174,'C_Suspicious_Bread_Bag','C Suspicious Bread Bag',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,429,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31175,'C_Strawberry_Hat','Costume Strawberry Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,755,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31176,'C_Looking','C Looking',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1577,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31177,'C_Tail_Hat','C Tail Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1578,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31178,'C_Flame_Muffler','C Fire Muffler',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1579,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31179,'C_Wolf_Masquerade','C Wolf Masquerade',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1580,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31180,'C_Shura_King_Pledge','C King Sura Headband',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1581,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31181,'C_Necklace_Rosary','Costume Necklace Rosary',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1471,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31182,'C_Side_Cap','Costume Side Cap',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,529,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31183,'C_Fallen_Angel_Blessing','Costume Blessing of Fallen Angel',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1250,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31184,'C_Hawkeye','Costume Hawkeye',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,609,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31185,'C_Engineer_Cap','Costume Engineer Cap',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,608,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31186,'C_Black_Cat','Costume Black Cat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1582,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31187,'C_War_Princess_Ribbon','Costume War Princess Ribbon',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1583,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31188,'C_Mono_Gothic_Bonnet','Costume Mono Gothic Bonnet',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1584,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31189,'C_Cat_Ears_Cape_Red','Costume Red Cat Ears Cape',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1591,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31190,'C_Angel_Mini_Silk_Hat_B','Costume Black Angel Mini Silk Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1586,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31191,'C_Whikebain_Ears_Gold','Vibrant Cat Ears',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1588,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31192,'C_Bluecat_Ear','Blue Cat Ears',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1589,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31193,'C_Tare_Ahat','Costume Drooping Ahat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1590,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31194,'C_Spinning_Propeller','Costume Spinning Propeller',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,270,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31195,'C_Choco_Minihat','Costume Mini Chocolate Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1592,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31196,'C_JP_EV12','C Drooping Chuni Penguin',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1596,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31197,'C_Egg_Crispinette','Costume Egg Crispinette',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1598,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31198,'C_Octopus_Hat','C Octopus Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,538,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31199,'C_Weird_Beard','C Weird Beard',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,21,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31200,'C_Wrapping_Ribbon','C Wrapping Ribbon',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1599,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31201,'C_Royal_Rabbit_Crown','C Royal Rabbit Crown',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1600,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31202,'C_Dog_Officer','C Dog Officer',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1601,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31203,'C_Charcoal_Stove','C Charcoal Stove',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1602,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31204,'C_Drooping_White_Cat','C Drooping White Cat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,378,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31205,'C_Large_Orc_Hero_Helm','C Large Orc Hero Helm',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,3072,NULL,'1',0,381,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31206,'C_Rune_Hairband','C Rune Hairband',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,3072,NULL,'1',0,564,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31207,'C_Dokkebi_Mask','C Dokkebi Mask',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,6144,NULL,'1',0,689,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31208,'C_Straight_Long_YL','C Straight_Long Yellow',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1603,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31209,'C_Straight_Long_WH','C Straight Long White',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1604,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31210,'C_Side_Pigtail_BU','C Side Pigtail Blue',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1605,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31211,'C_Side_Pigtail_RD','C Side Pigtail Red',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1606,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31212,'C_Side_Pigtail_YL','C Side Pigtail Yellow',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1607,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31213,'C_Side_Pigtail_GN','C Side Pigtail Green',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1608,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31214,'C_Side_Pigtail_BL','C Side Pigtail Black',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1609,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31215,'C_Side_Pigtail_WH','C Side Pigtail White',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1610,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31216,'C_Side_Pigtail_OM','C Side Pigtail Brown',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1611,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31217,'C_Side_Pigtail_PP','C Side Pigtail Purple',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1612,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31218,'C_Low_Pony_BU','C Low Pony Blue',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1613,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31219,'C_Low_Pony_RD','C Low Pony Red',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1614,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31220,'C_Low_Pony_YL','C Low Pony Yellow',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1615,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31221,'C_Low_Pony_GN','C Low Pony Green',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1616,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31222,'C_Low_Pony_BL','C Low Pony Black',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1617,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31223,'C_Low_Pony_WH','C Low Pony White',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1618,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31224,'C_Low_Pony_OM','C Low Pony Brown',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1619,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31225,'C_Low_Pony_PP','C Low Pony Purple',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1620,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31226,'C_Long_Twin_BU','C Long Twin Blue',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1621,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31227,'C_Long_Twin_RD','C Long Twin Red',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1622,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31228,'C_Long_Twin_YL','C Long Twin Yellow',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1623,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31229,'C_Long_Twin_GN','C Long Twin Yellow',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1624,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31230,'C_Long_Twin_BL','C Long Twin Yellow',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1625,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31231,'C_Long_Twin_WH','C Long Twin Yellow',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1626,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31232,'C_Long_Twin_OM','C Long Twin Yellow',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1627,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31233,'C_Long_Twin_PP','C Long Twin Yellow',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1628,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31234,'C_Persica','C Persica',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,659,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31235,'C_Large_Ribbon_Muffler_Mid','C Large Ribbon Muffler Mid',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1312,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31236,'C_Vicious_Mind_Aura_Mid','C Vicious Mind Aura Mid',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1267,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31237,'C_Pale_Yellow_Ribbon_Lower','C Pale Yellow Ribbon Lower',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1474,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31238,'C_True_Love_Upper','C True Love Upper',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,489,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31239,'C_Love_Rabbit_Hood_Upper','C Love Rabbit Hood Upper',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,549,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31240,'C_Whisper_Mask_','C Whisper Mask Upper',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,321,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31241,'C_Burning_Sun_Lower','C Burning Sun Lower',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,654,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31242,'C_Anubis_Helm_','C Anubis Hat Upper',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,485,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31243,'C_Tongue_Mask_Mid','C Tongue Mask Mid',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,253,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31244,'C_Skymet_','C Skymet Upper',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,868,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31245,'C_Cherry','C Cherry',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,602,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31246,'C_Humming_Bird','C Humming Bird',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,702,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31247,'C_Hippo_Hat','C Hippo Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,859,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31248,'C_Isabella_Red_Ears','C Isabella Red Ears',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1030,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31249,'C_Rabbit_Hopping','C Hopping Rabbit',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1635,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31250,'C_Wonderful_Beast_Ear','C Wonderful Beast Ears',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1636,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31251,'C_Cat_Mouth','C Cats Mouth',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1637,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31252,'C_Cat_Ear_Hat_White','C White Cat Ears Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1638,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31253,'C_Rinzu_Helmet','C Rinzu Helmet',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,548,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31254,'C_Red_Hare_Hat','C Red Hare Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,7168,NULL,'1',0,1631,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31255,'C_Sweet_Helmet','C Sweet Helmet',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,3072,NULL,'1',0,1374,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31256,'C_Jaguar_Mask','C Jaguar Mask',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,6144,NULL,'1',0,530,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31260,'C_Observer_J','C Observer',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1639,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31261,'C_Soda_in_Mouth','C Soda in Mouth',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1643,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31262,'C_Disposable_3D_Glasses','C Disposable 3D Glasses',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,661,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31263,'C_Disposable_Popcorn_Hat','C Disposable Popcorn Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,415,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31264,'C_Wings_of_Protector_Lower','C Wings of Protector Lower',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,990,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31265,'C_Straight_Pony_Blue_Mid','C Straight Pony Blue Mid',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1394,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31266,'C_Straight_Pony_Red_Mid','C Straight Pony Red Mid',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1392,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31267,'C_Straight_Pony_Yellow_Mid','C Straight Pony Yellow Mid',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1389,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31268,'C_Straight_Pony_Green_Mid','C Straight_Pony Green Mid',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1390,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31269,'C_Straight_Pony_Black_Mid','C Straight Pony Black Mid',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1371,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31270,'C_Straight_Pony_White_Mid','C Straight Pony White Mid',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1395,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31271,'C_Straight_Pony_Crimson_Mid','C Straight Pony Crimson Mid',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1393,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31272,'C_Straight_Pony_Purple_Mid','C Straight Pony Purple Mid',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1391,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31273,'C_Cowlick_Blue_Mid','C Cowlick Blue Mid',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1387,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31274,'C_Cowlick_Red_Mid','C Cowlick Red Mid',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1385,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31275,'C_Cowlick_Yellow_Mid','C Cowlick Yellow Mid',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1382,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31276,'C_Cowlick_Green_Mid','C Cowlick Green Mid',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1383,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31277,'C_Cowlick_Black_Mid','C Cowlick Black Mid',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1372,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31278,'C_Cowlick_White_Mid','C Cowlick White Mid',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1388,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31279,'C_Cowlick_Crimson_Mid','C Cowlick Crimson Mid',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1386,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31280,'C_Cowlick_Purple_Mid','C Cowlick Purple Mid',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1384,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31281,'C_Loose_Wave_Twin_Blue_Mid','C Loose Wave Twin Blue Mid',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1401,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31282,'C_Loose_Wave_Twin_Red_Mid','C Loose Wave Twin Red Mid',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1399,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31283,'C_Loose_Wave_Twin_Yellow_Mid','C Loose Wave Twin Yellow Mid',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1396,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31284,'C_Loose_Wave_Twin_Green_Mid','C Loose Wave Twin Green Mid',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1397,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31285,'C_Loose_Wave_Twin_Black_Mid','C Loose Wave Twin Black Mid',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1373,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31286,'C_Loose_Wave_Twin_White_Mid','C Loose Wave Twin White Mid',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1402,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31287,'C_Loose_Wave_Twin_Crimson_Mid','C Loose Wave Twin Crimson Mid',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1400,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31288,'C_Loose_Wave_Twin_Purple_Mid','C Loose Wave Twin Purple Mid',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1398,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31289,'C_Black_Wing_Ears_Lower','C Black Wing Ears Lower',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1336,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31290,'C_Angels_Feather_Cap','C Angels Feather Cap',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,929,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31291,'C_Devils_Feather_Cap','C Devils Feather Cap',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,930,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31293,'C_Kings_Crown_Purple','C Crown of Ancient King Purple',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1651,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31294,'C_Jirant_Circlet_Red','C Jirant Circlet Red',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1652,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31295,'C_Red_Wing_Hat','C Red Wing Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,613,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31296,'C_Strawberry_in_Mouth','C Strawberry in Mouth',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,861,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31297,'C_Fruit_of_Love','C Fruit of Love',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,140,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31298,'C_Sepia_Parade_Hat','C Sepia Parade Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,682,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31299,'C_White_Rabbit','C White Rabbit',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1656,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31300,'C_Warm_Cat_Muffler','C Warm Cat Muffler',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1657,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31301,'C_Blinking_Eyes','C Blinking Eyes',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1658,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31302,'C_Black_Magenta_Ribbon','C Black Magenta Ribbon',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1659,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31303,'C_Black_Ramen_Hat_','C Black Ramen Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1338,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31304,'C_Summer_Fan','C Summer Fan',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1051,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31306,'C_Toucan_Hat','C Toucan Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,528,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31307,'C_Violet_Macaw','C Violet Macaw',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,656,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31308,'C_Protect_Feathers','C Protect Feathers',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1232,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31309,'C_Pure_White_Marching_Hat','C Pure White Marching Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1470,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31310,'C_666_Black_Elven_Ears','C 666 Black_ Elven Ears',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,498,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31311,'C_Dolor_Thanatos_Mask','C Dolor Thanatos Mask',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,6144,NULL,'1',0,666,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31312,'C_Hades_Helm','C Hades Helm',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,523,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31313,'C_FallenAngelWingEar','C Fallen Angel Wing Ears',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1662,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31314,'C_Ghost_Holiday','C Ghost Holiday',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1663,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31315,'C_Stall_Of_Angel','C Stall of Angel',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1664,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31316,'C_C_FlutterButterfly_BL','C Black Fluttering Butterfly',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1665,'hateffect(HAT_EF_C_FLUTTERBUTTERFLY_BL,true);',NULL,'hateffect(HAT_EF_C_FLUTTERBUTTERFLY_BL,false);'); -REPLACE INTO `item_db_re` VALUES (31317,'C_15th_Anniversary_Wing','C 15th Anniversary Wing',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1660,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31318,'C_Gerhard_Von_Devi','Costume Gerhard Von Devi',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1092,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31319,'C_Summer_Fan_','C Summer Fan',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1051,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31320,'C_Pinwheel_Hat','C Pinwheel Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,456,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31321,'C_Shining_Sunflower','C Shining Sunflower',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,681,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31322,'C_Candy_Hat','C Candy Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,853,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31323,'C_Yellow_Hunting_Cap','C Yellow Hunting Cap',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,484,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31325,'C_Queen_Scarabas_Helmet','C Queen Scarabas Helmet',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,5120,NULL,'1',0,1231,'hateffect(HAT_EF_QSCARABA,true);',NULL,'hateffect(HAT_EF_QSCARABA,false);'); -REPLACE INTO `item_db_re` VALUES (31326,'C_Rolf_Von_Ziege_666_II','C Rolf Von Ziege 666 II',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,946,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31327,'C_Stretched_Nose_M','C Wood Goblins Nose',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,737,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31328,'C_Faceworm_Eggshell','C Faceworm Eggshell',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1356,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31329,'C_Alice_Wig','Costume Alice Wig',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1673,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31330,'C_Fallen_Angel_Valletta','Costume Fallen Angel Valletta',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1674,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31331,'C_Chung_E_Shinyon_Cap','C Chung e Shinyon Cap',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1675,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31332,'Khalitzburg_KN_Helm_BL','C Black Khalitzburg Knight Helm',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1676,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31368,'C_Harvest_Festa_Hat','C Thanksgiving Memorial Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1677,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31369,'C_Straight_Long_WH_','Costume Straight Long White',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1604,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31370,'C_Straight_Long_YLK','Costume Straight Long Yellow',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1603,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31373,'C_Crown_of_Ancient_king','C Crown of Ancient king',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1412,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31372,'C_Binit_Doll_Hat','Costume: Binit Doll',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,358,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31374,'C_Explosion_gum','C Explosion gum',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1414,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31375,'C_Mystic_Eye','C Mystic Eye',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1490,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31376,'C_Ancient_Dragon_Coronet_Purple','C Ancient Dragon Coronet Purple',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1680,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31377,'C_Glastheim_Obeserver','C Glastheim Obeserver',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1041,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31378,'C_Catharina_Von_Brad_60th','C Catharina Von Brad 60th',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1527,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31379,'C_Wind-Up_Key','C Wind-Up Key',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1335,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31380,'C_Crow','C Crow',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1035,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31381,'C_Diabolic_Lapel','Costume Diabolic Lapel',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1681,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31382,'C_Cat_Ears_Punkish','Costume Cat Ears Punkish',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1682,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31383,'C_Volume_Low_Twin','Costume Volume Low Twin',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1683,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31384,'C_False_Ears','Costume False Ears',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1684,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31385,'C_Gothic_Pumpkin_Head','Costume Gothic Pumpkin Head',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1685,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31386,'C_Survive_Orb','C Survive Orb',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1488,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31387,'C_Jjakk','C Jjakk',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1687,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31389,'C_White_Bird_Rose','C White Bird Rose',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1688,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31390,'C_Let_It_Snow','C Let It Snow',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1690,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31391,'C_Floating_Stone_Of_Int','C Floating Stone of Sage',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1230,NULL,'sc_start SC_FSTONE,INFINITE_TICK,0;','sc_end SC_FSTONE;'); -REPLACE INTO `item_db_re` VALUES (31392,'C_Radio_Antenna','C Radio Antenna',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,347,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31393,'C_Vajra','C Vajra',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,983,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31394,'C_Magician_White_Hat','C Magician White Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,283,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31395,'C_Book_Of_Magic','C Book of Magic',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1691,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31396,'C_Sorcerer_Hood','C Sorcerer Hood',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1692,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31397,'C_Pope_Sitting_Head','C Sitting Pope',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1553,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31398,'C_Blinking_Thin_Eyes','C Blinking Thin Eyes',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1693,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31399,'C_Darkness_Veil','C Darkness Veil',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1694,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31400,'C_Ribbon','C Ribbon',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,17,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31401,'C_Nuns_Veil','C Nuns Veil',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,3072,NULL,'1',0,176,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31402,'C_Idun_Green_Apple','C Iduns Green Apple',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1698,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31403,'C_Wall','C Wall',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1699,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31404,'C_Poring_Traffic_Light','C Poring Traffic Light',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1700,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31405,'C_Eleanor_Wig_YL','C Eleanor Wig Yellow',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1701,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31406,'C_Nydhog_Wig_WH','C Nydhoggur Wig White',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1702,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31407,'C_Alice_Wig_PK','C Alice Wig Peach',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1703,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31408,'C_Ragnarok_Rush_Goat','C Ragnarok Rush Goat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,41,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31409,'C_Barrel_Helm','C Barrel Helm',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,7168,NULL,'1',0,1498,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31410,'C_GodsHelm','Costume God\'s Helm',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1678,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31411,'C_Leo_Diadem','C Leo Diadem',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,566,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31412,'C_Virgo_Crown','C Virgo Crown',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,573,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31413,'C_Taurus_Crown','C_ Taurus Crown',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,536,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31414,'C_Cancer_Diadem','C Cancer Diadem',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,560,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31415,'C_Wanderer_Sakkat','Costume Wanderer\'s Sakkat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,3072,NULL,'1',0,558,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31417,'C_Rice_Ball_Hat','C Rice Ball Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,556,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31418,'C_Leek_In_Mouth','C Green Onion in Mouth',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,824,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31420,'C_Shining_Santa_Poring','C Shining Santa Poring',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,961,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31430,'C_Seppl_Hat_TW','Costume: Seppl Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1023,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31431,'C_Curupira_Hat_TW','Costume: Curupira Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,974,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31432,'C_Luwmin_Ice','C Floating Ice',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1562,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31433,'C_Astro_Circle','Costume Astro Circle',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1073,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31434,'C_Cloud_Burst','C Cloud Burst',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,705,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31435,'C_Ghost_Magicians_Knit_Hat','C Ghost Magicians Knit Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,854,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31436,'C_Lazy_Cat','C Lazy Cat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,274,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31437,'C_Baby_Penguin','C Baby Penguin',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1705,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31438,'C_Fluffy_Angel_Cape','C Fluffy Angel Cape',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1706,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31439,'C_Fluffy_Heart_Earmuffs','C Fluffy Heart Earmuffs',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1707,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31440,'C_Snow_Bear_Food','C Snow Bear Hood',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1708,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31441,'C_Penguin_Cap_BU','C Penguin Cap Blue',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1709,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31442,'C_Smile_Mask_Middle','C Smile Mask Middle',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,65,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31443,'C_Munak_Hat_','C Munak Hat Upper',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,51,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31444,'C_Bongun_Hat_','C Bongun Hat Upper',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,139,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31446,'C_Toy_Syringe','C Toy Syringe',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,842,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31447,'C_Light_Moonlight_Hat','C Light Moonlight_Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,913,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31448,'C_Stings_Silk_Ribbon','C Stings Silk Ribbon',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1457,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31449,'C_Blue_Rose_Eyepatch','C Blue Rose Eyepatch',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1712,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31450,'C_Lolita_Two_Side_Up','C Lolita Two Side Up',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1713,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31451,'C_Blue_Frill_Ribbon','C Blue Frill Ribbon',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1714,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31452,'C_White_Cat','C White Cat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1715,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31453,'C_L_RibbonMuff_Black','C Large Ribbon Muffler Black',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1716,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31454,'C_Love_Feelings','C Love Feelings',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1717,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31455,'C_Enchanted_Dog','C Super Cute Dog',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,6144,NULL,'1',0,1718,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31456,'C_Baby_Leopard_Cat','C Baby Leopard Cat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1719,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31457,'C_Laughing_Wonderful_Wolf_Hat','C Laughing Wonderful Wolf Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1016,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31459,'C_Sweet_Bonbon','Costume Sweets Bonbon',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,853,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31460,'C_Blessing_Sky_Lantern','C Blessing Sky Lantern',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1720,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31463,'C_Flying_Drone','C Flying Drone',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1561,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31464,'C_Bloom_Afro','C Bloom Afro',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,837,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31465,'C_Robin_Egg_Minihat','C Robin Egg Minihat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1722,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31466,'C_Holy_Eggshell','C Holy Egg Shell',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,537,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31467,'C_Evil_Eggshell','C Evil Eggshell',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,999,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31468,'C_Stripe_Hat','C Stripe Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1728,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31469,'C_Eleanor_Wig_R','Rental C Eleanors Wig Lower',4,NULL,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1502,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31470,'C_Scroll_of_Tengu','C Scroll of Tengu',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1445,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31471,'C_Celestial_Flower','C Celestial Flower',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,438,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31472,'C_Fairy_Feathers','C Fairy Feathers',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1723,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31473,'C_Tipsy','C Tipsy',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1724,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31474,'C_Straight_Long_BL','C Straight Long Black',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1725,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31475,'C_Black_Fox_Ear_Ribbon','C Black Fox Ears Ribbon',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1726,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31476,'C_Cherry_Blossom_Hat_YL','C Yellow Cherry Blossom Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1727,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31477,'C_Straight_Long_BL_','Rental C Straight Long Black',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1725,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31478,'C_Eleanor_Wig_','C Eleanors Wig Lower',4,NULL,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1502,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31479,'C_ManyStars_TW','Costume Group of Stars',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1729,'hateffect(HAT_EF_MANYSTARS,true);',NULL,'hateffect(HAT_EF_MANYSTARS,false);'); -REPLACE INTO `item_db_re` VALUES (31481,'C_CatCoffeeCup_TW','C TriColor CatCup',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1731,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31483,'C_CatEarRibbon_TW','Costume Cat Ear Ribbon',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1733,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31484,'C_JP_EV13','C BearCompanion Female',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1736,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31485,'C_JP_EV14','C BearCompanion Male',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1737,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31486,'C_Divers_Goggles','C Diver\'s Goggles',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,10,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31487,'C_Eye_Bandage','C Eye Bandage',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,13,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31488,'C_MVP','Costume MVP',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1738,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31489,'C_Bouquet_Hat','Costume Bouquet Cap',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1739,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31490,'C_Poring_Muffler','C Poring Muffler',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1740,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31491,'C_Orange_Tabby_Cat','C Orange Tabby Cat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1741,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31492,'C_Cat_Ears_Cape_Brown','C Brown Cat Ears Cape',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1742,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31493,'C_Volume_Low_Twin_WH','C Volume Low Twin WH',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1743,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31494,'C_Volume_Low_Twin_Upper','C Volume Low Twin',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1683,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31495,'C_Lolita_Two_Side_Up_','C Lolita Two Side Up Upper',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1713,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31496,'C_Yggdrasil_Crown','C Yggdrasil Crown',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,746,NULL,NULL,NULL); -#REPLACE INTO `item_db_re` VALUES (31497,'C_Flowery_Vision','C Flowery Vision',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,0,'/* To Do : Confirm View ID */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31498,'C_Elephangel_TH','C Elephangel',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1745,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31499,'C_Easter_Egg_Shell','C Easter Egg Shell',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,537,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31504,'C_Starving_Fish_Hat','C Large Hungry Fish',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,844,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31505,'C_Falcon_Mask','C Falcon Mask',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,6144,NULL,'1',0,782,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31506,'C_Cat_Ear_Bandana','C Cat Ear Bandana',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1587,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31507,'C_Drooping_Cat_Yellow','C Drooping Cat Yellow',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,278,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31508,'C_Isabella_Blue_Ears','C Isabella Blue Ears',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1032,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31509,'C_Fawn_Ear','C Fawn Ears',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1751,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31510,'C_ShortHair_CatEar','C Short Haired Cat Ears',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1752,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31511,'C_LongHair_CatEar','C Long Haired Cat Ears',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1753,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31512,'C_Panda_Rabbit','C Panda Rabbit',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1754,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31513,'C_Black_Rabbit_Ears','C Black Rabbit Ears',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1755,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31516,'C_Mini_Melon','C Mini Melon',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1758,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31517,'C_JP_EV15','C Fluffy Cat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1762,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31518,'C_Popping_Popcorn_Hat','C Popping Popcorn Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1763,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31519,'C_Noodles_Hat','C Noodles Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1764,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31520,'C_Popcorn_Hat','C Popcorn Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,415,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31521,'C_Yuzu_Helmet','C Yuzu Helmet',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,791,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31522,'C_Orange_Helmet','C Orange Helmet',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,841,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31523,'C_Pomelo_Helmet','C Pomelo Helmet',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,924,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31524,'C_Bento_Hat','C Bento Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1766,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31526,'C_Shaman_Hat','C Shaman Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,596,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31527,'C_Radiant_Rainbow_Wings','C Radiant Rainbow Wings',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1186,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31528,'C_Star_Dust_Hairband','C Star Dust Hairband',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,831,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31529,'C_Happy_Rabbit_Ribbon','C Happy Rabbit Ribbon',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1769,NULL,NULL,NULL); -#REPLACE INTO `item_db_re` VALUES (31530,'C_Large_Dracula_Helm','C Large Dracula Helm',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,0,'/* To Do : Confirm View ID */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31531,'C_Lovely_Heart_Cap','C Lovely Heart Cap',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1770,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31533,'C_Warm_Cat_Muffler_BL','C Warm Cat Muffler Black',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1771,NULL,NULL,NULL); -#REPLACE INTO `item_db_re` VALUES (31536,'C_Crown_Of_Demon','C Crown Of Demon',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,0,'/* To Do : Confirm View ID */',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31538,'C_Lovely_Feeling','C Lovely Feeling',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1717,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31540,'C_GeminiS58_Eyes_Red','C GeminiS58 Eyes Red',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1654,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31541,'C_Drosera_Hairpin','C Drosera Hairpin',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,850,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31542,'C_Clay_Poring_Jar','C Clay Poring Jar',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1634,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31543,'C_Siorava_Hat','C Siorava Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1774,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31544,'C_Piamette_Curls','Costume Piamette Curls',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1775,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31545,'C_Eremes_Scarf_BU','C Eremes Scarf Blue',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1776,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31546,'C_Clock_Casket_RD','C Clock Casket Red',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1777,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31547,'C_Poporing_Mascot_Head','C Poporing Mascot Head',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1778,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31548,'C_Love_Cheek_Lower','C Love Cheeks Lower',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1318,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31549,'C_Little_Aquarium_Lower','C Little Aquarium Lower',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1363,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31550,'C_Tone_of_Gold_Mid','C Tone of Gold Mid',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1447,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31551,'C_Black_Glasses_Lower','C Black Glasses Lower',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,404,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31552,'C_Blue_Ribbon_Mid','C Blue Ribbon Mid',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,407,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31553,'C_Wings_Of_Victory_Mid','C Wings Of Victory Mid',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,365,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31554,'C_Bread_Bag_Mid','C Bread Bag Mid',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,412,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31555,'C_Hoplite_Helmet_Upper','C Hoplite Helmet Upper',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,660,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31556,'C_Moonlight_Flower_Hat_Upper','C Moonlight Flower Hat Upper',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,268,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31559,'C_Royalguard_Necklace','C Royal Guard Necklace',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1629,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31560,'C_Clergy_Nurse_Cap','C Nurse Cap of Clergy',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1359,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31561,'C_Heavenly_Dark_Flame','C Heavenly Dark Flame',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1008,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31562,'C_Zealotus Doll','C Zealotus Doll',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1376,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31563,'C_Blue_Eye_Shadow','C Blue Eye Shadow',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1020,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31564,'C_Variant_Veil','C Variant Veil',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1785,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31565,'C_Princess_Ribbon_Crown','C Princess Ribbon Crown',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1786,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31566,'C_Stole_Of_Dominion','C Stole Of Dominion',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1784,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31567,'C_Sheep_Horn','C Sheep Horns',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1783,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31568,'C_Floating_Ball_TW','Costume Floating Ball',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1760,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31569,'C_OpenAir_Headset','C Open Air Headset',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1655,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31570,'C_Cyclops_Visor','C Cyclops Visor',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,207,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31571,'C_Guardian_Processor','C Guardian Processor',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1552,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31572,'C_Mobile_Pursuit_System','C Mobile Pursuit System',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1788,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31573,'C_Mecha_Cat_Ears','C Mecha Cat Ears',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1789,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31574,'C_Cyber_Income','C Cyber Income',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1790,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31575,'C_Electro_Two_Sides_Up','C Electro Two Sides Up',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1791,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31576,'C_Moon_Rabbit_Hat','C Moon Rabbit Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,455,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31577,'C_Roast_Memory_Upper','C Roast Memory Upper',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1576,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31578,'C_Alchemist_Mask_ML','C Alchemist Mask',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,6144,NULL,'1',0,1497,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31579,'C_Love_Games','C I LOVE GAMES',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1306,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31580,'C_Autumn_Flavor','C Autumn Flavor',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1792,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31581,'C_Jack_Upper','C Jack Upper',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1415,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31582,'C_Jirant_Circlet','C Jirant Circlet',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1644,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31583,'C_Will_O_Wisp_Lower','C Will O Wisp Lower',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,880,NULL,'sc_start SC_STRANGELIGHTS,INFINITE_TICK,0;','sc_end SC_STRANGELIGHTS;'); -REPLACE INTO `item_db_re` VALUES (31586,'C_Poporing_Muffler','C Poporing Muffler',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1797,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31588,'C_Snow_Flower','C Snow Flower',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1799,'hateffect(HAT_EF_SNOWFLAKE_TIARA,true);',NULL,'hateffect(HAT_EF_SNOWFLAKE_TIARA,false);'); -REPLACE INTO `item_db_re` VALUES (31589,'C_Golden_Majestic_Goat','C Golden Majestic Goat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1800,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31590,'C_Designer_Brush','C Designer\'s Brush',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1291,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31593,'C_Yellow_Scarf','C Yellow Scarf',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1170,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31594,'C_Red_Pencil_In_Mouth','C Red Pencil in Mouth',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,931,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31595,'C_Book_File_Hat','C Book File Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,423,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31596,'C_Spider_Seduction','C Spider Seduction',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1711,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31597,'C_Golden_Fish_Hat','C Golden Fish Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1645,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31598,'C_Forest_Guide','C Forest Guide',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1802,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31599,'C_Medium_Wave','C Medium Wave',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1803,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31600,'C_Kishu_Inu','C Kishu Dog',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',0,1804,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31601,'C_Under_Rim_Glasses_Blue','C Under Rim Glasses Blue',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',NULL,1805,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31602,'C_Midgarts_Glory','C Rune-Midgarts Glory',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1807,'hateffect(HAT_EF_MIDGARTS_GLORY,true);',NULL,'hateffect(HAT_EF_MIDGARTS_GLORY,false);'); -REPLACE INTO `item_db_re` VALUES (31606,'C_Autumn_Headband','C Autumn Headband',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1119,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31607,'C_Cat_Ear_Witch_Hat','C Cat Ear Witch Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1808,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31608,'C_Magicstone_of_Grace','C Magic Stone of Grace',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,7168,NULL,'1',0,1420,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31609,'C_Noble_Mask','C Noble Mask',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,2048,NULL,'1',NULL,1409,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31610,'C_Yellow_Wizardry_Hat','C Yellow Wizardry Hat',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,286,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31611,'C_Dark_Snake_Lord_Stall','C Snake Lord Stole',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1810,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31612,'C_Large_Sorcerer_Crown','C Large Sorcerer Crown',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1811,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31614,'C_Fox','C Fox',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,2048,NULL,'1',0,1812,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31615,'Costume_Geisha_Make_Up','C Geisha Make Up',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,2048,NULL,'1',0,1813,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31616,'C_Sleep_Sheep_TW','C Sleep Sheep',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1814,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31624,'C_HeartOfCat_TW','C Heart of Cat',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,1822,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31625,'C_Protect_Cloth','C Protection Cloth',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1761,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31628,'C_Bogy_Cap_TW','C Dokebi',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,430,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31630,'Costume_Baphomet_Balloon','C Baphomet Balloon',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1746,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31631,'Costume_Drooping_Schmidt','C Drooping Schmidt',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,1859,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31632,'Costume_Drooping_Oscar','C Drooping Oscar',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,1860,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31633,'Costume_Drooping_Heinrich','C Drooping Heinrich',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,1861,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31634,'Costume_Reindeer_Hair_Band','C Reindeer Hair Band',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,836,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31635,'Costume_Flowing_Long_BD','C Flowing Long Blonde',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1832,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31636,'Costume_Flowing_Long_SV','C Flowing Long Silver',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1833,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31637,'Costume_Straight_Long_BU','C Straight Long Blue',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1834,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31638,'Costume_Straight_Long_RD','C Straight Long Red',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1835,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31639,'Costume_Straight_Long_BD','C Straight Long Blonde',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1836,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31640,'Costume_Straight_Long_GN','C Straight Long Green',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1837,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31641,'Costume_Straight_Long_JBL','C Straight Long Jet Black',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1838,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31642,'Costume_Straight_Long_LPP','C Straight Long Light Purple',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1839,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31643,'Costume_Straight_Long_OM','C Straight Long Brown',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1840,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31644,'Costume_Straight_Long_PP','C Straight Long Purple',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1841,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31645,'Costume_Side_Pony_BU','C Side Pony Blue',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1842,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31646,'Costume_Side_Pony_RD','C Side Pony Red',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1843,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31647,'Costume_Side_Pony_BD','C Side Pony Blonde',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1844,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31648,'Costume_Side_Pony_GN','C Side Pony Green',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1845,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31649,'Costume_Side_Pony_BL','C Side Pony Black',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1846,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31650,'Costume_Side_Pony_WH','C Side Pony White',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1847,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31651,'Costume_Side_Pony_OM','C Side Pony Brown',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1848,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31652,'Costume_Side_Pony_PP','C Side Pony Purple',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1849,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31653,'Costume_Chignon_BU','C Chignon Blue',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1850,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31654,'Costume_Chignon_RB','C Chignon Red',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1851,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31655,'Costume_Chignon_BD','C Chignon Blonde',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1852,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31656,'Costume_Chignon_GN','C Chignon Green',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1853,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31657,'Costume_Chignon_BL','C Chignon Black',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1854,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31658,'Costume_Chignon_WH','C Chignon White',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1855,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31659,'Costume_Chignon_OM','C Chignon Brown',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1856,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31660,'Costume_Chignon_PP','C Chignon Purple',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1857,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31664,'Costume_Desert_Wolf_Hat','C Drooping Ernst Von Wolf 11th',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,783,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31667,'Costume_Poring_Beret','C Poring Beret',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,1825,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31668,'Costume_Majorous_Horns','C Majorous Horns',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,888,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31669,'C_Adv_Whisper_Mask_M','C Evolved Whisper Mask Mid',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,2048,NULL,'1',0,458,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31670,'C_Miyabi_Long_Hair','C Miyabi Long Hair',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1864,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31671,'Costume_Twin_Cannon','C Twin Cannon',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1865,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31672,'Costume_Mermaid_Wig','C Mermaid Wig',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,1866,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31673,'C_Picnic_Basket','C Picnic Basket',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,2048,NULL,'1',0,1867,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31674,'Costume_Jitterbug_Cap','C Jitterbug Cap',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,1868,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31675,'Costume_Orange_Hat','C Orange Hat',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,620,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31676,'Costume_Orange_In_Mouth','C Orange In Mouth',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,814,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31682,'Costume_Drooping_Elven_Ears','C Drooping Elven Ears',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,2048,NULL,'1',0,875,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31684,'Costume_Kururinpa_Tails','C Kururinpa Tails',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1873,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31685,'Costume_Fluffy_Semi_Long','C Fluffy Semi Long',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1874,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31686,'Costume_Desert_Wolf_Baby','C Desert Wolf Baby',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,2048,NULL,'1',0,1875,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31687,'Costume_Alchemist_Bag','C Alchemist Bag',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,2048,NULL,'1',0,1876,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31688,'C_Poring_On_Shoulder','C Poring On Shoulder',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,2048,NULL,'1',0,1877,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31689,'C_Piamette_Curls_','C Piamette Curls',4,0,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1775,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31690,'Costume_Flame_Bird','C Flame Bird',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,832,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31691,'C_Bell_Pigeon_Low','Costume Bell of Pigeon Lower',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,4096,NULL,'1',0,1034,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31692,'Costume_Dragon_Emperor_Wings','C Dragon Emperor Wings',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,2048,NULL,'1',0,1413,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31693,'C_LunaticMuffler','C Lunatic Muffler',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1732,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31695,'Costume_Stem_In_Mouth','C Stem in Mouth',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,848,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31696,'Costume_Shark_Hat','C Shark Hat',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,503,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31697,'Costume_Bird_Nest','C Bird Nest',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,201,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31698,'C_Pigtail_Red_Hood','C Red Riding Hood',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1879,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31699,'C_Smiling_Eyes','C Smiling Eyes',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,2048,NULL,'1',0,1880,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31702,'Costume_Moon_Cat_Hat','C Moon Cat Hat',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,1308,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31703,'Costume_Valentine_Hat','C Love Valentine\'s Hat',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,397,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31704,'Costume_Sweet_Valentine_Out','C Sweet Valentine Out',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,865,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31705,'Costume_Red_White_Hat','C Red Hat',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,469,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31706,'Costume_Trident_Helmet','C Trident Helm',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,2048,NULL,'1',0,810,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31707,'Costume_Nine_Tail_Fox_Hair','C Nine Tail Fox Hair',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,1884,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31708,'Costume_Gothic_Skull_Ribbon','C Gothic Skull Ribbon',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,1885,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31709,'Costume_Golden_Violet','C Golden Violet',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,1886,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31710,'Costume_Lucky_Hat','C Lucky Hat',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,31710,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31711,'Costume_Jewel_Crown','C Jewel Crown',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,88,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31712,'Costume_Oxygen_Mask','C Oxygen Mask',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,90,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31713,'Costume_Mystical_Fruit_Hat','Costume Mystical Fruit Hat',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,134,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31714,'Costume_Indian_Headband','Costume Indian Headband',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,155,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31715,'Costume_Orange_Rabbit','C Orange Rabbit',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,2048,NULL,'1',0,1887,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31716,'Costume_Twinkling_Red_Eyes','Costume Twinkling Red Eyes',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,2048,NULL,'1',0,1888,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31717,'Costume_Medium_Wave_BD','C Medium Wave Blonde',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1889,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31718,'Costume_Sky_Lantern_Mid','C Blessing Sky Lantern Mid',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,2048,NULL,'1',0,1720,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31719,'Costume_Master_Of_Flames','C Master Of Flames',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1890,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31720,'Costume_Vesper_Hat','C Vesper Hat',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,1827,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31721,'Costume_Resonating_Drums','C Resonating Drums',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,1823,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31723,'Costume_TW_Rice_Ball','C Tw Rice Ball',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,892,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31724,'Costume_TW_Bulgogi','C Tw Bulgogi',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,1773,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31729,'Costume_Miracle_Plant','C Miracle Plant',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1893,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31730,'Costume_Volume_Low_Twin_SK','C Volume Low Twin Sakura',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1894,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31731,'Costume_Sweets_Party','C Sweets Party',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1896,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31732,'Costume_Bear_Balloon','C Bear Balloon',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1734,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31733,'Costume_Phantom_Masquerade','C Phantom Masquerade',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,1899,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31734,'Costume_Cirtrus_Ribbon','C Citrus Ribbon',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,2048,NULL,'1',0,1900,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31735,'Costume_Yawata_Seal','C Yawata Seal',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1901,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31736,'Costume_Popcorn_Wig','C Popcorn Wig',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,1895,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31762,'Costume_Gambler_Card','C Heart Card in Mouth',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1679,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31763,'Costume_Fortier_Mask','C Fortier Mask',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,2048,NULL,'1',0,876,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31764,'C_Rainbow_Veil_Mid','Costume Rainbow Veil Mid',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,2048,NULL,'1',0,992,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31765,'C_Garnet_Tiara','C Garnet Tiara',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,1906,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31766,'C_Peony_Hair_Ornament','C Peony Hair Ornament',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,1907,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31769,'Costume_Orange_Bunny_Band','C Orange Bunny Band',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,751,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31770,'Costume_Violet_Bunny_Band','C Violet Bunny Band',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,752,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31771,'Costume_Blue_Bunny_Band','C Blue Bunny Band',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,753,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31772,'Costume_Silver_Bunny_Band','C Silver Bunny Band',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,754,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31783,'Costume_Doram_Balloon','C Doram Baloon',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,1595,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31784,'Costume_Experimental_Goat_Cap','C Experimental Goat Cap',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,1768,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31785,'Costume_Monster_Fish_Gill','C Monster Fish Gills',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,2048,NULL,'1',0,1218,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31786,'Costume_Red_Baby_Dragon_Hat','C Red Baby Dragon Hat',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,1463,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31787,'C_SavageB_On_Shoulder','C Savage Bebe On Shoulder',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,1915,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31788,'C_Piamette_Curls_SV','C Piamette Curls Silver',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,1916,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31789,'Costume_Turkey_Hat','C Turkey Hat',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,NULL,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31791,'Costume_Pig_Mask','C Pig Mask',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1869,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31793,'Costume_Seraphim_Feather','C Seraphim Feather',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1704,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31794,'Costume_Puppy_Ears_Hat','C Puppy_Ears_Hat',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,827,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31795,'C_Elephangel_TH_Mid','C Elephangel Mid',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,2048,NULL,'1',0,1745,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31796,'Costume_Drooping_Boto','C Drooping Boto',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,657,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31797,'Costume_Shih_Tzu_Hair','C Shih Tzu Hair',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1921,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31798,'C_Baby_Panda','C Baby Panda',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,2048,NULL,'1',0,1922,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31799,'C_Pretty_Bear_WH','C Pretty White Bear',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,1923,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31800,'Costume_BR_Twin_Ribbon','C Brazil Twin Ribbon',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,575,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31801,'Costume_Karada_Meguri_Tea_Hat','C Karada Meguri Tea Hat',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,427,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31802,'Costume_Royal_Milk_Tea_Hat','C Black Tea Kochakaden Hat',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,428,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31803,'Costume_Master_Of_Wind','C Master of Wind',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1924,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31813,'Costume_Lunatic_On_Shoulder','C Lunatic On Shoulder',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,2048,NULL,'1',0,1881,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31814,'Costume_Lunatic_Family_Balloon','C Lunatic Family Balloon',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,2048,NULL,'1',0,1809,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31815,'Costume_Angola_Intention','C Angola Intention',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,1925,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31816,'Costume_Moon_Messenger_Robe','C Moon Messenger Robe',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1926,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31817,'Costume_Rabbit_Two_Side_Up','C Rabbit Two Side Up',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1927,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31819,'Costume_Dullahan_Mask','C Dullahan Mask',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1931,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31823,'Costume_Nose_Glasses','C Nose Glasses',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,2048,NULL,'1',0,1933,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31824,'Costume_Cat_Mask','C Mask of Cat',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,2048,NULL,'1',0,1934,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31826,'Costume_Sunglass_Bear_Cap','C Sunglass Bear Cap',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,1935,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31827,'Costume_Durumagi','C Durumagi',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1936,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31831,'Costume_Disguise_Mantle','C Disguise Mantle',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1937,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31832,'C_Bicolor_Cat_Witch_Hat','C Bicolor Cat Witch Hat',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,1938,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31833,'C_Halloween_CatShort','C Halloween Short Haired Cat Ears',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1939,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31834,'C_Halloween_Cat_Long','C Halloween Long Haired Cat Ears',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,4096,NULL,'1',0,1940,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31837,'Costume_Shark_Head','C Shark Head',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,1919,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31840,'Costume_BJ_Headset_A','C BJ Headset',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,1942,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31841,'Costume_BJ_Headset_B','C OnAir BJ Headset',4,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,1024,NULL,'1',0,1943,NULL,NULL,NULL); -REPLACE INTO `item_db_re` VALUES (31884,'C_Magic_Helm','Costume Magic Helm',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1917,NULL,NULL,NULL); -#=================================================================== -# More 1-Handed Spears -#=================================================================== -REPLACE INTO `item_db_re` VALUES (32005,'Illusion_Pole_Axe','Illusion Pole Axe',5,0,NULL,1500,'190',NULL,3,2,0x00004082,63,2,2,4,'120',1,4,'.@r = getrefine(); bonus bStr,3; bonus bInt,2; bonus bDex,2; if (.@r >= 13) { .@val = -2000; } else if (.@r >= 9) { .@val = -1000; } bonus2 bSkillCooldown,"RK_HUNDREDSPEAR",.@val;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (32013,'Metal_Stick','Metal Stick',5,0,0,2000,'180',NULL,3,3,0x00004080,56,2,2,4,'150',1,4,'.@r = getrefine(); bonus2 bSkillAtk,"LG_CANNONSPEAR",10; if(.@r > 6){ bonus2 bSkillAtk,"LG_OVERBRAND",10 + (.@r > 8 ? 15 : 0); } if(.@r > 11){ bonus bDelayrate,-15; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (32014,'Brute_Spear','Brute Spear',5,0,0,0,'150',NULL,3,0,0x00004080,56,2,2,4,'100',1,4,'.@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bIgnoreDefRaceRate,RC_All,5*.@r; bonus2 bAddRace,RC_Player_Human,80 + (.@r > 8 ? 20 : 0) + (.@r > 7 ? 35 : 0); if(.@r > 9){ bonus bMaxHPrate,15; bonus bMaxSPrate,15; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (32019,'Boost_Lance-OS','Boost Lance-OS',5,20,NULL,1000,'190',NULL,3,2,0x00004000,56,2,2,4,'130',1,4,'.@r = getrefine(); .@aspd = 3; if (.@r >= 7) { .@aspd += 7; if (.@r >= 9) { .@dmg = 20; if (.@r >= 11) { .@dmg += 15; } bonus2 bSkillAtk,"LG_BANISHINGPOINT",.@dmg; } } bonus bAspdRate,.@aspd;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (32023,'Argen_Blanco','Argen Blanco',5,20,NULL,1000,'200',NULL,3,2,0x00000080,56,2,2,4,'170',1,4,'.@r = getrefine(); bonus2 bSkillAtk,"KN_BRANDISHSPEAR",30; bonus bBaseAtk,4*.@r; if (.@r>=9) bonus2 bSkillCooldown,"RK_HUNDREDSPEAR",-1500; if (.@r>=11) bonus2 bSkillAtk,"KN_BRANDISHSPEAR",20;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (32024,'Harve','Harve',5,20,NULL,1500,'210',NULL,3,2,0x00004000,56,2,2,4,'170',1,4,'.@r = getrefine(); bonus2 bSkillAtk,"PA_SHIELDCHAIN",40; bonus bLongAtkRate,.@r; if (.@r>=9) bonus2 bSkillAtk,"LG_SHIELDPRESS",30; if (.@r>=11) { bonus2 bSkillAtk,"PA_SHIELDCHAIN",20; bonus2 bSkillAtk,"LG_SHIELDPRESS",20; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (32025,'Fortridge','Fortridge',5,20,NULL,1700,'205',NULL,3,2,0x00004000,56,2,2,4,'170',1,4,'.@r = getrefine(); bonus bDelayrate,-.@r; bonus2 bAddClass,Class_All,5; if (.@r>=9) bonus2 bSkillAtk,"LG_CANNONSPEAR",20; if (.@r>=11) bonus2 bSkillAtk,"LG_OVERBRAND",20;',NULL,NULL); -#=================================================================== -# More Instruments -#=================================================================== -REPLACE INTO `item_db_re` VALUES (32107,'Black_Circle','Black Circle',5,NULL,NULL,1200,'100:190',NULL,2,2,0x00080000,56,1,2,4,'170',1,14,'.@r = getrefine(); bonus bMatk,4*.@r; bonus2 bMagicAtkEle,Ele_Neutral,10; if (.@r>=9) bonus2 bSkillAtk,"WM_METALICSOUND",30; if (.@r>=11) bonus2 bSkillCooldown,"WM_METALICSOUND",-2000;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (32108,'Antique_Cello','Antique Cello',5,0,NULL,1200,'180',NULL,2,2,0x00080000,56,1,2,4,'170',1,13,'.@r = getrefine(); bonus bVariableCastrate,-10; bonus bLongAtkRate,.@r; if (.@r>=9) bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-1000; if (.@r>=11) bonus2 bSkillUseSPrate,"WM_SEVERE_RAINSTORM",20;',NULL,NULL); -#=================================================================== -# More Accessories -#=================================================================== -REPLACE INTO `item_db_re` VALUES (32203,'Accelerator_Chip','Accelerator Chip',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'100',0,0,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bAspdRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (32204,'Immortal_Dog_Tag','Immortal Dog Tag',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'100',0,0,'bonus bBaseAtk,50; bonus bMatk,50; bonus2 bSubRace,RC_Undead,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (32206,'Prontera_Militia_Glove','Prontera Militia Glove',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'100',0,0,'bonus bVit,5; bonus bMdef,5; bonus bAspdRate,5; bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3; bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Earth,5; bonus2 bSubEle,Ele_Wind,5; bonus2 bSubEle,Ele_Fire,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (32207,'Illusion_Booster_R','Illusion Booster R',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,8,NULL,'130',0,0,'bonus2 bAddClass,Class_All,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (32208,'Illusion_Booster_L','Illusion Booster L',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,128,NULL,'130',0,0,'bonus2 bAddClass,Class_All,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (32209,'Illusion_Battle_chip_R','Illusion Battle chip R',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,8,NULL,'130',0,0,'bonus bMatkRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (32210,'Illusion_Battle_chip_L','Illusion Battle chip L',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,128,NULL,'130',0,0,'bonus bMatkRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (32222,'Brooch_of_Hero','Brooch of Hero',4,20,NULL,400,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'100',0,0,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; if((eaclass()&EAJL_THIRD && BaseJob == Job_Knight) || ((eaclass()&EAJL_THIRD && BaseJob == Job_Crusader))) { bonus bMaxHPrate,10; bonus2 bAddRace,RC_All,5; } if((eaclass()&EAJL_THIRD && BaseJob == Job_Priest) || ((eaclass()&EAJL_THIRD && BaseJob == Job_Monk))) { bonus bAspdRate,10; bonus2 bAddRace,RC_All,5; } if((eaclass()&EAJL_THIRD && BaseJob == Job_Blacksmith) || ((eaclass()&EAJL_THIRD && BaseJob == Job_Alchemist))) { bonus bUseSPrate,-10; bonus2 bAddRace,RC_All,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (32227,'Hrodvitnir\'s_Chain','Hrodvitnir\'s Chain',4,20,NULL,300,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'100',0,0,'bonus bAspdRate,5; bonus bDelayrate,-5; skill "AL_TELEPORT",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (32228,'Schmidt_Insignia_Power','King Schmidt\'s Power Insignia',4,0,0,200,NULL,10,NULL,1,0xFFFFFFFF,63,2,128,NULL,'150',NULL,NULL,'bonus2 bAddClass,Class_All,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (32229,'Schmidt_Insignia_Divine_Power','King Schmidt\'s Divine Power Insignia',4,0,0,200,NULL,10,NULL,1,0xFFFFFFFF,63,2,128,NULL,'150',NULL,NULL,'bonus bMatkRate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (32230,'Schmidt_Insignia_Hundred_Lucks','King Schmidt\'s Hundred Lucks Insignia',4,0,0,200,NULL,10,NULL,1,0xFFFFFFFF,63,2,128,NULL,'150',NULL,NULL,'bonus bCritAtkRate,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (32231,'Schmidt_Insignia_Rigid_Body','King Schmidt\'s Rigid Body Insignia',4,0,0,200,NULL,10,NULL,1,0xFFFFFFFF,63,2,128,NULL,'150',NULL,NULL,'bonus bMaxHPrate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (32232,'Schmidt_Insignia_Flash','King Schmidt\'s Flash Insignia',4,0,0,200,NULL,10,NULL,1,0xFFFFFFFF,63,2,128,NULL,'150',NULL,NULL,'bonus bAspdRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (32233,'Schmidt_Insignia_Celestial','King Schmidt\'s Celestial Insignia',4,0,NULL,200,NULL,10,NULL,1,0xFFFFFFFF,63,2,128,NULL,'150',NULL,NULL,'bonus bLongAtkRate,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (32234,'Warrior\'s_Ring','Warrior\'s Ring',4,0,NULL,300,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'100',NULL,NULL,'bonus2 bAddClass,Class_All,5; bonus2 bMagicAddClass,Class_All,5; bonus2 bAddEle,Ele_Wind,10; bonus2 bAddEle,Ele_Earth,10; bonus2 bMagicAddEle,Ele_Wind,10; bonus2 bMagicAddEle,Ele_Earth,10; bonus2 bSubEle,Ele_Wind,5; bonus2 bSubEle,Ele_Earth,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (32237,'Celine\'s_Brooch','Celine\'s Brooch',4,10,NULL,500,NULL,0,NULL,1,0xFFFFFFFE,63,2,136,NULL,'100',0,0,'bonus bMatkRate,5; bonus bVariableCastrate,-10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (32238,'Illusion_Morpheus\'s_Ring','Illusion Morpheus\'s Ring',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,8,NULL,'130',0,0,'bonus bInt,3; bonus bMaxSPrate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (32239,'Illusion_Morpheus\'s_Bracelet','Illusion Morpheus\'s Bracelet',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,128,NULL,'130',0,0,'bonus bInt,3; bonus bMaxSPrate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (32242,'Old_Detachment_Ring','Old Detachment Ring',4,20,NULL,0,NULL,0,NULL,0,0xFFFFFFFF,63,2,136,NULL,'100',0,0,'bonus bMdef,10; bonus2 bSubRace,RC_Player_Human,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (32258,'Ring_of_Jupiter','Ring of Jupiter',4,20,NULL,500,NULL,2,NULL,1,0xFFFFFFFF,63,2,136,NULL,'100',0,0,'skill "AL_BLESSING",5; if (getequipid(EQI_ACC_R) == 32258) { bonus bBaseAtk,15*(readparam(bLuk)/10); bonus bMatk,15*(readparam(bLuk)/10); if (readparam(bLuk) >= 125) { bonus2 bAddClass,Class_Boss,15; bonus2 bMagicAddClass,Class_Boss,15; } } if (getequipid(EQI_ACC_L) == 32258) { bonus bMaxHPRate,2*(readparam(bVit)/10); bonus bMaxSPRate,2*(readparam(bVit)/10); if (readparam(bVit) >= 125) { bonus bDef,300; bonus bMdef,50; bonus2 bSubRace,RC_Player_Human,3; } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (32262,'Rasen_Fuma_Orb','Rasen Fuma\'s Orb',4,20,NULL,100,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'100',0,0,'bonus bStr,5; bonus bAgi,5; bonus bVit,5; bonus2 bAddClass,Class_All,5; if (getskilllv("KO_ZANZOU")>=5) { bonus2 bSkillAtk,"KO_HUUMARANKA",Baselevel/4; bonus2 bSkillAtk,"NJ_HUUMA",2*(Baselevel/4); } if (getskilllv("KO_KYOUGAKU")>=5) { bonus2 bSkillUseSP,"KO_HUUMARANKA",10; bonus2 bSkillCooldown,"KO_HUUMARANKA",-100; } if (getskilllv("KO_MUCHANAGE")==10) { bonus2 bHPDrainRate,50,1; } if (getskilllv("KO_MEIKYOUSISUI")>=5) { bonus bSPDrainValue,2; bonus2 bSkillCooldown,"KO_IZAYOI",-25000; } if (getskilllv("KO_SETSUDAN")>=5) { bonus2 bVariableCastrate,"KO_HUUMARANKA",-50; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (32263,'Shield_Ring','Shield Ring',4,20,NULL,400,NULL,0,NULL,1,0xFFFFFFFF,63,2,136,NULL,'100',0,0,'bonus bStr,5; bonus bInt,5; bonus bDex,5; bonus2 bAddClass,Class_All,5; if (getskilllv("LG_EARTHDRIVE")==5) bonus bDelayrate,-30; if (getskilllv("LG_INSPIRATION")==5) bonus2 bSkillCooldown,"LG_EARTHDRIVE",-1500; if (getskilllv("CR_DEVOTION")==5) { bonus bStr,5; bonus bInt,5; bonus bDex,5; bonus bBaseAtk,100; } if (getskilllv("LG_PINPOINTATTACK")==5) { bonus2 bSkillVariableCast,"LG_EARTHDRIVE",-500; bonus2 bSkillUseSP,"LG_EARTHDRIVE",25; }',NULL,NULL); -#=================================================================== -# More Guns -#=================================================================== -REPLACE INTO `item_db_re` VALUES (32301,'Illusion_Gold_Lux','Illusion Gold Lux',5,20,NULL,1800,'160',NULL,7,2,0x41000000,63,2,34,4,'120',1,17,'.@r = getrefine(); bonus bHit,10; bonus bLongAtkRate,3*(.@r/2); if (.@r >= 7) { bonus2 bSkillAtk,"GS_DESPERADO",40; if (.@r >= 9) { bonus2 bSkillCooldown,"RL_HEAT_BARREL",-2000; if (.@r >= 11) { bonus2 bSkillAtk,"RL_FIREDANCE",30; } } }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (32302,'Crimson_Rose','Crimson Rose',5,20,NULL,700,'150',NULL,7,2,0x40000000,63,2,34,4,'100',1,17,'.@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,3*(.@r/3); if (.@r >= 7) { bonus bAspd,1; bonus2 bAddClass,Class_All,5; if (.@r >= 9) { bonus bCritAtkRate,20; if (.@r >= 11) { autobonus3 "{ bonus bCritical,20; bonus bLongAtkRate,15; }",1000,60000,"RL_HEAT_BARREL"; } } }',NULL,NULL); -#=================================================================== -# More 1-Handed Swords -#=================================================================== -REPLACE INTO `item_db_re` VALUES (32350,'Farthezan','Farthezan',5,20,NULL,1100,'130:180',NULL,1,2,0x00004000,56,2,2,4,'170',1,2,'.@r = getrefine(); bonus2 bSkillAtk,"PA_PRESSURE",40; bonus bVariableCastrate,-.@r; if (.@r>=9) bonus2 bSkillAtk,"LG_RAYOFGENESIS",30; if (.@r>=11) { bonus2 bSkillAtk,"LG_RAYOFGENESIS",20; bonus2 bSkillAtk,"PA_PRESSURE",20; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (32351,'Estal','Estal',5,20,NULL,700,'195',NULL,1,2,0x00040000,56,2,2,4,'170',1,2,'.@r = getrefine(); bonus2 bSkillCooldown,"GN_SPORE_EXPLOSION",-1000; bonus bBaseAtk,4*.@r; if (.@r>=11) .@val = 50; else if (.@r>=9) .@val = 30; bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",.@val;',NULL,NULL); - -#REPLACE INTO `item_db_re` VALUES (100052,'Enchant_Stone_Box19','Costume Enchantment Stone Box 19',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getgroupitem(IG_Enchant_Stone_Box19);',NULL,NULL); - -#=================================================================== -# New Warlock Spell Books -#=================================================================== -REPLACE INTO `item_db_re` VALUES (100065,'WL_MB_SG','Spell Book (Storm Gust)',11,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "WL_READING_SB_READING",1;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (100066,'WL_MB_LOV','Spell Book (Lord of Vermilion)',11,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "WL_READING_SB_READING",2;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (100067,'WL_MB_MS','Spell Book (Meteor Storm)',11,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "WL_READING_SB_READING",3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (100068,'WL_MB_DL','Spell Book (Drain Life)',11,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "WL_READING_SB_READING",4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (100069,'WL_MB_JF','Spell Book (Jack Frost)',11,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "WL_READING_SB_READING",5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (100070,'WL_MB_ES','Spell Book (Earth Strain)',11,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "WL_READING_SB_READING",6;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (100071,'WL_MB_CR','Spell Book (Crimson Rock)',11,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "WL_READING_SB_READING",7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (100072,'WL_MB_CL','Spell Book (Chain Lightning)',11,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "WL_READING_SB_READING",8;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (100073,'WL_MB_CM','Spell Book (Comet)',11,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "WL_READING_SB_READING",9;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (100074,'WL_MB_TV','Spell Book (Tetra Vortex)',11,0,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'itemskill "WL_READING_SB_READING",10;',NULL,NULL); - -REPLACE INTO `item_db_re` VALUES (100128,'Noblesses_Refine_Ticket','Noblesses Refine Ticket',11,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'100',NULL,NULL,'/*upgradeui 100128;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (100129,'Imperial_Refine_Ticket','Imperial Refine Ticket',11,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'125',NULL,NULL,'/*upgradeui 100129;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (100130,'Grace_Refine_Ticket','Grace Refine Ticket',11,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'150',NULL,NULL,'/*upgradeui 100130;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (100131,'Imperial_P_Mo_Garment','Imperial Physical Modification Permit (Garment)',11,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'125',NULL,NULL,'/*upgradeui 100131;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (100132,'Imperial_M_Mo_Garment','Imperial Magical Modification Permit (Garment)',11,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'125',NULL,NULL,'/*upgradeui 100132;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (100133,'Grace_P_Mo_Garment','Grace Physical Modification Permit (Garment)',11,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'150',NULL,NULL,'/*upgradeui 100133;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (100134,'Grace_M_Mo_Garment','Grace Magical Modification Permit (Garment)',11,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'150',NULL,NULL,'/*upgradeui 100134;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (100135,'Imperial_P_Mo_Armor','Imperial Physical Modification Permit (Armor)',11,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'125',NULL,NULL,'/*upgradeui 100135;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (100136,'Imperial_M_Mo_Armor','Imperial Magical Modification Permit (Armor)',11,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'125',NULL,NULL,'/*upgradeui 100136;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (100137,'Grace_P_Mo_Armor','Grace Physical Modification Permit (Armor)',11,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'150',NULL,NULL,'/*upgradeui 100137;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (100138,'Grace_M_Mo_Armor','Grace Magical Modification Permit (Armor)',11,20,NULL,0,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'150',NULL,NULL,'/*upgradeui 100138;*/',NULL,NULL); - -#REPLACE INTO `item_db_re` VALUES (100202,'Enchant_Stone_Box20','Costume Enchantment Stone Box 20',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getgroupitem(IG_Enchant_Stone_Box20);',NULL,NULL); - -REPLACE INTO `item_db_re` VALUES (100231,'Ref_T_Potion','Golden X',0,10,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_REF_T_POTION,30000,0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (100232,'Add_Atk_Potion','Red Herb Activator',0,10,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_ADD_ATK_DAMAGE,500000,15;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (100233,'Add_Matk_Potion','Blue Herb Activator',0,10,NULL,30,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'sc_start SC_ADD_MATK_DAMAGE,500000,15;',NULL,NULL); - -#REPLACE INTO `item_db_re` VALUES (100314,'Enchant_Stone_Box21','Costume Enchantment Stone Box 21',2,10,NULL,10,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,NULL,NULL,'1',NULL,NULL,'getgroupitem(IG_Enchant_Stone_Box21);',NULL,NULL); - -REPLACE INTO `item_db_re` VALUES (100402,'Thousand_Sun_Cube','Thousand Sun Modification Cube',11,NULL,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*synthesisui 100402;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (100403,'Spirit_Pendulum_Cube','Spirit Pendulum Modification Cube',11,NULL,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*synthesisui 100403;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (100404,'Crimson_Rose_Cube','Crimson Rose Modification Cube',11,NULL,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*synthesisui 100404;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (100405,'Master_Soul_Rifle_Cube','Master Soul Rifle Modification Cube',11,NULL,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*synthesisui 100405;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (100406,'Golden_Lord_Launcher_Cube','Golden Lord Launcher Modification Cube',11,NULL,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*synthesisui 100406;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (100407,'The_Black_Cube','The Black Modification Cube',11,NULL,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*synthesisui 100407;*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (100408,'Demon_Slayer_Shot_Cube','Demon Slayer Shot Modification Cube',11,NULL,NULL,10,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,NULL,NULL,NULL,'/*synthesisui 100408;*/',NULL,NULL); - -# Costumes -#REPLACE INTO `item_db_re` VALUES (400020,'C_BeachBall','Costume Beachball',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,1024,NULL,'1',0,1918,NULL,NULL,NULL); -#REPLACE INTO `item_db_re` VALUES (440000,'C_SharkHead','Costume Shark Hat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,5120,NULL,'1',0,1919,NULL,NULL,NULL); -#REPLACE INTO `item_db_re` VALUES (440002,'C_Happy_Cat_TW','Costume Happy Cat',4,0,NULL,0,NULL,NULL,NULL,0,0xFFFFFFFF,63,2,7168,NULL,'1',0,1980,NULL,NULL,NULL); -# New Armor -REPLACE INTO `item_db_re` VALUES (450018,'Noblesse_Breath_Armor','Noblesse Breath Armor',4,20,NULL,0,NULL,100,NULL,1,0x00000080,56,2,16,NULL,'100',1,NULL,'.@r = getrefine(); bonus bMaxHPrate,5; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus bMaxHPrate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450019,'Noblesse_Knight_Armor','Noblesse Knight Armor',4,20,NULL,0,NULL,100,NULL,1,0x00000080,56,2,16,NULL,'100',1,NULL,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bCritAtkRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450020,'Noblesse_Spear_Armor','Noblesse Spear Armor',4,20,NULL,0,NULL,100,NULL,1,0x00004000,56,2,16,NULL,'100',1,NULL,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bLongAtkRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450021,'Noblesse_Genesis_Armor','Noblesse Genesis Armor',4,20,NULL,0,NULL,100,NULL,1,0x00004000,56,2,16,NULL,'100',1,NULL,'.@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Holy,5; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Holy,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450022,'Noblesse_Sharp_Suit','Noblesse Sharp Suit',4,20,NULL,0,NULL,70,NULL,1,0x00000800,56,2,16,NULL,'100',1,NULL,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bLongAtkRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450023,'Noblesse_Aimed_suit','Noblesse Aimed suit',4,20,NULL,0,NULL,70,NULL,1,0x00000800,56,2,16,NULL,'100',1,NULL,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bLongAtkRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450024,'Noblesse_Severe_Suit','Noblesse Severe Suit',4,20,NULL,0,NULL,70,NULL,1,0x00080000,56,2,16,NULL,'100',1,NULL,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus bLongAtkRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450025,'Noblesse_Reverb_Suit','Noblesse Reverb Suit',4,20,NULL,0,NULL,70,NULL,1,0x00080000,56,2,16,NULL,'100',1,NULL,'.@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Neutral,5; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450026,'Noblesse_Adora_Robe','Noblesse Adora Robe',4,20,NULL,0,NULL,70,NULL,1,0x00000100,56,2,16,NULL,'100',1,NULL,'.@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Holy,5; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Holy,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450027,'Noblesse_Duple_Robe','Noblesse Duple Robe',4,20,NULL,0,NULL,70,NULL,1,0x00000100,56,2,16,NULL,'100',1,NULL,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bCritAtkRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450028,'Noblesse_Tornado_Armor','Noblesse Tornado Armor',4,20,NULL,0,NULL,70,NULL,1,0x00000400,56,2,16,NULL,'100',1,NULL,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus2 bAddSize,Size_All,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450029,'Noblesse_Vulcan_Armor','Noblesse Vulcan Armor',4,20,NULL,0,NULL,70,NULL,1,0x00000400,56,2,16,NULL,'100',1,NULL,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bLongAtkRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450030,'Noblesse_Cart_Cannon_Suit','Noblesse Cart Cannon Suit',4,20,NULL,0,NULL,70,NULL,1,0x00040000,56,2,16,NULL,'100',1,NULL,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus bLongAtkRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450031,'Noblesse_Cart_Tornado_Suit','Noblesse Cart Tornado Suit',4,20,NULL,0,NULL,70,NULL,1,0x00040000,56,2,16,NULL,'100',1,NULL,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus2 bAddSize,Size_All,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450032,'Noblesse_Rolling_Suit','Noblesse Rolling Suit',4,20,NULL,0,NULL,70,NULL,1,0x00001000,56,2,16,NULL,'100',1,NULL,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bLongAtkRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450033,'Noblesse_Assassin_Suit','Noblesse Assassin Suit',4,20,NULL,0,NULL,70,NULL,1,0x00001000,56,2,16,NULL,'100',1,NULL,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bCritAtkRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450034,'Noblesse_Fatal_Suit','Noblesse Fatal Suit',4,20,NULL,0,NULL,70,NULL,1,0x00020000,56,2,16,NULL,'100',1,NULL,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus2 bAddSize,Size_All,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450035,'Noblesse_Stalker_Suit','Noblesse Stalker Suit',4,20,NULL,0,NULL,70,NULL,1,0x00020000,56,2,16,NULL,'100',1,NULL,'.@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Fire,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450036,'Noblesse_Picky_Robe','Noblesse Picky Robe',4,20,NULL,0,NULL,70,NULL,1,0x80000000,7,2,16,NULL,'100',1,NULL,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus bLongAtkRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450037,'Noblesse_Catnip_Robe','Noblesse Catnip Robe',4,20,NULL,0,NULL,70,NULL,1,0x80000000,7,2,16,NULL,'100',1,NULL,'.@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450038,'Noblesse_Trip_Suit','Noblesse Trip Suit',4,20,NULL,0,NULL,70,NULL,1,0x40000000,63,2,16,NULL,'100',0,NULL,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus2 bAddClass,Class_All,5; if(.@r>=9) bonus bLongAtkRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450039,'Noblesse_Fire_Rain_Suit','Noblesse Fire Rain Suit',4,20,NULL,0,NULL,70,NULL,1,0x40000000,63,2,16,NULL,'100',1,NULL,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus2 bAddClass,Class_All,5; if(.@r>=9) bonus bLongAtkRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450040,'Noblesse_Crimson_Robe','Noblesse Crimson Robe',4,20,NULL,0,NULL,70,NULL,1,0x00000200,56,2,16,NULL,'100',1,NULL,'.@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Fire,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450041,'Noblesse_Frost_Robe','Noblesse Frost Robe',4,20,NULL,0,NULL,70,NULL,1,0x00000200,56,2,16,NULL,'100',1,NULL,'.@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Water,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450042,'Noblesse_Psychic_Robe','Noblesse Psychic Robe',4,20,NULL,0,NULL,70,NULL,1,0x00010000,56,2,16,NULL,'100',1,NULL,'.@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450043,'Noblesse_Dust_Robe','Noblesse Dust Robe',4,20,NULL,0,NULL,70,NULL,1,0x00010000,56,2,16,NULL,'100',1,NULL,'.@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Water,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450044,'Noblesse_Sun_Suit','Noblesse Sun Suit',4,20,NULL,0,NULL,70,NULL,1,0x00400000,56,2,16,NULL,'100',1,NULL,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus2 bAddClass,Class_All,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450045,'Noblesse_Moon_Suit','Noblesse Moon Suit',4,20,NULL,0,NULL,70,NULL,1,0x00400000,56,2,16,NULL,'100',1,NULL,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus2 bAddSize,Size_All,5; if(.@r>=9) bonus2 bAddClass,Class_All,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450046,'Noblesse_Ninja_Suit','Noblesse Ninja Suit',4,20,NULL,0,NULL,70,NULL,1,0x20000000,63,2,16,NULL,'100',1,NULL,'.@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_All,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450047,'Noblesse_Kunai_Suit','Noblesse Kunai Suit',4,20,NULL,0,NULL,70,NULL,1,0x20000000,63,2,16,NULL,'100',1,NULL,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus2 bAddClass,Class_All,5; if(.@r>=9) bonus bLongAtkRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450048,'Noblesse_Eswhoo_Robe','Noblesse Eswhoo Robe',4,20,NULL,0,NULL,70,NULL,1,0x00800000,56,2,16,NULL,'100',1,NULL,'.@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Dark,5; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Dark,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450049,'Noblesse_Explosion_Robe','Noblesse Explosion Robe',4,20,NULL,0,NULL,70,NULL,1,0x00800000,56,2,16,NULL,'100',1,NULL,'.@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Dark,5; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Dark,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450050,'Noblesse_Knuckle_Suit','Noblesse Knuckle Suit',4,20,NULL,0,NULL,70,NULL,1,0x00008000,56,2,16,NULL,'100',1,NULL,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bMaxSPrate,10; if(.@r>=9) bonus2 bAddSize,Size_All,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450051,'Noblesse_Tiger_Suit','Noblesse Tiger Suit',4,20,NULL,0,NULL,70,NULL,1,0x00008000,56,2,16,NULL,'100',1,NULL,'.@r = getrefine(); bonus bMaxSPrate,5; if(.@r>=7) bonus bMaxHPrate,3; if(.@r>=9) bonus bMaxHPrate,3;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450052,'Imperial_Breath_Armor','Imperial Breath Armor',4,20,NULL,0,NULL,120,NULL,1,0x00000080,56,2,16,NULL,'125',1,NULL,'.@r = getrefine(); bonus bMaxHPrate,7; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus bMaxHPrate,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450053,'Imperial_Knight_Armor','Imperial Knight Armor',4,20,NULL,0,NULL,120,NULL,1,0x00000080,56,2,16,NULL,'125',1,NULL,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bCritAtkRate,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450054,'Imperial_Spear_Armor','Imperial Spear Armor',4,20,NULL,0,NULL,120,NULL,1,0x00004000,56,2,16,NULL,'125',1,NULL,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bLongAtkRate,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450055,'Imperial_Genesis_Armor','Imperial Genesis Armor',4,20,NULL,0,NULL,120,NULL,1,0x00004000,56,2,16,NULL,'125',1,NULL,'.@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Holy,7; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Holy,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450056,'Imperial_Sharp_Suit','Imperial Sharp Suit',4,20,NULL,0,NULL,90,NULL,1,0x00000800,56,2,16,NULL,'125',1,NULL,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bLongAtkRate,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450057,'Imperial_Aimed_Suit','Imperial Aimed Suit',4,20,NULL,0,NULL,90,NULL,1,0x00000800,56,2,16,NULL,'125',1,NULL,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bLongAtkRate,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450058,'Imperial_Severe_Suit','Imperial Severe Suit',4,20,NULL,0,NULL,90,NULL,1,0x00080000,56,2,16,NULL,'125',1,NULL,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus bLongAtkRate,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450059,'Imperial_Reverb_Suit','Imperial Reverb Suit',4,20,NULL,0,NULL,90,NULL,1,0x00080000,56,2,16,NULL,'125',1,NULL,'.@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Neutral,7; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450060,'Imperial_Adora_Robe','Imperial Adora Robe',4,20,NULL,0,NULL,90,NULL,1,0x00000100,56,2,16,NULL,'125',1,NULL,'.@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Holy,7; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Holy,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450061,'Imperial_Duple_Robe','Imperial Duple Robe',4,20,NULL,0,NULL,90,NULL,1,0x00000100,56,2,16,NULL,'125',1,NULL,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bCritAtkRate,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450062,'Imperial_Knuckle_Suit','Imperial Knuckle Suit',4,20,NULL,0,NULL,90,NULL,1,0x00008000,56,2,16,NULL,'125',1,NULL,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bMaxSPrate,15; if(.@r>=9) bonus2 bAddSize,Size_All,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450063,'Imperial_Tiger_Suit','Imperial Tiger Suit',4,20,NULL,0,NULL,90,NULL,1,0x00008000,56,2,16,NULL,'125',1,NULL,'.@r = getrefine(); bonus bMaxSPrate,7; if(.@r>=7) bonus bMaxHPrate,4; if(.@r>=9) bonus bMaxHPrate,4;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450064,'Imperial_Tornado_Armor','Imperial Tornado Armor',4,20,NULL,0,NULL,90,NULL,1,0x00000400,56,2,16,NULL,'125',1,NULL,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus2 bAddSize,Size_All,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450065,'Imperial_Vulcan_Armor','Imperial Vulcan Armor',4,20,NULL,0,NULL,90,NULL,1,0x00000400,56,2,16,NULL,'125',1,NULL,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bLongAtkRate,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450066,'Imperial_Cart_Cannon_Suit','Imperial Cart Cannon Suit',4,20,NULL,0,NULL,90,NULL,1,0x00040000,56,2,16,NULL,'125',1,NULL,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus bLongAtkRate,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450067,'Imperial_Cart_Tornado_Suit','Imperial Cart Tornado Suit',4,20,NULL,0,NULL,90,NULL,1,0x00040000,56,2,16,NULL,'125',1,NULL,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus2 bAddSize,Size_All,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450068,'Imperial_Rolling_Suit','Imperial Rolling Suit',4,20,NULL,0,NULL,90,NULL,1,0x00001000,56,2,16,NULL,'125',1,NULL,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bLongAtkRate,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450069,'Imperial_Assassin_Suit','Imperial Assassin Suit',4,20,NULL,0,NULL,90,NULL,1,0x00001000,56,2,16,NULL,'125',1,NULL,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bCritAtkRate,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450070,'Imperial_Fatal_Suit','Imperial Fatal Suit',4,20,NULL,0,NULL,90,NULL,1,0x00020000,56,2,16,NULL,'125',1,NULL,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus2 bAddSize,Size_All,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450071,'Imperial_Stalker_Suit','Imperial Stalker Suit',4,20,NULL,0,NULL,90,NULL,1,0x00020000,56,2,16,NULL,'125',1,NULL,'.@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Fire,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450072,'Imperial_Picky_Robe','Imperial Picky Robe',4,20,NULL,0,NULL,90,NULL,1,0x80000000,7,2,16,NULL,'125',1,NULL,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus bLongAtkRate,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450073,'Imperial_Catnip_Robe','Imperial Catnip Robe',4,20,NULL,0,NULL,90,NULL,1,0x80000000,7,2,16,NULL,'125',1,NULL,'.@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450074,'Imperial_Trip_Suit','Imperial Trip Suit',4,20,NULL,0,NULL,90,NULL,1,0x40000000,63,2,16,NULL,'125',1,NULL,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus2 bAddClass,Class_All,7; if(.@r>=9) bonus bLongAtkRate,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450075,'Imperial_Fire_Rain_Suit','Imperial Fire Rain Suit',4,20,NULL,0,NULL,90,NULL,1,0x40000000,63,2,16,NULL,'125',1,NULL,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus2 bAddClass,Class_All,7; if(.@r>=9) bonus bLongAtkRate,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450076,'Imperial_Crimson_Robe','Imperial Crimson Robe',4,20,NULL,0,NULL,90,NULL,1,0x00000200,56,2,16,NULL,'125',1,NULL,'.@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Fire,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450077,'Imperial_Frost_Robe','Imperial Frost Robe',4,20,NULL,0,NULL,90,NULL,1,0x00000200,56,2,16,NULL,'125',1,NULL,'.@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Water,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450078,'Imperial_Psychic_Robe','Imperial Psychic Robe',4,20,NULL,0,NULL,90,NULL,1,0x00010000,56,2,16,NULL,'125',1,NULL,'.@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450079,'Imperial_Dust_Robe','Imperial Dust Robe',4,20,NULL,0,NULL,90,NULL,1,0x00010000,56,2,16,NULL,'125',1,NULL,'.@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Water,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450080,'Imperial_Sun_Suit','Imperial Sun Suit',4,20,NULL,0,NULL,90,NULL,1,0x00400000,56,2,16,NULL,'125',1,NULL,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus2 bAddClass,Class_All,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450081,'Imperial_Moon_Suit','Imperial Moon Suit',4,20,NULL,0,NULL,90,NULL,1,0x00400000,56,2,16,NULL,'125',1,NULL,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus2 bAddSize,Size_All,7; if(.@r>=9) bonus2 bAddClass,Class_All,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450082,'Imperial_Ninja_Suit','Imperial Ninja Suit',4,20,NULL,0,NULL,90,NULL,1,0x20000000,63,2,16,NULL,'125',1,NULL,'.@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus2 bMagicAtkEle,Ele_All,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450083,'Imperial_Kunai_Suit','Imperial Kunai Suit',4,20,NULL,0,NULL,90,NULL,1,0x20000000,63,2,16,NULL,'125',1,NULL,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus2 bAddClass,Class_All,7; if(.@r>=9) bonus bLongAtkRate,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450084,'Imperial_Eswhoo_Robe','Imperial Eswhoo Robe',4,20,NULL,0,NULL,90,NULL,1,0x00800000,56,2,16,NULL,'125',1,NULL,'.@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Dark,7; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Dark,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450085,'Imperial_Explosion_Robe','Imperial Explosion Robe',4,20,NULL,0,NULL,90,NULL,1,0x00800000,56,2,16,NULL,'125',1,NULL,'.@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Dark,7; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Dark,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450086,'Grace_Breath_Armor','Grace Breath Armor',4,20,NULL,0,NULL,130,NULL,1,0x00000080,56,2,16,NULL,'150',1,NULL,'.@r = getrefine(); bonus bMaxHPrate,10; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus bMaxHPrate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450087,'Grace_Knight_Armor','Grace Knight Armor',4,20,NULL,0,NULL,130,NULL,1,0x00000080,56,2,16,NULL,'150',1,NULL,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bCritAtkRate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450088,'Grace_Spear_Armor','Grace Spear Armor',4,20,NULL,0,NULL,130,NULL,1,0x00004000,56,2,16,NULL,'150',1,NULL,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bLongAtkRate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450089,'Grace_Genesis_Armor','Grace Genesis Armor',4,20,NULL,0,NULL,130,NULL,1,0x00004000,56,2,16,NULL,'150',1,NULL,'.@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Holy,10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Holy,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450090,'Grace_Sharp_Suit','Grace Sharp Suit',4,20,NULL,0,NULL,100,NULL,1,0x00000800,56,2,16,NULL,'150',1,NULL,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bLongAtkRate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450091,'Grace_Aimed_Suit','Grace Aimed Suit',4,20,NULL,0,NULL,100,NULL,1,0x00000800,56,2,16,NULL,'150',1,NULL,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bLongAtkRate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450092,'Grace_Severe_Suit','Grace Severe Suit',4,20,NULL,0,NULL,100,NULL,1,0x00080000,56,2,16,NULL,'150',1,NULL,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus bLongAtkRate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450093,'Grace_Reverb_Suit','Grace Reverb Suit',4,20,NULL,0,NULL,100,NULL,1,0x00080000,56,2,16,NULL,'150',1,NULL,'.@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Neutral,10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450094,'Grace_Adora_Robe','Grace Adora Robe',4,20,NULL,0,NULL,100,NULL,1,0x00000100,56,2,16,NULL,'150',1,NULL,'.@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Holy,10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Holy,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450095,'Grace_Duple_Robe','Grace Duple Robe',4,20,NULL,0,NULL,100,NULL,1,0x00000100,56,2,16,NULL,'150',1,NULL,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bCritAtkRate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450096,'Grace_Knuckle_Suit','Grace Knuckle Suit',4,20,NULL,0,NULL,100,NULL,1,0x00008000,56,2,16,NULL,'150',1,NULL,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bMaxSPrate,20; if(.@r>=9) bonus2 bAddSize,Size_All,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450097,'Grace_Tiger_Suit','Grace Tiger Suit',4,20,NULL,0,NULL,100,NULL,1,0x00008000,56,2,16,NULL,'150',1,NULL,'.@r = getrefine(); bonus bMaxSPrate,10; if(.@r>=7) bonus bMaxHPrate,5; if(.@r>=9) bonus bMaxHPrate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450098,'Grace_Tornado_Armor','Grace Tornado Armor',4,20,NULL,0,NULL,100,NULL,1,0x00000400,56,2,16,NULL,'150',1,NULL,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus2 bAddSize,Size_All,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450099,'Grace_Vulcan_Armor','Grace Vulcan Armor',4,20,NULL,0,NULL,100,NULL,1,0x00000400,56,2,16,NULL,'150',1,NULL,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bLongAtkRate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450100,'Grace_Cart_Cannon_Suit','Grace Cart Cannon Suit',4,20,NULL,0,NULL,100,NULL,1,0x00040000,56,2,16,NULL,'150',1,NULL,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus bLongAtkRate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450101,'Grace_Cart_Tornado_Suit','Grace Cart Tornado Suit',4,20,NULL,0,NULL,100,NULL,1,0x00040000,56,2,16,NULL,'150',1,NULL,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus2 bAddSize,Size_All,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450102,'Grace_Rolling_Suit','Grace Rolling Suit',4,20,NULL,0,NULL,100,NULL,1,0x00001000,56,2,16,NULL,'150',1,NULL,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bLongAtkRate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450103,'Grace_Assassin_Suit','Grace Assassin Suit',4,20,NULL,0,NULL,100,NULL,1,0x00001000,56,2,16,NULL,'150',1,NULL,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bCritAtkRate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450104,'Grace_Fatal_Suit','Grace Fatal Suit',4,20,NULL,0,NULL,100,NULL,1,0x00020000,56,2,16,NULL,'150',1,NULL,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus2 bAddSize,Size_All,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450105,'Grace_Stalker_Suit','Grace Stalker Suit',4,20,NULL,0,NULL,100,NULL,1,0x00020000,56,2,16,NULL,'150',1,NULL,'.@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Fire,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450106,'Grace_Picky_Robe','Grace Picky Robe',4,20,NULL,0,NULL,100,NULL,1,0x80000000,7,2,16,NULL,'150',1,NULL,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus bLongAtkRate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450107,'Grace_Catnip_Robe','Grace Catnip Robe',4,20,NULL,0,NULL,100,NULL,1,0x80000000,7,2,16,NULL,'150',1,NULL,'.@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450108,'Grace_Trip_Suit','Grace Trip Suit',4,20,NULL,0,NULL,100,NULL,1,0x40000000,63,2,16,NULL,'150',1,NULL,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus2 bAddClass,Class_All,10; if(.@r>=9) bonus bLongAtkRate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450109,'Grace_Fire_Rain_Suit','Grace Fire Rain Suit',4,20,NULL,0,NULL,100,NULL,1,0x40000000,63,2,16,NULL,'150',1,NULL,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus2 bAddClass,Class_All,10; if(.@r>=9) bonus bLongAtkRate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450110,'Grace_Crimson_Robe','Grace Crimson Robe',4,20,NULL,0,NULL,100,NULL,1,0x00000200,56,2,16,NULL,'150',1,NULL,'.@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Fire,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450111,'Grace_Frost_Robe','Grace Frost Robe',4,20,NULL,0,NULL,100,NULL,1,0x00000200,56,2,16,NULL,'150',1,NULL,'.@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Water,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450112,'Grace_Psychic_Robe','Grace Psychic Robe',4,20,NULL,0,NULL,100,NULL,1,0x00010000,56,2,16,NULL,'150',1,NULL,'.@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450113,'Grace_Dust_Robe','Grace Dust Robe',4,20,NULL,0,NULL,100,NULL,1,0x00010000,56,2,16,NULL,'150',1,NULL,'.@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Water,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450114,'Grace_Sun_Suit','Grace Sun Suit',4,20,NULL,0,NULL,100,NULL,1,0x00400000,56,2,16,NULL,'150',1,NULL,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus2 bAddClass,Class_All,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450115,'Grace_Moon_Suit','Grace Moon Suit',4,20,NULL,0,NULL,100,NULL,1,0x00400000,56,2,16,NULL,'150',1,NULL,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus2 bAddSize,Size_All,10; if(.@r>=9) bonus2 bAddClass,Class_All,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450116,'Grace_Ninja_Suit','Grace Ninja Suit',4,20,NULL,0,NULL,100,NULL,1,0x20000000,63,2,16,NULL,'150',1,NULL,'.@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus2 bMagicAtkEle,Ele_All,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450117,'Grace_Kunai_Suit','Grace Kunai Suit',4,20,NULL,0,NULL,100,NULL,1,0x20000000,63,2,16,NULL,'150',1,NULL,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus2 bAddClass,Class_All,10; if(.@r>=9) bonus bLongAtkRate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450118,'Grace_Eswhoo_Robe','Grace Eswhoo Robe',4,20,NULL,0,NULL,100,NULL,1,0x00800000,56,2,16,NULL,'150',1,NULL,'.@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Dark,10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Dark,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450119,'Grace_Explosion_Robe','Grace Explosion Robe',4,20,NULL,0,NULL,100,NULL,1,0x00800000,56,2,16,NULL,'150',1,NULL,'.@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Dark,10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Dark,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450121,'Noblesse_Super_Novice_Suit','Noblesse Super Novice Suit',4,20,NULL,0,NULL,70,NULL,1,0x00000001,63,2,16,NULL,'100',1,NULL,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bMaxHPrate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450122,'Noblesse_Super_Novice_Robe','Noblesse Super Novice Robe',4,20,NULL,0,NULL,70,NULL,1,0x00000001,63,2,16,NULL,'100',1,NULL,'.@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bMaxHPrate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450123,'Imperial_Super_Novice_Suit','Imperial Super Novice Suit',4,20,NULL,0,NULL,90,NULL,1,0x00000001,63,2,16,NULL,'125',1,NULL,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bMaxHPrate,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450124,'Imperial_Super_Novice_Robe','Imperial Super Novice Robe',4,20,NULL,0,NULL,90,NULL,1,0x00000001,63,2,16,NULL,'125',1,NULL,'.@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bMaxHPrate,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450125,'Grace_Super_Novice_Suit','Grace Super Novice Suit',4,20,NULL,0,NULL,100,NULL,1,0x00000001,63,2,16,NULL,'150',1,NULL,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bMaxHPrate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (450126,'Grace_Super_Novice_Robe','Grace Super Novice Robe',4,20,NULL,0,NULL,100,NULL,1,0x00000001,63,2,16,NULL,'150',1,NULL,'.@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bMaxHPrate,10;',NULL,NULL); -# New Shoes -REPLACE INTO `item_db_re` VALUES (470016,'Noblesse_Attack_Boots','Noblesse Attack Boots',4,0,NULL,0,NULL,20,NULL,1,0xFFFFFFFF,63,2,64,NULL,'100',1,0,'.@r = getrefine(); bonus bBaseAtk,10; bonus bHit,10; if (.@r>=7) bonus bFixedCast,-500; if (.@r>=9) bonus bLongAtkRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (470017,'Noblesse_Magic_Boots','Noblesse Magic Boots',4,0,NULL,0,NULL,20,NULL,1,0xFFFFFFFF,63,2,64,NULL,'100',1,0,'.@r = getrefine(); bonus bMatk,10; bonus bFlee,10; if (.@r>=7) bonus bFixedCast,-500; if (.@r>=9) bonus2 bMagicAtkEle,Ele_All,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (470018,'Imperial_Attack_Boots','Imperial Attack Boots',4,0,NULL,0,NULL,25,NULL,1,0xFFFFFFFF,63,2,64,NULL,'125',1,0,'.@r = getrefine(); bonus bBaseAtk,15; bonus bHit,15; if (.@r>=7) bonus bFixedCast,-500; if (.@r>=9) bonus bLongAtkRate,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (470019,'Imperial_Magic_Boots','Imperial Magic Boots',4,0,NULL,0,NULL,25,NULL,1,0xFFFFFFFF,63,2,64,NULL,'125',1,0,'.@r = getrefine(); bonus bMatk,15; bonus bFlee,15; if (.@r>=7) bonus bFixedCast,-500; if (.@r>=9) bonus2 bMagicAtkEle,Ele_All,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (470020,'Grace_Attack_Boots','Grace Attack Boots',4,0,NULL,0,NULL,30,NULL,1,0xFFFFFFFF,63,2,64,NULL,'150',1,0,'.@r = getrefine(); bonus bBaseAtk,20; bonus bHit,20; if (.@r>=7) bonus bFixedCast,-500; if (.@r>=9) bonus bLongAtkRate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (470021,'Grace_Magic_Boots','Grace Magic Boots',4,0,NULL,0,NULL,30,NULL,1,0xFFFFFFFF,63,2,64,NULL,'150',1,0,'.@r = getrefine(); bonus bMatk,20; bonus bFlee,20; if (.@r>=7) bonus bFixedCast,-500; if (.@r>=9) bonus2 bMagicAtkEle,Ele_All,10;',NULL,NULL); -# New Garment -REPLACE INTO `item_db_re` VALUES (480012,'Noblesse_Attack_Manteau','Noblesse Attack Manteau',4,NULL,NULL,0,NULL,20,NULL,1,0xFFFFFFFF,63,2,4,NULL,'100',1,NULL,'.@r = getrefine(); bonus bAspdRate,3; if (.@r>=7) bonus bDelayrate,-5; if (.@r>=9) bonus2 bAddSize,Size_All,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (480014,'Noblesse_Magic_Manteau','Noblesse Magic Manteau',4,NULL,NULL,0,NULL,20,NULL,1,0xFFFFFFFF,63,2,4,NULL,'100',1,NULL,'.@r = getrefine(); bonus bVariableCastrate,-5; if (.@r>=7) bonus bDelayrate,-5; if (.@r>=9) bonus2 bMagicAtkEle,Ele_All,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (480016,'Imperial_Attack_Manteau','Imperial Attack Manteau',4,NULL,NULL,0,NULL,25,NULL,1,0xFFFFFFFF,63,2,4,NULL,'125',1,NULL,'.@r = getrefine(); bonus bAspdRate,5; if (.@r>=7) bonus bDelayrate,-5; if (.@r>=9) bonus2 bAddSize,Size_All,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (480017,'Imperial_Magic_Manteau','Imperial Magic Manteau',4,NULL,NULL,0,NULL,25,NULL,1,0xFFFFFFFF,63,2,4,NULL,'125',1,NULL,'.@r = getrefine(); bonus bVariableCastrate,-7; if (.@r>=7) bonus bDelayrate,-5; if (.@r>=9) bonus2 bMagicAtkEle,Ele_All,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (480018,'Grace_Attack_Manteau','Grace Attack Manteau',4,NULL,NULL,0,NULL,30,NULL,1,0xFFFFFFFF,63,2,4,NULL,'150',1,NULL,'.@r = getrefine(); bonus bAspdRate,7; if (.@r>=7) bonus bDelayrate,-5; if (.@r>=9) bonus2 bAddSize,Size_All,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (480019,'Grace_Magic_Manteau','Grace Magic Manteau',4,NULL,NULL,0,NULL,30,NULL,1,0xFFFFFFFF,63,2,4,NULL,'150',1,NULL,'.@r = getrefine(); bonus bVariableCastrate,-10; if (.@r>=7) bonus bDelayrate,-5; if (.@r>=9) bonus2 bMagicAtkEle,Ele_All,10;',NULL,NULL); -# New Accessory -REPLACE INTO `item_db_re` VALUES (490014,'Noblesse_Attack_Ring','Noblesse Attack Ring',4,0,NULL,0,NULL,5,NULL,1,0xFFFFFFFF,63,2,8,NULL,'100',0,0,'bonus bAspdRate,3; bonus bVariableCastrate,-5; bonus bCritAtkRate,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (490015,'Noblesse_Magic_Ring','Noblesse Magic Ring',4,0,NULL,0,NULL,5,NULL,1,0xFFFFFFFF,63,2,8,NULL,'100',0,0,'bonus bAspdRate,3; bonus bVariableCastrate,-5; bonus2 bMagicAddEle,Ele_All,5;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (490017,'Imperial_Attack_Ring','Imperial Attack Ring',4,0,NULL,50,NULL,0,NULL,1,0xFFFFFFFF,63,2,8,NULL,'125',0,0,'bonus bAspdRate,5; bonus bVariableCastrate,-7; bonus bCritAtkRate,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (490018,'Imperial_Magic_Ring','Imperial Magic Ring',4,0,NULL,50,NULL,0,NULL,1,0xFFFFFFFF,63,2,8,NULL,'125',0,0,'bonus bAspdRate,5; bonus bVariableCastrate,-7; bonus2 bMagicAddEle,Ele_All,7;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (490019,'Grace_Attack_Ring','Grace Attack Ring',4,0,NULL,50,NULL,0,NULL,1,0xFFFFFFFF,63,2,8,NULL,'150',0,0,'bonus bAspdRate,7; bonus bVariableCastrate,-10; bonus bCritAtkRate,10;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (490020,'Grace_Magic_Ring','Grace Magic Ring',4,0,NULL,50,NULL,0,NULL,1,0xFFFFFFFF,63,2,8,NULL,'150',0,0,'bonus bAspdRate,7; bonus bVariableCastrate,-10; bonus2 bMagicAddEle,Ele_All,10;',NULL,NULL); - -REPLACE INTO `item_db_re` VALUES (500013,'Up_Sword_Of_Bluefire','Patent Red Lotus Sword',5,NULL,NULL,1000,'200',NULL,1,2,0x00040000,56,2,2,4,'150',1,2,'.@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bLongAtkRate,.@r/3*4; if (.@r>=7){ bonus2 bSkillUseSPrate,"GN_CARTCANNON",-10; bonus bVariableCastrate,-7; } if (.@r>=9){ bonus2 bSkillAtk,"GN_CARTCANNON",20; } if (.@r>=11){ bonus bVariableCastrate,-5; bonus2 bSkillAtk,"CR_ACIDDEMONSTRATION",10; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (500014,'Up_Slate_Sword','Patent Slate Sword',5,NULL,NULL,1200,'205',NULL,1,2,0x00040000,56,2,2,4,'150',1,2,'.@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus2 bSkillAtk,"GN_CART_TORNADO",.@r/3*10; bonus2 bSkillAtk,"GN_HELLS_PLANT",.@r/3*5; if (.@r>=7){ bonus2 bSkillAtk,"GN_CART_TORNADO",20; bonus2 bSkillAtk,"GN_HELLS_PLANT",10; } if (.@r>=9){ bonus bDelayRate,-10; } if (.@r>=11){ bonus bDelayRate,-5; bonus bMaxHPrate,10; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (500017,'Up_Light_Blade','Patent Light Blade',5,NULL,NULL,1200,'130:195',NULL,1,2,0x00004000,56,2,2,4,'150',1,2,'.@r = getrefine(); bonus bMatk,.@r/2*15; bonus2 bSkillAtk,"PA_PRESSURE",.@r/3*5; bonus2 bSkillAtk,"LG_RAYOFGENESIS",.@r/3*5; if (.@r>=7){ bonus bVariableCastrate,-10; } if (.@r>=9){ bonus2 bMagicAtkEle,Ele_Holy,15; } if (.@r>=11){ bonus2 bMagicAddSize,Size_All,15; bonus2 bSkillAtk,"PA_PRESSURE",15; bonus2 bSkillAtk,"LG_RAYOFGENESIS",15; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (510006,'Fatalist','Fatalist',5,NULL,NULL,900,'165',NULL,1,2,0x00020000,56,2,2,4,'100',1,1,'.@r = getrefine(); bonus bBaseAtk,.@r/2*10; bonus bAspdRate,(.@r*2/3); if (.@r>=9) { bonus2 bSkillAtk,"SC_FATALMENACE",20; } if (.@r>=11) { bonus bDelayRate,-7; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (510019,'Up_Magic_Sword','Patent Madogum',5,NULL,NULL,800,'150:195',NULL,1,2,0x00020000,56,2,2,4,'150',1,1,'.@r = getrefine(); bonus bMatk,.@r/2*15; bonus bAspdRate,(.@r/3*2); if (.@r>=7){ bonus5 bAutoSpell,"WZ_METEOR",7,100,BF_SHORT,1; } if (.@r>=9){ bonus2 bMagicAtkEle,Ele_All,15; } if (.@r>=11){ bonus5 bAutoSpell,"SO_PSYCHIC_WAVE",4,100,BF_SHORT,1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (510020,'Up_Fatalist','Patent Fatalist',5,NULL,NULL,1200,'205',NULL,1,2,0x00020000,56,2,2,4,'150',1,1,'.@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bAspdRate,(.@r*2/3); if (.@r>=7){ bonus2 bSkillAtk,"SC_FATALMENACE",25; } if (.@r>=9){ bonus2 bSkillUseSPrate,"SC_FATALMENACE",-15; bonus bDelayRate,-7; } if (.@r>=11){ bonus bShortAtkRate,10; bonus bDelayRate,-7; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (510022,'Up_Fog_Dew_Sword','Patent Kiri no Tsuyu',5,20,NULL,1200,'190',NULL,1,2,0x22000000,63,2,2,4,'150',1,1,'/*Is combo set with 28763 Surudoi Kaze*/',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (530006,'Up_Undine_Spear_K','Patent Aquatic Spear',5,20,NULL,1400,'195',NULL,3,2,0x00004000,56,2,2,4,'150',1,4,'.@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bLongAtkRate,.@r/3*4; if (.@r>=7){ bonus2 bSkillAtk,"LG_CANNONSPEAR",15; bonus2 bSkillAtk,"LG_BANISHINGPOINT",15; bonus bAspdRate,10; } if (.@r>=9){ bonus2 bSkillAtk,"LG_CANNONSPEAR",20; bonus2 bSkillAtk,"LG_BANISHINGPOINT",20; } if (.@r>=11){ bonus bPerfectHitAddRate,7; bonus bMaxSPrate,5; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (540010,'Up_Thousand_Sun','Patent One Sky One Sun',5,NULL,NULL,1100,'200',NULL,1,2,0x00400000,56,2,2,4,'150',1,15,'.@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bShortAtkRate,4*(.@r/3); if (.@r>=7){ bonus2 bSkillAtk,"SJ_PROMINENCEKICK",20; bonus bAspdRate,10; } if (.@r>=9){ bonus2 bSkillAtk,"SJ_SOLARBURST",25; } if (.@r>=11){ bonus2 bAddSize,Size_All,15; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (540011,'Up_Demon_Hunting_Bible','Patent Exorcist\'s Bible',5,20,NULL,700,'205:190',NULL,1,2,0x00000100,56,2,2,4,'150',1,15,'.@r = getrefine(); bonus bBaseAtk,.@r/2*10; bonus bMatk,.@r/2*10; bonus2 bSkillAtk,"AB_DUPLELIGHT",25*(.@r/3); bonus2 bSkillAtk,"AB_JUDEX",25*(.@r/3); if (.@r>=7){ bonus bAspdRate,10; bonus2 bMagicAtkEle,Ele_Holy,15; } if (.@r>=9){ bonus2 bSkillAtk,"AB_DUPLELIGHT",30; bonus2 bSkillAtk,"AB_JUDEX",30; } if (.@r>=11){ .@i = getskilllv("AB_JUDEX"); bonus3 bAutoSpell,"AB_JUDEX",(.@i > 5 ? .@i : 5),100; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (550007,'Freezing_Rod','Chilling Cane',5,NULL,NULL,500,'40:150',NULL,1,2,0x00010000,56,2,2,4,'100',1,10,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,.@r/2*10; bonus2 bSkillAtk,"SO_DIAMONDDUST",.@r/3*8; if (.@r>=9) { bonus2 bMagicAddEle,Ele_Undead,10; } if (.@r>=11) { bonus2 bMagicAtkEle,Ele_Water,7; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (550012,'Up_Shadow_Staff_K','Patent Shadow Staff',5,20,NULL,750,'40:195',NULL,1,2,0x00010000,16,2,2,4,'150',1,10,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,.@r/2*15; bonus2 bSkillAtk,"SO_EARTHGRAVE",12*(.@r/3); if (.@r>=7){ bonus2 bMagicAtkEle,Ele_Earth,15; bonus2 bMagicAtkEle,Ele_Neutral,15; } if (.@r>=9){ bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",25; bonus bVariableCastrate,-7; } if (.@r>=11){ bonus bVariableCastrate,-8; bonus2 bSkillCooldown,"SO_PSYCHIC_WAVE",-1000; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (550013,'Up_Freezing_Rod','Patent Chilling Cane',5,NULL,NULL,750,'40:195',NULL,1,2,0x00010000,56,2,2,4,'150',1,10,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,.@r/2*10; bonus2 bSkillAtk,"SO_DIAMONDDUST",.@r/3*12; if (.@r>=7){ bonus2 bMagicAddEle,Ele_All,15; bonus2 bSkillAtk,"SO_VARETYR_SPEAR",15; } if (.@r>=9){ bonus2 bSkillAtk,"SO_VARETYR_SPEAR",20; bonus bVariableCastrate,-7; } if (.@r>=11){ bonus bVariableCastrate,-8; bonus2 bSkillCooldown,"SO_VARETYR_SPEAR",-2000; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (550014,'Up_MeawFoxtail','Patent Meowmeow Foxtail',5,20,NULL,1200,'350:350',NULL,1,2,0x80000000,7,2,2,4,'150',1,10,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,15*(.@r/2); bonus bBaseAtk,15*(.@r/2); bonus2 bAddClass,Class_All,2*(.@r/3); bonus bMatkRate,2*(.@r/3); if (.@r>=7){ bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",25; bonus2 bSkillAtk,"SU_SV_STEMSPEAR",25; } if (.@r>=9){ bonus bVariableCastrate,-10; bonus bAspdRate,10; } if (.@r>=11){ bonus2 bSkillAtk,"SU_PICKYPECK",25; bonus2 bSkillAtk,"SU_CN_METEOR",25; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (550015,'Up_Spirit_Pendulum_','Patent Spirit Pendulum',5,NULL,NULL,1200,'70:190',NULL,1,2,0x00800000,56,2,2,4,'150',1,10,'.@r = getrefine(); bonus bMatk,15*(.@r/2); bonus2 bMagicAddEle,Ele_All,2*(.@r/3); if (.@r>=7){ bonus2 bSkillAtk,"SP_SPA",15; bonus bVariableCastrate,-10; } if (.@r>=9){ bonus2 bSkillAtk,"SP_SWHOO",20; } if (.@r>=11){ autobonus "{ bonus2 bSPRegenRate,230,10000; }",70,10000,BF_MAGIC; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (560002,'Ray_Knuckle','Ray Knuckle',5,NULL,NULL,700,'185',NULL,1,2,0x00008000,56,2,2,4,'100',1,12,'.@r = getrefine(); bonus bBaseAtk,.@r/2*10; bonus2 bSkillAtk,"SR_TIGERCANNON",.@r/3*4; if (.@r>=9) { bonus2 bSkillAtk,"SR_TIGERCANNON",15; } if (.@r>=11) { bonus2 bSkillCooldown,"SR_TIGERCANNON",-1000; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (560008,'Up_Iron_Nail_K','Patent Iron Nail',5,NULL,NULL,1200,'205',NULL,1,2,0x00008000,56,2,2,4,'150',1,12,'.@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bLongAtkRate,.@r/3*4; if (.@r>=7){ bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",10; bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",10; } if (.@r>=9){ bonus2 bSkillCooldown,"SR_RAMPAGEBLASTER",-1000; bonus2 bSkillCooldown,"SR_EARTHSHAKER",-1000; } if (.@r>=11){ bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",15; bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",15; bonus2 bSkillUseSPrate,"SR_RAMPAGEBLASTER",-15; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (560009,'Up_Ray_Knuckle','Patent Ray Knuckle',5,NULL,NULL,800,'205',NULL,1,2,0x00008000,56,2,2,4,'150',1,12,'.@r = getrefine(); bonus bBaseAtk,15*(.@r/2); bonus2 bSkillAtk,"SR_TIGERCANNON",4*(.@r/3); if (.@r>=7){ bonus2 bSkillAtk,"SR_TIGERCANNON",15; bonus2 bSkillAtk,"SR_HELLGATE",20; } if (.@r>=9){ bonus2 bSkillCooldown,"SR_TIGERCANNON",-1000; } if (.@r>=11){ bonus bMaxHPrate,10; bonus2 bSkillAtk,"SR_HELLGATE",15; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (570009,'Up_Trumpet_Shell_K','Patent Trumpet Shell',5,NULL,NULL,1000,'160:230',NULL,1,2,0x00080000,56,1,2,4,'150',1,13,'.@r = getrefine(); bonus bMatk,.@r/2*15; bonus2 bMagicAtkEle,Ele_All,.@r/3*4; if (.@r>=7){ bonus2 bSkillAtk,"WM_REVERBERATION",10; bonus2 bSkillAtk,"WM_METALICSOUND",10; } if (.@r>=9){ bonus2 bSkillFixedCast,WM_REVERBERATION,-500; } if (.@r>=11){ bonus bMatkRate,7; bonus2 bSkillAtk,"WM_REVERBERATION",15; bonus2 bSkillAtk,"WM_METALICSOUND",15; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (580009,'Up_Barb_Wire_K','Patent Barbed Wire Whip',5,NULL,NULL,1000,'160:230',NULL,1,2,0x00080000,56,NULL,2,4,'150',1,14,'.@r = getrefine(); bonus bMatk,.@r/2*15; bonus2 bMagicAtkEle,Ele_All,.@r/3*4; if (.@r>=7){ bonus2 bSkillAtk,"WM_REVERBERATION",10; bonus2 bSkillAtk,"WM_METALICSOUND",10; } if (.@r>=9){ bonus2 bSkillFixedCast,WM_REVERBERATION,-500; } if (.@r>=11){ bonus bMatkRate,7; bonus2 bSkillAtk,"WM_REVERBERATION",15; bonus2 bSkillAtk,"WM_METALICSOUND",15; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (590003,'Saint_Hall','Saint Mace',5,NULL,NULL,800,'170:165',NULL,1,2,0x00000100,56,2,2,4,'100',1,8,'bonus bUnbreakableWeapon; bonus bMatkRate,3; .@r = getrefine(); bonus2 bMagicAtkEle,Ele_Holy,.@r/2*1; bonus2 bSkillAtk,"AB_ADORAMUS",.@r/3*5; if (.@r>=9) { bonus bVariableCastrate,-10; } if (.@r>=11) { bonus2 bMagicAtkEle,Ele_Holy,10; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (590011,'Up_Meteor_Striker','Patent Meteor Striker',5,NULL,NULL,3500,'320',NULL,1,2,0x00000400,56,2,34,4,'150',1,8,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus2 bSkillAtk,"NC_VULCANARM",.@r/3*10; bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",.@r/3*10; if (.@r>=7){ bonus2 bSkillAtk,"NC_VULCANARM",15; bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",15; } if (.@r>=9){ bonus2 bSkillAtk,"NC_ARMSCANNON",25; } if (.@r>=11){ bonus bLongAtkRate,15; bonus bVariableCastrate,-15; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (590012,'Up_Saint_Hall','Patent Saint Mace',5,NULL,NULL,1000,'170:200',NULL,1,2,0x00000100,56,2,2,4,'150',1,8,'bonus bUnbreakableWeapon; bonus bMatkRate,3; .@r = getrefine(); bonus2 bMagicAtkEle,Ele_Holy,.@r/2*1; bonus2 bSkillAtk,"AB_ADORAMUS",.@r/3*5; if (.@r>=7){ bonus bVariableCastrate,-10; bonus2 bMagicAtkEle,Ele_Holy,10; } if (.@r>=9){ bonus2 bMagicAddRace,RC_All,15; } if (.@r>=11){ bonus2 bSkillAtk,"AB_ADORAMUS",15; }',NULL,NULL); - -REPLACE INTO `item_db_re` VALUES (600009,'Up_Oriental_Sword','Patent Oriental Sword',5,NULL,NULL,2000,'240',NULL,1,2,0x00000080,56,2,34,4,'150',1,3,'.@r = getrefine(); .@i = max(2,getskilllv("RK_SONICWAVE")); bonus bBaseAtk,.@r/2*15; bonus2 bSkillAtk,"RK_SONICWAVE",.@r/3*10; if (.@r>=7){ bonus bUnbreakableWeapon; bonus bAspdRate,10; } if (.@r>=9){ bonus5 bAutoSpell,"RK_SONICWAVE",.@i,20,BF_SHORT,1; } if (.@r>=11){ bonus bCritical,15; bonus bCritAtkRate,15; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (610003,'Blade_Katar','Blade Katar',5,NULL,NULL,1000,'185',NULL,1,2,0x00001000,56,2,34,4,'100',1,16,'.@r = getrefine(); bonus bBaseAtk,.@r/2*10; bonus bAspdRate,(.@r*2/3); if (.@r>=2) { bonus2 bSkillAtk,"GC_ROLLINGCUTTER",20; } if (.@r>=11) { bonus bDelayRate,-7; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (610008,'Up_Shiver_Katar_K','Patent Shiver Katar',5,NULL,NULL,1400,'255',NULL,1,2,0x00001000,56,2,34,4,'150',1,16,'.@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus2 bSkillAtk,"GC_CROSSIMPACT",.@r/3*10; if (.@r>=7){ bonus bCritAtkRate,15; bonus bAspdRate,10; } if (.@r>=9){ bonus2 bAddRace,RC_Brute,25; bonus2 bAddRace,RC_DemiHuman,25; } if (.@r>=11){ bonus bCritical,15; bonus2 bSkillCooldown,"GC_DARKCROW",-10000; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (610009,'Up_Blade_Katar','Patent Blade Katar',5,NULL,NULL,1400,'275',NULL,1,2,0x00001000,56,2,34,4,'150',1,16,'.@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bAspdRate,(.@r*2/3); if (.@r>=7){ bonus2 bSkillAtk,"GC_ROLLINGCUTTER",25; bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",25; } if (.@r>=9){ bonus bDelayRate,-12; } if (.@r>=11){ bonus bShortAtkRate,10; bonus bLongAtkRate,10; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (620004,'Up_Avenger','Patent Avenger',5,NULL,NULL,7000,'290',NULL,1,2,0x00000400,56,2,34,4,'150',1,7,'.@r = getrefine(); bonus bUnbreakableWeapon; bonus bBaseAtk,.@r/2*15; bonus2 bSkillAtk,"NC_AXETORNADO",10*(.@r/3); if (.@r>=7){ bonus2 bSkillAtk,"NC_AXEBOOMERANG",40; bonus2 bSkillCooldown,"NC_AXEBOOMERANG",-1000; } if (.@r>=9){ bonus2 bAddSize,Size_All,15; } if (.@r>=11){ bonus2 bSubEle,Ele_All,20; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (640004,'Blue_Crystal_Staff','Blue Crystal Staff',5,NULL,NULL,800,'100:200',NULL,1,2,0x00000200,56,2,2,4,'100',1,10,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,.@r/2*10; bonus2 bSkillAtk,"WL_JACKFROST",.@r/3*12; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Water,7; } if (.@r>=11) { bonus2 bSkillCooldown,"WL_JACKFROST",-1000; bonus2 bMagicAddEle,Ele_Fire,7; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (640011,'Up_Iron_Staff','Patent Iron Staff',5,NULL,NULL,1000,'100:235',NULL,1,2,0x00000200,56,2,34,4,'150',1,23,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,.@r/2*15; bonus2 bSkillAtk,"WL_EARTHSTRAIN",.@r/3*12; if (.@r>=7){ bonus bVariableCastrate,-10; bonus2 bMagicAtkEle,Ele_Earth,15; bonus2 bMagicAtkEle,Ele_Fire,15; } if (.@r>=9){ bonus2 bSkillCooldown,"WL_EARTHSTRAIN",-1000; bonus bVariableCastrate,-5; } if (.@r>=11){ bonus2 bMagicAddSize,Size_All,15; bonus2 bSkillAtk,"WL_CRIMSONROCK",15; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (640012,'Up_Blue_Crystal_Staff','Patent Blue Crystal Staff',5,NULL,NULL,1000,'100:235',NULL,1,2,0x00000200,56,2,2,4,'150',1,10,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,.@r/2*15; bonus2 bSkillAtk,"WL_JACKFROST",.@r/3*12; if (.@r>=7){ bonus bVariableCastrate,-10; bonus2 bMagicAtkEle,Ele_Water,15; bonus2 bMagicAtkEle,Ele_Wind,15; } if (.@r>=9){ bonus2 bSkillCooldown,"WL_JACKFROST",-1000; bonus bDelayRate,-5; } if (.@r>=11){ bonus2 bMagicAddSize,Size_All,15; bonus2 bSkillAtk,"WL_CHAINLIGHTNING",15; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (650004,'Up_Humma_Clear','Patent Huuma Shuriken Clearness',5,20,NULL,2300,'290',NULL,1,2,0x22000000,63,2,34,4,'150',1,22,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bBaseAtk,15*(.@r/2); bonus bLongAtkRate,.@r/3*2; if (.@r>=7){ bonus2 bSkillAtk,"KO_HUUMARANKA",30; bonus bVariableCastrate,-10; } if (.@r>=9){ bonus2 bSkillCooldown,"KO_HUUMARANKA",-1000; } if (.@r>=11){ bonus2 bAddEle,Ele_Fire,20; bonus2 bAddEle,Ele_Dark,20; bonus2 bAddEle,Ele_Holy,20; bonus2 bAddRace,RC_Undead,20; bonus2 bAddRace,RC_Demon,20; bonus2 bAddRace,RC_Angel,20; }',NULL,NULL); - -REPLACE INTO `item_db_re` VALUES (700003,'Scalet_Dragon_L_Bow','Scarlet Dragon Leather Bow',5,NULL,NULL,800,'170',NULL,5,2,0x00000800,56,2,34,4,'100',1,11,'.@r = getrefine(); bonus bBaseAtk,.@r/2*10; bonus bDelayRate,-(.@r/3*4); if (.@r>=9) { bonus2 bSkillAtk,"RA_AIMEDBOLT",35; } if (.@r>=11) { bonus2 bSkillCooldown,"RA_AIMEDBOLT",-1000; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (700013,'Up_Narcis_Bow','Patent Narcissus Bow',5,NULL,NULL,1000,'210',NULL,5,2,0x000A0800,56,2,34,4,'150',1,11,'.@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bLongAtkRate,.@r/3*4; if (.@r>=7){ bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; } if (.@r>=9){ bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15; } if (.@r>=11){ bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",10; bonus2 bWeaponDamageRate,W_BOW,15; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (700018,'Up_Royal_Bow_K','Patent Royal Bow',5,NULL,NULL,1200,'205',NULL,5,2,0x000A0800,56,2,34,4,'150',1,11,'.@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus2 bSkillAtk,"RA_ARROWSTORM",12*(.@r/3); if (.@r>=7){ bonus bAspdRate,10; bonus2 bWeaponDamageRate,W_BOW,15; } if (.@r>=9){ bonus bLongAtkRate,12; bonus bCritAtkRate,10; } if (.@r>=11){ bonus2 bSkillAtk,"SN_SHARPSHOOTING",20; bonus bDelayRate,-10; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (700019,'Up_Scalet_Dragon_L_Bow','Patent Scarlet Dragon Leather Bow',5,NULL,NULL,900,'200',NULL,5,2,0x00000800,56,2,34,4,'150',1,11,'.@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bDelayRate,-(.@r/3*4); if (.@r>=7){ bonus bLongAtkRate,10; bonus2 bAddSize,Size_All,10; } if (.@r>=9){ bonus2 bSkillAtk,"RA_AIMEDBOLT",35; } if (.@r>=11){ bonus2 bSkillCooldown,"RA_AIMEDBOLT",-1000; bonus bVariableCastrate,-10; }',NULL,NULL); - -REPLACE INTO `item_db_re` VALUES (800002,'Up_Crimson_Rose','Patent Crimson Rose',5,20,NULL,1000,'200',NULL,7,2,0x40000000,63,2,34,4,'150',1,17,'.@r = getrefine(); bonus bBaseAtk,.@r/2*10; bonus2 bSkillAtk,"RL_FIREDANCE",.@r/3*2; if (.@r>=7){ bonus2 bAddClass,Class_All,5; bonus bLongAtkRate,10; } if (.@r>=9){ bonus2 bSkillAtk,"RL_FIREDANCE",25; autobonus3 "{ bonus bLongAtkRate,20; }",1000,60000,"RL_HEAT_BARREL"; } if (.@r>=11){ bonus bDelayRate,-10; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (810001,'Up_Master_Soul_Rifle','Patent Master Soul Rifle',5,20,NULL,1000,'200:250',NULL,9,2,0x40000000,63,2,34,4,'150',1,18,'.@r = getrefine(); bonus bMatk,15*(.@r/2); bonus2 bSkillAtk,"MG_SOULSTRIKE",15*(.@r/3); bonus2 bSkillAtk,"HW_NAPALMVULCAN",15*(.@r/3); if (.@r>=7){ bonus2 bSkillAtk,"WL_SOULEXPANSION",20; bonus2 bMagicAddEle,Ele_Ghost,15; } if (.@r>=9){ bonus5 bAutoSpell,"MG_SOULSTRIKE",10,150,BF_LONG,1; } if (.@r>=11){ bonus5 bAutoSpell,"HW_NAPALMVULCAN",3,70,BF_LONG,1; bonus5 bAutoSpell,"WL_SOULEXPANSION",3,70,BF_LONG,1; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (820001,'Up_Demon_Slayer_Shot','Patent Demon Slayer Shot',5,NULL,NULL,2300,'295',NULL,9,2,0x40000000,63,2,34,4,'150',1,20,'.@r = getrefine(); bonus bSplashRange,1; bonus bLongAtkRate,3*(.@r/2); bonus bMaxSPrate,2*(.@r/3); if (.@r>=7){ bonus2 bAddClass,Class_Boss,15; bonus2 bAddRace,RC_Undead,15; bonus2 bAddRace,RC_Demon,15; } if (.@r>=9){ autobonus3 "{ bonus bBaseAtk,50; bonus bLongAtkRate,10; }",1000,90000,"RL_P_ALTER"; } if (.@r>=11){ bonus2 bSkillAtk,"RL_BANISHING_BUSTER",35; bonus2 bSkillAtk,"RL_S_STORM",35; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (830002,'Up_The_Black','Patent The Black',5,NULL,NULL,3000,'225',NULL,9,2,0x40000000,63,2,34,4,'150',1,19,'.@r = getrefine(); bonus bBaseAtk,15*(.@r/2); bonus bLongAtkRate,4*(.@r/3); if (.@r>=7){ bonus2 bSkillAtk,"RL_R_TRIP",20; bonus2 bSkillUseSPrate,"RL_R_TRIP",10; } if (.@r>=9){ bonus2 bSkillAtk,"RL_R_TRIP",15; autobonus3 "{ bonus bBaseAtk,50; bonus bLongAtkRate,10; }",1000,90000,"RL_P_ALTER"; } if (.@r>=11){ bonus2 bAddSize,Size_All,15; }',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (840001,'Up_Golden_Lord_Launcher','Patent Golden Lord Launcher',5,20,NULL,2400,'350',NULL,9,2,0x40000000,63,2,34,4,'150',1,21,'.@r = getrefine(); bonus bLongAtkRate,3*(.@r/2); bonus bBaseAtk,20*(.@r/3); if (.@r>=7){ bonus2 bSkillAtk,"RL_D_TAIL",15; bonus2 bSkillCooldown,"RL_D_TAIL",-1000; } if (.@r>=9){ bonus2 bSkillAtk,"RL_D_TAIL",20; } if (.@r>=11){ bonus2 bAddEle,Ele_All,15; }',NULL,NULL); - -REPLACE INTO `item_db_re` VALUES (1100003,'Concentrated_R_P','Concentrated Red Potion',0,10,NULL,2,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'120',NULL,NULL,'itemheal rand(655,675),0;',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1100004,'Concentrated_B_P','Concentrated Blue Potion',0,10,NULL,2,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'120',NULL,NULL,'itemheal 0,rand(340,360);',NULL,NULL); -REPLACE INTO `item_db_re` VALUES (1100005,'Concentrated_G_P','Concentrated Gold Potion',0,10,NULL,2,NULL,NULL,NULL,NULL,0xFFFFFFFF,63,2,NULL,NULL,'180',NULL,NULL,'itemheal rand(2730,2750),0;',NULL,NULL); - diff --git a/sql-files/item_db_re_equip.sql b/sql-files/item_db_re_equip.sql new file mode 100644 index 0000000000..c52454438e --- /dev/null +++ b/sql-files/item_db_re_equip.sql @@ -0,0 +1,6540 @@ +# +# Table structure for table `item_db_re` +# + +DROP TABLE IF EXISTS `item_db_re`; +CREATE TABLE `item_db_re` ( + `id` int(10) unsigned NOT NULL DEFAULT '0', + `name_aegis` varchar(50) NOT NULL DEFAULT '', + `name_english` varchar(50) NOT NULL DEFAULT '', + `type` varchar(20) DEFAULT NULL, + `subtype` varchar(20) DEFAULT NULL, + `price_buy` mediumint(8) unsigned DEFAULT NULL, + `price_sell` mediumint(8) unsigned DEFAULT NULL, + `weight` smallint(5) unsigned DEFAULT NULL, + `attack` smallint(5) unsigned DEFAULT NULL, + `magic_attack` smallint(5) unsigned DEFAULT NULL, + `defense` smallint(5) unsigned DEFAULT NULL, + `range` tinyint(2) unsigned DEFAULT NULL, + `slots` tinyint(2) unsigned DEFAULT NULL, + `job_all` tinyint(1) unsigned DEFAULT NULL, + `job_acolyte` tinyint(1) unsigned DEFAULT NULL, + `job_alchemist` tinyint(1) unsigned DEFAULT NULL, + `job_archer` tinyint(1) unsigned DEFAULT NULL, + `job_assassin` tinyint(1) unsigned DEFAULT NULL, + `job_barddancer` tinyint(1) unsigned DEFAULT NULL, + `job_blacksmith` tinyint(1) unsigned DEFAULT NULL, + `job_crusader` tinyint(1) unsigned DEFAULT NULL, + `job_gunslinger` tinyint(1) unsigned DEFAULT NULL, + `job_hunter` tinyint(1) unsigned DEFAULT NULL, + `job_kagerouoboro` tinyint(1) unsigned DEFAULT NULL, + `job_knight` tinyint(1) unsigned DEFAULT NULL, + `job_mage` tinyint(1) unsigned DEFAULT NULL, + `job_merchant` tinyint(1) unsigned DEFAULT NULL, + `job_monk` tinyint(1) unsigned DEFAULT NULL, + `job_ninja` tinyint(1) unsigned DEFAULT NULL, + `job_novice` tinyint(1) unsigned DEFAULT NULL, + `job_priest` tinyint(1) unsigned DEFAULT NULL, + `job_rebellion` tinyint(1) unsigned DEFAULT NULL, + `job_rogue` tinyint(1) unsigned DEFAULT NULL, + `job_sage` tinyint(1) unsigned DEFAULT NULL, + `job_soullinker` tinyint(1) unsigned DEFAULT NULL, + `job_stargladiator` tinyint(1) unsigned DEFAULT NULL, + `job_summoner` tinyint(1) unsigned DEFAULT NULL, + `job_supernovice` tinyint(1) unsigned DEFAULT NULL, + `job_swordman` tinyint(1) unsigned DEFAULT NULL, + `job_taekwon` tinyint(1) unsigned DEFAULT NULL, + `job_thief` tinyint(1) unsigned DEFAULT NULL, + `job_wizard` tinyint(1) unsigned DEFAULT NULL, + `class_all` tinyint(1) unsigned DEFAULT NULL, + `class_normal` tinyint(1) unsigned DEFAULT NULL, + `class_upper` tinyint(1) unsigned DEFAULT NULL, + `class_baby` tinyint(1) unsigned DEFAULT NULL, + `class_third` tinyint(1) unsigned DEFAULT NULL, + `class_third_upper` tinyint(1) unsigned DEFAULT NULL, + `class_third_baby` tinyint(1) unsigned DEFAULT NULL, + `gender` varchar(10) DEFAULT NULL, + `location_head_top` tinyint(1) unsigned DEFAULT NULL, + `location_head_mid` tinyint(1) unsigned DEFAULT NULL, + `location_head_low` tinyint(1) unsigned DEFAULT NULL, + `location_armor` tinyint(1) unsigned DEFAULT NULL, + `location_right_hand` tinyint(1) unsigned DEFAULT NULL, + `location_left_hand` tinyint(1) unsigned DEFAULT NULL, + `location_garment` tinyint(1) unsigned DEFAULT NULL, + `location_shoes` tinyint(1) unsigned DEFAULT NULL, + `location_right_accessory` tinyint(1) unsigned DEFAULT NULL, + `location_left_accessory` tinyint(1) unsigned DEFAULT NULL, + `location_costume_head_top` tinyint(1) unsigned DEFAULT NULL, + `location_costume_head_mid` tinyint(1) unsigned DEFAULT NULL, + `location_costume_head_low` tinyint(1) unsigned DEFAULT NULL, + `location_costume_garment` tinyint(1) unsigned DEFAULT NULL, + `location_ammo` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_armor` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_weapon` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_shield` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_shoes` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_right_accessory` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_left_accessory` tinyint(1) unsigned DEFAULT NULL, + `weapon_level` tinyint(1) unsigned DEFAULT NULL, + `equip_level_min` tinyint(3) unsigned DEFAULT NULL, + `equip_level_max` tinyint(3) unsigned DEFAULT NULL, + `refineable` tinyint(1) unsigned DEFAULT NULL, + `view` smallint(5) unsigned DEFAULT NULL, + `alias_name` varchar(50) DEFAULT NULL, + `flag_buyingstore` tinyint(1) unsigned DEFAULT NULL, + `flag_deadbranch` tinyint(1) unsigned DEFAULT NULL, + `flag_container` tinyint(1) unsigned DEFAULT NULL, + `flag_uniqueid` tinyint(1) unsigned DEFAULT NULL, + `flag_bindonequip` tinyint(1) unsigned DEFAULT NULL, + `flag_dropannounce` tinyint(1) unsigned DEFAULT NULL, + `flag_noconsume` tinyint(1) unsigned DEFAULT NULL, + `flag_dropeffect` varchar(20) DEFAULT NULL, + `delay_duration` bigint(20) unsigned DEFAULT NULL, + `delay_status` varchar(30) DEFAULT NULL, + `stack_amount` smallint(5) unsigned DEFAULT NULL, + `stack_inventory` tinyint(1) unsigned DEFAULT NULL, + `stack_cart` tinyint(1) unsigned DEFAULT NULL, + `stack_storage` tinyint(1) unsigned DEFAULT NULL, + `stack_guildstorage` tinyint(1) unsigned DEFAULT NULL, + `nouse_override` smallint(5) unsigned DEFAULT NULL, + `nouse_sitting` tinyint(1) unsigned DEFAULT NULL, + `trade_override` smallint(5) unsigned DEFAULT NULL, + `trade_nodrop` tinyint(1) unsigned DEFAULT NULL, + `trade_notrade` tinyint(1) unsigned DEFAULT NULL, + `trade_tradepartner` tinyint(1) unsigned DEFAULT NULL, + `trade_nosell` tinyint(1) unsigned DEFAULT NULL, + `trade_nocart` tinyint(1) unsigned DEFAULT NULL, + `trade_nostorage` tinyint(1) unsigned DEFAULT NULL, + `trade_noguildstorage` tinyint(1) unsigned DEFAULT NULL, + `trade_nomail` tinyint(1) unsigned DEFAULT NULL, + `trade_noauction` tinyint(1) unsigned DEFAULT NULL, + `script` text, + `equip_script` text, + `unequip_script` text, + PRIMARY KEY (`id`), + UNIQUE INDEX `UniqueAegisName` (`name_aegis`) +) ENGINE=MyISAM; + +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1101,'Sword','Sword','Weapon','1hSword',100,500,25,1,3,true,true,true,true,true,true,true,true,true,true,true,true,1,2,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1102,'Sword_','Sword','Weapon','1hSword',100,500,25,1,4,true,true,true,true,true,true,true,true,true,true,true,true,1,2,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1103,'Sword__','Sword','Weapon','1hSword',100,500,25,1,true,true,true,true,true,true,true,true,true,true,true,true,1,2,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1104,'Falchion','Falchion','Weapon','1hSword',1500,600,39,1,3,true,true,true,true,true,true,true,true,true,true,true,true,1,2,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1105,'Falchion_','Falchion','Weapon','1hSword',1500,600,39,1,4,true,true,true,true,true,true,true,true,true,true,true,true,1,2,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1106,'Falchion__','Falchion','Weapon','1hSword',1500,600,39,1,true,true,true,true,true,true,true,true,true,true,true,true,1,2,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1107,'Blade','Blade','Weapon','1hSword',2900,700,53,1,3,true,true,true,true,true,true,true,true,true,true,true,true,1,2,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1108,'Blade_','Blade','Weapon','1hSword',2900,700,53,1,4,true,true,true,true,true,true,true,true,true,true,true,true,1,2,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1109,'Blade__','Blade','Weapon','1hSword',2900,700,53,1,true,true,true,true,true,true,true,true,true,true,true,true,1,2,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1110,'Lapier','Rapier','Weapon','1hSword',10000,500,70,1,2,true,true,true,true,true,true,true,true,true,true,true,true,2,14,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1111,'Lapier_','Rapier','Weapon','1hSword',10000,500,70,1,3,true,true,true,true,true,true,true,true,true,true,true,true,2,14,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1112,'Lapier__','Rapier','Weapon','1hSword',10000,500,70,1,true,true,true,true,true,true,true,true,true,true,true,true,2,14,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1113,'Scimiter','Scimitar','Weapon','1hSword',17000,700,85,1,2,true,true,true,true,true,true,true,true,true,true,true,true,2,14,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1114,'Scimiter_','Scimitar','Weapon','1hSword',17000,700,85,1,3,true,true,true,true,true,true,true,true,true,true,true,true,2,14,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1115,'Scimiter__','Scimitar','Weapon','1hSword',17000,700,85,1,3,true,true,true,true,true,true,true,true,true,true,true,true,2,14,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1116,'Katana','Katana','Weapon','2hSword',2000,1000,60,1,3,true,true,true,true,true,1,4,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1117,'Katana_','Katana','Weapon','2hSword',2000,1000,60,1,4,true,true,true,true,true,1,4,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1118,'Katana__','Katana','Weapon','2hSword',2000,1000,60,1,true,true,true,true,true,1,4,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1119,'Tsurugi','Tsurugi','Weapon','1hSword',51000,1200,130,1,1,true,true,true,true,true,true,true,true,true,true,3,27,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1120,'Tsurugi_','Tsurugi','Weapon','1hSword',51000,1200,130,1,2,true,true,true,true,true,true,true,true,true,true,3,27,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1121,'Tsurugi__','Tsurugi','Weapon','1hSword',51000,1200,130,1,true,true,true,true,true,true,true,true,true,true,3,27,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1122,'Ring_Pommel_Saber','Ring Pommel Saber','Weapon','1hSword',24000,900,100,1,2,true,true,true,true,true,true,true,true,true,true,2,14,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1123,'Haedonggum','Haedonggum','Weapon','1hSword',50000,900,120,1,1,true,true,true,true,true,true,true,true,true,true,3,27,true,'bonus bInt,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1124,'Orcish_Sword','Orcish Sword','Weapon','1hSword',20,800,90,1,true,true,true,true,true,true,true,true,true,true,true,true,3,5,true,'bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1125,'Ring_Pommel_Saber_','Ring Pommel Saber','Weapon','1hSword',24000,900,100,1,3,true,true,true,true,true,true,true,true,true,true,2,14,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1126,'Saber','Saber','Weapon','1hSword',49000,1000,115,1,2,true,true,true,true,true,true,true,true,true,true,3,27,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1127,'Saber_','Saber','Weapon','1hSword',49000,1000,115,1,3,true,true,true,true,true,true,true,true,true,true,3,27,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1128,'Hae_Dong_Gum_','Haedonggum','Weapon','1hSword',50000,900,120,1,2,true,true,true,true,true,true,true,true,true,true,3,27,true,'bonus bInt,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1129,'Flamberge','Flamberge','Weapon','1hSword',60000,1500,150,1,true,true,true,3,27,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1130,'Nagan','Nagan','Weapon','1hSword',20,500,120,1,true,true,true,true,true,true,true,true,true,true,4,40,true,'skill "TF_DOUBLE",5; bonus bDoubleRate,25; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1131,'Ice_Falchon','Ice Falchion','Weapon','1hSword',20,600,100,1,true,true,true,true,true,true,true,true,true,true,4,40,true,'bonus bAtkEle,Ele_Water; bonus2 bAddEff,Eff_Freeze,500; bonus2 bAddEff2,Eff_Freeze,10; skill "MG_COLDBOLT",3; bonus3 bAutoSpell,"MG_COLDBOLT",3,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1132,'Edge','Edge','Weapon','1hSword',20,700,115,1,true,true,true,true,true,true,true,true,true,true,4,40,true,'bonus2 bAddEff,Eff_Curse,30; bonus2 bComaClass,Class_All,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1133,'Fire_Brand','Fireblend','Weapon','1hSword',20,500,100,1,true,true,true,true,true,true,true,true,true,true,4,40,true,'bonus bAtkEle,Ele_Fire; skill "MG_FIREBOLT",3; bonus3 bAutoSpell,"MG_FIREBOLT",3,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1134,'Scissores_Sword','Caesar\'s Sword','Weapon','1hSword',20,700,140,1,true,true,true,true,true,true,true,true,true,true,4,40,true,'bonus2 bAddRace,RC_Plant,25; bonus bIgnoreDefRace,RC_Plant;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1135,'Cutlas','Cutlus','Weapon','1hSword',20,900,150,1,true,true,true,true,true,true,true,true,true,true,4,40,true,'skill "SM_BASH",5; bonus bStr,2; bonus bDef,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1136,'Solar_Sword','Solar Sword','Weapon','1hSword',20,1200,85,1,true,true,true,true,true,true,true,true,true,true,4,40,true,'bonus bAtkEle,Ele_Fire; bonus2 bHPDrainRate,1000,1; bonus2 bSPLossRate,15,10000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1137,'Excalibur','Excalibur','Weapon','1hSword',20,1200,150,1,true,true,true,true,true,true,true,true,true,true,4,40,true,'bonus bInt,5; bonus bLuk,10; bonus bDex,-1; bonus bAtkEle,Ele_Holy;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1138,'Mysteltainn_','Mysteltainn','Weapon','1hSword',20,1000,170,1,true,true,true,true,true,true,true,true,true,true,4,40,true,'bonus bAtkEle,Ele_Dark; bonus2 bAddEle,Ele_Ghost,15; bonus3 bAutoSpell,"MG_STONECURSE",3,100; bonus2 bAddEff,Eff_Stone,10; bonus bDex,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1139,'Tale_Fing_','Tirfing','Weapon','1hSword',20,1000,200,1,true,true,true,true,true,true,true,true,true,true,4,40,true,'bonus bAtkEle,Ele_Dark; bonus2 bHPLossRate,35,10000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1140,'Byeorrun_Gum','Byeollungum','Weapon','1hSword',20,900,150,1,true,true,true,true,true,true,true,true,true,true,4,40,true,'bonus2 bSubClass,Class_Normal,-10; bonus2 bAddClass,Class_Boss,50; bonus bAllStats,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1141,'Immaterial_Sword','Immaterial Sword','Weapon','1hSword',20,900,140,1,true,true,true,true,true,true,true,true,true,true,4,40,true,'bonus bAtkEle,Ele_Ghost; bonus3 bSPVanishRate,3,30,BF_WEAPON; bonus bSPDrainValue,-1; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1142,'Jewel_Sword','Jeweled Sword','Weapon','1hSword',20,2200,104,1,true,true,true,true,true,true,true,true,true,true,3,68,true,'bonus2 bAddMonsterDropItemGroup,IG_Jewel,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1143,'Gaia_Sword','Gaia Sword','Weapon','1hSword',20,2500,140,1,true,true,true,true,true,true,true,true,true,true,3,74,true,'bonus2 bAddMonsterDropItemGroup,IG_Ore,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1144,'Sasimi','Sashimi','Weapon','1hSword',20,1400,75,1,true,true,true,true,true,true,true,true,true,true,3,48,true,'bonus bAtkEle,Ele_Wind; bonus3 bAddMonsterDropItem,544,RC_Fish,4000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1145,'Holy_Avenger','Holy Avenger','Weapon','1hSword',450000,1350,125,1,true,true,3,75,true,'bonus bAtkEle,Ele_Holy; bonus bVit,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_novice`,`job_supernovice`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1146,'Town_Sword','Town Sword','Weapon','1hSword',42000,800,100,1,1,true,true,true,3,30,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_novice`,`job_supernovice`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1147,'Town_Sword_','Town Sword','Weapon','1hSword',42000,800,100,1,2,true,true,true,3,30,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_novice`,`job_supernovice`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1148,'Star_Dust_Blade','Star Dust Blade','Weapon','1hSword',20,1000,140,1,1,true,true,true,4,45,true,'bonus2 bAddEff,Eff_Stun,500; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1149,'Flamberge_','Flamberge','Weapon','1hSword',60000,1500,150,1,2,true,true,true,3,27,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1151,'Slayer','Slayer','Weapon','2hSword',15000,1300,90,1,2,true,true,true,true,true,2,18,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1152,'Slayer_','Slayer','Weapon','2hSword',15000,1300,90,1,3,true,true,true,true,true,2,18,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1153,'Slayer__','Slayer','Weapon','2hSword',15000,1300,90,1,true,true,true,true,true,2,18,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1154,'Bastard_Sword','Bastard Sword','Weapon','2hSword',22500,1600,115,1,2,true,true,true,true,true,2,18,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1155,'Bastard_Sword_','Bastard Sword','Weapon','2hSword',22500,1600,115,1,3,true,true,true,true,true,2,18,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1156,'Bastard_Sword__','Bastard Sword','Weapon','2hSword',22500,1600,115,1,true,true,true,true,true,2,18,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1157,'Two_Hand_Sword','Two-Handed Sword','Weapon','2hSword',60000,2200,160,1,1,true,true,true,true,true,3,33,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1158,'Two_Hand_Sword_','Two-Handed Sword','Weapon','2hSword',60000,2200,160,1,2,true,true,true,true,true,3,33,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1159,'Two_Hand_Sword__','Two-Handed Sword','Weapon','2hSword',60000,2200,160,1,true,true,true,true,true,3,33,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1160,'Broad_Sword','Broad Sword','Weapon','2hSword',65000,2000,140,1,1,true,true,true,true,true,3,33,true,'bonus bDef,5; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1161,'Balmung','Balmung','Weapon','2hSword',20,1000,250,1,true,true,4,48,true,'bonus bInt,20; bonus bLuk,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1162,'Broad_Sword_','Broad Sword','Weapon','2hSword',65000,2000,140,1,2,true,true,true,true,true,3,33,true,'bonus bDef,5; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1163,'Claymore','Claymore','Weapon','2hSword',74000,2500,180,1,true,true,true,true,3,33,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1164,'Muramasa','Muramasa','Weapon','2hSword',20,1000,155,1,true,true,true,true,true,4,48,true,'bonus bCritical,30; bonus bAspdRate,8; bonus2 bAddEff2,Eff_Curse,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1165,'Masamune','Masamune','Weapon','2hSword',20,1000,200,1,true,true,true,true,true,4,48,true,'bonus bFlee,30; bonus bStr,-5; bonus bAspd,2; bonus bDefRate,-66; bonus bDef2Rate,-66;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1166,'Dragon_Slayer','Dragon Slayer','Weapon','2hSword',20,1300,150,1,true,true,true,true,true,4,48,true,'bonus bIgnoreDefRace,RC_Dragon; bonus2 bAddRace,RC_Dragon,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1167,'Schweizersabel','Schweizersabel','Weapon','2hSword',20,1600,160,1,true,true,true,true,true,4,48,true,'bonus bAtkEle,Ele_Wind; bonus bDef,1; bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",3,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1168,'Zweihander','Zweihander','Weapon','2hSword',20,2200,200,1,true,true,true,true,true,4,48,true,'bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1169,'Executioner_','Executioner','Weapon','2hSword',20,2200,155,1,true,true,true,true,true,4,48,true,'bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player_Human,-10; bonus bAtkEle,Ele_Dark;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1170,'Katzbalger','Katzbalger','Weapon','2hSword',20,2000,175,1,true,true,true,true,true,4,48,true,'bonus bVit,5; bonus bDef,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1171,'Zweihander_','Zweihander','Weapon','2hSword',20,2200,200,1,2,true,true,true,true,true,4,48,true,'bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1172,'Claymore_','Claymore','Weapon','2hSword',74000,2500,180,1,2,true,true,true,true,3,33,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1173,'Muramasa_C','Muramasa','Weapon','2hSword',1,204,1,true,true,true,true,true,4,1,100,true,true,true,true,true,true,true,true,'bonus bCritical,30; bonus bAspdRate,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1174,'Executioner_C','Executioner','Weapon','2hSword',2,190,1,true,true,true,true,true,4,100,true,true,true,true,true,true,true,true,'bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player_Human,-10; bonus bAtkEle,Ele_Dark;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1175,'Altas_Weapon','Atlas Weapon','Weapon','2hSword',20,3500,200,1,1,true,true,true,true,true,true,true,4,55,true,'bonus bCritical,10; if(readparam(bStr)>=80) bonus bBreakArmorRate,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1176,'Muscle_Cutter','Muscle Cutter','Weapon','2hSword',20,2200,160,1,2,true,true,true,true,true,true,true,4,55,true,'bonus2 bAddEff,Eff_Bleeding,800; bonus3 bAutoSpell,"AL_DECAGI",1,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1177,'Muramash','Muramash','Weapon','2hSword',20,120,1,true,true,true,true,true,1,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1178,'Schweizersabel_','Schweizersabel','Weapon','2hSword',20,1600,160,1,2,true,true,true,true,true,4,48,true,'bonus bAtkEle,Ele_Wind; bonus bDef,1; bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",3,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1179,'Executioner__','Executioner','Weapon','2hSword',20,2200,155,1,1,true,true,true,true,true,4,48,true,'bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player_Human,-10; bonus bAtkEle,Ele_Dark;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1180,'Dragon_Slayer_','Dragon Slayer','Weapon','2hSword',20,1300,150,1,2,true,true,true,true,true,4,48,true,'bonus bIgnoreDefRace,RC_Dragon; bonus2 bAddRace,RC_Dragon,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1181,'Tae_Goo_Lyeon','Tae Goo Lyeon','Weapon','2hSword',20,2000,250,1,2,true,true,true,true,true,true,true,4,90,true,'bonus bFlee2,10; if(JobLevel>=70 || (eaclass()&EAJL_THIRD && JobLevel>=50)) autobonus "{ bonus bBaseAtk,50; }",10,10000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; if(getrefine()>8) { bonus bDelayRate,-20; bonus bUseSPrate,-20; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1182,'Bloody_Eater','Bloody Eater','Weapon','2hSword',20,1200,200,1,2,true,true,true,true,true,true,true,4,50,true,'bonus bAtkEle,Ele_Ghost; autobonus "{ bonus bCritical,100; bonus bBaseAtk,50; }",1,5000,0,"{ specialeffect2 EF_FIRESPLASHHIT; }"; bonus bHPGainValue,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1183,'BF_Two_Handed_Sword1','Brave Assaulter\'s Katzbalger','Weapon','2hSword',20,200,1,true,true,true,true,true,3,80,true,100,true,true,true,true,true,true,true,'bonus bStr,2; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1184,'BF_Two_Handed_Sword2','Valorous Assaulter\'s Katzbalger','Weapon','2hSword',20,200,1,true,true,true,true,true,3,80,true,100,true,true,true,true,true,true,true,'bonus bCritical,20; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus bCritAtkRate,20; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1185,'Violet_Fear','Violet Fear','Weapon','2hSword',20,2200,275,1,2,true,true,true,true,true,true,true,4,80,true,'bonus3 bAutoSpell,"WZ_METEOR",3,30; bonus3 bAutoSpell,"WZ_FROSTNOVA",5,50; autobonus "{ bonus bIgnoreDefClass,Class_Normal; specialeffect2 EF_ENHANCE; }",50,5000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1186,'Death_Guidance','Death Guidance','Weapon','2hSword',20,2000,200,1,2,true,true,true,true,true,true,true,4,70,true,'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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1187,'Krieger_Twohand_Sword1','Glorious Claymore','Weapon','2hSword',20,220,1,true,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-3,1); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-3,1); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) { bonus3 bAutoSpell,"LK_CONCENTRATION",max(getskilllv("LK_CONCENTRATION"),1),30; bonus3 bAutoSpell,"LK_AURABLADE",max(getskilllv("LK_AURABLADE"),1),30; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1188,'Veteran_Sword','Veteran Sword','Weapon','2hSword',10000,2000,180,1,1,true,true,true,true,true,4,80,true,'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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1189,'Krasnaya','Krasnaya','Weapon','2hSword',20,3800,200,2,3,true,true,true,true,true,true,true,2,50,true,'if(readparam(bStr)>=95) { bonus bBaseAtk,20; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_crusader`,`job_knight`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1190,'Claymore_C','Claymore','Weapon','2hSword',220,1,true,true,true,true,3,1,100,true,true,true,true,true,true,true,true,'bonus2 bAddSize,Size_All,40;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1191,'Alca_Bringer','Alca Bringer','Weapon','2hSword',20,3400,280,2,true,true,true,true,true,true,3,100,true,'bonus bAspd,(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (1192,'P_Slayer1','Eden Slayer I','Weapon','2hSword',162,1,true,true,true,true,true,2,26,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (1193,'P_Slayer2','Eden Slayer II','Weapon','2hSword',185,1,true,true,true,true,true,2,40,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`script`) VALUES (1194,'F_Executioner_C','Executioner','Weapon','2hSword',2,190,1,true,true,true,true,true,4,'bonus bAtkEle,Ele_Dark; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bSubRace,RC_DemiHuman,-10; bonus bIgnoreDefRace,RC_DemiHuman; bonus2 bAddRace,RC_Player_Human,20; bonus2 bSubRace,RC_Player_Human,-10; bonus bIgnoreDefRace,RC_Player_Human;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`script`) VALUES (1195,'E_Executioner_C','Executioner','Weapon','2hSword',2,190,1,true,true,true,true,true,4,'bonus bAtkEle,Ele_Dark;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1196,'Chrome_Twohand_Sword','Chrome Two-Handed Sword','Weapon','2hSword',20,400,280,1,true,true,true,true,true,3,110,true,'bonus bUnbreakableWeapon; bonus bAgi,3; bonus bMaxHPrate,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (1197,'P_Slayer3','Eden Slayer III','Weapon','2hSword',200,1,true,true,true,true,true,3,60,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1198,'Hairtail','Cutlass','Weapon','2hSword',220,3,true,true,true,true,true,1,50,100,true,true,true,true,true,true,true,true,'bonus bCritical,20; bonus bCritAtkRate,50; bonus2 bAddEff,Eff_Crystalize,30; if(BaseLevel>99) { bonus bBaseAtk,50; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1199,'Ebony_Toe_Nail','Ebony Toe Nail','Weapon','2hSword',56000,1000,250,150,1,true,true,true,true,true,4,120,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1201,'Knife','Knife','Weapon','Dagger',50,400,17,1,3,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,1,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1202,'Knife_','Knife','Weapon','Dagger',50,400,17,1,4,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,1,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1203,'Knife__','Knife','Weapon','Dagger',50,400,17,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,1,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1204,'Cutter','Cutter','Weapon','Dagger',1250,500,30,1,3,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,1,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1205,'Cutter_','Cutter','Weapon','Dagger',1250,500,30,1,4,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,1,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1206,'Cutter__','Cutter','Weapon','Dagger',1250,500,30,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,1,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1207,'Main_Gauche','Main Gauche','Weapon','Dagger',2400,600,43,1,3,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,1,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1208,'Main_Gauche_','Main Gauche','Weapon','Dagger',2400,600,43,1,4,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,1,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1209,'Main_Gauche__','Main Gauche','Weapon','Dagger',2400,600,43,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,1,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1210,'Dirk','Dirk','Weapon','Dagger',8500,500,59,1,2,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,2,12,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1211,'Dirk_','Dirk','Weapon','Dagger',8500,500,59,1,3,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,2,12,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1212,'Dirk__','Dirk','Weapon','Dagger',8500,500,59,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,2,12,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1213,'Dagger','Dagger','Weapon','Dagger',14000,600,73,1,2,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,2,12,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1214,'Dagger_','Dagger','Weapon','Dagger',14000,600,73,1,3,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,2,12,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1215,'Dagger__','Dagger','Weapon','Dagger',14000,600,73,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,2,12,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1216,'Stiletto','Stiletto','Weapon','Dagger',19500,700,87,1,2,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,2,12,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1217,'Stiletto_','Stiletto','Weapon','Dagger',19500,700,87,1,3,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,2,12,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1218,'Stiletto__','Stiletto','Weapon','Dagger',19500,700,87,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,2,12,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1219,'Gladius','Gladius','Weapon','Dagger',43000,700,105,1,2,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,24,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1220,'Gladius_','Gladius','Weapon','Dagger',43000,700,105,1,3,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,24,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1221,'Gladius__','Gladius','Weapon','Dagger',43000,700,105,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,24,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1222,'Damascus','Damascus','Weapon','Dagger',49000,800,118,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,24,true,'bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1223,'Forturn_Sword','Fortune Sword','Weapon','Dagger',20,500,90,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,24,true,'bonus bLuk,5; bonus bFlee2,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1224,'Sword_Breaker','Swordbreaker','Weapon','Dagger',20,1000,70,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bBreakWeaponRate,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1225,'Mail_Breaker','Mailbreaker','Weapon','Dagger',20,1000,70,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bBreakArmorRate,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1226,'Damascus_','Damascus','Weapon','Dagger',49000,800,118,1,2,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,24,true,'bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1227,'Weeder_Knife','Weeder Knife','Weapon','Dagger',20,400,80,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bIgnoreDefRace,RC_Plant; bonus2 bAddRace,RC_Plant,15; bonus2 bSubRace,RC_Plant,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1228,'Combat_Knife','Combat Knife','Weapon','Dagger',20,400,80,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Demon,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1229,'Mama\'s_Knife','Kitchen Knife','Weapon','Dagger',20,500,75,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bCritical,30; bonus3 bAddMonsterDropItem,517,RC_Brute,5000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1230,'House_Auger','Ice Pick','Weapon','Dagger',20,600,80,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bDefRatioAtkClass,Class_All;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1231,'Bazerald','Bazerald','Weapon','Dagger',20,500,70,105,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bAtkEle,Ele_Fire; bonus bInt,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_assassin`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1232,'Assasin_Dagger','Assassin Dagger','Weapon','Dagger',20,600,140,1,true,true,4,36,true,'bonus bMaxHPrate,20; bonus bMaxSPrate,15; bonus bAspdRate,2; bonus bAtkEle,Ele_Dark;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1233,'Exercise','Exorciser','Weapon','Dagger',20,700,90,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bIgnoreDefRace,RC_Demon; bonus2 bSubRace,RC_Demon,5; bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player_Human,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1234,'Moonlight_Sword','Moonlight Dagger','Weapon','Dagger',20,700,50,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bMaxSPrate,10; bonus bSPDrainValue,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1235,'Azoth','Azoth','Weapon','Dagger',20,700,110,1,true,true,4,36,true,'bonus bClassChange,300;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1236,'Sucsamad','Sucsamad','Weapon','Dagger',20,800,140,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Wind,10; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1237,'Grimtooth_','Grimtooth','Weapon','Dagger',20,800,180,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bFlee,10; bonus bFlee2,5; bonus bDefRate,-50; bonus bDef2Rate,-50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1238,'Zeny_Knife','Zeny Knife','Weapon','Dagger',20,1200,64,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,70,true,'bonus2 bGetZenyNum,100,40;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1239,'Poison_Knife','Poison Knife','Weapon','Dagger',20,800,64,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,65,true,'bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,3000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1240,'Princess_Knife','Princess Knife','Weapon','Dagger',20,400,84,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,1,true,'bonus bAllStats,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1241,'Cursed_Dagger','Cursed Dagger','Weapon','Dagger',80000,400,55,1,true,true,true,true,true,4,85,true,'bonus2 bAddEff,Eff_Curse,5000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1242,'Counter_Dagger','Dagger of Counter','Weapon','Dagger',120000,550,140,1,true,true,true,true,true,4,55,true,'bonus bCritical,90;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`job_novice`,`job_supernovice`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (1243,'Novice_Knife','Novice Main-Gauche','Weapon','Dagger',1,45,1,true,true,true,1,1,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_assassin`,`job_ninja`,`job_rogue`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1244,'Holy_Dagger','Holy Dagger','Weapon','Dagger',20,800,100,1,true,true,true,true,true,4,55,true,'bonus bAtkEle,Ele_Holy; bonus2 bAddRace,RC_Demon,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_novice`,`job_supernovice`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1245,'Cinquedea','Cinquedea','Weapon','Dagger',40000,700,110,1,1,true,true,true,3,30,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_novice`,`job_supernovice`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1246,'Cinquedea_','Cinquedea','Weapon','Dagger',40000,700,110,1,2,true,true,true,3,30,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1247,'Kindling_Dagger','Kindle Dagger','Weapon','Dagger',10000,600,39,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,1,true,'bonus bAtkEle,Ele_Fire;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1248,'Obsidian_Dagger','Obsidian Dagger','Weapon','Dagger',10000,600,39,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,1,true,'bonus bAtkEle,Ele_Earth;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1249,'Fisherman\'s_Dagger','Fisherman\'s Dagger','Weapon','Dagger',10000,600,39,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,1,true,'bonus bAtkEle,Ele_Water;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1250,'Jur','Jur','Weapon','Katar',19500,800,125,1,2,true,true,true,2,18,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1251,'Jur_','Jur','Weapon','Katar',19500,800,125,1,3,true,true,true,2,18,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1252,'Katar','Katar','Weapon','Katar',41000,1200,148,1,1,true,true,true,3,33,true,'bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1253,'Katar_','Katar','Weapon','Katar',41000,1200,148,1,2,true,true,true,3,33,true,'bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1254,'Jamadhar','Jamadhar','Weapon','Katar',37200,1500,165,1,true,true,true,3,33,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1255,'Jamadhar_','Jamadhar','Weapon','Katar',37200,1500,165,1,1,true,true,true,3,33,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1256,'Katar_Of_Cold_Icicle','Katar of Frozen Icicle','Weapon','Katar',45000,1200,105,1,true,true,true,3,55,true,'bonus bAtkEle,Ele_Water; bonus2 bAddEff,Eff_Freeze,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1257,'Katar_Of_Thornbush','Katar of Quaking','Weapon','Katar',45000,1200,105,1,true,true,true,3,55,true,'bonus bAtkEle,Ele_Earth; bonus2 bAddEff,Eff_Blind,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1258,'Katar_Of_Raging_Blaze','Katar of Raging Blaze','Weapon','Katar',45000,1200,105,1,true,true,true,3,55,true,'bonus bAtkEle,Ele_Fire; bonus2 bAddEff,Eff_Silence,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1259,'Katar_Of_Piercing_Wind','Katar of Piercing Wind','Weapon','Katar',45000,1200,105,1,true,true,true,3,55,true,'bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Sleep,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1260,'Ghoul_Leg','Sharpened Legbone of Ghoul','Weapon','Katar',52500,1700,150,1,true,true,true,3,65,true,'bonus bAtkEle,Ele_Undead;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1261,'Infiltrator','Infiltrator','Weapon','Katar',57000,1500,140,1,true,true,true,4,75,true,'bonus2 bAddRace,RC_DemiHuman,50; bonus2 bAddRace,RC_Player_Human,50; bonus bDef,3; bonus bFlee,5; bonus bFlee2,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1262,'Nail_Of_Loki','Loki\'s Nail','Weapon','Katar',20,1200,115,1,true,true,true,3,55,true,'bonus2 bAddEff,Eff_Bleeding,300;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1263,'Unholy_Touch','Unholy Touch','Weapon','Katar',20,1250,151,1,true,true,true,4,70,true,'bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Curse,200; bonus bCritical,-1; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1264,'Various_Jur','Specialty Jur','Weapon','Katar',20,800,90,1,4,true,true,true,1,1,true,'bonus2 bAddEff2,Eff_Bleeding,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1265,'Bloody_Roar','Bloody Roar','Weapon','Katar',20,1000,120,1,true,true,true,4,75,true,'bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus bFlee,-(readparam(bAgi)+BaseLevel); bonus bHPrecovRate,-100; bonus bSPrecovRate,-100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1266,'Infiltrator_','Infiltrator','Weapon','Katar',57000,1500,140,1,1,true,true,true,4,75,true,'bonus2 bAddRace,RC_DemiHuman,50; bonus2 bAddRace,RC_Player_Human,50; bonus bDef,3; bonus bFlee,5; bonus bFlee2,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1267,'Infiltrator_C','Infiltrator','Weapon','Katar',1,189,1,true,true,true,4,1,100,true,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus bDef,3; bonus bFlee,5; bonus bFlee2,2; bonus bAspdRate,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1268,'Wild_Beast_Claw','Wild Beast Claw','Weapon','Katar',20,1450,160,1,1,true,true,true,true,true,4,55,true,'bonus3 bAutoSpell,"NPC_CRITICALWOUND",(getrefine()>=9?2:1),100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_assassin`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1269,'Inverse_Scale','Inverse Scale','Weapon','Katar',20,1500,140,1,true,true,true,true,true,4,55,true,'bonus bAtkEle,Ele_Holy; bonus3 bAutoSpell,"NPC_DRAGONFEAR",1,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1270,'Drill_Katar','Drill Katar','Weapon','Katar',20,1400,110,1,1,true,true,true,true,true,4,55,true,'bonus bHit,30; bonus3 bAutoSpell,"ST_FULLSTRIP",1,150;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1271,'Blood_Tears','Blood Tears','Weapon','Katar',20,1700,120,1,2,true,true,true,true,true,4,55,true,'bonus3 bAutoSpell,"NPC_WIDEBLEEDING",(getrefine()>=9?2:1),30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1272,'Scratcher','Scratcher','Weapon','Katar',20,120,1,true,true,true,1,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1273,'Bloody_Roar_C','Refined Bloody Roar','Weapon','Katar',1,148,1,true,true,true,4,100,true,true,true,true,true,true,true,true,'bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bHPRegenRate,3,5000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1274,'Unholy_Touch_C','Refined Unholy Touch','Weapon','Katar',1,179,1,true,true,true,4,100,true,true,true,true,true,true,true,true,'bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Curse,5000; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1275,'Katar_Of_Cold_Icicle_','Katar of Frozen Icicle','Weapon','Katar',45000,1200,105,1,3,true,true,true,3,55,true,'bonus bAtkEle,Ele_Water; bonus2 bAddEff,Eff_Freeze,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1276,'Katar_Of_Thornbush_','Katar of Quaking','Weapon','Katar',45000,1200,105,1,3,true,true,true,3,55,true,'bonus bAtkEle,Ele_Earth; bonus2 bAddEff,Eff_Blind,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1277,'Katar_Of_Raging_Blaze_','Katar of Raging Blaze','Weapon','Katar',45000,1200,105,1,3,true,true,true,3,55,true,'bonus bAtkEle,Ele_Fire; bonus2 bAddEff,Eff_Silence,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1278,'Katar_Of_Piercing_Wind_','Katar of Piercing Wind','Weapon','Katar',45000,1200,105,1,3,true,true,true,3,55,true,'bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Sleep,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1279,'BF_Katar1','Brave Carnage Katar','Weapon','Katar',20,130,1,true,true,true,3,80,true,100,true,true,true,true,true,true,true,'bonus bStr,1; bonus bDex,1; bonus bLuk,1; bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1280,'BF_Katar2','Valorous Carnage Katar','Weapon','Katar',20,130,1,true,true,true,3,80,true,100,true,true,true,true,true,true,true,'bonus bStr,1; bonus bDex,1; bonus bLuk,1; bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus bCritAtkRate,20; bonus bAspdRate,5; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1281,'Krieger_Katar1','Glorious Bloody Roar','Weapon','Katar',20,140,1,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) autobonus "{ bonus bAspdRate,100; }",70,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1282,'Krieger_Katar2','Glorious Jamadhar','Weapon','Katar',20,140,1,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus bCritAtkRate,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bCriticalAddRace,RC_DemiHuman,5; bonus2 bCriticalAddRace,RC_Player_Human,5; } if(.@r>8) autobonus "{ bonus bAspdRate,100; }",70,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1283,'Katar_Of_Speed','Katar Of Speed','Weapon','Katar',20,175,1,true,true,true,4,100,true,true,true,true,true,true,true,true,'bonus2 bSkillAtk,"AS_SONICBLOW",25; bonus bAspdRate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1284,'Krishna','Krishna','Weapon','Katar',20,1200,120,1,2,true,true,true,true,true,3,50,true,'bonus2 bSkillAtk,"AS_GRIMTOOTH",10; bonus3 bAutoSpell,"AS_SONICBLOW",max(getskilllv("AS_SONICBLOW"),1),100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1285,'Cakram','Chakram','Weapon','Katar',20,1000,130,1,2,true,true,true,true,true,3,50,true,'if(getskilllv("AS_KATAR")==10) { bonus bHit,10; } bonus2 bSkillAtk,"ASC_METEORASSAULT",20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1286,'Jamadhar_C','Jamadhar','Weapon','Katar',200,1,true,true,true,3,1,100,true,true,true,true,true,true,true,true,'bonus bUnbreakableWeapon; bonus2 bAddSize,Size_All,40;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1287,'Durga','Durga','Weapon','Katar',20,1200,190,1,1,true,true,true,3,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1288,'Bloody_Fear_C','Bloody Fear','Weapon','Katar',1,145,1,true,true,true,4,1,100,true,true,true,true,true,true,true,true,'bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bAddEff,Eff_Bleeding,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (1289,'P_Katar1','Eden Katar I','Weapon','Katar',155,1,true,true,true,3,60,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1290,'Agent_Katar','Agent Katar','Weapon','Katar',41000,1200,170,1,1,true,true,true,3,100,true,'bonus bHit,readparam(bLuk)/2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1291,'Guillotine_Katar','Guillotine Katar','Weapon','Katar',56000,1500,200,1,1,true,true,true,4,140,true,'bonus bDex,2; bonus bFlee,-30; bonus2 bAddRace,RC_DemiHuman,50; bonus2 bAddRace,RC_Player_Human,50; bonus2 bSkillAtk,"GC_CROSSIMPACT",30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (1292,'Upg_Katar','Upg Katar','Weapon','Katar',20,1000,80,1,1,true,true,true,3,1,true,100,true,'.@r = getrefine(); bonus bBaseAtk,(.@r*10); bonus bCritAtkRate,(.@r*2); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*10);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1293,'Velum_Jamadhar','Vellum Jamadhar','Weapon','Katar',20,1200,170,1,true,true,true,4,95,true,'bonus4 bSetDefRace,RC_Player_Human,10000,5000,1; bonus4 bSetMDefRace,RC_Player_Human,10000,5000,1; bonus bAspdRate,getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1294,'Velum_Scare','Vellum Scale','Weapon','Katar',20,1200,50,1,true,true,true,4,95,true,'bonus3 bSPVanishRaceRate,RC_Player_Human,1000,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1295,'Blood_Tears_','Blood Tears','Weapon','Katar',20,1700,120,1,3,true,true,true,true,true,4,55,true,'bonus3 bAutoSpell,"NPC_WIDEBLEEDING",(getrefine()>=9?2:1),30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`slots`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1296,'Metal_Katar','Metal Katar','Weapon','Katar',20,75,1,1,true,true,true,3,1,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,(.@r*5); bonus bCritAtkRate,.@r; .@i = min(BaseLevel/10,12); if(.@i>2) bonus bBaseAtk,((.@i-2)*5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1297,'Inverse_Scale_','Inverse Scale','Weapon','Katar',20,1500,140,1,2,true,true,true,true,true,4,55,true,'bonus bAtkEle,Ele_Holy; bonus3 bAutoSpell,"NPC_DRAGONFEAR",1,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1298,'Shiver_Katar','Katar Of Horror','Weapon','Katar',60000,2700,110,1,2,true,true,true,4,105,true,'bonus bCritical,getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1299,'TE_Woe_Katar','TE Woe Katar','Weapon','Katar',120,1,true,true,true,3,40,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Bleeding,1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1300,'Cleaver_','Cleaver','Weapon','1hAxe',20,1200,140,1,3,true,true,true,true,true,true,true,4,44,true,'bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus3 bAddMonsterDropItem,517,RC_Brute,3000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1301,'Axe','Axe','Weapon','1hAxe',500,800,38,1,3,true,true,true,true,true,true,true,true,true,true,true,true,1,3,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1302,'Axe_','Axe','Weapon','1hAxe',500,800,38,1,4,true,true,true,true,true,true,true,true,true,true,true,true,1,3,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1303,'Axe__','Axe','Weapon','1hAxe',500,800,38,1,true,true,true,true,true,true,true,true,true,true,true,true,1,3,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1304,'Orcish_Axe','Orcish Axe','Weapon','1hAxe',20,1500,75,1,true,true,true,true,true,true,true,true,true,true,true,true,3,3,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1305,'Cleaver','Cleaver','Weapon','1hAxe',20,1200,140,1,true,true,true,true,true,true,true,4,44,true,'bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus3 bAddMonsterDropItem,517,RC_Brute,3000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1306,'War_Axe','War Axe','Weapon','1hAxe',20,4200,140,1,1,true,true,true,3,76,true,'bonus bDex,2; bonus bLuk,2; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1307,'Windhawk','Windhawk','Weapon','1hAxe',18000,1500,115,1,true,true,true,true,true,true,true,true,true,true,2,14,true,'bonus bAtkEle,Ele_Wind; bonus bAspdRate,5; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_novice`,`job_supernovice`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1308,'Golden_Axe','Golden Axe','Weapon','1hAxe',20,3000,170,1,true,true,true,4,45,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1309,'Orcish_Axe_','Orcish Axe','Weapon','1hAxe',20,1500,75,1,4,true,true,true,true,true,true,true,true,true,true,true,true,3,3,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1310,'Krieger_Onehand_Axe1','Glorious Cleaver','Weapon','1hAxe',20,130,1,true,true,true,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus bAspdRate,5; } if(.@r>8) { bonus bAspdRate,5; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,50; bonus4 bAutoSpellOnSkill,"MC_MAMMONITE","NPC_CRITICALWOUND",2,200; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1311,'Vecer_Axe','Vecer Axe','Weapon','1hAxe',20,1500,140,1,2,true,true,true,true,true,true,true,true,true,3,50,true,'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; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1312,'Orcish_Axe_C','Orcish Axe','Weapon','1hAxe',110,1,true,true,true,true,true,true,true,true,true,true,true,true,3,1,100,true,true,true,true,true,true,true,true,'bonus2 bAddSize,Size_All,70;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1313,'Tourist_Axe','Tourist Axe','Weapon','1hAxe',500,77,1,true,true,true,true,true,true,true,true,true,true,true,true,1,1,100,true,true,true,true,true,true,true,'bonus bStr,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`script`) VALUES (1314,'F_Tomahawk_C','Tomahawk','Weapon','2hAxe',2,200,1,true,true,true,true,true,true,true,true,4,'bonus bAtkEle,Ele_Wind; skill "ITM_TOMAHAWK",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (1315,'F_Right_Epsilon_C','Light Epsilon','Weapon','2hAxe',1,229,1,true,true,true,true,true,true,true,true,4,1,'bonus bAtkEle,Ele_Holy; bonus bStr,10; bonus2 bAddRace,RC_Demon,3; skill "AL_HEAL",3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_merchant`,`location_right_hand`,`weapon_level`,`equip_level_min`) VALUES (1316,'Adventure_Axe','Adventure Axe','Weapon','1hAxe',100,1,true,true,true,true,1,1); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_merchant`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1317,'Academy_Axe','Academy Axe','Weapon','1hAxe',1600,130,1,1,true,true,true,true,1,30,true,'bonus bUnbreakableWeapon; bonus bAspdRate,5-(BaseLevel/10); bonus bMaxHP,200-(40*(BaseLevel/10));'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1318,'Dofle_Axe','Deflation Axe','Weapon','1hAxe',50000,1800,180,1,2,true,true,true,true,true,true,true,true,true,true,4,105,true,'skill "ITM_TOMAHAWK",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1319,'TE_Woe_Axe','TE Woe Axe','Weapon','1hAxe',100,1,true,true,true,true,true,true,true,true,true,true,true,true,3,40,true,100,true,true,true,true,true,true,true,'bonus bUnbreakableWeapon; bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Freeze,1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1321,'Dofle_Axe_','Deflation Axe','Weapon','1hAxe',50000,1800,180,1,3,true,true,true,true,true,true,true,true,true,true,4,105,true,'skill "ITM_TOMAHAWK",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_gunslinger`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_monk`,`job_ninja`,`job_novice`,`job_priest`,`job_rebellion`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_summoner`,`job_supernovice`,`job_swordman`,`job_taekwon`,`job_thief`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1322,'Ru_Blue_Axe','Blue Axe','Weapon','1hAxe',10,1800,180,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,100,true,'bonus bStr,5; bonus bInt,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1323,'Ru_Gold_Axe','Ru Gold Axe','Weapon','1hAxe',1800,180,1,2,true,true,true,true,true,3,120,true,'bonus bStr,8; bonus bInt,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1324,'War_Axe_','War Axe','Weapon','1hAxe',20,4200,140,1,3,true,true,true,3,76,true,'bonus bDex,2; bonus bLuk,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_merchant`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1326,'Illusion_War_Axe','Illusion War Axe','Weapon','1hAxe',4200,180,1,2,true,true,true,true,4,120,true,'bonus bStr,2; bonus bDex,2; bonus bLuk,2; .@r = getrefine(); if (.@r >= 9) { .@val = 40; } else if (.@r >= 7) { .@val = 20; } bonus2 bSkillAtk,"NC_AXETORNADO",(100+.@val); bonus2 bSkillAtk,"NC_AXEBOOMERANG",(100+.@val); bonus2 bSkillAtk,"GN_CART_TORNADO",(75+.@val);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1333,'Golden_Wrench','Golden Wrench','Weapon','1hAxe',5500,220,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bAddClass,Class_all,5; bonus bBaseAtk,4*.@r; if (.@r>=11) .@val = 35; else if (.@r>=9) .@val = 20; bonus2 bSkillAtk,"NC_AXEBOOMERANG",.@val; bonus2 bSkillAtk,"NC_POWERSWING",.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_crusader`,`job_gunslinger`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_monk`,`job_ninja`,`job_novice`,`job_priest`,`job_rebellion`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_summoner`,`job_supernovice`,`job_swordman`,`job_taekwon`,`job_thief`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1336,'Guardian_Knight_Axe','Guardian Knight Axe','Weapon','1hAxe',1500,210,1,2,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,170,true,'bonus bUnbreakableWeapon; bonus2 bAddClass,Class_All,5; .@r = getrefine(); bonus bLongAtkRate,.@r; if(.@r >= 9){ bonus2 bSkillAtk,"NC_POWERSWING",20; bonus2 bSkillAtk,"NC_AXEBOOMERANG",20; } if(.@r >= 11){ bonus2 bAddRace,RC_Undead,20; bonus2 bAddRace,RC_Angel,20; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1351,'Battle_Axe','Battle Axe','Weapon','2hAxe',5400,1500,80,1,3,true,true,true,true,true,true,true,true,1,3,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1352,'Battle_Axe_','Battle Axe','Weapon','2hAxe',5400,1500,80,1,4,true,true,true,true,true,true,true,true,1,3,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1353,'Battle_Axe__','Battle Axe','Weapon','2hAxe',5400,1500,80,1,true,true,true,true,true,true,true,true,1,3,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1354,'Hammer','Hammer','Weapon','2hAxe',15500,2000,120,1,2,true,true,true,true,true,true,true,true,2,16,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1355,'Hammer_','Hammer','Weapon','2hAxe',15500,2000,120,1,3,true,true,true,true,true,true,true,true,2,16,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1356,'Hammer__','Hammer','Weapon','2hAxe',15500,2000,120,1,true,true,true,true,true,true,true,true,2,16,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1357,'Buster','Buster','Weapon','2hAxe',34000,2200,155,1,1,true,true,true,true,true,true,true,true,3,30,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1358,'Buster_','Buster','Weapon','2hAxe',34000,2200,155,1,2,true,true,true,true,true,true,true,true,3,30,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1359,'Buster__','Buster','Weapon','2hAxe',34000,2200,155,1,true,true,true,true,true,true,true,true,3,30,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1360,'Two_Handed_Axe','Two-Handed Axe','Weapon','2hAxe',55000,2500,185,1,1,true,true,true,true,true,true,true,true,3,30,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1361,'Two_Handed_Axe_','Two-Handed Axe','Weapon','2hAxe',55000,2500,185,1,2,true,true,true,true,true,true,true,true,3,30,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1362,'Two_Handed_Axe__','Two-Handed Axe','Weapon','2hAxe',55000,2500,185,1,true,true,true,true,true,true,true,true,3,30,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1363,'Brood_Axe','Bloody Axe','Weapon','2hAxe',20,4000,170,1,true,true,true,true,true,true,true,true,4,44,true,'bonus bStr,10; bonus bSpeedRate,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1364,'Great_Axe','Great Axe','Weapon','2hAxe',20,1800,187,1,true,true,true,true,true,true,true,true,4,44,true,'bonus2 bAddSkillBlow,"MC_MAMMONITE",5; bonus2 bAddEff,Eff_Stun,1500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1365,'Sabbath','Sabbath','Weapon','2hAxe',20,2300,120,1,true,true,true,true,true,true,true,true,4,44,true,'bonus bAtkEle,Ele_Dark; bonus2 bComaRace,RC_Demon,50; bonus2 bCriticalAddRace,RC_Undead,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1366,'Right_Epsilon','Light Epsilon','Weapon','2hAxe',20,2300,180,1,true,true,true,true,true,true,true,true,4,44,true,'bonus bAtkEle,Ele_Holy; skill "AL_HEAL",3; bonus2 bAddRace,RC_Demon,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1367,'Slaughter','Slaughter','Weapon','2hAxe',20,2500,120,1,true,true,true,true,true,true,true,true,4,44,true,'bonus bAtkEle,Ele_Earth; bonus bIgnoreDefRace,RC_Brute; bonus2 bComaRace,RC_Brute,40; bonus bIgnoreDefRace,RC_Player_Doram; bonus2 bComaRace,RC_Player_Doram,40;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1368,'Tomahawk','Tomahawk','Weapon','2hAxe',20,2500,165,1,true,true,true,true,true,true,true,true,4,44,true,'bonus bAtkEle,Ele_Wind; skill "ITM_TOMAHAWK",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1369,'Guillotine','Guillotine','Weapon','2hAxe',20,3000,215,1,true,true,true,true,true,true,true,true,4,44,true,'bonus2 bComaRace,RC_DemiHuman,30; bonus2 bComaRace,RC_Player_Human,30; bonus2 bSPDrainValueRace,RC_DemiHuman,2; bonus2 bSPDrainValueRace,RC_Player_Human,2; bonus2 bSPGainRace,RC_DemiHuman,20; bonus2 bSPGainRace,RC_Player_Human,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1370,'Doom_Slayer','Doom Slayer','Weapon','2hAxe',20,6000,10,1,true,true,true,true,true,true,true,true,4,80,true,'bonus bAspdRate,-40; bonus bUseSPrate,100; if(readparam(bStr)>=95){ bonus bBaseAtk,340; bonus2 bAddEff,Eff_Stun,3000; bonus bBreakArmorRate,500; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1371,'Doom_Slayer_','Doom Slayer','Weapon','2hAxe',20,6000,10,1,1,true,true,true,true,true,true,true,true,4,80,true,'bonus bAspdRate,-40; bonus bUseSPrate,100; if(readparam(bStr)>=95){ bonus bBaseAtk,340; bonus2 bAddEff,Eff_Stun,3000; bonus bBreakArmorRate,500; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1372,'Right_Epsilon_C','Light Epsilon','Weapon','2hAxe',1,229,1,true,true,true,true,true,true,true,true,4,1,100,true,true,true,true,true,true,true,true,'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; */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1373,'Brood_Axe_C','Refined Bloody Axe','Weapon','2hAxe',2,205,1,true,true,true,true,true,true,true,true,4,100,true,true,true,true,true,true,true,true,'bonus bStr,20; bonus bMatkRate,20; bonus bAspdRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1374,'Tomahawk_C','Tomahawk','Weapon','2hAxe',2,200,1,true,true,true,true,true,true,true,true,4,100,true,true,true,true,true,true,true,true,'bonus bAtkEle,Ele_Wind; skill "ITM_TOMAHAWK",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1375,'Berdysz','Berdysz','Weapon','2hAxe',20,2500,200,1,2,true,true,true,true,true,true,true,true,true,true,3,70,true,'bonus2 bSubSize,Size_Medium,13; bonus2 bSubSize,Size_Large,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1376,'Heart_Breaker','Heart Breaker','Weapon','2hAxe',20,2000,175,1,1,true,true,true,true,true,true,true,true,true,true,4,70,true,'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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1377,'Hurricane_Fury','Hurricane\'s Fury','Weapon','2hAxe',20,3500,332,1,1,true,true,true,true,true,true,true,true,true,true,4,80,true,'.@r = getrefine(); bonus2 bSubSize,Size_Medium,10+.@r; bonus bAspdRate,.@r; bonus3 bAutoSpell,"NPC_PULSESTRIKE",5,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1378,'Great_Axe_C','Refined Great Axe','Weapon','2hAxe',1,215,1,true,true,true,true,true,true,true,true,4,100,true,true,true,true,true,true,true,true,'bonus bStr,5; bonus bHit,20; bonus2 bSkillAtk,"MC_MAMMONITE",20; bonus2 bAddEff,Eff_Stun,2000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1379,'BF_Two_Handed_Axe1','Valorous Insane Battle Axe','Weapon','2hAxe',20,200,1,true,true,true,true,true,true,true,true,3,80,true,100,true,true,true,true,true,true,true,'bonus bStr,3; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1380,'BF_Two_Handed_Axe2','Brave Insane Battle Axe','Weapon','2hAxe',20,200,1,true,true,true,true,true,true,true,true,3,80,true,100,true,true,true,true,true,true,true,'bonus bStr,3; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; autobonus "{ bonus bBreakArmorRate,10000; }",20,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`) VALUES (1381,'N_Battle_Axe','Novice Battle Axe','Weapon','2hAxe',100,1,3,true,true,true,true,true,true,true,true,1,3); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1382,'Krieger_Twohand_Axe1','Glorious Two-Handed Axe','Weapon','2hAxe',20,220,1,true,true,true,true,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-3,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-3,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,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; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_merchant`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1383,'Holy_Celestial_Axe','Celestial Axe','Weapon','2hAxe',20,1500,200,1,true,true,true,true,true,4,60,true,'bonus2 bAddRace,RC_Undead,10; bonus3 bAutoSpell,"AL_BLESSING",5,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1384,'Veteran_Axe','Veteran Axe','Weapon','2hAxe',10000,3000,250,1,2,true,true,true,true,true,true,true,true,3,80,true,'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; bonus4 bAutoSpellOnSkill,"BS_HAMMERFALL","SM_MAGNUM",3,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_blacksmith`,`class_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1385,'Bradium_Stonehammer','Bradium Stone Hammer','Weapon','2hAxe',20,2700,210,1,true,true,true,true,4,75,true,'bonus3 bAddEffOnSkill,"BS_HAMMERFALL",Eff_Stun,500+(200*getrefine());'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1386,'Doom_Slayer_I','Doom Slayer','Weapon','2hAxe',20,1,true,true,true,true,true,true,true,true,4,100,true,true,true,true,true,true,true,true,'bonus bAspdRate,-25; bonus bUseSPrate,100; if(readparam(bStr)>=95){ bonus bBaseAtk,400; bonus2 bAddEff,Eff_Stun,3000; bonus bBreakArmorRate,500; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1387,'Giant_Axe','Giant Axe','Weapon','2hAxe',20,4000,330,1,1,true,true,true,true,true,true,true,true,3,50,true,'bonus2 bSkillAtk,"WS_CARTTERMINATION",15; if(readparam(bStr)>=95) { bonus bHit,10; bonus bAspdRate,3; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1388,'Two_Handed_Axe_C','Two-Handed Axe','Weapon','2hAxe',220,1,true,true,true,true,true,true,true,true,3,1,100,true,true,true,true,true,true,true,true,'bonus2 bAddSize,Size_All,40;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`script`) VALUES (1389,'E_Tomahawk_C','Tomahawk','Weapon','2hAxe',2,200,1,true,true,true,true,true,true,true,true,4,'bonus bAtkEle,Ele_Wind;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (1390,'E_Right_Epsilon_C','Light Epsilon','Weapon','2hAxe',1,229,1,true,true,true,true,true,true,true,true,4,1,'bonus bAtkEle,Ele_Holy; bonus bStr,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (1391,'P_Two_Handed_Axe1','Eden Two-Handed Axe I','Weapon','2hAxe',195,1,true,true,true,true,true,true,true,true,3,60,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`class_upper`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1392,'Ygnus_Stale','Ignus Steel','Weapon','2hAxe',56000,1900,250,1,1,true,true,true,true,true,true,true,true,true,true,4,95,true,'bonus bAtkEle,Ele_Fire; bonus bUnbreakableWeapon; bonus2 bAddEff,Eff_Burning,200; bonus2 bAddEff2,Eff_Burning,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`class_upper`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1393,'End_Sektura','End Sectora','Weapon','2hAxe',56000,1900,250,1,1,true,true,true,true,true,true,true,true,true,true,4,95,true,'bonus bAtkEle,Ele_Water; bonus bUnbreakableWeapon; bonus2 bAddEff,Eff_Freeze,300; bonus2 bAddEff2,Eff_Freeze,300;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (1394,'Upg_Two_Handed_Axe','Upg Two Handed Axe','Weapon','2hAxe',20,2000,110,1,1,true,true,true,true,true,true,true,true,3,1,true,100,true,'bonus bBaseAtk,(getrefine()*14); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*10); bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1395,'Velum_Buster','Vellum Buster','Weapon','2hAxe',20,2500,50,1,true,true,true,true,true,true,true,true,4,95,true,'bonus bUnbreakableWeapon; bonus3 bSPVanishRaceRate,RC_Player_Human,1000,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1396,'Velum_Guillotine','Vellum Guillotine','Weapon','2hAxe',20,5500,300,1,true,true,true,true,true,true,true,true,4,95,true,'bonus bUnbreakableWeapon; bonus2 bAddRace,RC_Player_Human,40; bonus2 bIgnoreDefRaceRate,RC_Player_Human,30; .@r = getrefine(); if(.@r>=6) { bonus2 bSkillAtk,"NC_AXEBOOMERANG",80; bonus2 bSkillAtk,"NC_POWERSWING",80; } if(.@r>=9) { bonus2 bAddRace,RC_Player_Human,60; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_blacksmith`,`class_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1397,'Bradium_Stonehammer_','Bradium Stone Hammer','Weapon','2hAxe',20,2700,210,1,2,true,true,true,true,4,75,true,'bonus3 bAddEffOnSkill,"BS_HAMMERFALL",Eff_Stun,500+(200*getrefine());'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1398,'Metal_Two_Handed_Axe','Metal Two Handed Axe','Weapon','2hAxe',20,105,1,1,true,true,true,true,true,true,true,true,3,1,true,100,true,true,true,true,true,true,true,'bonus bUnbreakableWeapon; bonus bBaseAtk,(getrefine()*7); .@i = min(BaseLevel/10,12); if(.@i>2) bonus bBaseAtk,((.@i-2)*5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1399,'TE_Woe_Two_Handed_Axe','TE Woe Two Handed Axe','Weapon','2hAxe',150,1,true,true,true,true,true,true,true,true,3,40,true,100,true,true,true,true,true,true,true,'bonus bUnbreakableWeapon; bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Stun,1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1400,'Spear_of_Vicious_Mind','Spear of Vicious Mind','Weapon','1hSpear',20,1400,140,3,1,true,true,true,true,4,160,true,'bonus bAtk,pow(min(getrefine(),15),2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1401,'Javelin','Javelin','Weapon','1hSpear',150,700,28,3,3,true,true,true,true,1,4,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1402,'Javelin_','Javelin','Weapon','1hSpear',150,700,28,3,4,true,true,true,true,1,4,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1403,'Javelin__','Javelin','Weapon','1hSpear',150,700,28,3,true,true,true,true,1,4,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1404,'Spear','Spear','Weapon','1hSpear',1700,850,44,3,3,true,true,true,true,1,4,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1405,'Spear_','Spear','Weapon','1hSpear',1700,850,44,3,4,true,true,true,true,1,4,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1406,'Spear__','Spear','Weapon','1hSpear',1700,850,44,3,true,true,true,true,1,4,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1407,'Pike','Pike','Weapon','1hSpear',3450,1000,60,3,3,true,true,true,true,1,4,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1408,'Pike_','Pike','Weapon','1hSpear',3450,1000,60,3,4,true,true,true,true,1,4,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1409,'Pike__','Pike','Weapon','1hSpear',3450,1000,60,3,true,true,true,true,1,4,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1410,'Lance','Lance','Weapon','2hSpear',60000,2500,185,3,true,true,true,true,true,3,33,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1411,'Lance_','Lance','Weapon','2hSpear',60000,2500,185,3,true,true,true,true,true,3,33,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1412,'Lance__','Lance','Weapon','2hSpear',60000,2500,185,3,true,true,true,true,true,3,33,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1413,'Gungnir','Gungnir','Weapon','1hSpear',20,500,120,3,true,true,true,true,4,4,true,'bonus bAtkEle,Ele_Wind; bonus bPerfectHitRate,25; bonus bHit,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1414,'Gelerdria','Gelerdria','Weapon','1hSpear',20,700,145,3,true,true,true,true,4,48,true,'bonus bAtkEle,Ele_Earth; bonus bMaxHP,800; bonus bMaxSP,-50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1415,'Skewer','Brocca','Weapon','1hSpear',20,850,100,3,true,true,true,true,4,48,true,'bonus bIgnoreDefClass,Class_Normal; bonus2 bAddEle,Ele_Neutral,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1416,'Tjungkuletti','Tjungkuletti','Weapon','1hSpear',20,1000,100,3,true,true,true,true,4,48,true,'bonus bSPDrainValue,1; bonus bSPGainValue,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1417,'Pole_Axe','Pole Axe','Weapon','1hSpear',20,3800,160,3,1,true,true,true,true,3,71,true,'bonus bStr,1; bonus bInt,2; bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1418,'Gungnir_','Gungnir','Weapon','1hSpear',20,500,120,3,2,true,true,true,true,4,4,true,'bonus bAtkEle,Ele_Wind; bonus bPerfectHitRate,25; bonus bHit,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1419,'Pole_Axe_C','Pole Axe','Weapon','1hSpear',1,4800,195,3,true,true,true,true,3,1,100,true,true,true,true,true,true,true,true,'bonus bStr,1; bonus bInt,2; bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1420,'Long_Horn','Long Horn','Weapon','1hSpear',20,1000,150,3,1,true,true,true,true,true,true,4,65,true,'bonus bAtkEle,Ele_Holy; bonus2 bAddEff,Eff_Bleeding,500; skill "TF_DETOXIFY",1; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1421,'Battle_Hook','Battle Hook','Weapon','1hSpear',20,900,140,3,1,true,true,true,true,true,true,4,65,true,'bonus2 bAddEff,Eff_Stun,500; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; skill "KN_PIERCE",3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1422,'Hunting_Spear','Hunting Spear','Weapon','1hSpear',20,4200,180,3,1,true,true,true,true,true,true,4,60,true,'bonus bIgnoreDefRace,RC_Brute; bonus bIgnoreDefRace,RC_Player_Doram; bonus3 bAddMonsterDropItem,517,RC_Brute,1000; bonus3 bAutoSpell,"LK_JOINTBEAT",3,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1423,'Pole_XO','Pole XO','Weapon','1hSpear',20,120,3,true,true,true,true,1,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1424,'Skewer_C','Refined Brocca','Weapon','1hSpear',1,149,3,true,true,true,true,4,1,100,true,true,true,true,true,true,true,true,'bonus bIgnoreDefClass,Class_Normal; bonus2 bAddSize,Size_Medium,20; bonus2 bAddSize,Size_Large,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1425,'BF_Spear1','Assaulter Spear','Weapon','1hSpear',20,60,3,true,true,true,true,3,80,true,100,true,true,true,true,true,true,true,'bonus bStr,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(BaseJob==Job_Crusader) bonus bAspdRate,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1426,'Krieger_Onehand_Spear1','Glorious Spear','Weapon','1hSpear',20,130,3,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus bAspdRate,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,100; bonus bAspdRate,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1427,'Spear_Of_Excellent','Spear Of Excellent','Weapon','1hSpear',20,160,3,true,true,true,true,3,100,true,true,true,true,true,true,true,true,'bonus2 bSkillAtk,"SM_MAGNUM",25; bonus bStr,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1428,'Long_Horn_M','Long Horn','Weapon','1hSpear',20,1000,150,3,1,true,true,true,true,true,true,4,65,true,100,true,true,true,true,true,true,true,'bonus bAtkEle,Ele_Holy; bonus2 bAddEff,Eff_Bleeding,500; skill "TF_DETOXIFY",1; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1429,'Hunting_Spear_M','Hunting Spear','Weapon','1hSpear',20,4200,180,3,1,true,true,true,true,true,true,4,60,true,100,true,true,true,true,true,true,true,'bonus bIgnoreDefRace,RC_Brute; bonus bIgnoreDefRace,RC_Player_Doram; bonus3 bAddMonsterDropItem,517,RC_Brute,1000; bonus3 bAutoSpell,"LK_JOINTBEAT",3,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1430,'Pike_C','Pike','Weapon','1hSpear',74,3,true,true,true,true,1,1,100,true,true,true,true,true,true,true,true,'bonus2 bAddSize,Size_All,70;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (1431,'F_Pole_Axe_C','Pole Axe','Weapon','1hSpear',1,4800,195,3,true,true,true,true,3,1,'bonus bStr,1; bonus bInt,2; bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (1432,'E_Pole_Axe_C','Pole Axe','Weapon','1hSpear',1,4800,195,3,true,true,true,true,3,1,'bonus bStr,1; bonus bInt,2; bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1433,'Imperial_Spear','Imperial Spear','Weapon','1hSpear',20,1800,180,40,3,1,true,true,true,true,3,102,true,'.@r = getrefine(); bonus2 bSkillAtk,"LG_CANNONSPEAR",20+(.@r/2*3); bonus2 bSkillAtk,"LG_BANISHINGPOINT",20+(.@r/2*3);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (1434,'P_Sphere1','Eden Spear I','Weapon','1hSpear',165,3,true,true,true,true,3,60,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1435,'Cannon_Spear','Cannon Spear','Weapon','1hSpear',56000,1600,180,3,1,true,true,true,true,true,4,100,true,'bonus bMaxSP,-100; bonus2 bSkillAtk,"LG_CANNONSPEAR",10; bonus2 bSkillAtk,"LG_CANNONSPEAR",(getrefine()/3);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1436,'Velum_Spear','Vellum Spear','Weapon','1hSpear',20,850,150,3,true,true,true,true,4,95,true,'bonus2 bAddRace,RC_Player_Human,60; .@r = getrefine(); if(.@r>=6) { bonus2 bSkillAtk,"RK_HUNDREDSPEAR",80; bonus2 bSkillAtk,"LG_PINPOINTATTACK",80; } if(.@r>=9) { bonus2 bAddRace,RC_Player_Human,30; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1437,'TE_Woe_Pike','TE Woe Pike','Weapon','1hSpear',100,3,true,true,true,true,3,40,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Curse,1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (1438,'Thanos_Spear','Thanos Spear','Weapon','1hSpear',10,3000,150,100,3,1,true,true,true,true,true,true,true,4,120,true,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000;','heal -1000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1439,'Half_BF_Spear1','Half BF Spear1','Weapon','1hSpear',20,60,3,true,true,true,true,3,80,true,'bonus bStr,2; bonus2 bAddRace,RC_DemiHuman,45; bonus2 bAddRace,RC_Player_Human,45; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon; if(BaseJob==Job_Crusader) bonus bAspdRate,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1440,'Battle_Hook_','Battle Hook','Weapon','1hSpear',20,900,140,3,3,true,true,true,true,true,true,4,65,true,'bonus2 bAddEff,Eff_Stun,500; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; skill "KN_PIERCE",3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1441,'Ru_Blue_Spear','Blue Spear','Weapon','1hSpear',10,1200,180,3,1,true,true,true,true,true,3,100,true,'bonus bStr,5; bonus bAgi,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1442,'Ru_Gold_Spear','Ru Gold Spear','Weapon','1hSpear',1200,180,3,2,true,true,true,true,true,3,120,true,'bonus bStr,8; bonus bAgi,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1443,'Crimson_Spear','Crimson Spear','Weapon','1hSpear',20,900,90,3,2,true,true,true,true,3,70,true,'.@r = getrefine(); bonus bBaseAtk,(.@r<=15?pow(.@r,2):225); bonus bBaseAtk,((max(0,BaseLevel-70)/10)*5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1445,'[Rental]_Hunting_Spear','[Rental] Hunting Spear','Weapon','1hSpear',20,140,3,2,true,true,true,true,3,50,true,'.@r = getrefine(); if(.@r >= 7){ bonus2 bAddRace,RC_Insect,10; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddEle,Ele_Water,10; bonus2 bAddEle,Ele_Earth,10; } if(.@r >= 9){ bonus2 bAddRace,RC_Insect,15; bonus2 bAddRace,RC_DemiHuman,15; bonus2 bAddEle,Ele_Water,15; bonus2 bAddEle,Ele_Earth,15; } bonus bAtkEle,Ele_Fire;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1446,'Requiem_Spear','Requiem Spear','Weapon','1hSpear',20,1000,130,3,true,true,true,4,100,true,'.@r = getrefine(); .@b = 40; bonus bUnbreakableWeapon; if(.@r>=5){ .@b += (.@r-5)*15+20; } bonus2 bAddRace2,RC2_BioLab,.@b;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`class_upper`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1447,'Poison_Forged_Spear','Poison Forged Spear','Weapon','1hSpear',500,150,3,3,true,true,true,true,true,true,true,4,100,true,'bonus bAtkEle,Ele_Poison; bonus bCritical,10; skill "TF_DOUBLE",5; bonus bDoubleRate,25; bonus2 bAddEff,Eff_Poison,1000; bonus2 bAddEff2,Eff_Poison,300;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1448,'Warrior\'s_Spear','Warrior\'s Spear','Weapon','1hSpear',2000,140,3,3,true,true,true,true,3,50,true,'.@r = getrefine(); if(.@r >= 7){ bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Plant,10; bonus2 bAddEle,Ele_Wind,10; bonus2 bAddEle,Ele_Earth,10; } if(.@r >= 9){ bonus2 bAddRace,RC_Brute,15; bonus2 bAddRace,RC_Plant,15; bonus2 bAddEle,Ele_Wind,15; bonus2 bAddEle,Ele_Earth,15; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1449,'Gelerdria_','Gelerdria','Weapon','1hSpear',20,700,145,3,3,true,true,true,true,4,48,true,'bonus bAtkEle,Ele_Earth; bonus bMaxHP,800; bonus bMaxSP,-50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1450,'Lance_of_Vicious_Mind','Lance of Vicious Mind','Weapon','2hSpear',20,2250,225,3,1,true,true,true,true,true,4,160,true,'bonus bAtk,pow(min(getrefine(),15),2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1451,'Guisarme','Guisarme','Weapon','2hSpear',13000,1000,84,3,2,true,true,true,true,true,2,18,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1452,'Guisarme_','Guisarme','Weapon','2hSpear',13000,1000,84,3,3,true,true,true,true,true,2,18,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1453,'Guisarme__','Guisarme','Weapon','2hSpear',13000,1000,84,3,true,true,true,true,true,2,18,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1454,'Glaive','Glaive','Weapon','2hSpear',20000,1200,104,3,2,true,true,true,true,true,2,18,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1455,'Glaive_','Glaive','Weapon','2hSpear',20000,1200,104,3,3,true,true,true,true,true,2,18,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1456,'Glaive__','Glaive','Weapon','2hSpear',20000,1200,104,3,true,true,true,true,true,2,18,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1457,'Partizan','Partizan','Weapon','2hSpear',27000,2000,124,3,1,true,true,true,true,true,2,18,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1458,'Partizan_','Partizan','Weapon','2hSpear',27000,2000,124,3,2,true,true,true,true,true,2,18,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1459,'Partizan__','Partizan','Weapon','2hSpear',27000,2000,124,3,true,true,true,true,true,2,18,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1460,'Trident','Trident','Weapon','2hSpear',51000,1200,150,3,2,true,true,true,true,true,3,33,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1461,'Trident_','Trident','Weapon','2hSpear',51000,1200,150,3,3,true,true,true,true,true,3,33,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1462,'Trident__','Trident','Weapon','2hSpear',51000,1200,150,3,true,true,true,true,true,3,33,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1463,'Halberd','Halberd','Weapon','2hSpear',54000,2500,165,3,1,true,true,true,true,true,3,33,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1464,'Halberd_','Halberd','Weapon','2hSpear',54000,2500,165,3,2,true,true,true,true,true,3,33,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1465,'Halberd__','Halberd','Weapon','2hSpear',54000,2500,165,3,true,true,true,true,true,3,33,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1466,'Crescent_Scythe','Crescent Scythe','Weapon','2hSpear',20,2500,180,3,true,true,true,true,true,4,48,true,'bonus bCriticalRate,30; bonus bHit,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1467,'Bill_Guisarme','Bill Guisarme','Weapon','2hSpear',20,1000,183,3,true,true,true,true,true,4,48,true,'bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Player_Doram,10; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1468,'Zephyrus','Zephyrus','Weapon','2hSpear',20,2000,170,3,true,true,true,true,true,4,48,true,'bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Silence,200; bonus3 bAutoSpell,"MG_THUNDERSTORM",3,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1469,'Longinus\'s_Spear','Longinus\'s Spear','Weapon','2hSpear',20,2500,180,3,true,true,true,true,true,4,48,true,'bonus bAtkEle,Ele_Dark; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus2 bAddRace,RC_Angel,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1470,'Brionac','Brionac','Weapon','2hSpear',20,3000,190,3,true,true,true,true,true,4,48,true,'bonus bAtkEle,Ele_Holy; skill "AL_HEAL",5; bonus3 bAutoSpell,"MG_SOULSTRIKE",3,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1471,'Hell_Fire','Hellfire','Weapon','2hSpear',20,3500,200,3,true,true,true,true,true,4,48,true,'bonus bAtkEle,Ele_Fire; bonus3 bAutoSpell,"MG_FIREBALL",5,100; bonus bStr,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1472,'Staff_Of_Soul','Soul Staff','Weapon','2hStaff',20,1400,25,200,1,true,true,true,true,true,true,3,73,true,'bonus bInt,5; bonus bAgi,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1473,'Wizardy_Staff','Wizardry Staff','Weapon','2hStaff',20,2400,120,200,1,true,true,true,true,true,true,4,90,true,'bonus bInt,6; bonus bDex,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1474,'Gae_Bolg','Gae Bolg','Weapon','2hSpear',20,2000,160,3,true,true,true,true,true,4,60,true,'bonus bIgnoreDefRace,RC_Dragon; bonus2 bAddClass,Class_Boss,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1475,'Horseback_Lance','Equestrian\'s Spear','Weapon','2hSpear',20,3700,200,4,true,true,true,true,true,4,75,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1476,'Crescent_Scythe_','Crescent Scythe','Weapon','2hSpear',20,2500,180,3,1,true,true,true,true,true,4,48,true,'bonus bCriticalRate,30; bonus bHit,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1477,'Spectral_Spear','Spectral Spear','Weapon','2hSpear',20,2000,170,3,true,true,true,true,true,4,75,true,'bonus2 bAddEle,Ele_Dark,20; bonus2 bAddRace,RC_Demon,20; bonus2 bAddRace,RC_Undead,20; bonus2 bSubEle,Ele_Dark,10; bonus2 bSubEle,Ele_Undead,10; bonus2 bSubRace,RC_Demon,10; bonus2 bAddEff2,Eff_Confusion,1000; bonus bHPGainValue,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1478,'Ahlspiess','Ahlspiess','Weapon','2hSpear',20,1000,120,3,true,true,true,true,4,65,true,'bonus bIgnoreDefClass,Class_Normal; bonus bIgnoreDefClass,Class_Boss; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus3 bAutoSpell,"KN_PIERCE",5,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1479,'Spectral_Spear_','Spectral Spear','Weapon','2hSpear',20,2000,170,3,1,true,true,true,true,true,4,75,true,'bonus2 bAddEle,Ele_Dark,20; bonus2 bAddRace,RC_Demon,20; bonus2 bAddRace,RC_Undead,20; bonus2 bSubEle,Ele_Dark,10; bonus2 bSubEle,Ele_Undead,10; bonus2 bSubRace,RC_Demon,10; bonus2 bAddEff2,Eff_Confusion,1000; bonus bHPGainValue,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1480,'Gae_Bolg_','Gae Bolg','Weapon','2hSpear',20,2000,160,3,2,true,true,true,true,true,4,60,true,'bonus bIgnoreDefRace,RC_Dragon; bonus2 bAddClass,Class_Boss,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1481,'Zephyrus_','Zephyrus','Weapon','2hSpear',20,2000,170,3,3,true,true,true,true,true,4,48,true,'bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Silence,200; bonus3 bAutoSpell,"MG_THUNDERSTORM",3,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1482,'BF_Lance1','Assaulter Lance','Weapon','2hSpear',20,160,3,true,true,true,true,true,3,80,true,100,true,true,true,true,true,true,true,'bonus bStr,2; bonus2 bAddRace,RC_DemiHuman,25; bonus2 bAddRace,RC_Player_Human,25; bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1483,'Ivory_Lance','Ivory Lance','Weapon','2hSpear',20,1000,160,3,1,true,true,true,true,true,true,true,3,50,true,'bonus bAgi,2; bonus bAspdRate,3; bonus2 bAddEff,Eff_Bleeding,300; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,30; skill "KN_SPEARSTAB",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_knight`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1484,'Cardo','Cardo','Weapon','2hSpear',20,5600,150,3,1,true,true,true,true,true,4,70,true,'bonus bAspdRate,-10; bonus bDef,getrefine()/2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1485,'Battle_Fork','Battle Fork','Weapon','2hSpear',20,700,112,3,4,true,true,true,true,true,true,true,2,50,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1486,'Krieger_Twohand_Spear1','Glorious Lance','Weapon','2hSpear',20,220,3,true,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,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; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1487,'Lance_C','Lance','Weapon','2hSpear',220,3,true,true,true,true,true,3,1,100,true,true,true,true,true,true,true,true,'bonus2 bAddSize,Size_All,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_crusader`,`job_knight`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1488,'Ahlspiess_C','Ahlspiess','Weapon','2hSpear',20,135,3,true,true,true,true,4,1,true,100,true,true,true,true,true,true,true,true,'bonus bIgnoreDefClass,Class_Normal; bonus bIgnoreDefClass,Class_Boss; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; bonus3 bAutoSpell,"KN_PIERCE",5,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1489,'Spearfish_','Marlin','Weapon','2hSpear',220,3,true,true,true,true,true,true,true,1,50,100,true,true,true,true,true,true,true,true,'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; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_knight`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (1490,'Giant_Lance','Gigantic Lance','Weapon','2hSpear',20,20000,20,3,true,true,true,4,140,true,'bonus bAspd,-10; bonus2 bSkillCooldown,"LK_SPIRALPIERCE",20000; if(readparam(bStr)>=120){ bonus bBaseAtk,300; }','heal 0,-600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (1491,'Upg_Lance','Upg Lance','Weapon','2hSpear',20,1500,105,3,1,true,true,true,true,true,3,1,true,100,true,'bonus bBaseAtk,(getrefine()*12); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*10);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1492,'Velum_Glaive','Vellum Glaive','Weapon','2hSpear',20,4500,250,3,true,true,true,true,true,4,95,true,'bonus2 bAddRace,RC_Player_Human,80; bonus2 bAddRace,RC_Player_Doram,80; .@r = getrefine(); if(.@r>=6) { bonus2 bSkillAtk,"LK_SPIRALPIERCE",100; bonus2 bSkillAtk,"LG_OVERBRAND",50; } if(.@r>=9) { bonus bShortWeaponDamageReturn,20; bonus bMagicDamageReturn,20; bonus5 bAutoSpellWhenHit,"NPC_MAGICMIRROR",7,300,BF_MAGIC,0; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1493,'Metal_Lance','Metal Lance','Weapon','2hSpear',20,100,3,1,true,true,true,true,true,3,1,true,100,true,true,true,true,true,true,true,'bonus bBaseAtk,(getrefine()*6); .@i = min(BaseLevel/10,12); if(.@i>2) bonus bBaseAtk,((.@i-2)*5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1494,'Undine_Spear','Spear Of Odin','Weapon','2hSpear',50000,3800,190,3,3,true,true,true,true,true,4,105,true,'bonus bAtkEle,Ele_Water; bonus bMaxHPrate,getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1495,'TE_Woe_Lance','TE Woe Lance','Weapon','2hSpear',150,3,true,true,true,true,true,3,40,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Blind,1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (1496,'Thanos_Long_Spear','Thanos Long Spear','Weapon','2hSpear',10,3750,250,50,3,1,true,true,true,true,true,true,true,true,4,120,true,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000;','heal -1000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1497,'Hell_Fire_','Hellfire','Weapon','2hSpear',20,3500,200,3,3,true,true,true,true,true,4,48,true,'bonus bAtkEle,Ele_Fire; bonus3 bAutoSpell,"MG_FIREBALL",5,100; bonus bStr,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1498,'Crimson_Lance','Crimson Lance','Weapon','2hSpear',20,1750,175,1,2,true,true,true,true,true,3,70,true,'.@r = getrefine(); bonus bBaseAtk,pow(.@r,2); bonus bBaseAtk,(max(0,BaseLevel-70)/10)*5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1499,'Requiem_Lance','Requiem Lance','Weapon','2hSpear',20,1500,220,3,true,true,true,true,4,100,true,'.@r = getrefine(); .@b = 40; .@c = 5; bonus bUnbreakableWeapon; if(.@r>=5){ .@b += (.@r-5)*15+30; .@c += (.@r-5); } bonus2 bAddRace2,RC2_BioLab,.@b; bonus2 bSubRace2,RC2_BioLab,.@c;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1501,'Club','Club','Weapon','Mace',120,700,23,1,3,true,true,true,true,true,true,true,true,true,true,true,true,1,2,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1502,'Club_','Club','Weapon','Mace',120,700,23,1,4,true,true,true,true,true,true,true,true,true,true,true,true,1,2,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1503,'Club__','Club','Weapon','Mace',120,700,23,1,true,true,true,true,true,true,true,true,true,true,true,true,1,2,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1504,'Mace','Mace','Weapon','Mace',1600,800,37,1,3,true,true,true,true,true,true,true,true,true,true,true,true,1,2,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1505,'Mace_','Mace','Weapon','Mace',1600,800,37,1,4,true,true,true,true,true,true,true,true,true,true,true,true,1,2,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1506,'Mace__','Mace','Weapon','Mace',1600,800,37,1,true,true,true,true,true,true,true,true,true,true,true,true,1,2,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1507,'Smasher','Smasher','Weapon','Mace',9000,1000,54,1,2,true,true,true,true,true,true,true,true,true,true,true,true,2,14,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1508,'Smasher_','Smasher','Weapon','Mace',9000,1000,54,1,3,true,true,true,true,true,true,true,true,true,true,true,true,2,14,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1509,'Smasher__','Smasher','Weapon','Mace',9000,1000,54,1,3,true,true,true,true,true,true,true,true,true,true,true,true,2,14,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1510,'Flail','Flail','Weapon','Mace',16000,900,69,1,2,true,true,true,true,true,true,true,true,true,true,2,14,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1511,'Flail_','Flail','Weapon','Mace',16000,900,69,1,3,true,true,true,true,true,true,true,true,true,true,2,14,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1512,'Flail__','Flail','Weapon','Mace',16000,900,69,1,3,true,true,true,true,true,true,true,true,true,true,2,14,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1513,'Morning_Star','Morning Star','Weapon','Mace',41000,1500,110,1,1,true,true,true,true,true,true,true,true,true,true,3,27,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1514,'Morning_Star_','Morning Star','Weapon','Mace',41000,1500,110,1,2,true,true,true,true,true,true,true,true,true,true,3,27,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1515,'Morning_Star__','Morning Star','Weapon','Mace',41000,1500,110,1,2,true,true,true,true,true,true,true,true,true,true,3,27,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1516,'Sword_Mace','Sword Mace','Weapon','Mace',50000,1200,130,1,true,true,true,true,true,true,true,true,true,true,3,27,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1517,'Sword_Mace_','Sword Mace','Weapon','Mace',50000,1200,130,1,1,true,true,true,true,true,true,true,true,true,true,3,27,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1518,'Sword_Mace__','Sword Mace','Weapon','Mace',50000,1200,130,1,1,true,true,true,true,true,true,true,true,true,true,3,27,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1519,'Chain','Chain','Weapon','Mace',23000,800,84,1,2,true,true,true,true,true,true,true,true,true,true,2,14,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1520,'Chain_','Chain','Weapon','Mace',23000,800,84,1,3,true,true,true,true,true,true,true,true,true,true,2,14,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1521,'Chain__','Chain','Weapon','Mace',23000,800,84,1,3,true,true,true,true,true,true,true,true,true,true,2,14,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1522,'Stunner','Stunner','Weapon','Mace',60000,2000,140,1,true,true,true,true,3,27,true,'bonus2 bAddEff,Eff_Stun,1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1523,'Spike','Spike','Weapon','Mace',20,700,85,1,true,true,true,true,4,40,true,'bonus bCriticalRate,40; bonus bDefRate,-66; bonus bDef2Rate,-66;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1524,'Golden_Mace','Golden Mace','Weapon','Mace',20,800,110,1,1,true,true,true,true,4,40,true,'bonus2 bAddRace,RC_Undead,10; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1525,'Long_Mace','Long Mace','Weapon','Mace',20,800,135,3,true,true,true,true,4,40,true,'bonus bLongAtkDef,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1526,'Slash','Slash','Weapon','Mace',20,1000,145,1,true,true,true,true,4,40,true,'bonus2 bAddRace,RC_Undead,15; bonus2 bComaRace,RC_Undead,10; bonus2 bExpAddRace,RC_Undead,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1527,'Quadrille','Quadrille','Weapon','Mace',20,900,165,1,true,true,true,true,4,40,true,'bonus2 bAddRace,RC_Undead,10; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus2 bAddEle,Ele_Earth,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1528,'Grand_Cross','Grand Cross','Weapon','Mace',20,1500,140,1,true,true,true,true,4,40,true,'bonus bAtkEle,Ele_Holy; bonus3 bAutoSpell,"PR_TURNUNDEAD",3,100; bonus2 bSPDrainValueRace,RC_Undead,1; bonus2 bSPGainRace,RC_Undead,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1529,'Iron_Driver','Iron Driver','Weapon','Mace',20,3000,155,2,true,true,true,3,78,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (1530,'Mjolnir','Mjolnir','Weapon','Mace',20,6000,350,1,true,true,true,true,true,true,true,4,95,'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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1531,'Spanner','Wrench','Weapon','Mace',20,2500,115,1,true,true,true,true,3,55,true,'bonus2 bAddEff,Eff_Blind,100; bonus2 bAddEff,Eff_Stun,100; bonus2 bAddEff,Eff_Poison,100; bonus2 bAddEff,Eff_Freeze,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1532,'Stunner_','Stunner','Weapon','Mace',60000,2000,140,1,2,true,true,true,true,3,27,true,'bonus2 bAddEff,Eff_Stun,1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1533,'Warrior_Balmung','Warrior\'s Balmung','Weapon','Mace',20,1000,170,1,true,4,48,true,100,true,true,true,true,true,true,true,true,'bonus bAllStats,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1534,'Spanner_C','Wrench','Weapon','Mace',2,150,1,true,true,true,true,3,100,true,true,true,true,true,true,true,true,'bonus2 bAddEff,Eff_Blind,100; bonus2 bAddEff,Eff_Stun,100; bonus2 bAddEff,Eff_Poison,100; bonus2 bAddEff,Eff_Freeze,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1535,'Hollgrehenn_Hammer','Hollgrehenn\'s Hammer','Weapon','Mace',4444,44,4,1,1,true,true,true,true,true,true,true,true,true,true,4,44,true,'bonus bBreakArmorRate,100; bonus bBreakWeaponRate,100; if(readparam(bStr)>=44) { bonus bBaseAtk,44; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1536,'Good_Morning_Star','Good Morning Star','Weapon','Mace',20,120,1,true,true,true,true,true,true,true,true,true,true,1,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1537,'Quadrille_C','Refined Quadrille','Weapon','Mace',1,193,1,true,true,true,true,4,100,true,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player_Human,30; bonus2 bAddRace,RC_Demon,40; bonus2 bAddRace,RC_Undead,40;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1538,'Spike_','Spike','Weapon','Mace',20,700,85,1,2,true,true,true,true,4,40,true,'bonus bCritical,40; bonus bDefRate,-67; bonus bDef2Rate,-67;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1539,'Golden_Mace_','Golden Mace','Weapon','Mace',20,800,110,1,2,true,true,true,true,4,40,true,'bonus2 bAddRace,RC_Undead,10; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1540,'Grand_Cross_','Grand Cross','Weapon','Mace',20,1500,140,1,1,true,true,true,true,4,40,true,'bonus bAtkEle,Ele_Holy; bonus3 bAutoSpell,"PR_TURNUNDEAD",3,100; bonus2 bSPDrainValueRace,RC_Undead,1; bonus2 bSPGainRace,RC_Undead,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1541,'Nemesis','Nemesis','Weapon','Mace',20,900,120,1,true,true,true,true,4,60,true,'bonus bAtkEle,Ele_Holy; bonus2 bAddEle,Ele_Dark,10; bonus2 bAddRace,RC_Demon,10; bonus3 bAutoSpell,"AL_CRUCIS",1+getrefine(),100; autobonus "{ bonus bBaseAtk,50; }",10,20000,BF_WEAPON,"{ specialeffect2 EF_BLOODDRAIN; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1542,'BF_Morning_Star1','Valorous Battlefield Morning Star','Weapon','Mace',20,105,1,true,true,true,true,true,true,true,true,true,true,true,true,3,80,true,100,true,true,true,true,true,true,true,'bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1543,'BF_Morning_Star2','Brave Battlefield Morning Star','Weapon','Mace',20,105,1,true,true,true,true,true,true,true,true,true,true,true,true,3,80,true,100,true,true,true,true,true,true,true,'bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus bUnbreakableWeapon; autobonus "{ bonus2 bAddEff,Eff_Stun,5000; }",10,6000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1544,'Lunakaligo','Lunakaligo','Weapon','Mace',20,700,110,1,3,true,true,true,true,true,true,3,50,true,'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; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`) VALUES (1545,'N_Mace','Novice Mace','Weapon','Mace',57,1,3,true,true,true,true,true,true,true,true,true,true,true,true,1,2); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1546,'Krieger_Onehand_Mace1','Glorious Morning Star','Weapon','Mace',20,130,1,true,true,true,true,true,true,true,true,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus bAspdRate,5; } if(.@r>8) { bonus2 bAddEff,Eff_Stun,2000; bonus bAspdRate,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1547,'Mace_Of_Madness','Mace Of Madness','Weapon','Mace',20,150,1,true,true,true,true,true,true,true,true,true,true,3,100,true,true,true,true,true,true,true,true,'bonus2 bSkillAtk,"MC_CARTREVOLUTION",25; bonus bStr,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1548,'Veteran_Hammer','Veteran Hammer','Weapon','Mace',10000,1800,160,1,2,true,true,true,true,3,80,true,'bonus bHealPower,getskilllv("AL_DP"); bonus bCriticalRate,getskilllv("PR_MACEMASTERY")*2; bonus bInt,1; bonus bLuk,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1549,'Pilebuncker','Pile Bunker','Weapon','Mace',10000,3500,450,1,true,true,true,true,true,3,99,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1550,'Book','Book','Weapon','Book',30000,600,85,1,3,true,true,true,true,2,14,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1551,'Bible','Bible','Weapon','Book',60000,1000,115,1,2,true,true,true,true,3,27,true,'bonus bInt,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1552,'Tablet','Tablet','Weapon','Book',51000,800,125,1,1,true,true,true,true,3,27,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1553,'Book_Of_Billows','Book of Billows','Weapon','Book',35000,750,90,1,true,true,true,true,3,27,true,'bonus bAtkEle,Ele_Water;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1554,'Book_Of_Mother_Earth','Book of Mother Earth','Weapon','Book',35000,750,90,1,true,true,true,true,3,27,true,'bonus bAtkEle,Ele_Earth;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1555,'Book_Of_Blazing_Sun','Book of the Blazing Sun','Weapon','Book',35000,750,90,1,true,true,true,true,3,27,true,'bonus bAtkEle,Ele_Fire;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1556,'Book_Of_Gust_Of_Wind','Book of Gust of Wind','Weapon','Book',35000,750,90,1,true,true,true,true,3,27,true,'bonus bAtkEle,Ele_Wind;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1557,'Book_Of_The_Apocalypse','Book of the Apocalypse','Weapon','Book',60000,800,120,1,true,true,true,true,4,40,true,'bonus bAtkEle,Ele_Dark; bonus2 bSubDefEle,Ele_Holy,-5; bonus2 bAddEle,Ele_Water,7; bonus2 bAddEle,Ele_Earth,7; bonus2 bAddEle,Ele_Fire,7; bonus2 bAddEle,Ele_Wind,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1558,'Girl\'s_Diary','Girl\'s Diary','Weapon','Book',1500,300,60,1,1,true,true,true,true,4,40,true,'bonus2 bAddDamageClass,1188,150;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1559,'Legacy_Of_Dragon','Legacy of Dragon','Weapon','Book',20,700,130,1,true,true,true,true,4,70,true,'bonus bInt,3; bonus bIgnoreDefRace,RC_Dragon; bonus2 bSPGainRace,RC_Dragon,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1560,'Diary_Of_Great_Sage','Sage\'s Diary','Weapon','Book',20,1100,100,120,1,2,true,true,true,true,3,60,true,'if(readparam(bStr)>=50) bonus bAspdRate,5; if(readparam(bInt)>=70) bonus bMatkRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1561,'Hardback','Hardcover Book','Weapon','Book',20,1500,140,1,1,true,true,true,true,4,55,true,'bonus bStr,3; bonus bDex,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (1562,'Bible_Of_Battlefield','Battlefield Textbook','Weapon','Book',20,700,110,1,1,true,true,true,true,4,80,'bonus bInt,3; bonus3 bAutoSpell,"AL_BLESSING",3+(getskilllv("AL_BLESSING")>3)*(getskilllv("AL_BLESSING")-3),20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1563,'Diary_Of_Great_Sage_C','Sage\'s Diary','Weapon','Book',1,135,140,1,true,true,true,true,3,1,100,true,true,true,true,true,true,true,true,'bonus bAspdRate,5; /*Gold PC Room: bonus bBaseAtk,10; bonus bMatk,10;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1564,'Encyclopedia','Encyclopedia','Weapon','Book',20,2000,110,100,1,2,true,true,true,true,3,70,true,'bonus bInt,3; bonus bDex,2; bonus bCritical,20+((readparam(bLuk)*2)/10);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1565,'Death_Note','Ledger of Death','Weapon','Book',20,1000,137,100,1,2,true,true,true,true,4,85,true,'bonus bStr,3; bonus bInt,3; bonus bLuk,-20; bonus2 bComaRace,RC_DemiHuman,10; bonus2 bComaRace,RC_Player_Human,10; bonus bAspdRate,getrefine(); if(BaseJob==Job_Sage) bonus3 bAutoSpell,"NPC_HELLJUDGEMENT",5,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1566,'Diary_Of_Great_Basil','Diary Of Great Basil','Weapon','Book',20,120,125,1,true,true,true,true,1,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1567,'Hardback_C','Refined Hardcover Book','Weapon','Book',1,168,100,1,true,true,true,true,4,1,100,true,true,true,true,true,true,true,true,'bonus bStr,5; bonus bDex,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1568,'Book_Of_Billows_','Book of Billows','Weapon','Book',35000,750,90,1,3,true,true,true,true,3,27,true,'bonus bAtkEle,Ele_Water;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1569,'Book_Of_Mother_Earth_','Book of Mother Earth','Weapon','Book',35000,750,90,1,3,true,true,true,true,3,27,true,'bonus bAtkEle,Ele_Earth;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1570,'Book_Of_Blazing_Sun_','Book of Blazing Sun','Weapon','Book',35000,750,90,1,3,true,true,true,true,3,27,true,'bonus bAtkEle,Ele_Fire;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1571,'Book_Of_Gust_Of_Wind_','Book of Gust of Wind','Weapon','Book',35000,750,90,1,3,true,true,true,true,3,27,true,'bonus bAtkEle,Ele_Wind;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1572,'Principles_Of_Magic','Principles of Magic','Weapon','Book',20,300,60,160,1,2,true,true,true,true,3,60,true,'bonus bInt,3; bonus bSPrecovRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1573,'Ancient_Magic','Ancient Magic','Weapon','Book',20,700,30,140,1,2,true,true,true,true,3,70,true,'bonus bMdef,8; bonus bMaxSPrate,10; bonus bInt,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1574,'BF_Book1','Brave Battle Strategy Book','Weapon','Book',20,90,125,1,true,true,true,true,3,80,true,100,true,true,true,true,true,true,true,'bonus bStr,2; bonus bInt,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1575,'BF_Book2','Valorous Battle Strategy Book','Weapon','Book',20,90,125,1,true,true,true,true,3,80,true,100,true,true,true,true,true,true,true,'bonus bStr,1; bonus bInt,2; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1576,'Krieger_Book1','Glorious Tablet','Weapon','Book',20,90,115,1,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,80; bonus2 bAddRace,RC_Player_Human,80; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) autobonus "{ bonus bBaseAtk,200; }",30,3000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1577,'Krieger_Book2','Glorious Apocalypse','Weapon','Book',20,90,115,1,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,80; bonus2 bAddRace,RC_Player_Human,80; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5){ bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,5; } if(.@r>8) { bonus bMatkRate,5; bonus bVariableCastrate,-5; bonus bDelayRate,-5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1578,'Book_Of_Prayer','Book Of Prayer','Weapon','Book',20,140,1,true,true,true,true,3,100,true,true,true,true,true,true,true,true,'bonus bVit,2; bonus bMdef,10; bonus bMaxSPrate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1579,'Death_Note_M','Book of the Dead','Weapon','Book',20,1000,137,1,2,true,true,true,true,4,85,true,100,true,true,true,true,true,true,true,'bonus bMatkRate,15; bonus bStr,3; bonus bInt,3; bonus bLuk,-20; bonus2 bComaRace,RC_DemiHuman,10; bonus2 bComaRace,RC_Player_Human,10; bonus bAspdRate,getrefine(); if(BaseJob==Job_Sage) bonus3 bAutoSpell,"NPC_HELLJUDGEMENT",5,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`magic_attack`,`range`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1580,'Encyclopedia_C','Giant Encyclopedia','Weapon','Book',145,100,1,true,true,true,true,3,100,true,true,true,true,true,true,true,true,'bonus bMatkRate,15; bonus bInt,3; bonus bDex,2; bonus bCritical,20+((readparam(bLuk)*2)/10); bonus2 bAddSize,Size_All,40;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (1581,'F_Diary_Of_Great_Sage_C','Diary Of Great Sage','Weapon','Book',1,135,1,2,true,true,true,true,3,1,'bonus bMatkRate,20; bonus bAspdRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`) VALUES (1582,'E_Diary_Of_Great_Sage_C','Diary Of Great Sage','Weapon','Book',1,135,1,2,true,true,true,true,3,1); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`magic_attack`,`range`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (1583,'P_Dic1','Eden Book I','Weapon','Book',135,110,1,true,true,true,true,3,60,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_sage`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1584,'Chilly_Spell_Book','Cold Magic Book','Weapon','Book',56000,1000,100,160,1,2,true,true,4,100,true,'bonus bAtkEle,Ele_Water; bonus bUnbreakableWeapon; 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);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (1585,'Upg_Book','Upg Book','Weapon','Book',20,600,45,20,1,1,true,true,true,true,3,1,true,100,true,'.@r = getrefine(); bonus bBaseAtk,(.@r*10); bonus bMatk,(.@r*5); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1586,'Velum_Bible','Vellum Bible','Weapon','Book',20,600,110,125,1,true,true,true,true,4,95,true,'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; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1587,'Velum_Encyclopedia','Vellum Great Encyclopedia','Weapon','Book',20,1000,130,1,true,true,true,true,4,95,true,'.@r = getrefine(); bonus2 bAddRace,RC_Player_Human,80+.@r; bonus2 bIgnoreDefRaceRate,RC_Player_Human,30; if(.@r>8) { autobonus "{ bonus bBaseAtk,200; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1588,'Metal_Book','Metal Book','Weapon','Book',20,45,10,1,1,true,true,true,true,3,1,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,(.@r*5); bonus bMatk,(.@r*2); .@i = min(BaseLevel/10,12); if (BaseLevel>20) { bonus bBaseAtk,((min(BaseLevel,120)-20)/10)*5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1589,'Legacy_Of_Dragon_','Legacy of Dragon','Weapon','Book',20,700,130,1,2,true,true,true,true,4,70,true,'bonus bInt,3; bonus bIgnoreDefRace,RC_Dragon; bonus2 bSPGainRace,RC_Dragon,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1590,'Snake_Encyclopedia','Daizenshu Dakatsu','Weapon','Book',60000,1500,10,110,1,2,true,true,true,true,true,true,4,105,true,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bBaseAtk,.@r*3; bonus bMatk,.@r*3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1591,'TE_Woe_Book','TE Woe Book','Weapon','Book',120,1,true,true,true,true,3,40,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bMagicAddRace,RC_Player_Human,5; bonus2 bAddRace,RC_Player_Doram,40; bonus2 bMagicAddRace,RC_Player_Doram,5; bonus3 bAddEff,Eff_Blind,1000,ATF_MAGIC; bonus bHealPower,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1592,'Thor_Pedigree_Book','Raijin\'s Lineage','Weapon','Book',10,400,90,130,1,2,true,true,true,true,4,27,true,'.@r = getrefine(); bonus bInt,3; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",5+.@r; bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Wind;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1593,'Book_of_Destiny','Book of Destiny','Weapon','Book',10,400,90,90,1,1,true,true,true,true,4,24,true,'.@r = getrefine(); bonus bLuk,5; bonus bFlee2,15; if(.@r >= 7) bonus bFlee2,5; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1594,'Fire_Pedigree_Book','Fire Pedigree Book','Weapon','Book',10,400,90,130,1,2,true,true,true,true,4,27,true,'.@r = getrefine(); bonus bInt,3; bonus2 bSkillAtk,"MG_FIREBOLT",5+.@r; bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Fire;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1595,'Water_Pedigree_Book','Water Pedigree Book','Weapon','Book',10,400,90,130,1,2,true,true,true,true,4,27,true,'.@r = getrefine(); bonus bInt,3; bonus2 bSkillAtk,"MG_COLDBOLT",5+.@r; bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Water;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1596,'Earth_Pedigree_Book','Earth Pedigree Book','Weapon','Book',10,400,90,130,1,2,true,true,true,true,4,27,true,'.@r = getrefine(); bonus bInt,3; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",5+.@r; bonus2 bSkillAtk,"WZ_EARTHSPIKE",5+.@r; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`job_priest`,`job_sage`,`job_taekwon`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1597,'Half_BF_Book2','Half BF Book2','Weapon','Book',20,90,125,1,true,true,true,true,3,80,true,'bonus bStr,1; bonus bInt,1; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1598,'Snake_Encyclopedia_','Daizenshu Dakatsu','Weapon','Book',60000,1500,10,110,1,3,true,true,true,true,true,true,4,105,true,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bBaseAtk,.@r*3; bonus bMatk,.@r*3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1599,'Angra_Manyu','Angra Manyu','Weapon','Mace',1,10,10000,10000,2,true,1,1,true,'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; bonus bAspdRate,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_novice`,`job_priest`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1600,'Rod_of_Vicious_Mind','Rod of Vicious Mind','Weapon','Staff',20,600,60,120,1,1,true,true,true,true,true,true,true,true,true,true,4,160,true,'bonus bMatk,pow(min(getrefine(),15),2); bonus bInt,5; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_novice`,`job_priest`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1601,'Rod','Rod','Weapon','Staff',50,400,15,30,1,3,true,true,true,true,true,true,true,true,true,true,1,1,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_novice`,`job_priest`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1602,'Rod_','Rod','Weapon','Staff',50,400,15,30,1,4,true,true,true,true,true,true,true,true,true,true,1,1,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_novice`,`job_priest`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1603,'Rod__','Rod','Weapon','Staff',50,400,15,30,1,true,true,true,true,true,true,true,true,true,true,1,1,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_novice`,`job_priest`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1604,'Wand','Wand','Weapon','Staff',2500,400,25,45,1,2,true,true,true,true,true,true,true,true,true,true,2,12,true,'bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_novice`,`job_priest`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1605,'Wand_','Wand','Weapon','Staff',2500,400,25,45,1,3,true,true,true,true,true,true,true,true,true,true,2,12,true,'bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_novice`,`job_priest`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1606,'Wand__','Wand','Weapon','Staff',2500,400,25,45,1,true,true,true,true,true,true,true,true,true,true,2,12,true,'bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1607,'Staff','Staff','Weapon','Staff',9500,400,40,70,1,2,true,true,true,true,true,true,true,true,2,12,true,'bonus bInt,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1608,'Staff_','Staff','Weapon','Staff',9500,400,40,70,1,3,true,true,true,true,true,true,true,true,2,12,true,'bonus bInt,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1609,'Staff__','Staff','Weapon','Staff',9500,400,40,70,1,true,true,true,true,true,true,true,true,2,12,true,'bonus bInt,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1610,'Arc_Wand','Arc Wand','Weapon','Staff',45000,400,60,95,1,1,true,true,true,true,true,true,true,true,3,24,true,'bonus bInt,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1611,'Arc_Wand_','Arc Wand','Weapon','Staff',45000,400,60,95,1,2,true,true,true,true,true,true,true,true,3,24,true,'bonus bInt,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1612,'Arc_Wand__','Arc Wand','Weapon','Staff',45000,400,60,95,1,true,true,true,true,true,true,true,true,3,24,true,'bonus bInt,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1613,'Mighty_Staff','Mighty Staff','Weapon','Staff',20,700,130,100,1,true,true,true,true,true,true,true,true,3,24,true,'bonus bStr,10; bonus bSPDrainValue,-2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1614,'Blessed_Wand','Wand of Occult','Weapon','Staff',20,700,75,105,1,true,true,true,true,true,true,true,true,3,24,true,'bonus bInt,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1615,'Bone_Wand','Evil Bone Wand','Weapon','Staff',20,700,40,110,1,true,true,true,true,true,true,true,true,3,24,true,'bonus bInt,4; bonus bAtkEle,Ele_Undead;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1616,'Staff_Of_Wing','Wing Staff','Weapon','Staff',20,500,60,115,1,true,true,true,true,true,4,40,true,'bonus bVariableCastrate,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1617,'Survival_Rod','Survivor\'s Rod','Weapon','Staff',85000,1000,50,120,1,true,true,true,true,true,true,true,true,3,24,true,'bonus bDex,2; bonus bMaxHP,300;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1618,'Survival_Rod_','Survivor\'s Rod','Weapon','Staff',85000,1000,50,120,1,1,true,true,true,true,true,true,true,true,3,24,true,'bonus bDex,3; bonus bMaxHP,400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1619,'Survival_Rod2','Survivor\'s Rod','Weapon','Staff',85000,1000,50,120,1,true,true,true,true,true,true,true,true,3,24,true,'bonus bInt,2; bonus bMaxHP,300;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1620,'Survival_Rod2_','Survivor\'s Rod','Weapon','Staff',85000,1000,50,120,1,1,true,true,true,true,true,true,true,true,3,24,true,'bonus bInt,3; bonus bMaxHP,400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_novice`,`job_supernovice`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1621,'Hypnotist\'s_Staff','Hypnotist\'s Staff','Weapon','Staff',43000,500,70,120,1,1,true,true,true,3,30,true,'bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_novice`,`job_supernovice`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1622,'Hypnotist\'s_Staff_','Hypnotist\'s Staff','Weapon','Staff',20,500,70,120,1,2,true,true,true,3,30,true,'bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1623,'Mighty_Staff_C','Mighty Staff','Weapon','Staff',1,165,120,1,true,true,true,true,true,true,true,true,3,1,100,true,true,true,true,true,true,true,true,'bonus bStr,10; bonus bInt,4; bonus bSPDrainValue,-1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1624,'Lich_Bone_Wand','Lich\'s Bone Wand','Weapon','Staff',20,800,60,170,1,2,true,true,true,true,true,true,true,true,true,3,70,true,'bonus bInt,1; bonus bDex,1; bonus bAtkEle,Ele_Undead; .@r = getrefine(); bonus3 bAutoSpellWhenHit,"NPC_WIDECURSE",5,10+.@r; if(.@r>=9){ bonus bMatkRate,3; bonus bMaxSP,300; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1625,'Healing_Staff','Healing Staff','Weapon','Staff',20,400,10,105,1,true,true,true,true,3,55,true,'bonus bAtkEle,Ele_Holy; bonus bHealPower,(getrefine()*3/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1626,'Piercing_Staff','Piercing Staff','Weapon','Staff',20,500,80,145,1,true,true,true,true,true,true,true,true,true,3,70,true,'.@r = getrefine(); bonus bInt,4; bonus2 bIgnoreMdefClassRate,Class_Normal,10+.@r; bonus2 bIgnoreMdefClassRate,Class_Boss,10+.@r;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1627,'Staffy','Staffy','Weapon','Staff',20,40,120,1,true,true,true,true,true,true,true,true,1,100,true,true,true,true,true,true,true,'bonus bInt,4; bonus bMatkRate,15; bonus2 bAddClass,Class_All,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1628,'Survival_Rod_C','Refined Survivor\'s Rod','Weapon','Staff',1,71,145,1,true,true,true,true,true,true,true,true,3,100,true,true,true,true,true,true,true,true,'bonus bDex,4; bonus bMatkRate,20; bonus bMaxHP,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1629,'Walking_Stick','Gentleman\'s Staff','Weapon','Staff',20,500,40,125,1,1,true,true,true,true,true,true,true,true,4,50,true,'bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1630,'Release_Of_Wish','Release of Wish','Weapon','Staff',20,500,30,125,1,true,true,true,true,true,3,50,true,'bonus bInt,3; bonus bHealPower,5; autobonus "{ bonus2 bSPRegenRate,100,2000; bonus2 bHPRegenRate,50,2000; }",10,10000,BF_MAGIC,"{ specialeffect2 EF_HEAL; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1631,'Holy_Stick','Holy Stick','Weapon','Staff',20,500,50,140,1,1,true,true,true,4,70,true,'bonus bAtkEle,Ele_Holy; bonus bMatkRate,15; bonus2 bVariableCastrate,"AL_HOLYLIGHT",-25; bonus2 bVariableCastrate,"PR_TURNUNDEAD",-25; bonus2 bVariableCastrate,"PR_MAGNUS",-25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1632,'BF_Staff1','Warlock\'s Magic Wand','Weapon','Staff',20,70,125,1,true,true,true,true,true,true,true,true,3,80,true,100,true,true,true,true,true,true,true,'bonus bInt,4; bonus bDex,3; bonus bMatkRate,15; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; bonus3 bAddEff,Eff_Stun,500,ATF_MAGIC; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1633,'BF_Staff2','Warlock\'s Battle Wand','Weapon','Staff',20,70,125,1,true,true,true,true,true,true,true,true,3,80,true,100,true,true,true,true,true,true,true,'bonus bInt,3; bonus bDex,3; bonus bMatkRate,15; bonus2 bMagicAddRace,RC_DemiHuman,15; bonus2 bMagicAddRace,RC_Player_Human,15; bonus3 bAddEff,Eff_Stun,500,ATF_MAGIC; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1634,'BF_Staff3','Strong Recovery Wand','Weapon','Staff',20,70,125,1,true,true,true,true,true,true,true,true,3,80,true,100,true,true,true,true,true,true,true,'bonus bMatkRate,15; bonus bHealPower,14; bonus2 bSPRegenRate,5,10000; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1635,'BF_Staff4','Speedy Recovery Wand','Weapon','Staff',20,70,125,1,true,true,true,true,true,true,true,true,3,80,true,100,true,true,true,true,true,true,true,'bonus bInt,3; bonus bDex,2; bonus bMatkRate,15; bonus bDelayRate,-15; bonus2 bSPRegenRate,5,10000; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1636,'Thorn_Staff','Thorn Staff of Darkness','Weapon','Staff',20,700,60,160,1,true,true,true,true,true,true,true,true,true,4,75,true,'bonus bAtkEle,Ele_Dark; bonus bInt,3; bonus bDex,3; .@r = getrefine(); bonus2 bIgnoreMdefClassRate,Class_Normal,.@r; bonus2 bIgnoreMdefClassRate,Class_Boss,.@r; bonus bDelayRate,-(.@r*3/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1637,'Eraser','Eraser','Weapon','Staff',20,500,80,170,1,true,true,true,true,true,true,true,true,true,4,70,true,'bonus bInt,3; bonus bDex,2; bonus bSPrecovRate,8; bonus5 bAutoSpell,"NPC_WIDESOULDRAIN",(getrefine()>9?3:1),5,BF_MAGIC,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1638,'Healing_Staff_C','Staff Of Healing','Weapon','Staff',20,10,125,1,true,true,true,true,3,1,true,100,true,true,true,true,true,true,true,true,'bonus bAtkEle,Ele_Holy; bonus bMatkRate,15; bonus bHealPower,(getrefine()*3/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_novice`,`job_priest`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`) VALUES (1639,'N_Rod','Novice Rod','Weapon','Staff',15,32,1,3,true,true,true,true,true,true,true,true,true,true,1,1); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1640,'Krieger_Onehand_Staff1','Glorious Arc Wand','Weapon','Staff',20,70,135,1,true,true,true,true,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bMagicAddRace,RC_DemiHuman,15; bonus2 bMagicAddRace,RC_Player_Human,15; .@r = getrefine(); bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25 + ((.@r > 5) ? 5 : 0); bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25 + ((.@r > 5) ? 5 : 0); bonus bUnbreakableWeapon; if(.@r > 8) { bonus bMatkRate,5; bonus bVariableCastrate,-5; bonus bDelayRate,-5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1641,'Krieger_Onehand_Staff2','Glorious Cure Wand','Weapon','Staff',20,70,135,1,true,true,true,true,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus bHealPower,14; bonus bDelayRate,-10; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r > 5) { bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,5; bonus bHealPower,5+(min(14,.@r)-5)*2; } if(.@r > 8) bonus5 bAutoSpellOnSkill,"AL_HEAL","AL_HEAL",10,100,1; if(.@r > 9) { bonus bHealPower,10; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1642,'Staff_Of_Darkness','Staff Of Darkness','Weapon','Staff',20,100,120,1,true,true,true,true,true,true,true,true,2,100,true,true,true,true,true,true,true,true,'bonus bVariableCastrate,-5; bonus bMatkRate,15; bonus bInt,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1643,'Dead_Tree_Cane','Dead Tree Cane','Weapon','Staff',20,100,100,155,1,true,true,true,true,true,true,true,true,4,70,true,'bonus bInt,4; .@r = getrefine(); if (.@r>5) { bonus bInt,.@r-5; bonus bMaxHP,-200; bonus bMaxSP,-100; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1644,'Piercing_Staff_M','Staff of Piercing','Weapon','Staff',20,500,80,145,1,true,true,true,true,true,true,true,true,true,3,70,true,100,true,true,true,true,true,true,true,'bonus bInt,4; bonus bMatkRate,15; .@r = getrefine(); bonus2 bIgnoreMdefClassRate,Class_Normal,10+.@r; bonus2 bIgnoreMdefClassRate,Class_Boss,10+.@r;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1645,'Lich_Bone_Wand_M','Lich\'s Bone Wand','Weapon','Staff',20,800,60,170,1,2,true,true,true,true,true,true,true,true,true,3,70,true,100,true,true,true,true,true,true,true,'bonus bInt,1; bonus bDex,1; bonus bAtkEle,Ele_Undead; bonus bMatkRate,20; .@r = getrefine(); bonus3 bAutoSpellWhenHit,"NPC_WIDECURSE",5,10+.@r; if(.@r>=9){ bonus bMatkRate,3; bonus bMaxSP,300; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_mage`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1646,'La\'cryma_Stick','La\'cryma Stick','Weapon','Staff',20,500,30,180,1,2,true,true,true,true,true,true,3,50,true,'.@r = getrefine(); bonus bInt,4; bonus bMdef,.@r; bonus2 bSkillAtk,"WZ_STORMGUST",.@r; if (.@r > 9) bonus2 bVariableCastrate,"WZ_STORMGUST",-8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1647,'Croce_Staff','Croce Staff','Weapon','Staff',20,500,30,175,1,1,true,true,true,true,true,true,3,50,true,'bonus bAtkEle,Ele_Holy; bonus bInt,4; bonus4 bAutoSpellOnSkill,"AL_HEAL","AL_BLESSING",max(getskilllv("AL_BLESSING"),1),20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1648,'Staff_Of_Bordeaux','Staff Of Bordeaux','Weapon','Staff',20,500,30,170,1,true,true,true,true,true,4,50,true,'bonus bInt,2; bonus bDex,1; if(getskilllv("SA_DRAGONOLOGY") == 5) { bonus bUseSPrate,-15; bonus bInt,3; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_novice`,`job_priest`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1649,'Rafini_Staff','Laphine Staff','Weapon','Staff',20,500,30,180,1,true,true,true,true,true,true,true,true,true,true,3,100,true,'bonus bFixedCastRate,-getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1650,'P_Staff1','Eden Staff I','Weapon','Staff',60,125,1,true,true,true,true,true,true,true,true,2,26,100,true,true,true,true,true,true,true,'bonus bInt,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1651,'P_Staff2','Eden Staff II','Weapon','Staff',60,150,1,true,true,true,true,true,true,true,true,2,40,100,true,true,true,true,true,true,true,'bonus bInt,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_novice`,`job_priest`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1652,'Tourist_Staff','Tourist Staff','Weapon','Staff',500,35,1,true,true,true,true,true,true,true,true,true,true,1,1,100,true,true,true,true,true,true,true,'bonus bMatkRate,15; bonus bInt,2; bonus bAgi,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1653,'Staff_Of_Healing_C','Staff of Healing','Weapon','Staff',20,10,100,1,true,true,true,true,3,1,100,true,true,true,true,true,true,true,true,'bonus bAtkEle,Ele_Holy; bonus bHealPower,18;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_novice`,`job_priest`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (1654,'Mental_Stick','Mental Stick','Weapon','Staff',20,500,40,170,1,1,true,true,true,true,true,true,true,true,true,true,3,102,true,'.@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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (1655,'Adventure_Staff','Adventure Staff','Weapon','Staff',60,1,true,true,true,true,true,1,1,'bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1656,'Academy_Wand','Academy Wand','Weapon','Staff',600,60,1,1,true,true,true,true,true,1,1,true,'bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1657,'Wand_Of_Affection','Wand Of Affection','Weapon','Staff',20,500,30,160,1,2,true,true,3,100,true,'bonus bInt,2; bonus bAtkEle,Ele_Holy; bonus bHealPower,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1658,'P_Staff3','Eden Staff III','Weapon','Staff',60,170,1,true,true,true,true,true,true,true,true,3,60,100,true,true,true,true,true,true,true,'bonus bInt,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1659,'Recovery_Light','Light of Recovery','Weapon','Staff',56000,400,30,160,1,1,true,true,4,110,true,'bonus bAtkEle,Ele_Holy; bonus bUnbreakableWeapon; .@r = getrefine(); bonus bHealPower,(.@r*6); bonus2 bSkillUseSP,"AL_HEAL",-(.@r*10); bonus2 bSkillUseSP,"AB_CHEAL",-(.@r*12); bonus2 bSkillUseSP,"AB_HIGHNESSHEAL",-(.@r*14);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1660,'Wand_Of_Affection2','Empowered Wand Of Affection','Weapon','Staff',20,500,30,180,1,1,true,true,3,130,true,'bonus bAtkEle,Ele_Holy; bonus bInt,4; bonus bHealPower,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1661,'Mental_Destroyer','Mental Destroyer','Weapon','Staff',20,1400,100,50,1,true,true,4,95,true,'.@r = getrefine(); bonus bInt,10; bonus bUnbreakableWeapon; bonus bUseSPrate,100; bonus bMdef,20; bonus3 bSPVanishRate,1000,5+(.@r>5?3:0),BF_WEAPON|BF_MAGIC|BF_MISC;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1662,'Bone_Wand_','Evil Bone Wand','Weapon','Staff',20,700,40,110,1,2,true,true,true,true,true,true,true,true,3,24,true,'bonus bInt,4; bonus bAtkEle,Ele_Undead;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1663,'Staff_Of_Bordeaux_','Staff Of Bordeaux','Weapon','Staff',20,500,30,180,1,2,true,true,true,true,true,4,50,true,'bonus bInt,2; bonus bDex,1; if(getskilllv("SA_DRAGONOLOGY") == 5) { bonus bUseSPrate,-15; bonus bInt,3; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`slots`,`job_acolyte`,`job_mage`,`class_upper`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1664,'Thorn_Staff_','Thorn Staff of Darkness','Weapon','Mace',10,700,60,160,1,true,true,true,true,true,true,4,75,true,'bonus bInt,3; bonus bDex,3; .@r = getrefine(); bonus2 bIgnoreMdefClassRate,Class_Normal,.@r; bonus2 bIgnoreMdefClassRate,Class_Boss,.@r; bonus bDelayrate,-.@r*3/2; bonus bAtkEle,Ele_Dark;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1665,'Piercing_Staff_','Piercing Staff','Weapon','Staff',20,500,80,145,1,2,true,true,true,true,true,true,true,true,true,3,70,true,'.@r = getrefine(); bonus bInt,4; bonus2 bIgnoreMdefClassRate,Class_Normal,10+.@r; bonus2 bIgnoreMdefClassRate,Class_Boss,10+.@r;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1666,'Healing_Staff_','Healing Staff','Weapon','Staff',20,400,10,105,1,2,true,true,true,true,3,55,true,'bonus bAtkEle,Ele_Holy; bonus bHealPower,(getrefine()*3/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_novice`,`job_priest`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1667,'TE_Woe_Staff','TE Woe Staff','Weapon','Staff',50,100,1,true,true,true,true,true,true,true,true,true,true,3,40,true,100,true,true,true,true,true,true,true,'bonus2 bMagicAddRace,RC_Player_Human,10; bonus3 bAddEff,Eff_Blind,1000,ATF_MAGIC; bonus bHPRecovRate,5; bonus bSPRecovRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`slots`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1668,'Sword_Stick','Sword Stick','Weapon','Staff',10,500,120,150,2,true,true,true,true,true,4,80,true,'bonus bAspdRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (1669,'Thanos_Staff','Thanos Staff','Weapon','Staff',10,1000,100,200,1,1,true,true,true,true,true,true,true,true,true,true,4,120,true,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus bHealPower,15; bonus bMagicHPGainValue,500; bonus bMagicSPGainValue,50; bonus2 bHPLossRate,100,10000;','heal -1000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_novice`,`job_priest`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (1670,'RWC_Memory_Staff','RWC Memory Staff','Weapon','Staff',20,500,25,30,1,1,true,true,true,true,true,true,true,true,true,true,3,1,true,100,true,'.@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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_novice`,`job_priest`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1671,'Devil_Won_Staff','Evil Slayer Vanquisher Staff','Weapon','Staff',800,30,155,1,true,true,true,true,true,true,true,true,true,true,3,100,true,'bonus2 bAddRace,RC_Undead,10; bonus2 bAddRace,RC_Demon,10; bonus2 bMagicAddRace,RC_Undead,10; bonus2 bMagicAddRace,RC_Demon,10; .@r = getrefine(); if(.@r>=9) { .@dmg = 5; if(.@r>=12) { .@dmg += 7; } bonus bMatkRate,.@dmg; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1673,'Half_BF_Staff4','Half BF Staff4','Weapon','Staff',20,70,125,1,true,true,true,true,true,true,true,true,3,80,true,'bonus bInt,3; bonus bDex,2; bonus bDelayRate,-10; bonus2 bSPLossRate,5,12000; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1674,'Half_BF_Staff2','Half BF Staff2','Weapon','Staff',20,70,125,1,true,true,true,true,true,true,true,true,3,80,true,'bonus bInt,3; bonus bDex,3; bonus2 bMagicAddRace,RC_DemiHuman,10; bonus2 bMagicAddRace,RC_Player_Human,10; bonus3 bAddEff,Eff_Stun,200,ATF_SKILL; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1675,'Walking_Stick_','Gentleman\'s Staff','Weapon','Staff',20,500,40,125,1,3,true,true,true,true,true,true,true,true,4,50,true,'bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_novice`,`job_priest`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1676,'Baculum_Daemonicum','Baculum Daemonicum','Weapon','Staff',20,1200,60,150,1,2,true,true,true,true,true,true,true,true,true,true,4,80,true,'bonus bAtkEle,Ele_Dark; bonus bUnbreakableWeapon; bonus bVariableCastrate,-10; if (BaseLevel > 99){ bonus bMatk,30; } if(getrefine() > 8){ bonus2 bResEff,Eff_Blind,3000; bonus bUseSPrate,-10; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1677,'Ru_Blue_Wand','Blue Wand','Weapon','Staff',10,50,200,1,1,true,true,true,true,true,3,100,true,'bonus bDex,5; bonus bInt,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1678,'Ru_Gold_Wand','Ru Gold Wand','Weapon','Staff',50,1,2,true,true,true,true,true,3,120,true,'bonus bDex,8; bonus bInt,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_novice`,`job_priest`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1679,'Rafini_Staff_S','Laphine Staff','Weapon','Staff',20,500,30,180,1,2,true,true,true,true,true,true,true,true,true,true,3,100,true,'bonus bFixedCastRate,-getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_novice`,`job_priest`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1680,'Crimson_One-Handed_Staff','Crimson One-Handed Staff','Weapon','Staff',10,600,60,70,1,2,true,true,true,true,true,true,true,true,true,true,3,70,true,'.@r = getrefine(); bonus bInt,4; bonus bMatk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (1681,'Short_Foxtail_Staff','Short Foxtail Staff','Weapon','Staff',20,30,1,true,true,true,true,true,1,1,true,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1682,'Shadow_Staff','Shadow Staff','Weapon','Staff',600,70,130,1,2,true,true,true,true,true,4,90,true,'.@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; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1683,'Enriched_Foxtail_Staff','Enriched Foxtail Staff','Weapon','Staff',20,200,50,70,1,1,true,true,true,true,true,2,12,true,'bonus bMaxSP,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1684,'Long_Foxtail_Staff','Long Foxtail Staff','Weapon','Staff',20,200,50,2,1,true,true,true,true,true,2,12,true,'bonus bLongAtkRate,5; bonus bMaxHP,200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1685,'Dragonfly_Sitting_Foxtail_Staff','Dragonfly Sitting Foxtail Staff','Weapon','Staff',20,300,70,100,1,1,true,true,true,true,true,2,20,true,'bonus bInt,1; bonus bMaxHP,100; bonus bMaxSP,150;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1686,'Large_Foxtail_Staff','Large Foxtail Staff','Weapon','Staff',20,300,70,1,1,true,true,true,true,true,2,20,true,'bonus bLongAtkRate,8; bonus bDex,1; bonus bMaxHP,200; bonus bMaxSP,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1687,'Beginner_Foxtail_Staff','Beginner Foxtail Staff','Weapon','Staff',20,100,40,15,1,1,true,true,true,true,true,1,3,true,100,true,true,true,true,true,true,'bonus bMaxHP,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1690,'Mysterious_Foxtail_Staff','Mysterious Foxtail Staff','Weapon','Staff',20,400,80,180,1,3,true,true,true,true,true,2,60,true,'.@r = getrefine(); bonus bMaxSP,10*(.@r/3)+50; bonus bMatk,10*(.@r/3);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1691,'Strange_God_Foxtail_Staff','Strange God Foxtail Staff','Weapon','Staff',20,500,100,240,1,2,true,true,true,true,true,3,100,true,'bonus bMaxSP,100; .@r = getrefine(); bonus bMatkRate,2*(.@r/3); bonus bMaxSPrate,.@r/3; if(.@r>=7){ .@r = min(.@r,10)-7; bonus bWeaponAtkRate,(20*.@r)+40; bonus bWeaponMatkRate,(20*.@r)+40; } bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1692,'Magical_Foxtail_Staff','Magical Foxtail Staff','Weapon','Staff',20,600,120,260,1,2,true,true,true,true,true,3,140,true,'bonus bMaxSP,100; .@r = getrefine(); bonus bMatkRate,2*(.@r/3); bonus bMaxSPrate,.@r/3; if(.@r>=7){ .@r = min(.@r,10)-7; bonus bWeaponAtkRate,(20*.@r)+40; bonus bWeaponMatkRate,(20*.@r)+40; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1693,'Magical_Yellow_Foxtail_Staff','Magical Yellow Foxtail Staff','Weapon','Staff',20,700,140,280,1,1,true,true,true,true,true,4,175,true,'.@r = getrefine(); bonus bMatkRate,3*(.@r/2); bonus4 bAutoSpellOnSkill,"SU_FRESHSHRIMP","SU_ARCLOUSEDASH",max(1,getskilllv("SU_ARCLOUSEDASH")),200; bonus4 bAutoSpellOnSkill,"SU_SV_STEMSPEAR","SU_FRESHSHRIMP",max(1,getskilllv("SU_FRESHSHRIMP")),200; if(.@r>=7){ .@r = min(.@r,10)-7; bonus bWeaponAtkRate,(20*.@r)+40; bonus bWeaponMatkRate,(20*.@r)+40; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1694,'Foxtail_Model','Foxtail Model','Weapon','Staff',20,300,150,1,3,true,true,true,true,true,2,60,true,'bonus bLongAtkRate,8; bonus bMaxHP,100; .@r = getrefine(); bonus bDex,(.@r/3)*2; bonus bMaxSP,(.@r/3)*10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1695,'Delicate_Foxtail_Model','Delicate Foxtail Model','Weapon','Staff',20,300,195,1,2,true,true,true,true,true,3,100,true,'bonus bLongAtkRate,8; bonus bMaxHP,200; .@r = getrefine(); bonus bDex,(.@r/3)*3; bonus bMaxSP,(.@r/3)*15; if(.@r>=7){ .@r = min(.@r,10)-7; bonus bWeaponAtkRate,(20*.@r)+40; bonus bWeaponMatkRate,(20*.@r)+40; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1696,'Exquisite_Foxtail_Model','Exquisite Foxtail Model','Weapon','Staff',20,300,240,1,2,true,true,true,true,true,3,140,true,'bonus bLongAtkRate,8; bonus bMaxHPrate,5; .@r = getrefine(); bonus bDex,(.@r/2)*3; bonus bMaxSP,(.@r/2)*15; if(.@r>=7){ .@r = min(.@r,10)-7; bonus bWeaponAtkRate,(20*.@r)+40; bonus bWeaponMatkRate,(20*.@r)+40; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1697,'Exquisite_Yellow_Foxtail_Model','Exquisite Yellow Foxtail Model','Weapon','Staff',20,300,270,1,1,true,true,true,true,true,4,175,true,'bonus bLongAtkRate,9; bonus bMaxHPrate,7; .@r = getrefine(); bonus bLongAtkRate,.@r/2; bonus bMaxSP,(.@r/2)*20; bonus4 bAutoSpellOnSkill,"SU_PICKYPECK","SU_FRESHSHRIMP",max(1,getskilllv("SU_FRESHSHRIMP")),200; if(.@r>=7){ .@r = min(.@r,10)-7; bonus bWeaponAtkRate,(20*.@r)+40; bonus bWeaponMatkRate,(20*.@r)+40; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_mage`,`job_novice`,`job_supernovice`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1698,'Requiem_Arc_Wand','Requiem Arc Wand','Weapon','Staff',20,500,80,145,1,true,true,true,true,true,4,100,true,'.@r = getrefine(); .@b = 40; if(.@r>=5){ .@b += (.@r-5)*15+20; } bonus2 bMagicAddRace2,RC2_BioLab,.@b;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1699,'Paradise_Foxtail_Staff_I','Eden Group Foxtail I','Weapon','Staff',20,120,135,1,true,true,true,true,true,2,26,100,true,true,true,true,true,true,true,'bonus bDex,3; bonus bInt,3; bonus bLongAtkRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1701,'Bow','Bow','Weapon','Bow',1000,500,15,5,3,true,true,true,true,true,true,true,1,4,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1702,'Bow_','Bow','Weapon','Bow',1000,500,15,5,4,true,true,true,true,true,true,true,1,4,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1703,'Bow__','Bow','Weapon','Bow',1000,15,5,true,true,true,true,true,true,true,1,4,true,100,true,true,true,true,true,true,true,true,'bonus2 bAddDamageClass,1002,500; bonus2 bAddDamageClass,1113,500; bonus2 bAddDamageClass,1031,500; bonus2 bAddDamageClass,1242,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1704,'Composite_Bow','Composite Bow','Weapon','Bow',2500,600,29,5,3,true,true,true,true,true,true,true,1,4,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1705,'Composite_Bow_','Composite Bow','Weapon','Bow',2500,600,29,5,4,true,true,true,true,true,true,true,1,4,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1706,'Composite_Bow__','Composite Bow','Weapon','Bow',2500,600,29,5,true,true,true,true,true,true,true,1,4,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1707,'Great_Bow','Great Bow','Weapon','Bow',10000,1000,50,5,2,true,true,true,true,true,true,true,2,18,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1708,'Great_Bow_','Great Bow','Weapon','Bow',10000,1000,50,5,3,true,true,true,true,true,true,true,2,18,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1709,'Great_Bow__','Great Bow','Weapon','Bow',10000,1000,50,5,true,true,true,true,true,true,true,2,18,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1710,'CrossBow','Crossbow','Weapon','Bow',17000,900,65,5,2,true,true,true,true,true,true,true,2,18,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1711,'CrossBow_','Crossbow','Weapon','Bow',17000,900,65,5,3,true,true,true,true,true,true,true,2,18,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1712,'CrossBow__','Crossbow','Weapon','Bow',17000,900,65,5,true,true,true,true,true,true,true,2,18,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1713,'Arbalest','Arbalest','Weapon','Bow',48000,1000,90,5,1,true,true,true,true,true,true,true,3,33,true,'bonus bDex,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1714,'Kakkung','Gakkung Bow','Weapon','Bow',42000,1100,100,5,1,true,true,true,true,true,true,true,3,33,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1715,'Arbalest_','Arbalest','Weapon','Bow',48000,1000,90,5,2,true,true,true,true,true,true,true,3,33,true,'bonus bDex,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1716,'Kakkung_','Gakkung Bow','Weapon','Bow',42000,1100,100,5,2,true,true,true,true,true,true,true,3,33,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_hunter`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1718,'Hunter_Bow','Hunter Bow','Weapon','Bow',64000,1500,125,5,true,true,true,3,33,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1719,'Bow_Of_Roguemaster','Roguemaster\'s Bow','Weapon','Bow',20,500,75,11,true,true,true,4,48,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1720,'Bow_Of_Rudra','Rudra Bow','Weapon','Bow',20,1200,150,5,true,true,true,true,true,true,4,48,true,'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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1721,'Repeting_CrossBow','Repeating Crossbow','Weapon','Bow',89000,2000,95,9,1,true,true,true,true,true,3,65,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_barddancer`,`job_hunter`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1722,'Balistar','Ballista','Weapon','Bow',124000,3500,145,5,true,true,true,true,4,77,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_hunter`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1723,'Luna_Bow','Luna Bow','Weapon','Bow',20,2000,100,5,2,true,true,true,3,30,true,'.@r = getrefine(); bonus bDef,2+3*(.@r>5)+5*(.@r>8);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1724,'Dragon_Wing','Dragon Wing','Weapon','Bow',20,1200,100,5,true,true,true,true,true,true,true,4,60,true,'bonus3 bAddMonsterDropItem,1765,RC_Dragon,300; bonus bIgnoreDefRace,RC_Dragon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`job_hunter`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1725,'Bow_Of_Minstrel','Minstrel Bow','Weapon','Bow',20,1700,120,5,1,true,true,true,true,4,70,true,'bonus bInt,2; bonus bSPrecovRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_hunter`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1726,'Hunter_Bow_','Hunter Bow','Weapon','Bow',64000,1500,125,5,1,true,true,true,3,33,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`job_hunter`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1727,'Balistar_','Ballista','Weapon','Bow',124000,3500,145,5,1,true,true,true,true,4,77,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_barddancer`,`job_hunter`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1728,'Balistar_C','Ballista','Weapon','Bow',1,194,5,true,true,true,true,4,1,100,true,true,true,true,true,true,true,true,'bonus bLongAtkRate,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1729,'Bow_Of_Rudra_C','Rudra Bow','Weapon','Bow',2,185,5,true,true,true,true,true,true,4,1,100,true,true,true,true,true,true,true,true,'bonus bAtkEle,Ele_Holy; bonus bInt,5; 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; skill "AL_CURE",1; skill "AL_HEAL",1; bonus2 bAddRace,RC_Undead,20; bonus2 bAddRace,RC_Demon,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1730,'Burning_Bow','Burning Bow','Weapon','Bow',20,1400,95,5,1,true,true,true,true,true,true,3,55,true,'bonus2 bSubEle,Ele_Fire,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1731,'Frozen_Bow','Frozen Bow','Weapon','Bow',20,1400,100,5,1,true,true,true,true,true,true,3,55,true,'bonus2 bAddEff,Eff_Freeze,1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1732,'Earth_Bow','Earth Bow','Weapon','Bow',20,1400,105,5,1,true,true,true,true,true,true,3,55,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1733,'Gust_Bow','Gust Bow','Weapon','Bow',20,1400,95,5,1,true,true,true,true,true,true,3,55,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1734,'Orc_Archer_Bow','Orc Archer Bow','Weapon','Bow',20,1600,120,5,true,true,true,true,true,true,3,65,true,'bonus2 bAddMonsterDropItem,1753,200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1735,'Kkakkung','Kkakkung','Weapon','Bow',20,120,5,true,true,true,true,true,true,true,1,1,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_hunter`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1736,'Double_Bound','Double Bound','Weapon','Bow',20,900,70,5,3,true,true,true,true,true,3,70,true,'bonus3 bAutoSpell,"AC_DOUBLE",GetSkillLv("AC_DOUBLE"),10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_hunter`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1737,'Ixion_Wing','Ixion Wings','Weapon','Bow',20,300,135,5,1,true,true,true,true,true,4,70,true,'autobonus "{ bonus bAspdRate,7; }",10+(getrefine()*2),7000,BF_WEAPON,"{ specialeffect2 EF_HASTEUP; }"; bonus2 bAddSkillBlow,"AC_CHARGEARROW",3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1738,'BF_Bow1','Valorous Battle CrossBow','Weapon','Bow',20,100,5,true,true,true,true,true,true,true,3,80,true,100,true,true,true,true,true,true,true,'bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1739,'BF_Bow2','Brave Battle CrossBow','Weapon','Bow',20,100,5,true,true,true,true,true,true,true,3,80,true,100,true,true,true,true,true,true,true,'bonus bDex,2; bonus bInt,10; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_hunter`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1740,'Nepenthes_Bow','Nepenthes Bow','Weapon','Bow',20,1000,105,5,2,true,true,true,true,true,4,60,true,'bonus4 bAutoSpellOnSkill,"AC_DOUBLE","AC_CHARGEARROW",1,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`job_hunter`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1741,'Cursed_Lyre','Cursed Lyre','Weapon','Bow',20,1250,125,5,1,true,true,true,true,true,true,4,80,true,'bonus bLuk,-2; bonus2 bAddEff,Eff_Curse,400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`) VALUES (1742,'N_Composite_Bow','Novice Composite Bow','Weapon','Bow',1,49,5,3,true,true,true,true,true,true,true,1,4); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1743,'Krieger_Bow1','Glorious Hunter Bow','Weapon','Bow',100,5,true,true,true,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; .@r = getrefine(); bonus bCritAtkRate,min(10,.@r)*2; bonus bUnbreakableWeapon; if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) bonus2 bSkillAtk,"AC_DOUBLE",20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1744,'Bow_Of_Evil','Bow Of Evil','Weapon','Bow',20,170,5,true,true,true,true,true,true,true,4,1,100,true,true,true,true,true,true,true,true,'bonus2 bSkillAtk,"AC_DOUBLE",25; bonus bDex,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_hunter`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1745,'Falken_Blitz','Falken Blitz','Weapon','Bow',20,1000,100,5,2,true,true,true,true,true,3,50,true,'bonus2 bSkillAtk,"SN_SHARPSHOOTING",10; bonus2 bSkillAtk,"AC_DOUBLE",10; bonus2 bSkillAtk,"AC_CHARGEARROW",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`job_hunter`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1746,'Elven_Bow','Elven Bow','Weapon','Bow',20,1500,160,5,1,true,true,true,true,3,100,true,'bonus bDex,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (1747,'P_Bow1','Eden Bow I','Weapon','Bow',82,5,true,true,true,true,true,true,true,2,26,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (1748,'P_Bow2','Eden Bow II','Weapon','Bow',120,5,true,true,true,true,true,true,true,2,40,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1749,'Tourist_Bow','Tourist Bow','Weapon','Bow',500,40,5,true,true,true,true,true,true,true,1,1,100,true,true,true,true,true,true,true,'bonus bDex,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1800,'Fist_of_Vicious_Mind','Fist of Vicious Mind','Weapon','Knuckle',20,1500,150,1,1,true,true,true,4,160,true,'bonus bAtk,pow(min(getrefine(),15),2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1801,'Waghnakh','Waghnak','Weapon','Knuckle',8000,400,30,1,3,true,true,true,1,1,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1802,'Waghnakh_','Waghnak','Weapon','Knuckle',8000,400,30,1,4,true,true,true,1,1,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1803,'Knuckle_Duster','Knuckle Dusters','Weapon','Knuckle',25000,450,50,1,2,true,true,true,2,12,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1804,'Knuckle_Duster_','Knuckle Dusters','Weapon','Knuckle',25000,450,50,1,3,true,true,true,2,12,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1805,'Hora','Studded Knuckles','Weapon','Knuckle',32000,450,65,1,2,true,true,true,2,12,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1806,'Hora_','Studded Knuckles','Weapon','Knuckle',32000,450,65,1,3,true,true,true,2,12,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1807,'Fist','Fist','Weapon','Knuckle',53000,650,115,1,true,true,true,3,24,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1808,'Fist_','Fist','Weapon','Knuckle',53000,650,115,1,1,true,true,true,3,24,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1809,'Claw','Claw','Weapon','Knuckle',67000,500,86,1,1,true,true,true,3,24,true,'bonus bStr,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1810,'Claw_','Claw','Weapon','Knuckle',67000,500,86,1,2,true,true,true,3,24,true,'bonus bStr,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1811,'Finger','Finger','Weapon','Knuckle',58000,500,97,1,1,true,true,true,3,24,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1812,'Finger_','Finger','Weapon','Knuckle',58000,500,97,1,2,true,true,true,3,24,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1813,'Kaiser_Knuckle','Kaiser Knuckle','Weapon','Knuckle',20,450,110,1,true,true,true,4,36,true,'bonus bAtkEle,Ele_Wind; bonus2 bAddRace,RC_Undead,5; bonus2 bAddEle,Ele_Water,10; bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Fire,10; bonus2 bAddEle,Ele_Wind,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1814,'Berserk','Berserk','Weapon','Knuckle',20,500,120,1,true,true,true,4,36,true,'bonus bAspdRate,12;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1815,'Claw_Of_Garm','Hatii Claw','Weapon','Knuckle',20,550,152,1,1,true,true,true,4,70,true,'bonus bAtkEle,Ele_Dark; bonus bMaxHPrate,-2; bonus2 bAddEff,Eff_Bleeding,200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1816,'Berserk_','Berserk','Weapon','Knuckle',20,500,120,1,1,true,true,true,4,36,true,'bonus bAspdRate,12;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1817,'Kaiser_Knuckle_C','Kaiser Knuckle','Weapon','Knuckle',1,159,1,true,true,true,4,1,100,true,true,true,true,true,true,true,true,'bonus bAtkEle,Ele_Wind; bonus2 bAddRace,RC_Undead,5; bonus2 bAddEle,Ele_Water,10; bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Fire,10; bonus2 bAddEle,Ele_Wind,10; bonus bAspdRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1818,'Magma_Fist','Magma Fist','Weapon','Knuckle',20,650,80,1,3,true,true,true,3,75,true,'bonus3 bAutoSpell,"SA_FLAMELAUNCHER",5,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1819,'Icicle_Fist','Icicle Fist','Weapon','Knuckle',20,650,80,1,3,true,true,true,3,75,true,'bonus3 bAutoSpell,"SA_FROSTWEAPON",5,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1820,'Electric_Fist','Electric Fist','Weapon','Knuckle',20,650,80,1,3,true,true,true,3,75,true,'bonus3 bAutoSpell,"SA_LIGHTNINGLOADER",5,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1821,'Seismic_Fist','Seismic Fist','Weapon','Knuckle',20,650,80,1,3,true,true,true,3,75,true,'bonus3 bAutoSpell,"SA_SEISMICWEAPON",5,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1822,'Combo_Battle_Glove','Combo Battle Glove','Weapon','Knuckle',20,500,30,1,4,true,true,true,3,60,true,'bonus2 bSkillAtk,"MO_TRIPLEATTACK",15; bonus2 bSkillAtk,"MO_CHAINCOMBO",15; bonus2 bSkillAtk,"MO_COMBOFINISH",20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1823,'BF_Knuckle1','Valorous Battle Fist','Weapon','Knuckle',20,30,1,true,true,true,3,80,true,100,true,true,true,true,true,true,true,'bonus bStr,2; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus4 bAutoSpell,"CH_SOULCOLLECT",1,5,0; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1824,'BF_Knuckle2','Brave Battle Fist','Weapon','Knuckle',20,30,1,true,true,true,3,80,true,100,true,true,true,true,true,true,true,'bonus bStr,2; bonus bInt,1; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bVariableCastrate,"MO_EXTREMITYFIST",-25; autobonus "{ bonus2 bVariableCastrate,\\"MO_EXTREMITYFIST\\",-100; }",50,6000,BF_WEAPON,"{ specialeffect2 EF_SUFFRAGIUM; }"; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1825,'Horn_Of_Hilthrion','Horn of Hillslion','Weapon','Knuckle',20,600,95,1,3,true,true,true,true,3,60,true,'bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,100; bonus4 bAutoSpellOnSkill,"CH_PALMSTRIKE","MO_INVESTIGATE",1,100; bonus3 bAutoSpell,"MO_CALLSPIRITS",5,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1826,'Krieger_Knuckle1','Glorious Claw','Weapon','Knuckle',20,30,1,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) { bonus3 bAutoSpell,"MO_INVESTIGATE",5,(.@r*10-50); bonus3 bAutoSpell,"AL_DECAGI",1,(.@r*10-50); }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1827,'Krieger_Knuckle2','Glorious Fist','Weapon','Knuckle',20,30,1,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) { bonus2 bVariableCastrate,"MO_EXTREMITYFIST",-100; bonus2 bFixedCastrate,"MO_EXTREMITYFIST",-100; bonus4 bautospellonskill,"MO_EXPLOSIONSPIRITS","CH_SOULCOLLECT",1,1000; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1828,'Monk_Knuckle','Monk Knuckle','Weapon','Knuckle',20,150,1,true,true,true,4,100,true,true,true,true,true,true,true,true,'bonus bInt,2; bonus2 bSkillAtk,"MO_FINGEROFFENSIVE",25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1829,'Fist_C','Fist','Weapon','Knuckle',150,1,true,true,true,3,1,100,true,true,true,true,true,true,true,true,'bonus2 bAddSize,Size_All,40;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1830,'Sura_Rampage','Sura Rampage','Weapon','Knuckle',20,500,142,1,1,true,true,true,3,102,true,'bonus2 bSkillAtk,"SR_EARTHSHAKER",20; bonus2 bSkillAtk,"SR_SKYNETBLOW",20; bonus bUseSPrate,5; .@r = getrefine(); if(.@r>6) { bonus bUseSPrate,-1*(.@r-6); }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (1831,'P_Knuckle1','Eden Knuckle I','Weapon','Knuckle',120,1,true,true,true,3,60,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1832,'Velum_Claw','Vellum Claw','Weapon','Knuckle',20,650,160,1,true,true,true,4,95,true,'bonus2 bAddRace,RC_Player_Human,100; .@r = getrefine(); if(.@r>7) { bonus2 bAddRace,RC_Player_Human,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; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1833,'Claw_Of_Flash','Claw of Flash','Weapon','Knuckle',60000,400,140,1,2,true,true,true,4,105,true,'bonus bAspd,1; bonus bAspdRate,getrefine(); bonus2 bAddSize,Size_Medium,getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1834,'TE_Woe_Fist','TE Woe Fist','Weapon','Knuckle',150,1,true,true,true,3,40,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Freeze,3000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1835,'Spartacus','Spartacus','Weapon','Knuckle',600,100,1,2,true,true,true,4,50,true,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus2 bAddClass,Class_All,.@r; if(.@r>9) { bonus bNoSizeFix; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_monk`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (1836,'Thanos_Knuckle','Thanos Knuckle','Weapon','Knuckle',10,600,160,100,1,1,true,true,true,true,true,4,120,true,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000;','heal -1000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`slots`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1837,'Iron_nail','Iron Nail','Weapon','Knuckle',10,1500,100,1,true,true,true,3,50,true,'bonus bUnbreakableWeapon; bonus bIgnoreDefClass,Class_All; .@r = (getrefine()/2); bonus bAspdRate,-5+.@r; if(getskilllv("MO_CHAINCOMBO")==5){ bonus bBaseAtk,20; } if(getskilllv("MO_COMBOFINISH")==5){ bonus bBaseAtk,20; } if(getskilllv("CH_TIGERFIST")==5){ bonus bBaseAtk,20; } if(getskilllv("CH_CHAINCRUSH")==10){ bonus bBaseAtk,40; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1838,'Half_BF_Knuckle1','Half BF Knuckle1','Weapon','Knuckle',20,30,1,true,true,true,3,80,true,'bonus bStr,2; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player_Human,30; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus4 bAutoSpell,"CH_SOULCOLLECT",1,5,0; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1839,'Crimson_Knuckles','Crimson Knuckles','Weapon','Knuckle',20,1000,100,1,2,true,true,true,3,70,true,'.@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1840,'Requiem_Knuckle','Requiem Knuckle','Weapon','Knuckle',20,500,150,100,1,true,true,true,4,100,true,'.@r = getrefine(); .@b = 40; if(.@r>=5){ .@b += (.@r-5)*15+20; } bonus2 bAddRace2,RC2_BioLab,.@b;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1841,'Claw_Of_Flash_','Claw of Flash','Weapon','Knuckle',60000,400,140,1,3,true,true,true,4,105,true,'bonus bAspd,1; bonus bAspdRate,getrefine(); bonus2 bAddSize,Size_Medium,getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_monk`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1846,'Illusion_Combo_Battle_Glove','Illusion Combo Battle Glove','Weapon','Knuckle',500,250,1,2,true,true,true,true,true,4,120,true,'.@r = getrefine(); bonus2 bSkillAtk,"SR_SKYNETBLOW",(10+5*(.@r/2)); bonus2 bSkillAtk,"SR_DRAGONCOMBO",(10+5*(.@r/2)); bonus2 bSkillAtk,"SR_TIGERCANNON",(5*(.@r/3));'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1862,'Burning_Knuckle-OS','Burning Knuckle-OS','Weapon','Knuckle',20,900,175,1,2,true,true,4,130,true,'.@r = getrefine(); bonus2 bAddClass,Class_All,3; if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",15; if (.@r >= 11) { bonus2 bAddSize,Size_Medium,20; bonus2 bAddSize,Size_Large,20; } } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1865,'Raging_Dragon_Fist','Raging Dragon Fist','Weapon','Knuckle',20,700,210,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bBaseAtk,4*.@r; bonus2 bSkillAtk,"MO_CHAINCOMBO",30; if (.@r >= 9) { bonus2 bSkillAtk,"MO_COMBOFINISH",50; bonus2 bSkillAtk,"CH_CHAINCRUSH",50; } if (.@r >= 11) bonus2 bSkillAtk,"CH_CHAINCRUSH",30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1866,'Dedicated_Bandage','Dedicated Bandage','Weapon','Knuckle',20,800,220,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bBaseAtk,4*.@r; bonus bLongAtkRate,10; if (.@r >= 9) bonus2 bSkillAtk,"SR_KNUCKLEARROW",40; if (.@r >= 11) bonus bDelayrate,-7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1900,'Violin_of_Vicious_Mind','Violin of Vicious Mind','Weapon','Musical',20,1300,130,50,1,1,true,'Male',true,4,160,true,'bonus bAtk,pow(min(getrefine(),15),2); bonus bMatk,pow(min(getrefine(),15),2)/2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1901,'Violin','Violin','Weapon','Musical',4000,700,50,1,3,true,'Male',true,1,2,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1902,'Violin_','Violin','Weapon','Musical',4000,700,50,1,4,true,'Male',true,1,2,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1903,'Mandolin','Mandolin','Weapon','Musical',18000,400,90,1,2,true,'Male',true,2,14,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1904,'Mandolin_','Mandolin','Weapon','Musical',18000,400,90,1,3,true,'Male',true,2,14,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1905,'Lute','Lute','Weapon','Musical',24500,500,105,1,2,true,'Male',true,2,14,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1906,'Lute_','Lute','Weapon','Musical',24500,500,105,1,3,true,'Male',true,2,14,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1907,'Guitar','Guitar','Weapon','Musical',47000,900,142,1,true,'Male',true,3,27,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1908,'Guitar_','Guitar','Weapon','Musical',47000,900,142,1,1,true,'Male',true,3,27,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1909,'Harp','Harp','Weapon','Musical',62000,900,114,1,1,true,'Male',true,3,27,true,'bonus bInt,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1910,'Harp_','Harp','Weapon','Musical',62000,900,114,1,2,true,'Male',true,3,27,true,'bonus bInt,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1911,'Guh_Moon_Goh','Gumoongoh','Weapon','Musical',54000,1300,126,1,1,true,'Male',true,3,27,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1912,'Guh_Moon_Goh_','Gumoongoh','Weapon','Musical',54000,1300,126,1,2,true,'Male',true,3,27,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1913,'Electronic_Guitar','Electric Guitar','Weapon','Musical',20,1800,110,1,true,'Male',true,4,70,true,'skill "WZ_JUPITEL",1; bonus3 bAutoSpell,"WZ_JUPITEL",1,100; bonus bAtkEle,Ele_Wind; bonus bInt,2; bonus bAgi,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1914,'Guitar_Of_Passion','Burning Passion Guitar','Weapon','Musical',20,900,110,1,true,'Male',true,3,27,true,'bonus bAtkEle,Ele_Fire;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1915,'Guitar_Of_Blue_Solo','Loner\'s Guitar','Weapon','Musical',20,900,110,1,true,'Male',true,3,27,true,'bonus bAtkEle,Ele_Water;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1916,'Guitar_Of_Vast_Land','Green Acre Guitar','Weapon','Musical',20,900,110,1,true,'Male',true,3,27,true,'bonus bAtkEle,Ele_Earth;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1917,'Guitar_Of_Gentle_Breeze','Gentle Breeze Guitar','Weapon','Musical',20,900,110,1,true,'Male',true,3,27,true,'bonus bAtkEle,Ele_Wind;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1918,'Oriental_Lute','Oriental Lute','Weapon','Musical',20,1200,150,1,true,'Male',true,4,65,true,'bonus2 bSkillAtk,"CG_ARROWVULCAN",10; bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`class_upper`,`class_third_upper`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1919,'Base_Guitar','Bass Guitar','Weapon','Musical',20,1500,130,1,1,true,true,true,'Male',true,3,70,true,'bonus bSPGainValue,3; bonus4 bAutoSpellWhenHit,"WZ_HEAVENDRIVE",3,30,1; bonus3 bAutoSpell,"NPC_WIDECONFUSE",2,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_barddancer`,`class_upper`,`class_third_upper`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1920,'Berserk_Guitar','Berserk Guitar','Weapon','Musical',20,1800,10,1,true,true,true,'Male',true,4,70,true,'bonus bAspdRate,100; bonus bHPrecovRate,-100; bonus2 bHPLossRate,50,5000; bonus bDex,-readparam(bDex);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1921,'Guh_Moon_Gom','Gun Moon Gom','Weapon','Musical',20,120,1,true,'Male',true,1,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1922,'Oriental_Lute_','Oriental Lute','Weapon','Musical',20,1200,150,1,2,true,'Male',true,4,65,true,'bonus2 bSkillAtk,"CG_ARROWVULCAN",10; bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1923,'BF_Instrument1','Valorous Battlefield Guitar','Weapon','Musical',20,50,1,true,'Male',true,3,80,true,100,true,true,true,true,true,true,true,'bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1924,'BF_Instrument2','Brave Battlefield Guitar','Weapon','Musical',20,50,1,true,'Male',true,3,80,true,100,true,true,true,true,true,true,true,'bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bSkillAtk,"CG_ARROWVULCAN",20; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`class_upper`,`class_third_upper`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1925,'Cello','Cello','Weapon','Musical',20,700,110,1,3,true,true,true,'Male',true,3,70,true,'bonus bAgi,2; bonus bDex,3; bonus2 bAddSkillBlow,"BA_MUSICALSTRIKE",2; bonus2 bAddSkillBlow,"CG_ARROWVULCAN",3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`class_upper`,`class_third_upper`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1926,'Harp_Of_Nepenthes','Harp of Nepenthes','Weapon','Musical',20,1000,120,1,2,true,true,true,'Male',true,4,60,true,'bonus bInt,2; bonus3 bAddEffOnSkill,"BA_MUSICALSTRIKE",Eff_Stun,(getrefine()>=9?2000:1000);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1927,'Krieger_Instrument1','Glorious Guitar','Weapon','Musical',20,50,1,true,'Male',true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) bonus4 bAutoSpellOnSkill,"CG_ARROWVULCAN","CG_TAROTCARD",5,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_barddancer`,`class_upper`,`class_third_upper`,`gender`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1928,'Berserk_Guitar_I','Spirited Guitar','Weapon','Musical',40,1,true,true,true,'Male',true,4,100,true,true,true,true,true,true,true,true,'bonus bAspdRate,100; bonus bHPrecovRate,-100; bonus2 bHPLossRate,50,5000; bonus bDex,-readparam(bDex);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1929,'Guitar_C','Guitar','Weapon','Musical',177,1,true,'Male',true,3,1,100,true,true,true,true,true,true,true,true,'bonus2 bAddSize,Size_All,40;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1930,'Green_Whistle','Green Whistle','Weapon','Musical',20,800,170,50,1,1,true,'Male',true,3,102,true,'.@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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (1931,'P_String_Inst1','Eden Guitar I','Weapon','Musical',125,1,true,'Male',true,3,60,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1932,'TE_Woe_Guitar','TE Woe Guitar','Weapon','Musical',100,1,true,'Male',true,3,40,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Poison,3000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (1933,'Thanos_Violin','Thanos Violin','Weapon','Musical',10,2000,200,130,1,1,true,true,true,true,'Male',true,4,120,true,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus bLongAtkRate,20; bonus2 bHPLossRate,100,10000;','heal -1000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1934,'Contabass','Contrabass','Weapon','Musical',20,250,180,120,1,2,true,'Male',true,3,130,true,'bonus2 bSkillCooldown,"WM_RANDOMIZESPELL",-20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1935,'Ukulele_Of_Newoz','Oz\'s New Ukulele','Weapon','Musical',20,2000,160,1,2,true,'Male',true,4,130,true,'bonus2 bSkillUseSP,"MI_RUSH_WINDMILL",20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1936,'Ru_Blue_Violin','Blue Violin','Weapon','Musical',10,1500,180,2,1,true,'Male',true,3,100,true,'bonus bDex,5; bonus bVit,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1937,'Ru_Gold_Violin','Ru Gold Violin','Weapon','Musical',1500,180,1,2,true,true,true,true,true,3,120,true,'bonus bDex,8; bonus bVit,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (1938,'Infinity_Violin','Infinity Violin','Weapon','Musical',10,500,150,2,1,true,true,true,true,'Male',true,4,100,true,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1939,'Crimson_Violin','Crimson Violin','Weapon','Musical',20,800,80,2,2,true,'Male',true,3,70,true,'.@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1940,'Trumpet_Shell','Trumpet Shell','Weapon','Musical',600,125,1,1,true,true,true,true,'Male',true,4,130,true,'.@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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1941,'Unity_Violin','Unity Violin','Weapon','Musical',20,400,76,2,1,true,'Male',true,3,1,true,100,true,true,true,true,true,true,'bonus bBaseAtk,pow(getrefine(),2)*125/100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1942,'Requiem_Violin','Requiem Violin','Weapon','Musical',20,500,160,120,1,true,'Male',true,4,100,true,'.@r = getrefine(); .@b = 40; bonus bUnbreakableWeapon; if(.@r>=5){ .@b += (.@r-5)*15+20; } if(.@r>=7) bonus2 bSkillAtk,"CG_ARROWVULCAN",200; bonus2 bAddRace2,RC2_BioLab,.@b;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1944,'Hippie_Guitar','Hippie Guitar','Weapon','Musical',1000,140,2,2,true,true,true,true,'Male',true,3,100,true,'.@r = getrefine(); .@lvl = getskilllv("BA_MUSICALLESSON"); bonus bAspdRate,.@lvl; if (.@r>=7) bonus bBaseAtk,(5*.@lvl); if (.@r>=9) bonus bAspd,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1950,'Rope','Rope','Weapon','Whip',2500,400,45,2,3,true,'Female',true,1,3,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1951,'Rope_','Rope','Weapon','Whip',2500,400,45,2,4,true,'Female',true,1,3,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1952,'Line','Whip','Weapon','Whip',12000,300,80,2,2,true,'Female',true,2,16,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1953,'Line_','Whip','Weapon','Whip',12000,300,80,2,3,true,'Female',true,2,16,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1954,'Wire','Wire Whip','Weapon','Whip',17500,1000,95,2,2,true,'Female',true,2,16,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1955,'Wire_','Wire Whip','Weapon','Whip',17500,1000,95,2,3,true,'Female',true,2,16,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1956,'Rante','Rante Whip','Weapon','Whip',32000,900,135,2,true,'Female',true,3,30,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1957,'Rante_','Rante Whip','Weapon','Whip',32000,900,135,2,1,true,'Female',true,3,30,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1958,'Tail','Tail Whip','Weapon','Whip',41000,700,105,2,1,true,'Female',true,3,30,true,'bonus bLuk,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1959,'Tail_','Tail Whip','Weapon','Whip',41000,700,105,2,2,true,'Female',true,3,30,true,'bonus bLuk,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1960,'Whip','Whip','Weapon','Whip',38000,700,120,2,1,true,'Female',true,3,30,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1961,'Whip_','Whip','Weapon','Whip',38000,700,120,2,2,true,'Female',true,3,30,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1962,'Lariat','Lariat Whip','Weapon','Whip',20,400,100,2,true,'Female',true,4,44,true,'bonus bDex,5; bonus bAgi,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1963,'Rapture_Rose','Rapture Rose','Weapon','Whip',20,300,115,2,true,'Female',true,4,44,true,'bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,5000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1964,'Chemeti','Chemeti Whip','Weapon','Whip',20,700,135,2,true,'Female',true,4,44,true,'bonus bCritical,5; bonus bFlee,10; bonus bFlee2,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1965,'Whip_Of_Red_Flame','Red Flame Whip','Weapon','Whip',20,700,110,2,true,'Female',true,3,30,true,'bonus bAtkEle,Ele_Fire;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1966,'Whip_Of_Ice_Piece','Icicle Whip','Weapon','Whip',20,700,110,2,true,'Female',true,3,30,true,'bonus bAtkEle,Ele_Water;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1967,'Whip_Of_Earth','Gaia Whip','Weapon','Whip',20,700,110,2,true,'Female',true,3,30,true,'bonus bAtkEle,Ele_Earth;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1968,'Jump_Rope','Skipping Rope','Weapon','Whip',20,400,120,2,true,'Female',true,3,30,true,'bonus bCritical,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1969,'Bladed_Whip','Blade Whip','Weapon','Whip',20,1200,140,2,true,'Female',true,4,30,true,'bonus2 bAddEff,Eff_Bleeding,300;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1970,'Queen\'s_Whip','Queen\'s Whip','Weapon','Whip',20,1100,150,2,true,'Female',true,4,65,true,'bonus2 bSkillAtk,"CG_ARROWVULCAN",10; bonus2 bSkillAtk,"DC_THROWARROW",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1971,'Electric_Wire','Electric Wire','Weapon','Whip',20,700,110,2,true,'Female',true,3,30,true,'bonus bAtkEle,Ele_Wind;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`class_upper`,`class_third_upper`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1972,'Electric_Eel','Electric Eel','Weapon','Whip',20,2000,100,2,2,true,true,true,'Female',true,4,70,true,'bonus bAtkEle,Ele_Wind; bonus bInt,2; bonus bAgi,2; bonus3 bAutoSpell,"WZ_JUPITEL",3,20; .@r = getrefine(); if(.@r>0) bonus3 bAutoSpell,"CG_ARROWVULCAN",.@r,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`class_upper`,`class_third_upper`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1973,'Sea_Witch_Foot','Sea Witch\'s Foot','Weapon','Whip',20,1500,110,2,1,true,true,true,'Female',true,4,70,true,'bonus bSPGainValue,5; bonus4 bAutoSpellWhenHit,"WZ_FROSTNOVA",3,50,1; bonus3 bAutoSpell,"NPC_WIDESILENCE",2,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_barddancer`,`class_upper`,`class_third_upper`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1974,'Carrot_Whip','Carrot Whip','Weapon','Whip',20,1300,185,2,true,true,true,'Female',true,4,70,true,'.@r = getrefine(); if(.@r>0) bonus3 bAutoSpell,"AL_INCAGI",min(.@r,10),10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1975,'Queen_Is_Whip','Queen Is Whip','Weapon','Whip',20,120,2,true,'Female',true,1,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1976,'Queen\'s_Whip_','Queen\'s Whip','Weapon','Whip',20,1100,150,2,2,true,'Female',true,4,65,true,'bonus2 bSkillAtk,"CG_ARROWVULCAN",10; bonus2 bSkillAtk,"DC_THROWARROW",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1977,'BF_Whip1','Valorous Battle Lariat','Weapon','Whip',20,50,2,true,'Female',true,3,80,true,100,true,true,true,true,true,true,true,'bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1978,'BF_Whip2','Brave Battle Lariat','Weapon','Whip',20,50,2,true,'Female',true,3,80,true,100,true,true,true,true,true,true,true,'bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bSkillAtk,"CG_ARROWVULCAN",20; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`class_upper`,`class_third_upper`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1979,'Stem_Of_Nepenthes','Stem of Nepenthes','Weapon','Whip',20,1000,120,2,2,true,true,true,'Female',true,4,60,true,'bonus bInt,2; bonus3 bAddEffOnSkill,"DC_THROWARROW",Eff_Freeze,(getrefine()>=9?2000:1000);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`class_upper`,`class_third_upper`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1980,'Whip_Of_Balance','Whip of Balance','Weapon','Whip',20,700,110,2,3,true,true,true,'Female',true,3,70,true,'bonus bAgi,2; bonus bDex,3; bonus2 bAddSkillBlow,"DC_THROWARROW",2; bonus2 bAddSkillBlow,"CG_ARROWVULCAN",3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1981,'Krieger_Whip1','Glorious Lariat','Weapon','Whip',20,50,2,true,'Female',true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) bonus4 bAutoSpellOnSkill,"CG_ARROWVULCAN","CG_TAROTCARD",5,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1982,'Phenomena_Whip','Phenomena Whip','Weapon','Whip',20,160,2,true,'Female',true,4,100,true,true,true,true,true,true,true,true,'bonus bDex,2; bonus2 bSkillAtk,"DC_THROWARROW",25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1983,'Rante_C','Rante Whip','Weapon','Whip',170,2,true,'Female',true,3,1,100,true,true,true,true,true,true,true,true,'bonus2 bAddSize,Size_All,40;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1984,'Stem_Whip','Stem Whip','Weapon','Whip',20,800,170,50,1,1,true,'Female',true,3,102,true,'.@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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1985,'Rosebine','Rosebine','Weapon','Whip',20,1000,100,130,1,true,'Female',true,4,110,true,'bonus bInt,2; bonus bAgi,-2; bonus3 bAutoSpell,"WM_VOICEOFSIREN",1,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (1986,'P_Tail1','Eden Tail I','Weapon','Whip',125,2,true,'Female',true,3,60,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1987,'TE_Woe_Rope','TE Woe Rope','Weapon','Whip',100,2,true,'Female',true,3,40,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Blind,3000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (1988,'Thanos_Whip','Thanos Whip','Weapon','Whip',10,2200,200,130,2,1,true,true,true,true,'Female',true,4,120,true,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus bLongAtkRate,20; bonus2 bHPLossRate,100,10000;','heal -1000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1989,'Gymnastics_Ribbon','Rhythmic Gymnastics Ribbon','Weapon','Whip',20,300,150,120,2,2,true,'Female',true,3,130,true,'bonus bAspdRate,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1990,'Floral_Mic_Of_Igu','Bloody Floral Decoration Microphone','Weapon','Whip',20,1000,160,2,2,true,'Female',true,4,130,true,'bonus2 bSkillUseSP,"CG_MOONLIT",20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1991,'Ru_Blue_Whip','Blue Whip','Weapon','Whip',10,1500,180,2,1,true,'Female',true,3,100,true,'bonus bDex,5; bonus bVit,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1992,'Ru_Gold_Whip','Ru Gold Whip','Weapon','Whip',1500,180,2,2,true,true,true,true,true,3,120,true,'bonus bDex,8; bonus bVit,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (1994,'Infinity_Whip','Infinity Whip','Weapon','Whip',10,500,150,2,1,true,true,true,true,'Female',true,4,100,true,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1995,'Crimson_Whip','Crimson Whip','Weapon','Whip',20,800,80,2,2,true,'Female',true,3,70,true,'.@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1996,'Wire_of_Vicious_Mind','Wire of Vicious Mind','Weapon','Whip',20,1300,130,50,2,1,true,'Female',true,4,160,true,'bonus bAtk,pow(min(getrefine(),15),2); bonus bMatk,pow(min(getrefine(),15),2)/2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1997,'Unity_Whip','Unity Whip','Weapon','Whip',20,76,40,2,1,true,'Female',true,3,1,true,100,true,true,true,true,true,true,'bonus bBaseAtk,pow(getrefine(),2)*125/100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2000,'Destruction_Rod','Staff of Destruction','Weapon','2hStaff',20,2500,130,280,1,1,true,true,true,true,true,4,80,true,'.@r = getrefine; bonus bMatkRate,.@r/2; bonus bInt,3; bonus bAgi,10; bonus bUseSPrate,(.@r*2); bonus3 bAutoSpellWhenHit,"WZ_JUPITEL",5,(.@r*20); bonus2 bFixedCastrate,"HW_MAGICPOWER",-50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_monk`,`job_priest`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2001,'Divine_Cross','Divine Cross','Weapon','2hStaff',20,1500,120,210,1,true,true,true,true,4,70,true,'bonus bAtkEle,Ele_Holy; bonus bDex,4; bonus2 bSubRace,RC_Demon,15; bonus2 bSubRace,RC_Undead,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2002,'Krieger_Twohand_Staff1','Glorious Destruction Staff','Weapon','2hStaff',20,70,210,1,true,true,true,true,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatkRate,.@r; bonus2 bMagicAddRace,RC_DemiHuman,15; bonus2 bMagicAddRace,RC_Player_Human,15; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; if(.@r>5) { bonus2 bMagicAddRace,RC_DemiHuman,(min(14,.@r)-5)*2; bonus2 bMagicAddRace,RC_Player_Human,(min(14,.@r)-5)*2; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5+(min(14,.@r)-5)*2; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,5+(min(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; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2003,'Destruction_Rod_M','Staff of Destruction','Weapon','2hStaff',20,2500,130,280,1,1,true,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'.@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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_mage`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2004,'Kronos','Kronos','Weapon','2hStaff',20,1000,30,240,1,true,true,true,true,true,true,true,4,50,true,'.@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; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2005,'Dea_Staff','Dea Staff','Weapon','2hStaff',20,1000,30,220,1,1,true,true,true,true,true,true,true,3,50,true,'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; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2006,'G_Staff_Of_Light','Staff Of Light','Weapon','2hStaff',20,1900,80,150,1,true,true,true,true,true,true,4,60,true,'bonus bAtkEle,Ele_Holy; bonus bInt,6;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2007,'Golden_Rod_Staff','Golden Rod Staff','Weapon','2hStaff',20,900,30,230,1,2,true,true,true,4,100,true,'bonus bAtkEle,Ele_Wind; bonus bInt,3; bonus2 bSkillAtk,"WZ_JUPITEL",12;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2008,'Aqua_Staff','Aqua Staff','Weapon','2hStaff',20,900,30,230,1,2,true,true,true,4,100,true,'bonus bAtkEle,Ele_Water; bonus bInt,3; bonus2 bSkillAtk,"MG_COLDBOLT",12; bonus2 bSkillAtk,"MG_FROSTDIVER",12;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2009,'Crimson_Staff','Crimson Staff','Weapon','2hStaff',20,900,30,230,1,2,true,true,true,4,100,true,'bonus bAtkEle,Ele_Fire; bonus bInt,3; bonus2 bSkillAtk,"MG_FIREBOLT",10; bonus2 bSkillAtk,"MG_FIREBALL",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2010,'Forest_Staff','Forest Staff','Weapon','2hStaff',20,900,30,230,1,2,true,true,true,4,100,true,'bonus bAtkEle,Ele_Earth; bonus bInt,3; bonus2 bSkillAtk,"WZ_EARTHSPIKE",10; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2011,'Golden_Rod_Staff2','Empowered Golden Rod Staff','Weapon','2hStaff',20,900,30,270,1,1,true,true,true,4,130,true,'bonus bAtkEle,Ele_Wind; bonus bInt,5; bonus2 bSkillAtk,"WZ_JUPITEL",30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2012,'Aqua_Staff2','Empowered Aqua Staff','Weapon','2hStaff',20,900,30,270,1,1,true,true,true,4,130,true,'bonus bAtkEle,Ele_Water; bonus bInt,5; bonus2 bSkillAtk,"MG_COLDBOLT",30; bonus2 bSkillAtk,"MG_FROSTDIVER",30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2013,'Crimson_Staff2','Empowered Crimson Staff','Weapon','2hStaff',20,900,30,270,1,1,true,true,true,4,130,true,'bonus bAtkEle,Ele_Fire; bonus bInt,5; bonus2 bSkillAtk,"MG_FIREBOLT",30; bonus2 bSkillAtk,"MG_FIREBALL",30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2014,'Forest_Staff2','Empowered Forest Staff','Weapon','2hStaff',20,900,30,270,1,1,true,true,true,4,130,true,'bonus bAtkEle,Ele_Earth; bonus bInt,5; bonus2 bSkillAtk,"WZ_EARTHSPIKE",30; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (2015,'Upg_Staff','Upg Staff','Weapon','2hStaff',20,1000,50,70,1,1,true,true,true,true,true,true,true,true,true,3,1,true,100,true,'.@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);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2016,'Velum_Arc_Wand','Vellum Arc Wand','Weapon','2hStaff',20,800,110,220,1,true,true,true,true,true,true,true,true,true,4,95,true,'bonus bUnbreakableWeapon; bonus2 bMagicAddRace,RC_Player_Human,25; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; .@r = getrefine(); if(.@r>5) { bonus2 bMagicAddRace,RC_Player_Human,15; } if(.@r>8) { bonus bVariableCastrate,-50; bonus bFixedCast,-200; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_monk`,`job_priest`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2017,'Divine_Cross_','Divine Cross','Weapon','2hStaff',20,1500,120,210,1,1,true,true,true,true,4,70,true,'bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Holy; bonus bDex,4; bonus2 bSubRace,RC_Demon,15; bonus2 bSubRace,RC_Undead,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_novice`,`job_priest`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2018,'Metal_Staff','Metal Staff','Weapon','2hStaff',20,50,70,1,1,true,true,true,true,true,true,true,true,true,true,true,3,1,true,100,true,true,true,true,true,true,true,'if(BaseJob==Job_Wizard) bonus bMatk,15; else if(BaseJob==Job_Sage) bonus bMatk,10; bonus bMatk,(getrefine()*5); .@i = min(BaseLevel/10,12); if(.@i>2) bonus bMatk,((.@i-2)*5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_novice`,`job_priest`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2019,'TE_Woe_Two_Hand_Staff','TE Woe Two Hand Staff','Weapon','2hStaff',50,130,1,true,true,true,true,true,true,true,true,true,true,true,3,40,true,100,true,true,true,true,true,true,true,'bonus2 bMagicAddRace,RC_Player_Human,20; bonus3 bAddEff,Eff_Stun,1000,ATF_MAGIC; bonus bHPRecovRate,5; bonus bSPRecovRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`job_sage`,`job_soullinker`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (2020,'Jormungand','Jormungand','Weapon','2hStaff',10,3000,200,280,true,true,true,true,true,4,1,'bonus bInt,20; bonus3 bAddEff,Eff_Poison,3000,ATF_MAGIC; bonus2 bAddEffWhenHit,Eff_DPoison,100; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2021,'Ganbantein','Ganbantein','Weapon','Staff',2000,100,320,1,true,true,true,true,true,4,100,true,'bonus bInt,25; bonus bDex,25; bonus3 bAddEff,Eff_Poison,1000,ATF_MAGIC; bonus3 bAutoSpell,"AB_SILENTIUM",1,100; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2022,'Staff_Of_Geffen','Staff of Geffen','Weapon','2hStaff',20,1000,100,300,1,1,true,true,true,true,true,1,150,true,'bonus bInt,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (2023,'Thanos_Rod','Thanos Two-Handed Staff','Weapon','2hStaff',10,1400,120,250,1,1,true,true,true,true,true,true,true,true,true,true,true,4,120,true,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus bHealPower,18; bonus bMagicHPGainValue,500; bonus bMagicSPGainValue,50; bonus2 bHPLossRate,100,10000;','heal -1000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`slots`,`job_sage`,`job_soullinker`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (2024,'Infinity_Two-handed_Stick','Infinity Two-handed Stick','Weapon','2hStaff',10,500,30,170,1,true,true,true,true,true,true,true,true,4,100,true,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_soullinker`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2025,'Crimson_Two-Handed_Staff','Crimson Two-Handed Staff','Weapon','2hStaff',20,1000,100,1,2,true,true,true,true,3,70,true,'.@r = getrefine(); bonus bInt,5; bonus bMatk,150+((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2026,'Staff_of_Vicious_Mind','Staff of Vicious Mind','Weapon','2hStaff',20,1000,100,200,1,1,true,true,true,true,true,true,4,160,true,'bonus bMatk,pow(min(getrefine(),15),2); bonus bInt,6; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2027,'Sunflower_Kid','Sunflower Kid','Weapon','2hStaff',10,1500,150,320,2,true,true,true,true,true,true,4,170,true,'bonus bInt,5; .@r = getrefine(); bonus bMatkRate,(.@r/2); bonus bDelayrate,(.@r*-1); bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_soullinker`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2030,'Unity_Two-Handed_Staff','Unity Two-Handed Staff','Weapon','2hStaff',20,500,95,135,1,1,true,true,true,true,3,1,true,100,true,true,true,true,true,true,'bonus bMatk,pow(getrefine(),2)*125/100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2032,'Requiem_Wizardry_Staff','Requiem Wizardry Staff','Weapon','Staff',20,500,100,230,1,true,4,100,true,'.@r = getrefine(); .@b = 40; .@c = 5; if(.@r>=5){ .@b += (.@r-5)*15+20; .@c += .@r-5; } bonus2 bMagicAddRace2,RC2_BioLab,.@b; bonus2 bSubRace2,RC2_BioLab,.@c; bonus2 bIgnoreMdefRace2Rate,RC2_BioLab,(.@r-5)*10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`class_upper`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2039,'Illusion_Wizardry_Staff','Illusion Wizardry Staff','Weapon','2hStaff',2400,150,250,1,2,true,true,true,true,true,true,true,true,true,true,4,100,true,'.@val = min(getrefine(),10)/2; bonus bInt,(6+.@val); bonus bDex,(2+.@val);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2046,'Novice_Warlock\'s_Staff','Novice Warlock\'s Staff','Weapon','2hStaff',70,170,1,1,true,true,true,true,true,true,3,100,true,'bonus bMatkRate,5; .@r = getrefine(); if(.@r>=7){ bonus2 bSkillAtk,"WL_CRIMSONROCK",15; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2048,'Aeon_Staff','Aeon Staff','Weapon','2hStaff',800,100,200,1,2,true,true,true,true,true,true,4,100,true,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus2 bSkillAtk,"WL_EARTHSTRAIN",12*(.@r/3); if(.@r>=9){ bonus bVariableCastrate,-10; } if (.@r>=11) { bonus2 bSkillCooldown,"WL_EARTHSTRAIN",-1000; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2049,'Blue_Flame_Cane','Blue Flame Cane','Weapon','2hStaff',20,800,110,300,1,2,true,true,true,true,true,true,true,true,true,4,175,true,'.@r = getrefine; bonus bInt,7; bonus bMatkRate,.@r/2; bonus bUnbreakableWeapon; if (.@r>=9) .@val = 15; else if (.@r>=7) .@val = 5; if (.@r>=11) bonus2 bSubSize,Size_All,20; if (.@r>=13) bonus bDelayrate,-15; bonus2 bMagicAtkEle,Ele_Fire,.@val; bonus2 bMagicAtkEle,Ele_Earth,.@val; bonus2 bMagicAtkEle,Ele_Water,.@val; bonus2 bMagicAtkEle,Ele_Holy,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2051,'Illusion_Survivor\'s_Staff','Illusion Survivor\'s Staff','Weapon','2hStaff',1200,100,240,1,2,true,true,true,true,true,true,true,true,true,4,120,true,'.@r = getrefine(); bonus bDex,2; bonus bInt,2; bonus bMaxHP,600; bonus bUnbreakableWeapon; bonus bMatkRate,(.@r/2); if (.@r >= 7) { bonus2 bMagicAddSize,Size_Small,15; bonus2 bMagicAddSize,Size_Medium,15; if (.@r >= 9) { bonus2 bSubSize,Size_Small,15; bonus2 bSubSize,Size_Medium,15; if (.@r >= 11) { bonus2 bSubDefEle,Ele_Water,15; bonus2 bSubDefEle,Ele_Wind,15; bonus2 bSubDefEle,Ele_Earth,15; bonus2 bSubDefEle,Ele_Fire,15; } } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_novice`,`job_priest`,`job_supernovice`,`job_wizard`,`class_upper`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2053,'Abyss_Staff','Abyss Staff','Weapon','2hStaff',2400,120,270,1,1,true,true,true,true,true,true,true,true,true,true,4,165,true,'bonus2 bSubRace,RC_Player_Human,30; .@r = getrefine(); bonus bHealPower,.@r*2; if(.@r>=7){ bonus2 bMagicAddClass,Class_All,5; bonus2 bSubRace,RC_Player_Human,5; } if(.@r>=9){ bonus2 bMagicAddClass,Class_All,5; bonus2 bSubRace,RC_Player_Human,5; } bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2054,'Sealed_Aeon_Staff','Sealed Aeon Staff','Weapon','2hStaff',100,200,1,2,true,true,true,true,true,true,4,99,true,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus2 bSkillAtk,"WL_EARTHSTRAIN",12*(.@r/3); if(.@r>=7){ bonus bVariableCastrate,-10; } if(.@r>=9){ bonus2 bSkillCooldown,"WL_EARTHSTRAIN",-1000; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2055,'Staff_of_Miracle','Staff of Miracle','Weapon','2hStaff',20,1200,100,270,1,2,true,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Ghost,5; if (.@r >= 9) { bonus2 bSkillAtk,"MG_SOULSTRIKE",20; bonus2 bSkillAtk,"HW_NAPALMVULCAN",20; bonus2 bSkillAtk,"WL_SOULEXPANSION",20; } if (.@r >= 11) { bonus2 bSkillAtk,"MG_SOULSTRIKE",30; bonus2 bSkillAtk,"HW_NAPALMVULCAN",30; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2056,'Gravitation_Staff','Gravitation Staff','Weapon','2hStaff',20,1300,110,280,1,2,true,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Neutral,5; if (.@r >= 9) { bonus2 bSkillAtk,"HW_GRAVITATION",30; bonus2 bSkillAtk,"WL_DRAINLIFE",30; } if (.@r >= 11) { bonus2 bSkillCooldown,"HW_GRAVITATION",-2000; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2057,'Adorare_Staff','Adorare Staff','Weapon','2hStaff',20,1200,100,240,1,2,true,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Holy,5; if (.@r >= 9) { bonus2 bSkillAtk,"AB_ADORAMUS",30; } if (.@r >= 11) { bonus2 bSubSize,Size_All,25; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2058,'Detecting_Staff','Detecting Staff','Weapon','2hStaff',2000,180,330,1,2,true,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,10; if (.@r >= 7) { bonus bMatk,60; bonus bVariableCastrate,-10; } if (.@r >= 9) { bonus2 bMagicAtkEle,Ele_Fire,15; autobonus "{ bonus2 bMagicAddSize,Size_All,20; }",10,10000,BF_MAGIC; } if (.@r >= 11) { bonus bDelayrate,-20; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2060,'Royal_Magician_Staff','Royal Magician Staff','Weapon','2hStaff',1500,100,270,1,2,true,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,5; bonus bMatk,5*.@r; if (.@r >= 9) { bonus2 bSkillAtk,"WL_CHAINLIGHTNING",20; bonus2 bSkillAtk,"WL_EARTHSTRAIN",20; } if (.@r >= 11) { bonus2 bMagicAddRace,RC_Undead,20; bonus2 bMagicAddRace,RC_Angel,20; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_left_hand`,`refineable`,`view`) VALUES (2101,'Guard','Guard','Armor',500,300,20,true,true,1); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_left_hand`,`refineable`,`view`) VALUES (2102,'Guard_','Guard','Armor',500,300,20,1,true,true,1); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_acolyte`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_rogue`,`job_swordman`,`job_thief`,`location_left_hand`,`refineable`,`view`) VALUES (2103,'Buckler','Buckler','Armor',14000,600,40,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,2); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_rogue`,`job_swordman`,`job_thief`,`location_left_hand`,`refineable`,`view`) VALUES (2104,'Buckler_','Buckler','Armor',14000,600,40,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,2); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`refineable`,`view`) VALUES (2105,'Shield','Shield','Armor',56000,1300,60,true,true,true,true,true,3); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`refineable`,`view`) VALUES (2106,'Shield_','Shield','Armor',56000,1300,60,1,true,true,true,true,true,3); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_crusader`,`job_knight`,`job_stargladiator`,`job_swordman`,`location_left_hand`,`refineable`,`view`,`script`) VALUES (2107,'Mirror_Shield','Mirror Shield','Armor',60000,1000,45,true,true,true,true,true,true,4,'bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`job_knight`,`job_stargladiator`,`job_swordman`,`location_left_hand`,`refineable`,`view`,`script`) VALUES (2108,'Mirror_Shield_','Mirror Shield','Armor',60000,1000,45,1,true,true,true,true,true,true,4,'bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_left_hand`,`refineable`,`view`,`script`) VALUES (2109,'Memorize_Book','Memory Book','Armor',20,1000,25,true,true,true,true,true,true,5,'bonus bInt,1; bonus bMdef,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_crusader`,`location_left_hand`,`equip_level_min`,`view`,`script`) VALUES (2110,'Holy_Guard','Holy Guard','Armor',85000,1400,110,true,true,68,4,'bonus bVit,2; bonus bMdef,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_crusader`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2111,'Herald_Of_GOD','Sacred Mission','Armor',128000,1600,120,true,true,83,true,4,'bonus bVit,3; bonus bInt,2; bonus bMdef,3; bonus bUnbreakableShield;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_novice`,`job_supernovice`,`location_left_hand`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (2112,'Novice_Guard','Novice Guard','Armor',1,1,20,true,true,true,1,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2113,'Novice_Shield','Novice Shield','Armor',5000,1000,20,1,true,true,true,40,true,3,'bonus2 bSubEle,Ele_All,20; bonus2 bSubEle,Ele_Neutral,-20; bonus2 bSubEle,Ele_Holy,-20; bonus2 bSubEle,Ele_Dark,-20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2114,'Stone_Buckler','Stone Buckler','Armor',30000,1500,45,1,true,false,false,true,65,true,2,'bonus2 bSubSize,Size_Large,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2115,'Valkyrja\'s_Shield','Valkyrja\'s Shield','Armor',30000,500,80,1,true,false,false,true,65,true,4,'bonus2 bSubEle,Ele_Water,20; bonus2 bSubEle,Ele_Fire,20; bonus2 bSubEle,Ele_Dark,20; bonus2 bSubEle,Ele_Undead,20; bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2116,'Angel\'s_Safeguard','Angelic Guard','Armor',10000,400,30,1,true,true,true,20,true,1,'bonus2 bSubRace,RC_Demon,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_ninja`,`location_left_hand`,`equip_level_min`,`refineable`,`view`) VALUES (2117,'Arm_Guard','Arm Guard','Armor',10000,150,50,true,true,20,true,1); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_ninja`,`location_left_hand`,`equip_level_min`,`refineable`,`view`) VALUES (2118,'Arm_Guard_','Arm Guard','Armor',10000,150,50,1,true,true,20,true,1); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_ninja`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2119,'Improved_Arm_Guard','Advanced Arm Guard','Armor',40000,150,45,true,true,50,true,1,'bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_ninja`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2120,'Improved_Arm_Guard_','Advanced Arm Guard','Armor',40000,150,45,1,true,true,50,true,1,'bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_left_hand`,`refineable`,`view`,`script`) VALUES (2121,'Memorize_Book_','Memory Book','Armor',20,1000,25,1,true,true,true,true,true,true,5,'bonus bInt,1; bonus bMdef,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2122,'Platinum_Shield','Platinum Shield','Armor',20,1200,95,true,false,false,true,true,true,68,true,4,'bonus bMdef,5; bonus2 bSubSize,Size_Medium,15; bonus2 bSubSize,Size_Large,15; bonus2 bSubRace,RC_Undead,10; bonus5 bAutoSpellWhenHit,"NPC_MAGICMIRROR",7,150,BF_MAGIC,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2123,'Orleans_Server','Orleans\'s Server','Armor',20,1000,75,1,true,false,false,true,true,true,55,true,4,'bonus bMdef,2; bonus bMagicDamageReturn,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2124,'Thorny_Buckler','Thorny Buckler','Armor',20,1000,85,1,true,false,false,true,true,true,55,true,2,'bonus bMdef,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`class_upper`,`class_third_upper`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2125,'Strong_Shield','Strong Shield','Armor',20,2500,90,1,true,true,true,true,true,true,true,true,true,true,true,true,75,true,4,'bonus bNoKnockback; 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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2126,'Guyak_Shield','Guyak Shield','Armor',20,700,3,true,false,false,true,1,true,2,'bonus bMdef,2; bonus bMagicDamageReturn,2; autobonus2 "{ bonus bShortWeaponDamageReturn,5; }",20,1000,BF_WEAPON,"{ specialeffect2 EF_REFLECTSHIELD; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_left_hand`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2127,'Secular_Mission','Secular Mission','Armor',20,10,true,4,100,true,true,true,true,true,true,true,'bonus2 bSubClass,Class_All,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2128,'Herald_Of_GOD_','Sacred Mission','Armor',128000,1600,120,1,true,true,83,true,4,'bonus bVit,3; bonus bInt,2; bonus bMdef,3; bonus bUnbreakableShield;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_monk`,`job_priest`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2129,'Exorcism_Bible','Exorcism Bible','Armor',20,600,80,true,true,true,50,true,5,'bonus bHPrecovRate,3; bonus bSPrecovRate,3; bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2130,'Cross_Shield','Cross Shield','Armor',20,2000,130,1,true,true,80,true,4,'bonus bStr,1; bonus2 bSkillAtk,"PA_SHIELDCHAIN",30; bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",30; bonus bUseSPrate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2131,'Magic_Study_Vol1','Magic Bible Vol1','Armor',20,1000,18,1,true,true,true,true,true,70,true,5,'bonus bMdef,3; bonus bInt,2; bonus2 bAddEffWhenHit,Eff_Stun,1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_left_hand`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2132,'Shelter_Resistance','Shell Of Resistance','Armor',20,9,true,2,100,true,true,true,true,true,true,true,true,'bonus2 bSubEle,Ele_All,20; bonus bShortWeaponDamageReturn,1; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bAllStats,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_upper`,`class_third_upper`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2133,'Tournament_Shield','Tournament Shield','Armor',20,1000,105,1,true,true,true,true,true,true,50,true,4,'bonus2 bAddClass,Class_All,1; if( Class == Job_Lord_Knight ) bonus bAspdRate,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2134,'Shield_Of_Naga','Shield of Naga','Armor',20,500,35,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,70,true,2,'.@r = getrefine(); bonus bMdef,3; if(.@r<11) { autobonus2 "{ bonus bShortWeaponDamageReturn,("+.@r+"*3); }",10,5000,BF_WEAPON,"{ specialeffect2 EF_GUARD; }"; } else { autobonus2 "{ bonus bShortWeaponDamageReturn,("+.@r+"*3); }",10,5000+(.@r/2*1000),BF_WEAPON,"{ specialeffect2 EF_GUARD; }"; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_rogue`,`class_upper`,`class_third_upper`,`location_left_hand`,`equip_level_min`,`refineable`,`view`) VALUES (2135,'Shadow_Guard','Shadow Guard','Armor',20,800,52,1,true,true,true,true,70,true,2); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_left_hand`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2136,'Cracked_Buckler','Cracked Buckler','Armor',5,true,2,100,true,true,true,true,true,true,true,true,'bonus bAgi,2; bonus2 bSubEle,Ele_Neutral,10; bonus3 bAutoSpellWhenHit,"PR_KYRIE",10,10; bonus bMdef,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_left_hand`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2137,'Valkyrja\'s_Shield_C','Neo Valkyrja\'s Shield','Armor',5,true,false,false,true,true,true,95,4,100,true,true,true,true,true,true,true,true,'bonus2 bSubEle,Ele_Water,20; bonus2 bSubEle,Ele_Fire,20; bonus2 bSubEle,Ele_Dark,20; bonus2 bSubEle,Ele_Undead,20; bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2138,'Bradium_Shield','Bradium Shield','Armor',20,1800,98,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,65,true,3,'bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",60; bonus bAgi,-1; bonus bMaxHP,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_blacksmith`,`location_left_hand`,`equip_level_min`,`view`) VALUES (2139,'Flame_Thrower','Flame Thrower','Armor',20000,2000,60,true,true,99,1); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_knight`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2140,'Energy_Rune_Guard','Energy Rune Guard','Armor',20,70,1,true,true,99,true,4,100,true,true,true,true,true,true,true,true,'bonus bMaxSPrate,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_left_hand`,`equip_level_min`,`view`,`script`) VALUES (2141,'Freyja_SShield7','Freyja Spirit Shield','Armor',300,5,true,20,1,'bonus2 bSubSize,Size_Medium,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_left_hand`,`equip_level_min`,`view`,`script`) VALUES (2142,'Freyja_SShield30','Freyja Spirit Shield','Armor',300,5,true,20,1,'bonus2 bSubSize,Size_Medium,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_left_hand`,`equip_level_min`,`view`,`script`) VALUES (2143,'Freyja_SShield60','Freyja Spirit Shield','Armor',300,5,true,20,1,'bonus2 bSubSize,Size_Medium,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_left_hand`,`equip_level_min`,`view`,`script`) VALUES (2144,'Freyja_SShield90','Freyja Spirit Shield','Armor',300,5,true,20,1,'bonus2 bSubSize,Size_Medium,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_left_hand`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2145,'Time_Keepr_Shield','Time Keeper Shield','Armor',30000,20,true,true,3,100,true,true,true,true,true,true,'bonus bMdef,1; bonus2 bSubEle,Ele_Neutral,10; bonus2 bSubSize,Size_Medium,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`) VALUES (2146,'Siver_Guard','Silver Guard','Armor',12500,300,60,1,true,22,true,1); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_left_hand`,`equip_level_min`,`refineable`,`view`) VALUES (2147,'Round_Buckler','Round Buckleer','Armor',24000,600,90,1,true,false,false,true,true,true,22,true,2); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`equip_level_min`,`refineable`,`view`) VALUES (2148,'Rotha_Shield','Rosa Shield','Armor',56000,1300,130,1,true,true,true,true,100,true,3); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (2149,'Upg_Guard','Upg Guard','Armor',20,150,25,1,true,1,true,1,100,true,'bonus bMaxHPrate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_rogue`,`job_swordman`,`job_thief`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (2150,'Upg_Buckler','Upg Buckler','Armor',20,300,45,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,true,2,100,true,'bonus bMaxHPrate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (2151,'Upg_Shield','Upg Shield','Armor',20,650,65,1,true,true,true,true,1,true,3,100,true,'bonus bMaxHPrate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_left_hand`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2152,'Anti_Demon_Shield_C','Anti-Demon Shield','Armor',120,true,1,3,100,true,true,true,true,true,true,true,true,'bonus2 bSubRace,RC_DemiHuman,25; bonus2 bSubRace,RC_Player_Human,25; bonus2 bSubRace,RC_Demon,25; bonus bMaxHP,400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2153,'Imperial_Guard','Imperial Guard','Armor',20,2500,120,1,true,true,102,true,4,'.@r = getrefine(); bonus bMdef,5; bonus2 bSkillAtk,"LG_SHIELDPRESS",(.@r>=6?20+((.@r-5)*2):20);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`) VALUES (2154,'Toy_Shield','Toy Shield','Armor',500,1,1,true,10,true,1); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_left_hand`,`refineable`,`view`) VALUES (2155,'Academy_Shield','Academy Shield','Armor',1500,3,1,true,false,false,true,true,4); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_priest`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2156,'Bible_Of_Promise1','Bible of Promise(1st Vol.)','Armor',20,500,10,1,true,true,110,true,5,'bonus bMdef,2; skill "ALL_ODINS_POWER",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`refineable`,`view`,`script`) VALUES (2157,'Insecticide','Pesticide','Armor',20,100,true,true,3,'bonus2 bAddRace,RC_Insect,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2158,'Ramor_Shield_Undead','Ramor Shield','Armor',20,1300,50,1,true,65,true,3,'bonus2 bSubDefEle,Ele_Undead,5; bonus2 bMagicSubDefEle,Ele_Undead,5; bonus2 bSubRace,RC_DemiHuman,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2159,'Sharel_Shield','Sharel Shield','Armor',20,1300,50,1,true,65,true,3,'bonus2 bSubDefEle,Ele_Fire,5; bonus2 bMagicSubDefEle,Ele_Fire,5; bonus2 bSubRace,RC_Demon,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2160,'Giant_Shield','Giant Shield','Armor',56000,2800,130,1,true,true,true,true,100,true,3,'bonus2 bSubSize,Size_Large,5; if(getrefine()>=9){ bonus2 bSubSize,Size_Large,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_wizard`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2161,'Geffenia_Book_Water','Geffenia Tomb of Water','Armor',56000,1000,30,1,true,true,100,true,5,'bonus bMdef,2; bonus bInt,1; if(readparam(bInt)>=120){ bonus bMatk,10; bonus bMaxHP,800; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_priest`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2162,'Bible_Of_Promise2','Bible of Promise(2nd Vol.)','Armor',20,500,20,1,true,true,140,true,5,'bonus bMdef,5; skill "ALL_ODINS_POWER",2; bonus bHealPower,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2163,'Flow_Shield','Flow Shield','Armor',20,1300,50,1,true,65,true,3,'bonus2 bSubDefEle,Ele_Water,5; bonus2 bMagicSubDefEle,Ele_Water,5; bonus2 bSubRace,RC_Brute,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2164,'Sombre_Shield','Sombre Shield','Armor',20,1300,50,1,true,65,true,3,'bonus2 bSubDefEle,Ele_Dark,5; bonus2 bMagicSubDefEle,Ele_Dark,5; bonus2 bSubRace,RC_Undead,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2165,'Sol_Shield','Sol Shield','Armor',20,1300,50,1,true,65,true,3,'bonus2 bSubDefEle,Ele_Earth,5; bonus2 bMagicSubDefEle,Ele_Earth,5; bonus2 bSubRace,RC_Plant,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_monk`,`job_priest`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2166,'Exorcism_Bible_','Devil\'s Bible Drive','Armor',20,600,80,1,true,true,true,50,true,5,'bonus bHPrecovRate,3; bonus bSPrecovRate,3; bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2167,'Poison_Shield','Poison Shield','Armor',20,1300,50,1,true,65,true,3,'bonus2 bSubDefEle,Ele_Poison,5; bonus2 bMagicSubDefEle,Ele_Poison,5; bonus2 bSubRace,RC_Plant,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (2168,'Immuned_Shield','Immune Shield','Armor',20,700,55,1,true,1,true,4,100,true,'.@r = getrefine(); if (.@r>=5) bonus2 bSubEle,Ele_Neutral,min(.@r,12)-4; if(.@r>6) bonus2 bSubEle,Ele_Neutral,5; if(.@r>8) { bonus2 bSubEle,Ele_Fire,5; bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Wind,5; bonus2 bSubEle,Ele_Earth,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2169,'Kalasak','Kalasag','Armor',20,400,40,true,1,true,1,'bonus2 bSubClass,Class_Boss,getrefine()/3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2170,'Bayani_Kalasak','Bayani Kalasag','Armor',20,400,40,1,true,1,true,1,'bonus2 bSubClass,Class_Boss,getrefine()/3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_ninja`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2171,'Fox_Armguard','Fox Wrist Guard','Armor',40000,200,45,1,true,true,100,true,1,'bonus bFlee,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_ninja`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2172,'Wolf_Armguard','Wolf Wrist Guard','Armor',45000,250,70,1,true,true,100,true,1,'autobonus "{ bonus bBaseAtk,100; bonus bFlee,-50; }",20,5000,BF_WEAPON,"{ specialeffect2 EF_TEIHIT1; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_ninja`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2173,'Crescent_Armguard','Crescent Wrist Guard','Armor',45000,250,45,1,true,true,100,true,1,'bonus bDelayRate,-(getrefine()*2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2174,'Lumiere_Shield','Lumiere Shield','Armor',20,1300,50,1,true,65,true,3,'bonus2 bSubDefEle,Ele_Holy,5; bonus2 bMagicSubDefEle,Ele_Holy,5; bonus2 bSubRace,RC_Dragon,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2175,'Esprit_Shield','Spirit Shield','Armor',20,1300,50,1,true,65,true,3,'bonus2 bSubDefEle,Ele_Ghost,5; bonus2 bMagicSubDefEle,Ele_Ghost,5; bonus2 bSubRace,RC_Angel,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2176,'Dark_Book','Black Book','Armor',20,500,80,1,true,65,true,5,'bonus bMdef,5; .@r = getrefine(); bonus3 bAutoSpellWhenHit,"NPC_DRAGONFEAR",1,(.@r<=6)?(10):((.@r<=8)?(20):(30));'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2177,'Shield_Of_Death','Shield Of Death','Armor',20,2000,150,1,true,90,true,3,'bonus2 bAddClass,Class_Boss,2; bonus2 bMagicAddClass,Class_Boss,2; bonus2 bSubClass,Class_Normal,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2178,'TE_Woe_Buckler','TE Woe Buckler','Armor',15,true,40,true,2,100,true,true,true,true,true,true,true,'bonus bMdef,15; bonus bMaxHP,100; bonus bMaxSP,100; bonus2 bSubRace,RC_Player_Human,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2179,'TE_Woe_Shield','TE Woe Shield','Armor',25,true,true,true,true,true,true,true,40,true,3,100,true,true,true,true,true,true,true,'bonus bMdef,5; bonus bMaxHP,200; bonus2 bSubRace,RC_Player_Human,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`job_acolyte`,`job_mage`,`job_monk`,`job_novice`,`job_priest`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_wizard`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2180,'TE_Woe_Magic_Guard','TE Woe Magic Guard','Armor',5,true,true,true,true,true,true,true,true,true,true,40,true,1,100,true,true,true,true,true,true,true,'bonus bMdef,25; bonus bMaxSP,200; bonus2 bSubRace,RC_Player_Human,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_left_hand`,`equip_level_min`,`view`,`script`) VALUES (2181,'Hervor','Hervor','Armor',10,1500,100,true,1,2,'bonus bMdef,5; bonus2 bSubRace,RC_All,30; bonus bUnbreakableShield;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`equip_level_min`,`view`,`script`) VALUES (2182,'Hervor_Alvitr','Hervor Alvitr','Armor',3000,150,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,100,2,'bonus bMdef,10; bonus bVit,20; bonus2 bSubRace,RC_All,30; bonus bUnbreakableShield; 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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2183,'Impr_Angel\'s_Safeguard','Advanced Angelic Guard','Armor',10000,400,30,1,true,true,true,99,true,1,'bonus2 bSubRace,RC_Demon,5; bonus2 bSubEle,Ele_All,5; bonus2 bSubEle,Ele_Neutral,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2185,'Magic_Reflector','Magic Reflect','Armor',10,1000,50,1,true,99,true,3,'bonus bMdef,10; bonus bMagicDamageReturn,3+((getrefine()>=9) ? 3 : 0);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`magic_attack`,`defense`,`slots`,`job_priest`,`job_sage`,`job_soullinker`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2186,'Encyclopedia_Revision','Great Encyclopedia Revision','Armor',10,200,5,50,1,true,true,true,true,99,true,4,'bonus bInt,3; bonus bDex,2; .@r = getrefine(); bonus bCritical,3+((.@r >= 7) ? 2 : 0); if(.@r >= 9) bonus bMatk,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2187,'Shield_Of_Gray','Shield of Gray','Armor',10,2000,75,1,true,true,true,true,120,true,3,'.@r = getrefine(); bonus2 bSubEle,Ele_Holy,30+.@r; bonus bMdef,9+.@r/3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2188,'Svalinn_J','Svalinn','Armor',10,500,80,1,true,65,true,3,'.@r = getrefine(); bonus2 bSubEle,Ele_Water,10; bonus bMaxHPrate,1*(.@r/3); bonus2 bSubEle,Ele_Water,5*(.@r/3); bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2189,'Mad_Bunny','Mad Bunny Shield','Armor',10,100,40,1,true,30,true,6,'bonus2 bSubEle,Ele_All,5; bonus bMdef,6; bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2190,'Ancient_Shield_Of_Aeon','Ancient Shield Of Aeon','Armor',200,5,true,true,true,true,true,true,true,true,true,true,true,true,true,130,true,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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2195,'Lian_Shield','Lian Shield','Armor',1300,50,1,true,65,true,3,'bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubRace,RC_Formless,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2196,'White_Gold_Shield','White Gold Shield','Armor',1800,140,1,true,100,true,4,'autobonus2 "{ bonus bMagicDamageReturn,20; }",200,2000,BF_MAGIC; bonus bUnbreakableShield;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2198,'Lapine_Shield','Lapine Shield','Armor',1000,25,1,true,100,true,3,'bonus bMdef,10; if (getrefine() > 7) { bonus bMatk,20; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2199,'Ahura_Mazda','Ahura Mazdah','Armor',1,10,10000,true,1,true,1,'bonus bAllStats,50; bonus bMdef,99; bonus bShortWeaponDamageReturn,100; bonus2 bSubRace,RC_DemiHuman,95; bonus2 bSubRace,RC_Player_Human,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; bonus bDelayRate,-20; bonus bSpeedRate,25; bonus bIntravision; bonus bNoWalkDelay;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`view`,`script`) VALUES (2201,'Sunglasses','Sunglasses','Armor',5000,100,true,12,'bonus2 bResEff,Eff_Blind,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_mid`,`view`,`script`) VALUES (2202,'Sunglasses_','Sunglasses','Armor',5000,100,1,true,12,'bonus2 bResEff,Eff_Blind,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`view`) VALUES (2203,'Glasses','Glasses','Armor',4000,100,true,3); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_mid`,`view`) VALUES (2204,'Glasses_','Glasses','Armor',4000,100,1,true,3); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`view`) VALUES (2205,'Diver\'s_Goggles','Diver Goggles','Armor',3500,100,true,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`gender`,`location_head_top`,`refineable`,`view`,`script`) VALUES (2206,'Wedding_Veil','Wedding Veil','Armor',23000,100,'Female',true,true,44,'bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`view`,`script`) VALUES (2207,'Fancy_Flower','Fancy Flower','Armor',20,100,true,4,'bonus2 bSubRace,RC_Plant,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`gender`,`location_head_top`,`refineable`,`view`,`script`) VALUES (2208,'Ribbon','Ribbon','Armor',800,100,1,'Female',true,true,17,'bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`gender`,`location_head_top`,`refineable`,`view`,`script`) VALUES (2209,'Ribbon_','Ribbon','Armor',800,100,1,1,'Female',true,true,17,'bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`view`) VALUES (2210,'Hair_Band','Hair Band','Armor',500,100,1,true,9); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (2211,'Bandana','Bandana','Armor',400,100,1,true,true,6); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`view`) VALUES (2212,'Eye_Bandage','Eye Patch','Armor',1000,100,true,13); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (2213,'Cat_Hairband','Kitty Band','Armor',20,100,2,true,true,2); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (2214,'Bunny_Band','Bunny Band','Armor',20,100,2,true,true,15,'bonus bLuk,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (2215,'Flower_Hairband','Flower Band','Armor',20,100,2,true,true,5); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_acolyte`,`job_monk`,`job_priest`,`location_head_top`,`refineable`,`view`) VALUES (2216,'Biretta','Biretta','Armor',9000,100,8,true,true,true,true,true,11); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`location_head_top`,`refineable`,`view`) VALUES (2217,'Biretta_','Biretta','Armor',9000,100,8,1,true,true,true,true,true,11); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`,`script`) VALUES (2218,'Flu_Mask','Flu Mask','Armor',300,100,true,8,'bonus2 bResEff,Eff_Silence,1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`,`script`) VALUES (2219,'Flu_Mask_','Flu Mask','Armor',300,100,true,8,'bonus2 bResEff,Eff_Silence,1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (2220,'Hat','Hat','Armor',1000,200,2,true,true,16); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`) VALUES (2221,'Hat_','Hat','Armor',1000,200,2,1,true,true,16); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`) VALUES (2222,'Turban','Turban','Armor',4500,300,3,true,false,false,true,true,7); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`) VALUES (2223,'Turban_','Turban','Armor',4500,300,3,1,true,false,false,true,true,7); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_head_top`,`location_head_mid`,`refineable`,`view`) VALUES (2224,'Goggle','Goggles','Armor',20,300,5,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_head_top`,`location_head_mid`,`refineable`,`view`) VALUES (2225,'Goggle_','Goggles','Armor',20,300,5,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_head_top`,`refineable`,`view`) VALUES (2226,'Cap','Cap','Armor',12000,400,7,true,true,true,true,true,true,true,true,true,true,true,true,true,true,14); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_head_top`,`refineable`,`view`) VALUES (2227,'Cap_','Cap','Armor',12000,400,7,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,14); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_crusader`,`job_knight`,`job_swordman`,`location_head_top`,`refineable`,`view`) VALUES (2228,'Helm','Helm','Armor',44000,600,13,true,true,true,true,true,40); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_head_top`,`refineable`,`view`) VALUES (2229,'Helm_','Helm','Armor',44000,600,13,1,true,true,true,true,true,40); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_head_top`,`refineable`,`script`) VALUES (2230,'Gemmed_Sallet','Gemmed Sallet','Armor',50000,500,8,true,true,true,true,true,true,true,true,true,true,true,'bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_head_top`,`refineable`,`script`) VALUES (2231,'Gemmed_Sallet_','Gemmed Sallet','Armor',50000,500,8,1,true,true,true,true,true,true,true,true,true,true,true,'bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_head_top`,`refineable`,`view`,`script`) VALUES (2232,'Circlet','Circlet','Armor',7500,300,6,true,true,true,true,true,true,true,true,true,18,'bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_head_top`,`refineable`,`view`,`script`) VALUES (2233,'Circlet_','Circlet','Armor',7500,300,6,1,true,true,true,true,true,true,true,true,true,18,'bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`gender`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2234,'Tiara','Tiara','Armor',20,400,7,true,false,false,'Female',true,45,true,19,'bonus bInt,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`gender`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2235,'Crown','Crown','Armor',20,400,7,true,false,false,'Male',true,45,true,45,'bonus bInt,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (2236,'Santa\'s_Hat','Santa Hat','Armor',20,100,1,true,true,20,'bonus bMdef,1; bonus bLuk,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`) VALUES (2237,'Weird_Goatee','Bandit Beard','Armor',2,100,true,21); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`) VALUES (2238,'Weird_Moustache','Moustache','Armor',2,100,true,22); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`view`) VALUES (2239,'One_Eyed_Glass','Monocle','Armor',10000,100,true,23); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`) VALUES (2240,'Beard','Beard','Armor',2,100,true,24); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`) VALUES (2241,'Granpa_Beard','Grampa Beard','Armor',5000,100,true,25); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`view`,`script`) VALUES (2242,'Luxury_Sunglasses','Purple Glasses','Armor',24000,100,2,true,26,'bonus2 bResEff,Eff_Blind,1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`view`,`script`) VALUES (2243,'Spinning_Eyes','Geek Glasses','Armor',20000,100,1,true,27,'bonus2 bResEff,Eff_Blind,1500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (2244,'Big_Sis\'_Ribbon','Big Ribbon','Armor',15000,200,3,true,false,false,true,true,28,'bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`) VALUES (2245,'Sweet_Gents','Sweet Gent','Armor',15000,400,5,true,false,false,true,true,29); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2246,'Golden_Gear','Golden Gear','Armor',20,900,5,true,false,false,true,40,true,30,'bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`) VALUES (2247,'Oldman\'s_Romance','Romantic Gent','Armor',15000,400,5,true,false,false,true,true,31); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`) VALUES (2248,'Western_Grace','Western Grace','Armor',15000,400,5,true,false,false,true,true,32); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (2249,'Coronet','Coronet','Armor',20,300,5,true,false,false,true,true,33,'bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`view`,`script`) VALUES (2250,'Fillet','Cute Ribbon','Armor',500,100,2,true,false,false,true,34,'bonus bMaxSP,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_acolyte`,`job_monk`,`job_priest`,`location_head_top`,`refineable`,`view`,`script`) VALUES (2251,'Holy_Bonnet','Monk Hat','Armor',30000,100,10,true,true,true,true,true,35,'bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_head_top`,`refineable`,`view`,`script`) VALUES (2252,'Star_Sparkling','Wizard Hat','Armor',20,300,7,true,true,true,true,true,true,36,'bonus bMaxSP,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`view`,`script`) VALUES (2253,'Sunflower','Sunflower','Armor',20,100,1,true,37,'bonus2 bSubRace,RC_Insect,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (2254,'Angelic_Chain','Angel Wing','Armor',20,100,4,true,false,false,true,true,38,'bonus bMdef,3; bonus bAgi,1; bonus bLuk,1; bonus2 bSubRace,RC_Demon,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (2255,'Satanic_Chain','Evil Wing','Armor',20,100,6,true,false,false,true,true,39,'bonus bMdef,2; bonus bStr,1; bonus2 bSubRace,RC_Angel,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`location_head_top`,`refineable`,`view`,`script`) VALUES (2256,'Magestic_Goat','Majestic Goat','Armor',20,800,9,true,true,true,true,true,true,true,true,true,true,41,'bonus bStr,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (2257,'Snowy_Horn','Unicorn Horn','Armor',20,100,4,true,true,42); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_acolyte`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_rogue`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`job_thief`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (2258,'Sharp_Gear','Spiky Band','Armor',20,1000,12,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,50,true,43); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (2259,'Mini_Propeller','Mini Propeller','Armor',20,100,1,true,true,46); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`view`) VALUES (2260,'Mini_Glasses','Mini Glasses','Armor',28000,100,1,true,false,false,true,47); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_head_top`,`refineable`,`view`) VALUES (2261,'Prontera_Army_Cap','Army Cap','Armor',20,400,8,true,true,true,true,true,true,true,true,true,true,true,48); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`) VALUES (2262,'Pierrot_Nose','Clown Nose','Armor',20,100,true,49); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`view`) VALUES (2263,'Gangster_Patch','Zorro Masque','Armor',20,100,true,false,false,true,50); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`location_head_low`,`view`,`script`) VALUES (2264,'Munak_Turban','Munak Hat','Armor',20,300,5,true,true,true,51,'bonus2 bSubRace,RC_Undead,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`,`script`) VALUES (2265,'Ganster_Mask','Gangster Mask','Armor',20,100,true,52,'bonus2 bResEff,Eff_Silence,1500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_crusader`,`job_knight`,`job_swordman`,`location_head_low`,`equip_level_min`,`view`) VALUES (2266,'Iron_Cane','Iron Cain','Armor',20,300,4,true,true,true,true,50,53); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_low`,`view`,`script`) VALUES (2267,'Cigar','Cigarette','Armor',20,100,true,false,false,true,54,'bonus2 bSubRace,RC_Insect,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_low`,`view`,`script`) VALUES (2268,'Smoking_Pipe','Pipe','Armor',20,100,true,false,false,true,55,'bonus2 bSubRace,RC_Insect,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_low`,`view`,`script`) VALUES (2269,'Centimental_Flower','Romantic Flower','Armor',20,100,true,false,false,true,56,'bonus2 bSubRace,RC_Plant,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_low`,`view`,`script`) VALUES (2270,'Centimental_Leaf','Romantic Leaf','Armor',20,100,true,false,false,true,57,'bonus2 bSubRace,RC_Plant,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`view`) VALUES (2271,'Jack_A_Dandy','Jack be Dandy','Armor',45000,100,1,true,false,false,true,58); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (2272,'Stop_Post','Stop Post','Armor',20,400,1,true,true,59); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (2273,'Doctor_Cap','Doctor Band','Armor',20,100,5,true,false,false,true,true,60,'bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (2274,'Ghost_Bandana','Ghost Bandana','Armor',20,100,true,false,false,true,true,61,'bonus bAgi,2; bonus2 bSubEle,Ele_Ghost,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (2275,'Red_Bandana','Red Bandana','Armor',20,100,4,true,true,62); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`view`) VALUES (2276,'Eagle_Eyes','Angled Glasses','Armor',20,100,2,true,63); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_acolyte`,`job_monk`,`job_priest`,`location_head_top`,`refineable`,`view`,`script`) VALUES (2277,'Nurse_Cap','Nurse Cap','Armor',20,100,4,true,true,true,true,true,64,'bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`location_head_low`,`view`) VALUES (2278,'Mr_Smile','Mr. Smile','Armor',60,100,1,true,true,65); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`view`) VALUES (2279,'Bomb_Wick','Bomb Wick','Armor',20,100,1,true,66); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (2280,'Sahkkat','Sakkat','Armor',20,300,4,true,true,67,'bonus bAgi,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`location_head_low`,`view`) VALUES (2281,'Phantom_Of_Opera','Opera Masque','Armor',20,200,2,true,false,false,true,true,68); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`view`,`script`) VALUES (2282,'Spirit_Chain','Halo','Armor',20,100,true,69,'bonus2 bSubEle,Ele_Holy,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (2283,'Ear_Mufs','Ear Muffs','Armor',20,200,4,true,true,70,'bonus2 bResEff,Eff_Curse,1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`) VALUES (2284,'Antler','Antlers','Armor',20,500,8,true,false,false,true,true,71); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2285,'Apple_Of_Archer','Apple of Archer','Armor',20,200,1,true,false,false,true,30,true,72,'bonus bDex,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`equip_level_min`,`view`) VALUES (2286,'Elven_Ears','Elven Ears','Armor',20,100,true,false,false,true,70,73); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (2287,'Pirate_Bandana','Pirate Bandana','Armor',20,100,4,true,false,false,true,true,74,'bonus bStr,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`location_head_low`,`view`) VALUES (2288,'Mr_Scream','Mr. Scream','Armor',20,100,1,true,false,false,true,true,75); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`view`,`script`) VALUES (2289,'Poo_Poo_Hat','Poo Poo Hat','Armor',20,700,true,76,'bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`view`) VALUES (2290,'Funeral_Costume','Funeral Hat','Armor',3000,100,1,true,77); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`view`,`script`) VALUES (2291,'Masquerade','Masquerade','Armor',20,100,true,false,false,true,78,'bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player_Human,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_blacksmith`,`job_merchant`,`location_head_mid`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (2292,'Welding_Mask','Welding Mask','Armor',20,300,2,true,true,true,true,true,50,79,'bonus2 bSubEle,Ele_Fire,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`view`) VALUES (2293,'Pretend_Murdered','Pretend Murdered','Armor',20,100,1,true,80); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (2294,'Star_Dust','Stellar','Armor',20,100,1,true,true,81); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`view`,`script`) VALUES (2295,'Blinker','Blinker','Armor',1500,100,true,false,false,true,82,'bonus2 bResEff,Eff_Blind,10000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_archer`,`job_barddancer`,`job_hunter`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (2296,'Binoculars','Binoculars','Armor',20,100,2,true,true,true,true,50,83,'bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`location_head_low`,`view`) VALUES (2297,'Goblini_Mask','Goblin Mask','Armor',20,100,1,true,false,false,true,true,84); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`view`) VALUES (2298,'Green_Feeler','Green Feeler','Armor',20,100,3,true,85); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_head_top`,`refineable`,`view`) VALUES (2299,'Viking_Helm','Orc Helm','Armor',20,500,9,true,true,true,true,true,true,true,true,true,true,true,86); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_armor`,`refineable`) VALUES (2301,'Cotton_Shirt','Cotton Shirt','Armor',10,100,10,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`refineable`) VALUES (2302,'Cotton_Shirt_','Cotton Shirt','Armor',10,100,10,1,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_armor`,`refineable`) VALUES (2303,'Leather_Jacket','Jacket','Armor',200,200,15,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`refineable`) VALUES (2304,'Leather_Jacket_','Jacket','Armor',200,200,15,1,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_armor`,`refineable`) VALUES (2305,'Adventure_Suit','Adventurer\'s Suit','Armor',1000,300,20,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`refineable`) VALUES (2306,'Adventurere\'s_Suit_','Adventurer\'s Suit','Armor',1000,300,20,1,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`refineable`) VALUES (2307,'Mantle','Mantle','Armor',10000,600,37,true,false,false,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`refineable`) VALUES (2308,'Mantle_','Mantle','Armor',10000,600,37,1,true,false,false,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`refineable`) VALUES (2309,'Coat','Coat','Armor',22000,1200,42,true,false,false,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`refineable`) VALUES (2310,'Coat_','Coat','Armor',22000,1200,42,1,true,false,false,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`) VALUES (2311,'Mink_Coat','Mink Coat','Armor',20,2300,30,1,true,false,false,true,30,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_armor`,`refineable`) VALUES (2312,'Padded_Armor','Padded Armor','Armor',48000,2800,35,true,true,true,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_armor`,`refineable`) VALUES (2313,'Padded_Armor_','Padded Armor','Armor',48000,2800,35,1,true,true,true,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_armor`,`refineable`) VALUES (2314,'Chain_Mail','Chain Mail','Armor',65000,3300,55,true,true,true,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_armor`,`refineable`) VALUES (2315,'Chain_Mail_','Chain Mail','Armor',65000,3300,55,1,true,true,true,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_crusader`,`job_knight`,`job_swordman`,`location_armor`,`equip_level_min`,`refineable`) VALUES (2316,'Plate_Armor','Full Plate','Armor',80000,4500,70,true,true,true,true,40,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_armor`,`equip_level_min`,`refineable`) VALUES (2317,'Plate_Armor_','Full Plate','Armor',80000,4500,70,1,true,true,true,true,40,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_blacksmith`,`job_merchant`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2318,'Clothes_Of_The_Lord','Lord\'s Clothes','Armor',20,2500,59,1,true,true,true,true,70,true,'bonus bMdef,5; bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2319,'Glittering_Clothes','Glittering Jacket','Armor',20,2500,58,1,true,false,false,true,60,true,'bonus bMdef,5; bonus2 bAddEff,Eff_Blind,300;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`refineable`) VALUES (2320,'Formal_Suit','Formal Suit','Armor',20,300,40,1,true,false,false,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_mage`,`job_merchant`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_swordman`,`job_wizard`,`location_armor`,`refineable`,`script`) VALUES (2321,'Silk_Robe','Silk Robe','Armor',8000,400,20,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,'bonus bMdef,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_mage`,`job_merchant`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_swordman`,`job_wizard`,`location_armor`,`refineable`,`script`) VALUES (2322,'Silk_Robe_','Silk Robe','Armor',8000,400,20,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,'bonus bMdef,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_acolyte`,`job_monk`,`job_priest`,`location_armor`,`refineable`) VALUES (2323,'Scapulare','Scapulare','Armor',6500,400,24,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`location_armor`,`refineable`) VALUES (2324,'Scapulare_','Scapulare','Armor',6500,400,24,1,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_merchant`,`job_monk`,`job_priest`,`location_armor`,`refineable`,`script`) VALUES (2325,'Saint_Robe','Saint\'s Robe','Armor',54000,600,50,true,true,true,true,true,true,true,true,'bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_merchant`,`job_monk`,`job_priest`,`location_armor`,`refineable`,`script`) VALUES (2326,'Saint_Robe_','Saint\'s Robe','Armor',54000,600,50,1,true,true,true,true,true,true,true,true,'bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_acolyte`,`job_monk`,`job_priest`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2327,'Holy_Robe','Holy Robe','Armor',20,1700,57,true,true,true,true,60,true,'bonus bMdef,5; bonus2 bSubRace,RC_Demon,15; bonus2 bSubEle,Ele_Dark,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_armor`,`refineable`) VALUES (2328,'Wooden_Mail','Wooden Mail','Armor',5500,1000,25,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_armor`,`refineable`) VALUES (2329,'Wooden_Mail_','Wooden Mail','Armor',5500,1000,25,1,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_archer`,`job_barddancer`,`job_hunter`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2330,'Tights','Tights','Armor',71000,500,27,true,true,true,true,45,true,'bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2331,'Tights_','Tights','Armor',71000,500,27,1,true,true,true,true,45,true,'bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_armor`,`refineable`) VALUES (2332,'Silver_Robe','Silver Robe','Armor',7000,700,23,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_armor`,`refineable`) VALUES (2333,'Silver_Robe_','Silver Robe','Armor',7000,700,23,1,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2334,'Mage_Coat','Mage Coat','Armor',20,600,40,true,true,true,true,true,50,true,'bonus bMdef,5; bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_assassin`,`job_ninja`,`job_rogue`,`job_thief`,`location_armor`,`refineable`,`script`) VALUES (2335,'Thief_Clothes','Thief Clothes','Armor',74000,100,40,true,true,true,true,true,true,'bonus bAgi,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_assassin`,`job_ninja`,`job_rogue`,`job_thief`,`location_armor`,`refineable`,`script`) VALUES (2336,'Thief_Clothes_','Thief Clothes','Armor',74000,100,40,1,true,true,true,true,true,true,'bonus bAgi,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_assassin`,`job_ninja`,`job_rogue`,`job_thief`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2337,'Ninja_Suit','Ninja Suit','Armor',20,1500,58,true,true,true,true,true,50,true,'bonus bAgi,1; bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`refineable`,`script`) VALUES (2338,'Wedding_Dress','Wedding Dress','Armor',43000,500,10,true,false,false,true,true,'bonus bMdef,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_armor`,`refineable`) VALUES (2339,'G_Strings','Pantie','Armor',1000,100,22,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`) VALUES (2340,'Novice_Breast','Novice Breastplate','Armor',89000,500,4,1,true,true,true,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_crusader`,`location_armor`,`equip_level_min`,`refineable`) VALUES (2341,'Full_Plate_Armor','Legion Plate Armor','Armor',94000,5500,79,true,true,70,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`location_armor`,`equip_level_min`,`refineable`) VALUES (2342,'Full_Plate_Armor_','Legion Plate Armor','Armor',102500,5500,79,1,true,true,70,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_sage`,`job_soullinker`,`job_wizard`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2343,'Robe_Of_Casting','Robe of Cast','Armor',124800,1100,40,true,true,true,true,75,true,'bonus bVariableCastrate,-3; bonus bMdef,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2344,'Flame_Sprits_Armor','Lucius\'s Fierce Armor of Volcano','Armor',136000,2200,25,true,true,true,true,true,true,true,45,true,'bonus bDefEle,Ele_Fire;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2345,'Flame_Sprits_Armor_','Lucius\'s Fierce Armor of Volcano','Armor',136000,2200,25,1,true,false,false,true,45,true,'bonus bDefEle,Ele_Fire;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2346,'Water_Sprits_Armor','Saphien\'s Armor of Ocean','Armor',136000,2200,25,true,true,true,true,true,true,true,45,true,'bonus bDefEle,Ele_Water;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2347,'Water_Sprits_Armor_','Saphien\'s Armor of Ocean','Armor',136000,2200,25,1,true,false,false,true,45,true,'bonus bDefEle,Ele_Water;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2348,'Wind_Sprits_Armor','Aebecee\'s Raging Typhoon Armor','Armor',136000,2200,25,true,true,true,true,true,true,true,45,true,'bonus bDefEle,Ele_Wind;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2349,'Wind_Sprits_Armor_','Aebecee\'s Raging Typhoon Armor','Armor',136000,2200,25,1,true,false,false,true,45,true,'bonus bDefEle,Ele_Wind;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2350,'Earth_Sprits_Armor','Claytos Cracking Earth Armor','Armor',136000,2200,25,true,true,true,true,true,true,true,45,true,'bonus bDefEle,Ele_Earth;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2351,'Earth_Sprits_Armor_','Claytos Cracking Earth Armor','Armor',136000,2200,25,1,true,false,false,true,45,true,'bonus bDefEle,Ele_Earth;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_novice`,`job_supernovice`,`location_armor`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (2352,'Novice_Plate','Tattered Novice Ninja Suit','Armor',1,1,25,true,true,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`) VALUES (2353,'Odin\'s_Blessing','Odin\'s Blessing','Armor',30000,2500,53,1,true,false,false,true,65,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2354,'Goibne\'s_Armor','Goibne\'s Armor','Armor',50000,3500,58,true,false,false,true,54,true,'bonus bVit,2; bonus bMaxHPrate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2355,'Angel\'s_Protection','Angelic Protection','Armor',10000,600,25,1,true,true,true,40,true,'bonus bMdef,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_monk`,`job_priest`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2356,'Vestment_Of_Grace','Blessed Holy Robe','Armor',20,2500,45,1,true,true,true,70,true,'bonus bMdef,5; bonus2 bResEff,Eff_Blind,8000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2357,'Valkyrie_Armor','Valkyrian Armor','Armor',2800,55,1,true,false,false,true,true,true,1,true,'bonus bAllStats,1; bonus bUnbreakableArmor; 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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_armor`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2358,'Dress_Of_Angel','Angel\'s Dress','Armor',20,1000,5,true,100,true,true,true,true,true,true,true,'bonus bLuk,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_assassin`,`job_ninja`,`job_rogue`,`job_thief`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2359,'Ninja_Suit_','Ninja Suit','Armor',20,1500,58,1,true,true,true,true,true,50,true,'bonus bAgi,1; bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_sage`,`job_soullinker`,`job_wizard`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2360,'Robe_Of_Casting_','Robe of Cast','Armor',124800,1100,40,1,true,true,true,true,75,true,'bonus bVariableCastrate,-3; bonus bMdef,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2361,'Blue_Aodai','Blue Robe','Armor',20,500,true,false,false,true,1,true,'bonus bAllStats,3; bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2362,'Red_Aodai','Red Robe','Armor',20,500,true,false,false,true,1,true,'bonus bAllStats,3; bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2363,'White_Aodai','White Robe','Armor',20,500,true,true,true,1,true,'bonus bAllStats,3; bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`class_upper`,`class_third_upper`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2364,'Meteo_Plate_Armor','Meteo Plate Armor','Armor',20,3000,85,1,true,true,true,true,true,true,true,true,true,55,true,'bonus2 bResEff,Eff_Stun,3000; bonus2 bResEff,Eff_Freeze,3000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2365,'Orleans_Gown','Orleans\'s Gown','Armor',20,300,15,1,true,false,false,true,true,true,55,true,'bonus bVariableCastrate,15; bonus bNoCastCancel;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2366,'Divine_Cloth','Divine Cloth','Armor',20,1500,50,1,true,false,false,true,true,true,55,true,'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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_hunter`,`class_upper`,`class_third_upper`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2367,'Sniping_Suit','Sniping Suit','Armor',20,750,42,1,true,true,true,true,50,true,'bonus bMdef,5; bonus bCritical,6+(readparam(bLuk)/10); bonus bDelayRate,-23;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_armor`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2368,'Golden_Armor','Golden Armor','Armor',20,2000,4,true,100,true,true,true,true,true,true,'bonus bMdef,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2369,'Freyja_Overcoat','Freyja Overcoat','Armor',500,12,true,false,false,true,100,true,true,true,true,true,true,true,true,'bonus bUnbreakableArmor; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_armor`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2370,'Used_Mage_Coat','Used Mage Coat','Armor',15,true,100,true,true,true,true,true,true,true,'bonus bMaxHP,300; bonus bMaxSP,30; bonus bBaseAtk,10; bonus bAgi,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`refineable`) VALUES (2371,'G_Strings_','Pantie','Armor',1000,100,22,1,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2372,'Mage_Coat_','Mage Coat','Armor',20,600,40,1,true,true,true,true,true,50,true,'bonus bMdef,5; bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2373,'Holy_Robe_','Holy Robe','Armor',20,1700,57,1,true,true,true,true,60,true,'bonus bMdef,5; bonus2 bSubRace,RC_Demon,15; bonus2 bSubEle,Ele_Dark,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_archer`,`job_barddancer`,`job_hunter`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2374,'Diabolus_Robe','Diabolus Robe','Armor',20,300,57,1,true,true,true,true,true,true,true,true,true,true,true,true,55,true,'bonus bMaxSP,150; bonus bMdef,5; bonus bHealPower,6; bonus bDelayRate,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`class_upper`,`class_third_upper`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2375,'Diabolus_Armor','Diabolus Armor','Armor',20,600,79,1,true,true,true,true,true,true,true,true,true,true,true,true,55,true,'bonus bStr,2; bonus bDex,1; bonus bMdef,5; bonus bMaxHP,150; bonus2 bResEff,Eff_Stun,500; bonus2 bResEff,Eff_Stone,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2376,'Assaulter_Plate','Assaulter Plate','Armor',10,57,1,true,true,true,true,true,true,true,true,true,80,true,100,true,true,true,true,true,true,true,'bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_alchemist`,`job_blacksmith`,`job_merchant`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2377,'Elite_Engineer_Armor','Elite Engineer Armor','Armor',10,50,1,true,true,true,true,80,true,100,true,true,true,true,true,true,true,'bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_assassin`,`job_ninja`,`job_rogue`,`job_thief`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2378,'Assassin_Robe','Assassin Robe','Armor',10,41,1,true,true,true,true,true,80,true,100,true,true,true,true,true,true,true,'bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2379,'Warlock_Battle_Robe','Warlock\'s Battle Robe','Armor',10,36,1,true,true,true,true,true,80,true,100,true,true,true,true,true,true,true,'bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2380,'Medic_Robe','Medic\'s Robe','Armor',10,25,1,true,true,true,true,80,true,100,true,true,true,true,true,true,true,'bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2381,'Elite_Archer_Suit','Elite Archer Suit','Armor',10,35,1,true,true,true,true,80,true,100,true,true,true,true,true,true,true,'bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_gunslinger`,`job_rebellion`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2382,'Elite_Shooter_Suit','Elite Shooter Suit','Armor',10,25,1,true,true,true,80,true,100,true,true,true,true,true,true,true,'bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_armor`,`equip_level_min`,`script`) VALUES (2383,'Brynhild','Brynhild','Armor',20,400,120,true,94,'bonus bMdef,10; bonus bMaxHP,20*BaseLevel; bonus bMaxSP,5*BaseLevel; bonus2 bAddClass,Class_All,10; bonus bMatkRate,10; bonus bUnbreakableArmor; bonus bNoKnockback;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_armor`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2384,'Spritual_Tunic','Spiritual Tunic','Armor',20,10,true,100,true,true,true,true,true,true,true,true,'bonus bMdef,5; 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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_armor`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`,`unequip_script`) VALUES (2385,'Recuperative_Armor','Recuperative Armor','Armor',20,12,true,100,true,true,true,true,true,true,true,true,'bonus bNoRegen,1; bonus bNoRegen,2; bonus bHPGainValue,60; bonus bSPGainValue,6; bonus bMagicHPGainValue,60; bonus bMagicSPGainValue,6;','heal 0,-100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2386,'Chameleon_Armor','Chameleon Armor','Armor',20,1700,55,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,70,true,'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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2387,'Sprint_Mail','Sprint Mail','Armor',20,1000,20,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,70,true,'bonus bVit,1; bonus bHPrecovRate,5; bonus bAddItemHealRate,3; bonus2 bSkillHeal,"AL_HEAL",3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_assassin`,`class_upper`,`class_third_upper`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2388,'Kandura','Kandura','Armor',20,300,36,1,true,true,true,true,70,true,'bonus bAgi,1; bonus bFlee,5; bonus bAspdRate,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2389,'Armor_Of_Naga','Armor of Naga','Armor',20,1000,45,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,70,true,'bonus bMdef,2; autobonus "{ bonus bBaseAtk,20; }",10,10000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`class_upper`,`class_third_upper`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2390,'Improved_Tights','Improved Tights','Armor',20,400,38,1,true,true,true,true,true,true,75,true,'bonus bMdef,2; bonus bFlee2,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_upper`,`class_third_upper`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2391,'Life_Link','Life Link','Armor',20,3500,75,1,true,true,true,true,true,true,82,true,'bonus bVit,2; bonus bMdef,5; bonus bHPrecovRate,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_armor`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2392,'Old_Pant','Old Green Pantie','Armor',10,true,100,true,true,true,true,true,true,true,true,'bonus bStr,2; bonus bVit,2; bonus bMaxHP,200; bonus3 bAutoSpellWhenHit,"MO_CALLSPIRITS",5,20; bonus bMdef,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`location_armor`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (2393,'N_Adventurer\'s_Suit','Novice Adventurer\'s Suit','Armor',45,1,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2394,'Krieger_Suit1','Glorious Suit','Armor',20,10,true,false,false,true,81,true,100,true,true,true,true,true,true,true,'bonus bMaxHPrate,20; bonus2 bSubRace,RC_DemiHuman,7; bonus2 bSubRace,RC_Player_Human,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2395,'Krieger_Suit2','Glorious Popularized Suit','Armor',20,10,true,false,false,true,61,true,100,true,true,true,true,true,true,true,'bonus bMaxHP,600; bonus bSPrecovRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2396,'Krieger_Suit3','Glorious Mass-Production Suit','Armor',20,true,false,false,true,true,100,true,true,true,true,true,true,true,'bonus bMaxHP,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`refineable`) VALUES (2397,'Incredible_Coat','Incredible Event Resignation Coat','Armor',10,900,2,true,false,false,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_hunter`,`class_upper`,`class_third_upper`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2398,'Sniping_Suit_M','Sniping Suit','Armor',20,750,42,1,true,true,true,true,50,true,100,true,true,true,true,true,true,true,'bonus bMdef,5; bonus bCritical,6+(readparam(bLuk)/10); bonus bDelayRate,-23;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_armor`,`refineable`,`script`) VALUES (2399,'Dragon_Vest','Dragon Vest','Armor',20,500,20,1,true,false,false,true,true,true,true,'bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_shoes`,`refineable`) VALUES (2401,'Sandals','Sandals','Armor',400,200,5,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_shoes`,`refineable`) VALUES (2402,'Sandals_','Sandals','Armor',400,200,5,1,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`refineable`) VALUES (2403,'Shoes','Shoes','Armor',3500,400,10,true,false,false,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`refineable`) VALUES (2404,'Shoes_','Shoes','Armor',3500,400,10,1,true,false,false,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_gunslinger`,`job_hunter`,`job_knight`,`job_merchant`,`job_rebellion`,`job_rogue`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`job_thief`,`location_shoes`,`refineable`) VALUES (2405,'Boots','Boots','Armor',18000,600,16,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_gunslinger`,`job_hunter`,`job_knight`,`job_merchant`,`job_rebellion`,`job_rogue`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`job_thief`,`location_shoes`,`refineable`) VALUES (2406,'Boots_','Boots','Armor',18000,600,16,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`gender`,`location_shoes`,`refineable`,`script`) VALUES (2407,'Chrystal_Pumps','Crystal Pumps','Armor',20,100,5,true,false,false,'Female',true,true,'bonus bMdef,10; bonus bLuk,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_shoes`,`refineable`) VALUES (2408,'Cuffs','Shackles','Armor',5000,3000,18,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`refineable`,`script`) VALUES (2409,'Spiky_Heel','High Heels','Armor',8500,600,4,true,false,false,true,true,'bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_shoes`,`equip_level_min`,`script`) VALUES (2410,'Sleipnir','Sleipnir','Armor',20,3500,40,true,94,'bonus bMdef,10; bonus bMaxHPrate,20; bonus bMaxSPrate,20; bonus bSPrecovRate,25; bonus bSpeedRate,25; bonus bInt,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_crusader`,`job_knight`,`location_shoes`,`equip_level_min`,`refineable`) VALUES (2411,'Grave','Greaves','Armor',48000,750,27,true,true,true,65,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`job_knight`,`location_shoes`,`equip_level_min`,`refineable`) VALUES (2412,'Grave_','Greaves','Armor',54000,750,15,1,true,true,true,65,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_crusader`,`job_knight`,`job_swordman`,`location_shoes`,`equip_level_min`) VALUES (2413,'Safty_Boots','Safety Boots','Armor',34000,350,6,true,true,true,true,30); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_novice`,`job_supernovice`,`location_shoes`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (2414,'Novice_Boots','Novice Slippers','Armor',1,1,5,true,true,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`gender`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2415,'Slipper','Bunny Slipper','Armor',34000,300,3,1,true,false,false,'Female',true,30,true,'bonus bLuk,3; bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2416,'Novice_Shoes','Novice Shoes','Armor',35000,500,8,1,true,true,true,40,true,'bonus bMaxHPrate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2417,'Fricco_Shoes','Fricco\'s Shoes','Armor',30000,500,12,true,false,false,true,65,true,'bonus bAgi,2; bonus2 bAddItemGroupHealRate,IG_Potion,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2418,'Vidar\'s_Boots','Vidar\'s Boots','Armor',30000,650,13,true,false,false,true,65,true,'bonus bMaxHPrate,9; bonus bMaxSPrate,9;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2419,'Goibne\'s_Combat_Boots','Goibne\'s Greaves','Armor',30000,700,13,true,false,false,true,54,true,'bonus bMdef,3; bonus bMaxHPrate,5; bonus bMaxSPrate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2420,'Angel\'s_Arrival','Angel\'s Reincarnation','Armor',10000,300,8,1,true,true,true,25,true,'bonus bMaxHP,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2421,'Valkyrie_Shoes','Valkyrian Shoes','Armor',500,13,1,true,false,false,true,true,true,1,true,'bonus bUnbreakableShoes; 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);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2422,'High_Fashion_Sandals','High Fashion Sandals','Armor',24000,200,7,1,true,true,true,true,true,true,true,true,40,true,'bonus bMdef,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2423,'Variant_Shoes','Variant Shoes','Armor',20,500,13,true,false,false,true,true,true,85,true,'.@r = getrefine(); bonus bMaxHPrate,20-.@r; bonus bMaxSPrate,20-.@r; bonus bDef,.@r/2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2424,'Tidal_Shoes','Tidal Shoes','Armor',20,300,13,1,true,false,false,true,true,true,55,true,'bonus2 bSubEle,Ele_Water,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2425,'Black_Leather_Boots','Black Leather Boots','Armor',20,500,16,true,false,false,true,true,true,55,true,'bonus bAgi,(getrefine()>=9?3:1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2426,'Shadow_Walk','Shadow Walk','Armor',20,2000,true,false,false,true,true,true,75,true,'bonus bMdef,10; bonus5 bAutoSpellWhenHit,"AS_CLOAKING",max(2,getskilllv("AS_CLOAKING")),100,BF_MAGIC,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_shoes`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2427,'Golden_Shoes','Golden Shoes','Armor',20,300,4,true,100,true,true,true,true,true,true,'bonus bMdef,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2428,'Freyja_Boots','Freyja Boots','Armor',300,10,true,false,false,true,100,true,true,true,true,true,true,true,true,'bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_shoes`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (2429,'Iron_Boots01','Iron Boots','Armor',1500,5,true,true,true,true,true,true,true,true,true,true,true,true,true,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_shoes`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (2430,'Iron_Boots02','Iron Boots','Armor',800,5,true,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_shoes`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2431,'Valley_Shoes','Valley Shoes','Armor',20,10,true,100,true,true,true,true,true,true,true,'bonus bMaxHPrate,7; bonus bMaxSPrate,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`refineable`,`script`) VALUES (2432,'Spiky_Heel_','High Heels','Armor',8500,600,10,1,true,false,false,true,true,'bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_shoes`,`refineable`,`script`) VALUES (2433,'Diabolus_Boots','Diabolus Boots','Armor',20,250,15,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,'bonus bMaxHP,(BaseLevel*10);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2434,'Black_Leather_Boots_','Black Leather Boots','Armor',20,500,16,1,true,false,false,true,true,true,55,true,'bonus bAgi,(getrefine()>=9?3:1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_ninja`,`job_rogue`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`job_thief`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2435,'Battle_Greave','Battle Greaves','Armor',10,15,1,true,true,true,true,true,true,true,true,true,true,true,true,true,80,true,100,true,true,true,true,true,true,true,'bonus bMaxHP,100; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_acolyte`,`job_archer`,`job_barddancer`,`job_hunter`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2436,'Combat_Boots','Combat Boots','Armor',10,9,1,true,true,true,true,true,true,true,true,true,true,true,80,true,100,true,true,true,true,true,true,true,'bonus bMaxHP,100; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_gunslinger`,`job_rebellion`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2437,'Battle_Boots','Battle Boots','Armor',10,9,1,true,true,true,80,true,100,true,true,true,true,true,true,true,'bonus bMaxHP,100; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2438,'Paw_Of_Cat','Paw Of Cat','Armor',10,300,true,80,true,100,true,true,true,true,true,true,'bonus bFlee,5; bonus bAgi,1; /* skill "ALL_CATCRY",1; */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_shoes`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2439,'Refresh_Shoes','Refresh Shoes','Armor',20,9,true,100,true,true,true,true,true,true,true,true,'bonus bMaxHPrate,17; bonus bMaxSPrate,8; bonus2 bHPRegenRate,20,10000; bonus2 bSPRegenRate,3,10000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2440,'Sprint_Shoes','Sprint Shoes','Armor',20,300,10,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,70,true,'bonus bAgi,1; bonus bSPrecovRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`refineable`,`script`) VALUES (2441,'Beach_Sandal','Beach Sandals','Armor',20,200,true,true,'bonus bStr,1; bonus bInt,1; bonus bAgi,1; bonus2 bSubEle,Ele_Fire,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_shoes`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2442,'Boots_Perforated','Red Stocking Boots','Armor',7,true,100,true,true,true,true,true,true,true,true,'bonus bLuk,2; bonus bHPrecovRate,10; bonus bSPrecovRate,10; bonus3 bAutoSpellWhenHit,"WZ_QUAGMIRE",3,30; bonus bMdef,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (2443,'Fish_Shoes','Fisher\'s Boots','Armor',10,250,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2444,'Krieger_Shoes1','Glorious Shoes','Armor',20,true,false,false,true,81,true,100,true,true,true,true,true,true,true,'bonus bMaxHPrate,10; bonus2 bSubRace,RC_DemiHuman,4; bonus2 bSubRace,RC_Player_Human,4; bonus3 bAutoSpellWhenHit,"AL_INCAGI",1,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2445,'Krieger_Shoes2','Glorious Popularized Shoes','Armor',20,true,false,false,true,61,true,100,true,true,true,true,true,true,true,'bonus bMaxHPrate,5; bonus bMaxSPrate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2446,'Krieger_Shoes3','Glorious Mass-Production Shoes','Armor',20,10,true,false,false,true,true,100,true,true,true,true,true,true,true,'bonus bMaxHPrate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`refineable`) VALUES (2447,'Military_Boots','Army Boots','Armor',1000,5,true,false,false,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_shoes`,`refineable`,`script`) VALUES (2448,'Air_Boss','Air Boss','Armor',500,2,true,true,'bonus bAgi,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2449,'Variant_Shoes_M','Variant Shoes','Armor',20,500,3,true,false,false,true,true,true,85,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMaxHPrate,20-.@r; bonus bMaxSPrate,20-.@r; bonus bDef,.@r/2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2450,'Vital_Tree_Shoes','Vital Tree Shoes','Armor',20,500,16,true,false,false,true,true,true,60,true,'bonus bMaxHPrate,10; bonus2 bHPRegenRate,30,10000; bonus bHealpower2,5; bonus bAddItemHealRate,5; bonus bMdef,3; bonus bVit,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_shoes`,`equip_level_min`,`script`) VALUES (2451,'Freyja_SSandal7','Freyja Sprit Sandals','Armor',20,400,5,true,20,'bonus bMaxHPrate,8; bonus bMaxSPrate,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_shoes`,`equip_level_min`,`script`) VALUES (2452,'Freyja_SSandal30','Freyja Sprit Sandals','Armor',20,400,5,true,20,'bonus bMaxHPrate,8; bonus bMaxSPrate,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_shoes`,`equip_level_min`,`script`) VALUES (2453,'Freyja_SSandal60','Freyja Sprit Sandals','Armor',20,400,5,true,20,'bonus bMaxHPrate,8; bonus bMaxSPrate,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_shoes`,`equip_level_min`,`script`) VALUES (2454,'Freyja_SSandal90','Freyja Sprit Sandals','Armor',20,400,5,true,20,'bonus bMaxHPrate,8; bonus bMaxSPrate,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_shoes`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2455,'Time_Keepr_Boots','Time Keeper\'s Boots','Armor',30000,17,true,true,100,true,true,true,true,true,true,'bonus bMdef,1; bonus bMaxHP,100; bonus bHPrecovRate,10; bonus bSPrecovRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_shoes`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2456,'Para_Team_Boots1','Eden Team Boots I','Armor',14,true,7,100,true,true,true,true,true,true,true,'bonus bHPrecovRate,10; bonus bSPrecovRate,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_shoes`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2457,'Para_Team_Boots2','Eden Team Boots II','Armor',16,true,26,100,true,true,true,true,true,true,true,'bonus bHPrecovRate,12; bonus bSPrecovRate,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_shoes`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2458,'Para_Team_Boots3','Eden Team Boots III','Armor',18,true,40,100,true,true,true,true,true,true,true,'bonus bHPrecovRate,14; bonus bSPrecovRate,6;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (2459,'Upg_Shoes','Upg Shoes','Armor',20,200,15,1,true,false,false,true,true,100,true,'bonus bMaxHPrate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_gunslinger`,`job_hunter`,`job_knight`,`job_merchant`,`job_rebellion`,`job_rogue`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`job_thief`,`location_shoes`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (2460,'Upg_Boots','Upg Boots','Armor',20,300,21,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,100,true,'bonus bMaxHPrate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`job_knight`,`location_shoes`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (2461,'Upg_Greave','Upg Greaves','Armor',20,400,32,1,true,true,true,true,100,true,'bonus bMaxHPrate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_shoes`,`equip_level_min`,`script`) VALUES (2462,'Sleipnir_C','Sleipnir','Armor',20,40,true,94,'bonus bMdef,10; bonus bMaxHPrate,20; bonus bMaxSPrate,20; bonus bSPrecovRate,15; bonus bSpeedRate,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_shoes`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (2463,'Feral_Boots','Feral Boots','Armor',20,12,true,75,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_shoes`,`equip_level_min`,`script`) VALUES (2464,'No_Fear_Shoes','No Fear Shoes','Armor',6,true,20,'bonus bStr,1; bonus bInt,1; bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_barddancer`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2465,'Dance_Shoes','Dance Shoes','Armor',20,300,15,1,true,true,105,true,'bonus bAgi,1; bonus bAspdRate,2; bonus2 bSkillUseSP,"WA_SWING_DANCE",32;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_shoes`,`equip_level_min`,`refineable`) VALUES (2466,'Training_Shoes','Training Shoes','Armor',20,300,1,true,1,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_wizard`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2467,'Golden_Rod_Shoes','Golden Rod Shoes','Armor',20,500,12,true,true,100,true,'bonus bMdef,2; bonus bMaxHP,500; bonus2 bSubEle,Ele_Wind,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_wizard`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2468,'Aqua_Shoes','Aqua Shoes','Armor',20,500,12,true,true,100,true,'bonus bMdef,2; bonus bMaxHP,500; bonus2 bSubEle,Ele_Water,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_wizard`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2469,'Crimson_Shoes','Crismons Shoes','Armor',20,500,12,true,true,100,true,'bonus bMdef,2; bonus bMaxHP,500; bonus2 bSubEle,Ele_Fire,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_wizard`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2470,'Forest_Shoes','Forest Shoes','Armor',20,500,12,true,true,100,true,'bonus bMdef,2; bonus bMaxHP,500; bonus2 bSubEle,Ele_Earth,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_priest`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2471,'Shoes_Of_Affection','Shoes Of Affection','Armor',20,300,12,true,true,100,true,'bonus bMaxHP,500; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Formless,-10; bonus2 bSubRace,RC_Undead,-10; bonus2 bSubRace,RC_Brute,-10; bonus2 bSubRace,RC_Player_Doram,-10; bonus2 bSubRace,RC_Plant,-10; bonus2 bSubRace,RC_Insect,-10; bonus2 bSubRace,RC_Fish,-10; bonus2 bSubRace,RC_Demon,-10; bonus2 bSubRace,RC_Angel,-10; bonus2 bSubRace,RC_Dragon,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_priest`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2472,'Shoes_Of_Judgement','Shoes Of Judgement','Armor',20,300,12,true,true,100,true,'bonus2 bSkillAtk,"AB_JUDEX",30; bonus2 bSkillUseSP,"AB_JUDEX",-40; bonus bMaxSP,150;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_shoes`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2473,'Para_Team_Boots4','Eden Team Boots IV','Armor',20,true,60,100,true,true,true,true,true,true,true,'bonus bAgi,1; bonus bVit,1; bonus bHPrecovRate,28; bonus bSPrecovRate,12;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2474,'Lehmannza_Shoes','Lehmannza Shoes','Armor',20,500,3,1,true,60,true,'bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2475,'Ur_Greave','Ur\'s Greaves','Armor',20,900,32,1,true,true,true,true,true,100,true,'bonus bMaxSP,40; .@r = getrefine(); if(.@r>7) bonus bMaxHPrate,.@r-7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2476,'Peuz_Greave','Peuz\'s Greaves','Armor',20,900,32,1,true,true,true,true,true,100,true,'bonus bMaxSP,40; .@r = getrefine(); if(.@r>7) bonus bAgi,.@r-7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_assassin`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2477,'Sabah_Shoes','Sapha Shoes','Armor',20,400,18,1,true,true,100,true,'bonus bMaxSP,30; bonus bLuk,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_assassin`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2478,'Nab_Shoes','Nab Shoes','Armor',20,400,18,1,true,true,100,true,'bonus bFlee,3; bonus bInt,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_hunter`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2479,'White_Wing_Boots','White Wing Boots','Armor',20,400,18,1,true,true,100,true,'bonus bAgi,2; bonus2 bSkillUseSP,"RA_AIMEDBOLT",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2480,'Black_Wing_Boots','Black Wing Boots','Armor',20,400,18,1,true,true,true,true,true,100,true,'bonus bInt,2; bonus bMaxSPrate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_shoes`,`refineable`,`script`) VALUES (2481,'Rune_Boots','Rune Boots','Armor',20,100,5,true,true,'.@a = readparam(bStr); .@b = readparam(bInt); bonus bBaseAtk,(.@a>=120)?(20):((.@a>=90)?(10):(0)); bonus bMatkRate,(.@b>=120)?(5):((.@b>=90)?(3):(0));'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_shoes`,`script`) VALUES (2482,'Shoes_Of_Valor','Shoes Of Valor','Armor',4,true,'skill "AL_INCAGI",1; bonus bUseSPrate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2483,'Siege_Greave','Siege Greaves','Armor',10,750,30,1,true,true,true,true,true,true,true,true,true,95,true,'bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_gunslinger`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_merchant`,`job_ninja`,`job_rebellion`,`job_rogue`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`job_thief`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2484,'Siege_Boots','Siege Boots','Armor',10,500,20,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,95,true,'bonus bMdef,5; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_novice`,`job_priest`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_wizard`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2485,'Siege_Shoes','Siege Shoes','Armor',10,350,15,1,true,true,true,true,true,true,true,true,true,true,95,true,'bonus bMdef,10; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2486,'Shadow_Walk_','Shadow Walk','Armor',20,2000,1,true,false,false,true,75,true,'bonus bMdef,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2487,'Vital_Tree_Shoes_','Vital Tree Shoes','Armor',20,500,16,1,true,false,false,true,60,true,'bonus bVit,2; bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2488,'Fricco_Shoes_','Fricco Shoes','Armor',30000,500,12,1,true,false,false,true,65,true,'bonus bAgi,2; bonus2 bAddItemGroupHealRate,IG_Potion,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2489,'Vidar\'s_Boots_','Vidar\'s Boots','Armor',30000,650,13,1,true,false,false,true,65,true,'bonus bMaxHPrate,9; bonus bMaxSPrate,9;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2491,'Bangungot_Boots','Bangungot Boots of Nightmare','Armor',20,600,10,true,1,true,'.@r = getrefine(); bonus bMdef,.@r; if(.@r>=14){ bonus bSpeedRate,25; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2492,'Bayani_Bangungot_Boots','Bayani Bangungot Boots of Nightmare','Armor',20,600,10,1,true,1,true,'.@r = getrefine(); bonus bMdef,.@r; if(.@r>=12){ bonus bSpeedRate,25; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2493,'Goibne\'s_Combat_Boots_','Goibne\'s Greaves','Armor',30000,700,13,1,true,false,false,true,54,true,'bonus bMdef,3; bonus bMaxHPrate,5; bonus bMaxSPrate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`gender`,`location_shoes`,`refineable`,`script`) VALUES (2494,'Chrystal_Pumps_','Crystal Pumps','Armor',20,100,5,1,true,false,false,'Female',true,true,'bonus bMdef,10; bonus bLuk,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2495,'Egir_Shoes','Egir Shoes','Armor',200000,300,13,1,true,110,true,'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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2496,'TE_Woe_Shoes','TE Woe Shoes','Armor',5,true,40,true,100,true,true,true,true,true,true,true,'bonus bMdef,5; bonus bMaxHP,150; bonus bMaxSP,150; bonus2 bAddRace,RC_Player_Human,5; bonus2 bMagicAddRace,RC_Player_Human,5; bonus2 bResEff,Eff_Freeze,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2497,'TE_Woe_Boots','TE Woe Boots','Armor',10,true,true,true,true,true,true,true,40,true,100,true,true,true,true,true,true,true,'bonus bMaxHP,200; bonus bMaxSP,100; bonus2 bAddRace,RC_Player_Human,10; bonus2 bResEff,Eff_Freeze,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`job_acolyte`,`job_mage`,`job_monk`,`job_novice`,`job_priest`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_wizard`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2498,'TE_Woe_Magic_Sandal','TE Woe Magic Sandal','Armor',5,true,true,true,true,true,true,true,true,true,true,40,true,100,true,true,true,true,true,true,true,'bonus bMdef,5; bonus bMaxHP,100; bonus bMaxSP,200; bonus2 bMagicAddRace,RC_Player_Human,5; bonus2 bResEff,Eff_Freeze,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2499,'Temporal_Boots','Temporal Boots','Armor',400,600,20,true,10,true,'.@r = getrefine(); bonus bMaxHP,300; bonus bMaxSP,30; bonus bMaxHP,100*(.@r/3); bonus bMaxSP,10*(.@r/3);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_garment`,`refineable`) VALUES (2501,'Hood','Hood','Armor',1000,200,4,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`refineable`) VALUES (2502,'Hood_','Hood','Armor',1000,200,4,1,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`refineable`) VALUES (2503,'Muffler','Muffler','Armor',5000,400,8,true,false,false,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`refineable`) VALUES (2504,'Muffler_','Muffler','Armor',5000,400,8,1,true,false,false,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`job_thief`,`location_garment`,`refineable`) VALUES (2505,'Manteau','Manteau','Armor',32000,600,13,true,true,true,true,true,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`job_thief`,`location_garment`,`refineable`) VALUES (2506,'Manteau_','Manteau','Armor',32000,600,13,1,true,true,true,true,true,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2507,'Cape_Of_Ancient_Lord','Ancient Cape','Armor',82000,600,9,true,false,false,true,40,true,'bonus bAgi,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`refineable`,`script`) VALUES (2508,'Ragamuffin_Cape','Ragamuffin Manteau','Armor',56000,500,4,true,false,false,true,true,'bonus bUnbreakableGarment; bonus bMdef,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2509,'Clack_Of_Servival','Survivor\'s Manteau','Armor',20000,550,10,true,true,true,true,true,75,true,'bonus bMdef,5; bonus bVit,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_novice`,`job_supernovice`,`location_garment`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2510,'Novice_Hood','Somber Novice Hood','Armor',1,1,4,true,true,true,100,true,true,true,true,true,true,true,'bonus2 bSubEle,Ele_Neutral,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2511,'Skeleton\'s_Cape','Skeleton Manteau','Armor',5000,700,1,true,false,false,true,75,true,'bonus bStr,2; bonus bInt,-3; bonus bDex,2; bonus bVit,-3; bonus bLuk,2; bonus bAgi,-4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2512,'Novice_Manteau','Novice Manteau','Armor',50000,500,7,1,true,true,true,40,true,'bonus2 bSubEle,Ele_Neutral,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`equip_level_min`,`refineable`) VALUES (2513,'Celestial_Robe','Heavenly Maiden Robe','Armor',20,500,18,1,true,false,false,true,80,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_garment`,`equip_level_min`,`refineable`) VALUES (2514,'Pauldron','Pauldron','Armor',20,800,25,1,true,true,true,true,true,true,true,true,true,true,80,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_garment`,`equip_level_min`,`refineable`) VALUES (2515,'Wing_Of_Eagle','Eagle Wing','Armor',20000,300,12,1,true,true,true,true,true,85,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2516,'Falcon_Robe','Falcon Muffler','Armor',30000,400,8,true,false,false,true,65,true,'bonus bFlee,15; bonus bFlee2,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2517,'Vali\'s_Manteau','Vali\'s Manteau','Armor',30000,600,13,true,false,false,true,65,true,'bonus2 bSubEle,Ele_Neutral,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2518,'Morpheus\'s_Shawl','Morpheus\'s Shawl','Armor',30000,600,8,true,false,false,true,33,true,'bonus bMaxSPrate,10; bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2519,'Morrigane\'s_Manteau','Morrigane\'s Manteau','Armor',30000,600,9,true,false,false,true,61,true,'bonus bLuk,2; bonus bFlee2,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2520,'Goibne\'s_Shoulder_Arms','Goibne\'s Spaulders','Armor',30000,700,11,true,false,false,true,54,true,'bonus bLongAtkDef,10; bonus bMdef,2; bonus bVit,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2521,'Angel\'s_Warmth','Angelic Cardigan','Armor',10000,400,5,1,true,true,true,20,true,'bonus bHPrecovRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_garment`,`refineable`,`script`) VALUES (2522,'Undershirt','Undershirt','Armor',20000,150,5,true,true,'bonus bMdef,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`refineable`,`script`) VALUES (2523,'Undershirt_','Undershirt','Armor',20000,150,5,1,true,true,'bonus bMdef,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_garment`,`refineable`,`script`) VALUES (2524,'Valkyrie_Manteau','Valkyrian Manteau','Armor',500,10,1,true,false,false,true,true,true,true,'bonus bUnbreakableGarment; 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);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2525,'Cape_Of_Ancient_Lord_','Ancient Cape','Armor',82000,600,9,1,true,false,false,true,40,true,'bonus bAgi,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2526,'Dragon_Scale_Coat','Coat of Dragon Scale','Armor',20,10,14,true,50,true,'bonus bMaxHP,300;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2527,'Dragon_Breath','Dragon Breath','Armor',20,600,16,1,true,false,false,true,true,true,48,true,'bonus2 bSubRace,RC_Dragon,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2528,'Wool_Scarf','Wool Scarf','Armor',20,500,11,1,true,false,false,true,true,true,55,true,'bonus bMdef,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2529,'Rider_Insignia','Rider Insignia','Armor',20,500,13,true,false,false,true,true,true,55,true,'bonus bAgi,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2530,'Rider_Insignia_','Rider Insignia','Armor',20,500,13,1,true,false,false,true,true,true,55,true,'bonus bAgi,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`class_upper`,`class_third_upper`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2531,'Ulfhedinn','Ulfhedinn','Armor',20,700,13,1,true,true,true,true,true,true,true,true,true,true,true,true,70,true,'bonus3 bAutoSpellWhenHit,"NPC_STONESKIN",6,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_archer`,`job_barddancer`,`job_hunter`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2532,'Mithril_Magic_Cape','Mithril Magic Cape','Armor',20,400,8,1,true,true,true,true,true,true,true,true,true,true,true,true,70,true,'bonus bMdef,3; bonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,200,BF_MAGIC,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2533,'Freyja_Cape','Freyja Cape','Armor',200,10,true,false,false,true,100,true,true,true,true,true,true,true,true,'bonus2 bSubRace,RC_DemiHuman,15; bonus2 bSubRace,RC_Player_Human,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_garment`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2534,'Ruffler','Ruffler','Armor',20,10,true,100,true,true,true,true,true,true,true,'bonus2 bSubEle,Ele_Neutral,17; bonus bFlee,17;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_garment`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2535,'Cloak_Of_Survival_C','Cloak Of Survival','Armor',1,5,true,true,true,true,true,100,true,true,true,true,true,true,true,true,'bonus bVit,10; bonus bMdef,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2536,'Skin_Of_Ventus','Skin of Ventus','Armor',20,250,7,1,true,false,false,true,60,true,'bonus bMdef,2; bonus bMaxHP,200; bonus bFlee,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_garment`,`refineable`,`script`) VALUES (2537,'Diabolus_Manteau','Diabolus Manteau','Armor',20,250,15,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,'bonus2 bSubEle,Ele_Neutral,5; bonus bMaxHP,100; bonus2 bAddDamageClass,1916,10; bonus2 bAddDamageClass,1917,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_ninja`,`job_rogue`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`job_thief`,`location_garment`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2538,'Commander_Manteau','Captain\'s Manteau','Armor',10,28,1,true,true,true,true,true,true,true,true,true,true,true,true,true,80,true,100,true,true,true,true,true,true,true,'bonus bMaxHP,50; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_acolyte`,`job_archer`,`job_barddancer`,`job_hunter`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_garment`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2539,'Commander_Manteau_','Commander\'s Manteau','Armor',10,20,1,true,true,true,true,true,true,true,true,true,true,true,80,true,100,true,true,true,true,true,true,true,'bonus bMaxHP,50; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_gunslinger`,`job_rebellion`,`location_garment`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2540,'Sheriff_Manteau','Sheriff\'s Manteau','Armor',10,20,1,true,true,true,80,true,100,true,true,true,true,true,true,true,'bonus bMaxHP,50; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_garment`,`equip_level_min`,`script`) VALUES (2541,'Asprika','Asprika','Armor',20,400,40,true,94,'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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2542,'Flame_Manteau','Flame Manteau of Naght Sieger','Armor',20,700,16,1,true,false,false,true,true,true,70,true,'bonus bMaxHPrate,5; bonus bMdef,2; bonus bMatkRate,1; bonus2 bAddEle,Ele_Fire,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_garment`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2543,'Sylphid_Manteau','Sylphid Manteau','Armor',20,9,true,100,true,true,true,true,true,true,true,true,'bonus bFlee,13; bonus2 bSubEle,Ele_Neutral,13; bonus bFlee2,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_garment`,`refineable`,`script`) VALUES (2544,'Leather_Of_Tendrilion','Leather of Tendrilion','Armor',20,300,14,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,'bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Earth,5; bonus2 bSubRace,RC_Plant,5; bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_monk`,`job_priest`,`class_upper`,`class_third_upper`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2545,'Musika','Musika','Armor',20,500,10,1,true,true,true,true,true,70,true,'bonus bMdef,3; bonus3 bAutoSpellwhenhit,"AL_HEAL",max(1,getskilllv("AL_HEAL")),20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_garment`,`refineable`,`script`) VALUES (2546,'Beach_Manteau','Beach Manteau','Armor',20,600,1,true,true,'bonus bStr,1; bonus bInt,1; bonus2 bSubEle,Ele_Fire,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_garment`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2547,'Cheap_Running_Shirts','Cheap Undershirt','Armor',8,true,true,100,true,true,true,true,true,true,true,true,'bonus bDex,2; bonus bFlee,10; bonus2 bSubEle,Ele_Neutral,10; bonus bMdef,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_garment`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2548,'Muffler_C','Neo Muffler','Armor',5,true,false,false,true,true,true,95,100,true,true,true,true,true,true,true,true,'bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus bMaxHPrate,10; bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Fire,5; bonus2 bSubEle,Ele_Holy,5; bonus2 bSubEle,Ele_Dark,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2549,'Krieger_Muffler1','Glorious Muffler','Armor',20,3,true,false,false,true,81,true,100,true,true,true,true,true,true,true,'bonus bMaxHPrate,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`refineable`) VALUES (2550,'Fisher\'s_Muffler','Fisher\'s Muffler','Armor',20,200,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_garment`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2551,'Rider_Insignia_M','Crest of the Rider','Armor',20,500,4,1,true,false,false,true,true,true,55,true,100,true,true,true,true,true,true,true,'bonus bAgi,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_archer`,`job_barddancer`,`job_hunter`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_garment`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2552,'Mithril_Magic_Cape_M','Mithril Magic Manteau','Armor',20,400,3,1,true,true,true,true,true,true,true,true,true,true,true,true,70,true,100,true,true,true,true,true,true,true,'bonus bMdef,3; bonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,200,BF_MAGIC,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_garment`,`refineable`,`script`) VALUES (2553,'Dragon_Manteau','Dragon Manteau','Armor',20,1000,14,1,true,false,false,true,true,true,true,'bonus bAgi,1; bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2554,'Piece_Of_Angent_Skin','Nydhorgg\'s Shadow Garb','Armor',20,400,25,1,true,false,false,true,true,true,90,true,'bonus2 bSubEle,Ele_All,7; bonus bMaxSP,(BaseLevel/3)+(getrefine()*10); bonus2 bSPDrainRate,10,1; bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_garment`,`equip_level_min`,`script`) VALUES (2555,'Freyja_SScarf7','Freyja Soul Scarf','Armor',20,400,4,true,20,'bonus bFlee,15; bonus2 bSubEle,Ele_Neutral,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_garment`,`equip_level_min`,`script`) VALUES (2556,'Freyja_SScarf30','Freyja Soul Scarf','Armor',20,400,4,true,20,'bonus bFlee,15; bonus2 bSubEle,Ele_Neutral,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_garment`,`equip_level_min`,`script`) VALUES (2557,'Freyja_SScarf60','Freyja Soul Scarf','Armor',20,400,4,true,20,'bonus bFlee,15; bonus2 bSubEle,Ele_Neutral,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_garment`,`equip_level_min`,`script`) VALUES (2558,'Freyja_SScarf90','Freyja Soul Scarf','Armor',20,400,4,true,20,'bonus bFlee,15; bonus2 bSubEle,Ele_Neutral,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_garment`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2559,'Time_Keepr_Manteau','Time Keeper\'s Manteau','Armor',30000,9,true,1,true,100,true,true,true,true,true,true,'bonus bMdef,1; bonus bFlee,10; bonus2 bSubEle,Ele_Neutral,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_garment`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2560,'Para_Team_Manteau','Eden Team Manteau I','Armor',14,true,7,100,true,true,true,true,true,true,true,'bonus2 bSubEle,Ele_Neutral,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_garment`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (2561,'Upg_Hood','Upg Hood','Armor',100,9,1,true,true,100,true,'bonus bMaxHPrate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (2562,'Upg_Muffler','Upg Muffler','Armor',20,200,13,1,true,false,false,true,true,100,true,'bonus bMaxHPrate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`job_thief`,`location_garment`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (2563,'Upg_Manteau','Upg Manteau','Armor',20,300,18,1,true,true,true,true,true,true,true,true,true,true,true,true,true,100,true,'bonus bMaxHPrate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_garment`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (2564,'Feral_Tail','Feral Tail','Armor',20,16,true,75,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`refineable`,`script`) VALUES (2565,'Beach_Towel','Beach Towel','Armor',20,100,2,1,true,true,'bonus bMdef,3; bonus bFlee,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_garment`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2566,'Half_Asprika','Half Asprika','Armor',20,20,true,47,100,true,true,true,true,true,true,true,'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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_archer`,`job_novice`,`job_supernovice`,`job_thief`,`class_normal`,`class_upper`,`class_baby`,`location_garment`,`refineable`) VALUES (2567,'Academy_Manteau','Academy Manteau','Armor',600,3,1,true,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_garment`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2568,'Muffler_Of_Roki','Loki\'s Muffler','Armor',20,400,10,true,100,100,true,true,true,true,true,true,'bonus bAgi,1; bonus2 bSkillAtk,"ASC_BREAKER",5; bonus2 bSkillAtk,"GC_CROSSIMPACT",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_priest`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2569,'Shawl_Of_Affection','Shawl Of Affection','Armor',20,400,12,true,true,100,true,'bonus bFlee2,5; autobonus2 "{ bonus2 bHPRegenRate,1000,5000; }",300,90000,BF_WEAPON; autobonus2 "{ bonus2 bHPRegenRate,1000,5000; }",400,90000,BF_MAGIC;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_priest`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2570,'Shawl_Of_Judgement','Shawl Of Judgement','Armor',20,400,12,true,true,100,true,'bonus bFlee,5; .@i = max(2,getskilllv("AB_ORATIO")); bonus5 bAutoSpellWhenHit,"AB_ORATIO",.@i,30,BF_WEAPON,0; bonus5 bAutoSpellWhenHit,"AB_ORATIO",.@i,40,BF_MAGIC,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_garment`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2571,'Para_Team_Manteau2','Eden Team Manteau II','Armor',18,true,60,100,true,true,true,true,true,true,true,'bonus bFlee,12; bonus2 bSubEle,Ele_Neutral,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`) VALUES (2572,'Katabart_Sholder','Katabart Sholder','Armor',20,3000,4,1,true,70,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_garment`,`refineable`,`view`,`trade_override`,`trade_nodrop`) VALUES (2573,'Archangel_Wing','Archangel Wings','Armor',200,18,1,true,true,1,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2574,'Ur_Manteau','Ur\'s Manteau','Armor',20,600,20,true,true,true,true,true,100,true,'bonus bMaxHPrate,2; bonus2 bSubEle,Ele_Neutral,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2575,'Peuz_Manteau','Peuz\'s Manteau','Armor',20,600,16,true,true,true,true,true,100,true,'bonus bFlee,10; bonus bCritical,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_garment`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (2576,'Bravery_Bag','Adventurer\'s Backpack','Armor',200,20,1,true,true,2,100,true,'skill "BS_GREED",1; .@r = getrefine(); if(.@r>=7) { if(readparam(bStr)>=90) { bonus bBaseAtk,(.@r>=9)?30:20; } if(readparam(bInt)>=90) { bonus bMatk,(.@r>=9)?50:30; } if(readparam(bVit)>=90) { bonus2 bSubEle,Ele_Neutral,(.@r>=9)?10:5; } if(readparam(bAgi)>=90) { bonus bAspdRate,8; if(.@r>=9) { bonus bAspd,1; } } if(readparam(bDex)>=90) { bonus bLongAtkRate,(.@r>=9)?10:5; } if(readparam(bLuk)>=90) { bonus bCritAtkRate,(.@r>=9)?15:10; } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_assassin`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2577,'Sabah_Hood','Sapha Hood','Armor',20,100,13,true,true,100,true,'bonus bFlee,12; bonus bCritical,getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_assassin`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2578,'Nab_Hood','Nab Hood','Armor',20,100,13,true,true,100,true,'.@r = getrefine(); bonus bFlee,.@r*2; bonus bBaseAtk,.@r*2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`refineable`,`script`) VALUES (2579,'Magic_Stole','Magic Stole','Armor',20,700,8,1,true,true,'bonus bMdef,3; bonus bUseSPrate,-5; bonus bMaxSPrate,((getrefine()>=4)?6:3);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_hunter`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2580,'White_Wing_Manteau','White Wing Manteau','Armor',20,200,15,true,true,100,true,'bonus bAgi,2; bonus bFlee,10; autobonus2 "{ bonus bFlee,20; }",20,7000,BF_LONG,"{ specialeffect2 EF_CHAINCOMBO; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2581,'Black_Wing_Manteau','Black Wing Manteau','Armor',20,200,15,true,true,true,true,true,100,true,'.@r = getrefine(); bonus bInt,2; if(.@r>6) bonus bFlee2,.@r-6;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_priest`,`job_wizard`,`location_garment`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (2582,'Salvage_Cape','Salvage Cape','Armor',56000,400,1,true,true,true,130,true,'skill "NJ_UTSUSEMI",1; bonus2 bSkillCooldown,"NJ_UTSUSEMI",30000; bonus bUseSPrate,100;','heal 0,-1200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2583,'Holy_Cape','Holy Cape','Armor',20,100,5,1,true,50,true,'bonus bDex,-5; bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`refineable`) VALUES (2584,'Wanderer_Outer','Wanderer Outer','Armor',20,500,8,1,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_garment`,`script`) VALUES (2585,'Muffler_Of_Valor','Muffler Of Valor','Armor',4,true,'bonus bSPrecovRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2586,'Siege_Manteau','Siege Manteau','Armor',10,600,32,1,true,false,false,true,95,true,'bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2587,'Siege_Muffler','Siege Muffler','Armor',10,400,15,1,true,95,true,'bonus bMdef,10; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2588,'Ragamuffin_Cape_','Ragamuffin Cape','Armor',56000,500,4,1,true,false,false,true,40,true,'bonus bMdef,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_garment`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (2589,'Fallen_Angel_Wing','Fallen Angel Wing','Armor',200,18,1,true,true,3,100,true,'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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2590,'Buwaya_Cloth','Buwaya Sack Cloth','Armor',20,200,8,true,1,true,'.@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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2591,'Bayani_Buwaya_Cloth','Bayani Buwaya Sack Cloth','Armor',20,200,8,1,true,1,true,'.@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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`) VALUES (2592,'Boss_Brownie_Manteau','Boss Brownie Manteau','Armor',20,100,3,1,true,50,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2593,'Flow_Manteau','Flow Manteau','Armor',20,700,20,1,true,65,true,'bonus2 bSubDefEle,Ele_Water,5; bonus2 bMagicSubDefEle,Ele_Water,5; bonus2 bSubRace,RC_Brute,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_garment`,`refineable`) VALUES (2594,'Wrapping_Manteau','Wrapping Manteau','Armor',20,100,1,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_garment`,`refineable`,`script`) VALUES (2597,'Scarlet_Poncho','Scarlet Poncho','Armor',500,10,1,true,true,'bonus bCritAtkRate,3; /* Confirm: The location. If the location is changed, also change the combo script! */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2598,'Ramor_Manteau','Ramor Manteau','Armor',20,700,20,1,true,65,true,'bonus2 bSubRace,RC_Undead,5; bonus2 bSubRace,RC_DemiHuman,-5; /*Gold PC Room: bonus bFlee,20;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2599,'Goibne\'s_Shoulder_Arms_','Goibne\'s Spaulders','Armor',30000,700,11,1,true,false,false,true,54,true,'bonus bLongAtkDef,10; bonus bMdef,2; bonus bVit,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2601,'Ring','Ring','Armor',30000,100,true,false,false,true,true,20,'bonus bStr,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2602,'Earring','Earring','Armor',30000,100,true,false,false,true,true,20,'bonus bInt,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2603,'Necklace','Necklace','Armor',30000,100,true,false,false,true,true,20,'bonus bVit,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2604,'Glove','Glove','Armor',30000,100,true,false,false,true,true,20,'bonus bDex,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2605,'Brooch','Brooch','Armor',30000,100,true,false,false,true,true,20,'bonus bAgi,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2607,'Clip','Clip','Armor',30000,100,1,true,true,'bonus bMaxSP,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2608,'Rosary','Rosary','Armor',15000,100,true,false,false,true,true,20,'bonus bMdef,5; bonus bLuk,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`) VALUES (2609,'Skul_Ring','Skull Ring','Armor',10000,100,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`) VALUES (2610,'Gold_Ring','Gold Ring','Armor',30000,100,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`) VALUES (2611,'Silver_Ring','Silver Ring','Armor',20000,100,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`) VALUES (2612,'Flower_Ring','Flower Ring','Armor',1500,100,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`) VALUES (2613,'Diamond_Ring','Diamond Ring','Armor',45000,100,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2614,'An_Eye_Of_Dullahan','Eye of Dullahan','Armor',90000,100,true,false,false,true,true,50,'bonus2 bResEff,Eff_Poison,10000; bonus2 bSubRace,RC_Undead,4; bonus2 bSubRace,RC_Demon,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2615,'Safety_Ring','Safety Ring','Armor',75000,100,5,true,false,false,true,true,40,'bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2616,'Critical_Ring','Critical Ring','Armor',75000,100,true,false,false,true,true,40,'bonus bCritical,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2617,'Mitten_Of_Presbyter','Celebrant\'s Mitten','Armor',2,100,1,true,false,false,true,true,35,'bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2618,'Matyr\'s_Flea_Guard','Matyr\'s Leash','Armor',2,100,1,true,false,false,true,true,35,'bonus bAgi,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_archer`,`job_barddancer`,`job_hunter`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2619,'Thimble_Of_Archer','Bow Thimble','Armor',10000,100,true,true,true,true,true,65,'bonus bLongAtkRate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_assassin`,`job_ninja`,`job_rogue`,`job_thief`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2620,'Ring_Of_Rogue','Rogue\'s Treasure','Armor',10000,100,true,true,true,true,true,true,70,'if(readparam(bStr)>=90){ bonus bHit,10; bonus bFlee,10; } if(readparam(bAgi)>=90){ bonus bBaseAtk,10; bonus bCritical,10; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2621,'Ring_','Ring','Armor',30000,200,1,true,false,false,true,true,90,'bonus bStr,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2622,'Earring_','Earring','Armor',30000,200,1,true,false,false,true,true,90,'bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2623,'Necklace_','Necklace','Armor',30000,200,1,true,false,false,true,true,90,'bonus bVit,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2624,'Glove_','Glove','Armor',30000,200,1,true,false,false,true,true,90,'bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2625,'Brooch_','Brooch','Armor',30000,200,1,true,false,false,true,true,90,'bonus bAgi,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2626,'Rosary_','Rosary','Armor',15000,200,1,true,false,false,true,true,90,'bonus bMdef,3; bonus bLuk,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`) VALUES (2627,'Belt','Belt','Armor',20000,1200,1,true,true,25); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`) VALUES (2628,'Novice_Armlet','Novice Armlet','Armor',400,200,1,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2629,'Magingiorde','Megingjard','Armor',20,8000,2,true,true,94,'bonus bStr,40+BaseLevel/5; bonus bMdef,7; if(readparam(bStr)>=120) bonus2 bAddClass,Class_Boss,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2630,'Brysinggamen','Brisingamen','Armor',20,1500,1,true,true,94,'bonus bStr,6; bonus bAgi,6; bonus bVit,6; bonus bInt,10; bonus bLuk,10; bonus bMdef,5; bonus bHealPower,6;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2631,'First_Age_Ring','Celebration Ring','Armor',1,10,true,true,'bonus bAllStats,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2632,'Korean_Trinket','Korean Trinket','Armor',125000,100,1,true,false,false,true,true,65,'bonus bVit,1; bonus bDex,1; bonus bLuk,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2633,'Jade_Ring','Jade Ring','Armor',204000,100,true,false,false,true,true,80,'bonus bStr,2; bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`gender`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2634,'Bridegroom_Ring','Wedding Ring','Armor','Male',true,true,100,true,true,true,true,true,true,true,true,'skill "WE_MALE",1; skill "WE_FEMALE",1; skill "WE_CALLPARTNER",1; skill "WE_CALLALLFAMILY",1; skill "WE_ONEFOREVER",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`gender`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2635,'Bride_Ring','Wedding Ring','Armor','Female',true,true,100,true,true,true,true,true,true,true,true,'skill "WE_MALE",1; skill "WE_FEMALE",1; skill "WE_CALLPARTNER",1; skill "WE_CALLALLFAMILY",1; skill "WE_ONEFOREVER",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2636,'Gold_Ring_','Gold Christmas Ring','Armor',30000,100,true,true,'bonus bLuk,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2637,'Silver_Ring_','Silver Christmas Ring','Armor',20000,100,true,true,'bonus bLuk,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2638,'Exorcize_Sachet','Sacred Incense','Armor',20000,100,true,true,'bonus bStr,1; bonus bLuk,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2639,'Purification_Sachet','Occult Incense','Armor',20000,100,true,true,'bonus bInt,1; bonus bAgi,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2640,'Kafra_Ring','Kafra Ring','Armor',40000,200,1,true,false,false,true,true,'bonus bStr,1; bonus bInt,1; bonus bAgi,1; bonus bLuk,1; bonus bMdef,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_alchemist`,`job_blacksmith`,`job_merchant`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2641,'Fashionable_Sack','Fashion Hip Sack','Armor',20,700,true,true,true,true,true,50,'bonus bStr,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (2642,'Serin\'s_Gold_Ring','Serin\'s Gold Ring','Armor',20,true,true,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`) VALUES (2643,'Serin\'s_Gold_Ring_','Serin\'s Gold Ring','Armor',45000,100,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2644,'The_Sign_','The Sign','Armor',2,true,true,100,true,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,5; bonus2 bMagicAddClass,Class_All,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_assassin`,`job_ninja`,`job_rogue`,`job_thief`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2645,'Moonlight_Ring','Moonlight Ring','Armor',40000,200,true,true,true,true,true,true,60,'bonus bMdef,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2646,'Bunch_Of_Carnation','Bunch of Carnations','Armor',2,100,true,true,'bonus bAllStats,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2647,'Nile_Rose','Nile Rose','Armor',2,100,1,true,true,100,true,true,true,true,true,true,true,true,'bonus bAllStats,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2648,'Morpheus\'s_Ring','Morpheus\'s Ring','Armor',30000,100,true,false,false,true,true,33,'bonus bInt,1; bonus bMaxSPrate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2649,'Morpheus\'s_Armlet','Morpheus\'s Bracelet','Armor',30000,100,true,false,false,true,true,33,'bonus bInt,1; bonus bMaxSPrate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2650,'Morrigane\'s_Belt','Morrigane\'s Belt','Armor',30000,200,true,false,false,true,true,61,'bonus bBaseAtk,5; bonus bCritical,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2651,'Morrigane\'s_Pendant','Morrigane\'s Pendant','Armor',30000,200,true,false,false,true,true,61,'bonus bStr,2; bonus bCritical,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2652,'Cursed_Lucky_Brooch','Goddess of Fortune\'s Cursed Brooch','Armor',20,100,true,true,40,'bonus bCritical,6; bonus2 bAddEff2,Eff_Curse,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`) VALUES (2653,'Sacrifice_Ring','Sacrifice Ring','Armor',20,100,true,true,90); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_assassin`,`job_ninja`,`job_rogue`,`job_thief`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2654,'Shinobi\'s_Sash','Shinobi Sash','Armor',20000,300,1,true,true,true,true,true,true,30,'bonus bStr,1; bonus bAgi,1; bonus bMdef,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`) VALUES (2655,'Bloody_Iron_Ball','Bloodied Shackle Ball','Armor',50000,4000,true,false,false,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2656,'Hyper_Changer','Armor Charm','Armor',20000,1000,1,true,true,true,true,true,true,true,true,true,true,true,1,'bonus bMaxHP,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`) VALUES (2657,'Lab_Passport','Laboratory Permit','Armor',20,100,true,true,1); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2658,'Nile_Rose_','Nile Rose','Armor',2,100,1,true,true,'bonus bMaxHP,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2659,'Vesper_Core01','Vesper Core 01','Armor',20,500,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,'bonus bMdef,3; bonus bInt,2; bonus bMaxSPrate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2660,'Vesper_Core02','Vesper Core 02','Armor',20,500,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,'bonus bMdef,3; bonus bStr,3; bonus bBaseAtk,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2661,'Vesper_Core03','Vesper Core 03','Armor',20,500,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,'bonus bMdef,3; bonus bAgi,3; bonus bFlee,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2662,'Vesper_Core04','Vesper Core 04','Armor',20,500,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,'bonus bMdef,3; bonus bDex,3; bonus bHit,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2663,'Gauntlet_Of_Accuracy','Gauntlet of Hit','Armor',20,900,true,true,75,'bonus bHit,15; bonus bStr,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2664,'Scarf_Belt','Belcarf','Armor',20,200,true,false,false,true,true,75,'bonus bDex,2; bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2665,'Ring_Of_Exorcism','Exorcising Ring','Armor',20,500,true,true,true,true,true,60,'bonus bMdef,1; bonus2 bExpAddRace,RC_Undead,5; bonus2 bExpAddRace,RC_Demon,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2666,'Lamp_Of_Hope','Lantern of Hope','Armor',20,100,true,true,1,'bonus bStr,2; bonus2 bResEff,Eff_Blind,1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2667,'Glove_Of_Archer','Renown Archer\'s Gloves','Armor',20,300,true,false,false,true,true,60,'bonus bHit,5; bonus bCritical,5; bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2668,'Women\'s_Glory','Woman Glory','Armor',500,true,true,1,100,true,true,true,true,true,true,true,'bonus bStr,3; bonus bAgi,3; bonus bVit,3; bonus bInt,3; bonus bDex,3; bonus bLuk,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2669,'Golden_Necklace_','RJC Necklace','Armor',30000,100,1,true,true,'bonus bMaxSP,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2670,'Ring_Of_Longing','Ring of Longing','Armor',20,100,1,true,true,30,100,true,true,true,true,true,true,true,'bonus bFlee,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2671,'Thimble_Of_Archer_','Bow Thimble','Armor',10000,100,1,true,true,true,true,true,65,'bonus bLongAtkRate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2672,'Anniversary_Ring','3rd Anniversary Celebration Ring','Armor',20,100,true,false,false,true,true,'bonus bStr,5; bonus bAgi,5; bonus bVit,5; bonus bInt,5; bonus bDex,5; bonus bLuk,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2673,'Shining_Ring','Warrior\'s Shining Ring','Armor',100,true,false,false,true,true,48,100,true,true,true,true,true,true,true,true,'bonus bBaseAtk,10; bonus bSPrecovRate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (2674,'Honor_Ring','Ring of Honor','Armor',20,true,true,1,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2675,'Lord_Ring','Lord Ring','Armor',10,true,true,1,'bonus bAllStats,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2676,'Hunter_Earring','Hunter\'s Earring','Armor',20,300,true,true,1,100,true,true,true,true,true,true,true,true,'bonus2 bAddMonsterDropItem,7618,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2677,'Spiritual_Ring','Spiritual Ring','Armor',20,100,true,true,'bonus bInt,2; bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2678,'Ring_Of_Flame_Lord','Ring Of Flame Lord','Armor',20,100,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,'bonus bStr,2; bonus bVit,1; bonus bBaseAtk,15; 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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2679,'Ring_Of_Resonance','Ring Of Resonance','Armor',20,100,2,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,'bonus bAgi,2; bonus bVit,1; bonus bMdef,2; 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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2680,'Lesser_Elemental_Ring','Lesser Elemental Ring','Armor',20,100,true,true,'bonus bAllStats,1; bonus3 bAutoSpell,"WZ_ESTIMATION",1,80; bonus3 bAutoSpell,"MC_IDENTIFY",1,50; bonus3 bAutoSpell,"TF_PICKSTONE",1,100; bonus3 bAutoSpell,"BS_GREED",1,10; bonus3 bAutoSpellWhenHit,"TK_RUN",5,20; bonus3 bAutoSpellWhenHit,"TK_HIGHJUMP",3,30; bonus3 bAutoSpellWhenHit,"NV_FIRSTAID",1,100; bonus3 bAutoSpellWhenHit,"TF_BACKSLIDING",1,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2681,'Republic_Ring','Republic Anniversary Ring','Armor',20,1000,true,true,100,true,true,true,true,true,true,true,true,'bonus bAllStats,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2682,'Ring_Of_Water','Ring of Water','Armor',20,100,1,true,false,false,true,true,20,'bonus2 bSubDefEle,Ele_Water,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2683,'Ring_Of_Fire','Ring of Fire','Armor',20,100,1,true,false,false,true,true,20,'bonus2 bSubDefEle,Ele_Fire,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2684,'Ring_Of_Wind','Ring of Wind','Armor',20,100,1,true,false,false,true,true,20,'bonus2 bSubDefEle,Ele_Wind,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2685,'Ring_Of_Earth','Ring of Earth','Armor',20,100,1,true,false,false,true,true,20,'bonus2 bSubDefEle,Ele_Earth,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2686,'Elven_Ears_C','Elven Ears','Armor',1,2,true,false,false,true,1,73,100,true,true,true,true,true,true,true,true,'bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2687,'Steel_Flower_C','Steel Flower','Armor',1,1,true,false,false,true,1,56,100,true,true,true,true,true,true,true,true,'bonus2 bSubRace,RC_Plant,3; bonus3 bAutoSpellWhenHit,"PR_STRECOVERY",1,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2688,'Critical_Ring_C','Critical Ring','Armor',1,true,false,false,true,true,1,100,true,true,true,true,true,true,true,true,'bonus bCriticalRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2689,'Earring_C','Earring','Armor',1,true,false,false,true,true,1,100,true,true,true,true,true,true,true,true,'bonus bInt,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2690,'Ring_C','Ring','Armor',1,true,false,false,true,true,1,100,true,true,true,true,true,true,true,true,'bonus bStr,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2691,'Necklace_C','Necklace','Armor',1,true,false,false,true,true,1,100,true,true,true,true,true,true,true,true,'bonus bVit,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2692,'Glove_C','Glove','Armor',1,true,false,false,true,true,1,100,true,true,true,true,true,true,true,true,'bonus bDex,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2693,'Brooch_C','Brooch','Armor',1,true,false,false,true,true,1,100,true,true,true,true,true,true,true,true,'bonus bAgi,4; /*Gold PC Room bonus bAllStats,1;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2694,'Rosary_C','Rosary','Armor',1,true,false,false,true,true,1,100,true,true,true,true,true,true,true,true,'bonus bMdef,5; bonus bLuk,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2695,'Safety_Ring_C','Safety Ring','Armor',1,true,false,false,true,true,1,100,true,true,true,true,true,true,true,true,'bonus bMdef,8; bonus bDef,8; /*Gold PC Room bonus bAllStats,1;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2696,'Vesper_Core01_C','Vesper Core 01','Armor',1,1,true,false,false,true,true,1,100,true,true,true,true,true,true,true,true,'bonus bMdef,3; bonus bInt,2; bonus bMaxSPrate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2697,'Vesper_Core02_C','Vesper Core 02','Armor',1,1,true,false,false,true,true,1,100,true,true,true,true,true,true,true,true,'bonus bMdef,3; bonus bStr,3; bonus bBaseAtk,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2698,'Vesper_Core03_C','Vesper Core 03','Armor',1,1,true,false,false,true,true,1,100,true,true,true,true,true,true,true,true,'bonus bMdef,3; bonus bAgi,3; bonus bFlee,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2699,'Vesper_Core04_C','Vesper Core 04','Armor',1,1,true,false,false,true,true,1,100,true,true,true,true,true,true,true,true,'bonus bMdef,3; bonus bDex,3; bonus bHit,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_crusader`,`job_knight`,`job_swordman`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`) VALUES (2700,'Red_Silk_Seal','Red Silk Seal','Armor',20,100,true,true,true,true,true,true,true,60); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2701,'Orleans_Glove','Orleans\'s Glove','Armor',20,100,1,true,false,false,true,true,true,true,90,'bonus bDex,2; bonus bMatkRate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2702,'Bison_Horn','Bison Horn','Armor',20,100,1,true,false,false,true,true,true,true,90,'bonus bAgi,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2703,'Expert_Ring','Expert Ring','Armor',20,150,1,true,false,false,true,true,true,true,50,'bonus bDelayRate,-5; bonus bUseSPrate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2704,'Golden_Accessory','Golden Accessories','Armor',20,100,4,true,true,100,true,true,true,true,true,true,'bonus bMdef,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2705,'Golden_Accessory2','Golden Accessories','Armor',20,100,4,true,true,100,true,true,true,true,true,true,'bonus2 bAddMonsterDropItem,12018,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (2706,'Handcuff','Arrest Handcuffs','Armor',true,true,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (2707,'Gusli','GUSLI','Armor',20,100,true,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2708,'Chinese_Handicraft','Chinese Handicraft','Armor',50,true,true,100,true,true,true,true,true,true,true,'bonus3 bAutoSpell,"MG_FIREBOLT",5,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2709,'5_Anniversary_Coin','5th Anniversary Coin','Armor',2,true,true,100,true,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2710,'Bloody_Iron_Ball_C','Bloody Iron Ball','Armor',1,true,false,false,true,true,100,true,true,true,true,true,true,true,true,'bonus bBaseAtk,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2711,'Spiritual_Ring_C','Spiritual Ring','Armor',1,true,true,100,true,true,true,true,true,true,true,true,'bonus bInt,2; bonus bDex,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2712,'Ragnarok_Limited_Ed','Ragnarok Limited Edition','Armor',300,true,true,30,'bonus bVit,3; bonus bAgi,3; bonus bLuk,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (2713,'Certificate_TW','Certificate','Armor',true,true,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`) VALUES (2714,'Marvelous_Pandent','Marvelous Pendant','Armor',100,1,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2715,'Skul_Ring_','Skull Ring','Armor',10000,100,1,true,true,'bonus2 bSubRace,RC_Undead,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2716,'Librarian_Glove','Librarian Glove','Armor',20,100,1,true,true,true,true,true,80,'bonus bMaxSP,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_mage`,`job_sage`,`job_wizard`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`) VALUES (2717,'Pocket_Watch_','Pocket Watch','Armor',20,200,true,true,true,true,true,80); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`) VALUES (2718,'Lunatic_Brooch','Lunatic Brooch','Armor',20,200,1,true,true,true,true,true,65); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2719,'Iron_Wrist','Iron Wrist','Armor',20,700,1,true,true,true,true,true,true,true,true,50,'bonus2 bSkillAtk,"SM_BASH",6; bonus2 bSkillAtk,"MC_MAMMONITE",6;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_crusader`,`job_knight`,`job_stargladiator`,`job_swordman`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2720,'Medal_Swordman','Medal of Honor','Armor',20,1,true,true,true,true,true,true,70,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bHit,10; bonus bMaxHP,500; bonus bMaxSP,50; bonus3 bAddEff,Eff_Stun,100,ATF_SHORT;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_assassin`,`job_ninja`,`job_rogue`,`job_thief`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2721,'Medal_Thief','Medal of Honor','Armor',20,1,true,true,true,true,true,true,70,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bFlee,10; bonus bMaxHP,300; bonus bMaxSP,80; bonus3 bAddEff,Eff_Poison,100,ATF_SHORT;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2722,'Medal_Acolyte','Medal of Honor','Armor',20,1,true,true,true,true,true,70,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bMdef,6; bonus bMaxHP,600; bonus3 bAddEff,Eff_Silence,100,ATF_SHORT;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2723,'Medal_Mage','Medal of Honor','Armor',20,1,true,true,true,true,true,true,70,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bMdef,6; bonus bMaxHP,600; bonus2 bAddEffWhenHit,Eff_Stone,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_archer`,`job_barddancer`,`job_hunter`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2724,'Medal_Archer','Medal of Honor','Armor',20,1,true,true,true,true,true,70,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bCritical,10; bonus bMaxHP,300; bonus bMaxSP,80; bonus3 bAddEff,Eff_Blind,100,ATF_LONG;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_alchemist`,`job_blacksmith`,`job_merchant`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2725,'Medal_Merchant','Medal of Honor','Armor',20,1,true,true,true,true,true,70,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bAspdRate,10; bonus bMaxHP,500; bonus bMaxSP,50; bonus3 bAddEff,Eff_Curse,100,ATF_SHORT;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_hunter`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2726,'Icarus_Wing','Icarus Wings','Armor',20,100,true,true,true,true,true,70,'bonus bMaxSP,50; bonus bDex,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_hunter`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2727,'Bowman_Scarf','Bowman Scarf','Armor',20,200,true,true,true,true,true,70,'bonus bMaxSP,50; bonus bDex,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2728,'Cursed_Hand','Cursed Hand','Armor',20,50,1,true,false,false,true,true,80,'bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,30; bonus bHit,10; bonus bHPrecovRate,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2729,'Diabolus_Ring','Diabolus Ring','Armor',20,50,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,'bonus bMaxHP,100; bonus bMaxSP,100; bonus bHealPower,5; bonus2 bAddDamageClass,1916,10; bonus2 bAddDamageClass,1917,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2730,'Morroc_Seal','Seal of Continental Guard','Armor',20,50,1,true,false,false,true,true,80,100,true,true,true,true,true,true,'bonus bMaxHP,50; bonus bAspdRate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2731,'Morroc_Charm_Stone','Rune Spellstone','Armor',20,50,1,true,false,false,true,true,80,100,true,true,true,true,true,true,'bonus bMaxSP,50; bonus bVariableCastrate,-1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2732,'Morroc_Ring','Death Loop','Armor',20,50,1,true,false,false,true,true,80,100,true,true,true,true,true,true,'bonus bCritical,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_gunslinger`,`job_rebellion`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2733,'Medal_Gunner','Sheriff Badge','Armor',20,1,true,true,true,true,70,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bCritical,10; bonus bMaxHP,300; bonus bMaxSP,80; bonus3 bAddEff,Eff_Blind,100,ATF_LONG;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (2734,'Directive_A','Directive','Armor',1,true,true,true,true,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (2735,'Directive_B','Directive','Armor',1,true,true,true,true,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2736,'Navel_Ring','Navel Ring','Armor',20,100,true,false,false,true,true,75,'bonus bDex,3; bonus bLuk,3; bonus bMdef,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2737,'Foot_Ring','Foot Ring','Armor',20,150,true,false,false,true,true,75,'bonus bVit,3; bonus bMaxHPrate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2738,'Shiny_Coin','Shiny Coin','Armor',true,true,100,true,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,6; bonus bMatkRate,6;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2739,'Ordinary_Coin','Ordinary Coin','Armor',true,true,100,true,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2740,'Rusty_Coin','Rusty Coin','Armor',true,true,100,true,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,3; bonus bMatkRate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2741,'All_In_One_Ring','All In One Ring','Armor',20,true,true,100,true,true,true,true,true,true,true,true,'bonus bAllStats,1; bonus bNoCastCancel; bonus bVariableCastrate,10; skill "AL_HEAL",1; skill "AL_TELEPORT",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2742,'Lucky_Clip','Lucky Clip','Armor',true,true,100,true,true,true,true,true,true,true,true,'bonus2 bDropAddRace,RC_All,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2743,'Angelic_Ring','Angelic Ring','Armor',20,100,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,70,'bonus bInt,2; bonus bDex,1; bonus bMdef,2; autobonus3 "{ bonus bHealPower,20; }",100,3000,"AL_HEAL","{ specialeffect2 EF_HEAL3; }"; autobonus3 "{ bonus bHealPower,20; }",100,3000,"AM_POTIONPITCHER","{ specialeffect2 EF_HEAL3; }"; autobonus3 "{ bonus bHealPower,20; }",100,3000,"PR_SANCTUARY","{ specialeffect2 EF_HEAL3; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2744,'Sprint_Ring','Sprint Ring','Armor',20,100,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,70,'bonus bVariableCastrate,-10; bonus bDelayRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2745,'Pinguicula_Corsage','Pinguicula Corsage','Armor',20,200,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,70,'bonus bMdef,2; bonus bMaxSP,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_assassin`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2746,'Cold_Heart','Cold Heart','Armor',20,100,1,true,true,true,true,true,80,'bonus bAgi,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_rogue`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2747,'Black_Cat','Black Cat','Armor',20,100,1,true,true,true,true,true,80,'bonus bDex,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_archer`,`job_barddancer`,`job_hunter`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`,`unequip_script`) VALUES (2748,'Cursed_Star','Cursed Star','Armor',20,200,true,true,true,true,true,true,true,84,'bonus bMdef,3; bonus bDex,2; bonus bLuk,-1; bonus2 bHPLossRate,50,10000; bonus3 bAddEff,Eff_Curse,200,ATF_WEAPON|ATF_LONG|ATF_TARGET;','heal -300,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2749,'Linen_Glove','Linen Glove','Armor',20,120,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,90,'bonus bMdef,2; bonus bAgi,2; bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2750,'Summer_Night_Dream','Summer Night Dream','Armor',20,true,true,100,true,true,true,true,true,true,true,true,'/* skill "ALL_DREAM_SUMMERNIGHT",1; */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2751,'Academy_Badge','Academy Of Badge','Armor',100,true,true,100,true,true,true,true,true,true,'if(BaseLevel<80) { bonus bMaxHP,400; bonus bMaxSP,200; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2752,'Praxinus_C','Praccsinos','Armor',2,true,true,100,true,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,5; bonus bMatkrate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2753,'Beholder_Ring','Beholder Ring','Armor',true,true,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddRace,RC_Formless,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2754,'Hallow_Ring','Hallow Ring','Armor',true,true,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddRace,RC_Undead,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2755,'Clamorous_Ring','Clamorous Ring','Armor',true,true,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddRace,RC_Brute,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2756,'Chemical_Ring','Chemical Ring','Armor',true,true,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddRace,RC_Plant,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2757,'Insecticide_Ring','Insecticide Ring','Armor',true,true,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddRace,RC_Insect,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2758,'Fisher_Ring','Fischer Ring','Armor',true,true,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddRace,RC_Fish,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2759,'Decussate_Ring','Decussate Ring','Armor',true,true,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddRace,RC_Demon,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2760,'Bloody_Ring','Bloody Ring','Armor',true,true,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddRace,RC_DemiHuman,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2761,'Satanic_Ring','Satanic Ring','Armor',true,true,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddRace,RC_Angel,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2762,'Dragoon_Ring','Dragon Ring','Armor',true,true,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddRace,RC_Dragon,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2763,'Skul_Ring_C','Neo Skull Ring','Armor',true,false,false,true,true,true,true,95,100,true,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,5; bonus bMatkrate,5; bonus bMaxHPrate,5; skill "MG_SIGHT",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`) VALUES (2764,'Small_Fishing_Rod','Small Fishing Rod','Armor',10,250,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2765,'Novice_Figure','Novice Figure','Armor',100,true,true,'bonus bMaxHP,70; if(BaseJob==Job_Novice||BaseJob==Job_SuperNovice) bonus bMaxHP,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2766,'Swordman_Figure','Swordman Figure','Armor',true,true,100,true,true,true,true,true,true,true,'bonus bVit,1; if(Class==Job_Swordman) bonus bDef,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2767,'Acolyte_Figure','Acolyte Figure','Armor',true,true,100,true,true,true,true,true,true,true,'bonus bInt,1; if(Class==Job_Acolyte) bonus bMaxSP,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2768,'Mage_Figure','Mage Figure','Armor',true,true,100,true,true,true,true,true,true,true,'bonus bInt,1; if(Class==Job_Mage) bonus bSPrecovRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2769,'Archer_Figure','Archer Figure','Armor',true,true,100,true,true,true,true,true,true,true,'bonus bDex,1; if(Class==Job_Archer) bonus bBaseAtk,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2770,'Thief_Figure','Thief Figure','Armor',true,true,100,true,true,true,true,true,true,true,'bonus bAgi,1; if(Class==Job_Thief) bonus bAspdRate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2771,'Merchant_Figure','Merchant Figure','Armor',true,true,100,true,true,true,true,true,true,true,'bonus bStr,1; if(Class==Job_Merchant) bonus bCritical,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2772,'Krieger_Ring1','Glorious Ring','Armor',20,true,false,false,true,true,81,100,true,true,true,true,true,true,true,'bonus bMaxHP,300; bonus2 bSubEle,Ele_Water,10; bonus2 bSubEle,Ele_Wind,10; bonus2 bSubEle,Ele_Earth,10; bonus2 bSubEle,Ele_Fire,10; bonus bAspdRate,5; bonus bVariableCastrate,-3; bonus bHealPower,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2773,'Krieger_Ring2','Glorious Mass-Production Ring','Armor',20,true,false,false,true,true,61,100,true,true,true,true,true,true,true,'bonus bAllStats,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2774,'Krieger_Ring3','Glorious Popularized Ring','Armor',20,true,false,false,true,true,100,true,true,true,true,true,true,true,'bonus bAllStats,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`) VALUES (2775,'Lure','Lure','Armor',20,100,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_script`,`unequip_script`) VALUES (2776,'Cool_Towel','Adventurer\'s Trusty Towel','Armor',20,100,1,true,true,'sc_start SC_SUMMER,INFINITE_TICK,0;','sc_end SC_SUMMER;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`script`) VALUES (2777,'Shaman_Ring','Shaman Ring','Armor',20,100,1,true,true,30,100,true,'bonus bMaxHP,50; bonus bSPrecovRate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`script`) VALUES (2778,'Shaman_Earing','Shaman Earrings','Armor',20,100,true,true,1,100,true,'bonus bInt,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`script`) VALUES (2779,'Dark_Knight_Belt','Dark Knight Belt','Armor',20,500,1,true,true,1,100,true,'bonus bStr,2; bonus bAgi,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`script`) VALUES (2780,'Dark_Knight_Glove','Dark Knight Glove','Armor',20,500,1,true,true,80,100,true,'autobonus "{ bonus bAspdRate,2; }",10,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`script`) VALUES (2781,'Aumdura\'s_Grace','Aumdura\'s Benefit','Armor',100,1,1,true,true,1,100,true,'bonus bAllStats,1; bonus bMdef,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2782,'Ring_Of_Wise_King','Ring of the Ancient Wise King','Armor',20,100,true,true,100,true,true,true,true,true,true,true,'bonus bMaxHP,50; bonus bMaxSP,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2783,'Eyes_Stone_Ring','Eye Stone Ring','Armor',20,100,1,true,true,70,'bonus bCritical,2; bonus bMaxSP,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2784,'Oh_Holy_Night','Christmas Musicbox','Armor',20,100,true,true,1,'skill "ALL_WEWISH",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2785,'Orleans_Glove_M','Orlean\'s Gloves','Armor',20,100,1,true,false,false,true,true,true,true,90,100,true,true,true,true,true,true,true,'bonus bDex,2; bonus bMatkRate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`script`) VALUES (2786,'Spiritual_Ring_M','Spiritual Ring','Armor',20,100,true,true,100,true,'bonus bInt,2; bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2787,'Waterdrop_Brooch','Waterdrop Brooch','Armor',20,200,1,true,true,true,true,1,'bonus bMdef,2; bonus bMaxHPrate,1; bonus2 bSubEle,Ele_Water,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2788,'Bradium_Earing','Bradium Earring','Armor',20,200,1,true,true,true,true,'bonus bInt,1; bonus bDex,1; bonus bMatk,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2789,'Bradium_Ring','Bradium Ring','Armor',20,200,1,true,true,true,true,'bonus bStr,1; bonus bVit,1; bonus bBaseAtk,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2790,'Bradium_Brooch','Bradium Brooch','Armor',20,200,1,true,true,true,true,'bonus bAgi,1; bonus bFlee,4; if(readparam(bAgi)>=120) bonus bCritical,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2791,'Just_Got_Fish','Fresh Fish','Armor',20,500,1,true,true,1,'bonus bHit,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2792,'Ring_Of_Flame_Lord_I','Ring of Flame Lord','Armor',true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,100,true,true,true,true,true,true,true,true,'bonus bStr,2; bonus bVit,1; bonus bBaseAtk,15; 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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2793,'Ring_Of_Resonance_I','Ring of Resonance','Armor',2,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,100,true,true,true,true,true,true,true,true,'bonus bAgi,2; bonus bVit,1; bonus bMdef,2; 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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`slots`,`job_knight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2794,'Magic_Stone_Ring','Magic Stone Ring','Armor',1,true,true,true,99,100,true,true,true,true,true,true,true,true,'bonus bStr,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2795,'Green_Apple_Ring','Green Apple Ring','Armor',true,false,false,true,true,99,100,true,true,true,true,true,true,true,'if(JobLevel<30) { bonus bAllStats,6-(JobLevel/5); }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2796,'Magical_Stone','Rocks','Armor',200,true,true,true,true,true,true,99,100,true,true,true,true,true,true,true,true,'bonus2 bAddDamageClass,2047,10; bonus2 bAddDefMonster,2048,-10; bonus3 bAddMonsterIdDropItem,6152,2047,70;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2797,'Magical_Stone_','Rocks','Armor',200,true,true,true,true,true,true,99,100,true,true,true,true,true,true,true,true,'bonus2 bAddDamageClass,2049,10; bonus2 bAddDefMonster,2050,-10; bonus3 bAddMonsterIdDropItem,6151,2049,70;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`job_monk`,`job_priest`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2798,'Will_Of_Exhausted_Angel','Will Of Exhausted Angel','Armor',200,true,true,true,true,99,100,true,true,true,true,true,true,true,'if(strcharinfo(3)=="job3_arch02") { bonus2 bAddDefMonster,1761,50; bonus2 bAddDefMonster,1762,50; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`script`) VALUES (2799,'Kuirpenring','Kuirpenring','Armor',100,1,true,true,100,true,'bonus bMdef,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2800,'Accelerator','Accelerator','Armor',100000,100,1,true,true,true,true,true,true,99,'bonus bAgi,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2801,'Hovering_Booster','Hovering Booster','Armor',100000,2000,1,true,true,true,true,true,true,99,'bonus bAgi,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`) VALUES (2802,'Suicidal_Device','Suicidal Device','Armor',500000,1000,1,true,true,true,true,true,true,99); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2803,'Shape_Shifter','Shape Shifter','Armor',100000,500,1,true,true,true,true,true,true,99,'bonus bInt,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2804,'Cooling_Device','Cooling Device','Armor',100000,2500,1,true,true,true,true,true,true,99,'bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2805,'Mag_Field_Generator','Magnetic Field Generator','Armor',100000,6000,1,true,true,true,true,true,true,99,'bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2806,'Barrier_Builder','Barrier Builder','Armor',150000,8000,3,1,true,true,true,true,true,true,99,'bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`) VALUES (2807,'Repair_Kit','Repair Kit','Armor',200000,400,1,true,true,true,true,true,true,99); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2808,'Camouflage_Generator','Camouflague Generator','Armor',250000,1000,1,true,true,true,true,true,true,99,'bonus bAgi,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2809,'High_Quality_Cooler','High Quality Cooler','Armor',100000,2500,1,true,true,true,true,true,true,99,'bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2810,'Special_Cooler','Special Cooler','Armor',100000,2500,1,true,true,true,true,true,true,99,'bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2811,'Freyja_SBracelet7','Freyja\'s Spirit Bracelet','Armor',20,200,1,true,true,20,'bonus bAllStats,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2812,'Freyja_SBracelet30','Freyja\'s Spirit Bracelet','Armor',20,200,1,true,true,20,'bonus bAllStats,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2813,'Freyja_SBracelet60','Freyja\'s Spirit Bracelet','Armor',20,200,1,true,true,20,'bonus bAllStats,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2814,'Freyja_SBracelet90','Freyja\'s Spirit Bracelet','Armor',20,200,1,true,true,20,'bonus bAllStats,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2815,'Th_Ring_Of_Water','Ring Of Water','Armor',20,10,true,true,'bonus bAllStats,1; bonus bMdef,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2816,'Radar_Ring1','Radar Ring','Armor',true,true,100,true,true,true,true,true,true,true,true,'bonus3 bAddMonsterIdDropItem,6206,1002,400; bonus3 bAddMonsterIdDropItem,6207,1161,400; bonus3 bAddMonsterIdDropItem,6208,1153,400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2817,'Radar_Ring2','Radar Ring','Armor',true,true,100,true,true,true,true,true,true,true,true,'bonus3 bAddMonsterIdDropItem,6206,1026,400; bonus3 bAddMonsterIdDropItem,6207,1197,400; bonus3 bAddMonsterIdDropItem,6208,1504,400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2818,'Radar_Ring3','Radar Ring','Armor',true,true,100,true,true,true,true,true,true,true,true,'bonus3 bAddMonsterIdDropItem,6206,1508,400; bonus3 bAddMonsterIdDropItem,6207,1098,400; bonus3 bAddMonsterIdDropItem,6208,1315,400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2819,'Swordman_Manual','Swordsman Manual','Armor',100,true,true,true,true,1,100,true,true,true,true,true,true,true,'bonus bMaxSP,100; skill "SM_BASH",1; skill "SM_PROVOKE",1; skill "SM_MAGNUM",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2820,'Thief_Manual','Thief Manual','Armor',100,true,true,true,true,1,100,true,true,true,true,true,true,true,'bonus bMaxSP,100; skill "TF_DOUBLE",3; bonus bDoubleRate,15; skill "TF_STEAL",1; skill "TF_HIDING",1; skill "TF_POISON",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2821,'Acolyte_Manual','Acolyte Manual','Armor',100,true,true,true,true,1,100,true,true,true,true,true,true,true,'bonus bMaxSP,100; skill "AL_HEAL",1; skill "AL_INCAGI",1; skill "AL_BLESSING",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2822,'Archer_Manual','Archer Manual','Armor',100,true,true,true,true,1,100,true,true,true,true,true,true,true,'bonus bMaxSP,100; skill "AC_OWL",1; skill "AC_CONCENTRATION",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2823,'Merchant_Manual','Merchant Manual','Armor',100,true,true,true,true,1,100,true,true,true,true,true,true,true,'bonus bMaxSP,100; skill "MC_DISCOUNT",1; skill "MC_OVERCHARGE",1; skill "MC_IDENTIFY",1; skill "MC_MAMMONITE",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2824,'Mage_Manual','Mage Manual','Armor',100,true,true,true,true,1,100,true,true,true,true,true,true,true,'bonus bMaxSP,100; skill "MG_SRECOVERY",1; skill "MG_COLDBOLT",1; skill "MG_FIREWALL",1; skill "MG_FIREBOLT",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`script`) VALUES (2825,'Shaman_EaringB','Shaman Earrings','Armor',20,100,true,true,1,100,true,'bonus bInt,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`script`) VALUES (2826,'Dark_Knight_BeltB','Dark Knight Belt','Armor',20,500,1,true,true,1,100,true,'bonus bDex,2; bonus bAgi,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`script`) VALUES (2827,'Dark_Knight_GloveB','Dark Knight Glove','Armor',20,500,1,true,true,1,100,true,'autobonus "{ bonus bMaxHPrate,10; }",10,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`script`) VALUES (2828,'Upg_Clip','Upg Clip','Armor',20,100,1,true,true,1,100,true,'bonus bMaxSP,50; bonus bMaxHPrate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2829,'Greed_Clip','Greed Clip','Armor',true,false,false,true,true,10,'skill "BS_GREED",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2830,'Magingiorde_C','Megingjard','Armor',20,2,true,true,94,'bonus bStr,40; bonus bMdef,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2831,'Brysinggamen_C','Brisingamen','Armor',20,1,true,true,94,'bonus bStr,6; bonus bInt,6; bonus bVit,6; bonus bAgi,6; bonus bLuk,10; bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (2832,'Freyja_Ring','Freyja\'s Ring','Armor',20,true,true,1,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2833,'Odin\'s_Recall','Odin\'s Recall','Armor',true,true,1,'bonus bAllStats,1; skill "ALL_ODINS_RECALL",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2834,'F_All_In_One_Ring','All In One Ring','Armor',20,true,true,'bonus bAllStats,1; bonus bNoCastCancel; bonus bVariableCastrate,10; skill "AL_HEAL",1; skill "AL_TELEPORT",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2835,'F_Critical_Ring_C','Critical Ring','Armor',1,true,false,false,true,true,1,'bonus bCritical,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2836,'F_Glove_C','Glove','Armor',1,true,false,false,true,true,1,'bonus bDex,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2837,'F_Safety_Ring_C','Safety Ring','Armor',1,5,true,false,false,true,true,1,'bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2838,'F_Necklace_C','Necklace','Armor',1,true,false,false,true,true,1,'bonus bVit,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2839,'F_Ring_C','Ring','Armor',1,true,false,false,true,true,1,'bonus bStr,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2840,'F_Rosary_C','Rosary','Armor',1,true,false,false,true,true,1,'bonus bLuk,4; bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2841,'Caracas_Ring','Caracas Ring','Armor',2,true,false,false,true,true,99,100,true,true,true,true,true,true,true,true,'bonus bInt,2; bonus bDex,2; bonus bMdef,2; bonus2 bExpAddRace,RC_All,10; bonus2 bDropAddRace,RC_All,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2842,'F_Earing_C','Earring','Armor',1,true,false,false,true,true,1,'bonus bInt,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2843,'Gold_Trickle','Gold Trickle','Armor',20,true,true,75,100,true,true,true,true,true,true,true,'bonus bMaxSP,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2844,'El_Dicastes_Light','Light Of El Discastes','Armor',20,100,true,true,80,100,true,true,true,true,true,true,true,'skill "RETURN_TO_ELDICASTES",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2845,'No_Fear_Belt','No Fear Belt','Armor',2,true,true,20,'bonus bMdef,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2846,'E_All_In_One_Ring','All In One Ring','Armor',20,true,true,'bonus bAllStats,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2847,'E_Critical_Ring_C','Critical Ring','Armor',1,true,false,false,true,true,1,'bonus bCritical,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2848,'E_Glove_C','Glove','Armor',1,true,false,false,true,true,1,'bonus bDex,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2849,'E_Safety_Ring_C','Safety Ring','Armor',1,5,true,false,false,true,true,1,'bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2850,'E_Ring_C','Ring','Armor',1,true,false,false,true,true,1,'bonus bVit,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2851,'E_Necklace_C','Necklace','Armor',1,true,false,false,true,true,1,'bonus bStr,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2852,'E_Rosary_C','Rosary','Armor',1,true,false,false,true,true,1,'bonus bLuk,4; bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2853,'Telekinetic_Orb','Telekinetic Orb','Armor',20,200,2,true,false,false,true,true,110,'bonus bMdef,1; bonus bInt,3; bonus bMaxSP,30; bonus2 bSkillAtk,"WL_SOULEXPANSION",10; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",10; bonus2 bSkillUseSP,"WL_SOULEXPANSION",-50; bonus2 bSkillUseSP,"SO_PSYCHIC_WAVE",-50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2854,'Alchemy_Glove','Alchemy Glove','Armor',20,100,1,1,true,false,false,true,true,125,'bonus bMdef,2; bonus bInt,1; bonus2 bMagicAtkEle,Ele_Fire,10; bonus2 bMagicAtkEle,Ele_Water,-20; bonus2 bSubEle,Ele_Water,-30; bonus3 bAutoSpell,"MG_FIREBALL",5,30; bonus5 bAutoSpell,"MG_FIREBOLT",5,30,BF_MAGIC,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2855,'Whike_Black_Tail','Whike Black Tail','Armor',20,100,true,true,45,'bonus bCriticalRate,7; bonus bAspdRate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2856,'Half_Megin','Half Megingjard','Armor',20,1,true,true,47,100,true,true,true,true,true,true,true,'bonus bMdef,3; bonus bStr,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2857,'Half_Brysing','Half Brisingamen','Armor',20,1,true,true,47,100,true,true,true,true,true,true,true,'bonus bStr,3; bonus bInt,5; bonus bVit,3; bonus bDex,3; bonus bAgi,3; bonus bLuk,5; bonus bMdef,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2858,'Pendant_Of_Guardian','Pendant Of Guardian','Armor',true,true,70,100,true,true,true,true,true,true,true,'skill "ALL_GUARDIAN_RECALL",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_wizard`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2859,'Golden_Rod_Orb','Golden Rod Orb','Armor',20,200,2,true,true,true,100,'bonus bMdef,2; bonus bInt,1; bonus2 bSubEle,Ele_Wind,15; bonus3 bAutoSpellWhenHit,"WZ_JUPITEL",3,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_wizard`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2860,'Aqua_Orb','Aqua Orb','Armor',20,200,2,true,true,true,100,'bonus bMdef,2; bonus bInt,1; bonus2 bSubEle,Ele_Water,15; bonus3 bAutoSpellWhenHit,"WZ_FROSTNOVA",3,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_wizard`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2861,'Crimson_Orb','Crismon Orb','Armor',20,200,2,true,true,true,100,'bonus bMdef,2; bonus bInt,1; bonus2 bSubEle,Ele_Fire,15; bonus3 bAutoSpellWhenHit,"WZ_SIGHTRASHER",3,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_wizard`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2862,'Forest_Orb','Forest Orb','Armor',20,200,2,true,true,true,100,'bonus bMdef,2; bonus bInt,1; bonus2 bSubEle,Ele_Earth,15; bonus3 bAutoSpellWhenHit,"WZ_QUAGMIRE",3,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2863,'Ring_Of_Valkyrie','Ring Of Valkyrie','Armor',2,true,true,1,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddClass,Class_All,5; bonus2 bDropAddRace,RC_All,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_priest`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2864,'Light_Of_Cure','Light Of Cure','Armor',20,true,true,true,110,'bonus bVit,2; bonus bHealPower,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_priest`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2865,'Seal_Of_Cathedral','Seal Of Cathedral','Armor',20,true,true,true,110,'bonus bInt,2; bonus bHealPower,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_priest`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2866,'Ring_Of_Archbishop','Ring Of Archbishop','Armor',20,true,true,true,110,'bonus bDex,2; bonus bHealPower,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2867,'Broken_Bamboo_Piece','Broken Bamboo Piece','Armor',20,100,2,true,true,'bonus bMdef,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2868,'Green_Batik','Green Batik','Armor',20,100,1,true,false,false,true,true,45,'bonus bStr,1; bonus bInt,1; bonus bDex,1; bonus bMdef,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2869,'Colorful_Ketupat','Colorful Ketupat','Armor',20,100,true,false,false,true,true,45,'bonus bStr,1; bonus bInt,1; bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2870,'Tw_8th_Anni_Ring','Tw 8th Anni Ring','Armor',true,true,'bonus bStr,5; bonus bInt,5; bonus bVit,5; bonus bDex,5; bonus bAgi,5; bonus bLuk,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2871,'Brazilian_Emblem','Brazilian Emblem','Armor',20,100,1,true,true,60,'bonus2 bAddClass,Class_All,3; bonus bMatkRate,3; bonus bMaxHP,50; bonus bMaxSP,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (2872,'G_Honor_Certificate','G Honor Certificate','Armor',true,true,1,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2873,'Cat_Hand_Glove','Cat Hand Glove','Armor',20,100,5,1,true,true,1,'bonus bAgi,1; bonus bVit,1; bonus bDex,1; bonus bLuk,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2874,'Buffalo_Horn','Buffalo Horn','Armor',20,100,1,true,true,10,'bonus bAspd,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2875,'RO_Appreciation_Ring','RO Appreciation Ring','Armor',20,100,1,true,true,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2876,'Necklace_Spica','Necklace Spica','Armor',20,200,1,true,true,10,'bonus bMdef,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2877,'Glove_Sabik','Glove Sabik','Armor',20,200,1,true,true,10,'bonus bMdef,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2878,'Bracelet_Arunairi','Bracelet Arunairi','Armor',20,200,1,true,true,10,'bonus bMdef,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2879,'Badge_Giorredart','Badge Giorredart','Armor',20,200,1,true,true,10,'bonus bMdef,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2880,'Ring_Lupak','Ring Lupak','Armor',20,200,1,true,true,10,'bonus bMdef,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2881,'Orleans_Necklace','Orleans Necklace','Armor',20,100,1,true,true,'bonus bDex,2; bonus bMatk,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2882,'Ecoro_Cardslip','Ecoro Cardslip','Armor',20,100,1,true,true,'bonus bVit,1; bonus bLuk,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2883,'Ur_Seal','Ur\'s Seal','Armor',20,200,4,1,true,true,true,true,true,true,100,'bonus bMaxHPrate,2; bonus2 bSkillUseSP,"LK_SPIRALPIERCE",5; bonus2 bSkillUseSP,"RK_HUNDREDSPEAR",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2884,'Peuz_Seal','Peuz\'s Seal','Armor',20,200,3,1,true,true,true,true,true,true,100,'bonus bBaseAtk,20; bonus bMaxSP,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2885,'Mother_Heart','Mother Heart','Armor',true,true,100,true,true,true,true,true,true,true,'bonus bBaseAtk,15; bonus bMatk,15; bonus2 bExpAddClass,Class_All,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_assassin`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2886,'Sabah_Ring','Sapha Ring','Armor',20,100,true,true,true,100,'bonus bCritical,3; bonus2 bSkillUseSP,"GC_DARKILLUSION",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_assassin`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2887,'Nab_Ring','Nab Ring','Armor',20,100,true,true,true,100,'bonus bBaseAtk,10; bonus bMatk,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2888,'School_Bag','School Bag','Armor',20,1000,1,true,true,'bonus bAspdRate,3; bonus bVariableCastrate,-3; if(BaseLevel<80){ bonus bMaxHP,200; bonus bMaxSP,100; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`) VALUES (2889,'Endure_Ring','Endure Ring','Armor',20,100,1,true,true,60); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_hunter`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2890,'White_Wing_Brooch','White Wing Brooch','Armor',20,100,true,true,true,100,'bonus bDex,2; bonus bLongAtkRate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2891,'Black_wing_Brooch','Black Wing Brooch','Armor',20,100,true,true,true,true,true,true,100,'bonus bInt,2; bonus bFlee2,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_assassin`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2892,'Assassin_Handcuffs','Assassin\'s Glove','Armor',56000,400,3,1,true,true,true,100,'bonus bMaxSP,20; bonus bCritical,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`) VALUES (2893,'Cursed_Heart','Cursed Heart','Armor',20,50,1,true,true,80); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_monk`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2894,'Glove_Of_Shura','Sura Gauntlet','Armor',20,400,1,true,true,true,130,'bonus bStr,5; bonus bMaxSPrate,6; bonus bMaxHPrate,-6; if(readparam(bStr)>=120){ bonus bBaseAtk,30; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2895,'Medal_Of_Valor1','Medal Of Valor1','Armor',4,true,true,'bonus bVariableCastrate,-2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2896,'Medal_Of_Valor2','Medal Of Valor2','Armor',4,true,true,'bonus bAspdRate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2897,'2011RWC_Necklace_J','2011RWC Necklace J','Armor',100,true,true,1,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus2 bExpAddClass,Class_All,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2898,'Black_Rosary','Dark Rosary','Armor',20,100,1,true,true,90,'bonus bMdef,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_barddancer`,`job_hunter`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2899,'Sound_Amplifier','Sound Amplification Device','Armor',20,100,1,true,true,true,true,90,'bonus2 bSkillAtk,"WM_METALICSOUND",150; bonus2 bSkillUseSP,"WM_METALICSOUND",-60; bonus bVariableCastrate,-50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`) VALUES (2900,'Morrigane\'s_Belt_','Morrigane\'s Belt','Armor',30000,200,1,true,false,false,true,true,61); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2901,'Morrigane\'s_Pendant_','Morrigane\'s Pendant','Armor',30000,200,1,true,false,false,true,true,61,'bonus bStr,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2902,'Morpheus\'s_Ring_','Morpheus\'s Ring','Armor',30000,100,1,true,false,false,true,true,33,'bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2903,'Morpheus\'s_Armlet_','Morpheus\'s Armlet','Armor',30000,100,1,true,false,false,true,true,33,'bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2904,'Naqsh','Naqsi','Armor',true,true,'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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`) VALUES (2905,'Super_Ora_Ora','Super Ora Ora','Armor',1000,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2906,'Happy_Gauntlet','Happy Gauntlet','Armor',20,1000,3,1,true,true,70,'bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2907,'Buwaya_Tattoo','Bawaya Agimat Tattoo','Armor',20,100,true,true,1,'bonus bMatkRate,7; bonus bFixedCastrate,-7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`) VALUES (2908,'Light_Ring','Light Ring','Armor',20,100,1,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`) VALUES (2909,'Darkness_Ring','Darkness Ring','Armor',20,100,1,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2910,'Bakonawa_Tattoo','Bakunawa Agimat Tattoo','Armor',20,100,true,true,1,'bonus2 bAddClass,Class_All,7; bonus bAspdRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2911,'Bangungot_Tattoo','Bangungot Agimat Tattoo','Armor',20,100,true,true,1,'bonus bHealPower,4; bonus bHealPower2,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`) VALUES (2912,'Xylitol_2011','Xylitol 2011','Armor',20,300,1,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2913,'Thief_Handcuff','Thief Handcuff','Armor',20,1400,1,true,true,10,'bonus bBaseAtk,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2914,'Wizard_Left_Eye','Wizard Left Eye','Armor',20,100,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,'bonus bInt,4; bonus bMdef,3; bonus bVariableCastrate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2915,'Ettlang_Keepsake','Ettlang Keepsake','Armor',20,50,true,true,100,true,true,true,true,true,true,'bonus bMdef,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2916,'Fairy_Wing','Fairy Wing','Armor',10,true,true,90,100,true,true,true,true,true,true,true,'skill "ECLAGE_RECALL",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2917,'Str_Glove','Str Glove','Armor',75000,100,true,true,100,'bonus bMaxHP,100; bonus bMaxSP,20; bonus bBaseAtk,(readparam(bStr)/10); if(readparam(bStr)>=110) bonus2 bAddClass,Class_All,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2918,'Int_Glove','Int Glove','Armor',75000,100,true,true,100,'bonus bMaxHP,100; bonus bMaxSP,20; bonus bMatk,(readparam(bInt)/10); if(readparam(bInt)>=110) bonus bMatkRate,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2919,'Agi_Glove','Agi Glove','Armor',75000,100,true,true,100,'bonus bMaxHP,100; bonus bMaxSP,20; bonus bFlee,(readparam(bAgi)/10); if(readparam(bAgi)>=110) bonus bFlee2,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2920,'Vit_Glove','Vit Glove','Armor',75000,100,true,true,100,'bonus bMaxHP,100; bonus bMaxSP,20; bonus bMaxHP,(readparam(bVit)/10)*50; if(readparam(bVit)>=110) bonus bMaxHPrate,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2921,'Dex_Glove','Dex Glove','Armor',75000,100,true,true,100,'bonus bMaxHP,100; bonus bMaxSP,20; bonus bHit,(readparam(bDex)/10); if(readparam(bDex)>=110) bonus bLongAtkRate,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2922,'Luk_Glove','Luk Glove','Armor',75000,100,true,true,100,'bonus bMaxHP,100; bonus bMaxSP,20; bonus bCritical,(readparam(bLuk)/10); if(readparam(bLuk)>=110) bonus bCritAtkRate,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2923,'Str_Glove_','Str Glove','Armor',75000,100,1,true,true,100,'bonus bMaxHP,100; bonus bMaxSP,20; bonus bBaseAtk,(readparam(bStr)/10); if(readparam(bStr)>=110) bonus2 bAddClass,Class_All,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2924,'Int_Glove_','Int Glove','Armor',75000,100,1,true,true,100,'bonus bMaxHP,100; bonus bMaxSP,20; bonus bMatk,(readparam(bInt)/10); if(readparam(bInt)>=110) bonus bMatkRate,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2925,'Agi_Glove_','Agi Glove','Armor',75000,100,1,true,true,100,'bonus bMaxHP,100; bonus bMaxSP,20; bonus bFlee,(readparam(bAgi)/10); if(readparam(bAgi)>=110) bonus bFlee2,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2926,'Vit_Glove_','Vit Glove','Armor',75000,100,1,true,true,100,'bonus bMaxHP,100; bonus bMaxSP,20; bonus bMaxHP,(readparam(bVit)/10)*50; if(readparam(bVit)>=110) bonus bMaxHPrate,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2927,'Dex_Glove_','Dex Glove','Armor',75000,100,1,true,true,100,'bonus bMaxHP,100; bonus bMaxSP,20; bonus bHit,(readparam(bDex)/10); if(readparam(bDex)>=110) bonus bLongAtkRate,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2928,'Luk_Glove_','Luk Glove','Armor',75000,100,1,true,true,100,'bonus bMaxHP,100; bonus bMaxSP,20; bonus bCritical,(readparam(bLuk)/10); if(readparam(bLuk)>=110) bonus bCritAtkRate,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_upper`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2935,'Sprint_Gloves','Sprint Gloves','Armor',20,100,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,'bonus bVariableCastrate,-1; bonus bDelayrate,-1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2936,'Recovery_Ring','Recovery Ring','Armor',20,100,5,1,true,true,10,'bonus bVit,1; bonus bMaxHP,250; bonus bMaxHPrate,5; bonus bHealPower2,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2940,'Ninja_Manual','Ninja Manual','Armor',100,true,true,true,true,100,true,true,true,true,true,true,true,'bonus bMaxSP,100; skill "NJ_UTSUSEMI",1; skill "NJ_KOUENKA",1; skill "NJ_SYURIKEN",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2941,'Gunslinger_Manual','Gunslinger Manual','Armor',100,true,true,true,true,100,true,true,true,true,true,true,true,'bonus bMaxSP,100; skill "GS_GLITTERING",1; skill "GS_ADJUSTMENT",1; skill "GS_MADNESSCANCEL",1; skill "GS_INCREASING",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2942,'Taekwon_Manual','Taekwon Manual','Armor',100,true,true,true,true,100,true,true,true,true,true,true,true,'bonus bMaxSP,100; skill "TK_SEVENWIND",4; skill "TK_JUMPKICK",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2943,'Critical_Ring_','Critical Ring','Armor',100,1,true,true,'bonus bCritical,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2944,'TE_Ring_Of_Protection','TE Ring Of Protection','Armor',true,true,40,100,true,true,true,true,true,true,true,'bonus bMaxHP,100; bonus2 bSubRace,RC_Player_Human,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2945,'TE_Ring_Of_Rage','TE Ring Of Rage','Armor',true,true,40,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_Player_Human,5; bonus2 bMagicAddRace,RC_Player_Human,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2946,'TE_Ring_Of_Defiance','TE Ring Of Defiance','Armor',true,true,40,100,true,true,true,true,true,true,true,'bonus bMdef,5; bonus2 bSubRace,RC_Player_Human,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2948,'Demon_Wing','Demon Wing','Armor',10,100,1,true,true,70,'bonus bFlee,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2949,'Silversmith_Bracelet','Silversmith Bracelet','Armor',10,100,3,1,true,true,60,'bonus bAllStats,1; bonus bMdef,3; skill "SA_SPELLBREAKER",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2950,'Rune_Ring','Rune Ring','Armor',true,true,1,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddClass,Class_Normal,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2951,'Kvasir_Ring_Blue','Kvasir Ring Blue','Armor',100,true,true,1,'bonus bMaxSP,30; skill "ECL_SNOWFLIP",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2952,'Kvasir_Ring_Red','Kvasir Ring Red','Armor',100,true,true,1,'bonus bMaxSP,30; skill "ECL_PEONYMAMY",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2953,'Kvasir_Ring_Green','Kvasir Ring Green','Armor',100,true,true,1,'bonus bMaxHP,100; skill "ECL_SADAGUI",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2954,'Kvasir_Ring_Brown','Kvasir Ring Brown','Armor',10,100,true,true,1,'bonus bMaxHP,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2956,'Safety_Ring_','Advanced Safety Ring','Armor',75000,100,10,1,true,false,false,true,true,50,'bonus bMdef,5; bonus bAllStats,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_monk`,`job_priest`,`job_rebellion`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2957,'Good_Ring_Of_Flame_Lord','Advanced Ring Of Flame Lord','Armor',20,100,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,85,'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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_monk`,`job_priest`,`job_rebellion`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2958,'Good_Ring_Of_Resonance','Advanced Ring Of Resonance','Armor',20,100,2,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,85,'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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2959,'Fidelity_Necklace','Fidelity Necklace','Armor',20,300,1,true,true,50,'bonus bAgi,2; bonus2 bSubRace,RC_Brute,3; bonus2 bSubRace,RC_Player_Doram,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2960,'Badge_Of_Manny','Badge Of Manny','Armor',20,200,1,true,true,'bonus bAllStats,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2963,'Body_Power_Up_Ring','Physical Enhancer Ring','Armor',10,100,1,true,true,90,'bonus2 bAddClass,Class_All,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2964,'Ring_Of_Spell_Explosion','Magic Intensifier Ring','Armor',10,100,1,true,true,90,'bonus bMatkRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`script`) VALUES (2966,'RWC_2012_Ring','RWC 2012 Ring','Armor',20,200,true,true,100,true,'bonus2 bAddClass,Class_All,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`script`) VALUES (2967,'RWC_2012_Ring_','Chambered RWC 2012 Ring','Armor',20,200,1,true,true,100,true,'bonus2 bAddClass,Class_All,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`script`) VALUES (2968,'RWC_2012_Pendant','RWC 2012 Pendant','Armor',20,200,true,true,100,true,'bonus bMatkRate,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`script`) VALUES (2969,'RWC_2012_Pendant_','Chambered RWC 2012 Pendant','Armor',20,200,1,true,true,100,true,'bonus bMatkRate,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_soullinker`,`job_wizard`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2971,'Pocket_Watch','Pocket Watch','Armor',10,200,1,1,true,true,true,true,80,'bonus bHPrecovRate,15; bonus bSPrecovRate,15; bonus bMatkRate,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`,`unequip_script`) VALUES (2976,'Red_Lantern','Red Lantern','Armor',10,200,1,true,true,100,'bonus bMaxSP,-300; skill "MG_SIGHT",1;','sc_end SC_SIGHT;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2977,'Hurt_Mind','Hurt Mind','Armor',10,100,1,true,true,110,'bonus bMaxSP,200; skill "DC_SCREAM",3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2978,'KindHeart','Kind Heart','Armor',10,100,1,true,true,110,'bonus bMaxHP,500; bonus2 bHPRegenRate,300,10000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2979,'Strawberry_Decoration','Strawberry Decoration','Armor',20,500,1,1,true,false,false,true,true,1,'bonus bAllStats,1; bonus3 bAutoSpellWhenHit,"WZ_FROSTNOVA",3,10; /* Confirm: Frost Nova cast chance */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2980,'Evilspirit_Gloves','Evil Spirit Gloves','Armor',10,100,1,true,true,110,'bonus bMaxHP,500; bonus bMaxSP,200; skill "PF_SPIDERWEB",1; bonus3 bAutoSpell,"SO_PSYCHIC_WAVE",1,20; bonus5 bAutoSpell,"HW_MAGICPOWER",1,10,BF_MAGIC,0; bonus5 bAutoSpell,"WZ_FROSTNOVA",10,10,BF_MAGIC,0; bonus5 bAutoSpell,"WZ_FROSTNOVA",10,20,BF_WEAPON,0; bonus5 bAutoSpellWhenHit,"DC_SCREAM",1,50,BF_WEAPON|BF_MAGIC,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (2981,'RingOfHero','Warrior\'s Ring','Armor',10,200,true,true,160,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2983,'Greed_Brooch','Greed Brooch','Armor',10,100,1,true,true,50,'bonus2 bHPLossRate,10,5000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2984,'Glove_Save_Rimnil','Glove Save Rimnil','Armor',10,100,1,true,true,30,'bonus2 bExpAddRace,RC_All,5; bonus2 bSubRace,RC_All,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`,`unequip_script`) VALUES (2985,'Gyges_Ring','Gyges Ring','Armor',10,100,1,true,true,50,'bonus bInt,3; bonus bMatk,30; skill "TF_HIDING",1;','sc_end SC_HIDING;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2986,'Snake_Ring','Snake Ring','Armor',20,100,2,1,true,true,'bonus bDex,3; bonus bMdef,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2987,'Snake_Pendant','Snake Pendant','Armor',20,100,3,1,true,true,'bonus bAgi,3; bonus bLuk,2; bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2988,'Winged_Ring_Of_Newoz','Oz\'s New Wing Ring','Armor',20,100,1,true,true,true,true,'Male',true,true,130,'bonus bVariableCastrate,-25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2989,'Floral_Bracelet_Of_Igu','Bloody Floral Decoration Bracelet','Armor',20,100,1,true,true,true,true,'Female',true,true,130,'bonus bVariableCastrate,-25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2990,'Pendant_Of_Harmony','Pendant of Harmony','Armor',20,100,true,true,130,'bonus bMatkRate,6; bonus bHPrecovRate,50; bonus bSPrecovRate,50; bonus2 bSubEle,Ele_Holy,5; autobonus "{ bonus2 bHPRegenRate,1000,5000; }",100,90000,BF_NORMAL; bonus4 bAutoSpellWhenHit,"PR_SANCTUARY",3,100,0; bonus bStr,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2991,'Pendant_Of_Chaos','Pendant of Chaos','Armor',20,100,true,true,130,'bonus2 bAddClass,Class_All,6; bonus2 bSubEle,Ele_Dark,5; bonus2 bResEff,Eff_Confusion,10000; bonus2 bAddEff,Eff_Confusion,500; bonus3 bAutoSpellWhenHit,"NPC_WIDECONFUSE",2,30; bonus bInt,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2992,'Pendant_Of_Maelstorm','Pendant of Maelstrom','Armor',20,100,1,true,true,130,'bonus2 bAddClass,Class_All,6; bonus bMatkRate,6; bonus bAllStats,1; bonus5 bAutoSpellWhenHit,"SC_MAELSTROM",1,100,BF_MAGIC,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2995,'Supplement_Part_Dex','Supplement Part Dex','Armor',25000,100,1,true,true,true,true,true,true,100,'bonus bUseSPrate,-10; bonus bDelayrate,-10; bonus bVariableCastrate,-10; bonus2 bSkillCooldown,"NC_AXEBOOMERANG",-2000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2996,'Upgrade_Part_Gun_Barrel','Reinforced Parts - Gun Barrel','Armor',10,500,1,true,true,100,'bonus2 bAddClass,Class_All,4; bonus bHit,10; bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2997,'RWC_Gold_Brooch','RWC Gold Brooch','Armor',10,200,1,true,true,100,true,true,true,true,true,true,true,'bonus bBaseAtk,25; bonus bMatk,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2998,'Shining_Trapezohedron','Shining Trapezohedron','Armor',100,1,true,true,90,'bonus2 bSubEle,Ele_Holy,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2999,'RWC_Brooch','RWC Brooch','Armor',10,200,true,true,100,true,true,true,true,true,true,true,'bonus bMaxHP,300; bonus bMaxSP,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5001,'Headset','Headset','Armor',20,200,6,true,false,false,true,1,true,87,'bonus2 bResEff,Eff_Curse,1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5002,'Gemmed_Crown','Jewel Crown','Armor',20,600,9,true,true,true,true,true,true,true,true,true,true,60,true,88,'bonus bInt,2; bonus bLuk,1; bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5003,'Joker_Jester','Joker Jester','Armor',20,100,3,true,false,false,true,true,89,'bonus bLuk,2; bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_low`,`view`,`script`) VALUES (5004,'Oxygen_Mask','Oxygen Mask','Armor',20,200,true,false,false,true,90,'bonus2 bResEff,Eff_Poison,2000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`location_head_low`,`view`,`script`) VALUES (5005,'Gas_Mask','Gas Mask','Armor',20,100,1,true,false,false,true,true,91,'bonus2 bResEff,Eff_Poison,3000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`view`) VALUES (5006,'Machoman_Glasses','Machoman\'s Glasses','Armor',36000,100,1,true,false,false,true,92); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5007,'Loard_Circlet','Grand Circlet','Armor',20,200,7,true,false,false,true,55,true,93,'bonus bStr,1; bonus bInt,1; bonus bLuk,1; bonus bMdef,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`view`) VALUES (5008,'Puppy_Love','Puppy Love','Armor',20,100,1,true,false,false,true,94); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5009,'Safety_Helmet','Safety Helmet','Armor',20,500,7,true,false,false,true,true,95,'bonus bMdef,3; bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (5010,'Indian_Hair_Piece','Indian Fillet','Armor',20,100,5,true,true,96); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (5011,'Antenna','Aerial','Armor',20,100,5,true,true,97); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`) VALUES (5012,'Ph.D_Hat','Ph.D Hat','Armor',20,200,5,true,false,false,true,true,98); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5013,'Horn_Of_Lord_Kaho','Lord Kaho\'s Horn','Armor',20,100,30,true,true,99,'bonus bMdef,10; bonus bStr,5; bonus bAgi,10; bonus bVit,10; bonus bInt,5; bonus bLuk,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_crusader`,`job_knight`,`job_swordman`,`location_head_mid`,`equip_level_min`,`view`) VALUES (5014,'Fin_Helm','Fin Helm','Armor',20,300,5,true,true,true,true,65,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`view`) VALUES (5015,'Egg_Shell','Egg Shell','Armor',20,200,6,true,101); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`) VALUES (5016,'Boy\'s_Cap','Boy\'s Cap','Armor',20,100,3,true,false,false,true,true,102); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5017,'Bone_Helm','Bone Helm','Armor',20,800,15,true,true,true,true,true,true,true,70,true,103,'bonus2 bSubEle,Ele_Dark,-15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_archer`,`job_barddancer`,`job_hunter`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5018,'Feather_Bonnet','Feather Bonnet','Armor',20,300,8,true,true,true,true,true,104,'bonus bAgi,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5019,'Corsair','Corsair','Armor',20,500,11,true,false,false,true,true,105,'bonus bVit,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5020,'Kafra_Band','Kafra Band','Armor',20,500,5,true,true,106,'bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_blacksmith`,`job_merchant`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5021,'Bankruptcy_Of_Heart','Grief for Greed','Armor',20,1200,8,true,true,true,true,38,true,107,'bonus bInt,1; bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`location_head_top`,`location_head_mid`,`refineable`,`view`,`script`) VALUES (5022,'Helm_Of_Sun','Hat of the Sun God','Armor',20,2400,4,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,138,'bonus bStr,3; bonus bInt,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_alchemist`,`job_blacksmith`,`job_merchant`,`location_head_top`,`refineable`,`view`) VALUES (5023,'Hat_Of_Bundle','Parcel Hat','Armor',20,1000,true,true,true,true,true,108); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (5024,'Hat_Of_Cake','Cake Hat','Armor',20,1000,2,true,true,109); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5025,'Helm_Of_Angel','Helm of Angel','Armor',20,1600,10,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,74,true,110,'bonus bAgi,1; bonus bLuk,1; bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5026,'Hat_Of_Cook','Chef Hat','Armor',20,300,3,true,false,false,true,50,true,111,'bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5027,'Wizardry_Hat','Mage Hat','Armor',20,300,2,true,true,true,true,true,true,112,'bonus bInt,2; bonus bMaxSP,150;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`refineable`,`view`) VALUES (5028,'Candle','Candle','Armor',20,150,true,true,113); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5029,'Spore_Hat','Spore Hat','Armor',20,900,6,true,false,false,true,20,true,114); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5030,'Panda_Cap','Panda Hat','Armor',20,800,6,true,false,false,true,40,true,115); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_acolyte`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_rogue`,`job_swordman`,`job_thief`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5031,'Mine_Helm','Mine Hat','Armor',20,1500,9,true,true,true,true,true,true,true,true,true,true,true,true,true,55,true,116,'bonus bDex,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`) VALUES (5032,'Picnic_Hat','Sunday Hat','Armor',20,800,1,true,false,false,true,true,117); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5033,'Smokie_Hat','Raccoon Hat','Armor',20,900,6,true,false,false,true,50,true,118); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`) VALUES (5034,'Light_Bulb_Band','Bulb Band','Armor',20,500,true,false,false,true,true,119); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5035,'Poring_Hat','Poring Hat','Armor',20,700,3,true,false,false,true,38,true,120); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5036,'Cross_Band','Cross Hat','Armor',20,250,2,true,false,false,true,10,true,121); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`) VALUES (5037,'Fruit_Shell','Nut Shell','Armor',20,150,8,true,5,122); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5038,'Deviruchi_Cap','Deviruchi Hat','Armor',20,800,4,true,false,false,true,64,true,123,'bonus bStr,1; bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`) VALUES (5039,'Mottled_Egg_Shell','Rainbow Eggshell','Armor',20,400,8,true,19,124); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`view`) VALUES (5040,'Blush','Blush','Armor',20,100,true,125); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`refineable`,`view`) VALUES (5041,'Heart_Hair_Pin','Heart Hairpin','Armor',20,100,true,true,126); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5042,'Hair_Protector','Bao Bao','Armor',20,150,true,false,false,true,14,true,127); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`equip_level_min`,`view`) VALUES (5043,'Opera_Ghost_Mask','Opera Phantom Mask','Armor',20,200,2,true,false,false,true,20,128); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5044,'Devil\'s_Wing','Evil Wing Ears','Armor',20,350,4,true,45,true,129,'bonus bVit,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5045,'Magician_Hat','Magician Hat','Armor',20,500,6,true,true,true,true,true,true,true,true,50,true,130,'bonus bDex,1; bonus bAgi,1; bonus bMaxSP,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`location_head_low`,`view`) VALUES (5046,'Bongun_Hat','Bongun Hat','Armor',20,300,5,true,true,true,139); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`) VALUES (5047,'Fashion_Sunglass','Fashionable Glasses','Armor',20,100,true,false,false,true,true,131); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`refineable`,`view`) VALUES (5048,'First_Moon_Hair_Pin','Cresent Hairpin','Armor',20,100,true,true,132); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`view`) VALUES (5049,'Stripe_Band','Striped Hairband','Armor',20,150,1,true,133); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`) VALUES (5050,'Mystery_Fruit_Shell','Wonder Nutshell','Armor',20,300,10,true,30,134); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`) VALUES (5051,'Kitty_Bell','Pussy Cat Bell','Armor',20,100,true,135); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (5052,'Blue_Hair_Band','Blue Hairband','Armor',20,150,2,true,true,136); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_crusader`,`job_knight`,`job_swordman`,`location_head_top`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (5053,'Spinx_Helm','Sphinx Hat','Armor',20,3000,5,true,true,true,true,true,65,137,'bonus bStr,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_assassin`,`job_priest`,`location_head_low`,`equip_level_min`,`view`) VALUES (5054,'Assassin_Mask','Assassin Mask','Armor',20,100,true,true,true,70,180); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_novice`,`job_supernovice`,`location_head_top`,`view`) VALUES (5055,'Novice_Egg_Cap','Novice False Eggshell','Armor',1,1,6,true,true,true,101); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`view`) VALUES (5056,'Love_Berry','Fruit of Love','Armor',1,200,true,140); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5057,'Ear_Of_Black_Cat','Black Cat Ears','Armor',16000,200,4,true,45,true,141); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5058,'Drooping_Kitty','Drooping Cat','Armor',250000,500,3,true,false,false,true,true,142,'bonus bMdef,15; bonus2 bResEff,Eff_Curse,3000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5059,'Brown_Bear_Cap','Teddybear Hat','Armor',20,800,6,true,50,true,143); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5060,'Party_Hat','Party Hat','Armor',20,300,4,true,true,144,'bonus bLuk,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (5061,'Flower_Hairpin','Flower Hairpin','Armor',20,100,1,true,true,145); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5062,'Straw_Hat','Straw Hat','Armor',20,200,6,true,50,true,146,'bonus bAgi,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`) VALUES (5063,'Plaster','Giant Band Aid','Armor',20,100,1,true,false,false,true,true,147); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (5064,'Leaf_Headgear','Smokie Leaf','Armor',20,100,1,true,true,148); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5065,'Fish_On_Head','Blue Fish','Armor',20,500,4,true,50,true,149,'bonus2 bAddRace,RC_Fish,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5066,'Horn_Of_Succubus','Succubus Horn','Armor',20,800,7,true,false,false,true,70,true,150,'bonus bInt,1; bonus bMdef,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5067,'Sombrero','Sombrero','Armor',20,350,8,true,false,false,true,true,151,'bonus bAgi,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (5068,'Ear_Of_Devil\'s_Wing','Evil Wing Ears','Armor',20,100,3,true,70,152,'bonus bStr,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5069,'Mask_Of_Fox','Kitsune Mask','Armor',20,300,2,true,false,false,true,true,153,'bonus bAgi,1; bonus bLuk,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5070,'Headband_Of_Power','Hot-blooded Headband','Armor',20,100,3,true,false,false,true,true,154,'bonus bStr,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5071,'Indian_Headband','Indian Headband','Armor',20,200,2,true,false,false,true,true,155,'bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5072,'Inccubus_Horn','Incubus Horn','Armor',20,800,7,true,false,false,true,70,true,156,'bonus bAgi,1; bonus bMdef,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5073,'Cap_Of_Concentration','Model Training Hat','Armor',20,700,5,true,false,false,true,true,157,'bonus bDex,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (5074,'Ear_Of_Angel\'s_Wing','Angel Wing Ears','Armor',20,100,3,true,70,158,'bonus bStr,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (5075,'Cowboy_Hat','Cowboy Hat','Armor',20,500,8,true,true,159); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5076,'Fur_Hat','Beanie','Armor',20,350,3,true,true,160,'bonus bLuk,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (5077,'Tulip_Hairpin','Tulip Hairpin','Armor',20,100,1,true,true,161); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5078,'Sea_Otter_Cap','Sea-Otter Hat','Armor',20,800,6,true,50,true,162,'bonus bVit,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (5079,'Crossed_Hair_Band','X Hairpin','Armor',20,100,1,true,true,163); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5080,'Headgear_Of_Queen','Crown of Ancient Queen','Armor',20,400,8,true,45,true,164); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5081,'Mistress_Crown','Crown of Mistress','Armor',20,100,2,true,false,false,true,75,true,165,'bonus bMaxSP,100; bonus bInt,2; bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (5082,'Mushroom_Band','Decorative Mushroom','Armor',20,100,3,true,true,166); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5083,'Red_Tailed_Ribbon','Red Ribbon','Armor',20,200,2,true,45,true,167,'bonus bMdef,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5084,'Lazy_Raccoon','Lazy Smokie','Armor',20,500,2,true,false,false,true,true,168,'bonus2 bResEff,Eff_Sleep,2000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`view`) VALUES (5085,'Pair_Of_Red_Ribbon','Small Ribbons','Armor',20,100,2,true,45,169); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`location_head_low`,`view`,`script`) VALUES (5086,'Alarm_Mask','Alarm Mask','Armor',20,100,2,true,false,false,true,true,170,'bonus2 bResEff,Eff_Blind,5000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`location_head_low`,`view`) VALUES (5087,'Goblin_Mask_01','Poker Face','Armor',20,100,1,true,true,171); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`location_head_low`,`view`) VALUES (5088,'Goblin_Mask_02','Surprised Mask','Armor',20,100,1,true,true,172); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`location_head_low`,`view`) VALUES (5089,'Goblin_Mask_03','Annoyed Mask','Armor',20,100,1,true,true,173); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`location_head_low`,`view`) VALUES (5090,'Goblin_Mask_04','Goblin Leader Mask','Armor',20,100,2,true,true,174); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`) VALUES (5091,'Big_Golden_Bell','Decorative Golden Bell','Armor',20,200,2,true,false,false,true,true,35,true,175); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_assassin`,`job_priest`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`) VALUES (5092,'Blue_Coif','Coif','Armor',150000,300,5,true,true,true,true,65,true,176); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_assassin`,`job_priest`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5093,'Blue_Coif_','Coif','Armor',150000,300,5,1,true,true,true,true,65,true,177,'bonus bMaxSP,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5094,'Orc_Hero_Helm','Helmet of Orc Hero','Armor',500000,900,5,true,false,false,true,true,55,true,178,'bonus bStr,2; bonus bVit,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5095,'Orc_Hero_Helm_','Helmet of Orc Hero','Armor',800000,1000,5,1,true,false,false,true,true,55,true,179,'bonus bStr,2; bonus bVit,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_assassin`,`job_priest`,`location_head_low`,`equip_level_min`,`view`) VALUES (5096,'Assassin_Mask_','Assassin Mask','Armor',20,100,1,true,true,true,70,180); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_top`,`refineable`,`view`) VALUES (5097,'Cone_Hat_','Holiday Hat','Armor',400,true,true,144); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (5098,'Tiger_Mask','Tiger Mask','Armor',20,400,2,true,true,50,181,'bonus bStr,3; bonus bMaxHP,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5099,'Cat_Hat','Neko Mimi','Armor',20,300,2,true,true,182,100,true,'bonus bLuk,2; bonus bMdef,10; bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5100,'Sales_Signboard','Sales Banner','Armor',20,800,true,75,true,183,'bonus bStr,1; bonus bAgi,1; bonus bLuk,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`view`) VALUES (5101,'Takius_Blindfold','Takius\'s Blindfold','Armor',20,100,1,true,184); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`view`) VALUES (5102,'Round_Eyes','Blank Eyes','Armor',20,100,true,185); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5103,'Sunflower_Hairpin','Sunflower Hairpin','Armor',20,600,2,true,false,false,true,30,186,'bonus bAgi,2; bonus bCritical,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`view`,`script`) VALUES (5104,'Dark_Blindfold','Dark Blinder','Armor',20,100,true,false,false,true,187,'bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Stun,200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5105,'Hat_Of_Cake_','2nd Anniversary Hat','Armor',20,1000,2,true,24,true,109,'bonus bDex,1; bonus bMaxSP,80; bonus3 bAddMonsterDropItem,7864,7,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5106,'Cone_Hat_INA','2nd Anniversary Hat','Armor',20,300,10,true,1,144,100,true,true,true,true,true,true,'bonus bLuk,1; bonus bMatkRate,3; bonus bFlee,3; bonus bHit,3; bonus bFlee2,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`) VALUES (5107,'Well_Baked_Toast','Crunch Toast','Armor',20,50,true,188); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`) VALUES (5108,'Detective_Hat','Renown Detective\'s Cap','Armor',20,350,6,1,true,true,189); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (5109,'Red_Bonnet','Red Bonnet','Armor',20,400,4,true,true,190); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`) VALUES (5110,'Baby_Pacifier','Baby Pacifier','Armor',20,50,true,191); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5111,'Galapago_Cap','Galapago Cap','Armor',20,500,4,true,55,true,192,'bonus2 bAddMonsterDropItem,605,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5112,'Super_Novice_Hat','Super Novice Hat','Armor',8500,400,8,true,true,true,40,true,193,'bonus bAllStats,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`) VALUES (5113,'Angry_Mouth','Angry Snarl','Armor',20,50,true,194); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (5114,'Fedora','Bucket Hat','Armor',6000,300,6,true,true,195); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5115,'Winter_Hat','Winter Hat','Armor',20,500,5,true,true,196,'bonus2 bResEff,Eff_Freeze,1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5116,'Banana_Hat','Banana Hat','Armor',20,200,3,true,true,197,'bonus3 bAutoSpell,"SM_PROVOKE",3,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5117,'Mistic_Rose','Mystic Rose','Armor',20,100,true,true,198,'bonus2 bSubRace,RC_Plant,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (5118,'Ear_Of_Puppy','Puppy Headband','Armor',20,100,3,true,true,199); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5119,'Super_Novice_Hat_','Super Novice Hat','Armor',8500,400,8,1,true,true,true,40,true,193,'bonus bAllStats,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`) VALUES (5120,'Fedora_','Bucket Hat','Armor',6000,300,6,1,true,true,195); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5121,'Zherlthsh_Mask','Zealotus Mask','Armor',20,400,3,true,false,false,true,true,70,true,200,'bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5122,'Magni_Cap','Magni\'s Cap','Armor',30000,1000,9,true,false,false,true,65,true,250,'bonus bStr,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5123,'Ulle_Cap','Ulle\'s Cap','Armor',30000,500,6,1,true,false,false,true,65,true,254,'bonus bDex,2; bonus bAgi,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5124,'Fricca_Circlet','Fricca\'s Circlet','Armor',30000,300,6,true,false,false,true,65,true,251,'bonus bMdef,10; bonus bInt,2; bonus bMaxSP,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5125,'Kiss_Of_Angel','Angel\'s Kiss','Armor',10000,300,6,1,true,true,true,50,true,255,'bonus bSPrecovRate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5126,'Morpheus\'s_Hood','Morpheus\'s Hood','Armor',30000,200,3,true,false,false,true,33,true,256,'bonus bInt,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5127,'Morrigane\'s_Helm','Morrigane\'s Helm','Armor',30000,500,8,true,false,false,true,61,true,257,'bonus bLuk,2; bonus bBaseAtk,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5128,'Goibne\'s_Helmet','Goibne\'s Helm','Armor',30000,500,10,true,false,false,true,54,true,258,'bonus bVit,3; bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5129,'Bird_Nest','Bird Nest','Armor',20,400,2,true,55,201,'bonus bAgi,2; bonus2 bSubRace,RC_Brute,10; bonus2 bSubRace,RC_Player_Doram,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5130,'Lion_Mask','Lion Mask','Armor',20,700,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,75,true,202,'bonus2 bAddEffWhenHit,Eff_Silence,500; bonus bMdef,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_crusader`,`job_knight`,`job_swordman`,`location_head_top`,`location_head_mid`,`location_head_low`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5131,'Close_Helmet','Close Helmet','Armor',20,1200,8,true,true,true,true,true,true,75,true,203,'bonus bVit,3; bonus bMaxHPrate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5132,'Angeling_Hat','Angeling Hat','Armor',20,700,5,true,204,100,true,true,true,true,true,true,true,'bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_acolyte`,`job_monk`,`job_priest`,`location_head_top`,`view`,`script`) VALUES (5133,'Sheep_Hat','Sheep Hat','Armor',20,150,3,true,true,true,true,205,'bonus bShortWeaponDamageReturn,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (5134,'Pumpkin_Hat','Pumpkin-Head','Armor',20,200,3,true,true,206); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (5135,'Cyclops_Visor','Cyclop\'s Eye','Armor',200,true,false,false,true,75,207,'bonus bMaxSP,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5136,'Santa\'s_Hat_','Antonio\'s Santa Hat','Armor',20,100,4,true,true,20,'bonus3 bAutoSpellWhenHit,"PR_GLORIA",5,50; bonus3 bAutoSpellWhenHit,"AL_BLESSING",10,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5137,'Alice_Doll','Alice Doll','Armor',20,500,1,1,true,false,false,true,30,208,'bonus bStr,1; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus2 bAddEff2,Eff_Sleep,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5138,'Magic_Eyes','Magic Eyes','Armor',20,300,3,true,true,true,true,true,30,true,209,'bonus bMdef,5; bonus bVariableCastrate,-10; bonus bUseSPrate,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5139,'Hibiscus','Hibiscus','Armor',20,200,true,10,210,'bonus bDex,1; bonus bInt,1; bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5140,'Charming_Ribbon','Charming Ribbon','Armor',20,400,2,1,true,10,true,211,'bonus2 bSubRace,RC_Undead,5; bonus2 bSubRace,RC_Demon,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5141,'Marionette_Doll','Marionette Doll','Armor',20,400,1,1,true,false,false,true,30,true,212,'bonus bStr,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5142,'Crescent_Helm','Crescent Helm','Armor',20,3000,20,1,true,true,true,true,true,true,true,true,50,true,213,100,true,'bonus bVit,1; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`gender`,`location_head_top`,`location_head_mid`,`location_head_low`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5143,'Kabuki_Mask','Kabuki Mask','Armor',20,1000,5,1,true,false,false,'Male',true,true,true,30,true,214,100,true,'bonus2 bResEff,Eff_Silence,3000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5144,'Gambler_Hat','Gambler Hat','Armor',20,200,4,true,true,16,'bonus bLuk,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5145,'Carnival_Joker_Jester','Carnival Joker Jester','Armor',10,100,true,true,89,'bonus bAllStats,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5146,'Elephant_Hat','Elephant Hat','Armor',500,true,true,215,'bonus bVit,1; bonus2 bSubRace,RC_Brute,7; bonus2 bSubRace,RC_Player_Doram,7; skill "WZ_WATERBALL",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (5147,'Baseball_Cap','Baseball Cap','Armor',200,5,true,true,216,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5148,'Phrygian_Cap','Phrygian Cap','Armor',500,true,true,217,'bonus bInt,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5149,'Silver_Tiara','Silver Tiara','Armor',100,true,true,218,100,true,true,true,true,true,true,true,'bonus bInt,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`view`,`script`) VALUES (5150,'Joker_Jester_','Joker Jester','Armor',20,100,3,true,219,'bonus bSpeedRate,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`refineable`,`view`,`script`) VALUES (5151,'Headset_OST','Note Headphones','Armor',20,200,4,1,true,true,true,220,'bonus bMdef,3; bonus2 bResEff,Eff_Stun,1000; bonus2 bResEff,Eff_Freeze,1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5152,'Chinese_Crown','Chinese Crown','Armor',20,2000,2,true,true,1,true,221,'bonus2 bResEff,Eff_Stun,1000; bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5153,'Angeling_Hairpin','Angeling Hairpin','Armor',20,700,5,true,true,222,'bonus bFlee,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (5154,'Sunglasses_F','Father\'s Sunglasses','Armor',20,100,4,true,12,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5155,'Granpa_Beard_F','Father\'s White Moustache','Armor',20,100,true,25,100,true,true,true,true,true,true,true,'bonus bBaseAtk,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5156,'Flu_Mask_F','Father\'s Mask','Armor',20,100,true,8,100,true,true,true,true,true,true,true,'bonus bMatkRate,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_head_top`,`refineable`,`view`) VALUES (5157,'Viking_Helm_','Orc Helm','Armor',20,500,9,1,true,true,true,true,true,true,true,true,true,true,true,86); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5158,'Holy_Bonnet_','Monk Hat','Armor',30000,100,10,1,true,true,true,true,true,35,'bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5159,'Golden_Gear_','Golden Gear','Armor',20,900,9,1,true,false,false,true,40,true,30,'bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5160,'Magestic_Goat_','Majestic Goat','Armor',20,800,9,1,true,true,true,true,true,true,true,true,true,true,41,'bonus bStr,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_rogue`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`job_thief`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5161,'Sharp_Gear_','Spiky Band','Armor',20,1000,12,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,50,true,43); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5162,'Bone_Helm_','Bone Helm','Armor',20,800,15,1,true,true,true,true,true,true,true,70,true,103,'bonus2 bSubEle,Ele_Dark,-15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5163,'Corsair_','Corsair','Armor',20,500,10,1,true,false,false,true,true,105,'bonus bVit,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`gender`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5164,'Tiara_','Tiara','Armor',20,400,7,1,true,false,false,'Female',true,45,true,19,'bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`gender`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5165,'Crown_','Crown','Armor',20,400,7,1,true,false,false,'Male',true,45,true,45,'bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_head_top`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (5166,'Spinx_Helm_','Sphinx Hat','Armor',20,3000,5,1,true,true,true,true,true,65,137,'bonus bStr,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`location_head_low`,`view`,`script`) VALUES (5167,'Munak_Turban_','Munak Hat','Armor',20,300,5,1,true,true,true,51,'bonus2 bSubRace,RC_Undead,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`location_head_low`,`view`) VALUES (5168,'Bongun_Hat_','Bongun Hat','Armor',20,300,5,1,true,true,true,139); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5169,'Bride_Mask','Bride Mask','Armor',30000,500,4,1,true,true,40,true,223,'if(BaseClass==Job_Taekwon){ bonus bLuk,2; bonus bCritical,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5170,'Feather_Beret','Feather Beret','Armor',30000,600,1,true,false,false,true,true,224,'bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5171,'Valkyrie_Helm','Valkyrie Helm','Armor',100000,1000,10,1,true,false,false,true,true,true,true,225,'bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`view`,`script`) VALUES (5172,'Beret','Beret','Armor',30000,700,true,226,'bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5173,'Satto_Hat','Magistrate Hat','Armor',30000,400,6,1,true,60,true,227,'if(BaseClass==Job_Taekwon){ bonus bAgi,1; bonus bHPrecovRate,3; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5174,'Ayam','Ayam','Armor',30000,400,6,1,true,60,true,228,'if(BaseClass==Job_Taekwon){ bonus bInt,1; bonus bSPrecovRate,3; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`view`,`script`) VALUES (5175,'Censor_Bar','Censor Bar','Armor',30000,100,true,229,'bonus2 bResEff,Eff_Curse,500; bonus bMdef,1; bonus bHit,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (5176,'Hahoe_Mask','Hahoe Mask','Armor',30000,100,2,true,true,30,230,'if(BaseClass==Job_Taekwon){ bonus bLuk,1; bonus bFlee2,2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5177,'Guardian_Lion_Mask','Mythical Lion Mask','Armor',30000,500,5,1,true,true,40,true,231,'if(BaseClass==Job_Taekwon){ bonus bDex,2; bonus bBaseAtk,2*getrefine(); bonus3 bAddEff,Eff_Stun,1000,ATF_SHORT; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5178,'Candle_','Candle','Armor',20,150,true,true,113,'bonus bAllStats,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5179,'Gold_Tiara','Golden Tiara','Armor',100,true,true,232,100,true,true,true,true,true,true,true,'bonus bInt,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5180,'Phrygian_Cap_','France Holiday Hat','Armor',20,100,2,true,true,217,'bonus bVit,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5181,'Helm_Of_Darkness','Helm of Darkness','Armor',20,500,3,1,true,true,true,true,true,true,true,true,true,true,true,50,true,233,'bonus bStr,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5182,'Puppy_Hat','Puppy Hat','Armor',20,500,4,true,30,234,'bonus bAgi,1; bonus3 bAutoSpell,"PR_GLORIA",1,10+20*(readparam(bAgi)>=77);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5183,'Bird_Nest_Hat','Bird Nest Hat','Armor',20,500,4,true,10,true,235,'bonus bDex,1; bonus bAgi,1; bonus2 bResEff,Eff_Stun,1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5184,'Captain_Hat','Captain\'s Hat','Armor',20,500,8,true,false,false,true,30,true,236,'bonus2 bSubEle,Ele_Water,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5185,'Laurel_Wreath','Laurel Wreath','Armor',20,100,2,1,true,10,true,237,'bonus bLuk,3; bonus2 bResEff,Eff_Blind,500; bonus2 bResEff,Eff_Curse,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5186,'Geographer_Band','Geographer Band','Armor',20,500,2,true,30,238,'bonus bInt,1; bonus3 bAutoSpellWhenHit,"AL_HEAL",1,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5187,'Twin_Ribbon','Twin Ribbon','Armor',20,200,6,1,true,30,true,239,100,true,'bonus bMaxSP,30; bonus bMdef,3; bonus3 bAutoSpellWhenHit,"NPC_STONESKIN",6,10; bonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,120,BF_MAGIC,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5188,'Minstrel_Hat','Wandering Minstrel Hat','Armor',20,500,2,true,50,true,240,'bonus bInt,1; bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5189,'Fallen_Leaves','Autumn Leaves','Armor',20,100,true,true,241,'bonus bMaxHP,40; bonus bMaxSP,40;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`) VALUES (5190,'Baseball_Cap_','Independence Memorial Hat','Armor',20,20,3,1,true,true,216); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`gender`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5191,'Ribbon_Black','Black Ribbon','Armor',800,100,1,1,'Female',true,true,242,'bonus bInt,1; bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`gender`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5192,'Ribbon_Yellow','Yellow Ribbon','Armor',800,100,1,1,'Female',true,true,243,'bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`gender`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5193,'Ribbon_Green','Green Ribbon','Armor',800,100,1,1,'Female',true,true,244,'bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`gender`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5194,'Ribbon_Pink','Pink Ribbon','Armor',800,100,1,1,'Female',true,true,245,'bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`gender`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5195,'Ribbon_Red','Red Ribbon','Armor',800,100,1,1,'Female',true,true,246,'bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`gender`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5196,'Ribbon_Orange','Orange Ribbon','Armor',800,100,1,1,'Female',true,true,247,'bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`gender`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5197,'Ribbon_White','White Ribbon','Armor',800,100,1,1,'Female',true,true,248,'bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5198,'Drooping_Bunny','Drooping Bunny','Armor',10,100,1,true,true,249,'bonus bDex,1; bonus bFlee,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (5199,'Baseball_Cap_I','Baseball Cap','Armor',200,3,true,true,216); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`refineable`,`view`) VALUES (5200,'Coppola','Coppola','Armor',10,300,true,true,252); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5201,'Party_Hat_B','Party Hat','Armor',20,300,4,true,true,144,'bonus bAllStats,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5202,'Pumpkin_Hat_','Fantastic Pumpkin-Head','Armor',20,200,3,true,true,206,'bonus2 bSubRace,RC_Demon,5; bonus3 bAddMonsterDropItem,529,RC_DemiHuman,1500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`location_head_low`,`view`,`script`) VALUES (5203,'Tongue_Mask','Smiling Mask','Armor',20,200,2,true,true,253,'bonus bSpeedRate,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`,`script`) VALUES (5204,'Event_Pierrot_Nose','Rudolph\'s Nose','Armor',20,100,true,49,'bonus2 bResEff,Eff_Blind,3000; bonus2 bAddMonsterDropItem,12130,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`refineable`,`view`,`script`) VALUES (5205,'Wreath','Emperor\'s Laurel Crown','Armor',20,1000,3,true,true,true,261,'bonus bAllStats,1; bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_low`,`view`,`script`) VALUES (5206,'Romantic_White_Flower','Romantic White Flower','Armor',20,100,true,false,false,true,259,'bonus2 bSubRace,RC_Plant,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`view`,`script`) VALUES (5207,'Gold_Spirit_Chain','Angel Blessing','Armor',20,100,true,260,'bonus bLuk,1; bonus2 bSubEle,Ele_Holy,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5208,'Rideword_Hat','Rideword Hat','Armor',20,300,3,1,true,false,false,true,40,true,262,'bonus2 bHPDrainRate,50,8; bonus2 bSPDrainRate,10,4; bonus2 bHPLossRate,10,5000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`) VALUES (5209,'Yellow_Baseball_Cap','Love Dad Cap','Armor',20,300,2,true,false,false,true,true,263); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5210,'Flying_Angel','Flapping Angel Wing','Armor',20,300,3,true,10,true,264,100,true,'bonus bVariableCastrate,-3; bonus bAspdRate,3; bonus bInt,1; bonus bAgi,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5211,'Dress_Hat','Dress Hat','Armor',200,3,1,true,20,true,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; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`,`unequip_script`) VALUES (5212,'Satellite_Hairband','Satellite Hairband','Armor',1000,6,1,true,30,true,266,'bonus bMaxHP,50; bonus bMaxSP,10; skill "AL_RUWACH",1;','sc_end SC_RUWACH;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5213,'Black_Bunny_Band','Sheila Hairnet','Armor',200,4,true,1,true,267,'bonus bAgi,2; bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5214,'Moonlight_Flower_Hat','Moonlight Flower Hat','Armor',200,3,true,true,1,true,268,100,true,'bonus bDex,2; bonus3 bAutoSpell,"AL_INCAGI",1,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5215,'Angelic_Chain_','Evolved Angel Wing','Armor',20,100,4,true,false,false,true,true,38,'bonus bMdef,3; bonus bDex,1; bonus bInt,1; bonus2 bSubRace,RC_Demon,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5216,'Satanic_Chain_','Evolved Evil Wing','Armor',20,100,6,true,false,false,true,true,39,'bonus bStr,1; bonus bAgi,1; bonus bFlee,3; bonus2 bSubRace,RC_Angel,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5217,'Magestic_Goat_TW','Evolved Majestic Goat','Armor',20,800,10,true,true,true,true,true,true,true,true,true,true,41,'bonus bStr,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5218,'Bunny_Band_','Evolved Bunny Band','Armor',20,100,3,true,true,15,'bonus bInt,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5219,'Drooping_Kitty_','Evolved Drooping Cat','Armor',250000,500,3,true,false,false,true,true,142,'bonus bMdef,18; bonus bFlee,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_low`,`view`,`script`) VALUES (5220,'Smoking_Pipe_','Evolved Pipe','Armor',20,100,true,false,false,true,55,'bonus bVit,1; bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`gender`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (5221,'Pair_Of_Red_Ribbon_','Evolved Pair of Red Ribbon','Armor',20,100,2,'Female',true,45,169,'bonus bFlee,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5222,'Fish_On_Head_','Evolved Blue Fish','Armor',20,500,4,true,50,true,149,'bonus bAgi,1; bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5223,'Big_Golden_Bell_','Evolved Big Golden Bell','Armor',20,200,2,true,false,false,true,true,35,true,175,'bonus bAgi,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5224,'Orc_Hero_Helm_TW','Evolved Orc Hero Helm','Armor',500000,900,5,true,false,false,true,true,55,true,178,'bonus bStr,2; bonus bVit,1; bonus bMaxHPrate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5225,'Marcher_Hat','Parade Hat','Armor',20,200,4,1,true,10,true,269,100,true,'bonus bMdef,2; bonus4 bAutoSpellWhenHit,"AL_ANGELUS",5,30,0; bonus4 bAutoSpellWhenHit,"HP_ASSUMPTIO",1,1,0; bonus2 bResEff,Eff_Stun,1000; if(BaseClass==Job_Acolyte) bonus4 bAutoSpellOnSkill,"AL_HEAL","PR_LEXAETERNA",1,1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5226,'Mini_Propeller_','Mini Propeller','Armor',20,200,4,true,true,270,'bonus bAgi,2; bonus bDex,1; bonus bFlee,10; bonus bVariableCastrate,-getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5227,'Red_Deviruchi_Cap','Red Deviruchi Hat','Armor',20,800,4,true,false,false,true,64,true,271,'bonus bStr,1; bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5228,'White_Deviruchi_Cap','Gray Deviruchi Hat','Armor',20,800,4,true,false,false,true,64,true,272,'bonus bStr,1; bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5229,'Gray_Deviruchi_Cap','Brown Deviruchi Hat','Armor',20,800,4,true,false,false,true,64,true,273,'bonus bStr,1; bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5230,'White_Drooping_Kitty','Gray Drooping Cat','Armor',250000,500,3,true,false,false,true,true,274,'bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5231,'Gray_Drooping_Kitty','Brown Drooping Cat','Armor',250000,500,3,true,false,false,true,true,275,'bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5232,'Pink_Drooping_Kitty','Pink Drooping Cat','Armor',250000,500,3,true,false,false,true,true,276,'bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5233,'Blue_Drooping_Kitty','Blue Drooping Cat','Armor',250000,500,3,true,false,false,true,true,277,'bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5234,'Yellow_Drooping_Kitty','Yellow Drooping Cat','Armor',250000,500,3,true,false,false,true,true,278,'bonus2 bResEff,Eff_Curse,3000; bonus bMdef,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5235,'Gray_Fur_Hat','Brown Beanie','Armor',20,350,3,true,true,279,'bonus bLuk,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5236,'Blue_Fur_Hat','Blue Beanie','Armor',20,350,3,true,true,280,'bonus bLuk,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5237,'Pink_Fur_Hat','Pink Beanie','Armor',20,350,3,true,true,281,'bonus bLuk,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5238,'Red_Wizardry_Hat','Red Mage Hat','Armor',20,300,2,true,true,true,true,true,true,282,'bonus bInt,2; bonus bMaxSP,150;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5239,'White_Wizardry_Hat','Gray Mage Hat','Armor',20,300,2,true,true,true,true,true,true,283,'bonus bInt,2; bonus bMaxSP,150;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5240,'Gray_Wizardry_Hat','Brown Mage Hat','Armor',20,300,2,true,true,true,true,true,true,284,'bonus bInt,2; bonus bMaxSP,150;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5241,'Blue_Wizardry_Hat','Blue Mage Hat','Armor',20,300,2,true,true,true,true,true,true,285,'bonus bInt,2; bonus bMaxSP,150;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5242,'Yellow_Wizardry_Hat','Yellow Mage Hat','Armor',20,300,2,true,true,true,true,true,true,286,'bonus bInt,2; bonus bMaxSP,150;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`refineable`,`view`,`script`) VALUES (5243,'Chullos','Shafka','Armor',20,800,2,1,true,true,true,287,'bonus2 bResEff,Eff_Freeze,1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`view`,`script`) VALUES (5244,'Elven_Blindfold','Elven Blindfold','Armor',20,200,1,true,288,'bonus2 bResEff,Eff_Blind,10000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`view`,`script`) VALUES (5245,'Elven_Sunglasses','Elven Sunglasses','Armor',20,200,1,true,289,'bonus2 bResEff,Eff_Blind,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5246,'Angelic_Helm','Angelic Helm','Armor',20,700,7,true,true,290,'bonus bAgi,1; bonus bLuk,1; bonus bMdef,3; bonus2 bSubRace,RC_Demon,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5247,'Satanic_Helm','Satanic Helm','Armor',20,700,8,true,true,291,'bonus bAgi,1; bonus bLuk,1; bonus bMdef,3; bonus2 bSubRace,RC_Demon,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`view`,`script`) VALUES (5248,'Robotic_Blindfold','Robotic Blindfold','Armor',20,200,1,true,292,'bonus2 bResEff,Eff_Blind,10000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`view`,`script`) VALUES (5249,'Human_Blindfold','Human Blindfold','Armor',20,200,1,true,293,'bonus2 bResEff,Eff_Blind,10000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`view`) VALUES (5250,'Robotic_Ears','Robotic Ears','Armor',20,10,true,294); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`view`) VALUES (5251,'Round_Ears','Round Ears','Armor',20,10,true,295); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5252,'Drooping_Nine_Tail','Drooping Ninetail','Armor',20,300,1,true,20,true,296,'bonus bAgi,1; bonus bDex,1; bonus3 bAutoSpellWhenHit,"PR_GLORIA",1,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5253,'Lif_Doll_Hat','Lif Doll Hat','Armor',20,200,2,1,true,20,true,297,'bonus bInt,1; .@r = getrefine(); bonus bMdef,.@r; bonus bDef,.@r*-1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5254,'Deviling_Hat','Deviling Hat','Armor',20,500,6,1,true,20,true,298,100,true,true,true,true,true,true,true,'bonus bBaseAtk,2; bonus bMatk,2; if(getrefine()>=7) bonus2 bExpAddRace,RC_All,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5255,'Triple_Poring_Hat','Triple Poring Hat','Armor',20,600,6,true,20,299,'bonus bLuk,3; bonus3 bAutoSpell,"BS_GREED",1,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5256,'Valkyrie_Feather_Band','Valkyrie Feather Band','Armor',20,100,2,1,true,20,true,300,'bonus bInt,1; bonus3 bAutoSpellWhenHit,"AL_HEAL",1,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5257,'Soulless_Wing','Soul Ring','Armor',20,300,3,true,false,false,true,20,true,301,'bonus bMdef,2; bonus3 bAutoSpellWhenHit,"HP_ASSUMPTIO",1,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5258,'Afro_Wig','Afro Wig','Armor',20,100,1,true,true,10,true,302,'bonus3 bAutoSpellWhenHit,"NV_FIRSTAID",1,300; bonus2 bSubEle,Ele_Neutral,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5259,'Elephant_Hat_','Elephant Hat','Armor',20,500,6,true,true,215,'bonus bVit,1; bonus3 bAutoSpell,"WZ_WATERBALL",3,10; skill "AL_HOLYWATER",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5260,'Cookie_Hat','Cookie Hat','Armor',20,500,2,true,true,217,'bonus bAgi,1; bonus bFlee2,5; bonus bCritAtkRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5261,'Silver_Tiara_','Silver Tiara','Armor',20,500,5,true,true,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);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5262,'Gold_Tiara_','Golden Tiara','Armor',20,500,5,true,true,232,'bonus bStr,2; bonus bUnbreakableHelm; if((readparam(bDex)<56)&&(BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Thief)) bonus bDex,JobLevel/7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`location_head_mid`,`location_head_low`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5263,'Ati_Atihan_Hat','Pagdayaw','Armor',20,100,1,true,false,false,true,true,true,20,true,303,'bonus2 bSubEle,Ele_Water,1; bonus2 bSubEle,Ele_Fire,1; bonus2 bSubEle,Ele_Wind,1; bonus2 bAddEff,Eff_Curse,300;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`,`equip_script`) VALUES (5264,'Aussie_Flag_Hat','Australian Flag Hat','Armor',20,500,4,true,true,304,'bonus bAllStats,2;','specialeffect2 EF_GHOST; specialeffect2 EF_BAT; specialeffect2 EF_BAT2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5265,'Apple_Of_Archer_C','Apple of Archer','Armor',1,12,true,false,false,true,1,72,100,true,true,true,true,true,true,true,true,'bonus bDex,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5266,'Bunny_Band_C','Bunny Band','Armor',1,13,true,1,15,100,true,true,true,true,true,true,true,true,'bonus bMdef,5; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5267,'Sahkkat_C','Sakkat','Armor',1,10,true,67,100,true,true,true,true,true,true,true,true,'bonus bAgi,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5268,'Lord_Circlet_C','Grand Circlet','Armor',1,14,true,false,false,true,1,93,100,true,true,true,true,true,true,true,true,'bonus bStr,3; bonus bInt,3; bonus bLuk,3; bonus bMdef,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5269,'Flying_Angel_','Flapping Angel Wing','Armor',20,300,3,true,10,true,264,100,true,true,true,true,true,true,true,true,'bonus bInt,1; bonus bAgi,1; bonus bAspdRate,3; bonus bVariableCastrate,-3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5270,'Fallen_Leaves_','Autumn Leaves','Armor',20,100,2,1,true,true,241,'bonus bFlee2,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`refineable`,`view`,`script`) VALUES (5271,'Chinese_Crown_','Phoenix Crown','Armor',20,500,4,1,true,true,true,221,'bonus bMdef,3; bonus2 bSubClass,Class_Boss,getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`location_head_low`,`view`,`script`) VALUES (5272,'Tongue_Mask_','Tongue Mask','Armor',20,100,2,true,true,253,'bonus3 bAutoSpell,"SM_PROVOKE",5,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`refineable`,`view`,`script`,`unequip_script`) VALUES (5273,'Happy_Wig','Happy Wig','Armor',20,100,1,true,true,true,305,'bonus bSpeedRate,25; bonus bDef,4; skill "TF_HIDING",1;','sc_end SC_HIDING;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`refineable`,`view`,`script`,`unequip_script`) VALUES (5274,'Shiny_Wig','Shiny Wig','Armor',20,100,1,true,true,true,306,'bonus bSpeedRate,25; bonus bDef,4; skill "TF_HIDING",1;','sc_end SC_HIDING;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`refineable`,`view`,`script`,`unequip_script`) VALUES (5275,'Marvelous_Wig','Marvelous Wig','Armor',20,100,1,true,true,true,307,'bonus bSpeedRate,25; bonus bDef,4; skill "TF_HIDING",1;','sc_end SC_HIDING;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`refineable`,`view`,`script`,`unequip_script`) VALUES (5276,'Fantastic_Wig','Fantastic Wig','Armor',20,100,1,true,true,true,308,'bonus bSpeedRate,25; bonus bDef,4; skill "TF_HIDING",1;','sc_end SC_HIDING;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5277,'Yellow_Bandana','Yellow Bandana','Armor',20,100,1,true,false,false,true,20,true,309,'bonus bLuk,2; bonus bVit,2; bonus bLongAtkDef,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5278,'Yellow_Ribbon','Yellow Ribbon','Armor',20,100,2,true,false,false,true,20,true,310,'bonus bLuk,2; bonus bVit,2; bonus bLongAtkDef,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5279,'Drooping_Kitty_C','Refined Drooping Cat','Armor',2,3,true,false,false,true,142,100,true,true,true,true,true,true,true,true,'bonus bMdef,15; bonus2 bResEff,Eff_Curse,3000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5280,'Magestic_Goat_C','Baphomet Horns','Armor',2,10,true,41,100,true,true,true,true,true,true,true,true,'bonus bStr,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5281,'Deviruchi_Cap_C','Refined Deviruchi Hat','Armor',2,4,true,false,false,true,123,100,true,true,true,true,true,true,true,true,'bonus bStr,1; bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`) VALUES (5282,'euRO_Baseball_Cap','Europe Baseball Cap','Armor',200,5,1,true,true,216); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5283,'Chick_Hat','Chick Hat','Armor',20,100,2,true,10,311,100,true,'bonus bLuk,2; bonus bMaxHP,50; bonus bMaxSP,50; skill "TF_DOUBLE",2; bonus bDoubleRate,10; bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5284,'Water_Lily_Crown','Water Lily Crown','Armor',20,200,1,true,30,312,'bonus bDex,1; bonus bAgi,1; bonus bMdef,3; bonus bHPrecovRate,5; bonus bSPrecovRate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5285,'Vane_Hairpin','Vane Hairpin','Armor',20,300,4,1,true,30,313,'bonus bAgi,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5286,'Pecopeco_Hairband','Pecopeco Hairband','Armor',20,6,true,70,314,100,true,true,true,true,true,true,true,true,'bonus bSpeedRate,25; bonus bAspdRate,5; bonus bVariableCastrate,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5287,'Vacation_Hat','Vacation Hat','Armor',20,200,2,1,true,30,315,'bonus bVit,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_mid`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5288,'Red_Glasses','Red Glasses','Armor',20,1,true,316,100,true,true,true,true,true,true,true,true,'bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5289,'Vanilmirth_Hat','Vanilmirth Hat','Armor',20,100,true,30,317,'bonus bUnbreakableHelm; bonus3 bAutoSpell,"MG_FIREBOLT",1,50; bonus3 bAutoSpell,"MG_COLDBOLT",1,50; bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",1,50; bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5290,'Drooping_Bunny_','Drooping Bunny','Armor',20,100,3,true,true,249,'bonus bDex,1; bonus bFlee,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5291,'Kettle_Hat','Kettle Hat','Armor',20,600,8,true,30,true,318,'bonus4 bAutoSpell,"SA_DELUGE",2,10,0; bonus3 bAutoSpell,"WZ_WATERBALL",3,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5292,'Dragon_Skull','Dragon Skull','Armor',20,800,10,true,50,true,319,'bonus2 bSubRace,RC_Dragon,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5293,'Ramen_Hat','Ramen Hat','Armor',20,3,true,320,100,true,true,true,true,true,true,true,true,'bonus bDex,4; bonus4 bAutoSpellWhenHit,"AL_DECAGI",1,30,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_head_top`,`location_head_mid`,`location_head_low`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5294,'Whisper_Mask','Whisper Mask','Armor',20,true,true,true,321,100,true,true,true,true,true,true,true,true,'bonus bAgi,3; bonus2 bSubEle,Ele_Ghost,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5295,'Golden_Bandana','Golden Bandana','Armor',20,2400,4,true,true,138,100,true,true,true,true,true,true,'bonus bMdef,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5296,'Drooping_Nine_Tail_','Drooping Nine Tail','Armor',20,300,2,1,true,true,296,'bonus bAgi,1; bonus bCritical,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5297,'Soulless_Wing_','Soul Wing','Armor',20,300,3,1,true,true,301,'bonus bAllStats,1; bonus2 bSPRegenRate,2,10000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`refineable`,`view`,`script`) VALUES (5298,'Marvelous_Wig_','Dokebi\'s Wig','Armor',20,100,1,1,true,true,true,307,'bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubEle,Ele_Fire,-5; bonus2 bSubEle,Ele_Water,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (5299,'Ati_Atihan_Hat_','Pagdayaw','Armor',20,100,1,1,true,true,true,1,303,'bonus3 bAutoSpell,"DC_SCREAM",1,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5300,'Bullock_Helm','Bullock Helm','Armor',20,800,4,true,false,false,true,45,true,322,'bonus bMaxHP,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_top`,`refineable`,`view`) VALUES (5301,'Russian_Ribbon','Victory Hairband','Armor',100,true,true,323); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5302,'Lotus_Flower_Hat','Flower Lily','Armor',100,2,true,30,true,324); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5303,'Flower_Coronet','Flower Crown','Armor',20,300,2,true,true,325,'bonus bMdef,3; bonus bMaxSP,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`location_head_low`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5304,'Cap_Of_Blindness','Cap Of Blindness','Armor',20,800,4,1,true,true,true,30,true,326,'bonus2 bResEff,Eff_Curse,700; bonus2 bResEff,Eff_Blind,10000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`,`script`) VALUES (5305,'Pirate_Dagger','Pirate Dagger','Armor',20,100,true,327,'bonus bBaseAtk,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5306,'Freyja_Crown','Freya\'s Crown','Armor',500,20,true,false,false,true,328,100,true,true,true,true,true,true,true,true,'bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5307,'Carmen_Miranda\'s_Hat','Carmen Miranda\'s Hat','Armor',20,400,10,1,true,true,329,'bonus bMdef,3; .@r = getrefine(); bonus2 bSubEle,Ele_Fire,(.@r>=7?10:5); if(.@r>=7){ bonus bBaseAtk,15; bonus bMatk,15; } bonus3 bAddMonsterDropItem,512,RC_All,10; bonus3 bAddMonsterDropItem,513,RC_All,10; bonus3 bAddMonsterDropItem,514,RC_All,10; bonus3 bAddMonsterDropItem,578,RC_All,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5308,'Brazilian_Flag_Hat','Brazil National Flag Hat','Armor',20,300,5,1,true,true,330,100,true,true,true,true,true,true,true,'bonus bSpeedAddRate,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`location_head_low`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5309,'Mahican','Wool Mask','Armor',20,200,1,true,true,true,true,331,100,true,true,true,true,true,true,true,'skill "RG_GRAFFITI",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`,`unequip_script`) VALUES (5310,'Bulb_Hairband','Shining Electric Bulb Hairband','Armor',20,100,5,1,true,true,332,'bonus2 bSubEle,Ele_Dark,10; skill "MG_SIGHT",1;','sc_end SC_SIGHT;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5311,'Large_Hibiscus','Large Hisbiscus','Armor',20,100,2,1,true,true,333,'bonus bMdef,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5312,'Ayothaya_Hat','Ayothaya King\'s Hat','Armor',20,100,5,1,true,true,true,true,true,true,true,true,true,true,true,334,100,true,'bonus bStr,1; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5313,'Diadem','Diadem','Armor',20,100,3,1,true,true,true,335,100,true,'bonus bInt,1; bonus bMatkRate,3; bonus bVariableCastrate,-3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5314,'Hockey_Mask','Hockey Mask','Armor',20,100,1,true,true,50,336,100,true,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5315,'Observer','Observer','Armor',20,100,2,true,35,337,100,true,true,true,true,true,true,true,true,'skill "WZ_ESTIMATION",1; /*Gold PC Room: bonus bAllStats,1;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5316,'Umbrella_Hat','Umbrella Hat','Armor',20,100,2,true,50,true,338,'bonus2 bSubEle,Ele_Water,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5317,'Fisherman_Hat','Fisherman\'s Hat','Armor',20,100,4,true,50,true,339,'bonus3 bAutoSpell,"WZ_WATERBALL",3,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5318,'Poring_Party_Hat','Poring Party Hat','Armor',20,2,true,true,340,100,true,true,true,true,true,true,'bonus bFlee,6;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5319,'Hellomother_Hat','Hello Mother Hat','Armor',20,200,3,1,true,false,false,true,1,true,341,100,true,'bonus bHPrecovRate,150; bonus bMaxHP,80+(80*getrefine());'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5320,'Champion_Wreath','Champion Wreath','Armor',20,500,8,true,false,false,true,true,261,100,true,true,true,true,true,true,true,'bonus bAllStats,2; bonus4 bAutoSpellWhenHit,"AL_HEAL",1,50,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5321,'Indonesian_Bandana','Bandana Merah Putih','Armor',20,500,4,true,true,342,'bonus2 bAddMonsterDropItem,518,300;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5322,'Scarf','Kerchief','Armor',20,100,4,true,24,true,343,100,true,true,true,true,true,true,true,'bonus bMdef,2; bonus bFlee,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5323,'Misstrance_Crown','Misstrance Crown','Armor',20,14,true,165,100,true,true,true,true,true,true,true,'bonus bAllStats,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5324,'Little_Angel_Doll','Little Angel Doll','Armor',20,300,4,true,10,true,344,100,true,'bonus bDex,3; bonus4 bAutoSpellWhenHit,"CR_GRANDCROSS",3,30,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5325,'Robo_Eye','Robo Eye','Armor',20,200,2,true,10,345,100,true,'bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_mid`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5326,'Masquerade_C','Masquerade C','Armor',1,1,true,78,100,true,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,7; bonus2 bAddRace,RC_Player_Human,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`location_head_mid`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5327,'Orc_Hero_Helm_C','Refined Helmet of Orc Hero','Armor',1,10,true,false,false,true,true,178,100,true,true,true,true,true,true,true,true,'bonus bStr,5; bonus bVit,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_mid`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5328,'Evil_Wing_Ears_C','Evil Wing Ears C','Armor',1,4,true,152,100,true,true,true,true,true,true,true,true,'bonus bStr,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_mid`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5329,'Dark_Blindfold_C','Dark Blindfold C','Armor',1,1,true,187,100,true,true,true,true,true,true,true,true,'bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Stun,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5330,'kRO_Drooping_Kitty_C','kRO Drooping Kitty C','Armor',1,9,true,false,false,true,142,100,true,true,true,true,true,true,true,true,'bonus bMdef,15; bonus2 bResEff,Eff_Curse,4000; bonus2 bResEff,Eff_Stun,1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5331,'Corsair_C','Corsair C','Armor',1,14,true,false,false,true,105,100,true,true,true,true,true,true,true,true,'bonus bVit,3; bonus bInt,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_mid`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (5332,'Loki_Mask','Loki Mask','Armor',200,2,true,true,20,346,'bonus bFlee2,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5333,'Radio_Antenna','Radio Antenna','Armor',1500,2,true,50,true,347,'bonus bMdef,5; bonus bCritical,5; bonus bFlee,5; skill "MG_LIGHTNINGBOLT",1; bonus4 bAutoSpellWhenHit,"MG_THUNDERSTORM",5,30,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5334,'Angeling_Wanna_Fly','Flapping Angeling','Armor',700,5,1,true,1,true,348,'bonus bLuk,2; bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`view`,`script`) VALUES (5335,'Jumping_Poring','Jumping Poring','Armor',300,3,true,349,'bonus bLuk,1; bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (5336,'Guildsman_Recruiter','Guildsman Recruiter Hat','Armor',4,true,10,true,350,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (5337,'Party_Recruiter_Hat','Party Recruiter Hat','Armor',4,true,10,true,351,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (5338,'Bf_Recruiter_Hat','BF Recruiter Hat','Armor',4,true,10,true,352,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (5339,'Friend_Recruiter_Hat','Friend Recruiter Hat','Armor',4,true,10,true,353,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5340,'Deprotai_Doll_Hat','Defolty Doll Hat','Armor',500,1,1,true,60,354,100,true,'bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus4 bAutoSpellWhenHit,"AL_ANGELUS",10,20,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5341,'Claris_Doll_Hat','Glaris Doll Hat','Armor',500,1,1,true,60,355,100,true,'bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bMagicHPGainValue,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5342,'Sorin_Doll_Hat','Sorin Doll Hat','Armor',500,1,1,true,60,356,100,true,'bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; autobonus "{ bonus bBaseAtk,50; }",20,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5343,'Tayelin_Doll_Hat','Telling Doll Hat','Armor',500,1,1,true,60,357,100,true,'bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bAddItemHealRate,504,10; bonus2 bAddItemHealRate,547,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5344,'Binit_Doll_Hat','Bennit Doll Hat','Armor',500,1,1,true,60,358,100,true,'bonus bVit,2; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; autobonus "{ bonus bAspdRate,5; }",20,30000,0,"{ specialeffect2 EF_HASTEUP; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5345,'Debril_Doll_Hat','W Doll Hat','Armor',500,1,1,true,60,359,100,true,'bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bAddRace,RC_Undead,5; bonus2 bMagicAddRace,RC_Undead,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (5346,'Gf_Recruiter_Hat','GF Recruiter Hat','Armor',4,true,10,true,360,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`) VALUES (5347,'Ph.D_Hat_','Ph.D Hat','Armor',20,100,5,1,true,false,false,true,true,98); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5348,'Big_Sis\'_Ribbon_','Big Ribbon','Armor',15000,200,3,1,true,false,false,true,true,28,'bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`) VALUES (5349,'Boy\'s_Cap_','Boy\'s Cap','Armor',20,100,3,1,true,false,false,true,true,102); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5350,'Pirate_Bandana_','Pirate Bandana','Armor',20,100,4,1,true,false,false,true,true,74,'bonus bStr,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`view`,`script`) VALUES (5351,'Sunflower_','Sunflower','Armor',20,100,2,1,true,37,'bonus2 bSubRace,RC_Insect,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5352,'Poporing_Cap','Poporing Cap','Armor',20,700,4,true,false,false,true,38,true,361); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`location_head_top`,`location_head_mid`,`refineable`,`view`,`script`) VALUES (5353,'Helm_Of_Sun_','Hat of the Sun God','Armor',20,2400,4,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,138,'bonus bStr,3; bonus bInt,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`gender`,`location_head_top`,`view`,`script`) VALUES (5354,'Muslim_Hat_M','Muslim Hat M','Armor',100,4,'Male',true,362,'bonus bVariableCastrate,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`gender`,`location_head_top`,`view`,`script`) VALUES (5355,'Muslim_Hat_F','Selendang','Armor',100,4,'Female',true,363,'bonus bVariableCastrate,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5356,'Pumpkin_Hat_H','Festival Pumpkin Hat','Armor',20,200,3,true,true,206,'bonus2 bSubRace,RC_Demon,5; bonus2 bAddRace,RC_Demon,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5357,'Wings_Of_Victory','Wings Of Victory','Armor',20,200,10,true,true,365,100,true,true,true,true,true,true,true,'bonus bMdef,10; bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (5358,'Pecopeco_Wing_Ears','Peco Ears','Armor',20,100,2,true,70,366,'bonus bAgi,1; bonus bMdef,2; bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5359,'J_Captain_Hat','Ship Captain Hat','Armor',20,300,3,1,true,60,true,367,100,true,'bonus bDex,1; bonus bMaxHP,100; bonus bLongAtkRate,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5360,'Whikebain_Ears','Hyuke\'s Black Cat Ears','Armor',20,200,4,true,false,false,true,45,true,368,100,true,'bonus bFlee,10; bonus bCritAtkRate,10; autobonus "{ bonus2 bIgnoreMdefClassRate,Class_Normal,100; bonus2 bIgnoreMdefClassRate,Class_Boss,100; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_STEAL; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5361,'Gang_Scarf','Gangster Scarf','Armor',20,100,true,369,100,true,'bonus bBaseAtk,5; if(BaseJob==Job_Rogue) skill "RG_GANGSTER",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5362,'Ninja_Scroll','Ninja Scroll','Armor',20,200,true,370,100,true,'bonus bMatkRate,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5363,'Helm_Of_Abyss','Helm Of Abyss','Armor',20,1000,9,1,true,true,true,true,true,true,true,true,true,true,70,true,371,100,true,'bonus2 bSubClass,Class_Normal,-5; bonus2 bSubClass,Class_Boss,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5364,'Dark_Snake_Lord_Hat','Evil Snake Lord Hat','Armor',20,500,4,1,true,60,true,372,'bonus bStr,1; bonus bInt,1; bonus bAgi,2; bonus2 bAddMonsterDropItem,12582,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5365,'Fried_Egg','Magnolia Hat','Armor',20,100,2,1,true,1,373,100,true,'bonus bBaseAtk,5; bonus3 bAutoSpellWhenHit,"BS_GREED",1,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5366,'Hat_0f_King','Love Dad Bandana','Armor',20,200,5,true,true,374,'bonus bAllStats,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (5367,'Hyegun_Hat','Hyegun Hat','Armor',20,100,5,1,true,true,true,10,375,'bonus bMdef,3; bonus2 bSubRace,RC_Demon,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5368,'White_Wing','White Wing','Armor',20,100,4,true,true,38,100,true,true,true,true,true,true,true,'bonus2 bAddMonsterDropItem,12280,300;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5369,'Dark_Wing','Dark Wing','Armor',20,100,4,true,true,39,100,true,true,true,true,true,true,true,'bonus2 bAddMonsterDropItem,12279,300;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5370,'Orchid_Hairband','Orchid Hairband','Armor',20,200,1,true,true,376,'bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`refineable`,`view`,`script`) VALUES (5371,'Hat_Of_Judge','Judge Hat','Armor',20,300,2,true,true,true,377,'bonus bLuk,1; bonus bMaxSP,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5372,'Drooping_White_Kitty','Koneko Hat','Armor',20,500,3,true,true,378,100,true,'bonus bInt,1; bonus bDelayRate,-3; bonus bMatkRate,3; bonus bMaxSPrate,3; bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5373,'Darkness_Helm','Dark Randgris Helm','Armor',20,300,2,1,true,true,true,379,100,true,'bonus bDex,3; bonus bMdef,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5374,'L_Magestic_Goat','Gigantic Majestic Goat','Armor',20,800,10,true,true,380,'bonus2 bAddRace,RC_DemiHuman,12; bonus2 bAddRace,RC_Player_Human,12; bonus bBaseAtk,(JobLevel*2)/7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5375,'L_Orc_Hero_Helm','Orc Hero Headdress','Armor',20,900,5,1,true,true,true,381,100,true,'bonus bStr,2; bonus3 bAutoSpellWhenHit,"BS_WEAPONPERFECT",3,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5376,'Satanic_Chain_P','Flying Evil Wing','Armor',20,100,6,1,true,true,382,'bonus bMaxSP,120; bonus2 bAddEff2,Eff_Curse,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`,`script`) VALUES (5377,'Antique_Pipe','Gentleman\'s Pipe','Armor',20,100,true,383,'bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5378,'Rabbit_Ear_Hat','Bunny Top Hat','Armor',20,300,true,true,384,100,true,'bonus bAgi,3; bonus3 bAutoSpellWhenHit,"AL_INCAGI",5,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5379,'Balloon_Hat','Tam','Armor',800,5,1,true,50,true,385,'bonus bMdef,2; bonus bMatkRate,2+(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5380,'Fish_Head_Hat','Fish Head Hat','Armor',20,400,2,true,true,386,100,true,'bonus3 bAutoSpell,"SA_FROSTWEAPON",1,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5381,'Santa_Poring_Hat','Santa Poring Hat','Armor',20,100,4,1,true,387,100,true,'bonus bMdef,2; bonus2 bAddEle,Ele_Dark,3; bonus2 bSubEle,Ele_Dark,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`,`unequip_script`) VALUES (5382,'Bell_Ribbon','Bell Ribbon','Armor',20,200,5,1,true,true,388,100,true,'bonus bVit,1; skill "AL_ANGELUS",1;','sc_end SC_ANGELUS;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5383,'Hunting_Cap','Hunter\'s Cap','Armor',20,250,6,1,true,false,false,true,50,true,389,'bonus bLuk,1; bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Player_Doram,10; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5384,'Santa_Hat_1','Twin Pompom By JB','Armor',20,200,2,1,true,20,true,390,100,true,'bonus bLuk,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`,`unequip_script`) VALUES (5385,'Yoyo_Hat','Yoyo Hat','Armor',20,300,2,true,20,true,391,'skill "TF_HIDING",1;','sc_end SC_HIDING;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5386,'Ayam_','Ayam','Armor',70,7,true,1,228,'bonus bMdef,7; bonus bFlee,7; bonus2 bAddMonsterDropItem,12198,200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5387,'Neko_Mimi_Kafra','Neko Mimi Kafra','Armor',20,200,1,1,true,30,true,392,'bonus bMdef,5; bonus2 bAddEffWhenHit,Eff_Silence,1000; bonus2 bAddEffWhenHit,Eff_Poison,1000; bonus2 bAddEffWhenHit,Eff_Curse,1000; bonus2 bAddEffWhenHit,Eff_Blind,1000; bonus2 bAddEffWhenHit,Eff_Stone,1000; bonus2 bAddEffWhenHit,Eff_Freeze,1000; bonus2 bAddEffWhenHit,Eff_Stun,1000; bonus2 bAddEffWhenHit,Eff_Sleep,1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5388,'Snake_Head','Snake Head Hat','Armor',20,200,2,1,true,30,true,393,'skill "TF_DOUBLE",5; bonus bDoubleRate,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5389,'Angel_Spirit','Angel Spirit','Armor',20,200,true,394,100,true,'bonus bStr,2; bonus bHit,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5390,'Santa_Hat_2','Frozen Twin Pompom','Armor',20,100,4,true,true,395,'bonus2 bResEff,Eff_Freeze,3000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_low`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5391,'Toast_C','Toast','Armor',20,1,true,188,100,true,true,true,true,true,true,true,true,'bonus bMaxHP,100; bonus2 bAddMonsterDropItem,617,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5392,'Louyang_Cap','Luoyang NewYear Hat','Armor',20,300,6,1,true,true,396,'bonus bLuk,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5393,'Valentine_Hat','Love Valentine\'s Hat','Armor',20,200,4,true,397,100,true,'bonus bMaxSPrate,7; bonus bMaxHPrate,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_head_low`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5394,'Bubblegum_Lower','Bubblegum','Armor',true,572,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddClass,Class_All,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5395,'Tiraya_Bonnet','Striped Hat','Armor',20,500,6,1,true,50,true,398,'bonus bMaxHP,100+(getrefine()*20); bonus bLuk,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5396,'Jasper_Crest','Jasper Crest','Armor',20,700,6,1,true,true,399,100,true,'bonus bDex,1; bonus2 bAddRace,RC_Undead,5; .@r = getrefine(); if (.@r<6) { bonus2 bAddEff2,Eff_Blind,10; } else if (.@r>8) { bonus bDex,2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`view`,`script`) VALUES (5397,'Scuba_Mask','Scuba Gear','Armor',20,100,true,400,'bonus2 bSubEle,Ele_Water,10; bonus2 bExpAddRace,RC_Fish,10; bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`class_upper`,`class_third_upper`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5398,'Bone_Head','Bone Head','Armor',20,1200,10,1,true,true,true,true,true,true,true,true,true,85,true,401,'bonus bStr,2; bonus bMdef,5; bonus2 bResEff,Eff_Stun,500; bonus2 bResEff,Eff_Bleeding,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5399,'Mandragora_Cap','Mandragora Cap','Armor',20,300,5,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,85,402,'bonus bVit,3; bonus3 bAutoSpellWhenHit,"DC_SCREAM",5,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`gender`,`location_head_top`,`location_head_mid`,`location_head_low`,`view`,`script`) VALUES (5400,'Fox_Hat','Fox Hat','Armor',20,200,'Female',true,true,true,403,'bonus bLuk,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (5401,'Black_Glasses','Black Frame Glasses','Armor',20,200,2,true,70,404,'bonus bInt,1; bonus bMdef,2; bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (5402,'Mischievous_Fairy','Mischievous Fairy','Armor',10,200,2,true,70,405,'bonus bUnbreakableHelm; bonus bFlee2,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (5403,'Fish_In_Mouth','Fish In Mouth','Armor',10,200,true,30,406,'bonus2 bAddMonsterDropItem,579,500; bonus2 bAddItemHealRate,579,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5404,'Blue_Ribbon','Blue Ribbon','Armor',10,100,2,1,true,45,true,407,'bonus4 bAutoSpellWhenHit,"AC_CONCENTRATION",2,7,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5405,'Filir_Hat','Filir Hat','Armor',10,200,2,true,80,408,'bonus bShortWeaponDamageReturn,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5406,'Academy_Freshman_Hat','Academy Freshman Hat','Armor',500,3,true,true,409,100,true,true,true,true,true,true,'bonus bInt,1; bonus bDex,2; bonus bVit,1; bonus bDelayrate,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5407,'Academy_Graduating_Cap','Academy Completion Hat','Armor',200,3,true,true,410,100,true,true,true,true,true,true,'bonus bMaxSP,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_top`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5408,'Old_Bandanna','Old Bandana','Armor',10,true,6,100,true,true,true,true,true,true,true,true,'bonus bInt,2; bonus bMaxSP,50; bonus bVariableCastrate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5409,'New_Cowboy_Hat','Purple Cowboy Hat','Armor',20,500,8,1,true,true,411,100,true,'bonus bInt,2; bonus bVit,2; bonus bMaxSP,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`location_head_low`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5410,'Bread_Bag2','Brown Paperbag Hat','Armor',20,200,6,true,true,true,412,100,true,true,true,true,true,true,true,'bonus bMaxHP,100; bonus2 bResEff,Eff_Stun,400; bonus2 bSubRace,RC_DemiHuman,4; bonus2 bSubRace,RC_Player_Human,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5411,'White_Snake_Hat','White Snake Hat','Armor',20,500,4,true,true,413,'bonus bDex,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_low`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5412,'Sweet_Candy','Sweet Candy','Armor',20,100,1,true,414,100,true,true,true,true,true,true,true,true,'bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5413,'Popcorn_Hat','Pop Corn Hat','Armor',20,300,4,true,415,100,true,true,true,true,true,true,'bonus2 bSubEle,Ele_Wind,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5414,'Campfire_Hat','Camp Fire Hat','Armor',20,300,4,true,416,100,true,true,true,true,true,true,'bonus2 bSubEle,Ele_Fire,10; bonus4 bAutoSpellWhenHit,"MG_FIREBALL",5,100,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5415,'Poring_Cake_Cap','Poring Cake Hat','Armor',20,1000,10,true,40,true,417,'bonus bMdef,5; bonus bCritical,5; bonus bFlee,5; bonus bFlee2,5; bonus bAspdRate,5; bonus bVariableCastrate,-5; bonus bDelayRate,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5416,'Beer_Cap','Beer Hat','Armor',20,600,4,true,false,false,true,18,true,418,'bonus bFlee2,5; skill "SM_RECOVERY",3; skill "MG_SRECOVERY",3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`view`,`script`) VALUES (5417,'Crown_Parrot','Crown Parrots','Armor',20,200,2,1,true,419,'bonus bInt,1; bonus2 bResEff,Eff_Silence,10000; bonus3 bAutoSpell,"DC_SCREAM",1,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5418,'Soldier_Hat','Legionnaire Hat','Armor',20,400,8,1,true,true,420,'bonus bStr,1; bonus2 bAddClass,Class_All,3; bonus bUseSPrate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5419,'Evolved_Leaf','Leaves Of Grass','Armor',20,100,true,57,100,true,'bonus bVit,1; bonus2 bSubRace,RC_Plant,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`location_head_mid`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5420,'Mask_Of_Ifrit','Mask Of Ifrit','Armor',20,800,12,1,true,false,false,true,true,true,50,421,100,true,'bonus bStr,2; bonus bInt,2; bonus bMdef,5; bonus2 bSubEle,Ele_Fire,10; bonus2 bSubEle,Ele_Water,-10; bonus2 bAddEle,Ele_Fire,10; bonus2 bMagicAtkEle,Ele_Fire,10; bonus3 bAutoSpell,"WZ_METEOR",3,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5421,'Ifrit\'s_Ear','Ears Of Ifrit','Armor',20,300,true,false,false,true,50,422,100,true,'bonus bStr,1; bonus bInt,1; bonus bMdef,3; bonus2 bAddEle,Ele_Fire,3; bonus2 bSkillAtk,"SM_BASH",4; bonus2 bSkillAtk,"SM_MAGNUM",4; bonus2 bSubEle,Ele_Fire,3; bonus2 bSubEle,Ele_Water,-3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5422,'Linguistic_Book_Cap','Linguistic Book Hat','Armor',20,70,true,true,423,'bonus bInt,1; bonus bMdef,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`script`) VALUES (5423,'Lovecap_China','I Love China','Armor',20,250,10,true,424,100,true,true,'bonus bDex,3; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`) VALUES (5424,'Fanta_Orange_Can','Fanta Orange Can Hat','Armor',20,100,3,1,true,true,425); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`) VALUES (5425,'Fanta_Grape_Can','Fanta Grape Can Hat','Armor',20,100,3,1,true,true,426); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5426,'Karada_Meguri_Tea_Hat','Karada Meguricha Hat','Armor',20,100,3,1,true,true,427,'bonus bLuk,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5427,'Royal_Milk_Tea_Hat','Black Tea Kochakaden Hat','Armor',20,100,3,1,true,true,428,'bonus bAgi,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5428,'Bread_Bag1','RWC Anniversary Bread Envelope','Armor',100,true,true,true,true,429,100,true,true,true,true,true,true,true,'bonus2 bSubRace,RC_DemiHuman,12; bonus2 bSubRace,RC_Player_Human,12;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5429,'Bogy_Cap','Bogy Cap','Armor',20,100,4,1,true,true,430,'bonus bHPrecovRate,5; bonus bSPrecovRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5430,'Sacred_Torch_Coronet','Torch Cap','Armor',20,6,true,431,100,true,'bonus2 bSubEle,Ele_Fire,20; skill "MG_FIREBOLT",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5431,'Chicken_Hat','Chicken Hat','Armor',20,1000,1,true,30,true,432,100,true,'bonus3 bAutoSpell,"MC_LOUD",1,30; bonus bAspdRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5432,'Brazil_Baseball_Cap','bRO 4th Anniversary Hat','Armor',20,100,true,true,433,'if(gettime(DT_MONTH)==SEPTEMBER&&gettime(DT_DAYOFMONTH)>=10&&gettime(DT_DAYOFMONTH)<=24) bonus bAllStats,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`refineable`,`view`) VALUES (5433,'Golden_Wreath','Golden Laurel','Armor',20,100,true,true,434); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`) VALUES (5434,'Cola_Can','Cola Can','Armor',20,100,3,1,true,true,435); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5435,'Coke_Hat','Red Minstrel Hat','Armor',20,100,2,1,true,40,true,436,100,true,'bonus bInt,1; bonus bMaxSP,80; bonus bMdef,3; .@r = getrefine(); if(.@r>5) { bonus bMdef,.@r-5; bonus bMaxSP,(.@r-5)*10; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5436,'Bride\'s_Corolla','Bride\'s Corolla','Armor',20,200,1,true,true,437,'bonus bLuk,3; bonus bMdef,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5437,'Flower_Of_Fairy','Fairy Flower','Armor',20,200,2,1,true,true,438,'bonus bInt,1; bonus bMdef,1; bonus2 bSubRace,RC_Insect,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`view`,`script`) VALUES (5438,'Fillet_Green','Cute Green Ribbon','Armor',500,100,1,true,false,false,true,439,'bonus bMaxSP,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`view`,`script`) VALUES (5439,'Fillet_Red','Cute Red Ribbon','Armor',500,100,1,true,false,false,true,440,'bonus bMaxSP,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`view`,`script`) VALUES (5440,'Fillet_Blue','Cute Blue Ribbon','Armor',500,100,1,true,false,false,true,441,'bonus bMaxSP,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`view`,`script`) VALUES (5441,'Fillet_White','Cute White Ribbon','Armor',500,100,1,true,false,false,true,442,'bonus bMaxSP,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5442,'Necktie','Necktie','Armor',20,100,6,1,true,70,true,443,'bonus bVit,1; bonus bHit,-5; bonus bUseSPrate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5443,'Status_Of_Baby_Angel','Statue Of Baby Angel','Armor',20,600,6,1,true,70,true,444,'bonus bMdef,2; bonus4 bAutoSpellWhenHit,"PR_STRECOVERY",1,20,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5444,'Hair_Brush','Hair Brush','Armor',20,100,true,true,445,'bonus bCritical,6;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`,`script`) VALUES (5445,'Candy_Cane_In_The_Mouth','Candy Cane In Mouth','Armor',20,100,true,446,'bonus bMaxSP,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5446,'Cat_Foot_Hairpin','Catfoot Hairpin','Armor',20,200,1,true,true,447,'bonus bFlee,5; bonus bFlee2,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5447,'Frog_Cap','Frog Hat','Armor',20,500,6,true,70,true,448,'bonus bMdef,1; bonus2 bAddRace,RC_Insect,12; bonus2 bMagicAddRace,RC_Insect,12;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`location_head_mid`,`location_head_low`,`refineable`,`view`,`script`) VALUES (5448,'Solo_Play_Box1','Indifferent Solo Hat','Armor',20,300,1,true,true,true,true,449,'skill "RG_GRAFFITI",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`location_head_mid`,`location_head_low`,`refineable`,`view`,`script`) VALUES (5449,'Solo_Play_Box2','Angry Solo Hat','Armor',20,300,1,true,true,true,true,450,'skill "RG_GRAFFITI",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (5450,'Sun_Cap','Solar Hat','Armor',20,1000,true,false,false,true,20,true,451,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5451,'Dragonhelm_Gold','RWC 2008 Dragon Helm Gold','Armor',20,2500,14,1,true,1,452,100,true,true,true,true,true,true,true,'bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5452,'Dragonhelm_Silver','RWC 2008 Dragon Helm Silver','Armor',20,2500,10,1,true,1,453,100,true,true,true,true,true,true,true,'bonus2 bSubRace,RC_DemiHuman,7; bonus2 bSubRace,RC_Player_Human,7; bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player_Human,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5453,'Dragonhelm_Copper','RWC 2008 Dragon Helm Copper','Armor',20,2500,5,1,true,1,454,100,true,true,true,true,true,true,true,'bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bAddRace,RC_DemiHuman,1; bonus2 bAddRace,RC_Player_Human,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5454,'Dog_Cap_','Puppy Hat','Armor',20,500,3,1,true,true,234,'bonus bStr,1; bonus bInt,1; autobonus "{ bonus bCritical,100; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; autobonus "{ bonus2 bIgnoreMdefClassRate,Class_Normal,100; bonus2 bIgnoreMdefClassRate,Class_Boss,100; }",10,3000,BF_MAGIC,"{ specialeffect2 EF_MAGICALATTHIT; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5455,'Geographer_Band_','Decorative Geographer','Armor',20,500,1,1,true,true,238,'bonus bInt,1; bonus3 bAutoSpell,"AL_HEAL",5,50; bonus3 bAutoSpellWhenHit,"AL_HEAL",5,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5456,'Vacation_Hat_','Summer Hat','Armor',20,200,true,true,315,'bonus bVit,5; bonus bHPrecovRate,20; bonus bSPrecovRate,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5457,'Spring_Rabbit_Hat','Moon Rabbit Hat','Armor',20,300,2,1,true,1,true,455,'bonus bAgi,3; bonus bBaseAtk,5; bonus bMatkRate,5; .@r = getrefine(); if(.@r>4) { bonus bBaseAtk,.@r-4; bonus bMatkRate,.@r-4; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5458,'Pinwheel_Cap','Pinwheel Hat','Armor',20,200,3,true,true,456,'bonus bMaxHPrate,5; bonus bMaxSPrate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5459,'Drooping_Bunny_Chusuk','Drooping Bunny','Armor',100,3,true,true,249,'bonus bDex,1; bonus bFlee,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5460,'Adv_Dragon_Skull','Evolved Dragon Skull Hat','Armor',20,1000,14,true,60,true,457,100,true,true,true,true,true,true,true,'bonus bAllStats,2; bonus bMaxHPrate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`location_head_low`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5461,'Adv_Whisper_Mask','Evolved Whisper Mask','Armor',20,300,1,true,true,true,50,true,458,100,true,true,true,true,true,true,true,'bonus bDex,3; bonus2 bSubEle,Ele_Ghost,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5462,'Spiked_Scarf','Spiked Scarf','Armor',20,100,1,true,90,459,100,true,true,true,true,true,true,true,true,'bonus bAtk,30; bonus bMaxHPrate,-2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5463,'Rainbow_Scarf','Rainbow Scarf','Armor',20,1,true,90,460,100,true,true,true,true,true,true,true,true,'bonus bMatk,30; bonus bMaxSPrate,-2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5464,'Zaha_Doll_Hat','Zaha Doll Hat','Armor',20,1,1,true,true,461,100,true,'bonus bInt,3; bonus bMdef,9; bonus2 bMagicAddEle,Ele_Undead,10; .@r0 = getrefine(); autobonus "{ .@r = getrefine(); bonus2 bSPLossRate,10,1000; bonus bMatk,30*.@r; bonus bFixedCast,-80*.@r; }",3*.@r0,3000,BF_MAGIC,"{ active_transform 1518,3000; specialeffect2 EF_POTION_BERSERK; showscript \\"Bacsojin Power !\\"; }"; autobonus2 "{ .@r = getrefine(); bonus2 bSPLossRate,10,1000; bonus bMatk,30*.@r; bonus bFixedCast,-80*.@r; }",.@r0,3000,BF_MAGIC,"{ active_transform 1518,3000; specialeffect2 EF_POTION_BERSERK; showscript \\"Bacsojin Power !\\"; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5465,'Celestial_Hat','Hat Of Fortune','Armor',20,500,3,1,true,40,true,462,'bonus bLuk,2; bonus bMdef,5; .@r = getrefine(); if(.@r>4) bonus bLuk,.@r-4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5466,'Wind_Milestone','Wind Milestone','Armor',20,100,2,1,true,30,true,463,'bonus bAgi,2; skill "AL_TELEPORT",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5467,'Helm_Of_Dragoon','Helm Of Dragon','Armor',20,1000,10,1,true,1,true,464,100,true,'bonus bStr,2; bonus bInt,2; bonus bDex,2; .@r = getrefine(); if(.@r>=7) bonus2 bExpAddRace,RC_Dragon,3; if(.@r>=9) bonus2 bExpAddRace,RC_Dragon,5; bonus3 bAutoSpell,"NPC_DRAGONFEAR",1,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5468,'Parade_Cap','Parade Hat','Armor',20,800,3,1,true,true,465,'bonus bDelayRate,-5; bonus bMdef,2; .@r = getrefine(); if(.@r>5) bonus bVariableCastrate,-(.@r-5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5469,'Noble_Hat','Musketeer Hat','Armor',20,300,4,1,true,60,true,466,100,true,'bonus bDex,3; bonus bFlee,3; .@r = getrefine(); if(.@r>=7){ bonus bFlee,3; bonus bLongAtkRate,3; } if(.@r>=9){ bonus bFlee,4; bonus bLongAtkRate,2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (5470,'Eyes_Of_Darkness','Eye Of Darkness','Armor',20,100,1,true,50,467,'bonus bDex,1; bonus2 bResEff,Eff_Blind,10000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (5471,'Hairband_Of_Reginleif','Hairband Of Reginleif','Armor',20,800,2,true,50,468,'bonus2 bSubEle,Ele_Water,3; bonus2 bSubEle,Ele_Fire,3; bonus2 bSubEle,Ele_Undead,3; bonus2 bSubEle,Ele_Ghost,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5472,'Red_White_Hat','Red Hat','Armor',20,100,true,true,469,'bonus3 bAddMonsterDropItem,554,RC_DemiHuman,200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5473,'Forceps_Hairpin','Nipper Crab Hairpin','Armor',20,500,8,true,30,true,470,'bonus3 bAutoSpellWhenHit,"MG_COLDBOLT",1,30; bonus3 bAddMonsterDropItem,991,RC_Fish,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`) VALUES (5474,'Notice_Board','AFK Hat','Armor',20,700,2,true,10,471); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`location_head_low`,`view`,`script`) VALUES (5475,'Cube_Mask','Mask Cube','Armor',20,100,1,true,true,472,'bonus bAllStats,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5476,'Hairband_Of_Grandpeco','Grand Peco Hairband','Armor',20,800,5,true,true,1,true,473,100,true,'bonus2 bAddRace,RC_Brute,7; bonus2 bMagicAddRace,RC_Brute,7; bonus2 bAddRace,RC_DemiHuman,7; bonus2 bMagicAddRace,RC_DemiHuman,7; bonus2 bAddRace,RC_Player_Doram,7; bonus2 bMagicAddRace,RC_Player_Doram,7; bonus3 bAddEff,Eff_Curse,10,ATF_SHORT;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5477,'Bro_Flag','Brazilian Flag Hat','Armor',20,100,2,1,true,30,true,474,'skill "SM_BASH",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5478,'Classic_Hat','Classic Hat','Armor',20,500,4,true,true,475,'bonus bStr,2; bonus bMaxHP,300;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5479,'Shaman\'s_Hair_Ornament','Shaman\'s Hair Decoration','Armor',20,300,2,true,1,true,476,100,true,'bonus bMdef,3; bonus2 bSubEle,Ele_Neutral,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5480,'Bizofnil_Wing_Deco','Bijofnil Wings','Armor',20,1000,6,true,1,true,477,100,true,'bonus bAllStats,2; bonus2 bSubEle,Ele_All,5; bonus2 bHPRegenRate,(MaxHp*2/100),10000; bonus2 bSPRegenRate,(MaxSp/100),10000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5481,'Hermose_Cap','Hermode Cap','Armor',20,1000,2,1,true,1,true,478,100,true,'bonus bAspdRate,10; bonus bBaseAtk,-20; bonus bMatkRate,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`location_head_low`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5482,'Dark_Knight_Mask','Dark Knight Mask','Armor',20,3000,5,true,true,true,1,true,479,100,true,'bonus bStr,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5483,'Odin_Mask','Odin Mask','Armor',20,100,1,true,true,1,480,100,true,'bonus2 bSubClass,Class_Boss,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`view`,`script`) VALUES (5484,'Taiwan_Flag_Hat','Holidays Hat','Armor',20,500,4,true,482,'bonus bAllStats,5; bonus2 bResEff,Eff_Stun,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`location_head_low`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5485,'Tiger_Face','Tiger Face','Armor',20,1000,3,true,true,true,60,true,483,'bonus2 bSubRace,RC_Brute,5; bonus2 bAddRace,RC_Brute,5; bonus2 bMagicAddRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5; bonus2 bAddRace,RC_Player_Doram,5; bonus2 bMagicAddRace,RC_Player_Doram,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5486,'J_Anniversary_Hat','Anniversary Hat','Armor',20,300,6,true,true,395,'bonus bAllStats,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5487,'J_Poringcake_Hat','Poring Cake Hat','Armor',20,500,1,true,true,417,'bonus bLuk,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5488,'J_Twin_Santahat','Twin Santa Hat','Armor',20,100,1,true,true,390,'bonus bLuk,1; bonus bMdef,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5489,'Love_Daddy','Love Daddy Hat','Armor',20,100,true,true,484,'bonus bDex,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (5490,'Anubis_Helm','Anubis Helm','Armor',20,8,true,true,65,485,'bonus bMdef,5; bonus2 bSubClass,Class_Boss,10; bonus bHealpower2,10; bonus bAddItemHealRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5491,'Hat_Of_Outlaw','Bandit Hat','Armor',20,800,3,true,true,486,'bonus bStr,2; bonus2 bSubEle,Ele_Fire,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5492,'Boy\'s_Cap_I','Student Cap','Armor',5,true,false,false,true,102,100,true,true,true,true,true,true,true,true,'bonus bMdef,3; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5493,'Ulle_Cap_I','Ulle\'s Cap','Armor',3,true,false,false,true,254,100,true,true,true,true,true,true,true,true,'bonus bDex,2; bonus bAgi,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`job_crusader`,`job_knight`,`job_swordman`,`location_head_top`,`location_head_low`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5494,'Spinx_Helm_I','Sphinx Hat','Armor',5,true,true,true,true,true,137,100,true,true,true,true,true,true,true,true,'bonus bStr,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5495,'Power_Of_Thor','Power Of Thor','Armor',20,100,6,1,true,true,493,100,true,'bonus bInt,1; bonus bDex,1; bonus bMdef,3; bonus bFlee,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5496,'Dice_Hat','Dice Hat','Armor',20,300,3,true,50,494,'bonus bLuk,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5497,'King_Tiger_Doll_Hat','King Tiger Doll Hat','Armor',20,400,6,1,true,false,false,true,1,true,495,100,true,'bonus bStr,2; bonus bDex,2; bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Player_Doram,10; .@r = getrefine(); autobonus "{ bonus2 bSPLossRate,5,1000; bonus bBaseAtk,25*getrefine(); }",3*.@r,3000,BF_NORMAL,"{ active_transform 1115,3000; specialeffect2 EF_POTION_BERSERK; showscript \\"Eddga Power !\\"; }"; autobonus2 "{ bonus2 bSPLossRate,5,1000; bonus bBaseAtk,25*getrefine(); }",.@r,3000,BF_NORMAL,"{ active_transform 1115,3000; specialeffect2 EF_POTION_BERSERK; showscript \\"Eddga Power !\\"; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5498,'Wondering_Wolf_Helm','Wandering Wolf Helm','Armor',20,600,5,1,true,false,false,true,true,1,true,490,100,true,'bonus bAgi,5; bonus bFlee,10; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Brute,10; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,10; if(getrefine()>=7){ bonus2 bAddEff,Eff_Bleeding,10; } if(getrefine()>=9){ bonus3 bAutoSpellWhenHit,"MC_LOUD",1,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`view`,`script`) VALUES (5499,'Pizza_Hat','Pizza Hat','Armor',20,600,true,487,'skill "SM_PROVOKE",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5500,'Icecream_Hat','Icecream Hat','Armor',300,6,true,30,true,488,'bonus bMdef,3; skill "MG_FROSTDIVER",3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5501,'Pirate\'s_Pride','Pirate\'s Pride','Armor',100,6,true,10,496,'bonus2 bAddRace2,RC2_Ninja,5; bonus2 bSubRace2,RC2_Ninja,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5502,'Necromencer\'s_Hood','Necromancer\'s Hood','Armor',500,6,true,true,1,true,491,100,true,'bonus bInt,3; bonus bMdef,3; bonus bDefEle,Ele_Undead; bonus2 bSubEle,Ele_Dark,15; bonus2 bSubEle,Ele_Holy,-20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5503,'Rabbit_Magic_Hat','Rabbit Magic Hat','Armor',800,4,true,true,497,100,true,'bonus bDex,2; bonus bAgi,2; bonus bMdef,1; bonus bAspdRate,5; bonus bDelayRate,-4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5504,'China_Wedding_Veil','Wedding Weil','Armor',20,500,5,true,true,70,true,489,'bonus bMdef,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5505,'Asara_Fairy_Hat','Asara Fairy Hat','Armor',500,2,true,true,50,true,492,'skill "DC_DONTFORGETME",1; bonus bDex,2; bonus bLuk,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5506,'Blue_Pajamas_Hat','Blue Night Cap','Armor',100,4,true,true,501,'bonus bAtkRate,5; bonus bMatkRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5507,'Pink_Pajamas_Hat','Pink Night Cap','Armor',100,4,true,true,502,'bonus bAtkRate,5; bonus bMatkRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5508,'Shark_Hat','Shark Hat','Armor',20,500,3,true,true,503,100,true,'bonus bStr,1; bonus bAgi,2; bonus bMdef,1; bonus2 bAddEle,Ele_Water,5; bonus2 bSubDefEle,Ele_Water,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5509,'Sting_Hat','Sting hat','Armor',20,1000,10,true,true,504,100,true,'bonus bStr,2; bonus bVit,1; bonus bMdef,3; bonus2 bAddEle,Ele_Fire,5; bonus2 bSubDefEle,Ele_Earth,5; bonus3 bAutoSpell,"WZ_EARTHSPIKE",1,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5510,'Shower_Cap','Shower Cap','Armor',20,4,true,true,507,'bonus bMdef,3; bonus bFlee,3; bonus2 bAddEle,Ele_Water,10; bonus2 bSubRace,RC_Fish,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5511,'Samambaia','Samambaia','Armor',20,200,5,1,true,true,1,true,508,'bonus bHealPower,2; bonus bAspd,1; bonus bFixedCastrate,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5512,'Aquarius_Diadem','Aquarius Diadem','Armor',20,300,6,true,70,true,509,'bonus bStr,2; bonus bFlee,10; bonus2 bSubEle,Ele_Wind,5; if(getrefine()>6) { bonus bDef,1; bonus bBaseAtk,15; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5513,'Aquarius_Crown','Aquarius Crown','Armor',20,300,6,true,70,true,510,'bonus bStr,2; bonus bFlee,10; bonus2 bSubEle,Ele_Wind,5; if(getrefine()>6) { bonus bDef,1; bonus bBaseAtk,15; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5514,'Pisces_Diadem','Pisces Diadem','Armor',20,300,6,true,70,true,511,'bonus bInt,2; bonus bMdef,5; bonus2 bSubEle,Ele_Water,5; if(getrefine()>6) { bonus bDef,1; bonus bMatkRate,2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5515,'Pisces_Crown','Pisces Crown','Armor',20,300,6,true,70,true,512,'bonus bInt,2; bonus bMdef,5; bonus2 bSubEle,Ele_Water,5; if(getrefine()>6) { bonus bDef,1; bonus bMatkRate,2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_hunter`,`class_upper`,`class_third_upper`,`location_head_mid`,`view`,`script`) VALUES (5516,'Hawk_Eyes01','Hawk Eyes','Armor',10,1000,true,true,true,true,23,'bonus bDex,1; bonus bLongAtkRate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_archer`,`job_barddancer`,`job_hunter`,`location_head_mid`,`view`,`script`) VALUES (5517,'Hawk_Eyes02','Hawk Eyes','Armor',10,1000,true,true,true,true,23,'bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5518,'L_Magestic_Goat2','Gigantic Majestic Goat','Armor',20,800,5,true,50,true,513,'bonus2 bSubRace,RC_DemiHuman,12; bonus2 bSubRace,RC_Player_Human,12; bonus bBaseAtk,(JobLevel*2)/7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5519,'Peacock_Feather','Peacock Feather','Armor',20,800,4,1,true,1,true,514,'bonus bInt,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5520,'Rabbit_Earplug','Rabbit Earplugs','Armor',400,1,true,true,1,true,515,100,true,'bonus2 bAddClass,Class_All,4; bonus bMatkRate,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_head_low`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5521,'Angry_Mouth_C','Angry Mouth','Armor',true,194,100,true,true,true,true,true,true,true,true,'bonus bDelayRate,-3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`) VALUES (5522,'Fanta_Zero_Lemon_Hat','Fanta Zero Lemon Hat','Armor',20,100,4,1,true,true,516); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5523,'Sakura_Mist_Hat','Sakura Mist Hat','Armor',20,100,4,1,true,true,517,'bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5524,'Sakura_Milk_Tea_Hat','Sakura Milk Tea Hat','Armor',20,100,4,1,true,true,518,'bonus bVit,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5525,'First_Leaf_Tea_Hat','Flower Hat','Armor',20,100,4,1,true,true,519,'bonus bMaxHP,80; bonus bMaxSP,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5526,'Lady_Tanee_Doll','Tanigumi Girl Doll','Armor',20,300,4,true,60,520,'bonus bAgi,2; bonus bFlee,3; bonus2 bSubEle,Ele_Wind,5; bonus2 bAddMonsterDropItem,513,200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5527,'Lunatic_Hat','Lunatic Hat','Armor',20,300,2,true,1,true,521,100,true,'bonus bLuk,3; bonus bCritical,5; bonus2 bAddRace,RC_Plant,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5528,'King_Frog_Hat','Frog King Hat','Armor',20,500,4,1,true,false,false,true,30,522,'bonus bAgi,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5529,'Evil\'s_Bone_Hat','Satanic Bone Helm','Armor',20,600,6,1,true,true,70,true,523,100,true,'bonus bStr,2; bonus bInt,2; bonus bMdef,2; bonus2 bSubEle,Ele_Neutral,5; skill "WZ_FROSTNOVA",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`) VALUES (5530,'Raven_Cap','Raven Cap','Armor',20,100,6,1,true,30,true,524,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5531,'B_Dragon_Hat','Baby Dragon Hat','Armor',45000,100,1,1,true,true,525,100,true,'bonus bDex,2; .@bonus = max(getskilllv("TF_DOUBLE"), 5); skill "TF_DOUBLE",.@bonus; bonus bDoubleRate,.@bonus * 5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`,`script`) VALUES (5532,'Pirate_Dagger_J','Pirate Dagger','Armor',20,100,true,327,'bonus bShortWeaponDamageReturn,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5533,'Emperor_Wreath_J','Emperor Wreath','Armor',20,800,3,1,true,80,true,261,'bonus bAllStats,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (5534,'Fox_Hat_J','Fox Hat','Armor',20,100,1,true,true,70,403,'bonus bAgi,1; bonus bFlee2,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5535,'Side_Cap','Side Cap','Armor',20,500,6,true,true,529,100,true,'bonus bVit,1; bonus bDex,1; bonus bMdef,3; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player_Human,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5536,'Spare_Card','Spare Card','Armor',20,10,1,true,1,526,100,true,true,true,true,true,true,true,true,'bonus bLuk,1; bonus2 bAddMonsterDropItem,6187,1000; bonus bFlee2,1; bonus2 bAddMonsterDropItem,617,5; bonus2 bAddMonsterDropItem,12132,30; bonus2 bAddMonsterDropItem,12130,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5537,'Quati_Hat','Kwati Hat','Armor',20,700,2,1,true,45,527,100,true,'bonus bAgi,3; bonus2 bAddRace,RC_Plant,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5538,'Tucan_Hat','Tucan Hat','Armor',20,600,2,1,true,true,45,528,100,true,'bonus bDex,3; bonus bCritical,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`location_head_low`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5539,'Jaguar_Hat','Jaguar Hat','Armor',20,400,4,1,true,true,true,25,true,530,100,true,'bonus bMdef,2; skill "MC_LOUD",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5540,'Freyja_SCirclet7','Freyja SCirclet7','Armor',20,700,8,true,20,18,'bonus bStr,1; bonus bInt,1; bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5541,'Freyja_SCirclet30','Freyja SCirclet30','Armor',20,700,8,true,20,18,'bonus bStr,1; bonus bInt,1; bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5542,'Freyja_SCirclet60','Freyja SCirclet60','Armor',20,700,8,true,20,18,'bonus bStr,1; bonus bInt,1; bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5543,'Freyja_SCirclet90','Freyja SCirclet90','Armor',20,700,8,true,20,18,'bonus bStr,1; bonus bInt,1; bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5544,'Time_Keeper_Hat','Time Keeper Hat','Armor',30000,6,true,1,true,240,100,true,true,true,true,true,true,'bonus bInt,2; bonus bMaxSP,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5545,'Aries_Diadem','Aries Diadem','Armor',20,400,3,1,true,1,true,531,100,true,'bonus bVit,2; bonus2 bSubEle,Ele_fire,5; if(getrefine()>6) { bonus bDef,1; bonus bVit,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5546,'Aries_Crown','Aries Crown','Armor',20,400,3,1,true,1,true,532,100,true,'bonus bLuk,2; bonus2 bSubEle,Ele_Fire,5; if(getrefine()>6) { bonus bFlee,2; bonus bLuk,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5547,'RJC_Katusa','RJC Katusa Flower','Armor',20,200,1,1,true,true,533,100,true,'bonus2 bSkillAtk,"WZ_HEAVENDRIVE",15+getequiprefinerycnt(EQI_HAND_R); bonus2 bSkillAtk,"WZ_EARTHSPIKE",15+getequiprefinerycnt(EQI_HAND_R); bonus2 bVariableCastrate,"WZ_HEAVENDRIVE",-25; bonus2 bVariableCastrate,"WZ_EARTHSPIKE",-25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5548,'Scarlet_Rose','Scarlet Rose','Armor',20,100,true,1,534,100,true,'bonus2 bAddClass,Class_All,1; bonus bMatkRate,1; bonus bMaxSP,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5549,'Taurus_Diadem','Taurus Diadem','Armor',20,300,6,true,70,true,535,100,true,'bonus bDex,2; bonus bMatkRate,2; bonus bDelayRate,-2; if (getrefine()>6) { bonus bMatkRate,1; bonus bDex,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5550,'Taurus_Crown','Taurus Crown','Armor',20,300,6,true,70,true,536,100,true,'bonus bAgi,2; bonus2 bSubClass,Class_All,2; bonus bDelayRate,-2; bonus2 bAddEff,Eff_Stun,2000; if(getrefine()>6) { bonus2 bSubClass,Class_All,1; bonus bStr,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (5551,'Holy_Egg_Hat','Holy Egg Hat','Armor',20,1,true,true,537,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_top`,`view`,`script`) VALUES (5552,'Fest_Lord_Circlet','Festival Grand Circlet','Armor',8,true,93,'bonus bStr,3; bonus bInt,3; bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_top`,`view`,`script`) VALUES (5553,'Fest_Bunny_Band','Festival Bunny Band','Armor',7,true,15,'bonus bMdef,4; bonus2 bSubRace,RC_DemiHuman,9; bonus2 bSubRace,RC_Player_Human,9;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5554,'Octopus_Hat','Octopus Hat','Armor',20,200,3,true,true,538,100,true,'bonus bMdef,3; bonus3 bAutoSpell,"SM_PROVOKE",5,10; bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5555,'Leaf_Cat_Hat','Leaf Cat Hat','Armor',20,100,6,true,true,539,100,true,'bonus bAgi,2; bonus3 bAutoSpellWhenHit,"AL_HEAL",3,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`location_head_low`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5556,'Fur_Seal_Hat','Seal Hat','Armor',20,500,3,true,true,true,55,true,540,100,true,'bonus bInt,1; bonus3 bAutoSpell,"WZ_FROSTNOVA",1,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5557,'Wild_Rose_Hat','Wild Rose Hat','Armor',20,500,6,1,true,false,false,true,20,true,541,100,true,'bonus bAgi,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5558,'Saci_Hat','Luxury Hat','Armor',20,100,6,1,true,30,true,542,'bonus3 bAddMonsterDropItem,510,RC_Plant,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5559,'Piece_Of_White_Cloth_E','Piece Of White Cloth','Armor',1,true,true,543,'bonus2 bAddClass,Class_All,6; bonus bMatkRate,6; bonus bLongAtkRate,6; bonus bHealPower,6; bonus bVariableCastrate,-20; bonus bAspd,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5560,'Bullock_Helm_J','Bullock Helm','Armor',20,3000,3,true,75,true,322,'bonus bMaxHP,100; bonus bNoKnockback; 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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5561,'Rabbit_Magic_Hat_J','Magic Rabbit Hat','Armor',800,1,true,true,497,'bonus bInt,1; bonus bMaxSP,50; bonus4 bAutoSpellWhenHit,"MG_FIREBOLT",3,10,3; bonus4 bAutoSpellWhenHit,"MG_COLDBOLT",3,10,3; bonus4 bAutoSpellWhenHit,"MG_LIGHTNINGBOLT",3,10,3; bonus3 bAutoSpellWhenHit,"AL_HEAL",1,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_head_top`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (5562,'Good_Wedding_Veil_J','Luxurious Wedding Veil','Armor',500,1,true,true,45,489,'bonus bMdef,10; bonus bVariableCastrate,-3; bonus bUseSPrate,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`view`,`script`) VALUES (5563,'Dolor_Hat','Dolor Hat','Armor',20,100,1,1,true,547,'bonus3 bAutoSpell,"PR_LEXAETERNA",1,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5564,'Crown_Of_Deceit','Crown of Deceit','Armor',20,300,3,1,true,true,85,true,544,'.@r = getrefine(); bonus bInt,4; bonus bMdef,10; bonus bVariableCastrate,-10; if(.@r==7||.@r==8){ bonus bDef,2; bonus bMatkRate,5; bonus bVariableCastrate,-5; } if(.@r>=9){ bonus bMdef,5; bonus bMatkRate,5; bonus bVariableCastrate,-5; bonus bDelayrate,-5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_mid`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5565,'Dragon_Arhat_Mask','Dragon Arhat Mask','Armor',5,true,true,1,545,100,true,'bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_mid`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5566,'Tiger_Arhat_Mask','Tiger Arhat Mask','Armor',1,true,true,1,546,100,true,'bonus2 bAddRace,RC_DemiHuman,2; bonus2 bAddRace,RC_Player_Human,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5567,'Bright_Fury','Bright Fury','Armor',20,300,1,1,true,1,true,548,100,true,'bonus bStr,1; bonus2 bAddClass,Class_All,2; bonus bAspdRate,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`refineable`,`view`,`script`) VALUES (5568,'Rabbit_Bonnet','Rabbit Bonnet','Armor',20,1000,1,true,true,true,549,'bonus bInt,2; bonus bDelayRate,-3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5569,'Gemini_Diadem','Gemini Diadem','Armor',20,300,6,1,true,true,550,100,true,'bonus bDex,2; bonus bMatkRate,2; if(getrefine()>6) { bonus bDex,1; bonus bMatk,30; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5570,'Gemini_Crown','Gemini Crown','Armor',20,300,6,1,true,true,551,100,true,'bonus bAgi,2; bonus bFlee,10; if(getrefine()>6) { bonus bHit,5; bonus bAtk,30; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5571,'Rasta_Wig','Rasta Wig','Armor',20,100,1,true,true,552,'bonus bStr,1; bonus3 bAutoSpellWhenHit,"BA_FROSTJOKER",1,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5572,'Savage_Baby_Hat','Savage Babe Hat','Armor',20,100,1,1,true,30,true,553,100,true,'bonus bVit,2; bonus2 bAddEff,Eff_Stun,500; bonus2 bSubRace,RC_Brute,-10; bonus2 bSubRace,RC_Player_Doram,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5573,'Bogy_Horn','Dokebi Horn','Armor',20,100,1,1,true,75,true,554,100,true,'bonus2 bAddMonsterDropItemGroup,IG_Jewel,100; bonus3 bAutoSpell,"MC_MAMMONITE",5,70;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (5574,'Pencil_In_Mouth','Well-Chewed Pencil','Armor',20,100,true,10,555,'bonus bHit,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`view`) VALUES (5575,'Onigiri_Hat','Rice Ball Hat','Armor',20,100,6,1,true,30,556); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_low`,`view`) VALUES (5576,'Japan_Winecup','Wine Cup','Armor',20,100,1,true,557); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`location_head_low`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5577,'Dark_Knight_MaskB','Dark Knight Mask','Armor',3000,5,true,true,true,80,true,479,100,true,'bonus bDex,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5578,'Voyage_Hat','Voyage Hat','Armor',200,10,1,true,true,236,'bonus bAgi,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5579,'Wanderer\'s_Sakkat','Wanderer\'s Sakkat','Armor',20,300,2,1,true,true,1,true,558,'bonus bFlee,3; .@r = getrefine(); if(.@r>=7){ bonus bFlee,2; bonus bAgi,2; } if(.@r>=9){ bonus bCritical,10; bonus bAspdRate,8; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`view`,`script`) VALUES (5580,'Red_Beret','Red Beret','Armor',20,100,3,true,559,'bonus bAllStats,3; bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5581,'Cancer_Diadem','Cancer Diadem','Armor',20,300,3,true,70,true,560,'bonus bInt,2; bonus2 bSubEle,Ele_Water,5; if(getrefine()>6) { bonus bMdef,1; bonus bHealPower,3; bonus bMatkRate,2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5582,'Cancer_Crown','Cancer Crown','Armor',20,300,3,true,70,true,561,'bonus bStr,2; bonus2 bSubEle,Ele_Water,5; if(getrefine()>6) { bonus bDef,1; bonus bBaseAtk,15; bonus bFlee,10; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (5583,'Para_Team_Hat','Eden Team Hat I','Armor',5,true,7,true,465,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5584,'Majestic_Evil_Horn','Majestic Evil Horns','Armor',400,2,true,1,true,562,100,true,'bonus2 bSubRace,RC_Demon,3; bonus2 bHPDrainRate,3,15; bonus2 bSPDrainRate,1,7; /*Gold PC Room bonus bSPGainValue,2; bonus bMagicSPGainValue,2; bonus2 bSubRace,RC_Demon,2;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5585,'Rune_Hairband','Rune Cloth Circlet','Armor',20,400,1,1,true,true,1,true,564,100,true,'bonus2 bSubEle,Ele_Neutral,3; bonus bHit,5; bonus2 bHPDrainRate,30,10; bonus2 bSPDrainRate,10,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5586,'Mosquito_Coil','Mosquito Coil','Armor',20,100,1,1,true,1,true,563,'bonus2 bAddDamageClass,1627,100; bonus2 bAddDamageClass,1095,20; bonus2 bAddDamageClass,1160,20; bonus2 bAddDamageClass,1105,20; bonus2 bAddDamageClass,1097,20; bonus2 bAddDamageClass,1051,20; bonus2 bAddDamageClass,1053,20; bonus2 bAddDamageClass,1054,20; bonus2 bAddDamageClass,1048,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (5587,'Mosquito_Coil_1Use','Mosquito Coil','Armor',100,1,true,1,true,563,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5588,'Leo_Crown','Leo Crown','Armor',20,300,3,true,1,true,565,'bonus bStr,2; bonus2 bSubEle,Ele_Fire,5; if(getrefine()>6) { bonus bDef,1; bonus bFlee,10; bonus3 bAutoSpell,"TK_SEVENWIND",4,50; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5589,'Leo_Diadem','Leo Diadem','Armor',20,300,3,true,1,true,566,'bonus bDex,2; bonus2 bSubEle,Ele_Fire,5; if(getrefine()>6) { bonus bFlee,10; bonus bAspdRate,3; autobonus "{ bonus bSplashRange,1; }",10,10000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5590,'K_Poring_Cake_Cap','Poring Cake Hat','Armor',20,200,1,true,true,417,'bonus bLuk,3; bonus bMdef,5; bonus bMaxHP,BaseLevel*2; bonus bMaxSP,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5591,'Desert_Prince','Desert Prince','Armor',20,100,3,1,true,30,567,'bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5592,'Sigrun\'s_Wing','Sigrun\'s Wings','Armor',20,100,2,true,80,568,100,true,true,true,true,true,true,true,'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; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5593,'K_Rabbit_Bonnet','Rabbit Bonnet','Armor',20,200,1,1,true,true,1,true,549,100,true,'bonus bBaseAtk,10; bonus bMatk,10; bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3; bonus bDelayRate,-3; if(getrefine()>6) { bonus2 bSubDefEle,Ele_All,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5594,'Donut_In_Mouth','Donut In Mouth','Armor',20,50,1,true,1,569,100,true,'bonus2 bHPRegenRate,1,10000; bonus bMaxHP,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5595,'Eye_Of_Juno','Eye Of Juno','Armor',20,400,2,1,true,1,true,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; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5596,'4Leaf_Clover_In_Mouth','Four Leaf Clover','Armor',20,2,true,1,571,100,true,true,true,true,true,true,true,true,'bonus bBaseAtk,5; bonus bMatk,5; bonus bMdef,2; /*Gold PC Room: bonus bAllStats,1; bonus2 bExpAddRace,RC_All,2; */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5597,'Bubble_Gum_In_Mouth','Bubble Gum In Mouth','Armor',20,2,true,1,572,100,true,true,true,true,true,true,true,true,'bonus bBaseAtk,5; bonus bMatk,5; bonus bMdef,2; /*Gold PC Room: bonus bAllStats,1; bonus2 bDropAddClass,Class_All,5; */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5598,'Virgo_Crown','Virgo Crown','Armor',20,300,3,true,70,true,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; }"; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5599,'Virgo_Diadem','Virgo Diadem','Armor',20,300,3,1,true,70,true,574,'bonus bAspdRate,3; bonus2 bSubEle,Ele_Earth,5; if(getrefine()>6) bonus3 bAutoSpell,"MO_BALKYOUNG",1,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5600,'Br_Twin_Ribbon','Brazil Twin Ribbon','Armor',20,100,1,true,1,true,575,'bonus bAllStats,3; bonus bMdef,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5601,'Br_Beret','Brazil Beret','Armor',20,100,1,true,1,true,576,'bonus bAllStats,3; bonus bMdef,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_mid`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (5602,'Jaguar_Hat_J','Jaguar Hat J','Armor',20,300,1,true,true,50,530,'bonus2 bAddEle,Ele_Fire,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5603,'RTC_Winner_Only','RTC First Place','Armor',250,8,1,true,1,true,577,100,true,true,true,true,true,true,true,'bonus bAllStats,3; bonus bAspdRate,10; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5604,'RTC_Second_Best','RTC Second Place','Armor',250,6,1,true,1,true,578,100,true,true,true,true,true,true,true,'bonus bAllStats,2; bonus bAspdRate,7; bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player_Human,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5605,'RTC_Third_Best','RTC Third Place','Armor',250,4,1,true,1,true,579,100,true,true,true,true,true,true,true,'bonus bAllStats,1; bonus bAspdRate,5; bonus2 bAddRace,RC_DemiHuman,1; bonus2 bAddRace,RC_Player_Human,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5606,'Campume_Hat','Champune Hat','Armor',500,1200,4,true,3,true,580,'bonus bAllStats,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5607,'Lyria_Doll_Hat','Lyria Doll Hat','Armor',500,1,true,60,581,'bonus bMaxHP,500; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5608,'Dorothy_Doll_Hat','Dorothy Doll Hat','Armor',500,1,true,60,582,'bonus bMaxSP,80; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5609,'Chung_Hairband','Chung Hairband','Armor',500,5,1,true,60,583,100,true,'bonus bLuk,3; bonus bMdef,4; bonus3 bAutoSpellWhenHit,"MC_MAMMONITE",5,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (5610,'Ice_Wing_Ear','Ice Wing Ear','Armor',100,true,10,584,'bonus bLuk,1; bonus3 bAutoSpellWhenHit,"MG_COLDBOLT",5,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5611,'Turtle_Hat','Turtle Hat','Armor',300,true,10,true,585,'bonus bAgi,1; bonus3 bAutoSpellWhenHit,"AL_DECAGI",3,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5612,'F_Blue_Drooping_Kitty','F Blue Drooping Kitty','Armor',250000,500,1,true,false,false,true,true,277,'bonus bMdef,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5613,'F_Flying_Angel','F Flying Angel','Armor',20,300,1,true,10,true,264,'bonus bInt,1; bonus bAgi,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_low`,`view`,`script`) VALUES (5614,'F_Smoking_Pipe_','F Smoking Pipe','Armor',20,100,true,false,false,true,55,'bonus bVit,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`view`) VALUES (5615,'F_Pair_Of_Red_Ribbon_','F Pair Of Red Ribbon','Armor',20,100,1,true,45,169); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5616,'F_Fish_On_Head_','F Fish On Head','Armor',20,500,2,true,50,true,149,'bonus bDex,1; bonus bAgi,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5617,'F_Hibiscus','F Hibiscus','Armor',20,200,true,10,210,'bonus bInt,1; bonus bDex,1; bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5618,'F_Cat_Hat','F Cat Hat','Armor',20,300,1,true,true,182,'bonus bLuk,2; bonus bMdef,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5619,'F_Bunny_Band_','F Bunny Band','Armor',20,100,2,true,true,15,'bonus bInt,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5620,'F_Magestic_Goat_TW','F Magestic Goat TW','Armor',20,800,5,true,true,true,true,true,true,true,true,true,true,41,'bonus bStr,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_acolyte`,`job_monk`,`job_priest`,`location_head_top`,`view`) VALUES (5621,'F_Sheep_Hat','F Sheep Hat','Armor',20,150,1,true,true,true,true,205); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5622,'F_Mini_Propeller_','F Mini Propeller','Armor',20,200,2,true,true,270,'bonus bDex,1; bonus bAgi,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5623,'F_Alice_Doll','F Alice Doll','Armor',20,500,1,true,false,false,true,30,208,'bonus bStr,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_mid`,`view`,`script`) VALUES (5624,'F_Red_Glasses','F Red Glasses','Armor',20,1,true,316,'bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5625,'F_Chick_Hat','F Chick Hat','Armor',20,100,1,true,10,311,'bonus bLuk,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5626,'F_White_Deviruchi_Cap','F White Deviruchi Cap','Armor',20,800,2,true,false,false,true,64,true,272,'bonus bStr,1; bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5627,'F_Vane_Hairpin','F Vane Hairpin','Armor',20,300,2,1,true,30,313,'bonus bAgi,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`view`) VALUES (5628,'F_Pecopeco_Hairband','F Pecopeco Hairband','Armor',20,3,true,314); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5629,'F_Vacation_Hat','F Vacation Hat','Armor',20,200,1,1,true,30,315,'bonus bVit,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5630,'F_Charming_Ribbon','F Charming Ribbon','Armor',20,400,1,1,true,10,true,211); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5631,'F_Water_Lily_Crown','F Water Lily Crown','Armor',20,200,1,true,30,312,'bonus bDex,1; bonus bAgi,1; bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5632,'F_Vanilmirth_Hat','F Vanilmirth Hat','Armor',20,1000,true,30,317,'bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5633,'F_Drooping_Bunny_','F Drooping Bunny','Armor',20,100,1,true,true,249,'bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5634,'F_Kettle_Hat','F Kettle Hat','Armor',20,600,4,true,30,true,318); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5635,'F_Dragon_Skull','F Dragon Skull','Armor',20,800,5,true,50,true,319); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`view`,`script`) VALUES (5636,'F_Ramen_Hat','F Ramen Hat','Armor',20,1,true,320,'bonus bDex,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5637,'F_Pink_Fur_Hat','F Pink Fur Hat','Armor',20,350,2,true,true,281,'bonus bLuk,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5638,'F_Puppy_Hat','F Puppy Hat','Armor',20,500,2,true,30,234,'bonus bAgi,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5639,'F_Magic_Eyes','F Magic Eyes','Armor',20,300,1,true,true,true,true,true,30,true,209,'bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`view`,`script`) VALUES (5640,'F_Jumping_Poring','F Jumping Poring','Armor',300,2,true,349,'bonus bLuk,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (5641,'F_Robo_Eye','F Robo Eye','Armor',20,200,1,true,10,345,'bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5642,'F_Yellow_Wizardry_Hat','F Yellow Wizardry Hat','Armor',20,300,1,true,true,true,true,true,true,286,'bonus bInt,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5643,'F_Crescent_Helm','F Crescent Helm','Armor',20,3000,8,true,true,true,true,true,true,true,true,50,true,213,'bonus bVit,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (5644,'F_Tiger_Mask','F Tiger Mask','Armor',20,400,2,true,true,50,181,'bonus bStr,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`refineable`,`view`) VALUES (5645,'F_Fantastic_Wig','F Fantastic Wig','Armor',20,100,1,true,true,true,308); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_head_top`,`location_head_mid`,`location_head_low`,`view`,`script`) VALUES (5646,'F_Whisper_Mask','F Whisper Mask','Armor',20,true,true,true,321,'bonus bAgi,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5647,'F_Bunny_Band_C','F Bunny Band C','Armor',1,9,true,1,15,'bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_low`,`equip_level_min`,`view`) VALUES (5648,'F_Centimental_Flower_C','F Centimental Flower C','Armor',1,1,true,false,false,true,1,56); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5649,'F_Apple_Of_Archer_C','F Apple Of Archer C','Armor',1,7,true,false,false,true,1,72,'bonus bDex,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (5650,'F_Elven_Ears_C','F Elven Ears C','Armor',1,2,true,false,false,true,1,73,'bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (5651,'F_Brooch_C','F Brooch C','Armor',1,true,false,false,true,true,1,'bonus bAgi,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`view`,`script`) VALUES (5652,'F_Magestic_Goat_C','F Magestic Goat C','Armor',2,5,true,false,false,true,41,'bonus bStr,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5653,'Darkness_Helm_J','Darkness Helm','Armor',20,500,3,1,true,70,true,586); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5654,'Holy_Marching_Hat_J','Holy Marching Hat','Armor',20,200,5,1,true,1,true,587,100,true,'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; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5655,'Dark_Snake_Lord_Hat_J','Evil Snake Lord Hat','Armor',20,500,2,true,60,true,372,'bonus bInt,2; bonus bAgi,2; bonus bDex,-2; autobonus "{ bonus bVariableCastrate,-50; bonus bFlee,30; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5656,'Scooter_Hat_J','Scooter Helmet','Armor',20,1000,7,1,true,50,true,588,'bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`view`) VALUES (5657,'Antique_Pipe_J','Captain\'s Pipe','Armor',20,100,true,30,383); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5658,'Imp_Hat','Imp Hat','Armor',20,400,1,1,true,1,true,589,100,true,'bonus3 bAutoSpell,"SA_FLAMELAUNCHER",1,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5659,'Sleepr_Hat','Sleeper Hat','Armor',20,400,1,true,1,true,590,'bonus3 bAutoSpell,"SA_SEISMICWEAPON",1,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5660,'Gryphon_Hat','Gryphon Hat','Armor',20,400,1,1,true,1,true,591,100,true,'bonus bAgi,2; if (getrefine() > 6) { bonus bAgi,2; } if (getrefine() > 8) { bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5661,'Red_Pirate_Bandana','Red Pirate Bandana','Armor',3,true,10,true,592,'bonus bStr,1; bonus bDex,1; bonus bAspdRate,2; bonus bVariableCastrate,-2; bonus3 bAutoSpell,"MO_EXTREMITYFIST",1,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5662,'Libra_Crown','Libra Crown','Armor',10,300,3,true,1,true,593,'bonus bDex,3; bonus2 bSubEle,Ele_Wind,7; if (getrefine()>=7) { bonus bMatkRate,3; } if (getrefine()>=9) { bonus bMatkRate,5; bonus3 bAutoSpellWhenHit,"WZ_FROSTNOVA",5,20;}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5663,'Libra_Diadem','Libra Diadem','Armor',10,300,3,true,1,true,594,'bonus bBaseAtk,7; if (getrefine()>=7) { bonus3 bAutoSpell,"TK_SEVENWIND",2,5; } if (getrefine()>=9) { bonus bFlee,5; bonus2 bAddClass,Class_All,3; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (5664,'Filir_Wing','Filir\'s Pinions','Armor',20,100,1,true,70,595,'bonus bAspdRate,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5665,'Shaman_Hat','Shaman Hat','Armor',20,400,1,1,true,1,true,596,100,true,'bonus bMdef,5; bonus2 bSubEle,Ele_Neutral,3; bonus2 bSubEle,Ele_Water,3; bonus2 bSubEle,Ele_Earth,3; bonus2 bSubEle,Ele_Fire,3; bonus2 bSubEle,Ele_Wind,3; bonus2 bSubEle,Ele_Poison,3; bonus2 bSubEle,Ele_Holy,3; bonus2 bSubEle,Ele_Dark,3; bonus2 bSubEle,Ele_Ghost,3; bonus2 bSubEle,Ele_Undead,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5666,'Golden_Crown','Golden Crown','Armor',20,500,8,1,true,1,true,597,100,true,'bonus bInt,1; bonus bDex,1; bonus bLuk,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5667,'Skull_Hood','Skull Hood','Armor',20,100,1,1,true,true,30,true,598,100,true,'bonus2 bSubRace,RC_Demon,10; bonus2 bSubRace,RC_Undead,10; if(getrefine()>=7) autobonus "{ bonus bCritical,30; bonus bHit,10; }",10,10000,0,"{ specialeffect2 EF_ENHANCE; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5668,'Weird_Pumpkin_Hat','Weird Pumpkin Hat','Armor',20,5,true,1,true,206,100,true,true,true,true,true,true,true,'bonus bMdef,5; bonus2 bAddMonsterDropItem,6097,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5669,'Poring_Party_Hat_J','Poring Party Hat J','Armor',20,300,1,true,1,true,340); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5670,'Aniv_Star_Hat','Aniv Star Hat','Armor',20,300,true,1,true,599); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5671,'Drooping_Morocc_Minion','Drooping Morocc Minion','Armor',20,300,1,true,70,600,'bonus bSPGainValue,2; bonus3 bAutoSpellWhenHit,"NPC_CRITICALWOUND",2,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5672,'Southern_Cross','Southern Cross','Armor',20,600,3,1,true,50,true,601,'bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5673,'Home_Cherry_Blossom','Home Cherry Blossom','Armor',20,100,2,1,true,30,true,602,'bonus bNoCastCancel; bonus bVariableCastrate,35;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`) VALUES (5674,'Pig_Moneybox','Pig Moneybox','Armor',20,1000,3,true,10,603); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (5675,'Poring_Letter','Poring Letter','Armor',20,100,true,10,604,'bonus2 bAddMonsterDropItem,619,10; bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5676,'Scorpio_Crown','Scorpio Crown','Armor',20,300,3,true,1,true,605,'bonus bAspdRate,3; bonus2 bSubEle,Ele_Water,5; .@r = getrefine(); if (.@r>6) { bonus3 bAutoSpell,"TK_SEVENWIND",3,20; } if (.@r>7) { bonus bAspdRate,2; } if (.@r>8) { bonus3 bAutoSpell,"WZ_FROSTNOVA",5,10; } if (.@r>9) { bonus bAspdRate,2; bonus bBaseAtk,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5677,'Scorpio_Diadem','Scorpio Diadem','Armor',20,300,3,true,1,true,606,'bonus bDex,2; if (getrefine()>6) { bonus bDex,1; bonus bAtk,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5678,'Notation_Hairband','Notation Hairband','Armor',200,100,5,true,1,true,607,'bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5679,'Engineer_Cap','Engineer Cap','Armor',20,200,2,1,true,10,true,608,'bonus2 bAddRace,RC_Formless,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (5680,'Hawkeyes','Hawkeyes','Armor',20,100,true,10,609,'bonus bHit,10; bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`gender`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5681,'F_Ribbon_Green','Green Ribbon','Armor',800,100,1,'Female',true,true,244,'bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5682,'Triangle_Rune_Cap','Triangle Rune Cap','Armor',20,300,5,1,true,1,true,610,100,true,'bonus bInt,1; 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; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5683,'Majestic_Goat_Repl','Baphomet Horns','Armor',20,100,5,true,1,true,41); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5684,'Jewel_Crown_Repl','Ornate Crown','Armor',20,100,5,true,1,true,88); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5685,'Prontera_Army_Cap_Repl','Army Cap','Armor',20,100,5,true,1,true,48); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5686,'Feather_Bonnet_Repl','Nice Hat Feather','Armor',20,100,5,true,1,true,104); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5687,'Viking_Helm_Repl','Orc Helm','Armor',20,100,5,true,1,true,86); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5688,'2009Love_Daddy','2009 Love Dad','Armor',20,100,3,true,1,true,611,'bonus bVit,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5689,'Queen_Ant_Diadem','Queen Ant Diadem','Armor',20,300,1,true,75,true,612,'bonus3 bAutoSpellWhenHit,"MG_SIGHT",1,5; bonus2 bSubRace,RC_Insect,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5690,'Red_Wing_Hat','Red Wing Hat','Armor',20,600,5,true,1,true,613,'bonus bHPrecovRate,20; bonus bSPrecovRate,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5691,'Catain_Bandanna','Sailor\'s Bandana','Armor',20,10,1,true,1,true,542,'bonus bDex,1; bonus2 bSubEle,Ele_Poison,20; bonus2 bResEff,Eff_Poison,2000; bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5692,'Sea_Cat_Hat','Sea Cat Hat','Armor',20,10,1,true,1,true,539,'bonus bDex,1; bonus2 bResEff,Eff_Curse,2000; bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5693,'No_Fear_Underware','No Fear Underwear','Armor',10,true,20,30,'bonus bStr,1; bonus bInt,1; bonus bDex,1; bonus bMaxHP,700; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5694,'No_Fear_P_Headgear','No Fear P Headgear','Armor',1,true,false,false,true,20,614,'bonus bVit,1; bonus bMaxHP,100; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`class_normal`,`class_upper`,`class_baby`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5695,'E_Blue_Drooping_Kitty','E Blue Drooping Kitty','Armor',250000,500,1,true,true,true,true,true,277,'bonus bMdef,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5696,'E_Flying_Angel','E Flying Angel','Armor',20,300,1,true,10,true,264,'bonus bInt,1; bonus bAgi,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`class_normal`,`class_upper`,`class_baby`,`location_head_low`,`view`,`script`) VALUES (5697,'E_Smoking_Pipe_','E Smoking Pipe','Armor',20,100,true,true,true,true,55,'bonus bVit,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`class_normal`,`class_upper`,`class_baby`,`location_head_mid`,`equip_level_min`,`view`) VALUES (5698,'E_Pair_OE_Red_Ribbon_','E Pair OE Red Ribbon','Armor',20,100,1,true,true,true,true,45,169); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5699,'E_Fish_On_Head_','E Fish On Head','Armor',20,500,2,true,50,true,149,'bonus bDex,1; bonus bAgi,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5700,'E_Hibiscus','E Hibiscus','Armor',20,200,true,10,210,'bonus bInt,1; bonus bDex,1; bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5701,'E_Cat_Hat','E Cat Hat','Armor',20,300,1,true,true,182,'bonus bLuk,2; bonus bMdef,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5702,'E_Bunny_Band_','E Bunny Band','Armor',20,100,2,true,true,15,'bonus bInt,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5703,'E_Magestic_Goat_TW','E Magestic Goat TW','Armor',20,800,5,true,true,true,true,true,true,true,true,true,true,41,'bonus bStr,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_acolyte`,`job_monk`,`job_priest`,`location_head_top`,`view`) VALUES (5704,'E_Sheep_Hat','E Sheep Hat','Armor',20,150,1,true,true,true,true,205); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`class_normal`,`class_upper`,`class_baby`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5705,'E_Mini_Propeller_','E Mini Propeller','Armor',20,200,2,true,true,true,true,true,270,'bonus bDex,1; bonus bAgi,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5706,'E_Alice_Doll','E Alice Doll','Armor',20,500,1,true,false,false,true,30,208,'bonus bStr,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_mid`,`view`,`script`) VALUES (5707,'E_Red_Glasses','E Red Glasses','Armor',20,1,true,316,'bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5708,'E_Chick_Hat','E Chick Hat','Armor',20,100,1,true,10,311,'bonus bLuk,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5709,'E_White_Deviruchi_Cap','E White Deviruchi Cap','Armor',20,800,2,true,false,false,true,64,true,272,'bonus bStr,1; bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5710,'E_Vane_Hairpin','E Vane Hairpin','Armor',20,300,2,1,true,30,313,'bonus bAgi,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`view`) VALUES (5711,'E_Pecopeco_Hairband','E Pecopeco Hairband','Armor',20,3,true,314); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5712,'E_Vacation_Hat','E Vacation Hat','Armor',20,200,1,1,true,30,315,'bonus bVit,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5713,'E_Charming_Ribbon','E Charming Ribbon','Armor',20,400,1,1,true,10,true,211); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`class_normal`,`class_upper`,`class_baby`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5714,'E_Water_Lily_Crown','E Water Lily Crown','Armor',20,200,1,true,true,true,true,30,312,'bonus bDex,1; bonus bAgi,1; bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5715,'E_Vanilmirth_Hat','E Vanilmirth Hat','Armor',20,1000,true,30,317,'bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`class_normal`,`class_upper`,`class_baby`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5716,'E_Drooping_Bunny_','E Drooping Bunny','Armor',20,100,1,true,true,true,true,true,249,'bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5717,'E_Kettle_Hat','E Kettle Hat','Armor',20,600,4,true,30,true,318); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5718,'E_Dragon_Skull','E Dragon Skull','Armor',20,800,5,true,50,true,319); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`view`,`script`) VALUES (5719,'E_Ramen_Hat','E Ramen Hat','Armor',20,1,true,320,'bonus bDex,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5720,'E_Pink_Fur_Hat','E Pink Fur Hat','Armor',20,350,2,true,true,281,'bonus bLuk,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5721,'E_Puppy_Hat','E Puppy Hat','Armor',20,500,2,true,30,234,'bonus bAgi,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5722,'E_Magic_Eyes','E Magic Eyes','Armor',20,300,1,true,true,true,true,true,30,true,209,'bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`view`,`script`) VALUES (5723,'E_Jumping_Poring','E Jumping Poring','Armor',300,2,true,349,'bonus bLuk,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (5724,'E_Robo_Eye','E Robo Eye','Armor',20,200,1,true,10,345,'bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5725,'E_Yellow_Wizardry_Hat','E Yellow Wizardry Hat','Armor',20,300,1,true,true,true,true,true,true,286,'bonus bInt,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5726,'E_Crescent_Helm','E Crescent Helm','Armor',20,3000,8,true,true,true,true,true,true,true,true,50,true,213,'bonus bVit,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (5727,'E_Tiger_Mask','E Tiger Mask','Armor',20,400,2,true,true,50,181,'bonus bStr,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`refineable`,`view`) VALUES (5728,'E_Fantastic_Wig','E Fantastic Wig','Armor',20,100,1,true,true,true,308); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5729,'E_Bunny_Band_C','E Bunny Band C','Armor',1,9,true,1,15,'bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_low`,`equip_level_min`,`view`) VALUES (5730,'E_Centimental_Flower_C','E Centimental Flower C','Armor',1,1,true,false,false,true,1,56); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5731,'E_Apple_OE_Archer_C','E Apple OE Archer C','Armor',1,7,true,false,false,true,1,72,'bonus bDex,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (5732,'E_Elven_Ears_C','E Elven Ears C','Armor',1,2,true,false,false,true,1,73,'bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (5733,'E_Brooch_C','E Brooch C','Armor',1,true,false,false,true,true,1,'bonus bAgi,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`view`,`script`) VALUES (5734,'E_Magestic_Goat_C','E Magestic Goat C','Armor',2,5,true,false,false,true,41,'bonus bStr,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`gender`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5735,'E_Ribbon_Green','Green Ribbon','Armor',800,100,1,'Female',true,true,244,'bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_head_top`,`location_head_mid`,`location_head_low`,`view`,`script`) VALUES (5736,'EF_Whisper_Mask','Whisper Mask','Armor',20,true,true,true,321,'bonus bAgi,3; bonus2 bSubEle,Ele_Ghost,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5737,'Cactus_Hat','Cactus Hat','Armor',20,300,1,true,1,615,'bonus3 bAddMonsterDropItem,952,RC_Plant,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5738,'Snowman_Hat','Snowman Hat','Armor',20,300,4,1,true,1,true,616,100,true,'bonus bStr,1; bonus bInt,1; bonus bMdef,3; bonus2 bSubEle,Ele_Water,7; bonus2 bAddMonsterDropItem,12354,100; bonus2 bAddMonsterDropItem,530,300; bonus5 bAutoSpellwhenhit,"BA_FROSTJOKER",(getrefine()>7?5:1),20,BF_WEAPON|BF_MAGIC,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5739,'Sagittarius_Crown','Sagittarius Crown','Armor',20,300,3,1,true,1,true,617,'bonus bDex,2; bonus2 bSubEle,Ele_Fire,7; .@r = getrefine(); if (.@r>6) { bonus bAspdRate,2; } if (.@r>7) { bonus bAgi,2; } if (.@r>8) { bonus bLongAtkRate,5; } if (.@r>9) { autobonus "{ bonus bAgi,10; bonus bDex,10; }",3,10000,0,"{ specialeffect2 EF_ENHANCE; }"; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5740,'Sagittarius_Diadem','Sagittarius Diadem','Armor',20,300,3,1,true,1,true,618,'bonus bDex,2; bonus bMdef,3; bonus2 bSubEle,Ele_Fire,7; .@r = getrefine(); if (.@r>6) { bonus bVariableCastrate,-3; } if (.@r>7) { bonus5 bAutoSpell,"WZ_SIGHTRASHER",10,5,BF_MAGIC,0; } if (.@r>8) { bonus bVariableCastrate,-2; } if (.@r>9) { bonus bMatkRate,4; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5741,'Im_Egg_Shell_Hat','Eternal Egg Shell','Armor',20,1,true,10,true,101,'bonus2 bAddItemGroupHealRate,IG_Potion,10; bonus bHealPower2,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5742,'Rudolf_Santa_Hat','Rudolph Santa Hat','Armor',20,400,5,true,10,true,619,'bonus2 bAddMonsterDropItem,538,100; bonus2 bAddMonsterDropItem,539,100; bonus2 bAddItemHealRate,538,100; bonus2 bAddItemHealRate,539,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5743,'Orange_Stem_Hat','Orange Stem Hat','Armor',20,100,true,1,620,'bonus bLuk,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5744,'Capricorn_Crown','Capricorn Crown','Armor',20,300,3,1,true,1,true,621,'bonus bVit,2; bonus bDex,2; if (getrefine()>6) { bonus3 bAutoSpell,"TK_SEVENWIND",1,500; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5745,'Capricorn_Diadem','Capricorn Diadem','Armor',20,300,3,true,1,true,622,'bonus bDex,2; bonus bMdef,5; bonus2 bSubEle,Ele_Earth,5; .@r = getrefine(); if (.@r>6) { bonus bInt,2; } if (.@r>7) { bonus bVariableCastrate,-3; } if (.@r>8) { bonus bHealPower2,4; } if (.@r>9) { bonus3 bAutoSpell,"BS_HAMMERFALL",5,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5746,'Rune_Circlet','Rune Circlet','Armor',20,100,12,1,true,true,true,true,true,100,true,623,100,true,true,true,true,true,true,'bonus bStr,1; bonus bInt,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,10; bonus bMatk,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5747,'Mitra','Mitra','Armor',20,100,12,1,true,true,true,true,true,100,true,624,100,true,true,true,true,true,true,'bonus bVit,1; bonus bInt,1; bonus bMdef,5; bonus bHealPower,5; if(readparam(bInt)>=120){ bonus bMatk,10; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5748,'Sniper_Goggle','Sniper Goggles','Armor',20,100,12,1,true,true,true,true,true,true,100,true,625,100,true,true,true,true,true,true,'bonus bAgi,1; bonus bDex,1; bonus bMdef,5; if(readparam(bAgi)>=120){ bonus bLongAtkRate,4; bonus bAspd,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5749,'Driver_Band','Driver Band','Armor',20,100,12,1,true,true,true,true,'Male',true,100,true,626,100,true,true,true,true,true,true,'bonus bStr,1; bonus bDex,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,10; bonus bCritical,3; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5750,'Shadow_Handicraft','Shadow Crown','Armor',20,100,12,1,true,true,true,true,true,100,true,627,100,true,true,true,true,true,true,'bonus bAgi,1; bonus bInt,1; bonus bMdef,5; if(readparam(bAgi)>=120){ bonus bBaseAtk,10; bonus bFlee,3; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5751,'Minstrel_Song_Hat','Minstrel Song Hat','Armor',20,100,12,1,true,true,true,true,'Male',true,100,true,628,100,true,true,true,true,true,true,'bonus bInt,1; bonus bLuk,1; bonus bMdef,5; bonus bLongAtkRate,5; bonus2 bSkillUseSP,"MI_RUSH_WINDMILL",10; bonus2 bSkillUseSP,"MI_ECHOSONG",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5752,'Midas_Whisper','Midas Whispers','Armor',20,100,12,1,true,true,true,true,true,100,true,629,100,true,true,true,true,true,true,'bonus bStr,1; bonus bDex,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,5; bonus bAspd,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5753,'Magic_Stone_Hat','Magic Stone Hat','Armor',20,100,12,1,true,true,true,true,true,100,true,630,100,true,true,true,true,true,true,'bonus bInt,1; bonus bDex,1; bonus bMdef,5; if(readparam(bDex)>=120){ bonus bMatk,10; bonus bVariableCastrate,-2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_monk`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5754,'Blazing_Soul','Burning Spirit','Armor',20,100,12,1,true,true,true,true,true,100,true,631,100,true,true,true,true,true,true,'bonus bStr,1; bonus bVit,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,10; bonus bHit,3; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_mid`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5755,'Silent_Executer','Silent Enforcer','Armor',20,100,12,true,true,true,true,true,true,100,632,100,true,true,true,true,true,true,'bonus bAgi,1; bonus bMdef,5; if(readparam(bAgi)>=120){ bonus bBaseAtk,10; bonus bFlee2,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5756,'Wind_Whisper','Wispers of Wind','Armor',20,100,12,1,true,true,true,true,true,100,true,633,100,true,true,true,true,true,true,'bonus bInt,1; bonus bDex,1; bonus bMdef,5; if(readparam(bInt)>=120){ bonus bMatk,10; bonus bFlee,3; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5757,'Schmidt_Helm','Reissue Schmitz Helm','Armor',20,100,12,1,true,true,true,true,true,true,100,true,634,100,true,true,true,true,true,true,'bonus bVit,2; bonus bInt,1; bonus bMdef,5; if(readparam(bInt)>=120){ bonus bMatk,10; bonus bDef,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5758,'Dying_Swan','Resting Swan','Armor',20,100,17,1,true,true,true,true,'Female',true,100,true,635,100,true,true,true,true,true,true,'bonus bInt,1; bonus bLuk,1; bonus bMdef,5; bonus bLongAtkRate,5; bonus2 bSkillUseSP,"WA_SWING_DANCE",10; bonus2 bSkillUseSP,"WA_SYMPHONY_OF_LOVER",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5759,'Noah_Hat','Noah Hat','Armor',20,500,1,1,true,1,true,636,'bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5760,'Driver_Band_','Driver Band','Armor',20,100,12,1,true,true,true,true,'Female',true,100,true,637,100,true,true,true,true,true,true,'bonus bStr,1; bonus bDex,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,10; bonus bCritical,3; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5761,'Sloth_Hat','Sloth Hat','Armor',20,800,3,true,1,true,638,'bonus bAgi,2; bonus3 bAutoSpell,"AS_SONICBLOW",5,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5762,'Duneyrr_Helm','Duneyrr Helm','Armor',20,100,5,true,1,true,639,'bonus bAllStats,1; bonus bMdef,5; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; bonus2 bSubRace,RC_Brute,2; bonus2 bSubRace,RC_Player_Doram,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5763,'Red_Bunny_Band','Red Bunny Band','Armor',200,4,true,1,true,640,'bonus bAgi,2; bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (5764,'Love_Rabbit_Hood','Love Rabbit Hood','Armor',20,300,1,1,true,true,true,10,549,'bonus3 bAutoSpell,"PR_GLORIA",3,((readparam(bAgi)>=80)?30:10);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5765,'Black_Tail_Ribbon','Black Tail Ribbon','Armor',20,100,1,true,10,true,642,'bonus bMdef,5; bonus bLongAtkDef,10; bonus2 bSubEle,Ele_Neutral,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5766,'Amistr_Cap','Amistr Cap','Armor',20,500,4,1,true,1,true,643,100,true,'bonus bVit,1+(getrefine()/2); bonus5 bAutoSpell,"KN_PIERCE",5,10,BF_WEAPON,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5767,'Samurai_Mask','Samurai Mask','Armor',20,300,1,true,50,644,100,true,'bonus2 bAddClass,Class_All,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5768,'Sakura_Coronet','Sakura Coronet','Armor',20,800,1,1,true,1,true,645,'bonus bMdef,3; bonus bMaxSP,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5769,'Gold_Angel_Sculpture','Gold Angel Sculpture','Armor',100,2,true,70,646,'skill "RG_GRAFFITI",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5770,'Splash_Hat','Splash Hat','Armor',20,100,3,1,true,1,true,649,'autobonus "{}",3,180000,BF_WEAPON,"{ sc_start SC_WINDWEAPON,180000,1; specialeffect2 EF_ENHANCE; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5771,'Family_Hat','Family Hat','Armor',20,100,3,1,true,1,true,650,'bonus bDex,1; bonus bMdef,1; bonus bMaxHPrate,2; bonus bMaxSPrate,2; skill "PR_MAGNIFICAT",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5772,'Red_Navy_Hat','Red Navy Hat','Armor',3000,500,1,true,95,true,651,'bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5773,'Navy_Beret','Navy Beret','Armor',3000,500,1,true,95,true,652,'bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5774,'Red_Pirate_Hat','Red Pirate Hat','Armor',3000,500,1,true,95,true,496,'bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (5775,'Choco_Donut_In_Mouth','Choco Donut In Mouth','Armor',20,50,1,true,1,653,'bonus bMaxHP,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5776,'Blazing_Sun','Blazing Sun','Armor',500,true,1,true,654,'bonus2 bVariableCastrate,"MG_FIREBOLT",-5; bonus2 bSkillAtk,"MG_FIREBOLT",5; bonus2 bVariableCastrate,"MG_FIREBALL",-5; bonus2 bSkillAtk,"MG_FIREBALL",5; bonus2 bSkillAtk,"MG_FIREWALL",3; bonus2 bSkillAtk,"WZ_METEOR",3; bonus bUseSPrate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5777,'Remover_Hat','Remover Hat','Armor',20,800,2,true,30,655,'bonus bMdef,1; bonus3 bAddMonsterDropItem,713,RC_Formless,200; bonus3 bAddMonsterDropItem,971,RC_Formless,30; bonus3 bAddMonsterDropItem,972,RC_Formless,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5778,'Blue_Arara_Hat','Blue Arara Hat','Armor',20,100,3,true,1,true,656,'bonus bStr,2; autobonus "{ bonus bAspdRate,5; }",10,10000,0,"{ specialeffect2 EF_ENHANCE; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5779,'Drooping_Boto','Drooping Boto','Armor',20,100,3,true,1,true,657,'bonus bInt,2; autobonus "{ bonus bMatkRate,3; }",10,10000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5780,'Tendrilion_Hat','Tendrilion Hat','Armor',20,100,true,1,true,658,'skill "WZ_EARTHSPIKE",3; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`view`,`script`) VALUES (5781,'Persika','Persika','Armor',20,100,1,true,659,'bonus bFlee,1; bonus bMaxSP,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`location_head_low`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5782,'Hoplite_Helmet','Hoplite Helmet','Armor',20,700,4,1,true,true,true,1,true,660,'bonus bMaxHPrate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5783,'YellowBunny_Hairband','YellowBunny Hairband','Armor',20,200,true,1,true,662,'bonus bStr,1; bonus bInt,1; bonus bDex,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5784,'PinkBunny_Hairband','PinkBunny Hairband','Armor',20,200,true,1,true,663,'bonus bStr,1; bonus bInt,2; bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5785,'Green_Bunny_Hairband','Green Bunny Hairband','Armor',20,200,true,1,true,664,'bonus bStr,2; bonus bInt,1; bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5786,'Ancient_Elven_Ear','Ancient Elven Ear','Armor',10,200,1,true,1,665,100,true,true,true,true,true,true,true,'bonus bLuk,1; bonus bMaxHP,100; bonus bMaxSP,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (5787,'Tha_Maero_Mask','Tha Maero Mask','Armor',20,100,true,true,30,666,'bonus bMdef,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5788,'3D_Glasses','3D Glasses','Armor',20,100,1,true,1,661,100,true,true,true,true,true,true,true,'bonus2 bMagicAddRace,RC_Formless,4; bonus2 bSubEle,Ele_Neutral,5; bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (5789,'Thanatos_Mal_Mask','Thanatos Mal Mask','Armor',20,100,3,true,true,30,667,'bonus bVit,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5790,'Holy_Mom_Love','TM','Armor',20,500,1,true,true,45,true,610,'bonus2 bSubRace,RC_Demon,-5; bonus2 bSubRace,RC_Undead,-5; bonus3 bAutoSpell,"AL_BLESSING",1,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5791,'Tenkaippin_Ramen','Tenkaippin Ramen','Armor',20,500,1,true,30,668,'bonus bInt,-1; bonus bDex,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5792,'Fish_Pin','Fish Pin','Armor',20,100,3,true,1,true,669,'bonus2 bSubRace,RC_Fish,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_mid`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5793,'Ribbon_Of_Life','Ribbon Of Life','Armor',20,2,true,1,575,100,true,true,true,true,true,true,true,true,'bonus bInt,1; bonus bMdef,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`location_head_mid`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5794,'3D_Glasses_','3D Glasses','Armor',20,1,1,true,1,661,100,true,true,true,true,true,true,true,true,'.@tmp = BaseLevel/30; if(BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Archer||BaseClass==Job_Gunslinger) { bonus bBaseAtk,(3+.@tmp); } else if(BaseClass==Job_Mage||BaseClass==Job_Acolyte||BaseClass==Job_Ninja||BaseClass==Job_Soul_Linker) { bonus bMatk,(3+.@tmp); } else if(BaseClass==Job_Thief) { bonus bFleeRate,(1+.@tmp); } else if(BaseClass==Job_Novice||BaseClass==Job_SuperNovice||BaseClass==Job_Taekwon||BaseClass==Job_Star_Gladiator||BaseClass==Job_Star_Gladiator2) { bonus bMaxHP,(50+BaseLevel); bonus bMaxSP,(50+.@tmp); }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5795,'Red_Dress_Hat','Bright Red Dress Hat','Armor',20,200,1,true,1,true,670,'bonus bMdef,7+(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5796,'Cheer_Scarf','Cheer Scarf','Armor',true,1,369,100,true,true,true,true,true,true,true,'bonus2 bExpAddClass,Class_All,10; bonus bMaxHP,200; bonus bMaxSP,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5797,'Cheer_Scarf2','Cheer Scarf2','Armor',true,1,369,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddClass,Class_All,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5798,'Cheer_Scarf3','Cheer Scarf3','Armor',true,1,369,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddClass,Class_All,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5799,'Cheer_Scarf4','Cheer Scarf4','Armor',true,1,369,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddClass,Class_All,40;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`view`,`script`) VALUES (5800,'Blush_Of_Groom','Blush of Groom','Armor',20,50,true,125,'bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5801,'Ribbon_Of_Bride','Red Tailed Ribbon','Armor',20,100,5,true,true,167,'bonus bAllStats,2; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus3 bAutoSpellWhenHit,"AL_HEAL",(getskilllv("AL_HEAL")==10?10:5),20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`) VALUES (5802,'Upgrade_Elephant_Hat','Upgraded Elephant Hat','Armor',500,3,1,true,true,215); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5803,'Flower_Love_Hat','Love Flower Hat','Armor',20,100,2,true,true,5,'bonus2 bAddMonsterDropItem,608,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`view`) VALUES (5804,'Pirate_Eyepatch','Pirate Eye Bandage','Armor',1000,100,true,13); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5805,'Victorious_Coronet','Victorious Coronet','Armor',150,1,true,70,43,100,true,true,true,true,true,true,true,'bonus bMaxHPrate,15; bonus bSPrecovRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (5806,'Poem_Natalia_Hat','Poet Natalie\'s Hat','Armor',20,300,5,true,67,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5807,'October_Fest_Cap','October Fest Cap','Armor',20,100,1,true,false,false,true,50,true,104); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_head_top`,`location_head_mid`,`location_head_low`,`refineable`,`view`,`script`) VALUES (5808,'Diabolus_Helmet','Dark Bacilium','Armor',20,250,5,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,364,'.@r = getrefine(); bonus2 bResEff,Eff_Stone,2000+(.@r*200); bonus2 bResEff,Eff_Freeze,2000+(.@r*200); bonus2 bResEff,Eff_Stun,2000+(.@r*200);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5809,'Boom_Boom_Hat','Boom Boom Hat','Armor',100,6,true,216,100,true,true,true,true,true,true,'bonus bAllStats,5; bonus bSpeedRate,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5810,'Ph.D_Hat_V','Ph.D Hat V','Armor',20,100,3,true,false,false,true,true,98,'bonus bInt,5; bonus bVit,3; bonus bDex,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_low`,`view`,`script`) VALUES (5811,'Santa_Beard','Santa\'s Beard','Armor',20,100,5,true,25,'bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5812,'Hat_Of_Expert','Hat Of Expert','Armor',2,true,true,16,100,true,true,true,true,true,true,true,true,'bonus3 bAddEffWhenHit,Eff_Bleeding,500,ATF_TARGET|ATF_SELF; bonus3 bAddEffWhenHit,Eff_Silence,500,ATF_TARGET|ATF_SELF; bonus3 bAddEffWhenHit,Eff_Confusion,500,ATF_TARGET|ATF_SELF; bonus3 bAddEffWhenHit,Eff_Curse,500,ATF_TARGET|ATF_SELF; bonus3 bAddEffWhenHit,Eff_Blind,500,ATF_TARGET|ATF_SELF;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5813,'Red_Ph.D_Hat','Red Ph.D Hat','Armor',1000,500,true,true,481,'bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`location_head_mid`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (5814,'Ati_Atihan_Hat3','Ati Atihan Hat3','Armor',20,2,true,true,true,20,303,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5815,'Classic_Hat_J','Classic Hat','Armor',20,500,2,true,true,475,'bonus bStr,1; bonus2 bSubSize,Size_All,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5816,'Cowboy_Hat_J','Purple Cowboy Hat','Armor',20,500,true,true,411,'bonus bBaseAtk,15; bonus bFlee,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5817,'Valentine_Pledge','Valentine Pledge','Armor',20,3,true,true,100,true,true,true,true,true,true,true,true,'bonus bAllStats,2; bonus bMdef,3; bonus bHealPower,10; bonus2 bAddClass,Class_All,3; bonus bMatkRate,3; bonus bFlee,10; bonus bAspdRate,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5818,'Carnival_Hat','Carnival Hat','Armor',6,true,true,505,100,true,true,true,true,true,true,true,true,'bonus bAllStats,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5819,'Carnival_Circlet','Carnival Circlet','Armor',6,true,true,506,100,true,true,true,true,true,true,true,true,'bonus bAllStats,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (5820,'Black_Elven_Ears','Black Elven Ears','Armor',10,100,2,true,498,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5821,'Gold_Tulip_Hairpin','Gold Tulip Hairpin','Armor',10,100,2,true,true,499,100,true,true,true,true,true,true,'bonus2 bExpAddClass,Class_All,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5822,'Love_Chick_Hat','Love Chick Hat','Armor',10000,100,4,true,true,500,100,true,true,true,true,true,true,true,'bonus bLuk,4; bonus bMaxHP,100; bonus bMaxSP,100; bonus2 bSubRace,RC_Brute,7; bonus2 bSubRace,RC_Player_Doram,7; bonus2 bSubRace,RC_DemiHuman,7; bonus2 bSubRace,RC_Player_Human,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5823,'Love_Arrow','Arrow of Love','Armor',5000,100,2,true,true,100,true,true,true,true,true,true,'bonus bDex,5; bonus bAgi,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5824,'Fools_Day_Hat','Fools Day Hat','Armor',20,300,6,true,30,true,265); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (5825,'Badge_Of_Order_Grace','Badge Of Order Grace','Armor',1,true,true,'bonus bMdef,1; bonus2 bAddClass,Class_All,10; bonus bMatkRate,10; bonus bMaxHP,1500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_top`,`view`,`script`) VALUES (5826,'Valkyrie_Helmet','Valkyrie Helmet','Armor',10,true,225,'bonus bStr,2; bonus bInt,2; bonus bDex,2; bonus bAgi,2; bonus bAspdRate,3; bonus bMdef,5; bonus bCastrate,-3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5827,'Book_File_Hat','Book File Hat','Armor',20,100,1,true,1,true,423); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (5828,'Honor_Gold_Ring','Honor Gold Ring','Armor',50,true,true,1,'bonus bAllStats,1; bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_armor`,`equip_level_min`,`refineable`) VALUES (5829,'Ordinary_Armor','Ordinary Armor','Armor',true,30,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5830,'Woe_Sahkkat','Woe Sahkkat','Armor',20,10,true,60,true,67); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5831,'Woe_Big_Sis_Ribbon','Woe Big Sis Ribbon','Armor',20,10,true,60,true,28); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5832,'Woe_Vane_Hairpin','Woe Vane Hairpin','Armor',20,10,true,60,true,313); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5833,'Woe_Picnic_Hat','Woe Picnic Hat','Armor',20,10,true,60,true,117); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5834,'Woe_Crown','Woe Crown','Armor',20,10,true,60,true,45); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5835,'Woe_Tiara','Woe Tiara','Armor',20,10,true,60,true,19); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5836,'Woe_Boys_Cap','Woe Boys Cap','Armor',20,10,true,60,true,102); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`equip_level_min`,`view`) VALUES (5837,'Woe_Sunglass','Woe Sunglass','Armor',20,10,true,70,12); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`equip_level_min`,`view`) VALUES (5838,'Woe_Fin_Helm','Woe Fin Helm','Armor',20,10,true,70,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`equip_level_min`,`view`) VALUES (5839,'Woe_Blush','Woe Blush','Armor',20,10,true,70,125); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`equip_level_min`,`view`) VALUES (5840,'Woe_Elven_Ears','Woe Elven Ears','Armor',20,10,true,70,73); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5841,'Shaman_Hat_','Shaman Hat','Armor',20,100,1,1,true,30,true,596,'bonus bLuk,2; bonus3 bSubEle,Ele_Neutral,3,BF_MAGIC; bonus3 bSubEle,Ele_Water,3,BF_MAGIC; bonus3 bSubEle,Ele_Earth,3,BF_MAGIC; bonus3 bSubEle,Ele_Fire,3,BF_MAGIC; bonus3 bSubEle,Ele_Wind,3,BF_MAGIC; bonus3 bSubEle,Ele_Poison,3,BF_MAGIC; bonus3 bSubEle,Ele_Holy,3,BF_MAGIC; bonus3 bSubEle,Ele_Dark,3,BF_MAGIC; bonus3 bSubEle,Ele_Ghost,3,BF_MAGIC; bonus3 bSubEle,Ele_Undead,3,BF_MAGIC;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`) VALUES (5842,'Loyal_Ring1','Loyal Ring1','Armor',true,true,1); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (5843,'Loyal_Ring2','Loyal Ring2','Armor',true,true,1,'bonus bAllStats,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (5844,'Loyal_Ring3','Loyal Ring3','Armor',true,true,1,'bonus bAllStats,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5845,'Buzzy_Ball_Board','Buzzy Ball Board','Armor',50,400,true,1,true,641); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (5846,'Buzzy_Ball_Gum','Buzzy Ball Gum','Armor',50,100,1,true,1,572,'bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5847,'Fools_Day_hat_','Fools Day Helmet','Armor',true,1,647,'bonus bInt,5; bonus bVit,-3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_head_mid`,`equip_level_min`,`view`) VALUES (5848,'Robin_Eyepatch','Robin Eyepatch','Armor',20,true,1,50); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_head_top`,`equip_level_min`,`view`) VALUES (5849,'Doctor_Hairband','Doctor Hairband','Armor',20,true,1,60); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5850,'Golden_Savage_Hat','Golden Savage Hat','Armor',20,500,5,true,50,true,648); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`location_head_mid`,`equip_level_min`,`view`) VALUES (5851,'Summer_Knight','Summer Knight','Armor',20,1,true,true,60,138); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5852,'Easter_Egg_Shell','Easter Egg Shell','Armor',20,500,true,40,true,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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5853,'IdRO_Crown','IdRO Crown','Armor',10,2,true,1,true,165,'bonus bHPrecovRate,7; bonus bSPrecovRate,7; if(getrefine()>7){ bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; bonus bMdef,2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (5855,'Fishing_Rod','Fishing Rod','Armor',10,true,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5856,'Passion_FB_Hat','Passion FB Hat','Armor',20,600,2,1,true,1,true,671,100,true,'bonus bStr,2; bonus bDex,2; autobonus "{ bonus bFlee,-15; bonus2 bAddClass,Class_All,5; }",30,10000,0,"{ specialeffect2 EF_ENHANCE; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5857,'Cool_FB_Hat','Cool FB Hat','Armor',20,600,2,1,true,1,true,672,100,true,'bonus bInt,2; bonus bVit,2; autobonus3 "{ bonus bHealPower,20; }",150,5000,"AL_HEAL","{ specialeffect2 EF_HEAL3; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5858,'Victory_FB_Hat','Victory FB Hat','Armor',20,600,2,1,true,1,true,673,100,true,'bonus bInt,2; bonus bDex,2; autobonus "{ bonus bMatkRate,5; bonus bDef,-30; }",3,10000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5859,'Glory_FB_Hat','Glory FB Hat','Armor',20,600,2,1,true,1,true,674,100,true,'bonus bAllStats,1; bonus bAspd,1; bonus bBaseAtk,BaseLevel/7; bonus bMatk,BaseLevel/7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5864,'Shadow_Booster','Magical Booster','Armor',10,300,true,1,true,873,100,true,true,true,true,true,true,true,'bonus bAspd,1; bonus bDelayrate,-1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`,`script`) VALUES (5868,'Bushy_Moustache','Bushy Moustache','Armor',20,100,true,1004,'bonus bUnbreakableHelm; bonus bBaseAtk,10; bonus bMatk,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5869,'Mimic_Egg_Shell','Mimic Egg Shell','Armor',10,100,4,true,true,999,'bonus2 bAddEffWhenHit,Eff_Stone,600; bonus bSpeedRate,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5870,'Bunny_Egg_Shell','Bunny Egg Shell','Armor',10,100,5,true,true,1000,'bonus bAgi,3; bonus bAspd,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5871,'Picky_Egg_Shell','Picky Egg Shell','Armor',10,100,2,true,true,1001,'bonus bVit,3; bonus bMdef,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5873,'Helmet_Of_Siegfried','Helmet Of Siegfried','Armor',20,600,7,1,true,true,true,true,true,true,true,60,true,1055,'bonus bAllStats,5; bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubRace,RC_Dragon,5; bonus3 bAutoSpellWhenHit,"HP_ASSUMPTIO",5,5; bonus2 bHPLossRate,600,1000; bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5874,'Circlet_Of_Kriemhild','Circlet Of Kriemhild','Armor',20,600,7,1,true,true,true,true,true,true,true,60,true,1056,'bonus bAllStats,5; bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubRace,RC_Dragon,5; bonus3 bAutoSpellWhenHit,"PR_KYRIE",9,5; bonus2 bHPLossRate,400,1000; bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5875,'Diadem_Of_Bruenhild','Diadem Of Bruenhild','Armor',20,600,7,1,true,true,true,true,true,true,true,60,true,1057,'bonus bAllStats,5; bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubRace,RC_Dragon,5; bonus3 bAutoSpellWhenHit,"SM_ENDURE",8,5; bonus2 bHPLossRate,400,1000; bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5881,'Weissbier_Hat','Weissbier Hat','Armor',20,300,5,true,true,1079,'bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bDex,10; if(getrefine()>6){ bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bDex,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5882,'Red_Wizardry_Hat_C','Red Mage Hat C','Armor',20,300,1,true,true,true,true,true,true,282,'bonus bInt,2; bonus bMaxSP,150;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5883,'White_Wizardry_Hat_C','Gray Mage Hat C','Armor',20,300,1,true,true,true,true,true,true,283,'bonus bInt,2; bonus bMaxSP,150;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5884,'Gray_Wizardry_Hat_C','Brown Mage Hat C','Armor',20,300,1,true,true,true,true,true,true,284,'bonus bInt,2; bonus bMaxSP,150;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5885,'Blue_Wizardry_Hat_C','Blue Mage Hat C','Armor',20,300,1,true,true,true,true,true,true,285,'bonus bInt,2; bonus bMaxSP,150;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5886,'Yellow_Wizardry_Hat_C','Yellow Mage Hat C','Armor',20,300,1,true,true,true,true,true,true,286,'bonus bInt,2; bonus bMaxSP,150;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5887,'Half_L_Magestic_Goat','Half L Majestic Goat','Armor',20,800,5,true,true,380,'bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus bBaseAtk,(JobLevel*2)/7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`view`,`script`,`equip_script`,`unequip_script`) VALUES (5892,'RCC2013_1ST_CROWN','RCC2013 1ST CROWN','Armor',20,2500,7,1,true,1,1106,'bonus bAllStats,5; skill "AL_TELEPORT",1;','sc_start SC_SPEEDUP0,INFINITE_TICK,25;','sc_end SC_SPEEDUP0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`view`,`script`,`equip_script`,`unequip_script`) VALUES (5893,'RCC2013_2ND_CROWN','RCC2013 2ND CROWN','Armor',20,2500,7,1,true,1,1107,'bonus bAllStats,4; skill "AL_TELEPORT",1;','sc_start SC_SPEEDUP0,INFINITE_TICK,25;','sc_end SC_SPEEDUP0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`view`,`script`,`equip_script`,`unequip_script`) VALUES (5894,'RCC2013_3RD_CROWN','RCC2013 3RD CROWN','Armor',20,2500,7,1,true,1,1108,'bonus bAllStats,3; skill "AL_TELEPORT",1;','sc_start SC_SPEEDUP0,INFINITE_TICK,25;','sc_end SC_SPEEDUP0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5895,'RCC2013_ANV_Hat','RCC2013 ANV Hat','Armor',20,2500,7,1,true,1,1109,'bonus bAllStats,1; bonus2 bAddClass,Class_All,2; bonus bMatkRate,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_crusader`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5900,'Divine_Guard_Hat','Divine Guard Hat','Armor',200,10,1,true,true,true,true,true,100,true,1121,100,true,true,true,true,true,true,'.@r = getrefine(); bonus2 bSubSize,Size_All,5; if(.@r>=7) { .@level = getskilllv("AL_HEAL"); bonus3 bAutoSpellWhenHit,"AL_HEAL",(.@level ? .@level : 5),10; } if(.@r>=9) { bonus2 bSkillAtk,"LG_RAYOFGENESIS",20; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_monk`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5901,'Focus_Beret','Focus Beret','Armor',200,10,1,true,true,true,true,true,100,true,1122,100,true,true,true,true,true,true,'.@r = getrefine(); bonus4 bAutoSpellOnSkill,"SR_DRAGONCOMBO","SR_FALLENEMPIRE",max(getskilllv("SR_FALLENEMPIRE"),1),100; if(.@r>=7) { autobonus "{ bonus bAspd,2; }",30,5000,0,"{ specialeffect2 EF_ENHANCE; }"; } if(.@r>=9) { bonus2 bSkillAtk,"SR_FALLENEMPIRE",30; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5902,'Harvester_Hat','Harvester Hat','Armor',200,10,1,true,true,true,true,true,100,true,1123,100,true,true,true,true,true,true,'.@r = getrefine(); bonus2 bAddMonsterDropItem,6211,100; bonus2 bAddMonsterDropItem,6212,100; if(.@r>=7) { bonus2 bAddMonsterDropItem,6210,50; } if(.@r>=9) { bonus2 bSkillAtk,"GN_CARTCANNON",15; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5903,'Deadman_Bandana','Deadman Bandana','Armor',200,15,1,true,true,true,true,true,99,true,1124,100,true,true,true,true,true,true,'.@r = getrefine(); .@rate = 1; bonus bCritical,.@r*2; bonus bFixedCastrate,-2; bonus3 bAutoSpellWhenHit,"SL_SWOO",getskilllv("SL_SWOO"),(.@rate*10); if (.@r>=7) { bonus bMatk,20; .@rate += 3; } if(.@r>=9) { bonus bVariableCastrate,-20; bonus2 bSkillUseSP,"SL_STUN",5; bonus2 bSkillUseSP,"SL_SMA",5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5904,'Inconspicuous_Hat','Inconspicuous Hat','Armor',200,10,1,true,true,true,true,true,100,true,1125,100,true,true,true,true,true,true,'.@r = getrefine(); if (.@r>=9) { .@matk = 5; } bonus bMatkRate,(7+.@matk); if (.@r>=7) { bonus bMatk,(readparam(bInt)/5)*2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5905,'Lyrica_Hat','Lyrica Hat','Armor',200,10,1,true,true,true,true,true,100,true,1126,100,true,true,true,true,true,true,'.@r = getrefine(); bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15; if(.@r>=7) { bonus bFixedCastrate,4*(getskilllv("WM_LESSON")); } if(.@r>=9) { bonus2 bSkillUseSP,"WM_SEVERE_RAINSTORM",10; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5906,'Oni_Horns_','Oni Horns','Armor',20,10,1,true,true,true,true,true,100,true,1127,100,true,true,true,true,true,true,'bonus2 bSkillAtk,"GC_COUNTERSLASH",(10*getskilllv("GC_WEAPONBLOCKING")); .@r = getrefine(); if(.@r > 6){ bonus bAtk,20; bonus bHit,5; } if(.@r > 9){ bonus3 bAutoSpell,"GC_CROSSIMPACT",1,10; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5907,'Sea_Captain_Hat','Sea Captain Hat','Armor',200,20,1,true,true,true,true,true,100,true,1128,100,true,true,true,true,true,true,'bonus2 bSkillAtk,"NC_AXEBOOMERANG",20; .@dmg = 20; .@r = getrefine(); if (.@r>=7) { .@dmg += getskilllv("BS_WEAPONRESEARCH"); } if (.@r>=9) { .@dmg += getskilllv("NC_TRAININGAXE"); } bonus2 bSkillAtk,"NC_AXETORNADO",.@dmg;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (5909,'C_Valkyrie_Circlet','C Valkyrie Circlet','Armor',true,1,940); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`,`script`,`unequip_script`) VALUES (5914,'Earmuff_Flowerform','C Flutter Butterfly','Armor',true,1,1378,'hateffect HAT_EF_FLUTTER_BUTTERFLY,true;','hateffect HAT_EF_FLUTTER_BUTTERFLY,false;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (5917,'Yellow_Scarf','Yellow Scarf','Armor',100,true,90,1170,'bonus bLongAtkDef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (5918,'Gambler_Seal','Gambler Seal','Armor',500,true,70,1202,'.@dex = readparam(bDex); .@luk = readparam(bLuk); .@critical = 3 + (.@luk / 10); .@critical_dmg = 3 - (.@dex/10) * 2; .@sub_arrowstorm = 10; .@sub_gateofhell = 10; bonus bBaseAtk,(.@luk/10)*2; bonus bMatk,(.@luk / 10) * 2; if (.@luk > 107) { .@critical += 5; .@critical_dmg += 10; } if (.@luk > 119) { .@critical += 10; .@critical_dmg += 17; .@sub_arrowstorm += 30; .@sub_gateofhell += 30; } bonus bCritical,.@critical; bonus bCritAtkRate,.@critical_dmg; bonus2 bSubSkill,"RA_ARROWSTORM",.@sub_arrowstorm; bonus2 bSubSkill,"SR_GATEOFHELL",.@sub_gateofhell;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`,`unequip_script`) VALUES (5919,'Camellia_Hair_Pin','Camellia Hair Pin','Armor',1000,1,true,50,true,1203,'bonus bMdef,20; bonus3 bAutoSpell,"AL_PNEUMA",1,30+getrefine()*5; hateffect(HAT_EF_CAMELLIA_HAIR_PIN,true); /* CONFIRM The Rate*/','hateffect(HAT_EF_CAMELLIA_HAIR_PIN,false);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (5920,'Medical_Boots','Medical Boots','Armor',300,10,true,10,true,'.@r = getrefine(); bonus bHealPower,10+((.@r/2) * 2); bonus2 bSkillUseSP,"AB_CHEAL",(.@r * 5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (5933,'Crow_Tengu_Mask','Crow Tengu Mask','Armor',20,300,true,80,1287,'bonus2 bAddSize,Size_All,1; bonus bLongAtkRate,2; if(readparam(bStr)>=108) { bonus2 bAddSize,Size_All,1; bonus bLongAtkRate,2; } if(readparam(bStr)>=120) { bonus2 bAddSize,Size_All,2; bonus bLongAtkRate,3; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5937,'Flying_Helmet','Flying Helmet','Armor',1,300,5,1,true,20,true,820,'bonus bMdef,5; bonus bHPGainValue,100; bonus2 bSPGainRace,RC_Dragon,5; .@r = getrefine(); if (.@r>=5) { bonus2 bSubRace,RC_Dragon,5; } if (.@r>=7) { bonus2 bSubRace,RC_Dragon,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5938,'Octopus_Hat_','Octopus Hat','Armor',20,880,8,1,true,60,true,538,'bonus bMdef,8; bonus bUnbreakableHelm,1; bonus2 bAddItemHealRate,579,50; bonus2 bAddItemHealRate,544,125; bonus2 bAddItemHealRate,551,125; .@r = getrefine(); if (.@r>=5) { bonus2 bAddItemHealRate,579,50; bonus2 bAddItemHealRate,544,125; bonus2 bAddItemHealRate,551,125; } if (.@r>=6) { bonus2 bAddItemHealRate,579,50; bonus2 bAddItemHealRate,544,125; bonus2 bAddItemHealRate,551,125; } if (.@r>=7) { bonus2 bAddItemHealRate,579,50; bonus2 bAddItemHealRate,544,125; bonus2 bAddItemHealRate,551,125; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5943,'Owlviscount_Silk_Hat','Owl Viscount Silk Hat','Armor',500,15,1,true,70,true,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; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (5945,'Well_Chewed_Pencil','Well-Chewed Pencil','Armor',20,300,true,30,931,'bonus bStr,1; autobonus "{ bonus bAtkEle,Ele_Fire; }",50,60000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; /* Unknow rate and specialeffect */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5965,'_Riot_Chip','Riot Chip','Armor',300,1,true,100,true,1201,'bonus bFixedCastrate,-50; .@r = getrefine(); bonus2 bAddClass,Class_All,.@r; bonus2 bMagicAddClass,Class_All,.@r;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (5966,'KarduiEar','KarduiEar','Armor',300,true,70,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; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (5967,'FlyingGalapago','Flying Galapago','Armor',500,true,110,1358,'set .@bblvl,max(getskilllv("HT_BLITZBEAT"),1); set .@luk,min(readparam(bLuk),120); bonus bAgi,1; bonus3 bAutoSpell,"HT_BLITZBEAT",.@bblvl,50 + (.@luk / 3) + (.@bblvl * 2); bonus2 bSkillAtk,"HT_BLITZBEAT",getskilllv("HT_STEELCROW") * 40;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5968,'DVAngelNurseCap','DVAngelNurseCap','Armor',500,10,1,true,50,true,1359,'if (BaseClass == Job_Acolyte) bonus bHealPower,3; bonus bNoCastCancel; .@r = getrefine(); bonus bHealPower,(.@r > 8) ? 12 : ((.@r > 6) ? 9 : ((.@r > 4) ? 6 : 0));'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5969,'QueenAnzRevenge','QueenAnzRevenge','Armor',400,7,1,true,100,true,1360,'bonus bStr,5; .@r = getrefine(); bonus2 bAddClass,Class_All,7+(.@r > 8 ? 4 : (.@r > 6 ? 3 : (.@r > 4 ? 2 : 0))); bonus bNoSizeFix;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (5971,'Moon_Eyepatch','Moon Eyepatch','Armor',100,1,true,10,1370,'bonus2 bSubEle,Ele_Water,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (5972,'Chatty_Parrot','Chatty Parrot','Armor',100,true,80,1116,'bonus bMatkRate,BaseLevel/50; bonus bVariableCast,-readparam(bInt)/30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (5973,'Ancient_Elven_Ear_J','Ancient Elven Ear J','Armor',200,true,70,665,'bonus bLuk,10; bonus bMdef,10; bonus bFlee2,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (5978,'Syringe_Toy','Toy Syringe','Armor',100,3,true,70,842,'bonus bMdef,3; bonus2 bAddItemHealRate,545,150; bonus2 bAddItemHealRate,546,150; bonus2 bAddItemHealRate,547,150;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`,`script`,`unequip_script`) VALUES (5979,'C_Angel_Fluttering','C Angel Fluttering','Armor',true,1,1380,'hateffect HAT_EF_ANGEL_FLUTTERING,true;','hateffect HAT_EF_ANGEL_FLUTTERING,false;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (5980,'C_Classical_Fhat','C Classical Fhat','Armor',true,1,1381); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5985,'Noble_Mask','Noble Mask','Armor',200,true,30,true,1409,'bonus2 bSkillAtk,"PA_SACRIFICE",BaseLevel*2; bonus2 bSkillVariableCast,"PA_PRESSURE",-2000; bonus2 bSkillVariableCast,"CR_DEVOTION",-2000; if (BaseLevel > 149) { bonus bMaxHPrate,3; bonus bAspdRate,3; } else if (BaseLevel > 99) { bonus bMaxHPrate,2; bonus bAspdRate,2; } else { bonus bMaxHPrate,1; bonus bAspdRate,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9001,'Poring_Egg','Poring Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9002,'Drops_Egg','Drops Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9003,'Poporing_Egg','Poporing Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9004,'Lunatic_Egg','Lunatic Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9005,'Picky_Egg','Picky Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9006,'Chonchon_Egg','Chonchon Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9007,'Steel_Chonchon_Egg','Steel Chonchon Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9008,'Hunter_Fly_Egg','Hunter Fly Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9009,'Savage_Bebe_Egg','Savage Babe Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9010,'Baby_Desert_Wolf_Egg','Baby Desert Wolf Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9011,'Rocker_Egg','Rocker Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9012,'Spore_Egg','Spore Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9013,'Poison_Spore_Egg','Poison Spore Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9014,'PecoPeco_Egg','Peco Peco Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9015,'Smokie_Egg','Smokie Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9016,'Yoyo_Egg','Yoyo Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9017,'Orc_Warrior_Egg','Orc Warrior Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9018,'Munak_Egg','Munak Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9019,'Dokkaebi_Egg','Dokebi Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9020,'Sohee_Egg','Sohee Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9021,'Isis_Egg','Isis Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9022,'Green_Petite_Egg','Green Petite Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9023,'Deviruchi_Egg','Deviruchi Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9024,'Bapho_Jr._Egg','Bapho Jr. Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9025,'Bongun_Egg','Bongun Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9026,'Zherlthsh_Egg','Zealotus Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9027,'Alice_Egg','Alice Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`) VALUES (9028,'Rice_Cake_Egg','Hard Rice Cake','Petegg',20,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9029,'Santa_Goblin_Egg','Christmas Goblin\'s Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9030,'Chung_E_Egg','Green Maiden Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9031,'Spring_Rabbit_Egg','Spring Rabbit Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9032,'Knife_Goblin_Egg','Knife Goblin Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9033,'Flail_Goblin_Egg','Flail Goblin Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9034,'Hammer_Goblin_Egg','Hammer Goblin Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9035,'Red_Deleter_Egg','Red Deleter Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9036,'Diabolic_Egg','Diabolic Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9037,'Wanderer_Egg','Wanderer Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9038,'New_Year_Doll_Egg','New Year Doll Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9039,'Bacsojin_Egg','Bacsojin Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9040,'Civil_Servant_Egg','Civil Servant Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9041,'Leaf_Cat_Egg','Leaf Cat Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9042,'Loli_Ruri_Egg','Loli Ruri Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9043,'Marionette_Egg','Marionette Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9044,'Shinobi_Egg','Shinobi Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9045,'Whisper_Egg','Whisper Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9046,'Goblin_Leader_Egg','Goblin Leader Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9047,'Wicked_Nymph_Egg','Wicked Nymph Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9048,'Miyabi_Ningyo_Egg','Miyabi Ningyo Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9049,'Dullahan_Egg','Dullahan Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9050,'Medusa_Egg','Medusa Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9051,'Stone_Shooter_Egg','Stone Shooter Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9052,'Incubus_Egg','Incubus Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9053,'Golem_Egg','Golem Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9054,'Nightmare_Terror_Egg','Nightmare Terror Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9055,'Succubus_Egg','Succubus Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9056,'Imp_Egg','Imp Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9057,'Egg_Of_Tiny','Egg Of Tiny','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (9058,'Snow_Rabbit_Egg','Christmas Snow Rabbit Egg','Petegg',20,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9059,'Tikbalang_Pet','Tikbalang Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9060,'Brownie_Egg','Domovoi Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9061,'Marin_Egg','Marin Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9062,'Novice_Poring_Egg','Novice Poring Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9063,'Woodie_Egg','Woodie Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9064,'Elephant_Egg','Elephant Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9065,'Gorilla_Egg','Gorilla Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9066,'Lion_Egg','Lion Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9067,'Rhino_Egg','Rhino Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9068,'Blue_Unicorn_Egg','Blue Unicorn Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9069,'Mastering_Egg','Mastering Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9070,'Savage_Egg','Savage Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9071,'Grand_Peco_Peco_Egg','Grand Peco Peco Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9072,'Orc_Hero_Egg','Orc Hero Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9073,'Orc_Lord_Egg','Orc Lord Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9074,'Rubylit_Egg','Rubylit Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9075,'Sapphilit_Egg','Sapphilit Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9076,'Emelit_Egg','Emelit Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9077,'Topalit_Egg','Topalit Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9078,'Amelit_Egg','Amelit Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9079,'Mythlit_Egg','Mythlit Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9080,'Tamadora_Egg','Tamadora Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9087,'High_Orc_Egg','High Orc Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9088,'Angeling_Egg','Angeling Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9089,'Am_Mut_Egg','Am Mut Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9090,'Little_Isis_Egg','Little Isis Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9091,'Choco_Egg','Choco Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9092,'Eggring_Egg','Eggring Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9093,'Hyegun_Egg','Hyegun Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9094,'Dr_Lunatic_Egg','Leaf Lunatic Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9095,'Nine_Tail_Egg','Nine Tail Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9096,'Cat_o_Nine_Tail_Egg','Cat o Nine Tail Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9097,'Diabolic_2_Egg','Diabolic Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9098,'Fire_Deleter_Egg','Fire Deleter Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9099,'Teddy_Bear_Egg','Teddy Bear Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9100,'Gremlin_Egg','Gremlin Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9101,'Scatletoncarrier','Scatleton\'s Cage','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9102,'Mummy_Egg','Mummy Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9103,'Willow_Egg','Willow Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9104,'Roween_Egg','Roween Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9105,'Hodremlin_Egg','Hodremlin Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9106,'Metaller_Egg','Metaller Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9107,'Ancient_Mummy_Egg','Ancient Mummy Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9108,'Xm_Teddy_Bear_Egg','Xmas Teddy Bear Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9109,'Sweet_Drops_Egg','Sweet Drops Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9111,'Phreeoni_Egg','Phreeoni Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9112,'Moonlight_Egg','Moonlight Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9113,'Roost_Of_Skelion','Roost Of Skelion','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9114,'Pouring_Egg','Pouring Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9115,'Bacsojin2_Egg_','Bacsojin Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9116,'Rigid_Nightmare_Terror_Egg','Rigid Nightmare Terror Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9117,'Contaminated_Wanderer_Egg','Contaminated Wanderer Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9118,'Aliot_Egg','Aliot Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9119,'Alicel_Egg','Alicel Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9120,'Aliza_Egg','Aliza Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9121,'Orc_Hero_Egg_','Orc Hero Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9122,'Gloom_Under_Egg','Gloom Under Night Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9123,'Ep_17_2_C_Admin1_Egg','Child Admin Beta Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9124,'Ep_17_2_C_Admin2_Egg','Child Admin Alpha Egg','Petegg',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10001,'Skull_Helm','Skull Helm','Petarmor',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10002,'Monster_Oxygen_Mask','Monster Oxygen Mask','Petarmor',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10003,'Transparent_Headgear','Transparent Head Protector','Petarmor',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10004,'Pacifier','Pacifier','Petarmor',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10005,'Wig','Wig','Petarmor',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10006,'Queen\'s_Hair_Ornament','Queen\'s Hair Ornament','Petarmor',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10007,'Silk_Ribbon','Silk Ribbon','Petarmor',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10008,'Punisher','Punisher','Petarmor',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10009,'Wild_Flower','Wild Flower','Petarmor',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10010,'Battered_Pot','Battered Pot','Petarmor',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10011,'Stellar_Hairpin','Stellar Hairpin','Petarmor',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10012,'Tiny_Egg_Shell','Tiny Egg Shell','Petarmor',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10013,'Backpack','Backpack','Petarmor',1500); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10014,'Rocker_Glasses','Rocker Glasses','Petarmor',2000); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10015,'Green_Lace','Green Lace','Petarmor',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10016,'Golden_Bell','Golden Bell','Petarmor',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10017,'Bark_Shorts','Bark Shorts','Petarmor',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10018,'Monkey_Circlet','Monkey Circlet','Petarmor',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10019,'Red_Muffler','Red Scarf','Petarmor',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10020,'Sword_Of_Grave_Keeper','Grave Keeper\'s Sword','Petarmor',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10021,'Round_Hair_Ornament','Circular Headgear','Petarmor',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10022,'Golden_Earing','Gold Earring','Petarmor',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10023,'Green_Lucky_Bag','Green Jewel Bag','Petarmor',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10024,'Fashionable_Glasses','Fashion Glasses','Petarmor',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10025,'Star_Hairband','Hairband Of Stars','Petarmor',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10026,'Wine_On_Sleeve','Tassel for Durumagi','Petarmor',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10027,'Spirit_Chain_','Pet Soul Ring','Petarmor',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10028,'Nice_Badge','Beautiful Badges','Petarmor',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10029,'Jade_Trinket','Jade Trinket','Petarmor',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10030,'Summer_Fan','Summer Fan','Petarmor',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10031,'Death_Coil','Ring Of Death','Petarmor',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10032,'Queen\'s_Coronet','Queen\'s Coronet','Petarmor',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10033,'Apro_Hair','Afro','Petarmor',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10034,'Ball_Mask','Masked Ball','Petarmor',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10035,'Windup_Spring','Spring','Petarmor',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10036,'Hell_Horn','Horn Of Hell','Petarmor',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10037,'Black_Butterfly_Mask','Black Butterfly Mask','Petarmor',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10038,'Horn_Protector','Horn Barrier','Petarmor',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10039,'Tw_Backpack','Tw Backpack','Petarmor',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10040,'Red_Bell_Necklace','Red Bell Necklace','Petarmor',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10041,'Shiny_Star_Button','Shiny Star Button','Petarmor',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10042,'Dark_Mane','Dark Mane','Petarmor',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13000,'Jujube_Dagger','Jujube Dagger','Weapon','Dagger',10000,600,39,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,1,true,'bonus bAtkEle,Ele_Wind;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13001,'Dragon_Killer','Dragon Killer','Weapon','Dagger',20,900,110,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,60,true,'bonus bIgnoreDefRace,RC_Dragon; bonus2 bExpAddRace,RC_Dragon,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13002,'Ginnungagap','Ginnungagap','Weapon','Dagger',20,700,148,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,70,true,'bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Blind,500; bonus2 bAddEff2,Eff_Blind,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`job_ninja`,`job_rogue`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13003,'Coward','Cowardice Blade','Weapon','Dagger',52000,700,80,1,1,true,true,true,true,true,3,55,true,'bonus bDef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`job_ninja`,`job_rogue`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13004,'Coward_','Cowardice Blade','Weapon','Dagger',52000,700,80,1,2,true,true,true,true,true,3,55,true,'bonus bDef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_novice`,`job_supernovice`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (13005,'Angelwing_Short_Sword','Angelic Wing Dagger','Weapon','Dagger',20,600,120,1,1,true,true,true,4,50,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13006,'Khukri','Khukri','Weapon','Dagger',240000,600,150,1,true,true,3,65,true,'bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Curse,1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13007,'Jitte','Jitte','Weapon','Dagger',20000,400,70,1,true,true,2,35,true,'bonus bBreakWeaponRate,200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13008,'Jitte_','Jitte','Weapon','Dagger',20000,400,70,1,1,true,true,2,35,true,'bonus bBreakWeaponRate,200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13009,'Kamaitachi','Kamaitachi','Weapon','Dagger',48000,900,125,2,true,true,4,70,true,'bonus bAtkEle,Ele_Wind; bonus bCritical,3; bonus bAspdRate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (13010,'Asura','Asura','Weapon','Dagger',3000,600,50,50,1,2,true,true,1,12,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (13011,'Asura_','Asura','Weapon','Dagger',3000,600,50,50,1,3,true,true,1,12,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13012,'Murasame','Murasame','Weapon','Dagger',20,700,95,1,1,true,true,2,24,true,'bonus bAtkEle,Ele_Water; bonus2 bCriticalAddRace,RC_DemiHuman,10; bonus2 bCriticalAddRace,RC_Player_Human,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13013,'Murasame_','Murasame','Weapon','Dagger',20,700,95,1,2,true,true,2,24,true,'bonus bAtkEle,Ele_Water; bonus2 bCriticalAddRace,RC_DemiHuman,10; bonus2 bCriticalAddRace,RC_Player_Human,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13014,'Hakujin','Hakujin','Weapon','Dagger',20,800,120,1,true,true,3,42,true,'bonus bInt,2; bonus3 bAutoSpell,"AL_HEAL",1,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13015,'Hakujin_','Hakujin','Weapon','Dagger',20,800,120,1,1,true,true,3,42,true,'bonus bInt,2; bonus3 bAutoSpell,"AL_HEAL",1,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13016,'Poison_Knife_','Poison Knife','Weapon','Dagger',20,800,64,1,2,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,65,true,'bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,3000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13017,'House_Auger_','Ice Pick','Weapon','Dagger',20,600,70,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bDefRatioAtkClass,Class_All;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13018,'Sucsamad_','Sucsamad','Weapon','Dagger',20,800,140,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Wind,10; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13019,'Ginnungagap_','Ginnungagap','Weapon','Dagger',20,700,148,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,70,true,'bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Blind,500; bonus2 bAddEff2,Eff_Blind,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13020,'Warrior_Balmung_','Warrior\'s Balmung','Weapon','Dagger',20,1000,170,1,true,4,48,true,100,true,true,true,true,true,true,true,true,'bonus bAllStats,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13021,'Combat_Knife_C','Combat Knife','Weapon','Dagger',1,129,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,1,100,true,true,true,true,true,true,true,true,'bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Demon,-10; bonus bMaxSPrate,10; bonus bSPDrainValue,3; /*Gold PC Room: bonus bBaseAtk,10; bonus bMatk,10;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13022,'Counter_Dagger_C','Dagger of Counter','Weapon','Dagger',1,209,1,true,true,true,true,true,4,1,100,true,true,true,true,true,true,true,true,'bonus bCriticalRate,90; /*Gold PC Room: bonus bBaseAtk,10; bonus bMatk,10;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13023,'Asura_C','Ashura','Weapon','Dagger',1,120,98,1,true,true,1,1,100,true,true,true,true,true,true,true,true,'/*Gold PC Room: bonus bBaseAtk,10; bonus bMatk,10; */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13024,'Sword_Breaker_C','Refined Swordbreaker','Weapon','Dagger',2,105,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,100,true,true,true,true,true,true,true,true,'bonus bBreakWeaponRate,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13025,'Mail_Breaker_C','Refined Mailbreaker','Weapon','Dagger',2,105,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,100,true,true,true,true,true,true,true,true,'bonus bBreakArmorRate,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13026,'Moonlight_Sword_C','Moonlight Dagger','Weapon','Dagger',2,85,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,100,true,true,true,true,true,true,true,true,'bonus bMaxSPrate,10; bonus bSPDrainValue,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13027,'Scalpel','Scalpel','Weapon','Dagger',20,500,120,1,3,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,55,true,'bonus2 bAddEff,Eff_Bleeding,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13028,'Tooth_Blade','Tooth Blade','Weapon','Dagger',20,700,130,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,55,true,'if(getrefine()>=9){ bonus3 bAutoSpell,"NPC_SLOWCAST",2,70; } else bonus3 bAutoSpell,"NPC_SLOWCAST",1,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13029,'Prinsence_Knife','Prinsense Knife','Weapon','Dagger',20,120,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13030,'Dragon_Killer_','Dragon Killer','Weapon','Dagger',20,900,110,1,2,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,60,true,'bonus bIgnoreDefRace,RC_Dragon; bonus2 bExpAddRace,RC_Dragon,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13031,'Sword_Breaker_','Swordbreaker','Weapon','Dagger',20,1000,70,1,3,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bBreakWeaponRate,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13032,'Mail_Breaker_','Mailbreaker','Weapon','Dagger',20,1000,70,1,3,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bBreakArmorRate,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13033,'Assasin_Dagger_','Assassin Dagger','Weapon','Dagger',20,600,140,1,1,true,true,4,36,true,'bonus bMaxHPrate,20; bonus bMaxSPrate,15; bonus bAspdRate,2; bonus bAtkEle,Ele_Dark;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (13034,'Twilight_Desert','Desert Twilight','Weapon','Dagger',20,600,130,1,2,true,true,true,true,2,70,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (13035,'Sandstorm','Sandstorm','Weapon','Dagger',20,600,50,1,4,true,true,true,true,2,70,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13036,'BF_Dagger1','Brave Assassin\'s Damascus','Weapon','Dagger',20,120,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,80,true,100,true,true,true,true,true,true,true,'bonus bStr,1; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(Class==Job_Ninja||Class==Job_Rogue||Class==Job_Stalker) bonus bMatk,90;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13037,'BF_Dagger2','Valorous Assassin\'s Damascus','Weapon','Dagger',20,120,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,80,true,100,true,true,true,true,true,true,true,'bonus bStr,1; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus bUnbreakableWeapon; autobonus "{ bonus bDefRatioAtkClass,Class_All; }",10,6000,BF_WEAPON,"{ specialeffect2 EF_HASTEUP; }"; if(Class==Job_Ninja||Class==Job_Rogue||Class==Job_Stalker) bonus bMatk,90;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rogue`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13038,'Dagger_Of_Hunter','Dagger of Hunter','Weapon','Dagger',20,700,120,1,3,true,true,true,true,3,70,true,'bonus bStr,1; bonus bAgi,2; bonus bDex,1; bonus4 bAutoSpellOnSkill,"RG_BACKSTAP","SM_BASH",10,100; bonus2 bSkillAtk,"RG_BACKSTAP",20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13039,'Ivory_Knife','Ivory Knife','Weapon','Dagger',20,700,130,1,2,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,50,true,'bonus bAgi,2; bonus bAspdRate,3; bonus2 bAddEff,Eff_Bleeding,300; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`) VALUES (13040,'N_Cutter','Novice Cutter','Weapon','Dagger',50,1,3,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,1); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`) VALUES (13041,'N_Main_Gauche','Novice Main Gauche','Weapon','Dagger',63,1,3,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,1); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13042,'Krieger_Dagger1','Glorious Gladius','Weapon','Dagger',20,120,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus3 bAutoSpell,"PR_LEXDIVINA",1,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) bonus4 bAutoSpellOnSkill,"RG_RAID","NPC_WIDEBLEEDING",1,250;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13043,'Fortune_Sword_I','Fortune Sword','Weapon','Dagger',120,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,100,true,true,true,true,true,true,true,true,'bonus bFlee2,20; bonus bLuk,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13044,'House_Auger_I','Ice Pick','Weapon','Dagger',105,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,100,true,true,true,true,true,true,true,true,'bonus bDefRatioAtkClass,Class_All; autobonus "{ bonus bFlee,20; }",10,10000,BF_WEAPON|BF_MISC;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_ninja`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13045,'Kamaitachi_I','Kamaitachi','Weapon','Dagger',155,2,true,true,4,100,true,true,true,true,true,true,true,true,'bonus bUnbreakableWeapon; bonus bCritical,10; bonus bAspdRate,5; bonus bAtkEle,Ele_Wind;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`job_rogue`,`job_thief`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13046,'Krieg','Krierg','Weapon','Dagger',20,500,110,1,3,true,true,true,true,true,true,2,50,true,'bonus3 bAddEffOnSkill,"RG_BACKSTAP",Eff_Bleeding,1000; bonus2 bSkillAtk,"RG_BACKSTAP",15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`job_rogue`,`job_thief`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13047,'Weihna','Weihna','Weapon','Dagger',20,500,135,1,2,true,true,true,true,true,true,3,50,true,'bonus3 bAddEffOnSkill,"RG_RAID",Eff_Poison,100; autobonus "{ bonus2 bAddClass,Class_All,10; }",5,5000,BF_WEAPON|BF_SHORT,"{ specialeffect2 EF_POTION_BERSERK; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13048,'Damascus_C','Damascus','Weapon','Dagger',153,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,1,100,true,true,true,true,true,true,true,true,'bonus2 bAddSize,Size_All,40;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (13049,'Lacma','Lacma','Weapon','Dagger',20,650,45,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,1,true,100,true,'.@r = getrefine(); if (.@r>=3) { bonus bBaseAtk,40; bonus bMatk,40; } if(.@r>=6){ bonus2 bAddSize,Size_Medium,8; bonus2 bMagicAddSize,Size_Medium,8; autobonus "{ bonus bNoSizeFix; }",10,5000; } if(.@r>=9){ bonus2 bAddSize,Size_Medium,20; bonus2 bMagicAddSize,Size_Medium,20; } if(.@r>12){ bonus bNoSizeFix; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`magic_attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13050,'P_Dagger1','Eden Dagger I','Weapon','Dagger',124,60,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,2,26,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`magic_attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13051,'P_Dagger2','Eden Dagger II','Weapon','Dagger',158,70,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,2,40,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13052,'Tourist_Dagger','Tourist Dagger','Weapon','Dagger',500,51,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,1,100,true,true,true,true,true,true,true,'bonus bAgi,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`script`) VALUES (13053,'F_Moonlight_Sword_C','Moonlight Sword','Weapon','Dagger',2,85,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,'bonus bSPDrainValue,3; bonus bMaxSPrate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (13054,'F_Combat_Knife_C','Combat Knife','Weapon','Dagger',1,129,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,1,'bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus bSPDrainValue,3; bonus bMaxSPrate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (13055,'F_Asura_C','Asura','Weapon','Dagger',1,120,1,true,true,1,1,'bonus bMatkRate,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (13056,'F_Counter_Dagger_C','Counter Dagger','Weapon','Dagger',1,209,1,true,true,true,true,true,4,1,'bonus bCriticalRate,90;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`) VALUES (13057,'E_Moonlight_Sword_C','Moonlight Sword','Weapon','Dagger',2,85,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`) VALUES (13058,'E_Combat_Knife_C','Combat Knife','Weapon','Dagger',1,129,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,1); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`) VALUES (13059,'E_Asura_C','Asura','Weapon','Dagger',1,120,1,true,true,1,1); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`) VALUES (13060,'E_Counter_Dagger_C','Counter Dagger','Weapon','Dagger',1,209,1,true,true,true,true,true,4,1); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rogue`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13061,'Black_Wing','Black Wing','Weapon','Dagger',20,600,142,1,1,true,true,3,102,true,'.@r = getrefine(); bonus2 bSkillAtk,"SC_FATALMENACE",30; if(.@r>=6){ bonus2 bSkillAtk,"SC_FATALMENACE",.@r*2; bonus bMatkRate,(.@r*3); }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13062,'Ancient_Dagger','Ancient Dagger','Weapon','Dagger',20,600,107,120,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,120,true,'bonus bMaxSP,100; bonus bSPrecovRate,5; bonus2 bAddEff2,Eff_Curse,20; bonus3 bAddEff,Eff_Curse,20,ATF_SELF;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_assassin`,`job_ninja`,`job_rogue`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (13063,'Adventure_Knife','Adventure Knife','Weapon','Dagger',60,1,true,true,true,true,true,1,1,'bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`job_ninja`,`job_rogue`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13064,'Academy_Knife','Academy Knife','Weapon','Dagger',700,110,1,1,true,true,true,true,true,1,1,true,'bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_novice`,`job_supernovice`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13065,'Academy_Eti_Knife','Academy Eti Knife','Weapon','Dagger',1200,120,1,1,true,true,true,1,1,true,'bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`magic_attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13066,'P_Dagger3','Eden Dagger III','Weapon','Dagger',165,80,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,60,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13067,'Caress','Keris','Weapon','Dagger',20,700,107,70,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,30,true,'bonus2 bHPDrainRate,20,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`magic_attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13068,'Saurel','Pompano','Weapon','Dagger',160,100,3,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,50,100,true,true,true,true,true,true,true,true,'bonus bAgi,3; bonus bUnbreakableWeapon; 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; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13069,'Aztoe_Nail','As-nail','Weapon','Dagger',56000,500,160,80,1,true,true,true,true,true,true,true,true,true,true,4,110,true,'bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Freeze,100+(getrefine()*50);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13070,'Scarletto_Nail','Scarlet-nail','Weapon','Dagger',56000,500,160,80,1,true,true,true,true,true,true,true,true,true,true,4,110,true,'bonus bAtkEle,Ele_Fire; bonus2 bAddEff,Eff_Stone,100+(getrefine()*50);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (13071,'Upg_Dagger','Upg Dagger','Weapon','Dagger',20,600,55,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,1,true,100,true,'.@r = getrefine(); bonus bBaseAtk,(.@r*10); bonus bMatk,(.@r*5); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13072,'Velum_Damascus','Vellum Damascus','Weapon','Dagger',20,1000,180,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,95,true,'bonus4 bSetDefRace,RC_Player_Human,10000,5000,1; bonus4 bSetMDefRace,RC_Player_Human,10000,5000,1; bonus bAspdRate,getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13073,'Counter_Dagger_','Counter Dagger','Weapon','Dagger',120000,550,140,1,1,true,true,true,true,true,4,55,true,'bonus bCritical,90;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`range`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13074,'Ninja_Cutter','Ninja Sword Prototype','Weapon','Dagger',1,true,true,4,99,true,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13075,'Kurenai','Kurenai','Weapon','Dagger',5000,700,130,1,true,true,3,99,true,'bonus bInt,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13076,'Raksasa_Dagger','Nachal Sword','Weapon','Dagger',40000,600,120,100,1,1,true,true,3,110,true,'bonus bInt,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_ninja`,`class_normal`,`class_upper`,`class_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (13077,'Kagekiri','Kagekiri','Weapon','Dagger',40000,600,50,120,1,true,true,true,true,true,4,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13078,'Mikatsuki','Mikacheuki','Weapon','Dagger',40000,600,50,120,1,1,true,true,4,100,true,'bonus bUseSPrate,-5; bonus bVariableCastrate,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`slots`,`job_archer`,`job_assassin`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_soullinker`,`job_supernovice`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13079,'Metal_Dagger','Metal Dagger','Weapon','Dagger',20,55,1,true,true,true,true,true,true,true,true,true,true,true,3,1,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,(.@r*5); bonus bMatk,(.@r*2); .@i = min(BaseLevel/10,12); if(.@i>2) bonus bBaseAtk,((.@i-2)*5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13081,'Octo_kitchen_Knife','Discount knife Octopus','Weapon','Dagger',200000,700,140,3,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,105,true,'.@r = getrefine(); bonus bHit,.@r;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`magic_attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13083,'TE_Woe_Knife','TE Woe Knife','Weapon','Dagger',100,100,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,40,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Silence,3000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_mage`,`job_merchant`,`job_ninja`,`job_soullinker`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (13085,'Volcano_Knife','Volcano Knife','Weapon','Dagger',10,200,80,true,true,true,true,true,true,true,4,60,'bonus bAtkEle,Ele_Fire; bonus bAgi,2; bonus bMaxHPrate,-2; bonus2 bSubEle,Ele_Fire,2; bonus2 bSubEle,Ele_Water,-5; .@r = getrefine(); if(.@r>=7){ bonus bMaxHPrate,.@r-6; bonus2 bSubEle,Ele_Fire,3; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (13086,'Goldsmithing_Dagger','Goldsmithing Dagger','Weapon','Dagger',20,500,35,25,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,1,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`slots`,`job_archer`,`job_mage`,`job_merchant`,`job_ninja`,`job_soullinker`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13088,'Greater_Lease','Greater Lease','Weapon','Dagger',10,500,110,50,1,true,true,true,true,true,true,true,true,4,30,true,'.@r = getrefine(); if (.@r >= 5) bonus bMatk,30; if (.@r >= 7) bonus bMatk,40; if (.@r >= 9) bonus bMatk,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13089,'FaceWorm_Leg','Faceworm Leg','Weapon','Dagger',20,500,110,50,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,24,true,'bonus bAtkEle,Ele_Poison; autobonus "{}",30,5000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; active_transform 2528,5000; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13090,'FaceWormQueen_Leg','Faceworm Queen Leg','Weapon','Dagger',20,500,180,120,1,2,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,100,true,'bonus bInt,3; autobonus "{ bonus3 bAutoSpell,\\"NPC_EARTHQUAKE\\",1,200; }",8,5000,BF_NORMAL,"{ specialeffect2 EF_POTION_BERSERK; active_transform 2529,5000; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_soullinker`,`job_supernovice`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (13092,'RWC_Memory_Knife','RWC Memory Knife','Weapon','Dagger',20,650,50,1,1,true,true,true,true,true,true,true,true,true,3,1,true,100,true,'.@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; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (13093,'Thanos_Dagger','Thanos Dagger','Weapon','Dagger',10,800,100,130,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,120,true,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000;','heal -1000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13094,'Devil_Pierced_Dagger','Evil Slayer Stabber Dagger','Weapon','Dagger',900,120,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,100,true,'bonus2 bAddRace,RC_Undead,10; bonus2 bAddRace,RC_Demon,10; .@r = getrefine(); if(.@r>=9) { .@dmg = 5; if(.@r>=12) { .@dmg += 7; } bonus2 bAddClass,Class_All,.@dmg; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13096,'Half_BF_Dagger2','Half BF Dagger2','Weapon','Dagger',20,120,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,1,true,'bonus bStr,1; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon; 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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13097,'Ru_Blue_Dagger','Blue Dagger','Weapon','Dagger',10,1000,160,1,1,true,true,true,true,true,3,100,true,'bonus bStr,5; bonus bInt,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_ninja`,`class_normal`,`class_upper`,`class_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (13098,'Ru_Blue_Ashura','Blue Ashura','Weapon','Dagger',10,1000,150,150,1,1,true,true,true,true,true,3,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13099,'Ru_Blue_Knife','Blue Knife','Weapon','Dagger',10,500,160,1,1,true,true,true,true,true,3,100,true,'bonus bVit,5; bonus bInt,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13100,'Six_Shooter','Six Shooter','Weapon','Revolver',4500,400,30,7,1,true,true,true,true,1,10,true,'bonus bHit,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13101,'Six_Shooter_','Six Shooter','Weapon','Revolver',4500,400,30,7,2,true,true,true,true,1,10,true,'bonus bHit,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13102,'Crimson_Bolt','Crimson Bolt','Weapon','Revolver',20000,450,45,7,1,true,true,true,true,2,35,true,'bonus bHit,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13103,'Crimson_Bolt_','Crimson Bolt','Weapon','Revolver',20000,450,45,7,2,true,true,true,true,2,35,true,'bonus bHit,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13104,'The_Garrison','Garrison','Weapon','Revolver',48000,500,70,7,1,true,true,true,true,2,55,true,'bonus bHit,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13105,'The_Garrison_','Garrison','Weapon','Revolver',48000,500,70,7,2,true,true,true,true,2,55,true,'bonus bHit,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13106,'Gold_Lux','Gold Lux','Weapon','Revolver',100000,500,20,7,true,true,true,true,3,12,true,'bonus bHit,-10; if(getskilllv("GS_GLITTERING")>0) bonus3 bAutoSpell,"GS_GLITTERING",getskilllv("GS_GLITTERING"),100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13107,'Wasteland_Outlaw','Wasteland\'s Outlaw','Weapon','Revolver',20,580,68,7,2,true,true,true,true,3,70,true,'bonus bHit,readparam(bAgi)/10; bonus bAspdRate,readparam(bAgi)/14;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13108,'BF_Pistol1','Soldier Revolver','Weapon','Revolver',70,7,true,true,true,true,3,80,true,100,true,true,true,true,true,true,true,'bonus bDex,2; bonus bHit,-10; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; autobonus "{ bonus bAspdRate,100; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13109,'Wasteland_Outlaw_C','Wasteland Outlaw','Weapon','Revolver',20,100,7,true,true,true,true,3,100,true,true,true,true,true,true,true,true,'bonus bHit,readparam(bAgi)/10; bonus bAspdRate,readparam(bAgi)/14; bonus2 bAddClass,Class_All,40;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13110,'Krieger_Pistol1','Glorious Pistol','Weapon','Revolver',80,7,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5){ bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) { bonus4 bAutoSpellOnSkill,"GS_RAPIDSHOWER","GS_GLITTERING",1,1000; bonus2 bSkillAtk,"GS_RAPIDSHOWER",.@r*2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13111,'Sharpshooter_Revolver','Sharpshooter Revolver','Weapon','Revolver',20,105,7,true,true,true,true,4,1,true,100,true,true,true,true,true,true,true,true,'bonus bDex,2; bonus2 bSkillAtk,"GS_DESPERADO",25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13112,'P_Revolver1','Eden Revlover I','Weapon','Revolver',44,7,true,true,true,true,1,26,100,true,true,true,true,true,true,true,'bonus bHit,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13113,'P_Revolver2','Eden Revlover II','Weapon','Revolver',60,7,true,true,true,true,1,40,100,true,true,true,true,true,true,true,'bonus bHit,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13114,'P_Revolver3','Eden Revolver III','Weapon','Revolver',76,7,true,true,true,true,3,60,100,true,true,true,true,true,true,true,'bonus bHit,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (13115,'Upg_Revolver','Upg Revolver','Weapon','Revolver',20,500,35,7,1,true,true,true,true,3,1,true,100,true,'.@r = getrefine(); bonus bBaseAtk,(.@r*5); bonus bLongAtkRate,(.@r*2); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (13116,'Novice_Revolver','Novice Revolver','Weapon','Revolver',500,20,7,true,true,true,true,1,1,'bonus bHit,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13117,'TE_Woe_Pistol','TE Woe Pistol','Weapon','Revolver',60,7,true,true,true,true,3,40,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Curse,3000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13118,'Tiny_Flame','Fading Flame','Weapon','Revolver',1,100,7,true,true,true,true,1,1,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13119,'Freedom_Flame','Freedom Flame','Weapon','Revolver',1,100,100,7,2,true,true,true,true,3,99,true,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13120,'H_FEATHER_H_FIRE','Heaven\'s Feather & Hell\'s Fire','Weapon','Revolver',1200000,800,150,9,1,true,true,true,true,3,99,true,'bonus2 bSkillAtk,"GS_DESPERADO",20; bonus2 bAddEff,Eff_Burning,200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13122,'ALTAIR_ARES','Altair & Ares','Weapon','Revolver',1450000,1000,200,9,true,true,true,3,140,true,'bonus bHit,5; bonus bAspdRate,10; bonus bLongAtkRate,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13124,'ALTAIR_ARES_','Altair & Ares','Weapon','Revolver',1450000,1000,200,9,1,true,true,true,3,140,true,'bonus bHit,5; bonus bAspdRate,10; bonus bLongAtkRate,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13125,'Metal_Revolver','Metal Revolver','Weapon','Revolver',30,7,1,true,true,true,true,3,1,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,3*.@r; bonus bLongAtkRate,1; if (BaseLevel >= 20) { bonus bBaseAtk,3*(min(BaseLevel,120)/10); }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13126,'Infinity_Pistol','Infinity Pistol','Weapon','Revolver',10,500,175,7,1,true,true,true,4,100,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13127,'Crimson_Revolver','Crimson Revolver','Weapon','Revolver',20,1000,100,7,2,true,true,true,true,3,70,true,'.@r = getrefine(); bonus bBaseAtk,(.@r<=15?pow(.@r,2):225); if(BaseLevel>=70){ bonus bBaseAtk,(BaseLevel/10)*5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13128,'Revolver_of_Vicious_Mind','Revolver of Vicious Mind','Weapon','Revolver',20,1500,150,7,1,true,true,true,true,4,160,true,'bonus bAtk,pow(min(getrefine(),15),2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13129,'Unity_Revolver','Unity Revolver','Weapon','Revolver',20,500,95,7,1,true,true,true,true,3,1,true,100,true,true,true,true,true,true,'bonus bBaseAtk,pow(getrefine(),2)*125/100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13138,'Dark_Rose','Dark Rose','Weapon','Revolver',20,1800,150,7,2,true,true,true,3,120,true,'.@r = getrefine(); bonus bAspdRate,10; if (.@r >= 7) { bonus bLongAtkRate,15; if (.@r >= 9) { bonus bAspd,1; } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13146,'Calf_Deathadder','Calf Deathadder','Weapon','Revolver',1400,170,7,2,true,true,true,4,150,true,'.@r = getrefine(); bonus bAspdRate,10; bonus bLongAtkRate,(.@r/2)*5 + (.@r > 11 ? 5 : 0); if(.@r > 6){ bonus bAspdRate,5; } if(.@r > 8){ bonus2 bSkillAtk,"RL_FIREDANCE",25; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (13150,'Branch','Branch','Weapon','Rifle',3000,500,50,9,3,true,true,true,true,1,1,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13151,'The_Cyclone','Cyclone','Weapon','Rifle',17500,700,120,9,1,true,true,true,true,2,24,true,'bonus bHit,10; bonus bCritical,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13152,'The_Cyclone_','Cyclone','Weapon','Rifle',17500,700,120,9,2,true,true,true,true,2,24,true,'bonus bHit,10; bonus bCritical,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13153,'Dusk','Dusk','Weapon','Rifle',23500,750,150,9,1,true,true,true,true,2,56,true,'bonus bHit,10; bonus bCritical,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13154,'Rolling_Stone','Rolling Stone','Weapon','Shotgun',12000,900,135,9,1,true,true,true,true,1,14,true,'bonus bSplashRange,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13155,'Black_Rose','Black Rose','Weapon','Shotgun',32000,900,180,9,1,true,true,true,true,2,35,true,'bonus bSplashRange,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13156,'Gate_Keeper','Gate Keeper','Weapon','Shotgun',56000,1000,210,9,true,true,true,true,2,24,true,'bonus bSplashRange,1; bonus3 bAutoSpell,"GS_SPREADATTACK",6,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (13157,'Drifter','Drifter','Weapon','Gatling',80000,2300,50,9,1,true,true,true,true,2,55,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13158,'Butcher','Butcher','Weapon','Gatling',130000,2500,75,9,true,true,true,true,3,68,true,'bonus2 bCriticalAddRace,RC_Brute,10; bonus2 bCriticalAddRace,RC_Player_Doram,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13159,'Butcher_','Butcher','Weapon','Gatling',130000,2500,75,9,1,true,true,true,true,3,68,true,'bonus2 bCriticalAddRace,RC_Brute,10; bonus2 bCriticalAddRace,RC_Player_Doram,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13160,'Destroyer','Destroyer','Weapon','Grenade',110000,1200,220,9,true,true,true,true,2,52,true,'bonus bBreakArmorRate,200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13161,'Destroyer_','Destroyer','Weapon','Grenade',110000,1200,220,9,1,true,true,true,true,2,52,true,'bonus bBreakArmorRate,200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (13162,'Inferno','Inferno','Weapon','Grenade',230000,1250,280,9,1,true,true,true,true,2,65,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13163,'Long_Barrel','Long Barrel','Weapon','Rifle',40000,1000,150,9,true,true,true,true,3,70,true,'bonus bHit,10; bonus bCritical,20; bonus bAspdRate,-3; bonus3 bAutoSpell,"GS_TRACKING",5,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13164,'Long_Barrel_','Long Barrel','Weapon','Rifle',40000,1000,150,9,1,true,true,true,true,3,70,true,'bonus bHit,10; bonus bCritical,20; bonus bAspdRate,-3; bonus3 bAutoSpell,"GS_TRACKING",5,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13165,'Jungle_Carbine','Jungle Carbine','Weapon','Rifle',56000,700,170,9,true,true,true,true,3,70,true,'bonus bHit,10; bonus bCritical,4; bonus bAspdRate,10; bonus bHit,-readparam(bDex)/3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13166,'Jungle_Carbine_','Jungle Carbine','Weapon','Rifle',56000,700,170,9,1,true,true,true,true,3,70,true,'bonus bHit,10; bonus bCritical,4; bonus bAspdRate,10; bonus bHit,-readparam(bDex)/3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13167,'Gate_KeeperDD','Gate Keeper-DD','Weapon','Shotgun',72000,1300,200,9,true,true,true,true,4,70,true,'bonus bSplashRange,1; bonus3 bAutoSpell,"GS_SPREADATTACK",6,50; bonus bDef,getrefine(); bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13168,'Thunder_P','Thunder P','Weapon','Shotgun',76000,700,80,9,1,true,true,true,true,3,70,true,'bonus bSplashRange,1; bonus bHit,-5; bonus bAspdRate,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13169,'Thunder_P_','Thunder P','Weapon','Shotgun',76000,700,80,9,2,true,true,true,true,3,70,true,'bonus bSplashRange,1; bonus bHit,-5; bonus bAspdRate,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13170,'Lever_Action_Rifle','Lever Action Rifle','Weapon','Rifle',20,770,138,9,2,true,true,true,true,3,70,true,'bonus bHit,20; bonus bCritical,50; bonus bAspdRate,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13171,'BF_Rifle1','Soldier Rifle','Weapon','Rifle',50,9,true,true,true,true,3,80,true,100,true,true,true,true,true,true,true,'bonus bDex,2; bonus bHit,10; bonus bCritical,10; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bVariableCastrate,"GS_TRACKING",-25; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13172,'BF_Gatling_Gun1','Soldier Gatling Gun','Weapon','Gatling',80,9,true,true,true,true,3,80,true,100,true,true,true,true,true,true,true,'bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; autobonus "{ bonus bBaseAtk,80; bonus2 bHPLossRate,120,1000; }",10,6000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13173,'BF_Shotgun1','Soldier Shotgun','Weapon','Shotgun',100,9,true,true,true,true,3,80,true,100,true,true,true,true,true,true,true,'bonus bDex,2; bonus bSplashRange,1; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; autobonus "{ bonus bBaseAtk,80; bonus2 bHPLossRate,100,1000; }",30,6000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13174,'BF_Launcher1','Soldier Grenade Launcher','Weapon','Grenade',300,9,true,true,true,true,3,80,true,100,true,true,true,true,true,true,true,'bonus bDex,2; bonus bSplashRange,1; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; autobonus "{ bonus bBaseAtk,300; bonus2 bHPLossRate,120,1000; }",30,9000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13175,'Lever_Action_Rifle_C','Lever Action Rifle','Weapon','Rifle',20,170,9,true,true,true,true,3,1,100,true,true,true,true,true,true,true,true,'bonus bHit,20; bonus bCritical,50; bonus bAspdRate,-5; bonus2 bAddClass,Class_All,40;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13176,'Krieger_Rifle1','Glorious Rifle','Weapon','Rifle',90,9,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) { bonus2 bVariableCastrate,"GS_TRACKING",25; bonus2 bSkillAtk,"GS_TRACKING",.@r * 3; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13177,'Krieger_Gatling1','Glorious Gatling Gun','Weapon','Gatling',90,9,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(.@r,14)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(.@r,14)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) { bonus2 bAddClass,Class_All,.@r; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13178,'Krieger_Shotgun1','Glorious Shotgun','Weapon','Shotgun',110,9,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bSplashRange,1; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(.@r,14)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(.@r,14)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) { bonus2 bSkillAtk,"GS_SPREADATTACK",.@r * 2; bonus3 bAddEffOnSkill,"GS_SPREADATTACK",Eff_Stun,2000; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13179,'Krieger_Launcher1','Glorious Grenade Launcher','Weapon','Grenade',330,9,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(.@r,14)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(.@r,14)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,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; }"; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`class_normal`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`) VALUES (13180,'Novice_Rifle','Novice Rifle','Weapon','Rifle',500,50,9,3,true,true,true,true,true,1,1); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`class_normal`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`) VALUES (13181,'Novice_Shotgun','Novice Shotgun','Weapon','Shotgun',1000,80,9,true,true,true,true,true,1,1); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`class_normal`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`) VALUES (13182,'Novice_Gatling','Novice Gatling','Weapon','Gatling',1500,40,9,true,true,true,true,true,1,1); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`class_normal`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`) VALUES (13183,'Novice_Grenade_Launcher','Novice Grenade Launcher','Weapon','Grenade',1500,40,9,true,true,true,true,true,1,1); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13184,'TE_Woe_Rifle','TE Woe Rifle','Weapon','Rifle',80,9,true,true,true,true,3,40,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Silence,1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13185,'TE_Woe_Gatling','TE Woe Gatling','Weapon','Gatling',100,7,true,true,true,true,3,40,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Stun,1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13186,'TE_Woe_Shotgun','TE Woe Shotgun','Weapon','Shotgun',100,7,true,true,true,true,3,40,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Poison,1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13187,'TE_Woe_Grenade','TE Woe Grenade','Weapon','Grenade',100,9,true,true,true,true,3,40,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Blind,1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13189,'COLORSCOPE','Color Scope','Weapon','Rifle',1350000,1200,240,9,2,true,true,true,3,105,true,'bonus bHit,20; bonus bCriticalRate,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13190,'RAG203_','RAG203','Weapon','Rifle',1800000,1300,260,9,1,true,true,true,3,140,true,'bonus bHit,10; bonus bCriticalRate,15; bonus4 bAutoSpell,"AL_DECAGI",1,30,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13192,'DEATHFIRE','Death Fire','Weapon','Shotgun',1250000,2000,400,9,1,true,true,true,3,108,true,'bonus bSplashRange,1; bonus bAtkRange,5; bonus bHit,-50; bonus bAspdRate,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13193,'R_THUNDER','Rolling Thunder','Weapon','Shotgun',1350000,1800,280,9,1,true,true,true,3,120,true,'bonus bSplashRange,1; bonus bHit,-10; bonus bAspdRate,-10; bonus3 bAutoSpell,"MG_THUNDERSTORM",5,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13194,'P_BREAKER','Peace Breaker','Weapon','Shotgun',1950000,1400,250,9,true,true,true,true,3,140,true,'bonus bHit,-25; bonus bAspdRate,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13195,'RAG203','RAG203','Weapon','Rifle',1800000,1300,260,9,true,true,true,3,140,true,'bonus bHit,10; bonus bCriticalRate,15; bonus4 bAutoSpell,"AL_DECAGI",1,30,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13196,'P_BREAKER_','Peace Breaker','Weapon','Shotgun',1950000,1400,250,9,1,true,true,true,true,3,140,true,'bonus bHit,-25; bonus bAspdRate,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (13197,'MINIMAY','Mini Mei','Weapon','Gatling',1600000,2500,220,9,2,true,true,true,true,2,106,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13198,'TEMPEST','Tempest','Weapon','Gatling',2200000,2500,250,9,true,true,true,true,4,140,true,'bonus bHit,-25; bonus bCritical,10; bonus bLongAtkRate,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13199,'TEMPEST_','Tempest','Weapon','Gatling',2200000,2500,250,9,1,true,true,true,true,4,140,true,'bonus bHit,-25; bonus bCritical,10; bonus bLongAtkRate,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13300,'Huuma_Bird_Wing','Huuma Wing Shuriken','Weapon','Huuma',90000,3000,150,1,true,true,true,4,65,true,'bonus bAtkEle,Ele_Wind; bonus bDex,-2; bonus bAgi,-1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13301,'Huuma_Giant_Wheel','Huuma Giant Wheel Shuriken','Weapon','Huuma',40000,2500,50,1,3,true,true,true,4,42,true,'bonus2 bAddEff,Eff_Bleeding,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13302,'Huuma_Giant_Wheel_','Huuma Giant Wheel Shuriken','Weapon','Huuma',40000,2500,50,1,4,true,true,true,4,42,true,'bonus2 bAddEff,Eff_Bleeding,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13303,'Huuma_Blaze','Huuma Blaze Shuriken','Weapon','Huuma',78000,1500,185,1,true,true,true,4,55,true,'bonus bAtkEle,Ele_Fire; bonus bDex,-2; bonus3 bAutoSpell,"MG_FIREBALL",5,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13304,'Huuma_Calm_Mind','Huuma Calm Mind','Weapon','Huuma',20,1550,112,1,2,true,true,true,3,70,true,'bonus2 bSkillAtk,"NJ_HUUMA",30; bonus bNoCastCancel;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13305,'BF_Huuma_Shuriken1','Brave Huuma Front Shuriken','Weapon','Huuma',20,55,1,true,true,true,3,80,true,100,true,true,true,true,true,true,true,'bonus bStr,2; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13306,'BF_Huuma_Shuriken2','Valorous Huuma Front Shuriken','Weapon','Huuma',20,55,1,true,true,true,3,80,true,100,true,true,true,true,true,true,true,'bonus bStr,2; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; autobonus "{ bonus2 bSkillAtk,\\"NJ_HUUMA\\",100; bonus2 bSkillAtk,\\"NJ_ISSEN\\",100; }",50,10000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13307,'Krieger_Huuma_Shuriken1','Glorious Shuriken','Weapon','Huuma',20,55,90,1,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; autobonus "{ bonus2 bSkillAtk,\\"NJ_HUUMA\\",100; bonus2 bSkillAtk,\\"NJ_ISSEN\\",100; }",50,10000; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-3,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-3,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) { bonus5 bAutoSpellOnSkill,"NJ_ISSEN","AL_HEAL",10,1000,1; bonus4 bAutoSpellOnSkill,"NJ_HUUMA","NPC_CRITICALWOUND",2,200; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13308,'Huuma_Blaze_I','Huuma Blaze Shuriken','Weapon','Huuma',230,1,true,true,true,4,100,true,true,true,true,true,true,true,true,'bonus bAtkEle,Ele_Fire; bonus3 bAutoSpell,"MG_FIREBALL",5,30; bonus bDex,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13309,'Huuma_Giant_Wheel_C','Huuma Giant Wheel Shuriken','Weapon','Huuma',99,1,true,true,true,4,1,100,true,true,true,true,true,true,true,true,'bonus2 bAddEff,Eff_Bleeding,100; bonus2 bAddSize,Size_All,80;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`magic_attack`,`range`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13310,'P_Huuma_Shuriken1','P.Huuma Suriken I','Weapon','Huuma',150,50,1,true,true,true,3,60,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13311,'Huuma_Shadow','Sword Huuma Shuriken','Weapon','Huuma',5000,1500,170,1,true,true,true,3,99,true,'bonus bStr,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`range`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13312,'Huuma_Job_Test','Prototype Huuma Shuriken','Weapon','Huuma',3000,1,true,true,true,4,99,true,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13313,'Huuma_Swirling_Petal','Flower Huuma Shuriken','Weapon','Huuma',100000,1500,150,50,1,2,true,true,true,3,110,true,'bonus2 bSkillAtk,"KO_HUUMARANKA",20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13314,'Huuma_Fluttering_Snow','Wave Huuma Shuriken','Weapon','Huuma',100000,1500,200,50,1,true,true,true,4,110,true,'bonus bAtkEle,Ele_Water; bonus3 bAutoSpell,"NJ_HYOUSYOURAKU",max(getskilllv("NJ_HYOUSYOURAKU"),1),30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13315,'Huuma_Thunderstorm','Thunderstorm Huuma Shuriken','Weapon','Huuma',100000,1500,200,50,1,true,true,true,4,110,true,'bonus bAtkEle,Ele_Wind; bonus3 bAutoSpell,"NJ_RAIGEKISAI",max(getskilllv("NJ_RAIGEKISAI"),1),30; bonus2 bAddEff,Eff_Blind,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (13316,'Upg_Huuma_Shuriken','Upg Huuma Shuriken','Weapon','Huuma',20,1500,55,1,1,true,true,true,3,1,true,100,true,'.@r = getrefine(); bonus bBaseAtk,(.@r*10); bonus bMatk,(.@r*5); bonus bLongAtkRate,(.@r); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*5); bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`magic_attack`,`range`,`job_kagerouoboro`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13317,'TE_Woe_Huuma','TE Woe Huuma','Weapon','Huuma',80,100,1,true,true,true,3,40,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Bleeding,1000; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13321,'Half_BF_Huuma_Shuriken2','Half BF Huuma Shuriken','Weapon','Huuma',20,55,1,true,true,true,3,80,true,'bonus bStr,2; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,40; bonus2 bAddRace,RC_Player_Human,40; autobonus "{ bonus2 bSkillAtk,\\"NJ_HUUMA\\",100; bonus2 bSkillAtk,\\"NJ_ISSEN\\",100; }",50,10000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`slots`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13322,'Huuma_Metal_Shuriken','Huuma Metal Shuriken','Weapon','Huuma',20,50,1,1,true,true,true,3,1,true,100,true,true,true,true,true,true,true,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bBaseAtk,.@r*5; bonus bMatk,.@r*3; bonus bLongAtkRate,.@r; if (BaseLevel >= 20 && BaseLevel <= 120) bonus bBaseAtk,3*.@r/10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_kagerouoboro`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13323,'Infinity_Shuriken','Infinity Shuriken','Weapon','Huuma',500,150,40,1,1,true,true,true,4,100,true,100,true,true,true,true,true,true,'bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_kagerouoboro`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13327,'Crimson_Huuma_Shuriken','Crimson Huuma Shuriken','Weapon','Huuma',20,1000,100,1,2,true,true,true,true,3,70,true,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bBaseAtk,(.@r<=15?pow(.@r,2):225); bonus bMatk,(.@r<=15?(pow(.@r,2)/2):225); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_kagerouoboro`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13328,'Huuma_Shuriken_of_Vicious_Mind','Huuma Shuriken of Vicious Mind','Weapon','Huuma',20,1500,150,50,1,1,true,true,true,true,4,160,true,'bonus bAtk,pow(min(getrefine(),15),2); bonus bMatk,pow(min(getrefine(),15),2)/2; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_kagerouoboro`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13329,'Unity_Huuma_Shuriken','Unity Huuma Shuriken','Weapon','Huuma',20,500,95,1,1,true,true,true,true,3,1,true,100,true,true,true,true,true,true,'bonus bBaseAtk,pow(getrefine(),2)*125/100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_kagerouoboro`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13332,'Huuma_Shuriken_of_Dancing_Petals','Huuma Shuriken of Dancing Petals','Weapon','Huuma',2000,250,1,2,true,true,true,4,100,true,'.@r = getrefine(); .@bonus = 20; if (.@r>=7) { bonus bLongAtkRate,10; } if (.@r>=9) { .@bonus += 20; } bonus2 bSkillAtk,"KO_HUUMARANKA",.@bonus;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13337,'Illusion_Huuma_Fluttering_Snow','Illusion Huuma Fluttering Snow','Weapon','Huuma',1500,250,50,1,2,true,true,true,4,120,true,'.@r = getrefine(); bonus bBaseAtk,(30*(.@r/3)); bonus bLongAtkRate,(3*.@r);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13338,'Illusion_Wing_Shuriken','Illusion Wing Shuriken','Weapon','Huuma',1500,300,1,2,true,true,true,4,120,true,'bonus bDex,2; bonus2 bSkillAtk,"KO_HAPPOKUNAI",(9*getrefine());'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_kagerouoboro`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13345,'Huuma_Shuriken_Clearness','Huuma Shuriken Clearness','Weapon','Huuma',20,1300,230,1,2,true,true,true,true,4,100,true,'.@r = getrefine(); bonus bLongAtkRate,2*(.@r/3); bonus bBaseAtk,10*(.@r/2); if (.@r >= 7) { bonus2 bSkillAtk,"KO_HUUMARANKA",30; if (.@r >= 9) { bonus2 bSkillCooldown,"KO_HUUMARANKA",-1000; if (.@r >= 11) { bonus2 bAddEle,Ele_Fire,15; bonus2 bAddEle,Ele_Dark,15; bonus2 bAddRace,RC_Undead,30; bonus2 bAddRace,RC_Demon,30; } } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13400,'Cutlas_','Cutlus','Weapon','1hSword',20,900,150,1,1,true,true,true,true,true,true,true,true,true,true,4,40,true,'skill "SM_BASH",5; bonus bStr,2; bonus bDef,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13401,'Excalibur_C','Excalibur','Weapon','1hSword',1,199,1,true,true,true,true,true,true,true,true,true,true,4,1,100,true,true,true,true,true,true,true,true,'bonus bInt,10; bonus bLuk,10; bonus bAtkEle,Ele_Holy;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13402,'Cutlas_C','Cutlus','Weapon','1hSword',2,185,1,true,true,true,true,true,true,true,true,true,true,4,100,true,true,true,true,true,true,true,true,'skill "SM_BASH",5; bonus bStr,2; bonus bDef,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13403,'Solar_Sword_C','Solar Sword','Weapon','1hSword',2,120,1,true,true,true,true,true,true,true,true,true,true,4,100,true,true,true,true,true,true,true,true,'bonus bAtkEle,Ele_Fire; bonus2 bSPLossRate,15,10000; bonus2 bHPDrainRate,1000,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`class_upper`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13404,'Platinum_Shotel','Platinum Shotel','Weapon','1hSword',20,1500,130,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,55,true,'bonus bCritical,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`class_upper`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13405,'Curved_Sword','Curved Sword','Weapon','1hSword',20,800,125,1,2,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,55,true,'bonus bAspdRate,10; bonus2 bAddEff,Eff_Curse,300;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13406,'Edger','Edger','Weapon','1hSword',20,120,1,true,true,true,true,true,true,true,true,true,true,1,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13407,'Nagan_C','Refined Nagan','Weapon','1hSword',1,148,1,true,true,true,true,true,true,true,true,true,true,4,100,true,true,true,true,true,true,true,true,'skill "TF_DOUBLE",5; bonus bDoubleRate,25; bonus2 bAddRace,RC_DemiHuman,40; bonus2 bAddRace,RC_Player_Human,40;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13408,'Fire_Brand_C','Refined Fireblend','Weapon','1hSword',1,120,1,true,true,true,true,true,true,true,true,true,true,4,100,true,true,true,true,true,true,true,true,'bonus bAtkEle,Ele_Fire; bonus bInt,2; skill "MG_FIREBOLT",5; bonus3 bAutoSpell,"MG_FIREBOLT",5,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13409,'Immaterial_Sword_C','Refined Immaterial Sword','Weapon','1hSword',1,160,1,true,true,true,true,true,true,true,true,true,true,4,100,true,true,true,true,true,true,true,true,'bonus bAtkEle,Ele_Ghost; bonus3 bSPVanishRate,80,45,BF_WEAPON|BF_MAGIC|BF_MISC; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13410,'BF_Sword1','Valorous Gladiator Blade','Weapon','1hSword',20,115,1,true,true,true,true,true,true,true,true,true,true,true,true,3,80,true,100,true,true,true,true,true,true,true,'bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13411,'BF_Sword2','Brave Gladiator Blade','Weapon','1hSword',20,115,74,1,true,true,true,true,true,true,true,true,true,true,true,true,3,80,true,100,true,true,true,true,true,true,true,'bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13412,'Twin_Edge_B','Twin Edge of Naght Sieger','Weapon','1hSword',20,1500,150,1,3,true,true,true,true,true,true,true,true,true,true,true,true,4,75,true,'bonus bAtkEle,Ele_Water; skill "MG_FROSTDIVER",5; autobonus "{ bonus bIgnoreDefClass,Class_Normal; }",50,5000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13413,'Twin_Edge_R','Twin Edge of Naght Sieger','Weapon','1hSword',20,1500,160,1,3,true,true,true,true,true,true,true,true,true,true,true,true,4,75,true,'bonus bAtkEle,Ele_Fire; skill "WZ_METEOR",3; autobonus "{ bonus bIgnoreDefClass,Class_Normal; }",50,5000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13414,'Elemental_Sword','Elemental Sword','Weapon','1hSword',20,1200,105,95,1,3,true,true,true,true,true,true,true,true,true,true,true,true,3,70,true,'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,1000; bonus4 bAutoSpellOnSkill,"MG_LIGHTNINGBOLT","WZ_EARTHSPIKE",3,1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`) VALUES (13415,'N_Falchion','Novice Falchion','Weapon','1hSword',59,1,3,true,true,true,true,true,true,true,true,true,true,true,true,1,2); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13416,'Krieger_Onehand_Sword1','Glorious Flamberge','Weapon','1hSword',20,130,1,true,true,true,true,true,true,true,true,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>6) bonus bAspdRate,5; if(.@r>8) { bonus bAspdRate,5; bonus4 bAutoSpellOnSkill,"SM_BASH","NPC_CRITICALWOUND",2,200; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13417,'Krieger_Onehand_Sword2','Glorious Rapier','Weapon','1hSword',20,130,80,1,true,true,true,true,true,true,true,true,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bInt,6; bonus bInt,.@r-5; bonus bUnbreakableWeapon; if(.@r>5) bonus bUseSPrate,-10; if(.@r>8) bonus bInt,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13418,'Krieger_Onehand_Sword3','Glorious Holy Avenger','Weapon','1hSword',20,130,80,1,true,true,true,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bInt,6; bonus bInt,.@r-5; bonus bUnbreakableWeapon; if(.@r>5) bonus bUseSPrate,-10; if(.@r>8) bonus4 bAutoSpellOnSkill,"PA_PRESSURE","PR_LEXAETERNA",1,1000; if(.@r>9) bonus bInt,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13419,'Holy_Saber','Holy saber','Weapon','1hSword',20,160,1,true,true,true,true,true,true,true,true,true,true,3,100,true,true,true,true,true,true,true,true,'bonus2 bAddEle,Ele_Undead,40; bonus2 bMagicAddEle,Ele_Undead,40;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (13420,'Honglyun\'s_Sword','Honglyun\'s Sword','Weapon','1hSword',20,1200,160,1,1,true,true,true,true,true,true,true,true,true,true,4,70,true,100,true,'bonus bStr,2; bonus bInt,2; bonus3 bAutoSpell,"WZ_METEOR",1,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13421,'Ruber','Ruber','Weapon','1hSword',20,1500,170,1,1,true,true,true,true,true,true,true,true,true,3,50,true,'autobonus "{ bonus2 bSkillAtk,\\"KN_BOWLINGBASH\\",20; bonus2 bSkillAtk,\\"SM_BASH\\",20; }",5,15000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_crusader`,`job_knight`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13422,'Flamberge_C','Flamberge','Weapon','1hSword',185,1,true,true,true,3,1,100,true,true,true,true,true,true,true,true,'bonus2 bAddSize,Size_All,40;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13423,'P_Sabre1','Eden Sabre I','Weapon','1hSword',147,1,true,true,true,true,true,true,true,true,true,true,2,26,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13424,'P_Sabre2','Eden Sabre II','Weapon','1hSword',170,1,true,true,true,true,true,true,true,true,true,true,2,40,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13425,'Tourist_Sword','Tourist Sword','Weapon','1hSword',500,61,1,true,true,true,true,true,true,true,true,true,true,true,true,1,1,100,true,true,true,true,true,true,true,'bonus bStr,1; bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`script`) VALUES (13426,'F_Cutlas_C','Cutlus','Weapon','1hSword',2,185,1,true,true,true,true,true,true,true,true,true,true,4,'skill "SM_BASH",5; bonus bStr,2; bonus bDef,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`script`) VALUES (13427,'F_Solar_Sword_C','Solar Sword','Weapon','1hSword',2,120,1,true,true,true,true,true,true,true,true,true,true,4,'bonus bAtkEle,Ele_Fire; bonus bHPDrainValue,1; bonus2 bSPLossRate,15,10000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (13428,'Priest_Sword','Priest Sword','Weapon','1hSword',20,1200,170,1,3,true,true,true,true,true,true,true,true,true,true,4,50,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`script`) VALUES (13429,'E_Cutlas_C','Cutlus','Weapon','1hSword',2,185,1,true,true,true,true,true,true,true,true,true,true,4,'skill "SM_BASH",5; bonus bStr,2; bonus bDef,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`script`) VALUES (13430,'E_Solar_Sword_C','Solar Sword','Weapon','1hSword',2,120,1,true,true,true,true,true,true,true,true,true,true,4,'bonus bAtkEle,Ele_Fire;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13431,'Chrome_Sword','Chrome Sword','Weapon','1hSword',20,2200,180,1,true,true,true,true,true,true,true,true,true,3,110,true,'bonus bAgi,1; bonus bMaxHPrate,-5; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`) VALUES (13432,'Adventure_Sword','Adventure Sword','Weapon','1hSword',80,1,true,true,true,true,1,1); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13433,'Academy_Sword','Academy Sword','Weapon','1hSword',1200,120,1,1,true,true,true,true,1,30,true,'bonus bMaxHP,200; bonus bMaxSP,100; .@b = BaseLevel/10; bonus bMaxHP,-40*.@b; bonus bMaxSP,-20*.@b;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13434,'P_Saber3','Eden Saber III','Weapon','1hSword',185,1,true,true,true,true,true,true,true,true,true,true,3,60,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13435,'Fire_Brand_','Fireblend','Weapon','1hSword',20,500,100,108,1,3,true,true,true,true,true,true,true,true,true,true,4,40,true,'bonus bAtkEle,Ele_Fire; skill "MG_FIREBOLT",3; bonus3 bAutoSpell,"MG_FIREBOLT",3,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13436,'Ice_Falchon_','Ice Falchion','Weapon','1hSword',20,600,100,108,1,3,true,true,true,true,true,true,true,true,true,true,4,40,true,'bonus bAtkEle,Ele_Water; skill "MG_COLDBOLT",3; bonus3 bAutoSpell,"MG_COLDBOLT",3,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13437,'Orcish_Sword_','Orcish Sword','Weapon','1hSword',20,800,90,1,4,true,true,true,true,true,true,true,true,true,true,true,true,3,5,true,'bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (13438,'Magical_Blade','Magical Blade','Weapon','1hSword',60000,2000,165,110,1,2,true,true,true,true,true,true,true,true,true,true,true,true,4,105,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`magic_attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13439,'TE_Woe_Sword','TE Woe Sword','Weapon','1hSword',120,100,1,true,true,true,true,true,true,true,true,true,true,true,true,3,40,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Poison,3000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_merchant`,`job_novice`,`job_supernovice`,`job_swordman`,`job_thief`,`class_normal`,`class_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13440,'Ceremonial_Sword','Ceremonial Sword','Weapon','1hSword',20,500,60,1,true,true,true,true,true,true,true,true,1,1,true,'bonus bAtkEle,Ele_Holy;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (13441,'Thanos_Sword','Thanos Sword','Weapon','1hSword',10,700,150,100,1,1,true,true,true,true,true,true,true,4,120,true,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000;','heal -1000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13442,'Old_Parasol','Old Parasol','Weapon','1hSword',10,500,120,80,3,true,true,true,true,true,true,true,true,true,true,3,80,true,'bonus bMatk,getrefine(); skill "MG_SOULSTRIKE",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`refineable`,`script`) VALUES (13444,'Pala','Pala','Weapon','1hSword',20,700,190,1,true,true,true,true,true,true,true,true,true,true,3,true,'bonus bAspdRate,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13445,'Half_BF_Sword1','Half BF Sword1','Weapon','1hSword',20,115,1,true,true,true,true,true,true,true,true,true,true,true,true,3,80,true,'bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_novice`,`job_supernovice`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13446,'Star_Dust_Blade_','Star Dust Blade','Weapon','1hSword',1,1000,140,1,3,true,true,true,4,45,true,'bonus2 bAddEff,Eff_Stun,500; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13447,'Byeorrun_Gum_','Byeollungum','Weapon','1hSword',1,900,150,1,2,true,true,true,true,true,true,true,true,true,true,4,40,true,'bonus2 bSubClass,Class_Normal,-10; bonus2 bAddClass,Class_Boss,50; bonus bAllStats,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (13448,'Magical_Blade_','Magical Blade','Weapon','1hSword',1,2000,165,110,1,3,true,true,true,true,true,true,true,true,true,true,true,true,4,105,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13449,'Gladius_Daemonicus','Gladius Daemonicus','Weapon','1hSword',20,1200,130,2,true,true,true,true,true,true,true,true,true,true,4,80,true,'bonus bAspdRate,10; .@r = getrefine(); if(.@r>=9){ autobonus "{ bonus bAspd,3; }",30,5000; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`attack`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`) VALUES (13450,'Saber__','Saber','Weapon',10,1000,115,2,true,true,true,true,true,true,true,true,true,true,3,27,true,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13451,'Ru_Blue_Sword','Ru Blue Sword','Weapon','1hSword',1,1200,200,1,1,true,true,true,true,true,3,100,true,'bonus bStr,5; bonus bAgi,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13452,'Ru_Gold_Sword','Ru Gold Sword','Weapon','1hSword',1200,190,1,2,true,true,true,true,true,3,120,true,'bonus bStr,8; bonus bAgi,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13453,'Mysteltainn__','Mysteltainn','Weapon','1hSword',20,1000,170,1,3,true,true,true,true,true,true,true,true,true,true,4,40,true,'bonus bAtkEle,Ele_Dark; bonus2 bAddEle,Ele_Ghost,15; bonus3 bAutoSpell,"MG_STONECURSE",3,100; bonus2 bAddEff,Eff_Stone,10; bonus bDex,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13454,'Crimson_Saber','Crimson Saber','Weapon','1hSword',20,850,85,1,2,true,true,true,true,true,true,true,true,true,true,true,true,3,70,true,'.@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13455,'Saber_of_Vicious_Mind','Saber of Vicious Mind','Weapon','1hSword',20,1350,135,1,1,true,true,true,true,true,true,true,true,true,true,true,true,4,160,true,'bonus bAtk,pow(min(getrefine(),15),2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13456,'Unity_Sword','Unity Sword','Weapon','1hSword',20,420,80,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,1,true,100,true,true,true,true,true,true,'bonus bBaseAtk,pow(getrefine(),2)*125/100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13457,'Unity_Dagger','Unity Dagger','Weapon','Dagger',20,270,52,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,1,true,100,true,true,true,true,true,true,'bonus bBaseAtk,pow(getrefine(),2)*125/100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_rogue`,`class_upper`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13460,'Sealed_Magic_Sword','Sealed Magic Sword','Weapon','1hSword',1500,100,1,2,true,true,true,true,true,true,true,true,true,true,true,4,100,true,'.@r = getrefine(); .@sp = -100; bonus3 bAutoSpell,"MG_FIREBOLT",5,100; if (.@r >= 7) { .@sp += 50; .@matk = 85; if (.@r >= 10) { bonus bAspd,1; .@sp += 50; .@matk += 45; } bonus bMatk,.@matk; } bonus bMaxSP,.@sp;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_rogue`,`class_upper`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13461,'Sealed_Evil_Sword','Sealed Evil Sword','Weapon','1hSword',1500,100,1,2,true,true,true,true,true,true,true,true,true,true,true,4,100,true,'.@r = getrefine(); .@def = -50; .@mdef = -10; bonus3 bAutoSpell,"WZ_FROSTNOVA",5,100; if (.@r >= 7) { .@crit = 30; .@mdef += 10; if (.@r >= 10) { bonus bAspd,1; .@crit += 20; .@def += 50; } bonus bCritical,.@crit; } bonus bDef,.@def; bonus bMdef,.@mdef;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_rogue`,`class_upper`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13462,'Sealed_Max_Sword','Sealed Maximum Sword','Weapon','1hSword',1500,100,1,2,true,true,true,true,true,true,true,true,true,true,true,4,100,true,'.@r = getrefine(); .@hp = -1000; bonus3 bAutoSpell,"MG_COLDBOLT",5,100; if (.@r >= 7) { .@atk = 65; .@hp += 500; if (.@r >= 10) { bonus bAspd,1; .@atk += 45; .@hp += 500; } bonus bBaseAtk,.@atk; } if (.@hp) { bonus bMaxHP,.@hp; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13469,'Illusion_Immaterial_Sword','Illusion Immaterial Sword','Weapon','1hSword',900,180,1,2,true,true,true,true,true,true,true,true,true,true,4,120,true,'.@r = getrefine(); bonus bSPDrainValue,-1; bonus bUnbreakableWeapon; if (.@r >= 12) { .@val = 20; } bonus2 bSPVanishRate,(80+(20*.@r)),(30+.@val); bonus bAtkEle,Ele_Ghost;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13473,'God\'s_Sword','God\'s Sword','Weapon','1hSword',1300,150,1,2,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,120,true,'bonus bAgi,5; bonus bCritical,50; bonus bFlee2,20; bonus2 bAddRace,RC_Demon,30; .@r = getrefine(); .@rate = 1+.@r; .@s = getskilllv("ASC_BREAKER"); .@slv = 3; if(.@s>3) { .@slv = .@s; } bonus3 bAutoSpell,"ASC_BREAKER",.@slv,.@rate; if(.@r>=8){ skill "ASC_BREAKER",3; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (13474,'Sword___','Sword','Weapon','1hSword',1,500,25,1,4,true,true,true,true,true,true,true,true,true,true,true,true,1,2,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (13475,'Falchion___','Falchion','Weapon','1hSword',1,600,39,1,4,true,true,true,true,true,true,true,true,true,true,true,true,1,2,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (13476,'Blade___','Blade','Weapon','1hSword',1,700,53,1,4,true,true,true,true,true,true,true,true,true,true,true,true,1,2,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (13477,'Lapier___','Rapier','Weapon','1hSword',10,500,70,1,3,true,true,true,true,true,true,true,true,true,true,true,true,2,14,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (13478,'Scimiter___','Scimitar','Weapon','1hSword',10,700,85,1,3,true,true,true,true,true,true,true,true,true,true,true,true,2,14,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (13479,'Tsurugi___','Tsurugi','Weapon','1hSword',1,1200,130,1,2,true,true,true,true,true,true,true,true,true,true,3,27,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (13480,'Ring_Pommel_Saber__','Ring Pommel Saber','Weapon','1hSword',1,900,100,1,3,true,true,true,true,true,true,true,true,true,true,2,14,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`attack`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (13481,'Saber___','Saber','Weapon',1,1000,115,3,true,true,true,true,true,true,true,true,true,true,3,27,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13482,'Orcish_Blade','Orcish Blade','Weapon','1hSword',1,1200,120,1,1,true,true,true,true,true,true,true,true,true,true,3,50,true,'bonus2 bSkillAtk,"SM_BASH",5; bonus bMaxHP,150; bonus bHealPower2,5; bonus bUseSPrate,-50; .@r = getrefine(); if(.@r>=7){ bonus2 bSkillAtk,"SM_BASH",5; bonus bHealPower2,5; } if(.@r>=9){ bonus2 bSkillAtk,"SM_BASH",5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`slots`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13483,'Beginner_Genetic\'s_Sword','Beginner Genetic\'s Sword','Weapon','1hSword',1,140,1,1,true,true,true,true,true,3,100,true,'.@r = getrefine(); bonus bVariableCastrate,-10; if(.@r>=7){ bonus2 bSkillAtk,"GN_CARTCANNON",15; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13485,'Honglyun\'s_Sword_','Honglyun\'s Sword','Weapon','1hSword',1,800,180,1,2,true,true,true,true,true,4,100,true,'.@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bLongAtkRate,4*(.@r/3); if(.@r>=9){ bonus2 bSkillUseSPrate,"GN_CARTCANNON",10; } if(.@r>=11){ bonus2 bSkillAtk,"GN_CARTCANNON",15; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13492,'Abyss_Blade','Abyss Blade','Weapon','1hSword',1,1200,150,130,1,1,true,true,true,true,true,true,true,true,true,true,4,165,true,'.@r = getrefine(); bonus bUnbreakableWeapon; if(.@r>=7){ bonus2 bAddClass,Class_All,5; bonus2 bSubRace,RC_Player_Human,5; } if(.@r>=9){ bonus2 bAddClass,Class_All,5; bonus2 bSubRace,RC_Player_Human,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13493,'Cannon_Rapier-OS','Cannon Rapier-OS','Weapon','1hSword',20,800,160,150,1,2,true,true,true,true,true,true,true,true,true,true,true,true,4,130,true,'.@r = getrefine(); bonus3 bAutoSpell,"MG_FIREBALL",min(.@r,10),100; if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus2 bSkillAtk,"MG_FIREBALL",30; if (.@r >= 11) { bonus3 bAutoSpell,"WL_HELLINFERNO",3,100; } } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`slots`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13495,'Sealed_Red_Lotus_Sword','Sealed Red Lotus Sword','Weapon','1hSword',1,180,1,2,true,true,true,true,true,4,99,true,'.@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bLongAtkRate,4*(.@r/3); if(.@r>=7){ bonus2 bSkillUseSPrate,"GN_CARTCANNON",10; } if(.@r>=9){ bonus2 bSkillAtk,"GN_CARTCANNON",15; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13497,'Edge_','Edge','Weapon','1hSword',1,1200,60,1,1,true,true,true,true,true,true,true,true,true,true,4,60,true,'bonus bHit,-40; bonus3 bAddEffOnSkill,"RG_RAID",Eff_Bleeding,100; bonus2 bSkillAtk,"RG_RAID",50; .@s = getskilllv("SM_SWORD"); bonus bHit,3*.@s; bonus2 bAddClass,Class_All,2; .@r = getrefine(); if(.@r>=9){ bonus bHit,2*.@s; bonus2 bAddClass,Class_All,2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13498,'Nagan_','Nagan','Weapon','1hSword',1,500,120,1,1,true,true,true,true,true,true,true,true,true,true,4,60,true,'.@b = readparam(bStr); bonus bCritical,1*(.@b/10); bonus bCritAtkRate,2; skill "TF_DOUBLE",5; .@r = getrefine(); if(.@r>=1){ bonus bCritAtkRate,1*(.@b/10); }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13499,'Kladenets','Kladenets','Weapon','1hSword',1,1500,180,160,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,4,130,true,'.@r = getrefine(); .@rate = 1+.@r; bonus3 bAutoSpellWhenHit,"SO_PSYCHIC_WAVE",3,.@rate; if(.@r>=10){ bonus bFixedCastrate,-70; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`class_upper`,`class_third_upper`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15000,'Bone_Plate','Bone Plate','Armor',20,1000,60,1,true,true,true,true,true,true,true,true,true,true,true,true,85,true,'bonus bStr,1; bonus bMdef,3; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus2 bIgnoreDefRaceRate,RC_Brute,10; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,10; bonus3 bAutoSpellWhenHit,"NPC_WIDEBLEEDING",1,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (15001,'Odin\'s_Blessing_I','Odin\'s Blessing','Armor',10,true,false,false,true,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`job_knight`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (15002,'Rune_Plate','Rune Plate','Armor',95,1,true,true,99,true,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_armor`,`equip_level_min`,`script`) VALUES (15003,'Freyja_SRobe7','Freyja Soul Robe7','Armor',300,7,true,20,'bonus bMaxHP,700;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_armor`,`equip_level_min`,`script`) VALUES (15004,'Freyja_SRobe30','Freyja Soul Robe30','Armor',300,7,true,20,'bonus bMaxHP,700;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_armor`,`equip_level_min`,`script`) VALUES (15005,'Freyja_SRobe60','Freyja Soul Robe60','Armor',300,7,true,20,'bonus bMaxHP,700;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_armor`,`equip_level_min`,`script`) VALUES (15006,'Freyja_SRobe90','Freyja Soul Robe90','Armor',300,7,true,20,'bonus bMaxHP,700;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (15007,'Time_Keepr_Robe','Time Keeper Robe','Armor',30000,62,true,1,true,100,true,true,true,true,true,true,'bonus bMdef,1; bonus bStr,2; bonus bMaxHP,200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (15008,'Flame_Sprits_Armor__','Flame Sprits Armor','Armor',20,1000,25,true,1,true,100,true,'bonus bMdef,1; bonus bDefEle,Ele_Fire; bonus2 bSubDefEle,Ele_Earth,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_armor`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (15009,'Para_Team_Uniform1','Eden Team Uniform I','Armor',35,true,7,100,true,true,true,true,true,true,true,'bonus bMaxHP,100; bonus bMaxSP,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_armor`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (15010,'Para_Team_Uniform2','Eden Team Uniform II','Armor',46,true,26,100,true,true,true,true,true,true,true,'bonus bMaxHP,200; bonus bMaxSP,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_armor`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (15011,'Para_Team_Uniform3','Eden Team Uniform III','Armor',58,true,40,100,true,true,true,true,true,true,true,'bonus bMaxHP,300; bonus bMaxSP,30; bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15012,'Puente_Robe','Puente Robe','Armor',12000,400,42,1,true,22,true,'bonus bFixedCastrate,-3; bonus bHealPower,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_armor`,`equip_level_min`,`refineable`) VALUES (15013,'Claire_Suits','Claire Suits','Armor',28000,2800,58,1,true,false,false,true,true,true,22,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`) VALUES (15014,'Ebone_Armor','Ebon Armor','Armor',40000,4500,93,1,true,true,true,true,true,true,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (15015,'Upg_Adv_Suit','Upg Adv Suit','Armor',20,150,25,1,true,1,true,100,true,'bonus bMaxHPrate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (15016,'Upg_Coat','Upg Coat','Armor',20,600,47,1,true,false,false,true,1,true,100,true,'bonus bMaxHPrate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_merchant`,`job_monk`,`job_priest`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (15017,'Upg_Saint_Robe','Upg Saint Robe','Armor',20,300,55,1,true,true,true,true,true,true,true,1,true,100,true,'bonus bMdef,5; bonus bMaxHPrate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (15018,'Upg_Tights','Upg Tights','Armor',20,250,32,1,true,true,true,true,1,true,100,true,'bonus bDex,1; bonus bMaxHPrate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_assassin`,`job_ninja`,`job_rogue`,`job_thief`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (15019,'Upg_Thief_Cloth','Upg Thief Cloth','Armor',20,100,45,1,true,true,true,true,true,1,true,100,true,'bonus bAgi,1; bonus bMaxHPrate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (15020,'Upg_Mail','Upg Mail','Armor',20,1650,60,1,true,true,true,true,true,true,true,true,true,true,1,true,100,true,'bonus bMaxHPrate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (15021,'Upg_Formal_Dress','Upg Formal Dress','Armor',20,150,45,1,true,false,false,true,1,true,100,true,'bonus bMaxHPrate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15022,'Brazil_Swimsuit','Brazil Swimsuit','Armor',20,100,1,true,1,true,'bonus bStr,4; bonus bInt,4; bonus bMdef,3; bonus2 bSubEle,Ele_Water,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_armor`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (15023,'Half_Brynhild','Half Brynhild','Armor',20,60,true,47,100,true,true,true,true,true,true,true,'bonus bMdef,10; bonus bMaxHP,20*BaseLevel; bonus bMaxSP,5*BaseLevel; bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bUnbreakableArmor; bonus bNoKnockback;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_armor`,`equip_level_min`,`refineable`) VALUES (15024,'Army_Padding','Army Padding','Armor',10,10,true,1,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_wizard`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15025,'Golden_Rod_Robe','Golden Rod Robe','Armor',20,500,40,true,true,100,true,'bonus bDefEle,Ele_Wind; bonus bMdef,10; bonus bInt,1; bonus2 bSkillVariableCast,"WZ_VERMILION",-3000; if(readparam(bInt)>=120){ bonus bInt,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_wizard`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15026,'Aqua_Robe','Aqua Robe','Armor',20,500,40,true,true,100,true,'bonus bDefEle,Ele_Water; bonus bMdef,10; bonus bInt,1; bonus2 bSkillVariableCast,"WZ_STORMGUST",-3000; if(readparam(bInt)>=120){ bonus bInt,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_wizard`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15027,'Crimson_Robe','Crimson Robe','Armor',20,500,40,true,true,100,true,'bonus bDefEle,Ele_Fire; bonus bMdef,10; bonus bInt,1; bonus2 bSkillVariableCast,"WZ_METEOR",-3000; if(readparam(bInt)>=120){ bonus bInt,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_wizard`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15028,'Forest_Robe','Forest Robe','Armor',20,500,40,true,true,100,true,'bonus bDefEle,Ele_Earth; bonus bMdef,10; bonus bInt,1; bonus2 bSkillVariableCast,"WZ_HEAVENDRIVE",-3000; if(readparam(bInt)>=120){ bonus bInt,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15029,'Robe_Of_Affection','Robe Of Affection','Armor',20,300,22,true,true,true,true,true,100,true,'bonus bDefEle,Ele_Holy; bonus bMdef,10; bonus bInt,1; bonus2 bSkillUseSP,"AB_CLEMENTIA",50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15030,'Robe_Of_Judgement','Robe Of Judgement','Armor',20,300,22,true,true,true,true,true,100,true,'bonus bDefEle,Ele_Dark; bonus bMdef,10; bonus bStr,2; bonus bInt,1; bonus2 bSubRace,RC_All,-10; bonus2 bSubRace,RC_Undead,20; bonus2 bSubRace,RC_Demon,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_armor`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (15031,'Para_Team_Armor','Paradise Uniform IV','Armor',70,true,60,100,true,true,true,true,true,true,true,'bonus bMdef,5; bonus bMaxHP,500; bonus bMaxSP,50; bonus bStr,1; bonus bInt,1; bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`refineable`,`script`) VALUES (15032,'Tidung','Tidung','Armor',10,500,2,1,true,false,false,true,true,'bonus bMdef,10; bonus2 bResEff,Eff_Stun,1500; bonus2 bResEff,Eff_Freeze,1500; bonus2 bSubClass,Class_All,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_armor`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (15033,'Tutorial_Mattle','Tutorial Mantle','Armor',600,37,true,1,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (15034,'Tutorial_Mattle_','Tutorial Mantle','Armor',600,37,1,true,1,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`refineable`,`script`) VALUES (15035,'2010_Love_Daddy','2010 Love Dad','Armor',10,100,6,1,true,true,'bonus bAllStats,1; bonus bMaxHP,150; bonus bMaxSP,150; bonus2 bResEff,Eff_Stone,9000; bonus2 bResEff,Eff_Freeze,9000; bonus2 bResEff,Eff_Stun,9000; bonus2 bResEff,Eff_Sleep,9000; bonus2 bResEff,Eff_Silence,9000; bonus2 bResEff,Eff_Curse,9000; bonus2 bResEff,Eff_Confusion,9000; bonus2 bResEff,Eff_Blind,9000; bonus2 bResEff,Eff_Poison,9000; bonus2 bResEff,Eff_Bleeding,9000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15036,'Ur_Plate','Ur\'s Plate','Armor',20,3000,110,true,true,true,true,true,100,true,'bonus bMdef,10; bonus bMaxHPrate,getrefine(); bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubEle,Ele_Neutral,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15037,'Peuz_Plate','Peuz\'s Plate','Armor',20,3000,110,true,true,true,true,true,100,true,'bonus bMdef,10; bonus bBaseAtk,20; bonus bFlee,17;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_assassin`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15038,'Sabah_Cloth','Sapha\'s Cloth','Armor',20,100,45,1,true,true,100,true,'bonus bLuk,3; bonus3 bAutoSpell,"ASC_METEORASSAULT",max(getskilllv("ASC_METEORASSAULT"),1),20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_assassin`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15039,'Nab_Cloth','Nab\'s Cloth','Armor',20,100,45,1,true,true,100,true,'bonus bStr,2; bonus bInt,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15040,'Prison_Uniform','Prison Uniform','Armor',10,1500,5,true,50,true,'.@r = getrefine(); bonus bHit,.@r; bonus bFlee,.@r;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15041,'Boitata_Armor','Boitata Armor','Armor',20,600,45,1,true,60,true,'bonus bMdef,3; bonus2 bSubEle,Ele_Neutral,7; bonus bMaxHPrate,5; bonus bFlee,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_hunter`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15042,'White_Wing_Suits','White Wing Suits','Armor',20,100,45,1,true,true,100,true,'.@r = getrefine(); bonus bLongAtkRate,.@r*2; bonus bFlee,.@r;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15043,'Black_Wing_Suits','Black Wing Suits','Armor',20,100,45,1,true,true,true,true,true,100,true,'bonus bInt,2; bonus bBaseAtk,getrefine()*3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15044,'Green_Operation_Coat','Green Surgical Gown','Armor',56000,660,66,1,true,true,100,true,'bonus bDex,1; bonus bMaxSP,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_armor`,`script`) VALUES (15045,'Armor_Of_Valor','Armor Of Valor','Armor',4,true,'bonus bHPrecovRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15046,'Siege_Plate','Siege Plate','Armor',3300,85,1,true,true,true,true,true,true,true,true,true,95,true,'bonus bMdef,5; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; .@r = getrefine(); if(.@r>5) { bonus bHealpower2,12; bonus bAddItemHealRate,12; } if(.@r>8) { bonus bMaxHPrate,25; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_gunslinger`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_merchant`,`job_ninja`,`job_rebellion`,`job_rogue`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`job_thief`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15047,'Siege_Suits','Siege Suit','Armor',750,50,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,95,true,'bonus bMdef,10; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; .@r = getrefine(); if(.@r>5) { bonus bFlee2,5; bonus bLongAtkDef,20; } if(.@r>8) { bonus bMaxHPrate,15; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_novice`,`job_priest`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_wizard`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15048,'Siege_Robe','Siege Robe','Armor',500,40,1,true,true,true,true,true,true,true,true,true,true,95,true,'bonus bMdef,20; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; .@r = getrefine(); if(.@r>5) { bonus bFlee,5; bonus bLongAtkDef,15; } if(.@r>8) { bonus bMaxHP,1000; bonus bMaxSP,100; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15049,'Armor_Of_Faith','Armor Of Faith','Armor',20,1000,true,50,true,'bonus bStr,4; bonus bInt,4; bonus bVit,4; bonus bDex,4; bonus bAgi,4; bonus bLuk,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15050,'Armor_Of_Sanctity','Armor Of Sanctity','Armor',20,1000,true,50,true,'bonus bStr,4; bonus bInt,4; bonus bVit,4; bonus bDex,4; bonus bAgi,4; bonus bLuk,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15051,'Bakonawa_Armor','Bakunawa Scale Armor','Armor',20,500,55,true,1,true,'bonus2 bSubClass,Class_Boss,getrefine()/2; bonus bAllStats,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15052,'Bayani_Bakonawa_Armor','Bayani Bakunawa Scale Armor','Armor',20,500,55,1,true,1,true,'bonus2 bSubClass,Class_Boss,getrefine()/2; bonus bAllStats,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_ninja`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15053,'Special_Ninja_Suit','Special Ninja Suit','Armor',10000,1200,70,true,true,100,true,'bonus bAgi,1+(getrefine()/3);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_ninja`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15054,'Ninja_Scale_Armor','Ninja Scale Armor','Armor',10000,1800,90,1,true,true,100,true,'bonus bMaxHPrate,15; bonus bMaxSPrate,-30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_ninja`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15055,'Tenebris_Latitantes','Armor of Nothingness','Armor',10000,1500,60,1,true,true,100,true,'bonus bAgi,1; bonus4 bAutoSpellWhenHit,"KO_ZANZOU",1,50,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_ninja`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15056,'Special_Ninja_Suit_','Special Ninja Suit','Armor',10000,1200,70,1,true,true,100,true,'bonus bAgi,1+(getrefine()/3);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`refineable`) VALUES (15057,'Pure_White_Apron','Pure White Apron','Armor',20,600,50,1,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_archer`,`job_novice`,`job_supernovice`,`job_swordman`,`job_thief`,`class_normal`,`class_upper`,`class_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15058,'Rider_Suit','Rider Suit','Armor',20,1000,40,1,true,true,true,true,true,true,true,true,true,1,true,'bonus bAgi,1+(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`refineable`) VALUES (15059,'2011Love_Daddy','2011Love Daddy','Armor',20,100,80,1,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`refineable`,`script`) VALUES (15060,'Sky_Blue_Smock','Sky Blue Smock','Armor',20,300,1,1,true,true,'bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; if(BaseLevel<80) { bonus bHealPower,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15061,'Egir_Armor','Egir Armor','Armor',200000,2600,55,1,true,110,true,'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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (15062,'TE_Woe_Coat','TE Woe Coat','Armor',15,true,40,true,100,true,true,true,true,true,true,true,'bonus bMdef,15; bonus bMaxHP,250; bonus bMaxSP,250; bonus2 bSubRace,RC_Player_Human,10; bonus2 bResEff,Eff_Freeze,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (15063,'TE_Woe_Chain_Mail','TE Woe Chain Mail','Armor',25,true,true,true,true,true,true,true,40,true,100,true,true,true,true,true,true,true,'bonus bMdef,5; bonus bMaxHP,450; bonus bMaxSP,50; bonus2 bSubRace,RC_Player_Human,15; bonus2 bResEff,Eff_Freeze,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`job_acolyte`,`job_mage`,`job_monk`,`job_novice`,`job_priest`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_wizard`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (15064,'TE_Woe_Mage_Coat','TE Woe Mage Coat','Armor',5,true,true,true,true,true,true,true,true,true,true,40,true,100,true,true,true,true,true,true,true,'bonus bMdef,25; bonus bMaxHP,200; bonus bMaxSP,200; bonus2 bSubRace,RC_Player_Human,5; bonus2 bResEff,Eff_Freeze,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15066,'Engraved_Armor','Engraved Plate Armor','Armor',100000,3000,120,1,true,true,true,true,150,true,'bonus bMdef,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (15067,'Rune_Suit','Rune Suit','Armor',true,1,true,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddRace,RC_All,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15068,'Im_Angel\'s_Protection','Advanced Angelic Protection','Armor',10000,600,40,1,true,true,true,99,true,'bonus bMdef,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_armor`,`refineable`) VALUES (15069,'Suit_Of_Sid','Suit Of Sid','Armor',20,1000,30,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15070,'Clothes_of_Happiness','Clothes of Happiness','Armor',10,1000,5,1,true,1,true,'bonus bMdef,5; bonus bLuk,getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_upper`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15071,'Valkyrian_Robe','Valkyrian Robe','Armor',20,2800,55,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,true,'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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15072,'Nectar_Suit','Nectar Suit','Armor',20,300,35,1,true,1,true,'bonus bVit,3; bonus bMdef,5; bonus bMaxHPrate,(getrefine()/2); bonus bMaxSPrate,(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15073,'Anti_Magic_Suit','Anti-Magic Suits','Armor',10,1500,50,1,true,99,true,'.@r = getrefine(); bonus bMaxHPrate,5+((.@r >= 9) ? 2 : 0); bonus bMdef,10+((.@r >= 7) ? 5 : 0);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15074,'Geffen_Mage_Robe','Geffen Magic Robe','Armor',10,1000,40,1,true,99,true,'.@r = getrefine(); bonus bUseSPrate,-10-((.@r>=7) ? 5: 0); bonus bVariableCastrate,15-((.@r>=9) ? 5: 0); bonus bNoCastCancel2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15087,'Azure_Dragon_Armor','Azure Dragon Armor','Armor',20,500,55,1,true,70,true,'bonus bDefEle,Ele_Water; bonus bMdef,5; bonus2 bAddEle,Ele_Water,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`refineable`,`script`) VALUES (15088,'School_Uniform','School Uniform','Armor',20,500,25,1,true,true,'bonus bAgi,1; bonus bLuk,1; bonus bMaxHP,BaseLevel*3; bonus bMaxSP,BaseLevel/2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15089,'Menswear','Menswear','Armor',10,300,40,true,false,false,true,80,true,'.@r = getrefine(); bonus bAspdRate,3+((.@r>=7)?2:0); bonus bDelayrate,-3-((.@r>=7)?2:0); bonus bVariableCastrate,-3-((.@r>=7)?2:0);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15090,'Armor_Of_Gray','Armor of Gray','Armor',10,2400,90,1,true,true,true,true,true,true,true,true,true,true,true,true,true,120,true,'bonus bMdef,10; bonus2 bSubEle,Ele_Holy,10+getrefine()*2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15091,'Gray_Robe','Gray Robe','Armor',20,1300,55,1,true,true,true,true,true,true,true,true,true,true,120,true,'bonus2 bSubEle,Ele_Holy,10+getrefine()*2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15093,'Hero_Plate','Hero Plate','Armor',10,4000,120,1,true,true,true,true,160,true,'bonus bMdef,5; bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bMatk,10; bonus bBaseAtk,10; bonus bHit,10; bonus bFlee,10; bonus2 bSkillAtk,"LG_BANISHINGPOINT",10; bonus2 bSkillAtk,"RK_HUNDREDSPEAR",10; .@r = getrefine(); bonus5 bAutoSpell,"AL_HEAL",10,50+.@r,BF_SHORT,0; bonus5 bAutoSpell,"WZ_STORMGUST",10,50+.@r,BF_SHORT,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_mage`,`job_sage`,`job_wizard`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15094,'Hero_Magic_Coat','Hero Magic Coat','Armor',10,800,50,1,true,true,true,true,160,true,'bonus bMatk,10; bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bFlee,10; bonus2 bSkillAtk,"WL_CRIMSONROCK",10; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",10; .@r = getrefine(); if (.@r) { bonus bFixedCastrate,21-.@r/2; bonus bNoCastCancel2; bonus bMdef,.@r/2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15095,'Hero_Judgement_Shawl','Hero Judgement Shawl','Armor',10,500,77,1,true,true,true,true,160,true,'bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bMatk,10; bonus bBaseAtk,10; bonus bHit,10; bonus bFlee,10; bonus2 bSkillAtk,"AB_JUDEX",10; bonus2 bSkillAtk,"AB_ADORAMUS",10; bonus2 bSkillAtk,"SR_DRAGONCOMBO",10; bonus2 bSkillAtk,"SR_SKYNETBLOW",10; bonus2 bSkillAtk,"SR_EARTHSHAKER",10; .@r = getrefine(); bonus5 bAutoSpell,"PR_KYRIE",10,50+.@r,BF_SHORT,0; bonus5 bAutoSpell,"PR_LEXAETERNA",1,50+.@r,BF_MAGIC,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_blacksmith`,`job_merchant`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15096,'Hero_Trade_Mail','Hero Trade Mail','Armor',10,500,100,1,true,true,true,true,true,true,true,160,true,'bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bMatk,10; bonus bBaseAtk,10; .@r = getrefine(); if(readparam(bStr) >= 90) bonus bStr,.@r/2; if(readparam(bInt) >= 90) bonus bInt,.@r/2; if(readparam(bAgi) >= 90) bonus bAgi,.@r/2; if(readparam(bVit) >= 90) bonus bVit,.@r/2; if(readparam(bDex) >= 90) bonus bDex,.@r/2; if(readparam(bLuk) >= 90) bonus bLuk,.@r/2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_assassin`,`job_rogue`,`job_thief`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15097,'Hero_Hidden_Cloth','Hero Hidden Cloth','Armor',10,200,70,1,true,true,true,true,160,true,'bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus2 bSkillAtk,"SC_FATALMENACE",10; bonus2 bSkillAtk,"SC_TRIANGLESHOT",10; bonus2 bSkillAtk,"GC_CROSSIMPACT",10; bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",10; autobonus "{ bonus bCritical,20; bonus bFlee,20; bonus2 bAddClass,Class_All,10; bonus bMatkRate,10; }",(5+getrefine())*10,10000,BF_WEAPON;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15098,'Hero_Taget_Suits','Hero Target Suit','Armor',10,200,60,1,true,true,true,true,true,true,true,160,true,'bonus bMaxHPrate,5; bonus bMaxSPrate,5; .@r = getrefine(); bonus bAllStats,1; bonus5 bAutoSpell,"AC_CONCENTRATION",10,(5+.@r)*5,BF_WEAPON,0; bonus5 bAutoSpell,"AC_DOUBLE",10,(5+.@r)*5,BF_WEAPON,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15100,'Frozen_Breastplate','Frozen Breastplate','Armor',20,1500,20,1,true,130,true,'bonus bDefEle,Ele_Water;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15101,'Harden_Breastplate','Hardened Breastplate','Armor',20,1500,20,1,true,130,true,'bonus bDefEle,Ele_Earth;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15102,'Hunter_Mail','Hunter Mail','Armor',20,500,30,1,true,50,true,'.@r = getrefine(); if (.@r>5) .@a = (.@r-5); else .@a = 0; bonus2 bAddRace,RC_Brute,3+.@a; bonus2 bMagicAddRace,RC_Brute,3+.@a; bonus2 bAddRace,RC_Player_Doram,3+.@a; bonus2 bMagicAddRace,RC_Player_Doram,3+.@a;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`script`) VALUES (15103,'Kirin_Armor','Kirin Armor','Armor',10,500,55,1,true,70,'bonus bDefEle,Ele_Holy;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`script`) VALUES (15104,'FishingMan_Mail','FishingMan Mail','Armor',10,500,30,1,true,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; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`refineable`,`script`) VALUES (15105,'Kaftan','Kaftan','Armor',20,400,13,1,true,true,'bonus bMdef,3; bonus2 bSubRace,RC_Demon,5; bonus2 bSubRace,RC_Undead,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15106,'Engineer_Mail','Engineer Mail','Armor',20,500,30,1,true,50,true,'.@r = getrefine(); bonus2 bAddRace,RC_Formless,3; bonus2 bMagicAddRace,RC_Formless,3; if (.@r>5) { bonus2 bAddRace,RC_Formless,.@r-5; bonus2 bMagicAddRace,RC_Formless,.@r-5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15108,'Venomous_Insect_Armor','Venomous Insect Armor','Armor',20,500,55,1,true,70,true,'bonus bDefEle,Ele_Poison; bonus bMdef,5; bonus2 bAddEle,Ele_Poison,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15110,'Supplement_Part_Str','Supplement Part Str','Armor',25000,2000,80,true,true,true,true,true,100,true,'bonus2 bAddClass,Class_All,5+getrefine()/4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15111,'Upgrade_Part_Plate','Reinforced Parts - Gloves','Armor',10,3000,110,true,true,true,true,true,100,true,'bonus bUnbreakableArmor; 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; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_armor`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (15116,'Airship_Armor','Airship\'s Armor','Armor',10,700,100,true,125,100,true,true,true,true,true,true,'bonus bMaxHP,1000; bonus bMaxSP,100; bonus bMdef,10; bonus bAllStats,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15117,'Felock_Armor','Felrock\'s Armor','Armor',10,750,70,true,125,true,'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; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15121,'Robe_Of_Sarah','Sarah\'s Battle Robe','Armor',10,800,35,1,true,145,true,'autobonus "{ bonus bMatk,getrefine()*8; }",3,10000,BF_MAGIC;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15123,'Whikebain_Suit','Whikebain Suit','Armor',900,56,1,true,true,true,true,true,105,true,'.@r = getrefine(); bonus bCritAtkRate,(.@r>=7)?(6):((.@r>=5)?(4):(0)); bonus3 bAutoSpell,"DC_WINKCHARM",1,10; /* Confirm: Success rate */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15125,'Female_Diver_Suit','Female Diver\'s Suit','Armor',20,300,20,1,true,80,true,'bonus2 bAddMonsterDropItem,579,500+(getrefine()*100); if (getrefine()>=7) { bonus bHPrecovRate,-100; bonus bHPGainValue,100; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15126,'Female_Poring_Balloon','Private Doram Suits','Armor',20,700,80,1,true,true,true,true,true,100,true,'bonus bMaxHP,500; bonus bMaxSP,100; .@r = getrefine()/3; bonus bDex,.@r; bonus bInt,.@r;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15128,'Excelion_Suit','Excelion Suit','Armor',20,1000,100,true,99,true,'bonus bVit,6 + (BaseLevel > 129 ? 4 : 0); bonus bMaxHPrate,(getrefine() / 3) * 4; bonus bUnbreakableArmor;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15129,'Blue_Bellflower_Hat','Luxury Doram Suit','Armor',20,800,100,1,true,true,true,true,true,140,true,'bonus bMaxHPrate,10; bonus bMaxSPrate,10; .@r = getrefine()/2; bonus bDex,.@r; bonus bInt,.@r;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15138,'Aegir_Armor','Aegir Armor','Armor',10,1600,25,1,true,40,true,'bonus bMaxHP,500; bonus bMaxSP,50; bonus bUnbreakableArmor;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (15141,'Rift_Ancient_Armor','Rift Ancient Armor','Armor',10,500,30,1,true,100,true,100,true,true,true,true,true,true,'.@r = getrefine(); bonus bMaxHP,(.@r >= 9 ? 1500 : .@r >= 7 ? 900 : 500); bonus bMaxSP,-100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15143,'Vermin_Cloth','Vermin Cloth','Armor',10,1200,30,1,true,70,true,'.@r = getrefine(); bonus bMdef,5+.@r; bonus2 bSubRace,RC_Plant,(5+.@r);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15144,'Agriculture_Clothes','Agriculture Clothes','Armor',10,1200,30,1,true,70,true,'.@r = getrefine(); bonus bMdef,5+.@r; bonus2 bSubRace,RC_Insect,5+.@r;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15145,'EvilDragon_Armor','Evil Dragon Armor','Armor',4000,60,1,true,99,true,'.@r = getrefine(); if(.@r>=10){ bonus2 bHPDrainRate,60,6; bonus2 bSPDrainRate,50,5; } else if(.@r>=9){ bonus2 bHPDrainRate,40,4; bonus2 bSPDrainRate,30,3; } else if(.@r>=8){ bonus2 bHPDrainRate,30,3; bonus2 bSPDrainRate,20,2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15146,'Flattery_Robe','Flattery Robe','Armor',20,100,1,true,100,true,'skill "SM_ENDURE",1; .@i = BaseLevel; bonus bMatk,(.@i>=140)?(150):((.@i>=120)?(100):(50));'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15147,'Invective_Robe','Invective Robe','Armor',20,100,1,true,100,true,'skill "AC_CONCENTRATION",1; .@i = getrefine()*4; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,.@i; bonus2 bIgnoreDefRaceRate,RC_Demon,.@i; bonus2 bIgnoreDefRaceRate,RC_Undead,.@i;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15150,'White_Shirt','White Shirt','Armor',20,50,25,1,true,true,true,true,true,6,true,'bonus bMaxHP,70; bonus bFlee,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15151,'White_Eco-Shirt','White Eco-Shirt','Armor',20,100,40,1,true,true,true,true,true,15,true,'bonus bMaxHP,150; bonus bFlee,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (15152,'Unity_Mail','Unity Mail','Armor',10,300,45,1,true,1,true,100,true,true,true,true,true,true,'.@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bStr,2; bonus bMaxHPrate,2*(.@r/2); }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (15153,'Unity_Mantle','Unity Mantle','Armor',10,300,45,1,true,1,true,100,true,true,true,true,true,true,'.@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bAgi,2; bonus bFlee,3*(.@r/2); }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (15154,'Unity_Suit','Unity Suit','Armor',10,300,45,1,true,1,true,100,true,true,true,true,true,true,'.@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bDex,2; bonus bCritical,2*(.@r/2); }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (15155,'Unity_Robe','Unity Robe','Armor',10,300,45,1,true,1,true,100,true,true,true,true,true,true,'.@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bInt,2; bonus bUseSPrate,-(.@r/2); }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15156,'Elegant_Doram_Suit','Elegant Doram Suit','Armor',20,900,120,1,true,true,true,true,true,175,true,'bonus bMaxHPrate,15; bonus bMaxSPrate,15; .@r = getrefine(); bonus bDex,.@r; bonus bInt,.@r; if(.@r > 9) bonus bUseSPrate,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15162,'Lounge_Suit','Lounge Suit','Armor',20,300,40,1,true,false,false,true,80,true,'bonus bAspdRate,3; bonus bCastrate,-3; bonus bDelayrate,-3; if(getrefine() > 6) { bonus bAspdRate,2; bonus bCastrate,-2; bonus bDelayrate,-2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15163,'Agenda_Robe','Agenda Robe','Armor',20,100,1,true,100,true,'skill "SA_SPELLBREAKER",1; if (BaseLevel >= 140) { .@val = 14; } else if (BaseLevel >= 120) { .@val = 9; } else { .@val = 5; } bonus bMatkRate,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15164,'Consultative_Robe','Consultation Robe','Armor',20,100,1,true,100,true,'.@r = getrefine(); bonus bVit,5; skill "PA_SACRIFICE",1; bonus2 bSubEle,Ele_Dark,.@r*3; bonus2 bSubEle,Ele_Fire,.@r*3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (15165,'Pure_White_Marching_Hat','Pure White Marching Hat','Armor',20,300,1,true,60,true,1470,'.@r = getrefine(); bonus bStr,2; autobonus "{ bonus bAtkEle,Ele_Ghost; }",5+.@r,60000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; /* Unknow Rates */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (15166,'Rosary_Necklace','Rosary Necklace','Armor',20,300,true,60,1471,'bonus bFlee2,2; bonus bHealPower,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15169,'Kardui_Robe','Kardui Robe','Armor',20,800,60,1,true,90,true,'.@r = getrefine(); bonus bMatk,10; bonus bMdef,5; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; if(.@r>=7) { bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; } if(.@r>=8) { bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; bonus bUnbreakableArmor; } if(.@r>=9) { bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15174,'Surfer_Swimsuit','Surfer Swimsuit','Armor',20,100,1,1,true,40,true,'bonus bMaxHPrate,(getrefine()/3)+5; bonus bMaxSPrate,(getrefine()/3)+5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15175,'Flame_Dragon_Armor','Flame Dragon Armor','Armor',20,400,100,1,true,90,true,'.@r = getrefine(); if (.@r>=9) .@val = 20; else if (.@r>=7) .@val = 10; bonus bAllStats,1; bonus bHit,10+.@val; bonus2 bAddClass,Class_Boss,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15176,'Vigilante_Suit','Vigilante Suit','Armor',500,50,true,true,true,true,true,100,true,'.@r = getrefine(); bonus bDex,5; bonus bLongAtkRate,3*(.@r/2); if (.@r>=9) bonus2 bSkillAtk,"SC_TRIANGLESHOT",20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15177,'Elemental_Robe','Elemental Robe','Armor',500,40,true,true,true,true,true,100,true,'.@r = getrefine(); bonus bAspdRate,10; bonus bMatk,5*(.@r/2); if (.@r>=9) bonus3 bAutoSpell,"MG_THUNDERSTORM",max(5,getskilllv("MG_THUNDERSTORM")),50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`job_kagerouoboro`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15178,'Golden_Ninja_Suit','Golden Ninja Suit','Armor',500,50,true,true,100,true,'.@r = getrefine(); bonus bflee,5*(.@r/2); if (.@r>=9) bonus2 bSkillAtk,"KO_HAPPOKUNAI",20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15179,'Mine_Worker\'s_Vest','Mine Worker\'s Vest','Armor',1500,80,true,true,true,true,true,100,true,'.@r = getrefine(); bonus bFlee,(10+4*(.@r/2)); if (.@r>=9) bonus bCritical,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15180,'Hippie_Clothes','Hippie Clothes','Armor',50,50,true,true,true,true,true,100,true,'.@r = getrefine(); bonus bBaseAtk,20; if (.@r >= 9) bonus3 bAutoSpell,"AC_DOUBLE",max(3,getskilllv("AC_DOUBLE")),10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_armor`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (15181,'Para_Team_Uniform100','Awakened Eden Group Uniform I','Armor',20,80,true,100,100,true,true,true,true,true,true,'bonus bAllStats,1; bonus bMaxHP,700; bonus bMaxSP,100; bonus bMdef,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_armor`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (15182,'Para_Team_Uniform115','Awakened Eden Group Uniform II','Armor',20,85,true,115,100,true,true,true,true,true,true,'bonus bAllStats,1; bonus bMaxHP,1100; bonus bMaxSP,120; bonus bMdef,11;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_armor`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (15183,'Para_Team_Uniform130','Awakened Eden Group Uniform III','Armor',20,90,true,130,100,true,true,true,true,true,true,'bonus bAllStats,2; bonus bMaxHP,1100; bonus bMaxSP,120; bonus bMdef,11;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_armor`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (15184,'Para_Team_Uniform145','Awakened Eden Group Uniform IV','Armor',20,100,true,145,100,true,true,true,true,true,true,'bonus bAllStats,2; bonus bMaxHP,1500; bonus bMaxSP,150; bonus bMdef,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_armor`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (15185,'Para_Team_Uniform160','Awakened Eden Group Uniform V','Armor',20,100,true,160,100,true,true,true,true,true,true,'bonus bAllStats,2; bonus bMaxHP,1500; bonus bMaxSP,150; bonus bMdef,15; bonus2 bSubEle,Ele_All,5; bonus2 bSubEle,Ele_Neutral,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15186,'Kafra_Uniform','Kafra Uniform','Armor',20,500,40,1,true,1,true,'bonus2 bExpAddClass,Class_All,5; bonus2 bDropAddClass,Class_All,5; .@r = getrefine(); bonus bMaxHP,100*.@r; bonus bMaxSP,20*.@r; bonus bMaxHPrate,(3*(.@r>=7)+5*(.@r>=9)); bonus bMaxSPrate,(3*(.@r>=7)+5*(.@r>=9)); if(.@r>=12){ bonus bHPrecovRate,100; bonus bSPrecovRate,100; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15189,'Einherjar_Armor','Einherjar Armor','Armor',20,800,60,1,true,90,true,'bonus bMdef,5; bonus bBaseAtk,10; .@r = getrefine(); if(.@r>=7){ bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; } if(.@r>=8){ bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; } if(.@r>=9){ bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15191,'Khalitzburg_Knight_Armor','Khalitzburg Knight Armor','Armor',20,100,45,1,true,100,true,'bonus bLongAtkRate,2*getrefine(); bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15195,'Illusion_Puente_Robe','Illusion Puente Robe','Armor',20,400,52,1,true,99,true,'bonus bFixedCastrate,-3; .@r = getrefine(); bonus bHealPower2,(5+.@r); bonus bAddItemHealRate,(5+.@r);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15204,'Abyss_Dress','Abyss Dress','Armor',10,400,120,true,90,true,'.@r = getrefine(); bonus bNoKnockback; bonus bUnbreakableArmor; bonus bDefEle,Ele_dark; if (.@r>=5) { .@val = 10; if (.@r>=7) { .@val += 15; if (.@r>=9) { .@val += 15; } } bonus2 bAddEle,Ele_Dark,.@val; bonus2 bAddEle,Ele_Undead,.@val; bonus2 bMagicAddEle,Ele_Dark,.@val; bonus2 bMagicAddEle,Ele_Undead,.@val; bonus2 bAddRace,RC_Undead,.@val; bonus2 bAddRace,RC_Demon,.@val; bonus2 bMagicAddRace,RC_Undead,.@val; bonus2 bMagicAddRace,RC_Demon,.@val; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15205,'Medical_Scrubs','Medical Scrubs','Armor',20,1000,50,1,true,100,true,'.@r = getrefine(); bonus bMdef,10; bonus bDelayrate,-10; .@val = 1; if (.@r >= 7) { .@def = 50; bonus bUnbreakableArmor,1; .@val += 2; if (.@r >= 8) { .@def += 100; .@val += 3; bonus2 bSubRace,RC_DemiHuman,7; bonus2 bSubRace,RC_Player_Human,7; if (.@r >= 9) { .@def += 150; .@val += 4; bonus2 bResEff,Eff_Stone,5000; } } bonus bDef,.@def; } bonus bHealPower,2*.@val; bonus bHealPower2,.@val; bonus bAddItemHealRate,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15209,'Drake_Coat','Drake Coat','Armor',20,1200,60,1,true,100,true,'.@r = getrefine(); bonus bMaxHP,500; bonus bMaxSP,50; bonus bMdef,10; bonus2 bAddClass,Class_All,3; if (.@r>=7) { bonus bMaxHP,1000; bonus bMaxSP,100; bonus2 bAddClass,Class_All,3; } if (.@r>=9) { bonus bMaxHP,1500; bonus bMaxSP,150; bonus2 bAddClass,Class_All,4; bonus bNoSizeFix; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15212,'YSF01_Plate','YSF01 Plate','Armor',2100,78,1,true,170,true,'.@r = getrefine(); if (.@r >= 13) { .@val = 11; } else if (.@r >= 11) { .@val = 7; } else if (.@r >= 8) { .@val = 5; } if (readparam(bStr) >= 125) { .@val += .@r; } if (.@val) { bonus2 bAddClass,Class_All,.@val; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`location_armor`,`equip_level_min`,`script`) VALUES (15250,'Beginner\'s_Suit','Beginner\'s Suit','Armor',40,1,true,100,'bonus bAllStats,1; bonus bMaxHP,400; bonus bMaxSP,100; bonus2 bAddClass,Class_All,2; bonus2 bMagicAddClass,Class_All,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15280,'S_Cri_Hit_Armor','Critical Hit Shadow Armor','Shadowgear',true,1,true,'.@r = getrefine(); .@val = 7; bonus bBaseAtk,15; if (.@r > 1) { bonus bCritAtkRate,(.@r/2); if (.@r >= 7) { .@val += 7; } } bonus bCritical,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15283,'Mighty_Black_Threaded_Armor','Mighty Black Threaded Armor','Armor',20,800,60,1,true,100,true,'.@r = getrefine(); bonus bBaseAtk,10; bonus2 bIgnoreDefClassRate,Class_All,10; if (.@r>=7) { bonus bBaseAtk,20; bonus2 bIgnoreDefClassRate,Class_All,20; } if (.@r>=8) { bonus bBaseAtk,20; bonus2 bIgnoreDefClassRate,Class_All,20; bonus bUnbreakableArmor; } if (.@r>=9) { bonus bBaseAtk,30; bonus2 bIgnoreDefClassRate,Class_All,20; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15348,'Illusion_Goibne_Armor','Illusion Goibne Armor','Armor',3500,158,1,true,false,false,true,130,true,'bonus bMaxHPrate,10; .@r = getrefine(); if (.@r >= 9) { bonus bDef,150; } else if (.@r >= 7) { bonus bDef,50; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15352,'Nature_Dress','Nature Dress','Armor',10,400,120,true,90,true,'.@r = getrefine(); bonus bNoKnockback; bonus bUnbreakableArmor; bonus bDefEle,Ele_Earth; if (.@r>8) .@a = 40; else if (.@r>6) .@a = 25; else if (.@r>=5) .@a = 10; bonus2 bAddEle,Ele_Earth,.@a; bonus2 bAddEle,Ele_Wind,.@a; bonus2 bMagicAddEle,Ele_Earth,.@a; bonus2 bMagicAddEle,Ele_Wind,.@a; bonus2 bAddRace,RC_Demihuman,.@a; bonus2 bAddRace,RC_Brute,.@a; bonus2 bAddRace,RC_Player_Doram,.@a; bonus2 bMagicAddRace,RC_Demihuman,.@a; bonus2 bMagicAddRace,RC_Brute,.@a; bonus2 bMagicAddRace,RC_Player_Doram,.@a; bonus2 bAddRace,RC_Player_Human,.@a; bonus2 bMagicAddRace,RC_Player_Human,.@a;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15376,'Illusion_Armor_A-type','Illusion Armor A-type','Armor',1000,105,1,true,130,true,'.@r = getrefine(); bonus bBaseAtk,(100+10*(.@r/2)); if (.@r >= 7) { bonus bAspdRate,10; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15377,'Illusion_Armor_B-type','Illusion Armor B-type','Armor',1000,105,1,true,130,true,'.@r = getrefine(); bonus bMatk,(100+10*(.@r/2)); if (.@r >= 7) { bonus bVariableCastrate,-10; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15378,'Lava_Leather_Armor','Lava Leather Armor','Armor',20,1500,85,1,true,175,true,'.@r = getrefine(); bonus bBaseAtk,100; if (.@r>=7) bonus bDef,100; if (.@r>=9) bonus bDef,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15379,'Lava_Leather_Suit','Lava Leather Suit','Armor',20,1000,70,1,true,175,true,'.@r = getrefine(); bonus bBaseAtk,100; if (.@r>=7) bonus bBaseAtk,50; if (.@r>=9) bonus bCritAtkRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15380,'Lava_Leather_Robe','Lava Leather Robe','Armor',20,750,55,1,true,175,true,'.@r = getrefine(); bonus bMatk,100; if (.@r>=7) bonus bMatk,50; if (.@r>=9) bonus bMatk,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15384,'Ritual_Robes','Ritual Robes','Armor',10,400,1,true,100,true,'.@r = getrefine(); bonus bHealPower,5; bonus bDelayrate,-10; bonus bMaxHPrate,5; if (.@r>=7) { bonus bMaxHPrate,5; bonus bHealPower,5; } if (.@r>=8) { bonus bMaxHPrate,5; bonus bHealPower,10; bonus bUseSPrate,-10; bonus2 bResEff,Eff_Sleep,10000; } if (.@r>=9) { bonus bMaxHPrate,5; bonus bHealPower,10; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15405,'Fafnir_Scale','Fafnir Scale','Armor',20,1500,120,true,100,true,'.@r = getrefine(); bonus bMdef,15; bonus bUnbreakableArmor; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bSkillAtk,"RK_DRAGONBREATH",50; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",50; bonus bDelayrate,-2*getskilllv("RK_DRAGONBREATH_WATER"); bonus bLongAtkRate,2*getskilllv("RK_DRAGONBREATH"); if (.@r>=5) { bonus bMaxHPrate,20; bonus bMaxSPrate,20; bonus bDelayrate,-5; } if (.@r>=7) { bonus bMaxHPrate,20; bonus bMaxSPrate,20; bonus bDelayrate,-5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15409,'Bloody_Doll\'s_Dress','Bloody Doll\'s Dress','Armor',10,500,40,1,true,90,true,'.@r = getrefine(); bonus bMdef,5; bonus bMatk,10; bonus bDex,3; bonus2 bSubRace,RC_Player_Human,7; if (.@r>=7) { bonus bAspdRate,10; bonus bDelayrate,-10; } if (.@r>=8) bonus bUnbreakableArmor;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15417,'Armor_of_Purple_Thread','Armor of Purple Thread','Armor',20,800,60,1,true,100,true,'.@r = getrefine(); bonus bBaseAtk,10; bonus bPerfectHitAddRate,5; if (.@r>=7) { bonus bBaseAtk,20; bonus bPerfectHitAddRate,5; } if (.@r>=8) { bonus bBaseAtk,20; bonus bPerfectHitAddRate,10; } if (.@r>=9) { bonus bBaseAtk,30; bonus bPerfectHitAddRate,10; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15419,'Mighty_White_Threaded_Armor','Mighty White Threaded Armor','Armor',20,800,60,1,true,100,true,'.@r = getrefine(); bonus bMatk,10; bonus2 bIgnoreMdefRaceRate,RC_All,10; if (.@r>=7) { bonus bMatk,20; bonus2 bIgnoreMdefRaceRate,RC_All,20; } if (.@r>=8) { bonus bMatk,20; bonus2 bIgnoreMdefRaceRate,RC_All,20; bonus bUnbreakableArmor; } if (.@r>=9) { bonus bMatk,30; bonus2 bIgnoreMdefRaceRate,RC_All,20; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15420,'Ice_Prison_Dress','Ice Prison Dress','Armor',10,400,120,true,90,true,'.@r = getrefine(); bonus bNoKnockback; bonus bUnbreakableArmor; bonus bDefEle,Ele_Water; if (.@r>8) .@a = 40; else if (.@r>6) .@a = 25; else if (.@r>=5) .@a = 10; bonus2 bAddEle,Ele_Fire,.@a; bonus2 bAddEle,Ele_Water,.@a; bonus2 bMagicAddEle,Ele_Fire,.@a; bonus2 bMagicAddEle,Ele_Water,.@a; bonus2 bAddRace,RC_Demihuman,.@a; bonus2 bAddRace,RC_Formless,.@a; bonus2 bMagicAddRace,RC_Demihuman,.@a; bonus2 bMagicAddRace,RC_Formless,.@a; bonus2 bAddRace,RC_Player_Human,.@a; bonus2 bMagicAddRace,RC_Player_Human,.@a;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15388,'King_Schmidt_Suit','King Schmidt\'s Suit','Armor',900,150,1,true,130,true,'.@r = getrefine(); bonus2 bAddSize,Size_Medium,10; bonus2 bAddSize,Size_Large,10; bonus2 bMagicAddSize,Size_Medium,10; bonus2 bMagicAddSize,Size_Large,10; if(.@r > 6){ bonus2 bAddEle,Ele_Fire,10; bonus2 bAddEle,Ele_Dark,10; bonus2 bMagicAddEle,Ele_Fire,10; bonus2 bMagicAddEle,Ele_Dark,10; } if(.@r > 8){ bonus2 bSubRace,RC_Dragon,15; bonus2 bSubRace,RC_Formless,15; } if(.@r > 10){ bonus2 bSubSize,Size_Medium,10; bonus2 bSubSize,Size_Large,10; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (15389,'King_Schmidt_Manteau','King Schmidt\'s Manteau','Armor',600,70,1,true,130,true,'.@r = getrefine(); bonus2 bAddEle,Ele_Fire,(.@r/3)*2; bonus2 bAddEle,Ele_Dark,(.@r/3)*2; bonus2 bMagicAddEle,Ele_Fire,(.@r/3)*2; bonus2 bMagicAddEle,Ele_Dark,(.@r/3)*2; if(.@r > 6){ bonus2 bSubRace,RC_Dragon,5; bonus2 bSubRace,RC_Formless,5; } if(.@r > 10){ bonus2 bAddRace,RC_Dragon,15; bonus2 bAddRace,RC_Formless,15; bonus2 bMagicAddRace,RC_Dragon,15; bonus2 bMagicAddRace,RC_Formless,15; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16000,'Erde','Erde','Weapon','Mace',20,500,130,1,2,true,true,true,true,true,true,true,true,true,true,true,true,3,50,true,'bonus2 bSkillAtk,"AM_ACIDTERROR",20; bonus2 bSkillAtk,"AM_DEMONSTRATION",20; bonus bMaxSP,50; bonus bHealPower,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16001,'Red_Square_Bag','Red Square Bag','Weapon','Mace',20,500,130,1,2,true,true,true,true,true,true,true,true,true,true,true,true,3,50,true,'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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16002,'Stunner_C','Stunner','Weapon','Mace',175,1,true,true,true,true,3,1,100,true,true,true,true,true,true,true,true,'bonus2 bAddEff,Eff_Stun,1000; bonus2 bAddSize,Size_All,40;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (16003,'Carga_Mace','Carga Mace','Weapon','Mace',20,1500,175,1,2,true,true,true,true,true,true,true,true,true,true,3,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (16004,'P_Mace1','Eden Mace I','Weapon','Mace',142,1,true,true,true,true,true,true,true,true,true,true,2,26,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (16005,'P_Mace2','Eden Mace II','Weapon','Mace',163,1,true,true,true,true,true,true,true,true,true,true,2,40,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16006,'Tourist_Mace','Tourist Mace','Weapon','Mace',500,45,1,true,true,true,true,true,true,true,true,true,true,true,true,1,1,100,true,true,true,true,true,true,true,'bonus bInt,1; bonus bAgi,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (16007,'Mjolnir_C','Mjolnir','Weapon','Mace',20,250,1,true,true,true,true,true,true,true,4,95,'bonus bAtkEle,Ele_Wind; bonus bStr,15; bonus bDex,40;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`) VALUES (16008,'F_Spanner_C','Spanner','Weapon','Mace',2,150,1,true,true,true,true,3); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`) VALUES (16009,'E_Spanner_C','Spanner','Weapon','Mace',2,150,1,true,true,true,true,3); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16010,'Red_Ether_Bag','Red Ether Bag','Weapon','Mace',20,1000,15,100,1,1,true,true,true,true,true,true,true,true,true,true,3,102,true,'.@r = getrefine(); if(.@r>=6){ bonus2 bSkillAtk,"GN_CRAZYWEED",20+((.@r-5)*2); bonus2 bSkillAtk,"GN_DEMONIC_FIRE",20+((.@r-5)*2); } else { bonus2 bSkillAtk,"GN_CRAZYWEED",20; bonus2 bSkillAtk,"GN_DEMONIC_FIRE",20; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`) VALUES (16011,'Adventure_Mace','Adventure Mace','Weapon','Mace',60,1,true,true,true,true,1,1); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (16012,'Academy_Mace','Academy Mace','Weapon','Mace',1000,110,1,1,true,true,true,true,1,1,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16013,'Mace_Of_Judgement','Mace Of Judgement','Weapon','Mace',20,1200,140,180,1,2,true,true,true,true,true,3,100,true,'bonus bAtkEle,Ele_Holy; 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; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (16014,'P_Mace3','Eden Mace III','Weapon','Mace',172,1,true,true,true,true,true,true,true,true,true,true,true,true,3,60,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16015,'Cat_Club','Cat Club','Weapon','Mace',20,700,88,1,3,true,true,true,true,true,true,true,true,true,true,true,true,1,1,true,'bonus2 bAddRace,RC_Brute,15; bonus2 bAddRace,RC_Player_Doram,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16016,'Tuna','Tuna','Weapon','Mace',180,1,true,true,true,true,true,true,true,true,true,true,true,true,1,50,100,true,true,true,true,true,true,true,true,'bonus bUnbreakableWeapon; bonus2 bAddEff,Eff_Stun,1500; bonus3 bAutoSpell,"SM_BASH",max(getskilllv("SM_BASH"),5),20; bonus2 bAddEff2,Eff_Freeze,100; if(BaseLevel>99) bonus bBaseAtk,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16017,'Bloody_Cross','Bloody Cross','Weapon','Mace',20,1500,170,1,true,true,true,true,4,100,true,'bonus bAtkEle,Ele_Dark; .@r = getrefine(); bonus3 bAutoSpell,"WL_HELLINFERNO",1,(.@r?.@r*20:20);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16018,'Mace_Of_Judgement2','Empowered Mace Of Judgement','Weapon','Mace',20,1200,170,180,1,1,true,true,true,true,true,3,130,true,'bonus bAtkEle,Ele_Holy; 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; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (16019,'Upg_Mace','Upg Mace','Weapon','Mace',20,800,80,1,1,true,true,true,true,true,true,true,true,true,true,true,true,3,1,true,100,true,'.@r = getrefine(); bonus bBaseAtk,(.@r*10); bonus bHealPower,.@r; if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16020,'Velum_Stunner','Vellum Stunner','Weapon','Mace',20,1500,170,1,true,true,true,true,true,true,true,true,true,true,true,true,4,95,true,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus2 bAddEff,Eff_Stun,1000+.@r; bonus4 bSetDefRace,RC_Player_Human,10000,5000,1; bonus4 bSetMDefRace,RC_Player_Human,10000,5000,1; bonus bAspdRate,.@r;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16021,'Velum_Flail','Vellum Flail','Weapon','Mace',20,1500,170,1,true,true,true,true,true,true,true,true,true,true,true,true,4,95,true,'bonus bUnbreakableWeapon; bonus3 bStateNoRecoverRace,RC_Player_Human,10000,10000; .@r = getrefine(); bonus bHit,.@r/2; bonus bCritical,.@r;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16022,'Nemesis_','Nemesis','Weapon','Mace',20,900,120,1,2,true,true,true,true,4,60,true,'bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Holy;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16023,'Metal_Mace','Metal Mace','Weapon','Mace',20,80,1,1,true,true,true,true,true,true,true,true,true,true,true,true,3,1,true,100,true,true,true,true,true,true,true,'bonus bUnbreakableWeapon; bonus bBaseAtk,(getrefine()*5); .@i = min(BaseLevel/10,12); if(.@i>2) bonus bBaseAtk,((.@i-2)*5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16024,'Quadrille_','Quadrille','Weapon','Mace',10,900,165,2,true,true,true,true,4,40,true,'bonus2 bAddRace,RC_Undead,10; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus2 bAddEle,Ele_Earth,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16025,'TE_Woe_Mace','TE Woe Mace','Weapon','Mace',120,1,true,true,true,true,true,true,true,true,true,true,true,true,3,40,true,100,true,true,true,true,true,true,true,'bonus bUnbreakableWeapon; bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Freeze,3000; bonus bHPRecovRate,5; bonus bSPRecovRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (16026,'RWC_Memory_Mace','RWC Memory Mace','Weapon','Mace',20,800,100,1,1,true,true,true,true,true,true,true,true,true,true,3,1,true,100,true,'bonus bUnbreakableWeapon; .@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; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16027,'Hammer_Of_Evil_Slayer','Evil Slayer Destroyer Hammer','Weapon','Mace',10,1350,125,1,1,true,true,true,true,true,true,true,true,true,true,true,true,3,100,true,'bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; .@r = getrefine(); bonus2 bAddClass,Class_All,(.@r>=12?12:(.@r>=9?5:0));'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (16028,'Thanos_Hammer','Thanos Hammer','Weapon','Mace',10,3000,180,120,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,4,120,true,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000;','heal -1000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`slots`,`job_acolyte`,`class_upper`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16029,'Noble_Cross','Noble Cross','Weapon','Mace',10,1500,195,150,1,true,true,true,true,true,true,4,40,true,'bonus bAtkEle,Ele_Holy; bonus3 bAutoSpell,"PR_TURNUNDEAD",6,50; bonus2 bSPDrainValueRace,RC_Undead,1; bonus2 bSPGainRace,RC_Undead,12;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16030,'Pilebuncker_S','Pile Bunker S','Weapon','Mace',20,3000,400,1,1,true,true,true,true,true,4,130,true,'bonus bAspdRate,getrefine()/2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16031,'Pilebuncker_P','Pile Bunker P','Weapon','Mace',20,4000,450,1,true,true,true,true,true,4,130,true,'bonus bBaseAtk,getrefine()*5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16032,'Pilebuncker_T','Pile Bunker T','Weapon','Mace',20,3500,400,1,1,true,true,true,true,true,4,130,true,'bonus bUseSPrate,getrefine()*-1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16033,'Robot\'s_Arm','Robot\'s Arm','Weapon','Mace',30000,3000,195,1,2,true,true,true,true,true,true,true,true,true,true,true,true,true,4,130,true,'bonus bUnbreakableWeapon; bonus bCritical,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (16034,'Half_Mjolnir','Half Mjolnir','Weapon','Mace',20,6000,350,1,true,true,true,true,true,true,true,4,95,'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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16035,'Half_BF_Morning_Star1','Half BF Morning Star1','Weapon','Mace',20,105,1,true,true,true,true,true,true,true,true,true,true,true,true,3,80,true,'bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16036,'Ru_Blue_Mace','Blue Mace','Weapon','Mace',10,1500,170,1,1,true,true,true,true,true,3,100,true,'bonus bVit,5; bonus bInt,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_monk`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16037,'Ru_Gold_Mace','Ru Gold Mace','Weapon','Mace',1500,170,1,2,true,true,true,true,true,3,120,true,'bonus bVit,8; bonus bInt,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_monk`,`job_priest`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (16038,'Infinity_Mace','Infinity Mace','Weapon','Mace',10,500,155,1,1,true,true,true,true,true,true,true,true,true,true,true,4,100,true,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16039,'Spoon','Spoon','Weapon','Mace',10,1000,80,1,1,true,true,true,true,true,true,true,true,true,true,true,true,3,40,true,'bonus bAspd,10; bonus2 bAddEff,Eff_Curse,1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16040,'Crimson_Mace','Crimson Mace','Weapon','Mace',20,800,80,1,2,true,true,true,true,true,true,true,true,true,true,true,true,3,70,true,'.@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16041,'Mace_of_Vicious_Mind','Mace of Vicious Mind','Weapon','Mace',20,1300,130,1,1,true,true,true,true,true,true,true,true,true,true,true,true,4,160,true,'bonus bAtk,pow(min(getrefine(),15),2); bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_novice`,`job_supernovice`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16043,'Meteor_Strike','Meteor Strike','Weapon','Mace',20000,1,1,2,true,true,true,4,110,true,'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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16048,'Unity_Mace','Unity Mace','Weapon','Mace',20,400,76,1,1,true,true,true,true,true,true,true,true,true,true,true,true,3,1,true,100,true,true,true,true,true,true,'bonus bBaseAtk,pow(getrefine(),2)*125/100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16051,'Valkyrie_Hammer_','Valkyrie Hammer','Weapon','Mace',100,50,1,4,true,true,true,true,true,true,true,true,true,true,true,true,4,70,true,'.@r = getrefine(); bonus bMatk,50; if (BaseJob==Job_Novice) { bonus bBaseAtk,150; bonus bMatk,200; bonus bUseSPrate,-5; bonus bHit,10; bonus bMaxHP,500+(200*.@r); bonus bMaxSP,400; bonus bVit,.@r; bonus bFlee2,.@r; bonus bAspdRate,.@r; bonus bVariableCastrate,-.@r/2; } if (BaseClass==Job_Swordman) { bonus bVit,.@r; bonus bMaxHP,500; bonus bMaxSP,100; } if (BaseJob==Job_Priest) { bonus bBaseAtk,50; bonus bMatk,100; bonus bAspdRate,.@r; } if (BaseJob==Job_Monk) { bonus bMaxSP,200; bonus bUseSPrate,-5; bonus bFlee2,.@r; } if (BaseClass==Job_Merchant) { bonus bBaseAtk,100; bonus bHit,10; bonus bVariableCastrate,-.@r/2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16060,'Liquor_Bottle','Liquor Bottle','Weapon','Mace',700,120,1,3,true,true,true,true,true,true,true,true,true,true,true,true,3,100,true,'bonus bUnbreakableWeapon; bonus2 bAddEff,Eff_Stun,(300*getrefine());'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16063,'Illusion_Long_Mace','Illusion Long Mace','Weapon','Mace',20,800,185,3,2,true,true,true,true,4,99,true,'bonus bLongAtkDef,(10+3*(getrefine()/2));'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16065,'Illusion_Iron_Driver','Illusion Iron Driver','Weapon','Mace',2000,210,2,2,true,true,true,true,true,4,120,true,'.@r = getrefine(); bonus bAspd,(.@r/2); bonus2 bSkillAtk,"AB_DUPLELIGHT",(3*.@r);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16088,'Sapphire_Mace-OS','Sapphire Mace-OS','Weapon','Mace',20,800,185,1,2,true,true,true,true,true,4,130,true,'.@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bAddClass,Class_All,3; if (.@r >= 7) { bonus bVariableCastrate,-7; if (.@r >= 9) { bonus2 bSkillAtk,"GN_CARTCANNON",20; if (.@r >= 11) { bonus bLongAtkRate,15; } } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16089,'Ultio-OS','Ultio-OS','Weapon','Mace',20,1200,150,170,1,2,true,true,true,true,true,4,130,true,'.@r = getrefine(); bonus bMatkRate,3; if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus2 bSkillAtk,"AB_ADORAMUS",20; if (.@r >= 11) { bonus2 bMagicAtkEle,Ele_Holy,15; } } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16092,'Engine_Pilebuncker','Engine Pilebuncker','Weapon','Mace',3200,450,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bUnbreakableWeapon; bonus bAspdRate,.@r; bonus2 bSkillAtk,"NC_VULCANARM",10; if (.@r>=9) { bonus2 bSkillAtk,"NC_ARMSCANNON",15; bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",15; } if (.@r>=11) bonus2 bSkillAtk,"NC_VULCANARM",15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16093,'Coolant_Injection','Coolant Injection','Weapon','Mace',1400,210,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bUnbreakableWeapon; bonus bLongAtkRate,10; bonus2 bAddClass,Class_All,.@r; if (.@r>=9) bonus2 bSkillAtk,"GN_CARTCANNON",25; if (.@r>=11) bonus bLongAtkRate,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16094,'Gene_Rod','Gene Rod','Weapon','Mace',1400,195,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bUnbreakableWeapon; bonus bBaseAtk,4*.@r; bonus2 bSkillAtk,"GN_CRAZYWEED",20; if (.@r>=9) bonus2 bSkillAtk,"GN_CRAZYWEED",30; if (.@r>=11) bonus2 bSkillCooldown,"GN_CRAZYWEED",-2000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16095,'Lucis_Flail','Lucis Flail','Weapon','Mace',1000,180,160,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bUnbreakableWeapon; bonus bAspd,1; bonus bMatk,4*.@r; if (.@r>=9) { bonus2 bSkillAtk,"AB_DUPLELIGHT",40; } if (.@r>=11) bonus3 bAutoSpell,"AB_JUDEX",max(2,getskilllv("AB_JUDEX")),50; /* Unknow Rates */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_monk`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16096,'Bright_Pendulum','Bright Pendulum','Weapon','Mace',1300,210,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bUnbreakableWeapon; bonus bBaseAtk,4*.@r; bonus bVariableCastrate,-10; if (.@r>=9) { bonus2 bSkillAtk,"MO_FINGEROFFENSIVE",50; bonus2 bSkillAtk,"MO_INVESTIGATE",50; } if (.@r>=11) bonus2 bAddClass,Class_All,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_barddancer`,`job_hunter`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18100,'Shooting_Star_C','Shooting Star','Weapon','Bow',20,190,5,true,true,true,true,4,1,true,100,true,true,true,true,true,true,true,true,'bonus bLongAtkRate,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`script`) VALUES (18101,'F_Bow_Of_Rudra_C','Rudra Bow','Weapon','Bow',2,185,5,true,true,true,true,true,true,true,4,'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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`script`) VALUES (18102,'E_Bow_Of_Rudra_C','Rudra Bow','Weapon','Bow',2,185,5,true,true,true,true,true,true,true,4,'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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`job_barddancer`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18103,'Mystic_Bow','Mystic Bow','Weapon','Bow',1700,75,100,5,true,true,true,true,true,true,true,3,105,true,'bonus bInt,4; bonus2 bSkillUseSP,"WM_SEVERE_RAINSTORM",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_barddancer`,`job_hunter`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (18104,'Adventure_Bow','Adventure Bow','Weapon','Bow',60,1,true,true,true,true,1,1,'bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`job_hunter`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (18105,'Academy_Bow','Academy Bow','Weapon','Bow',1200,90,5,1,true,true,true,true,1,1,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (18106,'P_Bow3','Eden Bow III','Weapon','Bow',140,5,true,true,true,true,true,true,true,3,60,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18107,'Malang_Snow_Crab','Malangdo Crab','Weapon','Bow',120,5,true,true,true,true,true,true,true,1,50,100,true,true,true,true,true,true,true,true,'bonus bUnbreakableWeapon; bonus bLuk,3; bonus bCritAtkRate,50; if(BaseLevel>99) { bonus bLongAtkRate,10; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_barddancer`,`job_hunter`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18108,'Brindle_Eel','Zebra Eel','Weapon','Bow',180,5,true,true,true,true,1,50,100,true,true,true,true,true,true,true,true,'bonus bUnbreakableWeapon; bonus bAgi,3; autobonus "{ bonus bAspd,2; }",10,7000,BF_WEAPON,"{ specialeffect2 EF_HASTEUP; }"; if(BaseLevel>99) { bonus bLongAtkRate,10; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rogue`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18109,'Catapult','Thief Crossbow','Weapon','Bow',56000,1100,150,5,2,true,true,true,4,100,true,'.@r = getrefine(); bonus2 bSkillAtk,"SC_TRIANGLESHOT",(.@r*2); bonus2 bSkillUseSP,"SC_TRIANGLESHOT",(.@r*2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_hunter`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18110,'Big_CrossBow','Giant Crossbow','Weapon','Bow',56000,900,160,5,2,true,true,true,4,110,true,'.@r = getrefine(); bonus2 bSkillAtk,"RA_ARROWSTORM",(.@r*5); bonus2 bSkillUseSP,"RA_ARROWSTORM",-(.@r*5); if(readparam(bAgi)>=120){ bonus bAspd,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`job_hunter`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18111,'Creeper_Bow','Creeper Bow','Weapon','Bow',56000,1500,150,5,2,true,true,true,true,3,120,true,'bonus bDex,1; bonus3 bAutoSpell,"PF_SPIDERWEB",1,200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (18112,'Upg_Bow','Upg Bow','Weapon','Bow',20,600,60,5,1,true,true,true,true,true,true,true,3,1,true,100,true,'.@r = getrefine(); bonus bBaseAtk,(.@r*7); bonus bLongAtkRate,(.@r*2); if(BaseJob==Job_Hunter) bonus bBaseAtk,20; if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*10);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18113,'Velum_Arbalest','Vellum Arbalest','Weapon','Bow',20,1100,50,5,true,true,true,true,true,true,true,4,95,true,'bonus3 bSPVanishRaceRate,RC_Player_Human,1000,4; bonus bAspd,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18114,'Velum_CrossBow','Vellum CrossBow','Weapon','Bow',20,1100,110,5,true,true,true,true,true,true,true,4,95,true,'bonus2 bAddRace,RC_Player_Human,30+getrefine(); bonus2 bIgnoreDefRaceRate,RC_Player_Human,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (18115,'Orc_Archer_Bow_','Orc Archer Bow','Weapon','Bow',20,1600,120,5,1,true,true,true,true,true,true,true,3,65,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`slots`,`job_barddancer`,`job_hunter`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18116,'Metal_Bow','Metal Bow','Weapon','Bow',20,50,5,1,true,true,true,true,3,1,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); if(BaseJob==Job_Hunter && Upper!=2) bonus bBaseAtk,10; bonus bBaseAtk,(.@r*3); bonus bLongAtkRate,.@r; .@i = min(BaseLevel/10,12); if(.@i>2) bonus bBaseAtk,((.@i-2)*5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (18117,'Royal_Bow','Royal Bow','Weapon','Bow',200000,1500,80,5,1,true,true,true,true,true,true,4,105,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18118,'TE_Woe_Bow','TE Woe Bow','Weapon','Bow',120,5,true,true,true,true,true,true,true,3,40,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Curse,3000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (18119,'Thanos_Bow','Thanos Bow','Weapon','Bow',10,1300,180,110,5,1,true,true,true,true,true,true,true,true,4,120,true,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000;','heal -1000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18120,'Bow_Of_Evil_Slayer','Evil Slayer Piercer Bow','Weapon','Bow',10,1350,115,5,1,true,true,true,true,true,true,3,100,true,'bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; .@r = getrefine(); bonus2 bAddClass,Class_All,(.@r>=12?12:(.@r>=9?5:0));'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18121,'Bow_of_Vicious_Mind','Bow of Vicious Mind','Weapon','Bow',20,1700,170,5,1,true,true,true,true,true,true,4,160,true,'bonus bAtk,pow(min(getrefine(),15),2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_hunter`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18122,'Gigantic_Bow','Giant Bow','Weapon','Bow',20,3000,195,5,1,true,true,true,4,130,true,'bonus bLongAtkRate,40; bonus bAspdRate,-15; bonus bHit,-50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`job_hunter`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18123,'Bow_Of_Storm','Bow of Storms','Weapon','Bow',20,1500,160,5,1,true,true,true,true,4,130,true,'bonus bLongAtkRate,30; bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; bonus2 bSkillUseSP,"WM_SEVERE_RAINSTORM",15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18124,'Half_BF_Bow1','Half BF Bow1','Weapon','Bow',20,100,5,true,true,true,true,true,true,true,3,80,true,'bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player_Human,30; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_rogue`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18125,'Arcus_Daemonicus','Arcus Daemonicus','Weapon','Bow',20,1000,130,5,2,true,true,true,true,4,80,true,'/*Fix me: bonus2 bAddClass,Class_All,50; when equipped with shadow arrows*/ if(getrefine()>9){ bonus bAspd,1; bonus bUseSPrate,-20; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18126,'Ru_Blue_Bow','Blue Bow','Weapon','Bow',10,1200,150,5,1,true,true,true,true,true,true,3,100,true,'bonus bAgi,5; bonus bDex,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18127,'Ru_Gold_Bow','Ru Gold Bow','Weapon','Bow',1200,150,5,2,true,true,true,true,true,true,3,120,true,'bonus bAgi,8; bonus bDex,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_hunter`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (18128,'Infinity_Bow','Infinity Bow','Weapon','Bow',20,500,160,5,1,true,true,true,true,true,true,true,4,100,true,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18130,'Crimson_Bow','Crimson Bow','Weapon','Bow',20,1200,120,5,2,true,true,true,true,true,true,true,3,70,true,'.@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18132,'Unity_Bow','Unity Bow','Weapon','Bow',20,600,114,5,2,true,true,true,true,true,true,true,3,1,true,100,true,true,true,true,true,true,'bonus bBaseAtk,pow(getrefine(),2)*125/100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18137,'Burning_Bow_','Burning Bow','Weapon','Bow',20,1400,95,5,2,true,true,true,true,true,true,3,55,true,'bonus2 bSubEle,Ele_Fire,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18138,'Frozen_Bow_','Frozen Bow','Weapon','Bow',20,1400,100,5,2,true,true,true,true,true,true,3,55,true,'bonus2 bAddEff,Eff_Freeze,1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (18139,'Earth_Bow_','Earth Bow','Weapon','Bow',20,1400,105,5,2,true,true,true,true,true,true,3,55,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (18140,'Gust_Bow_','Gust Bow','Weapon','Bow',20,1400,95,5,2,true,true,true,true,true,true,3,55,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18145,'Vigilante_Bow','Vigilante Bow','Weapon','Bow',1000,140,5,2,true,true,true,true,true,true,3,100,true,'.@r = getrefine(); .@bonus = 5*(readparam(bDex)/20); if (.@r>=7) { .@bonus += 10; } if (.@r>=9) { bonus2 bSkillAtk,"AC_DOUBLE",50; } bonus bLongAtkRate,.@bonus;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`job_hunter`,`class_upper`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18149,'Illusion_Ballista','Illusion Ballista','Weapon','Bow',3500,200,5,2,true,true,true,true,true,true,true,true,4,100,true,'bonus bLongAtkRate,getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18174,'Illusion_Hunter_Bow','Illusion Hunter Bow','Weapon','Bow',1500,165,5,2,true,true,true,true,true,true,4,120,true,'.@r = getrefine(); bonus bCritical,.@r; if (.@r >= 7) { bonus bAspdRate,10; if (.@r >= 9) { bonus bCritAtkRate,15; if (.@r >= 11) { bonus2 bAddRace,RC_Insect,30; bonus2 bAddRace,RC_Brute,30; bonus2 bAddRace,RC_Player_Doram,30; } } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18178,'Virtual_Bow-OS','Virtual Bow-OS','Weapon','Bow',20,1200,200,5,2,true,true,true,true,true,true,4,130,true,'.@r = getrefine(); bonus2 bAddClass,Class_All,3; if (.@r >= 7) { bonus bLongAtkRate,7; if (.@r >= 9) { .@dmg = 30; if (.@r >= 11) { .@dmg += 20; } bonus2 bSkillAtk,"RA_ARROWSTORM",.@dmg; } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18179,'MH-P89-OS','MH-P89-OS','Weapon','Bow',20,1200,170,5,2,true,true,true,true,true,true,4,130,true,'.@r = getrefine(); bonus2 bAddClass,Class_All,3; if (.@r >= 7) { bonus bLongAtkRate,7; if (.@r >= 9) { bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; if (.@r >= 11) { bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15; } } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18180,'AC-B44-OS','AC-B44-OS','Weapon','Bow',20,600,190,135,5,2,true,true,true,true,true,true,4,130,true,'.@r = getrefine(); .@dmg = 5; if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus2 bSkillAtk,"SC_TRIANGLESHOT",15; if (.@r >= 11) { .@dmg += 10; } } } bonus2 bWeaponDamageRate,W_BOW,.@dmg;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18184,'Rapid_Fire','Rapid Fire','Weapon','Bow',20,1500,185,5,2,true,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bLongAtkRate,10; bonus bBaseAtk,4*.@r; if (.@r>=11) .@val = 35; else if (.@r>=9) .@val = 20; bonus2 bSkillAtk,"SC_TRIANGLESHOT",.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18185,'Sharp_Star_Bow','Sharp Star Bow','Weapon','Bow',20,1500,150,5,2,true,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bCritical,5; bonus bCritAtkRate,.@r; if (.@r>=9) bonus bLongAtkRate,7; if (.@r>=11) bonus2 bSkillAtk,"SN_SHARPSHOOTING",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18186,'Aiming_Bow','Aiming Bow','Weapon','Bow',20,1000,210,5,2,true,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bDelayrate,-1*(5+.@r); if (.@r>=9) bonus2 bSkillAtk,"RA_AIMEDBOLT",30; if (.@r>=11) { bonus2 bSkillAtk,"RA_AIMEDBOLT",15; bonus2 bSkillCooldown,"RA_AIMEDBOLT",-1000; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18187,'Falken_Shooter','Falken Shooter','Weapon','Bow',20,1000,210,5,2,true,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bLongAtkRate,10; bonus bBaseAtk,4*.@r; if (.@r>=9) bonus2 bSkillAtk,"RA_ARROWSTORM",25; if (.@r>=11) bonus2 bSkillCooldown,"RA_ARROWSTORM",-700;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18188,'Wind_Gale','Wind Gale','Weapon','Bow',20,1000,200,5,2,true,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bLongAtkRate,10+.@r; if (.@r>=9) bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",30; if (.@r>=11) bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18500,'Cheer_Scarf6','Cheer Scarf6','Armor',true,1,369,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddClass,Class_All,60;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18501,'Cheer_Scarf8','Cheer Scarf8','Armor',true,1,369,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddClass,Class_All,80;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18502,'Cheer_Scarf10','Cheer Scarf10','Armor',true,1,369,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddClass,Class_All,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (18503,'Small_Horn_Of_Devil','Small Devil Horns','Armor',20,100,2,true,1,562,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bMaxHPrate,10; bonus bMaxSPrate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (18504,'Anubis_Helm_J','Anubis Helm J','Armor',20,1000,true,true,true,70,485,'bonus bMdefRate,-50; bonus bDefRate,-50; bonus5 bAutoSpellWhenHit,"NPC_WIDESTONE",2,10,BF_WEAPON|BF_MAGIC,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18505,'Umbala_Spirit','Umbala Spirit','Armor',1,true,30,675,100,true,true,true,true,true,true,true,true,'bonus bMaxHPrate,1; bonus2 bAddMonsterDropItem,517,500; bonus2 bAddItemHealRate,517,25; /*Gold PC Room: bonus bAllStats,1;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`location_head_low`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (18506,'Hattah_Black','Hattah Black','Armor',12000,4000,2,1,true,true,true,1,true,676,100,true,'bonus bMaxHPrate,10; bonus bMaxSPrate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`equip_level_min`,`view`) VALUES (18507,'Elven_Ears_','Elven Ears','Armor',20,100,1,true,false,false,true,70,73); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (18508,'Garuda_Hat','Garuda Hat','Armor',20,100,4,1,true,false,false,true,30,true,677,100,true,'bonus bLuk,5; bonus bMdef,3; bonus2 bSubEle,Ele_All,5; bonus bHit,10; bonus bDelayRate,-5; .@r = getrefine(); if(.@r>=7) bonus2 bAddMonsterDropItem,522,100*(.@r-6);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18509,'RWC2010_Indonesia','RWC2010 Indonesia','Armor',20,100,6,1,true,false,false,true,15,true,678,'bonus bLuk,5; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bAddItemHealRate,501,100; bonus2 bAddItemHealRate,504,100; bonus bCritical,10; bonus bAspd,1; bonus2 bAddClass,Class_All,3; bonus bMatkRate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (18510,'Blood_Angel_Hair_Band','Blood Angel Hair Band','Armor',1,true,60,679,'bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_DemiHuman,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_mid`,`equip_level_min`,`view`) VALUES (18511,'Blood_Angel_Wing_Ear','Blood Angel Wing Ear','Armor',1,true,60,680); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (18512,'Juho_Necktie','Juho Necktie','Armor',1,1,true,20,true,443); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`view`,`script`) VALUES (18513,'Shining_Sunflower','Shining Sunflower','Armor',20,300,true,false,false,true,681,'bonus bLuk,2; bonus3 bAutoSpellWhenHit,"SM_ENDURE",1,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18514,'Para_Team_Hat2','Eden Team Hat II','Armor',5,1,true,60,true,682,100,true,true,true,true,true,true,true,'autobonus "{ bonus bBaseAtk,10; }",70,5000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; autobonus "{ bonus bMatk,10; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_SPELLBREAKER; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (18515,'RTC_Winner_Headgear','RTC Winner Hat','Armor',20,100,2,1,true,1,683,'bonus bAllStats,5; bonus bIntravision; bonus2 bSubRace,RC_DemiHuman,15; bonus2 bSubRace,RC_Player_Human,15; bonus2 bAddEff,Eff_Curse,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (18516,'RTC_2nd_Headgear','RTC 2nd Winner Hat','Armor',20,100,2,1,true,1,684,'bonus bAllStats,3; bonus bIntravision; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bAddEff,Eff_Curse,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (18517,'RTC_3rd_Headgear','RTC 3rd Winner Hat','Armor',20,100,2,1,true,1,685,'bonus bAllStats,1; bonus bIntravision; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bAddEff,Eff_Curse,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (18518,'Ear_Of_Angel\'s_Wing_','Angel Wing Ears','Armor',20,100,3,1,true,70,158,'bonus bStr,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (18519,'Ear_Of_Devil\'s_Wing_','Evil Wing Ears','Armor',20,100,3,1,true,70,152,'bonus bStr,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18520,'Jaty_C','Jaty Crown','Armor',20,100,1,true,1,true,686,100,true,true,true,true,true,true,true,'bonus2 bSubRace,RC_Plant,5; bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Brute,5; bonus2 bAddRace,RC_Plant,5; bonus2 bAddRace,RC_Player_Doram,5; bonus2 bAddRace,RC_Player_Doram,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (18521,'Lucky_Clover','Lucky Clover','Armor',20,100,true,50,571,'bonus bLuk,1; bonus bMaxSP,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18522,'Evil_Marcher_Hat','Evil Marcher Hat','Armor',20,500,10,1,true,true,687,'bonus bStr,2; bonus bMdef,1; .@r = getrefine(); if(.@r>=7) { bonus bCritAtkRate,10; }; bonus2 bAddClass,Class_All,(.@r>=9?7:2); if(.@r>=9) { bonus bLongAtkRate,5; };'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (18523,'Super_Scell','Thunderstorm Cloud','Armor',20,100,2,true,1,688,'bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",max(getskilllv("MG_LIGHTNINGBOLT"),5),50+(getskilllv("MG_LIGHTNINGBOLT")*5); bonus3 bAutoSpell,"MG_THUNDERSTORM",max(getskilllv("MG_THUNDERSTORM"),5),50+(getskilllv("MG_THUNDERSTORM")*5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (18524,'Dokkebi_Mask','Dokkebi Mask','Armor',20,700,1,true,true,50,689,'bonus bStr,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18525,'Watermelon_Hat','Watermelon Cap','Armor',20,100,4,1,true,30,true,690,'bonus bVit,1; bonus bLuk,1; bonus bMdef,4; bonus2 bAddEle,Ele_Fire,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18526,'Yummy_Lollipop','Candy Cane In Mouth','Armor',20,100,2,true,1,446,100,true,true,true,true,true,true,true,true,'bonus bMatk,5; bonus bBaseAtk,5; bonus bAspd,1; bonus bFixedCastrate,-20; bonus bHealPower,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18527,'Gloomy_Pumpkin_Hat','Dark Pumpkin-head','Armor',20,500,5,true,45,true,691,'bonus2 bAddMonsterDropItem,12192,10; bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (18528,'Tare_Neko_Cru','Drooping Neko Crew','Armor',20,100,1,true,1,true,692,100,true,'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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18529,'Drooping_Wild_Rose','Accurate Wild Rose','Armor',20,500,5,1,true,true,30,true,541,'bonus bMaxHPrate,-10; bonus bAspdRate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (18530,'Tha_Despero_Mask','Thanatos Despero Mask','Armor',20,100,true,true,30,693,'bonus bUnbreakableHelm; bonus bLuk,-5; bonus bFlee,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18531,'Drooping_Permeter','Drooping Permeter','Armor',20,1000,8,1,true,10,true,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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18532,'Heart_Ribbon_Band','Heart Ribbon Hairband','Armor',20,100,1,true,10,true,708,'bonus bInt,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18533,'Honeybee_Hat','Honey Bee Hat','Armor',20,100,3,1,true,50,true,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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18534,'Fancy_Phantom_Mask','Fancy Phantom Mask','Armor',20,1000,5,1,true,true,20,true,710,'bonus bStr,1; bonus2 bAddClass,Class_All,5; bonus bDelayRate,-1; bonus bMaxHP,getrefine()*100; bonus2 bSkillAtk,"MC_MAMMONITE",20; bonus2 bSkillAtk,"NJ_ZENYNAGE",20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`refineable`,`view`) VALUES (18535,'Pumpkin_Hat_2010','Pumpkin Hat 2010','Armor',20,200,true,true,206); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (18536,'Foxtail','Foxtail','Armor',20,100,true,711,100,true,'bonus bMatk,10; bonus bFixedCast,-100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18537,'Malangdo_Hat','Malangdo Hat','Armor',20,100,5,1,true,true,726,'bonus bFlee,6;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`view`,`script`) VALUES (18538,'Devil_Whisper','Spirit Whispers','Armor',20,300,3,true,712,'bonus bUnbreakableHelm; 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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18539,'Skull_Cap','Skull Cap','Armor',40,200,5,1,true,10,true,713,'bonus bMatkRate,2; .@r = getrefine(); if(.@r >= 5) { bonus bMatkRate,3; } if(.@r >= 7) { bonus bMatkRate,3; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (18540,'Evil_Mask','Evil Mask','Armor',20,1000,3,true,true,10,714,'bonus2 bSPLossRate,1,2000; bonus bAspdRate,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18541,'Little_Feather_Hat','Little Feather Hat','Armor',20,500,1,1,true,30,true,715,'bonus bDex,2; bonus bCritAtkRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18542,'Love_Guard','Love Guard','Armor',20,500,10,1,true,true,10,true,716,'bonus bHealPower2,5; bonus bAddItemHealRate,5; bonus bHealPower,(getrefine()>6)?5:2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18543,'Witchs_Hat','Witchs Hat','Armor',20,300,7,1,true,20,true,717,'bonus bMdef,5; bonus bVariableCastrate,(getrefine()>6?10:5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (18544,'Blrabbit_Hband','Blrabbit Hband','Armor',20,100,6,true,30,true,718); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (18545,'Whrabbit_Hband','Whrabbit Hband','Armor',20,100,6,true,30,true,719); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`) VALUES (18546,'Lover_In_Mouth','Lover In Mouth','Armor',20,300,true,720); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`refineable`,`view`) VALUES (18547,'Campus_Festival','Campus Festival','Armor',20,100,true,true,721); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18548,'Tiny_Hat','Tiny Hat','Armor',20,30,true,true,722,'bonus bInt,1; bonus bAgi,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18549,'Nabi_Hair_Pin','Butterfly Hairpin','Armor',20,200,3,1,true,20,true,723,'bonus bInt,1; bonus bAgi,1; bonus bMdef,3; bonus2 bAddRace,RC_Plant,5; bonus2 bMagicAddRace,RC_Plant,5; bonus2 bSubRace,RC_Plant,5; bonus3 bAddMonsterDropItem,709,RC_Plant,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18550,'Asgard_Blessing','Asgard Blessing','Armor',20,300,3,1,true,30,true,724,'bonus bAllStats,2; bonus2 bSubEle,Ele_All,5; bonus2 bRegenPercentHP,2,10000; bonus2 bRegenPercentSP,1,10000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18551,'Galaxy_Circlet','Galaxy Circlet','Armor',20,1000,5,1,true,50,true,725,'.@r = getrefine(); .@a = .@r*10; .@b = .@r/2; bonus bMdef,5; bonus bMaxHP,.@a; bonus bMaxSP,.@a; bonus2 bSubEle,Ele_Earth,.@b; bonus2 bSubEle,Ele_Fire,.@b; bonus2 bSubEle,Ele_Water,.@b;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18552,'Proba_Angel_Blessing','Proba Angel Blessing','Armor',20,1200,1,true,10,true,444,'bonus bLuk,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18553,'Mini_Tree','Mini Tree','Armor',20,50,5,true,true,727,'bonus2 bResEff,Eff_Stun,20; bonus2 bResEff,Eff_Curse,20; bonus2 bResEff,Eff_Blind,20; bonus2 bResEff,Eff_Confusion,20; bonus2 bAddMonsterDropItem,529,300; bonus2 bAddMonsterDropItem,529,644;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`view`,`script`) VALUES (18554,'King_Prawn_Hat','King Prawn Hat','Armor',20,1000,8,true,728,'bonus2 bAddItemGroupHealRate,IG_Fish,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18555,'General_Helmet','General Helmet','Armor',20,200,3,1,true,10,true,729,'bonus bMdef,3; bonus2 bAddRace,RC_Dragon,5; bonus2 bMagicAddRace,RC_Dragon,5; bonus2 bSubRace,RC_Dragon,5; bonus3 bAddMonsterDropItem,7444,RC_Dragon,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_head_mid`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18556,'Angel_Helmet','Angel Helmet','Armor',true,3,100,true,true,true,true,true,true,true,'bonus3 bAddMonsterIdDropItem,6464,2220,310;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_head_mid`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18557,'Devil_Helmet','Devil Helmet','Armor',true,12,100,true,true,true,true,true,true,true,'bonus3 bAddMonsterIdDropItem,6345,1812,310;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (18558,'Sinsuncho_Hat','Sinsuncho Hat','Armor',20,1000,true,10,730,'bonus2 bExpAddRace,RC_Plant,5; bonus2 bSubRace,RC_Plant,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (18559,'Fafnir_Skin','Fafnir Skin','Armor',20,100,3,true,50,152,'bonus bCritical,3; bonus bHPrecovRate,-100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (18560,'Fafnir_Mask','Fafnir Mask','Armor',20,300,2,true,50,180,'bonus bCritical,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18561,'B_Feather_Beret','B Feather Beret','Armor',20,300,5,1,true,40,true,731,'bonus bVit,2; bonus bMdef,3; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18562,'Bone_Hat','Bone Hat','Armor',20,200,3,1,true,10,true,732,'bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (18563,'Heart_Wing_Hairband','Heart Wing Hairband','Armor',20,300,1,true,50,true,733,100,true,'.@r = getrefine()/3; bonus bUseSPrate,-(10+.@r*3); bonus bDelayrate,-(5+.@r*3);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (18564,'Love_Piece','Love Piece','Armor',20,200,true,50,734,'bonus bNoCastCancel; bonus bUseSPrate,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18565,'Leprechaun_Hat','St Patrick\'s Hat','Armor',20,300,8,1,true,40,true,735,'bonus bStr,1; bonus bInt,1; bonus bMdef,4; if(getrefine()>7){ bonus2 bAddMonsterDropItem,12135,50; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_low`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18566,'Nut_Donut_In_Mouth','Nut Donut In Mouth','Armor',20,1,true,736,100,true,true,true,true,true,true,true,true,'bonus bBaseAtk,5; bonus bMatk,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`) VALUES (18567,'Stretched_Nose','Stretched Nose','Armor',20,100,true,737); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (18568,'Humming_Bird','Humming Bird','Armor',20,100,3,true,10,702,'bonus bMdef,6;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (18569,'Soft_Sheep_Hat','Soft Sheep Hat','Armor',20,1000,true,10,true,738,100,true,'bonus bMaxHPrate,1+getrefine(); if(getrefine()>9) { bonus2 bExpAddClass,Class_All,5; };'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18570,'Ancient_Gold_Deco','Ancient Gold Ornament','Armor',20,400,7,1,true,false,false,true,100,true,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 bMatkRate,8; bonus bHealPower,7; } if(BaseClass==Job_Archer){ bonus bDex,3; bonus bLongAtkRate,10; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`view`,`script`) VALUES (18571,'Lucky_Hat','Lucky Hat','Armor',20,1000,1,true,740,'bonus2 bExpAddRace,RC_All,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (18572,'Korean_Judge_Hat','Korean Judge Hat','Armor',20,300,2,1,true,true,377,100,true,'bonus bMdef,2; bonus bVariableCastrate,-6; bonus bAspdRate,6; .@r = getrefine(); if(.@r>6){ bonus2 bSubRace,RC_DemiHuman,2;bonus2 bSubRace,RC_Player_Human,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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18573,'White_Feather','White Feather','Armor',20,500,2,1,true,30,true,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; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (18574,'Lord_of_Death','Lord of Death','Armor',20,1000,10,1,true,70,true,742,100,true,'bonus bMdef,5; .@r = getrefine(); bonus2 bAddClass,Class_Boss,(.@r>5?.@r+5:10); bonus2 bMagicAddClass,Class_Boss,(.@r>5?.@r+5:10); bonus2 bSubClass,Class_Normal,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (18575,'Wunderkammer','Wunderkammer','Armor',20,500,10,1,true,true,true,20,743,'bonus bMdef,10; bonus3 bAutoSpell,"AS_SONICBLOW",1,30; bonus3 bAutoSpell,"CR_SHIELDCHARGE",5,20; bonus3 bAutoSpellWhenHit,"AL_PNEUMA",1,20; bonus3 bAutoSpellWhenHit,"CR_GRANDCROSS",5,5; bonus3 bAutoSpellWhenHit,"ASC_METEORASSAULT",5,5; bonus3 bAutoSpellWhenHit,"MO_CALLSPIRITS",5,10; bonus3 bAutoSpellWhenHit,"MO_EXPLOSIONSPIRITS",5,10; bonus3 bAutoSpellWhenHit,"PR_KYRIE",5,10; bonus3 bAutoSpellWhenHit,"AC_CONCENTRATION",5,5; bonus3 bAutoSpellWhenHit,"WZ_QUAGMIRE",3,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (18576,'YinYang_Earring','YinYang Earring','Armor',20,100,true,50,744,'bonus2 bSkillAtk,"MO_CHAINCOMBO",10; bonus2 bSkillAtk,"MO_TRIPLEATTACK",5; bonus2 bSkillAtk,"MO_COMBOFINISH",5; bonus2 bSkillUseSP,"MO_CHAINCOMBO",1; bonus2 bSkillUseSP,"MO_COMBOFINISH",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`equip_level_min`,`view`) VALUES (18577,'24_Bolt','24 Bolt','Armor',20,200,true,10,696); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_top`,`view`,`script`) VALUES (18578,'Helm_Of_Valor','Helm Of Valor','Armor',4,true,258,'bonus2 bAddRace,RC_All,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18579,'9th_Anni_Hat','9th Anni Hat','Armor',90,true,true,745,100,true,true,true,true,true,true,'bonus bMdef,9;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (18580,'Yggdrasil_Crown','Yggdrasil Crown','Armor',20,200,3,1,true,1,true,746,100,true,'bonus bMdef,3; bonus bHealPower,2; .@r = getrefine(); bonus bHealpower2,10; if(.@r >= 7){ bonus bHealPower,5; } if(.@r >= 9){ bonus bHealPower,3; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (18581,'Red_Tiger_Mask','Red Tiger Mask','Armor',20,400,2,true,true,50,747,'bonus bStr,3; bonus bMaxHP,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (18582,'Blue_Tiger_Mask','Blue Tiger Mask','Armor',20,400,2,true,true,50,748,'bonus bStr,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18583,'Navy_Drooping_Kitty','Navy Drooping Kitty','Armor',250000,500,3,true,false,false,true,true,749,'bonus bMdef,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18584,'Brown_Drooping_Kitty','Brown Drooping Kitty','Armor',250000,500,3,true,false,false,true,true,750,'bonus bMdef,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18585,'Orange_Bunny_Hairband','Orange Bunny Hairband','Armor',20,10,1,true,true,751,'bonus bStr,1; bonus bInt,2; bonus bVit,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18586,'Violet_Bunny_Hairband','Violet Bunny Hairband','Armor',20,10,1,true,true,752,'bonus bStr,1; bonus bInt,3; bonus bVit,2; bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18587,'Blue_Bunny_Hairband','Blue Bunny Hairband','Armor',20,10,1,true,true,753,'bonus bStr,3; bonus bInt,1; bonus bVit,2; bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18588,'Silver_Bunny_Hairband','Silver Bunny Hairband','Armor',20,10,1,true,true,754,'bonus bStr,2; bonus bInt,3; bonus bVit,1; bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18589,'Strawberry_Hat','Strawberry Hat','Armor',20,100,5,1,true,true,755,'.@r = getrefine(); bonus2 bAddMonsterDropItem,578,(.@r>10?200:100+(.@r*10));'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18590,'Gemma_Hairband','Gemma Hairband','Armor',20,200,3,1,true,10,true,564,'bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`view`) VALUES (18591,'Mini_Glasses_','Mini Glasses','Armor',20,100,2,1,true,false,false,true,47); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18592,'Nestea_Hat','Nestea Hat','Armor',20,200,5,true,true,756,'bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18593,'Fancy_Mini_Crown','Fancy Mini Crown','Armor',20,100,2,1,true,30,true,707,'bonus bInt,1; bonus bMdef,5; bonus bVariableCastRate,-3; bonus bHealPower,3; bonus bUseSPrate,-3; .@r = getrefine(); bonus bMatkRate,(.@r>6)?(5):((.@r>4)?(4):(3));'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18594,'Magni_Cap_','Magni Cap','Armor',30000,1000,9,1,true,false,false,true,true,250,'bonus bStr,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (18595,'Horn_Of_Ancient','Horn of Ancient','Armor',40,200,8,1,true,50,true,757,100,true,'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; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (18596,'Sprout_Hat','Sprout Hat','Armor',20,200,4,true,70,true,758,100,true,'skill "WZ_HEAVENDRIVE",3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (18597,'Mercury_Helm','Mercury Riser','Armor',40,200,10,1,true,true,759,100,true,'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; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`view`,`script`) VALUES (18598,'Mini_Tree_J','Mini Tree J','Armor',20,50,1,true,727,'bonus bMdef,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (18599,'Black_Devil_Mask','Black Devil Mask','Armor',20,100,true,760,100,true,'bonus bAllStats,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (18600,'Cat_Ears_Beret','Cat Ear Beret','Armor',20,100,5,1,true,true,761,100,true,'bonus2 bAddClass,Class_All,5; .@r = getrefine(); if(.@r < 5) .@r = 5; bonus2 bSubRace,RC_DemiHuman,(.@r - 5); bonus2 bAddRace,RC_DemiHuman,(.@r - 5); bonus2 bSubRace,RC_Player_Human,(.@r - 5); bonus2 bAddRace,RC_Player_Human,(.@r - 5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (18601,'Red_Bread_Hat','Red Bread Hat','Armor',20,300,1,true,true,762,100,true,'bonus bMdef,5; .@r = getrefine(); if (.@r < 5) .@r = 5; bonus2 bSubRace,RC_DemiHuman,(.@r - 5); bonus2 bMagicAddRace,RC_DemiHuman,(.@r - 5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_low`,`equip_level_min`,`view`) VALUES (18602,'Watermelon_Slice','Watermelon Bite','Armor',20,100,4,true,30,763); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_mid`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (18603,'Black_Devil_Mask_','Black Devil Mask','Armor',20,100,1,true,760,100,true,'bonus bAllStats,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (18604,'Falcon_Mask','Falcon Mask','Armor',10,30,true,true,50,782,'bonus2 bAddEle,Ele_Water,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18605,'Dark_Age','Dark Age','Armor',20,200,3,1,true,10,true,766,'bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`location_head_low`,`equip_level_min`,`view`) VALUES (18606,'Tear_Drop','Tear Drop','Armor',20,100,1,true,true,30,767); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_mid`,`view`) VALUES (18607,'Blush_','Blush','Armor',20,100,1,true,125); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_mid`,`equip_level_min`,`view`) VALUES (18608,'Pair_Of_Red_Ribbon2','Small Ribbons','Armor',20,100,2,1,true,45,169); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`view`,`script`) VALUES (18609,'Dark_Blindfold_','Dark Blinder','Armor',20,100,1,true,false,false,true,187,'bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Stun,200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18610,'7th_Anni_Hat_B','7th Anni Hat B','Armor',20,500,4,true,true,778,'bonus bAllStats,5; bonus bMdef,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_mid`,`view`,`script`) VALUES (18611,'Black_Glasses_','Black Glasses','Armor',20,200,2,1,true,404,'bonus bInt,1; bonus bMdef,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (18612,'White_Musang_Hat','White Musang Hat','Armor',40,400,3,1,true,true,770,100,true,'bonus bStr,2; bonus bVit,2; bonus bLuk,1; bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (18613,'Black_Musang_Hat','Black Musang Hat','Armor',40,400,3,1,true,true,771,100,true,'bonus bInt,2; bonus bDex,2; bonus bAgi,1; bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18614,'Grim_Reaper_Hat','Grim Reaper Hat','Armor',20,200,2,1,true,20,true,732,'bonus bFlee,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`equip_level_min`,`view`) VALUES (18615,'Injured_Eyepatch','Injured Eyepatch','Armor',20,200,2,true,false,false,true,20,772); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_low`,`equip_level_min`,`view`) VALUES (18616,'Long_Tongue','Long Tongue','Armor',20,200,true,false,false,true,20,773); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_low`,`equip_level_min`,`view`) VALUES (18617,'Onigiri_In_Mouth','Onigiri In Mouth','Armor',20,200,true,false,false,true,20,774); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (18618,'Airplane_Hat','Airplane Hat','Armor',20,200,8,1,true,false,false,true,20,true,775); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18619,'Thief_Bandana','Thief Bandana','Armor',20,200,1,true,false,false,true,20,true,776,'bonus3 bAutoSpell,"TF_STEAL",1,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`refineable`,`view`) VALUES (18620,'Heart_Eyepatch','Heart Eyepatch','Armor',5,50,2,true,20,true,779); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`) VALUES (18621,'Gangster_Mask_A','Gangster Mask A','Armor',20,100,true,52); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18622,'Rocket_Helm1','Rocket Helm 1','Armor',20,1000,20,1,true,95,true,764,'bonus bAllStats,5; bonus bMdef,5; bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18623,'Rocket_Helm2','Rocket Helm 2','Armor',20,1000,20,1,true,95,true,765,'bonus bAllStats,4; bonus bMdef,5; bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18624,'Rocket_Helm3','Rocket Helm 3','Armor',20,1000,20,1,true,95,true,768,'bonus bAllStats,3; bonus bMdef,5; bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18625,'Rocket_Helm_RWC','Rocket Helm RWC','Armor',10000,1000,20,1,true,95,true,769,'bonus bAllStats,2; bonus bMdef,5; bonus bUnbreakableHelm; bonus bSpeedRate,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (18626,'Gelato_Hat','Gelato Hat','Armor',20,200,2,true,40,true,777); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (18627,'Dried_Leaf','Dried Leaf','Armor',20,50,true,10,711,'bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (18628,'Tare_Brownie','Tare Brownie','Armor',20,500,5,1,true,50,781,'bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18629,'B_Desert_Wolf_Hat','Baby Desert Wolf Hat','Armor',10,300,1,true,1,true,783,'bonus bMdef,5; bonus bLongAtkDef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18630,'Dep_Alice_Hat','Drooping Alicel','Armor',20,500,6,true,false,false,true,70,true,784,'bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; if (getrefine() > 10) { autobonus "{ bonus bAspdRate,100; }",10,7000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18631,'Ribbon_Chef_Hat','Ribbon Chef Hat','Armor',20,300,5,true,70,true,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; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (18632,'Yellow_Poring_Hairpin','Yellow Poring Hairpin','Armor',20,100,3,1,true,1,true,786); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (18633,'Pink_Poring_Hairpin','Pink Poring Hairpin','Armor',20,100,3,1,true,1,true,787); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (18634,'Green_Poring_Hairpin','Green Poring Hairpin','Armor',20,100,3,1,true,1,true,788); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (18635,'Blue_Poring_Hairpin','Blue Poring Hairpin','Armor',20,100,3,1,true,1,true,789); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18636,'Bridal_Ribbon','Bridal Ribbon','Armor',20,200,6,true,30,true,790,'bonus bDex,1; bonus3 bAutoSpellWhenHit,"DC_WINKCHARM",1,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`refineable`,`view`,`script`) VALUES (18637,'Ancient_Admiral_Helm','Ancient Admiral Helm','Armor',20,700,4,1,true,true,true,660,'bonus bStr,2; bonus bVit,1; if (getrefine() > 7) bonus bSpeedRate,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18638,'Citron_Hat','Citron Hat','Armor',20,400,3,1,true,false,false,true,1,true,791,'bonus bLuk,3; bonus2 bSubRace,RC_Plant,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18639,'Naval_Officer_Hat','Naval Officer Hat','Armor',20,200,2,1,true,false,false,true,1,true,792,'bonus bLuk,3; bonus2 bAddEle,Ele_Water,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (18640,'Starfish_Headband','Starfish Headband','Armor',20,200,2,1,true,false,false,true,1,true,793); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18641,'Ribbon_Magic_Hat','Ribbon Magic Hat','Armor',20,200,2,1,true,false,false,true,1,true,794,'bonus bMaxSP,50; bonus bMatkRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (18642,'hand_Scissorhand_Model','Scissorhand Model','Armor',20,200,true,false,false,true,20,795,'bonus bAgi,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (18643,'Rockhand_Model','Rockhand Model','Armor',20,200,true,false,false,true,20,796,'bonus bStr,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_low`,`equip_level_min`,`view`) VALUES (18644,'Paperhand_Model','Paperhand Model','Armor',20,200,true,false,false,true,20,797); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18645,'Sailor_Hat','Sailor Hat','Armor',20,200,2,1,true,1,true,798,'bonus bInt,1; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18646,'Cow_Hat','Cow Hat','Armor',20,300,4,1,true,1,true,799,'bonus bDex,2; bonus2 bAddMonsterDropItem,519,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (18647,'Star_Eyepatch','Star Eyepatch','Armor',20,100,true,1,800,'bonus2 bResEff,Eff_Stun,1500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (18648,'Tongue_Charm','Tongue Charm','Armor',20,100,true,1,801,'bonus2 bSubRace,RC_Demon,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`location_head_low`,`refineable`,`view`) VALUES (18649,'Lude_Mask','Lude Mask','Armor',10,100,1,true,true,true,802); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (18650,'RWC_Shouting_Mouth','RWC Shouting Mouth','Armor',20,50,true,1,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!!\\"; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (18651,'Ignis_Cap','Ignis Cap','Armor',20,800,8,1,true,40,true,803); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18652,'Vanargand_Helm','Vanargandr Helm','Armor',20,1500,10,1,true,80,true,804,'.@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; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18653,'Devi_Headphone','Deviruchi Headphone','Armor',20,200,8,1,true,30,true,805,'bonus bMdef,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (18655,'Lupin_One_Eyed_Glasses','Goedo Monocle','Armor',20,100,true,50,807,'bonus bAgi,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18656,'Wit_Pumpkin_Hat','Witch\'s Pumpkin Hat','Armor',20,300,10,true,20,true,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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (18657,'Pegasus_Wing_Ears','Pegasus Wing Ears','Armor',20,500,1,true,80,568,'bonus bUnbreakableHelm; .@i = BaseLevel; bonus bAspdRate,(.@i>=150)?(3):((.@i>=100)?(2):((.@i>=50)?(1):(0)));'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`view`) VALUES (18658,'Holy_Santa_Beard','Holy Santa Beard','Armor',20,100,true,1,25); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`refineable`,`view`,`script`) VALUES (18659,'Boitata_Hat','Boitata Hat','Armor',20,5,1,true,true,true,808,'autobonus "{ bonus bAtkEle,Ele_Fire; }",10,180000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; bonus3 bAutospell,"AS_SONICBLOW",5,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18660,'Indi_Feather_Band','Indian Feather Headband','Armor',20,400,3,1,true,false,false,true,true,809,'bonus bAgi,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18661,'Trident_Helmet','Trident Helm','Armor',20,400,3,1,true,false,false,true,20,true,810,'bonus bStr,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18662,'Antler_Fedora','Antler Fedora','Armor',20,400,3,true,false,false,true,1,true,811,'bonus bInt,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18663,'Sunglasses_Bball_Hat','Sunglasses Baseball Hat','Armor',20,200,2,1,true,false,false,true,20,true,812,'bonus bInt,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`equip_level_min`,`refineable`,`view`) VALUES (18664,'Blind_Glasses','Blind Glasses','Armor',20,400,3,true,false,false,true,20,true,813); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_low`,`equip_level_min`,`view`) VALUES (18665,'Orange_In_Mouth','Orange In Mouth','Armor',20,200,true,false,false,true,20,814); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (18666,'CD_In_Mouth','CD In Mouth','Armor',20,200,true,false,false,true,20,815,'bonus3 bAutoSpell,"MG_COLDBOLT",3,30; bonus3 bAutoSpell,"MG_SOULSTRIKE",3,30; bonus3 bAutoSpell,"WZ_EARTHSPIKE",3,30; bonus3 bAutoSpell,"MG_FIREBOLT",3,30; bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",3,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (18667,'Cat_Lace_Hairband','Cat Lace Hairband','Armor',20,500,2,1,true,false,false,true,60,816,'bonus bDex,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18668,'Droopy_Turtle_Hat','Droopy Turtle Hat','Armor',20,300,1,1,true,false,false,true,1,true,694,'skill "AL_DECAGI",3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18669,'Cowhide_Hat','Cowhide Hat','Armor',20,200,3,1,true,false,false,true,1,true,819,'bonus bDex,2; bonus bMaxHPrate,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (18670,'Hankie_In_Mouth','Hankie In Mouth','Armor',20,100,1,true,12,818,'bonus bDex,3; bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (18671,'Rudolf_Hairband','Rudolf Hairband','Armor',20,200,5,true,30,true,836); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (18672,'Tare_Pope','Drooping Pope','Armor',20,300,true,1,817,'bonus bMdef,1; bonus bSPrecovRate,2; bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (18673,'Tare_Pope_','Drooping Pope','Armor',20,300,1,true,1,true,817,100,true,'bonus bUnbreakableHelm; bonus bMdef,7; .@r = getrefine(); bonus bHealPower,(.@r>=7?5+(.@r-6):5); if (.@r>=9) { bonus bMatkRate, ( .@r >= 12 ? 12 : 7 ); }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18674,'Planewing_Hat','Planewing Hat','Armor',20,200,3,1,true,false,false,true,1,true,820,'bonus bAgi,3; bonus bAspdRate,1; bonus2 bSPLossRate,5,10000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18675,'Green_Apple_Hat','Green Apple Hat','Armor',20,200,3,1,true,false,false,true,20,true,821,'bonus bDex,2; bonus bHit,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (18676,'Hexagon_Spectacles','Hexagon Spectacles','Armor',20,200,true,false,false,true,10,822,'bonus2 bMagicAddRace,RC_Insect,4; bonus2 bSubRace,RC_Insect,5; bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (18677,'Cherry_Twig_In_Mouth','Cherry Twig In Mouth','Armor',20,200,true,false,false,true,20,823,'bonus2 bAddRace,RC_Plant,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (18678,'Leek_In_Mouth','Leek In Mouth','Armor',20,200,true,false,false,true,20,824,'bonus2 bSubSize,Size_Small,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (18679,'Abacus_In_Mouth','Abacus In Mouth','Armor',20,200,true,false,false,true,20,825,'skill "MC_IDENTIFY",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (18680,'Tw_Frog_Hat','Tw Frog Hat','Armor',20,200,2,true,35,826,'bonus bAgi,1; bonus2 bExpAddRace,RC_Insect,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18681,'Puppy_Ears_Hat','Puppy Ears Hat','Armor',20,200,2,1,true,1,true,827,'bonus bVit,2; bonus bMaxHp,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18682,'Teardrop','Teardrop','Armor',20,100,1,true,1,true,828,'bonus bMaxSP,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (18683,'Carrot_In_Mouth','Carrot In Mouth','Armor',20,200,1,true,1,829,'bonus2 bSubRace,RC_Plant,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18684,'Showy_High_Cap','Showy High Cap','Armor',20,200,3,1,true,false,false,true,1,true,830,'bonus bStr,3; bonus bInt,2; bonus2 bAddItemHealRate,505,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`equip_level_min`,`view`) VALUES (18685,'Stardust_Hairband','Stardust Hairband','Armor',20,1000,true,10,831); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (18686,'2011_RMSC_1','2011 RMSC 1','Armor',20,2500,20,1,true,1,832,'bonus bUnbreakableHelm; bonus bAllStats,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (18687,'2011_RMSC_2','2011 RMSC 2','Armor',20,2500,20,1,true,1,832,'bonus bUnbreakableHelm; bonus bAllStats,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (18688,'2011_RMSC_3','2011 RMSC 3','Armor',20,2500,20,1,true,1,832,'bonus bUnbreakableHelm; bonus bAllStats,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (18689,'2011_RMSC_4','2011 RMSC 4','Armor',20,10,true,1,832,'bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (18690,'Sirt_Evil_Eye','Sirt Evil Eye','Armor',20,400,true,50,345,'bonus bUnbreakableHelm; bonus bStr,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (18691,'Rising_Black_Dragon','Rising Black Dragon','Armor',20,100,3,true,1,true,863); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18692,'Mike_Hat','Mike Hat','Armor',20,200,3,1,true,false,false,true,1,true,837,'bonus bDex,2; bonus bLuk,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18693,'Sleeping_Kitty_Cat','Sleeping Kitty Cat','Armor',20,200,4,1,true,false,false,true,20,true,838,'bonus2 bAddRace,RC_Brute,2; bonus2 bAddRace,RC_Player_Doram,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18694,'Red_Hood','Red Hood','Armor',20,200,3,1,true,false,false,true,20,true,839,'bonus bCritical,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18695,'Phoenix_Crown','Phoenix Crown','Armor',20,400,3,1,true,false,false,true,20,true,840,'bonus bInt,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18696,'Orange_Hat','Orange Hat','Armor',20,200,3,true,false,false,true,20,true,841,'skill "MC_MAMMONITE",2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_low`,`equip_level_min`,`view`) VALUES (18697,'Syringe_In_Mouth','Syringe In Mouth','Armor',20,200,true,false,false,true,20,842); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_low`,`equip_level_min`,`view`) VALUES (18698,'Cheesy_Snack_In_Mouth','Cheesy Snack In Mouth','Armor',20,200,true,false,false,true,20,843); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`) VALUES (18699,'Starving_Fish_Hat','Starving Fish Hat','Armor',20,1200,3,true,1,844); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18700,'Rabbit_Ribbon','Rabbit Ribbon','Armor',20,500,3,1,true,50,true,845,'bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (18701,'Ancient_Civil_Man','Ancient Civil Man','Armor',20,500,2,true,false,false,true,70,846,'bonus bInt,3; bonus bDex,2; bonus bLuk,1; if(getiteminfo(getequipid(EQI_HAND_R),11)==W_BOOK) bonus bVariableCastrate,-3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_low`,`equip_level_min`,`view`) VALUES (18702,'Shaving_Cream','Shaving Cream','Armor',20,50,1,true,10,847); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (18703,'Stem_In_Mouth','Stem In Mouth','Armor',20,50,true,1,848,'bonus2 bResEff,Eff_Poison,2000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18704,'Drosera_Hairpin','Drosera Hairpin','Armor',20,640,6,1,true,64,true,850,'bonus bMdef,4; bonus bMaxSP,64; bonus2 bSubRace,RC_Insect,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18706,'Can_Hat','Can Hat','Armor',20,400,3,true,false,false,true,20,true,851,'bonus bLuk,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18707,'Maneater_Flower_Hat','Maneater Flower Hat','Armor',20,500,3,true,false,false,true,20,true,852,'bonus bFlee,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18708,'Candy_Hat','Candy Hat','Armor',20,200,3,true,false,false,true,20,true,853,'skill "AL_HEAL",3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18709,'Black_Knitted_Hat','Black Knitted Hat','Armor',20,200,3,1,true,false,false,true,true,854,'bonus bMaxSP,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_low`,`equip_level_min`,`view`) VALUES (18710,'Sugared_Fruit_Stick','Sugared Fruit Stick','Armor',20,200,true,false,false,true,20,855); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`equip_level_min`,`view`) VALUES (18711,'Electric_Sunglass','Electric Sunglass','Armor',20,400,3,true,false,false,true,20,856); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_low`,`equip_level_min`,`view`) VALUES (18712,'Fan_In_Mouth','Fan In Mouth','Armor',20,200,true,false,false,true,20,857); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18713,'Monkey_On_Fur_Hat','Monkey On Fur Hat','Armor',20,300,6,1,true,20,true,858,'bonus bDex,1; bonus bAgi,1; bonus bFlee,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18714,'Hippo_Hat','Hippo Hat','Armor',20,500,5,1,true,10,true,859,'bonus2 bSubEle,Ele_Water,10; bonus5 bAutoSpellWhenHit,"WZ_FROSTNOVA",1,1,BF_WEAPON|BF_MAGIC,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (18715,'Helm_Of_Thoth','Helm Of Thoth','Armor',20,2500,2,1,true,false,false,true,true,80,860,'bonus bInt,2; bonus bMdef,5; bonus bMaxSP,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_low`,`equip_level_min`,`view`) VALUES (18716,'Strawberry_In_Mouth','Strawberry In Mouth','Armor',20,50,2,true,10,861); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (18718,'Rose_Hairband','Rose Hairband','Armor',20,200,3,true,30,864,'bonus bInt,1; bonus bVit,1; bonus bAspdRate,3; bonus bVariableCastrate,-3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18724,'L_Magestic_Goat_','Gigantic Majestic Goat','Armor',20,800,5,1,true,true,380,'bonus2 bAddRace,RC_DemiHuman,12; bonus2 bAddRace,RC_Player_Human,12; bonus bBaseAtk,(JobLevel*2)/7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (18727,'Sedora_Hat','Sedora Hat','Armor',20,300,13,1,true,10,true,869); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18728,'Egir_Helm','Egir Helm','Armor',200000,800,10,1,true,110,true,870,'bonus bMdef,5; bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18729,'MVP_Basketball','MVP Basketball','Armor',20,150,6,1,true,1,true,871,'bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bAddItemHealRate,522,30; .@r = getrefine(); bonus bVariableCastrate,(.@r>=12)?(-5):((.@r>=10)?(-4):(-3));'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18730,'Cryptura_Academy_Hat','Cryptura Academy Hat','Armor',200,2,1,true,true,872,'bonus bMaxHP,15; bonus bMaxSP,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18732,'TE_Woe_Cap','TE Woe Cap','Armor',5,true,40,true,14,100,true,true,true,true,true,true,true,'bonus bMdef,5; bonus bBaseAtk,5; bonus bMatk,5; bonus2 bAddRace,RC_Player_Human,10; bonus2 bMagicAddRace,RC_Player_Human,10; bonus2 bResEff,Eff_Freeze,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18733,'TE_Woe_Bone_Helm','TE Woe Bone Helm','Armor',10,true,true,true,true,true,true,true,40,true,103,100,true,true,true,true,true,true,true,'bonus bBaseAtk,10; bonus2 bAddRace,RC_Player_Human,20; bonus2 bResEff,Eff_Freeze,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`job_acolyte`,`job_mage`,`job_monk`,`job_novice`,`job_priest`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_wizard`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18734,'TE_Woe_Magic_Eyes','TE Woe Magic Eyes','Armor',5,true,true,true,true,true,true,true,true,true,true,40,true,209,100,true,true,true,true,true,true,true,'bonus bMdef,5; bonus bMatk,10; bonus2 bMagicAddRace,RC_Player_Human,20; bonus2 bResEff,Eff_Freeze,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_mid`,`equip_level_min`,`view`) VALUES (18736,'Censor_Bar_','Censor Bar','Armor',100,true,1,229); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (18737,'Fortier_Mask','Fortier Masque','Armor',20,200,true,10,876,'bonus bUnbreakableHelm; bonus2 bMagicAtkEle,Ele_Fire,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18739,'Carnation_Hairband','Carnation Hairband','Armor',20,100,true,true,878,'bonus bLuk,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`view`) VALUES (18740,'C_Hair_Of_The_Strong','RMSC2012 Special Costume','Armor',20,true,879); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`,`equip_script`,`unequip_script`) VALUES (18741,'C_Will_O_Wisp','Costume Will O Wisp','Armor',10,true,1,880,'sc_start SC_STRANGELIGHTS,INFINITE_TICK,0;','sc_end SC_STRANGELIGHTS;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_Mid`,`view`,`trade_override`,`trade_nodrop`,`equip_script`,`unequip_script`) VALUES (18742,'C_MoonStar_Accessory','Costume Moon and Stars','Armor',20,true,881,100,true,'sc_start SC_MOONSTAR,INFINITE_TICK,0;','sc_end SC_MOONSTAR;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`view`) VALUES (18743,'C_Spirit_Of_Chung_E','Costume Spirit Of Chung E','Armor',20,true,882); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_Mid`,`view`,`equip_script`,`unequip_script`) VALUES (18744,'C_World_Star','Costume Twilight','Armor',20,true,883,'sc_start SC_SUPER_STAR,INFINITE_TICK,0;','sc_end SC_SUPER_STAR;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (18745,'Choco_Stick_In_Mouth','Choco Stick In Mouth','Armor',20,100,true,10,884,'bonus bMaxSP,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (18746,'Chilly_Breath','Chilly Breath','Armor',20,100,true,10,885,'bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_mid`,`view`,`script`) VALUES (18747,'Eyes_Of_Ifrit','Eyes Of Ifrit','Armor',20,100,1,1,true,886,'bonus bDex,1; bonus2 bResEff,Eff_Curse,2500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18748,'Gold_Ingot_Poring_Hat','Gold Ingot Poring Hat','Armor',20,200,3,1,true,true,887,'bonus bDex,2; bonus bLuk,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18749,'Majoruros_Horn','Majoruros Horn','Armor',20,500,8,1,true,true,888,'bonus bStr,2; bonus bMaxHP,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (18750,'Poker_Card_In_Mouth','Poker Card In Mouth','Armor',20,50,true,10,889,'bonus2 bAddRace,RC_DemiHuman,2; bonus2 bAddRace,RC_Player_Human,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18752,'Cursed_Book','Cursed Book','Armor',20,300,3,1,true,false,false,true,99,true,890,'.@r = getrefine(); bonus2 bHPLossRate,.@r,5000; bonus2 bHPDrainRate,40,4+(.@r/2); bonus2 bSPDrainRate,10,1+(.@r/3);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`view`,`script`) VALUES (18753,'Tw_Rice_Ball','Tw Rice Ball','Armor',20,100,6,true,892,'bonus bLuk,1; bonus2 bAddMonsterDropItem,564,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (18754,'Blood_Sucker','Blood Sucker','Armor',20,300,true,40,893,'bonus bUnbreakableHelm; bonus2 bHPDrainRate,30,5; bonus bHPrecovRate,-100; bonus bSPrecovRate,-100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18755,'Feather_Beret_','Feather Beret','Armor',600,1,1,true,1,true,224,'bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18756,'Black_Shiba_Inu_Hat','Black Shiba Inu Hat','Armor',20,400,6,1,true,50,true,894,'bonus bBaseAtk,30; bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Player_Doram,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`) VALUES (18758,'Hat_Of_Scrat','Hat Of Scrat','Armor',20,200,3,1,true,true,896); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (18759,'Stretched_Nose_M','Wood Goblin\'s Nose','Armor',20,200,true,50,737,'bonus bUnbreakableHelm; bonus2 bAddMonsterDropItem,1032,400; bonus2 bAddMonsterDropItem,1033,100; bonus3 bAddMonsterDropItem,576,RC_Plant,40;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18760,'Remodel_Wizardry_Hat','Improved Mage Hat','Armor',20,300,2,1,true,true,true,true,true,true,112,'bonus bInt,2; bonus bMaxSP,150; .@r = getrefine(); bonus bMatk,.@r; if(.@r>=7) bonus bInt,.@r-6;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18761,'Remodel_Magician_Hat','Improved Magician Hat','Armor',20,500,6,1,true,true,true,true,true,true,true,true,50,true,130,'bonus bDex,1; bonus bAgi,1; bonus bMaxSP,50; .@r = getrefine(); bonus bMaxSP,.@r*5; if(.@r>=7) bonus bDex,.@r-6;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18762,'Remodel_Mask_Of_Fox','Improved Kitsune Mask','Armor',20,300,2,true,false,false,true,true,153,'bonus bAgi,2; bonus bLuk,2; if(getrefine()>=7) bonus bFlee2,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18763,'Remodel_Joker_Jester','Improved Joker Jester','Armor',20,100,3,1,true,false,false,true,true,89,'bonus bLuk,2; bonus bMdef,5; if(getrefine()>=7) bonus bCritAtkRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18764,'Remodel_Bunny_Band','Improved Bunny Band','Armor',20,100,3,1,true,true,15,'bonus bLuk,2; if(getrefine()>=7) bonus bCritical,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18765,'Enhanced_Corsair','Enhanced Corsair','Armor',20,500,10,1,true,false,false,true,99,true,105,'bonus bVit,1; bonus bMaxHprate,5; .@r = getrefine(); if(.@r>=7) bonus2 bSubEle,Ele_Neutral,1; if(.@r>=9) bonus bMaxHPrate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18766,'Enhanced_Helm_Of_Angel','Enhanced Helm of Angel','Armor',20,1600,10,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,99,true,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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18767,'Enhanced_Helm_Of_Sun','Enhanced Hat of the Sun God','Armor',20,2400,4,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,99,true,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);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18768,'Enhanced_Bone_Helm','Enhanced Bone Helm','Armor',20,800,15,1,true,true,true,true,true,true,true,70,true,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);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`location_head_low`,`refineable`,`view`,`script`) VALUES (18769,'Remodel_Munak_Turban','Improved Munak Hat','Armor',20,300,5,1,true,true,true,true,51,'bonus2 bSubRace,RC_Undead,10; if(getrefine()>=7) bonus2 bAddRace,RC_Undead,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`location_head_low`,`refineable`,`view`,`script`) VALUES (18770,'Remodel_Bongun_Hat','Improved Bongun Hat','Armor',20,300,5,1,true,true,true,true,139,'bonus2 bSubRace,RC_Demon,10; if(getrefine()>=7) bonus2 bAddRace,RC_Demon,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (18771,'Remodel_Opera_Mask','Improved Opera Phantom Mask','Armor',20,200,2,true,20,128,'bonus bBaseAtk,5; bonus bMatk,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_archer`,`job_barddancer`,`job_hunter`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (18772,'Improved_Binoculars','Advanced Binoculars','Armor',20,100,2,true,true,true,true,50,83,'bonus bDex,1; bonus bLongAtkRate,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_crusader`,`job_knight`,`job_swordman`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (18773,'Improved_Fin_Helm','Advanced Fin Helm','Armor',20,300,5,true,true,true,true,65,100,'bonus bMaxHP,300+BaseLevel; /* unconfirmed */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_assassin`,`job_priest`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (18774,'Improved_Assassin_Mask','Advanced Assassin Mask','Armor',20,100,1,true,true,true,70,180,'bonus bCritical,1; bonus bCritAtkRate,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_blacksmith`,`job_merchant`,`location_head_mid`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (18775,'Improved_Welding_Mask','Advanced Welding Mask','Armor',20,300,2,true,true,true,true,true,50,79,'bonus2 bSubEle,Ele_Fire,10; bonus bDex,5; bonus bLuk,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18776,'Improved_Kiss_Of_Angel','Advanced Angel\'s Kiss','Armor',10000,300,6,1,true,true,true,99,true,255,'bonus bSPrecovRate,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18779,'RWC_Champ_Crown_Red','RWC Champ Crown First Place','Armor',20,500,12,1,true,1,902,100,true,true,true,true,true,true,true,'bonus2 bResEff,Eff_Stun,10000; bonus2 bResEff,Eff_Curse,10000; bonus bUnbreakableHelm; bonus bAllStats,7; bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18780,'RWC_Champ_Crown_Blue','RWC Champ Crown Second Place','Armor',20,500,12,1,true,1,903,100,true,true,true,true,true,true,true,'bonus2 bResEff,Eff_Curse,10000; bonus bUnbreakableHelm; bonus bAllStats,7; bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18781,'RWC_Champ_Crown_Black','RWC Champ Crown Third Place','Armor',20,500,12,1,true,1,904,100,true,true,true,true,true,true,true,'bonus2 bResEff,Eff_Curse,10000; bonus bUnbreakableHelm; bonus bAllStats,3; bonus bMdef,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`view`,`script`) VALUES (18782,'Butterfly_Wing_Ear_J','Butterfly Wing Ear','Armor',20,100,true,695,'bonus bDex,2; bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18785,'King_Poring_Hat','King Poring Hat','Armor',20,600,10,1,true,10,true,905,'bonus bDex,1; bonus bLuk,1; .@r = getrefine(); if(.@r>=3){ bonus bDex,(.@r-4); bonus bLuk,(.@r-4); }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (18786,'Anemos_Mask','Anemos Mask','Armor',20,200,true,10,906,'bonus bUnbreakableHelm; bonus2 bMagicAtkEle,Ele_Wind,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (18787,'Goal_Tender_Mask','Goal Tender Mask','Armor',20,200,5,true,true,50,336,'bonus2 bAddRace,RC_DemiHuman,8; bonus2 bAddRace,RC_Player_Human,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`) VALUES (18790,'Rainbow_Poring_Hat','Rainbow Poring Hat','Armor',20,100,3,1,true,true,900); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`view`) VALUES (18791,'Shrine_Maiden_Hat','Shrine Maiden Hat','Armor',20,200,30,1,true,908); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18792,'Idn_Sakkat','Indonesian Independence Sakkat','Armor',10,400,true,false,false,true,45,true,901,'bonus bVit,10; bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus2 bSubRace,RC_DemiHuman,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18793,'Sorc_Night_Cap','Sorcerer\'s Night Cap','Armor',20,200,25,1,true,true,true,true,true,100,true,911,'.@r = getrefine(); bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",50; bonus2 bSkillAtk,"MG_FIREBOLT",50; bonus2 bSkillAtk,"MG_COLDBOLT",50; bonus bMdef,10; if(.@r>6) bonus2 bSkillAtk,"SC_SPELLFIST",25; if(.@r>8) bonus bAspd,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18796,'RWC_Champ_Crown_QF','RWC Champ Crown Fourth Place','Armor',20,500,12,1,true,1,914,100,true,true,true,true,true,true,true,'bonus2 bResEff,Eff_Curse,10000; bonus bUnbreakableHelm; bonus bAllStats,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18803,'Rose_Cascade','Rose Cascade','Armor',500,1,true,true,920,'.@dex = readparam(bDex); bonus bUseSPrate,-5-((.@dex >= 120)?5:0)-((.@dex >= 100)?5:0);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18805,'Eclipse_Hat','Eclipse Hat','Armor',20,300,2,true,true,922,'bonus bLuk,3; bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18806,'Black_Rabbit_Hat','Black Rabbit Hat','Armor',20,300,2,1,true,true,923,'bonus bDex,2; bonus bAgi,3; bonus3 bAutoSpellWhenHit,"AL_INCAGI",5,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18807,'Yellow_Yuzu_Hat','Yellow Yuzu Hat','Armor',20,400,3,1,true,false,false,true,true,924,'bonus bVit,2; bonus bLuk,3; bonus2 bSubRace,RC_Plant,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`refineable`,`view`,`script`) VALUES (18808,'Wing_Form_Spectacle','Wing Form Spectacle','Armor',20,100,1,true,true,925,'bonus bAgi,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18810,'Hell_Pumpkin_Hat','Hell Pumpkin Hat','Armor',20,500,12,true,true,717,'bonus bMdef,12; bonus2 bSubRace,RC_Demon,5; bonus2 bSubRace,RC_Undead,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (18813,'New_Wave_Sunglasses','New Wave Sunglasses','Armor',10,100,true,30,856,'bonus bDelayrate,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18814,'Angel_School_Cap','Angel School Cap','Armor',20,100,4,1,true,false,false,true,true,927,'bonus bInt,2; bonus bVit,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18815,'Devil_School_Cap','Devil School Cap','Armor',20,100,4,1,true,false,false,true,true,928,'bonus bStr,2; bonus bVit,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18816,'Adv_Angel_School_Cap','Evoked Angel School Cap','Armor',20,100,4,1,true,false,false,true,true,929,'bonus bInt,2; bonus bVit,2; bonus bLuk,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18817,'Adv_Devil_School_Cap','Evoked Devil School Cap','Armor',20,100,4,1,true,false,false,true,true,930,'bonus bStr,2; bonus bVit,2; bonus bLuk,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`,`script`) VALUES (18818,'Red_Pencil_In_Mouth','Red Pencil In Mouth','Armor',20,100,true,931,'bonus bUnbreakableHelm; bonus bHit,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`,`script`) VALUES (18819,'Blue_Pencil_In_Mouth','Blue Pencil In Mouth','Armor',20,100,true,932,'bonus bUnbreakableHelm; bonus bHit,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18820,'Gray_Helmet','Gray Helmet','Armor',20,450,35,1,true,true,true,true,120,true,941,'bonus2 bSubEle,Ele_Holy,3+getrefine()/2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (18821,'Rainbow_Feather_Deco','Rainbow Feather Deco','Armor',20,300,5,1,true,1,true,934,100,true,'bonus2 bAddClass,Class_All,1; bonus bMatkRate,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18823,'Imperial_Feather','Imperial Feather','Armor',10,500,true,70,true,935,'bonus bAspdRate,1; bonus2 bSubEle,Ele_Wind,5; if(readparam(bAgi)>107){ bonus bAspd,1; bonus bAspdRate,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18827,'Valkyrie_Circlet','Valkyrie Circlet','Armor',300,10,1,true,true,940,'bonus bStr,3; bonus2 bAddEle,Ele_Dark,10; bonus2 bAddRace,RC_Demon,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18828,'2012RMSCNO1','2012 RWC Winners Helmet','Armor',1000,1000,20,1,true,60,true,942,100,true,true,true,true,true,true,true,'bonus bAllStats,5; bonus bMdef,5; bonus bSpeedAddRate,10; skill "AL_TELEPORT",1; bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18829,'2012RMSCNO2','2012 RWC Runners-Up Helmet','Armor',1000,1000,20,1,true,60,true,943,100,true,true,true,true,true,true,true,'bonus bAllStats,4; bonus bMdef,5; bonus bSpeedAddRate,10; skill "AL_TELEPORT",1; bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18830,'2012RMSCNO3','2012 RWC 2nd Runner Helmet','Armor',1000,1000,20,1,true,60,true,944,100,true,true,true,true,true,true,true,'bonus bAllStats,3; bonus bMdef,5; bonus bSpeedAddRate,10; skill "AL_TELEPORT",1; bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (18831,'2012RMSCNO4','2012 RWC Special Helmet','Armor',1000,20,1,true,95,945,'bonus bAllStats,2; bonus bMdef,5; bonus bSpeedAddRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18832,'Rolf_Von_Gigue_666','Rolf Von Gigue 666','Armor',20,300,true,true,946,'bonus3 bAutoSpell,"BS_ADRENALINE",2,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (18839,'Poring_Sunglasses','Poring Sunglasses','Armor',100,10,1,true,1,954,'bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18841,'Small_Poring_Band','Small Poring Band','Armor',20,350,8,1,true,true,955,'.@r = getrefine(); bonus bAspdRate,2*(.@r/3); if(.@r>9) bonus bAspd,1; bonus2 bExpAddRace,RC_All,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18842,'Hat_Of_Girl','Hat Of Girl','Armor',20,350,8,1,true,true,956,'.@r = getrefine(); bonus bInt,2*(.@r/3); bonus2 bSubRace,RC_DemiHuman,7; bonus bMaxHPrate,-3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18843,'Small_Deviling_Hat','Small Deviling Hat','Armor',20,350,7,1,true,true,957,'.@r = getrefine(); if(.@r>7) bonus bMaxHPrate,.@r-7; bonus2 bSubRace,RC_DemiHuman,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_low`,`view`,`script`) VALUES (18844,'Blue_Poring_Bubble','Blue Poring Bubble','Armor',20,50,5,true,958,'bonus bAllStats,2; bonus bUnbreakableHelm; bonus bFlee,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_low`,`view`,`script`) VALUES (18845,'Banshee_Master_Kiss','Banshee Master Kiss','Armor',20,200,5,true,959,'bonus bUnbreakableHelm; bonus bMaxSPrate,3; autobonus2 "{ bonus2 bSubRace,RC_DemiHuman,100; bonus2 bSubRace,RC_Player_Human,100; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (18846,'Seagod_Protector','Seagod Protector','Armor',20,100,true,10,960,'bonus2 bSubDefEle,Ele_Water,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18847,'Jolly_Roger','Jolly Roger','Armor',20,500,10,1,true,1,true,962,'bonus bVit,1; bonus2 bSubDefEle,Ele_Water,2; bonus2 bAddEle,Ele_Water,2; .@r = getrefine(); if(.@r>6) { bonus2 bAddEle,Ele_Water,3; } if(.@r>8) { bonus2 bSubDefEle,Ele_Water,3; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`magic_attack`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18848,'Lush_Rose','Lush Rose','Armor',10,200,20,1,true,1,true,963,'bonus bMagicHPGainValue,100; bonus bMagicSPGainValue,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18849,'Celines_Ribbon','Celines Ribbon','Armor',10,200,1,true,1,true,967,'bonus bDex,3; bonus bMatk,40+getrefine(); bonus bMagicHPGainValue,200; bonus2 bHPLossRate,50,5000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (18850,'Polar_Bear_Cap','Polar Bear Cap','Armor',20,300,7,true,1,966,'bonus bUnbreakableHelm; bonus bDex,1; bonus bAgi,1; bonus bMdef,3; bonus bHPrecovRate,5; bonus bSPrecovRate,3; bonus2 bAddMonsterDropItem,12354,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18851,'ValentineHeart','Valentine Heart','Armor',20,true,1,true,397,'bonus bMaxHPrate,5+(getrefine()/2); bonus bAllStats,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18852,'Berry_Hat_Decoration','Tasty Strawberry Hat','Armor',20,150,4,true,30,true,968,'bonus bAllStats,1; if(getrefine()>11) bonus bAspd,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18853,'Berry_Hat_Decoration_','Tasty Strawberry Hat','Armor',20,150,4,true,30,true,968,'bonus bAllStats,1; if(getrefine()>11) bonus bAspd,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18854,'ValentineYellowHeart','Yellow Valentine Heart','Armor',20,true,1,true,865,'bonus bMaxSPrate,2+(getrefine()/2); bonus bAllStats,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18855,'Aviator_Hat','Aviator Hat','Armor',10,100,10,true,1,true,972,'bonus bAgi,3; bonus bInt,3; autobonus "{ bonus bAtkEle,Ele_Wind; }",500,180,BF_NORMAL;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18856,'W_King_Tiger_Doll_Hat','W King Tiger Doll Hat','Armor',10,10,true,1,true,973,'bonus bStr,2; bonus bDex,2; bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Player_Doram,10; .@r = getrefine(); autobonus "{ bonus2 bSPLossRate,5,1000; bonus bBaseAtk,25*getrefine(); }",3*.@r,3000,BF_NORMAL,"{ active_transform 1115,3000; specialeffect2 EF_POTION_BERSERK; showscript \\"Traaaansformation-!! Eddga form!!\\"; }"; autobonus2 "{ bonus2 bSPLossRate,5,1000; bonus bBaseAtk,25*getrefine(); }",.@r,3000,BF_NORMAL,"{ active_transform 1115,3000; specialeffect2 EF_POTION_BERSERK; showscript \\"Traaaansformation-!! Eddga form!!\\"; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18857,'Curupira_Hat','Curupira Hat','Armor',10,100,20,1,true,1,true,974,'bonus bDex,3; bonus2 bAddEffWhenHit,Eff_Confusion,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (18858,'Pink_Angeling_Bubble','Pink Angeling Bubble','Armor',10,50,5,true,1,975,'bonus bMaxHP,200; bonus bAspdRate,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (18859,'Angeling_Bubble','Angeling Bubble','Armor',10,50,5,true,1,976,'bonus bDex,1; bonus bMatkRate,2; bonus bMaxHP,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18860,'Red_Flower_Hat','Red Flower Hat','Armor',10,200,10,1,true,50,true,1033,'bonus bDex,5; bonus2 bSubDefEle,Ele_Earth,3; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; if (getrefine() >= 12) { bonus bShortWeaponDamageReturn,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18861,'Zaha_Doll_Hat_J','Zaha Doll J Hat','Armor',10,100,1,true,50,true,461,'bonus bHealPower,15; bonus bUseSPrate,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (18863,'Exorcist_Robe','Exorcist Robe','Armor',10,1700,57,1,true,60,true,'bonus bMdef,5; .@r = getrefine(); if (.@r >= 3) { bonus2 bAddRace,RC_Undead,.@r/3*5; } if (BaseClass==Job_Acolyte) bonus2 bAddRace,RC_Undead,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18864,'Earth_Goddess_Flower_J','Earth Goddess Flower','Armor',10,250,6,true,1,true,864,'bonus bVit,2; skill "WZ_EARTHSPIKE",5; bonus2 bSubEle,Ele_Earth,15; .@r = getrefine(); if(.@r>=8){ bonus2 bSubEle,Ele_Earth,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18865,'Sword_Master_Crown','Sword Master Crown','Armor',10,1000,30,1,true,50,true,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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (18867,'Vajra','Vajra','Armor',300,true,48,983,'bonus bDex,1; bonus bLongAtkRate,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (18868,'Assassin_Skull_Mask','Assassin Skull Mask','Armor',10,500,2,true,true,70,984,'bonus bCritical,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18870,'Very_Sweet_Candy_Bar','Very Sweet Candy Bar','Armor',10,10,true,1,true,446,'bonus bAllStats,2; bonus bBaseAtk,10; bonus bMatk,10; bonus2 bExpAddClass,Class_All,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18871,'Very_Sweet_Candy','Very Sweet Candy','Armor',10,10,true,1,true,446,'bonus bAllStats,1; bonus bBaseAtk,5; bonus bMatk,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18872,'Snake_Hat','Snake Hat','Armor',20,100,5,1,true,true,986,'bonus bStr,3; bonus bInt,3; bonus bMdef,5; bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18873,'Sweet_Valentine_Out','Sweet Valentine Out','Armor',20,100,1,true,1,true,865,'bonus bMaxHPrate,7; bonus bMaxSPrate,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_mid`,`equip_level_min`,`view`) VALUES (18874,'One_Eyed_Glass_','Cyclops Glasses','Armor',10,100,1,true,1,23); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (18877,'Baron_Evil_Eye','Baron\'s Evil Eye','Armor',10,300,true,30,989,'bonus bDelayrate,-5; bonus bUseSPrate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18878,'Palace_Guard_Cap','Palace Guard Cap','Armor',10,1000,15,1,true,50,true,991,'.@r = max(5,getrefine()); bonus2 bSubEle,Ele_Neutral,.@r; bonus bLongAtkDef,.@r; bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18879,'Angry_Scorpion_Hat','Angry Scorpion Hat','Armor',10,100,5,true,true,995,'bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18880,'Advanced_Jao_King_Hat','Advanced Jao King Hat','Armor',10,1500,4,1,true,175,true,996,'bonus bAllStats,3; bonus bMaxHPrate,5; bonus bMaxSPrate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18882,'Kannam_On_Head','Kannam On Head','Armor',10,200,5,true,20,true,1003,'bonus3 bAutoSpellWhenHit,"SA_DELUGE",1,50; .@r = getrefine(); if (.@r > 3) bonus3 bAutoSpellWhenHit,"WZ_WATERBALL",.@r/3,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18885,'Jejecap','Jejecap','Armor',100,8,true,70,true,1011,'bonus bStr,2; bonus bInt,3; bonus2 bSubRace,RC_DemiHuman,11; bonus2 bSubRace,RC_Player_Human,11; bonus2 bAddItemHealRate,522,70;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18887,'Aqua_Bunny_Band','Aqua Bunny Band','Armor',100,2,1,true,true,1012,'bonus bVit,3; .@r = getrefine(); bonus bMdef,(.@r>8?10:5); bonus bMatkRate,(.@r>8?6:2); if(.@r>11) bonus bFixedCastrate,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18888,'Maroon_Bunny_Band','Maroon Bunny Band','Armor',100,2,1,true,true,1013,'bonus bInt,5; bonus bLuk,5; .@r = getrefine(); bonus2 bAddClass,Class_All,(.@r>8?6:2); bonus bMatkRate,(.@r>8?9:5); if(.@r>11) bonus bFixedCastrate,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18889,'Golden_Bunny_Band','Golden Bunny Band','Armor',100,2,1,true,true,1014,'bonus bAgi,5; bonus bLuk,5; .@r = getrefine(); bonus2 bAddClass,Class_All,(.@r>8?7:2); if(.@r>8) bonus bMatkRate,5; if(.@r>11) bonus bFixedCastrate,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18890,'Gray_Bunny_Band','Gray Bunny Band','Armor',2,1,true,true,1015,'bonus bInt,5; bonus bLuk,5; .@r = getrefine(); bonus2 bAddClass,Class_All,(.@r>8?6:2); bonus bMatkRate,(.@r>8?9:5); if(.@r>11) bonus bFixedCastrate,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18891,'Husky_Hat','Husky Hat','Armor',500,5,1,true,70,true,1016,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus3 bAutoSpell,"SN_WINDWALK",5,10+(getrefine()*3);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18892,'Ufo_Poring_Hat','Ufo Poring Hat','Armor',1000,5,1,true,10,true,1017,'bonus bMdef,5; bonus bCritical,5; bonus bFlee,5; bonus bHit,5; bonus bFlee2,5; .@r = getrefine(); if(.@r>8){ bonus bDelayRate,-5; bonus bAspdRate,5; } else if(.@r>6) bonus bVariableCastrate,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18893,'Dragon_Claw_Helm','Dragon Claw Helm','Armor',1000,5,1,true,10,true,1018,'bonus2 bSubRace,RC_DemiHuman,8; bonus2 bSubRace,RC_Player_Human,8; bonus2 bSubRace,RC_Dragon,8; bonus2 bAddItemGroupHealRate,IG_Meat,200; if(getrefine()>11){ bonus bMaxHPrate,7; bonus bMaxSPrate,3; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (18894,'Rainbow_Star','Rainbow Star','Armor',500,5,true,70,1019,'bonus2 bSubRace,RC_Player_Human,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (18895,'Celestial_Dark_Flame','Celestial Dark Flame','Armor',200,5,true,50,1008,'bonus2 bSubEle,Ele_Fire,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (18896,'Pterios_Fins','Pterios Fins','Armor',200,5,true,50,1009,'bonus2 bSubEle,Ele_Fire,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (18897,'Azure_Diadem','Azure Diadem','Armor',200,5,true,50,1010,'bonus2 bSubEle,Ele_Water,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18898,'Yggdrasil_Herald_Crown','Yggdrasil Herald Crown','Armor',200,6,1,true,60,true,997,'bonus bAllStats,5; bonus bMaxHP,100; bonus bMaxSP,50; .@r = getrefine(); .@rate = max(.@r,7)-7; if(.@rate){ bonus bMaxHPrate,.@rate; bonus bVariableCastrate,-.@rate; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (18900,'Weisswurst','Weisswurst','Armor',20,100,1,true,60,1022,'bonus bMaxHP,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (18901,'Seppl_Hat','Seppl Hat','Armor',20,500,5,1,true,60,1023,'bonus bVit,3; bonus bHPrecovRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (18902,'Shovel_Hat','Shovel Hat','Armor',500,true,50,1024,'bonus bVit,3; bonus2 bAddMonsterDropItem,553,500; bonus2 bAddItemHealRate,553,700;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18908,'Isabella_Red_Ear','Isabella Red Ear','Armor',10,300,8,1,true,1,true,1030,'bonus bStr,5; bonus bMaxHPrate,5; bonus2 bSubDefEle,Ele_Fire,10; .@r = getrefine(); if(.@r>=9) bonus bAspd,1+(.@r-9)/2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18909,'Isabella_Brown_Ear','Isabella Brown Ear','Armor',10,300,8,1,true,1,true,1031,'bonus bMaxHPrate,10; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bMatk,getrefine()*2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18910,'Isabella_Blue_Ear','Isabella Blue Ear','Armor',10,300,8,1,true,1,true,1032,'bonus bMaxHPrate,10; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bAddSize,Size_Medium,10; if(getrefine()>=12){ bonus bShortWeaponDamageReturn,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (18917,'LoveLove_Balloon','LoveLove Balloon','Armor',10,200,5,true,1,1039,'bonus bAllStats,1; bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (18918,'Long_Octopus_Balloon','Long Octopus Balloon','Armor',10,200,5,true,1,1040,'bonus bVit,1; bonus bInt,1; bonus bMaxSP,30; bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_low`,`view`,`script`) VALUES (18925,'GodOfWinds_Fan','GodOfWinds Fan','Armor',300,true,1051,'bonus2 bSkillAtk,"WZ_VERMILION",3; bonus2 bSkillAtk,"WL_CHAINLIGHTNING",3; bonus bUseSPrate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18929,'Elephant_Model_Hat','Elephant Model Hat','Armor',10,300,10,1,true,30,true,1065,'.@r = getrefine(); bonus bDex,2+((.@r >= 2 && .@r <= 8) ? 1 : ((.@r > 8) ? (.@r/8): 0)); bonus3 bAutoSpellWhenHit,"WZ_STORMGUST",5,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18930,'Gorilla_Model_Hat','Gorilla Model Hat','Armor',10,300,10,1,true,30,true,1066,'bonus bStr,2+((getrefine()>=11) ? 3 : 0); bonus3 bAutoSpell,"KN_BOWLINGBASH",1,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18931,'Lion_Model_Hat','Lion Model Hat','Armor',10,300,10,1,true,30,true,1067,'.@r = getrefine(); bonus bInt,2+((.@r >= 2 && .@r <= 8) ? 1 : ((.@r > 8) ? (.@r/8): 0)); bonus3 bAutoSpellWhenHit,"WZ_METEOR",5,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18932,'Rhino_Model_Hat','Rhino Model Hat','Armor',10,300,10,1,true,30,true,1068,'.@r = getrefine(); bonus bVit,2+((.@r >= 11) ? (.@r/11) : 0); bonus3 bAutoSpellWhenHit,"WZ_VERMILION",1,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18933,'Mechanical_Plant_Hat','Mechanical Plant Hat','Armor',20,500,10,1,true,45,true,1069,'.@r = getrefine()/2; bonus bDex,2; bonus bMdef,7; bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",5+(5*.@r);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18934,'Fox_Ears_Bell_Ribbon','Fox Ears Bell Ribbon','Armor',400,4,1,true,50,true,1070,'bonus bAgi,2; bonus bAspdRate,10; .@r = getrefine(); autobonus "{ bonus bCritical,100; bonus bLongAtkRate,5+max(0,getrefine()-6); }",50+(.@r*2),5000,BF_NORMAL,"{ active_transform 1150,5000; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (18936,'Golden_Fish','Golden Fish In Mouth','Armor',1,10,1,true,1,1081,'bonus bAllStats,2; bonus bBaseAtk,10; bonus bMatk,10; bonus2 bExpAddRace,RC_Fish,2; bonus2 bSubRace,RC_Fish,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_mid`,`refineable`,`view`,`script`) VALUES (18937,'Memories_Of_Lovers','Memories Of Lovers','Armor',100,true,true,1072,'bonus bMdef,7; bonus bMaxHPrate,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18938,'Astro_Circle','Astro Circle','Armor',300,1,true,70,true,1073,'bonus bInt,1; .@r = getrefine(); if(.@r>6){ .@t = ((.@r-6)*2); } bonus2 bSubSkill,"WZ_METEOR",20+.@t; bonus2 bSubSkill,"WL_CRIMSONROCK",20+.@t; bonus2 bSubSkill,"WL_COMET",5; bonus2 bSkillAtk,"WZ_METEOR",(.@r/3)*5; bonus2 bSkillAtk,"WL_CRIMSONROCK",(.@r/3)*5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (18940,'10_Gallon_Hat_Of_Flame','10 Gallon Hat Of Flame','Armor',10,1000,true,90,true,1075); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (18947,'Pipe_Of_Jiraiya','Jiraiya\'s Pipe','Armor',10,100,1,true,70,1088,'bonus2 bSkillUseSP,"NJ_KOUENKA",-5; bonus2 bVariableCastrate,"NJ_KAENSIN",-10; bonus2 bSkillAtk,"NJ_BAKUENRYU",20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (18948,'Mask_Of_Orochimaru','Orochimaru\'s Mask','Armor',10,100,1,true,70,1089,'bonus2 bSkillUseSP,"NJ_HYOUSENSOU",-5; bonus2 bVariableCastrate,"NJ_SUITON",-10; bonus2 bSkillAtk,"NJ_HYOUSYOURAKU",20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (18949,'Scroll_Of_Tsunade','Tsunade\'s Scroll','Armor',10,100,1,true,70,1090,'bonus2 bSkillUseSP,"NJ_HUUJIN",-5; bonus2 bVariableCastrate,"NJ_RAIGEKISAI",-10; bonus2 bSkillAtk,"NJ_KAMAITACHI",20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18960,'Love_Daddy_2013','Love Daddy 2013','Armor',10,10,10,1,true,true,1104,'.@r = getrefine(); bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; if(readparam(bStr) >= 90){ bonus bAtk,15; if(.@r >= 9) bonus bAtk,15; } if(readparam(bInt) >= 90){ bonus bMatk,15; if(.@r >= 9) bonus bMatk,15; } if(readparam(bVit) >= 90){ bonus bMaxHP,500; if(.@r >= 9) bonus bMaxHP,500; } if(readparam(bAgi) >= 90){ bonus bAspdRate,2; if(.@r >= 9) bonus bAspdRate,3; } if(readparam(bDex) >= 90){ bonus bLongAtkRate,3; if(.@r >= 9) bonus bLongAtkRate,3; } if(readparam(bLuk) >= 90){ bonus bCritical,5; if(.@r >= 9) bonus bCritical,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18970,'Magical_Moon_Cat','Magical Moon Cat','Armor',20,50,5,1,true,1,true,1308,100,true,true,true,true,true,true,true,'skill "ALL_CATCRY",1; bonus bAllStats,3; bonus bDelayrate,-5-(getrefine()/2); bonus bVariableCastrate,-5-(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18971,'Old_Rune_Circlet','Old Rune Circlet','Armor',10,100,10,1,true,true,true,true,true,170,true,623,100,true,true,true,true,true,true,true,'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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18972,'Old_Mitra','Old Mitra','Armor',10,100,10,1,true,true,true,true,true,170,true,624,100,true,true,true,true,true,true,true,'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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18973,'Old_Driver_Band_R','Old Driver Band','Armor',10,100,10,1,true,true,true,true,true,170,true,626,100,true,true,true,true,true,true,true,'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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18974,'Old_Driver_Band_Y','Old Driver Band(Yellow)','Armor',10,100,10,1,true,true,true,true,true,170,true,637,100,true,true,true,true,true,true,true,'bonus bAllStats,1; .@r = getrefine(); bonus bBaseAtk,4*.@r; bonus bAspd,.@r/5; bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus2 bSkillAtk,"NC_ARMSCANNON",5*(.@r/2); bonus2 bSkillCooldown,"NC_SELFDESTRUCTION",-10000*(.@r/4);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18975,'Old_Shadow_Handicraft','Old Shadow Handicraft','Armor',10,100,10,1,true,true,true,true,true,170,true,627,100,true,true,true,true,true,true,true,'bonus bAllStats,1; .@r = getrefine(); bonus bBaseAtk,4*.@r; bonus bMatk,4*.@r; bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus2 bSkillAtk,"SC_TRIANGLESHOT",25*.@r/2; if (.@r>=6) { bonus2 bSkillCooldown,"SC_ENERVATION",-1000; bonus2 bSkillCooldown,"SC_UNLUCKY",-1000; } if (.@r>=8) { bonus2 bSkillCooldown,"SC_LAZINESS",-1000; bonus2 bSkillCooldown,"SC_WEAKNESS",-1000; } if (.@r>=10) { bonus2 bSkillCooldown,"SC_IGNORANCE",-1000; bonus2 bSkillCooldown,"SC_GROOMY",-1000; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18976,'Old_Minstrel_Song_Hat','Old Minstrel Song\'s Hat','Armor',10,100,10,1,true,true,true,true,'Male',true,170,true,628,100,true,true,true,true,true,true,true,'bonus bAllStats,1; .@r = getrefine(); bonus bLongAtkRate,.@r; bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus2 bSkillAtk,"CG_ARROWVULCAN",20*.@r/2; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",5*.@r/2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18977,'Old_Midas_Whisper','Old Midas Whisper','Armor',10,100,10,1,true,true,true,true,true,170,true,629,100,true,true,true,true,true,true,true,'bonus bAllStats,1; .@r = getrefine(); bonus bBaseAtk,4*.@r; bonus bLongAtkRate,.@r; bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus2 bSkillAtk,"GN_CARTCANNON",15*.@r/2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18978,'Old_Magic_Stone_Hat','Old Magic Stone Hat','Armor',10,100,10,1,true,true,true,true,true,170,true,630,100,true,true,true,true,true,true,true,'bonus bAllStats,1; .@r = getrefine(); bonus bMdef,5; bonus bMatkRate,.@r; bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus2 bSkillAtk,"WL_SOULEXPANSION",5*.@r/2; bonus2 bSkillCooldown,"WL_CRIMSONROCK",-1000-(.@r*100);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_monk`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18979,'Old_Blazing_Soul','Old Blazing Soul','Armor',10,100,10,1,true,true,true,true,true,170,true,631,100,true,true,true,true,true,true,true,'bonus bAllStats,1; .@r = getrefine(); bonus bBaseAtk,4*.@r; bonus bCritical,2*.@r; bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",15*.@r/2; bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",20*.@r/2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18980,'Old_Wind_Whisper','Old Wind Whisper','Armor',10,100,10,1,true,true,true,true,true,170,true,633,100,true,true,true,true,true,true,true,'bonus bAllStats,1; .@r = getrefine(); bonus bAtk2,4*.@r; bonus bMatkRate,.@r; bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus bMdef,5; bonus2 bSkillAtk,"SO_POISON_BUSTER",15*(.@r/2); bonus2 bSkillAtk,"SO_VARETYR_SPEAR",20*(.@r/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18981,'Old_Dying_Swan','Old Dying Swan','Armor',10,100,10,1,true,true,true,true,'Female',true,170,true,635,100,true,true,true,true,true,true,true,'bonus bAllStats,1; .@r = getrefine(); bonus bLongAtkRate,.@r; bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus2 bSkillAtk,"CG_ARROWVULCAN",20*.@r/2; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",5*.@r/2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18982,'Old_Circlet_Of_Bone','Old Circlet Of Bones','Armor',10,100,10,1,true,true,true,true,true,170,true,1141,100,true,true,true,true,true,true,true,'bonus bAllStats,1; .@r = getrefine(); bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus bCriticalRate,.@r; bonus bAspdRate,1; bonus2 bSkillAtk,"GC_CROSSIMPACT",10*.@r/2; bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",20*.@r/2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18983,'Old_Protect_Of_Crown','Old Protect Of Crown','Armor',10,100,10,1,true,true,true,true,true,170,true,1140,100,true,true,true,true,true,true,true,'bonus bAllStats,1; .@r = getrefine(); bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus bMdef,5; bonus bBaseAtk,4*.@r; bonus bAspd,.@r/5; bonus2 bSkillAtk,"LG_CANNONSPEAR",20*.@r/2; bonus2 bSkillAtk,"LG_OVERBRAND",5*.@r/2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18984,'Old_Camo_RabbitHood','Old Camouflage Rabbit Hood','Armor',10,100,10,1,true,true,true,true,true,170,true,1142,100,true,true,true,true,true,true,true,'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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`job_hunter`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (18985,'Falconer_Flute','Falconer Flute','Armor',100,true,true,75,1143,'set .@bblvl,max(getskilllv("HT_BLITZBEAT"),1); set .@luk,min(readparam(bLuk),120); bonus3 bAutoSpell,"HT_BLITZBEAT",.@i,((.@bblvl / 3) * 10) + (.@luk * 10) + (((.@bblvl / 5) * .@bblvl) * 2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`,`equip_script`) VALUES (18987,'RWC13_Jormungandr_Hat','RWC13 Jormungandr Hat','Armor',20,2500,7,1,true,1,true,1149,'bonus bAllStats,2; bonus bVariableCastrate,-5; bonus bDelayrate,-5; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18997,'Riot_Chip','Runaway Chip','Armor',10,300,1,true,100,true,1201,'bonus bHit,50; bonus bFlee,50; bonus bMaxSPrate,-50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19019,'Elemental_Crown','Elemental Crown','Armor',500,10,1,true,50,true,1219,'.@r = getrefine(); bonus bLongAtkRate,4; bonus bDex,(3+(BaseLevel>99?.@r:.@r/2));'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19020,'Survive_Circlet','Survive Circlet','Armor',500,10,1,true,50,true,1220,'.@r = getrefine(); bonus bInt,(3 + (BaseLevel > 99 ? .@r : .@r/2)); bonus bMatkRate,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19021,'Gigant_Helm','Gigant Helm','Armor',500,10,1,true,50,true,1221,'.@r = getrefine(); bonus bStr,(3 + (BaseLevel > 99 ? .@r : .@r/2)); bonus2 bAddClass,Class_All,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_head_top`,`view`,`equip_script`,`unequip_script`) VALUES (19022,'Floating_Stone_Of_Int','Floating Stone Of Intelligence','Armor',true,1230,'sc_start SC_FSTONE,INFINITE_TICK,0;','sc_end SC_FSTONE;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (19024,'Protect_Feathers','Protect Feathers','Armor',500,true,70,1232,'bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; bonus bAspdRate,-5; .@vit = readparam(bVit); if (.@vit >= 108) { bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3; bonus bAspdRate,-5; } if (.@vit >= 120) { bonus bMaxHPRate,3; bonus bMdef,3; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19026,'Aegir_Helm','Aegir Helm','Armor',10,800,10,1,true,40,true,870,'bonus bVit,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`location_head_low`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19030,'Pretty_Rabbit_Hood','Pretty Rabbit Hood','Armor',10,100,20,1,true,true,true,1,true,1085,'bonus bMaxHP,(15*BaseLevel);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19031,'Fallen_Angel_Blessing','Fallen Angel Blessing','Armor',200,1,true,10,true,1250,'bonus2 bAddRace,RC_Angel,5; bonus2 bSubRace,RC_Angel,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19033,'Rift_Ancient_Decoration','Rift Ancient Decoration','Armor',20,200,2,1,true,100,true,376,100,true,true,true,true,true,true,'.@r = getrefine(); bonus bMaxHP,1000+(.@r >= 9 ? 1000 : .@r >=7 ? 400 : 0);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (19038,'12_Anniversary_Crown_Of_Saint','12 Anniversary Crown of Saint','Armor',10,120,12,1,true,true,1117,'bonus bAllStats,2; bonus bMdef,12;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`refineable`,`view`,`script`) VALUES (19039,'12_Anniversary_Elf_Ears','12 Anniversary Elf Ears','Armor',10,120,true,true,875,'bonus2 bSubRace,RC_All,4; bonus2 bSubRace,RC_Player_Human,-4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19047,'Angeling_KnitCap','Angeling KnitCap','Armor',300,5,1,true,20,true,953,'bonus2 bSPGainRace,RC_Angel,5; bonus bHPGainValue,100; .@r = getrefine(); if (.@r >= 5) { bonus2 bSubRace,RC_Angel,5+((.@r >= 7) ? 5 : 0); }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (19048,'Elemental_Clothe','Elemental Clothes','Armor',500,45,1,true,80,true,'.@r = getrefine(); bonus bLongAtkRate,2+((.@r >= 9) ? 3 : 0)+((.@r >= 8) ? 2 : 0); if (.@r >= 7) bonus bUnbreakableArmor;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (19050,'Loki_Nidhogg_Hat','Loki & Nidhoggur\'s Hat','Armor',100,1,true,1,true,1304); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19051,'Warrior_Moon_Cat','Warrior Moon Cat','Armor',20,100,5,1,true,1,true,1308,100,true,true,true,true,true,true,true,'/*Enables use of Level 1 Monster\'s Cry*/ bonus bAllStats,3; bonus2 bHPDrainRate,40,5; bonus2 bSPDrainRate,10,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_mid`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19052,'Sigruns_Wing','Rental Sigrun\'s Wing','Armor',10,2,true,1,568,100,true,true,true,true,true,true,true,true,'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; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19053,'Fighter_Moon_Cat','Fighter Moon Cat','Armor',20,100,5,1,true,1,true,1308,100,true,true,true,true,true,true,true,'/*Enables use of Level 1 Monster\'s Cry*/ .@r = getrefine(); bonus bAllStats,3; bonus2 bAddEff,Eff_Stun,500+(.@r*100);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19079,'Celestial_Woman\'s_Flower','Celestial Woman\'s Flower','Armor',20,300,5,1,true,20,true,438,'bonus bHPGainValue,100; bonus bMdef,5; bonus2 bSPGainRace,RC_Undead,5; if (getrefine()>=5) { bonus2 bSubRace,RC_Undead,5; } if (getrefine()>=7) { bonus2 bSubRace,RC_Undead,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19081,'Faceworm_Egg_Shell','Faceworm Egg Shell','Armor',20,500,2,1,true,30,true,1356,'bonus bHit,20; bonus2 bAddRace2,RC2_FACEWORM,5; bonus2 bMagicAddRace2,RC2_FACEWORM,5; bonus2 bSubRace2,RC2_FACEWORM,5; .@r = getrefine(); if (.@r>=5) { bonus2 bAddRace2,RC2_FACEWORM,10; bonus2 bMagicAddRace2,RC2_FACEWORM,10; bonus2 bSubRace2,RC2_FACEWORM,10; } if (.@r>=7) { bonus2 bAddRace2,RC2_FACEWORM,15; bonus2 bMagicAddRace2,RC2_FACEWORM,15; bonus2 bSubRace2,RC2_FACEWORM,15; } if (.@r>=9) { bonus2 bAddRace2,RC2_FACEWORM,20; bonus2 bMagicAddRace2,RC2_FACEWORM,20; bonus2 bSubRace2,RC2_FACEWORM,20; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19082,'Bio_Protector','Bio Protector','Armor',500,3,true,50,true,1366,'bonus bHit,10; bonus bVariableCastrate,-5; bonus bPerfectHitRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (19083,'Mask_of_Hero','Mask of Hero','Armor',20,200,true,70,1367,'bonus bVit,10; bonus bMdef,10; bonus bShortWeaponDamageReturn,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`job_summoner`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19084,'Parfaille_Vigilante_Hat','Parfaille Vigilante Hat','Armor',100,2,true,true,20,true,1368,100,true,true,true,true,true,true,'bonus bLuk,1; bonus3 bAutoSpell,"AL_BLESSING",3,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (19085,'Sigrun\'s_Wings_','Sigrun\'s Wings','Armor',20,100,2,1,true,1,568,'if(BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Thief||(BaseJob==Job_Taekwon&&Class!=Job_Soul_Linker)) { bonus bAspd,1; bonus bAgi,-2; } else if(BaseClass==Job_Mage||BaseClass==Job_Acolyte||Class==Job_Ninja||Class==Job_Soul_Linker){ bonus bMatk,3; bonus bHealPower,2; } else if(BaseClass==Job_Archer||BaseClass==Job_Gunslinger) bonus bLongAtkRate,1; else if(BaseJob==Job_Novice||BaseJob==Job_SuperNovice) { bonus bMaxHP,60; bonus bMaxSP,30; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (19086,'Robo_Eye_','Robo Eye','Armor',20,200,2,1,true,10,345,'bonus2 bAddClass,Class_All,1; bonus bMatkRate,1; bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_mid`,`view`,`script`) VALUES (19087,'Angel_Spirit_','Angel Spirit','Armor',20,200,1,true,394,'bonus bStr,1; bonus bHit,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (19088,'Binoculars_','Binoculars','Armor',20,100,2,1,true,true,true,true,50,83,'bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`view`,`script`) VALUES (19089,'Blinker_','Blinker','Armor',1500,100,1,true,false,false,true,82,'bonus2 bResEff,Eff_Blind,5000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`location_head_low`,`view`,`script`) VALUES (19090,'Alarm_Mask_','Alarm Mask','Armor',20,100,2,1,true,false,false,true,true,170,'bonus2 bResEff,Eff_Blind,2500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`equip_level_min`,`view`) VALUES (19091,'Opera_Ghost_Mask_','Opera Phantom Mask','Armor',20,200,2,1,true,false,false,true,20,128); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`view`) VALUES (19092,'Machoman_Glasses_','Machoman\'s Glasses','Armor',36000,100,1,1,true,false,false,true,92); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_mid`,`view`,`script`) VALUES (19093,'Spinning_Eyes_','Geek Glasses','Armor',20000,100,1,1,true,27,'bonus2 bResEff,Eff_Blind,800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_mid`,`location_head_low`,`view`) VALUES (19094,'Mr_Smile_','Mr. Smile','Armor',60,100,1,1,true,true,65); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (19095,'Happy_Balloon_K','Happy Balloon','Armor',10,true,1,1289,'bonus2 bDropAddRace,RC_All,10; bonus2 bExpAddRace,RC_All,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19101,'Glastheim_Observer','Glastheim Observer','Armor',20,100,true,80,true,1041,'bonus2 bAddClass,Class_All,2; bonus bDelayrate,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19102,'Pale_Moon_Hat','Pale Moon Hat','Armor',20,500,2,1,true,30,true,913,'bonus bFlee,20; bonus2 bAddRace2,RC2_THANATOS,5; bonus2 bSubRace2,RC2_THANATOS,5; bonus2 bMagicAddRace2,RC2_THANATOS,5; if(getrefine()>4) { bonus2 bAddRace2,RC2_THANATOS,10; bonus2 bSubRace2,RC2_THANATOS,10; bonus2 bMagicAddRace2,RC2_THANATOS,10; } if(getrefine()>6) { bonus2 bAddRace2,RC2_THANATOS,15; bonus2 bSubRace2,RC2_THANATOS,15; bonus2 bMagicAddRace2,RC2_THANATOS,15; } if(getrefine()>8) { bonus2 bAddRace2,RC2_THANATOS,20; bonus2 bSubRace2,RC2_THANATOS,20; bonus2 bMagicAddRace2,RC2_THANATOS,20; } /* skill 3044,1; */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`view`,`script`,`unequip_script`) VALUES (19109,'Valhalla_Idol','Valhalla Idol','Armor',300,2,true,70,1423,'bonus bMaxSP,50; bonus4 bAutoSpellWhenHit,"MG_SAFETYWALL",10,50,0; hateffect(HAT_EF_VALHALLA_IDOL,true);','hateffect(HAT_EF_VALHALLA_IDOL,false);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19111,'Laser_Of_Eagle','Laser of Eagle','Armor',400,5,1,true,100,true,1424,'bonus bDex,2; bonus bLongAtkRate,10; bonus5 bAutoSpell,"PR_LEXAETERNA",1,50,BF_LONG,1; /*TODO: Chance to transform become Shechil while attacking.*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (19112,'Tengu_Scroll','Tengu Scroll','Armor',20,300,true,40,1445,'bonus2 bHPDrainRate,30,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19114,'Sting_Silk_Ribbon','Sting Silk Ribbon','Armor',20,300,15,1,true,70,true,1457,'bonus bUnbreakableHelm; bonus2 bSubEle,Ele_Earth,20; if(getrefine()>4) { bonus2 bSubSize,Size_All,2; } if(getrefine()>6) { bonus2 bSubSize,Size_All,3; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19115,'Republic_Hat','Republic Hat','Armor',400,3,1,true,100,true,1458,'.@r = getrefine(); .@val = 6; if (.@r >= 7) { .@val += 2; } if (.@r >= 9) { .@val += 4; } bonus bLongAtkRate,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`range`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19116,'Red_Baby_Dragon','Red Baby Dragon','Armor',700,1,1,true,90,true,1463,'.@r=getrefine(); bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus2 bSkillAtk,"RK_DRAGONBREATH",(.@r>=8?45:(.@r>=6?30:15)); bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",(.@r>=8?45:(.@r>=6?30:15));'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (19117,'Poring_Sunglasses_','Poring Sunglasses','Armor',10,true,1,954,'bonus2 bDropAddRace,RC_All,5; bonus2 bExpAddRace,RC_All,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (19118,'Poring_Sunglasses__','Poring Sunglasses','Armor',10,1,true,1,954,'bonus2 bDropAddRace,RC_All,4; bonus2 bExpAddRace,RC_All,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19125,'Cylinder_Hairband','Cylinder Hairband','Armor',20,300,12,1,true,90,true,1477,'bonus bStr,5; bonus bInt,5; bonus2 bVariableCastrate,"GN_CARTCANNON",-100; bonus2 bSkillUseSP,"GN_CARTCANNON",30; bonus2 bSkillUseSP,"GN_CART_TORNADO",5; bonus2 bSkillAtk,"GN_CARTCANNON",10; bonus2 bSkillAtk,"GN_CART_TORNADO",5; if (getrefine()>=5) { bonus2 bSkillAtk,"GN_CARTCANNON",20; bonus2 bSkillAtk,"GN_CART_TORNADO",10; } if (getrefine()>=8) { bonus2 bSkillAtk,"GN_CARTCANNON",30; bonus2 bSkillAtk,"GN_CART_TORNADO",20; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19126,'Shadow_Booster_','Magical Booster','Armor',10,300,1,true,1,true,873,'bonus bAspd,1; bonus bDelayrate,-1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (19128,'Ifrit\'s_Ear_','Ears Of Ifrit','Armor',20,300,1,true,false,false,true,50,422,'bonus bStr,1; bonus bMdef,3; bonus bInt,1; bonus2 bSkillAtk,"MG_FIREBOLT",3; bonus2 bSkillAtk,"WZ_FIREPILLAR",3; bonus2 bSkillAtk,"WZ_METEOR",3; bonus2 bSkillAtk,"SM_BASH",4; bonus2 bSkillAtk,"SM_MAGNUM",4; bonus2 bSkillAtk,"KN_PIERCE",3; bonus2 bSubEle,Ele_Fire,3; bonus2 bSubEle,Ele_Water,-3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (19129,'Chick_Hat_','Chick Hat','Armor',20,100,2,1,true,10,311,'bonus bLuk,2; bonus bMaxHP,50; bonus bMaxSP,50; skill "TF_DOUBLE",2; bonus bDoubleRate,10; bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19130,'Magic_Eyes_','Magic Eyes','Armor',20,300,3,1,true,true,true,true,true,54,true,209,'bonus bMdef,5; bonus bVariableCastrate,-10; bonus bUseSPrate,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19131,'Radio_Antenna_','Radio Antenna','Armor',1500,2,1,true,1,true,347,'bonus bMdef,5; bonus bCritical,5; bonus bFlee,5; skill "MG_LIGHTNINGBOLT",1; bonus4 bAutoSpellWhenHit,"MG_THUNDERSTORM",5,30,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`view`,`script`) VALUES (19132,'Masquerade_','Masquerade','Armor',20,100,1,true,false,false,true,78,'bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player_Human,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_mid`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (19133,'Odin_Mask_','Odin\'s Mask','Armor',20,100,1,1,true,true,1,480,'bonus2 bSubClass,Class_Boss,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19134,'Wickebines_Black_Cat_Ears','Wickebine\'s Black Cat Ears','Armor',20,200,4,1,true,false,false,true,45,true,368,'bonus bFlee,10; bonus bCritAtkRate,10; autobonus "{ bonus2 bIgnoreMdefClassRate,Class_Normal,100; bonus2 bIgnoreMdefClassRate,Class_Boss,100; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_STEAL; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (19137,'Strawberry_Mouth_Guard','Strawberry Mouth Guard','Armor',20,100,true,80,861,'bonus bVit,2; bonus bLongAtkDef,5; bonus bShortWeaponDamageReturn,5; if (Baselevel>=100) { bonus bMaxHP,2000; } else { bonus bMaxHP,200; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (19138,'Seraphim_Coronet','Seraphim Coronet','Armor',20,300,true,70,1487,'bonus bStr,2; .@int = readparam(bInt); bonus bBaseAtk,(.@int/8)*5; bonus bHealPower,.@int/8; bonus bVariableCastrate,.@int/8; if ((.@int>=108)) { bonus bBaseAtk,50; bonus bHealPower,5; bonus bVariableCastrate,4; } if ((.@int>=120)) { bonus bBaseAtk,125; bonus bHealPower,10; bonus bVariableCastrate,6; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (19139,'SurviveOrb','Survive Orb','Armor',300,true,50,1488,'skill "TF_HIDING",1; bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; bonus bVariableCastrate,-3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19140,'Squirrel_Ear_Hat','Squirrel Ear Hat','Armor',200,10,1,true,100,true,1486,'.@r = getrefine(); bonus bAspd,1; bonus bCriticalLong,5; bonus bCritAtkRate,10; bonus2 bIgnoreDefRaceRate,RC_All,10; if (.@r > 4) { bonus bAspd,1; bonus bCriticalLong,10; bonus bCritAtkRate,2; bonus2 bIgnoreDefRaceRate,RC_All,20; } if (.@r > 6) { bonus bAspd,1; bonus bCriticalLong,15; bonus bCritAtkRate,6; bonus2 bIgnoreDefRaceRate,RC_All,30; } if (.@r > 8) { bonus bAspd,1; bonus bCriticalLong,20; bonus bCritAtkRate,12; bonus2 bIgnoreDefRaceRate,RC_All,40; autobonus "{ bonus bCritAtkRate,100; }",70,5000; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (19141,'Dolor_Thanatos_Mask','Dolor Thanatos Mask','Armor',20,200,6,true,true,100,666,'bonus bMdef,8; bonus bAllStats,1; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,1; bonus2 bSubEle,Ele_Fire,5; bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Wind,5; bonus2 bSubEle,Ele_Earth,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (19142,'Drooping_Rebellion','Drooping Rebellion','Armor',20,500,1,1,true,1,1444,'bonus bLongAtkRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (19143,'Poring_Balloon','Poring Balloon','Armor',20,10,true,1,1426,'bonus2 bAddMonsterDropItem,909,2000; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`view`) VALUES (19144,'Ferlock\'s_Hat','Ferlock\'s Hat','Armor',20,1000,1,1,true,50,1489); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (19145,'Whistle','Whistle','Armor',20,10,true,1,1478,'bonus bBaseAtk,10; bonus bMatk,10; bonus bHPGainValue,10; bonus bSPGainValue,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (19146,'Marin_Balloon','Marin Balloon','Armor',20,10,true,1,1430,'bonus4 bAutoSpellWhenHit,"WZ_QUAGMIRE",1,50,0; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (19147,'Drops_Balloon','Drops Balloon','Armor',20,10,true,1,1427,'bonus bLuk,2; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (19148,'Santa_Poring_Balloon','Santa Poring Balloon','Armor',20,10,true,1,1428,'bonus2 bAddItemGroupHealRate,IG_Candy,200; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (19149,'Poporing_Balloon','Poporing Balloon','Armor',20,10,true,1,1429,'bonus2 bAddEff,Eff_Poison,500; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (19150,'Metalring_Balloon','Metalring Balloon','Armor',20,10,true,1,1431,'bonus3 bAutoSpell,"RG_STRIPWEAPON",1,50; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (19151,'Devilring_Balloon','Devilring Balloon','Armor',20,10,true,1,1434,'bonus2 bAddEff,Eff_Curse,500; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (19152,'Angelring_Balloon','Angelring Balloon','Armor',20,10,true,1,1435,'bonus2 bAddItemHealRate,504,100; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (19153,'Ghostring_Balloon','Ghostring Balloon','Armor',20,10,true,1,1436,'bonus3 bAutoSpell,"MG_SOULSTRIKE",5,10; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (19154,'Arch_Angelring_Balloon','Arch Angelring Balloon','Armor',20,10,true,1,1437,'skill "ALL_RESURRECTION",1; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (19155,'Demons_Eyes','Demon\'s Eyes','Armor',20,10,true,60,1490,'bonus2 bSubRace,RC_Player_Human,3; bonus bFlee2,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19156,'Lunar_Rainbow','Lunar Rainbow','Armor',20,200,10,1,true,80,true,704,'bonus bAgi,3; bonus bMdef,10; bonus bMatk,(10*getrefine());'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19157,'Drooping_Rebellion_','Drooping Rebellion','Armor',20,200,1,1,true,1,true,1444,'bonus bAllStats,1; bonus bUseSPrate,-10; .@r = getrefine(); if (.@r >= 9) { bonus bAspd,1; } if (.@r >= 12) { bonus bSpeedRate,25; } bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`view`) VALUES (19158,'C_Gemini_Eyes','Costume GeminiS58 Eyes Blue','Armor',true,1456); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`location_head_low`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19159,'Barrel_Helm','Barrel Helm','Armor',20,420,59,1,true,true,true,60,true,1498,'bonus bVit,5; bonus bHPrecovRate,-10; .@r = getrefine(); if (.@r >= 7) { bonus bDef,100; skill "CR_AUTOGUARD",1; } if (.@r >= 8) { bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; if(BaseJob==Job_SuperNovice) { skill "CR_AUTOGUARD",5; } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19162,'Scuba_Mask_','Scuba Mask','Armor',20,100,1,true,40,true,400,'bonus bBaseAtk,5; bonus bMatk,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19164,'Para_Team_Hat100','Awakened Eden Group Hat I','Armor',20,10,1,true,100,true,1529,100,true,true,true,true,true,true,'autobonus "{ bonus bBaseAtk,15; }",70,5000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; autobonus "{ bonus bMatk,15; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_SPELLBREAKER; }"; .@r = getrefine(); if(.@r >= 7){ bonus bAtk,10; bonus bMatk,10; if(.@r >= 9){ bonus bAllStats,1; if(.@r >= 12){ bonus2 bRegenPercentSP,1,10000; } } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19165,'Para_Team_Hat160','Awakened Eden Group Hat II','Armor',20,10,1,true,160,true,1530,100,true,true,true,true,true,true,'autobonus "{ bonus bBaseAtk,30; }",70,5000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; autobonus "{ bonus bMatk,30; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_SPELLBREAKER; }"; .@r = getrefine(); if(.@r >= 7){ bonus bAtk,15; bonus bMatk,15; if(.@r >= 9){ bonus bAllStats,2; if(.@r >= 12){ bonus2 bRegenPercentHP,2,10000; bonus2 bRegenPercentSP,1,10000; } } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19166,'RO_Celebration_Hat','RO Celebration Hat','Armor',20,140,14,1,true,14,true,1541,'bonus bMaxSP,140; bonus2 bSPRegenRate,6,4000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (19168,'Band_Of_Kafra_','Kafra Staff Headband','Armor',20,500,1,true,true,106,'bonus2 bSubClass,Class_All,5; .@r = getrefine()*10; bonus2 bAddMonsterDropItem,23177,10+.@r; bonus2 bAddMonsterDropItem,7059,10+.@r; bonus2 bAddMonsterDropItem,7060,10+.@r;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19171,'Magician_Knit_Hat','Magician Knit Hat','Armor',20,500,10,1,true,10,true,854,'.@r = getrefine(); bonus bMdef,10; bonus2 bAddRace,RC_Undead,5; bonus2 bMagicAddRace,RC_Undead,5; bonus2 bSubRace,RC_Undead,2; bonus bSPGainValue,5; bonus bLongSPGainValue,5; bonus bMagicSPGainValue,5; if (.@r>=7) { bonus bMdef,5; bonus2 bAddRace,RC_Undead,10; bonus2 bMagicAddRace,RC_Undead,10; bonus2 bSubRace,RC_Undead,3; bonus bSPGainValue,10; bonus bLongSPGainValue,10; bonus bMagicSPGainValue,10; } if (.@r>=9) { bonus bMdef,5; bonus2 bAddRace,RC_Undead,10; bonus2 bMagicAddRace,RC_Undead,10; bonus2 bSubRace,RC_Undead,5; bonus bSPGainValue,10; bonus bLongSPGainValue,10; bonus bMagicSPGainValue,10; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19172,'Sitting_Pope_Casual','Sitting Pope Casual','Armor',1000,400,5,1,true,100,true,1553,'bonus bInt,2; bonus bDelayrate,-10; .@r = getrefine(); if (.@r>=7) bonus bDelayrate,-10; if (.@r>=9) bonus bDelayrate,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (19173,'Floating_Ice','Floating Ice','Armor',20,100,true,90,1562,'bonus2 bAddItemHealRate,536,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (19176,'Fallen_Angel_Blessing_','Fallen Angel Blessing','Armor',20,200,1,1,true,10,1250,'bonus2 bAddRace,RC_Angel,5; bonus2 bSubRace,RC_Angel,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19177,'Elemental_Crown_','Elemental Crown','Armor',500,10,true,50,true,1219,'.@r = getrefine(); bonus bDex,3 + (.@r/2); bonus bLongAtkRate,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19178,'Elemental_Crown__','Elemental Crown','Armor',500,10,1,true,50,true,1219,'.@r = getrefine(); bonus bDex,3 + (.@r/2); bonus bLongAtkRate,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (19179,'Rabbit_Magic_Hat_','Magic Rabit Hat','Armor',800,4,1,true,true,497,'bonus bDex,1; bonus bAgi,1; bonus bMdef,1; bonus bAspdRate,5; bonus bDelayRate,-4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (19180,'Anubis_Helm_','Anubis Helm','Armor',20,8,1,true,true,65,485,'bonus bMdef,5; bonus2 bSubClass,Class_Boss,10; bonus bHealpower2,10; bonus bAddItemHealRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (19181,'New_Wave_Sunglasses_','New Wave Sunglasses','Armor',20,100,1,1,true,30,856,'bonus bDelayRate,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19189,'Racing_Cap_MC','Racing Cap (Mechanic)','Armor',20,10,1,true,true,true,true,true,100,true,1134,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*((.@r/3)); if (.@r>=8) bonus bCritAtkRate,5*getskilllv("BS_OVERTHRUST"); if (.@r>=11) { skill "TF_DOUBLE",5; bonus bDoubleRate,25; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19190,'Racing_Cap_GN','Racing Cap (Geneticist)','Armor',20,10,1,true,true,true,true,true,100,true,1134,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus2 bSkillAtk,"GN_CART_TORNADO",5*getskilllv("AM_AXEMASTERY"); if (.@r>=11) bonus3 bAutoSpell,"GN_CART_TORNADO",max(2,getskilllv("GN_CART_TORNADO")),50; /* Unknow Rates */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19191,'Racing_Cap_GC','Racing Cap (Guillotine Cross)','Armor',20,10,1,true,true,true,true,true,100,true,1134,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus bCritAtkRate,5*getskilllv("AS_LEFT"); if (.@r>=11) autobonus "{ bonus bCritAtkRate,20; }",50,5000,BF_WEAPON; /* Unknow Rate and Effect */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19192,'Racing_Cap_SC','Racing Cap (Shadow Chaser)','Armor',20,10,1,true,true,true,true,true,100,true,1134,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus bMatk,5*getskilllv("RG_PLAGIARISM"); if (.@r>=11) bonus3 bAutoSpell,"HW_MAGICPOWER",5,30; /* Unknow Rates */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19193,'Racing_Cap_WL','Racing Cap (Warlock)','Armor',20,10,1,true,true,true,true,true,100,true,1134,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus2 bSkillCooldown,"WL_TETRAVORTEX",-500*(getskilllv("WZ_METEOR")+getskilllv("WZ_VERMILION")); if (.@r>=11) bonus2 bFixedCastrate,"HW_MAGICPOWER",-50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19194,'Racing_Cap_SO','Racing Cap (Sorcerer)','Armor',20,10,1,true,true,true,true,true,100,true,1134,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) { bonus2 bSkillAtk,"MG_THUNDERSTORM",5*getskilllv("SA_AUTOSPELL"); bonus2 bSkillAtk,"MG_FIREBALL",5*getskilllv("SA_AUTOSPELL"); } if (.@r>=11) { bonus2 bSkillAtk,"MG_FIREBOLT",50; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",50; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19195,'Racing_Cap_RK','Racing Cap (Rune Knight)','Armor',20,10,1,true,true,true,true,true,100,true,1134,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus bCritAtkRate,5*getskilllv("KN_TWOHANDQUICKEN"); if (.@r>=11) { bonus bUnbreakableWeapon; skill "TF_DOUBLE",5; bonus bDoubleRate,25; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_crusader`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19196,'Racing_Cap_RG','Racing Cap (Royal Guard)','Armor',20,10,1,true,true,true,true,true,100,true,1134,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus2 bSkillAtk,"LG_RAGEBURST",10*getskilllv("KN_SPEARMASTERY"); if (.@r>=11) bonus2 bSkillCooldown,"LG_EARTHDRIVE",-1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19197,'Racing_Cap_AB','Racing Cap (Archbishop)','Armor',20,10,1,true,true,true,true,true,100,true,1134,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus2 bSkillAtk,"AB_DUPLELIGHT",10*getskilllv("PR_MACEMASTERY"); /*if (.@r>=11) bonus3 bAutoSpell,"AB_ADORAMUS",max(5,getskilllv("AB_ADORAMUS")),50; Unknow Rate and Blue Gemstone consume mechanic */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_monk`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19198,'Racing_Cap_SR','Racing Cap (Sura)','Armor',20,10,1,true,true,true,true,true,100,true,1134,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus2 bSkillUseSP,"SR_KNUCKLEARROW",getskilllv("MO_COMBOFINISH"); if (.@r>=11) bonus2 bSkillAtk,"SR_KNUCKLEARROW",50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19199,'Racing_Cap_RA','Racing Cap (Ranger)','Armor',20,10,1,true,true,true,true,true,100,true,1134,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus2 bSkillAtk,"RA_AIMEDBOLT",3*getskilllv("HT_STEELCROW"); if (.@r>=11) bonus bDelayrate,-15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19200,'Racing_Cap_MI','Racing Cap (Minstrel)','Armor',20,10,1,true,true,true,true,'Male',true,100,true,1134,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus bBaseAtk,5*getskilllv("BA_MUSICALLESSON"); if (.@r>=11) bonus3 bAutoSpell,"WM_REVERBERATION",max(2,getskilllv("WM_REVERBERATION")),50; /* Unknow rates*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19201,'Racing_Cap_WA','Racing Cap (Wanderer)','Armor',20,10,1,true,true,true,true,'Female',true,100,true,1134,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus bBaseAtk,5*getskilllv("DC_DANCINGLESSON"); if (.@r>=11) bonus3 bAutoSpell,"WM_REVERBERATION",max(2,getskilllv("WM_REVERBERATION")),50; /* Unknow rates*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_rebellion`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19202,'Racing_Cap_GS','Racing Cap (Gunslinger)','Armor',20,10,1,true,true,100,true,1134,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) { bonus2 bSkillCooldown,"RL_HAMMER_OF_GOD",-2000*getskilllv("GS_PIERCINGSHOT"); bonus2 bSkillCooldown,"RL_D_TAIL",-200*getskilllv("GS_GROUNDDRIFT"); } if (.@r>=11) bonus2 bSkillCooldown,"RL_C_MARKER",-1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_kagerouoboro`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19203,'Racing_Cap_NJ','Racing Cap (Ninja)','Armor',20,10,1,true,true,100,true,1134,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus bLongAtkRate,getskilllv("NJ_HUUMA"); if (.@r>=11) bonus2 bSkillAtk,"KO_HUUMARANKA",30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19204,'Racing_Cap_SN','Racing Cap (Super Novice)','Armor',20,10,1,true,true,true,100,true,1134,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus bCritAtkRate,10*getskilllv("TF_DOUBLE"); if (.@r>=11) { bonus bAspd,1; bonus bBaseAtk,20; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_summoner`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19205,'Racing_Cap_SU','Racing Cap (Summoner)','Armor',20,10,1,true,true,100,true,1134,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,5*(.@r/2); bonus bMatk,5*.@r/2; bonus bAspdRate,2*(.@r/3); if (.@r>=8) { bonus2 bSkillCooldown,"SU_SVG_SPIRIT",-4000*getskilllv("SU_LUNATICCARROTBEAT"); bonus2 bSkillCooldown,"SU_NYANGGRASS",-8000*getskilllv("SU_CN_METEOR"); bonus2 bSkillCooldown,"SU_BUNCHOFSHRIMP",-4000*getskilllv("SU_FRESHSHRIMP"); } if (.@r>=11) bonus bDelayrate,-15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19209,'Illusion_Nurse_Cap','Illusion Nurse Cap','Armor',20,200,1,1,true,true,true,true,99,true,64,'.@r = getrefine(); bonus bInt,(1+(.@r/2)); bonus bHealPower,(3*(.@r/2));'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19210,'Illusion_Apple_of_Archer','Illusion Apple of Archer','Armor',20,200,1,1,true,false,false,true,99,true,72,'bonus bDex,(3+(getrefine()/2));'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19223,'Illusion_Cap','Illusion Cap','Armor',400,15,1,true,true,true,true,true,true,true,true,true,true,true,true,120,true,14,'bonus2 bAddClass,Class_All,1; bonus bBaseAtk,(2*getrefine());'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (19247,'Illusion_Fancy_Flower','Illusion Fancy Flower','Armor',100,1,true,120,4,'bonus bMatkRate,1; bonus bMatk,(2*getrefine());'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (19246,'Royal_Guard_Necklace','Royal Guard Necklace','Armor',20,300,true,80,1629,'bonus bAspd,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19266,'Survive_Circlet_','Survivor\'s Circlet','Armor',500,10,1,true,1,true,1220,'.@r = getrefine(); bonus bInt,3; bonus bMatk,10*(.@r/2)+(BaseLevel > 129 ? 50 : 0); if (.@r >= 10) {bonus bMatkRate,5;}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19269,'Happy_Flapping_Wings','Happy Flapping Angel Wings','Armor',20,500,2,1,true,30,true,1251,'.@r = getrefine(); .@a = 15; if (.@r >= 7) .@a += 15; if (.@r>=8) bonus2 bResEff,Eff_Stone,10000; if (.@r>=9) .@a += 20; bonus2 bAddRace2,RC2_CLOCKTOWER,.@a; bonus2 bMagicAddRace2,RC2_CLOCKTOWER,.@a; bonus2 bSubRace2,RC2_CLOCKTOWER,.@a; bonus2 bAddMonsterDropItem,1061,500; /* Unofficial rates, info get from bRO itemdescription */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`,`unequip_script`) VALUES (19272,'Garden_of_Eden','Garden of Eden','Armor',20,400,5,1,true,100,true,1653,'.@r = getrefine(); bonus bInt,5; bonus bDex,5; bonus2 bIgnoreMdefRaceRate,RC_All,20; bonus2 bMagicAtkEle,Ele_All,10; if (.@r>=7) { bonus2 bIgnoreMdefRaceRate,RC_All,30; bonus2 bMagicAtkEle,Ele_All,15; } if (.@r>=9) { bonus2 bIgnoreMdefRaceRate,RC_All,50; bonus bVariableCastrate,-15; }','sc_end SC_TELEKINESIS_INTENSE;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (19273,'Gemini_Red_Eyes','Gemini Red Eyes','Armor',20,100,true,100,1654,'.@val = 100*(readparam(bVit)>89?50:10); bonus2 bResEff,Eff_Sleep,.@val; bonus2 bResEff,Eff_Stone,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (19274,'Open_Air_Headset','Open Air Headset','Armor',20,100,true,90,1655,'bonus bDelayrate,-5; bonus bUseSPrate,-5; bonus bSPGainValue,5; bonus bMagicSPGainValue,5; bonus bLongSPGainValue,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19285,'Siegfried\'s_Helmet','Siegfried\'s Helmet','Armor',20,500,1,true,100,true,1055,'.@r = getrefine(); bonus2 bSubClass,Class_Boss,5; bonus bUnbreakableHelm; if (.@r>=6) { bonus bFlee2,5; bonus2 bSubClass,Class_Boss,5; } if (.@r>=8) { bonus bFlee2,5; bonus2 bSubClass,Class_Boss,10; bonus bNoKnockback; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (19289,'C_Moon_Eyepatch','Costume Moon Eyepatch','Armor',true,1,1370); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (19291,'C_Shiba_Inu','Costume Shiba Inu','Armor',true,1,1669); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19294,'C_CatEars_Cyber_HeadP_R','Costume Cyber Cat Ear Headphones (Red)','Armor',true,1,1668); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (19299,'Tree_Sprout','Tree Sprout','Armor',20,300,true,80,848,'bonus bVariableCastrate,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (19306,'Gambler_Card','Heart Card in Mouth','Armor',20,300,true,80,1679,'bonus bCritAtkRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (19310,'Beginner\'s_Cap','Beginner\'s Cap','Armor',20,10,true,100,102,'bonus bAllStats,1; bonus MaxHp,200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (19326,'Book_of_Soyga','Book of Soyga','Armor',20,1000,1,true,90,true,423); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (19327,'Seraphim_Feather','Seraphim Feather','Armor',20,300,true,80,1704,'bonus bHealPower,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19329,'Devil\'s_Hand','Devil\'s Hand','Armor',10,1000,18,true,100,true,1018,'.@r = getrefine(); .@a = getskilllv("SR_RIDEINLIGHTNING"); .@b = getskilllv("SR_EARTHSHAKER"); .@c = getskilllv("SR_RAMPAGEBLASTER"); bonus bNoCastCancel; bonus bAspdRate,10; bonus2 bFixedCastrate,"SR_HOWLINGOFLION",-100; bonus2 bSkillAtk,"SR_HOWLINGOFLION",20; if (.@r>=7) { bonus2 bSkillAtk,"SR_HOWLINGOFLION",30; bonus bAspdRate,5; } if (.@r>=9) { bonus2 bSkillAtk,"SR_HOWLINGOFLION",50; bonus bAspdRate,5; } if (.@r>=10) bonus bIgnoreDefClass,Class_All; if (.@r>=10 && .@a==5) { bonus2 bVariableCastrate,"SR_HOWLINGOFLION",-50; bonus2 bVariableCastrate,"MO_STEELBODY",-50; bonus2 bVariableCastrate,"MO_CALLSPIRITS",-50; } if (.@r>=10 && .@b==5) bonus2 bSkillCooldown,"SR_HOWLINGOFLION",-9500; if (.@r>=10 && .@c==5) bonus2 bAddClass,Class_Boss,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19337,'Safety_Glasses','Safety Glasses','Armor',20,500,2,1,true,40,true,1721,'.@r = getrefine(); bonus2 bSubEle,Ele_Poison,10; if (.@r<7) .@a = 15; else if (.@r<9) .@a = 30; else if (.@r>=9) .@a = 50; if (.@r>=8) bonus2 bSubEle,Ele_Poison,15; /* bonus2 bAddRace2,RC2_HEARTHUNTER,.@a; bonus2 bMagicAddRace2,RC2_HEARTHUNTER,.@a; bonus2 bSubRace2,RC2_HEARTHUNTER,.@a; Hearthunter Warbase is not implemented yet */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19342,'Bull_Hat','Bull Hat','Armor',20,500,2,1,true,130,true,819,'.@r = getrefine(); bonus2 bSubEle,Ele_Wind,10; if (.@r<7) .@a = 15; if (.@r>=7 && .@r<9) .@a = 30; if (.@r>=8) bonus2 bSubEle,Ele_Wind,15; if (.@r>=9) .@a = 50; bonus2 bAddRace2,RC2_ROCKRIDGE,.@a; bonus2 bMagicAddRace2,RC2_ROCKRIDGE,.@a; bonus2 bSubRace2,RC2_ROCKRIDGE,.@a;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19343,'Circlet_Of_Phoenix','Circlet Of Phoenix','Armor',1000,18,true,100,true,1056,'.@r = getrefine(); .@mdef = 15; .@hp = 10; .@dmg = 10; .@cast = -10; bonus2 bFixedCastrate,"LG_OVERBRAND",-100; if (.@r>=7) { .@cast -= 5; .@dmg += 15; if (.@r>=9) { .@cast -= 5; .@dmg += 25; if (.@r>=10) { bonus2 bIgnoreDefClassRate,Class_All,100; } } } if (getskilllv("LG_KINGS_GRACE")>=5) { bonus2 bSkillCooldown,"LG_INSPIRATION",-10000; bonus2 bSkillVariableCast,"LG_INSPIRATION",-2000; } if (getskilllv("LG_MOONSLASHER")>=5) { bonus2 bSkillVariableCast,"LG_OVERBRAND",-1000; } if (getskilllv("LG_FORCEOFVANGUARD")>=5) { .@hp += 10; .@mdef += 15; bonus bMaxSPrate,10; bonus bDef,150; } bonus bMdef,.@mdef; bonus bMaxHPrate,.@hp; bonus2 bSkillAtk,"LG_OVERBRAND",.@dmg; bonus bVariableCastrate,.@cast;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19344,'Illusion_Hot_blooded_Headband','Illusion Hot-blooded Headband','Armor',100,3,1,true,false,false,true,120,true,154,'.@r = getrefine(); bonus bStr,2; bonus bBaseAtk,(10*(.@r/2)); if (.@r >= 7) { bonus2 bAddEle,Ele_Water,10; bonus2 bAddEle,Ele_Wind,10; bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Neutral,10; if (.@r >= 9) { bonus2 bAddSize,Size_Small,15; bonus2 bAddSize,Size_Large,15; } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19366,'Illusion_Goibne_Helm','Illusion Goibne Helm','Armor',1000,25,1,true,false,false,true,130,true,258,'.@r = getrefine(); .@vit = 3; if (.@r >= 7) { .@vit += 5; if (.@r >= 9) { bonus bDelayrate,-12; } } bonus bVit,.@vit; bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19379,'Striking_Hat','Striking Hat','Armor',20,400,5,1,true,100,true,1759,'.@r = getrefine(); bonus bDex,5; bonus bAgi,5; bonus bLongAtkRate,5; bonus bAspdRate,10; bonus bPerfectHitAddRate,10; bonus bHit,2*.@r; bonus bDelayrate,-2*.@r; if (.@r>=7) { bonus bPerfectHitAddRate,20; bonus bLongAtkRate,10; } if (.@r>=9) { bonus bPerfectHitAddRate,20; bonus bLongAtkRate,10; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (19380,'Floating_Ball','Floating Ball','Armor',10,200,true,100,1760,'bonus bMatk,35; bonus2 bMagicAddClass,Class_Boss,2; if (readparam(bDex)>=90) { bonus bMatk,70; bonus2 bMagicAddClass,Class_Boss,3; } if (readparam(bDex)>=125) { bonus bMatk,140; bonus2 bMagicAddClass,Class_Boss,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (19381,'Protect_Cloth','Protect Cloth','Armor',20,300,true,90,1761,'bonus bMdef,5; bonus bMaxHPrate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19387,'Experimental_Goat_Cap','Experimental Goat Cap','Armor',20,500,2,1,true,40,true,1768,'.@r = getrefine(); .@sub = 10; .@dmg = 15; if (.@r >= 7) { .@dmg += 15; if (.@r >= 8) { .@sub += 15; if (.@r >= 9) { .@dmg += 20; } } } bonus2 bSubEle,Ele_Earth,.@sub; /*bonus2 bAddRace2,RC2_WERNER_LAB,.@dmg; bonus2 bMagicAddRace2,RC2_WERNER_LAB,.@dmg; bonus2 bSubRace2,RC2_WERNER_LAB,.@dmg; Werner\'s Central lab is not implemented yet */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (19391,'Eyes_Of_Illusion','Eyes Of Illusion','Armor',20,500,2,true,100,1779,'bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bSubRace,RC_Player_Human,5; bonus2 bResEff,Eff_Blind,10000; if (getskilllv("GN_ILLUSIONDOPING")==5) skill "SA_DISPELL",5; if (getskilllv("GN_MANDRAGORA")==5) bonus2 bFixedCastrate,"GN_MANDRAGORA",-70;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_stargladiator`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19396,'Racing_Cap_SG','Racing Cap (Star Gladiator)','Armor',20,10,1,true,true,100,true,1134,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus bBaseatk,5*getskilllv("TK_HPTIME"); if (.@r>=11) autobonus3 "{ bonus2 bSkillAtk,\\"SJ_SOLARBURST\\",30; }",1000,10000,"SJ_PROMINENCEKICK";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_soullinker`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19397,'Racing_Cap_SL','Racing Cap (Soul Linker)','Armor',20,10,1,true,true,100,true,1134,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus bMaxSP,100*getskilllv("TK_SPTIME"); if (.@r>=11) autobonus3 "{ bonus2 bSkillAtk,\\"SP_SPA\\",30; bonus2 bSkillAtk,\\"SP_SWHOO\\",30; }",1000,10000,"SL_SMA";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19407,'Work_Cap','Work Cap','Armor',200,1000,18,true,100,true,1793,'.@r = getrefine(); bonus bMdef,15; bonus bVit,10; bonus2 bSkillAtk,"NC_AXETORNADO",20; bonus2 bVariableCastrate,"BS_GREED",-100; if (getskilllv("NC_MAGICDECOY") >= 5) bonus2 bAddClass,Class_Boss,50; if (getskilllv("NC_AXEBOOMERANG") >= 5) bonus bBaseAtk,100; if (getskilllv("NC_MAGMA_ERUPTION") >= 5) bonus2 bAddMonsterDropItem,732,10; if (.@r>=7) bonus2 bSkillAtk,"NC_AXETORNADO",30; if (.@r>=9) bonus2 bSkillAtk,"NC_AXETORNADO",50; if (.@r>=10) bonus bIgnoreDefClass,Class_All;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19409,'Black_Feather_Hat','Black Feather Hat','Armor',20,1000,18,true,100,true,731,'.@r = getrefine(); bonus bSPGainValue,50; bonus bLongSPGainValue,50; bonus bMagicSPGainValue,50; bonus bMdef,15; bonus bDex,10; bonus2 bSkillAtk,"SC_FEINTBOMB",10; if (getskilllv("SC_INVISIBILITY") >= 5) bonus2 bAddClass,Class_Boss,50; if (getskilllv("SC_MAELSTROM") >= 3) skill "TK_JUMPKICK",7; if (getskilllv("SC_REPRODUCE") >= 10) bonus bUseSPrate,-30; if (.@r>=7) { bonus2 bSkillAtk,"SC_FEINTBOMB",15; bonus bHit,30; } if (.@r>=9) { bonus2 bSkillAtk,"SC_FEINTBOMB",25; bonus bHit,20; } if (.@r>=10) bonus bIgnoreDefClass,Class_All;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19426,'Spirit_King\'s_Crown','Spirit King\'s Crown','Armor',20,600,12,true,100,true,1118,'.@r = getrefine(); bonus bMdef,15; bonus bFixedCastrate,-7*.@r; bonus bDelayrate,-10; bonus2 bSkillAtk,"SO_EARTHGRAVE",10; bonus2 bSkillAtk,"SO_DIAMONDDUST",10; bonus bVariableCastrate,-6*getskilllv("SO_EL_SYMPATHY"); if (getskilllv("SO_WARMER") >= 5) { bonus2 bSkillCooldown,"SO_EARTHGRAVE",-1000; bonus2 bSkillCooldown,"SO_DIAMONDDUST",-1000; bonus2 bSkillCooldown,"SO_VARETYR_SPEAR",-1000; } if (getskilllv("SO_ELEMENTAL_SHIELD") >= 5) bonus2 bMagicAddClass,Class_Boss,25; if (.@r>=7) { bonus2 bSkillAtk,"SO_EARTHGRAVE",15; bonus2 bSkillAtk,"SO_DIAMONDDUST",15; bonus bDelayrate,-5; } if (.@r>=9) { bonus bDelayrate,-5; bonus2 bSkillAtk,"SO_EARTHGRAVE",25; bonus2 bSkillAtk,"SO_DIAMONDDUST",25; } if (.@r>=10) bonus2 bIgnoreMdefClassRate,Class_All,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19428,'Illusion_Morpheus\'s_Hood','Illusion Morpheus\'s Hood','Armor',20,200,15,1,true,130,true,256,'.@r = getrefine(); bonus bInt,10; bonus bMdef,15; bonus bMaxSPrate,20; bonus bVariableCastrate,-(3*(.@r/2)); if (.@r >= 7) { bonus bMatk,30; if (.@r >= 9) { bonus bNoCastCancel; } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (19451,'Heavenly_Order','Heavenly Order','Armor',20,true,100,1093,'skill "MC_IDENTIFY",1,0; .@a = readparam(bStr); .@b = readparam(bAgi); .@c = readparam(bVit); .@d = readparam(bInt); .@e = readparam(bDex); .@f = readparam(bLuk); bonus bHit,2*(.@a/18); bonus bMaxHPrate,2*(.@a/18); bonus bFlee,2*(.@b/18); bonus bDelayrate,-2*(.@b/18); bonus bMdef,2*(.@c/18); bonus bVariableCastrate,-2*(.@c/18); bonus bMaxSPrate,2*(.@d/18); bonus bUseSPrate,-2*(.@d/18); bonus bCritical,2*(.@e/18); bonus bAspdRate,2*(.@e/18); bonus bBaseAtk,15*(.@f/18); bonus bMatk,15*(.@f/18); bonus bDef,20*(.@f/18);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19453,'Jeje_Cap','Jeje Cap','Armor',20,1000,18,true,100,true,1011,'.@r = getrefine(); .@dmg = 10; .@delay = -15-6*getskilllv("GN_CRAZYWEED"); bonus bMdef,15; bonus bNoCastCancel; bonus2 bVariableCastrate,"GN_CRAZYWEED",-50; bonus2 bVariableCastrate,"CR_ACIDDEMONSTRATION",-50; bonus2 bVariableCastrate,"CR_FULLPROTECTION",-50; if (.@r>=7) { .@dmg += 15; if (.@r>=9) { .@dmg += 25; if (.@r>=10) { bonus bIgnoreDefClass,Class_All; } } } if (getskilllv("GN_FIRE_EXPANSION") == 5) bonus2 bAddClass,Class_Boss,50; if (getskilllv("GN_CRAZYWEED") == 5) { .@delay -= 25; bonus2 bSkillCooldown,"GN_CRAZYWEED",-4500; } bonus2 bSkillAtk,"CR_ACIDDEMONSTRATION",.@dmg; bonus2 bSkillAtk,"GN_CRAZYWEED",.@dmg; bonus bDelayrate,.@delay;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19469,'Saint_Crown','Saint Crown','Armor',20,600,12,true,100,true,1117,'.@r = getrefine(); .@a = 5*(getskilllv("AB_LAUDAAGNUS")+getskilllv("AB_LAUDARAMUS")); .@dmg = 20; .@aspd = 10; bonus bMdef,15; bonus2 bSkillUseSP,"AB_JUDEX",15; bonus2 bSkillUseSP,"AB_ADORAMUS",15; bonus2 bVariableCastrate,"AB_JUDEX",-5*getskilllv("AB_ORATIO"); bonus2 bVariableCastrate,"AB_ADORAMUS",-5*getskilllv("AB_ORATIO"); if (getskilllv("AB_CLEARANCE") >= 5) { bonus2 bMagicAddClass,Class_Boss,25; } bonus2 bMagicAddEle,Ele_Undead,.@a; bonus2 bMagicAddEle,Ele_Ghost,.@a; bonus2 bMagicAddEle,Ele_Earth,.@a; bonus2 bMagicAddEle,Ele_Neutral,.@a; bonus2 bMagicAddRace,RC_DemiHuman,2*.@r; bonus2 bMagicAddRace,RC_Player_Human,2*.@r; if (.@r >= 7) { .@dmg += 30; .@aspd += 5; if (.@r >= 9) { .@dmg += 50; .@aspd += 5; if (.@r >= 10) { bonus bNoGemStone; } } } bonus bAspdRate,.@aspd; bonus2 bSkillAtk,"AB_JUDEX",.@dmg; bonus2 bSkillAtk,"AB_ADORAMUS",.@dmg;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`,`script`,`unequip_script`) VALUES (19433,'C_Resonate_Taego','Costume Resonate Taego','Armor',true,1,1823,'hateffect(HAT_EF_RESONATETAEGO,true);','hateffect(HAT_EF_RESONATETAEGO,false);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`location_costume_head_Low`,`view`,`script`) VALUES (19500,'T_Mr_Smile','T Mr Smile','Armor',true,true,65,'bonus bStr,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`view`) VALUES (19501,'T_Spinx_Helm','T Spinx Helm','Armor',true,137); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`view`) VALUES (19502,'T_Goggle','T Goggle','Armor',true,true,1); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`location_costume_head_Low`,`view`) VALUES (19503,'T_Munak_Hat','T Munak Hat','Armor',true,true,true,51); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`view`) VALUES (19504,'T_Sunglasses','T Sunglasses','Armor',true,12); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`view`) VALUES (19505,'T_Cigarette','T Cigarette','Armor',true,54); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`view`) VALUES (19506,'T_Valkyrie_Feather_Band','T Valkyrie Feather Band','Armor',true,300); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (19507,'Fine_Sun','Clear Sun','Armor',true,1,654,100,true,'bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`script`) VALUES (19508,'T_Gemmed_Sallet','T Gemmed Sallet','Armor',true,'bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (19509,'Butterfly_Wing_Ear','Butterfly Wing Ears','Armor',true,1,695,100,true,'bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (19510,'Nut_On_Head','Screw Stuck in Head','Armor',true,1,696,100,true,'bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (19511,'Heart_Eye_Patch1','Heart Eye Patch 1','Armor',true,1,697,100,true,'bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (19512,'Heart_Eye_Patch2','Heart Eye Patch 2','Armor',true,1,698,100,true,'bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (19513,'Chicken_Beak','Chicken Bill','Armor',true,1,699,100,true,'bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (19514,'Charlie_Beard','Charlies Beard','Armor',true,1,700,100,true,'bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (19515,'Yellow_Hat','Yellow Hat','Armor',true,1,701,100,true,'bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (19516,'Singing_Bird','Singing Bird','Armor',true,1,702,100,true,'bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (19517,'Cocks_Comb','Chicken Crest','Armor',true,1,703,100,true,'bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (19518,'Rainbow','Rainbow','Armor',true,1,704,100,true,'bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (19519,'Lightning_Cloud','Thunderstorm Cloud','Armor',true,1,688,100,true,'bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (19520,'Rain_Cloud','Rain Cloud','Armor',true,1,705,100,true,'bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (19521,'Charlie_Hat','Charlies Hat','Armor',true,1,706,100,true,'bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (19522,'Mini_Crown1','Mini Crown','Armor',true,1,707,100,true,'bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19523,'Donation_Ribbon','Green Ribbon','Armor',true,1,244,100,true,true,true,true,true,true,true,'bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`script`) VALUES (19524,'C_Green_Feeler','Costume Green Feeler','Armor',true,1,85,'bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`view`,`script`) VALUES (19525,'C_Jack_A_Dandy','Costume Jack A Dandy','Armor',true,58,'bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`script`) VALUES (19526,'C_Helm','Costume Helm','Armor',true,1,40,'bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`script`) VALUES (19527,'C_Sharp_Gear','Costume Spiky Band','Armor',true,1,43,'bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`,`script`) VALUES (19528,'C_Iron_Cane','Costume Iron Cain','Armor',true,1,53,'bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`script`) VALUES (19529,'C_Angelic_Chain','Costume Angel Wing','Armor',true,1,38,'bonus bUnbreakableHelm; bonus bVit,1; bonus bAgi,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (19530,'C_Wild_Rose','Costume Wild Rose','Armor',true,1,541,100,true,'bonus bUnbreakableHelm; bonus bBaseAtk,2; bonus bMatk,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`location_costume_head_Low`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19531,'C_Cube_Mask','Costume Cube Mask','Armor',true,true,472,100,true,true,true,true,true,true,true,'bonus bUnbreakableHelm; bonus bFlee,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19532,'C_Red_Bunny_Band','Red Bunny Band','Armor',true,1,640,100,true,true,true,true,true,true,true,'bonus bUnbreakableHelm; bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (19533,'C_Spore_Hat','Costume Spore Hat','Armor',true,1,114,100,true,'bonus bUnbreakableHelm; bonus bVit,1; bonus2 bExpAddRace,RC_All,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (19534,'C_Tha_Despero_Mask','Costume Thanatos Despero Mask','Armor',20,true,true,1,693,100,true,'bonus2 bAddClass,Class_All,1; bonus bMatkRate,1; bonus bHealPower,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (19535,'C_Sinsuncho_Hat','Costume Sinsuncho Hat','Armor',true,1,730,100,true,'bonus bUnbreakableHelm; bonus bStr,1; bonus2 bExpAddRace,RC_All,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (19536,'C_Rose_Corsage','Costume Rose Corsage','Armor',true,1,533,100,true,'bonus bUnbreakableHelm; bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`script`) VALUES (19537,'C_Gryphon_Hat','Costume Gryphon Hat','Armor',true,1,591,'bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`script`) VALUES (19538,'Full_Moon','Full Moon','Armor',true,1,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 */ }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`,`script`) VALUES (19539,'C_Reginleif_Hairband','Costume Hairband Of Reginleif','Armor',20,true,1,468,'bonus bAllStats,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`,`script`) VALUES (19540,'C_Rabbit_Earplug','Costume Rabbit Earplugs','Armor',20,true,true,true,1,515,'bonus bAgi,1; bonus bFlee,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_Low`,`equip_level_min`,`view`,`script`) VALUES (19541,'C_Romantic_White_Flower','Costume Romantic White Flower','Armor',20,true,1,259,'bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_Mid`,`equip_level_min`,`view`,`script`) VALUES (19542,'C_Devil_Whisper','Costume Devil Whisper','Armor',20,true,1,712,'bonus bUnbreakableHelm; bonus2 bSubRace,RC_Angel,1; bonus2 bSubRace,RC_Demon,1; bonus3 bAddMonsterDropItem,523,RC_Angel,400; bonus3 bAddMonsterDropItem,12020,RC_Demon,400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_costume_head_top`,`equip_level_min`,`view`,`script`) VALUES (19543,'Oliver_Wolf_Hood','Oliver Wolf Hood','Armor',20,300,true,70,849,'bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (19544,'C_Tare_Neko_Cru','Costume Tare Neko Cru','Armor',20,true,1,692,100,true,'bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_costume_head_top`,`equip_level_min`,`view`,`script`) VALUES (19545,'C_Boys_Cap','Costume Boy\'s Cap','Armor',20,100,true,100,102,'bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_costume_head_top`,`equip_level_min`,`view`,`script`) VALUES (19546,'C_Valkyrie_Helm','Costume Valkyrie Helm','Armor',20,100,true,100,225,'bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_costume_head_top`,`equip_level_min`,`view`,`script`) VALUES (19547,'C_Deviruchi_Cap','Costume Deviruchi Cap','Armor',20,100,true,100,123,'bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_costume_head_top`,`equip_level_min`,`view`,`equip_script`) VALUES (19548,'C_Frog_Cap','Costume Frog Cap','Armor',20,100,true,100,448,'bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_costume_head_top`,`equip_level_min`,`view`,`script`) VALUES (19549,'C_Magestic_Goat','Costume Magestic Goat','Armor',20,100,true,100,41,'bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_costume_head_Mid`,`equip_level_min`,`view`,`script`) VALUES (19550,'C_Blush','Costume Blush','Armor',20,100,true,100,125,'bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_costume_head_Mid`,`equip_level_min`,`view`,`script`) VALUES (19551,'C_Elven_Ears','Costume Elven Ears','Armor',20,100,true,100,73,'bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_costume_head_Low`,`equip_level_min`,`view`,`script`) VALUES (19552,'C_Centimental_Flower','Costume Centimental Flower','Armor',20,100,true,100,56,'bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_costume_head_Low`,`equip_level_min`,`view`,`script`) VALUES (19553,'C_Assassin_Mask_','Costume Assassin Mask','Armor',20,100,true,100,180,'bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`,`script`) VALUES (19554,'C_Hahoe_Mask','Costume Hahoe Mask','Armor',20,100,true,true,100,230,'bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (19555,'C_Crescent_Helm','Costume Crescent Moon Helm','Armor',true,true,1,213,100,true,'bonus bVit,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (19556,'C_Kabuki_Mask','Costume Kabuki Mask','Armor',true,true,true,1,214,100,true,'bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (19557,'C_Ayothaya_Hat','Costume Ayothaya Hat','Armor',true,1,334,100,true,'bonus bStr,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (19558,'C_Crow_Hat','Costume Crow Hat','Armor',true,1,524,100,true,'bonus bVit,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (19559,'C_Baby_Dragon_Hat','Costume Baby Dragon Hat','Armor',true,1,525,100,true,'bonus bAgi,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (19560,'C_Coati_Hat','Costume Coati Hat','Armor',true,1,527,100,true,'bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (19561,'C_Tucan_Hat','Costume Tucan Hat','Armor',true,1,528,100,true,'bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (19562,'C_Jaguar_Hat','Costume Jaguar Hat','Armor',true,true,true,1,530,100,true,'bonus bStr,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`) VALUES (19563,'C_Dragon_Arhat_Mask','Costume Dragon Arhat Mask','Armor',true,true,1,545,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`) VALUES (19564,'C_Tiger_Arhat_Mask','Costume Tiger Arhat Mask','Armor',true,true,1,546,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (19565,'C_Chung_Hairband','Costume Chung Hairpin','Armor',true,1,583,100,true,'bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`) VALUES (19566,'C_Samurai_Mask','Costume Samurai Mask','Armor',true,1,644,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (19567,'C_Hatta_Black','Costume Hatta Black','Armor',true,1,676,100,true,'bonus bVit,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (19568,'C_Ancient_Horns','Costume Ancient Horns','Armor',true,1,757,100,true,'bonus bStr,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (19569,'C_Sprout_Hat','Costume Sprout Hat','Armor',true,1,758,100,true,'bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (19570,'C_Mercury_Riser','Costume Mercury Riser','Armor',true,1,759,100,true,'bonus bLuk,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (19571,'C_White_Musang_Hat','Costume White Musang Hat','Armor',true,1,770,100,true,'bonus bStr,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (19572,'C_Black_Musang_Hat','Costume Black Musang Hat','Armor',true,1,771,100,true,'bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`) VALUES (19573,'C_Heart_Wing_Hairband','Costume Heart Wing Hairband','Armor',true,1,733,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (19574,'C_Lord_of_Death','Costume Lord of Death','Armor',true,true,742,100,true,'bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19575,'C_Ascension_Black_Dragon','Costume Ascension Black Dragon','Armor',true,1,863); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`) VALUES (19576,'C_Tare_Pope','Costume Tare Pope','Armor',true,1,817,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19577,'10th_Anni_Poring_Hat','10th Anni Poring Hat','Armor',10,100,1,true,1,874); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (19578,'C_Goggle','Costume Googles','Armor',true,true,1,1); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`,`script`) VALUES (19579,'C_Red_Wind_Hat','Costume Red Wind Hat','Armor',10,true,1,613,'bonus bHPrecovRate,20; bonus bSPrecovRate,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (19580,'C_Sphinx_Helm','Costume Sphinx Helm','Armor',true,true,1,137); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19581,'C_Adventurers_Hat','Costume Adventurer\'s Hat','Armor',true,1,891); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19582,'C_Cowboy_Hat','Costume Cowboy Hat','Armor',true,1,411); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (19583,'C_Zorro_Mask','Costume Zorro Mask','Armor',true,1,50); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (19584,'C_Pirate_Dagger','Costume Dagger In Mouth','Armor',true,1,327); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19585,'C_Feather_Beret','Costume Feather Beret','Armor',true,1,224); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`) VALUES (19586,'C_Pink_Bunny_Band_J','Costume Pink Bunny Hair Band','Armor',10,true,1,898,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_costume_head_top`,`equip_level_min`,`view`,`script`) VALUES (19587,'C_King_Poring_Hat','Costume King Poring Hat','Armor',100,true,1,905,'bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`script`) VALUES (19588,'C_Cat_Hat_J','Costume Cat Hat','Armor',true,1,182,'bonus bAllStats,3; bonus2 bExpAddClass,Class_All,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`view`) VALUES (19589,'C_Fallen_Angel_Lost_J','Costume Fallen Angel Lost','Armor',true,907); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`view`) VALUES (19590,'C_Twin_Ribbon_J','Costume Maiden\'s Twin Ribbon','Armor',20,true,239); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19591,'C_Ribbon_Red','Costume Red Ribbon','Armor',true,1,246); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19592,'C_Hibiscus','Costume Hibiscus','Armor',true,1,210); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19593,'C_Laurel_Wreath','Costume Laurel Wreath','Armor',true,1,237); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19594,'C_Decorative_Geographer','Costume Decorative Geographer','Armor',true,1,238); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19595,'C_Dress_Hat_J','Costume April\'s Fool Day','Armor',true,1,265); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19596,'C_Flapping_Angel_Wing','Costume Flapping Angel Wing','Armor',true,1,264); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19597,'C_Magic_Eyes','Costume Magic Eyes','Armor',true,1,209); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_costume_head_top`,`location_costume_head_Mid`,`view`,`trade_override`,`trade_nodrop`) VALUES (19598,'C_Wondering_Wolf_Helm','Costume Wandering Wolf Hat','Armor',20,true,false,false,true,true,490,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (19599,'C_Imp_Hat','Costume Imp Hat','Armor',20,400,1,true,1,589,100,true,'bonus3 bAutoSpell,"SA_FLAMELAUNCHER",1,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19600,'Drooping_Kiehl','Costume Drooping Kiehl','Armor',40,true,30,909); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19601,'Drooping_Aliot','Costume Drooping Aliot','Armor',10,true,1,910); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`) VALUES (19602,'C_Invisible_Cap','Costume Invisible Cap','Armor',true,1); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`) VALUES (19603,'C_Invisible_Sunglasses','Costume Invisible Sunglasses','Armor',true,1); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`) VALUES (19604,'C_Invisible_Mask','Costume Invisible Flu Mask','Armor',true,1); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (19605,'C_Gang_Scarf','Costume Gang Scarf','Armor',true,1,369); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (19606,'C_Ninja_Scroll','Costume Ninja Scroll','Armor',true,1,370); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19607,'C_Love_Chick_Hat','Costume Love Chick Hat','Armor',true,1,500); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19608,'C_Chick_Hat','Costume Baby Chick','Armor',true,1,311); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (19609,'C_Red_Glasses','Costume Red Glasses','Armor',true,1,316); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (19610,'C_Whisper_Mask','Costume Whisper Mask','Armor',true,true,true,1,321); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (19611,'C_Peco_Ears','Costume Peco Ears','Armor',true,1,366); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (19612,'C_Note_Headphone','Costume Note Headphone','Armor',true,true,1,220); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19613,'C_Valkyrie_Feather_Band','Costume Valkyrie Feather Hat','Armor',10,true,1,300); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19614,'C_Super_Novice_Hat','Costume Super Novice Hat','Armor',true,1,193); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (19615,'C_Loki_Mask','Costume Loki Mask','Armor',true,true,1,346); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19616,'C_Wickebines_Black_Cat_Ears','Costume Wickebine\'s Black Cat Ears','Armor',true,1,368); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`view`) VALUES (19617,'C_Puppy_Headband','Costume Puppy Headband','Armor',true,199); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`view`) VALUES (19618,'C_Mask_Of_Fox','Costume Kitsune Mask','Armor',true,153); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`view`,`script`) VALUES (19619,'C_Corsair','Costume Corsair','Armor',true,105,'bonus bVit,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`view`) VALUES (19620,'C_Dectective_Hat','Costume Detective Hat','Armor',true,189); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`view`) VALUES (19621,'C_Ear_Of_Devils_Wing','Costume Evil Wing Ear','Armor',true,152); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`view`) VALUES (19622,'C_Crescent_Hairpin','Costume Crescent Hairpin','Armor',true,132); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`view`) VALUES (19623,'C_Bijofnil_Wings','Costume Bijofnil Wings','Armor',true,477); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`view`) VALUES (19624,'C_Round_Eyes','Costume Blank Eyes','Armor',true,185); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`view`) VALUES (19625,'C_Bunny_Band','Costume Bunny Band','Armor',true,15); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19627,'C_Satellite_Hairband','Costume Satellite Hairband','Armor',true,1,266); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19628,'C_Headset','Costume Headset','Armor',true,1,97); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19629,'C_Tiara','Costume Tiara','Armor',20,true,1,19); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19630,'C_Crown','Costume Crown','Armor',10,true,1,45); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19631,'C_Poring_Fedora_Hat','Costume Poring Fedora Hat','Armor',true,1,919); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19632,'C_Hat','Costume Hat','Armor',10,true,1,16); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19633,'C_Flower_Hairband','Costume Flower Band','Armor',10,true,1,5); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (19634,'C_Flu_Mask','Costume Flu Mask','Armor',10,true,1,8); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19635,'C_Mini_Propeller','Costume Mini Propeller','Armor',10,true,1,46); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (19636,'C_Pierrot_Nose','Costume Clown Nose','Armor',10,true,1,49); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19637,'C_Nurse_Cap','Costume Nurse Cap','Armor',10,true,1,64); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (19638,'C_Mr_Smile','Costume Mr. Smile','Armor',10,true,true,1,65); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19639,'C_Sahkkat','Costume Sakkat','Armor',10,true,1,67); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19640,'C_Charming_Ribbon','Costume Charming Ribbon','Armor',true,1,211); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (19641,'C_Helm_of_Darkness','Costume Helm of Darkness','Armor',true,true,1,233); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (19642,'C_Moonlight_Flower_Hat','Costume Moonlight Flower Hat','Armor',true,true,1,268); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19643,'C_Whikebain_Ears','Costume Wickebine Ears','Armor',true,1,368); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (19644,'C_Takius_Blindfold','Costume Takius Blindfold','Armor',true,1,184); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19645,'C_Phoenix_Crown','Costume Phoenix Crown','Armor',true,1,221); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19646,'C_Ramen_Hat','Costume Ramen Hat','Armor',true,1,320); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19647,'C_Red_Deviruchi_Hat','Costume Red Deviruchi Hat','Armor',true,1,271); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19648,'C_Autumn_Leaves','Costume Autumn Leaves','Armor',true,1,241); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19649,'C_White_Baby_Cat_Ears','Costume White Baby Cat Ears','Armor',true,1,926); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`) VALUES (19650,'C_Rainbow_Feather_Deco','Costume Rainbow Feather Deco','Armor',true,1,934,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (19651,'C_RWC_Shouting_Mouth','Costume RWC Shouting Mouth','Armor',10,true,1,194); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19652,'C_Rabbit_Magic_Hat','Costume Rabbit Magic Hat','Armor',true,1,497); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19653,'C_Marcher_Hat','Costume Marcher Hat','Armor',true,1,269); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19654,'C_J_Captain_Hat','Costume Ship Captain Hat','Armor',10,true,1,367); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`view`) VALUES (19655,'C_Tiraya_Bonnet','Costume Tiraya Bonnet','Armor',20,true,398); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`view`) VALUES (19656,'C_Minstrel_Hat','Wandering Minstrel Hat','Armor',20,true,240); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19657,'C_Captain_Hat','Costume Captain Hat','Armor',true,1,236); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19658,'C_Vacation_Hat','Costume Vacation Hat','Armor',true,1,315); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19659,'C_Brown_Beanie','Costume Brown Beanie','Armor',true,1,279); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19660,'C_Coppola','Costume Coppola','Armor',true,1,252); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19661,'C_Sweet_Bonnet','Costume Sweet Bonnet','Armor',true,1,938); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19662,'C_Magician_Hat','Costume Magician Hat','Armor',20,true,1,130); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19663,'Wishing_Sky_Lantern','Costume Wish Lamp','Armor',true,1,947); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19664,'C_Campus_Festival','Costume Campus Festival','Armor',true,1,721); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19665,'C_Poring_Cake_Hat','Costume Poring Cake Hat','Armor',true,1,417); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`,`script`) VALUES (19666,'C_Cookie_Hat','Costume Cookie Hat','Armor',20,true,1,217,'bonus2 bAddItemHealRate,513,1100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19667,'C_Dragon_Helm','Costume Dragon Helm','Armor',true,1,464); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19668,'C_Wind_Milestone','Costume Wind Milestone','Armor',10,true,1,463); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (19669,'C_Reginleif_Hairband_','Costume Reginleif Hairband','Armor',true,1,214); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19670,'C_Southern_Cross','Costume Southern Cross','Armor',true,1,601); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19671,'C_Piggie_Bank','Costume Piggie Bank','Armor',true,1,603); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_Low`,`view`) VALUES (19672,'C_Poring_Letter','Costume Poring Letter','Armor',20,true,604); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19676,'C_Rainbow_Poring_Hat','Costume Rainbow Poring Hat','Armor',true,1,900); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19677,'C_Soulless_Wing','Costume Soulless Wing','Armor',10,true,1,301); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19678,'C_Bell_Ribbon','Costume Bell Ribbon','Armor',20,true,1,388); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19682,'C_Santa_Poring_Hat','Costume SantaPoring Cap','Armor',10,100,true,1,387); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`view`) VALUES (19684,'C_Happy_Wig','Costume Happy Wig','Armor',20,true,305); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19685,'C_ShineSantaPoring','Costume Shining Santa Poring','Armor',true,1,961); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19686,'C_SantaHairband','Costume Santa Hairband','Armor',10,true,1,964); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19687,'C_Lush_Rose','Costume Lush Rose','Armor',10,true,1,963); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (19689,'C_Ati_Atihan_Hat','Costume Ati Atihan','Armor',10,true,true,true,1,303); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19690,'C_Dark_Snake_Lord_Hat_J','Costume Dark Snake Lord Hat','Armor',10,true,1,372); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19695,'C_Kettle_Hat','Costume Kettle Hat','Armor',10,true,1,318); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`view`) VALUES (19694,'C_Vane_Hairpin','Costume Vane Hairpin','Armor',20,true,313); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19696,'C_Friend_Mochiring_Hat','Costume Friend Mochiring Hat','Armor',10,true,1,965); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`view`) VALUES (19697,'C_Rudolph_Santa_Hat','Costume Rudolph Santa Hat','Armor',true,619); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19701,'C_Red_Bonnet','Costume Red Bonnet','Armor',10,100,true,1,190); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19702,'C_Santa_Hat_1','Costume Twin Pompom By JB','Armor',10,true,1,390); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19706,'C_Red_Dress_Hat','Costume Red Dress Hat','Armor',10,true,1,670); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`view`,`script`) VALUES (19707,'C_Polar_Bear_Cap','Costume Polar Bear Cap','Armor',20,true,966,'bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_head_top`,`equip_level_min`,`view`) VALUES (19708,'C_White_Snake_Hat','Costume White Snake Hat','Armor',10,true,1,413); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19709,'C_Yellow_Ribbon','Costume Yellow Ribbon','Armor',10,true,1,310); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`location_costume_head_Mid`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`) VALUES (19710,'C_Wings_Of_Victory','Costume Wings Of Victory','Armor',10,true,true,1,365,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19712,'C_Little_Angel_Doll','Costume Little Angel Doll','Armor',10,true,1,344); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (19713,'C_Lucky_Clover','Costume Lucky Clover','Armor',10,true,1,571); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19714,'C_Lady_Tanee_Doll','Costume Lady Tanee Doll','Armor',true,1,520); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19715,'C_Scarf','Costume Scarf','Armor',true,1,343); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19716,'C_Alice_Doll','Costume Alice Doll','Armor',true,1,208); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19717,'C_Pink_Ribbon','Costume Pink Ribbon','Armor',true,1,245); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19718,'C_Gothic_Head_Dress','Costume Gothic Headdress','Armor',10,true,1,978); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19719,'C_Coronet','Costume Coronet','Armor',true,1,33); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19720,'C_Romantic_Gent','Costume Romantic Gent','Armor',10,true,1,31); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19721,'C_Darkness_Helm','Costume Darkness Helm','Armor',10,true,1,586); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (19722,'C_Black_Glasses','Costume Black Glasses','Armor',10,true,1,404); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19723,'C_Sacred_Torch_Coronet','Costume Sacred Torch Coronet','Armor',10,true,1,431); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19724,'C_Deprotai_Doll_Hat','Costume Deprote Doll Hat','Armor',10,true,1,354); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (19725,'C_Bread_Bag','Costume Bread Bag','Armor',10,true,true,true,1,412); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (19726,'C_Scarlet_Rose','Costume Scarlet Rose','Armor',true,1,534); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19727,'C_Devilring_Hat','Costume Devilring Hat','Armor',10,true,1,298); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19728,'C_Tare_Zonda','Costume Tare Zonda','Armor',10,true,1,985); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19729,'C_Neko_Mimi_Kafra','Costume Neko Mimi Kafra','Armor',10,true,1,392); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_costume_head_top`,`view`) VALUES (19730,'C_Snake_Hat','Costume Snake Hat','Armor',20,10,true,986); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`,`script`) VALUES (19731,'C_Satanic_Chain','Costume Evolved Evil Wing','Armor',10,true,1,39,'bonus bStr,1; bonus bAgi,1; bonus bFlee,3; bonus2 bSubRace,RC_Angel,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (19732,'C_Goblin_Mask_04','Costume Goblin Leader Mask','Armor',10,true,true,1,174); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`script`) VALUES (19733,'C_Panda_Cap','Costume Panda Cap','Armor',true,1,115,'bonus bAllStats,1; bonus2 bExpAddClass,Class_All,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_Mid`,`equip_level_min`,`view`,`script`) VALUES (19734,'C_Binoculars','Costume Binoculars','Armor',10,true,1,83,'bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (19735,'C_Fin_Helm','Costume Fin Helm','Armor',10,true,1,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`,`script`) VALUES (19736,'C_Gas_Mask','Costume Gas Mask','Armor',10,true,true,1,91,'bonus2 bResEff,Eff_Poison,3000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`,`script`) VALUES (19737,'C_Corsair_K','Costume Refined Corsair','Armor',10,true,1,105,'bonus bVit,3; bonus bInt,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19738,'C_Detective_Hat_K','Costume Renown Detective\'s Cap','Armor',10,true,1,189); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`,`script`) VALUES (19739,'C_Sleeping_Kitty_Cat','Costume Sleeping Kitty Hat','Armor',10,true,1,838,'bonus2 bAddRace,RC_Brute,2; bonus2 bAddRace,RC_Player_Doram,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19741,'C_Majestic_Devil_Horns','Costume Majestic Devil Horns','Armor',10,true,1,562); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_Mid`,`view`,`script`) VALUES (19742,'C_Small_Golden_Wings','Costume Small Golden Wings','Armor',10,true,724,'bonus2 bExpAddRace,RC_All,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (19743,'C_Anubis_Helm','Costume Anubis Helm','Armor',10,true,true,true,1,485); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19744,'C_Black_Tail_Ribbon','Costume Black Tail Ribbon','Armor',10,true,1,642); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19745,'C_Holy_Marching_Hat_J','Costume Holy Marching Hat','Armor',10,true,1,587); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (19746,'C_Cap_Of_Blindness','Costume Executioner Hood','Armor',true,true,true,1,326); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (19747,'C_Tha_Despero_Mask_','Costume Tha Despero Mask','Armor',20,true,true,1,693); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (19748,'C_Diadem','Costume Diadem','Armor',20,true,true,1,335); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19749,'C_Gold_Spirit_Chain','Costume Gold Spirit Chain','Armor',10,true,1,260); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19750,'C_Saint_Frill_Ribbon','Costume Saint Frill Ribbon','Armor',10,true,1,987); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19751,'C_Light_Darkness_Crown','Costume Light Darkness Crown','Armor',10,true,1,988); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (19752,'C_Shelter_Wing_Ears','Costume Shelter Wing Ears','Armor',10,300,3,true,1,990); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19753,'C_Celestial_Hat','Costume Celestial Hat','Armor',10,true,1,462); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (19754,'C_Good_Wedding_Veil','Costume Good Wedding Veil','Armor',20,true,true,1,489); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (19755,'C_YinYang_Earring','Costume YinYang Earring','Armor',10,300,3,true,1,744); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (19756,'C_Holy_Mom_Love','Costume Holy Mom Love','Armor',20,true,true,1,610); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19757,'C_Water_Lily_Crown','Costume Water Lily Crown','Armor',10,true,1,312); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19758,'C_Frog_King_Hat','Costume Frog King Hat','Armor',10,true,1,522); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19759,'C_Umbrella_Hat','Costume Umbrella Hat','Armor',10,true,1,338); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (19760,'C_Rainbow_Veil','Costume Rainbow Veil','Armor',20,true,true,1,992); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19761,'C_White_Lily','Costume White Lily','Armor',10,true,1,993); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19762,'C_Happy_Peace_Proof','Costume Happy Peace Proof','Armor',10,true,1,994); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19763,'C_Leaf_Cat_Hat','Costume Leaf Cat Hat','Armor',10,true,1,539); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_Low`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19764,'C_Monster_Card','Costume Monster Card','Armor',10,true,526,100,true,true,true,true,true,true,true,'bonus2 bExpAddRace,RC_All,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_Mid`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19765,'C_Wing_Angels_Ears','Costume Wing Angels Ears','Armor',10,true,1,158,100,true,true,true,true,true,true,true,'bonus2 bExpAddRace,RC_All,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19767,'C_Home_Cherry_Blossom','Costume Home Cherry Blossom','Armor',true,1,602); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19768,'C_Sakura_Coronet','Costume Sakura Coronet','Armor',true,1,645); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (19769,'C_Elf_Ears','Costume Elf Ears','Armor',true,1,405); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`view`) VALUES (19770,'C_Sake','Costume Sake','Armor',true,557); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19771,'C_Butterfly_Hairpin','Costume Buterfly Hairpin','Armor',true,1,723); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19772,'C_Honeybee_Hat','Costume Honeybee Hat','Armor',true,1,709); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19773,'C_Angeling_Pin','Costume Angeling Pin','Armor',true,1,222); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19774,'C_Laurel','Costume Laurel','Armor',true,1,261); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_costume_head_top`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (19775,'C_Marvelous_Wig','Costume Dokebi Hat','Armor',20,10,true,true,1,307); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (19776,'C_Tomboy_Fairy','Costume Tomboy Fairy','Armor',true,1,998); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19777,'C_Twinkle_Little_Star','Costume Shiny Small Star','Armor',20,10,true,1,1005); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19778,'C_King_Berry','Costume King Berry','Armor',true,1,968); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`script`) VALUES (19779,'C_Persika','Costume Persika','Armor',true,1,659,'bonus bAllStats,1; bonus2 bExpAddClass,Class_All,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_costume_head_top`,`equip_level_min`,`view`,`script`) VALUES (19780,'C_Rabbit_Ear_Knit_Hat','Costume Knit Rabbit Ears','Armor',20,10,true,1,867,'bonus bMaxHPrate,3; bonus bMaxSPrate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (19781,'C_Ear_Of_Angel\'s_Wing_','Costume Angel Wing Ears','Armor',10,true,1,158); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19782,'C_Drooping_Kitty','Costume Refined Drooping Cat','Armor',10,true,1,142); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (19783,'C_Granpa_Beard','Costume Grampa Beard','Armor',10,true,1,25); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19784,'C_Morrigane\'s_Helm','Costume Morrigane\'s Helm','Armor',10,true,1,257); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (19785,'C_Well_Baked_Toast','Costume Crunch Toast','Armor',10,true,1,188); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19786,'C_Mistress_Crown','Costume Crown of Mistress','Armor',10,true,1,165); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (19787,'C_Devoted_Eyes','Costume Devoted Eyes','Armor',true,1,1021); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (19788,'C_Heart_Eyebandage','Costume Heart Eyebandage','Armor',true,1,779); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19789,'C_Sweet_Gents','Costume Sweet Gent','Armor',10,true,1,29); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19790,'C_Wedding_Veil','Costume Wedding Veil','Armor',10,true,1,44); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (19791,'C_Alarm_Mask','Costume Alarm Mask','Armor',true,true,1,170); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (19792,'C_Goblin_Mask_01','Costume Poker Face','Armor',true,true,1,171); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (19793,'C_Goblin_Mask_02','Costume Surprised Mask','Armor',true,true,1,172); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (19794,'C_Goblin_Mask_03','Costume Annoyed Mask','Armor',true,true,1,173); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19795,'C_Lord_Circlet','Costume Grand Circlet','Armor',10,true,1,93); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19796,'C_Bone_Helm','Costume Bone Helm','Armor',10,true,1,103); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19797,'C_Apple_Of_Archer','Costume Apple of Archer','Armor',10,true,1,72); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (19798,'C_Angry_Mouth','Costume Angry Snarl','Armor',10,true,1,194); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19799,'C_Golden_Gear','Costume Golden Gear','Armor',10,true,1,30); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19800,'C_Carnation_Hairband','Costume Carnation Headband','Armor',10,true,1,878); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (19801,'C_Foxhat','Costume Foxhat','Armor',true,true,1,403); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19802,'C_Lazy_Ninetail','Costume Lazy Ninetail','Armor',true,1,296); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19803,'C_Windtoy_Hat','Costume Windtoy Hat','Armor',true,1,456); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19804,'C_Red_Vane_Hairpin','Costume Red Vane Hairpin','Armor',true,1,1044); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (19805,'C_Taboo_Curse_Scroll','Costume Curse Scroll','Armor',true,1,1045); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19806,'C_Full_Bloom_Hairpin','Costume Bloom Hairpin','Armor',true,1,1046); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19807,'C_Majestihelm','Costume Majestihelm','Armor',true,1,1047); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19808,'C_Blazing_Sun','Costume Blazing Sun','Armor',true,1,654); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (19810,'C_Ifrit_Ear','Costume Ifrit Ear','Armor',true,1,422); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19811,'C_Beer_Hat','Costume Beer Hat','Armor',true,1,418); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19812,'C_Big_Hibiscus','Costume Big Hibiscus','Armor',true,1,333); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19813,'C_Icecream_Hat','Costume Icecream Hat','Armor',true,1,488); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19814,'C_Bright_Wig','Costume Bright Wig','Armor',true,1,306); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19815,'C_Lolita_Ten_Gallon_Hat','Costume Lolita Ten Gallon Hat','Armor',true,1,1048); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19816,'C_Pecopeco_Cap','Costume Pecopeco Cap','Armor',true,1,1049); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (19817,'C_Ifrits_Breath','Costume Ifrits Breath','Armor',true,1,1050); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19818,'C_Drooping_Morooc_Minion','Costume Drooping Morooc Minion','Armor',true,1,600); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (19819,'C_Gang_Doogun','Costume Gang Doogun','Armor',true,true,1,491); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (19821,'C_Hyegun_Hat','Costume Yao Jun','Armor',20,true,true,true,1,375); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19822,'C_Yellow_Doogun','Costume Yellow Doogun','Armor',true,1,309); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_costume_head_top`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (19823,'C_White_Cat_Hood','Costume White Cat Hood','Armor',20,10,true,true,1,1052); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19824,'C_Evil_Druid_Hat','Costume Evil Druid Hat','Armor',true,1,1053); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19825,'C_Vicious_Stop_Bandage','Costume Vicious Stop Bandage','Armor',true,1,1054); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (19826,'C_Ice_Wing_Ear','Costume Ice Wing Ear','Armor',20,10,true,1,584); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19827,'C_Amistr_Cap','Costume Amistr','Armor',20,true,1,643); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19828,'C_Fedora','Costume Bucket Hat','Armor',20,true,1,195); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`view`) VALUES (19829,'C_Straw_Hat','Costume Straw Hat','Armor',20,true,146); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (19830,'C_Sunglasses','Costume Sunglasses','Armor',10,true,1,12); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19831,'C_Filir_Hat','Costume Filir Hat','Armor',20,true,1,408); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19832,'C_Poring_Hat','Costume Poring Hat','Armor',20,true,1,120); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19833,'C_Fillet','Costume Fillet','Armor',20,true,1,34); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19834,'C_Baseball_Cap','Costume Baseball Cap','Armor',20,true,1,216); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19835,'C_Lif_Doll_Hat','Costume Lif Doll Hat','Armor',20,true,1,297); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19836,'C_L_Magestic_Goat','Costume Majestic Goat','Armor',20,true,1,380); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (19837,'C_Asara_Fairy','Costume Asara Fairy Hat','Armor',true,true,1,492); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19839,'C_Vanilmirth_Hat','Costume Vanilmirth Hat','Armor',20,true,1,317); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19841,'C_Dragonhelm_Copper','Costume Dragon Helm Copper','Armor',20,true,1,454); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19842,'C_Puppy_Hat','Costume Puppy Hat','Armor',20,true,1,234); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19843,'C_Cat_Hairband','Costume Kitty Band','Armor',20,10,true,1,2); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19844,'C_Turban','Costume Turban','Armor',20,10,true,1,7); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19845,'C_Hair_Protector','Costume Bao Bao','Armor',20,10,true,1,127); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (19846,'C_Opera_Ghost_Mask','Costume Opera Masque','Armor',20,10,true,1,128); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19847,'C_Big_Sis_Ribbon','Costume Big Ribbon','Armor',20,10,true,1,28); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19848,'C_Angeling_Hat','Costume Angeling Hat','Armor',20,10,true,1,204); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_costume_head_top`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (19849,'C_Munak_Turban','Costume Munak Hat','Armor',20,10,true,true,true,1,51); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_costume_head_top`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (19850,'C_Bongun_Hat','Costume Bongun Hat','Armor',20,10,true,true,true,1,139); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19851,'C_Brown_Bear_Cap','Costume Teddybear Hat','Armor',20,10,true,1,143); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19852,'C_Galapago_Cap','Costume Galapago Cap','Armor',20,true,1,192); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_Mid`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19853,'C_Filir_Wing_Ears','Costume Filir Wings','Armor',20,true,1,595,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddClass,Class_All,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19854,'C_Ear_Of_Black_Cat_','Costume Black Cat Ears','Armor',20,true,1,141); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`,`script`) VALUES (19856,'C_Iceflake_Hat','Costume Snow Cone Hat','Armor',10,true,1,1080,'bonus2 bAddEle,Ele_Fire,5; bonus2 bMagicAddEle,Ele_Fire,5; bonus2 bAddMonsterDropItem,11589,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19857,'C_King_Prawn_Hat','Costume Crayfish Hat','Armor',10,10,true,1,728); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19858,'C_Leaf_Headgear','Costume Smokie Leaf','Armor',20,true,1,148); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`view`) VALUES (19859,'C_Flying_Angel','Costume Flying Angel','Armor',20,true,264); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`view`) VALUES (19860,'C_Cryptura_Hair_Cap','Costume School Criatura Hat','Armor',20,true,872); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`view`) VALUES (19861,'C_Heart_Hair_Pin','Costume Heart Hairpin','Armor',20,true,126); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`view`) VALUES (19862,'C_Horn_Of_Succubus','Costume Succubus Horn','Armor',20,true,150); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`view`) VALUES (19863,'C_Inccubus_Horn','Costume Incubus Horn','Armor',20,true,156); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`location_costume_head_Mid`,`view`) VALUES (19864,'C_Dokebi\'s_Wig','Costume Dokebi\'s Wig','Armor',20,true,true,302); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`view`) VALUES (19865,'C_Joker_Jester','Costume Joker Jester','Armor',20,true,89); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`view`) VALUES (19866,'C_Blue_Pajamas_Hat','Costume Blue Pajamas','Armor',20,true,501); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_Mid`,`view`,`trade_override`,`trade_nodrop`,`equip_script`,`unequip_script`) VALUES (19871,'C_Music_Decoration','Costume Decoration of Music','Armor',20,true,1074,100,true,'sc_start SC_DECORATION_OF_MUSIC,INFINITE_TICK,0;','sc_end SC_DECORATION_OF_MUSIC;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`view`) VALUES (19874,'C_Carnival_Circlet','Costume Carnival Circlet','Armor',20,true,506); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19876,'C_Rabbit_Ear_Hat','Costume Bunny Top Hat','Armor',true,1,384); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19878,'C_Drooping_Bunny','Costume Evolved Drooping Bunny','Armor',true,1,249); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (19882,'C_Flowerpot_Mask','Costume Flowerpot Mask','Armor',true,true,1,1086); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19883,'C_Piamette_Hood','Costume Piamette Hood','Armor',true,1,1087); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19884,'C_Vanargandr_Helm','Costume Vanargand Helm','Armor',10,true,1,804); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (19885,'C_Blinker','Costume Blinker','Armor',10,true,1,82); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (19886,'C_Luxury_Sunglasses','Costume Purple Glasses','Armor',10,true,1,26); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (19887,'C_One_Eyed_Glass','Costume Cyclops Glasses','Armor',10,true,1,23); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (19888,'C_Glasses','Costume Glasses','Armor',10,true,1,3); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`view`) VALUES (19889,'C_Pair_Of_Red_Ribbon','Costume Small Ribbons','Armor',true,169); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`view`) VALUES (19902,'C_Cigar','Costume Cigarette','Armor',true,54); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`script`) VALUES (19903,'C_Witchs_Hat','Costume Witch\'s Hat','Armor',true,1,717,'bonus bVariableCastrate,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`refineable`,`view`) VALUES (19910,'C_Halloween_Hat','Costume Halloween Hat','Armor',true,true,1098); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (19912,'C_Cat_Eye','Costume: Cat eye','Armor',true,1,1100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`refineable`,`view`) VALUES (19913,'C_Poo_Poo_Hat','Costume Poo Poo Hat','Armor',true,true,76); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19914,'Felock_Cap','Felrock\'s Hat','Armor',10,true,1,1101); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19916,'C_Black_Cat_Hat','Costume Black Cat Hat','Armor',true,1,1105); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`script`) VALUES (19917,'C_Gloomy_Pumpkin_Hat','Costume Pumpkin Hat','Armor',true,1,691,'bonus bSpeedRate,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`,`script`) VALUES (19918,'C_Lude_Mask','Costume Lude Mask','Armor',true,true,1,802,'bonus bAddItemHealRate,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`,`script`) VALUES (19919,'C_Cube_Mask_','Costume Quve Mask','Armor',true,true,1,472,'bonus bAspdRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`,`script`) VALUES (19920,'C_Adv_Whisper_Mask','Costume Evolved Whisper Mask','Armor',true,true,true,1,458,'bonus bFlee,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (19922,'C_Noah_Hat','Costume Noah\'s Hat','Armor',true,true,true,1,636); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (19925,'C_One_Eyed_Glasses','Costume Monocle','Armor',true,1,807); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (19928,'C_Gothic_Heart_Wing','Costume Gothic Heart Wing','Armor',true,true,1,1111); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`view`) VALUES (19929,'C_Classical_Ribbon','Costume Classical Ribbon','Armor',10,true,1112); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19930,'C_Angel_Mini_Silk_Hat','Costume Angel Mini Silk Hat','Armor',true,1,1113); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`view`) VALUES (19931,'C_Lazy_Raccoon','Costume Lazy Smokie','Armor',10,true,168); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`view`) VALUES (19932,'C_Cap_Of_Concentration','Costume Model Training Hat','Armor',10,true,157); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19934,'C_10Gallon_Hat_Of_Flame','Costume Alive Ten Gallon Hat Of Flame','Armor',10,true,1,1075); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19935,'C_Hunting_Cap_Of_Gust','Costume Hunting Cap Of Gust','Armor',true,1,1076); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19936,'C_Knit_Cap_Of_Water','Costume Knit Cap Of Water','Armor',true,1,1077); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19937,'C_Silk_Hat_Of_Earth','Costume Silk Hat of Earth','Armor',true,1,1078); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`) VALUES (19938,'C_Love_Rabbit_Hood','Costume Love Rabbit Hood','Armor',true,true,true,1,549,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19939,'C_Antler','Costume Antlers','Armor',true,1,71); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19941,'C_Ear_Mufs','Costume Ear Muffs','Armor',true,1,70); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19949,'C_RWC2013_Japan_Hat','Costume RWC2013 Japan Hat','Armor',true,1,1136); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (19952,'C_Bubble_Gum_in_Mouth','Costume Bubble Gum in Mouth','Armor',true,1,572); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19953,'C_Parade_Cap','Costume Parade Cap','Armor',true,1,465); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (19954,'C_3D_Glasses','Costume 3D Glasses','Armor',true,1,661); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`view`) VALUES (19955,'C_Mini_Tree_J','Costume Mini Tree J','Armor',true,727); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19956,'C_Soldier_Hat','Costume Soldier Hat','Armor',true,1,420); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19957,'C_Scooter_Hat','Costume Scooter Hat','Armor',true,1,588); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19958,'C_Choir_Hat','Costume Choir Hat','Armor',true,1,1137); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19959,'C_Drooping_Argiope','Costume Drooping Argiope','Armor',true,1,1138); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19960,'C_Chain_Puppet','Costume Chain Puppet','Armor',true,1,1139); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19961,'C_Rune_Circlet','Costume Rune Circlet','Armor',10,true,1,623); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19962,'C_Mitra','Costume Mitra','Armor',10,true,1,624); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19963,'C_Driver_Band_R','Costume Driver Band(Red)','Armor',10,true,1,626); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19964,'C_Driver_Band_Y','Costume Driver Band(Yellow)','Armor',10,true,1,637); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19965,'C_Shadow_Handicraft','Costume Shadow Handicraft','Armor',10,true,1,627); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19966,'C_Minstrel_Song_Hat','Costume Minstrel Song\'s Hat','Armor',10,true,1,628); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19967,'C_Midas_Whisper','Costume Midas Whisper','Armor',10,true,1,629); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19968,'C_Magic_Stone_Hat','Costume Magic Stone Hat','Armor',10,true,1,630); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19969,'C_Blazing_Soul','Costume Blazing Soul','Armor',10,true,1,631); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19970,'C_Wind_Whisper','Costume Wind Whisper','Armor',10,true,1,633); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19971,'C_Dying_Swan','Costume Dying Swan','Armor',10,true,1,635); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19972,'C_Protect_Of_Crown','Costume Protect Of Crown','Armor',10,true,1,1140); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19973,'C_Circlet_Of_Bone','Costume Circlet Of Bones','Armor',10,true,1,1141); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19974,'C_Camouflage_RabbitHood','Costume Camouflage Rabbit Hood','Armor',10,true,1,1142); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`,`script`) VALUES (19976,'C_Cat_Santa_Hat','Cat Santa Hat','Armor',20,true,1,1144,'bonus bAspdRate,10; bonus bSpeedRate,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19977,'C_Golden_Exclamation','Costume Golden Exclamation Mark','Armor',10,true,1,1145); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19978,'C_Silver_Exclamation','Costume Silver Exclamation Mark','Armor',10,true,1,1146); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19979,'C_Golden_Question','Costume Golden Question Mark','Armor',10,true,1,1147); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19980,'C_Silver_Question','Costume Silver Question Mark','Armor',10,true,1,1148); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`view`) VALUES (19982,'C_Santa\'s_Hat','Costume Santa Hat','Armor',true,20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19983,'C_Flower_Hairpin','Costume Flower Hairpin','Armor',10,true,1,145); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19984,'C_Winter_Hat','Costume Fashion Winter Hat','Armor',true,1,196); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19985,'C_Aura_Quartz_Crown','Costume Aura Quartz','Armor',true,1,866); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19986,'C_Lunatic_Hat','Costume Lunatic Hat','Armor',true,1,521); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19987,'C_Blue_Fur_Hat','Costume Blue Fur Hat','Armor',true,1,280); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19988,'C_Elder_Crown','Costume Elder Crown','Armor',true,1,933); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (19989,'C_Mouton_Life','Costume Mouton Life','Armor',true,1,1156); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19990,'C_Snow_Rabbit_Knit_Hat','Costume Rabbit Knit Hat','Armor',true,1,1157); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19991,'C_Galanthus_Guard','Costume Galanthus Guard','Armor',true,1,1158); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (19992,'C_Chilly_Breath','Costume Chilly Breath','Armor',true,1,885); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19994,'C_saLUsalo_Hat','Costume saLUsalo Hat','Armor',true,1,1171); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19997,'C_Bomb_Hat','Costume Bomb Hat','Armor',true,1,1191); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19998,'C_Dragon_Turtle_Hat','Costume Dragon Turtle Hat','Armor',true,1,1192); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (19996,'Horse_King','Horse King','Armor',10,true,true,true,1,1189,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (19999,'C_Mouse_Hat1','Costume Mouse Hat 1','Armor',10,true,1,1193,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (20000,'C_Mouse_Hat2','Costume Mouse Hat 2','Armor',10,true,1,1194,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (20001,'C_Mouse_Hat3','Costume Mouse Hat 3','Armor',10,true,1,1195,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (20002,'C_Mouse_Hat4','Costume Mouse Hat 4','Armor',10,true,1,1196,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (20003,'C_Mouse_Hat5','Costume Mouse Hat 5','Armor',10,true,1,1197,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20004,'C_Big_Golden_Bell','Costume Big Golden Bell','Armor',true,1,175); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20005,'C_Pegasus_Wing_Ears','Costume Sigrun Wing','Armor',true,1,568); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20006,'C_Dark_Knight_Mask','Costume Dark Knight Mask','Armor',true,true,1,479); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20007,'C_Bullock_Helm_J','Costume Horned Hat','Armor',true,1,322); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20008,'C_General_Helmet','Costume Dragon General Helm','Armor',true,1,729); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20009,'C_Dragon_Skull','Costume Dragon Skull Hat','Armor',true,1,319); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20010,'C_Rainbow_Wing_Ears','Costume Rainbow Ears Feather','Armor',true,1,1198); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20011,'C_Lightning_Speed','Costume Lightning Speed','Armor',true,1,1199); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20012,'C_Double_Horn_Helm','Costume Double Horn Helm','Armor',true,1,1200); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20013,'C_Chef_Hat','Costume Chef Hat','Armor',true,1,111); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`view`) VALUES (20014,'Lincoln_Hat','Costume Lincoln Hat','Armor',10,true,1204); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_Low`,`view`) VALUES (20015,'Lincoln_Beard','Costume Lincoln Beard','Armor',10,true,1205); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`view`) VALUES (20016,'Lobster_Hat','Costume Cool Dinner Hat','Armor',10,true,1206); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`view`) VALUES (20017,'C_Marionette_Doll','Costume Marionette Doll','Armor',10,true,212); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`view`) VALUES (20018,'C_Holo_Ear','Costume Holo Ear','Armor',10,true,1208); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`view`) VALUES (20019,'Beret_Of_Artist','Costume Beret Of Artist','Armor',10,true,1209); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20020,'C_Zaha_Doll_Hat','Costume Zaha Doll Hat','Armor',true,1,461); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20021,'C_Heart_Ribbon_Hairband','Costume Heart Ribbon Hairband','Armor',true,1,708); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20022,'C_Love_Piece','Costume Love Fragment','Armor',true,1,734); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20023,'C_Red_Beret','Costume Red Beret','Armor',true,1,559); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20024,'C_Orange_Ribbon','Costume Orange Ribbon','Armor',true,1,247); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (20025,'C_Cow_Hat1','Costume Cow Hat 1','Armor',10,true,1,1211,100,true,true,true,true,true,true,'bonus bDex,2; bonus2 bAddMonsterDropItem,519,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (20026,'C_Cow_Hat2','Costume Cow Hat 2','Armor',10,true,1,1212,100,true,true,true,true,true,true,'bonus bDex,2; bonus2 bAddMonsterDropItem,519,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (20027,'C_Cow_Hat3','Costume Cow Hat 3','Armor',10,true,1,1213,100,true,true,true,true,true,true,'bonus bDex,2; bonus2 bAddMonsterDropItem,519,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (20028,'C_Cow_Hat4','Costume Cow Hat 4','Armor',10,true,1,1214,100,true,true,true,true,true,true,'bonus bDex,2; bonus2 bAddMonsterDropItem,519,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20029,'C_Donut_in_Mouth','Costume Donut in Mouth','Armor',true,1,569); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20030,'C_Choco_Donut_in_Mouth','Costume Choco Donut in Mouth','Armor',true,1,653); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20031,'C_Bunny_Head_Dress','Costume Bunny Headress','Armor',true,1,1215); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20032,'C_Firinto_Scarf','Costume Firinto Scarf','Armor',true,1,1216); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20033,'C_Buddhist_Priest_Crown','Costume Monk Crown','Armor',true,1,1217); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20034,'C_Jack_Castle_Bat','Costume Jack Castle Bat','Armor',10,true,1,1041); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20035,'C_Miracle_Blue_Rose','Costume Miracle Blue Rose','Armor',true,1,1064); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20036,'C_Sword_Master_Crown','Costume Sword Master Crown','Armor',10,true,1,981); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20037,'C_Owlduke_Silk_Hat','Costume Owlduke Silk Hat','Armor',true,1,982); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`view`) VALUES (20038,'C_Alphonse_Helmet','Costume Alphonse Helmet','Armor',10,true,1214); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20039,'C_Butterfly_Wing_Ear_J','Costume Butterfly Wing Ears','Armor',true,1,695); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20040,'C_Rose_Crown','Costume Chung Hairpin','Armor',true,1,583); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20041,'C_Earth_Goddess_Flower','Costume Rose Headband','Armor',true,1,864); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20042,'C_Hermose_Cap','Costume Hermos Cap','Armor',true,1,478); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20043,'C_Red_Cherry_Blossom','Costume Cherryblossom in Mouth','Armor',true,1,823); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20044,'C_Carmen_Miranda_Hat','Costume Carmen Miranda\'s Hat','Armor',true,1,329); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20045,'C_Samambaia','Costume Samambaia','Armor',true,1,508); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20046,'C_Decoration_bluerose','Costume Blue Ribbon Band','Armor',true,1,1222); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20047,'C_Pray_Cherry_Blossom','Costume Prayer Cherry Blossom','Armor',true,1,1223); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20048,'C_Wind_Of_The_Prairie','Costume Wind Prairie','Armor',true,1,1224); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20049,'C_Plaster','Costume Giant Band Aid','Armor',true,1,147); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20050,'C_Ph.D_Hat','Costume Ph.D Hat','Armor',true,1,98); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20051,'C_Stop_Post','Costume Stop Post','Armor',true,1,59); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20052,'C_AFK_Hat','Costume AFK Hat','Armor',true,1,471); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (20053,'C_W_King_Tiger_Doll_Hat','Costume White King Tiger Doll Hat','Armor',10,true,1,973,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20054,'C_Baby_Pacifier','Costume Baby Pacifier','Armor',true,1,191); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20055,'C_Ghost_Bandana','Costume Ghost Bandana','Armor',true,1,61); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20056,'C_Bride_Corolla','Costume Bride\'s Corolla','Armor',true,1,437); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20057,'C_Feather_Bonnet','Costume Feather Bonnet','Armor',true,1,104); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20058,'C_Hot_Blood_Headband','Costume Hot Blood Headband','Armor',true,1,154); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20059,'C_Welding_Mask','Costume Welding Mask','Armor',true,true,1,79); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20060,'C_Construction_Helmet','Costume Construction Helmet','Armor',true,1,95); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20061,'C_Demo_Mask','Costume Demo Mask','Armor',true,1,52); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`trade_override`,`trade_nodrop`,`equip_script`,`unequip_script`) VALUES (20062,'C_Angel_Stair','Costume Angel Stair','Armor',true,1,100,true,'sc_start SC_HAT_EFFECT,INFINITE_TICK,0;','sc_end SC_HAT_EFFECT;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (20063,'C_Yellow_Brain_Hat','Costume Yellow Brain Hat','Armor',10,true,1,1228,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (20064,'C_Blue_Brain_Hat','Costume Blue Brain Hat','Armor',10,true,1,1229,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20065,'C_Hairband_Of_Grandpeco','Costume Grand Peco Hairband','Armor',true,1,473); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20066,'C_Pecopeco_Hairband','Costume Pecopeco Hairband','Armor',true,1,314); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (20067,'C_White_Rabbit_Headband','Costume White Rabbit Headband','Armor',true,1,719,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (20068,'C_Black_Rabbit_Headband','Costume Black Rabbit Headband','Armor',true,1,718,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20069,'C_Gryphon_Hairband','Costume Gryphon Hairband','Armor',true,1,1233); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20070,'C_Alpaca_Hood','Costume Alpaca Hood','Armor',true,1,1234); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20071,'C_Worg_In_Mouth','Costume Worg In Mouth','Armor',true,1,1235); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20073,'C_Hair_Band','Costume Hair Band','Armor',true,1,9); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20074,'C_Biretta','Costume Biretta','Armor',true,1,11); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20075,'C_Little_Fhat','Costume Little Feather Hat','Armor',true,1,715); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20076,'C_Idun_Wing_Ears','Costume Idun Feather Ears','Armor',true,1,724); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20077,'C_Wing_Form_Spectacle','Costume Wing Frame Sunglasses','Armor',true,1,925); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20078,'C_White_Feather','Costume White Feather','Armor',true,1,741); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20079,'C_Love_Daddy_2013','Costume Forgotten Angel Wing','Armor',true,1,1104); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20080,'C_Shaman\'s_Hair_Orna','Costume Shaman Hair Ornament','Armor',true,1,476); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20081,'C_Metal_Dragon_Helm','Costume Metal Dragon Helm','Armor',true,1,1242); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20082,'C_Metal_Dragon_Hat','Costume Metal Dragon Hat','Armor',true,1,1243); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20083,'C_Mythlit_Hat','Costume Mythlit Hat','Armor',true,1,1244); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20084,'C_Clover_Coronet','Costume Ceremonial Hat','Armor',true,1,325); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20085,'C_Clover_Silkhat','Costume St Patrick\'s Hat','Armor',true,1,735); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (20086,'C_Dragon_Cintamani_Hat1','Costume Dragon Cintamani Hat','Armor',true,1,1245,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (20087,'C_Dragon_Cintamani_Hat2','Costume Dragon Cintamani Hat','Armor',true,1,1246,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (20088,'C_Dragon_Cintamani_Hat3','Costume Dragon Cintamani Hat','Armor',true,1,1247,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (20089,'C_Dragon_Cintamani_Hat4','Costume Dragon Cintamani Hat','Armor',true,1,1248,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20090,'C_Egg_Shell','Costume Egg Shell','Armor',true,1,101); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20091,'C_Smoking_Pipe','Costume Pipe','Armor',true,1,55); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20092,'C_Sales_Signboard','Costume Sales Banner','Armor',true,1,183); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20093,'C_Star_Sparkling','Costume Wizard Hat','Armor',true,1,36); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20094,'C_Fillet_Green','Costume Green Ribbon','Armor',true,1,439); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20095,'C_Fillet_Red','Costume Red Ribbon','Armor',true,1,440); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20096,'C_Fillet_Blue','Costume Blue Ribbon','Armor',true,1,441); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20097,'C_Fillet_White','Costume White Ribbon','Armor',true,1,442); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20098,'C_Vampire_Hairband','Costume Vampire Hairband','Armor',true,1,1238); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`equip_script`,`unequip_script`) VALUES (20099,'C_Ljosalfar','Flying Ljosalfar','Armor',true,1,1239,'sc_start SC_LJOSALFAR,INFINITE_TICK,0;','sc_end SC_LJOSALFAR;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20100,'C_Volume_Fhat','Costume Volume Fhat','Armor',true,1,1240); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20101,'C_Bragi_Wing_Ears','Costume Bragi Wing Ears','Armor',true,1,1241); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20102,'C_Horse_King_J','Costume Horse King J','Armor',true,true,true,1,1189); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20103,'C_Drooping_Panda','Costume Drooping Panda','Armor',true,1,1029); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20104,'C_Picky_Egg_Shell','Costume Picky Egg Shell','Armor',true,1,1001); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20105,'C_Fish_Head_Hat','Costume Fish Head','Armor',true,1,386); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20106,'C_Classic_Hat','Costume Classic Hat','Armor',true,1,475); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20107,'C_Fish_In_Mouth','Costume Fish In Mouth','Armor',true,1,406); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20108,'C_Blind_Glasses','Costume Blind Glasses','Armor',true,1,813); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20109,'C_Jolly_Roger','Costume Jolly Roger Hat','Armor',true,1,962); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (20110,'C_Coiledup_Snake','Costume Coiledup Snake','Armor',true,1,1258,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (20111,'C_Coiledup_Snake_Hat2','Costume Coiledup Snake Hat','Armor',true,1,1259,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20112,'C_Aqua_Ten_Gallon_Hat','Costume Aqua Ten Gallon Hat','Armor',true,1,1256); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20113,'C_Star_Reading_Hat','Costume Star Reading Hat','Armor',true,1,1253); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20114,'C_Funeral_Costume','Costume Funeral Hat','Armor',true,1,77); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20115,'C_Under_Rim_Glasses','Under Rim Glasses','Armor',true,1,1255); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20116,'C_Mermaid_Headphone','Mermaid Headphone','Armor',true,1,1254); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20117,'C_Raspberry_Mousse_Hat','Raspberry Mousse Hat','Armor',true,1,1257); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20118,'C_Hat_Of_Cake','Costume Cake Hat','Armor',true,1,109); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20119,'C_Fur_Hat','Costume Beanie','Armor',true,1,160); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20120,'C_Antenna','Costume Aerial','Armor',true,1,97); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20121,'C_Lotus_Flower_Hat','Costume Flower Lily','Armor',true,1,324); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20122,'Happy_Summer_Ribbon','Costume Happy Summer Ribbon','Armor',true,1,1260); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20123,'C_Eagle_Eyes','Costume Eagle Eyes','Armor',true,1,63); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20124,'C_Masquerade','Costume Masquerade','Armor',true,1,78); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20125,'C_Mini_Glasses','Costume Mini Glasses','Armor',true,1,47); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20126,'C_Odium_Thanatos_Mask','Costume Odium Thanatos Mask','Armor',true,true,1,667); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20127,'C_Abysmal_Knight_Helm','Costume Abysmal Knight Helm','Armor',true,1,371); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20128,'C_Remover_Hat','Costume Remover Hat','Armor',true,1,655); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20129,'C_Poporing_Cap','Costume Poporing Cap','Armor',true,1,361); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20130,'C_Whisper_Tall_Hat','Costume Whisper Tall Hat','Armor',true,1,1265); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20131,'C_C_Tower_Manager_Incom','Costume Clock Tower Manager','Armor',true,1,1266); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20132,'C_Subject_Aura','Costume Aura Vicious Mind','Armor',true,1,1267); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20133,'C_Poring_Mascot_Costume','Costume Poring Mascot','Armor',true,1,1268); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20134,'C_Helm_Of_Abyss_White','Costume White Helm Of Abyss','Armor',true,1,1269); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (20135,'C_12_Anniversary_Crown_Of_Saint','Costume 12 Anniversary Crown of Saint','Armor',true,1,1117,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (20136,'C_12_Anniversary_Elf_Ears','Costume 12 Anniversary Elf Ears','Armor',true,1,875,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20137,'C_Bomb_Wick','Costume Bomb Wick','Armor',true,1,66); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20138,'C_Sea_Otter_Hat','Costume Sea Otter Hat','Armor',true,1,162); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (20139,'C_Horse_Hairpin','Costume Horse Hairpin','Armor',true,1,1271,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (20140,'C_Horse_Hairpin_','Costume Horse Hairpin','Armor',true,1,1272,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20141,'C_Observer','Costume Observer','Armor',true,1,337); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20142,'C_Machoman_Glasses','Costume Machoman Glasses','Armor',true,1,92); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20143,'C_Candy_Cane_In_Mouth','Costume Candy Cane In Mouth','Armor',true,1,665); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20144,'C_Ancient_Elven_Ear','Costume Ancient Elven Ear','Armor',true,1,665); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20145,'C_Robo_Eye','Costume Robo Eye','Armor',true,1,345); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20146,'C_Angel_Spirit','Costume Angel of Ghost','Armor',true,1,394); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20147,'C_Bell_Pigeon','Costume Bell of Piegon','Armor',true,1,1034); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20148,'C_Musketeer_Hat','Costume Musketeer Hat','Armor',true,1,466); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20149,'C_Hexagon_Spectacles','Costume Hexagon Glasses','Armor',true,1,822); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20150,'C_Wind_Fan','Costume Wind Fan','Armor',true,1,1051); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20151,'C_Poison_Spore_Hat','Costume Poison Spore Hat','Armor',true,1,899); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20152,'C_Straw_Rice_Bag','Costume Straw Rice Bag','Armor',true,true,true,1,1273); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20153,'C_Monochrome_Cap','Costume Monochrome Cap','Armor',true,1,1274); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`,`equip_script`,`unequip_script`) VALUES (20154,'C_Maple_Which_Falls','Costume Maple Which Falls','Armor',true,1,1275,'sc_start SC_MAPLE_FALLS,INFINITE_TICK,0;','sc_end SC_MAPLE_FALLS;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`view`) VALUES (20155,'C_Ladys_Feather_Hat','Costume Lady\'s Feather Hat','Armor',true,1276); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20156,'C_Fan_in_Mouth','Costume Fan in Mouth','Armor',true,1,857); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20157,'C_Fish_On_Head','Costume Evolved Blue Fish','Armor',true,1,149); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20158,'C_Circlet','Costume Circlet','Armor',true,1,18); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20159,'C_Blue_Hair_Band','Costume Blue Hairband','Armor',true,1,136); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20160,'C_Fried_Egg','Costume Magnolia Hat','Armor',true,1,373); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20161,'C_Prontera_Army_Cap','Costume Army Cap','Armor',true,1,48); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (20162,'C_Fleece_Hat','Costume Fleece Hat','Armor',true,true,true,1,1277,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (20163,'C_Fleece_Hat_','Costume Fleece Hat','Armor',true,true,true,1,1278,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20164,'C_Duneyrr_Hat','Costume Duneyrr Hat','Armor',true,1,639); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20165,'C_Tendrilion_Hat','Costume Tendrilion Hat','Armor',true,1,658); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20166,'C_Hockey_Mask','Costume Hockey Mask','Armor',true,true,1,336); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20167,'C_Deviruchi_Headphone','Costume Deviruchi Headphone','Armor',true,1,805); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20168,'C_Skull_Hood','Costume Skull Hood','Armor',true,true,1,598); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20169,'C_Long_Tongue','Costume Long Tongue','Armor',true,1,773); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20170,'C_Brown_Deviruchi_Cap','Costume Brown Deviruchi Cap','Armor',true,1,273); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20171,'C_Sepia_Cap','Costume Sepia Cap','Armor',true,1,1280); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20172,'C_Pumpkin_Head','Costume Pumpkin Hat','Armor',true,1,1281); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20173,'C_Lude_Hood','Costume Lude Hood','Armor',true,1,1282); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20174,'C_Halloween_Hat_Orange','Costume Orange Halloween Hat','Armor',true,1,1283); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20175,'C_Diabolic_Headphone','Costume Diabolic Headphone','Armor',true,1,1284); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20176,'Happy_Pierrot_Mask','Costume Happy Pierrot Mask','Armor',true,true,1,1288); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20177,'C_Drooping_Dorasuke','Costume Drooping Dorasuke','Armor',true,1,1290); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20178,'C_Puppy_Love','Costume Puppy Love','Armor',true,1,94); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (20179,'C_Monkey_On_Fur_Hat','Costume Monkey Coat Hat','Armor',true,1,858,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20180,'C_Westren_Grace','Costume Western Grace','Armor',true,1,32); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20181,'C_Mistic_Rose','Costume Mystic Rose','Armor',true,1,198); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20182,'C_Mottled_Egg_Shell','Costume Rainbow Eggshell','Armor',true,1,124); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20183,'C_There_Is_Something','Costume There\'s..Something..','Armor',true,true,1,1091); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20184,'C_Party_Hat','Costume Party Hat','Armor',true,1,144); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20185,'C_Fashionable_Glasses','Costume Fashionable Glasses','Armor',true,1,131); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20186,'C_Magni_Cap','Costume Magni\'s Cap','Armor',20,true,1,250); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20187,'C_Fricca\'s_Circlet','Costume Fricca\'s Circlet','Armor',true,1,251); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20188,'C_Morpheus\'s_Hood','Costume Morpheus\'s Hood','Armor',true,1,256); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20189,'C_Goibne\'s_Helm','Costume Goibne\'s Helm','Armor',true,1,258); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20190,'C_Chick_Hat_J','Costume Chick Hat J','Armor',true,1,432); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20191,'C_Black_Cat_Ears_Beret','Costume Black Cat Ears Beret','Armor',true,1,1071); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20192,'C_Green_Foxtail','Costume Green Foxtail','Armor',true,1,1058); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20193,'C_Foxtail','Costume Foxtail','Armor',true,1,711); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20194,'C_Lion_Mask','Costume Lion Mask','Armor',true,1,202); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20195,'C_Scratching_Cat','Costume Scratching Cat','Armor',true,true,1,1292); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20196,'C_Leopard_Ear_Hat','Costume Leopard Ear Hat','Armor',true,1,1293); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20197,'C_Amistr_Beret','Costume Amistr Beret','Armor',true,1,1294); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20198,'C_Misty_Ears','Costume Misty Ears','Armor',true,1,1295); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20199,'C_Evil_Marcher_Hat','Costume Evil Marcher Hat','Armor',true,1,687); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20200,'C_Rabbit_Head_Dress','Costume Rabbit Head Dress','Armor',true,1,1095); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20201,'C_Banshee_Master_Kiss','Costume Banshee Master Kiss','Armor',true,1,959); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20202,'C_Deviruchi_Balloon','Costume Deviruchi Balloon','Armor',true,1,1082); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20203,'C_Bandana','Costume Bandana','Armor',true,1,6); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20204,'C_Hunting_Cap','Costume Hunter Hat','Armor',true,1,389); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20205,'C_Fancy_Flower','Costume Fancy Flower','Armor',true,1,4); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (20206,'C_Chicken_Hat','Costume Chicken Hat','Armor',true,true,true,1,1296,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20207,'C_Stripe_Band','Costume Striped Hairband','Armor',true,1,133); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20208,'C_Necktie','Costume Neck Tie','Armor',true,1,443); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`equip_script`,`unequip_script`) VALUES (20209,'C_Mermaid_Longing','Costume Mermaid Bubbles','Armor',true,1,1299,'sc_start SC_MERMAID_LONGING,INFINITE_TICK,0;','sc_end SC_MERMAID_LONGING;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (20210,'C_Chicken_Hat_','Costume Chicken Hat','Armor',true,true,true,1,1297,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (20211,'C_Chicken_Hat__','Costume Chicken Hat','Armor',true,true,true,1,1298,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20212,'C_Loki_Nidhogg_Hat','Costume Loki & Nidhoggur\'s Hat','Armor',true,1,1304); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20213,'C_Sirt_Evil_Eye','Costume Robot Eyes','Armor',true,1,345); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20214,'C_Evil_Marcher_Hat_J','Costume Evil Marcher Hat J','Armor',true,1,1002); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20215,'C_Black_Devil_Mask','Costume Black Devil Mask','Armor',true,1,760); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20216,'C_Rideword_Hat','Costume Rideword Hat','Armor',true,1,890); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20217,'C_Arabian_Veil','Costume Arabian Veil','Armor',true,1,1300); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20218,'C_Spell_Circuit','Costume Spell Circuit','Armor',true,1,1301); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20219,'C_Angel_Marcher_Hat','Costume Angel Marcher Hat','Armor',true,1,1302); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20220,'C_Dark_Night_Veil','Costume Dark Night Veil','Armor',true,true,1,1303); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20221,'C_Eyes_Of_Ifrit','C Eyes Of Ifrit','Armor',true,1,886); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`view`) VALUES (20222,'C_Santa_Hat_2','Costume Blue Pigtail Santa Hat','Armor',true,395); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20223,'C_Centimental_Leaf','Costume Romantic Leaf','Armor',true,1,57); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20224,'C_Red_Tailed_Ribbon','Costume Red Tailed Ribbon','Armor',true,1,167); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20225,'C_Pumpkin_Hat','Costume Pumpkin-Head','Armor',true,1,206); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20226,'C_Hair_Brush','Costume Red Comb','Armor',true,1,445); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (20227,'C_Husky_Hat','Costume Husky Hat','Armor',true,1,1016,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (20228,'C_Pig_MoneyBox','Costume Pig MoneyBox','Armor',true,1,603,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20230,'C_Mask_Of_Bankrupt','Costume Bankruptcy Mask','Armor',true,true,1,936); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20231,'C_Snowman_Hat','Costume Snowman Hat','Armor',true,1,616); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20232,'C_Celines_Ribbon','Costume Celine Ribbon','Armor',true,1,967); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20233,'C_Gold_Angel_Sculpture','Costume Golden Angel','Armor',true,1,646); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`,`script`) VALUES (20234,'C_Baphomet_Hat','Costume Baphomet Hat','Armor',true,true,true,1,1311,'bonus bMaxHPrate,15; bonus bMaxSPrate,15; bonus2 bAddRace,RC_All,15; bonus2 bMagicAddRace,RC_All,15; bonus2 bAddItemHealRate,519,2015;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20235,'C_Frozen_Land_Rose','Costume Frozen Rose','Armor',true,1,1025); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20236,'C_Hellomother_Hat','Costume Arc Angeling Hat','Armor',true,1,241); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20237,'C_Pink_Fur_Hat','Costume Pink Beanie','Armor',true,1,281); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20238,'C_Blue_Drooping_Kitty','Costume Drooping Blue Cat','Armor',true,1,277); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20239,'C_Large_Ribbon_Muffler','Costume Large Ribbon Muffler','Armor',true,1,1312); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`script`) VALUES (20240,'C_Gift_Of_Snow','Costume Gift of Snow','Armor',true,1,'/*TODO: ViewID*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20241,'C_Eclipse_Hat','Costume Eclipse Hat','Armor',true,1,922); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20242,'C_Snownow_Hat','Costume Snownow Hat','Armor',true,1,1313); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20243,'C_Choco_Mint_Bonnet','Costume Choco Mint Bonnet','Armor',true,1,1314); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20244,'C_Zealotus_Mask','Costume Zealotus Mask','Armor',true,true,1,200); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20245,'C_Cat_Paw_Hairpin','Costume Cat Paw Hairpin','Armor',true,1,447); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`,`equip_script`,`unequip_script`) VALUES (20246,'C_Decoration_Time','Costume Decoration Time','Armor',true,1,1309,'sc_start SC_TIME_ACCESSORY,INFINITE_TICK,0;','sc_end SC_TIME_ACCESSORY;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20247,'C_Fate_Of_Black_Hand','Costume Fate Of Black Hand','Armor',true,1,1310); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20248,'C_Black_Strong_Hair','Costume Black Strong Hair','Armor',true,1,1315); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20249,'C_Red_Strong_Hair','Costume Red Strong Hair','Armor',true,1,1316); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20250,'C_White_Strong_Hair','Costume White Strong Hair','Armor',true,1,1317); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20251,'C_Rose_Cascade','Costume Rose Cascade','Armor',true,1,920); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20252,'C_Accessory_of_Ascetic','Costume Mage Decoration','Armor',true,1,1150); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20253,'C_Droopy_Alice_Doll','Costume Drooping Alicel','Armor',true,1,784); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20254,'C_Ribbon_Yellow','Costume Yellow Ribbonn','Armor',true,1,243); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20255,'C_Love_Cheek','Costume Love Cheeks','Armor',true,1,1318); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20256,'C_Honey_Pancakes','Costume Honey Pancake','Armor',true,1,1319); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20257,'C_Black_Rabbit_Bonnet','Costume Black Rabbit Bonnet','Armor',true,1,1320); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20258,'C_Blue_Head_Dress','Costume Blue Headdress','Armor',true,1,1321); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20259,'C_Pink_Clover','Costume Pink Clover','Armor',true,1,1322); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20260,'C_Stardust','Costume Stardust','Armor',true,1,81); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20262,'C_Fox_Ears_Bell_Ribbon','Costume Fox Ears Drop Ribbon','Armor',true,1,1070); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20263,'C_Hat_Of_Drowsy_Cat','Costume Sleeping Cat Hat J','Armor',true,1,838); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20264,'C_Blood_Sucker','Costume Blood Sucker','Armor',true,1,893); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20265,'C_Bird_Nest_Hat','Costume Bird Nest Hat','Armor',true,1,235); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20266,'C_Secret_Zipper','Costume Secret Zipper','Armor',true,1,1324); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20267,'C_Penguin_Cap','Costume Penguin Cap','Armor',true,1,1325); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20268,'C_Sleep_Eclipse_Family','Costume Sleep Eclipse Family','Armor',true,1,1326); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20269,'C_White_Fox_Ear_Ribbon','Costume White Fox Ear Ribbon','Armor',true,1,1327); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20270,'C_Gryphon_Wing_Ears','Costume Gryphon Wing Ears','Armor',true,1,1328); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20271,'C_Sunflower','Costume Sunflower','Armor',true,1,37); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20272,'C_Snowy_Horn','Costume Unicorn Horn','Armor',true,1,42); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20273,'C_Soft_Sheep_Hat','Costume Soft Sheep Hat','Armor',true,1,738); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20274,'C_Polar_Bear_Cap_J','Costume Polar Bear Cap J','Armor',true,1,966); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20277,'C_Balloon_Hat','Costume Balloon Hat','Armor',true,1,385); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20278,'C_Man_Medal','Costume Man\'s Medal','Armor',true,1,775); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20279,'C_Cheering_Whistle','Costume Cheering Whistle','Armor',true,1,952); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20280,'C_Well-Chewed_Pencil','Costume Well-Chewed Pencil','Armor',true,1,555); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20281,'C_Kindergarten_Hat','Costume Kindergarten Hat','Armor',true,1,977); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20282,'C_White_Student_Cap','Costume White Student Cap','Armor',true,1,877); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20283,'C_Over_Protector','Costume Over Protector','Armor',true,1,1329); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20284,'C_Cherry_Blossom_Hat','Costume Sakura Hat','Armor',true,1,1330); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`,`unequip_script`) VALUES (20285,'C_Blossom_Fluttering','Costume Dancing Fallen Sakura','Armor',true,1,1331,100,true,'hateffect HAT_EF_BLOSSOM_FLUTTERING,true;','hateffect HAT_EF_BLOSSOM_FLUTTERING,false;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20286,'C_Under_Rim_Glasses_Red','Costume Under Rim Glasses Red','Armor',true,1,1332); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20287,'C_Mans_Medal_Gold','Costume Man\'s Medal(Gold)','Armor',true,1,1333); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20288,'C_Bijou_Hat','Costume Bijou Hat','Armor',true,1,1334); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20291,'C_Helm_of_Thoth','Costume Helm of Thoth','Armor',true,true,true,1,860); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20292,'C_Black_Ramen_Hat','Costume Black Ramen Hat','Armor',true,1,1338); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20293,'C_Sleeper_Hat','Costume Sleeper Hat','Armor',true,1,590); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20294,'C_Savage_Babe_Hat','Costume Savage Babe Hat','Armor',true,1,553); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20295,'C_Poring_Sunglasses','Costume Poring Sunglasses','Armor',true,1,954); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20296,'C_Yoyo_Hat','Costume Yoyo Hat','Armor',true,1,391); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20297,'C_Cactus_Hat','Costume Cactus Hat','Armor',true,1,615); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20298,'C_Happy_Lunatic_Ear','Costume Happy Lunatic Hanging Ear','Armor',true,1,1340); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20299,'C_Face_Crusher','Costume Face Crusher','Armor',true,true,1,1341); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20300,'C_Hill_Wind_Mask','Costume Hill Wind Mask','Armor',true,true,true,1,1342); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20301,'C_Golden_Savage_Hat','Costume Golden Savage Hat','Armor',true,1,648); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20302,'C_Beelzebub_Crown','Costume Beelzebub Crown','Armor',true,1,1343); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20303,'C_Mandragora_Cap','Costume Mandragora Cap','Armor',true,1,402); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20304,'C_Raccoon_Hat','Costume Raccoon Hat','Armor',true,1,118); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_Low`,`view`) VALUES (20305,'C_NettyHeart_BalloonGum','Costume Nettie Heart Bubble Gum','Armor',20,true,720); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20307,'C_Beginner_Cap','Costume Beginner Cap','Armor',true,1,1348); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20311,'C_Magical_Booster','Costume Magical Booster','Armor',true,1,873); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20312,'C_Barons_Evil_Eye','Costume Baron\'s Evil Eye','Armor',true,1,989); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20313,'C_CD_in_Mouth','Costume CD in Mouth','Armor',true,1,815); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20314,'C_New_Wave_Sunglasses','Costume New Wave Sunglasses','Armor',true,1,856); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20315,'C_Analyze_Eye','Costume Analyze Eye','Armor',true,1,1351); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20316,'C_Seraph_Wing_Helm','Costume Seraph Wing Helm','Armor',true,1,1352); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20317,'C_Nekomimi_Cyber_Headphone','Costume Nekomimi Cyber Headphone','Armor',true,1,1353); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20318,'C_Charleston_Antenna','Costume Charleston Antenna','Armor',true,1,1354); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20319,'C_Crimson_Booster','Costume Crimson Booster','Armor',true,1,1355); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20320,'C_Red_Bandana','Costume Red Bandana','Armor',true,1,62); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20321,'C_Pterios_Fins','Costume Pterios Fins','Armor',true,1,1009); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20322,'C_Seal_Hat','Costume Seal Hat','Armor',true,1,540); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`,`equip_script`,`unequip_script`) VALUES (20323,'C_Sparkling_Sound','Costume Sparkling Sound','Armor',true,1,1074,'sc_start SC_DECORATION_OF_MUSIC,INFINITE_TICK,0;','sc_end SC_DECORATION_OF_MUSIC;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20324,'C_Pigeon_Hat','Costume Pigeon Hat','Armor',true,1,1362); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20325,'C_Little_Aquarium','Costume Little Aquarium','Armor',true,1,1363); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20326,'C_Sailor_Collar','Costume Sailor Collar','Armor',true,1,1364); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20327,'C_Marine_Cap','Costume Marine Cap','Armor',true,1,1365); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20328,'C_Mackerel_Pike','Costume Mackerel Pike','Armor',true,1,1081); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20329,'C_Tare_HSchool_Doll_Hat','Costume Very Cute Doll Hat','Armor',true,1,1084); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20330,'C_Sombrero','Costume Sombrero','Armor',true,1,151); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20331,'C_Desert_Prince','Costume Desert Prince','Armor',true,1,567); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20332,'C_Pure_White_Ribbon','Costume Pure White Ribbon','Armor',true,1,1175); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20333,'C_Family_Hat','Costume Family Hat','Armor',true,1,650); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20334,'C_Joystick_Hat','Costume Joystick Hat','Armor',true,1,1305); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20335,'C_Watery_Eyes','Costume Watery Eyes','Armor',true,1,828); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20338,'C_Colorful_Dancing_Octopus','Costume Colorful Dancing Octopus','Armor',true,1,1007); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20339,'C_Flower_Summer_Hat','Costume Flower Summer Hat','Armor',true,1,1369); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20340,'C_Straight_Pony_Black','Costume Straight Pony Black','Armor',true,1,1371); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20341,'C_Bouncing_Hair_Black','Costume Bouncing Hair Black','Armor',true,1,1372); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20342,'C_Loose_Wave_Twin','Costume Loose Wave Twin','Armor',true,1,1373); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20344,'C_Happy_Balloon_J','Costume: Happy Balloon','Armor',true,1,1289); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20345,'C_Seagod_Protector','Costume Seagod Protector','Armor',true,1,960); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20346,'C_Drooping_Permeter','Costume Drooping Permeter','Armor',true,1,694); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20347,'C_Poring_Pirate_Hat','Costume Poring Pirate Hat','Armor',true,1,726); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20348,'C_Sunday_Hat','Costume Sunday Hat','Armor',true,1,117); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20349,'C_FlyingGalapago','Costume Flying Galapago','Armor',true,1,1358); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20350,'C_Cowlick_YL','Costume Bouncing Hair Yellow','Armor',true,1,1382); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20351,'C_Cowlick_GN','Costume Bouncing Hair Green','Armor',true,1,1383); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20352,'C_Cowlick_PP','Costume Bouncing Hair Purple','Armor',true,1,1384); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20353,'C_Cowlick_RD','Costume Bouncing Hair Red','Armor',true,1,1385); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20354,'C_Cowlick_OM','Costume Bouncing Hair Crimson','Armor',true,1,1386); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20355,'C_Cowlick_BU','Costume Bouncing Hair Blue','Armor',true,1,1387); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20356,'C_Cowlick_WH','Costume Bouncing Hair White','Armor',true,1,1388); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20357,'C_Straight_Pony_YL','Costume Straight Pony Yellow','Armor',true,1,1389); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20358,'C_Straight_Pony_GN','Costume Straight Pony Green','Armor',true,1,1390); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20359,'C_Straight_Pony_PP','Costume Straight Pony Purple','Armor',true,1,1391); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20360,'C_Straight_Pony_RD','Costume Straight Pony Red','Armor',true,1,1392); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20361,'C_Straight_Pony_OM','Costume Straight Pony Crimson','Armor',true,1,1393); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20362,'C_Straight_Pony_BU','Costume Straight Pony Blue','Armor',true,1,1394); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20363,'C_Straight_Pony_WH','Costume Straight Pony White','Armor',true,1,1395); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20364,'C_Loose_Wave_Twin_YL','Costume Loose Wave Twin Yellow','Armor',true,1,1396); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20365,'C_Loose_Wave_Twin_GN','Costume Loose Wave Twin Green','Armor',true,1,1397); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20366,'C_Loose_Wave_Twin_PP','Costume Loose Wave Twin Purple','Armor',true,1,1398); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20367,'C_Loose_Wave_Twin_RD','Costume Loose Wave Twin Red','Armor',true,1,1399); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20368,'C_Loose_Wave_Twin_OM','Costume Loose Wave Twin Crimson','Armor',true,1,1400); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20369,'C_Loose_Wave_Twin_BU','Costume Loose Wave Twin Blue','Armor',true,1,1401); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20370,'C_Loose_Wave_Twin_WH','Costume Loose Wave Twin White','Armor',true,1,1402); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20371,'C_Special_Kafra_Hat','Costume Special Kafra Hat','Armor',true,1,581); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20372,'C_Ribbon_Hat','Costume Ribbon Hat','Armor',true,1,956); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20373,'C_Watermelon_Hat','Costume Watermelon Hat','Armor',true,1,690); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20374,'C_Mechanical_Plant_Hat','Costume Mechanical Plant Hat','Armor',true,1,1069); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20375,'C_Ignis_Cap','Costume Ignis Cap','Armor',true,1,803); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20376,'C_Memories_Of_Lovers','Costume Memory of Lovers','Armor',true,1,1072); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20377,'C_Flight_Cap','Costume Flight Cap','Armor',true,1,820); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20378,'C_Skymet','Costume Sky Met','Armor',true,1,868); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20379,'C_Pocketwatch_Hair_Ornament','Costume Pocketwatch Hair Ornament','Armor',true,1,1404); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20380,'C_Mechanical_Feather_Hairband','Costume Mechanical Feather Hairband','Armor',true,1,1405); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20381,'C_Steampunk_Hat','Costume Steampunk Hat','Armor',true,1,1406); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20382,'C_Silver_Sniper_Doll','Costume Silver Sniper Doll','Armor',true,1,1407); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20383,'C_Magicdecoy_Doll','Costume Magic Decoy Doll','Armor',true,1,1408); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20384,'C_Douce_Tiara','Costume Douce Tiara','Armor',true,1,1410); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20386,'C_Victory_Wing_Helm','Costume Victory Wing Helm','Armor',true,1,677); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20391,'C_Silent_Executor','Costume Silent Executor','Armor',true,true,1,632); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20392,'C_Sniper_Google','Costume Sniper Google','Armor',true,true,1,625); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20393,'C_Schmitz_Helm','Costume Schmitz Helm','Armor',true,1,634); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20394,'C_Pumpkin_Toque','Costume Pumpkin Toque','Armor',true,1,1411); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20395,'C_BlackWitchHat','Costume Black Witch Hat','Armor',true,1,1006); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20396,'C_Woodie_Hat','Costume: Woodie Hat','Armor',true,1,939); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`,`script`) VALUES (20397,'C_Jakk','Costume Jack','Armor',true,true,1,1415,'autobonus2 "{}",31,10000,BF_WEAPON|BF_MAGIC,"{ active_transform 1130,10000; specialeffect2 372; /*Confirm Special Effect*/ }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20398,'C_Niflheim_Bunny_Hat','Costume Niffleheim Bunny Hat','Armor',true,1,1285); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20399,'C_Crow_Tengu_Mask','Costume Crow Tengu Mask','Armor',true,1,1287); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20400,'C_Ichthys_Rosario','Costume Ichthys Rosario','Armor',true,1,1028); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20401,'C_Angel_Guidance','Costume Angel Guidance','Armor',true,1,1188); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20402,'C_Holy_Klobuk','Costume Holy Klobuk','Armor',true,1,895); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20403,'C_Dolor_Thanatos','Costume Dolor Thanatos','Armor',true,1,547); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`,`script`,`unequip_script`) VALUES (20404,'C_Blessing_Of_Angels','Costume Blessing of Angel','Armor',true,1,1425,'hateffect(HAT_EF_BLESSING_OF_ANGELS,true);','hateffect(HAT_EF_BLESSING_OF_ANGELS,false);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20405,'C_Eremes_Scarf','Costume Eremes Scarf','Armor',true,1,1416); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20406,'C_Commandments_Of_Chain','Costume Chain of Commandments','Armor',true,1,1417); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20407,'C_Subject_Aura_Red','Costume Vicious Mind Aura Crimson','Armor',true,1,1418); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20408,'C_Requiem_Crown_of_Light_and_Dark','Costume Requiem Crown of Light and Dark','Armor',true,1,1419); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20409,'C_There_is_Something_','Costume There is Something','Armor',true,1,1091); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20416,'C_1Grade_Balloon','Costume Grade 1 Balloon','Armor',true,1,1426); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20417,'C_2Grade_Balloon','Costume Grade 2 Balloon','Armor',true,1,1427); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20418,'C_3Grade_Balloon','Costume Grade 3 Balloon','Armor',true,1,1428); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20419,'C_4Grade_Balloon','Costume Grade 4 Balloon','Armor',true,1,1429); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20420,'C_5Grade_Balloon','Costume Grade 5 Balloon','Armor',true,1,1430); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20421,'C_6Grade_Balloon','Costume Grade 6 Balloon','Armor',true,1,1431); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20422,'C_7Grade_Balloon','Costume Grade 7 Balloon','Armor',true,1,1432); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20423,'C_8Grade_Balloon','Costume Grade 8 Balloon','Armor',true,1,1433); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20424,'C_9Grade_Balloon','Costume Grade 9 Balloon','Armor',true,1,1434); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20425,'C_10Grade_Balloon','Costume Grade 10 Balloon','Armor',true,1,1435); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20426,'C_11Grade_Balloon','Costume Grade 11 Balloon','Armor',true,1,1436); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20427,'C_12Grade_Balloon','Costume Grade 12 Balloon','Armor',true,1,1437); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20428,'C_13Grade_Balloon','Costume Grade 13 Balloon','Armor',true,1,1438); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20429,'C_Piamette_Bowtie','Costume Piamette Bowtie','Armor',true,1,1439); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20430,'C_Morocc_Kid_Servant','Costume Loyal Servant of Devil Morocc','Armor',true,1,1440); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20431,'C_Magician_Headdress','Costume Magician Headdress','Armor',true,1,1441); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20432,'C_Khalitzburg_KN_Helm','Costume Khalitzburg Knight Helm','Armor',true,1,1442); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20433,'C_Louise_Red_Hat','Costume Louise Red Hat','Armor',true,1,1443); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20434,'C_Drooping_Gunslinger','Costume Drooping Gunslinger','Armor',true,1,1444); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`script`,`unequip_script`) VALUES (20435,'C_Camellia_Hair_Pin','Costume Camellia Hair Pin','Armor',true,1,1203,'hateffect(HAT_EF_CAMELLIA_HAIR_PIN,true);','hateffect(HAT_EF_CAMELLIA_HAIR_PIN,false);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20436,'C_Angelring_Furhat','Costume Angelring Furhat','Armor',true,1,953); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20437,'C_Sakura_Hairband','Costume Sakura Hairband','Armor',true,1,949); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20438,'C_Abacus_In_Mouth','Costume Abacus In Mouth','Armor',true,1,825); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`script`,`unequip_script`) VALUES (20439,'C_New_Year_Shine','Costume New Year Shine','Armor',true,1,'hateffect(HAT_EF_GLOW_OF_NEW_YEAR,true);','hateffect(HAT_EF_GLOW_OF_NEW_YEAR,false);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20440,'C_Tone_of_Gold','Costume Tone of Gold','Armor',true,1,1447); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20441,'C_Large_Ribbon_Muffler_Red','Costume Large Ribbon Muffler Red','Armor',true,1,1448); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20442,'C_Red_and_White_Mochiring_Hat','Costume Red and White Mochiring Hat','Armor',true,1,1449); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20446,'C_Bunny_Eggshell','Costume Bunny Eggshell','Armor',true,1,1339); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20447,'C_Small_Poring_Band','Costume Small Porings Headband','Armor',true,1,955); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20448,'C_Cons_Of_Water','Costume Water Spellcaster','Armor',true,1,1451); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20449,'C_White_Black_Temp','Costume White and Black Temptation','Armor',true,1,1452); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20450,'C_Gram_Peony','Costume Gram Peony','Armor',true,1,1453); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20451,'C_Sky_of_Memory','Costume Sky of Memory','Armor',true,1,1454); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20452,'C_Crown_of_Strawberry_Prince','Costume Crown of Strawberry Prince','Armor',true,1,1455); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20455,'C_Republic_Hat','Costume Republic Hat','Armor',true,1,1458); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20456,'C_Combat_Vestige','Costume Combat Vestige','Armor',true,1,1460); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`,`script`,`unequip_script`) VALUES (20457,'C_Feather_Fluttering','Costume Fluttering Feathers','Armor',true,1,1461,'hateffect(HAT_EF_FEATHER_FLUTTERING,true);','hateffect(HAT_EF_FEATHER_FLUTTERING,false);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20458,'C_Wild_Poring_Rider','Costume Wild Poring Rider','Armor',true,1,1422); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`,`script`,`unequip_script`) VALUES (20459,'C_Valhalla_Idol','Costume Valhalla Idol','Armor',true,1,1423,'hateffect(HAT_EF_VALHALLA_IDOL,true);','hateffect(HAT_EF_VALHALLA_IDOL,false);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20460,'C_Thorny_Hairband','Costume Thorny Hairband','Armor',true,1,921); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20461,'C_93_Style_Bloody_Wings','Costume 93 Style Bloody Wings','Armor',true,1,1037); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20462,'C_Cat_Ears_Cape','Costume Cat Ears Cape','Armor',true,1,1464); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20463,'C_Two_Tone_Beret','Costume Two Tone Beret','Armor',true,1,1465); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20464,'C_Monochrome_RibbonHat','Costume Monochrome Ribbon Hat','Armor',true,1,1466); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20465,'C_Glasses_Without_Lens','Costume Glasses Without Lens','Armor',true,1,1467); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20466,'C_Crimson_Ribbon','Costume Crimson Ribbon','Armor',true,1,1468); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20467,'C_Elemental_Crown','Costume Elemental Crown','Armor',true,1,1219); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20468,'C_Youinone_Mask','You in ONE','Armor',true,true,true,1,1462); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20470,'C_SweetChocolate_Hat','Costume Sweet Chocolate Hat','Armor',true,1,1469); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`location_costume_head_Mid`,`location_costume_head_Low`,`view`) VALUES (20481,'C_Mask_of_Ifrit','Costume Mask of Ifrit','Armor',20,true,true,true,421); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20482,'C_Heaven_Cage','Costume Heaven Cage','Armor',true,1,1286); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20483,'C_Butterfly_Barrettes','Costume Butterfly Barrettes','Armor',true,1,1027); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20486,'C_Twin_Margaret','Costume Twin Margaret','Armor',true,1,1472); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`,`script`,`unequip_script`) VALUES (20487,'C_Floral_Waltz','Costume Waltz of Flowers','Armor',true,1,1473,'hateffect(HAT_EF_FLORAL_WALTZ,true);','hateffect(HAT_EF_FLORAL_WALTZ,false);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20488,'C_Pope_Ribbon','Costume Pope Ribbon','Armor',true,1,1474); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20489,'C_Pope_Crown','C Pope Crown','Armor',true,1,1475); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20490,'C_Full_Bloom_Hp_Blue','Costume: Full Bloom HP(Blue)','Armor',true,1,1476); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20491,'C_Laser_of_Eagle','Costume Laser of Eagle','Armor',true,1,1424); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20492,'C_Unidentified_Flying_Poring','Costume Unidentified Flying Poring','Armor',true,1,1017); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (20493,'C_Wing_Headphone','Costume Wing Headphone','Armor',true,1,1347); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20495,'C_Quati_Hat_J','Costume Quati Hat','Armor',true,1,527); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20496,'C_Black_Shiba_Inu_Hat','Costume Black Shiba Inu Hat','Armor',true,1,894); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20497,'C_Umbala_Spirit','Costume Umbala Spirit','Armor',true,1,675); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20498,'C_Elephant_Hat','Costume Elephant Hat','Armor',true,1,215); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20499,'C_Cat_Ears_Hat','Costume Cat Ears Hat','Armor',true,1,1479); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_Garment`,`equip_level_min`,`view`) VALUES (20500,'T_Archangel_Wing','Archangel Wing','Armor',true,1,1); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_Garment`,`equip_level_min`,`view`) VALUES (20502,'C_Devil_Wing','Costume Little Devil Wings','Armor',true,1,12); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_Garment`,`equip_level_min`,`view`) VALUES (20504,'C_Cupid_Wing_Pink','Costume Cupid\'s Pink Wings','Armor',true,1,14); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_Garment`,`equip_level_min`) VALUES (20506,'Invisible_Manteau','Invisible Manteau','Armor',true,1); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_Garment`,`equip_level_min`,`view`) VALUES (20507,'C_Poring_Bag','Costume Poring Bag','Armor',true,1,16); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (20508,'C_Poster_Girl_Hat','Costume Poster Girl Hat','Armor',true,1,1446); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_Garment`,`equip_level_min`,`view`) VALUES (20509,'C_Wings_of_Uriel','Costume Wings of Uriel','Armor',true,1,17); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_Garment`,`equip_level_min`,`view`) VALUES (20510,'C_SwordWing','Costume Sword Wing','Armor',true,1,19); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_Garment`,`equip_level_min`,`view`) VALUES (20511,'C_Blue_Fairy_Wing','Blue Wings of Fairy','Armor',true,1,21); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_Garment`,`equip_level_min`,`view`) VALUES (20512,'C_Bag_of_Adventurer_j','Costume Adventurer\'s Backpack','Armor',true,1,2); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_Garment`,`equip_level_min`,`view`) VALUES (20514,'C_Thanatos_Sword','Costume Thanatos Sword','Armor',true,1,23); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_Garment`,`equip_level_min`,`script`,`unequip_script`) VALUES (20515,'C_Magic_Circle','Costume Magic Circle','Armor',true,1,'hateffect(HAT_EF_MAGICCIRCLE,true);','hateffect(HAT_EF_MAGICCIRCLE,false);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_Garment`,`equip_level_min`,`view`) VALUES (20516,'C_Wings_of_Michael','Costume Wings of Michael','Armor',true,1,24); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_Garment`,`equip_level_min`,`view`) VALUES (20517,'C_GiantCatBag_TW','Costume Giant Cat Backpack','Armor',true,1,25); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_Garment`,`equip_level_min`,`script`,`unequip_script`) VALUES (20519,'C_Full_BloomCherry_Tree','Costume Full Bloom Cherry Tree','Armor',true,1,'hateffect(HAT_EF_FULL_BLOOMCHERRY_TREE,true);','hateffect(HAT_EF_FULL_BLOOMCHERRY_TREE,false);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`script`,`unequip_script`) VALUES (20522,'C_Blessings_Of_Soul','Costume Blessings Of Soul','Armor',true,1,'hateffect(HAT_EF_C_BLESSINGS_OF_SOUL,true);','hateffect(HAT_EF_C_BLESSINGS_OF_SOUL,false);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_Garment`,`equip_level_min`,`script`,`unequip_script`) VALUES (20524,'C_Shining_Angel_Wings','Costume Shining Angel Wings','Armor',true,1,'hateffect(HAT_EF_C_SHINING_ANGEL_WING,true);','hateffect(HAT_EF_C_SHINING_ANGEL_WING,false);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_Garment`,`equip_level_min`,`view`) VALUES (20530,'C_Wings_of_Gabriel','Costume Wings of Gabriel','Armor',true,1,37); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_Garment`,`equip_level_min`,`view`) VALUES (20533,'C_PinkButterfly_Wing_T','Costume Fly Like a Butterfly (Pink)','Armor',true,1,38); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_Garment`,`equip_level_min`,`script`,`unequip_script`) VALUES (20535,'C_Digital_Space','Costume Digital Space','Armor',true,1,'hateffect(HAT_EF_DIGITAL_SPACE,true);','hateffect(HAT_EF_DIGITAL_SPACE,false);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_Garment`,`equip_level_min`,`script`,`unequip_script`) VALUES (20537,'C_Falling_Red_Foliage','Costume Falling Red Foliage','Armor',true,1,'hateffect(HAT_EF_C_MAPLE_WHICH_FALLS_RD,true);','hateffect(HAT_EF_C_MAPLE_WHICH_FALLS_RD,false);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_Garment`,`equip_level_min`,`script`,`unequip_script`) VALUES (20538,'Costume_Magic_Circle_Rainbow','Costume Magic Circle Rainbow','Armor',true,1,'hateffect(HAT_EF_MAGICCIRCLERAINBOW,true);','hateffect(HAT_EF_MAGICCIRCLERAINBOW,false);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_Garment`,`equip_level_min`,`view`) VALUES (20543,'C_Halloween_Poring_Bag','Costume Halloween Poring Bag','Armor',true,1,44); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_Garment`,`equip_level_min`,`view`) VALUES (20546,'C_Backside_Ribbon_Bell','Costume Giant Ribbon Bell','Armor',true,1,46); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_Garment`,`equip_level_min`,`script`,`unequip_script`) VALUES (20547,'C_Ghost_Effect','Costume Ghost Effect','Armor',true,1,'hateffect(HAT_EF_C_GHOST_EFFECT,true);','hateffect(HAT_EF_C_GHOST_EFFECT,false);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_Garment`,`equip_level_min`,`script`,`unequip_script`) VALUES (20548,'Costume_Popping_Poring_Aura','Costume Popping Poring Aura','Armor',true,1,'hateffect(HAT_EF_C_POPPING_PORING_AURA,true);','hateffect(HAT_EF_C_POPPING_PORING_AURA,false);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_Garment`,`equip_level_min`,`view`) VALUES (20570,'C_HeartChocoBag','Costume HeartChocoBag','Armor',true,1,47); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_Garment`,`equip_level_min`,`view`) VALUES (20572,'C_WingOfHeart','Costume WingOfHeart','Armor',true,1,50); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_Garment`,`equip_level_min`,`view`) VALUES (20576,'C_Cat_Fork','Costume Cat Fork','Armor',true,1,53); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_Garment`,`equip_level_min`,`view`) VALUES (20582,'C_T_Bear_Bag','Costume Bear Backpack','Armor',true,1,60); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_Garment`,`equip_level_min`,`view`) VALUES (20584,'C_Big_Foxtail','Costume Fox Tail','Armor',true,1,62); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_Garment`,`equip_level_min`,`view`) VALUES (20588,'C_Nifl_Bloom','Costume Broom of Witch','Armor',true,1,65); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_Garment`,`equip_level_min`,`view`) VALUES (20592,'C_Santa_Backpack','Costume Santa\'s Pocket','Armor',true,1,70); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_Garment`,`equip_level_min`,`script`) VALUES (20600,'Fantastic_Aura','Fantastic Aura','Armor',true,1,'/*TODO: View ID*/ bonus bUnbreakableHelm;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20700,'Egir_Manteau','Egir Manteau','Armor',200000,300,10,1,true,110,true,'bonus bUnbreakableGarment; .@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); }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20701,'Sol_Manteau','Sol Manteau','Armor',700,20,1,true,65,true,'bonus2 bSubDefEle,Ele_Earth,5; bonus2 bMagicSubDefEle,Ele_Earth,5; bonus2 bSubRace,RC_Fish,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_garment`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (20702,'TE_Woe_Muffler','TE Woe Muffler','Armor',5,true,40,true,100,true,true,true,true,true,true,true,'bonus bMdef,5; bonus2 bAddRace,RC_Player_Human,5; bonus2 bMagicAddRace,RC_Player_Human,5; bonus2 bResEff,Eff_Freeze,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_garment`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (20703,'TE_Woe_Manteau','TE Woe Manteau','Armor',10,true,true,true,true,true,true,true,40,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_Player_Human,10; bonus2 bResEff,Eff_Freeze,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`job_acolyte`,`job_mage`,`job_monk`,`job_novice`,`job_priest`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_wizard`,`location_garment`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (20704,'TE_Woe_Magic_Manteau','TE Woe Magic Manteau','Armor',5,true,true,true,true,true,true,true,true,true,true,40,true,100,true,true,true,true,true,true,true,'bonus2 bMagicAddRace,RC_Player_Human,10; bonus2 bResEff,Eff_Freeze,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_garment`,`equip_level_min`,`view`,`script`) VALUES (20706,'Amistr_Bag','Amistr Bag','Armor',10,500,18,true,1,4,'bonus bAllStats,1; bonus2 bSubEle,Ele_All,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_garment`,`refineable`,`view`,`script`) VALUES (20707,'Kirin_Wing','Kirin Wing','Armor',20,18,true,true,6,'bonus bAllStats,1; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_garment`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (20709,'Mana_Manteau','Mana Manteau','Armor',true,1,true,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddRace,RC_All,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20710,'Impr_Angel\'s_Warmth','Advanced Angelic Cardigan','Armor',10000,400,6,1,true,true,true,99,true,'bonus bHPrecovRate,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`refineable`,`script`) VALUES (20711,'Manteau_Of_Diego','Manteau Of Diego','Armor',20,600,15,1,true,true,'bonus bInt,1; bonus bDex,1; bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_alchemist`,`job_archer`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_monk`,`job_priest`,`job_rebellion`,`job_rogue`,`job_sage`,`job_swordman`,`job_thief`,`job_wizard`,`class_upper`,`class_third`,`class_third_upper`,`class_third_baby`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20712,'Valkyrie_Cape','Valkyrie Cape','Armor',10,500,10,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,true,'.@val = 2 * (min(10,getrefine())/2); if (BaseClass == Job_Mage || BaseClass == Job_Archer || BaseClass == Job_Acolyte) bonus bFlee2,(5+.@val); else if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief) bonus bShortWeaponDamageReturn,(5+.@val);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20714,'Assassin\'s_Muffler','Assassin\'s Muffler','Armor',20,100,16,1,true,50,true,'.@r = getrefine(); if (.@r>5) { bonus bAgi,(.@r-5)*2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20716,'Spirit_Manteau','Spirit Manteau','Armor',20,700,20,1,true,65,true,'bonus2 bSubEle,Ele_Ghost,5; bonus2 bSubRace,RC_Angel,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20717,'FaceWorm_Skin','Gigant Snake Skin','Armor',10,400,38,true,1,true,'bonus bMdef,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20718,'FaceWorm_Skin_','Gigant Snake Skin','Armor',10,400,38,1,true,1,true,'bonus bMdef,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`class_third`,`class_third_upper`,`class_third_baby`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20721,'Cloak_Of_Gray','Cloak of Gray','Armor',20,600,45,1,true,true,true,true,120,true,'bonus2 bSubEle,Ele_Holy,5+getrefine()/2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (20724,'Love_Dad_Wings_2012','Love Dad Wings 2012','Armor',100,15,1,true,1,true,5,'.@r = getrefine(); if ((readparam(bStr)>89)) { bonus bAllStats,1; bonus bStr,.@r; bonus bMaxHPRate,1; bonus bMaxSPRate,1; } if ((readparam(bAgi)>89)) { bonus bAllStats,1; bonus bAgi,.@r; bonus bMaxHPRate,1; bonus bMaxSPRate,1; } if ((readparam(bVit)>89)) { bonus bAllStats,1; bonus bVit,.@r; bonus bMaxHPRate,1; bonus bMaxSPRate,1; } if ((readparam(bInt)>89)) { bonus bAllStats,1; bonus bInt,.@r; bonus bMaxHPRate,1; bonus bMaxSPRate,1; } if ((readparam(bDex)>89)) { bonus bAllStats,1; bonus bDex,.@r; bonus bMaxHPRate,1; bonus bMaxSPRate,1; } if ((readparam(bLuk)>89)) { bonus bAllStats,1; bonus bLuk,.@r; bonus bMaxHPRate,1; bonus bMaxSPRate,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`magic_attack`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (20725,'Ribbon_Piamat','Ribbon Piamat','Armor',10,100,10,1,true,30,true,7,'bonus bInt,1; bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20726,'Fire_Dragon\'s_Coat','Fire Dragon\'s Coat','Armor',20,300,1,true,30,true,'bonus bMaxHPrate,5; bonus2 bMagicAtkEle,Ele_Fire,2; if (getrefine()>=7) { bonus2 bMagicAtkEle,Ele_Fire,3; } bonus2 bMagicAtkEle,Ele_Water,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_Garment`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`) VALUES (20727,'Brilliant_Golden_Wings','Brilliant Golden Wings','Armor',10,true,1,true,5,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20728,'Water_Dragon_Coat','Water Dragon Coat','Armor',10,300,1,true,30,true,'bonus bMaxHPrate,5; bonus2 bMagicAtkEle,Ele_Water,2; if (getrefine()>=7) { bonus2 bMagicAtkEle,Ele_Water,3; } bonus2 bMagicAtkEle,Ele_Wind,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_costume_Garment`,`equip_level_min`,`script`) VALUES (20730,'Loyalists_Hood','Loyalists Hood','Armor',10,200,30,1,true,80,'bonus bStr,2; bonus bMaxHPrate,10; bonus bNoKnockback; bonus2 bSubEle,Ele_All,-20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20732,'Supplement_Part_Con','Supplement Part Con','Armor',25000,500,20,1,true,true,true,true,true,100,true,'.@r = getrefine(); bonus bMaxHPrate,6+(.@r/2); if(.@r>=9){bonus bHPrecovRate,50;}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20733,'Upgrade_Part_Engine','Reinforced Parts - Engine','Armor',10,1500,25,1,true,true,true,true,true,100,true,'bonus bDelayrate,-10; .@r = getrefine(); if(.@r>=7) {bonus2 bSubEle,0,10;}; if(.@r>=9) {bonus bDelayrate,-10;}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_Garment`,`equip_level_min`,`view`) VALUES (20737,'C_Kirin_Wing','Costume Kirin Wing','Armor',10,true,1,6); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`location_garment`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (20743,'Airship_Cape','Airship\'s Cloak','Armor',10,25,1,true,125,100,true,true,true,true,true,true,'bonus2 bSubEle,Ele_Neutral,10; bonus bFlee,20; bonus bVariableCastrate,-20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20744,'Felock_Cape','Felrock\'s Cloak','Armor',10,400,12,1,true,125,true,'bonus2 bSubEle,Ele_Neutral,10; bonus bFlee,20; bonus bVariableCastrate,-10; .@r = getrefine(); if(.@r>=7) { bonus bVariableCastrate,-10; } if(.@r>=9) { bonus bVariableCastrate,-10;} if(.@r>=12) { bonus bVariableCastrate,-5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_Garment`,`equip_level_min`,`view`) VALUES (20746,'C_Rudra_Wing','Costume Rudra Wings','Armor',10,true,1,8); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20748,'Manteau_Of_Fallen','Fallen Warrior Manteau','Armor',10,600,20,true,120,true,'.@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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20749,'Manteau_Of_Fallen_','Fallen Warrior Manteau','Armor',10,600,30,1,true,170,true,'.@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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`range`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20753,'Lian_Robe','Lian Robe','Armor',700,20,1,1,true,65,true,'bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubRace,RC_Formless,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20756,'Aegir_Cloak','Aegir Cloak','Armor',10,300,10,1,true,40,true,'bonus bUnbreakableGarment; bonus bMaxHP,500; bonus bMaxSP,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_Garment`,`equip_level_min`,`view`) VALUES (20761,'C_Wing_Of_Happiness','Costume Happiness Wings','Armor',true,1,9); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_Garment`,`equip_level_min`,`view`) VALUES (20762,'C_GreatDevilWing','Costume Great Devil Wings','Armor',true,1,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_Garment`,`equip_level_min`,`view`) VALUES (20763,'C_Amistr_Bag','Costume Amistr Bag','Armor',true,1,4); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_Garment`,`equip_level_min`,`view`) VALUES (20764,'C_Fallen_Angel_Wing','Costume Fallen Angel Wing','Armor',true,1,3); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_Garment`,`equip_level_min`,`view`) VALUES (20765,'C_Archangel_Wing','Costume Archangel Wing','Armor',true,1,1); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20773,'Excelion_Wing','Excelion Wing','Armor',20,900,40,true,99,true,'bonus bFlee,getrefine() * 2; bonus bFlee2,8 + (BaseLevel > 129 ? 2 : 0);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20778,'Red_Lotus_Stole','Red Lotus Stole','Armor',20,700,8,1,true,1,true,'.@r = getrefine(); bonus bMaxSPrate,10; bonus bMdef,3; bonus bUseSPrate,-1*(1+(2*.@r/3)); if (.@r>=10) { bonus bSPGainValue,20; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (20779,'Rift_Manteau','Rift Manteau','Armor',20,500,16,1,true,100,true,100,true,true,true,true,true,true,'.@r = getrefine(); bonus bMaxHP,(.@r >= 9 ? 1300 : .@r >= 7 ? 700 : 300); bonus bMaxSP,-50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (20780,'Unity_STR_Manteau','Unity STR Manteau','Armor',32000,300,20,1,true,1,true,100,true,true,true,true,true,true,'.@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bMaxHPrate,2*(.@r/2); }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (20781,'Unity_AGI_Manteau','Unity AGI Manteau','Armor',32000,300,20,1,true,1,true,100,true,true,true,true,true,true,'.@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bFlee,3*(.@r/2); }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (20782,'Unity_INT_Muffler','Unity INT Muffler','Armor',32000,300,20,1,true,1,true,100,true,true,true,true,true,true,'.@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bUseSPrate,-(.@r/2); }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20783,'Hero_Cape','Hero Cape','Armor',100,1,true,10,true,'.@r = getrefine(); bonus2 bSubEle,Ele_Neutral,1+(.@r/3); bonus bFlee,1+(.@r/3); if (.@r > 9) { bonus2 bSubEle,Ele_Neutral,20; bonus bFlee,20; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (20787,'Unity_Exquisite_Muffler','Unity Exquisite Muffler','Armor',32000,300,20,1,true,1,true,100,true,true,true,true,true,true,'.@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bCritical,2*(.@r/2); }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20788,'Private_Doram_Manteau','Private Doram Manteau','Armor',20,300,20,1,true,true,true,true,true,100,true,'bonus bFlee,5; bonus2 bSubEle,Ele_Neutral,2; bonus bFlee2,getrefine()/3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20789,'Luxury_Doram_Manteau','Luxury Doram Manteau','Armor',20,400,25,1,true,true,true,true,true,140,true,'bonus bFlee,7; bonus2 bSubEle,Ele_Neutral,3; .@r = getrefine()/3; bonus bFlee2,.@r; bonus bLuk,.@r;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20790,'Elegant_Doram_Manteau','Elegant Doram Manteau','Armor',20,500,30,1,true,true,true,true,true,175,true,'bonus bFlee,10; bonus2 bSubEle,Ele_Neutral,5; .@r = getrefine()/2; bonus bFlee2,.@r; bonus bInt,.@r; bonus bDex,.@r; bonus bLuk,.@r;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20797,'Etran_Shirt','Etran Shirt','Armor',150,1,true,1,true,'bonus bMdef,10; bonus bMaxHPrate,2; .@r = getrefine(); if (.@r >= 6) bonus bMaxHPrate,4; if (.@r >= 7) bonus bMaxHPrate,6; if (.@r >= 8) bonus bMaxHPrate,8; if (.@r >= 9) bonus bNoKnockback;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20798,'GrimReaper_Protection','Costume Grim Reaper Protection','Armor',true,1,1450); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20799,'Elemental_Towel','Elemental Towel','Armor',20,400,13,1,true,100,true,'bonus bLongAtkRate,2; if(getrefine()>=7) { bonus2 bSkillUseSP,"RA_ARROWSTORM",20; bonus2 bSkillUseSP,"WM_SEVERE_RAINSTORM",60; } if(getrefine()>=8) { bonus bLongAtkRate,2; } if(getrefine()>=9) { bonus bLongAtkRate,3; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20800,'Enforcer_Cape','Enforcer Cape','Armor',20,300,18,1,true,100,true,'.@r = getrefine(); bonus bMdef,10; if (getskilllv("AS_GRIMTOOTH")==5) { bonus2 bSkillAtk,"AS_GRIMTOOTH",50; } if (getskilllv("GC_CROSSIMPACT") == 5) { bonus2 bSkillAtk,"GC_CROSSIMPACT",5; } if (getskilllv("ASC_BREAKER") == 10) { bonus2 bSkillAtk,"ASC_BREAKER",50; } if (.@r>=7) { .@delay += 3; bonus2 bSkillAtk,"AS_GRIMTOOTH",Baselevel; bonus2 bSkillAtk,"ASC_BREAKER",Baselevel/3; bonus2 bSkillAtk,"GC_CROSSIMPACT",Baselevel/30; } if (.@r>=9) { .@delay += 3; bonus bMaxSPrate,5; } bonus bDelayrate,-.@delay; if(eaclass()&EAJL_THIRD && BaseJob == Job_Assassin) { if (.@r >= 7) { bonus bMaxHPrate,20; bonus bLongAtkDef,35; } else { bonus bMaxHPrate,15; bonus bLongAtkDef,20; } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20813,'Coak_of_Survival','Cloak of Survival','Armor',1000,550,10,1,true,true,true,true,true,75,true,'bonus bMdef,5; bonus bVit,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20814,'Wakwak_Manteau','Wakwak Manteau','Armor',20,400,40,1,true,100,true,'bonus2 bAddClass,Class_All,5; .@s = readparam(bStr); .@r = getrefine(); if (.@r>=5) { bonus bBaseAtk,2*(.@s/10); } if (.@r>=7) { bonus bBaseAtk,3*(.@s/10); }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20815,'SeraphimRobe','Seraphim Robe','Armor',300,18,1,true,1,true,'bonus bMaxHPrate,10; bonus2 bMagicAtkEle,Ele_Neutral,5; .@r = getrefine(); if (.@r > 6) { bonus2 bSubEle,Ele_Dark,20; bonus2 bSubEle,Ele_Holy,20; bonus bMatkRate,10; } if (.@r > 8) { bonus2 bSubEle,Ele_Dark,10; bonus2 bSubEle,Ele_Holy,10; bonus bVariableCastrate,-5; } if (getskilllv("CR_TRUST") > 0) { bonus2 bSubEle,Ele_Holy,.@r*3; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20819,'Oxygen_Bottle','Oxygen Bottle','Armor',500,1,true,40,true,'bonus bFlee,12+getrefine(); bonus bHit,getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20820,'Elemental_Cape','Elemental Cape','Armor',500,12,true,true,true,true,true,100,true,'.@r = getrefine(); bonus bFlee,(10+5*(.@r/3)); bonus2 bSubEle,Ele_Neutral,10; if (.@r>=9) bonus bAspdRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`job_kagerouoboro`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20821,'Golden_Scarf','Golden Scarf','Armor',500,12,true,true,100,true,'.@r = getrefine(); bonus bFlee,20; if (.@r>=9) { bonus bLongAtkRate,10; } else if (.@r>=7) { bonus bLongAtkRate,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20822,'Mine_Worker\'s_Backpack','Mine Worker\'s Backpack','Armor',600,16,true,true,true,true,true,100,true,'.@r = getrefine(); bonus bAspdRate,(5+(.@r/2)); if (.@r>=9) bonus bBaseAtk,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_garment`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (20823,'Para_Team_Manteau100','Awakened Eden Group Manteau I','Armor',20,true,100,true,100,true,true,true,true,true,true,'bonus2 bSubEle,Ele_Neutral,10; bonus bFlee,12; .@r = getrefine(); if(.@r >= 7){ bonus bMaxHP,500; bonus bFlee2,2; if(.@r >= 9){ bonus bMaxHP,500; bonus2 bSubEle,Ele_All,10; bonus2 bSubEle,Ele_Neutral,-10; } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_garment`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (20824,'Para_Team_Manteau130','Awakened Eden Group Manteau II','Armor',25,true,130,true,100,true,true,true,true,true,true,'bonus2 bSubEle,Ele_Neutral,10; bonus bFlee,12; bonus bMaxHP,500; bonus bFlee2,2; .@r = getrefine(); if(.@r >= 7){ bonus bMaxHP,500; bonus2 bSubEle,Ele_All,10; bonus2 bSubEle,Ele_Neutral,-10; if(.@r >= 9){ bonus2 bSubEle,Ele_Neutral,5; } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_garment`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (20825,'Para_Team_Manteau160','Awakened Eden Group Manteau III','Armor',30,true,160,true,100,true,true,true,true,true,true,'bonus2 bSubEle,Ele_All,10; bonus bFlee,12; bonus bMaxHP,1000; bonus bFlee2,2; .@r = getrefine(); if(.@r >= 7){ bonus2 bSubEle,Ele_Neutral,5; if(.@r >= 9){ skill "BS_GREED",1; } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`view`) VALUES (20826,'Angel_Feather','Angel Feather','Armor',200,18,1,true,1,true,18); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`view`) VALUES (20830,'Wings_of_Seraph','Wings of Seraph','Armor',200,18,1,true,1,true,8); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20831,'Adventurer\'s_Spirit','Adventurer\'s Spirit','Armor',1000,400,40,1,true,100,true,'.@r = getrefine(); bonus bInt,5; if (.@r>=5) bonus bMatk,5*(readparam(bInt)/60); if (.@r>=7) bonus bMatk,5*(readparam(bInt)/10);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_garment`,`equip_level_min`,`refineable`,`trade_override`,`trade_noauction`,`script`) VALUES (20834,'Drifter\'s_Cape','Drifter\'s Cape','Armor',400,true,100,true,100,true,'.@r = getrefine(); .@bonus = 20; if (.@r>=7) { .@bonus += 5; } if (.@r>=9) { .@bonus += 5; } bonus2 bSubEle,Ele_Neutral,.@bonus;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20836,'Skin_of_Lindwyrm','Skin of Lindwyrm','Armor',1000,600,15,1,true,100,true,'bonus bAgi,5; bonus bVit,5; bonus bMdef,10; bonus2 bSubEle,Ele_Fire,5; bonus2 bSubEle,Ele_Water,5; bonus2 bSubRace,RC_Dragon,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; .@r = getrefine(); .@val = (readparam(bAgi)+readparam(bVit))/20; if (.@r>=7) { skill "TF_HIDING",1; if (.@r>=8) { bonus bMaxHPrate,.@val; bonus bVariableCastrate,-1*.@val; if (.@r>=9) { skill "AS_CLOAKING",1; } } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20837,'Skin_of_Gwiber','Skin of Gwiber','Armor',20,600,15,1,true,100,true,'bonus bInt,5; bonus bDex,5; bonus bMdef,10; bonus2 bSubEle,Ele_Dark,5; bonus2 bSubEle,Ele_Undead,5; bonus2 bSubRace,RC_Demon,5; bonus2 bSubRace,RC_Undead,5; .@r = getrefine(); .@val = (readparam(bInt)+readparam(bDex))/20; if (.@r>=7) { bonus bSPGainValue,10; if (.@r>=8) { bonus bBaseAtk,5*.@val; bonus bDelayrate,-2*.@val; if (.@r>=9) { bonus bSPGainValue,10; } } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20838,'Illusion_Muffler','Illusion Muffler','Armor',20,400,8,1,true,false,false,true,99,true,'.@r = getrefine(); bonus bMaxHP,(100+(100*.@r)); bonus bMaxSP,(10+(5*.@r));'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20840,'Illusion_Ancient_Cape','Illusion Ancient Cape','Armor',600,18,1,true,false,false,true,100,true,'.@val = min(getrefine(),10)/2; bonus bAgi,(2+.@val);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20845,'Maracco_Skin','Malach\'s Skin','Armor',20,600,15,1,true,100,true,'bonus bStr,5; bonus bLuk,5; bonus bMdef,10; bonus2 bSubEle,Ele_Ghost,5; bonus2 bSubEle,Ele_Holy,5; bonus2 bSubRace,RC_Angel,5; bonus2 bSubRace,RC_Formless,5; .@r = getrefine(); .@s = (readparam(bStr)+readparam(bLuk))/20; if (.@r>=7) { bonus bCritAtkRate,5; if (.@r>=8) { bonus bAspdRate,.@s; bonus bCritical,.@s; if (.@r>=9) { bonus bCritAtkRate,5; } } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20846,'Temporal_Manteau','Temporal Manteau','Armor',20,400,38,1,true,100,true,'bonus bMdef,10; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20847,'Illusion_Survivor_Manteau','Illusion Survivor Manteau','Armor',550,30,1,true,true,true,true,true,130,true,'bonus bVit,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20856,'YSF01_Manteau','YSF01 Manteau','Armor',750,32,1,true,170,true,'.@r = getrefine(); if (.@r >= 8) { bonus bBaseAtk,20; if (.@r >= 11) { .@val = -3; if (.@r >= 13) { .@val += -4; } } } if (readparam(bVit) >= 125) { .@val += -10; } if (.@val) { bonus bDelayrate,.@val; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20859,'Phreeoni_Wings','Phreeoni Wings','Armor',20,300,10,1,true,100,true,'.@r = getrefine(); bonus bMaxHPrate,10; bonus bHit,10; if (.@r>=7) bonus bHit,20; if (.@r>=8) bonus bHit,30; if (.@r>=9) bonus bHit,40; if (.@r>=10) bonus bHit,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20860,'Battle_Surcoat','Battle Surcoat','Armor',20,300,10,1,true,70,true,'.@r = getrefine(); if (.@r>=9) { bonus bAspdRate,9; bonus bFlee,30; skill "TF_DOUBLE",10; skill "MO_TRIPLEATTACK",10; bonus bDoubleRate,50; } else if (.@r>=7) { bonus bAspdRate,6; bonus bFlee,20; skill "TF_DOUBLE",5; skill "MO_TRIPLEATTACK",5; bonus bDoubleRate,25; } else { bonus bAspdRate,3; bonus bFlee,10; skill "TF_DOUBLE",3; skill "MO_TRIPLEATTACK",3; bonus bDoubleRate,15; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20863,'Menblatt\'s_Wings','Menblatt\'s Wings','Armor',20,400,40,1,true,100,true,'.@r = getrefine(); bonus bBaseAtk,30; if (.@r>=5) bonus bLongAtkRate,readparam(bDex)/60; if (.@r>=7) bonus bLongAtkRate,readparam(bDex)/10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_garment`,`equip_level_min`,`script`) VALUES (20906,'Beginner\'s_Cloak','Beginner\'s Cloak','Armor',20,10,true,100,'bonus2 bSubEle,Ele_Neutral,20; bonus bVariableCastrate,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20922,'Leviathan_Muffler','Leviathan Muffler','Armor',20,200,18,1,true,100,true,'.@r = getrefine(); bonus bMdef,5; bonus2 bAddEle,Ele_Water,15+.@r; bonus2 bMagicAddEle,Ele_Water,15+.@r; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bAspdRate,.@r; if (.@r>=10) bonus2 bSubEle,Ele_Water,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20923,'Illusion_Goibne_Spaulders','Illusion Goibne Spaulders','Armor',1000,47,1,true,false,false,true,130,true,'.@r = getrefine(); bonus bMdef,2; bonus bVit,1; if (.@r >= 7) { .@val = 5; if (.@r >= 9) { .@val += 10; } } if (.@val) { bonus2 bAddEle,Ele_Water,.@val; bonus2 bAddEle,Ele_Wind,.@val; bonus2 bAddEle,Ele_Earth,.@val; bonus2 bAddEle,Ele_Fire,.@val; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20925,'Commander_Manteau2','Commander Manteau','Armor',20,300,20,1,true,100,true,'.@r = getrefine(); bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bMdef,10; bonus bBaseAtk,10; bonus bMatk,10; bonus2 bSubRace,RC_Player_Human,3; if (.@r>=5) { bonus bBaseAtk,20; bonus bMatk,20; bonus bMaxHPrate,7; bonus bMaxSPrate,7; } if (.@r>=7) { bonus bBaseAtk,30; bonus bMatk,30; bonus bMaxHPrate,10; bonus bMaxSPrate,10; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_garment`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (20931,'Prism_Rangers_Scarf','Prism Rangers Scarf','Armor',20,300,12,true,100,true,'.@r = getrefine(); bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; if (.@r >= 7) { .@val = 10; } else if (.@r >= 5) { .@val = 5; } else { .@val = 2; } bonus bMaxHPrate,.@val; bonus bMaxSPrate,.@val; bonus bLongAtkRate,.@val+2*getskilllv("RA_AIMEDBOLT"); if (getskilllv("RA_WUGRIDER") == 3) { bonus2 bSkillCooldown,"RA_UNLIMIT",-180000; } if (getskilllv("RA_CAMOUFLAGE") == 5) { bonus bDelayrate,-10; } bonus2 bSkillCooldown,"RA_ARROWSTORM",-200; bonus2 bSkillAtk,"RA_ARROWSTORM",1;','sc_end SC_UNLIMIT;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20932,'Old_Morroc_Shawl','Old Morocc Shawl','Armor',20,300,10,1,true,100,true,'.@r= getrefine(); bonus bMaxHPrate,5; bonus bFlee,10; if (.@r>=7) bonus bFlee,20; if (.@r>=8) { bonus bFlee,30; bonus bRestartFullRecover; } if (.@r>=9) bonus bFlee,40; if (.@r>=10) bonus bFlee2,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20933,'Illusion_Engine_wing_A-type','Illusion Engine wing A-type','Armor',900,50,1,true,130,true,'.@r = getrefine(); bonus bMaxHP,1000+(100*(.@r/2)); if (.@r >= 7) { bonus bAspdRate,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20934,'Illusion_Engine_wing_B-type','Illusion Engine wing B-type','Armor',900,50,1,true,130,true,'.@r = getrefine(); bonus bMaxHP,1000+(100*(.@r/2)); if (.@r >= 7) { bonus bVariableCastrate,-5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20935,'Lava_Leather_Manteau','Lava Leather Manteau','Armor',20,400,50,1,true,175,true,'bonus bHit,10; .@r = getrefine(); if (.@r>=7) bonus bHit,5; if (.@r>=9) bonus bHit,5; if (.@r>=11) bonus bDelayrate,-3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20936,'Lava_Leather_Muffler','Lava Leather Muffler','Armor',20,350,35,1,true,175,true,'bonus bCritical,5; .@r = getrefine(); if (.@r>=7) bonus bCritical,5; if (.@r>=9) bonus bCritAtkRate,5; if (.@r>=11) bonus2 bAddClass,Class_All,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20937,'Lava_Leather_Hood','Lava Leather Hood','Armor',20,300,25,1,true,175,true,'bonus bVariableCastrate,-10; .@r = getrefine(); if (.@r>=7) bonus bVariableCastrate,-10; if (.@r>=9) bonus bVariableCastrate,-10; if (.@r>=11) bonus2 bMagicAtkEle,Ele_Fire,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20941,'Phoenix_Muffler','Phoenix Muffler','Armor',20,200,18,1,true,100,true,'.@r = getrefine(); bonus bMdef,5; bonus2 bAddEle,Ele_Fire,15+.@r; bonus2 bMagicAddEle,Ele_Fire,15+.@r; bonus2 bSubRace,RC_Player_Human,5; bonus bAspdRate,.@r; if (.@r>=10) bonus2 bSubEle,Ele_Fire,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20942,'Manteau_Of_Guardsman','Manteau Of Guardsman','Armor',20,500,15,1,true,100,true,'.@r = getrefine(); bonus bMdef,15; bonus bMaxHPrate,5+3*(.@r/3); bonus bMaxSPrate,5+3*(.@r/3); bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20943,'Geffen_Magic_Muffler','Geffen Magic Muffler','Armor',20,550,20,1,true,false,false,true,99,true,'.@r = getrefine(); .@val = -10; bonus bMatk,(10*(.@r/2)); bonus bMatkRate,(.@r/3); if (.@r >= 7) { bonus2 bMagicAtkEle,Ele_All,5; } if (.@r >= 9) { .@val -= 10; } bonus bVariableCastrate,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20944,'Anti_Magic_Manteau','Anti Magic Manteau','Armor',20,750,23,1,true,false,false,true,99,true,'.@r = getrefine(); bonus bMaxHP,(300+(100*(.@r/2))); bonus bMaxHPRate,(2*(.@r/3)); if (.@r >= 7) { bonus2 bAddClass,Class_All,7; } if (.@r >= 9) { bonus bVariableCastrate,-10; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20948,'Illusion_Morpheus\'s_Shawl','Illusion Morpheus\'s Shawl','Armor',20,600,8,1,true,130,true,'bonus bMaxSPrate,10; bonus bMdef,5; .@r = getrefine(); if (.@r >= 7) { .@bonus = -10; if (.@r >= 9) { .@bonus -= 10; } bonus bVariableCastrate,.@bonus; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20949,'Ladon_Skin','Ladon\'s Skin','Armor',20,600,15,1,true,100,true,'bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5; bonus2 bSubEle,Ele_Wind,5; bonus2 bSubEle,Ele_Earth,5; bonus bAgi,5; bonus bVit,5; bonus bMdef,10; .@r = getrefine(); if (.@r>=7) { .@val = 10; bonus bSPGainValue,10; bonus bLongSPGainValue,10; if (.@r>=8) { .@s = (readparam(bAgi)+readparam(bVit))/20; bonus bBaseAtk,15*.@s; bonus bHit,5*.@s; if (.@r>=9) { .@val += 10; } } bonus bSPGainValue,.@val; bonus bLongSPGainValue,.@val; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20952,'Nameless_Assassin_Muffler','Nameless Assassin\'s Muffler','Armor',20,100,10,1,true,100,true,'.@r= getrefine(); bonus bMdef,5; bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus2 bSubRace,RC_Player_Human,5; if (.@r>=7) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bAspd,1; bonus bHPGainValue,5; bonus bLongHPGainValue,5; } if (.@r>=8) bonus bSpeedRate,40; if (.@r>=9) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bAspd,1; bonus bHPGainValue,5; bonus bLongHPGainValue,5; } if (.@r>=10) skill "AS_CLOAKING",3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20962,'Typhon_Skin','Typhon\'s Skin','Armor',20,600,15,1,true,100,true,'bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Fish,5; bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubEle,Ele_Poison,5; bonus bAgi,5; bonus bVit,5; bonus bMdef,10; .@r = getrefine(); if (.@r>=7) { .@sp = 10; if (.@r>=8) { .@s = (readparam(bAgi)+readparam(bVit))/20; bonus bMatk,15*.@s; bonus bDef,20*.@s; if (.@r>=9) { .@sp += 10; } } bonus bMagicSPGainValue,.@sp; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20969,'Rainbow_Muffler','Rainbow Muffler','Armor',20,300,12,true,100,true,'.@r = getrefine(); .@lvl = getskilllv("WM_GLOOMYDAY"); if (.@r >= 7) { .@val = 10; } else if (.@r >= 5) { .@val = 5; } else { .@val = 2; } bonus bMaxHPrate,.@val; bonus bMaxSPrate,.@val; bonus bMatkRate,.@val+(4*.@lvl); bonus2 bSubRace,RC_Player_Human,5; bonus2 bSkillAtk,"WM_METALICSOUND",4*.@lvl; if (getskilllv("WM_FRIGG_SONG") == 5) { bonus2 bSkillCooldown,"WM_METALICSOUND",-200; bonus bAspdRate,10; } if (getskilllv("WM_LULLABY_DEEPSLEEP") == 5) { skill "AL_HEAL",10; bonus bMagicHPGainValue,200; bonus bMagicSPGainValue,20; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (21000,'Upg_Twohand_Sword','Upg Two-Handed Sword','Weapon','2hSword',20,1500,100,1,1,true,true,true,true,true,3,1,true,100,true,'.@r = getrefine(); bonus bBaseAtk,(.@r*12); bonus bMatk,(.@r*5); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*10);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (21001,'Velum_Claymore','Vellum Claymore','Weapon','2hSword',20,3500,260,1,true,true,true,true,true,4,95,true,'bonus2 bAddRace,RC_Player_Human,80; bonus2 bIgnoreDefRaceRate,RC_Player_Human,30; .@r = getrefine(); if(.@r>=6) { bonus2 bAddRace,RC_Player_Human,40; } if(.@r>=9) { autobonus2 "{ bonus bShortWeaponDamageReturn,20; bonus bMagicDamageReturn,20; }",6000,2000,BF_WEAPON,"{ specialeffect2 EF_REFLECTSHIELD; }"; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (21002,'Velum_Katzbalger','Vellum Katzbalger','Weapon','2hSword',20,2500,100,1,true,true,true,true,true,4,95,true,'bonus3 bHPVanishRaceRate,RC_Player_Human,1000,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (21003,'Muramasa_','Muramasa','Weapon','2hSword',20,1000,155,1,2,true,true,true,true,true,4,48,true,'bonus bCritical,30; bonus bAspdRate,8; bonus2 bAddEff2,Eff_Curse,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (21004,'Alca_Bringer_','Alca Bringer','Weapon','2hSword',20,3400,280,2,2,true,true,true,true,true,3,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (21005,'Metal_Two_Hand_Sword','Metal Two Hand Sword','Weapon','2hSword',20,95,1,1,true,true,true,true,true,3,1,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,(.@r*6); bonus bMatk,(.@r*2); .@i = min(BaseLevel/10,12); if(.@i>2) bonus bBaseAtk,((.@i-2)*5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (21006,'TE_Woe_Two_Hand_Sword','TE Woe Two Hand Sword','Weapon','2hSword',150,1,true,true,true,true,true,3,40,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Bleeding,3000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (21007,'Heavy_Sword','Heavy Greatsword','Weapon','2hSword',20,2500,330,1,1,true,true,true,true,true,1,150,true,'bonus bStr,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (21008,'Small_Karasuma','Small Karasuma','Weapon','2hSword',20,1000,170,1,2,true,true,true,true,true,4,50,true,'bonus bCritAtkRate,getrefine()*2; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (21009,'Thanos_Great_Sword','Thanos Great Sword','Weapon','2hSword',10,1300,280,120,1,1,true,true,true,true,true,true,true,true,4,120,true,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000;','heal -1000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (21010,'Tw_Sword_Of_Evil_Slayer','Evil Slayer Slaher Sword','Weapon','2hSword',2000,225,1,1,true,true,true,true,true,3,100,true,'bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; .@r = getrefine(); if(.@r>=9) { .@dmg = 5; if(.@r>=12) { .@dmg += 7; } bonus2 bAddClass,Class_All,.@dmg; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (21011,'Giant_Blade','Gigantic Blade','Weapon','2hSword',30000,5000,300,1,1,true,true,true,true,true,true,true,true,4,130,true,'bonus bUnbreakableWeapon; bonus bAspdRate,-5; bonus bCritAtkRate,getrefine(); if(readparam(bStr)<=110){ bonus bAtk,-250; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (21012,'Some_Wizard_MagicSword','Some Wizard MagicSword','Weapon','2hSword',2200,200,150,1,2,true,true,true,true,true,true,4,110,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (21013,'Hetairoi_Sword','Hetairoi Sword','Weapon','2hSword',2200,210,1,2,true,true,true,true,true,true,4,110,true,'bonus2 bSkillUseSP,"KN_AUTOCOUNTER",2; bonus2 bSkillUseSP,"LK_PARRYING",25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (21014,'Infinity_Two-Handed_Sword','Infinity Two-Handed Sword','Weapon','2hSword',20,500,230,1,1,true,true,true,true,true,true,true,true,4,100,true,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (21015,'Crimson_Two-Handed_Sword','Crimson Two-Handed Sword','Weapon','2hSword',20,1700,170,1,2,true,true,true,true,true,3,70,true,'.@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bMatk,(.@r<=15?(pow(.@r,2)/2):225);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (21016,'Two_Handed_Sword_of_Vicious_Mind','Two-Handed Sword of Vicious Mind','Weapon','2hSword',20,2200,220,1,1,true,true,true,true,true,4,160,true,'bonus bAtk,pow(min(getrefine(),15),2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (21018,'Lindy_Hop','Lindy Hop','Weapon','2hSword',20,3400,340,1,2,true,true,true,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus2 bAddClass,Class_All,.@r/2; bonus bAspdRate,.@r; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (21019,'Onimaru','Onimaru','Weapon','2hSword',4200,75,1,2,true,true,true,true,true,true,4,130,true,'.@bStr = readparam(bStr); .@r = getrefine(); bonus bBaseAtk,(min(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; bonus4 bAutoSpell,"NPC_WIDECURSE",4,100,0; if (.@r > 8) bonus4 bAutoSpellOnSkill,"LK_BERSERK","BS_OVERTHRUST",5,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (21039,'Royal_Knight\'s_Broadsword','Royal Knight\'s Broadsword','Weapon','2hSword',20,4000,280,1,2,true,true,true,true,true,true,true,true,4,175,true,'.@r = getrefine(); bonus bBaseAtk,20*(.@r/2); if (.@r>=7) bonus bCritAtkRate,10; if (.@r>=9) bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (21047,'Beam_Claymor-OS','Beam Claymor-OS','Weapon','2hSword',20,1800,250,1,2,true,true,true,true,true,true,true,true,4,130,true,'.@r = getrefine(); bonus bUnbreakableWeapon; bonus bCritical,5; if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus bCritAtkRate,15; if (.@r >= 11) { bonus2 bAddSize,Size_Small,20; bonus2 bAddSize,Size_Medium,20; } } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (21050,'Illusion_Tae_Goo_Lyeon','Illusion Tae Goo Lyeon','Weapon','2hSword',20,2000,250,1,2,true,true,true,true,true,true,true,true,4,120,true,'.@r = getrefine(); bonus bFlee2,10; bonus bLongAtkRate,.@r*2; if (.@r >= 7) { bonus bUseSPrate,-20; if (.@r >= 9) { bonus bDelayrate,-20; if (.@r >= 11) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; } } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (21051,'Volar','Volar','Weapon','2hSword',20,2800,280,1,2,true,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus2 bSkillAtk,"KN_BOWLINGBASH",30; bonus bBaseAtk,4*.@r; if (.@r>=9) { bonus2 bSkillCooldown,"KN_BOWLINGBASH",-1000; bonus2 bSkillCooldown,"RK_IGNITIONBREAK",-1000; } if (.@r>=11) { bonus bUnbreakableWeapon; bonus2 bSkillAtk,"KN_BOWLINGBASH",20; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (21052,'Vernan','Vernan','Weapon','2hSword',20,6500,300,1,2,true,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bLongAtkRate,.@r; bonus2 bAddClass,Class_All,5; if (.@r>=9) { bonus2 bSkillAtk,"LK_SPIRALPIERCE",30; bonus2 bSkillAtk,"RK_SONICWAVE",30; } if (.@r>=11) { bonus2 bSkillCooldown,"RK_SONICWAVE",-1500; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (21058,'Up_Dragonic_Slayer','Patent Dragonic Slayer','Weapon','1hSword',2000,200,1,2,true,true,true,true,true,true,4,150,true,'.@r = getrefine(); bonus bMaxHPrate,.@r/2*5; bonus bMaxSPrate,.@r/2*5; bonus2 bSkillAtk,"RK_DRAGONBREATH",.@r/3*5; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",.@r/3*5; if (.@r>=7){ bonus bDelayRate,-10; bonus bVariableCastrate,-10; } if (.@r>=9){ bonus bLongAtkRate,10; } if (.@r>=11){ bonus bDelayRate,-7; bonus bMaxSPrate,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22000,'Temporal_Str_Boots','Temporal Boots Of Strength','Armor',20,600,25,true,false,false,true,true,true,true,99,true,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAtk,7*(.@r/3); if(readparam(bStr)>=120) bonus bAtk,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22001,'Temporal_Int_Boots','Temporal Boots Of Intelligence','Armor',20,600,20,true,false,false,true,true,true,true,99,true,'.@r = getrefine(); bonus bMdef,5; bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMatk,10*(.@r/3); if(readparam(bInt)>=120) bonus bMatk,60;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22002,'Temporal_Agi_Boots','Temporal Boots Of Agility','Armor',20,600,25,true,false,false,true,true,true,true,99,true,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAspdRate,3*(.@r/3); if(readparam(bAgi)>=120) bonus bAspd,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22003,'Temporal_Vit_Boots','Temporal Boots Of Vitality','Armor',20,600,25,true,false,false,true,true,true,true,99,true,'.@r = getrefine(); bonus bMaxHP,300+(300*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); if(readparam(bVit)>=120) bonus bMaxHPrate,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22004,'Temporal_Dex_Boots','Temporal Boots Of Dexterity','Armor',20,600,25,true,false,false,true,true,true,true,99,true,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bDex,3*(.@r/3); if(readparam(bDex)>=120){ bonus bLongAtkRate,5; bonus bFixedCast,-500; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22005,'Temporal_Luk_Boots','Temporal Boots Of Luck','Armor',20,600,20,true,false,false,true,true,true,true,99,true,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMdef,5; bonus bCritAtkRate,2*(.@r/3); if(readparam(bLuk)>=120) bonus bCritAtkRate,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22006,'Temporal_Str_Boots_','Temporal Boots Of Strength','Armor',20,600,25,1,true,false,false,true,true,true,true,99,true,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAtk,7*(.@r/3); if(readparam(bStr)>=120) bonus bAtk,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22007,'Temporal_Vit_Boots_','Temporal Boots Of Vitality','Armor',20,600,25,1,true,false,false,true,true,true,true,99,true,'.@r = getrefine(); bonus bMaxHP,300+(300*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); if(readparam(bVit)>=120) bonus bMaxHPrate,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22008,'Temporal_Dex_Boots_','Temporal Boots Of Dexterity','Armor',20,600,25,1,true,false,false,true,true,true,true,99,true,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bDex,3*(.@r/3); if(readparam(bDex)>=120){ bonus bLongAtkRate,5; bonus bFixedCast,-500; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22009,'Temporal_Int_Boots_','Temporal Boots Of Intelligence','Armor',20,600,20,1,true,false,false,true,true,true,true,99,true,'.@r = getrefine(); bonus bMdef,5; bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMatk,10*(.@r/3); if(readparam(bInt)>=120) bonus bMatk,60;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22010,'Temporal_Agi_Boots_','Temporal Boots Of Agility','Armor',20,600,25,1,true,false,false,true,true,true,true,99,true,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAspdRate,3*(.@r/3); if(readparam(bAgi)>=120) bonus bAspd,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22011,'Temporal_Luk_Boots_','Temporal Boots Of Luck','Armor',20,600,20,1,true,false,false,true,true,true,true,99,true,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMdef,5; bonus bCritAtkRate,2*(.@r/3); if(readparam(bLuk)>=120) bonus bCritAtkRate,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22012,'Mana_Boots','Mana Boots','Armor',true,1,true,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddRace,RC_All,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_monk`,`job_priest`,`job_rebellion`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22014,'Enhanced_Variant_Shoes','Enhanced Variant Shoes','Armor',20,500,13,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,85,true,'bonus bMaxHPrate,12; bonus bMaxSPrate,12; .@r = getrefine(); bonus bDef,.@r; bonus bMdef,.@r;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22015,'Impr_Angel\'s_Arrival','Advanced Angel\'s Reincarnation','Armor',10000,300,8,1,true,true,true,99,true,'bonus bMaxHP,500; bonus bMaxSP,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22016,'Assassin\'s_Shoes','Assassin\'s Shoes','Armor',20,300,10,true,30,true,'bonus2 bExpAddRace,RC_DemiHuman,5+getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22017,'Fisherman_Shoes','Fisherman\'s Shoes','Armor',20,300,10,true,30,true,'bonus2 bExpAddRace,RC_Fish,5+getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22018,'Shoes_Of_Wise_Man','Shoes Of Wise Man','Armor',10,300,15,1,true,50,true,'.@r = getrefine(); if(.@r>5){ bonus bInt,.@r-5; bonus bMaxHPrate,-(.@r-5); }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22032,'Exorcist_Shoes','Exorcist\'s Shoes','Armor',20,300,10,true,30,true,'bonus2 bExpAddRace,RC_Demon,5+getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22033,'Boots_Of_Gray','Boots of Gray','Armor',20,400,25,1,true,true,true,true,120,true,'bonus2 bSubEle,Ele_Holy,2+getrefine()/3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22034,'Crimson_Gaiter','Crimson Gaiter','Armor',500,10,true,50,true,'bonus bCritical,2; bonus bCritAtkRate,2; if(getrefine()>=7){ bonus bCritical,3; bonus bCritAtkRate,3; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22035,'Vet_Nepen_Heel','Heoric Nepenthes Shoes','Armor',10,300,10,1,true,160,true,'.@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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22036,'Vet_SliverFox_Boots','Heroic Silver Fox Leather Boots','Armor',10,300,15,1,true,160,true,'.@r = getrefine(); if (.@r>=8 && .@r<=13) .@i=.@r; else if (.@r>13) .@i=13; bonus bLongAtkRate,5+.@i;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22037,'Vet_Ungo_Boots','Heroic Ungoliant Upgrade Boots','Armor',10,300,10,1,true,160,true,'.@r = getrefine(); if (.@r>=8 && .@r<=13) .@i=.@r; else if (.@r>13) .@i=13; bonus bUseSPrate,-5-.@i;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22042,'Talaria_Shoes','Talaria Shoes','Armor',10,300,15,1,true,50,true,'bonus bAgi,2; bonus bAspd,1; bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22043,'Supplement_Part_Agi','Supplement Part Agi','Armor',25000,350,25,1,true,true,true,true,true,100,true,'bonus bAspdRate,5+(getrefine()/4);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22044,'Upgrade_Part_Booster','Reinforced Parts - Booster','Armor',10,1000,23,1,true,true,true,true,true,100,true,'bonus2 bSkillUseSP,"NC_HOVERING",15; if(getrefine()>=7){bonus2 bSkillUseSP,"NC_HOVERING",-20;}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_shoes`,`refineable`,`script`) VALUES (22045,'Beach_Sandals','Summer Sandals','Armor',10,200,5,true,true,'bonus bFlee,5; bonus3 bAutoSpellWhenHit,"AL_INCAGI",10,300;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_shoes`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22046,'Airship_Boots','Airship\'s Boots','Armor',10,26,true,125,100,true,true,true,true,true,true,'bonus bAgi,1; bonus bAspdRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22047,'Felock_Boots','Felrock\'s Boots','Armor',10,250,13,true,125,true,'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; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22059,'Aegir_Shoes','Aegir Shoes','Armor',10,300,13,1,true,40,true,'bonus bUnbreakableShoes; bonus bMaxHP,500; bonus bMaxSP,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22064,'Thorny_Shoes','Thorny Shoes','Armor',1000,25,1,true,70,true,'bonus bShortWeaponDamageReturn,getrefine()/2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22066,'Spirit_Shoes','Spirit Shoes','Armor',10,250,12,1,true,false,false,true,90,true,'bonus bMdef,3; bonus2 bSubEle,Ele_All,5; .@r = getrefine(); bonus bMaxHPrate,.@r*1; bonus bMaxSPrate,.@r*1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22067,'Witch_Shoes','Shoe of Witch','Armor',10,400,10,true,false,false,true,1,true,'skill "ALL_CATCRY",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22069,'Lian_Shoes','Lian Shoes','Armor',250,12,1,true,90,true,'bonus bMdef,3; bonus2 bSubEle,Ele_Neutral,5; .@r = getrefine(); bonus bMaxHPrate,.@r; bonus bMaxSPrate,.@r;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22072,'Hikingboots','Hikingboots','Armor',500,10,1,true,100,true,'.@r = getrefine(); bonus bMaxHPRate,4+(.@r/3); bonus bMaxSPRate,4+(.@r/3); if (.@r > 9) bonus bSpeedRate,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22075,'Rift_Shoes','Rift Shoes','Armor',20,250,12,1,true,100,true,100,true,true,true,true,true,true,'.@r = getrefine(); bonus bMaxHP,(.@r >= 9 ? 1300 : .@r >= 7 ? 700 : 300); bonus bMaxSP,-50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22076,'Wooden_Slipper','Wooden Slipper','Armor',20,50,10,1,true,true,true,true,true,9,true,'bonus2 bHPRegenRate,2,10000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22077,'Red_Eco-Friendly_Shoes','Red Eco-Friendly Shoes','Armor',20,100,20,1,true,true,true,true,true,18,true,'bonus bCritical,5; bonus2 bHPRegenRate,4,10000; bonus2 bSPRegenRate,1,10000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22078,'Unity_STR_Boots','Unity STR Boots','Armor',10,300,20,1,true,1,true,100,true,true,true,true,true,true,'.@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bStr,.@r/2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22079,'Unity_AGI_Boots','Unity AGI Boots','Armor',10,300,20,1,true,1,true,100,true,true,true,true,true,true,'.@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bAgi,.@r/2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22080,'Unity_DEX_Boots','Unity DEX Boots','Armor',10,300,20,1,true,1,true,100,true,true,true,true,true,true,'.@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bDex,.@r/2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22081,'Unity_INT_Boots','Unity INT Boots','Armor',10,300,20,1,true,1,true,100,true,true,true,true,true,true,'.@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bInt,.@r/2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22082,'Polyhedron_Shoes','Polyhedron Shoes','Armor',500,12,1,true,90,true,'.@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; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22083,'Private_Doram_Shoes','Private Doram Shoes','Armor',20,500,25,1,true,true,true,true,true,100,true,'bonus bMaxHP,100; bonus bMaxSP,50; .@r = getrefine()/3; bonus bHPrecovRate,.@r*10; bonus bSPrecovRate,.@r*10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22084,'Luxury_Doram_Shoes','Luxury Doram Shoes','Armor',20,600,30,1,true,true,true,true,true,140,true,'bonus bMaxHP,300; bonus bMaxSP,100; .@r = getrefine()/3; bonus bHPrecovRate,20*.@r; bonus bSPrecovRate,20*.@r;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22085,'Elegant_Doram_Shoes','Elegant Doram Shoes','Armor',20,700,35,1,true,true,true,true,true,175,true,'bonus bMaxHPrate,10; bonus bMaxSPrate,5; .@r = getrefine()/2; bonus bMaxHP,100*.@r; bonus bMaxSP,20*.@r; if(.@r >= 4) bonus2 bSkillUseSP,"SU_LOPE",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22089,'Crimson_Gaiter_','Crimson Gaiter','Armor',500,10,1,true,50,true,'bonus bCritical,2; bonus bCritAtkRate,2; if(getrefine()>=7){ bonus bCritical,3; bonus bCritAtkRate,3; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22101,'Angel_Poring_Boots','Angel Poring Boots','Armor',10,300,15,1,true,1,true,'bonus bAllStats,1; skill "AL_HEAL",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22103,'Excelion_Leg','Excelion Leg','Armor',500,13,true,100,true,'.@r = getrefine(); bonus bMaxHP,5+((BaseLevel > 129) ? 4 : 0)+(.@r/3)*3; bonus bMaxSP,5+((BaseLevel > 129) ? 4 : 0)+(.@r/3)*3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22104,'Pororoca_Shoes','Pororoca Shoes','Armor',20,500,15,true,100,true,'bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bMdef,15; bonus bMatkRate,2; bonus2 bMagicAtkEle,Ele_Water,2; skill "SA_DELUGE",5; if (getrefine()>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bMatkRate,3; bonus2 bMagicAtkEle,Ele_Water,3; } if (getrefine()>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bMatkRate,5; bonus2 bMagicAtkEle,Ele_Water,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22106,'Giant_Boots','Giant Boots','Armor',500,13,1,true,85,true,'bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; bonus bMaxHPrate,2; bonus bMaxSPrate,2; .@r = getrefine(); if (.@r > 4) { bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; bonus bMaxHPrate,4; bonus bMaxSPrate,4; } if (.@r > 6) { bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; bonus bMaxHPrate,4; bonus bMaxSPrate,4; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_kagerouoboro`,`job_rebellion`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22107,'Modified_Str_Boots','Modified Str Boots','Armor',20,600,25,true,true,true,99,true,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAtk,7*(.@r/3); if(readparam(bStr)>=120) bonus bBaseAtk,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_kagerouoboro`,`job_rebellion`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22108,'Modified_Int_Boots','Modified Int Boots','Armor',20,600,25,true,true,true,99,true,'.@r = getrefine(); bonus bMdef,5; bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMatk,10*(.@r/3); if(readparam(bInt)>=120) bonus bMatk,60;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_kagerouoboro`,`job_rebellion`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22109,'Modified_Agi_Boots','Modified Agi Boots','Armor',20,600,25,true,true,true,99,true,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAspdRate,3*(.@r/3); if(readparam(bAgi)>=120) bonus bAspd,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_kagerouoboro`,`job_rebellion`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22110,'Modified_Vit_Boots','Modified Vit Boots','Armor',20,600,25,true,true,true,99,true,'.@r = getrefine(); bonus bMaxHP,300+(300*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); if(readparam(bVit)>=120) bonus bMaxHPrate,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_kagerouoboro`,`job_rebellion`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22111,'Modified_Dex_Boots','Modified Dex Boots','Armor',20,600,25,true,true,true,99,true,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bDex,3*(.@r/3); if(readparam(bDex)>=120){ bonus bLongAtkRate,5; bonus bFixedCast,-500; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_kagerouoboro`,`job_rebellion`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22112,'Modified_Luk_Boots','Modified Luk Boots','Armor',20,600,25,true,true,true,99,true,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMdef,5; bonus bCritAtkRate,2*(.@r/3); if(readparam(bLuk)>=120) bonus bCritAtkRate,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_kagerouoboro`,`job_rebellion`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22113,'Modified_Str_Boots_','Modified Str Boots','Armor',20,600,25,1,true,true,true,99,true,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAtk,7*(.@r/3); if(readparam(bStr)>=120) bonus bBaseAtk,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_kagerouoboro`,`job_rebellion`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22114,'Modified_Int_Boots_','Modified Int Boots','Armor',20,600,25,1,true,true,true,99,true,'.@r = getrefine(); bonus bMdef,5; bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMatk,10*(.@r/3); if(readparam(bInt)>=120) bonus bMatk,60;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_kagerouoboro`,`job_rebellion`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22115,'Modified_Agi_Boots_','Modified Agi Boots','Armor',20,600,25,1,true,true,true,99,true,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAspdRate,3*(.@r/3); if(readparam(bAgi)>=120) bonus bAspd,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_kagerouoboro`,`job_rebellion`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22116,'Modified_Vit_Boots_','Modified Vit Boots','Armor',20,600,25,1,true,true,true,99,true,'.@r = getrefine(); bonus bMaxHP,300+(300*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); if(readparam(bVit)>=120) bonus bMaxHPrate,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_kagerouoboro`,`job_rebellion`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22117,'Modified_Dex_Boots_','Modified Dex Boots','Armor',20,600,25,1,true,true,true,99,true,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bDex,3*(.@r/3); if(readparam(bDex)>=120){ bonus bLongAtkRate,5; bonus bFixedCast,-500; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_kagerouoboro`,`job_rebellion`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22118,'Modified_Luk_Boots_','Modified Luk Boots','Armor',20,600,25,1,true,true,true,99,true,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMdef,5; bonus bCritAtkRate,2*(.@r/3); if(readparam(bLuk)>=120) bonus bCritAtkRate,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22120,'Shoes_of_Punishment','Shoes of Punishment','Armor',20,500,15,true,100,true,'bonus bMdef,15; bonus bMatkRate,2; bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus2 bSkillAtk,"AB_JUDEX",30; bonus2 bMagicAddEle,Ele_Holy,2; .@r = getrefine(); if (.@r>=5) { bonus bMatkRate,3; bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus2 bMagicAddEle,Ele_Holy,3; } if (.@r>=7) { bonus bMatkRate,5; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bMagicAddEle,Ele_Holy,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22122,'Para_Team_Boots100','Awakened Eden Group Boots I','Armor',22,true,100,true,100,true,true,true,true,true,true,'bonus bAllStats,1; bonus bHPrecovRate,30; bonus bSPrecovRate,14;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22123,'Para_Team_Boots115','Awakened Eden Group Boots II','Armor',25,true,115,true,100,true,true,true,true,true,true,'bonus bAllStats,1; bonus bHPrecovRate,36; bonus bSPrecovRate,18;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22124,'Para_Team_Boots130','Awakened Eden Group Boots III','Armor',27,true,130,true,100,true,true,true,true,true,true,'bonus bAllStats,2; bonus bHPrecovRate,36; bonus bSPrecovRate,18;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22125,'Para_Team_Boots145','Awakened Eden Group Boots IV','Armor',30,true,145,true,100,true,true,true,true,true,true,'bonus bAllStats,2; bonus bHPrecovRate,40; bonus bSPrecovRate,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22126,'Para_Team_Boots160','Awakened Eden Group Boots V','Armor',30,true,160,true,100,true,true,true,true,true,true,'bonus bAllStats,2; bonus bHPrecovRate,40; bonus bSPrecovRate,20; bonus bUseSPrate,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_noauction`,`script`) VALUES (22131,'Spurred_Boots','Spurred Boots','Armor',500,1,true,100,true,100,true,'.@r = getrefine(); .@bonus = 5; if (.@r >=7) { .@bonus += 5; } if (.@r >=9) { .@bonus += 5; } bonus bMaxSPrate,.@bonus; bonus bSpeedRate,25; /* fix me: unknown speed value */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22133,'Illusion_Shoes','Illusion Shoes','Armor',20,400,10,1,true,false,false,true,99,true,'.@r = getrefine(); bonus bMaxHP,(100+(100*.@r)); bonus bMaxSP,(10+(5*.@r));'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22134,'Enforcer_Shoes','Enforcer Shoes','Armor',20,400,12,true,100,true,'.@r = getrefine(); .@hpsp = 3; .@a = getskilllv("GC_WEAPONCRUSH"); .@b = getskilllv("GC_WEAPONBLOCKING"); .@c = getskilllv("GC_COUNTERSLASH"); if (.@r >= 5) { .@hpsp += 7; .@dmg = BaseLevel; if (.@r >= 7) { .@hpsp += 10; .@dmg += BaseLevel + 30*getskilllv("AS_POISONREACT"); } bonus2 bSkillAtk,"ASC_METEORASSAULT",.@dmg; } bonus bMaxHPrate,.@hpsp; bonus bMaxSPrate,.@hpsp; bonus bMdef,10; skill "BS_MAXIMIZE",1; bonus2 bSkillUseSP,"ASC_METEORASSAULT",8; bonus2 bAddClass,Class_All,4*.@a; bonus2 bSkillCooldown,"GC_HALLUCINATIONWALK",-5000*.@b; bonus2 bIgnoreDefClassRate,Class_All,20*.@c; bonus2 bVariableCastrate,"ASC_METEORASSAULT",-7*(.@a+.@b+.@c);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22138,'Devil_Worshipper_Shoes','Devil Worshipper Shoes','Armor',20,500,15,true,100,true,'bonus bMdef,15; bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bMatkRate,2; bonus2 bMagicAtkEle,Ele_Neutral,2; bonus2 bMagicAtkEle,Ele_Fire,2; .@r = getrefine(); if (.@r>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bMatkRate,3; bonus2 bMagicAtkEle,Ele_Neutral,3; bonus2 bMagicAtkEle,Ele_Fire,3; } if (.@r>=5) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bMatkRate,5; bonus2 bMagicAtkEle,Ele_Neutral,5; bonus2 bMagicAtkEle,Ele_Fire,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22141,'YSF01_Greave','YSF01 Greave','Armor',1300,25,1,true,170,true,'.@r = getrefine(); if (.@r >= 8) { bonus bAspdRate,8; if (.@r >= 11) { bonus bAspd,1; if (.@r >= 13) { .@val = 10; } } } if (readparam(bLuk) >= 125) { .@val += 30; } if (.@val) { bonus bCritAtkRate,.@val; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22145,'Tengu\'s_Shoes','Tengu\'s Shoes','Armor',20,400,12,true,100,true,'.@r = getrefine(); .@a = getskilllv("SR_GENTLETOUCH_REVITALIZE"); .@b = getskilllv("SR_GENTLETOUCH_CURE"); .@c = getskilllv("SR_GENTLETOUCH_ENERGYGAIN"); .@hpsp = 3; if (.@r >= 5) { .@hpsp += 7; .@red = 5; if (.@r >= 7) { .@hpsp += 10; .@red += 5; } bonus2 bSkillUseSP,"MO_BODYRELOCATION",.@red; } bonus bMdef,10; bonus bMaxHPrate,.@hpsp+(2*.@b); bonus bMaxSPrate,.@hpsp; skill "SA_CASTCANCEL",1; bonus2 bSkillUseSP,"MO_BODYRELOCATION",5; bonus bDef,30*.@a; bonus2 bSubRace,RC_DemiHuman,.@a; bonus2 bSubRace,RC_Player_Human,.@a; bonus2 bVariableCastrate,"MO_CALLSPIRITS",-.@c*10; bonus2 bVariableCastrate,"MO_STEELBODY",-.@c*10; bonus2 bFixedCastrate,"CH_SOULCOLLECT",-.@c*10; bonus bAspdRate,2*getskilllv("SR_GENTLETOUCH_CHANGE"); bonus2 bAddClass,Class_All,4*getskilllv("SR_GENTLETOUCH_QUIET");'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22170,'Survivor\'s_Shoes','Survivor\'s Shoes','Armor',10,500,15,true,100,true,'.@r = getrefine(); if (.@r >= 7) { .@hpsp = 20; .@dmg = 10; } else if (.@r >= 5) { .@hpsp = 10; .@dmg = 5; } else { .@hpsp = 3; .@dmg = 2; } bonus bMdef,15; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bMaxHPrate,.@hpsp; bonus bMaxSPrate,.@hpsp; bonus bMatkRate,.@dmg; bonus2 bMagicAtkEle,Ele_Wind,.@dmg; bonus2 bMagicAtkEle,Ele_Earth,.@dmg;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22171,'Ancient_Hero_Boots','Ancient Hero Boots','Armor',20,600,15,1,true,100,true,'.@r = getrefine(); bonus bMaxHP,500; bonus bMaxSP,50; bonus bMaxHPrate,2*(.@r/3); bonus bMaxSPrate,.@r/3; if (.@r >= 9) { .@val = -300; if (.@r >= 12) { .@val -= 200; if (.@r >= 14) { bonus bDelayRate,-5; } } bonus bFixedCast,.@val; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22172,'Gray_Wing_Boots','Gray Wing Boots','Armor',20,500,15,true,100,true,'.@r = getrefine(); bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bMdef,15; bonus bLongAtkRate,2; bonus bCritAtkRate,2; skill "TF_HIDING",1; if (.@r>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bLongAtkRate,3; bonus bCritAtkRate,3; } if (.@r>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bLongAtkRate,5; bonus bCritAtkRate,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`script`) VALUES (22173,'Beginner\'s_Boots','Beginner\'s Boots','Armor',20,10,1,true,100,'bonus bMaxHP,300; bonus bMaxSP,50; bonus bFlee,15; bonus bHPrecovRate,10; bonus bSPrecovRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22189,'Pilgrim_Shoes','Pilgrim Shoes','Armor',20,500,15,true,100,true,'.@r = getrefine(); bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bDef,50*getskilllv("AB_SECRAMENT"); bonus bMdef,15; bonus bAspdRate,4*getskilllv("AB_CANTO"); bonus2 bSkillCooldown,"AB_PRAEFATIO",-1000; bonus bDelayrate,-6*getskilllv("AB_PRAEFATIO"); bonus2 bSubRace,RC_DemiHuman,2*getskilllv("AB_SECRAMENT"); bonus2 bSubRace,RC_Player_Human,2*getskilllv("AB_SECRAMENT"); bonus bHealPower,5*getskilllv("AB_HIGHNESSHEAL"); if (.@r>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bUseSPrate,-3; } if (.@r>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bUseSPrate,-5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_gunslinger`,`job_hunter`,`job_knight`,`job_merchant`,`job_rebellion`,`job_rogue`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`job_thief`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22190,'Illusion_Boots','Illusion Boots','Armor',600,16,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,100,true,'.@r = getrefine(); bonus bCritical,(5*(.@r/3)); bonus bAspdRate,.@r;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22192,'Illusion_Goibne\'s_Greaves','Illusion Goibne\'s Greaves','Armor',1200,42,1,true,false,false,true,130,true,'.@r = getrefine(); bonus bMaxHPrate,5; bonus bMaxSPrate,5; if (.@r >= 7) { bonus bVariableCastrate,-5; if (.@r >= 9) { bonus bLongAtkRate,10; } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22195,'Booster_Shoes','Booster Shoes','Armor',20,800,30,1,true,100,true,'.@r = getrefine(); bonus bMdef,10; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bSubRace,RC_Player_Human,5; if (.@r>=7) { if (readparam(bStr)>=125) bonus bBaseAtk,90; if (readparam(bAgi)>=125) bonus bAspd,2; if (readparam(bVit)>=125) bonus bMaxHPrate,12; if (readparam(bInt)>=125) bonus bMatk,120; if (readparam(bDex)>=125) bonus bLongAtkRate,10; if (readparam(bLuk)>=125) bonus bCritAtkRate,20; } if (.@r>=9) { if (readparam(bStr)>=125) bonus bBaseAtk,90; if (readparam(bAgi)>=125) bonus bAspd,2; if (readparam(bVit)>=125) bonus bMaxHPrate,12; if (readparam(bInt)>=125) bonus bMatk,120; if (readparam(bDex)>=125) bonus bLongAtkRate,10; if (readparam(bLuk)>=125) bonus bCritAtkRate,20; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22196,'Illusion_Leg_A-type','Illusion Leg A-type','Armor',20,500,20,1,true,130,true,'.@r = getrefine(); bonus bMaxSP,200+(20*(.@r/2)); if (.@r >= 7) { bonus bLongAtkRate,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22197,'Illusion_Leg_B-type','Illusion Leg B-type','Armor',20,500,20,1,true,130,true,'.@r = getrefine(); bonus bMaxSP,200+(20*(.@r/2)); if (.@r >= 7) { bonus2 bMagicAtkEle,Ele_All,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22198,'Traveler_Shoes','Traveler Shoes','Armor',20,500,15,true,100,true,'bonus bMdef,15; bonus bMaxHPrate,3+(2*getskilllv("WM_FRIGG_SONG")); bonus bMaxSPrate,3; bonus bMatkRate,2; bonus2 bMagicAtkEle,Ele_Neutral,5; bonus bAllStats,getskilllv("WA_SWING_DANCE"); bonus bAspdRate,4*getskilllv("MI_HARMONIZE"); bonus2 bSkillAtk,"WM_METALICSOUND",10*getskilllv("WM_GLOOMYDAY"); bonus2 bVariableCastrate,"WM_METALICSOUND",-10*getskilllv("WM_GLOOMYDAY"); bonus3 bAddEff,Eff_Sleep,2*getskilllv("WM_LULLABY_DEEPSLEEP"),ATF_MAGIC; .@r = getrefine(); if (.@r>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bMatkRate,3; bonus2 bMagicAtkEle,Ele_Neutral,3; } if (.@r>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bMatkRate,5; bonus2 bMagicAtkEle,Ele_Neutral,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22199,'Lava_Leather_Boots','Lava Leather Boots','Armor',20,600,50,1,true,175,true,'.@r = getrefine(); bonus2 bAddClass,Class_All,2; if (.@r>=7) bonus bBaseAtk,25; if (.@r>=9) bonus bBaseAtk,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22200,'Lava_Leather_Shoes','Lava Leather Shoes','Armor',20,600,50,1,true,175,true,'.@r = getrefine(); bonus bCritical,5; if (.@r>=7) bonus2 bAddSize,Size_All,5; if (.@r>=9) bonus bCritAtkRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22201,'Lava_Leather_Sandals','Lava Leather Sandals','Armor',20,500,25,1,true,175,true,'.@r = getrefine(); bonus2 bMagicAtkEle,Ele_Fire,3; if (.@r>=7) bonus bMatk,25; if (.@r>=9) bonus bMatk,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22207,'Imperial_Boots','Imperial Boots','Armor',20,400,12,true,100,true,'.@r = getrefine(); bonus bMdef,10; bonus bMaxHPrate,3; bonus bMaxSPrate,3; skill "AL_INCAGI",1; bonus2 bSkillAtk,"LG_BANISHINGPOINT",10*getskilllv("LG_CANNONSPEAR"); bonus2 bAddClass,Class_All,4*getskilllv("CR_DEVOTION"); if (getskilllv("LG_INSPIRATION")>=5) bonus2 bSkillCooldown,"LG_SHIELDSPELL",-2000; bonus2 bIgnoreDefClassRate,Class_All,20*getskilllv("LG_PINPOINTATTACK"); if (.@r>=5) { bonus bMaxSPrate,7; bonus bMaxHPrate,7; bonus bLongAtkRate,5; } if (.@r>=7) { bonus bMaxSPrate,10; bonus bMaxHPrate,10; bonus bLongAtkRate,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22210,'Fluffy_Fish_Shoes','Fluffy Fish Shoes','Armor',20,100,12,true,100,true,'.@r = getrefine(); .@hpsp = 3; .@val = -10 * getskilllv("SU_SHRIMPARTY"); if (.@r>=5) { .@hpsp += 7; .@delay = -10; if (.@r>=7) { .@hpsp += 10; .@delay -= 10; } bonus bDelayrate,.@delay; } if (getskilllv("SU_SPIRITOFSEA") == 1) { autobonus3 "{ bonus2 bResEff,Eff_Stun,10000; bonus2 bResEff,Eff_Sleep,10000; bonus2 bResEff,EFF_Stone,10000; }",1000,30000,"SU_GROOMING"; } if (getskilllv("SU_GROOMING") == 5) { bonus bFixedCastrate,-50; bonus bNoKnockback; } bonus bMaxHPrate,.@hpsp; bonus bMaxSPrate,.@hpsp; bonus bMdef,10; bonus2 bVariableCastrate,"SU_FRESHSHRIMP",.@val; bonus2 bVariableCastrate,"SU_BUNCHOFSHRIMP",.@val; bonus2 bVariableCastrate,"SU_TUNABELLY",.@val; bonus2 bVariableCastrate,"SU_TUNAPARTY",.@val; bonus2 bVariableCastrate,"SU_SHRIMPARTY",.@val; bonus bHealPower,10*getskilllv("SU_PURRING");'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22214,'Authority_Sandals','Authority Sandals','Armor',20,500,10,true,100,true,'.@r = getrefine(); bonus bMdef,10; bonus bAllStats,10; bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; if (.@r>=7) bonus bAllStats,10; if (.@r>=9) bonus bAllStats,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22238,'Great_Hero_Boots','Great Hero Boots','Armor',20,600,15,1,true,150,true,'.@r = getrefine(); bonus bMaxHP,1500; bonus bMaxSP,150; bonus bMaxHPrate,.@r/3; bonus bMaxSPrate,.@r/3; if (.@r >= 7) { bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; } if (.@r >= 9) { .@val = -500; if (.@r >= 11) { .@val -= 200; if (.@r >= 13) { bonus bDelayRate,-5; bonus bVariableCastrate,-5; } } bonus bFixedCast,.@val; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24000,'T1_Shadow_Armor','Shadow Armor (Tier 1)','Shadowgear',true,1,true,'bonus bStr,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24001,'T1_Shadow_Weapon','Shadow Gauntlets (Tier 1)','Shadowgear',true,1,true,'bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24002,'T1_Shadow_Shield','Shadow Shield (Tier 1)','Shadowgear',true,1,true,'bonus bLuk,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24003,'T1_Shadow_Shoes','Shadow Shoes (Tier 1)','Shadowgear',true,1,true,'bonus bAgi,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24004,'T1_Shadow_R_Accessory','Shadow Ring (Tier 1)','Shadowgear',true,1,true,'bonus bVit,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24005,'T1_Shadow_L_Accessory','Shadow Pendant (Tier 1)','Shadowgear',true,1,true,'bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24006,'T2_Shadow_Armor','Shadow Armor (Tier 2)','Shadowgear',true,30,true,'bonus bStr,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24007,'T2_Shadow_Weapon','Shadow Gauntlets (Tier 2)','Shadowgear',true,30,true,'bonus bDex,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24008,'T2_Shadow_Shield','Shadow Shield (Tier 2)','Shadowgear',true,60,true,'bonus bLuk,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24009,'T2_Shadow_Shoes','Shadow Shoes (Tier 2)','Shadowgear',true,90,true,'bonus bAgi,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24010,'T2_Shadow_R_Accessory','Shadow Ring (Tier 2)','Shadowgear',true,120,true,'bonus bVit,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24011,'T2_Shadow_L_Accessory','Shadow Pendant (Tier 2)','Shadowgear',true,150,true,'bonus bInt,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24012,'S_Promotion_Weapon','Shadow Weapon','Shadowgear',true,1,true,'bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24013,'S_Promotion_Armor','Shadow Armor','Shadowgear',true,1,true,'bonus bLuk,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24014,'S_Promotion_Shoes','Shadow Shoes','Shadowgear',true,1,true,'bonus bAgi,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24015,'S_Promotion_Shield','Shadow Shield','Shadowgear',true,1,true,'bonus bVit,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24016,'S_Promotion_Earring','Shadow Earring','Shadowgear',true,1,true,'bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24017,'S_Promotion_Pendant','Shadow Pendant','Shadowgear',true,1,true,'bonus bStr,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24018,'S_Physical_Earring','Physical Earring (Shadow)','Shadowgear',true,1,true,'bonus bAspdRate,(getrefine()>=7)?2:1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24019,'S_Physical_Weapon','Physical Weapon (Shadow)','Shadowgear',true,1,true,'bonus bBaseAtk,10; if(getrefine()>=7) { bonus2 bAddClass,Class_All,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24020,'S_Physical_Pendant','Physical Pendant (Shadow)','Shadowgear',true,1,true,'bonus bMaxHP,100; if(getrefine()>=7) { bonus bMaxHPrate,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24021,'S_Magical_Earring','Magical Earring (Shadow)','Shadowgear',true,1,true,'bonus bVariableCastrate,-(getrefine()>=7)?2:1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24022,'S_Magical_Weapon','Magical Weapon (Shadow)','Shadowgear',true,1,true,'bonus bMatk,10; if(getrefine()>=7) { bonus bMatkRate,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24023,'S_Magical_Pendant','Magical Pencil (Shadow)','Shadowgear',true,1,true,'bonus bMaxSP,50; if(getrefine()>=7) { bonus bMaxSPrate,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24024,'S_Breezy_Armor','Breeze Armor (Shadow)','Shadowgear',true,1,true,'bonus bFlee,5+(getrefine()>=7 ? 10 : 0);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24025,'S_Champion_Shoes','Champion Shoes (Shadow)','Shadowgear',true,1,true,'bonus bMaxHP,20; bonus bMaxSP,20; if(getrefine()>=7) { bonus bMaxHP,1; bonus bMaxSP,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24026,'S_Athena_Shield','Athena Shield (Shadow)','Shadowgear',true,1,true,'bonus bDef,(getrefine()>=7)?20:10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24027,'S_Immune_Armor','Immune Shadow Armor','Shadowgear',true,1,true,'bonus2 bSubEle,0,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24028,'S_Hard_Armor','Hard Shadow Armor','Shadowgear',true,1,true,'bonus bMaxHP,50; if(getrefine()>=7) { bonus bMaxHPrate,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24029,'S_Ancient_Armor','Ancient Shadow Armor','Shadowgear',true,1,true,'bonus bHit,(getrefine()>=7)?20:10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24030,'S_Critical_Armor','Critital Shadow Armor','Shadowgear',true,1,true,'bonus bCritical,(getrefine()>=7)?10:5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24031,'S_Kingbird_Weapon','Kingbird\'s Shadow Weapon','Shadowgear',true,1,true,'bonus bBaseAtk,10; if(getrefine()>=7) { bonus bLongAtkRate,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24032,'S_Cri_Hit_Weapon','Critical Hit Shadow Weapon','Shadowgear',true,1,true,'bonus bBaseAtk,10; if(getrefine()>=7) { bonus bCritAtkRate,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`magic_attack`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24033,'S_Healing_Weapon','Healing Shadow Weapon','Shadowgear',10,true,1,true,'if (getrefine()>=7) bonus bHealPower2,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24034,'S_Lucky_Weapon','Lucky Shadow Weapon','Shadowgear',true,1,true,'bonus bLuk,1; if(getrefine()>=7) { bonus bLuk,1; } if(getrefine()>=9) { bonus bLuk,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24035,'S_Power_Earring','Power Shadow Earring','Shadowgear',true,1,true,'bonus bStr,1; .@r = getrefine(); if(.@r>=7) { bonus bStr,1; } if(.@r>=9) { bonus bStr,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24036,'S_Int_Pendant','Intelligent Shadow Pendant','Shadowgear',true,1,true,'bonus bInt,1; .@r = getrefine(); if(.@r>=7) { bonus bInt,1; } if(.@r>=9) { bonus bInt,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24037,'S_Dexterous_Armor','Dexterous Shadow Armor','Shadowgear',true,1,true,'bonus bDex,1; .@r = getrefine(); if(.@r>=7) { bonus bDex,1; } if(.@r>=9) { bonus bDex,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24038,'S_Vital_Shoes','Vital Shadow Shoes','Shadowgear',true,1,true,'bonus bVit,1; .@r = getrefine(); if(.@r>=7) { bonus bVit,1; } if(.@r>=9) { bonus bVit,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24039,'S_Athletic_Shield','Athletic Shadow Shield','Shadowgear',true,1,true,'bonus bAgi,1; .@r = getrefine(); if(.@r>=7) { bonus bAgi,1; } if(.@r>=9) { bonus bAgi,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24040,'S_Lucky_Armor','Lucky Shadow Armor','Shadowgear',true,1,true,'bonus bLuk,1; bonus bCritical,(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24041,'S_Power_Pendant','Power Shadow Pendant','Shadowgear',true,1,true,'bonus bStr,1; bonus bBaseAtk,getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24042,'S_Int_Earring','Intelligent Shadow Earring','Shadowgear',true,1,true,'bonus bInt,1; bonus bMatk,getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24043,'S_Dexterous_Weapon','Dexterous Shadow Weapon','Shadowgear',true,1,true,'bonus bDex,1; bonus bHit,getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24044,'S_Vital_Shield','Vital Shadow Shield','Shadowgear',true,1,true,'bonus bVit,1; bonus bDef,getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24045,'S_Athletic_Shoes','Athletic Shadow Shoes','Shadowgear',true,1,true,'bonus bAgi,1; bonus bFlee,getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24046,'S_Resist_Spell_Pendant','Resist Spell Power Pendant (Shadow)','Shadowgear',true,1,true,'bonus bMdef,(getrefine()>=7)?6:3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24047,'S_Rapid_Pendant','Rapid Pendant (Shadow)','Shadowgear',true,1,true,'.@r = getrefine(); bonus bAspdRate,1+((.@r>=9)?2:(.@r>=7)?1:0);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24048,'S_Caster_Pendant','Caster Pendant (Shadow)','Shadowgear',true,1,true,'.@r = getrefine(); bonus bVariableCastrate,1+((.@r>=9)?2:(.@r>=7)?1:0);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24049,'S_Hard_Earring','Hard Earring (Shadow)','Shadowgear',true,1,true,'bonus bMaxHP,100; .@r = getrefine(); bonus bMaxHPRate,((.@r>=9)?2:(.@r>=7)?1:0);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24050,'S_Wise_Earring','Wise Earring (Shadow)','Shadowgear',true,1,true,'bonus bMaxSP,50; .@r = getrefine(); bonus bMaxSPRate,((.@r>=9)?2:(.@r>=7)?1:0);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24051,'S_Athena_Earring','Athena Earring (Shadow)','Shadowgear',true,1,true,'bonus bDef,(getrefine()>=7)?20:10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24052,'S_Cranial_Shield','Cranial Shield (Shadow)','Shadowgear',true,1,true,'bonus2 bSubRace,7,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,7,1; } if(.@r>=9) { bonus2 bSubRace,7,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24053,'S_Safeguard_Shield','Safeguard Shield (Shadow)','Shadowgear',true,1,true,'bonus2 bSubRace,10,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,10,1; } if(.@r>=9) { bonus2 bSubRace,10,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24054,'S_Brutal_Shield','Brutal Shield (Shadow)','Shadowgear',true,1,true,'bonus2 bSubRace,2,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,2,1; } if(.@r>=9) { bonus2 bSubRace,2,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24055,'S_Gargantua_Shield','Gargantua Shield (Shadow)','Shadowgear',true,1,true,'bonus2 bSubRace,4,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,4,1; } if(.@r>=9) { bonus2 bSubRace,4,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24056,'S_Homers_Shield','Homers Shield (Shadow)','Shadowgear',true,1,true,'bonus2 bSubRace,5,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,5,1; } if(.@r>=9) { bonus2 bSubRace,5,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24057,'S_Dragoon_Shield','Dragoon Shield (Shadow)','Shadowgear',true,1,true,'bonus2 bSubRace,9,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,9,1; } if(.@r>=9) { bonus2 bSubRace,9,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24058,'S_Satanic_Shield','Satanic Shield (Shadow)','Shadowgear',true,1,true,'bonus2 bSubRace,8,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,8,1; } if(.@r>=9) { bonus2 bSubRace,8,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24059,'S_Flameguard_Shield','Flameguard Shield (Shadow)','Shadowgear',true,1,true,'bonus2 bSubRace,0,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,0,1; } if(.@r>=9) { bonus2 bSubRace,0,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24060,'S_Requiem_Shield','Requiem Shield (Shadow)','Shadowgear',true,1,true,'bonus2 bSubRace,1,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,1,1; } if(.@r>=9) { bonus2 bSubRace,1,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24061,'S_Cadi_Shield','Cadi Shield (Shadow)','Shadowgear',true,1,true,'bonus2 bSubRace,3,1; .@r = getrefine(); if(.@r>=7) { bonus2 bSubRace,3,1; } if(.@r>=9) { bonus2 bSubRace,3,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24062,'S_Bloody_Shoes','Bloody Shoes (Shadow)','Shadowgear',true,1,true,'bonus2 bAddRace,7,2; bonus2 bMagicAddRace,7,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,7,1; bonus2 bMagicAddRace,7,1; } if(.@r>=9) { bonus2 bAddRace,7,2; bonus2 bMagicAddRace,7,2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24063,'S_Liberation_Shoes','Liberation Shoes (Shadow)','Shadowgear',true,1,true,'bonus2 bAddRace,10,2; bonus2 bMagicAddRace,10,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,10,1; bonus2 bMagicAddRace,10,1; } if(.@r>=9) { bonus2 bAddRace,10,2; bonus2 bMagicAddRace,10,2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24064,'S_Chemical_Shoes','Chemical Shoes (Shadow)','Shadowgear',true,1,true,'bonus2 bAddRace,3,2; bonus2 bMagicAddRace,3,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,3,1; bonus2 bMagicAddRace,3,1; } if(.@r>=9) { bonus2 bAddRace,3,2; bonus2 bMagicAddRace,3,2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24065,'S_Clamorous_Shoes','Clamorous Shoes (Shadow)','Shadowgear',true,1,true,'bonus2 bAddRace,2,2; bonus2 bMagicAddRace,2,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,2,1; bonus2 bMagicAddRace,2,1; } if(.@r>=9) { bonus2 bAddRace,2,2; bonus2 bMagicAddRace,2,2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24066,'S_Insecticide_Shoes','Insecticide Shoes (Shadow)','Shadowgear',true,1,true,'bonus2 bAddRace,4,2; bonus2 bMagicAddRace,4,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,4,1; bonus2 bMagicAddRace,4,1; } if(.@r>=9) { bonus2 bAddRace,4,2; bonus2 bMagicAddRace,4,2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24067,'S_Fisher_Shoes','Fisher Shoes (Shadow)','Shadowgear',true,1,true,'bonus2 bAddRace,5,2; bonus2 bMagicAddRace,5,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,5,1; bonus2 bMagicAddRace,5,1; } if(.@r>=9) { bonus2 bAddRace,5,2; bonus2 bMagicAddRace,5,2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24068,'S_Seraphim_Shoes','Seraphim Shoes (Shadow)','Shadowgear',true,1,true,'bonus2 bAddRace,8,2; bonus2 bMagicAddRace,8,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,8,1; bonus2 bMagicAddRace,8,1; } if(.@r>=9) { bonus2 bAddRace,8,2; bonus2 bMagicAddRace,8,2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24069,'S_Beholder_Shoes','Beholder Shoes (Shadow)','Shadowgear',true,1,true,'bonus2 bAddRace,0,2; bonus2 bMagicAddRace,0,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,0,1; bonus2 bMagicAddRace,0,1; } if(.@r>=9) { bonus2 bAddRace,0,2; bonus2 bMagicAddRace,0,2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24070,'S_Divine_Shoes','Divine Shoes (Shadow)','Shadowgear',true,1,true,'bonus2 bAddRace,1,2; bonus2 bMagicAddRace,1,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,1,1; bonus2 bMagicAddRace,1,1; } if(.@r>=9) { bonus2 bAddRace,1,2; bonus2 bMagicAddRace,1,2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24071,'S_Dragoon_Shoes','Dragoon Shoes (Shadow)','Shadowgear',true,1,true,'bonus2 bAddRace,9,2; bonus2 bMagicAddRace,9,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddRace,9,1; bonus2 bMagicAddRace,9,1; } if(.@r>=9) { bonus2 bAddRace,9,2; bonus2 bMagicAddRace,9,2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24072,'S_Big_Armor','Large Shadow Armor','Shadowgear',true,1,true,'bonus2 bSubSize,2,2; .@r = getrefine(); if(.@r>=7) { bonus2 bSubSize,2,1; } if(.@r>=9) { bonus2 bSubSize,2,2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24073,'S_Medium_Armor','Medium Shadow Armor','Shadowgear',true,1,true,'bonus2 bSubSize,1,2; .@r = getrefine(); if(.@r>=7) { bonus2 bSubSize,1,1; } if(.@r>=9) { bonus2 bSubSize,1,2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24074,'S_Small_Armor','Small Shadow Armor','Shadowgear',true,1,true,'bonus2 bSubSize,0,2; .@r = getrefine(); if(.@r>=7) { bonus2 bSubSize,0,1; } if(.@r>=9) { bonus2 bSubSize,0,2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24075,'S_Big_Weapon','Large Shadow Weapon','Shadowgear',true,1,true,'bonus2 bAddSize,2,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddSize,2,1; } if(.@r>=9) { bonus2 bAddSize,2,2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24076,'S_Medium_Weapon','Medium Shadow Weapon','Shadowgear',true,1,true,'bonus2 bAddSize,1,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddSize,1,1; } if(.@r>=9) { bonus2 bAddSize,1,2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24077,'S_Small_Weapon','Small Shadow Weapon','Shadowgear',true,1,true,'bonus2 bAddSize,0,2; .@r = getrefine(); if(.@r>=7) { bonus2 bAddSize,0,1; } if(.@r>=9) { bonus2 bAddSize,0,2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24078,'S_Spiritual_Weapon','Spiritual Shadow Weapon','Shadowgear',true,1,true,'bonus bUseSPrate,-5; if(getrefine()>=7){bonus bSPrecovRate,5;}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24079,'S_Spiritual_Earring','Spiritual Shadow Earring','Shadowgear',true,1,true,'bonus bMaxSP,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24080,'S_Spiritual_Pendent','Spiritual Shadow Pendant','Shadowgear',true,1,true,'bonus bMaxSPrate,(getrefine()>=7?2:1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24081,'S_Malicious_Armor','Malicious Shas Shadow Armor','Shadowgear',true,1,true,'bonus bMaxHP,100; if(getrefine()>=7){bonus bMaxHPrate,1;}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24082,'S_Malicious_Shoes','Malicious Shas Shadow Shoes','Shadowgear',true,1,true,'bonus bMaxHPrate,(getrefine()>=7?2:1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24083,'S_Malicious_Shield','Malicious Shas Shadow Shield','Shadowgear',true,1,true,'bonus bHPrecovRate,(getrefine()>=7?10:5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24084,'S_Gemstone_Armor','Gemstone Shadow Armor','Shadowgear',true,1,true,'bonus bCritical,5+(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24085,'S_Gemstone_Shoes','Gemstone Shadow Shoes','Shadowgear',true,1,true,'bonus bFlee,5+(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24086,'S_Gemstone_Shield','Gemstone Shadow Shield','Shadowgear',true,1,true,'bonus bDef,5+(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24087,'S_Gemstone_Weapon','Gemstone Shadow Weapon','Shadowgear',true,1,true,'bonus bHit,5+(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24088,'S_Gemstone_Earring','Gemstone Shadow Earring','Shadowgear',true,1,true,'bonus bMatk,5+(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24089,'S_Gemstone_Pendent','Gemstone Shadow Pendant','Shadowgear',true,1,true,'bonus bBaseAtk,5+(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24090,'S_Stability_Shield','Stability Shadow Shield','Shadowgear',true,1,true,'bonus bDef,3; .@r = getrefine(); bonus2 bResEff,Eff_Stun,.@r/2; bonus2 bResEff,Eff_Freeze,.@r/2; bonus2 bResEff,Eff_Curse,.@r/2; bonus2 bResEff,Eff_Bleeding,.@r/2; bonus2 bResEff,Eff_Stone,.@r; bonus2 bResEff,Eff_Sleep,.@r; bonus2 bResEff,Eff_Silence,.@r; bonus2 bResEff,Eff_Blind,.@r;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24091,'S_Plasterer\'s_Armor','Harrods Plaster Shadow Armor','Shadowgear',true,1,true,'bonus bDef,1; bonus2 bResEff,Eff_Stone,getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24092,'S_Plasterer\'s_Shoes','Harrods Plaster Shadow Shoes','Shadowgear',true,1,true,'bonus bDef,1; bonus2 bResEff,Eff_Stone,getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24093,'S_Insomniac_Armor','Insomnia Shadow Armor','Shadowgear',true,1,true,'bonus bDef,1; bonus2 bResEff,Eff_Sleep,getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24094,'S_Insomniac_Shoes','Insomnia Shadow Shoes','Shadowgear',true,1,true,'bonus bDef,1; bonus2 bResEff,Eff_Sleep,getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24095,'S_Peerless_Armor','Peerless Shadow Armor','Shadowgear',true,1,true,'bonus bDef,1; bonus2 bResEff,Eff_Silence,getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24096,'S_Peerless_Shoes','Peerless Shadow Shoes','Shadowgear',true,1,true,'bonus bDef,1; bonus2 bResEff,Eff_Silence,getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24097,'S_Adurate_Armor','Andre Shadow Armor','Shadowgear',true,1,true,'bonus bDef,1; bonus2 bResEff,Eff_Blind,getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24098,'S_Adurate_Shoes','Andre Shadow Shoes','Shadowgear',true,1,true,'bonus bDef,1; bonus2 bResEff,Eff_Blind,getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24099,'Unfreez_Weapon_S','Unfreezing Shadow Weapon','Shadowgear',10,true,1,true,'bonus bDef,1; bonus2 bResEff,Eff_Freeze,getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24100,'Unfreeze_Earing_S','Unfreezing Shadow Earring','Shadowgear',10,true,1,true,'bonus bDef,1; bonus2 bResEff,Eff_Freeze,getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24101,'Unfreeze_Pendent_S','Unfreezing Shadow Pendant','Shadowgear',10,true,1,true,'bonus bDef,1; bonus2 bResEff,Eff_Freeze,getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24102,'Vitality_Earing_S','Vitality Shadow Earring','Shadowgear',10,true,1,true,'bonus bDef,1; bonus2 bResEff,Eff_Bleeding,getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24103,'Vitality_Pendant_S','Vitality Shadow Pendant','Shadowgear',10,true,1,true,'bonus bDef,1; bonus2 bResEff,Eff_Bleeding,getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24104,'S_Neutral_Weapon','Neutral Shadow Weapon','Shadowgear',true,1,true,'bonus bDef,1; bonus2 bResEff,Eff_Stun,getrefine()/2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24105,'S_Neutral_Earring','Neutral Shadow Earring','Shadowgear',true,1,true,'bonus bDef,1; bonus2 bResEff,Eff_Stun,getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24106,'S_Neutral_Pendent','Neutral Shadow Pendant','Shadowgear',true,1,true,'bonus bDef,1; bonus2 bResEff,Eff_Stun,getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24107,'S_Curse_Lift_Earring','Frozen Curse Shadow Earring','Shadowgear',true,1,true,'bonus bDef,1; bonus2 bResEff,Eff_Curse,getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24108,'S_Curse_Lift_Pendent','Frozen Curse Shadow Pendant','Shadowgear',true,1,true,'bonus bDef,1; bonus2 bResEff,Eff_Curse,getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24109,'S_Caster_earring','Caster Shadow Earrings','Shadowgear',true,1,true,'bonus bVariableCastrate,-1-((getrefine()>=7)?1:0);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24110,'S_Caster_Weapon','Caster Shadow Weapon','Shadowgear',true,1,true,'.@r = getrefine(); bonus bVariableCastrate,-1-((.@r>=7)?1:0)-((.@r>=9)?2:0);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24111,'S_Spell_Flow_Shoes','Spellflow Shadow Shoes','Shadowgear',true,1,true,'bonus bUseSPrate,1; if(getrefine()>=7) bonus bSPrecovRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24112,'S_Spell_Flow_Armor','Spellflow Shadow Armor','Shadowgear',true,1,true,'bonus bUseSPrate,1+((getrefine()>=7)?1:0)+((getrefine()>=9)?1:0);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24113,'S_Spell_Flow_Shield','Spellflow Shadow Shield','Shadowgear',true,1,true,'bonus bUseSPrate,1; if(getrefine()>=7) bonus bMaxSPrate,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24114,'S_Greed_Armor','Grid Shadow Armor','Shadowgear',true,1,true,'skill "BS_GREED",1; bonus2 bSkillUseSP,"BS_GREED",100-(getrefine()*10);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24115,'S_Greed_Shoes','Grid Shadow Shoes','Shadowgear',true,1,true,'skill "BS_GREED",1; bonus2 bSkillUseSP,"BS_GREED",-100+(getrefine()*10);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24116,'S_Greed_Shield','Grid Shadow Shield','Shadowgear',true,1,true,'skill "BS_GREED",1; bonus2 bSkillUseSP,"BS_GREED",-100+(getrefine()*10);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24117,'S_Greed_Weapon','Grid Shadow Weapon','Shadowgear',true,1,true,'skill "BS_GREED",1; bonus2 bSkillUseSP,"BS_GREED",-100+(getrefine()*10);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24118,'S_Greed_Earring','Grid Shadow Earring','Shadowgear',true,1,true,'skill "BS_GREED",1; bonus2 bSkillUseSP,"BS_GREED",-100+(getrefine()*10);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24119,'S_Greed_Pendant','Grid Shadow Pendant','Shadowgear',true,1,true,'skill "BS_GREED",1; bonus2 bSkillUseSP,"BS_GREED",-100+(getrefine()*10);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24120,'S_Heal_Armor','Heal Shadow Armor','Shadowgear',true,1,true,'skill "AL_HEAL",1; bonus2 bSkillUseSP,"AL_HEAL",-50+(getrefine()*5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24121,'S_Heal_Shoes','Heal Shadow Shoes','Shadowgear',true,1,true,'skill "AL_HEAL",1; bonus2 bSkillUseSP,"AL_HEAL",-50+(getrefine()*5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24122,'S_Heal_Shield','Heal Shadow Shield','Shadowgear',true,1,true,'skill "AL_HEAL",1; bonus2 bSkillUseSP,"AL_HEAL",-50+(getrefine()*5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24123,'S_Heal_Weapon','Heal Shadow Weapon','Shadowgear',true,1,true,'skill "AL_HEAL",1; bonus2 bSkillUseSP,"AL_HEAL",-50+(getrefine()*5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24124,'S_Heal_Earring','Heal Shadow Earring','Shadowgear',true,1,true,'skill "AL_HEAL",1; bonus2 bSkillUseSP,"AL_HEAL",-50+(getrefine()*5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24125,'S_Heal_Pendant','Heal Shadow Pendant','Shadowgear',true,1,true,'skill "AL_HEAL",1; bonus2 bSkillUseSP,"AL_HEAL",-50+(getrefine()*5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (24126,'S_Hiding_Armor','Hiding Shadow Armor','Shadowgear',true,1,true,'skill "TF_HIDING",1; bonus2 bSkillUseSP,"TF_HIDING",-50+(getrefine()*5);','sc_end SC_HIDING;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (24127,'S_Hiding_Shoes','Hiding Shadow Shoes','Shadowgear',true,1,true,'skill "TF_HIDING",1; bonus2 bSkillUseSP,"TF_HIDING",-50+(getrefine()*5);','sc_end SC_HIDING;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (24128,'S_Hiding_Shield','Hiding Shadow Shield','Shadowgear',true,1,true,'skill "TF_HIDING",1; bonus2 bSkillUseSP,"TF_HIDING",-50+(getrefine()*5);','sc_end SC_HIDING;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (24129,'S_Hiding_Weapon','Hiding Shadow Weapon','Shadowgear',true,1,true,'skill "TF_HIDING",1; bonus2 bSkillUseSP,"TF_HIDING",-50+(getrefine()*5);','sc_end SC_HIDING;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (24130,'S_Hiding_Earring','Hiding Shadow Earring','Shadowgear',true,1,true,'skill "TF_HIDING",1; bonus2 bSkillUseSP,"TF_HIDING",-50+(getrefine()*5);','sc_end SC_HIDING;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (24131,'S_Hiding_Pendant','Hiding Shadow Pendant','Shadowgear',true,1,true,'skill "TF_HIDING",1; bonus2 bSkillUseSP,"TF_HIDING",-50+(getrefine()*5);','sc_end SC_HIDING;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (24132,'S_Cloaking_Armor','Cloaking Shadow Armor','Shadowgear',true,1,true,'skill "AS_CLOAKING",1; bonus2 bSkillUseSP,"AS_CLOAKING",-50+(getrefine()*5);','sc_end SC_CLOAKING;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (24133,'S_Cloaking_Shoes','Cloaking Shadow Shoes','Shadowgear',true,1,true,'skill "AS_CLOAKING",1; bonus2 bSkillUseSP,"AS_CLOAKING",-50+(getrefine()*5);','sc_end SC_CLOAKING;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (24134,'S_Cloaking_Shield','Cloaking Shadow Shield','Shadowgear',true,1,true,'skill "AS_CLOAKING",1; bonus2 bSkillUseSP,"AS_CLOAKING",-50+(getrefine()*5);','sc_end SC_CLOAKING;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (24135,'S_Cloaking_Weapon','Cloaking Shadow Weapon','Shadowgear',true,1,true,'skill "AS_CLOAKING",1; bonus2 bSkillUseSP,"AS_CLOAKING",-50+(getrefine()*5);','sc_end SC_CLOAKING;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (24136,'S_Cloaking_Earring','Cloaking Shadow Earring','Shadowgear',true,1,true,'skill "AS_CLOAKING",1; bonus2 bSkillUseSP,"AS_CLOAKING",-50+(getrefine()*5);','sc_end SC_CLOAKING;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (24137,'S_Cloaking_Pendant','Cloaking Shadow Pendant','Shadowgear',true,1,true,'skill "AS_CLOAKING",1; bonus2 bSkillUseSP,"AS_CLOAKING",-50+(getrefine()*5);','sc_end SC_CLOAKING;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24138,'S_Teleport_Armor','Teleport Shadow Armor','Shadowgear',true,1,true,'skill "AL_TELEPORT",1; bonus2 bSkillUseSP,"AL_TELEPORT",-50+(getrefine()*5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24139,'S_Teleport_Shoes','Teleport Shadow Shoes','Shadowgear',true,1,true,'skill "AL_TELEPORT",1; bonus2 bSkillUseSP,"AL_TELEPORT",-50+(getrefine()*5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24140,'S_Teleport_Shield','Teleport Shadow Shield','Shadowgear',true,1,true,'skill "AL_TELEPORT",1; bonus2 bSkillUseSP,"AL_TELEPORT",-50+(getrefine()*5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24141,'S_Teleport_Weapon','Teleport Shadow Weapon','Shadowgear',true,1,true,'skill "AL_TELEPORT",1; bonus2 bSkillUseSP,"AL_TELEPORT",-50+(getrefine()*5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24142,'S_Teleport_Earring','Teleport Shadow Earring','Shadowgear',true,1,true,'skill "AL_TELEPORT",1; bonus2 bSkillUseSP,"AL_TELEPORT",-50+(getrefine()*5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24143,'S_Teleport_Pendant','Teleport Shadow Pendant','Shadowgear',true,1,true,'skill "AL_TELEPORT",1; bonus2 bSkillUseSP,"AL_TELEPORT",-50+(getrefine()*5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24144,'S_Steal_Armor','Steal Shadow Armor','Shadowgear',true,1,true,'skill "TF_STEAL",1; bonus2 bSkillUseSP,"TF_STEAL",-50+(getrefine()*5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24145,'S_Steal_Shoes','Steal Shadow Shoes','Shadowgear',true,1,true,'skill "TF_STEAL",1; bonus2 bSkillUseSP,"TF_STEAL",-50+(getrefine()*5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24146,'S_Steal_Shield','Steal Shadow Shield','Shadowgear',true,1,true,'skill "TF_STEAL",1; bonus2 bSkillUseSP,"TF_STEAL",-50+(getrefine()*5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24147,'S_Steal_Weapon','Steal Shadow Weapon','Shadowgear',true,1,true,'skill "TF_STEAL",1; bonus2 bSkillUseSP,"TF_STEAL",-50+(getrefine()*5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24148,'S_Steal_Earring','Steal Shadow Earring','Shadowgear',true,1,true,'skill "TF_STEAL",1; bonus2 bSkillUseSP,"TF_STEAL",-50+(getrefine()*5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24149,'S_Steal_Pendant','Steal Shadow Pendant','Shadowgear',true,1,true,'skill "TF_STEAL",1; bonus2 bSkillUseSP,"TF_STEAL",-50+(getrefine()*5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24150,'S_Infinity_Earring','Infinity Shadow Earring','Shadowgear',true,1,true,'.@r = getrefine(); bonus2 bSubSize,Size_All,1+((.@r >= 9) ? 2 : (.@r >= 7) ? 1 : 0);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24151,'S_Infinity_Pendant','Infinity Shadow Pendant','Shadowgear',true,1,true,'.@r = getrefine(); bonus2 bSubSize,Size_All,1+((.@r >= 9) ? 2 : (.@r >= 7) ? 1 : 0);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24152,'S_Solid_Weapon','Solid Shadow Weapon','Shadowgear',true,1,true,'bonus bBaseAtk,5+(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24153,'S_Solid_Earring','Solid Shadow Earring','Shadowgear',true,1,true,'bonus bHit,5+(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24154,'S_Immortal_Armor','Solid Shadow Armor','Shadowgear',true,1,true,'bonus bDef,5+(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24155,'S_Immortal_Pendant','Solid Shadow Pendant','Shadowgear',true,1,true,'bonus bMdef,(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24156,'S_Executioner_Weapon','Demi-Human Shadow Weapon','Shadowgear',true,1,true,'bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5+(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24157,'S_Exorcist_Weapon','Exorcist Shadow Weapon','Shadowgear',true,1,true,'bonus2 bIgnoreDefRaceRate,RC_Demon,5+(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24158,'S_Hunting_Weapon','Hunting Shadow Weapon','Shadowgear',true,1,true,'bonus2 bIgnoreDefRaceRate,RC_Brute,5+(getrefine()/2); bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5+(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24159,'S_Insect_Net_Weapon','Insect Shadow Weapon','Shadowgear',true,1,true,'bonus2 bIgnoreDefRaceRate,RC_Insect,5+(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24160,'S_Fishing_Weapon','Fishing Shadow Weapon','Shadowgear',true,1,true,'bonus2 bIgnoreDefRaceRate,RC_Fish,5+(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24161,'S_Dragon_Killer_Weapon','Dragon Killer Shadow Weapon','Shadowgear',true,1,true,'bonus2 bIgnoreDefRaceRate,RC_Dragon,5+(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24162,'S_Corrupt_Weapon','Angelus Shadow Weapon','Shadowgear',true,1,true,'bonus2 bIgnoreDefRaceRate,RC_Angel,5+(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24163,'S_Vibration_Weapon','Formless Shadow Weapon','Shadowgear',true,1,true,'bonus2 bIgnoreDefRaceRate,RC_Formless,5+(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24164,'S_Holy_Water_Weapon','Holy Water Shadow Weapon','Shadowgear',true,1,true,'bonus2 bIgnoreDefRaceRate,RC_Undead,5+(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24165,'S_Scissors_Weapon','Plant Shadow Weapon','Shadowgear',true,1,true,'bonus2 bIgnoreDefRaceRate,RC_Plant,5+(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24166,'S_Penetration_Earring','Penetration Shadow Earring','Shadowgear',true,1,true,'.@r = getrefine(); bonus2 bIgnoreDefRaceRate,RC_All,5+(.@r/2); bonus2 bIgnoreDefRaceRate,RC_Player_Human,-5-(.@r/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24167,'S_Penetration_Pendent','Penetration Shadow Pendant','Shadowgear',true,1,true,'.@r = getrefine(); bonus2 bIgnoreDefRaceRate,RC_All,5+(.@r/2); bonus2 bIgnoreDefRaceRate,RC_Player_Human,-5-(.@r/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24168,'S_Tempest_Earring','Tempest Shadow Earring','Shadowgear',true,1,true,'bonus2 bIgnoreMdefClassRate,Class_Normal,5+(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24169,'S_Tempest_Pendent','Tempest Pendant Shadow','Shadowgear',true,1,true,'bonus2 bIgnoreMdefClassRate,Class_Normal,5+(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24170,'S_M_Executioner_Weapon','Magic Demi-Human Shadow Weapon','Shadowgear',true,1,true,'bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5+(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24171,'S_M_Exorcist_Weapon','Magic Exorcist Shadow Weapon','Shadowgear',true,1,true,'bonus2 bIgnoreMdefRaceRate,RC_Demon,5+(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24172,'S_M_Hunting_Weapon','Magic Hunting Shadow Weapon','Shadowgear',true,1,true,'bonus2 bIgnoreMdefRaceRate,RC_Brute,5+(getrefine()/2); bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,5+(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24173,'S_M_Insect_Net_Weapon','Magic Insect Shadow Weapon','Shadowgear',true,1,true,'bonus2 bIgnoreMdefRaceRate,RC_Insect,5+(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24174,'S_M_Fishing_Weapon','Magic Fishing Shadow Weapon','Shadowgear',true,1,true,'bonus2 bIgnoreMdefRaceRate,RC_Fish,5+(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24175,'S_M_Dragon_K_Weapon','Magic Dragon Killer Shadow Weapon','Shadowgear',true,1,true,'bonus2 bIgnoreMdefRaceRate,RC_Dragon,5+(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24176,'S_M_Corrupt_Weapon','Magic Angelus Shadow Weapon','Shadowgear',true,1,true,'bonus2 bIgnoreMdefRaceRate,RC_Angel,5+(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24177,'S_M_Vibration_Weapon','Magic Formless Shadow Weapon','Shadowgear',true,1,true,'bonus2 bIgnoreMdefRaceRate,RC_Formless,5+(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24178,'S_M_Holy_Water_Weapon','Magic Holy Water Shadow Weapon','Shadowgear',true,1,true,'bonus2 bIgnoreMdefRaceRate,RC_Undead,5+(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24179,'S_M_Scissors_Weapon','Magic Caesars Shadow Weapon','Shadowgear',true,1,true,'bonus2 bIgnoreMdefRaceRate,RC_Plant,5+(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24180,'S_Bearers_Armor','Bearer\'s Shadow Armor','Shadowgear',true,1,true,'bonus bMdef,1+(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24181,'S_Bearers_Shoes','Bearer\'s Shadow Shoes','Shadowgear',true,1,true,'bonus bMaxSP,50+(5*(getrefine()/2));'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24182,'S_Bearers_Shield','Bearer\'s Shadow Shield','Shadowgear',true,1,true,'bonus bDef,5+(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24183,'S_Bearers_Weapon','Bearer\'s Shadow Weapon','Shadowgear',true,1,true,'bonus bMaxHP,100+(10*(getrefine()/2));'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24184,'S_Bearers_Earring','Bearer\'s Shadow Earring','Shadowgear',true,1,true,'bonus bMatk,5+(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24185,'S_Bearers_Pendent','Bearer\'s Shadow Pendant','Shadowgear',true,1,true,'bonus bBaseAtk,5+(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24186,'S_Basis_Armor','Basis Shadow Armor','Shadowgear',true,1,true,'.@r = getrefine(); bonus2 bAddEle,Ele_Neutral,1+(.@r/2); bonus2 bMagicAddEle,Ele_Neutral,1+(.@r/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24187,'S_Hallowed_Armor','Hallowed Shadow Armor','Shadowgear',true,1,true,'.@r = getrefine(); bonus2 bAddEle,Ele_Dark,1+(.@r/2); bonus2 bMagicAddEle,Ele_Dark,1+(.@r/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24188,'S_Saharic_Armor','Underneith Shadow Armor','Shadowgear',true,1,true,'.@r = getrefine(); bonus2 bAddEle,Ele_Water,1+(.@r/2); bonus2 bMagicAddEle,Ele_Water,1+(.@r/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24189,'S_Underneath_Armor','Underneath Shadow Armor','Shadowgear',true,1,true,'.@r = getrefine(); bonus2 bAddEle,Ele_Earth,1+(.@r/2); bonus2 bMagicAddEle,Ele_Earth,1+(.@r/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24190,'S_Flam_Armor','Flame Shadow Armor','Shadowgear',true,1,true,'.@r = getrefine(); bonus2 bAddEle,Ele_Fire,1+(.@r/2); bonus2 bMagicAddEle,Ele_Fire,1+(.@r/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24191,'S_Windy_Armor','Windy Shadow Armor','Shadowgear',true,1,true,'.@r = getrefine(); bonus2 bAddEle,Ele_Wind,1+(.@r/2); bonus2 bMagicAddEle,Ele_Wind,1+(.@r/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24192,'S_Envenom_Armor','Envenom Shadow Armor','Shadowgear',true,1,true,'.@r = getrefine(); bonus2 bAddEle,Ele_Poison,1+(.@r/2); bonus2 bMagicAddEle,Ele_Poison,1+(.@r/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24193,'S_Damned_Armor','Damned Shadow Armor','Shadowgear',true,1,true,'.@r = getrefine(); bonus2 bAddEle,Ele_Holy,1+(.@r/2); bonus2 bMagicAddEle,Ele_Holy,1+(.@r/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24194,'S_Geist_Armor','Exorcism Shadow Armor','Shadowgear',true,1,true,'.@r = getrefine(); bonus2 bAddEle,Ele_Ghost,1+(.@r/2); bonus2 bMagicAddEle,Ele_Ghost,1+(.@r/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24195,'S_Divine_Armor','Divine Shadow Armor','Shadowgear',true,1,true,'.@r = getrefine(); bonus2 bAddEle,Ele_Undead,1+(.@r/2); bonus2 bMagicAddEle,Ele_Undead,1+(.@r/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24196,'S_Hasty_Shoes','Hasty Shadow Shoes','Shadowgear',true,1,true,'bonus bFlee,5+(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24197,'S_Hasty_Armor','Hasty Shadow Armor','Shadowgear',true,1,true,'bonus bFlee,5+(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24198,'S_Basis_Shield','Basis Shadow Shield','Shadowgear',true,1,true,'.@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Neutral,.@i; bonus2 bMagicSubDefEle,Ele_Neutral,.@i;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24199,'S_Hallowed_Shield','Hallowed Shadow Shield','Shadowgear',true,1,true,'.@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Dark,.@i; bonus2 bMagicSubDefEle,Ele_Dark,.@i;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24200,'S_Saharic_Shield','Saharic Shadow Shield','Shadowgear',true,1,true,'.@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Water,.@i; bonus2 bMagicSubDefEle,Ele_Water,.@i;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24201,'S_Underneath_Shield','Underneath Shadow Shield','Shadowgear',true,1,true,'.@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Earth,.@i; bonus2 bMagicSubDefEle,Ele_Earth,.@i;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24202,'S_Flam_Shield','Flame Shadow Shield','Shadowgear',true,1,true,'.@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Fire,.@i; bonus2 bMagicSubDefEle,Ele_Fire,.@i;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24203,'S_Windy_Shield','Windy Shadow Shield','Shadowgear',true,1,true,'.@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Wind,.@i; bonus2 bMagicSubDefEle,Ele_Wind,.@i;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24204,'S_Envenom_Shield','Envenom Shadow Shield','Shadowgear',true,1,true,'.@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Poison,.@i; bonus2 bMagicSubDefEle,Ele_Poison,.@i;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24205,'S_Damned_Shield','Damned Shadow Shield','Shadowgear',true,1,true,'.@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Holy,.@i; bonus2 bMagicSubDefEle,Ele_Holy,.@i;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24206,'S_Geist_Shield','Exorcism Shadow Shield','Shadowgear',true,1,true,'.@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Ghost,.@i; bonus2 bMagicSubDefEle,Ele_Ghost,.@i;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24207,'S_Divine_Shield','Divine Shadow Shield','Shadowgear',true,1,true,'.@r = getrefine(); .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubDefEle,Ele_Undead,.@i; bonus2 bMagicSubDefEle,Ele_Undead,.@i;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shadow_shoes`,`equip_level_min`,`equip_level_max`,`refineable`,`script`) VALUES (24208,'S_Expert_Shoes','Expert Shadow Shoes','Shadowgear',20,100,true,150,175,true,'bonus2 bExpAddRace,RC_All,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`equip_level_max`,`refineable`,`script`) VALUES (24209,'S_Expert_Shield','Expert Shadow Shield','Shadowgear',true,150,175,true,'bonus2 bExpAddRace,RC_All,(getrefine()/4);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_shadow_shoes`,`equip_level_min`,`equip_level_max`,`refineable`,`script`) VALUES (24210,'S_Beginner_Shoes','Beginner Shadow Shoes','Shadowgear',20,true,1,49,true,'bonus2 bExpAddRace,RC_All,getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`equip_level_max`,`refineable`,`script`) VALUES (24211,'S_Beginner_Shield','Beginner Shadow Shield','Shadowgear',true,1,49,true,'bonus2 bExpAddRace,RC_All,getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`equip_level_max`,`refineable`,`script`) VALUES (24212,'S_Rookie_Shoes','Rookie Shadow Shoes','Shadowgear',true,50,99,true,'bonus2 bExpAddRace,RC_All,(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`equip_level_max`,`refineable`,`script`) VALUES (24213,'S_Rookie_Shield','Rookie Shadow Shield','Shadowgear',true,50,99,true,'bonus2 bExpAddRace,RC_All,(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_shadow_shoes`,`equip_level_min`,`equip_level_max`,`refineable`,`script`) VALUES (24214,'S_Advanced_Shoes','Advanced Shadow Shoes','Shadowgear',20,true,100,149,true,'bonus2 bExpAddRace,RC_All,(getrefine()/3);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`equip_level_max`,`refineable`,`script`) VALUES (24215,'S_Advanced_Shield','Advanced Shadow Shield','Shadowgear',true,100,149,true,'bonus2 bExpAddRace,RC_All,(getrefine()/3);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24216,'S_Attack_Armor','Attack Shadow Armor','Shadowgear',10,true,1,true,'.@r = getrefine(); autobonus "{ bonus bBaseAtk,("+.@r+"*5); }",(.@r*2)+10,3000,BF_NORMAL;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24217,'S_Blitz_Earring','Blitz Shadow Earring','Shadowgear',10,true,1,true,'.@r = getrefine(); bonus bHit,(.@r/2)+5; if(.@r>=7){ bonus bAspd,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24218,'S_Blitz_Pendent','Blitz Shadow Pendant','Shadowgear',10,true,1,true,'.@r = getrefine(); bonus bAtk2,(.@r/2)+5; if(.@r>=7){ bonus bAspd,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24219,'S_ColdBolt_Armor','Cold Bolt Shadow Armor','Shadowgear',10,true,1,true,'.@r = getrefine(); if(.@r>=2) autobonus "{ bonus3 bAutoSpell,\\"MG_COLDBOLT\\",("+.@r+"/2),1000; }",(.@r*2)+100,100,BF_SHORT;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24220,'S_FireBolt_Armor','Fire Bolt Shadow Armor','Shadowgear',10,true,1,true,'.@r = getrefine(); if(.@r>=2) autobonus "{ bonus3 bAutoSpell,\\"MG_FIREBOLT\\",("+.@r+"/2),1000; }",(.@r*2)+100,100,BF_SHORT;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24221,'S_LightingBolt_Armor','Lightning Bolt Shadow Armor','Shadowgear',10,true,1,true,'.@r = getrefine(); if(.@r>=2) autobonus "{ bonus3 bAutoSpell,\\"MG_LIGHTNINGBOLT\\",("+.@r+"/2),1000; }",(.@r*2)+100,100,BF_SHORT;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24222,'S_EarthSpike_Armor','Earth Spike Shadow Armor','Shadowgear',10,true,1,true,'.@r = getrefine(); if(.@r>=2) autobonus "{ bonus3 bAutoSpell,\\"WZ_EARTHSPIKE\\",("+.@r+"/2),1000; }",(.@r*2)+100,100,BF_SHORT;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24223,'S_Enhance_Force_Weapon','Enhanced Force Shadow Weapon','Shadowgear',10,true,true,true,true,100,true,'bonus bAtk2,10; bonus2 bAddClass,Class_All,(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24224,'S_Force_Weapon','Force Shadow Weapon','Shadowgear',10,true,70,true,'.@r = getrefine(); bonus2 bAddClass,Class_All,(.@r<7)?1:((.@r<9)?2:3);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24225,'S_Force_Earring','Force Shadow Earring','Shadowgear',10,true,70,true,'.@r = getrefine(); bonus bAtk2,(5+.@r); if(.@r>=7) bonus bMaxHPrate,1; if(.@r>=9) bonus bMaxSPrate,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24226,'S_Force_Pendant','Force Shadow Pendant','Shadowgear',10,true,70,true,'.@r = getrefine(); bonus bAtk2,(5+.@r); if(.@r>=7) bonus bMaxHPrate,1; if(.@r>=9) bonus bMaxSPrate,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24227,'S_Enhance_Spirit_Weapon','Enhanced Soul Shadow Weapon','Shadowgear',10,true,true,true,true,100,true,'bonus bMatk,10; bonus bMatkRate,(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24228,'S_Spirit_Weapon','Soul Shadow Weapon','Shadowgear',10,true,70,true,'.@r = getrefine(); bonus bMatkRate,(.@r<7)?1:((.@r<9)?2:3);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24229,'S_Spirit_Earring','Soul Shadow Earring','Shadowgear',10,true,70,true,'.@r = getrefine(); bonus bMatk,(5+.@r); if(.@r>=7) bonus bMaxHPrate,1; if(.@r>=9) bonus bMatkRate,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24230,'S_Spirit_Pendant','Soul Shadow Pendant','Shadowgear',10,true,70,true,'.@r = getrefine(); bonus bMatk,(5+.@r); if(.@r>=7) bonus bMaxHPrate,1; if(.@r>=9) bonus bMatkRate,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24231,'S_Blitz_Shoes','Blitz Shadow Shoes','Shadowgear',true,1,true,'bonus bFlee,5; .@r = getrefine(); if(.@r>=2){ bonus bCritical,2; } if(.@r>=7){ bonus bAspd,1; } if(.@r>=9){ bonus bAspd,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24232,'S_Blitz_Shield','Blitz Shadow Shield','Shadowgear',true,1,true,'bonus bCritical,5; .@r = getrefine(); if(.@r>=2){ bonus bCritical,2; } if(.@r>=7){ bonus bAspd,1; } if(.@r>=9){ bonus bAspd,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24233,'S_Exceed_Weapon','Exceeding Shadow Weapon','Shadowgear',true,100,true,'.@r = getrefine()/2; bonus bBaseAtk,5; bonus bMatk,5; bonus2 bAddClass,Class_All,.@r; bonus bMatkRate,.@r;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24234,'S_Titan_Earring','Titan Shadow Earring','Shadowgear',true,1,true,'.@r = getrefine(); .@rate = (.@r<7)?1:((.@r<9)?2:4); bonus2 bAddSize,Size_Large,.@rate; bonus2 bMagicAddSize,Size_Large,.@rate;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24235,'S_Titan_Pendant','Titan Shadow Pendant','Shadowgear',true,1,true,'.@r = getrefine(); .@rate = (.@r<7)?1:((.@r<9)?2:4); bonus2 bAddSize,Size_Large,.@rate; bonus2 bMagicAddSize,Size_Large,.@rate;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24236,'S_Boned_Earring','Boned Shadow Earring','Shadowgear',true,1,true,'.@r = getrefine(); .@rate = (.@r<7)?1:((.@r<9)?2:4); bonus2 bAddSize,Size_Medium,.@rate; bonus2 bMagicAddSize,Size_Medium,.@rate;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24237,'S_Boned_Pendant','Boned Shadow Pendant','Shadowgear',true,1,true,'.@r = getrefine(); .@rate = (.@r<7)?1:((.@r<9)?2:4); bonus2 bAddSize,Size_Medium,.@rate; bonus2 bMagicAddSize,Size_Medium,.@rate;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24238,'S_Gigantic_Earring','Gigantic Shadow Earring','Shadowgear',true,1,true,'.@r = getrefine(); .@rate = (.@r<7)?1:((.@r<9)?2:4); bonus2 bAddSize,Size_Small,.@rate; bonus2 bMagicAddSize,Size_Small,.@rate;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24239,'S_Gigantic_Pendant','Gigantic Shadow Pendant','Shadowgear',true,1,true,'.@r = getrefine(); .@rate = (.@r<7)?1:((.@r<9)?2:4); bonus2 bAddSize,Size_Small,.@rate; bonus2 bMagicAddSize,Size_Small,.@rate;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24240,'S_Caster_Shoes','Caster Shadow Shoes','Shadowgear',true,1,true,'bonus bMatk,5; bonus bUseSPrate,-1-(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24241,'S_Caster_Shield','Caster Shadow Shield','Shadowgear',true,1,true,'bonus bMatk,5; bonus bUseSPrate,-1-(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24242,'S_Caster_Armor','Caster Shadow Armor','Shadowgear',true,1,true,'bonus bMatk,5; bonus bUseSPrate,-1-(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24243,'S_Reload_Shoes','Reload Shadow Shoes','Shadowgear',true,1,true,'.@r = getrefine(); bonus bDelayrate,(.@r<7)?-1:((.@r<9)?-2:-3);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24244,'S_Reload_Shield','Reload Shadow Shield','Shadowgear',true,1,true,'.@r = getrefine(); bonus bDelayrate,(.@r<7)?-1:((.@r<9)?-2:-3);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24245,'S_Reload_Armor','Reload Shadow Armor','Shadowgear',true,1,true,'.@r = getrefine(); bonus bDelayrate,(.@r<7)?-1:((.@r<9)?-2:-3);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24246,'S_Swordman_Earring','Swordman Shadow Earring','Shadowgear',true,1,true,'.@r = getrefine(); bonus2 bSkillUseSPrate,"SM_BASH",20+(3*.@r);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24247,'S_Merchant_Earring','Merchant Shadow Earring','Shadowgear',true,1,true,'.@r = getrefine(); bonus2 bSkillUseSPrate,"MC_MAMMONITE",20+(3*.@r);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24248,'S_Acolyte_Earring','Acolyte Shadow Earring','Shadowgear',true,1,true,'.@r = getrefine(); bonus2 bSkillUseSPrate,"AL_HEAL",20+(3*.@r);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24249,'S_Magician_Earring','Magician Shadow Earring','Shadowgear',true,1,true,'.@r = getrefine(); bonus2 bSkillUseSPrate,"MG_COLDBOLT",20+(3*.@r); bonus2 bSkillUseSPrate,"MG_FIREBOLT",20+(3*.@r); bonus2 bSkillUseSPrate,"MG_LIGHTNINGBOLT",20+(3*.@r);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24250,'S_Swordman_Pendant','Swordman Shadow Pendant','Shadowgear',true,1,true,'.@r = getrefine(); bonus2 bSkillAtk,"SM_MAGNUM",20+(5*.@r);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24251,'S_Merchant_Pendant','Merchant Shadow Pendant','Shadowgear',true,1,true,'.@r = getrefine(); bonus2 bSkillAtk,"MC_CARTREVOLUTION",20+(5*.@r);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24252,'S_Acolyte_Pendant','Acolyte Shadow Pendant','Shadowgear',true,1,true,'.@r = getrefine(); bonus2 bSkillAtk,"AL_HOLYLIGHT",20+(5*.@r);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24253,'S_Thief_Pendant','Thief Shadow Pendant','Shadowgear',true,1,true,'.@r = getrefine(); bonus2 bSkillAtk,"TF_POISON",20+(5*.@r);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24254,'S_Magician_Pendant','Magician Shadow Pendant','Shadowgear',true,1,true,'.@r = getrefine(); bonus2 bSkillAtk,"MG_FIREWALL",20+5*.@r;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24255,'S_Archer_Pendant','Archer Shadow Pendant','Shadowgear',true,1,true,'.@r = getrefine(); bonus2 bSkillAtk,"AC_SHOWER",20+(5*.@r);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24256,'Knight_Shadow_Shoes','Knight Shadow Shoes','Shadowgear',true,1,true,'.@r = getrefine(); bonus2 bSkillAtk,"KN_PIERCE",20+.@r*5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24257,'Crusader_Shadow_Shoes','Crusader Shadow Shoes','Shadowgear',true,1,true,'.@r = getrefine(); bonus2 bSkillUseSPrate,"CR_HOLYCROSS",(20+(3*.@r));'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24258,'Blacksmith_Shadow_Shoes','Blacksmith Shadow Shoes','Shadowgear',true,1,true,'.@r = getrefine(); .@val = 20+(5*.@r); bonus2 bSkillUseSPrate,"BS_HAMMERFALL",.@val; bonus2 bSkillUseSPrate,"BS_ADRENALINE",.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24259,'Alchemist_Shadow_Shoes','Alchemist Shadow Shoes','Shadowgear',true,1,true,'.@r = getrefine(); if (BaseJob==Job_Alchemist) bonus bHealPower,30+7*.@r;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24260,'Priest_Shadow_Shoes','Priest Shadow Shoes','Shadowgear',true,1,true,'.@r = getrefine(); .@val = 20+(3*.@r); bonus2 bSkillUseSPrate,"PR_KYRIE",.@val; bonus2 bSkillUseSPrate,"PR_LEXAETERNA",.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24261,'Monk_Shadow_Shoes','Monk Shadow Shoes','Shadowgear',true,1,true,'.@r = getrefine(); bonus2 bSkillAtk,"MO_CHAINCOMBO",20+.@r*5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24262,'Assassin_Shadow_Shoes','Assassin Shadow Shoes','Shadowgear',true,1,true,'.@r = getrefine(); bonus2 bSkillAtk,"AS_GRIMTOOTH",20+.@r*5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24263,'Rogue_Shadow_Shoes','Rogue Shadow Shoes','Shadowgear',true,1,true,'.@a = getskilllv("SM_SWORD"); .@r = max(getrefine(),6); bonus bBaseAtk,.@a+((.@r-6)*.@a);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24264,'Wizard_Shadow_Shoes','Wizard Shadow Shoes','Shadowgear',true,1,true,'.@r = getrefine(); bonus2 bVariableCastrate,"WZ_STORMGUST",-1*(20+(3*.@r)); bonus2 bVariableCastrate,"WZ_VERMILION",-1*(20+(3*.@r)); bonus2 bVariableCastrate,"WZ_METEOR",-1*(20+(3*.@r));'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24265,'Sage_Shadow_Shoes','Sage Shadow Shoes','Shadowgear',true,1,true,'.@r = getrefine(); bonus2 bSkillAtk,"WZ_HEAVENDRIVE",20+.@r*5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24266,'Hunter_Shadow_Shoes','Hunter Shadow Shoes','Shadowgear',true,1,true,'.@r = getrefine(); bonus2 bSkillAtk,"HT_BLITZBEAT",20+.@r*5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24267,'Bard_Shadow_Shoes','Bard Shadow Shoes','Shadowgear',true,1,true,'.@a = getskilllv("BA_MUSICALLESSON"); .@r = max(getrefine(),6); bonus bBaseAtk,.@a+((.@r-6)*.@a);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24268,'Dancer_Shadow_Shoes','Dancer Shadow Shoes','Shadowgear',true,1,true,'.@a = getskilllv("DC_DANCINGLESSON"); .@r = max(getrefine(),6); bonus bBaseAtk,.@a+((.@r-6)*.@a);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24269,'Knight_Shadow_Armor','Knight Shadow Armor','Shadowgear',10,true,1,true,'.@r = getrefine(); bonus2 bSkillUseSPrate,"KN_BOWLINGBASH",(20+(.@r*3));'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24270,'Crusader_Shadow_Armor','Crusader Shadow Armor','Shadowgear',10,true,1,true,'.@r = getrefine(); bonus2 bSkillAtk,"CR_GRANDCROSS",20+.@r*5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24271,'Blacksmith_Shadow_Armor','Blacksmith Shadow Armor','Shadowgear',10,true,1,true,'.@r = getrefine(); .@val = 5; if (.@r > 6) { .@val += .@r-6; } autobonus3 "{ bonus2 bAddSize,Size_All,"+.@val+"; bonus2 bMagicAddSize,Size_All,"+.@val+"; }",1000,50000,"BS_WEAPONPERFECT";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24272,'Alchemist_Shadow_Armor','Alchemist Shadow Armor','Shadowgear',10,true,1,true,'.@a = getskilllv("AM_LEARNINGPOTION"); .@r = max(getrefine(),6); bonus bBaseAtk,.@a+((.@r-6)*.@a);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24273,'Priest_Shadow_Armor','Priest Shadow Armor','Shadowgear',10,true,1,true,'.@r = getrefine(); bonus2 bSkillAtk,"PR_MAGNUS",20+.@r*5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24274,'Monk_Shadow_Armor','Monk Shadow Armor','Shadowgear',10,true,1,true,'.@r = getrefine(); bonus2 bSkillAtk,"MO_FINGEROFFENSIVE",20+.@r*5; bonus2 bSkillAtk,"MO_INVESTIGATE",20+.@r*5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24275,'Assassin_Shadow_Armor','Assassin Shadow Armor','Shadowgear',10,true,1,true,'.@r = getrefine(); bonus2 bSkillUseSPrate,"AS_SONICBLOW",(20+(.@r*3));'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24276,'Rogue_Shadow_Armor','Rogue Shadow Armor','Shadowgear',10,true,1,true,'.@r = getrefine(); bonus2 bSkillAtk,"RG_BACKSTAP",20+.@r*5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24277,'Wizard_Shadow_Armor','Wizard Shadow Armor','Shadowgear',10,true,1,true,'.@r = getrefine(); bonus2 bSkillAtk,"WZ_JUPITEL",20+.@r*5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24278,'Sage_Shadow_Armor','Sage Shadow Armor','Shadowgear',10,true,1,true,'autobonus3 "{ .@r = getrefine(); if (.@r>=9) { bonus bAspd,2; } else if (.@r>=7) { bonus bAspd,1; } bonus bAspdRate,.@r; }",1000,50000,"SA_AUTOSPELL"; /* Unknow Specialeffect */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24279,'Hunter_Shadow_Armor','Hunter Shadow Armor','Shadowgear',10,true,1,true,'.@r = getrefine(); bonus2 bSkillAtk,"HT_CLAYMORETRAP",20+.@r*5; bonus2 bSkillAtk,"HT_LANDMINE",20+.@r*5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24280,'Bard_Shadow_Armor','Bard Shadow Armor','Shadowgear',10,true,1,true,'.@r = getrefine()+5; autobonus3 "{ bonus2 bSPRegenRate,"+.@r+",5000; }",1000,30000,"BA_POEMBRAGI"; autobonus3 "{ bonus2 bSPRegenRate,"+.@r+",5000; }",1000,30000,"BA_ASSASSINCROSS"; autobonus3 "{ bonus2 bSPRegenRate,"+.@r+",5000; }",1000,30000,"BA_APPLEIDUN"; autobonus3 "{ bonus2 bSPRegenRate,"+.@r+",5000; }",1000,30000,"BA_WHISTLE"; /* Unknow Specialeffect */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24281,'Dancer_Shadow_Armor','Dancer Shadow Armor','Shadowgear',10,true,1,true,'.@r = getrefine()+5; autobonus3 "{ bonus2 bSPRegenRate,"+.@r+",5000; }",1000,30000,"DC_FORTUNEKISS"; autobonus3 "{ bonus2 bSPRegenRate,"+.@r+",5000; }",1000,30000,"DC_SERVICEFORYOU"; autobonus3 "{ bonus2 bSPRegenRate,"+.@r+",5000; }",1000,30000,"DC_DONTFORGETME"; autobonus3 "{ bonus2 bSPRegenRate,"+.@r+",5000; }",1000,30000,"DC_HUMMING"; /* Unknow Special Effect */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`job_novice`,`job_supernovice`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24282,'Super_Novice_Shadow_Weapon','Super Novice Shadow Weapon','Shadowgear',true,true,true,1,true,'.@r = getrefine(); bonus bMaxHP,1000; bonus bMaxSP,200; bonus2 bIgnoreDefClassRate,Class_Normal,3*(getskilllv("SM_SWORD")+.@r); bonus2 bIgnoreMDefClassRate,Class_Normal,3*(getskilllv("MG_SRECOVERY")+.@r); if (.@r>=7) { bonus bMaxHPrate,5; bonus bMaxSPrate,5; } if (.@r>=9) { bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bSPrecovRate,100; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`job_gunslinger`,`job_rebellion`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24283,'Gunslinger_Shadow_Weapon','Gunslinger Shadow Weapon','Shadowgear',true,true,true,1,true,'.@r = getrefine(); bonus2 bIgnoreDefClassRate,Class_Normal,3*(getskilllv("GS_SNAKEEYE")+.@r); .@aspd = 1; if (.@r>=7) { .@aspd += 1; bonus bLongAtkRate,3; } if (.@r>=9) { .@aspd += 1; bonus bLongAtkRate,5; bonus bAspd,.@aspd; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`job_soullinker`,`job_stargladiator`,`job_taekwon`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24284,'Taekwondo_Shadow_Weapon','Taekwondo Shadow Weapon','Shadowgear',true,true,true,true,1,true,'.@r = getrefine(); bonus bAspd,1; bonus2 bAddClass,Class_All,.@r; bonus bMatkRate,.@r; if (.@r>=7) { bonus bMaxHP,1000; bonus bMaxSP,200; bonus bAspd,1; } if (.@r>=9) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bAspd,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`job_kagerouoboro`,`job_ninja`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24285,'Ninja_Shadow_Weapon','Ninja Shadow Weapon','Shadowgear',true,true,true,1,true,'.@r = getrefine(); .@val = 3; bonus2 bSkillCooldown,"KO_BAKURETSU",-2000; bonus bMatk,(3*getskilllv("NJ_NINPOU")); if (.@r >= 7) { .@val += 3; if (.@r >= 9) { .@val += 4; } } bonus2 bAddClass,Class_Normal,.@val; bonus bMatkRate,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24286,'Doram_Magical_Shadow_Weapon','Doram Magical Shadow Weapon','Shadowgear',true,true,true,true,true,1,true,'.@r = getrefine(); bonus bVariableCastrate,-(5+.@r); if (getskilllv("SU_POWEROFLAND")==1) bonus bFixedCast,-100; if (getskilllv("SU_POWEROFSEA")==1) { bonus bUseSPrate,-3; } if (.@r>=7) bonus bMatkRate,5; if (.@r>=9) bonus bMatkRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24287,'Doram_Physical_Shadow_Weapon','Doram Physical Shadow Weapon','Shadowgear',true,true,true,true,true,1,true,'.@r = getrefine(); bonus bLongAtkRate,.@r; if (getskilllv("SU_POWEROFLIFE")==1) bonus bAspd,1; if (.@r>=7) bonus bFlee2,2; if (.@r>=9) bonus bFlee2,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24288,'Rune_Knight_Shadow_Weapon','Rune Knight Shadow Weapon','Shadowgear',10,true,true,true,true,true,99,true,'.@r = getrefine(); bonus2 bSkillAtk,"RK_SONICWAVE",20+.@r*5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_crusader`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24289,'Royal_Guard_Shadow_Weapon','Royal Guard Shadow Weapon','Shadowgear',10,true,true,true,true,true,99,true,'.@r = getrefine(); bonus2 bSkillAtk,"LG_CANNONSPEAR",20+.@r*5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24290,'Mechanic_Shadow_Weapon','Mechanic Shadow Weapon','Shadowgear',10,true,true,true,true,true,99,true,'.@r = getrefine(); bonus2 bSkillAtk,"NC_VULCANARM",20+.@r*5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24291,'Genetic_Shadow_Weapon','Genetic Shadow Weapon','Shadowgear',10,true,true,true,true,true,99,true,'.@r = getrefine(); bonus2 bSkillAtk,"GN_CART_TORNADO",20+.@r*5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24292,'Arcbishop_Shadow_Weapon','Arcbishop Shadow Weapon','Shadowgear',10,true,true,true,true,true,99,true,'.@r = getrefine(); bonus2 bSkillAtk,"AB_DUPLELIGHT",20+.@r*5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_monk`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24293,'Sura_Shadow_Weapon','Sura Shadow Weapon','Shadowgear',10,true,true,true,true,true,99,true,'.@r = getrefine(); bonus2 bSkillCooldown,"SR_RAMPAGEBLASTER",-1*(2000+500*.@r);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24294,'Guillotine_Cross_Shadow_Weapon','Guillotine Cross Shadow Weapon','Shadowgear',10,true,true,true,true,true,99,true,'.@r = getrefine(); bonus2 bSkillUseSPrate,"GC_DARKILLUSION",(20+(.@r*3));'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24295,'Shadow_Chaser_Shadow_Weapon','Shadow Chaser Shadow Weapon','Shadowgear',10,true,true,true,true,true,99,true,'.@r = getrefine(); bonus2 bSkillAtk,"SC_TRIANGLESHOT",20+.@r*5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24296,'Warlock_Shadow_Weapon','Warlock Shadow Weapon','Shadowgear',10,true,true,true,true,true,99,true,'.@r = getrefine(); bonus2 bSkillAtk,"WL_DRAINLIFE",20+.@r*5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24297,'Sorcerer_Shadow_Weapon','Sorcerer Shadow Weapon','Shadowgear',10,true,true,true,true,true,99,true,'.@r = getrefine(); bonus2 bSkillCooldown,"SO_DIAMONDDUST",-1*((300*.@r)+1000);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24298,'Ranger_Shadow_Weapon','Ranger Shadow Weapon','Shadowgear',10,true,true,true,true,true,99,true,'.@r = getrefine(); bonus2 bSkillAtk,"RA_CLUSTERBOMB",20+.@r*5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24299,'Minstrel_Shadow_Weapon','Maestro Shadow Weapon','Shadowgear',10,true,true,true,true,'Male',true,99,true,'.@r = getrefine(); bonus bMaxHPrate,3; bonus bDef,.@r*(getskilllv("MI_HARMONIZE")+getskilllv("MI_RUSH_WINDMILL")+getskilllv("MI_ECHOSONG"));'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24300,'Wanderer_Shadow_Weapon','Wanderer Shadow Weapon','Shadowgear',10,true,true,true,true,'Female',true,99,true,'.@r = getrefine(); bonus bMaxHPrate,3; bonus bDef,.@r*(getskilllv("WA_SWING_DANCE")+getskilllv("WA_SYMPHONY_OF_LOVER")+getskilllv("WA_MOONLIT_SERENADE"));'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24301,'Rune_Knight_Shadow_Shield','Rune Knight Shadow Shield','Shadowgear',true,true,true,true,true,99,true,'autobonus3 "{ .@r = getrefine(); if (.@r>=9) { bonus bAspd,2; } else if (.@r>=7) { bonus bAspd,1; } bonus bAspdRate,.@r; }",1000,50000,"RK_ENCHANTBLADE";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_crusader`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24302,'Royal_Guard_Shadow_Shield','Royal Guard Shadow Shield','Shadowgear',10,true,true,true,true,true,99,true,'.@r = getrefine(); bonus2 bSkillAtk,"LG_EARTHDRIVE",20+.@r*5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24303,'Mechanic_Shadow_Shield','Mechanic Shadow Shield','Shadowgear',10,true,true,true,true,true,99,true,'.@r = getrefine(); bonus2 bSkillAtk,"NC_FLAMELAUNCHER",20+.@r*5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24304,'Genetic_Shadow_Shield','Genetic Shadow Shield','Shadowgear',10,true,true,true,true,true,99,true,'.@r = getrefine(); bonus bMaxHPrate,3; bonus bDef,.@r*(getskilllv("GN_CART_TORNADO")+getskilllv("GN_CARTBOOST")+getskilllv("GN_CARTCANNON"));'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24305,'Archbishop_Shadow_Shield','Archbishop Shadow Shield','Shadowgear',10,true,true,true,true,true,99,true,'.@r = getrefine(); bonus2 bSkillAtk,"AB_ADORAMUS",20+.@r*5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_monk`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24306,'Sura_Shadow_Shield','Sura Shadow Shield','Shadowgear',10,true,true,true,true,true,99,true,'.@r = getrefine(); bonus2 bSkillAtk,"SR_SKYNETBLOW",20+.@r*5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24307,'Guillotine_Cross_Shadow_Shield','Guillotine Cross Shadow Shield','Shadowgear',10,true,true,true,true,true,99,true,'.@r = getrefine(); bonus2 bSkillCooldown,"GC_DARKCROW",-(10000+(2000*.@r));'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24308,'Shadow_Chaser_Shadow_Shield','Shadow Chaser Shadow Shield','Shadowgear',10,true,true,true,true,true,99,true,'autobonus3 "{ .@r = getrefine(); if (.@r>=9) { bonus bAspd,2; } else if (.@r>=7) { bonus bAspd,1; } bonus bAspdRate,.@r; }",1000,50000,"SC_AUTOSHADOWSPELL";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24309,'Warlock_Shadow_Shield','Warlock Shadow Shield','Shadowgear',10,true,true,true,true,true,99,true,'.@r = getrefine(); bonus2 bSkillAtk,"WL_EARTHSTRAIN",20+.@r*5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24310,'Sorcerer_Shadow_Shield','Sorcerer Shadow Shield','Shadowgear',10,true,true,true,true,true,99,true,'.@r = getrefine(); bonus2 bSkillCooldown,"SO_EARTHGRAVE",-1*((300*.@r)+1000);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24311,'Ranger_Shadow_Shield','Ranger Shadow Shield','Shadowgear',10,true,true,true,true,true,99,true,'.@r = getrefine(); bonus2 bSkillUseSPrate,"RA_AIMEDBOLT",(20+(5*.@r));'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24312,'Minstrel_Shadow_Shield','Minstrel Shadow Shield','Shadowgear',10,true,true,true,true,'Male',true,99,true,'.@r = getrefine(); bonus bMaxSPrate,3; bonus bMdef,.@r*(getskilllv("MI_HARMONIZE")+getskilllv("MI_RUSH_WINDMILL")+getskilllv("MI_ECHOSONG"))/5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24313,'Wanderer_Shadow_Shield','Wanderer Shadow Shield','Shadowgear',10,true,true,true,true,'Female',true,99,true,'.@r = getrefine(); bonus bMaxSPrate,3; bonus bMdef,.@r*(getskilllv("WA_SWING_DANCE")+getskilllv("WA_SYMPHONY_OF_LOVER")+getskilllv("WA_MOONLIT_SERENADE"))/5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_ninja`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24314,'Ninja_Shadow_Shield','Ninja Shadow Shield','Shadowgear',10,true,true,1,true,'.@r = getrefine(); bonus bAspd,1; bonus bBaseAtk,(3*getskilllv("NJ_TOBIDOUGU")); autobonus3 "{ bonus bAspd,1; }",1000,50000,"NJ_NEN"; .@val = 4 * .@r; if (.@r >= 7) { .@val += 10; if (.@r >= 9) { .@val += 10; } } bonus2 bIgnoreDefClassRate,Class_Normal,.@val; bonus2 bIgnoreMdefClassRate,Class_Normal,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_soullinker`,`job_stargladiator`,`job_taekwon`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24315,'Taekwon_Shadow_Shield','Taekwon Shadow Shield','Shadowgear',10,true,true,true,true,1,true,'.@r = getrefine(); .@val = 3; if (.@r >= 7) { .@val += 2; if (.@r >= 9) { .@val += 3; } } bonus2 bIgnoreDefClassRate,Class_Normal,(3*(getskilllv("TK_HPTIME")+.@r)); bonus2 bIgnoreMdefClassRate,Class_Normal,(3*(getskilllv("TK_SPTIME")+.@r)); bonus2 bAddClass,Class_All,.@val; bonus bMatkRate,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24316,'Doram_Physical_Shadow_Shield','Doram Physical Shadow Shield','Shadowgear',10,true,true,true,true,true,1,true,'.@r = getrefine(); bonus2 bAddClass,Class_All,3; autobonus3 "{ bonus bAspd,1; }",1000,50000,"SU_ARCLOUSEDASH"; bonus2 bSkillCooldown,"SU_LUNATICCARROTBEAT",-(.@r*200); if (.@r>=7) bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",5; if (.@r>=9) bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24317,'Doram_Magical_Shadow_Shield','Doram Magical Shadow Shield','Shadowgear',10,true,true,true,true,true,1,true,'.@r = getrefine(); bonus bMatkRate,3; autobonus3 "{ bonus2 bSPRegenRate,5,5000; }",1000,30000,"SU_BUNCHOFSHRIMP"; bonus2 bSkillCooldown,"SU_CN_METEOR",-(.@r*100); if (.@r>=7) bonus2 bSkillAtk,"SU_CN_METEOR",5; if (.@r>=9) bonus2 bSkillAtk,"SU_CN_METEOR",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_novice`,`job_supernovice`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24318,'Super_Novice_Shadow_Shield','Super Novice Shadow Shield','Shadowgear',10,true,true,true,1,true,'.@r = getrefine(); bonus bMaxHP,1000; bonus bMaxSP,200; bonus bAspdRate,(2*getskilllv("TF_DOUBLE")+.@r); bonus bVariableCastrate,-(2*getskilllv("AC_OWL")+.@r); if (.@r>=7) { bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; } if (.@r>=9) { bonus2 bAddClass,Class_All,3; bonus bMatkRate,3; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_gunslinger`,`job_rebellion`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24319,'Gunslinger_Shadow_Shield','Gunslinger Shadow Shield','Shadowgear',10,true,true,true,1,true,'.@r = getrefine(); bonus bCritAtkRate,5; bonus bCritical,(getskilllv("GS_SINGLEACTION")*2)+.@r; if (.@r>=7) bonus bCritAtkRate,2; if (.@r>=9) bonus bCritAtkRate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24320,'S_Hasty_Shoes_II','Hasty Shadow Shoes II','Shadowgear',true,1,true,'.@val = 1; if (getrefine() >= 7) { .@val += 1; } bonus bFlee,5; bonus2 bAddClass,Class_All,.@val; bonus bMatkRate,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24321,'S_Bearer\'s_Pendant_II','Bearer\'s Shadow Pendant II','Shadowgear',true,1,true,'bonus bBaseAtk,5; if (getrefine() >= 7) { .@val = 3; } else { .@val = 1; } bonus bMaxHPrate,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24322,'S_Gemstone_Earring_II','Gemstone Shadow Earring II','Shadowgear',true,1,true,'if (getrefine() >= 7) { .@val = 3; } else { .@val = 2; } bonus bMatk,5; bonus bUseSPrate,-.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24323,'S_Spellflow_Shield_II','Spellflow Shadow Shield II','Shadowgear',true,1,true,'bonus bMatkRate,1 + (getrefine() >= 7); bonus bUseSPrate,-1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24324,'S_Spiritual_Weapon_II','Spiritual Shadow Weapon II','Shadowgear',true,1,true,'bonus bSPrecovRate,5; bonus2 bAddClass,Class_All,1 + (getrefine() >= 7);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24325,'S_Malicious_Armor_II','Malicious Shadow Armor II','Shadowgear',true,1,true,'bonus bMaxHP,100; bonus2 bAddClass,Class_All,1 + (getrefine() >= 7);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24326,'S_Sigrun_Armor','Sigrun Shadow Armor','Shadowgear',true,1,true,'.@r = getrefine(); bonus bLuk,1; bonus bHit,.@r; if (BaseClass == Job_Swordman || BaseClass == Job_Thief || (BaseClass == Job_Taekwon && BaseJob != Job_Soul_Linker)) { bonus bBaseAtk,15; } else if (BaseClass == Job_Merchant || BaseClass == Job_Archer || BaseClass == Job_Gunslinger) { bonus bLongAtkRate,3; } else if (BaseClass == Job_Mage || BaseClass == Job_Acolyte || BaseClass == Job_Ninja || BaseJob == Job_Soul_Linker) { bonus bMatk,15; } else if (BaseClass == Job_Novice || BaseJob == Job_Summoner) { bonus bAspdRate,5; bonus bMaxHP,1000; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24327,'S_Sigrun_Shield','Sigrun Shadow Shield','Shadowgear',true,1,true,'.@r = getrefine(); bonus bVit,1; bonus bDef,5*.@r; if (BaseClass == Job_Swordman || BaseClass == Job_Thief || (BaseClass == Job_Taekwon && BaseJob != Job_Soul_Linker)) { bonus bAspd,1; } else if (BaseClass == Job_Merchant || BaseClass == Job_Archer || BaseClass == Job_Gunslinger) { bonus bFlee,15; } else if (BaseClass == Job_Mage || BaseClass == Job_Acolyte || BaseClass == Job_Ninja || BaseJob == Job_Soul_Linker) { bonus bMaxSPrate,2; bonus bHealPower,3; } else if (BaseClass == Job_Novice || BaseJob == Job_Summoner) { bonus bVariableCastrate,-5; bonus bMaxSP,300; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24328,'S_Force_Executioner_Weapon','Force Executioner Shadow Weapon','Shadowgear',true,1,true,'.@r = getrefine(); bonus bBaseAtk,5+.@r; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,.@r/2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24329,'S_Spirit_Magic_Executioner_Weapon','Spirit Magic Executioner Shadow Weapon','Shadowgear',true,1,true,'.@r = getrefine(); bonus bMatk,5+.@r; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,.@r/2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24330,'S_Caster_Armor_II','Caster Shadow Armor II','Shadowgear',true,1,true,'bonus bInt,3; bonus bSPrecovRate,20; bonus bVariableCastrate,-getrefine()/2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24331,'S_Reload_Armor_II','Reload Shadow Armor II','Shadowgear',true,1,true,'bonus bHPrecovRate,20; bonus bVit,3; bonus bDelayrate,-(getrefine()/3);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24332,'S_Critical_Shield','Critical Shadow Shield','Shadowgear',true,1,true,'.@r = getrefine(); bonus bCritical,5+.@r/2; if (.@r >= 9) { bonus bCritAtkRate,2; } else if (.@r >= 7) { bonus bCritAtkRate,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24333,'S_Critical_Shoes','Critical Shadow Shoes','Shadowgear',true,1,true,'.@r = getrefine(); bonus bFlee,5+.@r/2; if (.@r >= 9) { bonus bCritical,4; } else if (.@r >= 7) { bonus bCritical,2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24334,'S_Magic_Compose_Armor','Magic Compose Shadow Armor','Shadowgear',true,1,true,'.@r = getrefine(); if (.@r > 1) { .@val = .@r/2; bonus3 bAutoSpell,"MG_COLDBOLT",.@val,(5+.@r); bonus4 bAutoSpellOnSkill,"MG_COLDBOLT","MG_FIREBOLT",.@val,1000; bonus4 bAutoSpellOnSkill,"MG_FIREBOLT","MG_LIGHTNINGBOLT",.@val,1000; bonus4 bAutoSpellOnSkill,"MG_LIGHTNINGBOLT","WZ_EARTHSPIKE",.@val,1000; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24335,'S_Gemstone_Weapon_II','Gemstone Shadow Weapon II','Shadowgear',true,1,true,'bonus bHit,5; if (getrefine() >= 7) { bonus bUseSPrate,3; } else { bonus bUseSPrate,2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24336,'S_Gemstone_Shield_II','Gemstone Shadow Shield II','Shadowgear',true,1,true,'bonus bDef,5; if (getrefine() >= 7) { bonus bUseSPrate,3; } else { bonus bUseSPrate,2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24337,'S_Bearer\'s_Armor_II','Bearer\'s Shadow Armor II','Shadowgear',true,1,true,'bonus bMDef,1; if (getrefine() >= 7) { bonus bMaxHPrate,3; } else { bonus bMaxHPrate,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24338,'S_Bearer\'s_Shoes_II','Bearer\'s Shadow Shoes II','Shadowgear',true,1,true,'bonus bMaxSP,50; if (getrefine() >= 7) { bonus bMaxHPrate,3; } else { bonus bMaxHPrate,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24339,'S_Almighty_Earring','Almighty Shadow Earring','Shadowgear',true,1,true,'bonus bAllStats,getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24340,'S_Almighty_Pendant','Almighty Shadow Pendant','Shadowgear',true,1,true,'bonus bAllStats,getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24341,'S_All_Race_Shoes','All Race Shadow Shoes','Shadowgear',true,1,true,'.@r = getrefine(); if (.@r >= 9) { .@val = 5; } else if (.@r >= 7) { .@val = 3; } else { .@val = 2; } bonus2 bAddRace,RC_All,.@val; bonus2 bMagicAddRace,RC_All,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24342,'S_All_Race_Shield','All Race Shadow Shield','Shadowgear',true,1,true,'.@r = getrefine(); if (.@r >= 9) { .@val = 3; } else if (.@r >= 7) { .@val = 2; } else { .@val = 1; } bonus2 bSubRace,RC_All,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24343,'S_Blitz_Weapon','Blitz Shadow Weapon','Shadowgear',true,1,true,'.@r = getrefine(); bonus bAspdRate,5+.@r/2; if (.@r >= 7) { bonus bAspd,1; if (.@r >= 9) { bonus bDelayrate,-1; } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24344,'S_Blitz_Armor','Blitz Shadow Armor','Shadowgear',true,1,true,'.@r = getrefine(); bonus bDef,25+5*(.@r/2); if (.@r >= 7) { bonus bAspd,1; if (.@r >= 9) { bonus bDelayrate,-1; } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24345,'S_Tempest_Shield','Tempest Shadow Shield','Shadowgear',true,1,true,'bonus2 bIgnoreMdefClassRate,Class_Normal,5+(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24346,'S_Tempest_Shoes','Tempest Shadow Shoes','Shadowgear',true,1,true,'bonus2 bIgnoreMdefClassRate,Class_Normal,5+(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24347,'S_Magic_Executioner_Holy_Water_Armor','Magic Executioner Holy Water Shadow Armor','Shadowgear',true,1,true,'.@val = 5 + (getrefine()/2); bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,.@val; bonus2 bIgnoreMdefRaceRate,RC_Undead,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24348,'S_Magic_Exorcist_Corrupted_Armor','Magic Exorcist Corrupted Shadow Armor','Shadowgear',true,1,true,'.@val = 5 + (getrefine()/2); bonus2 bIgnoreMdefRaceRate,RC_Demon,.@val; bonus2 bIgnoreMdefRaceRate,RC_Angel,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24349,'S_Magic_Vibration_Dragon_Killer_Armor','Magic Vibration Dragon Killer Shadow Armor','Shadowgear',true,1,true,'.@val = 5 + (getrefine()/2); bonus2 bIgnoreMdefRaceRate,RC_Formless,.@val; bonus2 bIgnoreMdefRaceRate,RC_Dragon,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24350,'S_Magic_Scissor_Hunting_Armor','Magic Scissor Hunting Shadow Armor','Shadowgear',true,1,true,'.@val = 5 + (getrefine()/2); bonus2 bIgnoreMdefRaceRate,RC_Plant,.@val; bonus2 bIgnoreMdefRaceRate,RC_Brute,.@val; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24351,'S_Magic_Fishing_Insect_Net_Armor','Magic Fishing Insect Net Shadow Armor','Shadowgear',true,1,true,'.@val = 5 + (getrefine()/2); bonus2 bIgnoreMdefRaceRate,RC_Fish,.@val; bonus2 bIgnoreMdefRaceRate,RC_Insect,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24352,'S_Plasterer\'s_Armor_II','Plasterer\'s Shadow Armor II','Shadowgear',true,1,true,'bonus bDef,1; bonus2 bResEff,Eff_Stone,100*getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24353,'S_Insomniac_Shoes_II','Insomniac Shadow Shoes II','Shadowgear',true,1,true,'bonus bDef,1; bonus2 bResEff,Eff_Sleep,100*getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24354,'S_Peerless_Armor_II','Peerless Shadow Armor II','Shadowgear',true,1,true,'bonus bDef,1; bonus2 bResEff,Eff_Silence,100*getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24355,'S_Adulate_Shoes_II','Adulate Shadow Shoes II','Shadowgear',true,1,true,'bonus bDef,1; bonus2 bResEff,Eff_Blind,100*getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24356,'S_Unfreezing_Weapon_II','Unfreezing Shadow Weapon II','Shadowgear',true,1,true,'bonus bDef,1; bonus2 bResEff,Eff_Freeze,100*getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24357,'S_Vitality_Earring_II','Vitality Shadow Earring II','Shadowgear',true,1,true,'bonus bDef,1; bonus2 bResEff,Eff_Bleeding,100*getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24358,'S_Neutral_Weapon_II','Neutral Shadow Weapon II','Shadowgear',true,1,true,'bonus bDef,1; bonus2 bResEff,Eff_Stun,100*(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24359,'S_Uncursed_Pendant_II','Uncursed Shadow Pendant II','Shadowgear',true,1,true,'bonus bDef,1; bonus2 bResEff,Eff_Curse,100*getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24360,'S_Tension_Weapon','Tension Shadow Weapon','Shadowgear',true,1,true,'bonus bMaxHP,100 + 150*(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24361,'S_Tension_Earring','Tension Shadow Earring','Shadowgear',true,1,true,'bonus bMaxHPrate,1; bonus bBaseAtk,5; bonus bMaxHP,50*(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24362,'S_Tension_Pendant','Tension Shadow Pendant','Shadowgear',true,1,true,'.@val = 2 + (getrefine()/3); bonus bBaseAtk,5; bonus bHealPower2,.@val; bonus bAddItemHealRate,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24363,'S_Elegant_Weapon','Elegant Shadow Weapon','Shadowgear',true,1,true,'bonus bMaxHP,100 + 150*(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24364,'S_Elegant_Earring','Elegant Shadow Earring','Shadowgear',true,1,true,'bonus bMaxHPrate,1; bonus bMatk,5; bonus bMaxHP,50*(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24365,'S_Elegant_Pendant','Elegant Shadow Pendant','Shadowgear',true,1,true,'.@val = 2 + (getrefine()/3); bonus bMatk,5; bonus bHealPower2,.@val; bonus bAddItemHealRate,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24366,'S_Healing_Shield','Healing Shadow Shield','Shadowgear',true,1,true,'.@r = getrefine(); bonus bMatk,10; if (.@r >= 7) { .@val = 3; if (.@r >= 9) { .@val += 5; } bonus bHealPower,.@val; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24367,'S_Healing_Shoes','Healing Shadow Shoes','Shadowgear',true,1,true,'.@r = getrefine(); bonus bMatk,10; if (.@r >= 7) { .@val = 3; if (.@r >= 9) { .@val += 5; } bonus bHealPower,.@val; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24368,'S_Restore_Earring','Restore Shadow Earring','Shadowgear',true,1,true,'.@r = getrefine(); if (.@r >= 9) { .@val = 50; } else if (.@r >= 7) { .@val = 30; } else { .@val = 20; } bonus bHPrecovRate,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24369,'S_Restore_Pendant','Restore Shadow Pendant','Shadowgear',true,1,true,'.@r = getrefine(); if (.@r >= 9) { .@val = 50; } else if (.@r >= 7) { .@val = 30; } else { .@val = 20; } bonus bSPrecovRate,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24370,'S_Mortal_Blow_Weapon','Mortal Blow Shadow Weapon','Shadowgear',true,1,true,'.@r = getrefine(); if (.@r >= 9) { .@val = 7; } else if (.@r >= 7) { .@val = 4; } else { .@val = 2; } bonus bCritAtkRate,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24371,'S_Mortal_Blow_Earring','Mortal Blow Shadow Earring','Shadowgear',true,1,true,'.@r = getrefine(); if (.@r >= 9) { .@val = 3; } else if (.@r >= 7) { .@val = 2; } else { .@val = 1; } bonus bCritAtkRate,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24372,'S_Mortal_Blow_Pendant','Mortal Blow Shadow Pendant','Shadowgear',true,1,true,'.@r = getrefine(); if (.@r >= 9) { .@val = 3; } else if (.@r >= 7) { .@val = 2; } else { .@val = 1; } bonus bCritAtkRate,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24373,'S_Penetration_Shoes','Penetration Shadow Shoes','Shadowgear',true,1,true,'bonus2 bIgnoreDefClassRate,Class_Normal,5+(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24374,'S_Penetration_Shield','Penetration Shadow Shield','Shadowgear',true,1,true,'bonus2 bIgnoreDefClassRate,Class_Normal,5+(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24375,'S_Executioner_Holy_Water_Armor','Executioner Holy Water Shadow Armor','Shadowgear',true,1,true,'.@val = 5 + (getrefine()/2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,.@val; bonus2 bIgnoreDefRaceRate,RC_Undead,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24376,'S_Exorcist_Corrupted_Armor','Exorcist Corrupted Shadow Armor','Shadowgear',true,1,true,'.@val = 5 + (getrefine()/2); bonus2 bIgnoreDefRaceRate,RC_Demon,.@val; bonus2 bIgnoreDefRaceRate,RC_Angel,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24377,'S_Vibration_Dragon_Killer_Armor','Vibration Dragon Killer Shadow Armor','Shadowgear',true,1,true,'.@val = 5 + (getrefine()/2); bonus2 bIgnoreDefRaceRate,RC_Formless,.@val; bonus2 bIgnoreDefRaceRate,RC_Dragon,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24378,'S_Scissor_Hunting_Armor','Scissor Hunting Shadow Armor','Shadowgear',true,1,true,'.@val = 5 + (getrefine()/2); bonus2 bIgnoreDefRaceRate,RC_Plant,.@val; bonus2 bIgnoreDefRaceRate,RC_Brute,.@val; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24379,'S_Fishing_Insect_Net_Armor','Fishing Insect Net Shadow Armor','Shadowgear',true,1,true,'.@val = 5 + (getrefine()/2); bonus2 bIgnoreDefRaceRate,RC_Fish,.@val; bonus2 bIgnoreDefRaceRate,RC_Insect,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24380,'S_Sentimental_Weapon','Sentimental Shadow Weapon','Shadowgear',true,1,true,'bonus MaxSP,10+15*(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24381,'S_Sentimental_Earring','Sentimental Shadow Earring','Shadowgear',true,1,true,'bonus bBaseAtk,5; bonus bMaxSPrate,1; bonus bMaxSP,5*(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24382,'S_Sentimental_Pendant','Sentimental Shadow Pendant','Shadowgear',true,1,true,'bonus bBaseAtk,5; bonus bSPrecovRate,2+(getrefine()/3);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24383,'S_Enchanting_Weapon','Enchanting Shadow Weapon','Shadowgear',true,1,true,'bonus bMaxSP,10+15*(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24384,'S_Enchanting_Earring','Enchanting Shadow Earring','Shadowgear',true,1,true,'bonus bMatk,5; bonus bMaxSPrate,1; bonus bMaxSP,5*(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24385,'S_Enchanting_Pendant','Enchanting Shadow Pendant','Shadowgear',true,1,true,'bonus bMatk,5; bonus bSPrecovRate,2+(getrefine()/3);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24386,'S_Infinity_Weapon','Infinity Shadow Weapon','Shadowgear',true,1,true,'.@r = getrefine(); .@val = .@r/3; if (.@val) { bonus2 bAddSize,Size_All,.@val; bonus2 bMagicAddSize,Size_All,.@val; bonus2 bSubSize,Size_All,.@val; if (.@r >= 10) { bonus bNoSizeFix; } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (24387,'S_Beginner\'s_Armor','Beginner\'s Shadow Armor','Shadowgear',true,100,true,100,true,true,true,true,true,true,true,'bonus bInt,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (24388,'S_Beginner\'s_Shield','Beginner\'s Shadow Shield','Shadowgear',true,100,true,100,true,true,true,true,true,true,true,'bonus bVit,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (24389,'S_Beginner\'s_Shoes','Beginner\'s Shadow Shoes','Shadowgear',true,100,true,100,true,true,true,true,true,true,true,'bonus bAgi,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (24390,'S_Beginner\'s_Weapon','Beginner\'s Shadow Weapon','Shadowgear',true,100,true,100,true,true,true,true,true,true,true,'bonus bStr,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (24391,'S_Beginner\'s_Earring','Beginner\'s Shadow Earring','Shadowgear',true,100,true,100,true,true,true,true,true,true,true,'bonus bDex,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (24392,'S_Beginner\'s_Pendant','Beginner\'s Shadow Pendant','Shadowgear',true,100,true,100,true,true,true,true,true,true,true,'bonus bLuk,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24393,'S_Physical_Shoes','Physical Shadow Shoes','Shadowgear',true,1,true,'.@r = getrefine(); if (.@r >= 9) { bonus bAspdRate,8; } else if (.@r >= 7) { bonus bAspdRate,5; } else { bonus bAspdRate,2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24394,'S_Physical_Shield','Physical Shadow Shield','Shadowgear',true,1,true,'.@r = getrefine(); bonus bMaxHP,200; if (.@r >= 9) { bonus bMaxHPrate,5; } else if (.@r >= 7) { bonus bMaxHPrate,2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24395,'S_Physical_Armor','Physical Shadow Armor','Shadowgear',true,1,true,'.@r = getrefine(); bonus bBaseAtk,20; if (.@r >= 9) { bonus2 bAddClass,Class_All,5; } else if (.@r >= 7) { bonus2 bAddClass,Class_All,2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24396,'S_Magical_Shoes','Magical Shadow Shoes','Shadowgear',true,1,true,'.@r = getrefine(); if (.@r >= 9) { bonus bVariableCastrate,8; } else if (.@r >= 7) { bonus bVariableCastrate,5; } else { bonus bVariableCastrate,2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24397,'S_Magical_Shield','Magical Shadow Shield','Shadowgear',true,1,true,'.@r = getrefine(); bonus bMaxSP,100; if (.@r >= 9) { bonus bMaxSPrate,5; } else if (.@r >= 7) { bonus bMaxSPrate,2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24398,'S_Magical_Armor','Magical Shadow Armor','Shadowgear',true,1,true,'.@r = getrefine(); bonus bMatk,20; if (.@r >= 9) { bonus bMatkRate,5; } else if (.@r >= 7) { bonus bMatkRate,2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24399,'S_Immune_Athena_Shield','Immune Athena Shadow Shield','Shadowgear',true,1,true,'bonus bDef,50+20*(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24400,'S_Hard_Champion_Shoes','Hard Champion Shadow Shoes','Shadowgear',true,1,true,'.@val = getrefine()/2; bonus bMaxHP,200; bonus bMaxSP,100; bonus bMaxHPrate,.@val; bonus bMaxSPrate,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24401,'S_Kingbird_Ancient_Armor','Kingbird Ancient Shadow Armor','Shadowgear',true,1,true,'.@r = getrefine(); bonus bBaseAtk,15; bonus bLongAtkRate,.@r/2; if (.@r >= 7) { bonus bHit,30; } else { bonus bHit,15; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_rebellion`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24402,'Rebellion_Shadow_Armor','Rebellion Shadow Armor','Shadowgear',10,true,true,100,true,'.@r = getrefine(); bonus2 bSkillCooldown,"RL_HEAT_BARREL",-1000*(1+.@r/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_kagerouoboro`,`gender`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24403,'Kagerou_Shadow_Armor','Kagerou Shadow Armor','Shadowgear',10,true,'Male',true,100,true,'.@r = getrefine(); bonus2 bSkillAtk,"KO_HUUMARANKA",20+.@r*5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_kagerouoboro`,`gender`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24404,'Oboro_Shadow_Armor','Oboro Shadow Armor','Shadowgear',10,true,'Female',true,100,true,'.@r = getrefine(); bonus2 bSkillAtk,"NJ_KOUENKA",20+.@r*5; bonus2 bSkillAtk,"NJ_HYOUSENSOU",20+.@r*5; bonus2 bSkillAtk,"NJ_HUUJIN",20+.@r*5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_rebellion`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24405,'Rebellion_Shadow_Shoes','Rebellion Shadow Shoes','Shadowgear',10,true,true,100,true,'.@r = getrefine(); bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",20+.@r*5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_kagerouoboro`,`gender`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24406,'Kagerou_Shadow_Shoes','Kagerou Shadow Shoes','Shadowgear',10,true,'Male',true,100,true,'.@r = getrefine(); bonus2 bSkillAtk,"KO_HAPPOKUNAI",20+.@r*5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_kagerouoboro`,`gender`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24407,'Oboro_Shadow_Shoes','Oboro Shadow Shoes','Shadowgear',10,true,'Female',true,100,true,'.@r = getrefine(); bonus2 bSkillCooldown,"KO_ZANZOU",-1000*(1+.@r/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24408,'Doram_Physical_Shadow_Armor','Doram Physical Shadow Armor','Shadowgear',10,true,true,true,true,true,100,true,'.@r = getrefine(); bonus2 bSkillAtk,"SU_PICKYPECK",20; bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",.@r*3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24409,'Doram_Physical_Shadow_Shoes','Doram Physical Shadow Shoes','Shadowgear',10,true,true,true,true,true,100,true,'.@r = getrefine(); bonus2 bSkillCooldown,"SU_HISS",-3000*(1+.@r/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24410,'Doram_Magical_Shadow_Armor','Doram Magical Shadow Armor','Shadowgear',10,true,true,true,true,true,100,true,'.@r = getrefine(); bonus2 bSkillAtk,"SU_CN_METEOR",20; bonus2 bSkillAtk,"SU_SV_STEMSPEAR",.@r*3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24411,'Doram_Magical_Shadow_Shoes','Doram Magical Shadow Shoes','Shadowgear',10,true,true,true,true,true,100,true,'.@r = getrefine(); bonus2 bSkillCooldown,"SU_CHATTERING",-3000*(1+.@r/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_stargladiator`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24412,'Star_Emperor_Shadow_Armor','Star Emperor Shadow Armor','Shadowgear',10,true,true,100,true,'.@r = getrefine(); bonus2 bSkillAtk,"SJ_NEWMOONKICK",20; bonus2 bSkillAtk,"SJ_FULLMOONKICK",.@r*3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_stargladiator`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24413,'Star_Emperor_Shadow_Shoes','Star Emperor Shadow Shoes','Shadowgear',10,true,true,100,true,'.@r = getrefine(); bonus2 bSkillCooldown,"SJ_DOCUMENT",-3000*(1+.@r/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_soullinker`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24414,'Soul_Reaper_Shadow_Armor','Soul Reaper Shadow Armor','Shadowgear',10,true,true,100,true,'.@r = getrefine(); bonus2 bSkillAtk,"SP_SWHOO",20; bonus2 bSkillAtk,"SP_SPA",.@r*3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_soullinker`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24415,'Soul_Reaper_Shadow_Shoes','Soul Reaper Shadow Shoes','Shadowgear',10,true,true,100,true,'.@r = getrefine(); bonus2 bSkillCooldown,"SP_SOULREAPER",-3000-1000*(.@r/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (24416,'S_Temporal_Transcendent_Weapon','Temporal Transcendent Shadow Weapon','Shadowgear',true,1,true,100,true,true,true,true,true,true,true,'bonus bCritAtkRate,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (24417,'S_Temporal_Transcendent_Armor','Temporal Transcendent Shadow Armor','Shadowgear',true,1,true,100,true,true,true,true,true,true,true,'bonus bAspd,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (24418,'S_Temporal_Transcendent_Shield','Temporal Transcendent Shadow Shield','Shadowgear',true,1,true,100,true,true,true,true,true,true,true,'bonus bVariableCastrate,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (24419,'S_Temporal_Transcendent_Shoes','Temporal Transcendent Shadow Shoes','Shadowgear',true,1,true,100,true,true,true,true,true,true,true,'bonus bAspdRate,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (24420,'S_Temporal_Transcendent_Earring','Temporal Transcendent Shadow Earring','Shadowgear',true,1,true,100,true,true,true,true,true,true,true,'bonus bMatk,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (24421,'S_Temporal_Transcendent_Pendant','Temporal Transcendent Shadow Pendant','Shadowgear',true,1,true,100,true,true,true,true,true,true,true,'bonus bBaseAtk,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24423,'S_Tempest_Weapon','Tempest Shadow Weapon','Shadowgear',true,1,true,'bonus2 bIgnoreDefClassRate,Class_Normal,5+(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24424,'S_Tempest_Armor','Tempest Shadow Armor','Shadowgear',true,1,true,'bonus2 bIgnoreDefClassRate,Class_Normal,5+(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26007,'Illusion_Spectral_Spear','Illusion Spectral Spear','Weapon','2hSpear',20,2000,240,3,1,true,true,true,true,true,4,99,true,'.@r = getrefine(); .@val = 3*(.@r/2); bonus2 bAddEle,Ele_Dark,(20+.@val); bonus2 bAddRace,RC_Demon,(20+.@val); bonus2 bAddRace,RC_Undead,(20+.@val); bonus2 bSubRace,RC_Demon,(10+.@val); bonus2 bSubEle,Ele_Undead,(10+.@val); bonus2 bSubEle,Ele_Dark,(10+.@val); bonus bHPGainValue,50; bonus bSPGainValue,(.@r/2); bonus2 bAddEff2,Eff_Confusion,1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26016,'Royal_Knight\'s_Lance','Royal Knight\'s Lance','Weapon','2hSpear',20,1000,205,1,2,true,true,true,true,true,3,175,true,'.@r = getrefine(); bonus bLongAtkRate,3*(.@r/2); if (.@r>=7) bonus2 bAddClass,Class_All,5; if (.@r>=9) bonus2 bAddRace,RC_All,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (26100,'Paradise_Foxtail_Staff_II','Eden Group Foxtail Staff II','Weapon','Staff',20,135,165,1,true,true,true,true,true,2,40,100,true,true,true,true,true,true,true,'bonus bDex,4; bonus bInt,4; bonus bLongAtkRate,6;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (26101,'Paradise_Foxtail_Staff_III','Eden Group Foxtail Staff III','Weapon','Staff',20,150,195,1,true,true,true,true,true,3,60,100,true,true,true,true,true,true,true,'bonus bDex,5; bonus bInt,5; bonus bLongAtkRate,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26107,'Elder_Staff','Elder Staff','Weapon','Staff',500,60,150,1,3,true,true,true,true,3,100,true,'.@r = getrefine(); .@bonus = 10; if (.@r>=7) { .@bonus += 5; } if (.@r>=9) { .@bonus += 10; } bonus bHealPower,.@bonus;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_sage`,`job_wizard`,`class_upper`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26109,'Illusion_Staff_of_Bordeaux','Illusion Staff of Bordeaux','Weapon','Staff',20,500,60,180,1,2,true,true,true,true,true,true,true,4,99,true,'bonus bInt,3; bonus bDex,2; if (getskilllv("SA_DRAGONOLOGY") == 5) { .@val = getrefine()/3; bonus bMatkRate,(5+.@val); bonus bUseSPrate,(-15-(5*.@val)); }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_novice`,`job_priest`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26110,'CandyCaneRod','Candy Cane Rod','Weapon','Staff',20,500,10,140,1,2,true,true,true,true,true,true,true,true,true,true,4,99,true,'bonus bInt,2; bonus bFlee,2*getrefine(); if(getrefine()>= 10) { bonus bFlee2,10; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26138,'Hellfire_Staff','Hellfire Staff','Weapon','2hStaff',20,800,110,180,1,2,true,true,true,true,true,true,true,true,4,175,true,'.@r = getrefine; bonus bInt,5; bonus bMatk,15*(.@r/2); bonus bUnbreakableWeapon; if (.@r>=9) .@val = 15; else if (.@r>=7) .@val = 5; bonus2 bMagicAtkEle,Ele_Fire,.@val; bonus2 bMagicAtkEle,Ele_Earth,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26139,'Icicle_Staff','Icicle Staff','Weapon','2hStaff',20,800,110,180,1,2,true,true,true,true,true,true,true,true,4,175,true,'.@r = getrefine; bonus bInt,5; bonus bMatk,15*(.@r/2); bonus bUnbreakableWeapon; if (.@r>=9) .@val = 15; else if (.@r>=7) .@val = 5; bonus2 bMagicAtkEle,Ele_Water,.@val; bonus2 bMagicAtkEle,Ele_Holy,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_novice`,`job_priest`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26151,'Rutilus_Stick-OS','Rutilus Stick-OS','Weapon','Staff',20,900,80,175,1,2,true,true,true,true,true,true,true,true,true,true,4,130,true,'.@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bMagicAddEle,Ele_Neutral,5; bonus2 bMagicAddEle,Ele_Earth,5; if (.@r >= 7) { bonus bVariableCastrate,-7; if (.@r >= 9) { autobonus "{ bonus2 bMagicAtkEle,Ele_Fire,30; }",5,10000,BF_MAGIC; /* unknown rate */ if (.@r >= 11) { bonus bDelayrate,-10; } } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26155,'Meowmeow_Foxtail','Meowmeow Foxtail','Weapon','Staff',20,1100,300,300,1,2,true,true,true,true,true,4,100,true,'.@r = getrefine(); bonus bMatk,10*(.@r/2); bonus bBaseAtk,10*(.@r/2); bonus2 bAddClass,Class_All,2*(.@r/3); bonus bMatkRate,2*(.@r/3); if (.@r >= 7) { bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",15; bonus2 bSkillAtk,"SU_SV_STEMSPEAR",15; if (.@r >= 9) { bonus bVariableCastrate,-10; bonus bAspdRate,10; if (.@r >= 11) { bonus2 bSkillAtk,"SU_PICKYPECK",15; bonus2 bSkillAtk,"SU_CN_METEOR",15; } } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26158,'Crimson_Rose_Stick','Crimson Rose Stick','Weapon','Staff',20,700,100,180,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Fire,5; bonus2 bMagicAtkEle,Ele_Dark,5; if (.@r >= 9) { bonus2 bSkillAtk,"WL_HELLINFERNO",30; } if (.@r >= 11) { bonus2 bSkillCooldown,"WL_CRIMSONROCK",-1000; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26159,'Psychic_Spear_Rod','Psychic Spear Rod','Weapon','Staff',20,800,120,180,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Wind,5; bonus2 bMagicAtkEle,Ele_Neutral,5; if (.@r >= 9) { bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",30; } if (.@r >= 11) { bonus2 bSkillCooldown,"SO_VARETYR_SPEAR",-2000; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26160,'Dust_Grave','Dust Grave','Weapon','Staff',20,800,120,180,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); if (.@r >= 11) .@val = 50; else if (.@r >= 9) .@val = 30; bonus2 bSkillAtk,"SO_DIAMONDDUST",.@val; bonus2 bSkillAtk,"SO_EARTHGRAVE",.@val; bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Water,5; bonus2 bMagicAtkEle,Ele_Earth,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26161,'Penitentia','Penitentia','Weapon','Staff',20,700,100,175,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Holy,5; if (.@r >= 9) { bonus2 bSkillAtk,"PR_MAGNUS",(.@r>=11) ? 50 : 30; bonus2 bSkillAtk,"AB_JUDEX",30; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26200,'Hippie_Rope','Hippie Rope','Weapon','Whip',1000,140,2,2,true,true,true,true,'Female',true,3,100,true,'.@r = getrefine(); .@lvl = getskilllv("DC_DANCINGLESSON"); bonus bAspdRate,.@lvl; if (.@r>=7) bonus bBaseAtk,(5*.@lvl); if (.@r>=9) bonus bAspd,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26212,'Heart_Whip','Heart Whip','Weapon','Whip',1200,100,190,2,2,true,true,true,true,'Female',true,4,170,true,'.@r = getrefine(); bonus bMatk,4*.@r; bonus2 bMagicAtkEle,Ele_Neutral,10; if (.@r>=9) bonus2 bSkillAtk,"WM_METALICSOUND",30; if (.@r>=11) bonus2 bSkillCooldown,"WM_METALICSOUND",-2000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26213,'Scarlet_Ribbon','Scarlet Ribbon','Weapon','Whip',1200,180,2,2,true,true,true,true,'Female',true,4,170,true,'.@r = getrefine(); bonus bVariableCastrate,-10; bonus bLongAtkRate,.@r; if (.@r>=9) bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-1000; if (.@r>=11) bonus2 bSkillUseSPrate,"WM_SEVERE_RAINSTORM",20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (28000,'Thanos_Katar','Thanos Katar','Weapon','Katar',10,1800,220,80,1,1,true,true,true,true,true,true,4,120,true,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000;','heal -1000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28001,'Katar_Of_Evil_Slayer','Evil Slayer Ripper Katar','Weapon','Katar',1200,120,1,1,true,true,true,3,100,true,'bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; .@r = getrefine(); if(.@r>=9) { .@dmg = 5; if(.@r>=12) { .@dmg += 7; } bonus2 bAddClass,Class_All,.@dmg; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28002,'Half_BF_Katar2','Half BF Katar2','Weapon','Katar',20,130,1,true,true,true,3,80,true,'bonus bStr,1; bonus bDex,1; bonus bLuk,1; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus bCritAtkRate,10; bonus bAspdRate,3; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28005,'Ru_Blue_Katar','Blue Katar','Weapon','Katar',10,1200,190,1,1,true,true,true,true,true,true,3,100,true,'bonus bAgi,5; bonus bStr,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28006,'Ru_Gold_Katar','Ru Gold Katar','Weapon','Katar',1200,190,1,2,true,true,true,true,true,true,3,120,true,'bonus bAgi,8; bonus bStr,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28007,'Crimson_Katar','Crimson Katar','Weapon','Katar',20,1300,130,1,2,true,true,true,3,70,true,'.@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28008,'Katar_of_Vicious_Mind','Katar of Vicious Mind','Weapon','Katar',20,1800,180,1,1,true,true,true,4,160,true,'bonus bAtk,pow(min(getrefine(),15),2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28010,'Juliette_D._Rachel','Juliette D. Rachel','Weapon','Katar',20,2500,300,1,2,true,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus2 bAddClass,Class_All,(.@r/2); bonus bAspdRate,.@r; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28011,'Unity_Katar','Unity Katar','Weapon','Katar',20,650,123,1,1,true,true,true,3,1,true,100,true,true,true,true,true,true,'bonus bBaseAtk,pow(getrefine(),2)*125/100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_upper`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28022,'Illusion_Infiltrator','Illusion Infiltrator','Weapon','Katar',1500,200,1,2,true,true,true,true,true,true,true,4,100,true,'bonus2 bAddRace,RC_DemiHuman,60; bonus2 bAddRace,RC_Player_Human,60; bonus bDef,3; .@flee = 5; .@flee2 = 2; if (getrefine() >= 9) { .@flee += 5; .@flee2 += 2; bonus2 bAddClass,Class_All,5; } bonus bFlee,.@flee; bonus bFlee2,.@flee2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_upper`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28023,'Illusion_Sharpened_Legbone_of_Ghoul','Illusion Sharpened Legbone of Ghoul','Weapon','Katar',1700,220,1,2,true,true,true,true,true,true,true,3,100,true,'autobonus "{ bonus bDefEle,Ele_Undead; sc_start SC_ENDURE,6000,1; }",40,6000,BF_WEAPON|BF_SHORT,"{ active_transform 1036,6000; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28038,'Meuchler-OS','Meuchler-OS','Weapon','Katar',20,1300,190,1,2,true,true,true,4,130,true,'.@r = getrefine(); bonus2 bAddClass,Class_All,3; if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",15; if (.@r >= 11) { bonus2 bAddSize,Size_Small,20; bonus2 bAddSize,Size_Medium,20; } } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28042,'Ripper_Cross','Ripper Cross','Weapon','Katar',20,1500,250,1,2,true,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus2 bAddClass,Class_All,5; bonus bLongAtkRate,.@r; if (.@r>=9) bonus2 bSkillAtk,"GC_ROLLINGCUTTER",30; if (.@r>=11) bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28044,'Agudo_Filo','Agudo Filo','Weapon','Katar',20,2000,270,1,2,true,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bCritAtkRate,5; bonus bBaseAtk,4*.@r; if (.@r>=9) bonus2 bAddSize,Size_All,15; if (.@r>=11) { bonus bUnbreakableWeapon; bonus2 bAddClass,Class_All,7; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (28100,'Thanos_Axe','Thanos Axe','Weapon','2hAxe',10,4000,300,80,1,1,true,true,true,true,true,true,true,true,true,true,true,4,120,true,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000;','heal -1000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28101,'Tornado_Axe','Tornado Axe','Weapon','2hAxe',30000,4000,320,1,1,true,true,true,true,true,true,true,true,true,true,true,4,100,true,'bonus bAtkEle,Ele_Wind; bonus2 bSkillCooldown,"NC_AXETORNADO",-1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28102,'Half_BF_Two_Handed_Axe1','Half BF Two Handed Axe1','Weapon','2hAxe',20,200,1,true,true,true,true,true,true,true,true,3,80,true,'bonus bStr,3; bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player_Human,30; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28103,'Ru_Blue_Axe_M','Blue Twohand Axe','Weapon','2hAxe',10,3000,330,1,1,true,true,true,true,true,true,3,1,true,'bonus bStr,5; bonus bVit,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28104,'Ru_Gold_Axe_M','Ru Gold Axe M','Weapon','2hAxe',3000,330,1,2,true,true,true,true,true,true,3,120,true,'bonus bStr,8; bonus bVit,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (28105,'Infinity_Axe','Infinity Axe','Weapon','2hAxe',10,500,265,1,1,true,true,true,true,true,true,true,true,true,true,true,4,100,true,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28106,'Crimson_Two-Handed_Axe','Crimson Two-Handed Axe','Weapon','2hAxe',20,2000,200,1,2,true,true,true,true,true,true,true,true,3,70,true,'.@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28107,'Two_Handed_Axe_of_Vicious_Mind','Two Handed Axe of Vicious Mind','Weapon','2hAxe',20,2500,250,1,1,true,true,true,true,true,true,true,true,4,160,true,'bonus bAtk,pow(min(getrefine(),15),2); bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28110,'Unity_Two-Handed_Axe','Unity Two-Handed Axe','Weapon','2hAxe',20,1000,190,1,1,true,true,true,true,true,true,true,true,3,1,true,100,true,true,true,true,true,true,'bonus bBaseAtk,pow(getrefine(),2)*125/100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28116,'Mine_Worker\'s_Pickaxe','Mine Worker\'s Pickaxe','Weapon','2hAxe',10,4000,300,1,2,true,true,true,true,true,true,3,100,true,'bonus bUnbreakableWeapon; autobonus "{ bonus bCritical,20; }",5,7000,BF_SHORT,"{ specialeffect2 EF_ENCHANCE; }"; .@r = getrefine(); if (.@r>=9) { bonus bCritAtkRate,15; } else if (.@r>=7) { bonus bCritAtkRate,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28136,'Blasti-OS','Blasti-OS','Weapon','2hAxe',20,4500,400,1,2,true,true,true,true,true,true,4,130,true,'.@r = getrefine(); .@red = 10; bonus bUnbreakableWeapon; if (.@r >= 7) { .@red += 15; if (.@r >= 9) { bonus bLongAtkRate,15; if (.@r >= 11) { bonus bDelayrate,-10; } } } bonus2 bSubSize,Size_Medium,.@red; bonus2 bSubSize,Size_Large,.@red;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28138,'Maxi_Spanner','Maxi Spanner','Weapon','2hAxe',4500,340,1,2,true,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bBaseAtk,4*.@r; bonus bUnbreakableWeapon; bonus2 bSubSize,Size_Small,10; bonus2 bSubSize,Size_Medium,10; if (.@r>=9) { bonus2 bSkillCooldown,"NC_AXETORNADO",-1000; bonus2 bSkillCooldown,"NC_MAGMA_ERUPTION",-1000; } if (.@r>=11) bonus2 bSkillAtk,"NC_AXETORNADO",15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (28200,'END_OF_HORIZO','End Of The Horizon','Weapon','Grenade',2700000,2400,410,9,1,true,true,true,4,110,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28201,'Southern_Cross_R','Southern Cross','Weapon','Grenade',2800000,2000,480,9,true,true,true,4,141,true,'bonus3 bAutoSpell,"GC_CROSSIMPACT",1,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28202,'Southern_Cross_R_','Southern Cross','Weapon','Grenade',2800000,2000,480,9,1,true,true,true,4,141,true,'bonus3 bAutoSpell,"GC_CROSSIMPACT",1,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28203,'Half_BF_Rifle1','Half BF Rifle1','Weapon','Rifle',50,9,true,true,true,true,3,80,true,'bonus bDex,2; bonus bHit,8; bonus bCritical,8; bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player_Human,30; bonus2 bVariableCastrate,"GS_TRACKING",-20; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28204,'Half_BF_Shotgun1','Half BF Shotgun1','Weapon','Shotgun',100,9,true,true,true,true,3,80,true,'bonus bDex,2; bonus bSplashRange,1; bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player_Human,30; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; autobonus "{ bonus bBaseAtk,80; bonus2 bHPLossRate,100,1000; }",30,6000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28223,'Just_Finish','Finisher','Weapon','Rifle',20,2000,200,9,2,true,true,true,3,120,true,'.@r = getrefine(); bonus bLongAtkRate,15; if (.@r >= 7) { bonus2 bSkillAtk,"RL_AM_BLAST",30; bonus2 bSkillAtk,"RL_MASS_SPIRAL",30; if (.@r >= 9) { bonus2 bSkillCooldown,"RL_AM_BLAST",-1000; } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28224,'Dust_Fire','Dustfire','Weapon','Shotgun',20,1300,300,9,2,true,true,true,3,120,true,'.@r = getrefine(); bonus bSplashRange,1; bonus2 bAddEff,Eff_Blind,50; if (.@r >= 7) { bonus2 bSkillAtk,"RL_S_STORM",15; if (.@r >= 9) { bonus2 bSkillAtk,"RL_BANISHING_BUSTER",15; } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28225,'Burning_Rose','Burning Rose','Weapon','Gatling',20,2500,200,9,2,true,true,true,3,120,true,'bonus bLongAtkRate,15; if (.@r >= 7) { bonus2 bSkillAtk,"RL_FIRE_RAIN",30; if (.@r >= 9) { bonus2 bSkillCooldown,"RL_FIRE_RAIN",-1000; } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28226,'Revenger','Avenger','Weapon','Grenade',20,1800,350,9,2,true,true,true,3,120,true,'bonus bLongAtkRate,20; if (.@r >= 7) { bonus2 bSkillAtk,"RL_D_TAIL",15; if (.@r >= 9) { bonus2 bSkillCooldown,"RL_H_MINE",-1000; } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28240,'Calf_Kingcobra','Calf Kingcobra','Weapon','Rifle',900,230,9,2,true,true,true,4,150,true,'.@r = getrefine(); bonus bAspdRate,10 + (.@r > 6 ? 5 : 0); bonus bLongAtkRate,(.@r/2)*5 + (.@r > 11 ? 5 : 0); if(.@r > 8){ bonus bCritAtkRate,15; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28241,'Calf_Diamondback','Calf Diamondback','Weapon','Gatling',3000,220,9,2,true,true,true,4,150,true,'.@r = getrefine(); bonus bDex,2; bonus2 bAddClass,Class_All,2; bonus bLongAtkRate,(.@r/2)*5 + (.@r > 11 ? 5 : 0); if(.@r > 6){ bonus2 bSkillAtk,"RL_R_TRIP",20; } if(.@r > 8){ bonus2 bSkillUseSPrate,"RL_R_TRIP",5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28242,'Calf_Anaconda','Calf Anaconda','Weapon','Shotgun',10,1400,305,9,2,true,true,true,4,150,true,'.@r = getrefine(); bonus bSplashRange,1; bonus bMaxSPrate,2; bonus bLongAtkRate,(.@r/2)*5 + (.@r > 8 ? 5 : 0); if(.@r > 6){ bonus2 bSkillAtk,"RL_BANISHING_BUSTER",20; } if(.@r > 11){ bonus2 bSkillUseSPrate,"RL_BANISHING_BUSTER",15; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28243,'Calf_Python','Calf Python','Weapon','Grenade',10,2000,360,9,2,true,true,true,4,150,true,'.@r = getrefine(); bonus bDex,2; bonus2 bAddClass,Class_All,2; bonus bLongAtkRate,(.@r/2)*5; if(.@r > 6){ bonus bAspdRate,5; } if(.@r > 8){ bonus2 bSkillAtk,"RL_D_TAIL",15 + (.@r > 11 ? 15 : 0); }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28244,'Illusion_Gate_Keeper_DD','Illusion Gate Keeper DD','Weapon','Shotgun',1300,240,9,2,true,true,true,4,120,true,'.@r = getrefine(); bonus bDex,1; bonus bSplashRange,1; .@val = 5*(.@r/2); if (.@r >= 7) { bonus bAspdRate,15; if (.@r >= 9) { .@val += 5; if (.@r >= 11) { bonus5 bAutoSpell,"GS_SPREADATTACK",max(6,getskilllv("GS_SPREADATTACK")),50,BF_LONG|BF_WEAPON,1; } } } bonus bLongAtkRate,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28253,'HR-S55-OS','HR-S55-OS','Weapon','Rifle',20,1000,250,9,2,true,true,true,true,4,130,true,'.@r = getrefine(); bonus2 bAddClass,Class_All,3; if (.@r >= 7) { bonus bLongAtkRate,7; if (.@r >= 9) { bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",20; if (.@r >= 11) { bonus2 bSkillCooldown,"RL_HAMMER_OF_GOD",-5000; } } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28254,'Illusion_Butcher','Illusion Butcher','Weapon','Gatling',20,2500,210,9,2,true,true,true,true,4,120,true,'.@r = getrefine(); bonus bLongAtkRate,2*(readparam(bStr)/15); bonus bBaseAtk,10*.@r; if (.@r >= 7) { bonus2 bSkillAtk,"RL_FIRE_RAIN",20; if (.@r >= 9) { bonus2 bSkillAtk,"RL_R_TRIP",15; if (.@r >= 11) { bonus2 bAddRace,RC_Brute,30; bonus2 bAddRace,RC_Player_Doram,30; bonus2 bAddRace,RC_Demon,30; } } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28255,'Master_Soul_Rifle','Master Soul Rifle','Weapon','Rifle',20,1000,150,210,9,2,true,true,true,4,100,true,'.@r = getrefine(); bonus bMatk,10*(.@r/3); bonus bAspdRate,3*(.@r/3); if (.@r >= 7) { bonus bAspd,1; bonus bMatkRate,5; if (.@r >= 9) { .@chance = 1; /* unknown rate*/ if (.@r >= 11) { .@chance += 1; bonus5 bAutoSpell,"WL_SOULEXPANSION",3,1,BF_LONG,1; } bonus5 bAutoSpell,"MG_SOULSTRIKE",10,.@chance,BF_LONG,1; } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28256,'Demon_Slayer_Shot','Demon Slayer Shot','Weapon','Shotgun',20,1400,275,9,2,true,true,true,4,100,true,'.@r = getrefine(); bonus bSplashRange,1; bonus bLongAtkRate,3*(.@r/2); bonus bMaxSPrate,2*(.@r/3); if (.@r >= 7) { bonus2 bAddClass,Class_Boss,10; if (.@r >= 9) { autobonus3 "{ bonus bBaseAtk,50; bonus bLongAtkRate,10; }",1000,90000,"RL_P_ALTER"; if (.@r >= 11) { bonus2 bAddRace,RC_Undead,15; bonus2 bAddRace,RC_Demon,15; } } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28257,'Golden_Lord_Launcher','Golden Lord Launcher','Weapon','Grenade',20,2100,320,9,2,true,true,true,4,100,true,'.@r = getrefine(); bonus bLongAtkRate,3*(.@r/2); bonus bBaseAtk,15*(.@r/3); if (.@r >= 7) { .@val = 15; if (.@r >= 9) { bonus2 bSkillCooldown,"RL_D_TAIL",-1000; if (.@r >= 11) { .@val += 15; } } bonus2 bSkillAtk,"RL_D_TAIL",.@val; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28258,'The_Black','The Black','Weapon','Gatling',20,2700,205,9,2,true,true,true,4,100,true,'.@r = getrefine(); bonus bLongAtkRate,2*(.@r/3); bonus bBaseAtk,10*(.@r/2); if (.@r >= 7) { .@val = 15; bonus2 bSkillUseSPrate,"RL_R_TRIP",-10; if (.@r >= 9) { autobonus3 "{ bonus bBaseAtk,50; bonus bLongAtkRate,10; }",1000,90000,"RL_P_ALTER"; if (.@r >= 11) { .@val += 15; } } bonus2 bSkillAtk,"RL_R_TRIP",.@val; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28302,'Vesper_Core01_','Vesper Core 01','Armor',20,500,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,'bonus bMdef,3; bonus bInt,2; bonus bMaxSPrate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28303,'Vesper_Core02_','Vesper Core 02','Armor',20,500,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,'bonus bMdef,3; bonus bStr,3; bonus bBaseAtk,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28304,'Vesper_Core03_','Vesper Core 03','Armor',20,500,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,'bonus bMdef,3; bonus bAgi,3; bonus bFlee,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28305,'Vesper_Core04_','Vesper Core 04','Armor',20,500,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,'bonus bMdef,3; bonus bDex,3; bonus bHit,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28306,'Bless_Of_Moon','Luna\'s Blessing','Armor',20,100,5,true,true,1,'bonus bAllStats,1; bonus bMdef,2; bonus3 bAutoSpell,"CG_TAROTCARD",5,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28315,'RCC2013_ARMLET','RCC2013_ARMLET','Armor',200,200,true,true,1,'bonus2 bAddClass,Class_All,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28316,'RCC2013_ARMLET_','RCC2013_ARMLET_','Armor',200,200,1,true,true,1,'bonus2 bAddClass,Class_All,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28317,'RCC2013_RING','RCC2013_RING','Armor',200,200,true,true,1,'bonus2 bAddClass,Class_All,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28318,'RCC2013_RING_','RCC2013_RING_','Armor',200,200,1,true,true,1,'bonus2 bAddClass,Class_All,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28310,'Earring_Of_Sarah_L','Sarah\'s Left Earring','Armor',10,100,true,true,145,100,true,true,true,true,true,true,'skill "AL_HEAL",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28311,'Earring_Of_Sarah_R','Sarah\'s Right Earring','Armor',10,100,true,true,145,100,true,true,true,true,true,true,'skill "AL_TELEPORT",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28320,'Assassin\'s_Despair','Assassin\'s Despair','Armor',20,100,1,true,true,50,'bonus bAspd,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_hunter`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28321,'Falconer_Claw','Falconer Claw','Armor',100,5,1,true,true,true,80,'bonus bDex,1; bonus2 bSkillAtk,"HT_BLITZBEAT",getskilllv("HT_STEELCROW")*10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_hunter`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28322,'Falconer_Glove','Falconer Glove','Armor',100,5,1,true,true,true,80,'bonus bDex,1; bonus bUseSPrate,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28326,'Broken_Chip_1','Broken Chips 01','Armor',10,100,1,true,true,100,'bonus bStr,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28327,'Broken_Chip_2','Broken Chips 02','Armor',10,100,1,true,true,100,'bonus bInt,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28332,'Jewel_Ring','Jewerly Ring','Armor',10,100,true,true,1,'/* bonus bLuk,20; Event bonus */ autobonus "{ bonus bAspd,2; bonus bVariableCastrate,-30; }",50,5000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_ENCHANCE; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28333,'Gold_PC_Room_Ring','Gold PC Room Ring','Armor',10,1,true,true,1,100,true,true,true,true,true,true,true,'bonus bMaxHPrate,3; bonus bMaxSPrate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28342,'Critical_Anklet','Critical Anklet','Armor',200,3,1,true,true,50,'bonus bCritical,5; bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28352,'Vesper_Gear_01','Vesper Gear 01','Armor',20,100,1,1,true,true,90,'bonus bMdef,3; bonus bMatkRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28353,'Vesper_Gear_02','Vesper Gear 02','Armor',20,100,1,1,true,true,90,'bonus bMdef,3; bonus2 bAddClass,Class_All,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28354,'City_Map','City Map','Armor',100,1,true,true,1,'/* todo */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28355,'Shining_Holy_Water_','Shining Holy Water','Armor',100,1,true,true,1,'/* todo */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28356,'Prontera_Badge','Prontera Badge','Armor',100,true,true,1,'/*warp "prontera",159,192; 15 mins cooldown */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28357,'Vesper_Gear_03','Vesper Gear 03','Armor',20,100,1,1,true,true,90,'bonus bMdef,3; bonus bFlee,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`,`unequip_script`) VALUES (28358,'Cursed_Lucky_Clover','Cursed Lucky Clover','Armor',100,1,true,true,100,'bonus bLuk,2; bonus bFlee,3; bonus2 bAddEff2,Eff_Curse,5;','sc_end SC_CLOAKING; /*FIXME: Because the combo has Cloaking skill*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28359,'Vesper_Gear_04','Vesper Gear 04','Armor',20,100,1,1,true,true,90,'bonus bMdef,3; bonus bHit,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28370,'Broken_Chip_Green','Broken Chip (Green)','Armor',100,1,1,true,true,100,'bonus2 bAddClass,Class_All,5; bonus bDelayrate,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28371,'Broken_Chip_Red','Broken Chip (Red)','Armor',100,1,1,true,true,100,'bonus2 bMagicAddClass,Class_All,5; bonus bVariableCastrate,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28372,'Imperial_Ring','Imperial Ring','Armor',500,3,1,true,true,50,'bonus bStr,1; bonus bInt,1; bonus bMaxHPRate,3; bonus bMaxSPRate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28374,'Foxtail_Ring','Foxtail Ring','Armor',20,100,true,true,true,true,true,true,1,100,true,true,true,true,true,true,'bonus2 bExpAddRace,RC_All,5; .@lvl = min(BaseLevel/5,10); bonus bAtk,2*.@lvl; bonus bMatk,2*.@lvl; bonus bMaxHP,10*.@lvl; bonus bMaxSP,5*.@lvl;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28377,'Magical_Ring','Magical Ring','Armor',100,1,true,true,20,'bonus2 bMagicAtkEle,Ele_Fire,5; bonus2 bMagicAtkEle,Ele_Water,5; bonus2 bMagicAtkEle,Ele_Earth,5; bonus2 bMagicAtkEle,Ele_Wind,5; if (BaseLevel > 4) { bonus2 bSkillAtk,"MG_FIREBOLT",BaseLevel/5; bonus2 bSkillAtk,"MG_COLDBOLT",BaseLevel/5; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",BaseLevel/5; bonus2 bSkillAtk,"WZ_EARTHSPIKE",BaseLevel/5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28379,'Shadow_Ring','Shadow Ring','Armor',20,100,1,true,true,20,'.@s = getskilllv("RG_STEALCOIN"); .@r = getskilllv("RG_RAID"); if (.@s>=1) .@a = .@s; else .@a = 1; bonus3 bAutoSpell,"RG_STEALCOIN",.@a,50; bonus2 bSkillAtk,"RG_BACKSTAP",2*BaseLevel; bonus3 bAddEff,Eff_Stun,.@r*100,ATF_SHORT; autobonus3 "{ bonus2 bSkillAtk,\\"SC_TRIANGLESHOT\\",BaseLevel/3; }",1000,20000,5010,"{ specialeffect2 153; }"; /* Placeholder specialeffect */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28380,'Fresh_Grass_Necklace','Fresh Grass Necklace','Armor',20,100,1,true,true,true,true,true,true,100,'bonus bFlee2,5; bonus2 bSkillCooldown,"SU_SCAROFTAROU",-5000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28381,'Cute_Grass_Necklace','Cute Grass Necklace','Armor',20,10,1,true,true,true,true,true,true,100,'bonus bHealPower,5; bonus2 bSkillCooldown,"SU_TUNAPARTY",-7000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28382,'Charm_Grass_Necklace','Charm Grass Necklace','Armor',20,10,1,true,true,true,true,true,true,100,'bonus bMdef,5; bonus2 bVariableCastrate,"SU_CN_METEOR",-1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28386,'Fallen_Monk_Rosary','Fallen Monk Rosary','Armor',100,1,true,true,20,'bonus bAspdRate,5; bonus bCritical,5; bonus2 bSkillUseSP,"CH_SOULCOLLECT",-5; if (BaseLevel > 14) bonus2 bSkillAtk,"SR_DRAGONCOMBO",BaseLevel/15; if (BaseLevel > 19) bonus2 bSkillAtk,"SR_KNUCKLEARROW",BaseLevel/20; if (BaseLevel > 29) bonus2 bSkillAtk,"SR_SKYNETBLOW",BaseLevel/30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (28391,'S_Thief_Earring','Thief Shadow Earring','Shadowgear',true,1,true,'autobonus3 "{ .@val = 30+(getrefine()*10); bonus bBaseAtk,.@val; bonus bFlee,.@val; }",200,5000,"TF_THROWSTONE","{ specialeffect2 EF_ENHANCE; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (28392,'S_Archer_Earring','Archer Shadow Earring','Shadowgear',true,1,true,'autobonus3 "{ .@val = 30+(getrefine()*10); bonus bBaseAtk,.@val; bonus bHit,.@val; }",200,5000,"AC_DOUBLE","{ specialeffect2 EF_ENHANCE; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28410,'Sapphire_Wrist','Sapphire Wrist','Armor',500,3,1,true,true,50,'bonus bDex,5; bonus bLuk,5; bonus bInt,5; bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",BaseLevel/5; bonus2 bVariableCastrate,"CR_ACIDDEMONSTRATION",-(BaseLevel/4); .@n = getskilllv("CR_SLIMPITCHER"); bonus bDex,.@n/2; bonus bLuk,.@n/2; bonus bInt,.@n/2; bonus bMatk,(.@n/2)*20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28411,'Emerald_Earring','Emerald Earring','Armor',500,3,1,true,true,50,'bonus bDex,5; bonus bAgi,5; bonus bInt,5; bonus2 bSkillAtk,"CG_ARROWVULCAN",BaseLevel; bonus2 bSkillAtk,"BA_MUSICALSTRIKE",BaseLevel; bonus2 bSkillAtk,"DC_THROWARROW",BaseLevel; bonus2 bSkillAtk,"WM_METALICSOUND",2*(BaseLevel/5); .@n = getskilllv("WM_METALICSOUND"); bonus2 bVariableCastrate,"WM_METALICSOUND",.@n/2; bonus bDex,.@n/2; bonus bAgi,.@n/2; bonus bInt,.@n/2; bonus bMatk,(.@n/2)*20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_summoner`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28413,'Lesser_Mackerel_Talisman','Lesser Mackerel Talisman','Armor',100,1,1,true,true,true,100,100,true,true,true,true,true,true,'bonus bVit,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_summoner`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28414,'Intermediate_Mackerel_Talisman','Intermediate Mackerel Talisman','Armor',100,1,1,true,true,true,140,100,true,true,true,true,true,true,'bonus bVit,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_summoner`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28415,'Greater_Mackerel_Talisman','Greater Mackerel Talisman','Armor',100,1,1,true,true,true,175,100,true,true,true,true,true,true,'bonus bVit,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_summoner`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28416,'Lesser_Leaf_Talisman','Lesser Leaf Talisman','Armor',100,1,1,true,true,true,100,100,true,true,true,true,true,true,'bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_summoner`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28417,'Intermediate_Leaf_Talisman','Intermediate Leaf Talisman','Armor',100,1,1,true,true,true,140,100,true,true,true,true,true,true,'bonus bInt,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_summoner`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28418,'Greater_Leaf_Talisman','Greater Leaf Talisman','Armor',100,1,1,true,true,true,175,100,true,true,true,true,true,true,'bonus bInt,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_summoner`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28419,'Lesser_Rabbit_Talisman','Lesser Rabbit Talisman','Armor',100,1,1,true,true,true,100,100,true,true,true,true,true,true,'bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_summoner`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28420,'Intermediate_Rabbit_Talisman','Intermediate Rabbit Talisman','Armor',100,1,1,true,true,true,140,100,true,true,true,true,true,true,'bonus bDex,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_summoner`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28421,'Greater_Rabbit_Talisman','Greater Rabbit Talisman','Armor',100,1,1,true,true,true,175,100,true,true,true,true,true,true,'bonus bDex,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_summoner`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28422,'Shiny_Branch_Talisman','Shiny Branch Talisman','Armor',100,1,1,true,true,true,100,100,true,true,true,true,true,true,'bonus2 bVariableCastrate,"SU_SV_STEMSPEAR",-50; bonus2 bSkillAtk,"SU_SV_STEMSPEAR",(readparam(bInt)/2)+(20 * getskilllv("SU_SV_STEMSPEAR")); /* Need to confirm damage formula */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_summoner`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28423,'Fresh_Tuna_Talisman','Fresh Tuna Talisman','Armor',100,1,1,true,true,true,100,100,true,true,true,true,true,true,'bonus2 bSkillCooldown,"SU_TUNAPARTY",-5000; bonus3 bAutoSpellWhenHit,"SU_TUNAPARTY",max(1,getskilllv("SU_TUNAPARTY")),10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_summoner`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28424,'Chubby_Worm_Talisman','Chubby Worm Talisman','Armor',100,1,1,true,true,true,100,100,true,true,true,true,true,true,'bonus2 bVariableCastrate,"SU_PICKYPECK",-50; bonus2 bSkillAtk,"SU_PICKYPECK",(readparam(bDex)/2)+(20 * getskilllv("SU_PICKYPECK")); /* Need to confirm damage formula */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28425,'Mercenary_Ring_A','Mercenary Ring Type A','Armor',20,200,true,true,99,'bonus bVit,3; if (BaseClass == Job_Gunslinger || BaseJob == Job_Novice || BaseJob == Job_SuperNovice || BaseClass == Job_Ninja || BaseClass == Job_Taekwon) { bonus bMaxHP,1000; bonus bMaxSP,200; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28426,'Mercenary_Ring_B','Mercenary Ring Type B','Armor',20,200,true,true,99,'bonus bInt,3; if (BaseClass == Job_Gunslinger || BaseJob == Job_Novice || BaseJob == Job_SuperNovice || BaseClass == Job_Ninja || BaseClass == Job_Taekwon) { bonus bVariableCastrate,-30; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28429,'Arquien\'s_Necklace','Arquien\'s Necklace','Armor',20,100,1,true,true,20,'bonus2 bSkillAtk,"MC_CARTREVOLUTION",Baselevel; bonus2 bSkillAtk,"NC_AXETORNADO",(Baselevel/3); bonus2 bSkillAtk,"NC_POWERSWING",(Baselevel/5); bonus2 bSkillUseSP,"NC_POWERSWING",2; bonus2 bAddMonsterDropItem,529,2000; bonus2 bAddMonsterDropItem,530,2000; bonus2 bAddMonsterDropItem,573,500; bonus2 bAddItemHealRate,529,100; bonus2 bAddItemHealRate,530,100; /* Unknow drop rates */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28430,'Arch_Bishop_Ring','Arch Bishop Ring','Armor',20,400,1,true,true,90,'bonus bLuk,2; bonus bFlee2,5; bonus bUseSPrate,-5; bonus bHealPower,15; bonus bAddItemHealRate,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28433,'Luminous_Blue_Stone','Luminous Blue Stone','Armor',20,400,1,true,true,90,'bonus bAgi,2; bonus bCritical,5; bonus bAspdRate,5; bonus bCritAtkRate,2; skill "MG_SIGHT",1; if (readparam(bLuk)>=100) { bonus bCritical,10; bonus bCritAtkRate,10; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28434,'Fist_Fighter_Glove','Fist Fighter\'s Glove','Armor',20,400,1,true,true,90,'bonus bStr,2; bonus bMaxSP,100; bonus2 bAddClass,Class_All,2; skill "MO_ABSORBSPIRITS",1; if (readparam(bStr)>99) bonus2 bAddClass,Class_All,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28437,'Hibram\'s_Gloves','Hibram\'s Gloves','Armor',20,400,1,true,true,90,'skill "AL_HEAL",3; bonus bInt,2; bonus bMatkRate,2; bonus bUseSPrate,-5; if (readparam(bInt)>=110) bonus bMatkRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28438,'Fairy_Leaf_Powder','Fairy Leaf Powder','Armor',20,400,1,true,true,90,'bonus bDex,2; bonus bDelayrate,-5; bonus bLongAtkRate,2; skill "SM_MAGNUM",3; if (readparam(bDex)>=100) bonus bLongAtkRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28441,'Vigilante_Badge','Vigilante Badge','Armor',200,true,true,true,true,true,true,100,'bonus bFlee,10; bonus bLongAtkRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28442,'Hippie_Feather','Hippie Feather','Armor',200,1,true,true,true,true,true,true,100,'bonus bHit,5; bonus bFlee,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28443,'Para_Team_Str_Ring100','Awakened Eden Group Ring of Strength I','Armor',true,true,100,100,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28444,'Para_Team_Str_Necklace100','Awakened Eden Group Necklace of Strength I','Armor',true,true,100,100,true,true,true,true,true,true,'bonus bStr,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28445,'Para_Team_Str_Ring115','Awakened Eden Group Ring of Strength II','Armor',true,true,115,100,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28446,'Para_Team_Str_Necklace115','Awakened Eden Group Necklace of Strength II','Armor',true,true,115,100,true,true,true,true,true,true,'bonus bStr,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28447,'Para_Team_Str_Ring130','Awakened Eden Group Ring of Strength III','Armor',true,true,130,100,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28448,'Para_Team_Str_Necklace130','Awakened Eden Group Necklace of Strength III','Armor',true,true,130,100,true,true,true,true,true,true,'bonus bStr,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28449,'Para_Team_Str_Ring145','Awakened Eden Group Ring of Strength IV','Armor',true,true,145,100,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28450,'Para_Team_Str_Necklace145','Awakened Eden Group Necklace of Strength IV','Armor',true,true,145,100,true,true,true,true,true,true,'bonus bStr,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28451,'Para_Team_Str_Ring160','Awakened Eden Group Ring of Strength V','Armor',true,true,160,100,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,5; skill "AL_HEAL",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28452,'Para_Team_Str_Necklace160','Awakened Eden Group Necklace of Strength V','Armor',true,true,160,100,true,true,true,true,true,true,'bonus bStr,4; skill "AL_TELEPORT",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28453,'Para_Team_Magic_Ring100','Awakened Eden Group Ring of Magic I','Armor',true,true,100,100,true,true,true,true,true,true,'bonus bMatkRate,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28454,'Para_Team_Magic_Necklace100','Awakened Eden Group Necklace of Magic I','Armor',true,true,100,100,true,true,true,true,true,true,'bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28455,'Para_Team_Magic_Ring115','Awakened Eden Group Ring of Magic II','Armor',true,true,115,100,true,true,true,true,true,true,'bonus bMatkRate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28456,'Para_Team_Magic_Necklace115','Awakened Eden Group Necklace of Magic II','Armor',true,true,115,100,true,true,true,true,true,true,'bonus bInt,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28457,'Para_Team_Magic_Ring130','Awakened Eden Group Ring of Magic III','Armor',true,true,130,100,true,true,true,true,true,true,'bonus bMatkRate,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28458,'Para_Team_Magic_Necklace130','Awakened Eden Group Necklace of Magic III','Armor',true,true,130,100,true,true,true,true,true,true,'bonus bInt,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28459,'Para_Team_Magic_Ring145','Awakened Eden Group Ring of Magic IV','Armor',true,true,145,100,true,true,true,true,true,true,'bonus bMatkRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28460,'Para_Team_Magic_Necklace145','Awakened Eden Group Necklace of Magic IV','Armor',true,true,145,100,true,true,true,true,true,true,'bonus bInt,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28461,'Para_Team_Magic_Ring160','Awakened Eden Group Ring of Magic V','Armor',true,true,160,100,true,true,true,true,true,true,'bonus bMatkRate,5; skill "AL_HEAL",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28462,'Para_Team_Magic_Necklace160','Awakened Eden Group Necklace of Magic V','Armor',true,true,160,100,true,true,true,true,true,true,'bonus bInt,4; skill "AL_TELEPORT",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28463,'Para_Team_Agi_Ring100','Awakened Eden Group Ring of Agility I','Armor',true,true,100,100,true,true,true,true,true,true,'bonus bLongAtkRate,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28464,'Para_Team_Agi_Necklace100','Awakened Eden Group Necklace of Agility I','Armor',true,true,100,100,true,true,true,true,true,true,'bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28465,'Para_Team_Agi_Ring115','Awakened Eden Group Ring of Agility II','Armor',true,true,115,100,true,true,true,true,true,true,'bonus bLongAtkRate,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28466,'Para_Team_Agi_Necklace115','Awakened Eden Group Necklace of Agility II','Armor',true,true,115,100,true,true,true,true,true,true,'bonus bDex,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28467,'Para_Team_Agi_Ring130','Awakened Eden Group Ring of Agility III','Armor',true,true,130,100,true,true,true,true,true,true,'bonus bLongAtkRate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28468,'Para_Team_Agi_Necklace130','Awakened Eden Group Necklace of Agility III','Armor',true,true,130,100,true,true,true,true,true,true,'bonus bDex,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28469,'Para_Team_Agi_Ring145','Awakened Eden Group Ring of Agility IV','Armor',true,true,145,100,true,true,true,true,true,true,'bonus bLongAtkRate,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28470,'Para_Team_Agi_Necklace145','Awakened Eden Group Necklace of Agility IV','Armor',true,true,145,100,true,true,true,true,true,true,'bonus bDex,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28471,'Para_Team_Agi_Ring160','Awakened Eden Group Ring of Agility V','Armor',true,true,160,100,true,true,true,true,true,true,'bonus bLongAtkRate,4; skill "AL_HEAL",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28472,'Para_Team_Agi_Necklace160','Awakened Eden Group Necklace of Agility V','Armor',true,true,160,100,true,true,true,true,true,true,'bonus bDex,4; skill "AL_TELEPORT",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28483,'Royal_Guardian_Ring','Royal Guardian Ring','Armor',10,1,1,true,true,99,'.@b = min(BaseLevel/25,7); bonus bMaxHPrate,.@b; bonus bMaxSPrate,.@b;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28484,'Rebel_Scarf','Rebel Scarf','Armor',20,400,1,true,true,100,'.@M = getskilllv("RL_MASS_SPIRAL"); .@F = getskilllv("RL_FIRE_RAIN"); .@H = getskilllv("RL_HEAT_BARREL"); .@S = getskilllv("RL_S_STORM"); .@D = getskilllv("RL_D_TAIL"); .@E = getskilllv("RL_E_CHAIN"); bonus2 bAddClass,Class_All,5; bonus bAspdRate,2*.@M; bonus bVariableCastrate,-10; bonus bDelayrate,-(.@F); bonus2 bSkillCooldown,"RL_HEAT_BARREL",-4000*.@S; bonus2 bSkillCooldown,"RL_S_STORM",-100*.@S; bonus bCritAtkRate,3*.@D; bonus2 bSkillAtk,"RL_FIRE_RAIN",5*.@F; bonus2 bSkillAtk,"RL_MASS_SPIRAL",5*.@M; bonus2 bSkillAtk,"RL_QD_SHOT",5*.@E; bonus2 bSkillAtk,"RL_S_STORM",5*.@S; bonus2 bSkillUseSP,"RL_FIREDANCE",10; bonus2 bSkillUseSP,"RL_FIRE_RAIN",4*.@F; bonus2 bSkillUseSP,"RL_MASS_SPIRAL",2*.@M; if(getiteminfo(getequipid(EQI_HAND_R),11) == W_GRENADE) { autobonus3 "{ bonus3 bAutoSpell,\\"RL_D_TAIL\\",max(1,getskilllv(\\"RL_D_TAIL\\")),10;}",1000,50000,"RL_C_MARKER","{specialeffect2 311;}"; } /* Placeholder Effect */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28485,'Shinobi_Sash_H','Shinobi Sash H','Armor',20,100,1,true,true,100,'bonus bMatkRate,5; bonus bAspdRate,5; bonus bDelayrate,-5; .@a = (getskilllv("KO_GENWAKU")+getskilllv("KO_JYUSATSU")+getskilllv("KO_KYOUGAKU")); bonus2 bMagicAddEle,Ele_Dark,4*.@a; bonus2 bSkillAtk,"NJ_BAKUENRYU",10*getskilllv("NJ_KOUENKA"); bonus2 bSkillAtk,"NJ_KAMAITACHI",10*getskilllv("NJ_HUUJIN"); bonus2 bSkillAtk,"NJ_HYOUSYOURAKU",20*getskilllv("NJ_HYOUSENSOU");'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28491,'Hunting_Knife','Hunting Knife','Armor',20,400,1,true,true,90,'bonus bLuk,2; bonus bHit,10; bonus bCriticalLong,5; skill "TF_HIDING",1; if (readparam(bLuk)>=100) { bonus bHit,5; bonus bCriticalLong,10; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28492,'Thieve_Guide_V1','Thieve\'s Guide Vol.1','Armor',20,10,1,true,true,100,'bonus bStr,5; bonus bAgi,5; bonus bInt,5; if (getskilllv(2292)==3) skill "SN_WINDWALK",5; if (getskilllv(2293)==3) skill "HP_ASSUMPTIO",5; if (getskilllv(2294)==3) skill "WS_OVERTHRUSTMAX",5; if (getskilllv(2295)==3) skill "ASC_METEORASSAULT",5; if (getskilllv(2296)==3) skill "LK_BERSERK",1; if (getskilllv(2297)==3) skill "HW_MAGICPOWER",5; if (getskilllv(220)==1) { bonus bStr,5; bonus bAgi,5; bonus bInt,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28495,'Sheriffs_Left_Badge','Sheriff\'s Left Badge','Armor',200,1,true,100,100,true,true,true,true,true,true,'if (readparam(bStr) > 89) bonus2 bAddClass,Class_All,3; if (readparam(bVit) > 89) bonus bMaxHP,1000; if (readparam(bDex) > 89) bonus bLongAtkRate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_right_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28496,'Sheriffs_Right_Badge','Sheriff\'s Right Badge','Armor',200,1,true,100,100,true,true,true,true,true,true,'if (readparam(bVit) > 89) bonus bMaxHP,1000; if (readparam(bInt) > 89) bonus bMatkRate,3; if (readparam(bDex) > 89) bonus bVariableCastrate,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28499,'Proof_of_Glory','Proof of Glory','Armor',100,true,true,100,'bonus bAllStats,1; bonus2 bAddRace,RC_All,2; bonus2 bMagicAddRace,RC_All,2; if(BaseLevel>=150) { bonus bAllStats,1; bonus2 bAddRace,RC_All,2; bonus2 bMagicAddRace,RC_All,2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`) VALUES (28500,'Zealous_Necklace','Zealous Necklace','Armor',20,200,1,true,true,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28501,'Horn_of_Kirin','Horn of Kirin','Armor',20,500,3,1,true,true,50,'bonus bAgi,2; bonus bAspdRate,2; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Brute,1; bonus2 bSubRace,RC_Player_Doram,1; bonus2 bSubRace,RC_Fish,1; bonus2 bSubRace,RC_Player_Human,1; bonus2 bSubRace,RC_Demon,2; bonus2 bSubRace,RC_Undead,2; skill "AL_INCAGI",6; if (readparam(bAgi)>=100) { bonus bAspdRate,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (28502,'Mob_Scarf','Mob Scarf','Armor',20,100,true,100,1568,'skill "SA_SPELLBREAKER",2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28503,'Keraunos','Keraunos','Armor',20,100,1,true,true,100,'bonus bMaxHPrate,5; bonus2 bAddClass,Class_All,5; bonus bAspdRate,5; bonus2 bVariableCastrate,"SR_GATEOFHELL",-3*(BaseLevel/20); bonus2 bVariableCastrate,"SR_RIDEINLIGHTNING",-5*(BaseLevel/15); bonus2 bSkillCooldown,"SR_ASSIMILATEPOWER",-3000; bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28506,'Storm_Stone','Storm Stone','Armor',30000,500,1,true,true,90,'bonus bMaxSPrate,5; bonus bAspdRate,5; bonus2 bAddClass,Class_All,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28507,'Magician_Gloves','Magician\'s Gloves','Armor',20,500,1,true,true,80,'bonus bVariableCastrate,-10; bonus2 bMagicAtkEle,Ele_Earth,5; bonus2 bMagicAtkEle,Ele_Water,5; bonus2 bMagicAtkEle,Ele_Wind,5; bonus2 bMagicAtkEle,Ele_Fire,5; bonus2 bMagicAtkEle,Ele_Ghost,5; bonus2 bIgnoreMdefRaceRate,RC_All,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_right_accessory`,`equip_level_min`,`script`) VALUES (28508,'Illusion_Skull_Ring','Illusion Skull Ring','Armor',100,1,true,100,'bonus3 bAddEff,Eff_Curse,5000,ATF_SELF|ATF_TARGET|ATF_SHORT|ATF_WEAPON;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28509,'Illusion_Ring','Illusion Ring','Armor',200,1,true,false,false,true,true,100,'bonus bStr,3; if (readparam(bStr) >= 100) { bonus bBaseAtk,30; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_right_accessory`,`equip_level_min`,`script`) VALUES (28510,'A_Vampire\'s_Servant','A Vampire\'s Servant','Armor',100,1,1,true,100,'bonus2 bSPDrainRate,1000,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28513,'JRO_Celine_Brooch','Celine\'s Brooch','Armor',20,500,1,true,true,100,'bonus bMaxHP,500; bonus bMaxSP,250; bonus bMatkRate,5; bonus bAspd,1; bonus bVariableCastrate,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28520,'Egir_Ring','Egir Ring','Armor',20,500,1,true,true,100,'bonus bMdef,5; bonus bAllStats,1; bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus2 bSubEle,Ele_Water,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28521,'Giant\'s_Protection','Giant\'s Protection','Armor',20,500,1,true,true,1,'bonus2 bAddClass,Class_All,5; if (readparam(bStr)>=120) { bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bBaseAtk,50; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28531,'Blacksmith\'s_Gloves','Blacksmith\'s Gloves','Armor',20,500,1,true,true,80,'bonus bDelayrate,-10; bonus2 bAddClass,Class_Boss,5; bonus2 bIgnoreDefRaceRate,RC_All,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28533,'Chemical_Glove','Chemical Glove','Armor',20,100,1,true,true,20,'.@s = getskilllv("GN_REMODELING_CART"); bonus bHit,20; bonus bAspdRate,5+.@s; bonus bBaseAtk,15*.@s; bonus bMaxHPrate,2*.@s; bonus2 bSkillUseSP,"GN_CART_TORNADO",.@s; bonus2 bAddItemHealRate,501,100; bonus2 bAddItemHealRate,502,100; bonus2 bAddItemHealRate,503,100; bonus2 bAddItemHealRate,504,100; bonus2 bSkillAtk,"MC_CARTREVOLUTION",Baselevel; bonus2 bSkillAtk,"GN_CARTCANNON",2*(Baselevel/20); bonus2 bSkillAtk,"GN_CART_TORNADO",2*(Baselevel/30);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28551,'Imperial_Glove','Imperial Glove','Armor',20,400,1,true,true,100,'bonus2 bAddClass,Class_All,5; bonus bVariableCastrate,-10; bonus bNoCastCancel;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28564,'Valkyrie_Drop','Valkyrie Drop','Armor',20,30,1,true,true,100,'.@r = getskilllv("PR_IMPOSITIO"); bonus bSPrecovRate,50; bonus bVariableCastrate,-10; bonus bDelayrate,-5; bonus2 bVariableCastrate,"AB_ORATIO",-50; bonus2 bFixedCastrate,"AB_ORATIO",-100; bonus2 bMagicAddSize,Size_All,3*.@r; bonus2 bSkillAtk,"PR_MAGNUS",3*(Baselevel/2); if (.@r == 5) skill "ALL_ODINS_POWER",2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28565,'Perverse_Demon_Mask','Perverse Demon Mask','Armor',20,60,1,true,80,'.@s = readparam(bStr); .@a = readparam(bAgi); .@d = readparam(bDex); .@v = readparam(bvit); .@l = readparam(bLuk); .@i = readparam(bInt); bonus bStr,3*(.@i/18); bonus bAgi,3*(.@l/18); bonus bVit,3*(.@d/18); bonus bInt,3*(.@s/18); bonus bDex,3*(.@v/18); bonus bLuk,3*(.@a/18); bonus bMaxHPrate,(.@d/18); bonus bFlee2,(.@a/18); bonus bMaxHPrate,(.@d/18); bonus bVariableCastrate,-(.@v/18); bonus bDelayrate,-(.@i/18); bonus2 bIgnoreDefClassRate,Class_All,15*(.@l/18); bonus2 bIgnoreMdefClassRate,Class_All,15*(.@s/18);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28566,'Beginner\'s_Ring','Beginner\'s Ring','Armor',20,true,100,'bonus bAspdRate,10; bonus bVariableCastrate,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28573,'Emerald_Ring','Emerald Ring','Armor',20,300,1,true,true,100,'.@a = getskilllv("AC_DOUBLE")/2; bonus bAgi,5+(.@a); bonus bVit,5+(.@a); bonus bDex,5+(.@a); bonus bBaseAtk,(20*.@a); bonus2 bSkillAtk,"AC_DOUBLE",Baselevel; bonus2 bSkillAtk,"AC_SHOWER",Baselevel; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",2*(Baselevel/10); bonus2 bSkillUseSP,"WM_RANDOMIZESPELL",18;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28575,'Verus_Core','Verus Core','Armor',10,500,1,true,true,80,'bonus bAspdRate,10; bonus2 bAddEle,Ele_All,5; bonus bPerfectHitAddRate,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28594,'Temporal_Ring','Temporal Ring','Armor',20,500,1,true,true,100,'bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bBaseAtk,50; bonus bMatk,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28598,'Powered_Chip','Powered Chip','Armor',20,100,1,true,true,100,'bonus bStr,5; bonus bVit,5; bonus bDex,5; bonus2 bAddClass,Class_All,5; if (getskilllv("NC_ARMSCANNON") >= 3) bonus bDelayrate,-30; if (getskilllv("NC_NEUTRALBARRIER") >= 3) { bonus2 bVariableCastrate,"NC_ARMSCANNON",-50; bonus2 bVariableCastrate,"NC_FLAMELAUNCHER",-50; bonus2 bVariableCastrate,"NC_COLDSLOWER",-50; } if (getskilllv("NC_PILEBUNKER") >= 3) { bonus bStr,5; bonus bVit,5; bonus bDex,5; bonus bBaseAtk,100; } if (getskilllv("NC_RESEARCHFE") >= 5) bonus bNoMadoFuel;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28600,'Ru_Blue_Book','Blue Book','Weapon','Book',10,500,160,1,1,true,true,true,true,true,3,100,true,'bonus bAgi,5; bonus bDex,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_archer`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28601,'Ru_Gold_Book','Ru Gold Book','Weapon','Book',500,160,1,2,true,true,3,120,true,'bonus bVit,8; bonus bInt,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28602,'Demon_Hunting_Bible','Demon Hunting Bible','Weapon','Book',500,30,170,1,2,true,true,true,true,true,3,110,true,'bonus bInt,2; bonus bDex,2; .@b = readparam(bInt); bonus2 bSkillAtk,"PR_MAGNUS",30+min(.@b,120); bonus bHealPower,10; bonus bAddItemHealRate,10; .@r = (getrefine()*1000); autobonus2 "{ bonus bIgnoreMdefRace,RC_All; }",50,1000+.@r,BF_WEAPON,"{ specialeffect2 EF_FLOWERCAST;}"; bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Holy;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28604,'Crimson_Bible','Crimson Bible','Weapon','Book',20,450,45,1,2,true,true,true,true,3,70,true,'.@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bMatk,(.@r<=15?(pow(.@r,2)/2):225);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28605,'Book_of_Vicious_Mind','Book of Vicious Mind','Weapon','Book',20,950,95,1,1,true,true,true,4,160,true,'bonus bAtk,pow(min(getrefine(),15),2); bonus bMatk,pow(min(getrefine(),15),2); bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28606,'Unity_Bible','Unity Bible','Weapon','Book',20,220,42,1,1,true,true,true,true,3,1,true,100,true,true,true,true,true,true,'bonus bBaseAtk,pow(getrefine(),2)*125/100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28608,'Elemental_Origin','Elemental Origin','Weapon','Book',20,800,120,150,1,2,true,true,true,true,true,3,100,true,'.@r = getrefine(); bonus bInt,4; .@bonus = 10; if (.@r>=7) { .@bonus += 10; } if (.@r>=9) { .@bonus += 10; } bonus2 bSkillAtk,"MG_FIREBOLT",.@bonus; bonus2 bSkillAtk,"MG_COLDBOLT",.@bonus; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",.@bonus;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28612,'Illusion_Apocalypse','Illusion Apocalypse','Weapon','Book',800,170,1,2,true,true,true,true,4,100,true,'.@val = 10 + 10*(min(getrefine(),10)/3); bonus2 bAddEle,Ele_Water,.@val; bonus2 bAddEle,Ele_Earth,.@val; bonus2 bAddEle,Ele_Fire,.@val; bonus2 bAddEle,Ele_Wind,.@val; bonus2 bSubDefEle,Ele_Holy,-30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`job_sage`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28618,'Book_of_the_Sun_God','Book of the Sun God','Weapon','Book',10,500,180,170,1,4,true,true,true,3,100,true,'.@r = getrefine(); bonus bMaxHP,200*.@r; bonus bMaxSP,50*.@r; bonus bAspdRate,.@r; if (.@r>=10) bonus3 bAutoSpell,"WZ_METEOR",5,200; else if (.@r>=8) bonus3 bAutoSpell,"WZ_METEOR",4,150; else bonus3 bAutoSpell,"WZ_METEOR",3,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28619,'Prisoner_Diary','Prisoner\'s Diary','Weapon','Book',20,800,210,1,2,true,true,true,true,3,175,true,'.@r = getrefine(); bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bBaseAtk,20*(.@r/2); if (.@r>=9) .@val = 25; else if (.@r>=7) .@val = 10; if (.@r>=11) { bonus2 bAddEle,Ele_Dark,15; bonus2 bMagicAddEle,Ele_Dark,15; bonus2 bAddEle,Ele_Undead,15; bonus2 bMagicAddEle,Ele_Undead,15; } bonus2 bAddRace,RC_Demon,.@val; bonus2 bAddRace,RC_Undead,.@val; bonus2 bMagicAddRace,RC_Demon,.@val; bonus2 bMagicAddRace,RC_Undead,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28626,'Illusion_Tablet','Illusion Tablet','Weapon','Book',800,170,1,2,true,true,true,true,4,100,true,'.@val = 10 + 10*(min(getrefine(),10)/3); bonus2 bAddEle,Ele_Dark,.@val; bonus2 bAddEle,Ele_Undead,.@val; bonus2 bAddEle,Ele_Poison,.@val; bonus2 bAddEle,Ele_Ghost,.@val; bonus2 bSubDefEle,Ele_Dark,-30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28629,'Circuit_Board-OS','Circuit Board-OS','Weapon','Book',20,1200,180,1,2,true,true,true,true,4,130,true,'.@r = getrefine(); bonus2 bAddClass,Class_All,3; if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus2 bAddSize,Size_Small,20; bonus2 bAddSize,Size_Medium,20; if (.@r >= 11) { bonus bCritAtkRate,20; } } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28633,'Boltijin','Boltijin','Weapon','Book',20,800,120,175,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bMatk,4*.@r; if (.@r>=9) .@val = 30; if (.@r>=11) { bonus2 bSkillAtk,"WZ_EARTHSPIKE",50; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",50; } bonus2 bSkillAtk,"MG_FIREBOLT",20+.@val; bonus2 bSkillAtk,"MG_COLDBOLT",20+.@val; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",20+.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28700,'Ru_Gold_Dagger','Ru Gold Dagger','Weapon','Dagger',1000,160,1,2,true,true,true,true,true,3,120,true,'bonus bStr,8; bonus bInt,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28701,'Ru_Gold_Knife','Ru Gold Knife','Weapon','Dagger',500,160,1,2,true,true,true,true,true,3,120,true,'bonus bVit,8; bonus bInt,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (28702,'Ru_Gold_Ashura','Ru Gold Ashura','Weapon','Dagger',1000,150,150,1,2,true,true,3,120,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (28703,'Infinity_Dagger','Infinity Dagger','Weapon','Dagger',10,500,125,100,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,100,true,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28705,'Crimson_Dagger','Crimson Dagger','Weapon','Dagger',20,550,55,1,2,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,70,true,'.@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bMatk,(.@r<=15?(pow(.@r,2)/2):225);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28706,'Dagger_of_Vicious_Mind','Dagger of Vicious Mind','Weapon','Dagger',20,1050,105,50,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,160,true,'bonus bAtk,pow(min(getrefine(),15),2); bonus bMatk,pow(min(getrefine(),15),2)/2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28717,'Valkyrie_Knife','Valkyrie Knife','Weapon','Dagger',50,100,50,50,1,4,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,70,true,'.@r = getrefine(); .@b = readparam(bDex)/10; if (BaseClass==Job_Novice) { bonus bMaxHP,300+(200*.@r); bonus bMaxSP,300+(20*.@r); bonus bBaseAtk,100; bonus bMatk,150+(15*.@r); bonus bUseSPrate,-5; bonus bUnbreakableWeapon; bonus bInt,2*.@r; bonus bDex,(2*.@r)-(.@r*.@b); bonus bCritical,7*.@r; bonus bAspdRate,10*.@r; bonus bCritAtkRate,1*.@r; } if (BaseClass==Job_Thief) { bonus bMaxSP,100; bonus bMatk,150; bonus bCritAtkRate,.@r; } if (BaseClass==Job_Mage) { bonus bMaxHP,200*.@r; bonus bMaxSP,20*.@r; } if (BaseJob==Job_Hunter) { bonus bMaxHP,200; bonus bUseSPrate,-5; bonus bInt,2*.@r; bonus bDex,2*.@r; } if (BaseJob==Job_Bard||BaseJob==Job_Dancer) { bonus bBaseAtk,100; bonus bAspdRate,10*.@r; bonus bUnbreakableWeapon; bonus bDex,-1*(.@r*.@b); } if (.@r>=7) { if (BaseClass==Job_Novice||BaseJob==Job_Mage) { bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_kagerouoboro`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28721,'Monokage','Monokage','Weapon','Dagger',10,800,100,1,2,true,true,3,100,true,'.@r = getrefine(); bonus2 bSkillAtk,"KO_BAKURETSU",getskilllv("NJ_TOBIDOUGU"); if (.@r>=9) { bonus bLongAtkRate,5; } else if (.@r>=7) { bonus bLongAtkRate,2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28725,'Illusion_Moonlight_Dagger','Illusion Moonlight Dagger','Weapon','Dagger',20,700,150,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,99,true,'bonus bMaxSPrate,10; .@val = 3; if (getrefine() >= 10) { .@val += 4; } bonus bSPDrainValue,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (28745,'Illusion_Counter_Dagger','Illusion Counter Dagger','Weapon','Dagger',900,170,1,2,true,true,true,true,true,4,120,'.@r = getrefine(); bonus bCritical,90; bonus bCritAtkRate,(3*(.@r/2)); if (.@r >= 7) { bonus2 bAddClass,Class_All,5; if (.@r >= 9) { bonus2 bAddSize,Size_All,20; if (.@r >= 11) { bonus2 bAddEle,Ele_All,20; } } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_kagerouoboro`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28755,'Kuroiro-OS','Kuroiro-OS','Weapon','Dagger',20,900,150,150,1,2,true,true,true,4,130,true,'.@r = getrefine(); .@dmg = 5; if (.@r >= 7) { .@dmg += 10; if (.@r >= 9) { bonus2 bSkillAtk,"KO_HAPPOKUNAI",20; if (.@r >= 11) { bonus2 bAddRace,RC_Demon,10; bonus2 bMagicAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; bonus2 bMagicAddRace,RC_Undead,10; } } } bonus2 bAddEle,Ele_Undead,.@dmg; bonus2 bMagicAddEle,Ele_Undead,.@dmg; bonus2 bAddEle,Ele_Dark,.@dmg; bonus2 bMagicAddEle,Ele_Dark,.@dmg;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28762,'Illusion_Bazerald','Illusion Bazerald','Weapon','Dagger',20,500,120,170,1,2,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,120,true,'bonus bAtkEle,Ele_Fire; bonus bInt,5; .@r = getrefine(); bonus bMatkRate,(.@r/2); if (.@r >= 7) { bonus2 bMagicAtkEle,Ele_Fire,10; if (.@r >= 9) { bonus2 bSkillAtk,"MG_FIREBOLT",40; bonus2 bSkillAtk,"MG_FIREBALL",40; if (.@r >= 11) { bonus2 bSkillAtk,"WZ_METEOR",30; bonus2 bSkillAtk,"WL_CRIMSONROCK",30; } } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_kagerouoboro`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (28763,'Surudoi_Kaze','Surudoi Kaze','Weapon','Dagger',20,1000,150,1,2,true,true,true,4,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_kagerouoboro`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (28764,'Kiri_no_Tsuyu','Kiri no Tsuyu','Weapon','Dagger',20,1000,150,1,2,true,true,true,4,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (28765,'Judgement_Slasher','Judgement Slasher','Weapon','Dagger',20,1100,195,1,2,true,true,true,true,true,4,170,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (28766,'Repent_Slasher','Repent Slasher','Weapon','Dagger',20,700,100,1,3,true,true,true,true,true,4,170,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28767,'Jack_The_Knife','Jack The Knife','Weapon','Dagger',20,900,195,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bBaseAtk,4*.@r; bonus2 bSkillAtk,"RG_BACKSTAP",40; if (.@r>=9) bonus2 bSkillAtk,"SC_FATALMENACE",30; if (.@r>=11) bonus2 bSkillUseSPrate,"SC_FATALMENACE",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28768,'Platinum_Dagger','Platinum Dagger','Weapon','Dagger',20,1500,150,170,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bMatk,4*.@r; bonus bMatkRate,5; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Fire,15; bonus2 bMagicAtkEle,Ele_Wind,15; bonus2 bMagicAtkEle,Ele_Water,15; bonus2 bMagicAtkEle,Ele_Earth,15; } if (.@r>=11) autobonus "{ bonus bMatk,100; bonus2 bMagicAddSize,Size_All,30; }",50,10000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; /* Unknow Rates and Specialeffect */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (28900,'Guardsmen\'s_Shield','Guardsmen\'s Shield','Armor',20,3000,30,1,true,100,true,1,'.@r = getrefine(); skill "LG_SHIELDSPELL",1; bonus3 bAutoSpellWhenHit,"HP_ASSUMPTIO",3,(10+(.@r*10)); bonus bDef,(.@r*10); bonus bMdef,.@r;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (28901,'Cursed_Mad_Bunny','Cursed Mad Bunny','Armor',20,100,true,1,true,1,'bonus bAspd,3; bonus2 bAddRace,RC_All,5; bonus2 bMagicAddRace,RC_All,5; bonus bShortWeaponDamageReturn,10; autobonus2 "{ bonus bMagicDamageReturn,60; }",10,2000,BF_MAGIC,"{ specialeffect2 EF_WIND; }"; .@r = getrefine(); if(.@r>=7) { bonus bBaseAtk,5; bonus bMatk,5; } if(.@r>=9) { bonus bBaseAtk,15; bonus bMatk,15; } if(.@r>=12) { bonus bCritical,10; bonus bNoCastCancel; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (28902,'Mad_Bunny_','Mad Bunny','Armor',20,100,1,true,1,true,1,'bonus2 bAddRace,RC_All,5; bonus2 bMagicAddRace,RC_All,5; bonus bShortWeaponDamageReturn,10; autobonus2 "{ bonus bMagicDamageReturn,60; }",10,2000,BF_MAGIC,"{ specialeffect2 EF_WIND; }"; .@r = getrefine(); if(.@r>=7) { bonus bBaseAtk,5; bonus bMatk,5; } if(.@r>=9) { bonus bBaseAtk,15; bonus bMatk,15; } if(.@r>=12) { bonus bCritical,10; bonus bNoCastCancel; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (28903,'Scutum','Scutum','Armor',500,1,1,true,1,true,1,'.@r = getrefine(); bonus bFlee,5+(.@r*3); bonus bFlee2,1+(.@r*2); if (.@r > 10) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28904,'Unity_Guard','Unity Guard','Armor',20,300,60,1,true,100,true,1,100,true,true,true,true,true,true,'if(BaseLevel<100) { bonus bDef,12*getrefine(); }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28905,'Unity_Buckler','Unity Buckler','Armor',20,300,60,1,true,100,true,1,100,true,true,true,true,true,true,'if(BaseLevel<100) { bonus bMaxSPrate,2*getrefine(); }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (28906,'Shield_Of_Flame','Shield Of Flame','Armor',500,80,1,true,90,true,1,'bonus2 bSubEle,Ele_Fire,25; .@r = getrefine(); if(.@r > 4) { bonus bAspd,1+((.@r > 6) ? 1 : 0); }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (28907,'Shield_Of_Gust','Shield Of Gust','Armor',500,80,1,true,90,true,1,'bonus2 bSubEle,Ele_Wind,25; .@r = getrefine(); if(.@r > 4) { bonus bAspd,1+((.@r > 6) ? 1 : 0); }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (28908,'Shield_Of_Water','Shield Of Water','Armor',500,80,1,true,90,true,1,'bonus2 bSubEle,Ele_Water,25; .@r = getrefine(); if(.@r > 4) { bonus bAspd,1+((.@r > 6) ? 1 : 0); }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (28909,'Shield_Of_Earth','Shield Of Earth','Armor',500,80,1,true,90,true,1,'bonus2 bSubEle,Ele_Earth,25; .@r = getrefine(); if(.@r > 4) { bonus bAspd,1+((.@r > 6) ? 1 : 0); }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (28910,'Rectangular_Large_Sleeve','Rectangular Large Sleeve','Armor',20,800,80,1,true,100,true,1,'bonus bLongAtkDef,5; .@r = getrefine(); if(.@r>=5) { bonus bLongAtkDef,5; } if(.@r>=7) { bonus bLongAtkDef,10; } if(.@r>=9) { bonus bLongAtkDef,15; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (28913,'Ultra_Light_MShield','Ultralight Magic Shield','Armor',100,50,1,true,100,true,1,'.@r = getrefine(); .@val = 5; bonus2 bIgnoreDefClassRate,Class_Normal,10; if (.@r >= 9) { .@val += 5; } else if (.@r >= 7) { .@val += 2; } bonus bAspdRate,.@val; bonus2 bSubEle,Ele_Neutral,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (28915,'Bunker_Shield','Bunker Shield','Armor',20,3500,90,1,true,50,true,1,'.@r = getrefine(); if(.@r >= 5) { .@dmg = .@r - 4; } bonus2 bAddClass,Class_All,(4+.@dmg); bonus bAspdRate,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (28916,'Gaia_Shield','Gaia Shield','Armor',20,2000,150,1,true,90,true,1,'bonus bMdef,10; bonus2 bSubEle,Ele_Earth,10; bonus2 bAddEle,Ele_Earth,5; bonus2 bMagicAddEle,Ele_Earth,5; .@r = getrefine(); if(.@r>=6) { bonus2 bSubEle,Ele_Earth,15; bonus2 bAddEle,Ele_Earth,10; bonus2 bMagicAddEle,Ele_Earth,10; } if(.@r>=8) { if(readparam(bStr)>=90) { bonus bBaseAtk,50; } if(readparam(bAgi)>=90) { bonus bAspdRate,5; } if(readparam(bVit)>=90) { bonus bHealPower2,10; bonus bAddItemHealRate,10; } if(readparam(bInt)>=90) { bonus bMatk,30; } if(readparam(bDex)>=90) { bonus bVariableCastrate,-5; } if(readparam(bLuk)>=90) { bonus bCritAtkRate,5; } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (28918,'Shield_of_Chaos','Shield of Chaos','Armor',20,500,80,1,true,90,true,1,'.@r = getrefine(); bonus bMdef,5; bonus2 bSubEle,Ele_Dark,25; if (.@r>=5) bonus bAspd,1; if (.@r>=7) bonus bAspd,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (28920,'Diamond_Shield','Diamond Shield','Armor',20,1000,50,true,100,true,1,'.@r = getrefine(); if(BaseLevel>=150) { bonus bDef,100+(20*(.@r/3)); }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (28921,'Anemos_Shield','Anemos Shield','Armor',20,3500,150,1,true,90,true,1,'bonus bMdef,15; bonus2 bAddEle,Ele_Wind,5; bonus2 bMagicAddEle,Ele_wind,5; bonus2 bSubEle,Ele_Wind,10; bonus bUnbreakableShield; .@r = getrefine(); if (.@r>=6) { bonus2 bAddEle,Ele_Wind,10; bonus2 bMagicAddEle,Ele_wind,10; bonus2 bSubEle,Ele_Wind,15; } if (.@r>=8) { if (readparam(bStr)>=90) bonus bBaseAtk,50; if (readparam(bAgi)>=90) bonus bAspdRate,5; if (readparam(bVit)>=90) bonus bAddItemHealRate,10; if (readparam(bInt)>=90) bonus bMatk,30; if (readparam(bDex)>=90) bonus bVariableCastrate,-5; if (readparam(bLuk)>=90) bonus bCritAtkRate,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_crusader`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (28922,'Illusion_Sacred_Mission','Illusion Sacred Mission','Armor',1600,190,1,true,true,true,true,true,120,true,4,'bonus bVit,3; bonus bInt,2; bonus bMdef,3; bonus bUnbreakableShield; bonus2 bSkillAtk,"LG_EARTHDRIVE",(7*getrefine());'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (28929,'Happy_Shield','Happy Shield','Armor',10,3500,150,1,true,90,true,1,'bonus bMdef,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (28941,'Excelion_Shield','Excelion Shield','Armor',20,1200,95,1,true,100,true,1,'.@r = getrefine(); bonus bMdef,5; bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bBaseAtk,30*(.@r/3); bonus bMatk,30*(.@r/3); if (readparam(Baselevel)>=130) { bonus bMaxHPrate,5; bonus bMaxSPrate,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (28951,'Nero_Shield','Nero Shield','Armor',20,500,80,1,true,90,true,1,'.@r = getrefine(); bonus bUnbreakableShield; bonus bMdef,5; bonus2 bSubEle,Ele_Water,10; bonus2 bAddEle,Ele_Water,5; bonus2 bMagicAddEle,Ele_Water,5; if (.@r>=6) { bonus2 bSubEle,Ele_Water,15; bonus2 bAddEle,Ele_Water,10; bonus2 bMagicAddEle,Ele_Water,10; } if (.@r>=8) { if (readparam(bStr)>=90) bonus bBaseAtk,50; if (readparam(bAgi)>=90) bonus bAspdRate,5; if (readparam(bInt)>=90) bonus bMatk,30; if (readparam(bVit)>=90) bonus bAddItemHealRate,10; if (readparam(bDex)>=90) bonus bVariableCastrate,-5; if (readparam(bLuk)>=90) bonus bCritAtkRate,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (28955,'Fotia_Shield','Fotia Shield','Armor',20,1000,120,1,true,90,true,1,'.@r = getrefine(); bonus bUnbreakableShield; bonus bMdef,5; bonus2 bSubEle,Ele_Fire,10; bonus2 bAddEle,Ele_Fire,5; bonus2 bMagicAddEle,Ele_Fire,5; if (.@r>=6) { bonus2 bSubEle,Ele_Fire,15; bonus2 bAddEle,Ele_Fire,10; bonus2 bMagicAddEle,Ele_Fire,10; } if (.@r>=8) { if (readparam(bStr)>=90) bonus bBaseAtk,50; if (readparam(bAgi)>=90) bonus bAspdRate,5; if (readparam(bInt)>=90) bonus bMatk,30; if (readparam(bVit)>=90) bonus bAddItemHealRate,10; if (readparam(bDex)>=90) bonus bVariableCastrate,-5; if (readparam(bLuk)>=90) bonus bCritAtkRate,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31027,'C_Pretty_Bear','Costume Pretty Bear','Armor',true,1,1480); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31028,'C_Black_Cat_Hood','Costume Black Cat Hood','Armor',true,1,1481); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31029,'C_Pig_Nose','Costume Pig Nose','Armor',true,1,1482); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31030,'C_Tiger_Face','Costume Tiger Face','Armor',true,true,true,1,483); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31031,'C_Tare_Pope_Casual','Costume Drooping Pope Casual','Armor',true,1,1483); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31032,'C_Tare_Luwmin','Costume: Sailing Lumin','Armor',true,1,1484); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31033,'C_BelieversCap','Costume Believer\'s Mask','Armor',true,true,true,1,1485); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31034,'C_Pirates_Hood','Costume Pirates Hood','Armor',true,1,592); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31035,'C_Bankruptcy_Of_Heart','Costume Bankruptcy of Heart','Armor',true,1,107); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31036,'C_Satto_Hat','Costume Used Hat','Armor',true,1,227); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31037,'C_Beret','Costume Beret','Armor',true,1,226); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31038,'C_Cheks_Bandana','Costume Cheks Bandana','Armor',true,1,1174); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31039,'C_Crown_of_Old_King_Red','Costume Crown of Old King Red','Armor',true,1,1491); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`script`,`unequip_script`) VALUES (31040,'C_Magical_Feather','Costume Magical Feather','Armor',true,1,1279,'hateffect(HAT_EF_MAGICAL_FEATHER,true);','hateffect(HAT_EF_MAGICAL_FEATHER,false);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31041,'C_Cat_Lace_Hairband','Costume Cat Lace Hairband','Armor',true,1,816); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31042,'C_Survival_Circlet','Costume Survival Circlet','Armor',true,1,1220); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31043,'C_Ribbon_White','Costume Ribbon White','Armor',true,1,248); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31044,'C_Drooping_Kitty_Pink','Costume Drooping Kitty Pink','Armor',true,1,276); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31045,'C_Blue_Rear_Ribbon','Costume Blue Rear Ribbon','Armor',true,1,1492); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31046,'C_White_Rose_Princess','Costume White Rose Princess','Armor',true,1,1493); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31047,'C_First_Love_Cheek','Costume First Love Cheek','Armor',true,1,1494); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31048,'C_White_Lily_Black_Ribbon','Costume White Lily Black Ribbon','Armor',true,1,1495); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31049,'C_Marin_Hat','Costume Marin Hat','Armor',true,1,948); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31050,'C_Golden_Poring_Hat','Costume Golden Poring Hat','Armor',true,1,1236); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31051,'C_Poring_Sun_Visor','Costume Poring Sun Visor','Armor',true,1,1496); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31052,'C_Alchemist_Mask','Costume Alchemist Mask','Armor',true,true,true,1,1497); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31053,'C_Drooping_Eddga','Costume Drooping Eddga','Armor',true,1,495); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31054,'C_Sting_Hat','Costume Sting Hat','Armor',true,1,504); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31055,'C_Poring_Soap_Pipe','Costume Poring Soap Pipe','Armor',true,1,1499); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`script`,`unequip_script`) VALUES (31056,'C_Furious_Wave','Costume Furious Wave','Armor',true,1,'hateffect(HAT_EF_DOUBLEGUMGANG,true); /* Need to confirm this */','hateffect(HAT_EF_DOUBLEGUMGANG,false);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31057,'C_Eremes_Scarf_Black','Costume: Eremes\' Scarf (Black)','Armor',true,1,1501); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31058,'C_Gelato_Hat','Costume Gelato Hat','Armor',true,1,777); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31059,'C_Sailor_Hat','Costume Sailor Hat','Armor',true,1,798); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31060,'C_Starfish_Headband','Costume Starfish Headband','Armor',true,1,793); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31061,'C_Nipper_Hairpin','Costume Nipper Hairpin','Armor',true,1,470); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31062,'C_Eleanor_Wig','Costume Eleanor Wig','Armor',true,1,1502); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31063,'C_Hair_Bun_BU','Costume Hair in a Bun(Blue)','Armor',true,1,1503); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31064,'C_Hair_Bun_RD','Costume Hair in a Bun(Red)','Armor',true,1,1504); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31065,'C_Hair_Bun_YL','Costume Hair in a Bun(Yellow)','Armor',true,1,1505); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31066,'C_Hair_Bun_GN','Costume Hair in a Bun(Green)','Armor',true,1,1506); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31067,'C_Hair_Bun_BL','Costume Hair in a Bun(Black)','Armor',true,1,1507); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31068,'C_Hair_Bun_WH','Costume Hair in a Bun(White)','Armor',true,1,1508); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31069,'C_Hair_Bun_OM','Costume Hair in a Bun(Brown)','Armor',true,1,1509); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31070,'C_Hair_Bun_PP','Costume Hair in a Bun(Purple)','Armor',true,1,1510); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31071,'C_Roll_Twin_BU','Costume Roll Twin(Blue)','Armor',true,1,1511); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31072,'C_Roll_Twin_RD','Costume Roll Twin(Red)','Armor',true,1,1512); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31073,'C_Roll_Twin_YL','Costume Roll Twin(Yellow)','Armor',true,1,1513); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31074,'C_Roll_Twin_GN','Costume Roll Twin(Green)','Armor',true,1,1514); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31075,'C_Roll_Twin_BL','Costume Roll Twin(Black)','Armor',true,1,1515); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31076,'C_Roll_Twin_WH','Costume Roll Twin(White)','Armor',true,1,1516); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31077,'C_Roll_Twin_OM','Costume Roll Twin(Brown)','Armor',true,1,1517); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31078,'C_Roll_Twin_PP','Costume Roll Twin(Purple)','Armor',true,1,1518); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31079,'C_Long_Pony_BU','Costume Long Pony(Blue)','Armor',true,1,1519); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31080,'C_Long_Pony_RD','Costume Long Pony(Red)','Armor',true,1,1520); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31081,'C_Long_Pony_YL','Costume Long Pony(Yellow)','Armor',true,1,1521); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31082,'C_Long_Pony_GN','Costume Long Pony(Green)','Armor',true,1,1522); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31083,'C_Long_Pony_BL','Costume Long Pony(Black)','Armor',true,1,1523); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31084,'C_Long_Pony_WH','Costume Long Pony(White)','Armor',true,1,1524); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31085,'C_Long_Pony_OM','Costume Long Pony(Brown)','Armor',true,1,1525); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31086,'C_Long_Pony_PP','Costume Long Pony(Purple)','Armor',true,1,1526); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31087,'C_Dwarf_Beard','Costume Dwarf Beard','Armor',true,1,1349); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31088,'C_Mad_Hatter','Costume Mad Hatter','Armor',true,true,1,1421); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`,`script`,`unequip_script`) VALUES (31089,'C_Exploding_Crimson_Flame','Costume Exploding Crimson Flame','Armor',true,1,1500,'hateffect(HAT_EF_BAKURETSU_HADOU,true); /* Need to confirm this */','hateffect(HAT_EF_BAKURETSU_HADOU,false);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31090,'C_Angelring_Hat','Costume Angelring Hat','Armor',true,1,348); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`script`,`unequip_script`) VALUES (31091,'C_Show_Me_The_Zeny','Costume Show Me The Zeny','Armor',true,1,1528,'hateffect(HAT_EF_GOLD_SHOWER,true);','hateffect(HAT_EF_GOLD_SHOWER,false);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31092,'C_Rabbit_Ribbon_Hat','Costume Bunny Ribbon Hat','Armor',true,1,845); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31093,'C_Under_Lamp','Costume Under Lamp','Armor',true,1,1531); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31094,'C_Dice_Hat','Costume Dice Hairband','Armor',true,1,494); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31095,'C_JP_EV01','Costume Mythical Baphomet Horns','Armor',true,1,1532); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31096,'C_JP_EV02','Costume Dog Ears of Bau Alma','Armor',true,1,1533); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31097,'C_JP_EV03','Costume Bunny Ears of Minnie Doe Alma','Armor',true,1,1534); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31098,'C_JP_EV04','Costume Fox Ears of Tamamo Loa','Armor',true,1,1535); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31099,'C_JP_EV05','Costume Headdress of Ontama Aria','Armor',true,1,1536); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31100,'C_JP_EV06','Costume Hat of Dumpty Alma','Armor',true,1,1537); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31101,'C_JP_EV07','Costume Taini Hat Blue','Armor',true,1,1538); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31102,'C_JP_EV08','Costume Taini Hat Orange','Armor',true,1,1539); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31103,'C_JP_EV09','Costume Taini Hat Green','Armor',true,1,1540); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31104,'C_Taini_Hat','Costume Taini Hat','Armor',true,1,722); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (31105,'C_RO_Celebration_Hat','Costume RO Celebration Hat','Armor',true,1,1541,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31106,'C_Eyepatch_of_Peace','Costume Eyepatch of Peace','Armor',true,1,697); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31107,'C_Eyepatch_of_Prosperity','Costume Eyepatch of Prosperity','Armor',true,1,698); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31113,'C_Doctor_Headband','Costume Doctor headband','Armor',true,1,60); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31114,'C_Theater_Prop','Costume Theater Prop','Armor',true,1,80); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31117,'C_Hoplite_Helmet','Costume Hoplite Helmet','Armor',true,true,true,1,660); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31118,'C_Assassin_Skull_Mask','Costume Scratch Mask','Armor',true,true,1,984); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31119,'C_Blue_Magicianhat','Costume Magician Hat Blue','Armor',true,1,285); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31120,'C_Vampire_Familiar','Costume Vampire Familiar','Armor',true,1,1548); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31121,'C_Stall_Of_Bat','Costume Stall Of Bat','Armor',true,1,1549); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31122,'C_Bloody_Stop_Bandage','Costume Bloody Stop Bandage','Armor',true,1,1550); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31123,'C_Ghostring_Tall_Hat','Costume Ghostring Tall Hat','Armor',true,1,1551); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31124,'C_Ribbon_Chef_Hat','Costume Ribbon Chief Hat','Armor',true,1,785); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31125,'C_QueenAnzRevenge','Costume Queen Anne\'s Revenge','Armor',true,1,1360); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31126,'C_Nestea_Hat','Costume Nestea Hat','Armor',true,1,756); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31127,'C_Flag_Cap','Costume Flag Cap','Armor',true,1,482); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31128,'C_Bride_Mask','Costume Bride Mask','Armor',true,1,223); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31129,'C_Munchs_Scream','Costume Scratch Mask','Armor',true,true,1,75); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31130,'C_Indian_Hairband','Costume Indian Hairband','Armor',true,1,96); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31131,'C_Monk_Hat','Costume Monk Hat','Armor',true,1,35); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31132,'C_Christmas_Wreath','Costume Christmas Wreath','Armor',true,1,1554); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31133,'C_Gambler_Seal','Costume Gambler Seal','Armor',true,1,1202); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31134,'C_Happy_Parrot_J','Costume Talkactive Parrot','Armor',true,1,1116); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31135,'C_Mini_Crown1','Costume Luxury Mini Crown','Armor',true,1,707); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31136,'C_Clock_Casket','Costume Clock Casket','Armor',true,1,1555); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31137,'C_Blue_Rose_Ornament','Costume Blue Rose Ornament','Armor',true,1,1556); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31138,'C_Piamette_Red_Hood','Costume Piamette\'s Red Hood','Armor',true,1,1557); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31139,'C_White_Rabbit_Ear','Costume White Rabbit Ears','Armor',true,1,1558); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (31140,'C_Cowboy_Hat_','Costume Black Cowboy Hat','Armor',true,1,1569,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (31141,'C_Rose_Corsage_','Costume Cactus Flower Corsage','Armor',true,1,1570,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`,`equip_script`,`unequip_script`) VALUES (31142,'C_Time_Prison','Costume Prison of Time','Armor',true,1,1309,'sc_start SC_TIME_ACCESSORY,INFINITE_TICK,0;','sc_end SC_TIME_ACCESSORY;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31144,'C_Indi_Feather_Band','Costume Indian Feather Headband','Armor',true,1,809); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31145,'C_AliceFriesinger_Hat_69','Costume AliceFriesinger Hat 69','Armor',true,1,1249); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31146,'C_KarduiEar','Costume Kardui Ears','Armor',true,1,1357); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31147,'C_Tare_Domovoi','Costume Drooping Domovoi','Armor',true,1,781); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31148,'C_Tare_W_Doll','Costume Drooping W Doll','Armor',true,1,359); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31149,'C_Nydhog_Wig','Costume Nydhoggur Wig','Armor',true,1,1563); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31150,'C_Shalosh_Head_Dress','Costume Shalosh Headdress','Armor',true,1,1564); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31151,'C_Chasher_Ear','Costume Cheshire\'s Cat Ears','Armor',true,1,1565); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31152,'C_Piamette_BowTie_Red','Costume Piamette\'s Red Bow Tie','Armor',true,1,1566); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31153,'C_Aniv_Star_Hat2','Costume Cactus Flower Corsage','Armor',true,1,1567); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31154,'C_Cap','C Cap','Armor',true,1,14); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31158,'C_Squirrel_Ear_Hat','Costume Squirrel Ear Hat','Armor',true,1,1486); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31160,'C_RuneHelm','Costume Rune Helm','Armor',true,1,1361); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31161,'C_Tiger_Mask','Costume Tiger Mask','Armor',true,true,1,181); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31162,'C_Shaving_Foam','Costume Shaving Foam','Armor',true,1,1129); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31163,'C_Goat_Hat','Costume Sheep Hat','Armor',true,1,205); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31164,'C_Brown_Stall','Costume Brown Stole','Armor',true,1,1572); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31165,'C_Piggyback','Costume Piggyback','Armor',true,1,1574); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31166,'C_Teddy_Bear_Hood','Costume Teddy Bear Hood','Armor',true,1,1571); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31167,'C_Lunatic_Hanging_Ear_BL','Costume Hanging Black Lunatic Ears','Armor',true,1,1575); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31168,'C_Mouton_Life_BL','Costume Blue Mouton Life','Armor',true,1,1573); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31169,'C_Hat_Of_Outlaw','Costume Hilarious Bandit Hat','Armor',true,1,486); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31170,'C_Wind_Wings','Costume Wings of Wind','Armor',true,1,493); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31171,'C_Nekomimi','Costume Nekomimi','Armor',true,1,182); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31172,'C_Roast_Memory','Costume Roast Memory','Armor',true,true,true,1,1576); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31173,'C_Oyster_Parakeet','Costume Oyster Parakeet','Armor',true,1,419); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31174,'C_Suspicious_Bread_Bag','C Suspicious Bread Bag','Armor',true,1,429); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31175,'C_Strawberry_Hat','Costume Strawberry Hat','Armor',true,1,755); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31176,'C_Looking','C Looking','Armor',true,1,1577); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31177,'C_Tail_Hat','C Tail Hat','Armor',true,1,1578); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31178,'C_Flame_Muffler','C Fire Muffler','Armor',true,1,1579); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31179,'C_Wolf_Masquerade','C Wolf Masquerade','Armor',true,1,1580); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31180,'C_Shura_King_Pledge','C King Sura Headband','Armor',true,1,1581); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31181,'C_Necklace_Rosary','Costume Necklace Rosary','Armor',true,1,1471); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31182,'C_Side_Cap','Costume Side Cap','Armor',true,1,529); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31183,'C_Fallen_Angel_Blessing','Costume Blessing of Fallen Angel','Armor',true,1,1250); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31184,'C_Hawkeye','Costume Hawkeye','Armor',true,1,609); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31185,'C_Engineer_Cap','Costume Engineer Cap','Armor',true,1,608); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31186,'C_Black_Cat','Costume Black Cat','Armor',true,1,1582); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31187,'C_War_Princess_Ribbon','Costume War Princess Ribbon','Armor',true,1,1583); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31188,'C_Mono_Gothic_Bonnet','Costume Mono Gothic Bonnet','Armor',true,1,1584); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31189,'C_Cat_Ears_Cape_Red','Costume Red Cat Ears Cape','Armor',true,1,1591); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31190,'C_Angel_Mini_Silk_Hat_B','Costume Black Angel Mini Silk Hat','Armor',true,1,1586); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31191,'C_Whikebain_Ears_Gold','Vibrant Cat Ears','Armor',true,1,1588); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31192,'C_Bluecat_Ear','Blue Cat Ears','Armor',true,1,1589); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31193,'C_Tare_Ahat','Costume Drooping Ahat','Armor',true,1,1590); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31194,'C_Spinning_Propeller','Costume Spinning Propeller','Armor',true,1,270); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31195,'C_Choco_Minihat','Costume Mini Chocolate Hat','Armor',true,1,1592); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31196,'C_JP_EV12','C Drooping Chuni Penguin','Armor',true,1,1596); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31197,'C_Egg_Crispinette','Costume Egg Crispinette','Armor',true,1,1598); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31198,'C_Octopus_Hat','C Octopus Hat','Armor',true,1,538); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31199,'C_Weird_Beard','C Weird Beard','Armor',true,1,21); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31200,'C_Wrapping_Ribbon','C Wrapping Ribbon','Armor',true,1,1599); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31201,'C_Royal_Rabbit_Crown','C Royal Rabbit Crown','Armor',true,1,1600); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31202,'C_Dog_Officer','C Dog Officer','Armor',true,1,1601); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31203,'C_Charcoal_Stove','C Charcoal Stove','Armor',true,1,1602); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31204,'C_Drooping_White_Cat','C Drooping White Cat','Armor',true,1,378); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31205,'C_Large_Orc_Hero_Helm','C Large Orc Hero Helm','Armor',true,true,1,381); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31206,'C_Rune_Hairband','C Rune Hairband','Armor',true,true,1,564); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31207,'C_Dokkebi_Mask','C Dokkebi Mask','Armor',true,true,1,689); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31208,'C_Straight_Long_YL','C Straight_Long Yellow','Armor',true,1,1603); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31209,'C_Straight_Long_WH','C Straight Long White','Armor',true,1,1604); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31210,'C_Side_Pigtail_BU','C Side Pigtail Blue','Armor',true,1,1605); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31211,'C_Side_Pigtail_RD','C Side Pigtail Red','Armor',true,1,1606); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31212,'C_Side_Pigtail_YL','C Side Pigtail Yellow','Armor',true,1,1607); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31213,'C_Side_Pigtail_GN','C Side Pigtail Green','Armor',true,1,1608); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31214,'C_Side_Pigtail_BL','C Side Pigtail Black','Armor',true,1,1609); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31215,'C_Side_Pigtail_WH','C Side Pigtail White','Armor',true,1,1610); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31216,'C_Side_Pigtail_OM','C Side Pigtail Brown','Armor',true,1,1611); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31217,'C_Side_Pigtail_PP','C Side Pigtail Purple','Armor',true,1,1612); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31218,'C_Low_Pony_BU','C Low Pony Blue','Armor',true,1,1613); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31219,'C_Low_Pony_RD','C Low Pony Red','Armor',true,1,1614); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31220,'C_Low_Pony_YL','C Low Pony Yellow','Armor',true,1,1615); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31221,'C_Low_Pony_GN','C Low Pony Green','Armor',true,1,1616); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31222,'C_Low_Pony_BL','C Low Pony Black','Armor',true,1,1617); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31223,'C_Low_Pony_WH','C Low Pony White','Armor',true,1,1618); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31224,'C_Low_Pony_OM','C Low Pony Brown','Armor',true,1,1619); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31225,'C_Low_Pony_PP','C Low Pony Purple','Armor',true,1,1620); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31226,'C_Long_Twin_BU','C Long Twin Blue','Armor',true,1,1621); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31227,'C_Long_Twin_RD','C Long Twin Red','Armor',true,1,1622); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31228,'C_Long_Twin_YL','C Long Twin Yellow','Armor',true,1,1623); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31229,'C_Long_Twin_GN','C Long Twin Yellow','Armor',true,1,1624); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31230,'C_Long_Twin_BL','C Long Twin Yellow','Armor',true,1,1625); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31231,'C_Long_Twin_WH','C Long Twin Yellow','Armor',true,1,1626); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31232,'C_Long_Twin_OM','C Long Twin Yellow','Armor',true,1,1627); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31233,'C_Long_Twin_PP','C Long Twin Yellow','Armor',true,1,1628); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31234,'C_Persica','C Persica','Armor',true,1,659); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31235,'C_Large_Ribbon_Muffler_Mid','C Large Ribbon Muffler Mid','Armor',true,1,1312); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31236,'C_Vicious_Mind_Aura_Mid','C Vicious Mind Aura Mid','Armor',true,1,1267); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31237,'C_Pale_Yellow_Ribbon_Lower','C Pale Yellow Ribbon Lower','Armor',true,1,1474); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31238,'C_True_Love_Upper','C True Love Upper','Armor',true,1,489); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31239,'C_Love_Rabbit_Hood_Upper','C Love Rabbit Hood Upper','Armor',true,1,549); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31240,'C_Whisper_Mask_','C Whisper Mask Upper','Armor',true,1,321); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31241,'C_Burning_Sun_Lower','C Burning Sun Lower','Armor',true,1,654); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31242,'C_Anubis_Helm_','C Anubis Hat Upper','Armor',true,1,485); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31243,'C_Tongue_Mask_Mid','C Tongue Mask Mid','Armor',true,1,253); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31244,'C_Skymet_','C Skymet Upper','Armor',true,1,868); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31245,'C_Cherry','C Cherry','Armor',true,1,602); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31246,'C_Humming_Bird','C Humming Bird','Armor',true,1,702); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31247,'C_Hippo_Hat','C Hippo Hat','Armor',true,1,859); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31248,'C_Isabella_Red_Ears','C Isabella Red Ears','Armor',true,1,1030); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31249,'C_Rabbit_Hopping','C Hopping Rabbit','Armor',true,1,1635); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31250,'C_Wonderful_Beast_Ear','C Wonderful Beast Ears','Armor',true,1,1636); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31251,'C_Cat_Mouth','C Cats Mouth','Armor',true,1,1637); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31252,'C_Cat_Ear_Hat_White','C White Cat Ears Hat','Armor',true,1,1638); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31253,'C_Rinzu_Helmet','C Rinzu Helmet','Armor',true,1,548); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31254,'C_Red_Hare_Hat','C Red Hare Hat','Armor',true,true,true,1,1631); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31255,'C_Sweet_Helmet','C Sweet Helmet','Armor',true,true,1,1374); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31256,'C_Jaguar_Mask','C Jaguar Mask','Armor',true,true,1,530); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31260,'C_Observer_J','C Observer','Armor',true,1,1639); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31261,'C_Soda_in_Mouth','C Soda in Mouth','Armor',true,1,1643); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (31262,'C_Disposable_3D_Glasses','C Disposable 3D Glasses','Armor',true,1,661,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (31263,'C_Disposable_Popcorn_Hat','C Disposable Popcorn Hat','Armor',true,1,415,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31264,'C_Wings_of_Protector_Lower','C Wings of Protector Lower','Armor',true,1,990); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31265,'C_Straight_Pony_Blue_Mid','C Straight Pony Blue Mid','Armor',true,1,1394); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31266,'C_Straight_Pony_Red_Mid','C Straight Pony Red Mid','Armor',true,1,1392); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31267,'C_Straight_Pony_Yellow_Mid','C Straight Pony Yellow Mid','Armor',true,1,1389); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31268,'C_Straight_Pony_Green_Mid','C Straight_Pony Green Mid','Armor',true,1,1390); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31269,'C_Straight_Pony_Black_Mid','C Straight Pony Black Mid','Armor',true,1,1371); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31270,'C_Straight_Pony_White_Mid','C Straight Pony White Mid','Armor',true,1,1395); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31271,'C_Straight_Pony_Crimson_Mid','C Straight Pony Crimson Mid','Armor',true,1,1393); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31272,'C_Straight_Pony_Purple_Mid','C Straight Pony Purple Mid','Armor',true,1,1391); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31273,'C_Cowlick_Blue_Mid','C Cowlick Blue Mid','Armor',true,1,1387); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31274,'C_Cowlick_Red_Mid','C Cowlick Red Mid','Armor',true,1,1385); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31275,'C_Cowlick_Yellow_Mid','C Cowlick Yellow Mid','Armor',true,1,1382); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31276,'C_Cowlick_Green_Mid','C Cowlick Green Mid','Armor',true,1,1383); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31277,'C_Cowlick_Black_Mid','C Cowlick Black Mid','Armor',true,1,1372); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31278,'C_Cowlick_White_Mid','C Cowlick White Mid','Armor',true,1,1388); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31279,'C_Cowlick_Crimson_Mid','C Cowlick Crimson Mid','Armor',true,1,1386); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31280,'C_Cowlick_Purple_Mid','C Cowlick Purple Mid','Armor',true,1,1384); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31281,'C_Loose_Wave_Twin_Blue_Mid','C Loose Wave Twin Blue Mid','Armor',true,1,1401); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31282,'C_Loose_Wave_Twin_Red_Mid','C Loose Wave Twin Red Mid','Armor',true,1,1399); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31283,'C_Loose_Wave_Twin_Yellow_Mid','C Loose Wave Twin Yellow Mid','Armor',true,1,1396); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31284,'C_Loose_Wave_Twin_Green_Mid','C Loose Wave Twin Green Mid','Armor',true,1,1397); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31285,'C_Loose_Wave_Twin_Black_Mid','C Loose Wave Twin Black Mid','Armor',true,1,1373); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31286,'C_Loose_Wave_Twin_White_Mid','C Loose Wave Twin White Mid','Armor',true,1,1402); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31287,'C_Loose_Wave_Twin_Crimson_Mid','C Loose Wave Twin Crimson Mid','Armor',true,1,1400); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31288,'C_Loose_Wave_Twin_Purple_Mid','C Loose Wave Twin Purple Mid','Armor',true,1,1398); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31289,'C_Black_Wing_Ears_Lower','C Black Wing Ears Lower','Armor',true,1,1336); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31290,'C_Angels_Feather_Cap','C Angels Feather Cap','Armor',true,1,929); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31291,'C_Devils_Feather_Cap','C Devils Feather Cap','Armor',true,1,930); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31293,'C_Kings_Crown_Purple','C Crown of Ancient King Purple','Armor',true,1,1651); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31294,'C_Jirant_Circlet_Red','C Jirant Circlet Red','Armor',true,1,1652); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31295,'C_Red_Wing_Hat','C Red Wing Hat','Armor',true,1,613); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31296,'C_Strawberry_in_Mouth','C Strawberry in Mouth','Armor',true,1,861); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31297,'C_Fruit_of_Love','C Fruit of Love','Armor',true,1,140); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31298,'C_Sepia_Parade_Hat','C Sepia Parade Hat','Armor',true,1,682); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31299,'C_White_Rabbit','C White Rabbit','Armor',true,1,1656); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31300,'C_Warm_Cat_Muffler','C Warm Cat Muffler','Armor',true,1,1657); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31301,'C_Blinking_Eyes','C Blinking Eyes','Armor',true,1,1658); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31302,'C_Black_Magenta_Ribbon','C Black Magenta Ribbon','Armor',true,1,1659); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31303,'C_Black_Ramen_Hat_','C Black Ramen Hat','Armor',true,1,1338); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31304,'C_Summer_Fan','C Summer Fan','Armor',true,1,1051); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31306,'C_Toucan_Hat','C Toucan Hat','Armor',true,1,528); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31307,'C_Violet_Macaw','C Violet Macaw','Armor',true,1,656); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31308,'C_Protect_Feathers','C Protect Feathers','Armor',true,1,1232); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31309,'C_Pure_White_Marching_Hat','C Pure White Marching Hat','Armor',true,1,1470); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31310,'C_666_Black_Elven_Ears','C 666 Black_ Elven Ears','Armor',true,1,498); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31311,'C_Dolor_Thanatos_Mask','C Dolor Thanatos Mask','Armor',true,true,1,666); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31312,'C_Hades_Helm','C Hades Helm','Armor',true,1,523); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31313,'C_FallenAngelWingEar','C Fallen Angel Wing Ears','Armor',true,1,1662); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31314,'C_Ghost_Holiday','C Ghost Holiday','Armor',true,1,1663); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31315,'C_Stall_Of_Angel','C Stall of Angel','Armor',true,1,1664); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`,`script`,`unequip_script`) VALUES (31316,'C_C_FlutterButterfly_BL','C Black Fluttering Butterfly','Armor',true,1,1665,'hateffect(HAT_EF_C_FLUTTERBUTTERFLY_BL,true);','hateffect(HAT_EF_C_FLUTTERBUTTERFLY_BL,false);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31317,'C_15th_Anniversary_Wing','C 15th Anniversary Wing','Armor',true,1,1660); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31318,'C_Gerhard_Von_Devi','Costume Gerhard Von Devi','Armor',true,1,1092); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (31319,'C_Summer_Fan_','C Summer Fan','Armor',true,1,1051,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (31320,'C_Pinwheel_Hat','C Pinwheel Hat','Armor',true,1,456,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31321,'C_Shining_Sunflower','C Shining Sunflower','Armor',true,1,681); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31322,'C_Candy_Hat','C Candy Hat','Armor',true,1,853); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31323,'C_Yellow_Hunting_Cap','C Yellow Hunting Cap','Armor',true,1,484); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Low`,`equip_level_min`,`view`,`script`,`unequip_script`) VALUES (31325,'C_Queen_Scarabas_Helmet','C Queen Scarabas Helmet','Armor',true,true,1,1231,'hateffect(HAT_EF_QSCARABA,true);','hateffect(HAT_EF_QSCARABA,false);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31326,'C_Rolf_Von_Ziege_666_II','C Rolf Von Ziege 666 II','Armor',true,1,946); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31327,'C_Stretched_Nose_M','C Wood Goblins Nose','Armor',true,1,737); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31328,'C_Faceworm_Eggshell','C Faceworm Eggshell','Armor',true,1,1356); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31329,'C_Alice_Wig','Costume Alice Wig','Armor',true,1,1673); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31330,'C_Fallen_Angel_Valletta','Costume Fallen Angel Valletta','Armor',true,1,1674); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31331,'C_Chung_E_Shinyon_Cap','C Chung e Shinyon Cap','Armor',true,1,1675); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31332,'Khalitzburg_KN_Helm_BL','C Black Khalitzburg Knight Helm','Armor',true,1,1676); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31368,'C_Harvest_Festa_Hat','C Thanksgiving Memorial Hat','Armor',true,1,1677); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31369,'C_Straight_Long_WH_','Costume Straight Long White','Armor',true,1,1604); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31370,'C_Straight_Long_YLK','Costume Straight Long Yellow','Armor',true,1,1603); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31373,'C_Crown_of_Ancient_king','C Crown of Ancient king','Armor',true,1,1412); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31372,'C_Binit_Doll_Hat','Costume: Binit Doll','Armor',true,1,358); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31374,'C_Explosion_gum','C Explosion gum','Armor',true,1,1414); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31375,'C_Mystic_Eye','C Mystic Eye','Armor',true,1,1490); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31376,'C_Ancient_Dragon_Coronet_Purple','C Ancient Dragon Coronet Purple','Armor',true,1,1680); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31377,'C_Glastheim_Obeserver','C Glastheim Obeserver','Armor',true,1,1041); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31378,'C_Catharina_Von_Brad_60th','C Catharina Von Brad 60th','Armor',true,1,1527); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31379,'C_Wind-Up_Key','C Wind-Up Key','Armor',true,1,1335); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31380,'C_Crow','C Crow','Armor',true,1,1035); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31381,'C_Diabolic_Lapel','Costume Diabolic Lapel','Armor',true,1,1681); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31382,'C_Cat_Ears_Punkish','Costume Cat Ears Punkish','Armor',true,1,1682); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31383,'C_Volume_Low_Twin','Costume Volume Low Twin','Armor',true,1,1683); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31384,'C_False_Ears','Costume False Ears','Armor',true,1,1684); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31385,'C_Gothic_Pumpkin_Head','Costume Gothic Pumpkin Head','Armor',true,1,1685); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31386,'C_Survive_Orb','C Survive Orb','Armor',true,1,1488); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31387,'C_Jjakk','C Jjakk','Armor',true,1,1687); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31389,'C_White_Bird_Rose','C White Bird Rose','Armor',true,1,1688); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31390,'C_Let_It_Snow','C Let It Snow','Armor',true,1,1690); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`,`equip_script`,`unequip_script`) VALUES (31391,'C_Floating_Stone_Of_Int','C Floating Stone of Sage','Armor',true,1,1230,'sc_start SC_FSTONE,INFINITE_TICK,0;','sc_end SC_FSTONE;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31392,'C_Radio_Antenna','C Radio Antenna','Armor',true,1,347); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31393,'C_Vajra','C Vajra','Armor',true,1,983); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31394,'C_Magician_White_Hat','C Magician White Hat','Armor',true,1,283); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31395,'C_Book_Of_Magic','C Book of Magic','Armor',true,1,1691); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31396,'C_Sorcerer_Hood','C Sorcerer Hood','Armor',true,1,1692); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31397,'C_Pope_Sitting_Head','C Sitting Pope','Armor',true,1,1553); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31398,'C_Blinking_Thin_Eyes','C Blinking Thin Eyes','Armor',true,1,1693); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31399,'C_Darkness_Veil','C Darkness Veil','Armor',true,1,1694); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31400,'C_Ribbon','C Ribbon','Armor',true,1,17); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31401,'C_Nuns_Veil','C Nuns Veil','Armor',true,true,1,176); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31402,'C_Idun_Green_Apple','C Iduns Green Apple','Armor',true,1,1698); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31403,'C_Wall','C Wall','Armor',true,1,1699); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31404,'C_Poring_Traffic_Light','C Poring Traffic Light','Armor',true,1,1700); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31405,'C_Eleanor_Wig_YL','C Eleanor Wig Yellow','Armor',true,1,1701); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31406,'C_Nydhog_Wig_WH','C Nydhoggur Wig White','Armor',true,1,1702); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31407,'C_Alice_Wig_PK','C Alice Wig Peach','Armor',true,1,1703); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31408,'C_Ragnarok_Rush_Goat','C Ragnarok Rush Goat','Armor',true,1,41); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31409,'C_Barrel_Helm','C Barrel Helm','Armor',true,true,true,1,1498); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31410,'C_GodsHelm','Costume God\'s Helm','Armor',true,1,1678); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31411,'C_Leo_Diadem','C Leo Diadem','Armor',true,1,566); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31412,'C_Virgo_Crown','C Virgo Crown','Armor',true,1,573); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31413,'C_Taurus_Crown','C_ Taurus Crown','Armor',true,1,536); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31414,'C_Cancer_Diadem','C Cancer Diadem','Armor',true,1,560); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31415,'C_Wanderer_Sakkat','Costume Wanderer\'s Sakkat','Armor',true,true,1,558); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31417,'C_Rice_Ball_Hat','C Rice Ball Hat','Armor',true,1,556); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31418,'C_Leek_In_Mouth','C Green Onion in Mouth','Armor',true,1,824); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31420,'C_Shining_Santa_Poring','C Shining Santa Poring','Armor',true,1,961); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31430,'C_Seppl_Hat_TW','Costume: Seppl Hat','Armor',true,1,1023); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31431,'C_Curupira_Hat_TW','Costume: Curupira Hat','Armor',true,1,974); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31432,'C_Luwmin_Ice','C Floating Ice','Armor',true,1,1562); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31433,'C_Astro_Circle','Costume Astro Circle','Armor',true,1,1073); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31434,'C_Cloud_Burst','C Cloud Burst','Armor',true,1,705); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31435,'C_Ghost_Magicians_Knit_Hat','C Ghost Magicians Knit Hat','Armor',true,1,854); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31436,'C_Lazy_Cat','C Lazy Cat','Armor',true,1,274); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31437,'C_Baby_Penguin','C Baby Penguin','Armor',true,1,1705); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31438,'C_Fluffy_Angel_Cape','C Fluffy Angel Cape','Armor',true,1,1706); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31439,'C_Fluffy_Heart_Earmuffs','C Fluffy Heart Earmuffs','Armor',true,1,1707); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31440,'C_Snow_Bear_Food','C Snow Bear Hood','Armor',true,1,1708); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31441,'C_Penguin_Cap_BU','C Penguin Cap Blue','Armor',true,1,1709); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31442,'C_Smile_Mask_Middle','C Smile Mask Middle','Armor',true,1,65); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31443,'C_Munak_Hat_','C Munak Hat Upper','Armor',true,1,51); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31444,'C_Bongun_Hat_','C Bongun Hat Upper','Armor',true,1,139); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31446,'C_Toy_Syringe','C Toy Syringe','Armor',true,1,842); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31447,'C_Light_Moonlight_Hat','C Light Moonlight_Hat','Armor',true,1,913); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31448,'C_Stings_Silk_Ribbon','C Stings Silk Ribbon','Armor',true,1,1457); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31449,'C_Blue_Rose_Eyepatch','C Blue Rose Eyepatch','Armor',true,1,1712); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31450,'C_Lolita_Two_Side_Up','C Lolita Two Side Up','Armor',true,1,1713); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31451,'C_Blue_Frill_Ribbon','C Blue Frill Ribbon','Armor',true,1,1714); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31452,'C_White_Cat','C White Cat','Armor',true,1,1715); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31453,'C_L_RibbonMuff_Black','C Large Ribbon Muffler Black','Armor',true,1,1716); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31454,'C_Love_Feelings','C Love Feelings','Armor',true,1,1717); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31455,'C_Enchanted_Dog','C Super Cute Dog','Armor',true,true,1,1718); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31456,'C_Baby_Leopard_Cat','C Baby Leopard Cat','Armor',true,1,1719); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31457,'C_Laughing_Wonderful_Wolf_Hat','C Laughing Wonderful Wolf Hat','Armor',true,1,1016); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31459,'C_Sweet_Bonbon','Costume Sweets Bonbon','Armor',true,1,853); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31460,'C_Blessing_Sky_Lantern','C Blessing Sky Lantern','Armor',true,1,1720); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31463,'C_Flying_Drone','C Flying Drone','Armor',true,1,1561); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31464,'C_Bloom_Afro','C Bloom Afro','Armor',true,1,837); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31465,'C_Robin_Egg_Minihat','C Robin Egg Minihat','Armor',true,1,1722); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31466,'C_Holy_Eggshell','C Holy Egg Shell','Armor',true,1,537); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31467,'C_Evil_Eggshell','C Evil Eggshell','Armor',true,1,999); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31468,'C_Stripe_Hat','C Stripe Hat','Armor',true,1,1728); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31469,'C_Eleanor_Wig_R','Rental C Eleanors Wig Lower','Armor',true,1,1502); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31470,'C_Scroll_of_Tengu','C Scroll of Tengu','Armor',true,1,1445); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31471,'C_Celestial_Flower','C Celestial Flower','Armor',true,1,438); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31472,'C_Fairy_Feathers','C Fairy Feathers','Armor',true,1,1723); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31473,'C_Tipsy','C Tipsy','Armor',true,1,1724); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31474,'C_Straight_Long_BL','C Straight Long Black','Armor',true,1,1725); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31475,'C_Black_Fox_Ear_Ribbon','C Black Fox Ears Ribbon','Armor',true,1,1726); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31476,'C_Cherry_Blossom_Hat_YL','C Yellow Cherry Blossom Hat','Armor',true,1,1727); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31477,'C_Straight_Long_BL_','Rental C Straight Long Black','Armor',true,1,1725); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31478,'C_Eleanor_Wig_','C Eleanors Wig Lower','Armor',true,1,1502); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`,`script`,`unequip_script`) VALUES (31479,'C_ManyStars_TW','Costume Group of Stars','Armor',true,1,1729,'hateffect(HAT_EF_MANYSTARS,true);','hateffect(HAT_EF_MANYSTARS,false);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31481,'C_CatCoffeeCup_TW','C TriColor CatCup','Armor',true,1,1731); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31483,'C_CatEarRibbon_TW','Costume Cat Ear Ribbon','Armor',true,1,1733); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31484,'C_JP_EV13','C BearCompanion Female','Armor',true,1,1736); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31485,'C_JP_EV14','C BearCompanion Male','Armor',true,1,1737); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31486,'C_Divers_Goggles','C Diver\'s Goggles','Armor',true,1,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31487,'C_Eye_Bandage','C Eye Bandage','Armor',true,1,13); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31488,'C_MVP','Costume MVP','Armor',true,1,1738); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31489,'C_Bouquet_Hat','Costume Bouquet Cap','Armor',true,1,1739); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31490,'C_Poring_Muffler','C Poring Muffler','Armor',true,1,1740); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31491,'C_Orange_Tabby_Cat','C Orange Tabby Cat','Armor',true,1,1741); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31492,'C_Cat_Ears_Cape_Brown','C Brown Cat Ears Cape','Armor',true,1,1742); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31493,'C_Volume_Low_Twin_WH','C Volume Low Twin WH','Armor',true,1,1743); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31494,'C_Volume_Low_Twin_Upper','C Volume Low Twin','Armor',true,1,1683); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31495,'C_Lolita_Two_Side_Up_','C Lolita Two Side Up Upper','Armor',true,1,1713); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31496,'C_Yggdrasil_Crown','C Yggdrasil Crown','Armor',true,1,746); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31498,'C_Elephangel_TH','C Elephangel','Armor',true,1,1745); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31499,'C_Easter_Egg_Shell','C Easter Egg Shell','Armor',true,1,537); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31504,'C_Starving_Fish_Hat','C Large Hungry Fish','Armor',true,1,844); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31505,'C_Falcon_Mask','C Falcon Mask','Armor',true,true,1,782); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31506,'C_Cat_Ear_Bandana','C Cat Ear Bandana','Armor',true,1,1587); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31507,'C_Drooping_Cat_Yellow','C Drooping Cat Yellow','Armor',true,1,278); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31508,'C_Isabella_Blue_Ears','C Isabella Blue Ears','Armor',true,1,1032); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31509,'C_Fawn_Ear','C Fawn Ears','Armor',true,1,1751); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31510,'C_ShortHair_CatEar','C Short Haired Cat Ears','Armor',true,1,1752); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31511,'C_LongHair_CatEar','C Long Haired Cat Ears','Armor',true,1,1753); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31512,'C_Panda_Rabbit','C Panda Rabbit','Armor',true,1,1754); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31513,'C_Black_Rabbit_Ears','C Black Rabbit Ears','Armor',true,1,1755); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31516,'C_Mini_Melon','C Mini Melon','Armor',true,1,1758); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31517,'C_JP_EV15','C Fluffy Cat','Armor',true,1,1762); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31518,'C_Popping_Popcorn_Hat','C Popping Popcorn Hat','Armor',true,1,1763); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31519,'C_Noodles_Hat','C Noodles Hat','Armor',true,1,1764); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31520,'C_Popcorn_Hat','C Popcorn Hat','Armor',true,1,415); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31521,'C_Yuzu_Helmet','C Yuzu Helmet','Armor',true,1,791); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31522,'C_Orange_Helmet','C Orange Helmet','Armor',true,1,841); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31523,'C_Pomelo_Helmet','C Pomelo Helmet','Armor',true,1,924); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31524,'C_Bento_Hat','C Bento Hat','Armor',true,1,1766); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31526,'C_Shaman_Hat','C Shaman Hat','Armor',true,1,596); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31527,'C_Radiant_Rainbow_Wings','C Radiant Rainbow Wings','Armor',true,1,1186); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31528,'C_Star_Dust_Hairband','C Star Dust Hairband','Armor',true,1,831); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31529,'C_Happy_Rabbit_Ribbon','C Happy Rabbit Ribbon','Armor',true,1,1769); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31531,'C_Lovely_Heart_Cap','C Lovely Heart Cap','Armor',true,1,1770); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31533,'C_Warm_Cat_Muffler_BL','C Warm Cat Muffler Black','Armor',true,1,1771); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31538,'C_Lovely_Feeling','C Lovely Feeling','Armor',true,1,1717); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31540,'C_GeminiS58_Eyes_Red','C GeminiS58 Eyes Red','Armor',true,1,1654); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31541,'C_Drosera_Hairpin','C Drosera Hairpin','Armor',true,1,850); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31542,'C_Clay_Poring_Jar','C Clay Poring Jar','Armor',true,1,1634); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31543,'C_Siorava_Hat','C Siorava Hat','Armor',true,1,1774); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31544,'C_Piamette_Curls','Costume Piamette Curls','Armor',true,1,1775); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31545,'C_Eremes_Scarf_BU','C Eremes Scarf Blue','Armor',true,1,1776); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31546,'C_Clock_Casket_RD','C Clock Casket Red','Armor',true,1,1777); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31547,'C_Poporing_Mascot_Head','C Poporing Mascot Head','Armor',true,1,1778); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31548,'C_Love_Cheek_Lower','C Love Cheeks Lower','Armor',true,1,1318); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31549,'C_Little_Aquarium_Lower','C Little Aquarium Lower','Armor',true,1,1363); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31550,'C_Tone_of_Gold_Mid','C Tone of Gold Mid','Armor',true,1,1447); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31551,'C_Black_Glasses_Lower','C Black Glasses Lower','Armor',true,1,404); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31552,'C_Blue_Ribbon_Mid','C Blue Ribbon Mid','Armor',true,1,407); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31553,'C_Wings_Of_Victory_Mid','C Wings Of Victory Mid','Armor',true,1,365); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31554,'C_Bread_Bag_Mid','C Bread Bag Mid','Armor',true,1,412); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31555,'C_Hoplite_Helmet_Upper','C Hoplite Helmet Upper','Armor',true,1,660); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31556,'C_Moonlight_Flower_Hat_Upper','C Moonlight Flower Hat Upper','Armor',true,1,268); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31559,'C_Royalguard_Necklace','C Royal Guard Necklace','Armor',true,1,1629); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31560,'C_Clergy_Nurse_Cap','C Nurse Cap of Clergy','Armor',true,1,1359); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31561,'C_Heavenly_Dark_Flame','C Heavenly Dark Flame','Armor',true,1,1008); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31562,'C_Zealotus Doll','C Zealotus Doll','Armor',true,1,1376); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31563,'C_Blue_Eye_Shadow','C Blue Eye Shadow','Armor',true,1,1020); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31564,'C_Variant_Veil','C Variant Veil','Armor',true,1,1785); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31565,'C_Princess_Ribbon_Crown','C Princess Ribbon Crown','Armor',true,1,1786); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31566,'C_Stole_Of_Dominion','C Stole Of Dominion','Armor',true,1,1784); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31567,'C_Sheep_Horn','C Sheep Horns','Armor',true,1,1783); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31568,'C_Floating_Ball_TW','Costume Floating Ball','Armor',true,1,1760); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31569,'C_OpenAir_Headset','C Open Air Headset','Armor',true,1,1655); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31570,'C_Cyclops_Visor','C Cyclops Visor','Armor',true,1,207); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31571,'C_Guardian_Processor','C Guardian Processor','Armor',true,1,1552); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31572,'C_Mobile_Pursuit_System','C Mobile Pursuit System','Armor',true,1,1788); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31573,'C_Mecha_Cat_Ears','C Mecha Cat Ears','Armor',true,1,1789); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31574,'C_Cyber_Income','C Cyber Income','Armor',true,1,1790); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31575,'C_Electro_Two_Sides_Up','C Electro Two Sides Up','Armor',true,1,1791); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31576,'C_Moon_Rabbit_Hat','C Moon Rabbit Hat','Armor',true,1,455); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31577,'C_Roast_Memory_Upper','C Roast Memory Upper','Armor',true,1,1576); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31578,'C_Alchemist_Mask_ML','C Alchemist Mask','Armor',true,true,1,1497); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31579,'C_Love_Games','C I LOVE GAMES','Armor',true,1,1306); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31580,'C_Autumn_Flavor','C Autumn Flavor','Armor',true,1,1792); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31581,'C_Jack_Upper','C Jack Upper','Armor',true,1,1415); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31582,'C_Jirant_Circlet','C Jirant Circlet','Armor',true,1,1644); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`,`equip_script`,`unequip_script`) VALUES (31583,'C_Will_O_Wisp_Lower','C Will O Wisp Lower','Armor',true,1,880,'sc_start SC_STRANGELIGHTS,INFINITE_TICK,0;','sc_end SC_STRANGELIGHTS;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31586,'C_Poporing_Muffler','C Poporing Muffler','Armor',true,1,1797); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`script`,`unequip_script`) VALUES (31588,'C_Snow_Flower','C Snow Flower','Armor',true,1,1799,'hateffect(HAT_EF_SNOWFLAKE_TIARA,true);','hateffect(HAT_EF_SNOWFLAKE_TIARA,false);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31589,'C_Golden_Majestic_Goat','C Golden Majestic Goat','Armor',true,1,1800); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31590,'C_Designer_Brush','C Designer\'s Brush','Armor',true,1,1291); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31593,'C_Yellow_Scarf','C Yellow Scarf','Armor',true,1,1170); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31594,'C_Red_Pencil_In_Mouth','C Red Pencil in Mouth','Armor',true,1,931); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31595,'C_Book_File_Hat','C Book File Hat','Armor',true,1,423); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31596,'C_Spider_Seduction','C Spider Seduction','Armor',true,1,1711); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31597,'C_Golden_Fish_Hat','C Golden Fish Hat','Armor',true,1,1645); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31598,'C_Forest_Guide','C Forest Guide','Armor',true,1,1802); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31599,'C_Medium_Wave','C Medium Wave','Armor',true,1,1803); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31600,'C_Kishu_Inu','C Kishu Dog','Armor',true,1,1804); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31601,'C_Under_Rim_Glasses_Blue','C Under Rim Glasses Blue','Armor',true,1,1805); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`,`script`,`unequip_script`) VALUES (31602,'C_Midgarts_Glory','C Rune-Midgarts Glory','Armor',true,1,1807,'hateffect(HAT_EF_MIDGARTS_GLORY,true);','hateffect(HAT_EF_MIDGARTS_GLORY,false);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31606,'C_Autumn_Headband','C Autumn Headband','Armor',true,1,1119); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31607,'C_Cat_Ear_Witch_Hat','C Cat Ear Witch Hat','Armor',true,1,1808); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31608,'C_Magicstone_of_Grace','C Magic Stone of Grace','Armor',true,true,true,1,1420); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31609,'C_Noble_Mask','C Noble Mask','Armor',true,1,1409); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31610,'C_Yellow_Wizardry_Hat','C Yellow Wizardry Hat','Armor',true,1,286); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31611,'C_Dark_Snake_Lord_Stall','C Snake Lord Stole','Armor',true,1,1810); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31612,'C_Large_Sorcerer_Crown','C Large Sorcerer Crown','Armor',true,1,1811); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31614,'C_Fox','C Fox','Armor',true,1,1812); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31615,'Costume_Geisha_Make_Up','C Geisha Make Up','Armor',true,1,1813); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31616,'C_Sleep_Sheep_TW','C Sleep Sheep','Armor',true,1,1814); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31624,'C_HeartOfCat_TW','C Heart of Cat','Armor',true,1,1822); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31625,'C_Protect_Cloth','C Protection Cloth','Armor',true,1,1761); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31628,'C_Bogy_Cap_TW','C Dokebi','Armor',true,1,430); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31630,'Costume_Baphomet_Balloon','C Baphomet Balloon','Armor',true,1,1746); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31631,'Costume_Drooping_Schmidt','C Drooping Schmidt','Armor',true,1,1859); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31632,'Costume_Drooping_Oscar','C Drooping Oscar','Armor',true,1,1860); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31633,'Costume_Drooping_Heinrich','C Drooping Heinrich','Armor',true,1,1861); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31634,'Costume_Reindeer_Hair_Band','C Reindeer Hair Band','Armor',true,1,836); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31635,'Costume_Flowing_Long_BD','C Flowing Long Blonde','Armor',true,1,1832); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31636,'Costume_Flowing_Long_SV','C Flowing Long Silver','Armor',true,1,1833); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31637,'Costume_Straight_Long_BU','C Straight Long Blue','Armor',true,1,1834); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31638,'Costume_Straight_Long_RD','C Straight Long Red','Armor',true,1,1835); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31639,'Costume_Straight_Long_BD','C Straight Long Blonde','Armor',true,1,1836); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31640,'Costume_Straight_Long_GN','C Straight Long Green','Armor',true,1,1837); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31641,'Costume_Straight_Long_JBL','C Straight Long Jet Black','Armor',true,1,1838); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31642,'Costume_Straight_Long_LPP','C Straight Long Light Purple','Armor',true,1,1839); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31643,'Costume_Straight_Long_OM','C Straight Long Brown','Armor',true,1,1840); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31644,'Costume_Straight_Long_PP','C Straight Long Purple','Armor',true,1,1841); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31645,'Costume_Side_Pony_BU','C Side Pony Blue','Armor',true,1,1842); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31646,'Costume_Side_Pony_RD','C Side Pony Red','Armor',true,1,1843); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31647,'Costume_Side_Pony_BD','C Side Pony Blonde','Armor',true,1,1844); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31648,'Costume_Side_Pony_GN','C Side Pony Green','Armor',true,1,1845); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31649,'Costume_Side_Pony_BL','C Side Pony Black','Armor',true,1,1846); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31650,'Costume_Side_Pony_WH','C Side Pony White','Armor',true,1,1847); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31651,'Costume_Side_Pony_OM','C Side Pony Brown','Armor',true,1,1848); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31652,'Costume_Side_Pony_PP','C Side Pony Purple','Armor',true,1,1849); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31653,'Costume_Chignon_BU','C Chignon Blue','Armor',true,1,1850); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31654,'Costume_Chignon_RB','C Chignon Red','Armor',true,1,1851); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31655,'Costume_Chignon_BD','C Chignon Blonde','Armor',true,1,1852); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31656,'Costume_Chignon_GN','C Chignon Green','Armor',true,1,1853); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31657,'Costume_Chignon_BL','C Chignon Black','Armor',true,1,1854); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31658,'Costume_Chignon_WH','C Chignon White','Armor',true,1,1855); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31659,'Costume_Chignon_OM','C Chignon Brown','Armor',true,1,1856); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31660,'Costume_Chignon_PP','C Chignon Purple','Armor',true,1,1857); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31664,'Costume_Desert_Wolf_Hat','C Drooping Ernst Von Wolf 11th','Armor',true,1,783); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31667,'Costume_Poring_Beret','C Poring Beret','Armor',true,1,1825); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31668,'Costume_Majorous_Horns','C Majorous Horns','Armor',true,1,888); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31669,'C_Adv_Whisper_Mask_M','C Evolved Whisper Mask Mid','Armor',true,1,458); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31670,'C_Miyabi_Long_Hair','C Miyabi Long Hair','Armor',true,1,1864); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31671,'Costume_Twin_Cannon','C Twin Cannon','Armor',true,1,1865); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31672,'Costume_Mermaid_Wig','C Mermaid Wig','Armor',true,1,1866); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31673,'C_Picnic_Basket','C Picnic Basket','Armor',true,1,1867); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31674,'Costume_Jitterbug_Cap','C Jitterbug Cap','Armor',true,1,1868); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31675,'Costume_Orange_Hat','C Orange Hat','Armor',true,1,620); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31676,'Costume_Orange_In_Mouth','C Orange In Mouth','Armor',true,1,814); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31682,'Costume_Drooping_Elven_Ears','C Drooping Elven Ears','Armor',true,1,875); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31684,'Costume_Kururinpa_Tails','C Kururinpa Tails','Armor',true,1,1873); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31685,'Costume_Fluffy_Semi_Long','C Fluffy Semi Long','Armor',true,1,1874); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31686,'Costume_Desert_Wolf_Baby','C Desert Wolf Baby','Armor',true,1,1875); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31687,'Costume_Alchemist_Bag','C Alchemist Bag','Armor',true,1,1876); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31688,'C_Poring_On_Shoulder','C Poring On Shoulder','Armor',true,1,1877); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31689,'C_Piamette_Curls_','C Piamette Curls','Armor',true,1,1775); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31690,'Costume_Flame_Bird','C Flame Bird','Armor',true,1,832); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31691,'C_Bell_Pigeon_Low','Costume Bell of Pigeon Lower','Armor',true,1,1034); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31692,'Costume_Dragon_Emperor_Wings','C Dragon Emperor Wings','Armor',true,1,1413); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31693,'C_LunaticMuffler','C Lunatic Muffler','Armor',true,1,1732); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31695,'Costume_Stem_In_Mouth','C Stem in Mouth','Armor',true,1,848); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31696,'Costume_Shark_Hat','C Shark Hat','Armor',true,1,503); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31697,'Costume_Bird_Nest','C Bird Nest','Armor',true,1,201); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31698,'C_Pigtail_Red_Hood','C Red Riding Hood','Armor',true,1,1879); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31699,'C_Smiling_Eyes','C Smiling Eyes','Armor',true,1,1880); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31702,'Costume_Moon_Cat_Hat','C Moon Cat Hat','Armor',true,1,1308); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31703,'Costume_Valentine_Hat','C Love Valentine\'s Hat','Armor',true,1,397); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31704,'Costume_Sweet_Valentine_Out','C Sweet Valentine Out','Armor',true,1,865); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31705,'Costume_Red_White_Hat','C Red Hat','Armor',true,1,469); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31706,'Costume_Trident_Helmet','C Trident Helm','Armor',true,1,810); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31707,'Costume_Nine_Tail_Fox_Hair','C Nine Tail Fox Hair','Armor',true,1,1884); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31708,'Costume_Gothic_Skull_Ribbon','C Gothic Skull Ribbon','Armor',true,1,1885); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31709,'Costume_Golden_Violet','C Golden Violet','Armor',true,1,1886); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31710,'Costume_Lucky_Hat','C Lucky Hat','Armor',true,1,31710); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31711,'Costume_Jewel_Crown','C Jewel Crown','Armor',true,1,88); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31712,'Costume_Oxygen_Mask','C Oxygen Mask','Armor',true,1,90); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31713,'Costume_Mystical_Fruit_Hat','Costume Mystical Fruit Hat','Armor',true,1,134); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31714,'Costume_Indian_Headband','Costume Indian Headband','Armor',true,1,155); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31715,'Costume_Orange_Rabbit','C Orange Rabbit','Armor',true,1,1887); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31716,'Costume_Twinkling_Red_Eyes','Costume Twinkling Red Eyes','Armor',true,1,1888); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31717,'Costume_Medium_Wave_BD','C Medium Wave Blonde','Armor',true,1,1889); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31718,'Costume_Sky_Lantern_Mid','C Blessing Sky Lantern Mid','Armor',true,1,1720); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31719,'Costume_Master_Of_Flames','C Master Of Flames','Armor',true,1,1890); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31720,'Costume_Vesper_Hat','C Vesper Hat','Armor',true,1,1827); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31721,'Costume_Resonating_Drums','C Resonating Drums','Armor',true,1,1823); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31723,'Costume_TW_Rice_Ball','C Tw Rice Ball','Armor',true,1,892); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31724,'Costume_TW_Bulgogi','C Tw Bulgogi','Armor',true,1,1773); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31729,'Costume_Miracle_Plant','C Miracle Plant','Armor',true,1,1893); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31730,'Costume_Volume_Low_Twin_SK','C Volume Low Twin Sakura','Armor',true,1,1894); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31731,'Costume_Sweets_Party','C Sweets Party','Armor',true,1,1896); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31732,'Costume_Bear_Balloon','C Bear Balloon','Armor',true,1,1734); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31733,'Costume_Phantom_Masquerade','C Phantom Masquerade','Armor',true,1,1899); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31734,'Costume_Cirtrus_Ribbon','C Citrus Ribbon','Armor',true,1,1900); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31735,'Costume_Yawata_Seal','C Yawata Seal','Armor',true,1,1901); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31736,'Costume_Popcorn_Wig','C Popcorn Wig','Armor',true,1,1895); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31762,'Costume_Gambler_Card','C Heart Card in Mouth','Armor',true,1,1679); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31763,'Costume_Fortier_Mask','C Fortier Mask','Armor',true,1,876); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31764,'C_Rainbow_Veil_Mid','Costume Rainbow Veil Mid','Armor',true,1,992); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31765,'C_Garnet_Tiara','C Garnet Tiara','Armor',true,1,1906); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31766,'C_Peony_Hair_Ornament','C Peony Hair Ornament','Armor',true,1,1907); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31769,'Costume_Orange_Bunny_Band','C Orange Bunny Band','Armor',true,1,751); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31770,'Costume_Violet_Bunny_Band','C Violet Bunny Band','Armor',true,1,752); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31771,'Costume_Blue_Bunny_Band','C Blue Bunny Band','Armor',true,1,753); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31772,'Costume_Silver_Bunny_Band','C Silver Bunny Band','Armor',true,1,754); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31783,'Costume_Doram_Balloon','C Doram Baloon','Armor',true,1,1595); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31784,'Costume_Experimental_Goat_Cap','C Experimental Goat Cap','Armor',true,1,1768); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31785,'Costume_Monster_Fish_Gill','C Monster Fish Gills','Armor',true,1,1218); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31786,'Costume_Red_Baby_Dragon_Hat','C Red Baby Dragon Hat','Armor',true,1,1463); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31787,'C_SavageB_On_Shoulder','C Savage Bebe On Shoulder','Armor',true,1,1915); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31788,'C_Piamette_Curls_SV','C Piamette Curls Silver','Armor',true,1,1916); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`) VALUES (31789,'Costume_Turkey_Hat','C Turkey Hat','Armor',true,1); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31791,'Costume_Pig_Mask','C Pig Mask','Armor',true,1,1869); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31793,'Costume_Seraphim_Feather','C Seraphim Feather','Armor',true,1,1704); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31794,'Costume_Puppy_Ears_Hat','C Puppy_Ears_Hat','Armor',true,1,827); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31795,'C_Elephangel_TH_Mid','C Elephangel Mid','Armor',true,1,1745); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31796,'Costume_Drooping_Boto','C Drooping Boto','Armor',true,1,657); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31797,'Costume_Shih_Tzu_Hair','C Shih Tzu Hair','Armor',true,1,1921); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31798,'C_Baby_Panda','C Baby Panda','Armor',true,1,1922); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31799,'C_Pretty_Bear_WH','C Pretty White Bear','Armor',true,1,1923); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31800,'Costume_BR_Twin_Ribbon','C Brazil Twin Ribbon','Armor',true,1,575); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31801,'Costume_Karada_Meguri_Tea_Hat','C Karada Meguri Tea Hat','Armor',true,1,427); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31802,'Costume_Royal_Milk_Tea_Hat','C Black Tea Kochakaden Hat','Armor',true,1,428); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31803,'Costume_Master_Of_Wind','C Master of Wind','Armor',true,1,1924); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31813,'Costume_Lunatic_On_Shoulder','C Lunatic On Shoulder','Armor',true,1,1881); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31814,'Costume_Lunatic_Family_Balloon','C Lunatic Family Balloon','Armor',true,1,1809); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31815,'Costume_Angola_Intention','C Angola Intention','Armor',true,1,1925); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31816,'Costume_Moon_Messenger_Robe','C Moon Messenger Robe','Armor',true,1,1926); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31817,'Costume_Rabbit_Two_Side_Up','C Rabbit Two Side Up','Armor',true,1,1927); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31819,'Costume_Dullahan_Mask','C Dullahan Mask','Armor',true,1,1931); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31823,'Costume_Nose_Glasses','C Nose Glasses','Armor',true,1,1933); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31824,'Costume_Cat_Mask','C Mask of Cat','Armor',true,1,1934); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31826,'Costume_Sunglass_Bear_Cap','C Sunglass Bear Cap','Armor',true,1,1935); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31827,'Costume_Durumagi','C Durumagi','Armor',true,1,1936); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31831,'Costume_Disguise_Mantle','C Disguise Mantle','Armor',true,1,1937); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31832,'C_Bicolor_Cat_Witch_Hat','C Bicolor Cat Witch Hat','Armor',true,1,1938); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31833,'C_Halloween_CatShort','C Halloween Short Haired Cat Ears','Armor',true,1,1939); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31834,'C_Halloween_Cat_Long','C Halloween Long Haired Cat Ears','Armor',true,1,1940); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31837,'Costume_Shark_Head','C Shark Head','Armor',true,1,1919); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31840,'Costume_BJ_Headset_A','C BJ Headset','Armor',true,1,1942); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31841,'Costume_BJ_Headset_B','C OnAir BJ Headset','Armor',true,1,1943); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31884,'C_Magic_Helm','Costume Magic Helm','Armor',true,1,1917); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32005,'Illusion_Pole_Axe','Illusion Pole Axe','Weapon','1hSpear',1500,190,3,2,true,true,true,true,4,120,true,'.@r = getrefine(); bonus bStr,3; bonus bInt,2; bonus bDex,2; if (.@r >= 13) { .@val = -2000; } else if (.@r >= 9) { .@val = -1000; } bonus2 bSkillCooldown,"RK_HUNDREDSPEAR",.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32013,'Metal_Stick','Metal Stick','Weapon','1hSpear',2000,180,3,3,true,true,true,true,true,true,4,150,true,'.@r = getrefine(); bonus2 bSkillAtk,"LG_CANNONSPEAR",10; if(.@r > 6){ bonus2 bSkillAtk,"LG_OVERBRAND",10 + (.@r > 8 ? 15 : 0); } if(.@r > 11){ bonus bDelayrate,-15; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_crusader`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32014,'Brute_Spear','Brute Spear','Weapon','1hSpear',150,3,true,true,true,true,true,true,4,100,true,'.@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bIgnoreDefRaceRate,RC_All,5*.@r; bonus2 bAddRace,RC_Player_Human,80 + (.@r > 8 ? 20 : 0) + (.@r > 7 ? 35 : 0); if(.@r > 9){ bonus bMaxHPrate,15; bonus bMaxSPrate,15; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32019,'Boost_Lance-OS','Boost Lance-OS','Weapon','1hSpear',20,1000,190,3,2,true,true,true,true,true,4,130,true,'.@r = getrefine(); .@aspd = 3; if (.@r >= 7) { .@aspd += 7; if (.@r >= 9) { .@dmg = 20; if (.@r >= 11) { .@dmg += 15; } bonus2 bSkillAtk,"LG_BANISHINGPOINT",.@dmg; } } bonus bAspdRate,.@aspd;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32023,'Argen_Blanco','Argen Blanco','Weapon','1hSpear',20,1000,200,3,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus2 bSkillAtk,"KN_BRANDISHSPEAR",30; bonus bBaseAtk,4*.@r; if (.@r>=9) bonus2 bSkillCooldown,"RK_HUNDREDSPEAR",-1500; if (.@r>=11) bonus2 bSkillAtk,"KN_BRANDISHSPEAR",20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32024,'Harve','Harve','Weapon','1hSpear',20,1500,210,3,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus2 bSkillAtk,"PA_SHIELDCHAIN",40; bonus bLongAtkRate,.@r; if (.@r>=9) bonus2 bSkillAtk,"LG_SHIELDPRESS",30; if (.@r>=11) { bonus2 bSkillAtk,"PA_SHIELDCHAIN",20; bonus2 bSkillAtk,"LG_SHIELDPRESS",20; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32025,'Fortridge','Fortridge','Weapon','1hSpear',20,1700,205,3,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bDelayrate,-.@r; bonus2 bAddClass,Class_All,5; if (.@r>=9) bonus2 bSkillAtk,"LG_CANNONSPEAR",20; if (.@r>=11) bonus2 bSkillAtk,"LG_OVERBRAND",20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32107,'Black_Circle','Black Circle','Weapon','Whip',1200,100,190,2,2,true,true,true,true,'Male',true,4,170,true,'.@r = getrefine(); bonus bMatk,4*.@r; bonus2 bMagicAtkEle,Ele_Neutral,10; if (.@r>=9) bonus2 bSkillAtk,"WM_METALICSOUND",30; if (.@r>=11) bonus2 bSkillCooldown,"WM_METALICSOUND",-2000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32108,'Antique_Cello','Antique Cello','Weapon','Musical',1200,180,2,2,true,true,true,true,'Male',true,4,170,true,'.@r = getrefine(); bonus bVariableCastrate,-10; bonus bLongAtkRate,.@r; if (.@r>=9) bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-1000; if (.@r>=11) bonus2 bSkillUseSPrate,"WM_SEVERE_RAINSTORM",20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (32203,'Accelerator_Chip','Accelerator Chip','Armor',20,100,1,true,true,100,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bAspdRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (32204,'Immortal_Dog_Tag','Immortal Dog Tag','Armor',20,100,1,true,true,100,'bonus bBaseAtk,50; bonus bMatk,50; bonus2 bSubRace,RC_Undead,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (32206,'Prontera_Militia_Glove','Prontera Militia Glove','Armor',20,100,1,true,true,100,'bonus bVit,5; bonus bMdef,5; bonus bAspdRate,5; bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3; bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Earth,5; bonus2 bSubEle,Ele_Wind,5; bonus2 bSubEle,Ele_Fire,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`equip_level_min`,`script`) VALUES (32207,'Illusion_Booster_R','Illusion Booster R','Armor',20,100,1,true,130,'bonus2 bAddClass,Class_All,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (32208,'Illusion_Booster_L','Illusion Booster L','Armor',20,100,1,true,130,'bonus2 bAddClass,Class_All,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`equip_level_min`,`script`) VALUES (32209,'Illusion_Battle_chip_R','Illusion Battle chip R','Armor',20,100,1,true,130,'bonus bMatkRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (32210,'Illusion_Battle_chip_L','Illusion Battle chip L','Armor',20,100,1,true,130,'bonus bMatkRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (32222,'Brooch_of_Hero','Brooch of Hero','Armor',20,400,1,true,true,100,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; if((eaclass()&EAJL_THIRD && BaseJob == Job_Knight) || ((eaclass()&EAJL_THIRD && BaseJob == Job_Crusader))) { bonus bMaxHPrate,10; bonus2 bAddRace,RC_All,5; } if((eaclass()&EAJL_THIRD && BaseJob == Job_Priest) || ((eaclass()&EAJL_THIRD && BaseJob == Job_Monk))) { bonus bAspdRate,10; bonus2 bAddRace,RC_All,5; } if((eaclass()&EAJL_THIRD && BaseJob == Job_Blacksmith) || ((eaclass()&EAJL_THIRD && BaseJob == Job_Alchemist))) { bonus bUseSPrate,-10; bonus2 bAddRace,RC_All,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (32227,'Hrodvitnir\'s_Chain','Hrodvitnir\'s Chain','Armor',20,300,1,true,true,100,'bonus bAspdRate,5; bonus bDelayrate,-5; skill "AL_TELEPORT",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (32228,'Schmidt_Insignia_Power','King Schmidt\'s Power Insignia','Armor',200,10,1,true,150,'bonus2 bAddClass,Class_All,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (32229,'Schmidt_Insignia_Divine_Power','King Schmidt\'s Divine Power Insignia','Armor',200,10,1,true,150,'bonus bMatkRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (32230,'Schmidt_Insignia_Hundred_Lucks','King Schmidt\'s Hundred Lucks Insignia','Armor',200,10,1,true,150,'bonus bCritAtkRate,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (32231,'Schmidt_Insignia_Rigid_Body','King Schmidt\'s Rigid Body Insignia','Armor',200,10,1,true,150,'bonus bMaxHPrate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (32232,'Schmidt_Insignia_Flash','King Schmidt\'s Flash Insignia','Armor',200,10,1,true,150,'bonus bAspdRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (32233,'Schmidt_Insignia_Celestial','King Schmidt\'s Celestial Insignia','Armor',200,10,1,true,150,'bonus bLongAtkRate,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (32234,'Warrior\'s_Ring','Warrior\'s Ring','Armor',300,1,true,true,100,'bonus2 bAddClass,Class_All,5; bonus2 bMagicAddClass,Class_All,5; bonus2 bAddEle,Ele_Wind,10; bonus2 bAddEle,Ele_Earth,10; bonus2 bMagicAddEle,Ele_Wind,10; bonus2 bMagicAddEle,Ele_Earth,10; bonus2 bSubEle,Ele_Wind,5; bonus2 bSubEle,Ele_Earth,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (32237,'Celine\'s_Brooch','Celine\'s Brooch','Armor',10,500,1,true,false,false,true,true,100,'bonus bMatkRate,5; bonus bVariableCastrate,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`equip_level_min`,`script`) VALUES (32238,'Illusion_Morpheus\'s_Ring','Illusion Morpheus\'s Ring','Armor',20,100,1,true,130,'bonus bInt,3; bonus bMaxSPrate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (32239,'Illusion_Morpheus\'s_Bracelet','Illusion Morpheus\'s Bracelet','Armor',20,100,1,true,130,'bonus bInt,3; bonus bMaxSPrate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (32242,'Old_Detachment_Ring','Old Detachment Ring','Armor',20,true,true,100,'bonus bMdef,10; bonus2 bSubRace,RC_Player_Human,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (32258,'Ring_of_Jupiter','Ring of Jupiter','Armor',20,500,2,1,true,true,100,'skill "AL_BLESSING",5; if (getequipid(EQI_ACC_R) == 32258) { bonus bBaseAtk,15*(readparam(bLuk)/10); bonus bMatk,15*(readparam(bLuk)/10); if (readparam(bLuk) >= 125) { bonus2 bAddClass,Class_Boss,15; bonus2 bMagicAddClass,Class_Boss,15; } } if (getequipid(EQI_ACC_L) == 32258) { bonus bMaxHPRate,2*(readparam(bVit)/10); bonus bMaxSPRate,2*(readparam(bVit)/10); if (readparam(bVit) >= 125) { bonus bDef,300; bonus bMdef,50; bonus2 bSubRace,RC_Player_Human,3; } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (32262,'Rasen_Fuma_Orb','Rasen Fuma\'s Orb','Armor',20,100,1,true,true,100,'bonus bStr,5; bonus bAgi,5; bonus bVit,5; bonus2 bAddClass,Class_All,5; if (getskilllv("KO_ZANZOU")>=5) { bonus2 bSkillAtk,"KO_HUUMARANKA",Baselevel/4; bonus2 bSkillAtk,"NJ_HUUMA",2*(Baselevel/4); } if (getskilllv("KO_KYOUGAKU")>=5) { bonus2 bSkillUseSP,"KO_HUUMARANKA",10; bonus2 bSkillCooldown,"KO_HUUMARANKA",-100; } if (getskilllv("KO_MUCHANAGE")==10) { bonus2 bHPDrainRate,50,1; } if (getskilllv("KO_MEIKYOUSISUI")>=5) { bonus bSPDrainValue,2; bonus2 bSkillCooldown,"KO_IZAYOI",-25000; } if (getskilllv("KO_SETSUDAN")>=5) { bonus2 bVariableCastrate,"KO_HUUMARANKA",-50; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (32263,'Shield_Ring','Shield Ring','Armor',20,400,1,true,true,100,'bonus bStr,5; bonus bInt,5; bonus bDex,5; bonus2 bAddClass,Class_All,5; if (getskilllv("LG_EARTHDRIVE")==5) bonus bDelayrate,-30; if (getskilllv("LG_INSPIRATION")==5) bonus2 bSkillCooldown,"LG_EARTHDRIVE",-1500; if (getskilllv("CR_DEVOTION")==5) { bonus bStr,5; bonus bInt,5; bonus bDex,5; bonus bBaseAtk,100; } if (getskilllv("LG_PINPOINTATTACK")==5) { bonus2 bSkillVariableCast,"LG_EARTHDRIVE",-500; bonus2 bSkillUseSP,"LG_EARTHDRIVE",25; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32301,'Illusion_Gold_Lux','Illusion Gold Lux','Weapon','Revolver',20,1800,160,7,2,true,true,true,true,4,120,true,'.@r = getrefine(); bonus bHit,10; bonus bLongAtkRate,3*(.@r/2); if (.@r >= 7) { bonus2 bSkillAtk,"GS_DESPERADO",40; if (.@r >= 9) { bonus2 bSkillCooldown,"RL_HEAT_BARREL",-2000; if (.@r >= 11) { bonus2 bSkillAtk,"RL_FIREDANCE",30; } } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32302,'Crimson_Rose','Crimson Rose','Weapon','Revolver',20,700,150,7,2,true,true,true,4,100,true,'.@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,3*(.@r/3); if (.@r >= 7) { bonus bAspd,1; bonus2 bAddClass,Class_All,5; if (.@r >= 9) { bonus bCritAtkRate,20; if (.@r >= 11) { autobonus3 "{ bonus bCritical,20; bonus bLongAtkRate,15; }",1000,60000,"RL_HEAT_BARREL"; } } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_crusader`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32350,'Farthezan','Farthezan','Weapon','1hSword',20,1100,130,180,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus2 bSkillAtk,"PA_PRESSURE",40; bonus bVariableCastrate,-.@r; if (.@r>=9) bonus2 bSkillAtk,"LG_RAYOFGENESIS",30; if (.@r>=11) { bonus2 bSkillAtk,"LG_RAYOFGENESIS",20; bonus2 bSkillAtk,"PA_PRESSURE",20; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32351,'Estal','Estal','Weapon','1hSword',20,700,195,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus2 bSkillCooldown,"GN_SPORE_EXPLOSION",-1000; bonus bBaseAtk,4*.@r; if (.@r>=11) .@val = 50; else if (.@r>=9) .@val = 30; bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450018,'Noblesse_Breath_Armor','Noblesse Breath Armor','Armor',20,100,1,true,true,true,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMaxHPrate,5; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus bMaxHPrate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450019,'Noblesse_Knight_Armor','Noblesse Knight Armor','Armor',20,100,1,true,true,true,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bCritAtkRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_crusader`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450020,'Noblesse_Spear_Armor','Noblesse Spear Armor','Armor',20,100,1,true,true,true,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bLongAtkRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_crusader`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450021,'Noblesse_Genesis_Armor','Noblesse Genesis Armor','Armor',20,100,1,true,true,true,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Holy,5; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Holy,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450022,'Noblesse_Sharp_Suit','Noblesse Sharp Suit','Armor',20,70,1,true,true,true,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bLongAtkRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450023,'Noblesse_Aimed_suit','Noblesse Aimed suit','Armor',20,70,1,true,true,true,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bLongAtkRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450024,'Noblesse_Severe_Suit','Noblesse Severe Suit','Armor',20,70,1,true,true,true,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus bLongAtkRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450025,'Noblesse_Reverb_Suit','Noblesse Reverb Suit','Armor',20,70,1,true,true,true,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Neutral,5; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450026,'Noblesse_Adora_Robe','Noblesse Adora Robe','Armor',20,70,1,true,true,true,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Holy,5; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Holy,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450027,'Noblesse_Duple_Robe','Noblesse Duple Robe','Armor',20,70,1,true,true,true,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bCritAtkRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450028,'Noblesse_Tornado_Armor','Noblesse Tornado Armor','Armor',20,70,1,true,true,true,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus2 bAddSize,Size_All,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450029,'Noblesse_Vulcan_Armor','Noblesse Vulcan Armor','Armor',20,70,1,true,true,true,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bLongAtkRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450030,'Noblesse_Cart_Cannon_Suit','Noblesse Cart Cannon Suit','Armor',20,70,1,true,true,true,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus bLongAtkRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450031,'Noblesse_Cart_Tornado_Suit','Noblesse Cart Tornado Suit','Armor',20,70,1,true,true,true,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus2 bAddSize,Size_All,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450032,'Noblesse_Rolling_Suit','Noblesse Rolling Suit','Armor',20,70,1,true,true,true,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bLongAtkRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450033,'Noblesse_Assassin_Suit','Noblesse Assassin Suit','Armor',20,70,1,true,true,true,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bCritAtkRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450034,'Noblesse_Fatal_Suit','Noblesse Fatal Suit','Armor',20,70,1,true,true,true,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus2 bAddSize,Size_All,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450035,'Noblesse_Stalker_Suit','Noblesse Stalker Suit','Armor',20,70,1,true,true,true,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Fire,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450036,'Noblesse_Picky_Robe','Noblesse Picky Robe','Armor',20,70,1,true,true,true,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus bLongAtkRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450037,'Noblesse_Catnip_Robe','Noblesse Catnip Robe','Armor',20,70,1,true,true,true,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_rebellion`,`location_armor`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450038,'Noblesse_Trip_Suit','Noblesse Trip Suit','Armor',20,70,1,true,true,100,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus2 bAddClass,Class_All,5; if(.@r>=9) bonus bLongAtkRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_rebellion`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450039,'Noblesse_Fire_Rain_Suit','Noblesse Fire Rain Suit','Armor',20,70,1,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus2 bAddClass,Class_All,5; if(.@r>=9) bonus bLongAtkRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450040,'Noblesse_Crimson_Robe','Noblesse Crimson Robe','Armor',20,70,1,true,true,true,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Fire,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450041,'Noblesse_Frost_Robe','Noblesse Frost Robe','Armor',20,70,1,true,true,true,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Water,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450042,'Noblesse_Psychic_Robe','Noblesse Psychic Robe','Armor',20,70,1,true,true,true,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450043,'Noblesse_Dust_Robe','Noblesse Dust Robe','Armor',20,70,1,true,true,true,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Water,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_stargladiator`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450044,'Noblesse_Sun_Suit','Noblesse Sun Suit','Armor',20,70,1,true,true,true,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus2 bAddClass,Class_All,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_stargladiator`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450045,'Noblesse_Moon_Suit','Noblesse Moon Suit','Armor',20,70,1,true,true,true,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus2 bAddSize,Size_All,5; if(.@r>=9) bonus2 bAddClass,Class_All,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_kagerouoboro`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450046,'Noblesse_Ninja_Suit','Noblesse Ninja Suit','Armor',20,70,1,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_All,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_kagerouoboro`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450047,'Noblesse_Kunai_Suit','Noblesse Kunai Suit','Armor',20,70,1,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus2 bAddClass,Class_All,5; if(.@r>=9) bonus bLongAtkRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_soullinker`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450048,'Noblesse_Eswhoo_Robe','Noblesse Eswhoo Robe','Armor',20,70,1,true,true,true,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Dark,5; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Dark,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_soullinker`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450049,'Noblesse_Explosion_Robe','Noblesse Explosion Robe','Armor',20,70,1,true,true,true,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Dark,5; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Dark,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_monk`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450050,'Noblesse_Knuckle_Suit','Noblesse Knuckle Suit','Armor',20,70,1,true,true,true,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bMaxSPrate,10; if(.@r>=9) bonus2 bAddSize,Size_All,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_monk`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450051,'Noblesse_Tiger_Suit','Noblesse Tiger Suit','Armor',20,70,1,true,true,true,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMaxSPrate,5; if(.@r>=7) bonus bMaxHPrate,3; if(.@r>=9) bonus bMaxHPrate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450052,'Imperial_Breath_Armor','Imperial Breath Armor','Armor',20,120,1,true,true,true,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMaxHPrate,7; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus bMaxHPrate,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450053,'Imperial_Knight_Armor','Imperial Knight Armor','Armor',20,120,1,true,true,true,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bCritAtkRate,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_crusader`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450054,'Imperial_Spear_Armor','Imperial Spear Armor','Armor',20,120,1,true,true,true,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bLongAtkRate,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_crusader`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450055,'Imperial_Genesis_Armor','Imperial Genesis Armor','Armor',20,120,1,true,true,true,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Holy,7; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Holy,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450056,'Imperial_Sharp_Suit','Imperial Sharp Suit','Armor',20,90,1,true,true,true,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bLongAtkRate,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450057,'Imperial_Aimed_Suit','Imperial Aimed Suit','Armor',20,90,1,true,true,true,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bLongAtkRate,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450058,'Imperial_Severe_Suit','Imperial Severe Suit','Armor',20,90,1,true,true,true,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus bLongAtkRate,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450059,'Imperial_Reverb_Suit','Imperial Reverb Suit','Armor',20,90,1,true,true,true,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Neutral,7; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450060,'Imperial_Adora_Robe','Imperial Adora Robe','Armor',20,90,1,true,true,true,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Holy,7; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Holy,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450061,'Imperial_Duple_Robe','Imperial Duple Robe','Armor',20,90,1,true,true,true,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bCritAtkRate,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_monk`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450062,'Imperial_Knuckle_Suit','Imperial Knuckle Suit','Armor',20,90,1,true,true,true,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bMaxSPrate,15; if(.@r>=9) bonus2 bAddSize,Size_All,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_monk`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450063,'Imperial_Tiger_Suit','Imperial Tiger Suit','Armor',20,90,1,true,true,true,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMaxSPrate,7; if(.@r>=7) bonus bMaxHPrate,4; if(.@r>=9) bonus bMaxHPrate,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450064,'Imperial_Tornado_Armor','Imperial Tornado Armor','Armor',20,90,1,true,true,true,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus2 bAddSize,Size_All,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450065,'Imperial_Vulcan_Armor','Imperial Vulcan Armor','Armor',20,90,1,true,true,true,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bLongAtkRate,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450066,'Imperial_Cart_Cannon_Suit','Imperial Cart Cannon Suit','Armor',20,90,1,true,true,true,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus bLongAtkRate,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450067,'Imperial_Cart_Tornado_Suit','Imperial Cart Tornado Suit','Armor',20,90,1,true,true,true,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus2 bAddSize,Size_All,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450068,'Imperial_Rolling_Suit','Imperial Rolling Suit','Armor',20,90,1,true,true,true,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bLongAtkRate,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450069,'Imperial_Assassin_Suit','Imperial Assassin Suit','Armor',20,90,1,true,true,true,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bCritAtkRate,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450070,'Imperial_Fatal_Suit','Imperial Fatal Suit','Armor',20,90,1,true,true,true,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus2 bAddSize,Size_All,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450071,'Imperial_Stalker_Suit','Imperial Stalker Suit','Armor',20,90,1,true,true,true,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Fire,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450072,'Imperial_Picky_Robe','Imperial Picky Robe','Armor',20,90,1,true,true,true,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus bLongAtkRate,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450073,'Imperial_Catnip_Robe','Imperial Catnip Robe','Armor',20,90,1,true,true,true,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_rebellion`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450074,'Imperial_Trip_Suit','Imperial Trip Suit','Armor',20,90,1,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus2 bAddClass,Class_All,7; if(.@r>=9) bonus bLongAtkRate,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_rebellion`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450075,'Imperial_Fire_Rain_Suit','Imperial Fire Rain Suit','Armor',20,90,1,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus2 bAddClass,Class_All,7; if(.@r>=9) bonus bLongAtkRate,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450076,'Imperial_Crimson_Robe','Imperial Crimson Robe','Armor',20,90,1,true,true,true,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Fire,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450077,'Imperial_Frost_Robe','Imperial Frost Robe','Armor',20,90,1,true,true,true,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Water,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450078,'Imperial_Psychic_Robe','Imperial Psychic Robe','Armor',20,90,1,true,true,true,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450079,'Imperial_Dust_Robe','Imperial Dust Robe','Armor',20,90,1,true,true,true,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Water,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_stargladiator`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450080,'Imperial_Sun_Suit','Imperial Sun Suit','Armor',20,90,1,true,true,true,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus2 bAddClass,Class_All,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_stargladiator`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450081,'Imperial_Moon_Suit','Imperial Moon Suit','Armor',20,90,1,true,true,true,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus2 bAddSize,Size_All,7; if(.@r>=9) bonus2 bAddClass,Class_All,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_kagerouoboro`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450082,'Imperial_Ninja_Suit','Imperial Ninja Suit','Armor',20,90,1,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus2 bMagicAtkEle,Ele_All,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_kagerouoboro`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450083,'Imperial_Kunai_Suit','Imperial Kunai Suit','Armor',20,90,1,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus2 bAddClass,Class_All,7; if(.@r>=9) bonus bLongAtkRate,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_soullinker`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450084,'Imperial_Eswhoo_Robe','Imperial Eswhoo Robe','Armor',20,90,1,true,true,true,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Dark,7; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Dark,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_soullinker`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450085,'Imperial_Explosion_Robe','Imperial Explosion Robe','Armor',20,90,1,true,true,true,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Dark,7; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Dark,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450086,'Grace_Breath_Armor','Grace Breath Armor','Armor',20,130,1,true,true,true,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMaxHPrate,10; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus bMaxHPrate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450087,'Grace_Knight_Armor','Grace Knight Armor','Armor',20,130,1,true,true,true,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bCritAtkRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_crusader`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450088,'Grace_Spear_Armor','Grace Spear Armor','Armor',20,130,1,true,true,true,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bLongAtkRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_crusader`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450089,'Grace_Genesis_Armor','Grace Genesis Armor','Armor',20,130,1,true,true,true,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Holy,10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Holy,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450090,'Grace_Sharp_Suit','Grace Sharp Suit','Armor',20,100,1,true,true,true,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bLongAtkRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450091,'Grace_Aimed_Suit','Grace Aimed Suit','Armor',20,100,1,true,true,true,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bLongAtkRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450092,'Grace_Severe_Suit','Grace Severe Suit','Armor',20,100,1,true,true,true,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus bLongAtkRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450093,'Grace_Reverb_Suit','Grace Reverb Suit','Armor',20,100,1,true,true,true,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Neutral,10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450094,'Grace_Adora_Robe','Grace Adora Robe','Armor',20,100,1,true,true,true,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Holy,10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Holy,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450095,'Grace_Duple_Robe','Grace Duple Robe','Armor',20,100,1,true,true,true,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bCritAtkRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_monk`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450096,'Grace_Knuckle_Suit','Grace Knuckle Suit','Armor',20,100,1,true,true,true,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bMaxSPrate,20; if(.@r>=9) bonus2 bAddSize,Size_All,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_monk`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450097,'Grace_Tiger_Suit','Grace Tiger Suit','Armor',20,100,1,true,true,true,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMaxSPrate,10; if(.@r>=7) bonus bMaxHPrate,5; if(.@r>=9) bonus bMaxHPrate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450098,'Grace_Tornado_Armor','Grace Tornado Armor','Armor',20,100,1,true,true,true,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus2 bAddSize,Size_All,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450099,'Grace_Vulcan_Armor','Grace Vulcan Armor','Armor',20,100,1,true,true,true,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bLongAtkRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450100,'Grace_Cart_Cannon_Suit','Grace Cart Cannon Suit','Armor',20,100,1,true,true,true,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus bLongAtkRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450101,'Grace_Cart_Tornado_Suit','Grace Cart Tornado Suit','Armor',20,100,1,true,true,true,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus2 bAddSize,Size_All,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450102,'Grace_Rolling_Suit','Grace Rolling Suit','Armor',20,100,1,true,true,true,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bLongAtkRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450103,'Grace_Assassin_Suit','Grace Assassin Suit','Armor',20,100,1,true,true,true,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bCritAtkRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450104,'Grace_Fatal_Suit','Grace Fatal Suit','Armor',20,100,1,true,true,true,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus2 bAddSize,Size_All,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450105,'Grace_Stalker_Suit','Grace Stalker Suit','Armor',20,100,1,true,true,true,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Fire,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450106,'Grace_Picky_Robe','Grace Picky Robe','Armor',20,100,1,true,true,true,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus bLongAtkRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450107,'Grace_Catnip_Robe','Grace Catnip Robe','Armor',20,100,1,true,true,true,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_rebellion`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450108,'Grace_Trip_Suit','Grace Trip Suit','Armor',20,100,1,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus2 bAddClass,Class_All,10; if(.@r>=9) bonus bLongAtkRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_rebellion`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450109,'Grace_Fire_Rain_Suit','Grace Fire Rain Suit','Armor',20,100,1,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus2 bAddClass,Class_All,10; if(.@r>=9) bonus bLongAtkRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450110,'Grace_Crimson_Robe','Grace Crimson Robe','Armor',20,100,1,true,true,true,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Fire,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450111,'Grace_Frost_Robe','Grace Frost Robe','Armor',20,100,1,true,true,true,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Water,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450112,'Grace_Psychic_Robe','Grace Psychic Robe','Armor',20,100,1,true,true,true,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450113,'Grace_Dust_Robe','Grace Dust Robe','Armor',20,100,1,true,true,true,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Water,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_stargladiator`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450114,'Grace_Sun_Suit','Grace Sun Suit','Armor',20,100,1,true,true,true,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus2 bAddClass,Class_All,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_stargladiator`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450115,'Grace_Moon_Suit','Grace Moon Suit','Armor',20,100,1,true,true,true,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus2 bAddSize,Size_All,10; if(.@r>=9) bonus2 bAddClass,Class_All,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_kagerouoboro`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450116,'Grace_Ninja_Suit','Grace Ninja Suit','Armor',20,100,1,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus2 bMagicAtkEle,Ele_All,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_kagerouoboro`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450117,'Grace_Kunai_Suit','Grace Kunai Suit','Armor',20,100,1,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus2 bAddClass,Class_All,10; if(.@r>=9) bonus bLongAtkRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_soullinker`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450118,'Grace_Eswhoo_Robe','Grace Eswhoo Robe','Armor',20,100,1,true,true,true,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Dark,10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Dark,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_soullinker`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450119,'Grace_Explosion_Robe','Grace Explosion Robe','Armor',20,100,1,true,true,true,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Dark,10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Dark,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450121,'Noblesse_Super_Novice_Suit','Noblesse Super Novice Suit','Armor',20,70,1,true,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bMaxHPrate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450122,'Noblesse_Super_Novice_Robe','Noblesse Super Novice Robe','Armor',20,70,1,true,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bMaxHPrate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450123,'Imperial_Super_Novice_Suit','Imperial Super Novice Suit','Armor',20,90,1,true,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bMaxHPrate,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450124,'Imperial_Super_Novice_Robe','Imperial Super Novice Robe','Armor',20,90,1,true,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bMaxHPrate,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450125,'Grace_Super_Novice_Suit','Grace Super Novice Suit','Armor',20,100,1,true,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bMaxHPrate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450126,'Grace_Super_Novice_Robe','Grace Super Novice Robe','Armor',20,100,1,true,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bMaxHPrate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (470016,'Noblesse_Attack_Boots','Noblesse Attack Boots','Armor',20,1,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,10; bonus bHit,10; if (.@r>=7) bonus bFixedCast,-500; if (.@r>=9) bonus bLongAtkRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (470017,'Noblesse_Magic_Boots','Noblesse Magic Boots','Armor',20,1,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,10; bonus bFlee,10; if (.@r>=7) bonus bFixedCast,-500; if (.@r>=9) bonus2 bMagicAtkEle,Ele_All,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (470018,'Imperial_Attack_Boots','Imperial Attack Boots','Armor',25,1,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,15; bonus bHit,15; if (.@r>=7) bonus bFixedCast,-500; if (.@r>=9) bonus bLongAtkRate,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (470019,'Imperial_Magic_Boots','Imperial Magic Boots','Armor',25,1,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,15; bonus bFlee,15; if (.@r>=7) bonus bFixedCast,-500; if (.@r>=9) bonus2 bMagicAtkEle,Ele_All,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (470020,'Grace_Attack_Boots','Grace Attack Boots','Armor',30,1,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,20; bonus bHit,20; if (.@r>=7) bonus bFixedCast,-500; if (.@r>=9) bonus bLongAtkRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (470021,'Grace_Magic_Boots','Grace Magic Boots','Armor',30,1,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,20; bonus bFlee,20; if (.@r>=7) bonus bFixedCast,-500; if (.@r>=9) bonus2 bMagicAtkEle,Ele_All,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (480012,'Noblesse_Attack_Manteau','Noblesse Attack Manteau','Armor',20,1,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bAspdRate,3; if (.@r>=7) bonus bDelayrate,-5; if (.@r>=9) bonus2 bAddSize,Size_All,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (480014,'Noblesse_Magic_Manteau','Noblesse Magic Manteau','Armor',20,1,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bVariableCastrate,-5; if (.@r>=7) bonus bDelayrate,-5; if (.@r>=9) bonus2 bMagicAtkEle,Ele_All,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (480016,'Imperial_Attack_Manteau','Imperial Attack Manteau','Armor',25,1,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bAspdRate,5; if (.@r>=7) bonus bDelayrate,-5; if (.@r>=9) bonus2 bAddSize,Size_All,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (480017,'Imperial_Magic_Manteau','Imperial Magic Manteau','Armor',25,1,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bVariableCastrate,-7; if (.@r>=7) bonus bDelayrate,-5; if (.@r>=9) bonus2 bMagicAtkEle,Ele_All,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (480018,'Grace_Attack_Manteau','Grace Attack Manteau','Armor',30,1,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bAspdRate,7; if (.@r>=7) bonus bDelayrate,-5; if (.@r>=9) bonus2 bAddSize,Size_All,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (480019,'Grace_Magic_Manteau','Grace Magic Manteau','Armor',30,1,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bVariableCastrate,-10; if (.@r>=7) bonus bDelayrate,-5; if (.@r>=9) bonus2 bMagicAtkEle,Ele_All,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`location_right_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (490014,'Noblesse_Attack_Ring','Noblesse Attack Ring','Armor',5,1,true,100,100,true,true,true,true,true,true,true,'bonus bAspdRate,3; bonus bVariableCastrate,-5; bonus bCritAtkRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`location_right_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (490015,'Noblesse_Magic_Ring','Noblesse Magic Ring','Armor',5,1,true,100,100,true,true,true,true,true,true,true,'bonus bAspdRate,3; bonus bVariableCastrate,-5; bonus2 bMagicAddEle,Ele_All,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_right_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (490017,'Imperial_Attack_Ring','Imperial Attack Ring','Armor',50,1,true,125,100,true,true,true,true,true,true,true,'bonus bAspdRate,5; bonus bVariableCastrate,-7; bonus bCritAtkRate,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_right_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (490018,'Imperial_Magic_Ring','Imperial Magic Ring','Armor',50,1,true,125,100,true,true,true,true,true,true,true,'bonus bAspdRate,5; bonus bVariableCastrate,-7; bonus2 bMagicAddEle,Ele_All,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_right_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (490019,'Grace_Attack_Ring','Grace Attack Ring','Armor',50,1,true,150,100,true,true,true,true,true,true,true,'bonus bAspdRate,7; bonus bVariableCastrate,-10; bonus bCritAtkRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_right_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (490020,'Grace_Magic_Ring','Grace Magic Ring','Armor',50,1,true,150,100,true,true,true,true,true,true,true,'bonus bAspdRate,7; bonus bVariableCastrate,-10; bonus2 bMagicAddEle,Ele_All,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (500013,'Up_Sword_Of_Bluefire','Patent Red Lotus Sword','Weapon','1hSword',1000,200,1,2,true,true,true,true,true,4,150,true,'.@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bLongAtkRate,.@r/3*4; if (.@r>=7){ bonus2 bSkillUseSPrate,"GN_CARTCANNON",-10; bonus bVariableCastrate,-7; } if (.@r>=9){ bonus2 bSkillAtk,"GN_CARTCANNON",20; } if (.@r>=11){ bonus bVariableCastrate,-5; bonus2 bSkillAtk,"CR_ACIDDEMONSTRATION",10; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (500014,'Up_Slate_Sword','Patent Slate Sword','Weapon','1hSword',1200,205,1,2,true,true,true,true,true,4,150,true,'.@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus2 bSkillAtk,"GN_CART_TORNADO",.@r/3*10; bonus2 bSkillAtk,"GN_HELLS_PLANT",.@r/3*5; if (.@r>=7){ bonus2 bSkillAtk,"GN_CART_TORNADO",20; bonus2 bSkillAtk,"GN_HELLS_PLANT",10; } if (.@r>=9){ bonus bDelayRate,-10; } if (.@r>=11){ bonus bDelayRate,-5; bonus bMaxHPrate,10; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_crusader`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (500017,'Up_Light_Blade','Patent Light Blade','Weapon','1hSword',1200,130,195,1,2,true,true,true,true,true,4,150,true,'.@r = getrefine(); bonus bMatk,.@r/2*15; bonus2 bSkillAtk,"PA_PRESSURE",.@r/3*5; bonus2 bSkillAtk,"LG_RAYOFGENESIS",.@r/3*5; if (.@r>=7){ bonus bVariableCastrate,-10; } if (.@r>=9){ bonus2 bMagicAtkEle,Ele_Holy,15; } if (.@r>=11){ bonus2 bMagicAddSize,Size_All,15; bonus2 bSkillAtk,"PA_PRESSURE",15; bonus2 bSkillAtk,"LG_RAYOFGENESIS",15; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (510006,'Fatalist','Fatalist','Weapon','Dagger',900,165,1,2,true,true,true,true,true,4,100,true,'.@r = getrefine(); bonus bBaseAtk,.@r/2*10; bonus bAspdRate,(.@r*2/3); if (.@r>=9) { bonus2 bSkillAtk,"SC_FATALMENACE",20; } if (.@r>=11) { bonus bDelayRate,-7; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (510019,'Up_Magic_Sword','Patent Madogum','Weapon','Dagger',800,150,195,1,2,true,true,true,true,true,4,150,true,'.@r = getrefine(); bonus bMatk,.@r/2*15; bonus bAspdRate,(.@r/3*2); if (.@r>=7){ bonus5 bAutoSpell,"WZ_METEOR",7,100,BF_SHORT,1; } if (.@r>=9){ bonus2 bMagicAtkEle,Ele_All,15; } if (.@r>=11){ bonus5 bAutoSpell,"SO_PSYCHIC_WAVE",4,100,BF_SHORT,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (510020,'Up_Fatalist','Patent Fatalist','Weapon','Dagger',1200,205,1,2,true,true,true,true,true,4,150,true,'.@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bAspdRate,(.@r*2/3); if (.@r>=7){ bonus2 bSkillAtk,"SC_FATALMENACE",25; } if (.@r>=9){ bonus2 bSkillUseSPrate,"SC_FATALMENACE",-15; bonus bDelayRate,-7; } if (.@r>=11){ bonus bShortAtkRate,10; bonus bDelayRate,-7; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_kagerouoboro`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (510022,'Up_Fog_Dew_Sword','Patent Kiri no Tsuyu','Weapon','Dagger',20,1200,190,1,2,true,true,true,4,150,true,'/*Is combo set with 28763 Surudoi Kaze*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (530006,'Up_Undine_Spear_K','Patent Aquatic Spear','Weapon','1hSpear',20,1400,195,3,2,true,true,true,true,true,4,150,true,'.@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bLongAtkRate,.@r/3*4; if (.@r>=7){ bonus2 bSkillAtk,"LG_CANNONSPEAR",15; bonus2 bSkillAtk,"LG_BANISHINGPOINT",15; bonus bAspdRate,10; } if (.@r>=9){ bonus2 bSkillAtk,"LG_CANNONSPEAR",20; bonus2 bSkillAtk,"LG_BANISHINGPOINT",20; } if (.@r>=11){ bonus bPerfectHitAddRate,7; bonus bMaxSPrate,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_stargladiator`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (540010,'Up_Thousand_Sun','Patent One Sky One Sun','Weapon','Book',1100,200,1,2,true,true,true,true,true,4,150,true,'.@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bShortAtkRate,4*(.@r/3); if (.@r>=7){ bonus2 bSkillAtk,"SJ_PROMINENCEKICK",20; bonus bAspdRate,10; } if (.@r>=9){ bonus2 bSkillAtk,"SJ_SOLARBURST",25; } if (.@r>=11){ bonus2 bAddSize,Size_All,15; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (540011,'Up_Demon_Hunting_Bible','Patent Exorcist\'s Bible','Weapon','Book',20,700,205,190,1,2,true,true,true,true,true,4,150,true,'.@r = getrefine(); bonus bBaseAtk,.@r/2*10; bonus bMatk,.@r/2*10; bonus2 bSkillAtk,"AB_DUPLELIGHT",25*(.@r/3); bonus2 bSkillAtk,"AB_JUDEX",25*(.@r/3); if (.@r>=7){ bonus bAspdRate,10; bonus2 bMagicAtkEle,Ele_Holy,15; } if (.@r>=9){ bonus2 bSkillAtk,"AB_DUPLELIGHT",30; bonus2 bSkillAtk,"AB_JUDEX",30; } if (.@r>=11){ .@i = getskilllv("AB_JUDEX"); bonus3 bAutoSpell,"AB_JUDEX",(.@i > 5 ? .@i : 5),100; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (550007,'Freezing_Rod','Chilling Cane','Weapon','Staff',500,40,150,1,2,true,true,true,true,true,4,100,true,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,.@r/2*10; bonus2 bSkillAtk,"SO_DIAMONDDUST",.@r/3*8; if (.@r>=9) { bonus2 bMagicAddEle,Ele_Undead,10; } if (.@r>=11) { bonus2 bMagicAtkEle,Ele_Water,7; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_sage`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (550012,'Up_Shadow_Staff_K','Patent Shadow Staff','Weapon','Staff',20,750,40,195,1,2,true,true,true,4,150,true,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,.@r/2*15; bonus2 bSkillAtk,"SO_EARTHGRAVE",12*(.@r/3); if (.@r>=7){ bonus2 bMagicAtkEle,Ele_Earth,15; bonus2 bMagicAtkEle,Ele_Neutral,15; } if (.@r>=9){ bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",25; bonus bVariableCastrate,-7; } if (.@r>=11){ bonus bVariableCastrate,-8; bonus2 bSkillCooldown,"SO_PSYCHIC_WAVE",-1000; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (550013,'Up_Freezing_Rod','Patent Chilling Cane','Weapon','Staff',750,40,195,1,2,true,true,true,true,true,4,150,true,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,.@r/2*10; bonus2 bSkillAtk,"SO_DIAMONDDUST",.@r/3*12; if (.@r>=7){ bonus2 bMagicAddEle,Ele_All,15; bonus2 bSkillAtk,"SO_VARETYR_SPEAR",15; } if (.@r>=9){ bonus2 bSkillAtk,"SO_VARETYR_SPEAR",20; bonus bVariableCastrate,-7; } if (.@r>=11){ bonus bVariableCastrate,-8; bonus2 bSkillCooldown,"SO_VARETYR_SPEAR",-2000; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (550014,'Up_MeawFoxtail','Patent Meowmeow Foxtail','Weapon','Staff',20,1200,350,350,1,2,true,true,true,true,true,4,150,true,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,15*(.@r/2); bonus bBaseAtk,15*(.@r/2); bonus2 bAddClass,Class_All,2*(.@r/3); bonus bMatkRate,2*(.@r/3); if (.@r>=7){ bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",25; bonus2 bSkillAtk,"SU_SV_STEMSPEAR",25; } if (.@r>=9){ bonus bVariableCastrate,-10; bonus bAspdRate,10; } if (.@r>=11){ bonus2 bSkillAtk,"SU_PICKYPECK",25; bonus2 bSkillAtk,"SU_CN_METEOR",25; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_soullinker`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (550015,'Up_Spirit_Pendulum_','Patent Spirit Pendulum','Weapon','Staff',1200,70,190,1,2,true,true,true,true,true,4,150,true,'.@r = getrefine(); bonus bMatk,15*(.@r/2); bonus2 bMagicAddEle,Ele_All,2*(.@r/3); if (.@r>=7){ bonus2 bSkillAtk,"SP_SPA",15; bonus bVariableCastrate,-10; } if (.@r>=9){ bonus2 bSkillAtk,"SP_SWHOO",20; } if (.@r>=11){ autobonus "{ bonus2 bSPRegenRate,230,10000; }",70,10000,BF_MAGIC; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_monk`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (560002,'Ray_Knuckle','Ray Knuckle','Weapon','Knuckle',700,185,1,2,true,true,true,true,true,4,100,true,'.@r = getrefine(); bonus bBaseAtk,.@r/2*10; bonus2 bSkillAtk,"SR_TIGERCANNON",.@r/3*4; if (.@r>=9) { bonus2 bSkillAtk,"SR_TIGERCANNON",15; } if (.@r>=11) { bonus2 bSkillCooldown,"SR_TIGERCANNON",-1000; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_monk`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (560008,'Up_Iron_Nail_K','Patent Iron Nail','Weapon','Knuckle',1200,205,1,2,true,true,true,true,true,4,150,true,'.@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bLongAtkRate,.@r/3*4; if (.@r>=7){ bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",10; bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",10; } if (.@r>=9){ bonus2 bSkillCooldown,"SR_RAMPAGEBLASTER",-1000; bonus2 bSkillCooldown,"SR_EARTHSHAKER",-1000; } if (.@r>=11){ bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",15; bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",15; bonus2 bSkillUseSPrate,"SR_RAMPAGEBLASTER",-15; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_monk`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (560009,'Up_Ray_Knuckle','Patent Ray Knuckle','Weapon','Knuckle',800,205,1,2,true,true,true,true,true,4,150,true,'.@r = getrefine(); bonus bBaseAtk,15*(.@r/2); bonus2 bSkillAtk,"SR_TIGERCANNON",4*(.@r/3); if (.@r>=7){ bonus2 bSkillAtk,"SR_TIGERCANNON",15; bonus2 bSkillAtk,"SR_HELLGATE",20; } if (.@r>=9){ bonus2 bSkillCooldown,"SR_TIGERCANNON",-1000; } if (.@r>=11){ bonus bMaxHPrate,10; bonus2 bSkillAtk,"SR_HELLGATE",15; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (570009,'Up_Trumpet_Shell_K','Patent Trumpet Shell','Weapon','Musical',1000,160,230,1,2,true,true,true,true,'Male',true,4,150,true,'.@r = getrefine(); bonus bMatk,.@r/2*15; bonus2 bMagicAtkEle,Ele_All,.@r/3*4; if (.@r>=7){ bonus2 bSkillAtk,"WM_REVERBERATION",10; bonus2 bSkillAtk,"WM_METALICSOUND",10; } if (.@r>=9){ bonus2 bSkillFixedCast,WM_REVERBERATION,-500; } if (.@r>=11){ bonus bMatkRate,7; bonus2 bSkillAtk,"WM_REVERBERATION",15; bonus2 bSkillAtk,"WM_METALICSOUND",15; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (580009,'Up_Barb_Wire_K','Patent Barbed Wire Whip','Weapon','Whip',1000,160,230,1,2,true,true,true,true,'Female',true,4,150,true,'.@r = getrefine(); bonus bMatk,.@r/2*15; bonus2 bMagicAtkEle,Ele_All,.@r/3*4; if (.@r>=7){ bonus2 bSkillAtk,"WM_REVERBERATION",10; bonus2 bSkillAtk,"WM_METALICSOUND",10; } if (.@r>=9){ bonus2 bSkillFixedCast,WM_REVERBERATION,-500; } if (.@r>=11){ bonus bMatkRate,7; bonus2 bSkillAtk,"WM_REVERBERATION",15; bonus2 bSkillAtk,"WM_METALICSOUND",15; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (590003,'Saint_Hall','Saint Mace','Weapon','Mace',800,170,165,1,2,true,true,true,true,true,4,100,true,'bonus bUnbreakableWeapon; bonus bMatkRate,3; .@r = getrefine(); bonus2 bMagicAtkEle,Ele_Holy,.@r/2*1; bonus2 bSkillAtk,"AB_ADORAMUS",.@r/3*5; if (.@r>=9) { bonus bVariableCastrate,-10; } if (.@r>=11) { bonus2 bMagicAtkEle,Ele_Holy,10; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (590011,'Up_Meteor_Striker','Patent Meteor Striker','Weapon','Mace',3500,320,1,2,true,true,true,true,true,true,4,150,true,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus2 bSkillAtk,"NC_VULCANARM",.@r/3*10; bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",.@r/3*10; if (.@r>=7){ bonus2 bSkillAtk,"NC_VULCANARM",15; bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",15; } if (.@r>=9){ bonus2 bSkillAtk,"NC_ARMSCANNON",25; } if (.@r>=11){ bonus bLongAtkRate,15; bonus bVariableCastrate,-15; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (590012,'Up_Saint_Hall','Patent Saint Mace','Weapon','Mace',1000,170,200,1,2,true,true,true,true,true,4,150,true,'bonus bUnbreakableWeapon; bonus bMatkRate,3; .@r = getrefine(); bonus2 bMagicAtkEle,Ele_Holy,.@r/2*1; bonus2 bSkillAtk,"AB_ADORAMUS",.@r/3*5; if (.@r>=7){ bonus bVariableCastrate,-10; bonus2 bMagicAtkEle,Ele_Holy,10; } if (.@r>=9){ bonus2 bMagicAddRace,RC_All,15; } if (.@r>=11){ bonus2 bSkillAtk,"AB_ADORAMUS",15; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (600009,'Up_Oriental_Sword','Patent Oriental Sword','Weapon','2hSword',2000,240,1,2,true,true,true,true,true,true,4,150,true,'.@r = getrefine(); .@i = max(2,getskilllv("RK_SONICWAVE")); bonus bBaseAtk,.@r/2*15; bonus2 bSkillAtk,"RK_SONICWAVE",.@r/3*10; if (.@r>=7){ bonus bUnbreakableWeapon; bonus bAspdRate,10; } if (.@r>=9){ bonus5 bAutoSpell,"RK_SONICWAVE",.@i,20,BF_SHORT,1; } if (.@r>=11){ bonus bCritical,15; bonus bCritAtkRate,15; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (610003,'Blade_Katar','Blade Katar','Weapon','Katar',1000,185,1,2,true,true,true,true,true,true,4,100,true,'.@r = getrefine(); bonus bBaseAtk,.@r/2*10; bonus bAspdRate,(.@r*2/3); if (.@r>=2) { bonus2 bSkillAtk,"GC_ROLLINGCUTTER",20; } if (.@r>=11) { bonus bDelayRate,-7; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (610008,'Up_Shiver_Katar_K','Patent Shiver Katar','Weapon','Katar',1400,255,1,2,true,true,true,true,true,true,4,150,true,'.@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus2 bSkillAtk,"GC_CROSSIMPACT",.@r/3*10; if (.@r>=7){ bonus bCritAtkRate,15; bonus bAspdRate,10; } if (.@r>=9){ bonus2 bAddRace,RC_Brute,25; bonus2 bAddRace,RC_DemiHuman,25; } if (.@r>=11){ bonus bCritical,15; bonus2 bSkillCooldown,"GC_DARKCROW",-10000; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (610009,'Up_Blade_Katar','Patent Blade Katar','Weapon','Katar',1400,275,1,2,true,true,true,true,true,true,4,150,true,'.@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bAspdRate,(.@r*2/3); if (.@r>=7){ bonus2 bSkillAtk,"GC_ROLLINGCUTTER",25; bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",25; } if (.@r>=9){ bonus bDelayRate,-12; } if (.@r>=11){ bonus bShortAtkRate,10; bonus bLongAtkRate,10; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (620004,'Up_Avenger','Patent Avenger','Weapon','2hAxe',7000,290,1,2,true,true,true,true,true,true,4,150,true,'.@r = getrefine(); bonus bUnbreakableWeapon; bonus bBaseAtk,.@r/2*15; bonus2 bSkillAtk,"NC_AXETORNADO",10*(.@r/3); if (.@r>=7){ bonus2 bSkillAtk,"NC_AXEBOOMERANG",40; bonus2 bSkillCooldown,"NC_AXEBOOMERANG",-1000; } if (.@r>=9){ bonus2 bAddSize,Size_All,15; } if (.@r>=11){ bonus2 bSubEle,Ele_All,20; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (640004,'Blue_Crystal_Staff','Blue Crystal Staff','Weapon','Staff',800,100,200,1,2,true,true,true,true,true,4,100,true,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,.@r/2*10; bonus2 bSkillAtk,"WL_JACKFROST",.@r/3*12; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Water,7; } if (.@r>=11) { bonus2 bSkillCooldown,"WL_JACKFROST",-1000; bonus2 bMagicAddEle,Ele_Fire,7; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (640011,'Up_Iron_Staff','Patent Iron Staff','Weapon','2hStaff',1000,100,235,1,2,true,true,true,true,true,true,4,150,true,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,.@r/2*15; bonus2 bSkillAtk,"WL_EARTHSTRAIN",.@r/3*12; if (.@r>=7){ bonus bVariableCastrate,-10; bonus2 bMagicAtkEle,Ele_Earth,15; bonus2 bMagicAtkEle,Ele_Fire,15; } if (.@r>=9){ bonus2 bSkillCooldown,"WL_EARTHSTRAIN",-1000; bonus bVariableCastrate,-5; } if (.@r>=11){ bonus2 bMagicAddSize,Size_All,15; bonus2 bSkillAtk,"WL_CRIMSONROCK",15; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (640012,'Up_Blue_Crystal_Staff','Patent Blue Crystal Staff','Weapon','Staff',1000,100,235,1,2,true,true,true,true,true,4,150,true,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,.@r/2*15; bonus2 bSkillAtk,"WL_JACKFROST",.@r/3*12; if (.@r>=7){ bonus bVariableCastrate,-10; bonus2 bMagicAtkEle,Ele_Water,15; bonus2 bMagicAtkEle,Ele_Wind,15; } if (.@r>=9){ bonus2 bSkillCooldown,"WL_JACKFROST",-1000; bonus bDelayRate,-5; } if (.@r>=11){ bonus2 bMagicAddSize,Size_All,15; bonus2 bSkillAtk,"WL_CHAINLIGHTNING",15; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_kagerouoboro`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (650004,'Up_Humma_Clear','Patent Huuma Shuriken Clearness','Weapon','Huuma',20,2300,290,1,2,true,true,true,true,4,150,true,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bBaseAtk,15*(.@r/2); bonus bLongAtkRate,.@r/3*2; if (.@r>=7){ bonus2 bSkillAtk,"KO_HUUMARANKA",30; bonus bVariableCastrate,-10; } if (.@r>=9){ bonus2 bSkillCooldown,"KO_HUUMARANKA",-1000; } if (.@r>=11){ bonus2 bAddEle,Ele_Fire,20; bonus2 bAddEle,Ele_Dark,20; bonus2 bAddEle,Ele_Holy,20; bonus2 bAddRace,RC_Undead,20; bonus2 bAddRace,RC_Demon,20; bonus2 bAddRace,RC_Angel,20; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (700003,'Scalet_Dragon_L_Bow','Scarlet Dragon Leather Bow','Weapon','Bow',800,170,5,2,true,true,true,true,true,true,4,100,true,'.@r = getrefine(); bonus bBaseAtk,.@r/2*10; bonus bDelayRate,-(.@r/3*4); if (.@r>=9) { bonus2 bSkillAtk,"RA_AIMEDBOLT",35; } if (.@r>=11) { bonus2 bSkillCooldown,"RA_AIMEDBOLT",-1000; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`job_hunter`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (700013,'Up_Narcis_Bow','Patent Narcissus Bow','Weapon','Bow',1000,210,5,2,true,true,true,true,true,true,true,true,4,150,true,'.@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bLongAtkRate,.@r/3*4; if (.@r>=7){ bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; } if (.@r>=9){ bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15; } if (.@r>=11){ bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",10; bonus2 bWeaponDamageRate,W_BOW,15; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`job_hunter`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (700018,'Up_Royal_Bow_K','Patent Royal Bow','Weapon','Bow',1200,205,5,2,true,true,true,true,true,true,true,true,4,150,true,'.@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus2 bSkillAtk,"RA_ARROWSTORM",12*(.@r/3); if (.@r>=7){ bonus bAspdRate,10; bonus2 bWeaponDamageRate,W_BOW,15; } if (.@r>=9){ bonus bLongAtkRate,12; bonus bCritAtkRate,10; } if (.@r>=11){ bonus2 bSkillAtk,"SN_SHARPSHOOTING",20; bonus bDelayRate,-10; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (700019,'Up_Scalet_Dragon_L_Bow','Patent Scarlet Dragon Leather Bow','Weapon','Bow',900,200,5,2,true,true,true,true,true,true,4,150,true,'.@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bDelayRate,-(.@r/3*4); if (.@r>=7){ bonus bLongAtkRate,10; bonus2 bAddSize,Size_All,10; } if (.@r>=9){ bonus2 bSkillAtk,"RA_AIMEDBOLT",35; } if (.@r>=11){ bonus2 bSkillCooldown,"RA_AIMEDBOLT",-1000; bonus bVariableCastrate,-10; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (800002,'Up_Crimson_Rose','Patent Crimson Rose','Weapon','Revolver',20,1000,200,7,2,true,true,true,4,150,true,'.@r = getrefine(); bonus bBaseAtk,.@r/2*10; bonus2 bSkillAtk,"RL_FIREDANCE",.@r/3*2; if (.@r>=7){ bonus2 bAddClass,Class_All,5; bonus bLongAtkRate,10; } if (.@r>=9){ bonus2 bSkillAtk,"RL_FIREDANCE",25; autobonus3 "{ bonus bLongAtkRate,20; }",1000,60000,"RL_HEAT_BARREL"; } if (.@r>=11){ bonus bDelayRate,-10; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (810001,'Up_Master_Soul_Rifle','Patent Master Soul Rifle','Weapon','Rifle',20,1000,200,250,9,2,true,true,true,4,150,true,'.@r = getrefine(); bonus bMatk,15*(.@r/2); bonus2 bSkillAtk,"MG_SOULSTRIKE",15*(.@r/3); bonus2 bSkillAtk,"HW_NAPALMVULCAN",15*(.@r/3); if (.@r>=7){ bonus2 bSkillAtk,"WL_SOULEXPANSION",20; bonus2 bMagicAddEle,Ele_Ghost,15; } if (.@r>=9){ bonus5 bAutoSpell,"MG_SOULSTRIKE",10,150,BF_LONG,1; } if (.@r>=11){ bonus5 bAutoSpell,"HW_NAPALMVULCAN",3,70,BF_LONG,1; bonus5 bAutoSpell,"WL_SOULEXPANSION",3,70,BF_LONG,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (820001,'Up_Demon_Slayer_Shot','Patent Demon Slayer Shot','Weapon','Shotgun',2300,295,9,2,true,true,true,4,150,true,'.@r = getrefine(); bonus bSplashRange,1; bonus bLongAtkRate,3*(.@r/2); bonus bMaxSPrate,2*(.@r/3); if (.@r>=7){ bonus2 bAddClass,Class_Boss,15; bonus2 bAddRace,RC_Undead,15; bonus2 bAddRace,RC_Demon,15; } if (.@r>=9){ autobonus3 "{ bonus bBaseAtk,50; bonus bLongAtkRate,10; }",1000,90000,"RL_P_ALTER"; } if (.@r>=11){ bonus2 bSkillAtk,"RL_BANISHING_BUSTER",35; bonus2 bSkillAtk,"RL_S_STORM",35; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (830002,'Up_The_Black','Patent The Black','Weapon','Gatling',3000,225,9,2,true,true,true,4,150,true,'.@r = getrefine(); bonus bBaseAtk,15*(.@r/2); bonus bLongAtkRate,4*(.@r/3); if (.@r>=7){ bonus2 bSkillAtk,"RL_R_TRIP",20; bonus2 bSkillUseSPrate,"RL_R_TRIP",10; } if (.@r>=9){ bonus2 bSkillAtk,"RL_R_TRIP",15; autobonus3 "{ bonus bBaseAtk,50; bonus bLongAtkRate,10; }",1000,90000,"RL_P_ALTER"; } if (.@r>=11){ bonus2 bAddSize,Size_All,15; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (840001,'Up_Golden_Lord_Launcher','Patent Golden Lord Launcher','Weapon','Grenade',20,2400,350,9,2,true,true,true,4,150,true,'.@r = getrefine(); bonus bLongAtkRate,3*(.@r/2); bonus bBaseAtk,20*(.@r/3); if (.@r>=7){ bonus2 bSkillAtk,"RL_D_TAIL",15; bonus2 bSkillCooldown,"RL_D_TAIL",-1000; } if (.@r>=9){ bonus2 bSkillAtk,"RL_D_TAIL",20; } if (.@r>=11){ bonus2 bAddEle,Ele_All,15; }'); diff --git a/sql-files/item_db_re_etc.sql b/sql-files/item_db_re_etc.sql new file mode 100644 index 0000000000..888d440fa3 --- /dev/null +++ b/sql-files/item_db_re_etc.sql @@ -0,0 +1,4038 @@ +# +# Table structure for table `item_db_re` +# + +DROP TABLE IF EXISTS `item_db_re`; +CREATE TABLE `item_db_re` ( + `id` int(10) unsigned NOT NULL DEFAULT '0', + `name_aegis` varchar(50) NOT NULL DEFAULT '', + `name_english` varchar(50) NOT NULL DEFAULT '', + `type` varchar(20) DEFAULT NULL, + `subtype` varchar(20) DEFAULT NULL, + `price_buy` mediumint(8) unsigned DEFAULT NULL, + `price_sell` mediumint(8) unsigned DEFAULT NULL, + `weight` smallint(5) unsigned DEFAULT NULL, + `attack` smallint(5) unsigned DEFAULT NULL, + `magic_attack` smallint(5) unsigned DEFAULT NULL, + `defense` smallint(5) unsigned DEFAULT NULL, + `range` tinyint(2) unsigned DEFAULT NULL, + `slots` tinyint(2) unsigned DEFAULT NULL, + `job_all` tinyint(1) unsigned DEFAULT NULL, + `job_acolyte` tinyint(1) unsigned DEFAULT NULL, + `job_alchemist` tinyint(1) unsigned DEFAULT NULL, + `job_archer` tinyint(1) unsigned DEFAULT NULL, + `job_assassin` tinyint(1) unsigned DEFAULT NULL, + `job_barddancer` tinyint(1) unsigned DEFAULT NULL, + `job_blacksmith` tinyint(1) unsigned DEFAULT NULL, + `job_crusader` tinyint(1) unsigned DEFAULT NULL, + `job_gunslinger` tinyint(1) unsigned DEFAULT NULL, + `job_hunter` tinyint(1) unsigned DEFAULT NULL, + `job_kagerouoboro` tinyint(1) unsigned DEFAULT NULL, + `job_knight` tinyint(1) unsigned DEFAULT NULL, + `job_mage` tinyint(1) unsigned DEFAULT NULL, + `job_merchant` tinyint(1) unsigned DEFAULT NULL, + `job_monk` tinyint(1) unsigned DEFAULT NULL, + `job_ninja` tinyint(1) unsigned DEFAULT NULL, + `job_novice` tinyint(1) unsigned DEFAULT NULL, + `job_priest` tinyint(1) unsigned DEFAULT NULL, + `job_rebellion` tinyint(1) unsigned DEFAULT NULL, + `job_rogue` tinyint(1) unsigned DEFAULT NULL, + `job_sage` tinyint(1) unsigned DEFAULT NULL, + `job_soullinker` tinyint(1) unsigned DEFAULT NULL, + `job_stargladiator` tinyint(1) unsigned DEFAULT NULL, + `job_summoner` tinyint(1) unsigned DEFAULT NULL, + `job_supernovice` tinyint(1) unsigned DEFAULT NULL, + `job_swordman` tinyint(1) unsigned DEFAULT NULL, + `job_taekwon` tinyint(1) unsigned DEFAULT NULL, + `job_thief` tinyint(1) unsigned DEFAULT NULL, + `job_wizard` tinyint(1) unsigned DEFAULT NULL, + `class_all` tinyint(1) unsigned DEFAULT NULL, + `class_normal` tinyint(1) unsigned DEFAULT NULL, + `class_upper` tinyint(1) unsigned DEFAULT NULL, + `class_baby` tinyint(1) unsigned DEFAULT NULL, + `class_third` tinyint(1) unsigned DEFAULT NULL, + `class_third_upper` tinyint(1) unsigned DEFAULT NULL, + `class_third_baby` tinyint(1) unsigned DEFAULT NULL, + `gender` varchar(10) DEFAULT NULL, + `location_head_top` tinyint(1) unsigned DEFAULT NULL, + `location_head_mid` tinyint(1) unsigned DEFAULT NULL, + `location_head_low` tinyint(1) unsigned DEFAULT NULL, + `location_armor` tinyint(1) unsigned DEFAULT NULL, + `location_right_hand` tinyint(1) unsigned DEFAULT NULL, + `location_left_hand` tinyint(1) unsigned DEFAULT NULL, + `location_garment` tinyint(1) unsigned DEFAULT NULL, + `location_shoes` tinyint(1) unsigned DEFAULT NULL, + `location_right_accessory` tinyint(1) unsigned DEFAULT NULL, + `location_left_accessory` tinyint(1) unsigned DEFAULT NULL, + `location_costume_head_top` tinyint(1) unsigned DEFAULT NULL, + `location_costume_head_mid` tinyint(1) unsigned DEFAULT NULL, + `location_costume_head_low` tinyint(1) unsigned DEFAULT NULL, + `location_costume_garment` tinyint(1) unsigned DEFAULT NULL, + `location_ammo` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_armor` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_weapon` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_shield` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_shoes` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_right_accessory` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_left_accessory` tinyint(1) unsigned DEFAULT NULL, + `weapon_level` tinyint(1) unsigned DEFAULT NULL, + `equip_level_min` tinyint(3) unsigned DEFAULT NULL, + `equip_level_max` tinyint(3) unsigned DEFAULT NULL, + `refineable` tinyint(1) unsigned DEFAULT NULL, + `view` smallint(5) unsigned DEFAULT NULL, + `alias_name` varchar(50) DEFAULT NULL, + `flag_buyingstore` tinyint(1) unsigned DEFAULT NULL, + `flag_deadbranch` tinyint(1) unsigned DEFAULT NULL, + `flag_container` tinyint(1) unsigned DEFAULT NULL, + `flag_uniqueid` tinyint(1) unsigned DEFAULT NULL, + `flag_bindonequip` tinyint(1) unsigned DEFAULT NULL, + `flag_dropannounce` tinyint(1) unsigned DEFAULT NULL, + `flag_noconsume` tinyint(1) unsigned DEFAULT NULL, + `flag_dropeffect` varchar(20) DEFAULT NULL, + `delay_duration` bigint(20) unsigned DEFAULT NULL, + `delay_status` varchar(30) DEFAULT NULL, + `stack_amount` smallint(5) unsigned DEFAULT NULL, + `stack_inventory` tinyint(1) unsigned DEFAULT NULL, + `stack_cart` tinyint(1) unsigned DEFAULT NULL, + `stack_storage` tinyint(1) unsigned DEFAULT NULL, + `stack_guildstorage` tinyint(1) unsigned DEFAULT NULL, + `nouse_override` smallint(5) unsigned DEFAULT NULL, + `nouse_sitting` tinyint(1) unsigned DEFAULT NULL, + `trade_override` smallint(5) unsigned DEFAULT NULL, + `trade_nodrop` tinyint(1) unsigned DEFAULT NULL, + `trade_notrade` tinyint(1) unsigned DEFAULT NULL, + `trade_tradepartner` tinyint(1) unsigned DEFAULT NULL, + `trade_nosell` tinyint(1) unsigned DEFAULT NULL, + `trade_nocart` tinyint(1) unsigned DEFAULT NULL, + `trade_nostorage` tinyint(1) unsigned DEFAULT NULL, + `trade_noguildstorage` tinyint(1) unsigned DEFAULT NULL, + `trade_nomail` tinyint(1) unsigned DEFAULT NULL, + `trade_noauction` tinyint(1) unsigned DEFAULT NULL, + `script` text, + `equip_script` text, + `unequip_script` text, + PRIMARY KEY (`id`), + UNIQUE INDEX `UniqueAegisName` (`name_aegis`) +) ENGINE=MyISAM; + +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (670,'Gold_Coin_Moneybag','Bag of Gold Coins','Etc',100000,400); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (672,'Copper_Coin_Moneybag','Bag of Bronze Coins','Etc',1000,400); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (674,'Mithril_Coin','Mithril Coin','Etc',5000,40); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (676,'Silver_Coin_Moneybag','Bag of Silver Coins','Etc',50000,400); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (677,'White_Gold_Coin','Platinum Coin','Etc',2000,40); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (701,'Ora_Ora','Ora Ora','Etc',55000,200,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (702,'Animal_Blood','Animal Gore','Etc',450,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (703,'Hinalle','Hinalle','Etc',500,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (704,'Aloe','Aloe','Etc',500,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (705,'Clover','Clover','Etc',10,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (706,'Four_Leaf_Clover','Four Leaf Clover','Etc',80000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (707,'Singing_Plant','Singing Plant','Etc',500,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (708,'Ment','Ment','Etc',500,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (709,'Izidor','Izidor','Etc',500,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (710,'Illusion_Flower','Illusion Flower','Etc',1000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (711,'Shoot','Shoot','Etc',16,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (712,'Flower','Flower','Etc',2,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (713,'Empty_Bottle','Empty Bottle','Etc',6,20,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (714,'Emperium','Emperium','Etc',2,1000,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (715,'Yellow_Gemstone','Yellow Gemstone','Etc',600,30,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (716,'Red_Gemstone','Red Gemstone','Etc',600,30,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (717,'Blue_Gemstone','Blue Gemstone','Etc',600,30,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (718,'Dark_Red_Jewel','Garnet','Etc',6000,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (719,'Violet_Jewel','Amethyst','Etc',6000,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (720,'Skyblue_Jewel','Aquamarine','Etc',6000,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (721,'Azure_Jewel','Emerald','Etc',6000,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (722,'Scarlet_Jewel','Pearl','Etc',6000,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (723,'Cardinal_Jewel','Ruby','Etc',6000,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (724,'Cardinal_Jewel_','Cursed Ruby','Etc',600,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (725,'Red_Jewel','Sardonyx','Etc',6000,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (726,'Blue_Jewel','Sapphire','Etc',6000,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (727,'White_Jewel','Opal','Etc',6000,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (728,'Golden_Jewel','Topaz','Etc',6000,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (729,'Bluish_Green_Jewel','Zircon','Etc',6000,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (730,'Crystal_Jewel','1carat Diamond','Etc',10000,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (731,'Crystal_Jewel_','2carat Diamond','Etc',25000,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (732,'Crystal_Jewel__','3carat Diamond','Etc',55000,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (733,'Crystal_Jewel___','Cracked Diamond','Etc',10,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (734,'Red_Frame','Red Frame','Etc',3000,200,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (735,'Blue_Porcelain','Chung Jah','Etc',5000,500,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (736,'White_Platter','China','Etc',1000,300,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (737,'Black_Ladle','Black Ladle','Etc',400,50,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (738,'Pencil_Case','Pencil Case','Etc',400,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (739,'Rouge','Rouge','Etc',10000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (740,'Stuffed_Doll','Puppet','Etc',1000,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (741,'Poring_Doll','Poring Doll','Etc',1800,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (742,'Chonchon_Doll','Chonchon Doll','Etc',3000,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (743,'Spore_Doll','Spore Doll','Etc',5500,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`trade_override`,`trade_nodrop`) VALUES (744,'Bunch_Of_Flowers','Bouquet','Etc',2000,50,true,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`trade_override`,`trade_nodrop`) VALUES (745,'Wedding_Bouquet','Wedding Bouquet','Etc',12000,50,true,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (746,'Glass_Bead','Glass Bead','Etc',1400,50,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (747,'Crystal_Mirror','Crystal Mirror','Etc',15000,50,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (748,'Witherless_Rose','Witherless Rose','Etc',55000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (749,'Frozen_Rose','Frozen Rose','Etc',35000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (750,'Baphomet_Doll','Baphomet Doll','Etc',18000,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (751,'Osiris_Doll','Osiris Doll','Etc',14000,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (752,'Grasshopper_Doll','Rocker Doll','Etc',4000,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (753,'Monkey_Doll','Yoyo Doll','Etc',6000,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (754,'Raccoondog_Doll','Raccoon Doll','Etc',5000,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (756,'Oridecon_Stone','Rough Oridecon','Etc',550,200,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (757,'Elunium_Stone','Rough Elunium','Etc',650,200,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (901,'Danggie','Daenggie','Etc',260,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (902,'Tree_Root','Tree Root','Etc',12,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (903,'Reptile_Tongue','Reptile Tongue','Etc',140,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (904,'Scorpion\'s_Tail','Scorpion Tail','Etc',124,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (905,'Stem','Stem','Etc',46,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (906,'Pointed_Scale','Pointed Scale','Etc',68,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (907,'Resin','Resin','Etc',120,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (908,'Spawn','Spawn','Etc',140,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (909,'Jellopy','Jellopy','Etc',6,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (910,'Garlet','Garlet','Etc',40,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (911,'Scell','Scell','Etc',160,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (912,'Zargon','Zargon','Etc',480,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (913,'Tooth_Of_Bat','Tooth of Bat','Etc',34,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (914,'Fluff','Fluff','Etc',8,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (915,'Chrysalis','Chrysalis','Etc',8,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (916,'Feather_Of_Birds','Feather of Birds','Etc',10,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (917,'Talon','Talon','Etc',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (918,'Sticky_Webfoot','Sticky Webfoot','Etc',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (919,'Animal\'s_Skin','Animal Skin','Etc',36,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (920,'Claw_Of_Wolves','Wolf Claw','Etc',58,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (921,'Mushroom_Spore','Mushroom Spore','Etc',36,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (922,'Orcish_Cuspid','Orc\'s Fang','Etc',220,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (923,'Evil_Horn','Evil Horn','Etc',1200,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (924,'Powder_Of_Butterfly','Powder of Butterfly','Etc',90,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (925,'Bill_Of_Birds','Bill of Birds','Etc',64,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (926,'Scale_Of_Snakes','Snake Scale','Etc',82,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (928,'Insect_Feeler','Insect Feeler','Etc',114,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (929,'Immortal_Heart','Immortal Heart','Etc',374,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (930,'Rotten_Bandage','Rotten Bandage','Etc',350,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (931,'Orcish_Voucher','Orcish Voucher','Etc',142,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (932,'Skel_Bone','Skel-Bone','Etc',232,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (934,'Mementos','Memento','Etc',600,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (935,'Shell','Shell','Etc',14,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (936,'Scales_Shell','Scale Shell','Etc',466,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (937,'Posionous_Canine','Venom Canine','Etc',148,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (938,'Sticky_Mucus','Sticky Mucus','Etc',70,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (939,'Bee_Sting','Bee Sting','Etc',32,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (940,'Grasshopper\'s_Leg','Grasshopper\'s Leg','Etc',36,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (941,'Nose_Ring','Nose Ring','Etc',568,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (942,'Yoyo_Tail','Yoyo Tail','Etc',114,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (943,'Solid_Shell','Solid Shell','Etc',448,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (944,'Horseshoe','Horseshoe','Etc',588,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (945,'Raccoon_Leaf','Raccoon Leaf','Etc',106,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (946,'Snail\'s_Shell','Snail\'s Shell','Etc',64,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (947,'Horn','Horn','Etc',116,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (948,'Bear\'s_Foot','Bear\'s Footskin','Etc',174,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (949,'Feather','Feather','Etc',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (950,'Heart_Of_Mermaid','Heart of Mermaid','Etc',264,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (951,'Fin','Fin','Etc',412,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (952,'Cactus_Needle','Cactus Needle','Etc',82,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (953,'Stone_Heart','Stone Heart','Etc',184,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (954,'Shining_Scales','Shining Scale','Etc',466,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (955,'Worm_Peelings','Worm Peeling','Etc',52,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (956,'Gill','Gill','Etc',342,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (957,'Decayed_Nail','Decayed Nail','Etc',82,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (958,'Horrendous_Mouth','Horrendous Mouth','Etc',390,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (959,'Rotten_Scale','Stinky Scale','Etc',168,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (960,'Nipper','Nipper','Etc',114,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (961,'Conch','Conch','Etc',158,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (962,'Tentacle','Tentacle','Etc',70,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (963,'Sharp_Scale','Sharp Scale','Etc',250,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (964,'Crap_Shell','Crab Shell','Etc',90,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (965,'Clam_Shell','Clam Shell','Etc',56,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (966,'Flesh_Of_Clam','Clam Flesh','Etc',158,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (967,'Turtle_Shell','Turtle Shell','Etc',680,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (968,'Voucher_Of_Orcish_Hero','Heroic Emblem','Etc',3000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (969,'Gold','Gold','Etc',150000,200,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (970,'Alchol','Alcohol','Etc',400,30,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (971,'Detrimindexta','Detrimindexta','Etc',400,30,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (972,'Karvodailnirol','Karvodailnirol','Etc',400,30,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (973,'Counteragent','Counteragent','Etc',800,70,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (974,'Mixture','Mixture','Etc',800,70,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (975,'Scarlet_Dyestuffs','Scarlet Dyestuffs','Etc',8000,150,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (976,'Lemon_Dyestuffs','Lemon Dyestuffs','Etc',8000,150,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (978,'Cobaltblue_Dyestuffs','Cobaltblue Dyestuffs','Etc',8000,150,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (979,'Darkgreen_Dyestuffs','Darkgreen Dyestuffs','Etc',8000,150,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (980,'Orange_Dyestuffs','Orange Dyestuffs','Etc',8000,150,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (981,'Violet_Dyestuffs','Violet Dyestuffs','Etc',8000,150,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (982,'White_Dyestuffs','White Dyestuffs','Etc',8000,150,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (983,'Black_Dyestuffs','Black Dyestuffs','Etc',8000,150,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (984,'Oridecon','Oridecon','Etc',1100,200,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (985,'Elunium','Elunium','Etc',1100,200,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (986,'Anvil','Anvil','Etc',30000,500,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (987,'Oridecon_Anvil','Oridecon Anvil','Etc',120000,700,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (988,'Golden_Anvil','Golden Anvil','Etc',300000,900,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (989,'Emperium_Anvil','Emperium Anvil','Etc',600000,1000,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (990,'Boody_Red','Red Blood','Etc',1000,50,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (991,'Crystal_Blue','Crystal Blue','Etc',1000,50,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (992,'Wind_Of_Verdure','Wind of Verdure','Etc',1000,50,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (993,'Yellow_Live','Green Live','Etc',1000,50,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (994,'Flame_Heart','Flame Heart','Etc',3000,300,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (995,'Mistic_Frozen','Mystic Frozen','Etc',3000,300,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (996,'Rough_Wind','Rough Wind','Etc',3000,300,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (997,'Great_Nature','Great Nature','Etc',3000,300,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (998,'Iron','Iron','Etc',100,50,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (999,'Steel','Steel','Etc',1000,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1000,'Star_Crumb','Star Crumb','Etc',4500,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1001,'Sparkling_Dust','Star Dust','Etc',1500,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1002,'Iron_Ore','Iron Ore','Etc',50,150,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1003,'Coal','Coal','Etc',500,50,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1004,'Patriotism_Marks','Chivalry Emblem','Etc',2,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1005,'Hammer_Of_Blacksmith','Hammer of Blacksmith','Etc',2,800,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1006,'Old_Magic_Book','Old Magicbook','Etc',2,30,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1007,'Penetration','Necklace of Wisdom','Etc',2,40,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1008,'Frozen_Heart','Necklace of Oblivion','Etc',2,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1009,'Sacred_Marks','Hand of God','Etc',2,20,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1010,'Phracon','Phracon','Etc',200,200,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1011,'Emveretarcon','Emveretarcon','Etc',1000,200,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1012,'Lizard_Scruff','Frill','Etc',250,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1013,'Colorful_Shell','Rainbow Shell','Etc',90,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1014,'Jaws_Of_Ant','Ant Jaw','Etc',232,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1015,'Thin_N\'_Long_Tongue','Tongue','Etc',528,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1016,'Rat_Tail','Rat Tail','Etc',52,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1017,'Moustache_Of_Mole','Mole Whiskers','Etc',106,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1018,'Nail_Of_Mole','Mole Claw','Etc',210,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1019,'Wooden_Block','Trunk','Etc',60,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1020,'Long_Hair','Black Hair','Etc',292,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1021,'Dokkaebi_Horn','Dokebi Horn','Etc',292,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1022,'Fox_Tail','Nine Tails','Etc',650,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1023,'Fish_Tail','Fish Tail','Etc',196,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1024,'Chinese_Ink','Squid Ink','Etc',264,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1025,'Spiderweb','Cobweb','Etc',184,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1026,'Acorn','Acorn','Etc',98,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1027,'Porcupine_Spike','Porcupine Quill','Etc',158,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1028,'Wild_Boar\'s_Mane','Mane','Etc',196,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1029,'Tiger\'s_Skin','Tiger Skin','Etc',548,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1030,'Tiger_Footskin','Tiger\'s Footskin','Etc',1500,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1031,'Limb_Of_Mantis','Mantis Scythe','Etc',196,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1032,'Blossom_Of_Maneater','Maneater Blossom','Etc',196,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1033,'Root_Of_Maneater','Maneater Root','Etc',208,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1034,'Cobold_Hair','Blue Hair','Etc',342,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1035,'Dragon_Canine','Dragon Canine','Etc',484,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1036,'Dragon_Scale','Dragon Scale','Etc',500,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1037,'Dragon_Train','Dragon Tail','Etc',1200,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1038,'Petite_DiablOfs_Horn','Little Evil Horn','Etc',528,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1039,'Petite_DiablOfs_Wing','Little Evil Wing','Etc',2000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1040,'Elder_Pixie\'s_Beard','Elder Pixie\'s Moustache','Etc',232,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1041,'Lantern','Lantern','Etc',250,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1042,'Short_Leg','Bug Leg','Etc',430,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1043,'Nail_Of_Orc','Orc Claw','Etc',168,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1044,'Tooth_Of_','Zenorc\'s Fang','Etc',264,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1045,'Sacred_Masque','Cultish Masque','Etc',412,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1046,'Tweezer','Scorpion Nipper','Etc',614,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1047,'Head_Of_Medusa','Dead Medusa','Etc',548,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1048,'Slender_Snake','Horrendous Hair','Etc',800,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1049,'Skirt_Of_Virgin','Skirt of Virgin','Etc',1700,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1050,'Tendon','Tendon','Etc',220,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1051,'Detonator','Detonator','Etc',450,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1052,'Single_Cell','Single Cell','Etc',46,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1053,'Tooth_Of_Ancient_Fish','Ancient Tooth','Etc',548,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1054,'Lip_Of_Ancient_Fish','Ancient Lips','Etc',1000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1055,'Earthworm_Peeling','Earthworm Peeling','Etc',196,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1056,'Grit','Grit','Etc',306,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1057,'Moth_Dust','Moth Dust','Etc',138,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1058,'Wing_Of_Moth','Moth Wings','Etc',200,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1059,'Transparent_Cloth','Fabric','Etc',306,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1060,'Golden_Hair','Golden Hair','Etc',430,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1061,'Starsand_Of_Witch','Witched Starsand','Etc',484,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1062,'Pumpkin_Head','Jack o\' Pumpkin','Etc',374,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1063,'Sharpened_Cuspid','Fang','Etc',680,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1064,'Reins','Reins','Etc',802,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1065,'Booby_Trap','Trap','Etc',75,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1066,'Tree_Of_Archer_1','Fine-grained Trunk','Etc',2,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1067,'Tree_Of_Archer_2','Solid Trunk','Etc',2,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1068,'Tree_Of_Archer_3','Barren Trunk','Etc',2,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (1069,'Mushroom_Of_Thief_1','Orange Net Mushroom','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (1070,'Mushroom_Of_Thief_2','Orange Gooey Mushroom','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (1071,'Mage_Test_1','Unknown Test Tube','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (1072,'Delivery_Message','Delivery Message','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (1073,'Merchant_Voucher_1','Voucher','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (1074,'Merchant_Voucher_2','Voucher','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (1075,'Merchant_Voucher_3','Voucher','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (1076,'Merchant_Voucher_4','Voucher','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (1077,'Merchant_Voucher_5','Voucher','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (1078,'Merchant_Voucher_6','Voucher','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (1079,'Merchant_Voucher_7','Voucher','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (1080,'Merchant_Voucher_8','Voucher','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (1081,'Merchant_Box_1','Delivery Box','Etc',1200); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (1082,'Merchant_Box_2','Delivery Box','Etc',1200); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (1083,'Merchant_Box_3','Delivery Box','Etc',1200); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (1084,'Kapra\'s_Pass','Kafra Pass','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (1085,'Mage_Test_2','Unknown Test Tube','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (1086,'Mage_Test_3','Unknown Test Tube','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (1087,'Mage_Test_4','Unknown Test Tube','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (1088,'Morocc_Potion','Morocc Solution','Etc',10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (1089,'Payon_Potion','Payon Solution','Etc',10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (1090,'Mage_Test_Etc','Unknown Test Tube','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (1091,'Merchant_Box_Etc','Delivery Box','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1092,'Empty_Cylinder','Empty Test Tube','Etc',3,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1093,'Empty_Potion','Empty Potion Bottle','Etc',10,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1094,'Short_Daenggie','Short Daenggie','Etc',278,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1095,'Needle_Of_Alarm','Needle of Alarm','Etc',546,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1096,'Round_Shell','Round Shell','Etc',780,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1097,'Worn_Out_Page','Worn Out Page','Etc',948,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1098,'Manacles','Manacles','Etc',658,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (1099,'Worn_Out_Prison_Uniform','Worn-out Prison Uniform','Etc',680,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_assassin`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_ammo`,`equip_level_min`) VALUES (1750,'Arrow','Arrow','Ammo','Arrow',1,1,25,true,true,true,true,true,true,true,1); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_assassin`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_ammo`,`equip_level_min`,`script`) VALUES (1751,'Silver_Arrow','Silver Arrow','Ammo','Arrow',3,2,30,true,true,true,true,true,true,true,1,'bonus bAtkEle,Ele_Holy;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_assassin`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_ammo`,`equip_level_min`,`script`) VALUES (1752,'Fire_Arrow','Fire Arrow','Ammo','Arrow',3,2,30,true,true,true,true,true,true,true,1,'bonus bAtkEle,Ele_Fire;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_assassin`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_ammo`,`equip_level_min`) VALUES (1753,'Steel_Arrow','Steel Arrow','Ammo','Arrow',4,2,40,true,true,true,true,true,true,true,1); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_assassin`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_ammo`,`equip_level_min`,`script`) VALUES (1754,'Crystal_Arrow','Crystal Arrow','Ammo','Arrow',3,2,30,true,true,true,true,true,true,true,1,'bonus bAtkEle,Ele_Water;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_assassin`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_ammo`,`equip_level_min`,`script`) VALUES (1755,'Arrow_Of_Wind','Arrow of Wind','Ammo','Arrow',3,2,30,true,true,true,true,true,true,true,1,'bonus bAtkEle,Ele_Wind;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_assassin`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_ammo`,`equip_level_min`,`script`) VALUES (1756,'Stone_Arrow','Stone Arrow','Ammo','Arrow',3,2,30,true,true,true,true,true,true,true,1,'bonus bAtkEle,Ele_Earth;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_assassin`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_ammo`,`equip_level_min`,`script`) VALUES (1757,'Immatrial_Arrow','Immaterial Arrow','Ammo','Arrow',3,1,30,true,true,true,true,true,true,true,1,'bonus bAtkEle,Ele_Ghost;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_assassin`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_ammo`,`equip_level_min`,`script`) VALUES (1758,'Stun_Arrow','Stun Arrow','Ammo','Arrow',10,3,1,true,true,true,true,true,true,true,1,'bonus2 bAddEff,Eff_Stun,1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_assassin`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_ammo`,`equip_level_min`,`script`) VALUES (1759,'Freezing_Arrow','Frozen Arrow','Ammo','Arrow',10,3,1,true,true,true,true,true,true,true,1,'bonus bAtkEle,Ele_Water; bonus2 bAddEff,Eff_Freeze,1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_assassin`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_ammo`,`equip_level_min`,`script`) VALUES (1760,'Flash_Arrow','Flash Arrow','Ammo','Arrow',10,3,1,true,true,true,true,true,true,true,1,'bonus2 bAddEff,Eff_Blind,1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_assassin`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_ammo`,`equip_level_min`,`script`) VALUES (1761,'Curse_Arrow','Cursed Arrow','Ammo','Arrow',10,3,1,true,true,true,true,true,true,true,1,'bonus2 bAddEff,Eff_Curse,1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_assassin`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_ammo`,`equip_level_min`,`script`) VALUES (1762,'Rusty_Arrow','Rusty Arrow','Ammo','Arrow',3,2,30,true,true,true,true,true,true,true,1,'bonus bAtkEle,Ele_Poison;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_assassin`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_ammo`,`equip_level_min`,`script`) VALUES (1763,'Poison_Arrow','Poison Arrow','Ammo','Arrow',10,3,1,true,true,true,true,true,true,true,1,'bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,2000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_assassin`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_ammo`,`equip_level_min`,`script`) VALUES (1764,'Incisive_Arrow','Sharp Arrow','Ammo','Arrow',20,3,10,true,true,true,true,true,true,true,1,'bonus bCriticalLong,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_assassin`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_ammo`,`equip_level_min`) VALUES (1765,'Oridecon_Arrow','Oridecon Arrow','Ammo','Arrow',30,3,50,true,true,true,true,true,true,true,1); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_assassin`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_ammo`,`equip_level_min`,`script`) VALUES (1766,'Arrow_Of_Counter_Evil','Arrow of Counter Evil','Ammo','Arrow',40,3,50,true,true,true,true,true,true,true,1,'bonus bAtkEle,Ele_Holy;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_assassin`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_ammo`,`equip_level_min`,`script`) VALUES (1767,'Arrow_Of_Shadow','Arrow of Shadow','Ammo','Arrow',3,2,30,true,true,true,true,true,true,true,1,'bonus bAtkEle,Ele_Dark;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_assassin`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_ammo`,`equip_level_min`,`script`) VALUES (1768,'Sleep_Arrow','Sleep Arrow','Ammo','Arrow',10,3,1,true,true,true,true,true,true,true,1,'bonus2 bAddEff,Eff_Sleep,2000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_assassin`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_ammo`,`equip_level_min`,`script`) VALUES (1769,'Silence_Arrow','Mute Arrow','Ammo','Arrow',10,3,1,true,true,true,true,true,true,true,1,'bonus2 bAddEff,Eff_Silence,1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_assassin`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_ammo`,`equip_level_min`) VALUES (1770,'Iron_Arrow','Iron Arrow','Ammo','Arrow',2,1,30,true,true,true,true,true,true,true,1); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_assassin`,`location_ammo`,`equip_level_min`) VALUES (1771,'Venom_Knife','Venom Knife','Ammo','Dagger',50,5,30,true,true,1); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_assassin`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_ammo`,`equip_level_min`,`script`) VALUES (1772,'Holy_Arrow','Holy Arrow','Ammo','Arrow',3,2,50,true,true,true,true,true,true,true,1,'bonus bAtkEle,Ele_Holy; bonus2 bAddRace,RC_Demon,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_assassin`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_ammo`,`equip_level_min`) VALUES (1773,'Arrow_Of_Elf','Elven Arrow','Ammo','Arrow',5,1,45,true,true,true,true,true,true,true,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_assassin`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_ammo`,`equip_level_min`) VALUES (1774,'Hunting_Arrow','Hunting Arrow','Ammo','Arrow',5,1,35,true,true,true,true,true,true,true,1); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_assassin`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_ammo`,`equip_level_min`) VALUES (1775,'Siege_Arrow_S','Siege Arrow S','Ammo','Arrow',10,1,45,true,true,true,true,true,true,true,130); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_assassin`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_ammo`,`equip_level_min`) VALUES (1776,'Siege_Arrow_A','Siege Arrow A','Ammo','Arrow',10,1,30,true,true,true,true,true,true,true,95); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4001,'Poring_Card','Poring Card','Card',20,10,true,true,'bonus bLuk,2; bonus bFlee2,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4002,'Fabre_Card','Fabre Card','Card',20,10,true,true,'bonus bVit,1; bonus bMaxHP,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4003,'Pupa_Card','Pupa Card','Card',20,10,true,true,'bonus bMaxHP,700;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4004,'Drops_Card','Drops Card','Card',20,10,true,true,'bonus bDex,1; bonus bHit,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4005,'Poring__Card','Santa Poring Card','Card',20,10,true,true,'bonus2 bAddEle,Ele_Dark,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4006,'Lunatic_Card','Lunatic Card','Card',20,10,true,true,'bonus bLuk,1; bonus bCritical,1; bonus bFlee2,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4007,'Pecopeco_Egg_Card','Peco Peco Egg Card','Card',20,10,true,true,'bonus2 bAddRace,RC_Formless,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4008,'Picky_Card','Picky Card','Card',20,10,true,true,'bonus bStr,1; bonus bBaseAtk,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4009,'Chonchon_Card','Chonchon Card','Card',20,10,true,true,'bonus bAgi,1; bonus bFlee,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4010,'Wilow_Card','Willow Card','Card',20,10,true,true,true,true,'bonus bMaxSP,80;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4011,'Picky__Card','Picky Egg Card','Card',20,10,true,true,'bonus bVit,1; bonus bMaxHP,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4012,'Thief_Bug_Egg_Card','Thief Bug Egg Card','Card',20,10,true,true,'bonus bMaxHP,400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4013,'Andre_Egg_Card','Andre Egg Card','Card',20,10,true,true,'bonus bMaxHPrate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4014,'Roda_Frog_Card','Roda Frog Card','Card',20,10,true,true,'bonus bMaxHP,400; bonus bMaxSP,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4015,'Condor_Card','Condor Card','Card',20,10,true,true,'bonus bFlee,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4016,'Thief_Bug_Card','Thief Bug Card','Card',20,10,true,true,'bonus bAgi,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4017,'Savage_Babe_Card','Savage Babe Card','Card',20,10,true,true,'bonus2 bAddEff,Eff_Stun,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4018,'Andre_Larva_Card','Andre Larva Card','Card',20,10,true,true,'bonus bInt,1; bonus bMaxSP,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4019,'Hornet_Card','Hornet Card','Card',20,10,true,true,'bonus bStr,1; bonus bBaseAtk,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4020,'Farmiliar_Card','Familiar Card','Card',20,10,true,true,'bonus2 bAddEff,Eff_Blind,500; bonus bBaseAtk,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4021,'Rocker_Card','Rocker Card','Card',20,10,true,true,'bonus bDex,1; bonus bBaseAtk,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4022,'Spore_Card','Spore Card','Card',20,10,true,true,true,'bonus bVit,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4023,'Desert_Wolf_Babe_Card','Baby Desert Wolf Card','Card',20,10,true,true,'bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4024,'Plankton_Card','Plankton Card','Card',20,10,true,true,'bonus2 bAddEff,Eff_Sleep,500; bonus bBaseAtk,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4025,'Skeleton_Card','Skeleton Card','Card',20,10,true,true,'bonus bBaseAtk,10; bonus2 bAddEff,Eff_Stun,200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4026,'Thief_Bug_Female_Card','Female Thief Bug Card','Card',20,10,true,true,'bonus bAgi,1; bonus bFlee,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4027,'Kukre_Card','Kukre Card','Card',20,10,true,true,true,'bonus bAgi,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4028,'Tarou_Card','Tarou Card','Card',20,10,true,true,true,'bonus bStr,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4029,'Wolf_Card','Wolf Card','Card',20,10,true,true,'bonus bBaseAtk,15; bonus bCritical,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4030,'Mandragora_Card','Mandragora Card','Card',20,10,true,true,'bonus2 bAddEle,Ele_Wind,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4031,'Pecopeco_Card','Peco Peco Card','Card',20,10,true,true,'bonus bMaxHPrate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4032,'Ambernite_Card','Ambernite Card','Card',20,10,true,true,'bonus bDef,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4033,'Poporing_Card','Poporing Card','Card',20,10,true,true,true,'skill "TF_DETOXIFY",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4034,'Worm_Tail_Card','Wormtail Card','Card',20,10,true,true,true,'bonus bDex,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4035,'Hydra_Card','Hydra Card','Card',20,10,true,true,'bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4036,'Muka_Card','Muka Card','Card',20,10,true,true,true,'bonus bHPrecovRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4037,'Snake_Card','Snake Card','Card',20,10,true,true,'bonus2 bAddEff,Eff_Poison,500; bonus bBaseAtk,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4038,'Zombie_Card','Zombie Card','Card',20,10,true,true,'bonus bHPrecovRate,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4039,'Stainer_Card','Stainer Card','Card',20,10,true,true,true,true,'bonus2 bResEff,Eff_Silence,2000; bonus bDef,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4040,'Creamy_Card','Creamy Card','Card',20,10,true,true,true,'skill "AL_TELEPORT",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4041,'Coco_Card','Coco Card','Card',20,10,true,true,true,true,'bonus2 bResEff,Eff_Sleep,2000; bonus bDef,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4042,'Steel_Chonchon_Card','Steel Chonchon Card','Card',20,10,true,true,'bonus2 bSubEle,Ele_Wind,10; bonus bDef,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4043,'Andre_Card','Andre Card','Card',20,10,true,true,'bonus bBaseAtk,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4044,'Smokie_Card','Smokie Card','Card',20,10,true,true,true,'skill "TF_HIDING",1;','sc_end SC_HIDING;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4045,'Horn_Card','Horn Card','Card',20,10,true,true,'bonus bLongAtkDef,35;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4046,'Martin_Card','Martin Card','Card',20,10,true,true,true,true,'bonus2 bResEff,Eff_Blind,2000; bonus bDef,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4047,'Ghostring_Card','Ghostring Card','Card',20,10,true,true,'bonus bDefEle,Ele_Ghost; bonus bHPrecovRate,-25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4048,'Poison_Spore_Card','Poison Spore Card','Card',20,10,true,true,true,'skill "TF_POISON",3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4049,'Vadon_Card','Vadon Card','Card',20,10,true,true,'bonus2 bAddEle,Ele_Fire,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4050,'Thief_Bug_Male_Card','Male Thief Bug Card','Card',20,10,true,true,'bonus bAgi,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4051,'Yoyo_Card','Yoyo Card','Card',20,10,true,true,true,'bonus bFlee2,5; bonus bAgi,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4052,'Elder_Wilow_Card','Elder Willow Card','Card',20,10,true,true,true,true,'bonus bInt,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4053,'Vitata_Card','Vitata Card','Card',20,10,true,true,true,'skill "AL_HEAL",1; bonus bUseSPrate,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4054,'Angeling_Card','Angeling Card','Card',20,10,true,true,'bonus bDefEle,Ele_Holy;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4055,'Marina_Card','Marina Card','Card',20,10,true,true,'bonus2 bAddEff,Eff_Freeze,500; bonus bBaseAtk,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4056,'Dustiness_Card','Dustiness Card','Card',20,10,true,true,'bonus2 bSubEle,Ele_Wind,30; bonus bFlee,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4057,'Metaller_Card','Metaller Card','Card',20,10,true,true,'bonus2 bAddEff,Eff_Silence,500; bonus bBaseAtk,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4058,'Thara_Frog_Card','Thara Frog Card','Card',20,10,true,true,'bonus2 bSubRace,RC_DemiHuman,30; bonus2 bSubRace,RC_Player_Human,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4059,'Soldier_Andre_Card','Soldier Andre Card','Card',20,10,true,true,'bonus2 bSubRace,RC_Plant,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4060,'Goblin_Card','Goblin Card','Card',20,10,true,true,'bonus2 bAddRace,RC_Brute,20; bonus2 bAddRace,RC_Player_Doram,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4061,'Cornutus_Card','Cornutus Card','Card',20,10,true,true,'bonus bUnbreakableArmor; bonus bDef,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4062,'Anacondaq_Card','Anacondaq Card','Card',20,10,true,true,'bonus2 bAddEle,Ele_Poison,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4063,'Caramel_Card','Caramel Card','Card',20,10,true,true,'bonus2 bAddRace,RC_Insect,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4064,'Zerom_Card','Zerom Card','Card',20,10,true,true,true,'bonus bDex,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4065,'Kaho_Card','Kaho Card','Card',20,10,true,true,'bonus2 bAddEle,Ele_Earth,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4066,'Orc_Warrior_Card','Orc Warrior Card','Card',20,10,true,true,'bonus2 bSubRace,RC_Brute,30; bonus2 bSubRace,RC_Player_Doram,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4067,'Megalodon_Card','Megalodon Card','Card',20,10,true,true,'bonus2 bResEff,Eff_Freeze,2000; bonus bDef,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4068,'Scorpion_Card','Scorpion Card','Card',20,10,true,true,'bonus2 bAddRace,RC_Plant,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4069,'Drainliar_Card','Drainliar Card','Card',20,10,true,true,'bonus2 bAddEle,Ele_Water,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4070,'Eggyra_Card','Eggyra Card','Card',20,10,true,true,'bonus bSPrecovRate,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4071,'Orc_Zombie_Card','Orc Zombie Card','Card',20,10,true,true,'bonus2 bSubEle,Ele_Undead,30; bonus bFlee,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4072,'Golem_Card','Golem Card','Card',20,10,true,true,'bonus bUnbreakableWeapon; bonus bBaseAtk,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4073,'Pirate_Skel_Card','Pirate Skeleton Card','Card',20,10,true,true,true,'skill "MC_DISCOUNT",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4074,'BigFoot_Card','Bigfoot Card','Card',20,10,true,true,'bonus2 bSubRace,RC_Insect,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4075,'Argos_Card','Argos Card','Card',20,10,true,true,'bonus2 bResEff,Eff_Stone,2000; bonus bDef,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4076,'Magnolia_Card','Magnolia Card','Card',20,10,true,true,'bonus2 bAddEff,Eff_Curse,500; bonus bBaseAtk,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4077,'Phen_Card','Phen Card','Card',20,10,true,true,true,'bonus bNoCastCancel; bonus bVariableCastrate,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4078,'Savage_Card','Savage Card','Card',20,10,true,true,'bonus bVit,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4079,'Mantis_Card','Mantis Card','Card',20,10,true,true,true,'bonus bStr,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4080,'Flora_Card','Flora Card','Card',20,10,true,true,'bonus2 bAddRace,RC_Fish,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4081,'Hode_Card','Hode Card','Card',20,10,true,true,'bonus2 bSubEle,Ele_Earth,30; bonus bFlee,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4082,'Desert_Wolf_Card','Desert Wolf Card','Card',20,10,true,true,'bonus2 bAddSize,Size_Small,15; bonus bBaseAtk,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4083,'Rafflesia_Card','Rafflesia Card','Card',20,10,true,true,'bonus2 bSubRace,RC_Fish,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4084,'Marine_Sphere_Card','Marine Sphere Card','Card',20,10,true,true,true,'skill "SM_MAGNUM",3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4085,'Orc_Skeleton_Card','Orc Skeleton Card','Card',20,10,true,true,'bonus2 bAddEle,Ele_Holy,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4086,'Soldier_Skeleton_Card','Soldier Skeleton Card','Card',20,10,true,true,'bonus bCritical,9;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4087,'Giearth_Card','Giearth Card','Card',20,10,true,true,true,true,'bonus2 bResEff,Eff_Confusion,10000; bonus2 bSubEle,Ele_Earth,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4088,'Frilldora_Card','Frilldora Card','Card',20,10,true,true,'skill "AS_CLOAKING",1;','sc_end SC_CLOAKING;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4089,'Sword_Fish_Card','Swordfish Card','Card',20,10,true,true,'bonus bDefEle,Ele_Water; bonus bDef,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4090,'Munak_Card','Munak Card','Card',20,10,true,true,'bonus2 bResEff,Eff_Stone,1500; bonus2 bSubEle,Ele_Earth,5; bonus bDef,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4091,'Kobold_Card','Kobold Card','Card',20,10,true,true,true,'bonus bStr,1; bonus bCritical,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4092,'Skel_Worker_Card','Skeleton Worker Card','Card',20,10,true,true,'bonus2 bAddSize,Size_Medium,15; bonus bBaseAtk,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4093,'Obeaune_Card','Obeaune Card','Card',20,10,true,true,true,'skill "AL_CURE",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4094,'Archer_Skeleton_Card','Archer Skeleton Card','Card',20,10,true,true,'bonus bLongAtkRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4095,'Marse_Card','Marse Card','Card',20,10,true,true,'bonus2 bSubEle,Ele_Water,30; bonus bFlee,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4096,'Zenorc_Card','Zenorc Card','Card',20,10,true,true,'bonus2 bAddEff,Eff_Poison,400; bonus bBaseAtk,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4097,'Matyr_Card','Matyr Card','Card',20,10,true,true,'bonus bMaxHPrate,10; bonus bAgi,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4098,'Dokebi_Card','Dokebi Card','Card',20,10,true,true,'bonus bDefEle,Ele_Wind; bonus bDef,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4099,'Pasana_Card','Pasana Card','Card',20,10,true,true,'bonus bDefEle,Ele_Fire; bonus bDef,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4100,'Sohee_Card','Sohee Card','Card',20,10,true,true,'bonus bMaxSPrate,15; bonus bSPrecovRate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4101,'Sand_Man_Card','Sandman Card','Card',20,10,true,true,'bonus bDefEle,Ele_Earth; bonus bDef,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4102,'Whisper_Card','Whisper Card','Card',20,10,true,true,'bonus bFlee,20; bonus2 bSubEle,Ele_Ghost,-50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4103,'Horong_Card','Horong Card','Card',20,10,true,true,true,'skill "MG_SIGHT",1;','sc_end SC_SIGHT;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4104,'Requiem_Card','Requiem Card','Card',20,10,true,true,'bonus2 bAddEff,Eff_Confusion,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4105,'Marc_Card','Marc Card','Card',20,10,true,true,'bonus2 bSubEle,Ele_Water,5; bonus2 bResEff,Eff_Freeze,10000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4106,'Mummy_Card','Mummy Card','Card',20,10,true,true,'bonus bHit,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4107,'Verit_Card','Verit Card','Card',20,10,true,true,'bonus bMaxHPrate,8; bonus bMaxSPrate,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4108,'Myst_Card','Myst Card','Card',20,10,true,true,'bonus2 bSubEle,Ele_Poison,30; bonus bFlee,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4109,'Jakk_Card','Jakk Card','Card',20,10,true,true,'bonus2 bSubEle,Ele_Fire,30; bonus bFlee,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4110,'Ghoul_Card','Ghoul Card','Card',20,10,true,true,true,true,'bonus2 bResEff,Eff_Poison,2000; bonus bDef,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4111,'Strouf_Card','Strouf Card','Card',20,10,true,true,'bonus2 bAddRace,RC_Demon,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4112,'Marduk_Card','Marduk Card','Card',20,10,true,true,true,true,'bonus2 bResEff,Eff_Silence,10000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4113,'Marionette_Card','Marionette Card','Card',20,10,true,true,'bonus2 bSubEle,Ele_Ghost,30; bonus bFlee,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4114,'Argiope_Card','Argiope Card','Card',20,10,true,true,'bonus bDefEle,Ele_Poison; bonus bDef,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4115,'Hunter_Fly_Card','Hunter Fly Card','Card',20,10,true,true,'bonus2 bHPDrainRate,30,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4116,'Isis_Card','Isis Card','Card',20,10,true,true,'bonus2 bSubEle,Ele_Dark,30; bonus bFlee,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4117,'Side_Winder_Card','Sidewinder Card','Card',20,10,true,true,'skill "TF_DOUBLE",1; bonus bDoubleRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4118,'Petit_Card','Earth Petite Card','Card',20,10,true,true,'bonus2 bAddRace,RC_Dragon,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4119,'Bathory_Card','Bathory Card','Card',20,10,true,true,'bonus bDefEle,Ele_Dark;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4120,'Petit__Card','Sky Petite Card','Card',20,10,true,true,'bonus2 bSubRace,RC_Dragon,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4121,'Phreeoni_Card','Phreeoni Card','Card',20,10,true,true,'bonus bHit,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4122,'Deviruchi_Card','Deviruchi Card','Card',20,10,true,true,true,true,'bonus bStr,1; bonus2 bResEff,Eff_Blind,10000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4123,'Eddga_Card','Eddga Card','Card',20,10,true,true,'bonus bMaxHPrate,-25; bonus bNoWalkDelay;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4124,'Medusa_Card','Medusa Card','Card',20,10,true,true,'bonus2 bSubRace,RC_Demon,15; bonus2 bResEff,Eff_Stone,10000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4125,'Deviace_Card','Deviace Card','Card',20,10,true,true,'bonus2 bAddRace,RC_DemiHuman,7; bonus2 bAddRace,RC_Player_Human,7; bonus2 bAddRace,RC_Brute,7; bonus2 bAddRace,RC_Player_Doram,7; bonus2 bAddRace,RC_Plant,7; bonus2 bAddRace,RC_Insect,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4126,'Minorous_Card','Minorous Card','Card',20,10,true,true,'bonus2 bAddSize,Size_Large,15; bonus bBaseAtk,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4127,'Nightmare_Card','Nightmare Card','Card',20,10,true,true,true,true,'bonus2 bResEff,Eff_Sleep,10000; bonus bAgi,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4128,'Golden_Bug_Card','Golden Thief Bug Card','Card',20,10,true,true,'bonus bNoMagicDamage,100; bonus bUseSPrate,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4129,'Baphomet__Card','Bapho Jr. Card','Card',20,10,true,true,'bonus bAgi,3; bonus bCritical,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4130,'Scorpion_King_Card','Scorpion King Card','Card',20,10,true,true,'bonus2 bAddEle,Ele_Undead,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4131,'Moonlight_Flower_Card','Moonlight Flower Card','Card',20,10,true,true,'bonus bSpeedRate,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4132,'Mistress_Card','Mistress Card','Card',20,10,true,true,true,true,'bonus bNoGemStone; bonus bUseSPrate,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4133,'Daydric_Card','Raydric Card','Card',20,10,true,true,'bonus2 bSubEle,Ele_Neutral,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4134,'Dracula_Card','Dracula Card','Card',20,10,true,true,'bonus2 bSPDrainRate,100,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4135,'Orc_Load_Card','Orc Lord Card','Card',20,10,true,true,'bonus bShortWeaponDamageReturn,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4136,'Khalitzburg_Card','Khalitzburg Card','Card',20,10,true,true,'bonus2 bSubRace,RC_Demon,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4137,'Drake_Card','Drake Card','Card',20,10,true,true,'bonus bNoSizeFix;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4138,'Anubis_Card','Anubis Card','Card',20,10,true,true,'bonus2 bSubRace,RC_Angel,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4139,'Joker_Card','Joker Card','Card',20,10,true,true,true,'skill "TF_STEAL",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4140,'Knight_Of_Abyss_Card','Abysmal Knight Card','Card',20,10,true,true,'bonus2 bAddClass,Class_Boss,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4141,'Evil_Druid_Card','Evil Druid Card','Card',20,10,true,true,'bonus bDefEle,Ele_Undead; bonus bInt,1; bonus bDef,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4142,'Doppelganger_Card','Doppelganger Card','Card',20,10,true,true,'bonus bAspdRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4143,'Orc_Hero_Card','Orc Hero Card','Card',20,10,true,true,true,true,'bonus bVit,3; bonus2 bResEff,Eff_Stun,10000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4144,'Osiris_Card','Osiris Card','Card',20,10,true,true,true,'bonus bRestartFullRecover;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4145,'Berzebub_Card','Berzebub Card','Card',20,10,true,true,true,'bonus bVariableCastrate,-30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4146,'Maya_Card','Maya Card','Card',20,10,true,true,'bonus bMagicDamageReturn,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4147,'Baphomet_Card','Baphomet Card','Card',20,10,true,true,'bonus bHit,-10; bonus bSplashRange,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4148,'Pharaoh_Card','Pharaoh Card','Card',20,10,true,true,true,true,'bonus bUseSPrate,-30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4149,'Gargoyle_Card','Gargoyle Card','Card',20,10,true,true,true,'bonus3 bAddMonsterDropItem,12028,RC_Insect,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4150,'Goat_Card','Goat Card','Card',20,10,true,true,'if(getrefine()<6) { bonus bDef,2; bonus bMdef,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4151,'Gajomart_Card','Gajomart Card','Card',20,10,true,true,'bonus2 bSubRace,RC_Plant,-20; bonus2 bExpAddRace,RC_Plant,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4152,'Galapago_Card','Galapago Card','Card',20,10,true,true,true,'bonus2 bAddItemGroupHealRate,IG_Juice,50; bonus3 bAddMonsterDropItem,531,RC_Insect,300; bonus3 bAddMonsterDropItem,532,RC_Insect,300; bonus3 bAddMonsterDropItem,534,RC_Insect,300;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4153,'Crab_Card','Crab Card','Card',20,10,true,true,'bonus bBaseAtk,5; bonus2 bAddDamageClass,1266,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4154,'Rice_Cake_Boy_Card','Dumpling Child Card','Card',20,10,true,true,true,'bonus2 bAddItemGroupHealRate,IG_Candy,50; bonus3 bAddMonsterDropItem,529,RC_DemiHuman,300; bonus3 bAddMonsterDropItem,530,RC_DemiHuman,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4155,'Goblin_Leader_Card','Goblin Leader Card','Card',20,10,true,true,'bonus2 bAddRace2,RC2_Goblin,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4156,'Steam_Goblin_Card','Goblin Steamrider Card','Card',20,10,true,true,'bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Formless,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4157,'Goblin_Archer_Card','Goblin Archer Card','Card',20,10,true,true,'bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Undead,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4158,'Flying_Deleter_Card','Sky Deleter Card','Card',20,10,true,true,'bonus bHPrecovRate,-100; bonus bHPGainValue,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4159,'Nine_Tail_Card','Nine Tail Card','Card',20,10,true,true,'bonus bAgi,2; if(getrefine()>8) bonus bFlee,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4160,'Antique_Firelock_Card','Firelock Soldier Card','Card',20,10,true,true,'bonus bStr,2; if(getrefine()>8) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4161,'Grand_Peco_Card','Grand Peco Card','Card',20,10,true,true,true,true,'bonus3 bAutoSpellWhenHit,"PR_GLORIA",1,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4162,'Grizzly_Card','Grizzly Card','Card',20,10,true,true,'bonus2 bAddEffWhenHit,Eff_Blind,300;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4163,'Gryphon_Card','Gryphon Card','Card',20,10,true,true,'bonus bFlee,2; bonus bCritical,7; if(BaseClass==Job_Swordman) bonus3 bAutoSpell,"KN_BOWLINGBASH",5,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4164,'Gullinbursti_Card','Gullinbursti Card','Card',20,10,true,true,'bonus2 bSubRace,RC_Fish,-20; bonus2 bExpAddRace,RC_Fish,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4165,'Gig_Card','Gig Card','Card',20,10,true,true,'bonus2 bSPGainRace,RC_Insect,5;','heal 0,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4166,'Nightmare_Terror_Card','Nightmare Terror Card','Card',20,10,true,true,'bonus2 bAddEffWhenHit,Eff_Curse,300;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4167,'Neraid_Card','Nereid Card','Card',20,10,true,true,'bonus2 bSPGainRace,RC_Brute,5; bonus2 bSPGainRace,RC_Player_Doram,5;','heal 0,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4168,'Dark_Lord_Card','Dark Lord Card','Card',20,10,true,true,'bonus3 bAutoSpellWhenHit,"WZ_METEOR",5,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4169,'Dark_Illusion_Card','Dark Illusion Card','Card',20,10,true,true,true,true,'bonus bMaxHPrate,-10; bonus bMaxSPrate,-10; bonus bVariableCastrate,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4170,'Dark_Frame_Card','Dark Frame Card','Card',20,10,true,true,'bonus2 bAddEffWhenHit,Eff_Stone,600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4171,'Dark_Priest_Card','Dark Priest Card','Card',20,10,true,true,'bonus3 bSPVanishRate,50,10,BF_WEAPON|BF_MAGIC|BF_MISC; if(BaseJob==Job_Sage) bonus bSPDrainValue,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4172,'The_Paper_Card','The Paper Card','Card',20,10,true,true,'bonus bCritAtkRate,20; bonus bSPDrainValue,-1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4173,'Demon_Pungus_Card','Demon Pungus Card','Card',20,10,true,true,'bonus2 bAddEffWhenHit,Eff_Sleep,600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4174,'Deviling_Card','Deviling Card','Card',20,10,true,true,'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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4175,'Poison_Toad_Card','Poisonous Toad Card','Card',20,10,true,true,true,'bonus3 bAutoSpell,"TF_POISON",1,20; bonus2 bAddSkillBlow,52,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4176,'Dullahan_Card','Dullahan Card','Card',20,10,true,true,'bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Dragon,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4177,'Dryad_Card','Dryad Card','Card',20,10,true,true,true,true,'bonus3 bAddMonsterDropItem,993,RC_Plant,100; bonus2 bSubEle,Ele_Earth,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4178,'Dragon_Tail_Card','Dragon Tail Card','Card',20,10,true,true,'bonus bAgi,1; bonus bFlee,10; bonus2 bSkillAtk,"AC_DOUBLE",5; bonus2 bSkillAtk,"AC_SHOWER",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4179,'Dragon_Fly_Card','Dragon Fly Card','Card',20,10,true,true,'bonus bAgi,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4180,'Driller_Card','Driller Card','Card',20,10,true,true,'bonus2 bSPGainRace,RC_Dragon,5;','heal 0,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4181,'Disguise_Card','Disguise Card','Card',20,10,true,true,'bonus2 bAddEffWhenHit,Eff_Silence,300+600*(readparam(bVit)>=77);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4182,'Diabolic_Card','Diabolic Card','Card',20,10,true,true,'bonus2 bSPGainRace,RC_Demon,5;','heal 0,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4183,'Vagabond_Wolf_Card','Vagabond Wolf Card','Card',20,10,true,true,'bonus bStr,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4184,'Lava_Golem_Card','Lava Golem Card','Card',20,10,true,true,'bonus2 bAddRace2,RC2_Golem,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4185,'Rideword_Card','Rideword Card','Card',20,10,true,true,true,true,'bonus bInt,1; if(BaseClass==Job_Acolyte) { bonus bInt,1; bonus bMdef,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4186,'Raggler_Card','Raggler Card','Card',20,10,true,true,'bonus bStr,1; bonus bVit,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4187,'Raydric_Archer_Card','Raydric Archer Card','Card',20,10,true,true,true,'bonus3 bAddMonsterDropItem,12030,RC_Demon,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4188,'Leib_Olmai_Card','Leib Olmai Card','Card',20,10,true,true,true,true,'bonus2 bSubEle,Ele_Fire,10; bonus3 bAddMonsterDropItem,990,RC_Brute,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4189,'Wraith_Dead_Card','Wraith Dead Card','Card',20,10,true,true,'bonus2 bAddEffWhenHit,Eff_Curse,600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4190,'Wraith_Card','Wraith Card','Card',20,10,true,true,true,'bonus3 bAddMonsterDropItem,12027,RC_Undead,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4191,'Loli_Ruri_Card','Loli Ruri Card','Card',20,10,true,true,'bonus3 bAutoSpellWhenHit,"AL_HEAL",3,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4192,'Rotar_Zairo_Card','Rotar Zairo Card','Card',20,10,true,true,'bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Fish,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4193,'Lude_Card','Lude Card','Card',20,10,true,true,true,'if(BaseJob==Job_Novice||BaseJob==Job_SuperNovice) bonus3 bAutoSpellWhenHit,"SM_ENDURE",1,200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4194,'Rybio_Card','Rybio Card','Card',20,10,true,true,'bonus2 bAddEffWhenHit,Eff_Stun,300+600*(readparam(bDex)>=77);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4195,'Leaf_Cat_Card','Leaf Cat Card','Card',20,10,true,true,true,true,'bonus2 bSubEle,Ele_Water,10; bonus3 bAddMonsterDropItem,991,RC_Fish,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4196,'Marin_Card','Marin Card','Card',20,10,true,true,true,'bonus2 bAddMonsterDropItem,909,2000; bonus2 bAddMonsterDropItem,7126,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4197,'Mastering_Card','Mastering Card','Card',20,10,true,true,'bonus bLuk,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4198,'Maya_Puple_Card','Maya Purple Card','Card',20,10,true,true,true,true,'bonus bIntravision;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4199,'Merman_Card','Merman Card','Card',20,10,true,true,'bonus bHPrecovRate,10; bonus bSPrecovRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4200,'Megalith_Card','Megalith Card','Card',20,10,true,true,'if(getrefine()<6) bonus bMdef,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4201,'Majoruros_Card','Majoruros Card','Card',20,10,true,true,'bonus2 bAddEffWhenHit,Eff_Stun,600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4202,'Civil_Servant_Card','Mao Guai Card','Card',20,10,true,true,'bonus2 bAddEle,Ele_Ghost,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4203,'Mutant_Dragon_Card','Mutant Dragonoid Card','Card',20,10,true,true,'bonus bBaseAtk,15; bonus3 bAutoSpell,"MG_FIREBALL",3+7*(getskilllv("MG_FIREBALL")==10),50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4204,'Mini_Demon_Card','Mini Demon Card','Card',20,10,true,true,'bonus2 bSubRace,RC_Brute,-20; bonus2 bSubRace,RC_Player_Doram,-20; bonus2 bExpAddRace,RC_Brute,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4205,'Mimic_Card','Mimic Card','Card',20,10,true,true,true,'bonus2 bAddMonsterDropItem,603,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4206,'Mystcase_Card','Myst Case Card','Card',20,10,true,true,true,true,'bonus2 bAddMonsterDropItem,644,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4207,'Mysteltainn_Card','Mysteltainn Card','Card',20,10,true,true,'bonus2 bSubSize,Size_Small,25; bonus bDef,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4208,'Miyabi_Ningyo_Card','Miyabi Doll Card','Card',20,10,true,true,'bonus bMaxSPrate,10; bonus2 bSkillAtk,"MG_FROSTDIVER",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4209,'Violy_Card','Violy Card','Card',20,10,true,true,true,'bonus3 bAutoSpell,"BA_FROSTJOKER",1+4*(getskilllv("BA_FROSTJOKER")==5),20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4210,'Wander_Man_Card','Wanderer Card','Card',20,10,true,true,'if(!isequipped(4172,4257,4230,4272)) bonus3 bAutoSpell,"RG_INTIMIDATE",1,20; if(BaseClass==Job_Thief) bonus bFlee,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4211,'Vocal_Card','Vocal Card','Card',20,10,true,true,'bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4212,'Bon_Gun_Card','Bongun Card','Card',20,10,true,true,true,'bonus3 bAutoSpell,"SM_BASH",1,20; bonus2 bAddSkillBlow,"SM_BASH",5; bonus2 bAddDefMonster,1026,-100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4213,'Brilight_Card','Brilight Card','Card',20,10,true,true,'bonus2 bAddEffWhenHit,Eff_Silence,600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4214,'Bloody_Murderer_Card','Bloody Murderer Card','Card',20,10,true,true,'bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Insect,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4215,'Blazzer_Card','Blazer Card','Card',20,10,true,true,true,'bonus2 bAddMonsterDropItemGroup,IG_Food,600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4216,'Sasquatch_Card','Sasquatch Card','Card',20,10,true,true,'bonus2 bAddEffWhenHit,Eff_Freeze,600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4217,'Live_Peach_Tree_Card','Enchanted Peach Tree Card','Card',20,10,true,true,'bonus3 bAutoSpell,"AL_HEAL",1+9*(getskilllv("AL_HEAL")==10),20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4218,'Succubus_Card','Succubus Card','Card',20,10,true,true,'bonus bVit,-3; bonus bHPrecovRate,-20; bonus bMaxHP,1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4219,'Sageworm_Card','Sage Worm Card','Card',20,10,true,true,true,'bonus2 bAddMonsterDropItem,715,30; bonus2 bAddMonsterDropItem,716,30; bonus2 bAddMonsterDropItem,717,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4220,'Solider_Card','Solider Card','Card',20,10,true,true,'bonus bDef,2; bonus bMdef,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4221,'Skeleton_General_Card','Skeleton General Card','Card',20,10,true,true,'bonus2 bSubRace,RC_Insect,-20; bonus2 bExpAddRace,RC_Insect,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4222,'Skel_Prisoner_Card','Skeleton Prisoner Card','Card',20,10,true,true,'bonus2 bAddEffWhenHit,Eff_Sleep,300;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4223,'Stalactic_Golem_Card','Stalactic Golem Card','Card',20,10,true,true,true,true,'bonus bDef,1; bonus2 bResEff,Eff_Stun,2000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4224,'Stem_Worm_Card','Stem Worm Card','Card',20,10,true,true,true,'bonus3 bAddMonsterDropItem,12032,RC_Brute,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4225,'Stone_Shooter_Card','Stone Shooter Card','Card',20,10,true,true,'bonus bBaseAtk,10; bonus bHit,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4226,'Sting_Card','Sting Card','Card',20,10,true,true,'bonus bDef,2; if(getrefine()>8) bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4227,'Spring_Rabbit_Card','Spring Rabbit Card','Card',20,10,true,true,true,'bonus2 bAddItemGroupHealRate,IG_Meat,50; bonus3 bAddMonsterDropItem,517,RC_Brute,200; bonus3 bAddMonsterDropItem,528,RC_Brute,200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4228,'Sleeper_Card','Sleeper Card','Card',20,10,true,true,true,'bonus3 bAddMonsterDropItem,12031,RC_Fish,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4229,'C_Tower_Manager_Card','Tower Keeper Card','Card',20,10,true,true,true,true,'bonus bInt,1; bonus bVariableCastrate,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4230,'Shinobi_Card','Shinobi Card','Card',20,10,true,true,true,'bonus bAgi,1; bonus3 bAutoSpellWhenHit,"AS_CLOAKING",5,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4231,'Increase_Soil_Card','Mi Gao Card','Card',20,10,true,true,'bonus2 bSubRace2,RC2_Guardian,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4232,'Wild_Ginseng_Card','Hermit Plant Card','Card',20,10,true,true,true,'bonus2 bAddItemGroupHealRate,IG_Herb,50; bonus3 bAddMonsterDropItem,507,RC_Plant,300; bonus3 bAddMonsterDropItem,508,RC_Plant,200; bonus3 bAddMonsterDropItem,509,RC_Plant,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4233,'Baby_Leopard_Card','Baby Leopard Card','Card',20,10,true,true,'bonus bLuk,3; if(BaseClass==Job_Merchant) bonus bUnbreakableArmor;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4234,'Anolian_Card','Anolian Card','Card',20,10,true,true,'bonus3 bAutoSpellWhenHit,"AC_CONCENTRATION",1+9*(getskilllv("AC_CONCENTRATION")==10),30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4235,'Cookie_XMAS_Card','Christmas Cookie Card','Card',20,10,true,true,'bonus2 bSubRace,RC_Angel,-20; bonus2 bExpAddRace,RC_Angel,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4236,'Amon_Ra_Card','Amon Ra Card','Card',20,10,true,true,'bonus bAllStats,1; bonus3 bAutoSpellWhenHit,"PR_KYRIE",10,(30+70*(readparam(bInt)>=99));'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4237,'Owl_Duke_Card','Owl Duke Card','Card',20,10,true,true,true,'bonus3 bAutoSpell,"PR_IMPOSITIO",3,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4238,'Owl_Baron_Card','Owl Baron Card','Card',20,10,true,true,true,'bonus3 bAutoSpell,"PR_LEXAETERNA",1,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4239,'Iron_Fist_Card','Iron Fist Card','Card',20,10,true,true,'bonus2 bSubRace,RC_Formless,-20; bonus2 bExpAddRace,RC_Formless,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4240,'Arclouse_Card','Arclouze Card','Card',20,10,true,true,'if(getrefine()<6) { bonus bDef,2; bonus bMdef,3; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4241,'Archangeling_Card','Arc Angeling Card','Card',20,10,true,true,true,true,'bonus bMaxHP,300; if(readparam(bLuk)>=77) { bonus bHPrecovRate,100; bonus bSPrecovRate,100; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4242,'Apocalips_Card','Apocalipse Card','Card',20,10,true,true,'bonus bVit,2; if(getrefine()>8) bonus bMaxHP,800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4243,'Antonio_Card','Antonio Card','Card',20,10,true,true,'bonus3 bAutoSpellWhenHit,"AL_TELEPORT",1,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4244,'Alarm_Card','Alarm Card','Card',20,10,true,true,'bonus3 bAutoSpellWhenHit,"MG_SIGHT",1,200; bonus bMaxHP,300; bonus bVit,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4245,'Am_Mut_Card','Am Mut Card','Card',20,10,true,true,'bonus2 bSubRace,RC_DemiHuman,-20; bonus2 bSubRace,RC_Player_Human,-20; bonus2 bExpAddRace,RC_DemiHuman,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4246,'Assulter_Card','Assaulter Card','Card',20,10,true,true,'bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_DemiHuman,7; bonus2 bCriticalAddRace,RC_Player_Human,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4247,'Aster_Card','Aster Card','Card',20,10,true,true,'bonus bBaseAtk,5; bonus2 bAddDamageClass,1074,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4248,'Ancient_Mummy_Card','Ancient Mummy Card','Card',20,10,true,true,'bonus3 bAutoSpellWhenHit,"AL_CRUCIS",5,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4249,'Ancient_Worm_Card','Ancient Worm Card','Card',20,10,true,true,'bonus2 bSubRace,RC_Demon,-20; bonus2 bExpAddRace,RC_Demon,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4250,'Executioner_Card','Executioner Card','Card',20,10,true,true,'bonus2 bSubSize,Size_Large,25; bonus bDef,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4251,'Elder_Card','Elder Card','Card',20,10,true,true,'bonus2 bAddRace2,RC2_Guardian,40;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4252,'Alligator_Card','Alligator Card','Card',20,10,true,true,true,'bonus bLongAtkDef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4253,'Alice_Card','Alice Card','Card',20,10,true,true,'bonus2 bSubClass,Class_Boss,40; bonus2 bSubClass,Class_Normal,-40;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4254,'Tirfing_Card','Ogretooth Card','Card',20,10,true,true,'bonus2 bSubSize,Size_Medium,25; bonus bDef,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4255,'Orc_Lady_Card','Orc Lady Card','Card',20,10,true,true,'bonus2 bAddRace2,RC2_Orc,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4256,'Orc_Archer_Card','Orc Archer Card','Card',20,10,true,true,true,'bonus3 bAddMonsterDropItem,12034,RC_DemiHuman,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4257,'Wild_Rose_Card','Wild Rose Card','Card',20,10,true,true,'bonus bAgi,1; if(BaseClass==Job_Thief) bonus bFlee2,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4258,'Wicked_Nymph_Card','Evil Nymph Card','Card',20,10,true,true,true,true,'bonus bInt,1; bonus bMaxSP,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4259,'Wooden_Golem_Card','Wooden Golem Card','Card',20,10,true,true,'bonus bDef,1; bonus bHPrecovRate,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4260,'Wootan_Shooter_Card','Wootan Shooter Card','Card',20,10,true,true,true,true,'bonus bDef,1; bonus2 bResEff,Eff_Confusion,2000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4261,'Wootan_Fighter_Card','Wootan Fighter Card','Card',20,10,true,true,true,true,'bonus bDef,1; bonus2 bResEff,Eff_Bleeding,2000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4262,'Evil_Cloud_Hermit_Card','Cloud Hermit Card','Card',20,10,true,true,true,'bonus3 bAddMonsterDropItem,12029,RC_Plant,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4263,'Incant_Samurai_Card','Samurai Spector Card','Card',20,10,true,true,'bonus bIgnoreDefClass,Class_Normal; bonus bHPrecovRate,-100; bonus2 bHPLossRate,666,10000;','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; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4264,'Wind_Ghost_Card','Wind Ghost Card','Card',20,10,true,true,true,'bonus3 bAutoSpell,"WZ_JUPITEL",3+7*(getskilllv("WZ_JUPITEL")==10),20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4265,'Li_Me_Mang_Ryang_Card','Jing Guai Card','Card',20,10,true,true,true,'bonus3 bAddMonsterDropItem,12033,RC_Angel,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4266,'Eclipse_Card','Eclipse Card','Card',20,10,true,true,'bonus bVit,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4267,'Explosion_Card','Explosion Card','Card',20,10,true,true,'bonus2 bSubRace,RC_Dragon,-20; bonus2 bExpAddRace,RC_Dragon,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4268,'Injustice_Card','Injustice Card','Card',20,10,true,true,'bonus3 bAutoSpell,"AS_SONICBLOW",1,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4269,'Incubus_Card','Incubus Card','Card',20,10,true,true,true,true,'bonus bInt,-3; bonus bSPrecovRate,-20; bonus bMaxSP,150;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4270,'Giant_Spider_Card','Giant Spider Card','Card',20,10,true,true,'bonus2 bAddEffWhenHit,Eff_Poison,600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4271,'Giant_Honet_Card','Giant Hornet Card','Card',20,10,true,true,true,true,'bonus2 bSubEle,Ele_Wind,10; bonus3 bAddMonsterDropItem,992,RC_Insect,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4272,'Dancing_Dragon_Card','Zhu Po Long Card','Card',20,10,true,true,true,'bonus bAgi,1; bonus bCritical,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4273,'Shellfish_Card','Shell Fish Card','Card',20,10,true,true,'bonus bBaseAtk,5; bonus2 bAddDamageClass,1073,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4274,'Zombie_Master_Card','Zombie Master Card','Card',20,10,true,true,'bonus2 bSPGainRace,RC_Undead,5;','heal 0,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4275,'Zombie_Prisoner_Card','Zombie Prisoner Card','Card',20,10,true,true,'bonus2 bSubRace,RC_Undead,-20; bonus2 bExpAddRace,RC_Undead,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4276,'Lord_Of_Death_Card','Lord of The Dead Card','Card',20,10,true,true,'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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4277,'Zherlthsh_Card','Zealotus Card','Card',20,10,true,true,'bonus bLuk,2; bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10; bonus2 bSkillAtk,"DC_THROWARROW",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4278,'Gibbet_Card','Gibbet Card','Card',20,10,true,true,true,true,'if(getrefine()<6) bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4279,'Deleter_Card','Earth Deleter Card','Card',20,10,true,true,'bonus bSPrecovRate,-100; bonus bSPGainValue,10;','heal 0,-100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4280,'Geographer_Card','Geographer Card','Card',20,10,true,true,'bonus3 bAutoSpellWhenHit,"AL_BLESSING",2+8*(getskilllv("AL_BLESSING")==10),30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4281,'Zipper_Bear_Card','Zipper Bear Card','Card',20,10,true,true,'bonus bBaseAtk,30; bonus bSPDrainValue,-1; if(BaseClass==Job_Merchant) bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4282,'Tengu_Card','Tengu Card','Card',20,10,true,true,true,'bonus2 bAddMonsterDropItemGroup,IG_Recovery,600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4283,'Greatest_General_Card','Greatest General Card','Card',20,10,true,true,true,'bonus3 bAutoSpell,"MO_CALLSPIRITS",5,2+18*(BaseClass==Job_Acolyte);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4284,'Chepet_Card','Chepet Card','Card',20,10,true,true,'bonus4 bAutoSpell,"AL_HEAL",5,50,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4285,'Choco_Card','Choco Card','Card',20,10,true,true,'bonus bFlee2,5; bonus bFlee,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4286,'Karakasa_Card','Karakasa Card','Card',20,10,true,true,'bonus2 bAddEffWhenHit,Eff_Confusion,300+600*(readparam(bStr)>=77);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4287,'Kapha_Card','Kapha Card','Card',20,10,true,true,'if(getrefine()<6) bonus bMdef,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4288,'Carat_Card','Carat Card','Card',20,10,true,true,true,true,'bonus bInt,2; if(getrefine()>8) bonus bMaxSP,150;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4289,'Caterpillar_Card','Caterpillar Card','Card',20,10,true,true,'bonus2 bSPGainRace,RC_Plant,5;','heal 0,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4290,'Cat_O_Nine_Tail_Card','Cat O\' Nine Tails Card','Card',20,10,true,true,'bonus bMdef,3; bonus bMagicDamageReturn,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4291,'Kobold_Leader_Card','Kobold Leader Card','Card',20,10,true,true,'bonus2 bAddRace2,RC2_Kobold,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4292,'Kobold_Archer_Card','Kobold Archer Card','Card',20,10,true,true,'bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Plant,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4293,'Cookie_Card','Cookie Card','Card',20,10,true,true,true,'bonus bLuk,2; bonus2 bSkillAtk,"AL_HOLYLIGHT",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4294,'Quve_Card','Quve Card','Card',20,10,true,true,true,'if(BaseJob==Job_Novice||BaseJob==Job_SuperNovice) bonus3 bAutoSpellWhenHit,"AL_INCAGI",1,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4295,'Kraben_Card','Kraben Card','Card',20,10,true,true,'bonus2 bAddEffWhenHit,Eff_Blind,600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4296,'Cramp_Card','Cramp Card','Card',20,10,true,true,true,true,'bonus2 bGetZenyNum,500,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4297,'Cruiser_Card','Cruiser Card','Card',20,10,true,true,'bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Brute,7; bonus2 bCriticalAddRace,RC_Player_Doram,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4298,'Cremy_Fear_Card','Creamy Fear Card','Card',20,10,true,true,'bonus2 bAddEffWhenHit,Eff_Confusion,600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4299,'Clock_Card','Clock Card','Card',20,10,true,true,'bonus3 bAutoSpellWhenHit,"CR_AUTOGUARD",3+7*(getskilllv("CR_AUTOGUARD")==10),30;','sc_end SC_AUTOGUARD;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4300,'Chimera_Card','Chimera Card','Card',20,10,true,true,'bonus2 bAddEffWhenHit,Eff_Poison,300+600*(BaseJob==Job_Assassin);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4301,'Killer_Mantis_Card','Killer Mantis Card','Card',20,10,true,true,'bonus2 bAddEffWhenHit,Eff_Bleeding,600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4302,'Tao_Gunka_Card','Tao Gunka Card','Card',20,10,true,true,'bonus bMaxHPrate,100; bonus bDefRate,-50; bonus bMdefRate,-50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4303,'Whisper_Boss_Card','Giant Whisper Card','Card',20,10,true,true,'bonus bFlee,10; if(readparam(bStr)>=80) bonus bBaseAtk,20; if(readparam(bVit)>=80) bonus bMaxHPrate,3; if(readparam(bLuk)>=80) bonus bCritical,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4304,'Tamruan_Card','Tamruan Card','Card',20,10,true,true,'bonus bDef,2; bonus2 bSkillAtk,"CR_SHIELDCHARGE",10; bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4305,'Turtle_General_Card','Turtle General Card','Card',20,10,true,true,'bonus2 bAddClass,Class_All,20; bonus3 bAutoSpell,"SM_MAGNUM",10,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4306,'Toad_Card','Toad Card','Card',20,10,true,true,'bonus bFlee2,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4307,'Kind_Of_Beetle_Card','Beetle King Card','Card',20,10,true,true,'bonus2 bSPGainRace,RC_Fish,5;','heal 0,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4308,'Tri_Joint_Card','Tri Joint Card','Card',20,10,true,true,'bonus2 bSPGainRace,RC_Formless,5;','heal 0,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4309,'Parasite_Card','Parasite Card','Card',20,10,true,true,'bonus bDef,1; bonus2 bSubRace,RC_Formless,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4310,'Panzer_Goblin_Card','Panzer Goblin Card','Card',20,10,true,true,'bonus bCritAtkRate,10; bonus2 bCriticalAddRace,RC_Demon,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4311,'Permeter_Card','Permeter Card','Card',20,10,true,true,true,true,'bonus2 bSubEle,Ele_Dark,15; bonus2 bSubEle,Ele_Undead,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4312,'Fur_Seal_Card','Seal Card','Card',20,10,true,true,'bonus bFlee,3; bonus bHit,10; if(BaseClass==Job_Acolyte) { bonus2 bCriticalAddRace,RC_Undead,9; bonus2 bCriticalAddRace,RC_Demon,9; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4313,'Punk_Card','Punk Card','Card',20,10,true,true,'bonus4 bAutoSpellWhenHit,"WZ_QUAGMIRE",1+4*(getskilllv("WZ_QUAGMIRE")==5),50,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4314,'Penomena_Card','Penomena Card','Card',20,10,true,true,'bonus2 bSubRace,RC_Formless,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4315,'Pest_Card','Pest Card','Card',20,10,true,true,'bonus2 bAddEffWhenHit,Eff_Stone,300+600*(readparam(bInt)>=77);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4316,'Fake_Angel_Card','False Angel Card','Card',20,10,true,true,'bonus2 bSPGainRace,RC_Angel,5;','heal 0,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4317,'Mobster_Card','Mobster Card','Card',20,10,true,true,'bonus bCritAtkRate,15; if(BaseClass==Job_Thief) bonus bCritical,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4318,'Knight_Windstorm_Card','Stormy Knight Card','Card',20,10,true,true,'bonus3 bAutoSpell,"WZ_STORMGUST",1,20; bonus2 bAddEff,Eff_Freeze,2000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4319,'Freezer_Card','Freezer Card','Card',20,10,true,true,'bonus bMaxHP,300; if(getrefine()>=9) bonus2 bSkillAtk,"SM_BASH",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4320,'Bloody_Knight_Card','Bloody Knight Card','Card',20,10,true,true,'bonus3 bAutoSpell,"WZ_METEOR",1,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4321,'Hylozoist_Card','Hylozoist Card','Card',20,10,true,true,true,'bonus bClassChange,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4322,'High_Orc_Card','High Orc Card','Card',20,10,true,true,'bonus bDef,1; bonus bShortWeaponDamageReturn,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4323,'Garm_Baby_Card','Hatii Babe Card','Card',20,10,true,true,'bonus3 bAutoSpell,"MG_FROSTDIVER",3,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4324,'Garm_Card','Hatii Card','Card',20,10,true,true,'bonus2 bAddEffWhenHit,Eff_Freeze,5000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4325,'Harpy_Card','Harpy Card','Card',20,10,true,true,'bonus2 bSubEle,Ele_Neutral,15; bonus2 bSkillAtk,"MG_NAPALMBEAT",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4326,'See_Otter_Card','Sea-Otter Card','Card',20,10,true,true,true,'bonus2 bAddItemGroupHealRate,IG_Fish,50; bonus3 bAddMonsterDropItem,551,RC_Fish,300; bonus3 bAddMonsterDropItem,544,RC_Fish,300;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4327,'Blood_Butterfly_Card','Bloody Butterfly Card','Card',20,10,true,true,true,'bonus bVariableCastrate,30; bonus bNoCastCancel; bonus2 bSkillAtk,"MG_FIREWALL",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4328,'Hyegun_Card','Yao Jun Card','Card',20,10,true,true,'bonus bFlee,15; bonus bCritical,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4329,'Phendark_Card','Phendark Card','Card',20,10,true,true,'bonus2 bSPGainRace,RC_DemiHuman,5; bonus2 bSPGainRace,RC_Player_Human,5;','heal 0,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4330,'Dark_Snake_Lord_Card','Evil Snake Lord Card','Card',20,10,true,true,true,true,'bonus bInt,3; bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Curse,10000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4331,'Heater_Card','Heater Card','Card',20,10,true,true,true,'bonus bCritical,3; if(BaseClass==Job_Swordman) bonus bFlee2,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4332,'Waste_Stove_Card','Waste Stove Card','Card',20,10,true,true,'bonus bBaseAtk,5; bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4333,'Venomous_Card','Venomous Card','Card',20,10,true,true,'bonus3 bAddEffWhenHit,Eff_Poison,3000,ATF_TARGET|ATF_SELF;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4334,'Noxious_Card','Noxious Card','Card',20,10,true,true,'bonus bLongAtkDef,10; bonus2 bSubEle,Ele_Neutral,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4335,'Pitman_Card','Pitman Card','Card',20,10,true,true,'bonus2 bSkillAtk,"WZ_EARTHSPIKE",5; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",5;','heal 0,-50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4336,'Ungoliant_Card','Ungoliant Card','Card',20,10,true,true,true,true,'bonus bHPrecovRate,10; bonus2 bResEff,Eff_Bleeding,10000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4337,'Porcellio_Card','Porcellio Card','Card',20,10,true,true,'bonus bBaseAtk,25; bonus bDef,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4338,'Obsidian_Card','Obsidian Card','Card',20,10,true,true,'bonus bVit,readparam(bDex)/18;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4339,'Mineral_Card','Mineral Card','Card',20,10,true,true,'bonus bBaseAtk,-25; bonus bDef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4340,'Teddy_Bear_Card','Teddy Bear Card','Card',20,10,true,true,'bonus2 bSubRace,RC_Undead,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4341,'Metaling_Card','Metaling Card','Card',20,10,true,true,'bonus3 bAutoSpell,"RG_STRIPWEAPON",1,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4342,'Rsx_0806_Card','RSX-0806 Card','Card',20,10,true,true,'bonus bVit,3; bonus bUnbreakableArmor; bonus bNoKnockback;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4343,'Mole_Card','Holden Card','Card',20,10,true,true,true,true,'bonus bLuk,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4344,'Anopheles_Card','Anopheles Card','Card',20,10,true,true,true,'bonus3 bAddMonsterDropItem,12058,RC_Insect,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4345,'Hill_Wind_Card','Hill Wind Card','Card',20,10,true,true,'bonus2 bSkillAtk,"MG_THUNDERSTORM",5; bonus2 bSkillAtk,"WZ_JUPITEL",5; bonus2 bSkillAtk,"WZ_VERMILION",5;','heal 0,-50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4346,'Ygnizem_Card','Egnigem Cenia Card','Card',20,10,true,true,'bonus bStr,readparam(bInt)/18;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4347,'Armaia_Card','Armeyer Dinze Card','Card',20,10,true,true,true,'bonus3 bAddMonsterDropItem,12053,RC_Fish,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4348,'Whikebain_Card','Wickebine Tres Card','Card',20,10,true,true,true,'bonus3 bAutoSpell,"RG_STRIPARMOR",1,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4349,'Erend_Card','Errende Ebecee Card','Card',20,10,true,true,true,'bonus4 bAutoSpellWhenHit,"AL_PNEUMA",1,50,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4350,'Rawrel_Card','Laurell Weinder Card','Card',20,10,true,true,'bonus2 bSkillAtk,"WZ_FROSTNOVA",3; bonus2 bSkillAtk,"WZ_STORMGUST",3;','heal 0,-50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4351,'Kavac_Card','Kavach Icarus Card','Card',20,10,true,true,'if(getrefine()<=4) { bonus bFlee,20; bonus bFlee2,1; } else { bonus bFlee,10; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4352,'B_Ygnizem_Card','General Egnigem Cenia Card','Card',20,10,true,true,'bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bHPRegenRate,50,10000; bonus2 bSPRegenRate,10,10000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4353,'Removal_Card','Remover Card','Card',20,10,true,true,'bonus bMaxHP,800-40*getrefine(); bonus bHPrecovRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4354,'Gemini_Card','Gemini-S58 Card','Card',20,10,true,true,true,true,'if(readparam(bAgi)>=90) { bonus2 bResEff,Eff_Silence,3000; bonus2 bResEff,Eff_Stun,3000; } if(readparam(bVit)>=80) { bonus2 bResEff,Eff_Stone,5000; bonus2 bResEff,Eff_Sleep,5000; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4355,'Gremlin_Card','Gremlin Card','Card',20,10,true,true,true,'bonus3 bAddMonsterDropItem,12043,RC_Brute,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4356,'Beholder_Card','Beholder Card','Card',20,10,true,true,true,'skill "SA_CASTCANCEL",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4357,'B_Seyren_Card','Lord Knight Card','Card',20,10,true,true,true,true,'skill "LK_BERSERK",1; bonus bMaxHPrate,-50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4358,'Seyren_Card','Seyren Windsor Card','Card',20,10,true,true,true,true,'bonus bStr,getrefine()-6;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4359,'B_Eremes_Card','Assassin Cross Card','Card',20,10,true,true,'skill "AS_CLOAKING",3;','sc_end SC_CLOAKING;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4360,'Eremes_Card','Eremes Guile Card','Card',20,10,true,true,'bonus2 bCriticalAddRace,RC_DemiHuman,10; bonus2 bCriticalAddRace,RC_Player_Human,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4361,'B_Harword_Card','MasterSmith Card','Card',20,10,true,true,'bonus bBreakWeaponRate,1000; bonus bBreakArmorRate,700;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4362,'Harword_Card','Howard Alt-Eisen Card','Card',20,10,true,true,'bonus bAspdRate,-5; bonus bHit,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4363,'B_Magaleta_Card','High Priest Card','Card',20,10,true,true,'bonus5 bAutoSpellWhenHit,"HP_ASSUMPTIO",5,50,BF_WEAPON|BF_MAGIC,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4364,'Magaleta_Card','Margaretha Sorin Card','Card',20,10,true,true,true,true,'bonus bInt,1; bonus5 bAutoSpellWhenHit,"PR_LEXDIVINA",5,150,BF_MAGIC,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4365,'B_Katrinn_Card','High Wizard Card','Card',20,10,true,true,true,true,'bonus2 bIgnoreMdefClassRate,Class_Normal,100; bonus bVariableCastrate,100; bonus bSPrecovRate,-100;','heal 0,-2000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4366,'Katrinn_Card','Kathryne Keyron Card','Card',20,10,true,true,true,true,'.@r = getrefine(); bonus bVariableCastrate,.@r*-1; if(.@r>=9) { bonus bMatkRate,2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4367,'B_Shecil_Card','Sniper Card','Card',20,10,true,true,'bonus2 bHPDrainRate,100,20; bonus bHPrecovRate,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4368,'Shecil_Card','Cecil Damon Card','Card',20,10,true,true,'bonus bAspdRate,5; bonus bHit,-30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4369,'Venatu_Card','Venatu Card','Card',20,10,true,true,'bonus bLuk,readparam(bAgi)/18;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4370,'Dimik_Card','Dimik Card','Card',20,10,true,true,'bonus bVit,getrefine()-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4371,'Archdam_Card','Archdam Card','Card',20,10,true,true,'bonus bBaseAtk,10; bonus bVariableCastrate,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4372,'Bacsojin_Card','White Lady Card','Card',20,10,true,true,true,true,'bonus bHealPower,30; bonus bUseSPrate,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4373,'Chung_E_Card','Green Maiden Card','Card',20,10,true,true,'.@r = getrefine(); bonus bLuk,.@r-5; bonus bCritical,.@r;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4374,'Apocalips_H_Card','Vesper Card','Card',20,10,true,true,true,true,'bonus bDex,2; bonus2 bIgnoreMdefClassRate,Class_Boss,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4375,'Orc_Baby_Card','Orc Baby Card','Card',20,10,true,true,'.@i = (getrefine()>=9?15:10); bonus2 bSubEle,Ele_Neutral,.@i; bonus bFlee,.@i;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4376,'Lady_Tanee_Card','Lady Tanee Card','Card',20,10,true,true,'bonus bMaxHPrate,-40; bonus bMaxSPrate,50; bonus2 bAddMonsterDropItem,513,200; bonus2 bAddItemHealRate,513,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4377,'Green_Iguana_Card','Grove Card','Card',20,10,true,true,true,'bonus3 bAddMonsterDropItem,12063,RC_Formless,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4378,'Acidus_Card','Gold Acidus Card','Card',20,10,true,true,'if(getrefine()<=4) { bonus bMaxHPrate,8; bonus bMaxSPrate,8; bonus bHPrecovRate,5; bonus bSPrecovRate,5; } else { bonus bMaxHPrate,4; bonus bMaxSPrate,4; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4379,'Acidus__Card','Blue Acidus Card','Card',20,10,true,true,true,true,'if(getrefine()<=4) { bonus bSPrecovRate,5; bonus bMaxSP,80; } else { bonus bMaxSP,40; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4380,'Ferus_Card','Red Ferus Card','Card',20,10,true,true,'bonus2 bSkillAtk,"WZ_FIREPILLAR",5; bonus2 bSkillAtk,"WZ_METEOR",5;','heal 0,-50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4381,'Ferus__Card','Green Ferus Card','Card',20,10,true,true,'bonus bVit,1; bonus bMaxHPrate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4382,'Novus__Card','Yellow Novus Card','Card',20,10,true,true,'bonus bMaxHP,500; bonus bHPrecovRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4383,'Novus_Card','Red Novus Card','Card',20,10,true,true,'bonus3 bAddEffWhenHit,Eff_Confusion,3000,ATF_TARGET|ATF_SELF;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4384,'Hydro_Card','Hydrolancer Card','Card',20,10,true,true,true,'bonus3 bAutoSpell,"SA_SPELLBREAKER",1,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4385,'Dragon_Egg_Card','Dragon Egg Card','Card',20,10,true,true,true,'bonus3 bAddMonsterDropItem,12048,RC_Dragon,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4386,'Detale_Card','Detardeurus Card','Card',20,10,true,true,'bonus bMdef,-20; bonus2 bResEff,Eff_Freeze,10000; bonus5 bAutoSpellWhenHit,"SA_LANDPROTECTOR",1,70,BF_MAGIC,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4387,'Ancient_Mimic_Card','Ancient Mimic Card','Card',20,10,true,true,'bonus bAgi,readparam(bLuk)/18;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4388,'Deathword_Card','Death Word Card','Card',20,10,true,true,'bonus2 bSkillAtk,"MG_NAPALMBEAT",5; bonus2 bSkillAtk,"MG_SOULSTRIKE",5; bonus2 bSkillAtk,"HW_NAPALMVULCAN",5;','heal 0,-50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4389,'Plasma_Card','Plasma Card','Card',20,10,true,true,true,'bonus2 bAddMonsterDropItem,12118,50; bonus2 bAddMonsterDropItem,12119,50; bonus2 bAddMonsterDropItem,12120,50; bonus2 bAddMonsterDropItem,12121,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4390,'Breeze_Card','Breeze Card','Card',20,10,true,true,'bonus bBaseAtk,5; bonus2 bAddEff,Eff_Bleeding,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4391,'Retribution_Card','Baroness of Retribution Card','Card',20,10,true,true,true,'bonus3 bAddMonsterDropItem,12068,RC_Angel,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4392,'Observation_Card','Dame of Sentinel Card','Card',20,10,true,true,'bonus bDex,readparam(bVit)/18;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4393,'Shelter_Card','Mistress of Shelter Card','Card',20,10,true,true,'bonus bInt,readparam(bStr)/18;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4394,'Solace_Card','Lady Solace Card','Card',20,10,true,true,'if(BaseJob==Job_Priest) bonus3 bAutoSpell,"CR_GRANDCROSS",5,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4395,'Tha_Maero_Card','Maero of Thanatos Card','Card',20,10,true,true,'bonus bBaseAtk,5; bonus3 bAutoSpell,"AL_DECAGI",3,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4396,'Tha_Odium_Card','Odium of Thanatos Card','Card',20,10,true,true,'bonus bAgi,getrefine()-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4397,'Tha_Despero_Card','Despero of Thanatos Card','Card',20,10,true,true,'bonus bInt,getrefine()-6;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4398,'Tha_Dolor_Card','Dolor of Thanatos Card','Card',20,10,true,true,'bonus2 bMagicAddRace,RC_Angel,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4399,'Thanatos_Card','Memory of Thanatos Card','Card',20,10,true,true,'bonus bDefRatioAtkClass,Class_All; bonus bSPDrainValue,-1; bonus bDef,-30; bonus bFlee,-30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4400,'Aliza_Card','Aliza Card','Card',20,10,true,true,'bonus3 bAutoSpellWhenHit,"DC_WINKCHARM",1,50+50*(BaseJob==Job_Dancer);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4401,'Alicel_Card','Alicel Card','Card',20,10,true,true,'bonus bFlee,10; bonus bDef,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4402,'Aliot_Card','Aliot Card','Card',20,10,true,true,'if(BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Thief) { bonus bStr,2; bonus bMaxHPrate,5; } if(BaseClass==Job_Mage||BaseClass==Job_Archer||BaseClass==Job_Acolyte) { bonus bInt,2; bonus bMaxSPrate,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4403,'Kiel_Card','Kiel-D-01 Card','Card',20,10,true,true,true,true,'bonus bDelayRate,-30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4404,'Skogul_Card','Skogul Card','Card',20,10,true,true,'bonus3 bAddEffWhenHit,Eff_Bleeding,3000,ATF_TARGET|ATF_SELF;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4405,'Frus_Card','Frus Card','Card',20,10,true,true,'bonus bMagicDamageReturn,getrefine()*2; if(BaseClass==Job_Mage) bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4406,'Skeggiold_Card','Skeggiold Card','Card',20,10,true,true,'bonus2 bMagicAddRace,RC_Demon,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4407,'Randgris_Card','Randgris Card','Card',20,10,true,true,'bonus bUnbreakableWeapon; bonus2 bAddClass,Class_All,10; bonus3 bAutoSpell,"SA_DISPELL",1,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4408,'Gloom_Under_Night_Card','Gloom Under Night Card','Card',20,10,true,true,'bonus2 bAddEle,Ele_Holy,40; bonus2 bAddEle,Ele_Dark,40; bonus2 bAddRace,RC_Angel,40; bonus2 bAddRace,RC_Demon,40;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4409,'Agav_Card','Agav Card','Card',20,10,true,true,'bonus bMatkRate,5; bonus bDef,-10; if(BaseClass==Job_Mage) bonus bMaxSP,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4410,'Echio_Card','Echio Card','Card',20,10,true,true,'bonus bBaseAtk,15; if(BaseClass==Job_Swordman) bonus bMaxHP,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4411,'Vanberk_Card','Vanberk Card','Card',20,10,true,true,true,true,'bonus bStr,2; autobonus "{ bonus bCritical,100; }",5,5000,0,"{ specialeffect2 EF_ENHANCE; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4412,'Isilla_Card','Isilla Card','Card',20,10,true,true,true,true,'bonus bInt,2; autobonus "{ bonus bVariableCastrate,-50; bonus bFlee,30; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4413,'Hodremlin_Card','Hodremlin Card','Card',20,10,true,true,'bonus2 bSubSize,Size_All,15; autobonus2 "{ bonus bFlee2,30; }",3,10000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_WIND; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4414,'Seeker_Card','Seeker Card','Card',20,10,true,true,'skill "MG_STONECURSE",1; bonus2 bResEff,Eff_Stone,3000; bonus bMdef,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4415,'Snowier_Card','Snowier Card','Card',20,10,true,true,true,'bonus2 bAddMonsterDropItem,536,500; bonus2 bAddItemHealRate,536,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4416,'Siroma_Card','Siroma Card','Card',20,10,true,true,true,'bonus2 bSkillAtk,"MG_COLDBOLT",25; bonus2 bVariableCastrate,"MG_COLDBOLT",-25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4417,'Ice_Titan_Card','Ice Titan Card','Card',20,10,true,true,'bonus bVit,2; autobonus2 "{ bonus bDef,10; }",3,10000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_FREEZED; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4418,'Gazeti_Card','Gazeti Card','Card',20,10,true,true,true,'bonus3 bAutoSpell,"MG_COLDBOLT",2,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4419,'Ktullanux_Card','Ktullanux Card','Card',20,10,true,true,'bonus2 bAddEle,Ele_Fire,50; bonus5 bAutoSpellWhenHit,"WZ_FROSTNOVA",10,20,BF_WEAPON|BF_MAGIC,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4420,'Muscipular_Card','Muscipular Card','Card',20,10,true,true,'bonus3 bAutoSpellWhenHit,"AL_HEAL",1,100; bonus3 bAutoSpellWhenHit,"AL_INCAGI",1,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4421,'Drosera_Card','Drosera Card','Card',20,10,true,true,'bonus bCriticalLong,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4422,'Roween_Card','Roween Card','Card',20,10,true,true,'bonus bFlee,5; bonus bFlee2,3; bonus2 bAddEle,Ele_Water,10; bonus2 bCriticalAddRace,RC_Fish,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4423,'Galion_Card','Galion Card','Card',20,10,true,true,true,'bonus bHit,5; bonus2 bAddEle,Ele_Water,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4424,'Stapo_Card','Stapo Card','Card',20,10,true,true,true,'skill "TF_PICKSTONE",1; skill "TF_THROWSTONE",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4425,'Atroce_Card','Atroce Card','Card',20,10,true,true,'bonus bBaseAtk,25; autobonus "{ bonus bAspdRate,100; }",5,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4426,'Byorgue_Card','Byorgue Card','Card',20,10,true,true,'if(BaseJob==Job_Rogue) { bonus bMatkRate,10; bonus2 bAddClass,Class_All,10; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4427,'Sword_Guardian_Card','Sword Guardian Card','Card',20,10,true,true,'.@i = getiteminfo(getequipid(EQI_HAND_R),11); if(.@i==W_1HSWORD||.@i==W_2HSWORD) { bonus bHit,5; bonus bCritical,5; bonus2 bSkillAtk,62,25; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4428,'Bow_Guardian_Card','Bow Guardian Card','Card',20,10,true,true,'if(getiteminfo(getequipid(EQI_HAND_R),11)==W_BOW) { bonus bHit,5; bonus bCritical,5; bonus2 bSkillAtk,"AC_SHOWER",50; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4429,'Salamander_Card','Salamander Card','Card',20,10,true,true,'bonus2 bSkillAtk,"WZ_FIREPILLAR",40; bonus2 bSkillAtk,"WZ_METEOR",40;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4430,'Ifrit_Card','Ifrit Card','Card',20,10,true,true,true,'bonus bBaseAtk,(JobLevel/10); bonus bCritical,(JobLevel/10); bonus bHit,(JobLevel/10); bonus3 bAutoSpellWhenHit,"NPC_EARTHQUAKE",10,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4431,'Kasa_Card','Kasa Card','Card',20,10,true,true,'bonus3 bAutoSpell,"MG_FIREBALL",5,20; bonus3 bAutoSpell,"MG_FIREBOLT",5,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4432,'Magmaring_Card','Magmaring Card','Card',20,10,true,true,'bonus bBaseAtk,5; bonus2 bAddEle,Ele_Earth,10; bonus2 bCriticalAddRace,RC_Brute,15; bonus2 bCriticalAddRace,RC_Player_Doram,15; bonus2 bCriticalAddRace,RC_Plant,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4433,'Imp_Card','Imp Card','Card',20,10,true,true,true,'bonus2 bSkillAtk,"MG_FIREBOLT",25; bonus2 bVariableCastrate,"MG_FIREBOLT",-25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4434,'Knocker_Card','Knocker Card','Card',20,10,true,true,true,true,'bonus2 bAddRace,RC_Formless,5; bonus3 bAddMonsterDropItem,756,RC_Formless,10; bonus3 bAddMonsterDropItem,757,RC_Formless,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4435,'Zombie_Slaughter_Card','Zombie Slaughter Card','Card',20,10,true,true,'bonus2 bAddRace,RC_DemiHuman,1; bonus2 bAddRace,RC_Player_Human,1; bonus2 bMagicAddRace,RC_DemiHuman,1; bonus2 bMagicAddRace,RC_Player_Human,1; bonus bHPGainValue,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4436,'Ragged_Zombie_Card','Ragged Zombie Card','Card',20,10,true,true,true,'bonus2 bCriticalAddRace,RC_DemiHuman,5; bonus2 bCriticalAddRace,RC_Player_Human,5; bonus2 bAddRace,RC_DemiHuman,1; bonus2 bAddRace,RC_Player_Human,1; bonus2 bMagicAddRace,RC_DemiHuman,1; bonus2 bMagicAddRace,RC_Player_Human,1; bonus2 bAddEff2,Eff_Bleeding,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4437,'Hell_Poodle_Card','Hell Poodle Card','Card',20,10,true,true,true,'bonus bHit,1; bonus2 bAddItemHealRate,517,100; bonus3 bAddEff,Eff_Bleeding,50,ATF_SHORT;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4438,'Banshee_Card','Banshee Card','Card',20,10,true,true,true,true,'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; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4439,'Flame_Skull_Card','Flame Skull Card','Card',20,10,true,true,'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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4440,'Necromancer_Card','Necromancer Card','Card',20,10,true,true,'.@i = getiteminfo(getequipid(EQI_HAND_R),11); if(.@i==W_STAFF || .@i==W_2HSTAFF) { bonus bInt,1; bonus2 bIgnoreMdefClassRate,Class_Normal,2; bonus2 bIgnoreMdefClassRate,Class_Boss,2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4441,'Fallen_Bishop_Card','Fallen Bishop Hibram Card','Card',20,10,true,true,'bonus bMatkRate,10; bonus bMaxSPrate,-50; bonus2 bMagicAddRace,RC_Angel,50; bonus2 bMagicAddRace,RC_DemiHuman,50; bonus2 bMagicAddRace,RC_Player_Human,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4442,'Tatacho_Card','Tatacho Card','Card',20,10,true,true,'bonus2 bSubDefEle,Ele_Neutral,20; bonus2 bAddEle,Ele_Neutral,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4443,'Aqua_Elemental_Card','Aqua Elemental Card','Card',20,10,true,true,'bonus2 bSubDefEle,Ele_Water,20; bonus2 bAddEle,Ele_Water,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4444,'Draco_Card','Draco Card','Card',20,10,true,true,'bonus2 bSubDefEle,Ele_Earth,20; bonus2 bAddEle,Ele_Earth,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4445,'Luciola_Vespa_Card','Luciola Vespa Card','Card',20,10,true,true,'bonus2 bSubDefEle,Ele_Wind,20; bonus2 bAddEle,Ele_Wind,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4446,'Enhanced_Skeleton_Card','Enhanced Skeleton Card','Card',20,10,true,true,'bonus bBaseAtk,15; bonus2 bAddEff,Eff_Stun,(BaseLevel>=100?300:200);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4447,'Centipede_Card','Centipede Card','Card',20,10,true,true,'bonus2 bSubDefEle,Ele_Poison,20; bonus2 bAddEle,Ele_Poison,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4448,'Cornus_Card','Cornus Card','Card',20,10,true,true,'bonus2 bSubDefEle,Ele_Holy,20; bonus2 bAddEle,Ele_Holy,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4449,'Dark_Shadow_Card','Dark Shadow Card','Card',20,10,true,true,'bonus2 bSubDefEle,Ele_Dark,20; bonus2 bAddEle,Ele_Dark,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4450,'Banshee_Master_Card','Banshee Master Card','Card',20,10,true,true,'bonus bInt,1; bonus bMatk,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4451,'Ant_Buyanne_Card','Entweihen Crothen Card','Card',20,10,true,true,'bonus bMatk,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4452,'Centipede_Larva_Card','Centipede Larva Card','Card',20,10,true,true,'bonus bInt,1; bonus bMatk,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4453,'Hilsrion_Card','Hillsrion Card','Card',20,10,true,true,'bonus bBaseAtk,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`) VALUES (4454,'Light_Up_Card1','Light Up Card','Card',20,10,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`) VALUES (4455,'Light_Up_Card2','Light Up Card','Card',20,10,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4456,'Nidhogg_Shadow_Card','Nidhoggur Shadow Card','Card',20,10,true,true,'bonus bInt,5; if (Class == Job_High_Wizard || Class == Job_Baby_Warlock || Class == Job_Warlock || Class == Job_Warlock_T) bonus bFixedCastrate,-50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4457,'Nahtzigger_Card','Naght Sieger Card','Card',20,10,true,true,'bonus2 bMagicAtkEle,Ele_Ghost,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4458,'Duneirre_Card','Duneyrr Card','Card',20,10,true,true,true,true,'bonus bBaseAtk,10; autobonus "{ bonus bFlee2,10; }",10,10000,0,"{ specialeffect2 EF_HASTEUP; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4459,'Lata_Card','Rata Card','Card',20,10,true,true,true,true,'bonus bMatk,10; autobonus "{ bonus bFixedCastrate,-50; }",5,4000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4460,'Ringco_Card','Rhyncho Card','Card',20,10,true,true,true,true,'bonus bHealPower,4; bonus2 bSkillUseSP,"AL_HEAL",-15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4461,'Pillar_Card','Phylla Card','Card',20,10,true,true,true,true,'bonus bDex,1; bonus bAgi,1; autobonus "{ bonus bCritical,20; }",15,4000,0,"{ specialeffect2 EF_ENHANCE; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4462,'Hardrock_Mommos_Card','Hardrock Mammoth Card','Card',20,10,true,true,'.@r = getrefine(); bonus bDef,5; if(.@r>=12) { bonus bDef,20; bonus bMaxHPrate,10; } if(.@r>=14) { bonus bMaxHPrate,3; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4463,'Tendrilion_Card','Tendrilrion Card','Card',20,10,true,true,'bonus bCritical,5; .@r = getrefine(); if(.@r>=12) { bonus bBaseAtk,35; } if(.@r>=14) { bonus bCritical,10; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4464,'Aunoe_Card','Aunoe Card','Card',20,10,true,true,'bonus bCritAtkRate,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4465,'Panat_Card','Fanat Card','Card',20,10,true,true,'bonus bBaseAtk,10; if(getiteminfo(getequipid(EQI_HAND_R),11)==W_2HSWORD) { .@r = getrefine(); if(.@r>=10) { bonus bAspd,1; } if(.@r>=14) { bonus bAspd,1; } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4466,'Beholder_Master_Card','Beholder Master Card','Card',20,10,true,true,'bonus bLongAtkRate,3; if(getiteminfo(getequipid(EQI_HAND_R),11)==W_BOW) { .@r = getrefine(); if(.@r>=10) { bonus bAspd,1; } if(.@r>=14) { bonus bAspd,1; } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4467,'Heavy_Metaling_Card','Heavy Metaling Card','Card',20,10,true,true,'bonus bStr,2; if(BaseClass==Job_Merchant){ bonus2 bSkillAtk,"MC_CARTREVOLUTION",50; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4468,'Pinguicula_Dark_Card','Dark Pinguicula Card','Card',20,10,true,true,true,true,'bonus bBaseAtk,10; bonus2 bAddMonsterDropItem,7932,10; bonus2 bAddMonsterDropItem,7933,10; bonus2 bAddMonsterDropItem,7934,10; bonus2 bAddMonsterDropItem,7935,10; bonus2 bAddMonsterDropItem,7936,10; bonus2 bAddMonsterDropItem,7937,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4469,'Naga_Card','Naga Card','Card',20,10,true,true,'bonus2 bMagicAddRace,RC_Fish,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4470,'Nepenthes_Card','Nepenthes Card','Card',20,10,true,true,'bonus2 bMagicAddRace,RC_Plant,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4471,'Egg_Of_Draco_Card','Draco Egg Card','Card',20,10,true,true,'bonus2 bMagicAddRace,RC_Dragon,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4472,'Bradium_Goram_Card','Bradium Golem Card','Card',20,10,true,true,'bonus2 bMagicAddRace,RC_Brute,10; bonus2 bMagicAddRace,RC_Player_Doram,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4473,'Ancient_Tree_Card','Ancient Tree Card','Card',20,10,true,true,'bonus2 bMagicAddRace,RC_Undead,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4474,'Jakudam_Card','Zakudam Card','Card',20,10,true,true,'bonus2 bMagicAddRace,RC_DemiHuman,10; bonus2 bMagicAddRace,RC_Player_Human,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4475,'Cobalt_Mineral_Card','Cobalt Mineral Card','Card',20,10,true,true,'bonus2 bMagicAddRace,RC_Formless,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4476,'Pinguicula_Card','Pinguicula Card','Card',20,10,true,true,'bonus2 bMagicAddRace,RC_Insect,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4477,'Hell_Apocalips_Card','Hell Apocalypse Card','Card',20,10,true,true,'bonus2 bMagicAddRace,RC_Demon,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`) VALUES (4478,'Light_Up_Card3','Light Up Card','Card',20,10,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`) VALUES (4479,'Light_Up_Card4','Light Up Card','Card',20,10,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4480,'Sealed_Kiel_Card','Sealed Kiel Card','Card',20,10,true,true,true,true,'bonus bDelayRate,((getrefine()>14)?-20:-15);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4481,'Sealed_Ktullanux_Card','Sealed Ktullanux Card','Card',20,10,true,true,'bonus2 bAddEle,Ele_Fire,((getrefine()>14)?35:25); bonus5 bAutoSpellWhenHit,"WZ_FROSTNOVA",10,10,BF_WEAPON|BF_MAGIC,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4482,'Sealed_B_Ygnizem_Card','Sealed General Egnigem Cenia Card','Card',20,10,true,true,'.@rate = ((getrefine()>14)?7:5); bonus bMaxHPrate,.@rate; bonus bMaxSPrate,.@rate; bonus2 bHPRegenRate,50,10000; bonus2 bSPRegenRate,10,10000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4483,'Sealed_Dracula_Card','Sealed Dracula Card','Card',20,10,true,true,'bonus2 bSPDrainRate,((getrefine()>14)?70:50),5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4484,'Sealed_Mistress_Card','Sealed Mistress Card','Card',20,10,true,true,true,true,'bonus bNoGemStone; bonus bUseSPrate,((getrefine()>14)?35:50);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4485,'Sealed_Gloom_Card','Sealed Gloom Under Night Card','Card',20,10,true,true,'.@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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4486,'Sealed_Berz_Card','Sealed Berzebub Card','Card',20,10,true,true,true,'bonus bVariableCastrate,-15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4487,'Sealed_Ifrit_Card','Sealed Ifrit Card','Card',20,10,true,true,true,'bonus bBaseAtk,(JobLevel/20); bonus bCritical,(JobLevel/20); bonus bHit,(JobLevel/20); bonus3 bAutoSpellWhenHit,"NPC_EARTHQUAKE",5,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4488,'Sealed_D_Lord_Card','Sealed Dark Lord Card','Card',20,10,true,true,'bonus3 bAutoSpellWhenHit,"WZ_METEOR",5,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4489,'Sealed_Pharaoh_Card','Sealed Pharaoh Card','Card',20,10,true,true,true,true,'bonus bUseSPrate,-15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4490,'Sealed_M_Flower_Card','Sealed Moonlight Flower Card','Card',20,10,true,true,'skill "AL_INCAGI",((getrefine()>14)?5:1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4491,'Sealed_B_Shecil_Card','Sealed Sniper Card','Card',20,10,true,true,'bonus bHPrecovRate,-100; bonus2 bHPDrainRate,50,((getrefine()>14)?15:10);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4492,'Sealed_Orc_Hero_Card','Sealed Orc Hero Card','Card',20,10,true,true,true,true,'bonus bVit,3; bonus2 bResEff,Eff_Stun,((getrefine()>14)?6000:4000);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4493,'Sealed_Tao_Card','Sealed Tao Gunka Card','Card',20,10,true,true,'bonus bMaxHPrate,((getrefine()>14)?75:50); bonus bDefRate,-50; bonus bMdefRate,-50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4494,'Sealed_TurtleG_Card','Sealed Turtle General Card','Card',20,10,true,true,'.@rate = ((getrefine()>14)?15:10); bonus2 bAddClass,Class_All,.@rate; bonus3 bAutoSpell,"SM_MAGNUM",10,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4495,'Sealed_Amon_Ra_Card','Sealed Amon Ra Card','Card',20,10,true,true,'bonus bAllStats,1; bonus3 bAutoSpellWhenHit,"PR_KYRIE",((getrefine()>14)?8:5),(15+35*(readparam(bInt)>=99));'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4496,'Sealed_Drake_Card','Sealed Drake Card','Card',20,10,true,true,'.@rate = (getrefine()>=15?75:50); bonus2 bAddSize,Size_All,.@rate; bonus2 bMagicAddSize,Size_All,.@rate;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4497,'Sealed_Knight_WS_Card','Sealed Stormy Knight Card','Card',20,10,true,true,'bonus3 bAutoSpell,"WZ_STORMGUST",1,10; bonus2 bAddEff,Eff_Freeze,((getrefine()>14)?1500:1000);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4498,'Sealed_Lady_Tanee_Card','Sealed Lady Tanee Card','Card',20,10,true,true,'.@r = getrefine(); bonus bMaxHPrate,((.@r>14)?-50:-60); bonus bMaxSPrate,50; bonus2 bAddMonsterDropItem,513,100; bonus2 bAddItemHealRate,513,((.@r>14)?80:50);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4499,'Sealed_Samurai_Card','Sealed Samurai Spector Card','Card',20,10,true,true,'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; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4500,'Sealed_Orc_Load_Card','Sealed Orc Lord Card','Card',20,10,true,true,'bonus bShortWeaponDamageReturn,((getrefine()>14)?25:15);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4501,'Sealed_B_Magaleta_Card','Sealed High Priest Card','Card',20,10,true,true,'bonus5 bAutoSpellWhenHit,"HP_ASSUMPTIO",1,((getrefine()>14)?35:25),BF_WEAPON|BF_MAGIC,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4502,'Sealed_B_Harword_Card','Sealed MasterSmith Card','Card',20,10,true,true,'.@r = getrefine(); bonus bBreakWeaponRate,(.@r>14?800:500); bonus bBreakArmorRate,(.@r>14?600:500);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4503,'Sealed_Apocalips_H_Card','Sealed Vesper Card','Card',20,10,true,true,true,true,'bonus bDex,2; bonus2 bIgnoreMdefClassRate,Class_Boss,((getrefine()>14)?25:15);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4504,'Sealed_Eddga_Card','Sealed Eddga Card','Card',20,10,true,true,'bonus bMaxHPrate,((getrefine()>14)?-35:-50); bonus bNoWalkDelay;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4505,'Scaraba_Card','Scaraba Card','Card',20,10,true,true,true,'bonus bMatk,20; bonus bMaxSPrate,-1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4506,'Dolomedes_Card','Dolomedes Card','Card',20,10,true,true,true,true,'bonus bDex,2; if(BaseClass==Job_Archer){ bonus bDex,getrefine()/3; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4507,'Q_Scaraba_Card','Queen Scaraba Card','Card',20,10,true,true,'bonus2 bAddRace2,RC2_SCARABA,30; bonus2 bAddMonsterDropItem,12806,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4508,'Gold_Scaraba_Card','Gold Scaraba Card','Card',20,10,true,true,true,'bonus bBaseAtk,20; bonus bMaxHPrate,-1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4509,'Gold_Q_Scaraba_Card','Gold Queen Scaraba Card','Card',20,10,true,true,true,true,'bonus bInt,3; bonus2 bSubRace,RC_Insect,10; if(getrefine()>=9) { bonus2 bSubRace,RC_Insect,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4510,'Miming_Card','Miming Card','Card',20,10,true,true,'bonus3 bAutoSpell,"WM_LULLABY_DEEPSLEEP",1,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4511,'Little_Fatum_Card','Little Fatum Card','Card',20,10,true,true,'bonus3 bAddEff,Eff_Silence,500,ATF_MAGIC;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4512,'Parus_Card','Parus Card','Card',20,10,true,true,true,true,'bonus bHealPower,3; if(BaseClass==Job_Acolyte){ bonus bHealPower,getrefine()/2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4513,'Angra_Mantis_Card','Angra Mantis Card','Card',20,10,true,true,true,true,'bonus bCritAtkRate,2; if(BaseClass==Job_Thief){ bonus bCritAtkRate,getrefine()/2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4514,'Pom_Spider_Card','Pom Spider Card','Card',20,10,true,true,'bonus2 bAddRace,RC_Undead,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4515,'Alnoldi_Card','Alnoldi Card','Card',20,10,true,true,'bonus2 bSubRace,RC_Plant,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4516,'Comodo_Card','Comodo Card','Card',20,10,true,true,'bonus bDef,50; bonus bFlee,-25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4517,'Cendrawasih_Card','Cendrawasih Card','Card',20,10,true,true,true,true,'bonus bInt,2; if(BaseClass==Job_Mage){ bonus bInt,getrefine()/3; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4518,'Banaspaty_Card','Banaspaty Card','Card',20,10,true,true,'bonus3 bAddEff,Eff_Burning,500,ATF_TARGET;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4519,'Butoijo_Card','Butoijo Card','Card',20,10,true,true,'bonus2 bAddRace,RC_Angel,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4520,'Leak_Card','Leak Card','Card',20,10,true,true,'bonus bStr,3; bonus2 bAddEff,Eff_Confusion,5000; bonus3 bAddEff,Eff_Confusion,5000,ATF_TARGET;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4521,'Sedora_Card','Sedora Card','Card',20,10,true,true,'bonus bCritAtkRate,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4522,'Sropho_Card','Sropho Card','Card',20,10,true,true,'bonus4 bAddEff,Eff_Crystalize,500,ATF_SHORT,3000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4523,'Pot_Dofle_Card','Pot Dofle Card','Card',20,10,true,true,'bonus bDefEle,Ele_Water; bonus2 bSubRace,RC_Fish,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4524,'King_Dramoh_Card','King Dramoh Card','Card',20,10,true,true,true,true,'bonus bStr,2; if(BaseClass==Job_Swordman){ bonus bStr,2+(getrefine()/3); }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4525,'Kraken_Card','Kraken Card','Card',20,10,true,true,'bonus bFlee,10; skill "TF_HIDING",1; skill "RG_RAID",1; bonus5 bAutoSpellOnSkill,"RG_RAID","NPC_WIDEBLEEDING",1,250,1;','sc_end SC_HIDING;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4526,'Odd_Coelacanth_Card','Weird Coelacanth Card','Card',20,10,true,true,'bonus bMaxSPrate,5; bonus bMdef,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4527,'Black_Coelacanth_Card','Dark Coelacanth Card','Card',20,10,true,true,'bonus bMaxHPrate,10; bonus bDef,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4528,'Mutant_Coelacanth_Card','Mutant Coelacanth Card','Card',20,10,true,true,true,true,'.@r = getrefine(); bonus bMatkRate,2+(.@r/2); bonus bMaxHPrate,-.@r/2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4529,'Cruel_Coelacanth_Card','Violent Coelacanth Card','Card',20,10,true,true,true,true,'.@r = getrefine(); bonus2 bAddClass,Class_All,2+(.@r/2); bonus bMaxSPrate,-.@r/2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4530,'Siorava_Card','Siorava Card','Card',20,10,true,true,true,true,'bonus bLuk,2; if(BaseClass==Job_Merchant){ bonus bLuk,2+(getrefine()/3); }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4531,'Red_Eruma_Card','Red Eruma Card','Card',20,10,true,true,'bonus3 bAddEff,Eff_Curse,100,ATF_MAGIC;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4532,'Wild_Rider_Card','Wild Rider Card','Card',20,10,true,true,'bonus bAgi,1; bonus3 bAutoSpell,"AL_INCAGI",1,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4533,'Mini_Octopus_Card','Octopus Card','Card',20,10,true,true,'bonus3 bAddEff,Eff_Blind,100,ATF_MAGIC;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4534,'Giant_Octopus_Card','Giant Octopus Card','Card',20,10,true,true,'bonus bMaxHPrate,12; skill "WZ_WATERBALL",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4535,'Sealed_Rand_Card','Sealed Randgris Card','Card',20,10,true,true,'bonus2 bAddClass,Class_All,(getrefine()>=15?8:5); bonus5 bAutoSpell,"SA_DISPELL",1,1,BF_NORMAL,1; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4536,'Sealed_Atroce_Card','Sealed Atroce Card','Card',20,10,true,true,'.@r = getrefine(); bonus bBaseAtk,((.@r>14)?25:15); autobonus "{ bonus bAspdRate,(("+.@r+">14)?75:50); }",5,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4537,'Sealed_Phreeoni_Card','Sealed Phreeoni Card','Card',20,10,true,true,'bonus bHit,((getrefine()>14)?75:50);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4538,'Sealed_Bacsojin_Card','Sealed White Lady Card','Card',20,10,true,true,true,true,'.@r = getrefine(); bonus bHealPower,(.@r>14?25:15); bonus bUseSPrate,(.@r>14?20:30);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4539,'Sealed_F_Bishop_Card','Sealed Fallen Bishop Hibram Card','Card',20,10,true,true,'.@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_Human,.@rate;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4540,'SLD_Lord_Of_Death_Card','Sealed Lord of The Dead Card','Card',20,10,true,true,'.@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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4541,'SLD_B_Katrinn_Card','Sealed High Wizard Card','Card',20,10,true,true,true,true,'bonus2 bIgnoreMdefClassRate,Class_Normal,100; .@rate = ((getrefine()>14)?120:150); bonus bVariableCastrate,.@rate; bonus bSPrecovRate,-.@rate;','heal 0,((getrefine()>14)?-2000:-3000);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4542,'SLD_Detale_Card','Sealed Detale Card','Card',20,10,true,true,'bonus2 bResEff,Eff_Freeze,(getrefine()>=15?6000:4000); bonus5 bAutoSpell,"SA_LANDPROTECTOR",1,1,BF_MAGIC,1; bonus bMdef,-20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4543,'SLD_Garm_Card','Sealed Hatii Card','Card',20,10,true,true,'bonus2 bAddEffWhenHit,Eff_Freeze,((getrefine()>14)?4000:2500);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4544,'SLD_Dark_Snake_Card','Sealed Evil Snake Lord Card','Card',20,10,true,true,true,true,'bonus bInt,3; .@i = (getrefine()>14?7500:5000); bonus2 bResEff,Eff_Blind,.@i; bonus2 bResEff,Eff_Curse,.@i;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4545,'Novice_Poring_Card','Novice Poring Card','Card',20,10,true,true,true,true,'bonus bLuk,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`) VALUES (4546,'Val\'khiri_Card','Val\'khiri Card','Card',20,10,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4547,'Upd_Byorgue_Card','Enhanced Byorgue Card','Card',20,10,true,true,'if(BaseJob==Job_Rogue) { bonus bMatkRate,10; bonus2 bAddClass,Class_All,10; bonus bMaxHPrate,getrefine()/2; } /* Adds a chance of inflicting Confuse on target when using Body Paint skill. */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4548,'Upd_Salamander_Card','Enhanced Salamander Card','Card',20,10,true,true,'bonus2 bSkillAtk,"WZ_FIREPILLAR",40; bonus2 bSkillAtk,"WZ_METEOR",40;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4549,'Upd_Maya_Puple_Card','Upd Maya Puple Card','Card',20,10,true,true,true,true,'bonus bIntravision; bonus bAllStats,1; skill "AL_RUWACH",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4550,'Upd_Bow_Guardian_Card','Upd Bow Guardian Card','Card',20,10,true,true,'if(getiteminfo(getequipid(EQI_HAND_R),11)==W_BOW) { bonus2 bSkillAtk,"RA_ARROWSTORM",50; bonus bCriticalLong,25+10*(getequiprefinerycnt(EQI_HAND_R)/4); bonus bHit,5; bonus3 bAutoSpell,"HT_PHANTASMIC",1,100; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4552,'Manny_Card','Manny Card','Card',20,10,true,true,true,'bonus bMaxHP,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4553,'Sid_Card','Sid Card','Card',20,10,true,true,'bonus bMaxHP,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4554,'Diego_Card','Diego Card','Card',20,10,true,true,'bonus bMaxHP,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4555,'Scrat_Card','Scrat Card','Card',20,10,true,true,true,true,'bonus bMaxHP,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4556,'Fenrir_Card','Fenrir Card','Card',10,10,true,true,true,true,'bonus bMatk,50+getrefine()*5; bonus bFixedCastrate,-70;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4557,'Fenrir_Card_','Weakened Fenrir Card','Card',10,10,true,true,true,true,'bonus bMatk,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4559,'M_Morocc_Card','Evil Morocc Card','Card',20,100,true,true,'bonus bAspd,1; bonus bMaxSPrate,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4560,'Clown_Card','Clown Alphoccio Card','Card',20,10,true,true,'skill "BA_POEMBRAGI",10; bonus bFlee,(readparam(bVit)>=110)?40:20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4561,'Professor_Card','Professor Celia Card','Card',20,10,true,true,'bonus bMatkRate,(readparam(bDex)>=110)?14:7; bonus5 bAutoSpellWhenHit,"SA_LANDPROTECTOR",5,70,BF_MAGIC,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4562,'Champion_Card','Champion Chen Card','Card',20,10,true,true,'bonus2 bAddClass,Class_All,(readparam(bAgi)>=110)?14:7; bonus5 bAutoSpellWhenHit,"MO_INVESTIGATE",5,70,BF_WEAPON,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4563,'Creator_Card','Creator Flamel Card','Card',20,10,true,true,'bonus bCritical,(readparam(bStr)>=110)?40:20; bonus5 bAutoSpellWhenHit,"AM_ACIDTERROR",5,70,BF_WEAPON,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4564,'Stalker_Card','Stalker Gertie Card','Card',20,10,true,true,'bonus bHit,(readparam(bLuk)>=110)?40:20; bonus5 bAutoSpellWhenHit,"ST_FULLSTRIP",1,70,BF_WEAPON,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4565,'Paladin_Card','Paladin Randel Card','Card',20,10,true,true,'bonus bMaxHPrate,(readparam(bInt)>=110)?20:10; bonus5 bAutoSpellWhenHit,"CR_GRANDCROSS",10,70,BF_WEAPON,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4566,'Gypsy_Card','Gypsy Trentini Card','Card',20,10,true,true,'skill "DC_FORTUNEKISS",10; bonus bFlee,(readparam(bVit)>=110)?40:20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4567,'Alphoccio_Card','Alphoccio Card','Card',20,10,true,true,'bonus bFlee,10; if(BaseJob==Job_Bard) { bonus bMaxHPrate,10; bonus bMaxSPrate,5;}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4568,'Ceila_Card','Celia Card','Card',20,10,true,true,'bonus bFlee,10; skill "SA_ABRACADABRA",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4569,'Chen_Card','Chen Card','Card',20,10,true,true,'bonus bFlee,10; skill "MO_CALLSPIRITS",2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4570,'Flamel_Card','Flamel Card','Card',20,10,true,true,'bonus bFlee,10; bonus2 bAddItemGroupHealRate,IG_Flamel_Card,200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4571,'Gertie_Card','Gertie Card','Card',20,10,true,true,'bonus bFlee,10; skill "RG_CLOSECONFINE",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4572,'Randel_Card','Randel Card','Card',20,10,true,true,'bonus bFlee,10; skill "CR_AUTOGUARD",3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4573,'Trentini_Card','Trentini Card','Card',20,10,true,true,'bonus bFlee,10; if(BaseJob==Job_Dancer) { bonus bMaxHPrate,10; bonus bMaxSPrate,5;}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4574,'Daehyon_Card','General Daehyon Card','Card',20,10,true,true,'.@i = getiteminfo(getequipid(EQI_HAND_R),11); if(.@i==W_1HSWORD||.@i==W_2HSWORD) { bonus bBaseAtk,100; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4575,'Soheon_Card','Armed Guard Soheon Card','Card',20,10,true,true,'bonus bBaseAtk,10; if(getiteminfo(getequipid(EQI_HAND_R),11) == W_DAGGER) { .@r = getrefine(); if(.@r>=10) { bonus bAspd,1; } if(.@r>=14) { bonus bAspd,1; } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4576,'Gioia_Card','Gioia Card','Card',20,10,true,true,'bonus2 bMagicAtkEle,Ele_Wind,100; bonus2 bMagicAtkEle,Ele_Ghost,100; bonus2 bSubEle,Ele_All,-30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4577,'Elvira_Card','Elvira Card','Card',20,10,true,true,true,'bonus2 bMagicAtkEle,Ele_Wind,20; bonus2 bMagicAtkEle,Ele_Ghost,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4578,'Pyuriel_Card','Angry Student Pyuriel Card','Card',20,10,true,true,'bonus bCritAtkRate,30; bonus2 bSubRace,RC_All,-10; bonus2 bSubRace,RC_Player_Human,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4579,'Lora_Card','Warrior Lola Card','Card',20,10,true,true,'if(getiteminfo(getequipid(EQI_HAND_R),11) == W_MACE) { bonus bBaseAtk,20; bonus bCritical,10; } .@r = getrefine(); bonus bBaseAtk,.@r; bonus bCritical,.@r;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4580,'Kades_Card','Dark Guardian Kades Card','Card',20,10,true,true,'bonus2 bSubEle,Ele_Water,50; bonus2 bSubEle,Ele_Earth,50; bonus2 bSubEle,Ele_Fire,50; bonus2 bSubEle,Ele_Wind,50; bonus2 bSubEle,Ele_Dark,50; bonus2 bSubEle,Ele_Undead,50; bonus2 bSubEle,Ele_Holy,-100; bonus2 bSubEle,Ele_Ghost,-100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4581,'Rudo_Card','Rudo Card','Card',20,10,true,true,'autobonus "{ bonus bAgi,44; heal 0,-40; }",500,3000,0,"{ sc_start SC_SPEEDUP1,3000,50; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4582,'Bungisngis_Card','Bungisngis Card','Card',20,10,true,true,true,true,'bonus bMaxHPrate,(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4583,'Engkanto_Card','Engkanto Card','Card',20,10,true,true,true,true,'bonus2 bAddEle,Ele_Poison,30; bonus2 bMagicAddEle,Ele_Poison,30; bonus2 bIgnoreDefRaceRate,RC_Plant,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4584,'Manananggal_Card','Manananggal Card','Card',20,10,true,true,'bonus bSPDrainValue,1; bonus bMaxSPrate,-1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4585,'Mangkukulam_Card','Mangkukulam Card','Card',20,10,true,true,'bonus bMaxSPrate,10; bonus bHPGainValue,-666;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4586,'Tikbalang_Card','Tikbalang Card','Card',20,10,true,true,true,true,'bonus bMatk,10; bonus2 bMagicAtkEle,Ele_Wind,(getrefine()>=9)?10:5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4587,'Tiyanak_Card','Tiyanak Card','Card',20,10,true,true,true,'bonus2 bCriticalAddRace,RC_Brute,12; bonus2 bCriticalAddRace,RC_Player_Doram,12; bonus2 bCriticalAddRace,RC_Fish,12; bonus2 bCriticalAddRace,RC_DemiHuman,12;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4588,'Wakwak_Card','Wakwak Card','Card',20,10,true,true,'bonus bBaseAtk,5*readparam(bStr)/10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4589,'Jejeling_Card','Jejeling Card','Card',20,10,true,true,'bonus bMaxHP,200*readparam(bVit)/10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4590,'Bangungot_Card','Bangungot Card','Card',20,10,true,true,'bonus bInt,4; bonus5 bAutoSpellWhenHit,"NPC_WIDESLEEP",5,70,BF_MAGIC,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4591,'Bakonawa_Card','Bakonawa Card','Card',20,10,true,true,'bonus bStr,4; bonus5 bAutoSpellWhenHit,"NPC_WIDEBLEEDING",5,70,BF_WEAPON,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4592,'Buwaya_Card','Buwaya Card','Card',20,10,true,true,'bonus bVit,4; bonus5 bAutoSpellWhenHit,"NPC_WIDESTONE",5,70,BF_MAGIC,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4593,'Menblatt_Card','Menblatt Card','Card',20,10,true,true,'bonus bLongAtkRate,readparam(bDex)/10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4594,'Petal_Card','Petal Card','Card',20,10,true,true,'bonus bCritAtkRate,2*(readparam(bLuk)/10);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4595,'Cenere_Card','Cenere Card','Card',20,10,true,true,'bonus bAspdRate,2*(readparam(bAgi)/10);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4596,'AntiqueBook_Card','Antique Book Card','Card',20,10,true,true,'bonus bMatk,5*(readparam(bInt)/10);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4597,'LichternB_Card','Lichtern Blue Card','Card',20,10,true,true,true,true,'bonus bMatk,10; bonus2 bMagicAtkEle,Ele_Water,(getrefine()>=9)?10:5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4598,'LichternY_Card','Lichtern Green Card','Card',20,10,true,true,true,true,'bonus bMatk,10; bonus2 bMagicAtkEle,Ele_Ghost,(getrefine()>=9)?10:5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4599,'LichternR_Card','Lichtern Red Card','Card',20,10,true,true,true,true,'bonus bMatk,10; bonus2 bMagicAtkEle,Ele_Fire,(getrefine()>=9)?10:5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4600,'LichternG_Card','Lichtern Yellow Card','Card',20,10,true,true,true,true,'bonus bMatk,10; bonus2 bMagicAtkEle,Ele_Earth,(getrefine()>=9)?10:5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4601,'Amdarais_Card','Amdarais Card','Card',20,10,true,true,'bonus2 bAddClass,Class_All,15; bonus bMatkRate,15; bonus2 bHPLossRate,666,4000; bonus2 bSPLossRate,66,4000;','heal -6666,-666;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4602,'AmdaraisH_Card','Realized Amdarais Card','Card',20,10,true,true,'bonus2 bAddClass,Class_All,20; bonus bMatkRate,20; bonus2 bHPLossRate,666,6000; bonus2 bSPLossRate,66,6000;','heal -6666,-666;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4603,'CorruptionRoot_Card','Corruption Root Card','Card',20,10,true,true,'bonus bBaseAtk,20; bonus5 bAutoSpell,"NPC_WIDESTONE",1,70,BF_WEAPON,0; bonus5 bAutoSpell,"NPC_WIDESLEEP",1,70,BF_WEAPON,0; bonus5 bAutoSpell,"NPC_WIDECURSE",1,70,BF_WEAPON,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4604,'CorruptionRootH_Card','Realized Corruption Root Card','Card',20,10,true,true,'bonus bBaseAtk,30; bonus5 bAutoSpell,"NPC_WIDESTONE",2,70,BF_WEAPON,0; bonus5 bAutoSpell,"NPC_WIDESLEEP",2,70,BF_WEAPON,0; bonus5 bAutoSpell,"NPC_WIDECURSE",2,70,BF_WEAPON,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4605,'UndeadKnightM_Card','Agony Of Royal Knight Card','Card',20,10,true,true,'bonus bMaxHPrate,-44; bonus bHPGainValue,200+10*getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4606,'UndeadKnightF_Card','Grudge of Royal Knight Card','Card',20,10,true,true,'bonus bMaxSPrate,-44; bonus bSPGainValue,20+(getrefine()/2);','heal 0,-444;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4607,'FaithfulManager_Card','Faithful Manager Card','Card',20,10,true,true,'bonus bBaseAtk,5; bonus bMatk,5; if(getiteminfo(getequipid(EQI_HAND_R),11) == W_BOOK) { .@r = getrefine(); if(.@r>=10) { bonus bBaseAtk,20; bonus bMatk,20; } if(.@r>=14) { bonus bBaseAtk,20; bonus bMatk,20; } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4608,'White_Knight_Card','White Knight Card','Card',20,10,true,true,'bonus bBaseAtk,15; bonus2 bAddSize,Size_Medium,20; bonus2 bAddSize,Size_Large,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4609,'Khalitzburg_Knight_Card','Khalitzburg Knight Card','Card',20,10,true,true,'bonus bDef,20; bonus2 bSubSize,Size_Medium,25; bonus2 bSubSize,Size_Large,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4610,'Sarah_Card','Sarah Card','Card',10,10,true,true,'bonus bAbsorbDmgMaxHP,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4625,'Time_Holder_Card','Time Holder Card','Card',10,10,true,true,'bonus bMatkRate,20; bonus bUseSPrate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4626,'Big_Ben_Card','Big Ben Card','Card',10,10,true,true,'bonus2 bMagicAddRace,RC_Formless,5; bonus2 bMagicAddRace,RC_Demon,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4627,'Big_Bell_Card','Big Bell Card','Card',10,10,true,true,'bonus2 bAddRace,RC_Formless,10; bonus2 bAddRace,RC_Demon,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4628,'Neo_Punk_Card','Neo Punk Card','Card',10,10,true,true,'bonus2 bSubRace,RC_Formless,20; bonus2 bSubRace,RC_Demon,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4629,'Arc_Elder_Card','Arc Elder Card','Card',10,10,true,true,'bonus2 bSubEle,Ele_Neutral,15; bonus2 bMagicAtkEle,Ele_Earth,getrefine()*3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4630,'Nightmare_Timer_Keeper_Card','Nightmare Timer Keeper Card','Card',10,10,true,true,'bonus3 bAutoSpell,"NPC_WIDECURSE",2,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4631,'Owl_Viscount_Card','Owl Viscount Card','Card',10,10,true,true,true,'bonus bAspdRate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4632,'Owl_Marquees_Card','Owl Marquees Card','Card',10,10,true,true,true,'bonus5 bAutoSpell,"SA_VIOLENTGALE",(getskilllv("SA_VIOLENTGALE")==5?5:1),1,BF_WEAPON,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4633,'Enhanced_Archer_Skeleton_Card','Enhanced Archer Skeleton Card','Card',20,10,true,true,'bonus bLongAtkRate,(BaseLevel>=100?12:10);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4634,'Enhanced_Soldier_Skeleton_Card','Enhanced Soldier Skeleton Card','Card',20,10,true,true,'if (BaseLevel<100) { bonus bCritical,9; } else { bonus bCritical,10; bonus bCritAtkRate,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4635,'Enhanced_Amdarais_Card','Enhanced Amdarais Card','Card',20,10,true,true,'.@r = getrefine(); bonus bDef,(.@r*10); bonus bFlee,(.@r*-2); if (BaseLevel>=100) bonus bMaxHP,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4636,'Bijou_Card','Bijou Card','Card',20,10,true,true,'bonus2 bResEff,Eff_Freeze,10000; bonus2 bAddClass,Class_All,10; bonus bMatkRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (4637,'Immortal_Corps_Card','Immortal Corps Card','Card',20,10,true,true,'bonus bHPGainValue,50; bonus bSPGainValue,5; bonus bNoRegen,1; bonus bNoRegen,2;','heal -1000,-100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4638,'Watcher_Card','Watcher Card','Card',20,10,true,true,'bonus bBaseAtk,30; bonus bSPDrainValue,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4639,'Taffy_Card','Taffy Card','Card',20,10,true,true,true,'bonus2 bAddClass,Class_All,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4640,'Frozen_Wolf_Card','Frozen Wolf Card','Card',20,10,true,true,true,'bonus bMatkRate,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4641,'Zombie_Guard_Card','Zombie Guard Card','Card',20,10,true,true,'bonus bNoRegen,2; bonus bSPDrainValue,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4642,'Min_Toad_Card','Infinite Toad Card','Card',20,10,true,true,'.@r = getrefine(); if(.@r>6){ .@b+=2; if(.@r>8).@b+=3; } bonus bFlee2,2+.@b;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4643,'Min_Vagabond_Wolf_Card','Infinite Vagabond Wolf Card','Card',20,10,true,true,'.@r = getrefine(); if(.@r>6){ .@b+=10; if(.@r>8).@b+=15; } bonus bAtk,10+.@b;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4644,'Min_Vocal_Card','Infinite Vocal Card','Card',20,10,true,true,'.@r = getrefine(); if(.@r>6){ .@b+=10; if(.@r>8) .@b+=15; } bonus bMdef,5+.@b;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4645,'Min_Eclipse_Card','Infinite Eclipse Card','Card',20,10,true,true,'.@r = getrefine(); if(.@r>6){ .@b+=300; if(.@r>8).@b+=400; } bonus bMaxHP,300+.@b;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4646,'Min_Chimera_Card','Infinite Chimera Card','Card',20,10,true,true,'bonus bMaxHPrate,8; bonus bMaxSPrate,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (4647,'Min_Osiris_Card','Infinite Osiris Card','Card',20,10,true,true,true,'bonus bHPGainValue,300;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4648,'Min_Eddga_Card','Infinite Eddga Card','Card',20,10,true,true,'bonus4 bAutoSpellWhenHit,"SM_PROVOKE",10,500,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4649,'Min_Phreeoni_Card','Infinite Phreeoni Card','Card',20,10,true,true,'bonus bCritical,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (4650,'Min_Orc_Hero_Card','Infinite Orc Hero Card','Card',20,10,true,true,true,true,'bonus bVit,3; bonus3 bAddEffWhenHit,Eff_Stun,10000,ATF_MAGIC;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4651,'Min_Tao_Gunka_Card','Infinite Tao Gunka Card','Card',20,10,true,true,'bonus bMaxHP,10000; bonus bAgi,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (4652,'N_Amon_Ra_Card','Nightmare Amon Ra Card','Card',20,10,true,true,'bonus2 bMagicAddRace,RC_Demon,50; bonus2 bMagicAddRace,RC_Undead,50; bonus2 bMagicAddEle,Ele_Dark,50; bonus2 bMagicAddEle,Ele_Undead,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (4653,'N_Arclouse_Card','Nightmare Arclouse Card','Card',20,10,true,true,'bonus2 bSubRace,RC_Brute,20; bonus2 bSubRace,RC_Player_Doram,20; bonus2 bSubRace,RC_Undead,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4654,'N_Mimic_Card','Nightmare Mimic Card','Card',20,10,true,true,'bonus2 bMagicAddRace,RC_Brute,5; bonus2 bMagicAddRace,RC_Player_Doram,5; bonus2 bMagicAddRace,RC_Undead,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4655,'N_Minorous_Card','Nightmare Minorous Card','Card',20,10,true,true,'bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Player_Doram,10; bonus2 bAddRace,RC_Undead,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4656,'N_Mummy_Card','Nightmare Mummy Card','Card',20,10,true,true,'/* Unofficial chance */ bonus3 bAutoSpellWhenHit,"NPC_WIDESLEEP",2,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4657,'N_Ancient_Mummy_Card','Nightmare Ancient Mummy Card','Card',20,10,true,true,'bonus2 bSubEle,Ele_Neutral,15; bonus2 bMagicAtkEle,Ele_Fire,getrefine()*3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (4658,'N_Verit_Card','Nightmare Verit Card','Card',20,10,true,true,'bonus2 bMagicAddClass,Class_All,5; if(getrefine()>6) { bonus2 bMagicAddClass,Class_All,3; } if(getrefine()>8) { bonus2 bMagicAddClass,Class_All,2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`script`) VALUES (4659,'Eggring_Card','Eggring Card','Card',20,10,true,'bonus bLuk,2; bonus bMaxHP,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`script`) VALUES (4660,'Scout_Basilisk_Card','Scout Basilisk Card','Card',20,10,true,'bonus2 bSubSize,Size_Small,5; bonus2 bSubSize,Size_Medium,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`script`) VALUES (4661,'Charge_Basilisk_Card','Charge Basilisk Card','Card',20,10,true,'bonus2 bSubSize,Size_Medium,20; bonus2 bSubSize,Size_Large,20; bonus2 bSubSize,Size_Small,-15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`script`) VALUES (4662,'Big_Eggring_Card','Big Eggring Card','Card',20,10,true,'bonus bAtk,25-5*min(readParam(bStr)/10,5); bonus bMatk,25-5*min(readParam(bInt)/10,5); bonus bAspdRate,10-2*min(readParam(bAgi)/10,5); bonus bMaxHP,1000-200*min(readParam(bVit)/10,5); bonus bLongAtkRate,5-1*min(readParam(bDex)/10,5); bonus bCritAtkRate,10-2*min(readParam(bLuk)/10,5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`script`) VALUES (4663,'Leaf_Lunatic_Card','Leaf Lunatic Card','Card',20,10,true,'bonus bMaxSP,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`script`) VALUES (4664,'Grass_Fabre_Card','Grass Fabre Card','Card',20,10,true,'bonus bLuk,1; bonus bMaxHP,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (4665,'Wild_Hornet_Card','Wild Hornet Card','Card',20,10,true,'bonus bAtk,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`script`) VALUES (4666,'Sweet_Roda_Frog_Card','Sweet Roda Frog Card','Card',20,10,true,'bonus bMaxSP,10; bonus bMaxHP,300;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`script`) VALUES (4667,'Hunter_Wolf_Card','Hunter Wolf Card','Card',20,10,true,'bonus bMaxSP,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`script`) VALUES (4668,'Trance_Spore_Card','Trance Spore Card','Card',20,10,true,true,true,'bonus bVit,1; bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (4669,'Jungle_Mandragora_Card','Jungle Mandragora Card','Card',20,10,true,'.@r = getrefine(); bonus2 bAddEle,Ele_Wind,((.@r>=9)?7:((.@r>=7)?5:3));'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (4670,'Fruit_Pom_Spider_Card','Fruit Pom Spider Card','Card',20,10,true,'.@r = getrefine(); bonus2 bAddEle,Ele_Fire,((.@r>=9)?7:((.@r>=7)?5:3));'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4671,'V_Celia_Card','Sorcerer Celia Card','Card',20,10,true,true,'if(eaclass()&EAJL_THIRD && BaseJob == Job_Sage){ bonus bMaxHPrate,10; bonus bMatkRate,10; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4672,'V_Chen_Card','Sura Chen Card','Card',20,10,true,true,'if(eaclass()&EAJL_THIRD && BaseJob == Job_Monk){ bonus bMaxHPrate,10; bonus2 bAddClass,Class_All,10; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4673,'V_Alphoccio_Card','Minstel Alphoccio Card','Card',20,10,true,true,'if(eaclass()&EAJL_THIRD && BaseJob == Job_Bard){ bonus bMaxHPrate,15; bonus bMaxSPrate,10; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4674,'V_Eremes_Card','Guillotine Cross Eremes Card','Card',20,10,true,true,'if(eaclass()&EAJL_THIRD && BaseJob == Job_Assassin){ bonus bFlee2,10; bonus2 bAddClass,Class_All,15; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4675,'V_Magaleta_Card','Arch Bishop Magaleta Card','Card',20,10,true,true,'if(eaclass()&EAJL_THIRD && BaseJob == Job_Priest){ bonus bMaxHPrate,10; bonus bHealPower,10; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4676,'V_Shecil_Card','Ranger Cecil Card','Card',20,10,true,true,'if(eaclass()&EAJL_THIRD && BaseJob == Job_Hunter){ bonus bCritical,20; bonus bLongAtkRate,15; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4677,'V_Howard_Card','Mechanic Howard Card','Card',20,10,true,true,'if(eaclass()&EAJL_THIRD && BaseJob == Job_Blacksmith){ bonus bHit,20; bonus2 bAddClass,Class_All,15; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4678,'V_Katrinn_Card','Warlock Kathryne Card','Card',20,10,true,true,'if(eaclass()&EAJL_THIRD && BaseJob == Job_Wizard){ bonus bMdef,80; bonus bMatkRate,15; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4679,'V_Seyren_Card','Rune Knight Seyren Card','Card',20,10,true,true,'if(eaclass()&EAJL_THIRD && BaseJob == Job_Knight){ bonus bAspd,2; bonus2 bAddClass,Class_All,15; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4680,'V_Randel_Card','Royal Guard Randel Card','Card',20,10,true,true,'if(eaclass()&EAJL_THIRD && BaseJob == Job_Crusader){ bonus bDef,350; bonus2 bAddClass,Class_All,10; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4681,'V_Flamel_Card','Genetic Flamel Card','Card',20,10,true,true,'if(eaclass()&EAJL_THIRD && BaseJob == Job_Alchemist){ bonus bFlee,20; bonus2 bAddClass,Class_All,15; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4682,'V_Gertie_Card','Shadow Chaser Gertie Card','Card',20,10,true,true,'if(eaclass()&EAJL_THIRD && BaseJob == Job_Rogue){ bonus2 bAddClass,Class_All,5; bonus bMatkRate,15; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (4683,'V_Trentini_Card','Wanderer Trentini Card','Card',20,10,true,true,'if(eaclass()&EAJL_THIRD && BaseJob == Job_Dancer){ bonus bMaxHPrate,10; bonus bMaxSPrate,15; } if(BaseLevel>174) bonus bAllStats,10; if(getrefine()>9) bonus bAllStats,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4684,'V_B_Eremes_Card','True Eremes Guile Card','Card',20,10,true,true,'if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"GC_CROSSIMPACT",20+.@b;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4685,'V_B_Magaleta_Card','True Margaretha Sorin Card','Card',20,10,true,true,'if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"AB_ADORAMUS",20+.@b;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4686,'V_B_Katrinn_Card','True Kathryne Keyron Card','Card',20,10,true,true,'if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"WL_CRIMSONROCK",20+.@b;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4687,'V_B_Shecil_Card','True Cecil Damon Card','Card',20,10,true,true,'if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"RA_CLUSTERBOMB",20+.@b;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4688,'V_B_Harword_Card','True Howard Alt-Eisen Card','Card',20,10,true,true,'if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"NC_AXETORNADO",20+.@b;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4689,'V_B_Seyren_Card','True Seyren Windsor Card','Card',20,10,true,true,'if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"RK_IGNITIONBREAK",20+.@b;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4690,'V_B_Randel_Card','True Randel Lawrence Card','Card',20,10,true,true,'if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"LG_EARTHDRIVE",20+.@b;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4691,'V_B_Flamel_Card','True Flamel Emure Card','Card',20,10,true,true,'if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"GN_CART_TORNADO",20+.@b;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4692,'V_B_Celia_Card','True Celia Alde Card','Card',20,10,true,true,'if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"SO_VARETYR_SPEAR",20+.@b;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4693,'V_B_Chen_Card','True Chen Liu Card','Card',20,10,true,true,'if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",20+.@b;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4694,'V_B_Gertie_Card','True Gertie Card','Card',20,10,true,true,'if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"SC_FEINTBOMB",20+.@b;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4695,'V_B_Trentini_Card','True Trentini Card','Card',20,10,true,true,'if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",20+.@b;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (4696,'V_B_Alphoccio_Card','True Alphoccio Card','Card',20,10,true,true,'if(getrefine() > 9) .@b+=20; if(getequipweaponlv(-1) == 4) .@b += 20; bonus2 bSkillAtk,"WM_REVERBERATION",20+.@b;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (4697,'Charleston3_Card','Charleston3 Card','Card',20,10,true,'bonus bMaxSP,-300; bonus bBreakArmorRate,1500; /* Custom rate [Secret] */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (4698,'Step_Card','Step Card','Card',20,10,true,'bonus2 bSkillAtk,"NC_AXEBOOMERANG",30+((getrefine() >= 10)*30);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (4699,'Rock_Step_Card','Rock Step Card','Card',20,10,true,'bonus2 bSkillAtk,"NC_ARMSCANNON",20+((getrefine()>=10)*20);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4700,'Strength1','STR+1','Card',20,10,'bonus bStr,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4701,'Strength2','STR+2','Card',20,10,'bonus bStr,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4702,'Strength3','STR+3','Card',20,10,'bonus bStr,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4703,'Strength4','STR+4','Card',20,10,'bonus bStr,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4704,'Strength5','STR+5','Card',20,10,'bonus bStr,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4705,'Strength6','STR+6','Card',20,10,'bonus bStr,6;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4706,'Strength7','STR+7','Card',20,10,'bonus bStr,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4707,'Strength8','STR+8','Card',20,10,'bonus bStr,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4708,'Strength9','STR+9','Card',20,10,'bonus bStr,9;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4709,'Strength10','STR+10','Card',20,10,'bonus bStr,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4710,'Inteligence1','INT+1','Card',20,10,'bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4711,'Inteligence2','INT+2','Card',20,10,'bonus bInt,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4712,'Inteligence3','INT+3','Card',20,10,'bonus bInt,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4713,'Inteligence4','INT+4','Card',20,10,'bonus bInt,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4714,'Inteligence5','INT+5','Card',20,10,'bonus bInt,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4715,'Inteligence6','INT+6','Card',20,10,'bonus bInt,6;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4716,'Inteligence7','INT+7','Card',20,10,'bonus bInt,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4717,'Inteligence8','INT+8','Card',20,10,'bonus bInt,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4718,'Inteligence9','INT+9','Card',20,10,'bonus bInt,9;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4719,'Inteligence10','INT+10','Card',20,10,'bonus bInt,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4720,'Dexterity1','DEX+1','Card',20,10,'bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4721,'Dexterity2','DEX+2','Card',20,10,'bonus bDex,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4722,'Dexterity3','DEX+3','Card',20,10,'bonus bDex,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4723,'Dexterity4','DEX+4','Card',20,10,'bonus bDex,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4724,'Dexterity5','DEX+5','Card',20,10,'bonus bDex,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4725,'Dexterity6','DEX+6','Card',20,10,'bonus bDex,6;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4726,'Dexterity7','DEX+7','Card',20,10,'bonus bDex,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4727,'Dexterity8','DEX+8','Card',20,10,'bonus bDex,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4728,'Dexterity9','DEX+9','Card',20,10,'bonus bDex,9;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4729,'Dexterity10','DEX+10','Card',20,10,'bonus bDex,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4730,'Agility1','AGI+1','Card',20,10,'bonus bAgi,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4731,'Agility2','AGI+2','Card',20,10,'bonus bAgi,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4732,'Agility3','AGI+3','Card',20,10,'bonus bAgi,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4733,'Agility4','AGI+4','Card',20,10,'bonus bAgi,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4734,'Agility5','AGI+5','Card',20,10,'bonus bAgi,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4735,'Agility6','AGI+6','Card',20,10,'bonus bAgi,6;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4736,'Agility7','AGI+7','Card',20,10,'bonus bAgi,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4737,'Agility8','AGI+8','Card',20,10,'bonus bAgi,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4738,'Agility9','AGI+9','Card',20,10,'bonus bAgi,9;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4739,'Agility10','AGI+10','Card',20,10,'bonus bAgi,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4740,'Vitality1','VIT+1','Card',20,10,'bonus bVit,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4741,'Vitality2','VIT+2','Card',20,10,'bonus bVit,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4742,'Vitality3','VIT+3','Card',20,10,'bonus bVit,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4743,'Vitality4','VIT+4','Card',20,10,'bonus bVit,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4744,'Vitality5','VIT+5','Card',20,10,'bonus bVit,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4745,'Vitality6','VIT+6','Card',20,10,'bonus bVit,6;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4746,'Vitality7','VIT+7','Card',20,10,'bonus bVit,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4747,'Vitality8','VIT+8','Card',20,10,'bonus bVit,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4748,'Vitality9','VIT+9','Card',20,10,'bonus bVit,9;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4749,'Vitality10','VIT+10','Card',20,10,'bonus bVit,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4750,'Luck1','LUK+1','Card',20,10,'bonus bLuk,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4751,'Luck2','LUK+2','Card',20,10,'bonus bLuk,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4752,'Luck3','LUK+3','Card',20,10,'bonus bLuk,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4753,'Luck4','LUK+4','Card',20,10,'bonus bLuk,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4754,'Luck5','LUK+5','Card',20,10,'bonus bLuk,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4755,'Luck6','LUK+6','Card',20,10,'bonus bLuk,6;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4756,'Luck7','LUK+7','Card',20,10,'bonus bLuk,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4757,'Luck8','LUK+8','Card',20,10,'bonus bLuk,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4758,'Luck9','LUK+9','Card',20,10,'bonus bLuk,9;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4759,'Luck10','LUK+10','Card',20,10,'bonus bLuk,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4760,'Matk1','MATK+1%','Card',20,10,'bonus bMatkRate,1; bonus bFixedCastrate,-1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4761,'Matk2','MATK+2%','Card',20,10,'bonus bMatkRate,2; bonus bFixedCastrate,-1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4762,'Evasion6','FLEE+6','Card',20,10,'bonus bFlee,6;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4763,'Evasion12','FLEE+12','Card',20,10,'bonus bFlee,12;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4764,'Critical5','CRI+5','Card',20,10,'bonus bCritical,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4765,'Critical7','CRI+7','Card',20,10,'bonus bCritical,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4766,'Atk2','ATK+2%','Card',20,10,'bonus2 bAddClass,Class_All,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4767,'Atk3','ATK+3%','Card',20,10,'bonus2 bAddClass,Class_All,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (4768,'Str1_J','Str + 1','Card',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (4769,'Str2_J','Str + 2','Card',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (4770,'Str3_J','Str + 3','Card',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (4771,'Int1_J','Int + 1','Card',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (4772,'Int2_J','Int + 2','Card',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (4773,'Int3_J','Int + 3','Card',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (4774,'Vit1_J','Vit + 1','Card',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (4775,'Vit2_J','Vit + 2','Card',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (4776,'Vit3_J','Vit + 3','Card',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (4777,'Agi1_J','Agi + 1','Card',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (4778,'Agi2_J','Agi + 2','Card',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (4779,'Agi3_J','Agi + 3','Card',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (4780,'Dex1_J','Dex + 1','Card',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (4781,'Dex2_J','Dex + 2','Card',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (4782,'Dex3_J','Dex + 3','Card',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (4783,'Luk1_J','Luk + 1','Card',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (4784,'Luk2_J','Luk + 2','Card',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (4785,'Luk3_J','Luk + 3','Card',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4786,'Mdef2','MDEF+2','Card',20,10,'bonus bMdef,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4787,'Mdef4','MDEF+4','Card',20,10,'bonus bMdef,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4788,'Mdef6','MDEF+6','Card',20,10,'bonus bMdef,6;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4789,'Mdef8','MDEF+8','Card',20,10,'bonus bMdef,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4790,'Mdef10','MDEF+10','Card',20,10,'bonus bMdef,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4791,'Def3','DEF+3','Card',20,10,'bonus bDef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4792,'Def6','DEF+6','Card',20,10,'bonus bDef,6;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4793,'Def9','DEF+9','Card',20,10,'bonus bDef,9;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4794,'Def12','DEF+12','Card',20,10,'bonus bDef,12;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4795,'HP100','HP+100','Card',20,10,'bonus bMaxHP,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4796,'HP200','HP+200','Card',20,10,'bonus bMaxHP,200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4797,'HP300','HP+300','Card',20,10,'bonus bMaxHP,300;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4798,'HP400','HP+400','Card',20,10,'bonus bMaxHP,400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4799,'HP500','HP+500','Card',20,10,'bonus bMaxHP,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4800,'SP50','SP+50','Card',20,10,'bonus bMaxSP,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4801,'SP100','SP+100','Card',20,10,'bonus bMaxSP,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4802,'SP150','SP+150','Card',20,10,'bonus bMaxSP,150;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4803,'Highness_Heal_3sec','Cure1Lv.','Card',20,10,'bonus2 bSkillCooldown,"AB_HIGHNESSHEAL",-3000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4804,'Coluceo_Heal30','Catholic1Lv.','Card',20,10,'bonus2 bSkillUseSP,"AB_CHEAL",30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4805,'Heal_Amount2','Archbishop1Lv','Card',20,10,'bonus bHealPower,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4806,'Matk3','MATK+3%','Card',20,10,'bonus bMatkRate,3; bonus bFixedCastrate,-1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4807,'Atk_Speed1','Atk Speed1','Card',20,10,'bonus bAspd,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4808,'Fighting_Spirit4','Fighting Spirit4','Card',20,10,'bonus bBaseAtk,15; bonus bHit,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4809,'Fighting_Spirit3','Fighting Spirit3','Card',20,10,'bonus bBaseAtk,12; bonus bHit,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4810,'Fighting_Spirit2','Fighting Spirit2','Card',20,10,'bonus bBaseAtk,9; bonus bHit,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4811,'Fighting_Spirit1','Fighting Spirit1','Card',20,10,'bonus bBaseAtk,6; bonus bHit,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4812,'Spell4','Spell4','Card',20,10,'bonus bMatk,15; bonus bVariableCastrate,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4813,'Spell3','Spell3','Card',20,10,'bonus bMatk,12; bonus bVariableCastrate,-8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4814,'Spell2','Spell2','Card',20,10,'bonus bMatk,9; bonus bVariableCastrate,-6;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4815,'Spell1','Spell1','Card',20,10,'bonus bMatk,6; bonus bVariableCastrate,-4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4816,'Sharp3','Sharp3','Card',20,10,'bonus bCritical,12; bonus bHit,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4817,'Sharp2','Sharp2','Card',20,10,'bonus bCritical,9; bonus bHit,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4818,'Sharp1','Sharp1','Card',20,10,'bonus bCritical,6; bonus bHit,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4819,'Atk1','Atk1','Card',20,10,'bonus2 bAddClass,Class_All,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4820,'Fighting_Spirit5','Fighting Spirit5','Card',20,10,'bonus bBaseAtk,18; bonus bHit,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4821,'Fighting_Spirit6','Fighting Spirit6','Card',20,10,'bonus bBaseAtk,21; bonus bHit,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4822,'Fighting_Spirit7','Fighting Spirit7','Card',20,10,'bonus bBaseAtk,24; bonus bHit,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4823,'Fighting_Spirit8','Fighting Spirit8','Card',20,10,'bonus bBaseAtk,27; bonus bHit,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4824,'Fighting_Spirit9','Fighting Spirit9','Card',20,10,'bonus bBaseAtk,30; bonus bHit,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4825,'Fighting_Spirit10','Fighting Spirit10','Card',20,10,'bonus bBaseAtk,50; bonus bHit,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4826,'Spell5','Spell5','Card',20,10,'bonus bMatk,18; bonus bVariableCastrate,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4827,'Spell6','Spell6','Card',20,10,'bonus bMatk,21; bonus bVariableCastrate,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4828,'Spell7','Spell7','Card',20,10,'bonus bMatk,24; bonus bVariableCastrate,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4829,'Spell8','Spell8','Card',20,10,'bonus bMatk,27; bonus bVariableCastrate,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4830,'Spell9','Spell9','Card',20,10,'bonus bMatk,30; bonus bVariableCastrate,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4831,'Spell10','Spell10','Card',20,10,'bonus bMatk,50; bonus bVariableCastrate,-20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4832,'Expert_Archer1','Expert Archer1','Card',20,10,'bonus bLongAtkRate,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4833,'Expert_Archer2','Expert Archer2','Card',20,10,'bonus bLongAtkRate,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4834,'Expert_Archer3','Expert Archer3','Card',20,10,'bonus bLongAtkRate,6;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4835,'Expert_Archer4','Expert Archer4','Card',20,10,'bonus bLongAtkRate,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4836,'Expert_Archer5','Expert Archer5','Card',20,10,'bonus bLongAtkRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4837,'Expert_Archer6','Expert Archer6','Card',20,10,'bonus bLongAtkRate,12;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4838,'Expert_Archer7','Expert Archer7','Card',20,10,'bonus bLongAtkRate,14;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4839,'Expert_Archer8','Expert Archer8','Card',20,10,'bonus bLongAtkRate,16;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4840,'Expert_Archer9','Expert Archer9','Card',20,10,'bonus bLongAtkRate,18;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4841,'Expert_Archer10','Expert Archer10','Card',20,10,'bonus bLongAtkRate,20; bonus bAspd,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4842,'Atk_Speed2','Atk Speed2','Card',20,10,'bonus bAspd,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4843,'Sharp4','Sharp4','Card',20,10,'bonus bCritical,14; bonus bHit,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4844,'Sharp5','Sharp5','Card',20,10,'bonus bCritical,15; bonus bHit,6;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (4845,'Sea_Energy','Strength Of Ocean','Card'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4846,'2011Valentin_Angel','Fully Loved Stone','Card',20,10,'bonus bBaseAtk,10; bonus bMatk,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4847,'2011Valentin_Devil','Spelled Stone','Card',20,10,'bonus bBaseAtk,10; bonus bMatk,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4848,'Immuned1','Immune Level 1','Card',20,10,'bonus2 bSubEle,Ele_Neutral,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4849,'Cranial1','Cranial Level 1','Card',20,10,'bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4850,'Heal_Amount3','Heal Amount2','Card',20,10,'bonus bHealPower,6; bonus bUseSPrate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4851,'Heal_Amount4','Heal Amount3','Card',20,10,'bonus bHealPower,12; bonus bUseSPrate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4852,'Heal_Amount5','Heal Amount4','Card',20,10,'bonus bHealPower,20; bonus bUseSPrate,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4853,'S_Str','Special Str','Card',20,10,'bonus bStr,1; .@r = getrefine(); if(.@r>7) { bonus bStr,3; } if(.@r>8) { bonus2 bAddClass,Class_All,1; } if(.@r>11) { bonus bAspd,1; bonus bFixedCastrate,-7; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4854,'S_Agi','Special Agi','Card',20,10,'bonus bAgi,1; .@r = getrefine(); if(.@r>7) { bonus bAgi,3; } if(.@r>8) { bonus2 bAddClass,Class_All,1; } if(.@r>11) { bonus bAspd,1; bonus bFixedCastrate,-7; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4855,'S_Vital','Special Vit','Card',20,10,'bonus bVit,1; .@r = getrefine(); if(.@r>7) { bonus bVit,3; } if(.@r>8) { bonus bMaxSPrate,1; } if(.@r>11) { bonus bAspd,1; bonus bFixedCastrate,-7; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4856,'S_Int','Special Int','Card',20,10,'bonus bInt,1; .@r = getrefine(); if(.@r>7) { bonus bInt,3; } if(.@r>8) { bonus bMatkRate,1; } if(.@r>11) { bonus bAspd,1; bonus bFixedCastrate,-7; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4857,'S_Dex','Special Dex','Card',20,10,'bonus bDex,1; .@r = getrefine(); if(.@r>7) { bonus bDex,3; } if(.@r>8) { bonus bMatkRate,1; } if(.@r>11) { bonus bAspd,1; bonus bFixedCastrate,-7; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4858,'S_Luck','Special Luk','Card',20,10,'bonus bLuk,1; .@r = getrefine(); if(.@r>7) { bonus bLuk,3; } if(.@r>8) { bonus bMaxHPrate,1; } if(.@r>11) { bonus bAspd,1; bonus bFixedCastrate,-7; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4859,'Evasion1','Evasion1','Card',20,10,'bonus bFlee,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4860,'Evasion3','Evasion3','Card',20,10,'bonus bFlee,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4861,'MHP1','MHP+1%','Card',20,10,'bonus bMaxHPrate,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4862,'MHP2','MHP+2%','Card',20,10,'bonus bMaxHPrate,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4863,'Fatal1','Fatal1Lv','Card',10,'bonus bCritAtkRate,4; bonus bCritical,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4864,'Fatal2','Fatal2Lv','Card',10,'bonus bCritAtkRate,6; bonus bCritical,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4865,'Fatal3','Fatal3Lv','Card',10,'bonus bCritAtkRate,8; bonus bCritical,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4866,'Fatal4','Fatal4Lv','Card',10,'bonus bCritAtkRate,10; bonus bCritical,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4867,'MHP3','MHP+3%','Card',20,10,'bonus bMaxHPrate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4868,'MHP4','MHP+4%','Card',20,10,'bonus bMaxHPrate,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4869,'Attack_Delay_1','DelayafterAttack1Lv','Card',10,'bonus bAspdRate,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4870,'SP25','SP+25','Card',20,10,'bonus bMaxSP,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4871,'SP75','SP+75','Card',20,10,'bonus bMaxSP,75;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4872,'Attack_Delay_2','DelayafterAttack2Lv','Card',10,'bonus bAspdRate,6;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4873,'Attack_Delay_3','DelayafterAttack3Lv','Card',10,'bonus bAspdRate,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (4875,'Bear\'s_Power','Bear\'s Power','Card','autobonus2 "{ bonus bStr,200; bonus2 bHPLossRate,500,1000; }",20,5000,BF_WEAPON,"{ active_transform 1060,5000; specialeffect2 EF_POTION_BERSERK; showscript \\"Bigfoot Power !\\"; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (4876,'Runaway_Magic','Runaway Magic','Card','autobonus "{ bonus bInt,200; bonus2 bSPLossRate,200,1000; }",15,10000,BF_MAGIC,"{ specialeffect2 EF_LAMADAN; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (4877,'Speed_Of_Light','Speed of Light','Card','autobonus "{ bonus bAspdRate,100; bonus bFlee,100; bonus2 bHPLossRate,400,1000; bonus2 bSPLossRate,40,1000;}",10,5000,BF_WEAPON,"{ specialeffect2 EF_FLASHER; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (4878,'Muscle_Fool','Muscle Fool','Card','autobonus2 "{ bonus bDef,1000; bonus2 bAddRace,RC_All,-50; bonus bMatkRate,-50; }",20,5000,BF_WEAPON,"{ specialeffect2 EF_MAGNUMBREAK; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (4879,'Hawkeye','Hawkeye','Card','autobonus "{ bonus bDex,200; bonus2 bSPLossRate,50,1000; }",30,5000,BF_WEAPON,"{ specialeffect2 EF_FLASHER; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (4880,'Lucky_Day','Lucky Day','Card','autobonus "{ bonus bLuk,200; bonus2 bAddMonsterDropItem,7444,10; }",15,5000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_MVP; showscript \\"LUCKY MAX !!\\"; }"; autobonus2 "{ bonus bLuk,200; bonus2 bAddMonsterDropItem,7444,1; }",1,5000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_MVP; showscript \\"LUCKY MAX !!\\"; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4881,'Attack_Delay_4','Attack Delay 4','Card',10,'bonus bAspdRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4882,'Atk1p','ATK + 1%','Card',10,'bonus2 bAddClass,Class_All,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4883,'Matk1p','MATK + 1%','Card',10,'bonus bMatkRate,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4884,'HIT1','HIT + 1','Card',10,'bonus bHit,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4885,'Conjure1','Spell 1','Card',10,'bonus bMatk,5; bonus bVariableCastrate,-3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4886,'Conjure2','Spell 2','Card',10,'bonus bMatk,10; bonus bVariableCastrate,-3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4887,'Conjure3','Spell 3','Card',10,'bonus bMatk,15; bonus bVariableCastrate,-3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4888,'Conjure4','Spell 4','Card',10,'bonus bMatk,20; bonus bVariableCastrate,-3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4889,'Conjure5','Spell 5','Card',10,'bonus bMatk,30; bonus bVariableCastrate,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4890,'Mdef1','MDEF+1','Card',10,'bonus bMdef,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4891,'Mdef3','MDEF+3','Card',10,'bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4892,'Mdef5','MDEF+5','Card',10,'bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4893,'Def15','DEF+15','Card',10,'bonus bDef,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4894,'Atk4p','ATK + 4%','Card',10,'bonus2 bAddClass,Class_All,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4895,'Atk5p','ATK + 5%','Card',10,'bonus2 bAddClass,Class_All,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4896,'Matk2p','MATK + 2%','Card',10,'bonus bMatkRate,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4897,'Matk3p','MATK + 3%','Card',10,'bonus bMatkRate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4898,'Matk4p','MATK + 4%','Card',10,'bonus bMatkRate,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4899,'Matk5p','MATK + 5%','Card',10,'bonus bMatkRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4900,'MHP5','MHP+5%','Card',10,'bonus bMaxHPrate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4902,'Def18','DEF+18','Card',10,'bonus bDef,18;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4903,'Def21','DEF+21','Card',10,'bonus bDef,21;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4904,'Atk6p','ATK + 6%','Card',10,'bonus2 bAddClass,Class_All,6;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4905,'Atk7p','ATK + 7%','Card',10,'bonus2 bAddClass,Class_All,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4906,'Matk6p','MATK + 6','Card',10,'bonus bMatkRate,6;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4907,'Matk7p','MATK + 7%','Card',10,'bonus bMatkRate,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`location_armor`,`location_left_hand`,`location_right_hand`,`location_garment`,`location_shoes`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (4908,'Force1','Darklord Essence Force1','Card',20,10,true,true,true,true,true,true,true,true,true,true,'bonus bStr,1; bonus bBaseAtk,3; bonus bInt,-1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`location_armor`,`location_left_hand`,`location_right_hand`,`location_garment`,`location_shoes`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (4909,'Force2','Darklord Essence Force2','Card',20,10,true,true,true,true,true,true,true,true,true,true,'bonus bStr,2; bonus bBaseAtk,6; bonus bInt,-2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`location_armor`,`location_left_hand`,`location_right_hand`,`location_garment`,`location_shoes`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (4910,'Force3','Darklord Essence Force3','Card',20,10,true,true,true,true,true,true,true,true,true,true,'bonus bStr,4; bonus bBaseAtk,12; bonus bInt,-4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`location_armor`,`location_left_hand`,`location_right_hand`,`location_garment`,`location_shoes`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (4911,'Intellect1','Darklord Essence Intelligence1','Card',20,10,true,true,true,true,true,true,true,true,true,true,'bonus bInt,1; bonus bMatk,3; bonus bStr,-1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`location_armor`,`location_left_hand`,`location_right_hand`,`location_garment`,`location_shoes`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (4912,'Intellect2','Darklord Essence Intelligence2','Card',20,10,true,true,true,true,true,true,true,true,true,true,'bonus bInt,2; bonus bMatk,6; bonus bStr,-2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`location_armor`,`location_left_hand`,`location_right_hand`,`location_garment`,`location_shoes`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (4913,'Intellect3','Darklord Essence Intelligence3','Card',20,10,true,true,true,true,true,true,true,true,true,true,'bonus bInt,4; bonus bMatk,12; bonus bStr,-4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`location_armor`,`location_left_hand`,`location_right_hand`,`location_garment`,`location_shoes`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (4914,'Swiftness1','Darklord Essence Speed1','Card',20,10,true,true,true,true,true,true,true,true,true,true,'bonus bAgi,1; bonus bFlee,2; bonus bVit,-1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`location_armor`,`location_left_hand`,`location_right_hand`,`location_garment`,`location_shoes`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (4915,'Swiftness2','Darklord Essence Speed2','Card',20,10,true,true,true,true,true,true,true,true,true,true,'bonus bAgi,2; bonus bFlee,4; bonus bVit,-2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`location_armor`,`location_left_hand`,`location_right_hand`,`location_garment`,`location_shoes`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (4916,'Swiftness3','Darklord Essence Speed3','Card',20,10,true,true,true,true,true,true,true,true,true,true,'bonus bAgi,4; bonus bFlee,8; bonus bVit,-4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`location_armor`,`location_left_hand`,`location_right_hand`,`location_garment`,`location_shoes`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (4917,'Tough1','Darklord Essence Vitality1','Card',20,10,true,true,true,true,true,true,true,true,true,true,'bonus bVit,1; bonus bDef,3; bonus bMdef,2; bonus bAgi,-1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`location_armor`,`location_left_hand`,`location_right_hand`,`location_garment`,`location_shoes`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (4918,'Tough2','Darklord Essence Vitality2','Card',20,10,true,true,true,true,true,true,true,true,true,true,'bonus bVit,2; bonus bDef,6; bonus bMdef,4; bonus bAgi,-2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`location_armor`,`location_left_hand`,`location_right_hand`,`location_garment`,`location_shoes`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (4919,'Tough3','Darklord Essence Vitality3','Card',20,10,true,true,true,true,true,true,true,true,true,true,'bonus bVit,4; bonus bDef,12; bonus bMdef,8; bonus bAgi,-4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`location_armor`,`location_left_hand`,`location_right_hand`,`location_garment`,`location_shoes`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (4920,'Artful1','Darklord Essence Concentration1','Card',20,10,true,true,true,true,true,true,true,true,true,true,'bonus bDex,1; bonus bHit,2; bonus bLuk,-1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`location_armor`,`location_left_hand`,`location_right_hand`,`location_garment`,`location_shoes`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (4921,'Artful2','Darklord Essence Concentration2','Card',20,10,true,true,true,true,true,true,true,true,true,true,'bonus bDex,2; bonus bHit,4; bonus bLuk,-2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`location_armor`,`location_left_hand`,`location_right_hand`,`location_garment`,`location_shoes`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (4922,'Artful3','Darklord Essence Concentration3','Card',20,10,true,true,true,true,true,true,true,true,true,true,'bonus bDex,4; bonus bHit,8; bonus bLuk,-4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`location_armor`,`location_left_hand`,`location_right_hand`,`location_garment`,`location_shoes`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (4923,'Fortune1','Darklord Essence Luck1','Card',20,10,true,true,true,true,true,true,true,true,true,true,'bonus bLuk,1; bonus bCritical,1; bonus bDex,-1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`location_armor`,`location_left_hand`,`location_right_hand`,`location_garment`,`location_shoes`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (4924,'Fortune2','Darklord Essence Luck2','Card',20,10,true,true,true,true,true,true,true,true,true,true,'bonus bLuk,2; bonus bCritical,2; bonus bDex,-2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`location_armor`,`location_left_hand`,`location_right_hand`,`location_garment`,`location_shoes`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (4925,'Fortune3','Darklord Essence Luck3','Card',20,10,true,true,true,true,true,true,true,true,true,true,'bonus bLuk,4; bonus bCritical,4; bonus bDex,-4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4926,'Critical1','Cri 1Lv','Card',10,'bonus bCritical,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4927,'HP50','MaxHP50','Card',10,'bonus bMaxHP,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4928,'SP10','MaxSP+10','Card',10,'bonus bMaxSP,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4929,'MSP1','MSP+1%','Card',10,'bonus bMaxSPrate,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4930,'HEAL2','Recovery UP','Card',10,'bonus bHPrecovRate,2; bonus bSPrecovRate,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4931,'HEALHP1','Heal 10','Card',10,'bonus2 bHPRegenRate,10,10000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4932,'HEALSP1','SP recovery1','Card',10,'bonus bSPGainValue,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4933,'Tolerance_Not1','Neutral Resistance Lv1','Card',10,'bonus2 bSubEle,Ele_Neutral,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4934,'Tolerance_Not2','Neutral Resistance Lv2','Card',10,'bonus2 bSubEle,Ele_Neutral,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4935,'Tolerance_Not3','Neutral Resistance Lv3','Card',10,'bonus2 bSubEle,Ele_Neutral,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4936,'ATK_BIG1','Attack big1','Card',20,10,'bonus2 bAddSize,Size_Large,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4937,'ATK_MEDIUM1','Attack mid1','Card',20,10,'bonus2 bAddSize,Size_Medium,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (4938,'ATK_SMALL1','Attack small1','Card',20,10,'bonus2 bAddSize,Size_Small,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4939,'Critical2','CRI Lv2','Card',10,'bonus bCritical,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4940,'Critical3','CRI Lv3','Card',10,'bonus bCritical,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4941,'Critical4','CRI Lv4','Card',10,'bonus bCritical,6;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4942,'Dodge1','Parrying Lv1','Card',10,'bonus bFlee2,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4943,'Dodge2','Parrying Lv2','Card',10,'bonus bFlee2,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4944,'Dodge3','Parrying Lv3','Card',10,'bonus bFlee2,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4945,'Thrift1','Economy Lv1','Card',10,'bonus bUseSPrate,-2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4946,'Thrift2','Economy Lv2','Card',10,'bonus bUseSPrate,-4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4947,'Thrift3','Economy Lv3','Card',10,'bonus bUseSPrate,-6;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4948,'Skill_Delay1','After Skill Delay Lv1','Card',10,'bonus bDelayrate,-2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4949,'Skill_Delay2','After Skill Delay Lv2','Card',10,'bonus bDelayrate,-4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4950,'Skill_Delay3','After Skill Delay Lv3','Card',10,'bonus bDelayrate,-6;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (4951,'Darkness_Drop','Darkness Drop','Card','bonus2 bAddEle,Ele_Dark,2; bonus2 bMagicAtkEle,Ele_Dark,2; bonus2 bSubEle,Ele_Dark,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (4952,'Fire_Drop','Fire Drop','Card','bonus2 bAddEle,Ele_Fire,2; bonus2 bMagicAtkEle,Ele_Fire,2; bonus2 bSubEle,Ele_Fire,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (4953,'Water_Drop','Water Drop','Card','bonus2 bAddEle,Ele_Water,2; bonus2 bMagicAtkEle,Ele_Water,2; bonus2 bSubEle,Ele_Water,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (4954,'Earth_Drop','Earth Drop','Card','bonus2 bAddEle,Ele_Earth,2; bonus2 bMagicAtkEle,Ele_Earth,2; bonus2 bSubEle,Ele_Earth,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (4955,'Holy_Drop','Holy Drop','Card','bonus2 bAddEle,Ele_Holy,2; bonus2 bMagicAtkEle,Ele_Holy,2; bonus2 bSubEle,Ele_Holy,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (4956,'Recovery_Drop','Recovery Drop','Card','setarray .@skills$, "AL_HEAL", "PR_SANCTUARY", "AM_POTIONPITCHER", "AB_HIGHNESSHEAL", "AB_CHEAL"; for( .@i = 0; .@i < getarraysize(.@skills$); .@i++ ){ bonus2 bSkillHeal,.@skills$[.@i],2; bonus2 bSkillHeal2,.@skills$[.@i],2; } /* TODO: Depending on some recovery items HP recovery amount + 2% */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (4957,'Famitsus_Power','Famitsu\'s Power','Card','bonus bMaxHP,832;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (4958,'Gemini','Gemini','Card','bonus bDelayrate,-1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (4959,'Sagittarius','Sagittarius','Card','bonus bLongAtkRate,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (4960,'Aquarius','Aquarius','Card','bonus bUseSPrate,-2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (4961,'Aries','Aries','Card','bonus bMatk,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (4962,'Cancer','Cancer','Card','bonus bAtk,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (4963,'Taurus','Taurus','Card','bonus bAtk,4; bonus bHit,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (4964,'Capricorn','Capricorn','Card','bonus2 bMagicAddRace,RC_All,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (4965,'Pisces','Pisces','Card','bonus bVariableCastrate,-2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (4966,'Scorpio','Scorpio','Card','bonus2 bAddRace,RC_All,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (4967,'Leo','Leo','Card','bonus bAspdRate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (4968,'Virgo','Virgo','Card','setarray .@skills$, "AL_HEAL", "PR_SANCTUARY", "AM_POTIONPITCHER", "AB_HIGHNESSHEAL", "AB_CHEAL"; for( .@i = 0; .@i < getarraysize(.@skills$); .@i++ ){ bonus2 bSkillHeal,.@skills$[.@i],1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (4969,'Libra','Libra','Card','setarray .@skills$, "AL_HEAL", "PR_SANCTUARY", "AM_POTIONPITCHER", "AB_HIGHNESSHEAL", "AB_CHEAL"; for( .@i = 0; .@i < getarraysize(.@skills$); .@i++ ){ bonus2 bSkillHeal2,.@skills$[.@i],1; } /* TODO: Depending on some recovery items HP recovery amount + 1% */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (4970,'Reactor_P_FIRE','Fire Property Reactor','Card','bonus bDefEle,Ele_Fire;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (4971,'Reactor_P_WATER','Water Property Reactor','Card','bonus bDefEle,Ele_Water;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (4972,'Reactor_P_GROUND','Earth Property Reactor','Card','bonus bDefEle,Ele_Earth;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (4973,'Reactor_P_WIND','Wind Property Reactor','Card','bonus bDefEle,Ele_Wind;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (4974,'Reactor_T_FIRE','Fire Resistance Reactor','Card','bonus2 bSubEle,Ele_Fire,25; bonus2 bSubEle,Ele_Water,-25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (4975,'Reactor_T_WATER','Water Resistance Reactor','Card','bonus2 bSubEle,Ele_Water,25; bonus2 bSubEle,Ele_Wind,-25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (4976,'Reactor_T_GROUND','Earth Resistance Reactor','Card','bonus2 bSubEle,Ele_Earth,25; bonus2 bSubEle,Ele_Fire,-25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (4977,'Reactor_T_WIND','Wind Resistance Reactor','Card','bonus2 bSubEle,Ele_Wind,25; bonus2 bSubEle,Ele_Earth,-25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (4978,'Reactor_Cure_101','Recovery Reactor 101','Card','if (getrefine()>=7) bonus2 bHPRegenRate,100,5000; else bonus2 bHPRegenRate,50,5000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (4979,'Reactor_Cure_102','Recovery Reactor 102','Card','if (getrefine()>=7) bonus2 bSPRegenRate,5,5000; else bonus2 bHPRegenRate,3,5000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (4980,'Reactor_Cure_201','Recovery Reactor 201','Card','if (getrefine()>=7) bonus bHPrecovRate,100; else bonus bHPrecovRate,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (4981,'Reactor_Cure_202','Recovery Reactor 202','Card','if (getrefine()>=7) bonus bSPrecovRate,100; else bonus bSPrecovRate,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (4982,'Reactor_A_STR','STR Supplement Reactor','Card','if (getrefine()>=7) { .@bonus = 10; } bonus bBaseAtk,.@bonus + 5*(readparam(bStr)/10);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (4983,'Reactor_A_INT','INT Supplement Reactor','Card','if (getrefine()>=7) { .@bonus = 10; } bonus bMatk,.@bonus + 5*(readparam(bInt)/10);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (4984,'Reactor_A_DEF','DEF SupplementReactor','Card','bonus bDef,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (4985,'Reactor_A_AVOI','PD Supplement Reactor','Card','bonus bFlee2,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (4986,'Reactor_A_ATK','Attack Supplement Reactor','Card','bonus bBaseAtk,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (4987,'Reactor_A_MATK','Magic Supplement Reactor','Card','bonus bMatk,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (4988,'Reactor_A_MHP','HP Supplement Reactor','Card','bonus bMaxHPrate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (4989,'Reactor_A_MSP','SP Supplement Reactor','Card','bonus bMaxSPrate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (4990,'Reactor_A_FROZ','Frozen Supplement Reactor','Card','bonus2 bResEff,Eff_Freeze,10000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (4991,'Reactor_A_ASPD','ASPD Supplement Reactor','Card','bonus bAspd,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (4992,'HPdrain1','HP Absorb 1','Card','bonus2 bHPDrainRate,10,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (4993,'SPdrain1','SP Absorb 1','Card','bonus2 bSPDrainRate,10,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4994,'Rune_of_Strength_Lv_1','Rune of Strength Lv 1','Card',20,'.@r = getrefine(); if (.@r>=7) { bonus bStr,5; } if (.@r>=10) { bonus2 bAddClass,Class_All,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4995,'Rune_of_Strength_Lv_2','Rune of Strength Lv 2','Card',20,'.@r = getrefine(); if (.@r>=7) { bonus bStr,6; } if (.@r>=11) { bonus bStr,1; bonus2 bAddClass,Class_All,7; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4996,'Rune_of_Strength_Lv_3','Rune of Strength_Lv 3','Card',20,'.@r = getrefine(); if (.@r>=7) { bonus bStr,7; } if (.@r>=12) { bonus bStr,1; bonus2 bAddClass,Class_All,8; } if (.@r>=13) { bonus bStr,1; bonus2 bAddClass,Class_All,2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4997,'Rune_of_Agility_Lv_1','Rune of Agility Lv 1','Card',20,'.@r = getrefine(); if (.@r>=7) { bonus bAgi,5; } if (.@r>=10) { bonus bFlee2,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4998,'Rune_of_Agility_Lv_2','Rune of Agility Lv 2','Card',20,'.@r = getrefine(); if (.@r>=7) { bonus bAgi,6; } if (.@r>=11) { bonus bAgi,1; bonus bFlee2,7; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (4999,'Rune_of_Agility_Lv_3','Rune of Agility Lv 3','Card',20,'.@r = getrefine(); if (.@r>=7) { bonus bAgi,7; } if (.@r>=12) { bonus bAgi,1; bonus bFlee2,5; } if (.@r>=13) { bonus bAgi,1; bonus bFlee2,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6000,'Dark_Ashes','Ashes of Darkness','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (6001,'Essence_Of_Fire','Essence of Fire','Etc',10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (6002,'Token_Of_Apostle','Token of Apostle','Etc',10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (6003,'Soul_Pendant','Pendant of Spirit','Etc',10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (6004,'Bapho_Doll','Cursed Baphomet Doll','Etc',10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6005,'New_Year_Rice_Cake','New Year Rice Cake','Etc',10,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6006,'Rice_Cake_Delivery_Box','Rice Cake Delivery Box','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6007,'New_Year_Rice_Cake_Soup','New Year Rice Cake Soup','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (6008,'Wood','Wood','Etc',10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6009,'Large_Magical_Fan','Big Fan Of Magic','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (6010,'Pickaxe','Hoe','Etc',10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6011,'Blue_Card_B','Blue B Card','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6012,'Blue_Card_C','Blue C Card','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6013,'Blue_Card_J','Blue J Card','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6015,'Blue_Card_M','Blue M Card','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6016,'Blue_Card_Q','Blue Q Card','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6017,'Blue_Card_T','Blue T Card','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6018,'Blue_Card_V','Blue V Card','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6019,'Blue_Card_Z','Blue Z Card','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6020,'Fur','Fur','Etc',704,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6021,'Peaked_Hat','Peaked Hat','Etc',433,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6022,'Hard_Skin','Hard Skin','Etc',884,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6023,'Mystic_Horn','Mystic Horn','Etc',1000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nosell`) VALUES (6024,'17Carat_Dia','17Carat Diamond','Etc',6000000,10,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6025,'Towel_Of_Memory','Towel of Memory','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`) VALUES (6026,'Marriage_Covenant','Written Oath Of Marriage','Etc',10,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6027,'Crystal_Of_Feardoom','Crystal Of Feardom','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6028,'Seal_Scroll','Sealed Scroll','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6029,'Morocc_Tracing_Log','Morocc Tracing Log','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6030,'Glitering_PaperA','Glittering Paper','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6031,'Glitering_PaperB','Glittering Paper','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6032,'Horn_Of_Hilsrion','Horn of Hillslion','Etc',500,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6033,'Horn_Of_Tendrilion','Horn of Tendrilion','Etc',500,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6034,'Weird_Part','Weird Part','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6035,'Decaying_Stem','Decaying Stem','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6036,'Invite_To_Meeting','Meeting Invitation','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6037,'Rough_File','Messy File','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6038,'Neat_Report','Neat Report','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6039,'Piece_Of_Fish','Piece of Fish','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6040,'Some_Of_Report','Part of a Report','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6041,'Strong_Bine','Strong Vine','Etc',30,50); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6042,'Ordinary_Branch','Ordinary Branch','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6043,'Letter_From_Lugen','Letter from Lugen','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6044,'Letter_From_Otto','Letter from Otto','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6045,'Supply_Box','Supply Box','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6048,'Unidentified_Mineral','Unidentified Mineral','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6049,'Marlin','Marlin','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6050,'Mercenary_Contract','Mercenary Contract','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6051,'Gray_Hollow','Gray Hollow','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6052,'Ornamental_Hairpin','Ornament Hairpin','Etc',1,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6053,'Yuanbao','Circle Step','Etc',100,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6054,'Blue_Card_6','Number 6 Card','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6055,'Blue_Card_Annyver','Character Week Card','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6056,'Blue_Card_Sary','Character Year Card','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6057,'Blue_Card_E','Character Lee Card','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6058,'Blue_Card_Ven','Character Ben Card','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6059,'Blue_Card_Nt','Character Project Card','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6060,'Moon_Admin_Ticket','Month Viewing Ticket','Etc',10,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6061,'Plantain','Blood Beginner','Etc',100,50); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6062,'Moon_Cake15','Letter Moon Cake','Etc',10,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6063,'Moon_Cake16','Letter Moon Cake','Etc',10,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6064,'Moon_Cake17','Letter Moon Cake','Etc',10,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6065,'Moon_Cake18','Letter Moon Cake','Etc',10,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6066,'Moon_Cake19','Letter Moon Cake','Etc',10,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6067,'Moon_Cake20','Letter Moon Cake','Etc',10,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6068,'Rabbit_Skin','Leather Rabbit','Etc',10,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6069,'ABUNDANCE','Abundance','Etc',10,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6070,'Shaman\'s_Old_Paper','Shaman\'s Document','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6071,'Broken_Sword','Broken Sword','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6072,'Wing_Of_Bizofnil','Bijofnil Feather','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (6073,'Dragon\'s_Mane','Dragon\'s Mane','Etc',true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6074,'Bazett\'s_Order','Bazett\'s Order','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (6075,'Crystalized_Teardrop','Crystalized Teardrop','Etc',true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6076,'Portable_Toolbox','Portable Toolbox','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6077,'Rough_Mineral','Rough Mineral','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6078,'Stone_Fragments','Stone Fragment','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6079,'Flower_Of_Alfheim','Flower Of Alfheim','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6080,'Manuk_Coin','Manuk Coin','Etc',100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6081,'Splendide_Coin','Splendide Coin','Etc',100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6082,'Spirit_Of_Alfheim','Spirit Of Alfheim','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6083,'Dolly_Capsule','Capsule Dolls','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6084,'Bradium_Fragments','Bradium Fragments','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6085,'Shaggy_Muffler','Shaggy Muffler','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6086,'Withered_Flower','Withered Flower','Etc',890,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6087,'Crystal_Of_Soul_01','Spiritual Crystal','Etc',1050,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6088,'Crystal_Of_Soul_02','Spiritual Crystal','Etc',1050,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6089,'Piece_Of_Darkness','Dark Piece','Etc',1000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6090,'Purified_Bradium','Refined Bradium','Etc',1100,50,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6091,'Dark_Red_Scale','Darkred Scale Piece','Etc',200000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6092,'Singing_Crystal_Piece','Piece Of Singing Crystal','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6093,'Egg_Of_Draco','Draco\'s Egg','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6094,'Traditional_Cookie','Traditional Sweets','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6095,'Flavored_Alcohol','Flavored Alcohol','Etc',1000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6096,'Fish_With_Blue_Back','Fish With Blue Back','Etc',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6097,'Pumpkin_Pie_','Pumpkin Pie','Etc',1000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6098,'Small_Snow_Flower','Small Snow Flower','Etc',1000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6099,'Grilled_Rice_Cake','Grilled Rice Cake','Etc',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6100,'Damp_Darkness','Damp Darkness','Etc',1000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6101,'Attendance_Card','Attendance Card','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6102,'Report_On_Splendide','Report On Splendide','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6103,'Report_On_Manuk','Report On Manuk','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6104,'Big_Cell','Big Cell','Etc',1000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6105,'Morning_Dew','Morning Dew','Etc',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6106,'Well_Ripened_Berry','Well Ripened Berry','Etc',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6107,'Sunset_On_The_Rock','Sunset On The Rock','Etc',1000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6108,'Apple_Pudding','Apple Pudding','Etc',1000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6109,'Plant_Neutrient','Plant Neutrient','Etc',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6110,'Vital_Flower','Vital Flower','Etc',1000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6111,'Mystic_Stone','Mystic Stone','Etc',1000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6112,'Fresh_Plant','Fresh Plant','Etc',1000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6113,'Vital_Flower_','Vital Flower','Etc',1000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6114,'Flame_Gemstone','Flame Gemstone','Etc',1000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6115,'Bun_','Bun','Etc',1000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6116,'Succu_Pet_Coupon','Succubus Pet Exchange Coupon','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6117,'Imp_Pet_Coupon','Imp Pet Exchange Coupon','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6118,'Chung_E_Pet_Coupon','Chung E Exchange Coupon','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6119,'Natural_Leather','Cow Leather','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6120,'Face_Paint','Face Paint','Etc',120,20,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6121,'Makeover_Brush','Makeover Brush','Etc',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6122,'Paint_Brush','Paint Brush','Etc',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6123,'Surface_Paint','Surface Paint','Etc',200,30,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6124,'Wolf\'s_Flute','Wolf Flute','Etc',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6125,'Lucky_Box','Spring Time Box','Etc',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6126,'Happy_Box','Summer Happy Box','Etc',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6127,'Purification_Stone','Purification Stone','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (6128,'Guillotine_Antidote','Antidote','Etc',true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6129,'Ticket_Nightmare','Nightmare Terror Exchange Coupon','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6130,'Ticket_Loli_Ruri','Loli Ruri Exchange Coupon','Etc',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6131,'Ticket_Goblin_Leader','Goblin Leader Exchange Coupon','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6132,'Ticket_Incubus','Incubus Exchange Coupon','Etc',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6133,'Ticket_Miyabi_Ningyo','Miyabi Ningyo Exchange Coupon','Etc',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6134,'Ticket_Whisper','Giant Whisper Exchange Coupon','Etc',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6135,'Ticket_Wicked_Nymph','Evil Nymph Exchange Coupon','Etc',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6136,'Ticket_Medusa','Medusa Exchange Coupon','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6137,'Ticket_Stoneshooter','Stone Shooter Exchange Coupon','Etc',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6138,'Ticket_Marionette','Marionette Exchange Coupon','Etc',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6139,'Ticket_Leafcat','Leaf Cat Exchange Coupon','Etc',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6140,'Ticket_Dullahan','Dullahan Exchange Coupon','Etc',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6141,'Ticket_Shinobi','Shinobi Exchange Coupon','Etc',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6142,'Ticket_Golem','Golem Exchange Coupon','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6143,'Ticket_Civil_Servant','Civil Servant Exchange Coupon','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6144,'Heartbroken_Tears','Regrettable Tears','Etc',1000,2,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6145,'Vulcan_Bullet','Vulcan Bullet','Etc',10,2,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6146,'Magic_Gear_Fuel','Magic Gear Fuel','Etc',300,30,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6147,'Liquid_Condensed_Bullet','Liquid Condensed Bullet','Etc',100,3,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6148,'Chocolate_Of_Eternity','Eternity Of Chocolate','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6149,'Plain_Chocolate','Simple Chocolate','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6150,'Key_Of_The_Mansion','Key of The Mansion','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6151,'Peice_Of_Great_Bradium','Giant Bradium Fragment','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6152,'Glittering_Crystal','Glittering Crystal','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6153,'Special_Exchange_Coupon','Special Exchange Ticket','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6154,'Broken_Horn_Pipe','Broken Horn Pipe','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6155,'Coke_Membership_Card','Member Card','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6156,'Approval_Report','Approval Report','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6157,'Poring_Ticket','Poring Exchange Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6158,'Drops_Ticket','Drops Exchange Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6159,'Poporing_Ticket','Poporing Exchange Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6160,'Lunatic_Ticket','Lunatic Exchange Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6161,'Picky_Ticket','Picky Exchange Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6162,'Pecopeco_Ticket','Peco Peco Exchange Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6163,'Savage_Baby_Ticket','Savage Babe Exchange Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6164,'Spore_Ticket','Spore Exchange Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6165,'Poison_Spore_Ticket','Poison Spore Exchange Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6166,'Chonchon_Ticket','Chonchon Exchange Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6167,'Steel_Chonchon_Ticket','Steel Chonchon Exchange Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6168,'Petit_Ticket','Sky Petite Exchange Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6169,'Deviruchi_Ticket','Deviruchi Exchange Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6170,'Isis_Ticket','Isis Exchange Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6171,'Smokie_Ticket','Smokie Exchange Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6172,'Dokebi_Ticket','Dokebi Exchange Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6173,'Desert_Wolf_B_Ticket','Baby Desert Wolf Exchange Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6174,'Yoyo_Ticket','Yoyo Exchange Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6175,'Sohee_Ticket','Sohee Exchange Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6176,'Rocker_Ticket','Rocker Exchange Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6177,'Hunter_Fly_Ticket','Hunter Fly Exchange Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6178,'Orc_Warrior_Ticket','Orc Warrior Exchange Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6179,'Bapho_Jr_Ticket','Bapho Jr. Exchange Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6180,'Munak_Ticket','Munak Exchange Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6181,'Bongun_Ticket','Bongun Exchange Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6182,'Goblin_Ticket','Christmas Goblin Exchange Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6183,'Hardtack_Ticket','Rice Cake Exchange Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6184,'Zherlthsh_Ticket','Zherlthsh Exchange Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6185,'Alice_Ticket','Alice Exchange Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6186,'Monkey_Wrench','Monkey Wrench','Etc',500,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6187,'Blank_Card','Blank Card','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6188,'Slot_Coupon','Slotting Advertisement','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (6189,'Magic_Book_FB','Old Spell Book (Fire Bolt)','Etc',true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (6190,'Magic_Book_CB','Old Spell Book (Cold Bolt)','Etc',true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (6191,'Magic_Book_LB','Old Spell Book (Lightening Bolt)','Etc',true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (6192,'Magic_Book_SG','Old Spell Book (Storm Gust)','Etc',true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (6193,'Magic_Book_LOV','Old Spell Book (Lord Of Vermilion)','Etc',true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (6194,'Magic_Book_MS','Old Spell Book (Meteor Storm)','Etc',true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (6195,'Magic_Book_CM','Old Spell Book (Comet)','Etc',true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (6196,'Magic_Book_TV','Old Spell Book (Tetra Vortex)','Etc',true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (6197,'Magic_Book_TS','Old Spell Book (Thunder Storm)','Etc',true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (6198,'Magic_Book_JT','Old Spell Book (Jupitel Thunder)','Etc',true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (6199,'Magic_Book_WB','Old Spell Book (Water Ball)','Etc',true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (6200,'Magic_Book_HD','Old Spell Book (Heaven\'s Drive)','Etc',true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (6201,'Magic_Book_ES','Old Spell Book (Earth Spike)','Etc',true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (6202,'Magic_Book_ES_','Old Spell Book (Earth Strain)','Etc',true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (6203,'Magic_Book_CL','Old Spell Book (Chain Lightning)','Etc',true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (6204,'Magic_Book_CR','Old Spell Book (Crimson Rock)','Etc',true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (6205,'Magic_Book_DL','Old Spell Book (Drain Life)','Etc',true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6206,'I_Love_You','I Love You','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6207,'Thank_You','Thank You','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6208,'I_Respect_You','I Respect You','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6209,'Glory_Of_Knights','Knight\'s Honor','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6210,'Seed_Of_Horny_Plant','Seed Of Thorny Plant','Etc',600,1,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6211,'Bloodsuck_Plant_Seed','Bloodsuck Plant Seed','Etc',800,1,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6212,'Bomb_Mushroom_Spore','Bomb Mushroom Spore','Etc',1000,1,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6213,'Explosive_Powder','Explosive Powder','Etc',500,1,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6214,'Smoke_Powder','Smoke Powder','Etc',500,1,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6215,'Tear_Gas','Tear Gas','Etc',500,1,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6216,'Oil_Bottle','Oil Bottle','Etc',1000,1,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6217,'Mandragora_Flowerpot','Mandragora Flowerpot','Etc',2000,1,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6218,'Disin_Delivery_Box','Delivery Daishin Box','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6219,'Para_Team_Mark','Eden Group Mark','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6220,'Mysterious_Dyestuff','Mysterious Dyestuff','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6221,'Mystic_Leaf_Cat_Ball','Mystic Leaf Cat Ball','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6222,'Shining_Beads','Shining Beads','Etc',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6223,'Carnium','Carnium','Etc',2000,150,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6224,'Bradium','Bradium','Etc',2000,150,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6225,'HD_Carnium','HD Carnium','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6226,'HD_Bradium','HD Bradium','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6228,'Guarantee_Weapon_9Up','+9 Weapon Refine Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6229,'Guarantee_Weapon_8Up','+8 Weapon Refine Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6230,'Guarantee_Weapon_7Up','+7 Weapon Refine Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6231,'Guarantee_Weapon_6Up','+6 Weapon Refine Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6232,'Guarantee_Armor_9Up','+9 Armor Refine Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6233,'Guarantee_Armor_8Up','+8 Armor Refine Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6234,'Guarantee_Armor_7Up','+7 Armor Refine Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6235,'Guarantee_Armor_6Up','+6 Armor Refine Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6236,'Blue_Card_7','Blue Card 7','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6237,'Guarana_Fruit','Guarana Fruit','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6238,'Guarantee_Weapon_11Up','+11 Weapon Refine Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6239,'Guarantee_Armor_11Up','+11 Armor Refine Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6240,'HD_Oridecon','HD Oridecon','Etc',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6241,'HD_Elunium','HD Elunium','Etc',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`) VALUES (6242,'Midgard_Coin','Midgard Coin','Etc',20,10,100,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6243,'Exchange_Coupon','Exchange Coupon','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6244,'Gun_Powder','Gun Powder','Etc',10,1,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6245,'Black_Powder','Black Powder','Etc',100,1,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6246,'Yellow_Powder','Yellow Powder','Etc',100,1,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6247,'White_Powder','White Powder','Etc',100,1,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6248,'Melange_Pot','Melange Pot','Etc',600,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6249,'Savage_Meat','Savage Meat','Etc',100,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6250,'Cooking_Skewer','Cooking Skewer','Etc',300,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6251,'Black_Charcoal','Black Charcoal','Etc',300,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6252,'Wolf_Blood','Blood Of Wolf','Etc',100,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6253,'Cold_Ice','Cold Ice','Etc',100,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6254,'Beef_Head_Meat','Beef Head','Etc',100,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6255,'Large_Cookpot','Large Cookpot','Etc',500,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6256,'Ice_Fragment','Ice Piece','Etc',100,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6257,'Ice_Crystal','Ice Crystal','Etc',100,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6258,'Comodo_Tropic_Fruit','Comodo Tropical Fruit','Etc',800,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6259,'Drocera_Tentacle','Drosera Tentacle','Etc',100,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6260,'Petti_Tail','Petite\'s Tail','Etc',100,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6261,'Fine_Noodle','Fine Noodles','Etc',500,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6262,'Cool_Gravy','Cool Gravy','Etc',400,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6263,'Coconut_Fruit','Coconut Fruit','Etc',100,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6264,'Melon','Melon','Etc',100,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6265,'Pineapple','Pineapple','Etc',100,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6266,'Cheat_Key','Key Of Deception','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6267,'Virtual_Key','Key Of Illusion','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6268,'Mirth_Key','Key Of Gaiety','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6269,'Master_Brush','A Master\'s Blush','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6270,'Mins_Picture','A Picture Of Minstrel Song','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6271,'Mins_Receipt','Receipt','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6272,'Experiment_Seed','Experiment Seed','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6273,'Altered_Seed','Seed For Experiment','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6274,'Saint_Cloth_Piece','A Piece Of Cloth Of A Saint','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6275,'King_Shield','Shield Of King','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6276,'Clear_Reagent','Clear Reagent','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6277,'Red_Reagent','Red Reagent','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6278,'Black_Reagent','Black Reagent','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6279,'Apple_Bomb_CB','Apple Bomb Guidebook','Etc',1000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6280,'Pinepple_Bomb_CB','Pineapple Bomb Guidebook','Etc',1000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6281,'Coconut_Bomb_CB','Coconut Fruit Bomb Guidebook','Etc',1000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6282,'Melon_Bomb_CB','Melon Bomb Guidebook','Etc',1000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6283,'Banana_Bomb_CB','Banana Bomb Guidebook','Etc',1000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6284,'Plant_Genetic_Grow','How To Grow Plant Genes','Etc',1000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6285,'Quality_Potion_Book','Manual: How To Make High Quality Potion','Etc',1000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6286,'F_Max_Weight_Up_Scroll','F Max Weight Up Scroll','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6287,'F_Clothing_Dye_Coupon','Omni Clothing Dye','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6288,'F_Happy_Box','F Happy Box','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6289,'F_Mysterious_Dyestuff','F Mysterious Dyestuff','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6290,'F_New_Style_Coupon','F New Style Coupon','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6291,'F_Enriched_Elunium','F Enriched Elunium','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6292,'F_Enriched_Oridecon','F Enriched Oridecon','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6293,'F_Token_Of_Siegfried','F Token Of Siegfried','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6294,'F_Marriage_Covenant','F Marriage Covenant','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6295,'F_Clothing_Dye_Coupon2','F Clothing Dye Coupon2','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6296,'RF_Taining_Notice','Training Notice','Etc',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6297,'Bottle_To_Throw','Throwing Bottle','Etc',300,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6298,'Pumpkin_Head_Crushed','Pumpkin Head Crushed','Etc',20,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6299,'Worn_Cloth_Piece','Worn Cloth Piece','Etc',20,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6300,'J_7Draw','event','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6301,'J_Semi_Draw','event','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6302,'GM_Handwriting','GM Handwriting','Etc',20004); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6303,'Changed_Hydra_Ball','Changed Hydra Ball','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6304,'Sapa_Feat_Cert','Proof Of Sapha\'s Honor','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6305,'Frozen_Skin_Piece','Frozen Piece Of Skin','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6306,'Solid_Bloodstain','Hard Bloodstain','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6307,'Suspicious_Magic_Stone','Cursed Magical Stone','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6308,'Unidentified_Relic','Unidentified Relic','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6309,'E_Max_Weight_Up_Scroll','E Max Weight Up Scroll','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6310,'E_Cloth_Dye_Coupon','E Cloth Dye Coupon','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6311,'E_Happy_Box','E Happy Box','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6312,'E_Mysterious_Dyestuff','E Mysterious Dyestuff','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6313,'E_New_Style_Coupon','E New Style Coupon','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6314,'E_Enriched_Elunium','E Enriched Elunium','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6315,'E_Enriched_Oridecon','E Enriched Oridecon','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6316,'E_Token_Of_Siegfried','E Token Of Siegfried','Etc',2,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6317,'E_Marriage_Covenant','E Marriage Covenant','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6318,'E_Cloth_Dye_Coupon2','E Cloth Dye Coupon2','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6319,'Small_Bradium','Small Bradium','Etc',324,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6320,'Premium_Reset_Stone','Premium Reset Stone','Etc',20,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6321,'Rakehorn_Helm','Rakehorn Helm','Etc',822,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6322,'Antler_Helm','Antler Helmet','Etc',800,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6323,'Twinhorn_Helm','Two-Horned Helmet','Etc',728,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6324,'Singlehorn_Helm','Single Horned Helmet','Etc',702,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6325,'White_Spider_Limb','White Spider Limb','Etc',1004,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6326,'Queen_Wing_Piece','Queen Wing Piece','Etc',1630,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6327,'Limited_High_Density_Bradium','(Limited)High Density Bradium','Etc',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6328,'Calender_January','Calender January','Etc',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6329,'Calender_February','Calender February','Etc',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6330,'Calender_March','Calender March','Etc',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6331,'Calender_April','Calender April','Etc',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6332,'Calender_May','Calender May','Etc',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6333,'Calender_June','Calender June','Etc',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6334,'Calender_July','Calender July','Etc',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6335,'Calender_August','Calender August','Etc',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6336,'Calender_September','Calender September','Etc',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6337,'Calender_October','Calender October','Etc',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6338,'Calender_November','Calender November','Etc',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6339,'Calender_December','Calender December','Etc',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6340,'Fade_Notation_Green','Fade Notation Green','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6341,'Fade_Notation_Red','Fade Notation Red','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6342,'Fade_Notation_Purple','Fade Notation Purple','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6343,'Fade_Notation_Blue','Fade Notation Blue','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6344,'Muscle_Story','Muscle Story','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6345,'Love_Ball','Love Lump','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6346,'Seagate_Mark','Seagate Mark','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6347,'Bless_Word_Paper1','Bless Word Paper','Etc',4020,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6348,'Bless_Word_Paper2','Bless Word Paper','Etc',4020,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6349,'Bless_Word_Paper3','Bless Word Paper','Etc',4020,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6350,'Bless_Word_Paper4','Bless Word Paper','Etc',4020,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6351,'Bless_Word_Paper5','Bless Word Paper','Etc',4020,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6352,'Bless_Word_Paper6','Bless Word Paper','Etc',4020,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6353,'Bless_Word_Paper7','Bless Word Paper','Etc',4020,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6354,'Bless_Word_Paper8','Bless Word Paper','Etc',4020,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6355,'Bless_Word_Paper9','Bless Word Paper','Etc',4020,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6356,'Bless_Word_Paper10','Bless Word Paper','Etc',4020,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6357,'Fortune_Cookie_Fail','Fortune Cookie Fail','Etc',4020,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6358,'Free_Cash_Coupon','Free Cash Coupon','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6359,'Guidebook_Exchange','Guidebook Exchange','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6360,'Scarlet_Pts','Scarlet Point','Etc',100,5,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6361,'Indigo_Pts','Indigo Point','Etc',100,5,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6362,'Yellow_Wish_Pts','Yellow Wish Point','Etc',100,5,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6363,'Lime_Green_Pts','Lime Green Point','Etc',100,5,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6364,'Woe_Coin','GvG Coin','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6365,'Arena_Coin','Arena Coin','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6366,'Turbo_Track_Coin','Turbo Track Coin','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6367,'Kafra_Coin','Kafra Coin','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6368,'Endless_Coin','Endless Tower Coin','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6369,'Amatsu_Bead_A','Amatsu Bead A','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6370,'Amatsu_Bead_Ma','Amatsu Bead Ma','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6371,'Amatsu_Bead_Tsu','Amatsu Bead Tsu','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6372,'Amatsu_Bead_Jam','Amatsu Bead Jam','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6373,'Amatsu_Bead_Bo','Amatsu Bead Bo','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6374,'Amatsu_Bead_Ree','Amatsu Bead Ree','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6375,'Amatsu_Bead_!','Amatsu Bead !','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6376,'KVM_Badge','KVM Badge','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6377,'Buy_Market_Permit','Buy Market Permit','Etc',20,10,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6378,'Winning_Mark','Winning Mark','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6379,'Card_Coin','Card Coin','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6380,'Mora_Coin','Mora Coin','Etc',20,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6381,'Field_Shovel','Field Shovel','Etc',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6382,'Urn','Urn','Etc',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6383,'Clue_Of_Lope','Lope\'s Clue','Etc',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6384,'Ring_Of_Lope','Lope\'s Ring','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6385,'Research_Tool_Bag','Research Tool Bag','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6386,'Bathtub_R_Sample','Bath Water Sample','Etc',20,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6387,'Teeth_Sample','Teeth Sample','Etc',20,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6388,'Scale_Sample','Scale Sample','Etc',20,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6389,'Puddle_R_Sample','Sample Of Puddle Research','Etc',20,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6390,'Small_Pocket','Small Pocket','Etc',20,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6391,'Splendid_Supply_Kit','Splendid Supply Kit','Etc',20,2000,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6392,'Bradium_Box','Bradium Box','Etc',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6393,'Round_Feather','Round Feather','Etc',525,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6394,'Golden_Feather','Golden Feather','Etc',487,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6395,'Angel_Magic_Power','Angel Magic Powder','Etc',615,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6396,'Auger_Of_Spirit','Auger Of Spirit','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6397,'PR_Team_Ticket','PR Team Ticket','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6398,'Develop_Team_Ticket','Develop Team Ticket','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6399,'Marketing_Team_Ticket','Marketing Team Ticket','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6400,'Operating_Team_Ticket','Operating Team Ticket','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6401,'Palm_O','Palm Oil','Etc',500,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6402,'Oil_Palm_F','Palm Oil Fruit','Etc',50,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6403,'Comodo_L','Comodo Leather','Etc',5,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (6404,'Caress_H','Keris Hilt','Etc',100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6405,'Cendrawasih_F','Cendrawasih Feather','Etc',3,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6406,'Cendrawasih_SF','Shining Cendrawasih Feather','Etc',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6407,'Sang_Stone_Fragment','Raw Crystal Stone Fragment','Etc',10,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6408,'Sang_Stone','Raw Crystal Stone','Etc',10,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6409,'Sang_Stone_Mass','Raw Crystal Stone Mass','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6410,'Idul_Fitri_Card','Idul Fitri Card','Etc',10,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6411,'Ripe_Watermelon','Ripe Watermelon','Etc',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6412,'Special_Medal','Special Medal','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6413,'New_Insurance','New Insurance','Etc',2,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6414,'Raganta_Card','Ragunta Card','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6415,'Strange_Embryo','Strange Embryo','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6416,'Pet_Exchange','Pet Exchange','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6417,'Silvervine','Silvervine Fruit','Etc',20,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6418,'Agrade_Coin','A Grade Coin','Etc',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6419,'Bgrade_Coin','B Grade Coin','Etc',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6420,'Cgrade_Coin','C Grade Coin','Etc',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6421,'Dgrade_Coin','D Grade Coin','Etc',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6422,'Egrade_Coin','E Grade Coin','Etc',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_buyingstore`) VALUES (6423,'Anger_Seagod','Sea God\'s Wrath','Etc',20,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6424,'Halloween_Fragment','Spirit Piece','Etc',20,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6425,'Halloween_Certificate','Halloween Certificate','Etc',20,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6426,'Bad_Can','Bad Canned Food','Etc',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6427,'Bad_Can_Sack','Bad Canned Food Sack','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6428,'Bravery_Card_A','Adventure Card A','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6429,'Bravery_Card_B','Adventure Card B','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6430,'Picture_Piece','Picture Fragment','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6431,'Bucket','Pail','Etc',100,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6432,'Full_Bucket','Full Pail','Etc',3000,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6433,'Clean_Brush','Cleaning Brush','Etc',300,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6434,'Fix_Kit','Fix Kit','Etc',1000,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6435,'Fresh_Fruit','Fresh Fruit','Etc',100,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6436,'Ptotection_Seagod','Sea God\'s Call','Etc',20,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6437,'Scaraba_Perfume','Scaraba Perfume','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6438,'Unbreakable_Weap','Unbreakable Weapon','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6439,'Unbreakable_Def','Unbreakable Armor','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6440,'General_Lubricant','General Lubrication','Etc',20,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6441,'High_RankLubricant','Advanced Lubrication','Etc',20,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6442,'Octopus_Hunt_Stick','Octopus Hunting Skewer','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6443,'Sillit_Pong_Bottle','Sillit Pong Bottle','Etc',20,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6444,'Emperium_G','Emperium G','Etc',2,1000,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6445,'Blue_Card_X','Blue Card X','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6446,'Green_Paper','Green Paper','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6447,'Red_Paper','Red Paper','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6448,'White_Paper','White Paper','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6449,'Casual_Diary','Casual Diary','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6450,'Honest_Diary','Honest Diary','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6451,'Unknown_Fish','Unknown Fish','Etc',20,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6452,'Etoile_Ring','Etoile Ring','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6453,'Undelivered_Gift','Undelivered Gift','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6454,'Santa_Bag','Santa Bag','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6455,'Tiny_Ticket','Tiny Ticket','Etc',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6456,'Guarantee_Weapon_5Up','+5 Weapon Refine Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6457,'Guarantee_Armor_5Up','+5 Armor Refine Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6459,'Jae_Sinho_Unpo','Jae Sinho Unpo','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6460,'Jae_Sinho_Undo','Jae Sinho Undo','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6461,'Mimong_Sungjin','Mimong Sungjin','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6462,'Gilsang_Yeoui','Gilsang Yeoui','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6463,'Sin_Sun_Jeonsul','Sin Sun Jeonsul','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6464,'Hate_Bundle','Hate Crate','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6465,'Guard_Coin','Guard Coin','Etc',10,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6466,'Clean_Water','Clean Water','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6467,'Perfume','Perfume','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6468,'Thai_Perfume','Thai Perfume','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6469,'Will_Of_Warrior','Warrior\'s Will','Etc',1000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6470,'Blood_Thirst','Blood Thirst','Etc',1200,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6471,'Goast_Chill','Chills Of Death','Etc',1600,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6472,'Holy_Mom_Blaze','Holy Mom Blaze','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6473,'Amatsu_Orb01','Amatsu Orb01','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6474,'Amatsu_Orb02','Amatsu Orb02','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6475,'Amatsu_Orb03','Amatsu Orb03','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6476,'Amatsu_Orb04','Amatsu Orb04','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6477,'Amatsu_Orb05','Amatsu Orb05','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6478,'Amatsu_Orb06','Amatsu Orb06','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6479,'Amatsu_Orb07','Amatsu Orb07','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6480,'Event_coin','Poring Coin','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6481,'Holy_Rock_Piece','Holy Rock Piece','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6482,'Ancient_City_Key','Ancient City Key','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6483,'Dream_Scroll','Dream Scroll','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6484,'Enchant_Book','Enchant Book','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6485,'BlueCard_2','Blue 2 Card','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6486,'BlueCard_0','Blue 0 Card','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6487,'BlueCard_1','Blue 1 Card','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6488,'Thanks_Invest_Ticket','Thanks Invest Ticket','Etc',10,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6489,'Cats_Invest_Certif','Cats Invest Certificate','Etc',10,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6490,'Magic_Clay_Fragment','Magic Clay Fragment','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6491,'Magic_Clay','Magic Clay','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6492,'Magic_Clay_Lump','Magic Clay Lump','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6493,'Makibishi','Makibishi','Etc',30,1,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6494,'Kafra_Coin2','Kafra Coin','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6495,'Para_Logro_Badge','Eden Merit Badge','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6496,'Tikbalang_Thick_Spine','Tikbalang\'s Thick Spine','Etc',300,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6497,'Lesser_Agimat','Lesser Agimat','Etc',20,50,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6498,'Jejellopy','Jejellopy','Etc',200,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6499,'Ancient_Grudge','Ancient Grudge','Etc',500,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6500,'Sharp_Bamboo','Sharpened Bamboo','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6501,'Salt_Bag','Salt Bag','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6502,'Silver_Cross','The Cross','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6503,'Soul_Protection','Spiritual Protection','Etc',100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6504,'Cast_Iron_Caldron','Cast-Iron Caldron','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6505,'Purified_Bone','Purified Spirit Bone','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6506,'Memorial_Bouquet','Offering Bouquet','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6507,'Evil_Bone','Evil Spirit Bone','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6508,'Silver_Bracelet','Silver Bracelet','Etc',300,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6509,'Mysterious_Flower','Mysterious Flower','Etc',500,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6510,'Elegant_Flower','Elegant Flower','Etc',300,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6511,'Beautiful_Flower','Beautiful Flower','Etc',300,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6512,'Charm_Fire','Fire Amulet','Etc',100,1,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6513,'Charm_Ice','Ice Amulet','Etc',100,1,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6514,'Charm_Wind','Wind Amulet','Etc',100,1,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6515,'Charm_Earth','Earth Amulet','Etc',100,1,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6516,'Bakonawa_Doll','Bakonawa Doll','Etc',3000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6517,'Bangungot_Doll','Bangungot Doll','Etc',3000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6518,'Buwaya_Doll','Buwaya Doll','Etc',3000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6519,'Collected_Samples','Collected Sample','Etc',100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6520,'Lost_Belongings','Lost Belongings','Etc',100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (6521,'Royal_Certificate','Royal Certificate','Etc',true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (6522,'Royal_Certificate_','Royal Certificate','Etc',true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6523,'Bakonawa_Spirit_Piece','Piece of Bakonawa\'s Spirit','Etc',3000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6524,'Bangungot_Spirit_Piece','Piece of Bangungot\'s Spirit','Etc',3000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6525,'Buwaya_Spirit_Piece','Piece of Buwaya\'s Spirit','Etc',3000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6526,'BlueCard_Happy','BlueCard Happy','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6527,'BlueCard_Enjoy','BlueCard Enjoy','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6528,'BlueCard_Light','BlueCard Light','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6529,'BlueCard_Mid','BlueCard Mid','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6530,'BlueCard_Fall','BlueCard Fall','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (6531,'Royal_Certificate__','Royal Certificate','Etc',true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6532,'Honey_Songpyun','Honey Songpyun','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6533,'Torn_Document','Torn Document','Etc',2,500); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6534,'Fruit_Sundae','Fruit Sundae','Etc',2,50); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6535,'Red_Cloth','Red Cloth','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6536,'Star_Decor','Star Decor','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6537,'Sky_Medal','Sky Medal','Etc',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6538,'Real_Blank_Card','Real Blank Card','Etc',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6539,'Old_Left_Lapine','Old Left Lapine','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6540,'Golden_Leaf','Golden Leaf','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6541,'Avant_Research_Data','Avant Research Data','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6542,'Star_Shape_Mushroom','Star Shape Mushroom','Etc',20,100,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6543,'Lv110_Achieved_Coin','Lv110 Achieved Coin','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6544,'Lv120_Achieved_Coin','Lv120 Achieved Coin','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6545,'Firm_Hair','Firm Hair','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6546,'Younger_Bro_Letter','Younger Bro Letter','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6547,'Stained_Research_Book','Stained Research Book','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6548,'Piece_Of_Lapine_Wing','Piece Of Lapine Wing','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6549,'Courtesy_Ticket','Courtesy Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6550,'Brownie_Ticket','Brownie Ticket','Etc',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6551,'RWC_Spirit_Auger','RWC Spirit Auger','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6552,'Mail_Package','Mail Package','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6553,'Leaf_Made_Wood','Leaf Made Wood','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6554,'Seed_Box','Seed Box','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6555,'Birthday_Candle','Birthday Candle','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6556,'Nespresso_Ticket','Nespresso Ticket','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6557,'Fancy_Fairy_Wing','Fancy Fairy Wing','Etc',2350,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6558,'Pile_Of_Acorn','Pile Of Acorn','Etc',1500,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6559,'Eye_Drops','Eye Drops','Etc',1780,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6560,'Leaf_Bookmark','Leaf Bookmark','Etc',3000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6561,'Dustball','Dustball','Etc',2000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6562,'Tiny_Mouse_Tail','Tiny Mouse Tail','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6563,'Weeds','Weeds','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6564,'Captive_Hatchling','Captive Hatchling','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6565,'Racy_Spice','Racy Spice','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6566,'Cacao99_Recipe','Cacao99 Recipe','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6567,'Choco_Drink_Recipe','Choco Drink Recipe','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6581,'Holy_Amulet','Holy Amulet','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6583,'3rd_Test_Pass','3rd Test Pass','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (6592,'Small_Wooden_Chest','Small Wooden Chest','Etc',10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6593,'Cryptura_Hair_Coupon','Cryptura Hair Coupon','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (6594,'Magic_Bronze_Bullion','Magic Bronze Bullion','Etc',1000,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (6595,'Hammer_Of_Velund','Hammer Of Velund','Etc',500,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (6596,'Anvil_Of_Velund','Anvil Of Velund','Etc',2000,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (6597,'Bracelet_Of_Velund','Bracelet Of Velund','Etc',500,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (6598,'Rib_Of_Jormungand','Rib Of Jormungand','Etc',10000,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (6599,'Spirit_Of_Hugin','Spirit Of Hugin','Etc',100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (6600,'Spirit_Of_Munin','Spirit Of Munin','Etc',100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (6601,'Chisel_Of_Giant','Chisel Of Giant','Etc',1000,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (6602,'Secret_Of_Rune','Secret Of Rune','Etc',100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (6603,'Skin_Of_Hraesvelg','Skin Of Hraesvelg','Etc',500,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (6604,'Essence_Rune_Magic','Essence Rune Magic','Etc',true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (6605,'Muspellium','Muspellium','Etc',true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6606,'P_Cart_C','Cute Cart Remodel Coupon','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6607,'Temporal_Crystal','Temporal Crystal','Etc',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6608,'Coagulated_Spell','Coagulated Spell','Etc',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6609,'Glast_Decayed_Nail','Glast Decayed Nail','Etc',2800,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6610,'Glast_Horrendous_Mouth','Glast Horrendous Mouth','Etc',3200,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6611,'Colorful_Key','Colorful Key','Etc',50000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6612,'Gold_Coin_Basket','Gold Coin Basket','Etc',300000,200,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6613,'Colorful_Brooch','Colorful Brooch','Etc',100000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (6615,'Siege_Guild_Coin','Siege Guild Coin','Etc',10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6616,'Lmtd_Manny_Card','Limited Manny Card','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6617,'Lmtd_Sid_Card','Limited Sid Card','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6618,'Lmtd_Diego_Card','Limited Diego Card','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6619,'Lmtd_Scrat_Card','Limited Scrat Card','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6623,'Rough_Energy_Crystal','Rough Energy Crystal','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6624,'Purified_Energy_Crystal','Purified Energy Crystal','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6625,'High_Purity_Energy_Xtal','High Energy Crystal','Etc',10,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_buyingstore`,`trade_override`,`trade_nodrop`) VALUES (6635,'Blacksmith_Blessing','Blacksmith Blessing','Etc',20,true,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6636,'STRStone_Top','STR Stone (Upper)','Etc',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6637,'INTStone_Top','INT Stone (Upper)','Etc',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6638,'AGIStone_Top','AGI Stone (Upper)','Etc',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6639,'DEXStone_Top','DEX Stone (Upper)','Etc',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6640,'VITStone_Top','VIT Stone (Upper)','Etc',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6641,'LUKStone_Top','LUK Stone (Upper)','Etc',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6642,'ATKStone_Middle','ATK Stone (Middle)','Etc',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6643,'MATKStone_Middle','MATK Stone (Middle)','Etc',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6644,'HITStone_Bottom','HIT Stone (Lower)','Etc',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6645,'FLEEStone_Bottom','FLEE Stone (Lower)','Etc',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6669,'Jade_Leaf','Emerald Leaf','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6697,'Costumes_Exchange_Coupons','Costumes Exchange Coupons','Etc',10,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6646,'Poring_Badge','Poring Badge','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6648,'Shabby_Crown','Old Crown','Etc',10,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6649,'Broken_Horn','Broken Horn','Etc',10,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6650,'Shabby_Ring','Old Ring','Etc',10,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6651,'Rusty_Bracelet','Rusty Bracalet','Etc',10,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6652,'Old_Photo_Album','Old Photo Album','Etc',10,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6653,'Shabby_Pill','Old Pill','Etc',10,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6654,'Needle_And_Thread','Needle And Thread','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6655,'Firm_Pumpkin','Firm Pumpkin','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6656,'Goast_Free_Charm','Goast Free Charm','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6657,'Memory_Of_Jack','Memory Of Jack','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6658,'Halloween_Coin','Halloween Coin','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`) VALUES (6665,'RWC_Inicializer','RWC Inicializer','Etc',10,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_buyingstore`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6671,'Geffen_Coin_Magic_Tournament','Geffen Coin Magic Tournament','Etc',10,true,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_buyingstore`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6672,'Shard_of_Gray','Shard of Gray','Etc',10,true,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6673,'Bossnia_Tickets','Bossnia Tickets','Etc',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6674,'GM_Coin','GM Coin','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6681,'XMAS_Cookie','Christmas Cookie','Etc',20,10,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6682,'Bag_Of_Selling_Goods','Bag Of Selling Goods','Etc',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6683,'Dried_Flower','Dried Flower','Etc',10,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6684,'TokenOfHero','Token Of Hero','Etc',10,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6685,'Morocc_Certification','Morocc Certification','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6686,'Brick','Brick','Etc',10,2000,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6687,'Rope__','Rope','Etc',10,2000,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6688,'Wood_','Wood','Etc',10,2000,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6689,'BurningSkin','Burning Bug Skin','Etc',10,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6690,'YummyStem','Yummy Stem','Etc',10,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_buyingstore`) VALUES (6691,'BurningFeather','Burning Feather','Etc',10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6692,'PatrolLog','Patrol Log','Etc',10,1,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6693,'Stone_Of_Blessing','Stone Of Blessing','Etc',10,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6694,'Monster_Blood','Monster Blood','Etc',10,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6695,'ToothOfFlameGolem','Golem\'s Fiery Stone Tooth','Etc',10,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6696,'ToothOfFlameFrilldora','Frilldora\'s Fiery Nape','Etc',10,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6698,'Wooden_Axe','Wooden Axe','Etc',10,1000,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_buyingstore`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6699,'Faith_Silence','Faith Silence','Etc',10,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_buyingstore`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6700,'White_Snake_Scale','White Snake Scale','Etc',10,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_buyingstore`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6701,'Treasure_Dwarf','Treasure Dwarf','Etc',10,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_buyingstore`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6702,'Sweat_Dwarf','Sweat Dwarf','Etc',10,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_buyingstore`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6703,'Warrior_Tears','Warrior Tears','Etc',10,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_buyingstore`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6704,'Warrior_Anger','Warrior Anger','Etc',10,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_buyingstore`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6705,'Warrior_Certificate','Warrior Certificate','Etc',10,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_buyingstore`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6706,'Guardian_Flowers','Guardian Flowers','Etc',10,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6707,'Jeremy_Beauty_Coupon','Jeremy Beauty Coupon','Etc',10,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6708,'Mana_crystal','Mana Crystal','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6709,'Crisp_Silk','Crisp Silk','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6710,'Tied_Snake','Tied Snake','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6712,'Lovely_Stick','Lovely Stick','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6713,'Heart_of_Soul','Heart of Soul','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6714,'Sheenas_Soul','Sheena\'s Soul','Etc',20,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6715,'P_Of_Evil_Soul','Darklord Soulpiece','Etc',20,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6716,'Cri_Stone','CRI Stone (Upper)','Card',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6717,'MaxHP_Stone','Stamina Stone (Middle)','Card',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6718,'MaxSP_Stone','Magic Stone (Lower)','Card',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6719,'Jitterbug\'s_Tooth','Jitterbug\'s Tooth','Etc',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6722,'Delicious_Clam_Flesh','Delicious Clam Flesh','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6723,'Delicious_Canned_Food','Delicious Canned Food','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6724,'Savage_Box','Savage Box','Etc',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6725,'Grand_Peco_Box','Grand Peco Box','Etc',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6726,'Desert_Wolf_Box','Desert Wolf Box','Etc',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6727,'Arranged_Photo_Album','Arranged Photo Album','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6732,'Monster_Coin','Monster Coin','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6733,'Tingly_Feather','Tingly Feather','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6734,'Unknown_Meal','Unknown Meal','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6735,'Special_Condiment','Special Condiment','Etc',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6736,'Minced_Meat','Minced Meat','Etc',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6737,'Fermented_Wheat_Flour','Fermented Wheat Flour','Etc',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6738,'Rissole','Rissole','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (6739,'Recipe','Recipe','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6740,'HealStone_Top','Recovery Stone (Upper)','Card',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6741,'HealStone2_Top','Recovery Skill Stone (Upper)','Card',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6742,'HealStone_Middle','Recovery Stone (Middle)','Card',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6743,'HPStone_Middle','HP Stone (Middle)','Card',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6744,'SPStone_Middle','SP Stone (Middle)','Card',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6745,'HealStone_Bottom','Recovery Stone (Low)','Card',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6746,'Iron_Artifacts','Steel Artifact','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6747,'Iron_Artifacts_','Steel Artifact','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6748,'Excavator_Repoet','Daily Report He And His Team','Etc',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6749,'Power_Control_Device','Operation Control Device','Etc',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6750,'Failed_Engine','Failed Engine','Etc',10,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6751,'Crushed_Can_Iron_Plate','Crushed Can Iron Plate','Etc',10,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6752,'Charleston_Parts','Charleston Parts','Etc',10,10,true,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6753,'Sign_Of_Destruction','Token Of Destruction','Etc',10,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6754,'Collected_Herb','Collected Medicinal Herbs','Etc',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6755,'Contaminated_Magic','Contaminated Magic','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6756,'Condensed_Energy','Cohesive Energy','Etc',20,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6757,'Memory_Record','The Memory Recorder','Etc',20,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6762,'Banana_Can','Banana Can','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6763,'Spicy_Rice_Cake','Spicy Rice Cake','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6764,'Hotdog','Hot Dog','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6765,'Big_Wheel_Cracker','Ferris Wheel Biscuit','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6766,'Ice_World_Ticket','Tickets Ice Kingdom','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6767,'Summer_Fes_Coin','Summer Festival Coins','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6768,'Red_Beans_Of_Ice','Shaved Ice For Red Beans','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6769,'Sweet_Rice_Cake','Sweet Bread','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6770,'Shark','Shark','Etc',1,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6771,'Bluefin_Tuna','Bonito','Etc',1,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6772,'Octopus','Octopus','Etc',1,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6773,'Snapper','Sea Bream','Etc',1,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6774,'Piranha','Piranha','Etc',1,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6775,'Salmon','Salmon','Etc',1,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6776,'Eels','Eel','Etc',1,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6777,'Carp','Carp','Etc',1,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6778,'Squid_2','Squid','Etc',1,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6779,'Mackerel','Mackerel','Etc',1,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6780,'Crucian_Carp','Crucian Carp','Etc',1,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6781,'Living_Earthworm','Earthworms Alive','Etc',1,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6782,'Fresh_Lobster','Fresh Shrimp','Etc',1,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6784,'Squid_Skewer','Squid Skewer','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6785,'Fantastic_Sauce','Source Of Fantasy','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6786,'Squid_Of_Bbq','Squid Barbecue','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6787,'Good_Firewood','Long Firewood','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6788,'Rose_Knife','Rose Knife','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6789,'Custom_Pan','Customized Plates','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6790,'BigStone_Top','Large Stone (Upper)','Card',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6791,'MediumStone_Top','Medium Stone (Upper)','Card',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6792,'SmallStone_Top','Small Stone (Upper)','Card',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6795,'Ticket_Special_RO2','Ticket Special RO2','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6796,'RO2_Name_Card','RO2 Name Card','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (6797,'11th_Coin','11th Anniversary Coin','Etc',true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6803,'Fragments_Of_Gigan','Fragments Of Gigan','Etc',10,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6804,'ORGANIC_PUMPKIN','Organic Pumpkin','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6805,'INORGANIC_PUMPKIN','Inorganic Pumpkin','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`) VALUES (6813,'Kafra_Ticket','Kafra Ticket','Etc',10,10,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6814,'Swordman_Soul','Swordman Soul','Etc',10,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6815,'Merchant_Soul','Merchant Soul','Etc',10,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6816,'Thief_Soul','Thief Soul','Etc',10,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6817,'Mage_Soul','Mage Soul','Etc',10,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6818,'Archer_Soul','Archer Soul','Etc',10,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6819,'Acolyte_Soul','Acolyte Soul','Etc',10,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6820,'Particles_Of_Energy','Energy Fragment','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6821,'Solo_Troops_Badge','Single Union Badge','Etc',100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6824,'Lab_Memory_Record','Experimental Dong Memory Record','Etc',10,10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6825,'Air_Cleaner_Box','Air Cleaner Box','Etc',10,10000,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6826,'Fresh_Grapes','Fresh Grapes','Etc',10,100,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6827,'Normal_Parts','Complete Machine Parts','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6828,'Gravity_Parts','Gravity Safety Device','Etc',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6832,'Questioned_Parts','Questioned Parts','Etc',10,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6833,'Limited_Token_of_Ziegfried','(Limited) Token of Ziegfried','Etc',10,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6834,'Legendary_Fur','Legendary Fur','Etc',10,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6835,'Legendary_Mane','Legendary Mane','Etc',10,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6836,'Talisman_Of_Soul','Talisman Of Soul','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6837,'Piece_Of_Soul_Mouse','Piece Of Soul Mouse','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6838,'Secret_Orders_Of_Prophet_K','Secret Orders Of Prophet K','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6839,'Gold_Choco_Coin','Gold Choco Coin','Etc',10,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6840,'Silver_Choco_Coin','Silver Choco Coin','Etc',10,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6841,'Bronze_Choco_Coin','Bronze Choco Coin','Etc',10,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6842,'Huge_Jewery','Huge Jewery','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6843,'Thin_Ring','Thin Ring','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6844,'Mild_Stone','Mild Stone','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6845,'That_Thing','That Thing','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6846,'Limited_Gym_Membership_Card','(Limited)Gym Membership Card','Card',10,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6847,'Very_Small_Box','Very Small Box','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6848,'Light_Box','Light Box','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6849,'Request_Complete_Certificate','Request Complete Certificate','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6850,'Questionable_Box','Questionable Box','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6851,'Questionable_Document','Questionable Document','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6852,'Super_Corrector','Super Corrector','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6853,'Thanks_Bouquet','Thanks Bouquet','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6854,'Novus_Captured','Novus Captured','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6855,'Tatacho_Captured','Tatacho Captured','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6856,'Manuscript_Written_By_Pigoreum','Manuscript Written By Pigoreum','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6857,'Very_Hard_Stone','Very Hard Stone','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6858,'Lude_Captured','Lude Captured','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6859,'Wanderer_Captured','Wanderer Captured','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6860,'Piece_Of_Soul_Cow','Piece Of Soul Cow','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6862,'Piece_Of_Soul_Tiger','Piece Of Soul Tiger','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6863,'Strong_Piece_Of_Soul_Tiger','Strong Piece Of Soul Tiger','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6864,'Safe_to_19_Weapon_Certificate','Safe to 19 Weapon Certificate','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6865,'Safe_to_19_Armor_Certificate','Safe to 19 Armor Certificate','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6866,'Piece_Of_Soul_Rabbit','Piece Of Soul Rabbit','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6867,'Large_Insect_Barrel','Large Insect Barrel','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6868,'Medium_Insect_Barrel','Medium Insect Barrel','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6869,'Dust','Dust','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6870,'Safe_to_13_Weapon_Certificate','Safe to 13 Weapon Certificate','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6871,'Safe_to_14_Weapon_Certificate','Safe to 14 Weapon Certificate','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6872,'Safe_to_15_Weapon_Certificate','Safe to 15 Weapon Certificate','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6873,'Safe_to_16_Weapon_Certificate','Safe to 16 Weapon Certificate','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6874,'Safe_to_17_Weapon_Certificate','Safe to 17 Weapon Certificate','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6875,'Safe_to_18_Weapon_Certificate','Safe to 18 Weapon Certificate','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6876,'Safe_to_13_Armor_Certificate','Safe to 13 Armor Certificate','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6877,'Safe_to_14_Armor_Certificate','Safe to 14 Armor Certificate','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6878,'Safe_to_15_Armor_Certificate','Safe to 15 Armor Certificate','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6879,'Safe_to_16_Armor_Certificate','Safe to 16 Armor Certificate','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6880,'Safe_to_17_Armor_Certificate','Safe to 17 Armor Certificate','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6881,'Safe_to_18_Armor_Certificate','Safe to 18 Armor Certificate','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6882,'Advanced_Bait','Advanced Bait','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6883,'Pet_Snow_Bunny_Exchange_Ticket','Pet Snow Bunny Exchange Ticket','Etc',10,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6884,'Pet_Tikbalang_Exchange_Ticket','Pet Tikbalang Exchange Ticket','Etc',10,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6885,'Piece_Of_Soul_Dragon','Piece Of Soul Dragon','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6886,'Strong_Piece_Of_Soul_Dragon','Strong Piece Of Soul Dragon','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6892,'Invasion_Plan','Invasion Plan','Etc',10,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6893,'Human\'s_Cookbook','Human\'s Cookbook','Etc',10,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6894,'Champion_Badge','Champion Badge','Etc',10,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6895,'Processed_Ancient_Rune','Processed Ancient Rune','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6896,'Processed_Mystic_Rune','Processed Mystic Rune','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_buyingstore`) VALUES (6897,'Blue_Whale','Blue Whale','Etc',10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_buyingstore`) VALUES (6898,'Whale','Whale','Etc',10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_buyingstore`) VALUES (6899,'Giant_Octopus','Giant Octopus','Etc',10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_buyingstore`) VALUES (6900,'Giant_Squid','Giant Squid','Etc',10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_buyingstore`) VALUES (6901,'Sturgeon','Sturgeon','Etc',10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_buyingstore`) VALUES (6902,'King_Lobster','King Lobster','Etc',10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_buyingstore`) VALUES (6903,'King_Earthworm','King Earthworm','Etc',10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6904,'Piece_Of_Soul_Snake','Piece Of Soul Snake','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_buyingstore`) VALUES (6905,'Broken_Magic_Stone','Broken Magic Stone','Etc',10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6906,'Limited_High_Density_Kalunium','(Limited)High Density Kalunium','Etc',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6907,'Piece_Of_Soul_Horse','Piece Of Soul Horse','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (6908,'ASPDStone_Robe','Stone ASPD (Garment)','Card',20,100,'bonus bAspd,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6909,'Actinidia_Cat_Fruit','Actinidia Cat Fruit','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6910,'Limited_Purified_Oridecon','(Limited) Purified Oridecon','Etc',10,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6911,'Limited_Purified_Eluminium','(Limited) Purified Eluminium','Etc',10,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6912,'Piece_Of_Soul_Sheep','Piece Of Soul Sheep','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6913,'Holy_Rosary','Holy Rosary','Etc',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6914,'Black_Horn','Black Horn','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6915,'Captured_Soul','Captured Soul','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6916,'Piece_Of_Soul_Monkey','Piece Of Soul Monkey','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6917,'Piece_Of_Soul_Chicken','Piece Of Soul Chicken','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6919,'TokenOfHonor','Honor Token','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6920,'Rune_Magic_Powder','Rune Magic Powder','Etc',10,10,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6921,'Dehumidifiers','Dehumidifiers','Etc',10,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6922,'Sandpaper','Sandpaper','Etc',10,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6923,'Bright_Fire_Lights','Bright Fire Lights','Etc',10,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6924,'Red_Eye','Red Eye','Etc',10,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6925,'Letter_Of_Prisoner','Letter Of Prisoner','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6926,'Midgards_Histories','Rune-Midgarts History Book','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6927,'Stone_That_Contained_Sea','Stone That Contained Sea','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6928,'Poring_Scourer','Poring Scourer','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6929,'Letter_With_Stamped_Seal','Letter With Stamped Seal','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6930,'Samples_New_Business_Items','Samples New Business Items','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6931,'Secret_Documents','Secret Documents','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6932,'Rare_Book','Rare Book','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6933,'Banquet_Invitation_Letter','Banquet Invitation Letter','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6934,'Magnificent_Dish','Magnificent Dish','Etc',10,1000,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6935,'Advanced_Dish','Advanced Dish','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6936,'Cold_Core','Cold Core','Etc',10,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6937,'Silicone_Shell','Silicone Shell','Etc',10,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6938,'Hedgehog_Picks','Hedgehog Picks','Etc',10,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6939,'Old_Belt','Worn-Out Belt','Etc',10,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6940,'Moving_Dark_Matter','Moving Black Material','Etc',10,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6941,'Fragments_Valkyrie_Power','Fragments Valkyrie Power','Etc',10,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6942,'Will_Master','Will Master','Etc',10,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6943,'ATKStone_Top','ATK Stone (Upper)','Card',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6944,'MATKStone_Top','MATK Stone (Upper)','Card',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6945,'STRStone_Middle','STR Stone (Middle)','Card',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6946,'INTStone_Middle','INT Stone (Middle)','Card',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6947,'AGIStone_Middle','AGI Stone (Middle)','Card',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6948,'DEXStone_Middle','DEX Stone (Middle)','Card',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6949,'VITStone_Middle','VIT Stone (Middle)','Card',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6950,'LUKStone_Middle','LUK Stone (Middle)','Card',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6951,'HPStone_Bottom','HP Stone (Lower)','Card',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (6953,'Ramor_Refine_Ticket','Ramor Refine Ticket','Etc',10,100,true,true,true,true,true,true,true,'/*Refine succeed guarantee until +9 for item 2598 only*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6954,'Piece_Of_Soul_Dog','Piece Of Soul Dog','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6955,'Piece_Of_Soul_Pig','Piece Of Soul Pig','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6956,'Captured_Sheep','Captured Sheep','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6957,'Lamb_Fleece','Lamb Fleece','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (6958,'Lamb_Horns','Lamb Horns','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6960,'Air_Stronghold_Key','Sky Fortress Key','Etc',10,10,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6961,'LargeScrap','Huge Metal Scrap','Etc',10,1000,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (6962,'OldTank','Old Fuel','Etc',10,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6963,'HPdrainStone_Robe','HP Absorption Stone (Garment)','Etc',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6964,'SPdrainStone_Robe','SP Absorption Stone (Garment)','Etc',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6965,'Reactor_P_FIRE_','Fire Property Reactor Blueprint','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6966,'Reactor_P_WATER_','Water Property Reactor Blueprint','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6967,'Reactor_P_GROUND_','Earth Property Reactor Blueprint','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6968,'Reactor_P_WIND_','Wind Property Reactor Blueprint','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6969,'Reactor_T_FIRE_','Fire Resistance Reactor Blueprint','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6970,'Reactor_T_WATER_','Water Resistance Reactor Blueprint','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6971,'Reactor_T_GROUND_','Earth Resistance Reactor Blueprint','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6972,'Reactor_T_WIND_','Wind Resistance Reactor Blueprint','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6973,'Reactor_Cure_101_','Recovery101 Reactor Blueprint','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6974,'Reactor_Cure_102_','Recovery102 Reactor Blueprint','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6975,'Reactor_Cure_201_','Recovery201 Reactor Blueprint','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6976,'Reactor_Cure_202_','Recovery202 Reactor Blueprint','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6977,'Reactor_A_STR_','STR Reactor Blueprint','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6978,'Reactor_A_INT_','INT Reactor Blueprint','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6979,'Reactor_A_DEF_','DEF Reactor Blueprint','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6980,'Reactor_A_AVOI_','Perfect Dodge Reactor Blueprint','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6981,'Reactor_A_ATK_','Attack Reactor Blueprint','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6982,'Reactor_A_MATK_','Magical Reactor Blueprint','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6983,'Reactor_A_MHP_','HP Reactor Blueprint','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6984,'Reactor_A_MSP_','SP Reactor Blueprint','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6985,'Reactor_A_FROZ_','Frozen Reactor Blueprint','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6986,'Reactor_A_ASPD_','ASPD Reactor Blueprint','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6999,'HPdrainStone_Top','HP Absorption Stone (Upper)','Etc',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7001,'Mould_Powder','Mould Powder','Etc',466,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7002,'Ogre_Tooth','Ogre Tooth','Etc',658,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7003,'Anolian_Skin','Anolian Skin','Etc',968,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7004,'Mud_Lump','Mud Lump','Etc',876,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7005,'Skull','Skull','Etc',1044,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7006,'Wing_Of_Red_Bat','Wing of Red Bat','Etc',168,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7007,'Claw_Of_Rat','Claw of Rat','Etc',748,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7008,'Stiff_Horn','Stiff Horn','Etc',636,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7009,'Glitter_Shell','Glitter Shell','Etc',528,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7010,'Tail_Of_Steel_Scorpion','Tail of Steel Scorpion','Etc',548,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7011,'Claw_Of_Monkey','Claw of Monkey','Etc',466,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7012,'Tough_Scalelike_Stem','Tough Scalelike Stem','Etc',412,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7013,'Coral_Reef','Coral Reef','Etc',772,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7014,'Old_Portrait','Old Portrait','Etc',1500,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7015,'Bookclip_In_Memory','Bookclip in Memory','Etc',3000,20,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7016,'Spoon_Stub','Spoon Stub','Etc',2500,20,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7017,'Executioner\'s_Mitten','Executioner\'s Mitten','Etc',4500,30,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7018,'Young_Twig','Young Twig','Etc',50,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7019,'Loki\'s_Whispers','Loki\'s Whispers','Etc',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7020,'Mother\'s_Nightmare','Mother\'s Nightmare','Etc',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7021,'Foolishness_Of_Blind','Foolishness of the Blind','Etc',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7022,'Old_Hilt','Old Hilt','Etc',150,30,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7023,'Blade_Lost_In_Darkness','Blade Lost in Darkness','Etc',12000,40,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7024,'Bloody_Edge','Bloody Edge','Etc',10000,40,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7025,'Lucifer\'s_Lament','Lucifer\'s Lament','Etc',30000,50,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7026,'Key_Of_Clock_Tower','Key of Clock Tower','Etc',100,30,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7027,'Underground_Key','Key of Underground','Etc',100,30,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7028,'Invite_For_Duel','Invite for Duel','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7029,'Admission_For_Duel','Admission for Duel','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7030,'Claw_Of_Desert_Wolf','Claw of Desert Wolf','Etc',208,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7031,'Old_Frying_Pan','Old Frying Pan','Etc',196,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7032,'Piece_Of_Egg_Shell','Piece of Egg Shell','Etc',168,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7033,'Poison_Spore','Poison Spore','Etc',114,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7034,'Red_Socks_With_Holes','Red Stocking','Etc',100,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7035,'Matchstick','Matchstick','Etc',100,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7036,'Fang_Of_Garm','Fang of Hatii','Etc',100,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7038,'Yarn','Yarn','Etc',100,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7039,'Novice_Nametag','Newbie Tag','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7040,'Megaphone','Megaphone','Etc',1,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7041,'Fine_Grit','Fine Grit','Etc',120,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7042,'Leather_Bag_Of_Infinity','Leather Bag of Infinity','Etc',1,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7043,'Fine_Sand','Fine Sand','Etc',100,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7044,'Vigorgra','Vigorgra','Etc',1,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7045,'Magic_Paint','Magic Paint','Etc',1,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7046,'Cart_Parts','Cart Parts','Etc',1,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7047,'Alice\'s_Apron','Alice\'s Apron','Etc',2424,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7048,'Talon_Of_Griffin','Talon of Griffon','Etc',5418,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (7049,'Stone','Stone','Etc',30,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7050,'Cotton_Mat','Cotton Mat','Etc',100,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7051,'Silk_Mat','Silk Mat','Etc',100,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7052,'Old_Magazine','Old Papers','Etc',100,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7053,'Cyfar','Cyfar','Etc',772,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7054,'Brigan','Brigan','Etc',746,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7055,'Animal_Pooopoo','Animal Poop','Etc',100,50,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7056,'Payroll_Of_Kafra','Payment Statement for Kafra Employee','Etc',1,50,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7057,'Gallar_Horn','Gjallar','Etc',1,500,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7058,'Gullraifnir','Gleipnir','Etc',1,500,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7059,'Cargo_Free_Ticket','Free Ticket for Kafra Storage','Etc',1,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7060,'Warp_Free_Ticket','Free Ticket for Kafra Transportation','Etc',1,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7061,'Cart_Free_Ticket','Free Ticket for the Cart Service','Etc',1,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7062,'Broken_Turtle_Shell','Broken Turtle Shell','Etc',280,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7063,'Soft_Feather','Soft Feather','Etc',280,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7064,'Dragon_Fly_Wing','Wing of Dragonfly','Etc',520,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7065,'Sea_Otter_Leather','Sea-Otter Fur','Etc',820,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7066,'Ice_Piece','Ice Cubic','Etc',660,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7067,'Stone_Piece','Stone Fragment','Etc',640,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7068,'Burn_Tree','Burnt Tree','Etc',722,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7069,'Broken_Armor_Piece','Destroyed Armor','Etc',1042,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7070,'Broken_Shell','Broken Shell','Etc',900,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7071,'Tatters_Clothes','Tattered Clothes','Etc',1280,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7072,'Rust_Suriken','Old Shuriken','Etc',1780,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7073,'Jewel_Of_Prayer','Freya\'s Jewel','Etc',1,500,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7074,'Iron_Glove','Thor\'s Gauntlets','Etc',1,500,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7075,'Iron_Maiden','Iron Maiden','Etc',1,500,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7076,'Mystery_Wheel','Wheel of the Unknown','Etc',1,500,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7077,'Silver_Fancy','Silver Ornament','Etc',1,500,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7078,'Anger_Of_Valkurye','Wrath of Valkyrie','Etc',1,500,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7079,'Feather_Of_Angel','Feather of Angel Wing','Etc',1,500,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7080,'Foot_Step_Of_Cat','Cat Tread','Etc',1,500,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7081,'Beard_Of_Women','Woman\'s Moustache','Etc',1,500,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7082,'Root_Of_Stone','Root of Stone','Etc',1,500,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7083,'Soul_Of_Fish','Spirit of Fish','Etc',1,500,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7084,'Saliva_Of_Bird','Sputum of Bird','Etc',1,500,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7085,'Tendon_Of_Bear','Sinew of Bear','Etc',1,500,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7086,'Symbol_Of_Sun','Emblem of the Sun God','Etc',1,500,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7087,'Breath_Of_Soul','Breath of Spirit','Etc',1,500,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7088,'Crystal_Of_Snow','Snow Crystal','Etc',1,500,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7089,'Indication_Of_Tempest','Omen of Tempest','Etc',1,500,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7090,'Slilince_Wave','Ripple','Etc',1,500,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7091,'Rough_Billows','Billow','Etc',1,500,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7092,'Air_Stream','Drifting Air','Etc',1,500,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7093,'Wheel','Cogwheel','Etc',1512,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7094,'Mystery_Piece','Fragment','Etc',1344,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7095,'Broken_Steel_Piece','Metal Fragment','Etc',1075,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7096,'Cold_Magma','Lava','Etc',1109,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7097,'Burning_Heart','Burning Heart','Etc',924,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7098,'Live_Coal','Live Coal','Etc',638,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7099,'Old_Magic_Circle','Worn-out Magic Scroll','Etc',773,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7100,'Sharp_Leaf','Sharp Leaf','Etc',806,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7101,'Peco_Wing_Feather','Peco Peco Feather','Etc',454,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7102,'Hideous_Dream','Nightmare','Etc',1075,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7103,'Unknown_Liquid_Bottle','Unknown Liquid Bottle','Etc',10,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7104,'Fake_Angel_Wing','False Angel Wing','Etc',756,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7105,'Fake_Angel_Loop','False Heaven Ring','Etc',924,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7106,'Goat\'s_Horn','Antelope Horn','Etc',672,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7107,'Gaoat\'s_Skin','Antelope Skin','Etc',756,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7108,'Boroken_Shiled_Piece','Piece of Shield','Etc',1680,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7109,'Shine_Spear_Blade','Shining Spear Blade','Etc',840,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7110,'Vroken_Sword','Broken Sword','Etc',588,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7111,'Smooth_Paper','Slick Paper','Etc',706,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7112,'Fright_Paper_Blade','Sharp Paper','Etc',907,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7113,'Broken_Pharaoh_Symbol','Broken Pharaoh Emblem','Etc',2016,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7114,'Tutankhamen\'s_Mask','Masque of Tutankhamen','Etc',10,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7115,'Harpy\'s_Feather','Harpy Feather','Etc',1142,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7116,'Harpy\'s_Claw','Harpy Talon','Etc',1210,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7117,'Rent_Spell_Book','Torn Magic Book','Etc',1142,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7118,'Rent_Scroll','Torn Scroll','Etc',1361,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7119,'Spawns','Bacillus','Etc',1025,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7120,'Burning_Horse_Shoe','Burning Horseshoe','Etc',823,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7121,'Honey_Jar','Honey Pot','Etc',622,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7122,'Hot_Hair','Burning Hair','Etc',974,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7123,'Dragon\'s_Skin','Dragon Skin','Etc',1025,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7124,'Sand_Lump','Sand Clump','Etc',706,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7125,'Scropion\'s_Nipper','Scorpion Claw','Etc',706,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7126,'Large_Jellopy','Large Jellopy','Etc',840,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7127,'Alcol_Create_Book','Alcohol Creation Guide','Etc',100000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7128,'FireBottle_Create_Book','Bottle Grenade Creation Guide','Etc',100000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7129,'Acid_Create_Book','Acid Bottle Creation Guide','Etc',100000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7130,'Plant_Create_Book','Plant Bottle Creation Guide','Etc',100000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7131,'Mine_Create_Book','Marine Sphere Creation Guide','Etc',100000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7132,'Coating_Create_Book','Glistening Coat Creation Guide','Etc',100000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7133,'Slim_Potion_Create_Book','Condensed Potion Creation Guide','Etc',240000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7134,'Medicine_Bowl','Medicine Bowl','Etc',8,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7135,'Fire_Bottle','Bottle Grenade','Etc',200,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7136,'Acid_Bottle','Acid Bottle','Etc',200,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7137,'MenEater_Plant_Bottle','Plant Bottle','Etc',200,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7138,'Mini_Bottle','Marine Sphere Bottle','Etc',200,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7139,'Coating_Bottle','Glistening Coat','Etc',200,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`trade_override`,`trade_nodrop`) VALUES (7140,'Seed_Of_Life','Seed of Life','Etc',60000,10,true,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7141,'Yggdrasilberry_Dew','Morning Dew of Yggdrasil','Etc',20000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7142,'Germination_Breed','Embryo','Etc',10,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7143,'Life_Force_Pot','Glass Tube','Etc',5000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7144,'Normal_Potion_Book','Potion Creation Guide','Etc',100000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7145,'Rag_T_Shirts','Ragnarok T-shirt','Etc',1,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7146,'Vacance_Ticket','Vacation Ticket','Etc',1,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7147,'Jasmin','Jasmine','Etc',1,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7148,'Mother_Letter','Mother\'s Letter','Etc',1,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7149,'Yellow_Plate','Yellow Plate','Etc',220,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7150,'Bamboo_Cut','Piece of Bamboo','Etc',310,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7151,'Oil_Paper','Oil Paper','Etc',210,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7152,'Glossy_Hair','Glossy Hair','Etc',340,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7153,'Old_Japaness_Clothes','Worn-out Kimono','Etc',590,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7154,'Poison_Powder','Poisonous Powder','Etc',160,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7155,'Poison_Toad\'s_Skin','Poisonous Toad Skin','Etc',280,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7156,'Broken_Shuriken','Broken Shuriken','Etc',470,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7157,'Black_Mask','Dark Mask','Etc',315,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7158,'Broken_Wine_Vessel','Broken Liquor Jar','Etc',160,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7159,'Tengu\'s_Nose','Tengu Nose','Etc',400,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7160,'Lord\'s_Passable_Ticket','Feudal Lord Permit','Etc',1,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7161,'Black_Bear\'s_Skin','Black Bear Skin','Etc',384,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7162,'Cloud_Piece','Cloud Crumb','Etc',390,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7163,'Sharp_Feeler','Hard Feeler','Etc',570,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7164,'Hard_Peach','Solid Peach','Etc',400,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7165,'Limpid_Celestial_Robe','Transparent Celestial Robe','Etc',650,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7166,'Soft_Silk_Cloth','Soft Silk','Etc',1200,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7167,'Mystery_Iron_Bit','Strange Steel Piece','Etc',430,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7168,'Great_Wing','Giant Butterfly Wing','Etc',614,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7169,'Taegeuk_Plate','Ba Gua','Etc',2800,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`trade_override`,`trade_nodrop`) VALUES (7170,'Tuxedo','Tuxedo','Etc',43000,10,true,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7171,'Leopard_Skin','Leopard Skin','Etc',282,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7172,'Leopard_Talon','Leopard Claw','Etc',290,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7173,'BurnBuster_Bag','iROGM02\'s Backpack','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (7174,'Packing_Ribbon','Wrapping Lace','Etc',10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (7175,'Packing_Paper','Wrapping Paper','Etc',10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7176,'XMAS_Coupon','Royal Certificate','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7177,'Part_Of_Star\'s_Sob','Crumb of Sobbing Starlight','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7178,'Star\'s_Sob','Sobbing Starlight','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7179,'Donation_Card','Proof of Donation','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7180,'Introduction_Of_Mr.Han','Hahn Sukbong\'s Recommendation','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7181,'Receipt_01','Receipt','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7182,'Cacao','Cacao','Etc',200,20,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7183,'Sister_Letter','Letter from Sister','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7184,'Piano_Keyboard','Piano Key','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7185,'Quiz_Ticket','Quiz Entry','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7186,'Thin_Stem','Thin Trunk','Etc',380,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7187,'Festival_Mask','Festival Mask','Etc',100,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7188,'Browny_Root','Brown Root','Etc',560,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7189,'Heart_Of_Tree','Wooden Heart','Etc',680,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7190,'Solid_Peeling','Solid Husk','Etc',140,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (7191,'Lamplight','Lamp','Etc',10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7192,'Blade_Of_Pinwheel','Vane','Etc',160,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7193,'Germinating_Sprout','Sprout','Etc',230,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7194,'Soft_Leaf','Soft Blade of Grass','Etc',400,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7195,'Air_Rifle','Slingshot','Etc',210,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7196,'Shoulder_Protection','Shoulder Protector','Etc',230,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7197,'Tough_Vines','Tough Vines','Etc',500,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7198,'Great_Leaf','Huge Leaf','Etc',610,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7199,'Coupon','Coupon','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7200,'Flexible_String','Elastic Band','Etc',380,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7201,'Log','Log','Etc',250,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7202,'Beetle_Nipper','Pincher of Beetle','Etc',290,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7203,'Solid_Twig','Strong Branch','Etc',190,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7204,'Gunpowder','Gunpowder','Etc',320,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7205,'Piece_Of_Black_Cloth','Piece of Black Cloth','Etc',526,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7206,'Black_Kitty_Doll','Black Cat Doll','Etc',1440,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7207,'Old_Manteau','Old Manteau','Etc',1050,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7208,'Rusty_Cleaver','Rusty Kitchen Knife','Etc',1780,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7209,'Dullahan\'s_Helm','Helm of Dullahan','Etc',1350,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7210,'Dullahan_Armor','Armor Piece of Dullahan','Etc',790,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7211,'Rojerta_Piece','Fragment of Rossata Stone','Etc',2600,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7212,'Hanging_Doll','Hung Doll','Etc',1020,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7213,'Needle_Pouch','Needle Packet','Etc',832,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7214,'Bat_Cage','Bat Cage','Etc',880,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7215,'Broken_Needle','Broken Needle','Etc',690,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7216,'Red_Scarf','Red Muffler','Etc',660,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7217,'Spool','Spool','Etc',424,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7218,'Rotten_Rope','Decomposed Rope','Etc',390,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7219,'Striped_Socks','Striped Sock','Etc',920,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7220,'Ectoplasm','Ectoplasm','Etc',322,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7221,'Tangled_Chain','Tangled Chains','Etc',740,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7222,'Tree_Knot','Wooden Gnarl','Etc',468,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7223,'Distorted_Portrait','Contorted Self-Portrait','Etc',2032,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7224,'Stone_Of_Intelligence','Stone of Sage','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7225,'Pumpkin_Bucket','Pumpkin Lantern','Etc',486,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7226,'Pill','Pellet','Etc',2,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7227,'TCG_Card','TCG Card','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7228,'Gold_Bullion','Gold Bullion','Etc',100000,300,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7229,'Silver_Bullion','Silver Bullion','Etc',50000,300,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7230,'White_Gold_Bullion','Platinum Bullion','Etc',200000,300,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7231,'Gold_Ore','Gold Ore','Etc',20,150); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7232,'Silver_Ore','Silver Ore','Etc',20,150); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7233,'Mithril_Ore','Mithril Ore','Etc',20,150); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7234,'Soul_Of_Guild','Spirit of Guild','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7235,'Soul_Of_Courage','Spirit of Charge','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7236,'Soul_Of_Guard','Spirit of Protection','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7237,'Soul_Of_Partnership','Spirit of Association','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7238,'Soul_Of_Correspondence','Spirit of Coordination','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7239,'Soul_Of_Proceeding','Spirit of Advance','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7240,'Soul_Of_Confidence','Spirit of Trust','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7241,'Soul_Of_Agreement','Spirit of Union','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7242,'Soul_Of_Harmony','Spirit of Combination','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7243,'Soul_Of_Cooperate','Spirit of Cooperation','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7244,'Soul_Of_Unity','Spirit of Solidarity','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7245,'Soul_Of_Friendship','Spirit of Friendship','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7246,'Soul_Of_Peace','Spirit of Peace','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7247,'Soul_Of_Spirit','Spirit of Determination','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7248,'Soul_Of_Honor','Spirit of Honor','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7249,'Soul_Of_Service','Spirit of Service','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7250,'Soul_Of_Glory','Spirit of Glory','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7251,'Soul_Of_Victory','Spirit of Victory','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7252,'Herb_Medicine','Herbal Medicine','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7253,'Taeguk_Flag','Golden Korean Flag','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7254,'Digital_Print_Ticket','Digital Picture Printing Coupon','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7255,'China_Marble01','Mystic Orb','Etc',100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7256,'China_Marble02','Mystic Orb','Etc',100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7257,'China_Marble03','Mystic Orb','Etc',100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7258,'China_Marble04','Mystic Orb','Etc',100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7259,'China_Marble05','Mystic Orb','Etc',100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7260,'China_Marble06','Mystic Orb','Etc',100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7261,'China_Marble07','Mystic Orb','Etc',100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7262,'Fan','Folding Fan of Cat Ghost','Etc',466,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7263,'Cat_Eyed_Stone','Cat\'s Eye','Etc',954,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7264,'Dried_Sand','Dry Sand','Etc',322,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7265,'Dragon_Horn','Dragon Horn','Etc',544,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7266,'Dragon_Fang','Denture from Dragon Mask','Etc',436,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7267,'Tiger_Skin_Panties','Tiger Panty','Etc',298,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7268,'Little_Blacky_Ghost','Little Ghost Doll','Etc',1210,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7269,'Bib','Pinafore','Etc',960,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7270,'Milk_Bottle','Nursing Bottle','Etc',1100,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7271,'Figure','Novice Figure','Etc',10000,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7272,'Meat_Dumpling_Doll','Rice Ball Doll','Etc',500,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7273,'Golden_Necklace','RWC Necklace','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7274,'Ancient_Translator','Translated Ancient Language','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7275,'Ancient_Document','Record of Ancient Language','Etc',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7276,'Picture_Letter','Doodled Message','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7277,'Munak_Doll','Munak Doll','Etc',8900,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7278,'Wellbeing_Letter','Letter to Wife','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7279,'Vita500_Lid','Vita500 Lid','Etc',10,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7280,'Quiz_Ticket01','1st Quiz Entry','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7281,'Quiz_Ticket02','2nd Quiz Entry','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7282,'Quiz_Ticket03','3rd Quiz Entry','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7283,'Quiz_Ticket04','4th Quiz Entry','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7284,'Quiz_Ticket05','5th Quiz Entry','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7285,'Thread_Skein','Holy Threads','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7286,'Chilli','Red Chile','Etc',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7287,'Thread_Skein_','Holier Threads','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7288,'Thai_Ring','Engagement Ring','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7289,'Olivine','Peridot','Etc',3000,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7290,'Phlogopite','Phlogopite','Etc',3000,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7291,'Agate','Agate','Etc',3000,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7292,'Muscovite','Muscovite','Etc',3000,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7293,'Rose_Quartz','Rose Quartz','Etc',3000,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7294,'Turquoise','Turquoise','Etc',3000,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7295,'Citrine','Citrin','Etc',3000,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7296,'Pyroxene','Pyroxene','Etc',3000,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7297,'Biotite','Biotite','Etc',3000,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7298,'Leaf_Clothes','Fig Leaf','Etc',538,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7299,'Bamboo_Basket','Straw Basket','Etc',632,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7300,'Gemstone','Gemstone','Etc',1420,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7301,'Sword_Accessory','Tassel','Etc',798,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7302,'KRATHONG','Krathong','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (7303,'Bag_Of_Rice','Straw Rice Bag','Etc',800,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7304,'Witch\'s_Spell_Book','Witch\'s Spell Scroll','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7305,'Authority_Of_Nine_World','Symbol of the Nine Realms','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7306,'Fragment_Of_Soul','Piece of Spirit','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7307,'Whisper_Of_Soul','Spiritual Whispers','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7308,'Witch\'s_Potion','Witch\'s Tonic','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7309,'Wing_Of_Crow','Crow Wing','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7310,'Free_Peco_Ticket','Free Ticket for Peco Ride','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (7311,'Free_Flying_Ship_Ticket','Free Ticket for Flyship','Etc',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7312,'Jubilee','Jubilee','Etc',32,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (7313,'Seal_Of_Witch','Witch\'s Medal','Etc',2); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7314,'The_Sign','The Sign','Etc',2,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7315,'Dark_Crystal_Fragment','Dark Crystal Fragment','Etc',422,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7316,'Long_Limb','Insect Leg','Etc',658,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7317,'Screw','Rusty Screw','Etc',534,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7318,'Old_Pick','Old Pick','Etc',512,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7319,'Old_Steel_Plate','Used Iron Plate','Etc',1024,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7320,'Air_Pollutant','Dust Pollutant','Etc',256,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7321,'Fragment_Of_Crystal','Crystal Fragment','Etc',552,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7322,'Poisonous_Gas','Toxic Gas','Etc',666,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7323,'Battered_Kettle','Battered Kettle','Etc',256,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7325,'Tube','Flexible Tube','Etc',102,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7326,'Fluorescent_Liquid','Fluorescent Liquid','Etc',712,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7327,'Headlamp','Flashlight','Etc',1024,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7328,'Legendary_Scroll','Legend of Songkran','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7329,'Old_Copper_Key','Old Bronze Key','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7330,'2anny','Mystic Orb','Etc',100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7331,'Flower_Of_Heaven','Heaven Flower','Etc',500,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7332,'Slate','Complete Tablet','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7333,'Piece_Of_Slate_1','Prontera Tablet','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7334,'Piece_Of_Slate_2','Payon Tablet','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7335,'Piece_Of_Slate_3','Morocc Tablet','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7336,'Piece_Of_Slate_4','Geffen Tablet','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7337,'Eye_Of_Hellion','Eye of Hellion','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7338,'RO_Transportation_Card','One-way Ticket','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7339,'RO_Transportation_Card_','Commemorative Travel Card','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7340,'Will_Of_Darkness','Will of the Darkness','Etc',734,50,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7341,'Worn_Out_Pendant','Old Pendant','Etc',20,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7342,'File01','File Folder','Etc',20,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7343,'File02','Sealed File Folder','Etc',20,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7344,'File03','Shinokas Case File','Etc',20,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7345,'Armlet_Of_Prisoner','Handcuffs','Etc',724,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7346,'Pile_Of_Ymir_Heart','Ymir\'s Heart Piece','Etc',20,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7347,'Lab_Staff_Record','Research Chart','Etc',840,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7348,'Indication_Of_Member01','Membership Card','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7349,'Indication_Of_Member02','Archive Permit','Etc',20,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7350,'Pass','Pass','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7351,'Friend\'s_Diary','Friend\'s Diary','Etc',20,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7352,'Transparent_Plate01','Transparent Plate','Etc',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7353,'Transparent_Plate02','Transparent Plate','Etc',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7354,'Transparent_Plate03','Transparent Plate','Etc',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7355,'Transparent_Plate04','Transparent Plate','Etc',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7356,'Piece_Of_Crest1','Crest Piece','Etc',5000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7357,'Piece_Of_Crest2','Crest Piece','Etc',5000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7358,'Piece_Of_Crest3','Crest Piece','Etc',5000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7359,'Piece_Of_Crest4','Crest Piece','Etc',5000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7360,'RO_Festival_Ticket','RO Festival Invitation','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7361,'Lotto01','Lotto Ball 01','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7362,'Lotto02','Lotto Ball 02','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7363,'Lotto03','Lotto Ball 03','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7364,'Lotto04','Lotto Ball 04','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7365,'Lotto05','Lotto Ball 05','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7366,'Lotto06','Lotto Ball 06','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7367,'Lotto07','Lotto Ball 07','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7368,'Lotto08','Lotto Ball 08','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7369,'Lotto09','Lotto Ball 09','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7370,'Lotto10','Lotto Ball 10','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7371,'Lotto11','Lotto Ball 11','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7372,'Lotto12','Lotto Ball 12','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7373,'Lotto13','Lotto Ball 13','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7374,'Lotto14','Lotto Ball 14','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7375,'Lotto15','Lotto Ball 15','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7376,'Lotto16','Lotto Ball 16','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7377,'Lotto17','Lotto Ball 17','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7378,'Lotto18','Lotto Ball 18','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7379,'Lotto19','Lotto Ball 19','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7380,'Lotto20','Lotto Ball 20','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7381,'Lotto21','Lotto Ball 21','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7382,'Lotto22','Lotto Ball 22','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7383,'Lotto23','Lotto Ball 23','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7384,'Lotto24','Lotto Ball 24','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7385,'Lotto25','Lotto Ball 25','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7386,'Lotto26','Lotto Ball 26','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7387,'Lotto27','Lotto Ball 27','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7388,'Lotto28','Lotto Ball 28','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7389,'Lotto29','Lotto Ball 29','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7390,'Lotto30','Lotto Ball 30','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7391,'Lotto31','Lotto Ball 31','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7392,'Lotto32','Lotto Ball 32','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7393,'Lotto33','Lotto Ball 33','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7394,'Lotto34','Lotto Ball 34','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7395,'Lotto35','Lotto Ball 35','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7396,'Lotto36','Lotto Ball 36','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7397,'Lotto37','Lotto Ball 37','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7398,'Lotto38','Lotto Ball 38','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7399,'Word_Card01','Selamat','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7400,'Word_Card02','Hari','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7401,'Word_Card03','Kemerdekaan','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7402,'Word_Card04','Republik','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7403,'Word_Card05','Indonesia','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7404,'Word_Card06','Ke-60','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7405,'Crushed_Can','Crushed Can','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7406,'Moon_Cake1','Yuebing','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7407,'Moon_Cake2','Yuebing','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7408,'Moon_Cake3','Yuebing','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7409,'Moon_Cake4','Yuebing','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7410,'Moon_Cake5','Yuebing','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7411,'Moon_Cake6','Yuebing','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7412,'Moon_Cake7','Yuebing','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7413,'Moon_Cake8','Yuebing','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7414,'Moon_Cake9','Yuebing','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7415,'Stone_Of_Summons','Summoning Stone','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7416,'Letter_Of_Recommend','Letter of Recommendation','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7417,'Mission_ScrollA','Written Request(A)','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7418,'Mission_ScrollB','Written Request(B)','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7419,'Embryo_HandBook','Embryo Creation Guide','Etc',48000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7420,'Skull_','Skull','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7421,'Key_Red','Red Key','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7422,'Key_Yellow','Yellow Key','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7423,'Key_Blue','Blue Key','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7424,'Key_Green','Green Key','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7425,'Key_Black','Black Key','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7426,'Magic_Gem_Red','Red Charm Stone','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7427,'Magic_Gem_Yellow','Yellow Charm Stone','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7428,'Magic_Gem_Blue','Blue Charm Stone','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7429,'Magic_Gem_Green','Green Charm Stone','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7430,'Magic_Gem_Black','Black Charm Stone','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7431,'Several_Books','Pile of Books','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7432,'Leather_Pouch','Leather Pouch','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7433,'Scroll','Blank Scroll','Etc',4000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7434,'Elemental_Potion_Book','Elemental Potion Creation Guide','Etc',100000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7435,'Golden_Bracelet','Golden Ornament','Etc',1907,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7436,'Piece_Of_Memory_Green','Fragment of Agony','Etc',1506,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7437,'Piece_Of_Memory_Purple','Fragment of Misery','Etc',1506,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7438,'Piece_Of_Memory_Blue','Fragment of Hatred','Etc',1506,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7439,'Piece_Of_Memory_Red','Fragment of Despair','Etc',1506,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7440,'Red_Feather','Red Feather','Etc',1335,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7441,'Blue_Feather','Blue Feather','Etc',1408,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7442,'Cursed_Seal','Cursed Seal','Etc',1332,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7443,'Tri_Headed_Dragon_Head','Three-Headed Dragon\'s Head','Etc',956,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7444,'Treasure_Box','Treasure Box','Etc',300000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7445,'Dragonball_Green','Green Bijou','Etc',887,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7446,'Dragonball_Blue','Blue Bijou','Etc',887,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7447,'Dragonball_Red','Red Bijou','Etc',887,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7448,'Dragonball_Yellow','Yellow Bijou','Etc',887,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7449,'Bloody_Page','Bloody Page','Etc',681,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7450,'Piece_Of_Bone_Armor','Skeletal Armor Piece','Etc',2050,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7451,'Scale_Of_Red_Dragon','Fire Dragon Scale','Etc',1852,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7452,'Yellow_Spice','Yellow Spice','Etc',750,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7453,'Sweet_Sauce','Sweet Sauce','Etc',525,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7454,'Plain_Sauce','Savory Sauce','Etc',525,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7455,'Hot_Sauce','Spicy Sauce','Etc',525,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7456,'Red_Spice','Red Spice','Etc',750,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7457,'Cooking_Oil','Cooking Oil','Etc',375,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7458,'Baphomet\'s_Horn','Fortune Horn','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7459,'RAMADAN_','Idul Fitri Card','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7460,'Niflheim_Ticket','Niflheim Express Ticket','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7461,'BlueCard_A','Blue A Card','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7462,'BlueCard_E','Blue E Card','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7463,'BlueCard_F','Blue F Card','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7464,'BlueCard_H','Blue H Card','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7465,'BlueCard_L','Blue L Card','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7466,'BlueCard_N','Blue N Card','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7467,'BlueCard_O','Blue O Card','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7468,'BlueCard_P','Blue P Card','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7469,'BlueCard_U','Blue U Card','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7470,'BlueCard_W','Blue W Card','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7471,'BlueCard_Y','Blue Y Card','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7472,'Cookbook01','Level 1 Cookbook','Etc',1000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7473,'Cookbook02','Level 2 Cookbook','Etc',1000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7474,'Cookbook03','Level 3 Cookbook','Etc',1000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7475,'Cookbook04','Level 4 Cookbook','Etc',1000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7476,'Cookbook05','Level 5 Cookbook','Etc',1000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7477,'Cookbook06','Level 6 Cookbook','Etc',1000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7478,'Cookbook07','Level 7 Cookbook','Etc',1000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7479,'Cookbook08','Level 8 Cookbook','Etc',1000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7480,'Cookbook09','Level 9 Cookbook','Etc',1000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7481,'Cookbook10','Level 10 Cookbook','Etc',1000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7482,'Pot','Pot','Etc',150,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7483,'Key_Of_Seal','Key of the Seal','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7484,'Warrior_Symbol','Symbol of a Brave Warrior','Etc',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7485,'2nd_Floor_Pass','Cloud General','Etc',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7486,'3rd_Floor_Pass','Wind General','Etc',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7487,'Tavern_Wine','Culinary Wine','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7488,'Delivery_Box','Delivery Package','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7489,'Villa_Spare_Key','Cottage Key','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7490,'Kyll_Hire_Letter','Letter to Elly','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7491,'Iron_Box','Steel Box','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7492,'Yellow_Key_Card','Yellow Keycard','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7493,'Golden_Key','Golden Key','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7494,'Kiel_Button','Luxurious Button','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7495,'Blue_Key_Card','Blue Keycard','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7496,'Red_Key_Card','Red Keycard','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7497,'Steel_Piece','Metal Fragment','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7498,'Rosimier_Key','Rosimier Mansion Keys','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7499,'Family_Portrait','Family Portrait','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7500,'Elysia_Portrait','Woman\'s Portrait','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7501,'Kyll_Hire_Letter2','K.H\'s Letter','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7502,'Piece_Memo_Of_James','James\'s Note','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7503,'Man_Portrait','Man\'s Portrait','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7504,'Toy_Motor','Power Device','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7505,'Toy_Key','Toy Key','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7506,'Black_Key_Card','Black Keycard','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7507,'Sturdy_Iron_Piece','Solid Iron Piece','Etc',842,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7508,'Elysia_Ring','Allysia\'s Ring','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7509,'Fancy_Key_Card','Luxurious Keycard','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7510,'Valhalla_Flower','Valhalla\'s Flower','Etc',200000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7511,'Rune_Of_Darkness','Rune of Darkness','Etc',2526,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7512,'Burnt_Parts','Burnt Part','Etc',1600,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7513,'Pocket_Watch__','Pocket Watch','Etc',3420,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7514,'Monster_Ticket','Monster Ticket','Etc',2,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7515,'Marvelous_Medal','Prize Medal','Etc',2,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7516,'Green_Key_Card','Green Keycard','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7517,'Gold_Coin_','Gold Coin','Etc',1000,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7518,'Women\'s_Medal','Women\'s Medal','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7519,'Money_Envelope','Handsel','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7520,'Chinese_Scroll','Please Be Rich','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7521,'Flame_Stone','Flame Stone','Etc',150,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7522,'Ice_Stone','Ice Stone','Etc',150,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7523,'Wind_Stone','Wind Stone','Etc',150,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7524,'Shadow_Orb','Shadow Orb','Etc',300,20,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7525,'Summer_Feast_Ticket','Summer Festival Ticket','Etc',10,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (7526,'Manuscript_Paper','Manuscript Paper','Etc',2); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7527,'Life_Book','Book About True Life','Etc',100,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7528,'Id_Lottery_Ticket','Lottery Ticket','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7529,'Stolen_Sandals','Stolen Sandal','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7530,'Travel_Brochure_01','Travel Brochure [Amatsu]','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7531,'Travel_Brochure_02','Travel Brochure [Kunlun]','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7532,'Travel_Brochure_03','Travel Brochure [Luoyang]','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7533,'Travel_Brochure_04','Travel Brochure [Ayothaya]','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7534,'Photo_Album_01','Amatsu Completed Photo Album','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7535,'Photo_Album_02','Kunlun Completed Photo Album','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7536,'Photo_Album_03','Luoyang Completed Photo Album','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7537,'Photo_Album_04','Ayothaya Completed Photo Album','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7538,'Sifted_Sand','Sand for Work','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7539,'Poring_Coin','Poring Coin','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7540,'Lotto39','Lotto Ball 39','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7541,'Lotto40','Lotto Ball 40','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7542,'Lotto41','Lotto Ball 41','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7543,'Lotto42','Lotto Ball 42','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7544,'Lotto43','Lotto Ball 43','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7545,'Lotto44','Lotto Ball 44','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7546,'Lotto45','Lotto Ball 45','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7547,'Soccer_Ball','Soccer Ball','Etc',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7548,'Soccer_Shoes','Soccer Shoes','Etc',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7549,'Brazilian_Flag','Brazilian Flag','Etc',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7550,'Ticket01','6.13 Ticket','Etc',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7551,'Ticket02','6.18 Ticket','Etc',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7552,'Ticket03','6.22 Ticket','Etc',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7553,'Lotus_Flower','Lotus Flower','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7554,'Striped_Candle','Striped Candle','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7555,'Green_Incense','Green Incense','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7556,'Longing_Heart','Longing Heart','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7557,'Invitation_Letter','Invitation Letter','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7558,'Invitation_Ticket','Invitation Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7559,'Key_Of_Flower_Garden','Key to the Secret Garden','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7560,'Longing_Heart2','Longing Heart','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7561,'Ice_Heart','Glacial Heart','Etc',606,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7562,'Ice_Scale','Ice Scale','Etc',3020,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7563,'Bloody_Rune','Bloody Rune','Etc',2016,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7564,'Rotten_Meat','Rotten Meat','Etc',102,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7565,'Sticky_Poison','Sticky Poison','Etc',350,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7566,'Will_Of_Darkness_','Will of Red Darkness','Etc',1530,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7567,'Suspicious_Hat','Suspicious Hat','Etc',1290,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7568,'White_Mask','White Mask','Etc',1060,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7569,'Hammer_Of_Wind','Wind Hammer','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7570,'Temple_Lottery_Ticket','Temple Lottery Ticket','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7571,'Diary_Of_Blue','Bruspetti\'s Diary','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7572,'Magic_Necklace','Ashy Necklace','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7573,'Magic_Necklace_','Sparkling Necklace','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (7574,'Ice_Particle','Freezing Snow Powder','Etc',true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7575,'Red_Jewel_','Red Jewel','Etc',20,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7576,'Blue_Jewel_','Blue Jewel','Etc',20,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7577,'Golden_Jewel_','Yellow Jewel','Etc',20,50,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7578,'Anti_Spell_Bead','Countermagic Crystal','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7579,'Silk_Handkerchief','Silk Handkerchief of Zhi Nu','Etc',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7580,'Black_Bead','Black Marble','Etc',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7581,'Anniversary_Ticket','Celebration Document','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7582,'Gem_Of_Ruin','Jewel of Destruction','Etc',10,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7583,'Evil_Mind','Evil Mind','Etc',10,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7584,'Proof_Of_Guard1','Guard\'s First Proof','Etc',10,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7585,'Proof_Of_Guard2','Guard\'s Second Proof','Etc',10,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7586,'Proof_Of_Guard3','Guard\'s Third Proof','Etc',10,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7587,'Proof_Of_Guard4','Guard\'s Fourth Proof','Etc',10,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7588,'IPOD_Ticker','IPOD Coupon','Etc',10,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7589,'Moon_Cake10','Lettered Moon Snack 01','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7590,'Moon_Cake11','Lettered Moon Snack 02','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7591,'Moon_Cake12','Lettered Moon Snack 03','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7592,'Moon_Cake13','Lettered Moon Snack 04','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7593,'Moon_Cake14','Lettered Moon Snack 05','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7594,'Sonia\'s_Letter','Sonia\'s Letter','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7595,'Unique_Sword','Special Sword','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7596,'Unique_Shield','Special Shield','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7597,'Magic_Stone','Magic Stone','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7598,'BlueCard_I','Blue I Card','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7599,'BlueCard_D','Blue D Card','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7600,'BlueCard_K','Blue K Card','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7601,'BlueCard_S','Blue S Card','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7602,'BlueCard_R','Blue R Card','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7603,'RO_Party_Ticket','RO Party Invitation Ticket','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7604,'Flour','Flour','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7605,'Chicken_Egg','Chicken Egg','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7606,'Coin','Token of the Ox','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7607,'Evil_Dragon_Head','Neck of Demon Dragon','Etc',10,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7608,'Premium_Ticket','Premium Ticket','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7609,'Pumpkin_Mojo','Pumpkin Mojo','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7610,'Food_Ticket','Food Exchange Ticket','Etc',1000,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7611,'Fox_Symbol','Symbol of Fox','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7612,'Heart_Of_Fox_Queen','Heart of Queen Fox','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7613,'Small_Rice_Dough','Small Rice Cake Dough','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7614,'Special_Packing_Paper','Wrapping Paper','Etc',10,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7615,'MVP_Ticket','MVP Voucher','Etc',10,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7616,'Mini_Boss_Ticket','Miniboss Voucher','Etc',10,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7617,'Monster_Ticket_','Monster Voucher','Etc',10,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7618,'Monster_Crystal','Monster Crystal','Etc',2,100,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7619,'Enriched_Elunium','Enriched Elunium','Etc',2,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7620,'Enriched_Oridecon','Enriched Oridecon','Etc',2,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7621,'Token_Of_Siegfried','Token Of Siegfried','Etc',2,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7622,'New_Style_Coupon','Hairstyle Coupon','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7623,'Name_Change_Coupon','Ticket Of Identification','Etc',2,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7624,'Spring_Stanza23','Spring Stanza23','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7625,'Registration_Ticket','Registration Ticket','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7626,'Bubble_Gum_Token','Bubble Gum Token','Etc',10,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7627,'Sage_Key','Sage Key','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7628,'Idiot_Key','Idiot Key','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7629,'Pink_Gift_Box','Pink Gift Box','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7630,'Clean_Beach_Brush','Clean Beach Brush','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7631,'Trash_Debris','Trash Debris','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7632,'To_Afterworld_Record','Terrible Report Card','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7633,'To_Heaven_Record','Heavensent Report Card','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7634,'Rose_Of_Father','Father Rose','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (7635,'Perfume_Pouch','Incense Bag','Etc',100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7636,'Magic_Potion_Bottle','Magic Potion Bottle','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7637,'Father_Giftbox','Father Giftbox','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7638,'TW_Green_Box','TW Green Box','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7639,'TW_Red_Box','TW Red Box','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7640,'Butterfly_Hair_Decoration','Butterfly Hair Decoration','Etc',10,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7641,'Medical_Cure_Box','Medical Cure Box','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_buyingstore`) VALUES (7642,'Bloody_Coin','Bloody Coin','Etc',10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7643,'Bloody_Letter','Bloody Letter','Etc',10,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_buyingstore`) VALUES (7644,'Unsent_Letter','Unsent Letter','Etc',10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7646,'RO_Luk_Bookmark','RO Luk Bookmark','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7647,'Taiwan_Luk_Coin','Taiwan Luk Coin','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7648,'Snake_Bookmark','Snake Bookmark','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7649,'Big_Luk_Bookmark','Big Luk Bookmark','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7651,'Mystery_Egg','Mystery Egg','Etc',10,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`attack`) VALUES (7663,'Full_Metal_Jacket','Full Metal Jacket','Etc',200,2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`attack`) VALUES (7664,'Shooting_Mine','Grenade Launcher','Etc',450,3,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`attack`) VALUES (7665,'Dragon_Tail_Missile','Dragon Tail Missile','Etc',1500,100,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (7666,'TimeTravel_Scroll','Time Travel Scroll','Etc',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (7667,'Abandoned_Machine','Abandoned Machine','Etc',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (7668,'Clean_Bandage','Clean Bandage','Etc',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (7669,'Rubbing_Alchohol','Rubbing Alchohol','Etc',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (7670,'Sour_Grass','Sour Grass','Etc',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (7671,'Firstaid_Kit','First Aid Kit','Etc',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (7672,'Relief_Food','Relief Food','Etc',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (7674,'Mysterious_Ingredient','Mysterious Ingredient','Etc',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7675,'Mysterious_Doll','Mysterious Doll','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7676,'Transmission_Coupon','Transmission Coupon','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7679,'Oneclick_Weapon_7UP','One Click Weapon 7UP','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7680,'Oneclick_Weapon_9UP','One Click Weapon 9UP','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7681,'Oneclick_Armor_7UP','One Click Armor 7UP','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7682,'Oneclick_Armor_9UP','One Click Armor 9UP','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7690,'Special_Exchange_Coupons','Special Exchange Coupons','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7701,'Dragon_Spirit','Soul','Etc',2,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7702,'Special_Cogwheel','Special Cogwheel','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7703,'Piece_Of_Cogwheel','Piece of Cogwheel','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7704,'Broken_Thermometer','Broken Thermometer','Etc',2,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7705,'Note_Of_Geologist','Note of Geologist','Etc',2,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7706,'Spoiled_Carrot_Juice','Broken Carrot Juice','Etc',20,40); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7707,'Spoiled_Banana_Juice','Broken Banana Juice','Etc',20,40); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7708,'Spoiled_Apple_Juice','Broken Apple Juice','Etc',20,40); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7709,'Spoiled_Grape_Juice','Broken Grape Juice','Etc',20,40); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7710,'Black_Gemstone','Black Gemstone','Etc',600,30); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7711,'Update_Ticket','Event Ticket','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7712,'Nokia5500','Nokia 5500','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7713,'BlueCard_A_','Blue A(2) Card','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7714,'BlueCard_R_','Blue R(2) Card','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7715,'Handmade_Choco_Recipe','Handmade Chocolate Recipe','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7716,'Strawberry_Choco_Recipe','Chocolate Strawberry Recipe','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7717,'Choco_Tart_Recipe','Chocolate Tart Recipe','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7718,'Cacao_Bean','Cacao Bean','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7719,'BlueCard_G','Blue G Card','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7720,'Gold_Coin_US','Gold Coin','Etc',100,10,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7721,'Treasure_Box_','Treasure Box','Etc',100,500); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7722,'Debt_Note','Debt Note','Etc',20,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7723,'Diamond_Of_Ruin','Diamond of Ruin','Etc',20,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7724,'Forbidden_Secret_Art','Forbidden Secret Art','Etc',20,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7725,'Unlucky_Emerald','Unlucky Emerald','Etc',20,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7726,'Token_Of_King','Token of King','Etc',20,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7727,'HP_Doctor_Ticket','HP Doctor Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7728,'SP_Doctor_Ticket','SP Doctor Ticket','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7729,'Rok_Star_Badge','Rok Star Badge','Etc',20,100,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nosell`) VALUES (7730,'Mission_Certificate1','Mission Ticket 1','Etc',10,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nosell`) VALUES (7731,'Mission_Certificate2','Mission Ticket 2','Etc',10,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nosell`) VALUES (7732,'Mission_Certificate3','Mission Ticket 3','Etc',10,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nosell`) VALUES (7733,'Mission_Certificate4','Mission Ticket 4','Etc',10,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nosell`) VALUES (7734,'Mission_Certificate5','Mission Ticket 5','Etc',10,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nosell`) VALUES (7735,'Mission_Certificate6','Mission Ticket 6','Etc',10,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nosell`) VALUES (7736,'Mission_Certificate7','Mission Ticket 7','Etc',10,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nosell`) VALUES (7737,'Mission_Certificate8','Mission Ticket 8','Etc',10,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nosell`) VALUES (7738,'Mission_Certificate9','Mission Ticket 9','Etc',10,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nosell`) VALUES (7739,'Mission_Certificate10','Mission Ticket 10','Etc',10,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nosell`) VALUES (7740,'Mission_Certificate11','Mission Ticket 11','Etc',10,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nosell`) VALUES (7741,'Mission_Certificate12','Mission Ticket 12','Etc',10,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7742,'Kaong','Kaong','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7743,'Gulaman','Gulaman','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7744,'Leche_Flan','Leche Flan','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7745,'Ube_Jam','Ube Jam','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7746,'Sago','Sago','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7747,'Langka','Langka','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7748,'Sweet_Bean','Sweet Beans','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7749,'Sweet_Banana','Sweet Bananas','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7750,'Macapuno','Macapuno','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7751,'Old_White_Cloth','Old White Cloth','Etc',550,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7752,'Clattering_Skull','Clattering Skull','Etc',840,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7753,'Broken_Farming_Utensil','Broken Farming Utensil','Etc',330,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7754,'Broken_Crown','Broken Crown','Etc',3000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7755,'Research_Note','Research Note','Etc',20,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7756,'Sealed_Book','Sealed Book','Etc',2000,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7757,'Mithril','Mithril','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7758,'Star_Crystal','Star Crystal','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7759,'Geology_Report','Geologist\'s Report','Etc',20,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7760,'Yaga_Magic_Book','Yaga\'s Magic Book','Etc',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7761,'Magic_Gourd_Bottle','Magic Gourd Bottle','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7762,'Yaga_Pestle','Yaga\'s Pestle','Etc',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7763,'Sticky_Herb','Sticky Herb','Etc',20,10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7764,'High_Strength_Adhesive','High Strength Adhesive','Etc',20,10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7765,'Yaga_Secret_Medicine','Baba Yaga\'s Secret Medicine','Etc',20,10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7766,'Bok_Choy','Bok Choy','Etc',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7767,'Chung_E_Cake','Green Maiden\'s Cake','Etc',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7768,'Squid','Squid','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7769,'Egg_Yolk','Egg Yolk','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7770,'Sweet_Rice','Sweet Rice','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7771,'Lotus_Leaf','Lotus Leaf','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7772,'String','String','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7773,'War_Badge','Wat Badge','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7774,'Chung_E_Ticket','Green Maiden Ticket','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7775,'Spring_Rabbit_Ticket','Spring Rabbit Ticket','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7776,'Max_Weight_Up_Scroll','Gym Pass','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7777,'Gold_Box','Sealed Golden Box','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7778,'Silver_Box','Sealed Silver Box','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7779,'Gold_Key_TW','Golden Key','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7780,'Silver_Key','Silver Key','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7781,'Heart_Box','Engrave Treasure Box','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_dropannounce`) VALUES (7782,'Gold_Key77','Episode 13.1 Poporing Key','Etc',10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_dropannounce`) VALUES (7783,'Silver_Key77','Episode 13.2 Poring Key','Etc',10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7784,'Fawner_Coupon1','Free Coupon 1','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7785,'Fawner_Coupon2','Free Coupon 2','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7786,'Fawner_Coupon3','Free Coupon 3','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7787,'Fawner_Coupon4','Free Coupon 4','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7788,'Fawner_Coupon5','Free Coupon 5','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7789,'Fawner_Coupon6','Free Coupon 6','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7790,'Fawner_Coupon7','Free Coupon 7','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7791,'Fawner_Coupon8','Free Coupon 8','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7792,'Guyak','Guyak','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7793,'Golden_Apple','Golden Apple','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7794,'Fate_Of_Crow','The Crow of Destiny','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7795,'Mami_Photo_Album','Mammi\'s Photo Album','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7796,'Author_Autograph','Author\'s Autograph','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7797,'Author_Memo','Author\'s Memo','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7798,'Dark_Debris','Fragment of Darkness','Etc',500,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7799,'Dark_Crystal','Crystal of Darkness','Etc',10,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7800,'Golden_Apple_','Golden Charm Apple','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7801,'Girl_Fan_Letter','Girl\'s Letter','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7802,'Autograph_Book','Signature Notebook','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7803,'Battle_Manual_TW','Beginner\'s Field Manual','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7805,'Brown_Ring','Brown Jenoss\'s Family Ring','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7806,'Black_Anvil','God Anvil','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7807,'Ore','God Mineral','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7808,'Gold_Hammer','God Hammer','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7809,'Gold_Furnace','God Furnace','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7810,'Yellow_Cat_Eyed_Stone','Symbol of Richness','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7811,'Gold_Anvil','Anvil','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7812,'Red_Cat_Eyed_Stone','Symbol of Bravery','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7813,'Th_Red_Ring','Red Jenoss\'s Family Ring','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7814,'Green_Ring','Green Jenoss\'s Family Ring','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7815,'Blue_Ring','Blue Jenoss\'s Family Ring','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7816,'Blue_Cat_Eyed_Stone','Symbol of Faith','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7817,'White_Cat_Eyed_Stone','Symbol of Peace','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7818,'RJC_Golden_Necklace','Jessur\'s Necklace','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7819,'Nokia5300','Nokia 5300','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7820,'Morroc_Skin','Piece of Morocc Skin','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7821,'Green_Apple','Green Apple','Etc',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7822,'Whole_Barbecue','Whole Barbecue','Etc',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7823,'Meat_Veg_Skewer','Meat Veg Skewer','Etc',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7824,'Spirit_Liquor','Spirit Liquor','Etc',1000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7825,'Heroic_Stone','Heroic Stone','Etc',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7826,'Continental_Guard_Paper','Continental Guard Paper','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7827,'Mineral_Report','Mineral Evals','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7828,'BF_Badge1','Bravery Badge','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7829,'BF_Badge2','Valor Badge','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7830,'Goddess_Tear','Goddess Tear','Etc',1,500,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7831,'Valkyrie_Token','Valkyrie\'s Token','Etc',1,500,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7832,'Brynhild_Armor_Piece','Brynhild Armor Piece','Etc',1,500,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7833,'Hero_Remains','Hero\'s Remains','Etc',1,500,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7834,'Andvari_Ring','Andvari\'s Ring','Etc',1,500,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7835,'Dusk_Glow','Dusk Glow','Etc',1,500,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7836,'Dawn_Essence','Dawn Essence','Etc',1,500,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7837,'Cold_Moonlight','Cold Moonlight','Etc',1,500,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7838,'Hazy_Starlight','Hazy Starlight','Etc',1,500,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7839,'Crystal_Key','Crystal Key','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7840,'Valkyrie_Gift','Valkyrie\'s Gift','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7841,'Spotted_Paper','Stained Piece Of Paper','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7842,'Torn_Paper','Torn Piece Of Paper','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7843,'Old_Paper','Old Piece Of Paper','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7844,'Burnt_Paper','Burnt Pieces Of Paper','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7845,'Copy_Of_Spotted_Paper','Copy Of Spotted Paper','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7846,'Copy_Of_Torn_Paper','Copy Of Torn Paper','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7847,'Copy_Of_Old_Paper','Copy Of Old Paper','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7848,'Copy_Of_Burnt_Paper','Copy Of Burnt Paper','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7849,'Soul_Crystal','Soul Crystal','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7850,'Wooden_Block_','Wooden Block','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7851,'Pass_F1','Wii Raffle Ticket','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7852,'Pass_F2','Divx Player Raffle Ticket','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7853,'Pass_F3','iPod nano Raffle Ticket','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7854,'Pass_CF','Comodo Festival Ticket','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7855,'Heart','Heart','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7856,'Girl_Bunch_Of_Flower_','Girl\'s Bouquet','Etc',20,50); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7857,'Handmade_Kitty_Doll','Hand-made Kitty Doll','Etc',20,30); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7858,'Dragonball_Yellow_','Dragonball Yellow','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7859,'Game_Ticket','Game Ticket','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7860,'Peeps','Peeps','Etc',50); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7861,'Jelly_Bean','Jelly Bean','Etc',50); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7862,'Marshmallow','Marshmallow','Etc',50); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7863,'GOLD_ID4','Special Gold','Etc',20,200,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7864,'Love_Flower','Love Flower','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7865,'Gold_Pouch','Gold Pouch','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7866,'Certificate','Certificate','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7867,'SesamePouch','Sesame Bag','Etc',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7868,'Water','Fresh Water','Etc',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7869,'RicePouch','Rice Pouch','Etc',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7870,'Corn','Corn','Etc',5,20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7871,'BeanPouch','Bean Bag','Etc',10,20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7872,'Grass','Herb','Etc',10,30); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7873,'MVP_Monster_Scroll','MVP Monster Scroll','Etc',10,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7874,'Monster_Scroll','Create Monster Scroll','Etc',10,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7875,'Pirate_Box','Pirate Treasure','Etc',300000,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7876,'Gold_Key','Golden Key','Etc',50,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7877,'Red_Ring','Red Ring','Etc',100,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7878,'Lusalka_Hair','Lusalka\'s Hair','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7879,'Golden_Thread','Golden Thread','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7880,'Babayaga_Silver_Spoon','Baba Yaga\'s Silver Spoon','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7881,'Book_Of_Magic','Mystery Magic Book','Etc',50,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7882,'Pointed_Branch','Sharp Branch','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7883,'Pointed_Wooden_Flute','Wooden Flute','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7884,'Jade_Plate','Jade Plate','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7885,'Sacred_Arrow','Sacred Arrow','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7886,'Bean_Paste','Bean Paste','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7887,'Dried_Fruit_Box','Dried Fruit Box','Etc',30); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7888,'Bag_Of_Nuts','Bag of Nuts','Etc',30); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7889,'Chicken_Feed','Chicken Feed','Etc',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7891,'Mug','Mug','Etc',2,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7892,'Charcoal','Charcoal','Etc',10,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7893,'Sulfur','Sulphur','Etc',10,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7894,'Nitrate','Nitrogen Acid','Etc',10,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7895,'TRO_Memory_Book01','Rama5 Book','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7896,'TRO_Memory_Book02','Loykrathong Book','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7897,'TRO_Memory_Book03','Constitution Book','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7898,'VVS_Balmung','VV Strong Balmung','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7899,'Spiritualist_Dagger','Dagger Of Psychic','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7900,'Jenoss_Ring1','Jonathan Family Ring','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7901,'Jenoss_Ring2','Jillberriel Family Ring','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7902,'Jenoss_Ring3','Jessur Family Ring','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7903,'Jenoss_Ring4','Jenoss Family Ring','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7904,'Piano_Key','Piano Key','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7905,'Rok_Star_Badge_','Rok Star Badge','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7906,'Poppy_Wreath','Poppy Wreath','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7907,'Bobbin_Of_Goddess','Bobbin Of Goddess','Etc',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7908,'Louis_Hair_Coupon','Louise\'s Beauty Coupon','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7909,'Stolen_Cookie','Stolen Cookie','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7910,'Stolen_Candy','Stolen Candy','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7911,'Yulia_Hat','Yulia\'s Hat','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7912,'Portable_Snowman','Portable Snowman Machine','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7913,'Test_Certificate','Battle Test Certificate','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7914,'Ancient_Document_TW','Ancient Language Document','Etc',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7915,'Copper_Coin_','Bronze Coin','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (7916,'Silver_Coin_','Silver Coin','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7917,'Magic_Potion','Magic Potion','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7918,'Particle_Of_Memory','Fragment Of Memory','Etc',2000,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7919,'Festival_Ticket','Festival Ticket','Etc',10,10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7920,'Hero\'s_Arsenal','He\'s Arsenal','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7921,'Essence_Of_Dragon','Essence Of Dragon','Etc',1000,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7922,'RWC_Ticket','RWC Voucher Items','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7923,'KRATHONG_','Krathong','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7924,'Gold_Paper','Gold Paper','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7925,'Silver_Paper','Silver Paper','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7926,'Incense','Incense','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7927,'Candle_TW','Candle TW','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7928,'Brazilian_Flag_','Brazil National Flag','Etc',10,10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7929,'Golden_Coin_','Gold Coin','Etc',10,10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7930,'Cowking\'s_Nose_Ring','Devil\'s Cattle Ring','Etc',1000,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7931,'Poison_Kit','Poison Kit','Etc',1,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7932,'Poison_Herb_Nerium','Poison Herb Nerium','Etc',1,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7933,'Poison_Herb_Rantana','Poison Herb Rantana','Etc',1,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7934,'Poison_Herb_Makulata','Poison Herb Makulata','Etc',1,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7935,'Poison_Herb_Seratum','Poison Herb Seratum','Etc',1,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7936,'Poison_Herb_Scopolia','Poison Herb Scoporia','Etc',1,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7937,'Poison_Herb_Amoena','Poison Herb Amoena','Etc',1,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7938,'Light_Granule','Light Granule','Etc',1500,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7939,'Elder_Branch','Elder Branch','Etc',1500,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7940,'Special_Alloy_Trap','Special Alloy Trap','Etc',300,2,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (7941,'Halloween_Ticket','Halloween Ticket','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7942,'Letter_From_Chico','Chico Cesar Letter','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7943,'Caskinya','Caskinya','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7944,'Sealed_Box','Sealed Box','Etc',10,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7945,'Almighty_Charm','Universal Amulet','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (7946,'Valentine_Gold_Ring','Gold Ring Of Valentine','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (7947,'Valentine_Silver_Ring','Silver Ring Of Valentine','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7948,'Box','Box','Etc',10,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7949,'Woven_Wool','Woven Wool','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7950,'Ayothaya_Ticket','Ayothaya Fest Ticket','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7951,'Gold_Tulip','Golden Tulip Flower','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7952,'Gift_From_Romiros','Gift Of Lomi Ross','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7953,'Gift_From_Juliedge','Gift Of Juliet','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7954,'Festival_Ticket_','Summer Festival Ticket','Etc',10,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (7955,'Lost_Card1','Lost Card1','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (7956,'Lost_Card2','Lost Card2','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (7957,'Lost_Card3','Lost Card3','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (7958,'Lost_Card4','Lost Card4','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`) VALUES (7959,'Ancient_Gold_Coin','Ancient Gold Coin','Etc',100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`) VALUES (7960,'Ancient_Silver_Coin','Ancient Silver Coin','Etc',100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7961,'Weapon_Exchange','Weapon Exchange','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7962,'Treasure_Map1','Treasure Map1','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7963,'Treasure_Map2','Treasure Map2','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7964,'Treasure_Map3','Treasure Map3','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7965,'Treasure_Map4','Treasure Map4','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7966,'Weird_Parchment1','Weird Parchment1','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7967,'Weird_Parchment2','Weird Parchment2','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7968,'Weird_Parchment3','Weird Parchment3','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (7969,'Weird_Parchment4','Weird Parchment4','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7970,'Unwritten_Letter1','Unwritten Letter1','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7971,'Unwritten_Letter2','Unwritten Letter2','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7972,'Oath_Day_Letter','Oath Day Letter','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (7973,'Immortality_Egg','Immortality Egg','Etc',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (7974,'Illusion_Piece','Illusion Piece','Etc',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7975,'Cupid_Choco','Cupid Choco','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (7976,'Gf_Magic_Coin','Gf Magic Coin','Etc',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7977,'Hunting_Medal_Badge','Hunting Medal Badge','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7978,'Spring_Stanza1','Spring Stanza1','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7979,'Spring_Stanza2','Spring Stanza2','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7980,'Spring_Stanza3','Spring Stanza3','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7981,'Spring_Stanza4','Spring Stanza4','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7982,'Spring_Stanza5','Spring Stanza5','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7983,'Spring_Stanza6','Spring Stanza6','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7984,'Spring_Stanza7','Spring Stanza7','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7985,'Spring_Stanza8','Spring Stanza8','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7986,'Spring_Stanza9','Spring Stanza9','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7987,'Spring_Stanza10','Spring Stanza10','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7988,'Spring_Stanza11','Spring Stanza11','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7989,'Spring_Stanza12','Spring Stanza12','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7990,'Spring_Stanza13','Spring Stanza13','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7991,'Spring_Stanza14','Spring Stanza14','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7992,'Spring_Stanza15','Spring Stanza15','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7993,'Spring_Stanza16','Spring Stanza16','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7994,'Spring_Stanza17','Spring Stanza17','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7995,'Spring_Stanza18','Spring Stanza18','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7996,'Spring_Stanza19','Spring Stanza19','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7997,'Spring_Stanza20','Spring Stanza20','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7998,'Spring_Stanza21','Spring Stanza21','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (7999,'Spring_Stanza22','Spring Stanza22','Etc',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (11000,'Prontera_Book_01','History book of Prontera','Etc',8000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (11001,'Adventure_Story01','Adventure Story Vol.1','Etc',8000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (11002,'Great_Chef_Orleans01','Chef King Orleans Vol.1','Etc',8000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (11003,'Legend_Of_Kafra01','Kafra Legend Vol.1','Etc',8000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (11004,'Mercenary_Rebellion','Old Book','Etc',10000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (11005,'Tyrant_Schmidt','Rune Royal Family Book','Etc',10000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (11006,'Blood_Flower01','Blood Flower Vol.1','Etc',8000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (11007,'Blood_Flower02','Blood Flower Vol.2','Etc',8000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (11008,'Barmund','Biographical Dictionary Copy Edition','Etc',10000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (11009,'Adventure_Story02','Adventure Story Vol.2','Etc',8000,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (11010,'Reward_List_Book','Battlegrounds Catalog','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (11011,'Barmund_Note','Varmunt\'s Note','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (11012,'Expedition_Report','Expedition Report','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (11013,'Expedition_Report_Vol1','Expedition Report Vol1','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (11014,'Expedition_Report_Vol2','Expedition Report Vol2','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (11015,'Expedition_Report_Vol3','Expedition Report Vol3','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (11016,'Expedition_Report_Vol4','Expedition Report Vol4','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (11017,'Reward_List_Book2','KVM Reward Items Catalog','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (11018,'Splendide_Selling_Item','Splendide Selling Item','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (11019,'Manuk_Selling_Item','Manuk Selling Item','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (11020,'Japan_Book1','Japan Book1','Etc',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (11021,'Japan_Book2','Japan Book2','Etc',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (11022,'Mix_Cook_Book','Mix Cook Book','Etc',10,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (11023,'Increase_Stamina_Study','Increase Stamina Study','Etc',10,50,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (11024,'Vital_Drink_CB','Vital Drink CB','Etc',10,50,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11025,'Swordman_Book_Basic','Swordman Book Basic','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11026,'Swordman_Book_Practice','Swordman Book Practice','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11027,'Swrodman_Book_Misc','Swrodman Book Misc','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11028,'Thief_Book_Basic','Thief Book Basic','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11029,'Thief_Book_Practice','Thief Book Practice','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11030,'Thief_Book_Misc','Thief Book Misc','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11031,'Archer_Book_Basic','Archer Book Basic','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11032,'Archer_Book_Practice','Archer Book Practice','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11033,'Archer_Book_Misc','Archer Book Misc','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11034,'Acol_Book_Basic','Acol Book Basic','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11035,'Acol_Book_Practice','Acol Book Practice','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11036,'Acol_Book_Misc','Acol Book Misc','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11037,'Mage_Book_Basic','Mage Book Basic','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11038,'Mage_Book_Practice','Mage Book Practice','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11039,'Mage_Book_Misc','Mage Book Misc','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11040,'Mer_Book_Basic','Mer Book Basic','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11041,'Mer_Book_Practice','Mer Book Practice','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11042,'Mer_Book_Misc','Mer Book Misc','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11043,'TK_Book_Basic','TK Book Basic','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11044,'TK_Book_Practice','TK Book Practice','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11045,'TK_Book_Misc','TK Book Misc','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11046,'Ninja_Book_Basic','Ninja Book Basic','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11047,'Ninja_Book_Practice','Ninja Book Practice','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11048,'Ninja_Book_Misc','Ninja Book Misc','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11049,'Gun_Book_Basic','Gun Book Basic','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11050,'Gun_Book_Practice','Gun Book Practice','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11051,'Gun_Book_Misc','Gun Book Misc','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11052,'SN_Book_Basic','SN Book Basic','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11053,'SN_Book_Practice','SN Book Practice','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11054,'SN_Book_Misc','SN Book Misc','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11055,'Basic_Adventure','Basic Adventure','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11056,'Elemental_Spirit_Guide','Elemental Spirit Guide','Etc',1000,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11057,'Feb_Sweets','February Sweets','Etc',20,50); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (11058,'Novice_Combi_Book','Novice Combi Book','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (11059,'WoE_TE_Rental_List','WoE TE Rental List','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (11060,'Energy_Xtal_Combi_Book','Energy Crystal Book','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11061,'Honor_Proof_Exchange_List','Honor Proof Exchange List','Etc',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (11575,'Lucky_Cookie_B','Lucky Cookie','Etc',10,30,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (11576,'Lucky_Candy_Cane_B','Lucky Lollipop','Etc',10,30,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (11579,'Lucky_Candy_B','Lucky Candy','Etc',10,30,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_gunslinger`,`job_rebellion`,`location_ammo`,`equip_level_min`) VALUES (13200,'Bullet','Bullet','Ammo','Bullet',1,1,25,true,true,true,1); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_gunslinger`,`job_rebellion`,`location_ammo`,`equip_level_min`,`script`) VALUES (13201,'Silver_Bullet','Surplus Silver Bullet','Ammo','Bullet',15,2,15,true,true,true,1,'bonus bAtkEle,Ele_Holy;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_gunslinger`,`job_rebellion`,`location_ammo`,`equip_level_min`,`script`) VALUES (13202,'Shell_Of_Blood','Surplus Bloody Shell','Ammo','Bullet',30,2,30,true,true,true,1,'bonus2 bAddEff,Eff_Bleeding,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`class_all`,`gender`,`location_ammo`,`script`) VALUES (13203,'Flare_Sphere','Surplus Flare Sphere','Ammo','Grenade',80,5,50,false,'Female',true,'bonus bAtkEle,Ele_Fire;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`class_all`,`gender`,`location_ammo`,`script`) VALUES (13204,'Lighting_Sphere','Surplus Lightning Sphere','Ammo','Grenade',80,5,50,false,'Female',true,'bonus bAtkEle,Ele_Wind;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`class_all`,`gender`,`location_ammo`,`script`) VALUES (13205,'Poison_Sphere','Surplus Poison Sphere','Ammo','Grenade',80,5,50,false,'Female',true,'bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`class_all`,`gender`,`location_ammo`,`script`) VALUES (13206,'Blind_Sphere','Surplus Blind Sphere','Ammo','Grenade',80,5,50,false,'Female',true,'bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Blind,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`class_all`,`gender`,`location_ammo`,`script`) VALUES (13207,'Freezing_Sphere','Surplus Freezing Sphere','Ammo','Grenade',80,5,50,false,'Female',true,'bonus bAtkEle,Ele_Water;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`job_gunslinger`,`job_rebellion`,`location_ammo`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13208,'Gong_Bug','Sow Bug','Ammo','Bullet',5,50,true,true,true,50,100,true,true,true,true,true,true,true,'bonus2 bAddEff,Eff_Stun,1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`class_all`,`gender`,`location_ammo`) VALUES (13210,'Slug_Bullet_1','Slug Ammunition L','Ammo','Bullet',250,250,30,false,'Female',true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`class_all`,`gender`,`location_ammo`) VALUES (13211,'Slug_Bullet_2','Slug Ammunition M','Ammo','Bullet',500,500,30,false,'Female',true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`class_all`,`gender`,`location_ammo`) VALUES (13212,'Slug_Bullet_3','Slug Ammunition H','Ammo','Bullet',750,750,30,false,'Female',true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`class_all`,`gender`,`location_ammo`) VALUES (13213,'Slug_Bullet_4','Slug Ammunition SH','Ammo','Bullet',1000,1000,30,false,'Female',true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`class_all`,`gender`,`location_ammo`) VALUES (13214,'Slug_Bullet_5','Slug Ammunition XH','Ammo','Bullet',1200,1200,30,false,'Female',true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_gunslinger`,`job_rebellion`,`location_ammo`,`equip_level_min`,`script`) VALUES (13215,'AP_Ammo','Armor-Piercing Bullet','Ammo','Bullet',15,2,50,true,true,true,100,'bonus bAtkEle,Ele_Neutral;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_gunslinger`,`job_rebellion`,`location_ammo`,`equip_level_min`,`script`) VALUES (13216,'Blaze_Bullet','Blazing Bullet','Ammo','Bullet',10,2,40,true,true,true,100,'bonus bAtkEle,Ele_Fire;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_gunslinger`,`job_rebellion`,`location_ammo`,`equip_level_min`,`script`) VALUES (13217,'Freezing_Bullet','Freezing Bullet','Ammo','Bullet',10,2,40,true,true,true,100,'bonus bAtkEle,Ele_Water;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_gunslinger`,`job_rebellion`,`location_ammo`,`equip_level_min`,`script`) VALUES (13218,'Electric_Shock_Bullet','Lightning Bullet','Ammo','Bullet',10,2,40,true,true,true,100,'bonus bAtkEle,Ele_Wind;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_gunslinger`,`job_rebellion`,`location_ammo`,`equip_level_min`,`script`) VALUES (13219,'Magical_Stone_Bullet','Magic Stone Bullet','Ammo','Bullet',10,2,40,true,true,true,100,'bonus bAtkEle,Ele_Earth;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_gunslinger`,`job_rebellion`,`location_ammo`,`equip_level_min`,`script`) VALUES (13220,'Sanctified_Bullet','Purifying Bullet','Ammo','Bullet',10,2,40,true,true,true,100,'bonus bAtkEle,Ele_Holy;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_gunslinger`,`job_rebellion`,`location_ammo`,`equip_level_min`,`script`) VALUES (13221,'Silver_Bullet_','Silver Bullet','Ammo','Bullet',5,2,15,true,true,true,1,'bonus bAtkEle,Ele_Holy;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_gunslinger`,`job_rebellion`,`location_ammo`,`equip_level_min`,`script`) VALUES (13222,'Shell_Of_Blood_','Bloody Shell','Ammo','Bullet',10,2,30,true,true,true,1,'bonus2 bAddEff,Eff_Bleeding,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`class_all`,`gender`,`location_ammo`,`script`) VALUES (13223,'Flare_Sphere_','Flare Sphere','Ammo','Grenade',15,5,50,false,'Female',true,'bonus bAtkEle,Ele_Fire;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`class_all`,`gender`,`location_ammo`,`script`) VALUES (13224,'Lighting_Sphere_','Lightning Sphere','Ammo','Grenade',15,5,50,false,'Female',true,'bonus bAtkEle,Ele_Wind;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`class_all`,`gender`,`location_ammo`,`script`) VALUES (13225,'Poison_Sphere_','Poison Sphere','Ammo','Grenade',15,5,50,false,'Female',true,'bonus bAtkEle,Ele_Poison;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`class_all`,`gender`,`location_ammo`,`script`) VALUES (13226,'Blind_Sphere_','Blind Sphere','Ammo','Grenade',15,5,50,false,'Female',true,'bonus bAtkEle,Ele_Dark;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`class_all`,`gender`,`location_ammo`,`script`) VALUES (13227,'Freezing_Sphere_','Freezing Sphere','Ammo','Grenade',15,5,50,false,'Female',true,'bonus bAtkEle,Ele_Water;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_gunslinger`,`job_rebellion`,`location_ammo`,`equip_level_min`,`script`) VALUES (13228,'Flare_Bullet','Flare Bullet','Ammo','Bullet',10,2,20,true,true,true,1,'bonus bAtkEle,Ele_Fire;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_gunslinger`,`job_rebellion`,`location_ammo`,`equip_level_min`,`script`) VALUES (13229,'Lightning_Bullet','Lightning Bullet','Ammo','Bullet',10,2,20,true,true,true,1,'bonus bAtkEle,Ele_Wind;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_gunslinger`,`job_rebellion`,`location_ammo`,`equip_level_min`,`script`) VALUES (13230,'Ice_Bullet','Ice Bullet','Ammo','Bullet',10,2,20,true,true,true,1,'bonus bAtkEle,Ele_Water;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_gunslinger`,`job_rebellion`,`location_ammo`,`equip_level_min`,`script`) VALUES (13231,'Poison_Bullet','Poison Bullet','Ammo','Bullet',10,2,20,true,true,true,1,'bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_gunslinger`,`job_rebellion`,`location_ammo`,`equip_level_min`,`script`) VALUES (13232,'Blind_Bullet','Blind Bullet','Ammo','Bullet',10,2,20,true,true,true,1,'bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Blind,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_ninja`,`location_ammo`,`equip_level_min`) VALUES (13250,'Shuriken','Shuriken','Ammo','Shuriken',4,1,10,true,true,1); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_ninja`,`location_ammo`,`equip_level_min`) VALUES (13251,'Nimbus_Shuriken','Nimbus Shuriken','Ammo','Shuriken',10,1,30,true,true,20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_ninja`,`location_ammo`,`equip_level_min`) VALUES (13252,'Flash_Shuriken','Flash Shuriken','Ammo','Shuriken',20,1,45,true,true,40); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_ninja`,`location_ammo`,`equip_level_min`) VALUES (13253,'Sharp_Leaf_Shuriken','Sharp Leaf Shuriken','Ammo','Shuriken',40,1,70,true,true,60); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_ninja`,`location_ammo`,`equip_level_min`) VALUES (13254,'Thorn_Needle_Shuriken','Thorn Needle Shuriken','Ammo','Shuriken',100,1,100,true,true,80); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_ninja`,`location_ammo`,`equip_level_min`,`script`) VALUES (13255,'Kunai_Of_Icicle','Icicle Kunai','Ammo','Kunai',10,1,30,true,true,1,'bonus bAtkEle,Ele_Water;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_ninja`,`location_ammo`,`equip_level_min`,`script`) VALUES (13256,'Kunai_Of_Black_Soil','Black Earth Kunai','Ammo','Kunai',10,1,30,true,true,1,'bonus bAtkEle,Ele_Earth;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_ninja`,`location_ammo`,`equip_level_min`,`script`) VALUES (13257,'Kunai_Of_Furious_Wind','High Wind Kunai','Ammo','Kunai',10,1,30,true,true,1,'bonus bAtkEle,Ele_Wind;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_ninja`,`location_ammo`,`equip_level_min`,`script`) VALUES (13258,'Kunai_Of_Fierce_Flame','Heat Wave Kunai','Ammo','Kunai',10,1,30,true,true,1,'bonus bAtkEle,Ele_Fire;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_ninja`,`location_ammo`,`equip_level_min`,`script`) VALUES (13259,'Kunai_Of_Deadly_Poison','Fell Poison Kunai','Ammo','Kunai',10,1,30,true,true,1,'bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_ammo`,`equip_level_min`) VALUES (13260,'Apple_Bomb','Apple Bomb','Ammo','Throwweapon',100,1,true,true,true,true,true,99); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_ammo`,`equip_level_min`) VALUES (13261,'Coconut_Bomb','Coconut Bomb','Ammo','Throwweapon',100,1,true,true,true,true,true,99); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_ammo`,`equip_level_min`) VALUES (13262,'Melon_Bomb','Melon Bomb','Ammo','Throwweapon',100,1,true,true,true,true,true,99); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_ammo`,`equip_level_min`) VALUES (13263,'Pineapple_Bomb','Pineapple Bomb','Ammo','Throwweapon',100,1,true,true,true,true,true,99); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_ammo`,`equip_level_min`) VALUES (13264,'Banana_Bomb','Banana Bomb','Ammo','Throwweapon',100,1,true,true,true,true,true,99); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_ammo`,`equip_level_min`) VALUES (13265,'Black_Lump','Black Lump','Ammo','Throwweapon',100,50,true,true,true,true,true,99); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_ammo`,`equip_level_min`) VALUES (13266,'Black_Hard_Lump','Hard Black Lump','Ammo','Throwweapon',100,50,true,true,true,true,true,99); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_ammo`,`equip_level_min`) VALUES (13267,'Very_Hard_Lump','Extremely Hard Black Lump','Ammo','Throwweapon',100,50,true,true,true,true,true,99); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_ammo`,`equip_level_min`,`script`) VALUES (13268,'Mysterious_Powder','Mysterious Powder','Ammo','Throwweapon',100,10,true,true,true,true,true,99,'sc_start SC_MYSTERIOUS_POWDER,10000,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_ammo`,`equip_level_min`,`script`) VALUES (13269,'Boost500_To_Throw','Throwing Boost 500','Ammo','Throwweapon',100,10,true,true,true,true,true,99,'sc_start SC_BOOST500,500000,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_ammo`,`equip_level_min`,`script`) VALUES (13270,'Full_SwingK_To_Throw','Throwing Full Swing K','Ammo','Throwweapon',100,50,true,true,true,true,true,99,'sc_start SC_FULL_SWING_K,500000,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_ammo`,`equip_level_min`,`script`) VALUES (13271,'Mana_Plus_To_Throw','Throwing Mana Plus','Ammo','Throwweapon',100,50,true,true,true,true,true,99,'sc_start SC_MANA_PLUS,500000,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_ammo`,`equip_level_min`,`script`) VALUES (13272,'Cure_Free_To_Throw','Throwing Cure Free','Ammo','Throwweapon',100,50,true,true,true,true,true,99,'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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_ammo`,`equip_level_min`,`script`) VALUES (13273,'Stamina_Up_M_To_Throw','Throwing Muramura M','Ammo','Throwweapon',100,10,true,true,true,true,true,99,'sc_start SC_MUSTLE_M,500000,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_ammo`,`equip_level_min`,`script`) VALUES (13274,'Digestive_F_To_Throw','Throwing Falmons F','Ammo','Throwweapon',100,10,true,true,true,true,true,99,'sc_start SC_LIFE_FORCE_F,500000,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_ammo`,`equip_level_min`,`script`) VALUES (13275,'HP_Inc_PotS_To_Throw','Throwing Increase HP Potion (Small)','Ammo','Throwweapon',100,20,true,true,true,true,true,99,'/* Item bonus in source because of BaseLevel check */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_ammo`,`equip_level_min`,`script`) VALUES (13276,'HP_Inc_PotM_To_Throw','Throwing Increase HP Potion (Medium)','Ammo','Throwweapon',100,40,true,true,true,true,true,99,'/* Item bonus in source because of BaseLevel check */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_ammo`,`equip_level_min`,`script`) VALUES (13277,'HP_Inc_PotL_To_Throw','Throwing Increase HP Potion (Large)','Ammo','Throwweapon',100,80,true,true,true,true,true,99,'/* Item bonus in source because of BaseLevel check */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_ammo`,`equip_level_min`,`script`) VALUES (13278,'SP_Inc_PotS_To_Throw','Throwing Increase SP Potion (Small)','Ammo','Throwweapon',100,20,true,true,true,true,true,99,'/* Item bonus in source because of BaseLevel check */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_ammo`,`equip_level_min`,`script`) VALUES (13279,'SP_Inc_PotM_To_Throw','Throwing Increase SP Potion (Medium)','Ammo','Throwweapon',100,40,true,true,true,true,true,99,'/* Item bonus in source because of BaseLevel check */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_ammo`,`equip_level_min`,`script`) VALUES (13280,'SP_Inc_PotL_To_Throw','Throwing Increase SP Potion (Large)','Ammo','Throwweapon',100,80,true,true,true,true,true,99,'/* Item bonus in source because of BaseLevel check */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_ammo`,`equip_level_min`,`script`) VALUES (13281,'En_White_PotZ_To_Throw','Throwing Concentrated White Potion Z','Ammo','Throwweapon',100,70,true,true,true,true,true,99,'sc_start SC_EXTRACT_WHITE_POTION_Z,500000,20; itemheal 1000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_ammo`,`equip_level_min`,`script`) VALUES (13282,'Vitata500_To_Throw','Throwing Vitata 500','Ammo','Throwweapon',100,50,true,true,true,true,true,99,'sc_start2 SC_VITATA_500,500000,20,5; itemheal 0,200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_ammo`,`equip_level_min`,`script`) VALUES (13283,'En_Cel_Juice_To_Throw','Throwing Ceromain Soup','Ammo','Throwweapon',100,50,true,true,true,true,true,99,'sc_start SC_EXTRACT_SALAMINE_JUICE,500000,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_ammo`,`equip_level_min`,`script`) VALUES (13284,'Savage_BBQ_To_Throw','Throwing Savage Full Roast','Ammo','Throwweapon',100,50,true,true,true,true,true,99,'sc_start SC_SAVAGE_STEAK,300000,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_ammo`,`equip_level_min`,`script`) VALUES (13285,'Wug_Cocktail_To_Throw','Throwing Cocktail Warg Blood','Ammo','Throwweapon',100,50,true,true,true,true,true,99,'sc_start SC_COCKTAIL_WARG_BLOOD,300000,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_ammo`,`equip_level_min`,`script`) VALUES (13286,'M_Brisket_To_Throw','Throwing Minor Stew','Ammo','Throwweapon',100,50,true,true,true,true,true,99,'sc_start SC_MINOR_BBQ,300000,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_ammo`,`equip_level_min`,`script`) VALUES (13287,'Siroma_Icetea_To_Throw','Throwing Siroma Iced Tea','Ammo','Throwweapon',100,50,true,true,true,true,true,99,'sc_start SC_SIROMA_ICE_TEA,300000,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_ammo`,`equip_level_min`,`script`) VALUES (13288,'Drocera_Stew_To_Throw','Throwing Drosera Herb Salad','Ammo','Throwweapon',100,50,true,true,true,true,true,99,'sc_start SC_DROCERA_HERB_STEAMED,300000,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_ammo`,`equip_level_min`,`script`) VALUES (13289,'Petti_Noodle_To_Throw','Throwing Petite Tail Soup','Ammo','Throwweapon',100,50,true,true,true,true,true,99,'sc_start SC_PUTTI_TAILS_NOODLES,300000,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_ammo`,`equip_level_min`,`script`) VALUES (13290,'Black_Thing_To_Throw','Throwing Black Mass','Ammo','Throwweapon',100,50,true,true,true,true,true,99,'sc_start SC_STOMACHACHE,60000,rand(5,10);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`job_ninja`,`location_ammo`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13291,'Starfish','Starfish','Ammo','Shuriken',5,110,true,true,50,100,true,true,true,true,true,true,true,'bonus bAtkEle,Ele_Neutral; bonus2 bAddEff,Eff_Stun,1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_ninja`,`location_ammo`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13292,'Dried_Squid','Dried Squid','Ammo','Kunai',10,20,50,true,true,1,100,true,true,true,true,true,true,true,'bonus bAtkEle,Ele_Neutral; bonus2 bAddEff,Eff_Stun,1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_ninja`,`location_ammo`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13293,'Flying_Fish','Flying Fish','Ammo','Kunai',10,20,50,true,true,1,100,true,true,true,true,true,true,true,'bonus bAtkEle,Ele_Neutral; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_ninja`,`location_ammo`,`equip_level_min`,`script`) VALUES (13294,'Explosive_Kunai','Explosive Kunai','Ammo','Kunai',100,1,50,true,true,100,'bonus bAtkEle,Ele_Neutral;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`attack`,`location_ammo`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13295,'Light_Shuriken','Light Shuriken','Ammo',5,5,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (16570,'Muscles_Story_J_Box','Muscle Knights Summertime Guide Box','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17438,'Three_Master_Package_II','Three Master Package II','Etc',10,10,100,true,true,true,true,true,true,true,'/* TODO */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17439,'Three_Master_Package_II10','Three Master Package II(10)','Etc',10,10,100,true,true,true,true,true,true,true,'/* TODO */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_alchemist`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_ammo`,`equip_level_min`) VALUES (18000,'Cannon_Ball','Cannon Ball','Ammo','Cannonball',100,10,100,true,true,true,true,true,true,99); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_alchemist`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_ammo`,`equip_level_min`,`script`) VALUES (18001,'Holy_Cannon_Ball','Holy Cannon Ball','Ammo','Cannonball',200,10,120,true,true,true,true,true,true,99,'bonus bAtkEle,Ele_Holy;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_alchemist`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_ammo`,`equip_level_min`,`script`) VALUES (18002,'Dark_Cannon_Ball','Dark Cannon Ball','Ammo','Cannonball',200,10,120,true,true,true,true,true,true,99,'bonus bAtkEle,Ele_Dark;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_alchemist`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_ammo`,`equip_level_min`,`script`) VALUES (18003,'Soul_Cannon_Ball','Soul Cannon Ball','Ammo','Cannonball',200,10,120,true,true,true,true,true,true,99,'bonus bAtkEle,Ele_Ghost;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_alchemist`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_ammo`,`equip_level_min`) VALUES (18004,'Iron_Cannon_Ball','Iron Cannon Ball','Ammo','Cannonball',500,10,250,true,true,true,true,true,true,99); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (22515,'Twisted_Key_of_Time','Twisted Key of Time','Etc',10,300); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_buyingstore`) VALUES (22516,'Dark_Red_Clot','Black As Night Piece','Etc',10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (22517,'Loki_Summon_Scroll','Rocker Summoning Scroll','Etc',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (22519,'Pc_Stop_Cancel','Stops Buff','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (22520,'Stops_Buff_Reset','Stops Buff Reset','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`) VALUES (22566,'Frost_Crystal','Last Year\'s Frost','Etc',20,100,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (22589,'Savage_Ora','Savage Ora Ora','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (22590,'Grand_Peco_Ora','Grand Peco Ora Ora','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (22591,'Dest_Wolf_Ora','Desert Wolf Ora Ora','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (22654,'Golden_Seal_Card','Golden Seal Card','Etc',20,50); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (22717,'Wanderer_Ball','Wanderer Ball','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (22718,'Lude_Ball','Lude Ball','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (22719,'Tatacho_Ball','Tatacho Ball','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (22720,'Novus_Ball','Novus Ball','Etc',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (22802,'Safe_to_6_Equipment_Certificate','Safe to 6 Equipment Certificate','Etc',10,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (22814,'Cat_Hand_Ticket','Cat Hand Ticket','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (22870,'Xmas_Package_14','Christmas Package','Etc',10,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22875,'Sealed_Beelzebub_Card','Sealed Beelzebub Card','Card',20,10,true,true,true,100,true,true,true,true,true,true,'bonus bVariableCastrate,-15; /*Item removed on 2014-12-17*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25000,'SPdrainStone_Top','SP Absorption Stone (Upper)','Etc',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25001,'DEFStone_Middle','Def Stone(Middle)','Card',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25002,'ChangeLUK_Middle','LUK Exchange Stone(Middle)','Etc',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25003,'ChangeSTR_Middle','STR Exchange Stone(Middle)','Etc',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25004,'ChangeAGI_Middle','AGI Exchange Stone(Middle)','Etc',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25005,'ChangeINT_Middle','INT Exchange Stone(Middle)','Etc',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25006,'ChangeVIT_Middle','VIT Exchange Stone(Middle)','Etc',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25007,'ChangeDEX_Middle','DEX Exchange Stone(Middle)','Etc',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25008,'ChangeVIT_Bottom','VIT Exchange Stone(Lower)','Etc',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25009,'ChangeAGI_Bottom','AGI Exchange Stone(Lower)','Etc',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25010,'ChangeDEX_Bottom','DEX Exchange Stone(Lower)','Etc',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25011,'ChangeLUK_Bottom','LUK Exchange Stone(Lower)','Etc',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25012,'ChangeSTR_Bottom','STR Exchange Stone(Lower)','Etc',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25013,'ChangeINT_Bottom','INT Exchange Stone(Lower)','Etc',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25014,'MDEFStone_Bottom','Mdef Stone(Lower)','Card',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25015,'EXPStone_Bottom','EXP Stone(Lower)','Card',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25016,'ATKStone_Bottom','ATK Stone (Lower)','Etc',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25017,'MATKStone_Bottom','MATK Stone (Lower)','Etc',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (25043,'Thorny_Vine_Flute','Thorny Vine Flute','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (25044,'Hard_Thorny_Vine','Hard Thorny Vine','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (25045,'Luxurious_Cloth','Luxurious Cloth','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (25046,'Boarding_Pass','Boarding Pass','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (25047,'Kahlunac','Kahlunac','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (25048,'Hearty_Lunchbox','Hearty Lunchbox','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (25049,'Basilac_Clam','Basilac Clam','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25058,'TwinkleEffect_Top','Twinkle Effect (Upper)','Etc',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25059,'GhostEffect_Middle','Ghost Effect (Middle)','Etc',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25060,'Critical_Stone','Critical Stone (Middle)','Etc',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25061,'Range_Stone','Range Stone (Middle)','Etc',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25062,'Greed_Stone','Greed Stone (Lower)','Etc',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25063,'MaxHP2_Stone','Health Stone (Lower)','Etc',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25064,'MaxSP2_Stone','Magic Stone (Lower)','Etc',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25065,'Detoxify_Stone','Detoxify Stone (Lower)','Etc',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25066,'Recovery_Stone','Recovery Stone (Lower)','Card',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25067,'CastingStone_Robe','Casting Stone (Garment)','Etc',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25068,'ASPDStone_Top','ASPD Stone (Upper)','Etc',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25069,'ReloadStone_Top','Reload Stone (Upper)','Etc',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25070,'ReloadStone_Middle','Reload Stone (Middle)','Etc',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25071,'ReloadStone_Bottom','Reload Stone (Lower)','Etc',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25072,'Kyrie_Stone','Kyrie Stone (Lower)','Etc',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (25127,'Silent_Energy_Particle','Silent Energy Particle','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (25128,'Weak_Energy_Particle','Weak Energy Particle','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (25129,'Unstable_Energy_Particle','Unstable Energy Particle','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (25130,'Sinister_Energy_Particle','Sinister Energy Particle','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (25131,'Fallen_Energy_Particle','Fallen Energy Particle','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (25132,'Pumpkin_Deco','Pumpkin Deco','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (25133,'Dried_White_Stem','Dried White Stem','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25136,'ElectricEffect_Middle','Electric Effect (Middle)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25137,'GreenFloor_Bottom','Green Floor Effect (Lower)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25138,'ShrinkEffect_Middle','Shrink Effect (Middle)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25139,'Identify_Stone','Identify Stone (Lower)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25141,'EXPStone_Middle','Experience Stone (Middle)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (25142,'Doram_Token','Doram Token','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (25143,'Gift_Stuffed_Doll','Gift Stuffed Doll','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (25144,'Bridge_Postured_Doll','Bridge Postured Doll','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (25145,'Burnt_Spector_Doll','Burnt Spector Doll','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (25146,'Cold_Blooded_Queen_Doll','Cold Blooded Queen Doll','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (25147,'Well_Eatenl_Rabbit_Doll','Well Eatenl Rabbit Doll','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (25148,'Cute_Starved_Demon_Doll','Cute Starved Demon Doll','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (25149,'Doll_With_Warm_Scarf','Doll With Warm Scarf','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (25150,'Hugging_Alice_Pilow','Hugging Alice Pilow','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (25151,'Rachels_Revolver','Rachel\'s Revolver','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (25152,'Cherish_Bouquet','Cherished Bouquet','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (25153,'Broken_Gun_Wreck','Broken Gun Wreck','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (25154,'Antique_Powder','Antique Gunpowder','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (25155,'Swz_Honor_Token','Schwarz\'s Honor Token','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (25156,'Piece_Of_Chimera','Piece of Chimera','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (25157,'Fallen_Leaves_Branch','Fallen Leaves Branch','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (25158,'Core_Jelly','Core Jelly','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (25159,'Heart_Hunter_Seal','Heart Hunter\'s Seal','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (25160,'Borrow_Book','Borrowed Book','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (25161,'Handmade_cookie2','Delicious Handmade Cookie','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (25162,'Anchovy_cookie','Crispy Anchovy','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (25163,'Arms_Shop_AD','Arms Shop Ad','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (25164,'Fresh_Tea_Leaves','Fresh Tea Leaves','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (25165,'High_Class_Tea','High Class Tea','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (25166,'Very_Shining_Ring','Very Shining Ring','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (25167,'Old_Letter','Old Letter','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25170,'MinorCastingStone_Robe','Minor Casting Stone (Garment)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25171,'EXPStone_Top','Experience Stone (Upper)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25172,'CastingStone_Top','Variable Casting Stone (Upper)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25173,'CastingStone_Middle','Variable Casting Stone (Middle)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25174,'CastingStone_Bottom','Variable Casting Stone (Lower)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25175,'LexAeternaStone_Middle','Lex Aeterna Stone (Middle)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25176,'BlueAuraEffect_Middle','Blue Aura Effect (Middle)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25177,'ShadowEffect_Middle','Shadow Effect (Middle)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25178,'PinkGlowEffect_Middle','Pink Glow Effect (Middle)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (25179,'Blessing_Star','Blessing Star','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (25180,'Old_Couple_Ring','Old Rings','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (25181,'Wood_Rosary','Wood Rosary','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (25182,'Assassin_PT_Dagger','Assassin\'s Mark Dagger','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (25183,'Deco_Thimble_Archer','Decorated Archer\'s Thimble','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (25184,'Portable_Sewingbox','Portable Sewingbox','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (25185,'Locket_Pendant','Locket Pendant','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25187,'Slug_Bullet','Slug Bullet','Etc',1200,1200); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25205,'ShrinkEffect_Bottom','Shrink Effect (Lower)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25206,'ElectricEffect_Top','Electric Effect (Upper)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (25223,'Para_Team_Coin','Eden Group Coin','Etc',100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25224,'WhiteBodyEffect_Middle','White Body Effect (Middle)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25225,'ExplodingEffect_Middle','Crimson Wave Effect (Middle)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25226,'WaterFieldEffect_Bottom','Water Field Effect (Lower)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25227,'Heal_Stone','Heal Stone (Lower)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25228,'Teleport_Stone','Teleport Stone (Lower)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25229,'Steal_Stone','Steal Stone (Lower)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25231,'Suspicious_Bottle','Suspicious Bottle','Etc',1000,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25232,'Cheap_Lubricant','Cheap Lubricant','Etc',1000,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25233,'Cotton_Tufts','Cotton Tufts','Etc',1000,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (25238,'New_Normal_Lubricant','New Normal Lubricant','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (25239,'New_Advanced_Lubricant','New Advanced Lubricant','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (25246,'Juice_Mix_Package','Juice Mix Package','Etc',100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (25247,'Purple_Ore','Purple Ore','Etc',100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (25248,'Purple_Ore_Crate','Purple Ore Crate','Etc',100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (25249,'Buffalo_Bandit_Mane','Buffalo Bandit Mane','Etc',100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (25250,'Rock_Ridge_Coin','Rock Ridge Coin','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (25256,'Hazy_Dream_Fragment','Hazy Dream Fragment','Etc',10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (25257,'Bloody_Love_Letter','Bloody Love Letter','Etc',780,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (25258,'Broken_Arrow','Broken Arrow','Etc',550,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (25260,'Fragment_of_Purple_Ore','Fragment of Purple Ore','Etc',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_buyingstore`) VALUES (25271,'Illusion_Stone','Illusion Stone','Etc',10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (25272,'Illusion_Gemstone','Illusion Gemstone','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25276,'Clean_Bone','Clean Bone','Etc',348,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25277,'Deadly_Poison_Powder','Deadly Poison Powder','Etc',644,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25278,'Bandits_Scarf','Bandit\'s Scarf','Etc',330,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25279,'Crude_Ammo','Crude Ammo','Etc',300,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25280,'Broken_Shotgun','Broken Shotgun','Etc',910,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25281,'Crude_Scimitar','Crude Scimitar','Etc',970,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25282,'Worn_Revolver','Worn Revolver','Etc',820,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25283,'Brown_Muffler','Brown Muffler','Etc',420,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25284,'Swamp_Bug_Shell','Swamp Bug Shell','Etc',230,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25285,'Brown_Rat_Tail','Brown Rat Tail','Etc',210,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (25290,'Sweets_Festival_Coin','Sweets Festival Coin','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25302,'DoubleAttack_Stone','Double Attack Stone (Garment)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25303,'Critical_Stone_Robe','Critical Stone (Garment)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25304,'Critical_Stone_Top','Critical Stone (Upper)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25305,'Critical_Stone_Bottom','Critical Stone (Lower)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25306,'CastStone_Robe','Variable Casting Stone (Garment)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (25375,'Powerful_Soul_Essence','Powerful Soul Essence','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (25377,'Luxurious_Pet_Food','Luxurious Pet Food','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25409,'SuraStone_Top','Champion Stone (Upper)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25410,'SuraStone_Middle','Champion Stone (Middle)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25411,'SuraStone_Lower','Champion Stone (Lower)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25412,'SuraStone_Robe','Sura Stone (Garment)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25413,'RangerStone_Top','Sniper Stone (Upper)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25414,'RangerStone_Middle','Sniper Stone (Middle)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25415,'RangerStone_Lower','Sniper Stone (Lower)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25416,'RangerStone_Robe','Ranger Stone (Garment)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25417,'SorcererStone_Top','Scholar Stone (Upper)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25418,'SorcererStone_Middle','Scholar Stone (Middle)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25419,'SorcererStone_Lower','Scholar Stone (Lower)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25420,'SorcererStone_Robe','Sorcerer Stone (Garment)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25445,'RuneknightStone_Top','Lord Knight Stone (Upper)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25446,'RuneknightStone_Middle','Lord Knight Stone (Middle)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25447,'RuneknightStone_Lower','Lord Knight Stone (Lower)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25448,'RuneknightStone_Robe','Rune Knight Stone (Garment)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25449,'GeneticStone_Robe','Genetic Stone (Garment)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25450,'GeneticStone_Top','Creator Stone (Upper)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25451,'GeneticStone_Middle','Creator Stone (Middle)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25452,'GeneticStone_Lower','Creator Stone (Lower)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25453,'WarlockStone_Top','High Wizard Stone (Upper)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25454,'WarlockStone_Middle','High Wizard Stone (Middle)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25455,'WarlockStone_Lower','High Wizard Stone (Lower)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25456,'WarlockStone_Robe','Warlock Stone (Garment)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (25464,'World_Moving_Rights','World Moving Rights','Etc',20,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25490,'ShadowchaserStone_Top','Stalker Stone (Upper)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25491,'ShadowchaserStone_Middle','Stalker Stone (Middle)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25492,'ShadowchaserStone_Lower','Stalker Stone (Lower)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25493,'ShadowchaserStone_Robe','Shadow Chaser Stone (Garment)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25494,'MechanicStone_Top','Mastersmith Stone (Upper)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25495,'MechanicStone_Middle','Mastersmith Stone (Middle)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25496,'MechanicStone_Lower','Mastersmith Stone (Lower)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25497,'MechanicStone_Robe','Mechanic Stone (Garment)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25498,'WanderMinstrelStone_Top','Clown Gypsy Stone (Upper)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25499,'WanderMinstrelStone_Middle','Clown Gypsy Stone (Middle)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25500,'WanderMinstrelStone_Lower','Clown Gypsy Stone (Lower)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (25501,'WanderMinstrelStone_Robe','Wanderer Minstrel Stone (Garment)','Etc',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (25670,'M_M_Defense','Modification Module (Defense)','Card',20,10,'.@r = getrefine(); .@def = 25; if (.@r >= 9) { .@def += 20; } else if (.@r >= 7) { .@def += 10; } bonus bDef,.@def;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (25671,'M_M_Magic_Defense','Modification Module (Magic Defense)','Card',20,10,'.@r = getrefine(); .@mdef = 2; if (.@r >= 9) { .@mdef += 6; } else if (.@r >= 7) { .@mdef += 3; } bonus bMDef,.@mdef;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (25672,'M_M_Vit','Modification Module (Vit)','Card',20,10,'bonus bVit,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (25673,'M_M_Luk','Modification Module (Luk)','Card',20,10,'bonus bLuk,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (25674,'M_M_Str','Modification Module (Str)','Card',20,10,'bonus bStr,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (25675,'M_M_Agi','Modification Module (Agi)','Card',20,10,'bonus bAgi,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (25676,'M_M_Int','Modification Module (Int)','Card',20,10,'bonus bInt,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (25677,'M_M_Dex','Modification Module (Dex)','Card',20,10,'bonus bDex,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (25678,'M_M_HP_recovery','Modification Module (HP recovery)','Card',20,10,'bonus bHPrecovRate,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (25679,'M_M_SP_recovery','Modification Module (SP recovery)','Card',20,10,'bonus bSPrecovRate,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (25680,'M_M_Spell5','Modification Module (Spell)','Card',20,10,'bonus bMatk,18; bonus bVariableCastrate,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (25681,'M_M_Attack_Delay_4','Modification Module (Attack Speed)','Card',20,10,'bonus bAspdRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (25682,'M_M_Fatal4','Modification Module (Fatal)','Card',20,10,'bonus bCritAtkRate,10; bonus bCritical,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (25683,'M_M_Expert_Archer5','Modification Module (Expert Archer)','Card',20,10,'bonus bLongAtkRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (25684,'M_M_Vital','Modification Module (Vital)','Card',20,10,'.@r = getrefine(); bonus bMaxHPrate,5; if (.@r >= 9) { bonus bMaxHP,1250; } else if (.@r >= 7) { bonus bMaxHP,500; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (25685,'M_M_Mental','Modification Module (Mental)','Card',20,10,'.@r = getrefine(); bonus bMaxSPrate,5; if (.@r >= 9) { bonus bMaxSP,250; } else if (.@r >= 7) { bonus bMaxSP,100; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (25686,'M_M_Heal','Modification Module (Heal)','Card',20,10,'.@r = getrefine(); .@val = 5; if (.@r >= 9) { .@val += 10; } else if (.@r >= 7) { .@val += 5; } bonus bHealPower,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (25687,'M_M_Power','Modification Module (Power)','Card',20,10,'.@r = getrefine(); bonus2 bAddClass,Class_All,5; if (.@r >= 9) { bonus bBaseAtk,50; } else if (.@r >= 7) { bonus bBaseAtk,25; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (25688,'M_M_Magic','Modification Module (Magic)','Card',20,10,'.@r = getrefine(); bonus bMatkRate,5; if (.@r >= 9) { bonus bMatk,50; } else if (.@r >= 7) { bonus bMatk,25; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (25689,'M_M_Shooter','Modification Module (Shooter)','Card',20,10,'.@r = getrefine(); .@val = 3; if (.@r >= 9) { .@val += 4; } else if (.@r >= 7) { .@val += 2; } bonus bLongAtkRate,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (25690,'M_M_Fast','Modification Module (Fast)','Card',20,10,'.@r = getrefine(); bonus bAspd,1; if (.@r >= 9) { bonus bAspdRate,6; } else if (.@r >= 7) { bonus bAspdRate,3; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (25691,'M_M_Caster','Modification Module (Caster)','Card',20,10,'.@r = getrefine(); .@val = -5; if (.@r >= 9) { .@val -= 6; } else if (.@r >= 7) { .@val -= 3; } bonus bVariableCastrate,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (25692,'M_M_Critical','Modification Module (Critical)','Card',20,10,'.@r = getrefine(); bonus bCritical,5; if (.@r >= 9) { bonus bCritAtkRate,10; } else if (.@r >= 7) { bonus bCritAtkRate,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (25693,'M_M_Delay_After_skill','Modification Module (Delay after skill)','Card',20,10,'.@r = getrefine(); .@val = -5; if (.@r >= 9) { .@val -= 10; } else if (.@r >= 7) { .@val -= 5; } bonus bDelayrate,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (25694,'M_M_Fixed_Casting','Modification Module (Fixed Casting)','Card',20,10,'.@r = getrefine(); .@val = -300; if (.@r >= 9) { .@val -= 400; } else if (.@r >= 7) { .@val -= 200; } bonus bFixedCast,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (25695,'M_M_Above_All','Modification Module (Above All)','Card',20,10,'.@r = getrefine(); bonus2 bSubEle,Ele_All,5; if (.@r >= 7) { bonus2 bSubSize,Size_All,5; if (.@r >= 9) { bonus2 bSubRace,RC_All,5; bonus2 bSubRace,RC_Player_Human,-5; } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (25696,'M_M_Drain_Life','Modification Module (Drain Life)','Card',20,10,'bonus2 bHPDrainRate,20,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (25697,'M_M_Drain_Soul','Modification Module (Drain Soul)','Card',20,10,'bonus2 bSPDrainRate,10,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (25698,'M_M_Magic_Healing','Modification Module (Magic Healing)','Card',20,10,'autobonus "{ bonus2 bHPRegenRate,400,500; }",20,10000,BF_MAGIC;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (25699,'M_M_Magic_Soul','Modification Module (Magic Soul)','Card',20,10,'autobonus "{ bonus2 bSPRegenRate,80,500; }",10,10000,BF_MAGIC;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (25700,'M_M_Unlimited_Vital','Modification Module (Unlimited Vital)','Card',20,10,'autobonus2 "{ bonus bVit,50; bonus2 bHPRegenRate,400,500; bonus2 bSPLossRate,20,1000; }",10,10000,BF_WEAPON|BF_MAGIC; /* unknown rate */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (25701,'M_M_Spell_Buster','Modification Module (Spell Buster)','Card',20,10,'autobonus "{ bonus bInt,50; bonus bMatkRate,15; bonus2 bAddClass,Class_All,-15; }",20,10000,BF_MAGIC; /* unknown rate */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (25702,'M_M_Firing_Shot','Modification Module (Firing Shot)','Card',20,10,'autobonus "{ bonus bDex,50; bonus bLongAtkRate,10; bonus2 bSPLossRate,20,1000; }",20,10000,BF_WEAPON; /* unknown rate */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (25703,'M_M_Overpower','Modification Module (Overpower)','Card',20,10,'autobonus "{ bonus bStr,50; bonus2 bAddClass,Class_All,15; bonus bMatkRate,-15; }",20,10000,BF_WEAPON; /* unknown rate */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (25704,'M_M_Fatal_Flash','Modification Module (Fatal Flash)','Card',20,10,'autobonus "{ bonus bStr,50; bonus bCritAtkRate,10; bonus2 bHPLossRate,300,1000; }",20,10000,BF_WEAPON; /* unknown rate */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (25705,'M_M_Lucky_Strike','Modification Module (Lucky Strike)','Card',20,10,'autobonus "{ bonus bLuk,50; bonus2 bMagicAtkEle,Ele_All,10; bonus2 bHPLossRate,300,1000; }",20,10000,BF_MAGIC; /* unknown rate */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`script`) VALUES (27012,'Kick_Step_Card','Kick Step Card','Card',20,10,true,'bonus bMaxHPrate,8; if((eaclass()&EAJ_THIRDMASK) == EAJ_MECHANIC){ bonus bLongAtkDef,30; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (27013,'Kick_&_Kick_Card','Kick & Kick Card','Card',20,10,true,'bonus2 bSkillAtk,"NC_VULCANARM",10+((getrefine()>=10)*20);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`script`) VALUES (27014,'Green_Cenere_Card','Green Cenere Card','Card',20,10,true,'bonus bMaxHPrate,2; autobonus2 "{ bonus2 bHPRegenRate,1000,1000; }",30,5000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`script`) VALUES (27015,'Repair_Robot_Turbo_Card','Repair Robot Turbo Card','Card',20,10,true,true,true,'bonus bHPrecovRate,25; bonus bSPrecovRate,25; .@r = getrefine(); bonus bHPGainValue,30+((.@r>=7)*10); bonus bSPGainValue,3+((.@r>=7)*3);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (27016,'Exploration_Rover_Turbo_Card','Exploration Rover Turbo Card','Card',20,10,true,'bonus2 bCriticalAddRace,RC_Formless,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`script`) VALUES (27017,'Scrap_Robots_Card','Scrap Robots Card','Card',20,10,true,'bonus2 bSubRace,RC_Formless,10*((getrefine()>=7)*5); /* TODO: Has a chance to gain accessories when a monster is killed. */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (27018,'GC109_Card','GC109 Card','Card',20,10,true,true,'bonus bDelayrate,-(1+(BaseLevel>=90)+(BaseLevel>=120));'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (27019,'DR815_Card','DR815 Card','Card',20,10,true,true,'bonus bHit,1+(BaseLevel>=90)+(BaseLevel>=120);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (27020,'T_W_O_Card','T W O Card','Card',20,10,true,'bonus2 bAddClass,Class_All,10; bonus3 bAutoSpell,"NPC_WIDESOULDRAIN",2,50+((getrefine()/3)*10);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (27025,'Lich_Lord_Card','Lich Lord Card','Card',20,10,true,true,'bonus bDef,30; bonus bMdef,10; bonus2 bAddEff,Eff_Silence,900; if(getequipid() == 28483){ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; } /* TODO: Confirm Mob ID to transform */ autobonus "{ bonus bIgnoreDefClass,Class_All; bonus bIgnoreMdefRace,RC_All; }",20,7000,BF_WEAPON|BF_MAGIC,"{ active_transform 1875,7000; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (27026,'Fire_Condor_Card','Fire Condor Card','Card',20,10,true,true,'bonus2 bVariableCastRate,"MG_FIREBALL",-50; bonus2 bSkillAtk,"MG_FIREBALL",100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`script`) VALUES (27027,'Fire_Sandman_Card','Fire Sandman Card','Card',20,10,true,'bonus bDef,50; bonus2 bSubDefEle,Ele_Fire,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (27028,'Fire_Frilldora_Card','Fire Frilldora Card','Card',20,10,true,'.@r = getrefine(); bonus2 bMagicAddEle,Ele_Earth,3+((.@r>=7)*5)+((.@r>=9)*7);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`script`) VALUES (27029,'Fire_Golem_Card','Fire Golem Card','Card',20,10,true,'bonus2 bSubDefEle,Ele_Fire,20; bonus2 bAddEle,Ele_Fire,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`script`) VALUES (27030,'Fulbuk_Card','Firebug Card','Card',20,10,true,true,true,'bonus3 bAddEff,Eff_Burning,700,ATF_WEAPON|ATF_MAGIC;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`script`) VALUES (27081,'Angry_Moonlight_Flower_Card','Angry Moonlight Flower Card','Card',20,10,true,'skill "PA_PRESSURE",4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`script`) VALUES (27082,'Angry_Nine_Tail_Card','Angry Nine Tail Card','Card',20,10,true,'.@val = 5; bonus bCritAtkRate,10; if (getrefine() >= 10) { .@val += 10; } bonus bCritical,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`script`) VALUES (27083,'Resentful_Bongun_Card','Resentful Bongun Card','Card',20,10,true,'bonus bBaseAtk,20; bonus bMatk,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`script`) VALUES (27084,'Resentful_Sohee_Card','Resentful Sohee Card','Card',20,10,true,'bonus bMatk,10; if (getrefine() >= 10) { bonus bMatkRate,2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (27085,'Resentful_Munak_Card','Resentful Munak Card','Card',20,10,true,'bonus bBaseAtk,15; bonus bMatk,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (27086,'Resentful_Soldier_Card','Resentful Soldier Card','Card',20,10,true,'if (getiteminfo(getequipid(EQI_COMPOUND_ON),11) == W_BOW) { bonus3 bAutoSpell,"AC_DOUBLE",5,30; if (getrefine() >= 10) { bonus2 bWeaponDamageRate,W_BOW,20; } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (27087,'Truthful_Wizard_Card','Truthful Wizard Card','Card',20,10,true,'bonus bMatk,25; autobonus "{ bonus bNoCastCancel; }",5,5000,BF_MAGIC,"{ showscript \\"This is the truth!\\"; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`script`) VALUES (27088,'Fury_Hero_Card','Fury Hero Card','Card',20,10,true,true,true,'bonus2 bAddClass,Class_All,2; bonus5 bAutoSpell,"SM_ENDURE",1,5,BF_SHORT,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`script`) VALUES (27101,'Sweet_Nightmare_Card','Sweet Nightmare Card','Card',20,10,true,'bonus bMatk,20; bonus bNoCastCancel;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`script`) VALUES (27102,'Matt_Drainliar_Card','Matt Drainliar Card','Card',20,10,true,true,true,'bonus2 bResEff,Eff_Burning,10000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`script`) VALUES (27103,'Living_Dead_Card','Living Dead Card','Card',20,10,true,'bonus bBaseAtk,20; bonus bUnbreakableWeapon; bonus bUnbreakableArmor;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`script`) VALUES (27104,'Furious_Dracula_Card','Furious Dracula Card','Card',20,10,true,'skill "PF_HPCONVERSION",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`script`) VALUES (27105,'Bomi_Card','Bomi Card','Card',20,10,true,'skill "HW_NAPALMVULCAN",4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`script`) VALUES (27106,'Awaken_Pere_Card','Awaken Pere Card','Card',20,10,true,'if (BaseJob == Job_Bard || BaseJob == Job_Dancer) { bonus bMatk,(15*getrefine()); }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`script`) VALUES (27107,'Playing_Pere_Card','Playing Pere Card','Card',20,10,true,'bonus2 bAddEle,Ele_Neutral,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_accessory`,`script`) VALUES (27108,'Singing_Pere_Card','Singing Pere Card','Card',20,10,true,'bonus2 bMagicAddEle,Ele_Neutral,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`script`) VALUES (27109,'Jitterbug_Card','Jitterbug Card','Card',20,10,true,true,true,'bonus2 bSubDefEle,Ele_Neutral,10; bonus bMaxHP,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`script`) VALUES (27110,'Furious_Gazeti_Card','Furious Gazeti Card','Card',20,10,true,'bonus bLongAtkDef,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (27111,'Furious_Snowier_Card','Furious Snowier Card','Card',20,10,true,true,'bonus2 bAddItemHealRate,11522,50; bonus2 bAddItemHealRate,11523,50; bonus2 bAddItemHealRate,11524,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`script`) VALUES (27112,'Furious_Ice Titan_Card','Furious Ice Titan Card','Card',20,10,true,'bonus bDef,(5*(1+getrefine()));'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`script`) VALUES (27113,'Awaken_Ktullanux_Card','Awaken Ktullanux Card','Card',20,10,true,'bonus2 bMagicAtkEle,Ele_Water,(20+(3*getrefine()));'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`script`) VALUES (27114,'Ominous_Solider_Card','Ominous Solider Card','Card',20,10,true,'bonus bMaxHPrate,(10+(getrefine()/3)); .@val = 50; if (BaseLevel >= 160) { .@val += 50; bonus bVit,3; } bonus bDef,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`script`) VALUES (27115,'Ominous_Permeter_Card','Ominous Permeter Card','Card',20,10,true,true,true,'.@r = getrefine(); bonus bInt,1; bonus bMaxSP,(80+10*(.@r/2)); if (.@r >= 7) { bonus bSPrecovRate,30; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (27116,'Ominous_Heater_Card','Ominous Heater Card','Card',20,10,true,true,'bonus bCritical,3; bonus bCritAtkRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (27117,'Ominous_Assaulter_Card','Ominous Assaulter Card','Card',20,10,true,'.@type = getiteminfo(getequipid(EQI_COMPOUND_ON),11); if (.@type == W_WHIP || .@type == W_MUSICAL || .@type == W_BOOK || .@type == W_2HSWORD || .@type == W_2HSPEAR) { .@r = getrefine(); bonus bCritical,5; bonus bBaseAtk,(3*.@r); } bonus bCritAtkRate,(10+.@r);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`script`) VALUES (27118,'Ominous_Freezer_Card','Ominous Freezer Card','Card',20,10,true,'bonus bMaxHPrate,10; bonus bStr,2; if (BaseLevel >= 160) { .@val = 10; } if (getrefine() >= 9) { .@val += 10; } if (.@val) { bonus2 bSkillAtk,"RK_HUNDREDSPEAR",.@val; bonus2 bSkillAtk,"LG_OVERBRAND",.@val; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`script`) VALUES (27119,'Ominous_Turtle_General_Card','Ominous Turtle General Card','Card',20,10,true,'bonus bDef,30; bonus bMdef,5; bonus2 bSubSize,Size_All,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (27120,'Iara_Card','Iara Card','Card',20,10,true,true,'skill "PR_STRECOVERY",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`script`) VALUES (27121,'Piranha_Card','Piranha Card','Card',20,10,true,'.@val = 10; if (getrefine() >= 9) { .@val += 5; } bonus2 bAddRace,RC_Fish,.@val; bonus2 bMagicAddRace,RC_Fish,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (27122,'Curupira_Card','Curupira Card','Card',20,10,true,'.@val = 3; .@r = getrefine(); if (.@r>=7) { .@val += 5; } if (.@r>=9) { .@val += 7; } bonus2 bMagicAddEle,Ele_Water,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`script`) VALUES (27123,'Tucan_Card','Toucan Card','Card',20,10,true,true,true,'.@val = 10; if (getrefine() >= 9) { .@val += 5; } bonus2 bMagicAddRace,RC_Insect,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`script`) VALUES (27124,'Jaguar_Card','Jaguar Card','Card',20,10,true,true,true,'.@val = 10; if (getrefine() >= 9) { .@val += 5; } bonus2 bMagicAddRace,RC_Brute,.@val; bonus2 bMagicAddRace,RC_Player_Doram,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (27125,'Headless_Mule_Card','Headless Mule Card','Card',20,10,true,true,'bonus2 bMagicAtkEle,Ele_Water,20; bonus2 bMagicAtkEle,Ele_Holy,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`script`) VALUES (27126,'Boitata_Card','Boitata Card','Card',20,10,true,'bonus2 bAddEle,Ele_Wind,40; bonus2 bAddEle,Ele_Earth,40; bonus2 bAddRace,RC_Brute,40; bonus2 bAddRace,RC_Player_Doram,40; bonus2 bAddRace,RC_Insect,40;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (27147,'Humanoid_Chimera_Card','Humanoid Chimera Card','Card',20,10,true,true,'bonus bHit,(BaseLevel >= 90 ? 15 : 5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (27148,'Material_Chimera_Card','Material Chimera Card','Card',20,10,true,true,'bonus bFlee,(BaseLevel >= 90 ? 20 : 10);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (27149,'Heart_Hunter_Card','Heart Hunter Card','Card',20,10,true,'.@type = getiteminfo(getequipid(EQI_COMPOUND_ON),11); .@r = getrefine(); if(.@type == 17 || .@type == 18 || .@type == 21){ bonus bLongAtkRate,5+.@r+(.@r >= 10 ? 5 : 0); }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`script`) VALUES (27150,'Toxic_Enchanted_Chimera_Card','Toxic Enchanted Chimera Card','Card',20,10,true,'bonus bMaxHP,1000; bonus bMaxSP,200; if(getrefine() >= 12){ bonus bMaxHPrate,15; bonus bMaxSPrate,15; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`script`) VALUES (27151,'Heart_Hunter_Evil_Card','Heart Hunter Evil Card','Card',20,10,true,'bonus2 bAddEffWhenHit,Eff_Freeze,3000 + (readparam(bInt) >= 110 ? 1000 : 0); bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`script`) VALUES (27152,'Cutie_Card','Cutie Card','Card',20,10,true,'bonus bMaxHPrate,10; .@r = getrefine()/2; bonus bAgi,.@r; bonus bAspdRate,.@r;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`script`) VALUES (27157,'Wood_Goblin_Card','Wood Goblin Card','Card',20,10,true,'.@r = getrefine(); bonus2 bAddEle,Ele_Water,(.@r >= 9 ? 10 : 5); bonus2 bAddEle,Ele_Earth,(.@r >= 9 ? 10 : 5); bonus2 bSubDefEle,Ele_Water,-5; bonus2 bSubDefEle,Ele_Earth,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`script`) VALUES (27158,'Les_Card','Les Card','Card',20,10,true,'bonus2 bSubEle,Ele_Wind,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`script`) VALUES (27159,'Uzhas_Card','Uzhas Card','Card',20,10,true,true,true,'bonus2 bMagicAddRace,RC_Demon,(getrefine() >= 9 ? 15 : 10);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`script`) VALUES (27160,'Vavayaga_Card','Vavayaga Card','Card',20,10,true,'bonus bFlee,getrefine()*2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (27161,'Mavka_Card','Mavka Card','Card',20,10,true,true,'bonus2 bMagicAtkEle,Ele_Fire,20; bonus2 bMagicAtkEle,Ele_Earth,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`script`) VALUES (27162,'Gopinich_Card','Gopinich Card','Card',20,10,true,true,true,'bonus bSPDrainValue,5; bonus bUseSPrate,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (27163,'Faceworm_Card','Faceworm Card','Card',20,10,true,true,'bonus bAgi,-1; bonus bDex,-1; bonus bAspdRate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`script`) VALUES (27164,'Faceworm_Queen_Card','Faceworm Queen Card','Card',20,10,true,'bonus bMaxHPrate,-10; .@r = getrefine(); bonus bCritical,15 + .@r; bonus bCritAtkRate,.@r;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (27165,'Dark_Faceworm_Card','Dark Faceworm Card','Card',20,10,true,true,'bonus bVit,-1; bonus bInt,-1; bonus bDelayrate,-3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`script`) VALUES (27166,'Faceworm_Egg_Card','Faceworm Egg Card','Card',20,10,true,'.@r = getrefine(); .@sub = 2+(.@r >= 9 ? 3 : .@r >= 7 ? 1 : 0); bonus2 bSubEle,Ele_Fire,.@sub;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`script`) VALUES (27167,'Faceworm_Larva_Card','Faceworm Larva Card','Card',20,10,true,'bonus2 bSubEle,Ele_Neutral,15; bonus2 bMagicAtkEle,Ele_Water,getrefine()*3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`script`) VALUES (27168,'Irene_High_Elder_Card','Irene High Elder Card','Card',20,10,true,'bonus bHit,10 + 5 * (getrefine()/3);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (27169,'Payon_Soldier_Card','Payon Soldier Card','Card',20,10,true,'.@atk = 5; .@r = getrefine(); if(getiteminfo(getequipid(EQI_HAND_R),11) == W_SPEAR && .@r >= 10){ .@atk += 20; if(.@r >= 14){ .@atk += 20; } } bonus bAtk,.@atk; bonus bMatk,.@atk;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_accessory`,`script`) VALUES (27170,'Shotgun_Buffalo_Bandit_Card','Shotgun Buffalo Bandit Card','Card',20,10,true,'bonus bAgi,7; bonus bHit,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`script`) VALUES (27171,'Revolver_Buffalo_Bandit_Card','Revolver Buffalo Bandit Card','Card',20,10,true,'bonus bStr,4; bonus2 bAddClass,Class_All,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (27172,'Scimitar_Buffalo_Bandit_Card','Scimitar Buffalo Bandit Card','Card',20,10,true,'.@bonus = 5; .@type = getiteminfo(getequipid(EQI_COMPOUND_ON),11); if (.@type == W_DAGGER) { .@r = getrefine(); if (.@r>=10) { .@bonus += 20; } if (.@r>=14) { .@bonus += 20; } } bonus bBaseAtk,.@bonus; bonus bMatk,.@bonus;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (27173,'Elite_Shotgun_Buffalo_Bandit_Card','Elite Shotgun Buffalo Bandit Card','Card',20,10,true,'.@bonus = 10; .@r = getrefine(); if (.@r>=10) { .@bonus += 20; } if (.@r>=14) { .@bonus += 20; } bonus2 bSkillAtk,"GS_SPREADATTACK",.@bonus;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (27174,'Elite_Revolver_Buffalo_Bandit_Card','Elite Revolver Buffalo Bandit Card','Card',20,10,true,'.@bonus = 10; .@r = getrefine(); if (.@r>=10) { .@bonus += 20; } if (.@r>=14) { .@bonus += 20; } bonus2 bSkillAtk,"GS_RAPIDSHOWER",.@bonus;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (27175,'Elite_Scimitar_Buffalo_Bandit_Card','Elite Scimitar Buffalo Bandit Card','Card',20,10,true,'bonus2 bAddSize,Size_Small,10; bonus2 bMagicAddSize,Size_Small,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`script`) VALUES (27176,'Brown_Rat_Card','Brown Rat Card','Card',20,10,true,'.@str = readparam(bStr); .@bonus = 3*(.@str/10); if (.@str>=120) { .@bonus += 40; } bonus bBaseAtk,.@bonus; bonus bAspdRate,(.@str/10);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`script`) VALUES (27177,'Marsh_Arclouse_Card','Marsh Arclouse Card','Card',20,10,true,'.@int = readparam(bInt); .@bonus = 3*(.@int/10); if (.@int>=120) { .@bonus += 40; } bonus bMatk,.@bonus; bonus bAspdRate,(.@int/10);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`script`) VALUES (27178,'Gaster_Card','Gaster Card','Card',20,10,true,'bonus2 bSubClass,Class_Normal,25; bonus2 bSubClass,Class_Boss,-50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`script`) VALUES (27179,'Coyote_Card','Coyote Card','Card',20,10,true,'bonus bNoCastCancel; .@hp = -12; .@sp = -6; if (getrefine() >= 10) { .@hp += 6; .@sp += 3; } bonus bMaxHPrate,.@hp; bonus bMaxSPrate,.@sp;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_accessory`,`script`) VALUES (27180,'Mechaspider_Card','Mechaspider Card','Card',20,10,true,'bonus bBreakWeaponRate,500; bonus bBreakArmorRate,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (27181,'Airship_Raid_Card','Airship Raid Card','Card',20,10,true,'.@r = getrefine(); bonus bLongAtkRate,1 + .@r/2; bonus bCritical,.@r/2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (27182,'Captain_Felock_Card','Captain Felock Card','Card',20,10,true,'bonus bAtk,30; .@r = getrefine(); bonus2 bSkillAtk,"RL_AM_BLAST",.@r >= 10 ? 60 : 30; bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",.@r >= 10 ? 60 : 30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_accessory`,`script`) VALUES (27183,'Gigantes_Card','Gigantes Card','Card',20,10,true,'bonus bAtk,20; if(readparam(bStr) >= 120) { bonus bAtk,20; bonus bAspdRate,3; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (27184,'Knight_Sakray_Card','Knight Sakray Card','Card',20,10,true,'bonus bAtk,20; bonus2 bAddRace,RC_Demon,30; bonus2 bAddRace,RC_Undead,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (27196,'Nihil_M_Heine_Card','Nihil M. Heine Card','Card',20,10,true,'bonus2 bMagicAddSize,Size_Small,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (27197,'Agnes_Lugenburg_Card','Agnes Lugenburg Card','Card',20,10,true,'bonus2 bAddSize,Size_Small,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (27198,'Jurgen_Wigner_Card','Jurgen Wigner Card','Card',20,10,true,'bonus2 bAddRace,RC_Brute,15; bonus2 bAddRace,RC_Player_Doram,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (27199,'Spica_Nerius_Card','Spica Nerius Card','Card',20,10,true,'bonus2 bMagicAddRace,RC_Brute,15; bonus2 bMagicAddRace,RC_Player_Doram,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`script`) VALUES (27249,'Arhi_Card','Arhi Card','Card',20,10,true,'bonus bAtk,15; bonus bMatk,15; bonus bMaxHP,500; bonus bHit,15; bonus bFlee,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`script`) VALUES (27250,'Dio_Anemos_Card','Dio Anemos Card','Card',20,10,true,'bonus bMatkRate,3; bonus2 bMagicAtkEle,Ele_Neutral,5; bonus2 bMagicAtkEle,Ele_Earth,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`script`) VALUES (27251,'Geffen_Gang_Member_Card','Geffen Gang Member Card','Card',20,10,true,'bonus bCritAtkRate,3; bonus bAspdRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`script`) VALUES (27252,'Geffen_Bully_Card','Geffen Bully Card','Card',20,10,true,'bonus bCritAtkRate,5; bonus bAspdRate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`script`) VALUES (27253,'Geffen_Shoplifter_Card','Geffen Shoplifter Card','Card',20,10,true,'bonus bMatkRate,3; bonus2 bMagicAtkEle,Ele_Fire,5; bonus2 bMagicAtkEle,Ele_Holy,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`script`) VALUES (27254,'Faymont_Card','Faymont Card','Card',20,10,true,'bonus bSPrecovRate,10; bonus3 bAutoSpellWhenHit,"CH_SOULCOLLECT",1,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`script`) VALUES (27255,'Ordre_Card','Ordre Card','Card',20,10,true,'bonus bMatkRate,3; bonus2 bMagicAtkEle,Ele_Wind,5; bonus2 bMagicAtkEle,Ele_Water,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`script`) VALUES (27256,'Blut_Hase_Card','Blut Hase Card','Card',20,10,true,'bonus2 bAddClass,Class_All,3; bonus bLongAtkRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`script`) VALUES (27257,'Kuro_Akuma_Card','Kuro Akuma Card','Card',20,10,true,'bonus bCastrate,3; bonus bLongAtkRate,5; bonus2 bSkillAtk,"NJ_HUUJIN",5; bonus2 bSkillAtk,"NJ_HYOUSENSOU",5; bonus2 bSkillAtk,"NJ_KOUENKA",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`script`) VALUES (27258,'Ifodes_Card','Ifodes Card','Card',20,10,true,'bonus2 bAddClass,Class_All,3; bonus bAspdRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`script`) VALUES (27259,'Licheniyes_Card','Licheniyes Card','Card',20,10,true,'bonus bMatkRate,3; bonus2 bMagicAtkEle,Ele_Holy,5; bonus bHealPower,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`script`) VALUES (27260,'Odoric_Card','Odoric Card','Card',20,10,true,'bonus bAspdRate,3; bonus bLongAtkRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (27261,'Ju_Card','Ju Card','Card',20,10,true,'.@rate = 10 + (getiteminfo(getequipid(EQI_HAND_R),11) == W_BOOK ? 20 : 0) + (getrefine() >= 14 ? 20 : 0); bonus2 bSkillAtk,"MG_FIREBOLT",.@rate; bonus2 bSkillAtk,"MG_COLDBOLT",.@rate; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",.@rate;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (27262,'Dwigh_Card','Dwigh Card','Card',20,10,true,true,'bonus2 bMagicAtkEle,Ele_Dark,20; bonus2 bMagicAtkEle,Ele_Neutral,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`script`) VALUES (27263,'Fay_Kanavian_Card','Fay Kanavian Card','Card',20,10,true,'autobonus "{ bonus bDef,300; }",100,10000,BF_WEAPON|BF_SHORT,"{ active_transform 1040,10000; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`script`) VALUES (27264,'Evil_Shadow_Card','Evil Shadow Card','Card',20,10,true,'bonus2 bSubEle,Ele_Dark,30; bonus2 bSubEle,Ele_Undead,30; bonus2 bSubEle,Ele_Holy,-30; bonus2 bSubEle,Ele_Fire,-30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (27265,'Evil_Fanatics_Card','Evil Fanatics Card','Card',20,10,true,'bonus2 bAddEle,Ele_Dark,30; bonus2 bAddEle,Ele_Undead,30; bonus2 bMagicAddEle,Ele_Dark,30; bonus2 bMagicAddEle,Ele_Undead,30; bonus2 bAddEle,Ele_Holy,-30; bonus2 bAddEle,Ele_Fire,-30; bonus2 bMagicAddEle,Ele_Holy,-30; bonus2 bMagicAddEle,Ele_Fire,-30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (27286,'Colorful_Teddy_Bear_Card','Colorful Teddy Bear Card','Card',20,10,true,'bonus bMatk,5; bonus2 bMagicAddSize,Size_Large,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`script`) VALUES (27287,'Shiny_Teddy_Bear_Card','Shiny Teddy Bear Card','Card',20,10,true,'bonus bUseSPrate,10; bonus2 bMagicAtkEle,Ele_Holy,(3*getrefine());'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`script`) VALUES (27288,'Hardworking_Pitman_Card','Hardworking Pitman Card','Card',20,10,true,'.@val = 10; bonus2 bAddClass,Class_All,5; if (getrefine() >= 10) { .@val += 5; } bonus bHit,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (27289,'Soul_Fragment_Card','Soul Fragment Card','Card',20,10,true,'bonus bMatk,5; bonus2 bMagicAddSize,Size_Medium,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`script`) VALUES (27290,'Haunted_Obsidian_Card','Haunted Obsidian Card','Card',20,10,true,'.@agi = readparam(bAgi); .@val = .@agi/10; if (.@val) { bonus bFlee,(3*.@val); bonus bAspdRate,.@val; if (.@agi >= 120) { bonus bAspd,1; } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (27291,'Ancient_Tri_Joint_Card','Ancient Tri Joint Card','Card',20,10,true,'bonus bBaseAtk,30; bonus bMaxHPrate,-1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`script`) VALUES (27292,'Ancient_Stalactic_Golem_Card','Ancient Stalactic Golem Card','Card',20,10,true,'.@vit = readparam(bVit); .@val = .@vit/10; if (.@val) { bonus bAspdRate,.@val; bonus bMaxHP,(150*.@val); if (.@vit >= 120) { bonus bDelayrate,-3; } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (27293,'Ancient_Megalith_Card','Ancient Megalith Card','Card',20,10,true,'bonus bMatk,30; bonus bMaxSPrate,-1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`script`) VALUES (27294,'Ancient_Tao_Gunka_Card','Ancient Tao Gunka Card','Card',20,10,true,true,true,'.@val = 30; if (getrefine() >= 10) { .@val += 20; } bonus2 bIgnoreDefClassRate,Class_Boss,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`script`) VALUES (27295,'Ancient_Stone_Shooter_Card','Ancient Stone Shooter Card','Card',20,10,true,'.@luk = readparam(bLuk); .@crit = .@luk/10; if (.@luk >= 120) { .@crit += 5; } bonus bAspdRate,1; bonus bCritAtkRate,.@crit;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`script`) VALUES (27296,'Ancient_Wootan_Shooter_Card','Ancient Wootan Shooter Card','Card',20,10,true,'.@dex = readparam(bDex); .@val = .@dex/10; if (.@val) { bonus bAspdRate,.@val; bonus2 bWeaponDamageRate,W_BOW,.@val; if (.@dex >= 120) { bonus bBaseAtk,40; } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (27297,'Ancient_Wootan_Fighter_Card','Ancient Wootan Fighter Card','Card',20,10,true,'bonus bCritical,5; bonus bCritAtkRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`script`) VALUES (27298,'Ancient_Wootan_Defender_Card','Ancient Wootan Defender Card','Card',20,10,true,'.@val = 30; if (getrefine() >= 10) { .@val += 20; } bonus2 bSubClass,Class_Boss,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (27301,'Labyrinth_Doppelganger_Card','Labyrinth Doppelganger Card','Card',20,10,true,'bonus2 bAddClass,Class_All,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (27304,'E_EA2S_Card','E EA2S Card','Card',20,10,true,true,'bonus bHPrecovRate,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (27305,'EL_A17T_Card','EL A17T Card','Card',20,10,true,true,'bonus5 bAutoSpell,"WL_HELLINFERNO",3,1,ATF_SHORT|ATF_WEAPON,1; /* fix me: unknown rate */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (27306,'Bellare_Card','Bellare Card','Card',20,10,true,'if (getiteminfo(getequipid(EQI_COMPOUND_ON),11) == W_REVOLVER) { .@r = getrefine(); bonus bHit,20; bonus bLongAtkRate,(5+.@r); if (.@r >= 10) { bonus2 bSkillAtk,"RL_FIREDANCE",15; } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (27307,'Greater_Bellare_Card','Greater Bellare Card','Card',20,10,true,'if (getiteminfo(getequipid(EQI_COMPOUND_ON),11) == W_GATLING) { .@r = getrefine(); bonus bHit,20; bonus bLongAtkRate,(5+.@r); if (.@r >= 10) { bonus2 bSkillAtk,"RL_R_TRIP",15; } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (27308,'Sanare_Card','Sanare Card','Card',20,10,true,'.@r = getrefine(); .@val = 2; if (.@r >= 9) { .@val += 3; } if (.@r >= 11) { .@val += 5; } bonus bHealPower,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`script`) VALUES (27309,'Greater_Sanare_Card','Greater Sanare Card','Card',20,10,true,true,true,'bonus bMatk,10; .@val = 5; if (getrefine() >= 9) { .@val += 5; } bonus2 bMagicAtkEle,Ele_Holy,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`script`) VALUES (27310,'Plaga_Card','Plaga Card','Card',20,10,true,true,true,'bonus bMatk,10; .@val = 5; if (getrefine() >= 9) { .@val += 5; } bonus2 bMagicAtkEle,Ele_Neutral,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (27311,'Mutant_Plaga_Card','Mutant Plaga Card','Card',20,10,true,'if (getiteminfo(getequipid(EQI_COMPOUND_ON),11) == W_KNUCKLE) { .@r = getrefine(); bonus bHit,20; bonus bBaseAtk,15; if (.@r >= 10) { .@val = 15; } bonus2 bAddSize,Size_Large,(.@r+.@val); }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (27312,'Dolor_Card','Dolor Card','Card',20,10,true,true,'bonus2 bAddRace,RC_Demon,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (27313,'Mutant_Dolor_Card','Mutant Dolor Card','Card',20,10,true,'if (getiteminfo(getequipid(EQI_COMPOUND_ON),11) == W_KATAR) { .@r = getrefine(); bonus bCritical,7; bonus bBaseAtk,15; bonus bCritAtkRate,(2*.@r); if (.@r >= 10) { bonus2 bAddSize,Size_Large,15; } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`script`) VALUES (27314,'Venenum_Card','Venenum Card','Card',20,10,true,'bonus2 bAddRace,RC_Brute,15; bonus2 bAddRace,RC_Player_Doram,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`script`) VALUES (27315,'Mutant_Venenum_Card','Mutant Venenum Card','Card',20,10,true,'bonus2 bMagicAddRace,RC_Brute,15; bonus2 bMagicAddRace,RC_Player_Doram,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`script`) VALUES (27316,'Twin_Caput_Card','Twin Caput Card','Card',20,10,true,'bonus bDef,50; bonus2 bSubDefEle,Ele_Poison,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (27317,'Mutant_Twin_Caput_Card','Mutant Twin Caput Card','Card',20,10,true,true,'bonus2 bAddRace,RC_Formless,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`script`) VALUES (27318,'Miguel_Card','Miguel Card','Card',20,10,true,'bonus bCritAtkRate,20; bonus2 bSubRace,RC_All,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`script`) VALUES (27319,'R48_85_BESTIA_Card','R48-85-BESTIA Card','Card',20,10,true,'bonus2 bAddEle,Ele_Poison,40;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (27320,'E_EA1L_card','E-EA1L card','Card',20,10,true,'.@r = getrefine(); .@val = 3; if (.@r >= 9) { .@val += 2; if (.@r >= 11) { .@val += 5; } } bonus2 bMagicAtkEle,Ele_Fire,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`script`) VALUES (27321,'Despair_God_Morocc_Card','Despair God Morocc Card','Card',20,10,true,'bonus2 bAddClass,Class_All,10; bonus bMaxHPRate,-50; bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player_Human,30; bonus2 bAddRace,RC_Angel,30; autobonus3 "{ }",1000,5000,"NV_FIRSTAID","{ active_transform 3097,5000; }"; /* unknown transformation rates */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (27322,'Demon_God\'s_Apostle_Ahat_Card','Demon God\'s Apostle Ahat Card','Card',20,10,true,true,'bonus bMaxSPrate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (27323,'Demon_God\'s_Apostle_Shnaim_Card','Demon God\'s Apostle Shnaim Card','Card',20,10,true,true,'bonus bMaxHPrate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (27324,'Brinaranea_Card','Brinaranea Card','Card',20,10,true,'bonus2 bMagicAtkEle,Ele_Water,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`script`) VALUES (27325,'Muspellskoll_Card','Muspellskoll Card','Card',20,10,true,'bonus2 bSubDefEle,Ele_Fire,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`script`) VALUES (27326,'Morocc\'s_Minion_Card','Morocc\'s Minion Card','Card',20,10,true,'bonus bBaseAtk,100; bonus bAspdRate,25; bonus bMaxHPrate,-20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`script`) VALUES (27327,'Grim_Reaper_Ankou_Card','Grim Reaper Ankou Card','Card',20,10,true,true,true,'.@r = getrefine(); bonus3 bAutoSpellWhenHit,"NPC_WIDECURSE",3,(1+.@r); autobonus2 "{ bonus2 bAddClass,Class_All,25; bonus bMatkRate,25; }",(1+.@r),10000,BF_WEAPON|BF_MAGIC; autobonus3 "{ }",1000,5000,"NV_FIRSTAID","{ active_transform 3029,5000; }"; /* unknown rates */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`script`) VALUES (27328,'Corrupt_Life_Card','Corrupt Life Card','Card',20,10,true,true,true,'bonus bMaxHP,500; bonus bMaxSP,50; bonus2 bSubRace,RC_Angel,-50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`) VALUES (27330,'Kronecker_Card','Kronecker Card','Card',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`script`) VALUES (27331,'Kronecker_G_Heine_Card','Kronecker G. Heine Card','Card',20,10,true,'bonus bVariableCastrate,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_accessory`) VALUES (27332,'Skia_Card','Skia Card','Card',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_accessory`,`script`) VALUES (27333,'Skia_Nerius_Card','Skia Nerius Card','Card',20,10,true,'bonus bAspdRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`script`) VALUES (27334,'Chaotic_Baphomet_Card','Chaotic Baphomet Card','Card',20,10,true,'bonus2 bAddClass,Class_All,25; bonus2 bSubRace,RC_Demon,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`script`) VALUES (27335,'Chaotic_Baphomet_Junior_Card','Chaotic Baphomet Junior Card','Card',20,10,true,'bonus bCritical,readparam(bAgi)/15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`script`) VALUES (27336,'Chaotic_Sidewinder_Card','Chaotic Sidewinder Card','Card',20,10,true,'bonus2 bSubDefEle,Ele_Poison,15; bonus2 bSubRace,RC_Brute,15; bonus2 bSubRace,RC_Player_Doram,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`script`) VALUES (27337,'Chaotic_Hunter_Fly_Card','Chaotic Hunter Fly Card','Card',20,10,true,'bonus2 bSubDefEle,Ele_Wind,15; bonus2 bSubRace,RC_Insect,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (27338,'Chaotic_Mantis_Card','Chaotic Mantis Card','Card',20,10,true,true,'bonus bStr,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (27339,'Chaotic_Ghostring_Card','Chaotic Ghostring Card','Card',20,10,true,'bonus bBaseAtk,20; bonus2 bAddSize,Size_Small,25; bonus2 bAddSize,Size_Large,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (27340,'Chaotic_Killer_Mantis_Card','Chaotic Killer Mantis Card','Card',20,10,true,true,'bonus bCritAtkRate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`script`) VALUES (27341,'Chaotic_Poporing_Card','Chaotic Poporing Card','Card',20,10,true,'bonus2 bSubDefEle,Ele_Water,15; bonus2 bSubRace,RC_Fish,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`script`) VALUES (27342,'Chaotic_Stem_Worm_Card','Chaotic Stem Worm Card','Card',20,10,true,'bonus bHit,10; bonus2 bSubDefEle,Ele_Earth,20; bonus2 bSubDefEle,Ele_Neutral,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_accessory`,`script`) VALUES (27343,'Chaotic_Acolyte_Card','Chaotic Acolyte Card','Card',20,10,true,'bonus bDelayrate,-4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`script`) VALUES (27346,'Rigid_Muspellskoll_Card','Rigid Muspellskoll Card','Card',20,10,true,'bonus2 bSubRace,RC_Dragon,30; bonus2 bSubRace,RC_Demon,30; bonus2 bSubRace,RC_Brute,30; bonus2 bSubRace,RC_Player_Doram,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (27347,'Rigid_Kaho_Card','Rigid Kaho Card','Card',20,10,true,'bonus2 bMagicAddEle,Ele_Earth,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (27348,'Rigid_Lava_Golem_Card','Rigid Lava Golem Card','Card',20,10,true,'.@r = getrefine(); bonus2 bMagicAddEle,Ele_Neutral,3+((.@r>=7)*5)+((.@r>=9)*7);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`script`) VALUES (27349,'Rigid_Explosion_Card','Rigid Explosion Card','Card',20,10,true,'bonus2 bSubRace,RC_Dragon,15; bonus2 bSubDefEle,Ele_Fire,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`script`) VALUES (27350,'Rigid_Earth_Deleter_Card','Rigid Earth Deleter Card','Card',20,10,true,true,'.@r = getrefine(); bonus bMaxSPrate,2+(.@r/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`script`) VALUES (27351,'Rigid_Sky_Deleter_Card','Rigid Sky Deleter Card','Card',20,10,true,true,'bonus bMaxHPrate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`script`) VALUES (27352,'Rigid_Nightmare_Terror_Card','Rigid Nightmare Terror Card','Card',20,10,true,'bonus bMaxSPrate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`script`) VALUES (27353,'Rigid_Blazer_Card','Rigid Blazer Card','Card',20,10,true,'bonus2 bSubRace,RC_Demon,15; bonus2 bSubDefEle,Ele_Neutral,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`script`) VALUES (27354,'Contaminated_Raydric_Card','Contaminated Raydric Card','Card',20,10,true,'bonus2 bAddClass,Class_All,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (27355,'Contaminated_Raydric_Archer_Card','Contaminated Raydric Archer Card','Card',20,10,true,'bonus bLongAtkRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`script`) VALUES (27356,'Frozen_Gargoyle_Card','Frozen Gargoyle Card','Card',20,10,true,'bonus2 bSubSize,Size_Medium,25; bonus2 bSubSize,Size_Large,25; bonus2 bSubSize,Size_Small,-5; bonus bDef,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`script`) VALUES (27357,'Contaminated_Sting_Card','Contaminated Sting Card','Card',20,10,true,'bonus bDef,100+25*(getrefine()/3);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`script`) VALUES (27358,'Prison_Breaker_Card','Prison Breaker Card','Card',20,10,true,'bonus2 bSubEle,Ele_Wind,30; bonus2 bSubEle,Ele_Poison,30; bonus2 bSubEle,Ele_Dark,30; bonus2 bSubEle,Ele_Earth,30; bonus2 bSubEle,Ele_Undead,30; bonus2 bSubEle,Ele_Holy,-100; bonus2 bSubEle,Ele_Ghost,-100; bonus2 bSubEle,Ele_Fire,-100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (27359,'Ice_Ghost_Card','Ice Ghost Card','Card',20,10,true,'bonus2 bMagicAddEle,Ele_Water,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (27360,'Flame_Ghost_Card','Flame Ghost Card','Card',20,10,true,'bonus2 bMagicAddEle,Ele_Fire,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (27361,'Contaminated_Wanderer_Card','Contaminated Wanderer Card','Card',20,10,true,'bonus2 bAddSize,Size_Large,30; bonus2 bAddSize,Size_Medium,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`script`) VALUES (27362,'Contaminated_Spider_Queen_Card','Contaminated Spider Queen Card','Card',20,10,true,'bonus2 bSubEle,Ele_All,-30; bonus2 bMagicAtkEle,Ele_Earth,100; bonus2 bMagicAtkEle,Ele_Water,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`script`) VALUES (27363,'Contaminated_Dark_Lord_Card','Contaminated Dark Lord Card','Card',20,10,true,'bonus bAspd,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29000,'Rune_of_Intellect_Lv_1','Rune of Intellect Lv 1','Card',20,'.@r = getrefine(); if (.@r>=7) { bonus bInt,5; } if (.@r>=10) { bonus bMatkRate,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29001,'Rune_of_Intellect_Lv_2','Rune of Intellect Lv 2','Card',20,'.@r = getrefine(); if (.@r>=7) { bonus bInt,6; } if (.@r>=11) { bonus bInt,1; bonus bMatkRate,7; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29002,'Rune_of_Intellect_Lv_3','Rune of Intellect Lv 3','Card',20,'.@r = getrefine(); if (.@r>=7) { bonus bInt,7; } if (.@r>=12) { bonus bInt,1; bonus bMatkRate,8; } if (.@r>=13) { bonus bInt,1; bonus bMatkRate,2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29003,'Rune_of_Dexterity_Lv_1','Rune of Dexterity Lv 1','Card',20,'.@r = getrefine(); if (.@r>=7) { bonus bDex,5; } if (.@r>=10) { bonus bLongAtkRate,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29004,'Rune_of_Dexterity_Lv_2','Rune of Dexterity Lv 2','Card',20,'.@r = getrefine(); if (.@r>=7) { bonus bDex,6; } if (.@r>=11) { bonus bDex,1; bonus bLongAtkRate,7; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29005,'Rune_of_Dexterity_Lv_3','Rune of Dexterity Lv 3','Card',20,'.@r = getrefine(); if (.@r>=7) { bonus bDex,7; } if (.@r>=12) { bonus bDex,1; bonus bLongAtkRate,8; } if (.@r>=13) { bonus bDex,1; bonus bLongAtkRate,2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29006,'Rune_of_Luck_Lv_1','Rune of Luck Lv 1','Card',20,'.@r = getrefine(); if (.@r>=7) { bonus bLuk,5; } if (.@r>=10) { bonus bCritAtkRate,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29007,'Rune_of_Luck_Lv_2','Rune of Luck Lv 2','Card',20,'.@r = getrefine(); if (.@r>=7) { bonus bLuk,6; } if (.@r>=11) { bonus bLuk,1; bonus bCritAtkRate,7; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29008,'Rune_of_Luck_Lv_3','Rune of Luck Lv 3','Card',20,'.@r = getrefine(); if (.@r>=7) { bonus bLuk,7; } if (.@r>=12) { bonus bLuk,1; bonus bCritAtkRate,8; } if (.@r>=13) { bonus bLuk,1; bonus bCritAtkRate,6; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29009,'Rune_of_Vitality_Lv_1','Rune of Vitality Lv 1','Card',20,'.@r = getrefine(); if (.@r>=7) { bonus bVit,5; } if (.@r>=10) { bonus bMaxHPrate,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29010,'Rune_of_Vitality_Lv_2','Rune of Vitality Lv 2','Card',20,'.@r = getrefine(); if (.@r>=7) { bonus bVit,6; } if (.@r>=11) { bonus bVit,1; bonus bMaxHPrate,7; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29011,'Rune_of_Vitality_Lv_3','Rune of Vitality Lv 3','Card',20,'.@r = getrefine(); if (.@r>=7) { bonus bVit,7; } if (.@r>=12) { bonus bVit,1; bonus bMaxHPrate,8; } if (.@r>=13) { bonus bVit,1; bonus bMaxHPrate,2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29013,'HPdrain3','HP Absorption 3','Card','bonus2 bHPDrainRate,10,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29014,'STR3INT','STR+3 INT-3','Card','bonus bStr,3; bonus bInt,-3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29015,'STR3DEX','STR+3 DEX-3','Card','bonus bStr,3; bonus bDex,-3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29016,'INT3DEX','INT+3 DEX-3','Card','bonus bInt,3; bonus bDex,-3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29017,'INT3VIT','INT+3 VIT-3','Card','bonus bInt,3; bonus bVit,-3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29018,'DEX3VIT','DEX+3 VIT-3','Card','bonus bDex,3; bonus bVit,-3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29019,'DEX3AGI','DEX+3 AGI-3','Card','bonus bDex,3; bonus bAgi,-3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29020,'VIT3AGI','VIT+3 AGI-3','Card','bonus bVit,3; bonus bAgi,-3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29021,'VIT3LUK','VIT+3 LUK-3','Card','bonus bVit,3; bonus bLuk,-3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29022,'AGI3LUK','AGI+3 LUK-3','Card','bonus bAgi,3; bonus bLuk,-3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29023,'AGI3STR','AGI+3 STR-3','Card','bonus bAgi,3; bonus bStr,-3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29024,'LUK3STR','LUK+3 STR-3','Card','bonus bLuk,3; bonus bStr,-3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29025,'LUK3INT','LUK+3 INT-3','Card','bonus bLuk,3; bonus bInt,-3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29026,'Def20','DEF+20','Card',10,'bonus bDef,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29027,'EXP2','EXP+2%','Card','bonus2 bExpAddClass,Class_All,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29028,'Atk1p_Top','ATK + 1%','Card','bonus2 bAddClass,Class_All,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29029,'Atk1p_Bottom','ATK+1%(Lower)','Card','bonus2 bAddClass,Class_All,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29030,'Matk1p_Top','MATK+1%','Card','bonus bMatkRate,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29031,'Matk1p_Bottom','MATK+1%(Lower)','Card','bonus bMatkRate,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29032,'SPdrain1_Top','SP Absorption 1','Card','bonus2 bSPDrainRate,10,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29033,'Mdef4_Bottom','MDEF+4','Card','bonus bMdef,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`,`unequip_script`) VALUES (29040,'Ghost_Effect','Ghost Effect','Card','hateffect HAT_EF_C_GHOST_EFFECT,true;','hateffect HAT_EF_C_GHOST_EFFECT,false;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29041,'Twinkle_Effect','Twinkle Effect','Card','/* todo */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29046,'Greed','Greed','Card','skill "BS_GREED",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29047,'Fatal0','Fatal','Card','bonus bCritAtkRate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29048,'Expert_Archer0','Expert Archer','Card','bonus bLongAtkRate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29049,'HP100_','HP+100','Card','bonus bMaxHP,100; if (BaseLevel >= 120) { bonus bMaxHPrate,2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29050,'SP50_','SP+50','Card','bonus bMaxSP,50; if (BaseLevel >= 120) { bonus bMaxSPrate,2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29051,'Detoxify','Detoxify','Card','skill "TF_DETOXIFY",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29052,'Recovery','Recovery','Card','skill "PR_STRECOVERY",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29053,'Skill_Delay1_Top','After Skill Delay1 Upper','Card','bonus bDelayrate,-1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29054,'Skill_Delay1_Middle','After Skill Delay1 Middle','Card','bonus bDelayrate,-1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29055,'Skill_Delay1_Bottom','After Skill Delay1 Lower','Card','bonus bDelayrate,-1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29056,'FixedCasting05','Reduces Fixed Cast','Card','bonus bFixedCast,-500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29057,'Kyrie','Kyrie','Card','skill "PR_KYRIE",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29061,'Ambition1Lv','Mettle Lv. 1','Card',10,'bonus2 bAddClass,Class_All,3; bonus bHit,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29062,'Ambition2Lv','Mettle Lv. 2','Card',10,'bonus2 bAddClass,Class_All,6; bonus bHit,6;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29063,'Ambition3Lv','Mettle Lv. 3','Card',10,'bonus2 bAddClass,Class_All,9; bonus bHit,9;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29064,'Ambition4Lv','Mettle Lv. 4','Card',10,'bonus2 bAddClass,Class_All,12; bonus bHit,12;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29065,'Ambition5Lv','Mettle Lv. 5','Card',10,'bonus2 bAddClass,Class_All,15; bonus bHit,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29066,'Ambition6Lv','Mettle Lv. 6','Card',10,'bonus2 bAddClass,Class_All,18; bonus bHit,18;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29067,'Ambition7Lv','Mettle Lv. 7','Card',10,'bonus2 bAddClass,Class_All,21; bonus bHit,21;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29068,'Ambition8Lv','Mettle Lv. 8','Card',10,'bonus2 bAddClass,Class_All,24; bonus bHit,24;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29069,'Ambition9Lv','Mettle Lv. 9','Card',10,'bonus2 bAddClass,Class_All,27; bonus bHit,27;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29070,'Ambition10Lv','Mettle Lv. 10','Card',10,'bonus2 bAddClass,Class_All,33; bonus bHit,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29071,'Tab1Lv','Magic Essence Lv. 1','Card',10,'bonus bMatkRate,3; bonus bFixedCast,-100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29072,'Tab2Lv','Magic Essence Lv. 2','Card',10,'bonus bMatkRate,6; bonus bFixedCast,-200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29073,'Tab3Lv','Magic Essence Lv. 3','Card',10,'bonus bMatkRate,9; bonus bFixedCast,-300;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29074,'Tab4Lv','Magic Essence Lv. 4','Card',10,'bonus bMatkRate,12; bonus bFixedCast,-400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29075,'Tab5Lv','Magic Essence Lv. 5','Card',10,'bonus bMatkRate,15; bonus bFixedCast,-500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29076,'Tab6Lv','Magic Essence Lv. 6','Card',10,'bonus bMatkRate,18; bonus bFixedCast,-600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29077,'Tab7Lv','Magic Essence Lv. 7','Card',10,'bonus bMatkRate,21; bonus bFixedCast,-700;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29078,'Tab8Lv','Magic Essence Lv. 8','Card',10,'bonus bMatkRate,24; bonus bFixedCast,-800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29079,'Tab9Lv','Magic Essence Lv. 9','Card',10,'bonus bMatkRate,27; bonus bFixedCast,-900;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29080,'Tab10Lv','Magic Essence Lv. 10','Card',10,'bonus bMatkRate,33; bonus bFixedCast,-1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29081,'Expect1Lv','Acute Lv. 1','Card',10,'bonus bCritAtkRate,10; bonus bCritical,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29082,'Expect2Lv','Acute Lv. 2','Card',10,'bonus bCritAtkRate,20; bonus bCritical,6;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29083,'Expect3Lv','Acute Lv. 3','Card',10,'bonus bCritAtkRate,30; bonus bCritical,9;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29084,'Expect4Lv','Acute Lv. 4','Card',10,'bonus bCritAtkRate,40; bonus bCritical,12;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29085,'Expect5Lv','Acute Lv. 5','Card',10,'bonus bCritAtkRate,50; bonus bCritical,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29086,'Expect6Lv','Acute Lv. 6','Card',10,'bonus bCritAtkRate,60; bonus bCritical,18;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29087,'Expect7Lv','Acute Lv. 7','Card',10,'bonus bCritAtkRate,70; bonus bCritical,21;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29088,'Expect8Lv','Acute Lv. 8','Card',10,'bonus bCritAtkRate,80; bonus bCritical,24;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29089,'Expect9Lv','Acute Lv. 9','Card',10,'bonus bCritAtkRate,90; bonus bCritical,27;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29090,'Expect10Lv','Acute Lv. 10','Card',10,'bonus bCritAtkRate,110; bonus bCritical,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29091,'ArchLine1Lv','Master Archer Lv. 1','Card',10,'bonus bLongAtkRate,4; bonus bAspdRate,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29092,'ArchLine2Lv','Master Archer Lv. 2','Card',10,'bonus bLongAtkRate,8; bonus bAspdRate,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29093,'ArchLine3Lv','Master Archer Lv. 3','Card',10,'bonus bLongAtkRate,12; bonus bAspdRate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29094,'ArchLine4Lv','Master Archer Lv. 4','Card',10,'bonus bLongAtkRate,16; bonus bAspdRate,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29095,'ArchLine5Lv','Master Archer Lv. 5','Card',10,'bonus bLongAtkRate,20; bonus bAspdRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29096,'ArchLine6Lv','Master Archer Lv. 6','Card',10,'bonus bLongAtkRate,24; bonus bAspdRate,6;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29097,'ArchLine7Lv','Master Archer Lv. 7','Card',10,'bonus bLongAtkRate,28; bonus bAspdRate,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29098,'ArchLine8Lv','Master Archer Lv. 8','Card',10,'bonus bLongAtkRate,32; bonus bAspdRate,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29099,'ArchLine9Lv','Master Archer Lv. 9','Card',10,'bonus bLongAtkRate,36; bonus bAspdRate,9;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29100,'ArchLine10Lv','Master Archer Lv. 10','Card',10,'bonus bLongAtkRate,44; bonus bAspdRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29101,'Steel1Lv','Adamantine Lv. 1','Card',10,'bonus bMaxHPrate,5; bonus bDef,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29102,'Steel2Lv','Adamantine Lv. 2','Card',10,'bonus bMaxHPrate,10; bonus bDef,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29103,'Steel3Lv','Adamantine Lv. 3','Card',10,'bonus bMaxHPrate,15; bonus bDef,45;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29104,'Steel4Lv','Adamantine Lv. 4','Card',10,'bonus bMaxHPrate,20; bonus bDef,60;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29105,'Steel5Lv','Adamantine Lv. 5','Card',10,'bonus bMaxHPrate,25; bonus bDef,75;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29106,'Steel6Lv','Adamantine Lv. 6','Card',10,'bonus bMaxHPrate,30; bonus bDef,90;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29107,'Steel7Lv','Adamantine Lv. 7','Card',10,'bonus bMaxHPrate,35; bonus bDef,105;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29108,'Steel8Lv','Adamantine Lv. 8','Card',10,'bonus bMaxHPrate,40; bonus bDef,120;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29109,'Steel9Lv','Adamantine Lv. 9','Card',10,'bonus bMaxHPrate,45; bonus bDef,135;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29110,'Steel10Lv','Adamantine Lv. 10','Card',10,'bonus bMaxHPrate,55; bonus bDef,150;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29111,'Mercy1Lv','Affection Lv. 1','Card',10,'bonus bHealPower,5; bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29112,'Mercy2Lv','Affection Lv. 2','Card',10,'bonus bHealPower,10; bonus bMdef,6;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29113,'Mercy3Lv','Affection Lv. 3','Card',10,'bonus bHealPower,15; bonus bMdef,9;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29114,'Mercy4Lv','Affection Lv. 4','Card',10,'bonus bHealPower,20; bonus bMdef,12;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29115,'Mercy5Lv','Affection Lv. 5','Card',10,'bonus bHealPower,25; bonus bMdef,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29116,'Mercy6Lv','Affection Lv. 6','Card',10,'bonus bHealPower,30; bonus bMdef,18;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29117,'Mercy7Lv','Affection Lv. 7','Card',10,'bonus bHealPower,35; bonus bMdef,21;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29118,'Mercy8Lv','Affection Lv. 8','Card',10,'bonus bHealPower,40; bonus bMdef,24;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29119,'Mercy9Lv','Affection Lv. 9','Card',10,'bonus bHealPower,45; bonus bMdef,27;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29120,'Mercy10Lv','Affection Lv. 10','Card',10,'bonus bHealPower,55; bonus bMdef,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29121,'Goddess_of_Justice_A','Goddess of Justice A','Card',10,'bonus bAtk,20; bonus bHit,2; bonus bMaxHP,300;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29122,'Goddess_of_Justice_S','Goddess of Justice S','Card',10,'bonus bAtk,40; bonus bHit,4; bonus bMaxHP,600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29123,'Goddess_of_Mercy_A','Goddess of Mercy A','Card',10,'bonus bMatk,20; bonus bHealPower,4; bonus bMaxSP,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29124,'Goddess_of_Mercy_S','Goddess of Mercy S','Card',10,'bonus bMatk,40; bonus bHealPower,8; bonus bMaxSP,40;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29125,'Goddess_of_Insight_A','Goddess of Insight A','Card',10,'bonus bLongAtkRate,5; bonus bCritical,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29126,'Goddess_of_Insight_S','Goddess of Insight S','Card',10,'bonus bLongAtkRate,10; bonus bCritical,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`,`unequip_script`) VALUES (29142,'Electric_Effect','Electric Effect','Card','hateffect HAT_EF_ELECTRIC,true;','hateffect HAT_EF_ELECTRIC,false;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`,`unequip_script`) VALUES (29143,'Green_Floor_Effect','Green Flare Effect','Card','hateffect HAT_EF_GREEN_FLOOR,true;','hateffect HAT_EF_GREEN_FLOOR,false;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`,`unequip_script`) VALUES (29144,'Shrink_Effect','Shrink Effect','Card','hateffect HAT_EF_SHRINK,true;','hateffect HAT_EF_SHRINK,false;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29145,'EXP2MIDDLE','Experience+2%','Card','bonus2 bExpAddRace,RC_All,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29146,'Identify','Identify','Card','skill "MC_IDENTIFY",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29147,'Resurrection','Resurrection','Card',10,'skill "ALL_RESURRECTION",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_shoes`,`script`) VALUES (29148,'Leo_Stone','Leo Stone','Card',10,true,'bonus bStr,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_shoes`,`script`) VALUES (29149,'Pisces_Stone','Pisces Stone','Card',10,true,'bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_shoes`,`script`) VALUES (29150,'Capricorn_Stone','Capricorn Stone','Card',10,true,'bonus bAgi,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_shoes`,`script`) VALUES (29151,'Aquarius_Stone','Aquarius Stone','Card',10,true,'bonus bVit,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_shoes`,`script`) VALUES (29152,'Scorpio_Stone','Scorpio Stone','Card',10,true,'bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_shoes`,`script`) VALUES (29153,'Taurus_Stone','Taurus Stone','Card',10,true,'bonus bLuk,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29154,'FixedCasting03','Minor Fixed Cast Reduction','Card','bonus bFixedCast,-300;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29155,'LexAeterna','Lex Aeterna','Card','bonus3 bAutoSpell,"PR_LEXAETERNA",1,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29156,'Casting_Top','Variable Cast Reduction Upper','Card','bonus bVariableCastrate,-3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29157,'Casting_Middle','Variable Cast Reduction Middle','Card','bonus bVariableCastrate,-3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29158,'Casting_Bottom','Variable Cast Reduction Lower','Card','bonus bVariableCastrate,-3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29159,'EXP2TOP','Experience + 2%','Card','bonus2 bExpAddRace,RC_All,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29160,'BlueAura_Effect','Blue Aura Effect','Card','/* todo */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29161,'Pink_Glow_Effect','Pink Glow Effect','Card','/* todo */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29162,'Shadow_Effect','Shadow Effect','Card','/* todo */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29166,'A-Tolerance','A-Tolerance','Card','bonus2 bSubClass,Class_All,1; .@r = getrefine(); bonus2 bSubRace,RC_DemiHuman,.@r/3; bonus2 bSubRace,RC_Formless,.@r/3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29167,'A-Hit','A-Hit','Card','bonus bHit,20; .@r = getrefine(); if(.@r>=7){ bonus bHit,10; } if(.@r>=8){ bonus bHit,10; } if(.@r>=9){ bonus bHit,10; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29168,'A-Flee','A-Flee','Card','bonus bFlee,20; .@r = getrefine(); if(.@r>=7){ bonus bFlee,10; } if(.@r>=8){ bonus bFlee,10; } if(.@r>=9){ bonus bFlee,10; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29169,'A-Mdef','A-Mdef','Card','bonus bMdef,2; .@r = getrefine(); if(.@r>=6){ bonus bMdef,4; } if(.@r>=8){ bonus bMdef,8; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29170,'S-Atk','S-Atk','Card','bonus bBaseAtk,50; .@r = getrefine(); .@c = 100; .@t = 3000; if(.@r>=8){ .@t += 1000; } if(.@r>=9){ .@c += 100; .@t += 1000; } autobonus2 "{ bonus bBaseAtk,150; }",.@c,.@t;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29171,'S-Matk','S-Matk','Card','bonus bMatk,100; .@r = getrefine(); .@c = 100; .@t = 3000; if(.@r>=8){ .@t += 1000; } if(.@r>=9){ .@c += 100; .@t += 1000; } autobonus2 "{ bonus bMatk,150; }",.@c,.@t,BF_MAGIC;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29172,'S-Avoid','S-Avoid','Card','bonus bFlee2,5; .@r = getrefine(); .@c = 100; .@t = 3000; if(.@r>=8){ .@t += 1000; } if(.@r>=9){ .@c += 100; .@t += 1000; } autobonus2 "{ bonus bFlee2,100; }",.@c,.@t;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29173,'S-MaxHP','S-MaxHP','Card','bonus bMaxHP,2500; .@r = getrefine(); .@c = 100; .@t = 3000; if(.@r>=8){ .@t += 1000; } if(.@r>=9){ .@c += 100; .@t += 1000; } autobonus2 "{ bonus bMaxHP,7500; }",.@c,.@t;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29174,'S-Quick','S-Quick','Card','bonus bVariableCastrate,-10; .@r = getrefine(); .@c = 100; .@t = 3000; if(.@r>=8){ .@t += 1000; } if(.@r>=9){ .@c += 100; .@t += 1000; } autobonus2 "{ bonus bVariableCastrate,-100; bonus bDelayrate,-100; }",.@c,.@t,BF_MAGIC;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29175,'S-Cri','S-Cri','Card','bonus bCritical,10; .@r = getrefine(); .@c = 100; .@t = 3000; if(.@r>=8){ .@t += 1000; } if(.@r>=9){ .@c += 100; .@t += 1000; } autobonus2 "{ bonus bCritical,100; }",.@c,.@t;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_shoes`,`script`) VALUES (29176,'Tenji','Tenji','Card',10,true,'bonus2 bAddRace,RC_Brute,15; bonus2 bAddRace,RC_Plant,15; bonus2 bMagicAddRace,RC_Brute,15; bonus2 bMagicAddRace,RC_Plant,15; bonus2 bAddEle,Ele_Wind,15; bonus2 bAddEle,Ele_Earth,15; bonus2 bMagicAddEle,Ele_Wind,15; bonus2 bMagicAddEle,Ele_Earth,15; autobonus2 "{ bonus bVariableCastrate,-70;bonus bDelayrate,-70; bonus bIgnoreDefRace,RC_All; bonus bIgnoreMDefRace,RC_All; }",1,10000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`,`unequip_script`) VALUES (29224,'WhiteBody_Effect','White Body Effect','Card','hateffect HAT_EF_WHITEBODY,true;','hateffect HAT_EF_WHITEBODY,false;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`,`unequip_script`) VALUES (29225,'WaterField_Effect','Water Field Effect','Card','hateffect HAT_EF_WATER_BELOW2,true;','hateffect HAT_EF_WATER_BELOW2,false;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29226,'ExplodingWave_Effect','Crimson Wave Effect','Card','/* todo */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29227,'Heal','Heal','Card','skill "AL_HEAL",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29228,'Steal','Steal','Card','skill "TF_STEAL",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29229,'Teleport','Teleport','Card','skill "AL_TELEPORT",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29310,'Racing_RK_1','Racing(Rune Knight) 1Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29311,'Racing_RK_2','Racing(Rune Knight) 2Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29312,'Racing_RK_3','Racing(Rune Knight) 3Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29313,'Racing_RG_1','Racing(Royal Guard) 1Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29314,'Racing_RG_2','Racing(Royal Guard) 2Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29315,'Racing_RG_3','Racing(Royal Guard) 3Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29316,'Racing_MC_1','Racing(Mechanic) 1Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29317,'Racing_MC_2','Racing(Mechanic) 2Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29318,'Racing_MC_3','Racing(Mechanic) 3Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29319,'Racing_GN_1','Racing(Geneticist) 1Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29320,'Racing_GN_2','Racing(Geneticist) 2Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29321,'Racing_GN_3','Racing(Geneticist) 3Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29322,'Racing_GC_1','Racing(Guillotine Cross) 1Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29323,'Racing_GC_2','Racing(Guillotine Cross) 2Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29324,'Racing_GC_3','Racing(Guillotine Cross) 3Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29325,'Racing_SC_1','Racing(Shadow Chaser) 1Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29326,'Racing_SC_2','Racing(Shadow Chaser) 2Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29327,'Racing_SC_3','Racing(Shadow Chaser) 3Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29328,'Racing_WL_1','Racing(Warlock) 1Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29329,'Racing_WL_2','Racing(Warlock) 2Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29330,'Racing_WL_3','Racing(Warlock) 3Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29331,'Racing_SO_1','Racing(Sorcerer) 1Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29332,'Racing_SO_2','Racing(Sorcerer) 2Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29333,'Racing_SO_3','Racing(Sorcerer) 3Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29334,'Racing_AB_1','Racing(Archbishop) 1Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29335,'Racing_AB_2','Racing(Archbishop) 2Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29336,'Racing_AB_3','Racing(Archbishop) 3Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29337,'Racing_SR_1','Racing(Sura) 1Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29338,'Racing_SR_2','Racing(Sura) 2Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29339,'Racing_SR_3','Racing(Sura) 3Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29340,'Racing_RA_1','Racing(Ranger) 1Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29341,'Racing_RA_2','Racing(Ranger) 2Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29342,'Racing_RA_3','Racing(Ranger) 3Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29343,'Racing_WM_1','Racing(Wanderers & Minstrel) 1Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29344,'Racing_WM_2','Racing(Wanderers & Minstrel) 2Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29345,'Racing_WM_3','Racing(Wanderers & Minstrel) 3Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29346,'Racing_GS_1','Racing(Gunslinger) 1Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29347,'Racing_GS_2','Racing(Gunslinger) 2Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29348,'Racing_GS_3','Racing(Gunslinger) 3Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29349,'Racing_NJ_1','Racing(Ninja)1Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29350,'Racing_NJ_2','Racing(Ninja)2Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29351,'Racing_NJ_3','Racing(Ninja)3Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29352,'Racing_SN_1','Racing(Super Novice) 1Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29353,'Racing_SN_2','Racing(Super Novice) 2Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29354,'Racing_SN_3','Racing(Super Novice) 3Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29355,'Racing_SU_1','Racing(Summoner) 1Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29356,'Racing_SU_2','Racing(Summoner) 2Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29357,'Racing_SU_3','Racing(Summoner) 3Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29358,'Casting_Robe','Variable Casting Garment','Card','bonus bVariableCastrate,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29359,'Fatal_Top','Fatal (Upper)','Card','bonus bCritAtkRate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29360,'Fatal_Bottom','Fatal (Lower)','Card','bonus bCritAtkRate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29361,'Fatal_Robe','Fatal (Garment)','Card','bonus bCritAtkRate,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29362,'DoubleAttack','Double Attack','Card','skill "TF_DOUBLE",3; bonus bDoubleRate,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29438,'Z-Knockback','Z-Knockback','Card','bonus bNoKnockback;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29439,'Z-Immortal','Z-Immortal','Card','bonus bUnbreakableHelm; /* fix me */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29440,'Z-Killgain','Z-Killgain','Card','bonus bSPGainValue,2; .@r = getrefine(); if(.@r>=7){ bonus bSPGainValue,3; } if(.@r>=8){ bonus bSPGainValue,5; } if(.@r>=9){ bonus bSPGainValue,10; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29441,'Z-Reincarnation','Z-Reincarnation','Card','bonus bRestartFullRecover;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29442,'Z-NoDispell','Z-NoDispell','Card','bonus bNoCastCancel2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29443,'Z-Clairvoyance','Z-Clairvoyance','Card','bonus bIntravision;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29444,'Z-Cast_Fixed','Z-Cast Fixed','Card','bonus bFixedCastrate,-50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29579,'Racing_SG_1','Racing (Star Gladiator) 1Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29580,'Racing_SG_2','Racing (Star Gladiator) 2Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29581,'Racing_SG_3','Racing (Star Gladiator) 3Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29582,'Racing_SL_1','Racing (Soul Linker) 1Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29583,'Racing_SL_2','Racing (Soul Linker) 2Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29584,'Racing_SL_3','Racing (Soul Linker) 3Lv','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29594,'Seyren_Memory','Seyren\'s Memory','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29595,'Howard_Memory','Howard\'s Memory','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29596,'Eremes_Memory','Eremes\'s Memory','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29598,'Catherine_Memory','Catherine\'s Memory','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29599,'Margaretha_Memory','Margaretha\'s Memory','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29600,'Cecil_Memory','Cecil\'s Memory','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29601,'Randel_Memory','Randel\'s Memory','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29602,'Flamel_Memory','Flamel\'s Memory','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29603,'Gertie_Memory','Gertie\'s Memory','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29604,'Celia_Memory','Celia\'s Memory','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29605,'Chen_Memory','Chen\'s Memory','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29606,'Trentini_Memory','Trentini\'s Memory','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29607,'Alphoccio_Memory','Alphoccio\'s Memory','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`script`) VALUES (31006,'LoVA_Hades_Card','LoVA Hades Card','Card',20,10,true,'bonus2 bSubRace,RC_Undead,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`script`) VALUES (31007,'LoVA_Realization_Hades_Card','LoVA Realization Hades Card','Card',20,10,true,'bonus bDefEle,Ele_Undead; bonus2 bSubRace,RC_Undead,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`script`) VALUES (31008,'LoVA_Lulu_Card','LoVA Lulu Card','Card',20,10,true,'bonus2 bHPRegenRate,BaseLevel,10000; if(getrefine()>=7) { bonus bAtk,6*(readparam(bStr)/60); bonus bMaxHPrate,readparam(bStr)/60; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`script`) VALUES (31009,'LoVA_Realization_Lulu_Card','LoVA Realization Lulu Card','Card',20,10,true,'bonus2 bHPRegenRate,BaseLevel,10000; if(getrefine()>=7) { bonus bAtk,6*(readparam(bStr)/20); bonus bMaxHPrate,readparam(bStr)/20; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`script`) VALUES (31010,'LoVA_Kima_Card','LoVA Kima Card','Card',20,10,true,'bonus2 bSPRegenRate,BaseLevel/6,10000; if(getrefine()>=7) { bonus bMatk,6*(readparam(bInt)/30); bonus bMaxSPrate,readparam(bInt)/30; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`script`) VALUES (31011,'LoVA_Realization_Kima_Card','LoVA Realization Kima Card','Card',20,10,true,'bonus2 bSPRegenRate,BaseLevel/2,10000; if(getrefine()>=7) { bonus bMatk,6*(readparam(bInt)/10); bonus bMaxSPrate,readparam(bInt)/10; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (31012,'LoVA_Bahamut_Card','LoVA Bahamut Card','Card',20,10,true,'bonus2 bSkillAtk,"RK_DRAGONBREATH",5; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",5; if(getrefine()>=7) { bonus bDelayrate,-1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (31013,'LoVA_Realization_Bahamut_Card','LoVA Realization Bahamut Card','Card',20,10,true,'bonus2 bSkillAtk,"RK_DRAGONBREATH",15; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",15; if(getrefine()>=7) { bonus bDelayrate,-3; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`script`) VALUES (31014,'LoVA_Ragnarok_Card','LoVA Ragnarok Card','Card',20,10,true,'bonus bMdef,7; bonus bMaxHPrate,6; if(getrefine()>=7) { bonus2 bSkillAtk,"HW_GRAVITATION",9; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`script`) VALUES (31015,'LoVA_Realization_Ragnarok_Card','LoVA Realization Ragnarok Card','Card',20,10,true,'bonus bMdef,10; bonus bMaxHPrate,10; if(getrefine()>=7) { bonus2 bSkillAtk,"HW_GRAVITATION",769; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`script`) VALUES (31016,'Decorated_Evil_Tree_Card','Decorated Evil Tree Card','Card',20,10,true,'bonus bMaxHP,1000; bonus bMaxSP,150; bonus bFlee,-25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`script`) VALUES (31017,'Vicious_Cookie_Card','Vicious Cookie Card','Card',20,10,true,'.@r = getrefine(); bonus2 bAddClass,Class_All,1+.@r; bonus bMatkRate,1+.@r; bonus bMaxHPrate,-(2+(.@r*2));'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (31018,'Evil_Dwelling_Box_Card','Evil Dwelling Box Card','Card',20,10,true,'bonus bMaxHP,-1225; bonus3 bAddEff,Eff_Curse,5000,ATF_MAGIC;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (31019,'Creepy_Demon_Card','Creepy Demon Card','Card',20,10,true,true,'bonus bMaxHPrate,-13; bonus3 bAddEffWhenHit,Eff_Curse,4000,ATF_MAGIC;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (31020,'Malicious_Baby_Ghost_Card','Malicious Baby Ghost Card','Card',20,10,true,true,'bonus bMaxHPrate,-13; bonus3 bAddEffWhenHit,Eff_Curse,4000,ATF_WEAPON;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (31021,'Dancing_Marionette_Card','Dancing Marionette Card','Card',20,10,true,'bonus bAspdRate,10; bonus2 bAddClass,Class_All,-3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`script`) VALUES (31022,'Abandoned_Teddy_Bear_Card','Abandoned Teddy Bear Card','Card',20,10,true,'bonus bMaxSPRate,20; bonus2 bAddEff2,Eff_Curse,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (31023,'Celine_Kimi_Card','Celine Kimi Card','Card',20,10,true,'bonus bMatkRate,10; bonus5 bAutoSpell,"NPC_CRITICALWOUND",3,5+(10*(getrefine()/3)),BF_MAGIC,1;'); diff --git a/sql-files/item_db_re_usable.sql b/sql-files/item_db_re_usable.sql new file mode 100644 index 0000000000..1cb2ff5b6a --- /dev/null +++ b/sql-files/item_db_re_usable.sql @@ -0,0 +1,3399 @@ +# +# Table structure for table `item_db_re` +# + +DROP TABLE IF EXISTS `item_db_re`; +CREATE TABLE `item_db_re` ( + `id` int(10) unsigned NOT NULL DEFAULT '0', + `name_aegis` varchar(50) NOT NULL DEFAULT '', + `name_english` varchar(50) NOT NULL DEFAULT '', + `type` varchar(20) DEFAULT NULL, + `subtype` varchar(20) DEFAULT NULL, + `price_buy` mediumint(8) unsigned DEFAULT NULL, + `price_sell` mediumint(8) unsigned DEFAULT NULL, + `weight` smallint(5) unsigned DEFAULT NULL, + `attack` smallint(5) unsigned DEFAULT NULL, + `magic_attack` smallint(5) unsigned DEFAULT NULL, + `defense` smallint(5) unsigned DEFAULT NULL, + `range` tinyint(2) unsigned DEFAULT NULL, + `slots` tinyint(2) unsigned DEFAULT NULL, + `job_all` tinyint(1) unsigned DEFAULT NULL, + `job_acolyte` tinyint(1) unsigned DEFAULT NULL, + `job_alchemist` tinyint(1) unsigned DEFAULT NULL, + `job_archer` tinyint(1) unsigned DEFAULT NULL, + `job_assassin` tinyint(1) unsigned DEFAULT NULL, + `job_barddancer` tinyint(1) unsigned DEFAULT NULL, + `job_blacksmith` tinyint(1) unsigned DEFAULT NULL, + `job_crusader` tinyint(1) unsigned DEFAULT NULL, + `job_gunslinger` tinyint(1) unsigned DEFAULT NULL, + `job_hunter` tinyint(1) unsigned DEFAULT NULL, + `job_kagerouoboro` tinyint(1) unsigned DEFAULT NULL, + `job_knight` tinyint(1) unsigned DEFAULT NULL, + `job_mage` tinyint(1) unsigned DEFAULT NULL, + `job_merchant` tinyint(1) unsigned DEFAULT NULL, + `job_monk` tinyint(1) unsigned DEFAULT NULL, + `job_ninja` tinyint(1) unsigned DEFAULT NULL, + `job_novice` tinyint(1) unsigned DEFAULT NULL, + `job_priest` tinyint(1) unsigned DEFAULT NULL, + `job_rebellion` tinyint(1) unsigned DEFAULT NULL, + `job_rogue` tinyint(1) unsigned DEFAULT NULL, + `job_sage` tinyint(1) unsigned DEFAULT NULL, + `job_soullinker` tinyint(1) unsigned DEFAULT NULL, + `job_stargladiator` tinyint(1) unsigned DEFAULT NULL, + `job_summoner` tinyint(1) unsigned DEFAULT NULL, + `job_supernovice` tinyint(1) unsigned DEFAULT NULL, + `job_swordman` tinyint(1) unsigned DEFAULT NULL, + `job_taekwon` tinyint(1) unsigned DEFAULT NULL, + `job_thief` tinyint(1) unsigned DEFAULT NULL, + `job_wizard` tinyint(1) unsigned DEFAULT NULL, + `class_all` tinyint(1) unsigned DEFAULT NULL, + `class_normal` tinyint(1) unsigned DEFAULT NULL, + `class_upper` tinyint(1) unsigned DEFAULT NULL, + `class_baby` tinyint(1) unsigned DEFAULT NULL, + `class_third` tinyint(1) unsigned DEFAULT NULL, + `class_third_upper` tinyint(1) unsigned DEFAULT NULL, + `class_third_baby` tinyint(1) unsigned DEFAULT NULL, + `gender` varchar(10) DEFAULT NULL, + `location_head_top` tinyint(1) unsigned DEFAULT NULL, + `location_head_mid` tinyint(1) unsigned DEFAULT NULL, + `location_head_low` tinyint(1) unsigned DEFAULT NULL, + `location_armor` tinyint(1) unsigned DEFAULT NULL, + `location_right_hand` tinyint(1) unsigned DEFAULT NULL, + `location_left_hand` tinyint(1) unsigned DEFAULT NULL, + `location_garment` tinyint(1) unsigned DEFAULT NULL, + `location_shoes` tinyint(1) unsigned DEFAULT NULL, + `location_right_accessory` tinyint(1) unsigned DEFAULT NULL, + `location_left_accessory` tinyint(1) unsigned DEFAULT NULL, + `location_costume_head_top` tinyint(1) unsigned DEFAULT NULL, + `location_costume_head_mid` tinyint(1) unsigned DEFAULT NULL, + `location_costume_head_low` tinyint(1) unsigned DEFAULT NULL, + `location_costume_garment` tinyint(1) unsigned DEFAULT NULL, + `location_ammo` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_armor` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_weapon` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_shield` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_shoes` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_right_accessory` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_left_accessory` tinyint(1) unsigned DEFAULT NULL, + `weapon_level` tinyint(1) unsigned DEFAULT NULL, + `equip_level_min` tinyint(3) unsigned DEFAULT NULL, + `equip_level_max` tinyint(3) unsigned DEFAULT NULL, + `refineable` tinyint(1) unsigned DEFAULT NULL, + `view` smallint(5) unsigned DEFAULT NULL, + `alias_name` varchar(50) DEFAULT NULL, + `flag_buyingstore` tinyint(1) unsigned DEFAULT NULL, + `flag_deadbranch` tinyint(1) unsigned DEFAULT NULL, + `flag_container` tinyint(1) unsigned DEFAULT NULL, + `flag_uniqueid` tinyint(1) unsigned DEFAULT NULL, + `flag_bindonequip` tinyint(1) unsigned DEFAULT NULL, + `flag_dropannounce` tinyint(1) unsigned DEFAULT NULL, + `flag_noconsume` tinyint(1) unsigned DEFAULT NULL, + `flag_dropeffect` varchar(20) DEFAULT NULL, + `delay_duration` bigint(20) unsigned DEFAULT NULL, + `delay_status` varchar(30) DEFAULT NULL, + `stack_amount` smallint(5) unsigned DEFAULT NULL, + `stack_inventory` tinyint(1) unsigned DEFAULT NULL, + `stack_cart` tinyint(1) unsigned DEFAULT NULL, + `stack_storage` tinyint(1) unsigned DEFAULT NULL, + `stack_guildstorage` tinyint(1) unsigned DEFAULT NULL, + `nouse_override` smallint(5) unsigned DEFAULT NULL, + `nouse_sitting` tinyint(1) unsigned DEFAULT NULL, + `trade_override` smallint(5) unsigned DEFAULT NULL, + `trade_nodrop` tinyint(1) unsigned DEFAULT NULL, + `trade_notrade` tinyint(1) unsigned DEFAULT NULL, + `trade_tradepartner` tinyint(1) unsigned DEFAULT NULL, + `trade_nosell` tinyint(1) unsigned DEFAULT NULL, + `trade_nocart` tinyint(1) unsigned DEFAULT NULL, + `trade_nostorage` tinyint(1) unsigned DEFAULT NULL, + `trade_noguildstorage` tinyint(1) unsigned DEFAULT NULL, + `trade_nomail` tinyint(1) unsigned DEFAULT NULL, + `trade_noauction` tinyint(1) unsigned DEFAULT NULL, + `script` text, + `equip_script` text, + `unequip_script` text, + PRIMARY KEY (`id`), + UNIQUE INDEX `UniqueAegisName` (`name_aegis`) +) ENGINE=MyISAM; + +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (500,'Choko_Gangjeong','Choko Gangjeong','Healing',10,'percentheal 10,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (501,'Red_Potion','Red Potion','Healing',10,70,'itemheal rand(45,65),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (502,'Orange_Potion','Orange Potion','Healing',50,100,'itemheal rand(105,145),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (503,'Yellow_Potion','Yellow Potion','Healing',180,130,'itemheal rand(175,235),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (504,'White_Potion','White Potion','Healing',1200,150,'itemheal rand(325,405),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (505,'Blue_Potion','Blue Potion','Healing',5000,150,'itemheal 0,rand(40,60);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (506,'Green_Potion','Green Potion','Healing',40,70,true,'sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_HALLUCINATION;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (507,'Red_Herb','Red Herb','Healing',18,30,true,'itemheal rand(18,28),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (508,'Yellow_Herb','Yellow Herb','Healing',40,50,true,'itemheal rand(38,58),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (509,'White_Herb','White Herb','Healing',120,70,true,'itemheal rand(75,115),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (510,'Blue_Herb','Blue Herb','Healing',60,70,true,'itemheal 0,rand(15,30);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (511,'Green_Herb','Green Herb','Healing',10,30,true,'sc_end SC_POISON;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (512,'Apple','Apple','Healing',15,20,true,'itemheal rand(16,22),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (513,'Banana','Banana','Healing',15,20,true,'itemheal rand(17,21),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (514,'Grape','Grape','Healing',200,20,true,'itemheal 0,rand(10,15);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (515,'Carrot','Carrot','Healing',15,20,true,'itemheal rand(18,20),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (516,'Sweet_Potato','Potato','Healing',15,20,true,'itemheal rand(15,23),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (517,'Meat','Meat','Healing',50,150,true,'itemheal rand(70,100),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (518,'Honey','Honey','Healing',500,100,true,'itemheal rand(70,100),rand(20,40);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (519,'Milk','Milk','Healing',25,30,true,'itemheal rand(27,37),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (520,'Leaflet_Of_Hinal','Hinalle Leaflet','Healing',150,10,true,'itemheal rand(175,235),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (521,'Leaflet_Of_Aloe','Aloe Leaflet','Healing',360,20,true,'itemheal rand(325,405),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (522,'Fruit_Of_Mastela','Mastela Fruit','Healing',8500,30,true,'itemheal rand(400,600),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (523,'Holy_Water','Holy Water','Healing',20,30,true,'sc_end SC_CURSE;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (525,'Panacea','Panacea','Healing',500,100,true,'sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (526,'Royal_Jelly','Royal Jelly','Healing',7000,150,true,'itemheal rand(325,405),rand(40,60); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (528,'Monster\'s_Feed','Monster\'s Feed','Healing',60,150,true,'itemheal rand(72,108),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (529,'Candy','Candy','Healing',10,30,true,'itemheal rand(45,65),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (530,'Candy_Striper','Candy Cane','Healing',20,40,true,'itemheal rand(105,145),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (531,'Apple_Juice','Apple Juice','Healing',20,40,true,'itemheal rand(25,35),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (532,'Banana_Juice','Banana Juice','Healing',20,40,true,'itemheal rand(26,34),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (533,'Grape_Juice','Grape Juice','Healing',250,40,true,'itemheal 0,rand(15,25);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (534,'Carrot_Juice','Carrot Juice','Healing',20,40,true,'itemheal rand(27,33),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (535,'Pumpkin','Pumpkin','Healing',15,20,true,'itemheal 19,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (536,'Ice_Cream','Ice Cream','Healing',150,80,true,'itemheal rand(105,145),0; sc_start SC_FREEZE,10000,0,2500,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (537,'Pet_Food','Pet Food','Healing',1000,10,true,'itemheal rand(50,90),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (538,'Well_Baked_Cookie','Well-baked Cookie','Healing',1000,30,true,'itemheal rand(160,200),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (539,'Piece_Of_Cake','Piece of Cake','Healing',3000,100,true,'itemheal rand(270,330),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (540,'Falcon\'s_Feed','Falcon Food','Healing',2000,50,'itemheal rand(185,225),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (541,'Pecopeco\'s_Feed','PecoPeco Food','Healing',3000,50,'itemheal rand(325,405),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (542,'Festive_Cookie','Festival Cookie','Healing',10,10,'itemheal rand(325,405),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (543,'Festive_Rainbow_Cake','Festival Rainbow Cake','Healing',10,10,'itemheal rand(325,405),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (544,'Fish_Slice','Raw Fish','Healing',20,30,true,'itemheal rand(25,60),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (545,'Red_Slim_Potion','Condensed Red Potion','Healing',150,20,'itemheal rand(45,65),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (546,'Yellow_Slim_Potion','Condensed Yellow Potion','Healing',600,30,'itemheal rand(175,235),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nosell`,`script`) VALUES (547,'White_Slim_Potion','Condensed White Potion','Healing',1650,50,100,true,'itemheal rand(325,405),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (548,'Cheese','Cheese','Healing',2800,50,true,'itemheal 0,rand(10,15);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (549,'Nice_Sweet_Potato','Yam','Healing',180,80,true,'itemheal rand(50,100),0; sc_start SC_STUN,3000,0,1500,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (550,'Popped_Rice','Rice Cake','Healing',10,10,true,'itemheal rand(10,15),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (551,'Shusi','Sushi','Healing',1,50,true,'itemheal rand(50,60),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (552,'KETUPAT','Ketupat','Healing',1,10,'itemheal rand(70,90),rand(20,30);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (553,'Bun','Bao','Healing',1,50,true,'itemheal rand(35,70),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (554,'Mojji','Mochi','Healing',100,80,'itemheal rand(105,145),0; sc_start SC_STUN,3000,0; sc_start SC_BLIND,2000,0,1500,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (555,'Rice_Cake','Traditional Rice Cake','Healing',100,20,'itemheal rand(105,145),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (556,'Long_Rice_Cake','Rice Cake Stick','Healing',10,10,'itemheal rand(20,25),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (557,'Hash_Rice_Cake','Neatly Sliced Rice Cake','Healing',10,10,'itemheal rand(25,30),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (558,'Chocolate','Chocolate','Healing',1,20,'itemheal 1,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (559,'HandMade_Chocolate','Hand-made Chocolate','Healing',1,80,'itemheal 50,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (560,'HandMade_Chocolate_','Handmade White Chocolate','Healing',5000,80,'itemheal 50,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (561,'White_Chocolate','White Chocolate','Healing',5000,80,'itemheal 50,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (562,'Pizza','Doublecrust Swiss Fondue','Healing',100,150,'itemheal rand(70,100),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (563,'Pizza_01','Doublecrust Swiss Fondue','Healing',1200,150,'itemheal rand(375,445),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (564,'Rice_Ball','Rice Ball','Healing',1,30,true,'itemheal 200,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (565,'Vita500_Bottle','Vita500','Healing',580,100,'itemheal rand(142,274),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (566,'Tomyumkung','Tom Yum Goong','Healing',10000,150,true,'itemheal rand(244,350),rand(10,30); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (567,'Prawn','Shrimp','Healing',500,40,true,'itemheal rand(117,192),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (568,'Lemon','Lemon','Healing',60,40,true,'itemheal 0,rand(10,20);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (569,'Novice_Potion','Novice Potion','Healing',10,true,'itemheal rand(44,66),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (570,'Lucky_Candy','Lucky Candy','Healing',10,30,true,'itemheal rand(45,65),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (571,'Lucky_Candy_Cane','Lucky Candy Cane','Healing',20,40,true,'itemheal rand(105,145),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (572,'Lucky_Cookie','Lucky Cookie','Healing',1000,30,true,'itemheal rand(160,200),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (573,'Chocolate_Drink','Chocolate Drink','Healing',7000,150,'itemheal rand(330,410),rand(45,65); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (574,'Egg','Egg','Healing',20,30,true,'itemheal rand(33,42),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (575,'Piece_Of_Cake_','2nd Anniversary Cake','Healing',10,100,'itemheal rand(270,330),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (576,'Prickly_Fruit','Prickly Fruit','Healing',540,60,true,'itemheal rand(150,300),rand(20,30);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (577,'Grain','Bag of Grain','Healing',200,20,true,'itemheal rand(60,70),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (578,'Strawberry','Strawberry','Healing',200,20,true,'itemheal 0,rand(16,28);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (579,'Delicious_Fish','Fresh Fish','Healing',700,20,true,'itemheal rand(100,150),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (580,'Bread','Bread','Healing',150,20,true,'itemheal rand(50,90),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (581,'Mushroom','Edible Mushroom','Healing',40,20,true,'itemheal rand(20,30),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (582,'Orange','Orange','Healing',300,20,true,'itemheal rand(10,20),rand(10,20);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (583,'KETUPAT_','Ketupat Sayur','Healing',7000,150,'itemheal rand(325,405),rand(40,60); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (584,'Fish_Ball_Soup','Fish Cake Soup','Healing',100,60,true,'itemheal rand(40,70),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (585,'Wurst','Brusti','Delayconsume',2,40,'itemheal rand(15,20),0; itemskill "PR_MAGNIFICAT",3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (586,'Mother\'s_Cake','Mother\'s Cake','Healing',20,100,'itemheal rand(325,405),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (587,'Prickly_Fruit_','Red Prickly Fruit','Healing',880,60,true,'itemheal rand(270,330),rand(20,30);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (588,'Spaghetti','Spaghetti','Healing',100,100,'itemheal rand(40,70),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (589,'Pizza_02','Pizza','Healing',1200,150,'itemheal rand(375,445),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (590,'Brezel_','Pretzel','Healing',2,20,'itemheal rand(50,90),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (591,'Caviar_Pancake','Caviar Pancake','Healing',150,true,'itemheal rand(325,405),rand(40,60); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (592,'Jam_Pancake','Jam Pancake','Healing',150,true,'itemheal rand(325,405),rand(40,60); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (593,'Honey_Pancake','Honey Pancake','Healing',150,true,'itemheal rand(325,405),rand(40,60); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (594,'Sour_Cream_Pancake','Sour-Cream Pancake','Healing',150,true,'itemheal rand(325,405),rand(40,60); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (595,'Mushroom_Pancake','Mushroom Pancake','Healing',150,true,'itemheal rand(325,405),rand(40,60); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (596,'Cute_Strawberry_Choco','Cute Strawberry-Choco','Healing',20,100,'itemheal 0,rand(1,100);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (597,'Lovely_Choco_Tart','Lovely Choco-Tart','Healing',20,100,'itemheal rand(10,400),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (598,'Light_Red_Pot','Light Red Potion','Healing',50,10,100,true,true,true,true,true,true,true,'itemheal rand(45,65),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (599,'Light_Orange_Pot','Light Orange Potion','Healing',200,10,100,true,true,true,true,true,true,true,'itemheal rand(105,145),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (601,'Wing_Of_Fly','Fly Wing','Delayconsume',60,50,true,'itemskill "AL_TELEPORT",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (602,'Wing_Of_Butterfly','Butterfly Wing','Delayconsume',300,50,true,'itemskill "AL_TELEPORT",3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`trade_override`,`trade_nosell`,`script`) VALUES (603,'Old_Blue_Box','Old Blue Box','Usable',10000,200,true,true,100,true,'getrandgroupitem(IG_BlueBox,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_deadbranch`,`script`) VALUES (604,'Branch_Of_Dead_Tree','Dead Branch','Usable',50,50,true,true,'monster "this",-1,-1,"--ja--",-1-MOBG_Branch_Of_Dead_Tree,1,"";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (605,'Anodyne','Anodyne','Delayconsume',2000,100,true,'itemskill "SM_ENDURE",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (606,'Aloebera','Aloevera','Delayconsume',1500,100,true,100,true,'itemskill "SM_SELFPROVOKE",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`delay_duration`,`delay_status`,`script`) VALUES (607,'Yggdrasilberry','Yggdrasil Berry','Healing',5000,300,true,5000,'Reuse_Limit_F','percentheal 100,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`delay_duration`,`delay_status`,`script`) VALUES (608,'Seed_Of_Yggdrasil','Yggdrasil Seed','Healing',5000,300,true,3000,'Reuse_Limit_G','percentheal 50,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (609,'Amulet','Amulet','Usable',100,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (610,'Leaf_Of_Yggdrasil','Yggdrasil Leaf','Delayconsume',4000,100,true,'itemskill "ALL_RESURRECTION",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (611,'Spectacles','Magnifier','Delayconsume',40,50,true,'itemskill "MC_IDENTIFY",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (612,'Portable_Furnace','Mini Furnace','Usable',150,200,true,'produce 21;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (613,'Iron_Hammer','Iron Hammer','Usable',1000,200,true,'produce 1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (614,'Golden_Hammer','Golden Hammer','Usable',3000,300,true,'produce 2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (615,'Oridecon_Hammer','Oridecon Hammer','Usable',5000,400,true,'produce 3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (616,'Old_Card_Album','Old Card Album','Usable',10000,50,true,true,'getrandgroupitem(IG_CardAlbum,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`trade_override`,`trade_nosell`,`script`) VALUES (617,'Old_Violet_Box','Old Purple Box','Usable',10000,200,true,true,100,true,'getrandgroupitem(IG_VioletBox,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (618,'Worn_Out_Scroll','Worn Out Scroll','Usable',50,20,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (619,'Unripe_Apple','Unripe Apple','Usable',1000,50,true,100,true,'pet 1002;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (620,'Orange_Juice','Orange Juice','Usable',1500,50,true,100,true,'pet 1113;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (621,'Bitter_Herb','Bitter Herb','Usable',20,50,true,100,true,'pet 1031;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (622,'Rainbow_Carrot','Rainbow Carrot','Usable',2500,50,true,100,true,'pet 1063;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (623,'Earthworm_The_Dude','Earthworm the Dude','Usable',4000,50,true,100,true,'pet 1049;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (624,'Rotten_Fish','Rotten Fish','Usable',2500,50,true,100,true,'pet 1011;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (625,'Lusty_Iron','Rusty Iron','Usable',100,50,true,100,true,'pet 1042;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (626,'Monster_Juice','Monster Juice','Usable',1500,50,true,100,true,'pet 1035;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (627,'Sweet_Milk','Sweet Milk','Usable',7000,50,true,100,true,'pet 1167;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (628,'Well_Dried_Bone','Well-Dried Bone','Usable',10000,50,true,100,true,'pet 1107;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (629,'Singing_Flower','Singing Flower','Usable',300,50,true,100,true,'pet 1052;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (630,'Dew_Laden_Moss','Dew Laden Moss','Usable',10,50,true,100,true,'pet 1014;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (631,'Deadly_Noxious_Herb','Deadly Noxious Herb','Usable',20,50,true,100,true,'pet 1077;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (632,'Fatty_Chubby_Earthworm','Fatty Chubby Earthworm','Usable',5000,50,true,100,true,'pet 1019;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (633,'Baked_Yam','Sweet Potato','Usable',20,50,true,100,true,'pet 1056;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (634,'Tropical_Banana','Tropical Banana','Usable',20,50,true,100,true,'pet 1057;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (635,'Horror_Of_Tribe','Orc Trophy','Usable',300,50,true,100,true,'pet 1023;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (636,'No_Recipient','No Recipient','Usable',100,50,true,100,true,'pet 1026;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (637,'Old_Broom','Old Broom','Usable',350,50,true,100,true,'pet 1110;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (638,'Silver_Knife_Of_Chaste','Silver Knife of Chastity','Usable',12000,50,true,100,true,'pet 1170;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (639,'Armlet_Of_Obedience','Armlet of Obedience','Usable',18000,50,true,100,true,'pet 1029;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (640,'Shining_Stone','Shining Stone','Usable',3000,50,true,100,true,'pet 1155;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (641,'Contracts_In_Shadow','Contract in Shadow','Usable',100,50,true,100,true,'pet 1109;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (642,'Book_Of_Devil','Book of the Devil','Usable',1800,50,true,100,true,'pet 1101;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (643,'Pet_Incubator','Pet Incubator','Usable',10000,30,true,'bpet;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (644,'Gift_Box','Gift Box','Usable',1000,200,true,true,'getrandgroupitem(IG_GiftBox,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (645,'Center_Potion','Concentration Potion','Usable',1200,100,true,'sc_start SC_ASPDPOTION0,1800000,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_alchemist`,`job_archer`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_gunslinger`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_monk`,`job_ninja`,`job_novice`,`job_rebellion`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_summoner`,`job_supernovice`,`job_swordman`,`job_taekwon`,`job_thief`,`job_wizard`,`equip_level_min`,`flag_buyingstore`,`script`) VALUES (656,'Awakening_Potion','Awakening Potion','Usable',2200,150,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,40,true,'sc_start SC_ASPDPOTION1,1800000,6;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_gunslinger`,`job_knight`,`job_mage`,`job_merchant`,`job_rebellion`,`job_rogue`,`job_soullinker`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`job_wizard`,`equip_level_min`,`flag_buyingstore`,`script`) VALUES (657,'Berserk_Potion','Berserk Potion','Usable',4500,200,true,true,true,true,true,true,true,true,true,true,true,true,true,true,85,true,'sc_start SC_ASPDPOTION2,1800000,9;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (658,'Union_Of_Tribe','Union of Tribe','Usable',2,500,true,'guildgetexp rand(600000,1200000);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (659,'Heart_Of_Her','Her Heart','Usable',500,50,true,100,true,'pet 1188;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (660,'Prohibition_Red_Candle','Forbidden Red Candle','Usable',20000,50,true,100,true,'pet 1200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (661,'Sway_Apron','Soft Apron','Usable',20000,50,true,100,true,'pet 1275;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (662,'Inspector_Certificate','Authoritative Badge','Usable',1450,30,true,'sc_start SC_SPEEDUP0,180000,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (663,'Korea_Rice_Cake','Korean Rice Cake','Healing',1,10,true,'percentheal 10,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (664,'Gift_Box_1','Gift Box','Usable',1000,200,true,true,'getrandgroupitem(IG_GiftBox_1,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (665,'Gift_Box_2','Gift Box','Usable',1000,200,true,true,'getrandgroupitem(IG_GiftBox_2,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (666,'Gift_Box_3','Gift Box','Usable',1000,200,true,true,'getrandgroupitem(IG_GiftBox_3,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (667,'Gift_Box_4','Gift Box','Usable',1000,200,true,true,'getrandgroupitem(IG_GiftBox_4,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (668,'Handsei','Red Envelope','Usable',20,true,'Zeny += rand(1000,10000);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (669,'Rice_Cake_Soup','Tempting Rice-Cake Soup','Healing',500,100,true,'percentheal 10,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (671,'Gold_Coin','Gold Coin','Usable',10000,100,true,true,true,true,true,true,true,true,'RouletteGold++;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (673,'Copper_Coin','Bronze Coin','Usable',100,40,'RouletteBronze++;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (675,'Silver_Coin','Silver Coin','Usable',5000,100,true,true,true,true,true,true,true,true,'RouletteSilver++;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (678,'Poison_Bottle','Poison Bottle','Usable',5000,100,true,'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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (679,'Gold_Pill','Pilule','Usable',5000,300,true,'sc_start SC_DPOISON,10000,0,1000,0; sc_start SC_POISON,50000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (680,'Magical_Carnation','Magic Carnation','Healing',1000,'percentheal 0,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (681,'Memory_Of_Wedding','Sweet Memory of Marriage','Usable',50000,10,true,'if (getpartnerid()) sc_start SC_WEDDING,600000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (682,'Realgar_Wine','Distilled Fighting Spirit','Usable',100,true,'sc_start SC_ATKPOTION,60000,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (683,'Exorcize_Herb','Herb of Incantation','Usable',50,true,'sc_start SC_MATKPOTION,60000,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (684,'Durian','Durian','Usable',15000,300,true,'sc_start SC_ATKPOTION,60000,10; sc_start SC_MATKPOTION,60000,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (685,'RAMADAN','Ramadan','Healing',5000,300,'percentheal 100,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (686,'Earth_Scroll_1_3','Level 3 Earth Spike','Delayconsume',1000,10,true,100,true,'itemskill "WZ_EARTHSPIKE",3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (687,'Earth_Scroll_1_5','Level 5 Earth Spike','Delayconsume',2000,10,true,100,true,'itemskill "WZ_EARTHSPIKE",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (688,'Cold_Scroll_1_3','Level 3 Cold Bolt','Delayconsume',1000,10,true,100,true,'itemskill "MG_COLDBOLT",3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (689,'Cold_Scroll_1_5','Level 5 Cold Bolt','Delayconsume',2000,10,true,100,true,'itemskill "MG_COLDBOLT",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (690,'Fire_Scroll_1_3','Level 3 Fire Bolt','Delayconsume',1000,10,true,100,true,'itemskill "MG_FIREBOLT",3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (691,'Fire_Scroll_1_5','Level 5 Fire Bolt','Delayconsume',2000,10,true,100,true,'itemskill "MG_FIREBOLT",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (692,'Wind_Scroll_1_3','Level 3 Lightening Bolt','Delayconsume',1000,10,true,100,true,'itemskill "MG_LIGHTNINGBOLT",3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (693,'Wind_Scroll_1_5','Level 5 Lightening Bolt','Delayconsume',2000,10,true,100,true,'itemskill "MG_LIGHTNINGBOLT",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (694,'Ghost_Scroll_1_3','Level 3 Soul Strike','Delayconsume',1000,10,true,100,true,'itemskill "MG_SOULSTRIKE",3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (695,'Ghost_Scroll_1_5','Level 5 Soul Strike','Delayconsume',2000,10,true,100,true,'itemskill "MG_SOULSTRIKE",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (696,'Fire_Scroll_2_1','Level 1 Fire Ball','Delayconsume',1000,10,true,100,true,'itemskill "MG_FIREBALL",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (697,'Fire_Scroll_2_5','Level 5 Fire Ball','Delayconsume',2000,10,true,100,true,'itemskill "MG_FIREBALL",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (698,'Fire_Scroll_3_1','Level 1 Fire Wall','Delayconsume',1000,10,true,100,true,'itemskill "MG_FIREWALL",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (699,'Fire_Scroll_3_5','Level 5 Fire Wall','Delayconsume',2000,10,true,100,true,'itemskill "MG_FIREWALL",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (700,'Cold_Scroll_2_1','Level 1 Frost Diver','Delayconsume',1000,10,true,100,true,'itemskill "MG_FROSTDIVER",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6046,'Clothing_Dye_Coupon','Clothing Dye Coupon','Usable',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6047,'Clothing_Dye_Coupon_II','Clothing Dye Coupon II','Usable',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (6720,'Status_Reset_Coupon','Status Reset Coupon','Cash',10,1,100,true,true,true,true,true,true,true,true,'resetstatus;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (6721,'Status_Reset_Coupon_','Status Reset Coupon','Cash',10,1,100,true,true,true,true,true,true,true,true,'resetstatus;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`class_all`,`gender`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (7037,'Trade_Coupon','Coupon','Usable',100,false,'Female',100,true,true,true,true,true,true,true,'/*set pcroom,(gettimetick(2)+7200);*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (11500,'Light_Yellow_Pot','Light Yellow Potion','Healing',550,10,100,true,true,true,true,true,true,true,'itemheal rand(175,235),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (11501,'Light_White_Pot','Light White Potion','Healing',1200,10,100,true,true,true,true,true,true,true,'itemheal rand(325,405),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (11502,'Light_Blue_Pot','Light Blue Potion','Healing',5000,10,100,true,true,true,true,true,true,true,'itemheal 0,rand(40,60);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (11503,'Siege_White_Potion','WoE White Potion','Healing',100,100,true,true,true,true,true,true,true,'itemheal rand(400,500),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (11504,'Siege_Blue_Potion','WoE Blue Potion','Healing',100,100,true,true,true,true,true,true,true,'itemheal 0,rand(50,70);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (11505,'Iris','Iris','Healing',30,'itemheal 0,150;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11506,'Fanta_Orange','Fanta Orange','Healing',800,100,'itemheal rand(50,70),rand(10,12);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11507,'Fanta_Grape','Fanta Grape','Healing',800,100,'itemheal rand(50,70),rand(10,12);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11508,'Karada_Meguri_Tea','Karada Meguricha','Healing',800,100,'itemheal rand(50,70),rand(10,12);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11509,'Royal_Milk_Tea','Black Tea Kochakaden','Healing',800,100,'itemheal rand(50,70),rand(10,12);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11510,'Coke_Zero','Coca Cola Zero','Healing',800,100,'itemheal rand(50,70),rand(10,12);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11511,'Coke_No_Cal','Diet Coca Cola','Healing',800,100,'itemheal rand(50,70),rand(10,12);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11512,'Coca_Cola','Coca Cola','Healing',800,100,'itemheal rand(50,70),rand(10,12);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (11513,'Protect_Neck_Candy','Protect Neck Candy','Healing',200,1,true,'itemheal rand(5,25),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (11514,'Enriched_Slim_Pot','Enriched Slim Pot','Healing',50,100,true,true,true,true,true,true,true,'itemheal rand(335,415),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (11515,'Coconut','Coconut','Healing',1500,120,true,'itemheal rand(300,400),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (11516,'Asai_Fruit','Asai Fruit','Healing',15,20,true,'itemheal rand(16,22),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (11517,'Puri_Potion','Puri Potion','Healing',20,100,true,'itemheal rand(400,600),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (11518,'N_Blue_Potion','Blue Potion','Healing',50,100,true,true,true,true,true,true,true,'itemheal 0,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (11519,'Beef_Toast','Beef Toast','Healing',1200,40,true,'itemheal rand(170,250),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`flag_buyingstore`,`script`) VALUES (11520,'Mora_Mandarin','Mora Mandar','Healing',500,20,100,true,'itemheal 0,rand(50,80);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`flag_buyingstore`,`script`) VALUES (11521,'Pingui_Berry_Juice','Pingui Berry Juice','Healing',500,50,100,true,'itemheal rand(400,800),rand(50,80);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`flag_buyingstore`,`delay_duration`,`delay_status`,`script`) VALUES (11522,'Red_Raffle_Sap','Red Raffle Sap','Healing',2500,100,100,true,1000,'Reuse_Limit_E','itemheal rand(400,800),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`flag_buyingstore`,`delay_duration`,`delay_status`,`script`) VALUES (11523,'Yellow_Raffle_Sap','Yellow Raffle Sap','Healing',3000,120,110,true,2000,'Reuse_Limit_E','itemheal rand(600,1000),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`flag_buyingstore`,`delay_duration`,`delay_status`,`script`) VALUES (11524,'White_Raffle_Sap','White Raffle Sap','Healing',3500,140,120,true,3000,'Reuse_Limit_E','itemheal rand(800,1200),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`flag_buyingstore`,`delay_duration`,`delay_status`,`script`) VALUES (11525,'Mora_Hip_Tea','Mora Hip Tea','Healing',20,150,120,true,5000,'Reuse_Limit_H','itemheal rand(1500,2000),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`flag_buyingstore`,`script`) VALUES (11526,'Rafflecino','Rafflecino','Healing',20,100,120,true,'itemheal 0,rand(120,160);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11527,'Baklava','Baklava','Healing',3500,600,'itemheal 1200,440;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11528,'Kanafeh','Kanafeh','Healing',1500,200,'itemheal 300,240;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11529,'MAAMOUL_','Maamoul','Healing',500,100,'itemheal 120,60;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11530,'Jujube','Jujube','Healing',10,100,'itemheal 30,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11531,'Coffee','Coffee','Healing',10,100,'itemheal 0,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (11532,'Nasi_Goreng','Nasi Goreng','Healing',15,20,true,'itemheal rand(17,23),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (11533,'Satay','Satay','Healing',15,20,true,'itemheal rand(17,23),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (11534,'Coco_Juice','Coconut Juice','Healing',20,50,true,'itemheal rand(17,23),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11535,'Almond_Chocolate','Almond Chocolate','Healing',190,200,'itemheal 0,rand(8,16);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (11536,'Cat_Hard_Biscuit','Cat Biscuit','Healing',10,true,'itemheal rand(70,110),0; callfunc "F_Cat_Hard_Biscuit";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (11537,'Rice_weevil_Bug','Rice Weevil Bug','Healing',10,true,'itemheal rand(100,150),0; callfunc "F_Rice_Weevil_Bug";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11538,'Octupus_Leg','Fresh Octopus Legs','Healing',20,30,'itemheal rand(35,60),rand(5,10);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11539,'Athale_Choco','Athale Choco','Healing',1,80,'itemheal 50,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11540,'Shyai_Choco','Shyai Choco','Healing',1,80,'itemheal 50,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11541,'Mid_Choco','Mid Choco','Healing',1,80,'itemheal 50,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11542,'Zonda_Choco','Zonda Choco','Healing',1,80,'itemheal 50,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11543,'Goedo_Choco','Goedo Choco','Healing',1,80,'itemheal 50,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11544,'Huike_Choco','Huike Choco','Healing',1,80,'itemheal 50,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11545,'Rune_Choco','Rune Choco','Healing',1,80,'itemheal 50,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11546,'Pope_Choco','Pope Choco','Healing',1,80,'itemheal 50,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (11547,'Woe_Violet_Potion','Siege Purple Potion','Healing',120,true,'itemheal rand(500,700),rand(60,85);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (11548,'Woe_White_Potion','Siege White Potion','Healing',80,true,'percentheal 10,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (11549,'Woe_Blue_Potion','Siege Blue Potion','Healing',80,true,'percentheal 0,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11550,'Pumpkin_Cake','Pumpkin Cake','Healing',10,80,'percentheal 5,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (11551,'Savory_Herb_Salad','Savory Herb Salad','Healing',10,100,true,true,true,true,true,true,true,'itemheal rand(20,30),0; sc_start SC_STRFOOD,180000,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (11552,'Apple_Carrot_Salad','Apple Carrot Salad','Healing',10,100,true,true,true,true,true,true,true,'itemheal rand(20,30),0; sc_start SC_AGIFOOD,180000,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (11553,'Casual_Stew','Casual Stew','Healing',10,100,true,true,true,true,true,true,true,'itemheal rand(20,30),0; sc_start SC_VITFOOD,180000,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (11554,'Golden_Roasted_Apple','Golden Roasted Apple','Healing',10,100,true,true,true,true,true,true,true,'itemheal rand(20,30),0; sc_start SC_DEXFOOD,180000,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (11555,'Red_Potion_RG','Red Potion RG','Healing',40,'itemheal 325,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (11557,'TE_White_Potion','TE White Potion','Healing',200,300,true,'itemheal 325,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (11558,'TE_White_Slim_Potion','TE White Slim Potion','Healing',275,100,true,'itemheal 325,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (11563,'Hot_Tee','Hot Tea','Usable',10,20,true,'itemheal 0,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (11564,'Sweet_Canape','Sweet Canape','Usable',10,20,true,'itemheal 1000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (11565,'White_Potion_B','White Potion','Healing',10,150,100,true,true,true,true,true,true,true,'itemheal rand(325,405),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (11566,'Yellow_Potion_','Yellow Potion','Healing',10,130,100,true,true,true,true,true,true,true,'itemheal rand(175,235),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (11567,'Novice_Potion_B','Novice Potion','Healing',10,100,true,true,true,true,true,true,true,'itemheal rand(44,66),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (11568,'Red_Slim_Potion_B','Red Slim Potion','Healing',10,20,100,true,true,true,true,true,true,true,'itemheal rand(45,65),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (11569,'Orange_Potion_','Orange Potion','Healing',10,100,100,true,true,true,true,true,true,true,'itemheal rand(105,145),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (11570,'Red_Potion_','Red Potion','Healing',10,70,100,true,true,true,true,true,true,true,'itemheal rand(45,65),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (11571,'Green_Potion_','Green Potion','Healing',10,70,100,true,true,true,true,true,true,true,'sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (11572,'Blue_Potion_B','Blue Potion','Healing',10,150,100,true,true,true,true,true,true,true,'itemheal 0,rand(40,60);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (11573,'White_Slim_Potion_B','White Slim Potion','Healing',10,50,100,true,true,true,true,true,true,true,'itemheal rand(325,405),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (11574,'Yellow_Slim_Potion_','Yellow Slim Potion','Healing',10,30,100,true,true,true,true,true,true,true,'itemheal rand(175,235),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (11577,'Rice_Ball_B','Rice Ball','Healing',10,30,100,true,true,true,true,true,true,true,'itemheal 200,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (11578,'Candy_Striper_B','Candy Bar','Healing',10,40,100,true,true,true,true,true,true,true,'itemheal rand(105,145),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (11580,'Candy_B','Candy','Healing',10,30,100,true,true,true,true,true,true,true,'itemheal rand(45,65),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (11581,'Piece_Of_Cake_B','Piece of Cake','Healing',10,100,100,true,true,true,true,true,true,true,'itemheal rand(270,330),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (11582,'Well_Baked_Cookie_B','Well-baked Cookie','Healing',10,30,100,true,true,true,true,true,true,true,'itemheal rand(160,200),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (11583,'Chocolate_Drink_B','Chocolate Drink','Healing',10,150,100,true,true,true,true,true,true,true,'itemheal rand(330,410),rand(45,65); sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_Hallucination;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (11584,'White_Chocolate_B','White Chocolate','Healing',10,80,100,true,true,true,true,true,true,true,'itemheal 50,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (11585,'HandMade_Chocolate_B','Hand-made Chocolate','Healing',10,80,100,true,true,true,true,true,true,true,'itemheal 50,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (11586,'HandMade_Chocolate_B_','Hand-made White Chocolate','Healing',10,80,100,true,true,true,true,true,true,true,'itemheal 50,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (11587,'Chocolate_B','Chocolate','Healing',10,20,100,true,true,true,true,true,true,true,'itemheal 1,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11588,'Fresh_Strawberries','Fresh Strawberries','Healing',10,10,'itemheal rand(32,56),rand(16,28);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (11589,'Iceflake','Cold Snow Cone','Healing',20,50,true,'percentheal 5,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (11590,'Meat_Skewer5','Skewer No.5','Healing',5000,300,true,'itemheal rand(760,810),10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11592,'Trance_Candy_R','Trans Candy Red','Healing',20,30,'itemheal 45,0; transform 1507,600000,SC_MTF_MHP,1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11593,'Trance_Candy_B','Trans Candy Blue','Healing',20,30,'itemheal 45,0; transform 1102,600000,SC_MTF_MSP,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11594,'Trance_Candy_Y','Trans Candy Yellow','Healing',20,30,'itemheal 45,0; transform 1130,600000,SC_MTF_PUMPKIN,2000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11595,'Trance_Candy_G','Trans Candy Green','Healing',20,30,'itemheal 45,0; transform 1508,600000,SC_MTF_HITFLEE,10,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11596,'Blood_In_Skull','Blood In Skull','Healing',20,50,'itemheal rand(600,800),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (11597,'Iron_Bug','Iron Worm','Healing',10,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (11598,'Bitter_Cacao_Bean','Bitter Cacao Bean','Healing',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (11599,'Superstar_Potion','Superstar Potion','Healing',10,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (11600,'Shining_Holy_Water','Shining Holy Water','Healing',10,15,true,'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; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11602,'Catnip_Fruit','Catnip Fruit','Healing',15,1,'itemheal rand(10,40),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11601,'Delicious_Anchovy','Delicious Anchovy','Healing',20,30,'itemheal rand(30,46),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (11605,'Cookies_Bat','Cookie Bat','Healing',50,'itemheal rand(50,100),0; /*TODO*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11616,'Yummy_Meat','Delicious Meat','Healing',1400,50,'itemheal rand(100,150),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`delay_duration`,`script`) VALUES (11621,'Red_Syrup','Red Syrup','Healing',800,7,60,1000,'itemheal 325,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`delay_duration`,`script`) VALUES (11622,'Yellow_Syrup','Yellow Syrup','Healing',1200,10,60,1000,'itemheal 900,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`delay_duration`,`script`) VALUES (11623,'White_Syrup','White Syrup','Healing',1500,14,60,1000,'itemheal 1800,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`delay_duration`,`script`) VALUES (11624,'Blue_Syrup','Blue Syrup','Healing',7000,10,60,10000,'itemheal 0,180;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11701,'Girl_Bunch_Of_Flower','Girl\'s Bouquet','Healing',20,50,'itemheal rand(105,145),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`nouse_override`,`nouse_sitting`) VALUES (11702,'Moon_Cookie','Moon Cookie','Healing',300,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (11703,'Mysterious_Blood','Mystery Blood','Healing',30,'itemheal 0,rand(25,35);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11704,'KETUPAT_F','Ketupat','Healing',2,10,'itemheal rand(70,90),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11705,'Special_White_Potion','Children\'s Potion','Healing',1,10,'itemheal rand(425,425),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11706,'Steak','Steak','Healing',1,200,'itemheal rand(700,1000),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11707,'Roasted_Beef','Roast Beef','Healing',1,200,'itemheal 0,rand(100,200);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11708,'Fore_Flank_Sirloin','Fore Flank Sirloin','Healing',20,100,'itemheal rand(30,50),rand(1,5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11709,'Fanta_Zero_Lemon','Fanta Zero Lemon','Healing',800,100,'itemheal rand(50,70),rand(10,12);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11710,'Sakura_Mist','Sakura Mist','Healing',800,100,'itemheal rand(50,70),rand(10,12);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11711,'Sakura_Milk_Tea','Sakura Milk Tea','Healing',800,100,'itemheal rand(50,70),rand(10,12);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11712,'First_Leaf_Tea','Flower','Healing',800,100,'itemheal rand(50,70),rand(10,12);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (11713,'Julia\'s_Candy','Julia\'s Candy','Healing',30,'itemheal rand(40,45),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12000,'Cold_Scroll_2_5','Level 5 Frost Diver','Delayconsume',2000,10,true,100,true,'itemskill "MG_FROSTDIVER",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12001,'Holy_Scroll_1_3','Level 3 Heal','Delayconsume',2000,10,true,100,true,'itemskill "AL_HEAL",3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12002,'Holy_Scroll_1_5','Level 5 Heal','Delayconsume',2000,10,true,100,true,'itemskill "AL_HEAL",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12003,'Holy_Scroll_2_1','Level 1 Teleport','Delayconsume',1000,10,true,'itemskill "AL_TELEPORT",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12004,'Arrow_Container','Quiver','Usable',2,250,true,'getitem 1750,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12005,'Iron_Arrow_Container','Iron Arrow Quiver','Usable',2,250,true,'getitem 1770,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12006,'Steel_Arrow_Container','Steel Arrow Quiver','Usable',2,250,true,'getitem 1753,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12007,'Ori_Arrow_Container','Oridecon Arrow Quiver','Usable',2,250,true,'getitem 1765,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12008,'Fire_Arrow_Container','Fire Arrow Quiver','Usable',2,250,true,'getitem 1752,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12009,'Silver_Arrow_Container','Silver Arrow Quiver','Usable',2,250,true,'getitem 1751,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12010,'Wind_Arrow_Container','Wind Arrow Quiver','Usable',2,250,true,'getitem 1755,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12011,'Stone_Arrow_Container','Stone Arrow Quiver','Usable',2,250,true,'getitem 1756,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12012,'Crystal_Arrow_Container','Crystal Arrow Quiver','Usable',2,250,true,'getitem 1754,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12013,'Shadow_Arrow_Container','Shadow Arrow Quiver','Usable',2,250,true,'getitem 1767,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12014,'Imma_Arrow_Container','Immaterial Arrow Quiver','Usable',2,250,true,'getitem 1757,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12015,'Rusty_Arrow_Container','Rusty Arrow Quiver','Usable',2,250,true,'getitem 1762,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12016,'Speed_Up_Potion','Speed Potion','Usable',2,100,true,'sc_start SC_SPEEDUP1,5000,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12017,'Slow_Down_Potion','Slow Potion','Usable',2,100,true,'sc_start SC_SLOWDOWN,5000,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (12018,'Fire_Cracker','Firecracker','Usable',2,20,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12019,'Holy_Egg','Holy Egg','Delayconsume',2,150,'itemskill "ALL_RESURRECTION",2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12020,'Water_Of_Darkness','Cursed Water','Delayconsume',2,30,true,'itemskill "ITEM_ENCHANTARMS",8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12021,'Pork_Belly','Pork','Healing',10,'itemheal rand(70,99),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12022,'Spareribs','Galbi','Healing',10,'itemheal rand(70,99),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (12023,'Giftbox_China','Wrapped Box','Usable',1000,200,true,'getrandgroupitem(IG_GiftBoxChina,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_deadbranch`,`script`) VALUES (12024,'Red_Pouch_Of_Surprise','Red Pouch','Usable',50,50,true,'monster "this",-1,-1,"--ja--",-1-MOBG_Red_Pouch_Of_Surprise,1,"";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (12025,'Egg_Boy','Dano Festival Egg','Usable',1000,200,true,'getrandgroupitem(IG_EggBoy,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (12026,'Egg_Girl','Dano Festival Egg','Usable',1000,200,true,'getrandgroupitem(IG_EggGirl,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12027,'Giggling_Box','Giggling Box','Usable',1000,200,true,100,true,'percentheal 9,0; sc_start SC_CURSE,30000,0,3000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12028,'Box_Of_Thunder','Box of Thunder','Usable',1000,200,true,100,true,'sc_start SC_SPEEDUP0,20000,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12029,'Gloomy_Box','Box of Gloom','Delayconsume',1000,200,true,100,true,'itemskill "AC_CONCENTRATION",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12030,'Box_Of_Grudge','Box of Resentment','Usable',1000,200,true,100,true,'sc_start SC_ATKPOTION,60000,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12031,'Sleepy_Box','Box of Drowsiness','Usable',1000,200,true,100,true,'sc_start SC_MATKPOTION,60000,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12032,'Box_Of_Storm','Box of Storms','Delayconsume',1000,200,true,100,true,'itemskill "ITEM_ENCHANTARMS",2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12033,'Box_Of_Sunlight','Box of Sunlight','Usable',1000,200,true,100,true,'sc_start SC_Intravision,30000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12034,'Painting_Box','Box of Panting','Usable',1000,200,true,100,true,'percentheal 0,9; sc_start SC_SILENCE,30000,0,3000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12035,'Lotto_Box01','Lotto Box 01','Usable',20,'getrandgroupitem(IG_LottoBox1,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12036,'Lotto_Box02','Lotto Box 02','Usable',20,'getrandgroupitem(IG_LottoBox2,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12037,'Lotto_Box03','Lotto Box 03','Usable',20,'getrandgroupitem(IG_LottoBox3,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`script`) VALUES (12038,'Lotto_Box04','Lotto Box 04','Usable',20,true,'getrandgroupitem(IG_LottoBox4,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12039,'Lotto_Box05','Lotto Box 05','Usable',20,'getrandgroupitem(IG_LottoBox5,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12040,'Stone_Of_Intelligence_','Stone of Sage','Usable',100000,300,true,'homevolution;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12041,'Str_Dish01','Fried Grasshopper Legs','Healing',2000,50,true,'sc_start SC_STRFOOD,1200000,1; percentheal 5,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12042,'Str_Dish02','Seasoned Sticky Webfoot','Healing',4000,50,true,'sc_start SC_STRFOOD,1200000,2; percentheal 5,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12043,'Str_Dish03','Bomber Steak','Healing',6000,50,true,'sc_start SC_STRFOOD,1200000,3; percentheal 5,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12044,'Str_Dish04','Herb Marinade Beef','Healing',8000,50,true,'sc_start SC_STRFOOD,1200000,4; percentheal 5,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12045,'Str_Dish05','Lutie Lady\'s Pancake','Healing',10000,50,true,'sc_start SC_STRFOOD,1200000,5; percentheal 10,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12046,'Int_Dish01','Grape Juice Herbal Tea','Healing',2000,50,true,'sc_start SC_INTFOOD,1200000,1; percentheal 0,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12047,'Int_Dish02','Autumn Red Tea','Healing',4000,50,true,'sc_start SC_INTFOOD,1200000,2; percentheal 0,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12048,'Int_Dish03','Honey Herbal Tea','Healing',6000,50,true,'sc_start SC_INTFOOD,1200000,3; percentheal 0,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12049,'Int_Dish04','Morocc Fruit Wine','Healing',8000,50,true,'sc_start SC_INTFOOD,1200000,4; percentheal 0,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12050,'Int_Dish05','Mastela Fruit Wine','Healing',10000,50,true,'sc_start SC_INTFOOD,1200000,5; percentheal 0,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12051,'Vit_Dish01','Steamed Crab Nippers','Healing',2000,50,true,'sc_start SC_VITFOOD,1200000,1; percentheal 5,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12052,'Vit_Dish02','Assorted Seafood','Healing',4000,50,true,'sc_start SC_VITFOOD,1200000,2; percentheal 5,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12053,'Vit_Dish03','Clam Soup','Healing',6000,50,true,'sc_start SC_VITFOOD,1200000,3; percentheal 5,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12054,'Vit_Dish04','Seasoned Jellyfish','Healing',8000,50,true,'sc_start SC_VITFOOD,1200000,4; percentheal 5,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12055,'Vit_Dish05','Spicy Fried Bao','Healing',10000,50,true,'sc_start SC_VITFOOD,1200000,5; percentheal 10,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12056,'Agi_Dish01','Frog Egg Squid Ink Soup','Healing',2000,50,true,'sc_start SC_AGIFOOD,1200000,1; percentheal 3,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12057,'Agi_Dish02','Smooth Noodle','Healing',4000,50,true,'sc_start SC_AGIFOOD,1200000,2; percentheal 3,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12058,'Agi_Dish03','Tentacle Cheese Gratin','Healing',6000,50,true,'sc_start SC_AGIFOOD,1200000,3; percentheal 3,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12059,'Agi_Dish04','Lutie Cold Noodle','Healing',8000,50,true,'sc_start SC_AGIFOOD,1200000,4; percentheal 3,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12060,'Agi_Dish05','Steamed Bat Wing in Pumpkin','Healing',10000,50,true,'sc_start SC_AGIFOOD,1200000,5; percentheal 6,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12061,'Dex_Dish01','Honey Grape Juice','Healing',2000,50,true,'sc_start SC_DEXFOOD,1200000,1; percentheal 2,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12062,'Dex_Dish02','Chocolate Mousse Cake','Healing',4000,50,true,'sc_start SC_DEXFOOD,1200000,2; percentheal 2,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12063,'Dex_Dish03','Fruit Mix','Healing',6000,50,true,'sc_start SC_DEXFOOD,1200000,3; percentheal 2,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12064,'Dex_Dish04','Cream Sandwich','Healing',8000,50,true,'sc_start SC_DEXFOOD,1200000,4; percentheal 2,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12065,'Dex_Dish05','Green Salad','Healing',10000,50,true,'sc_start SC_DEXFOOD,1200000,5; percentheal 5,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12066,'Luk_Dish01','Fried Monkey Tails','Healing',2000,50,true,'sc_start SC_LUKFOOD,1200000,1; percentheal 3,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12067,'Luk_Dish02','Mixed Juice','Healing',4000,50,true,'sc_start SC_LUKFOOD,1200000,2; percentheal 3,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12068,'Luk_Dish03','Fried Sweet Potato','Healing',6000,50,true,'sc_start SC_LUKFOOD,1200000,3; percentheal 4,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12069,'Luk_Dish04','Steamed Ancient Lips','Healing',8000,50,true,'sc_start SC_LUKFOOD,1200000,4; percentheal 4,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12070,'Luk_Dish05','Fried Scorpion Tails','Healing',10000,50,true,'sc_start SC_LUKFOOD,1200000,5; percentheal 5,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12071,'Str_Dish06','Shiny Marinade Beef','Healing',20000,50,true,'sc_start SC_STRFOOD,1200000,6; percentheal 10,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12072,'Str_Dish07','Whole Roast','Healing',40000,50,true,'sc_start SC_STRFOOD,1200000,7; percentheal 10,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12073,'Str_Dish08','Bearfoot Special','Healing',60000,50,true,'sc_start SC_STRFOOD,1200000,8; percentheal 15,6;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12074,'Str_Dish09','Tendon Satay','Healing',80000,50,true,'sc_start SC_STRFOOD,1200000,9; percentheal 15,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12075,'Str_Dish10','Steamed Tongue','Healing',100000,50,true,'sc_start SC_STRFOOD,1200000,10; percentheal 20,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12076,'Int_Dish06','Red Mushroom Wine','Healing',20000,50,true,'sc_start SC_INTFOOD,1200000,6; percentheal 2,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12077,'Int_Dish07','Special Royal Jelly Herbal Tea','Healing',40000,50,true,'sc_start SC_INTFOOD,1200000,7; percentheal 4,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12078,'Int_Dish08','Royal Family Tea','Healing',60000,50,true,'sc_start SC_INTFOOD,1200000,8; percentheal 6,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12079,'Int_Dish09','Tristan XII','Healing',80000,50,true,'sc_start SC_INTFOOD,1200000,9; percentheal 8,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12080,'Int_Dish10','Dragon Breath Cocktail','Healing',100000,50,true,'sc_start SC_INTFOOD,1200000,10; percentheal 10,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12081,'Vit_Dish06','Awfully Bitter Bracer','Healing',20000,50,true,'sc_start SC_VITFOOD,1200000,6; percentheal 13,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12082,'Vit_Dish07','Sumptuous Feast','Healing',40000,50,true,'sc_start SC_VITFOOD,1200000,7; percentheal 16,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12083,'Vit_Dish08','Giant Burito','Healing',60000,50,true,'sc_start SC_VITFOOD,1200000,8; percentheal 19,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12084,'Vit_Dish09','Ascending Dragon Soup','Healing',80000,50,true,'sc_start SC_VITFOOD,1200000,9; percentheal 22,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12085,'Vit_Dish10','Immortal Stew','Healing',100000,50,true,'sc_start SC_VITFOOD,1200000,10; percentheal 25,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12086,'Agi_Dish06','Chile Shrimp Gratin','Healing',20000,50,true,'sc_start SC_AGIFOOD,1200000,6; percentheal 7,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12087,'Agi_Dish07','Steamed Alligator with Vegetable','Healing',40000,50,true,'sc_start SC_AGIFOOD,1200000,7; percentheal 8,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12088,'Agi_Dish08','Incredibly Spicy Curry','Healing',60000,50,true,'sc_start SC_AGIFOOD,1200000,8; percentheal 9,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12089,'Agi_Dish09','Special Meat Stew','Healing',80000,50,true,'sc_start SC_AGIFOOD,1200000,9; percentheal 10,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12090,'Agi_Dish10','Steamed Desert Scorpions','Healing',100000,50,true,'sc_start SC_AGIFOOD,1200000,10; percentheal 15,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12091,'Dex_Dish06','Peach Cake','Healing',20000,50,true,'sc_start SC_DEXFOOD,1200000,6; percentheal 5,6;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12092,'Dex_Dish07','Soul Haunted Bread','Healing',40000,50,true,'sc_start SC_DEXFOOD,1200000,7; percentheal 5,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12093,'Dex_Dish08','Special Toast','Healing',60000,50,true,'sc_start SC_DEXFOOD,1200000,8; percentheal 5,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12094,'Dex_Dish09','Heavenly Fruit Juice','Healing',80000,50,true,'sc_start SC_DEXFOOD,1200000,9; percentheal 5,9;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12095,'Dex_Dish10','Hwergelmir\'s Tonic','Healing',100000,50,true,'sc_start SC_DEXFOOD,1200000,10; percentheal 10,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12096,'Luk_Dish06','Lucky Soup','Healing',20000,50,true,'sc_start SC_LUKFOOD,1200000,6; percentheal 6,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12097,'Luk_Dish07','Assorted Shish Kebob','Healing',40000,50,true,'sc_start SC_LUKFOOD,1200000,7; percentheal 7,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12098,'Luk_Dish08','Strawberry Flavored Rice Ball','Healing',60000,50,true,'sc_start SC_LUKFOOD,1200000,8; percentheal 9,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12099,'Luk_Dish09','Blood Flavored Soda','Healing',80000,50,true,'sc_start SC_LUKFOOD,1200000,9; percentheal 10,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12100,'Luk_Dish10','Cooked Nine Tail\'s Tails','Healing',100000,50,true,'sc_start SC_LUKFOOD,1200000,10; percentheal 14,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12101,'Citron','Citron','Healing',20,300,true,'sc_start SC_FLEEFOOD,180000,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12102,'Meat_Skewer','Grilled Skewer','Healing',20,300,true,'sc_start SC_HITFOOD,180000,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_deadbranch`,`script`) VALUES (12103,'Bloody_Dead_Branch','Bloody Branch','Usable',10000,200,true,true,'monster "this",-1,-1,"--ja--",-1-MOBG_Bloody_Dead_Branch,1,"";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (12104,'Random_Quiver','Random Quiver','Usable',10000,200,true,true,'getrandgroupitem(IG_Quiver,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (12105,'Set_Of_Taiming_Item','Taming Gift Set','Usable',10000,200,true,true,'getrandgroupitem(IG_Taming,1); getrandgroupitem(IG_Taming,1); getrandgroupitem(IG_Taming,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (12106,'Accessory_Box','Jewelry Box','Usable',10000,200,true,true,'getrandgroupitem(IG_Accesory,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (12107,'Wrapped_Mask','Wrapped Mask','Usable',10000,200,true,true,'getrandgroupitem(IG_Mask,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (12108,'Bundle_Of_Magic_Scroll','Scroll Package','Usable',10000,200,true,true,'getrandgroupitem(IG_Scroll,1); getrandgroupitem(IG_Scroll,1); getrandgroupitem(IG_Scroll,1); getrandgroupitem(IG_Scroll,1); getrandgroupitem(IG_Scroll,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_deadbranch`,`script`) VALUES (12109,'Poring_Box','Poring Box','Usable',10000,200,true,true,'monster "this",-1,-1,"--ja--",-1-MOBG_Poring_Box,1,"";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (12110,'First_Aid_Kit','First Aid Kit','Usable',10000,200,true,true,'getrandgroupitem(IG_FirstAid,1); getrandgroupitem(IG_FirstAid,1); getrandgroupitem(IG_FirstAid,1); getrandgroupitem(IG_FirstAid,1); getrandgroupitem(IG_FirstAid,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (12111,'Food_Package','Bundle of Food','Usable',10000,200,true,true,'getrandgroupitem(IG_FoodBag,1); getrandgroupitem(IG_FoodBag,1); getrandgroupitem(IG_FoodBag,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12112,'Tropical_Sograt','Tropical Sograt','Usable',1000,100,true,'sc_start SC_CURSE,10000,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12113,'Vermilion_The_Beach','Vermilion on the Beach','Usable',1000,100,true,'sc_start SC_STUN,10000,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12114,'Elemental_Fire','Elemental Converter','Delayconsume',2,10,true,'itemskill "ITEM_ENCHANTARMS",4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12115,'Elemental_Water','Elemental Converter','Delayconsume',2,10,true,'itemskill "ITEM_ENCHANTARMS",2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12116,'Elemental_Earth','Elemental Converter','Delayconsume',2,10,true,'itemskill "ITEM_ENCHANTARMS",3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12117,'Elemental_Wind','Elemental Converter','Delayconsume',2,10,true,'itemskill "ITEM_ENCHANTARMS",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12118,'Resist_Fire','Fireproof Potion','Usable',2,10,true,'sc_start4 SC_ARMOR_ELEMENT_FIRE,1200000,-15,0,20,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12119,'Resist_Water','Coldproof Potion','Usable',2,10,true,'sc_start4 SC_ARMOR_ELEMENT_WATER,1200000,20,0,0,-15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12120,'Resist_Earth','Earthproof Potion','Usable',2,10,true,'sc_start4 SC_ARMOR_ELEMENT_EARTH,1200000,0,20,-15,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12121,'Resist_Wind','Thunderproof Potion','Usable',2,10,true,'sc_start4 SC_ARMOR_ELEMENT_WIND,1200000,0,-15,0,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12122,'Sesame_Pastry','Sesame Pastry','Usable',2,70,true,'sc_start SC_HITFOOD,180000,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12123,'Honey_Pastry','Honey Pastry','Usable',2,70,true,'sc_start SC_FLEEFOOD,180000,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12124,'Rainbow_Cake','Rainbow Cake','Usable',2,70,true,'sc_start SC_BATKFOOD,60000,10; sc_start SC_MATKFOOD,60000,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12125,'Outdoor_Cooking_Kits','Outdoor Cooking Kit','Usable',500,20,true,'cooking 11;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12126,'Indoor_Cooking_Kits','Home Cooking Kit','Usable',1000,30,true,'cooking 12;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12127,'High_end_Cooking_Kits','Professional Cooking Kit','Usable',2000,50,true,'cooking 13;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12128,'Imperial_Cooking_Kits','Royal Cooking Kit','Usable',5000,70,true,'cooking 14;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12129,'Fantastic_Cooking_Kits','Fantastic Cooking Kit','Usable',10000,70,true,'cooking 15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (12130,'Cookie_Bag','Cookie Bag','Usable',2,70,true,true,'getrandgroupitem(IG_CookieBag,1); getrandgroupitem(IG_CookieBag,1); getrandgroupitem(IG_CookieBag,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12131,'Lucky_Potion','Lucky Potion','Healing',2,100,'/* sc_start SC_LUKFOOD,180000,15; */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (12132,'Red_Bag','Santa\'s Bag','Usable',200,true,'sc_start SC_XMAS,600000,0; sc_start SC_SPEEDUP0,600000,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12133,'Ice_Cream_','McDonald\'s Ice Cone','Healing',80,'if(gettime(DT_DAYOFMONTH)!=MDiceCone) { MDiceCone = gettime(DT_DAYOFMONTH); percentheal 50,50; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12134,'Red_Envelope','Red Envelope','Usable',1,10,'Zeny += rand(1000,10000);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`delay_duration`,`script`) VALUES (12135,'Green_Ale','Green Ale','Usable',20,30,3000,'percentheal 50,50; sc_start SC_CONFUSION,10000,0,1000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12136,'Women\'s_Bundle','Women\'s Bundle','Usable',100,'getitem callfunc("F_Rand",558,529,2668,7518),1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (12137,'1st_Stage_Prize','First Stage Prize','Usable'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (12138,'2nd_Stage_Prize','Second Stage Prize','Usable'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (12139,'3rd_Stage_Prize','Third Stage Prize','Usable'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (12140,'4th_Stage_Prize','Fourth Stage Prize','Usable'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (12141,'5th_Stage_Prize','Fifth Stage Prize','Usable'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12142,'Magic_Book','Book of Magic','Usable',100,100,true,true,true,true,true,true,true,true,'sc_start SC_AGIFOOD,1800000,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12143,'Red_Can','Red Can','Usable',50000,300,'percentheal 25,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12144,'Sphere_Case_Wind','Lightning Sphere Pack','Usable',2,350,true,'getitem 13204,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12145,'Sphere_Case_Darkness','Blind Sphere Pack','Usable',2,350,true,'getitem 13206,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12146,'Sphere_Case_Poison','Poison Sphere Pack','Usable',2,350,true,'getitem 13205,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12147,'Sphere_Case_Water','Freezing Sphere Pack','Usable',2,350,true,'getitem 13207,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12148,'Sphere_Case_Fire','Flare Sphere Pack','Usable',2,350,true,'getitem 13203,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12149,'Bullet_Case','Cartridge','Usable',2,250,true,'getitem 13200,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12150,'Bullet_Case_Blood','Blood Cartridge','Usable',2,250,true,'getitem 13202,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12151,'Bullet_Case_Silver','Silver Cartridge','Usable',2,250,true,'getitem 13201,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`script`) VALUES (12152,'Special_Box','Special Present','Usable',100,true,'getgroupitem(IG_Special_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12153,'Bow_Mercenary_Scroll1','Bowman Scroll 1','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6017,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12154,'Bow_Mercenary_Scroll2','Bowman Scroll 2','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6018,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12155,'Bow_Mercenary_Scroll3','Bowman Scroll 3','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6019,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12156,'Bow_Mercenary_Scroll4','Bowman Scroll 4','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6020,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12157,'Bow_Mercenary_Scroll5','Bowman Scroll 5','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6021,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12158,'Bow_Mercenary_Scroll6','Bowman Scroll 6','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6022,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12159,'Bow_Mercenary_Scroll7','Bowman Scroll 7','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6023,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12160,'Bow_Mercenary_Scroll8','Bowman Scroll 8','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6024,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12161,'Bow_Mercenary_Scroll9','Bowman Scroll 9','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6025,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12162,'Bow_Mercenary_Scroll10','Bowman Scroll 10','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6026,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12163,'SwordMercenary_Scroll1','Fencer Scroll 1','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6037,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12164,'SwordMercenary_Scroll2','Fencer Scroll 2','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6038,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12165,'SwordMercenary_Scroll3','Fencer Scroll 3','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6039,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12166,'SwordMercenary_Scroll4','Fencer Scroll 4','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6040,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12167,'SwordMercenary_Scroll5','Fencer Scroll 5','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6041,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12168,'SwordMercenary_Scroll6','Fencer Scroll 6','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6042,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12169,'SwordMercenary_Scroll7','Fencer Scroll 7','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6043,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12170,'SwordMercenary_Scroll8','Fencer Scroll 8','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6044,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12171,'SwordMercenary_Scroll9','Fencer Scroll 9','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6045,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12172,'SwordMercenary_Scroll10','Fencer Scroll 10','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6046,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12173,'SpearMercenary_Scroll1','Spearman Scroll 1','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6027,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12174,'SpearMercenary_Scroll2','Spearman Scroll 2','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6028,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12175,'SpearMercenary_Scroll3','Spearman Scroll 3','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6029,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12176,'SpearMercenary_Scroll4','Spearman Scroll 4','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6030,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12177,'SpearMercenary_Scroll5','Spearman Scroll 5','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6031,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12178,'SpearMercenary_Scroll6','Spearman Scroll 6','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6032,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12179,'SpearMercenary_Scroll7','Spearman Scroll 7','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6033,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12180,'SpearMercenary_Scroll8','Spearman Scroll 8','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6034,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12181,'SpearMercenary_Scroll9','Spearman Scroll 9','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6035,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12182,'SpearMercenary_Scroll10','Spearman Scroll 10','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6036,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12183,'Holy_Arrow_Quiver','Holy Arrow Quiver','Usable',2,250,true,'getitem 1772,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12184,'Mercenary_Red_Potion','Mercenary Red Potion','Usable',500,100,true,'mercenary_heal 1000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12185,'Mercenary_Blue_Potion','Mercenary Blue Potion','Usable',1000,100,true,'mercenary_heal 0,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (12186,'Red_Box','Old Red Box','Usable',50000,200,true,'getrandgroupitem(IG_RedBox,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (12187,'Green_Box','Old Green Box','Usable',50000,200,true,'getrandgroupitem(IG_GreenBox,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12188,'Magical_Moon_Cake','Grace Moon Cake','Healing',20,300,'percentheal 50,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (12189,'Red_Box_','Old Red Box','Usable',50000,200,true,'getrandgroupitem(IG_RedBox_2,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12190,'Moon_Cake','Moon Cake','Usable',2,300,'sc_start SC_SPEEDUP0,180000,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12191,'Special_Moon_Cake','Special Moon Cake','Usable',2,500,'sc_start SC_ASPDPOTION0,600000,4; sc_start SC_SPEEDUP0,600000,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12192,'Pumpkin_Pie','Pumpkin Pie','Healing',20,10,'percentheal 5,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12193,'Brezel','Pretzel','Usable',20,20,'percentheal 5,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (12194,'Hometown_Gift','Hometown Gift','Usable',20,200,true,true,'getrandgroupitem(IG_HometownGift,1); getrandgroupitem(IG_HometownGift,1); getrandgroupitem(IG_HometownGift,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12195,'Plain_Rice_Cake','Plain Rice Cake','Healing',20,100,true,'percentheal 0,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12196,'Hearty_Rice_Cake','Hearty Rice Cake','Healing',20,100,true,'percentheal 50,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12197,'Salty_Rice_Cake','Salty Rice Cake','Healing',20,100,true,'percentheal 10,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12198,'Lucky_Rice_Cake','Lucky Rice Cake','Usable',20,100,true,'sc_start SC_INCLUK,1200000,21;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12199,'Rice_Scroll','Scroll of Magic','Usable',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12200,'Event_Cake','X-mas Cake','Delayconsume',20,50,'percentheal 5,0; itemskill "PR_MAGNIFICAT",3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12201,'Red_Box_C','Commonplace Red Box','Usable',20,200); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12202,'Str_Dish10_','Steamed Tongue','Healing',2,10,100,true,true,true,true,true,true,true,'sc_start SC_FOOD_STR_CASH,1800000,10; percentheal 15,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12203,'Agi_Dish10_','Steamed Scorpion','Healing',2,10,100,true,true,true,true,true,true,true,'sc_start SC_FOOD_AGI_CASH,1800000,10; percentheal 15,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12204,'Int_Dish10_','Dragon Breath Cocktail','Healing',2,10,100,true,true,true,true,true,true,true,'sc_start SC_FOOD_INT_CASH,1800000,10; percentheal 15,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12205,'Dex_Dish10_','Hwergelmir\'s Tonic','Healing',2,10,100,true,true,true,true,true,true,true,'sc_start SC_FOOD_DEX_CASH,1800000,10; percentheal 15,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12206,'Luk_Dish10_','Cooked Nine Tail\'s Tails','Healing',2,10,100,true,true,true,true,true,true,true,'sc_start SC_FOOD_LUK_CASH,1800000,10; percentheal 15,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12207,'Vit_Dish10_','Stew Of Immortality','Healing',2,10,100,true,true,true,true,true,true,true,'sc_start SC_FOOD_VIT_CASH,1800000,10; percentheal 15,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`delay_duration`,`delay_status`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12208,'Battle_Manual','Battle Manual','Usable',2,10,60000,'Reuse_Limit_C',100,true,true,true,true,true,true,true,'sc_start SC_EXPBOOST,1800000,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12209,'Insurance','Life Insurance','Usable',2,10,100,true,true,true,true,true,true,true,'sc_start SC_LIFEINSURANCE,1800000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`delay_duration`,`delay_status`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12210,'Bubble_Gum','Bubble Gum','Usable',2,10,60000,'Reuse_Limit_D',100,true,true,true,true,true,true,true,'sc_start SC_ITEMBOOST,1800000,200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12211,'Kafra_Card','Kafra Card','Usable',2,10,100,true,true,true,true,true,true,true,'callfunc "F_CashStore";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12212,'Giant_Fly_Wing','Giant Fly Wing','Usable',2,10,100,true,true,true,true,true,true,true,'callfunc "F_CashPartyCall";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12213,'Neuralizer','Neuralizer','Delayconsume',2,100,true,true,true,true,true,true,true,'callfunc "F_CashReset";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12214,'Convex_Mirror','Convex Mirror','Usable',2,10,100,true,true,true,true,true,true,true,'sc_start SC_BOSSMAPINFO,600000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12215,'Blessing_10_Scroll','LV10 Blessing Scroll','Usable',2,10,100,true,100,true,true,true,true,true,true,true,'skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,240000,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12216,'Inc_Agi_10_Scroll','LV10 Agil Scroll','Usable',2,10,100,true,100,true,true,true,true,true,true,true,'if(Hp>15) { skilleffect "AL_INCAGI",0; sc_start SC_INCREASEAGI,240000,10; heal -15,0; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12217,'Aspersio_5_Scroll','LV5 Aspersio Scroll','Usable',2,10,100,true,100,true,true,true,true,true,true,true,'if(countitem(523)>0) { skilleffect "PR_ASPERSIO",0; sc_start SC_ASPERSIO,180000,5; delitem 523,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12218,'Assumptio_5_Scroll','LV5 Assumptio Scroll','Usable',2,10,100,true,100,true,true,true,true,true,true,true,'sc_start SC_ASSUMPTIO,100000,5; skilleffect "HP_ASSUMPTIO",0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12219,'Wind_Walk_10_Scroll','LV10 Wind Walker Scroll','Usable',2,10,100,true,100,true,true,true,true,true,true,true,'skilleffect "SN_WINDWALK",0; sc_start SC_WINDWALK,250000,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12220,'Adrenaline_Scroll','LV5 Adrenaline Scroll','Usable',2,10,100,true,100,true,true,true,true,true,true,true,'.@type = getiteminfo(getequipid(EQI_HAND_R),11); if (.@type==W_1HAXE||.@type==W_2HAXE||.@type==W_MACE) { skilleffect "BS_ADRENALINE",0; sc_start SC_ADRENALINE,150000,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12221,'Megaphone_','Megaphone','Usable',2,10,100,true,true,true,true,true,true,true,'input .@megaphone$; announce strcharinfo(0) + ": " + .@megaphone$,bc_all,0xFF0000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12225,'Sweet_Candy_Striper','Sweet Candy Cane','Usable',20,50,100,true,'pet 1245;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12226,'Examination1','Examination 1','Healing',20,50,'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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12227,'Examination2','Examination 2','Healing',20,50,'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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12228,'Examination3','Examination 3','Healing',20,50,'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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12229,'Examination4','Examination 4','Healing',20,50,'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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12230,'Examination5','Examination 5','Healing',20,50,'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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12231,'Examination6','Examination 6','Healing',20,50,'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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12232,'Gingerbread','Ginger Bread','Usable',20,150,'sc_start SC_ASPDPOTION1,900000,0; sc_start SC_SPEEDUP0,900000,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12233,'Kvass','Kvass','Healing',20,200,'percentheal 100,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12234,'Cacao99','Fierce Cacao 99%','Healing',20,100,'percentheal 25,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12235,'Strawberry_Choco','Chocolate Strawberry','Usable',20,100,100,true,'percentheal 0,5; skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,240000,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12236,'Choco_Tart','Chocolate Tart','Delayconsume',20,100,100,true,'percentheal 5,0; itemskill "AL_ANGELUS",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12237,'Choco_Lump','Junky Chocolate','Usable',100,100,true,'percentheal 0,5; sc_start SC_POISON,18000,0; sc_start SC_BLEEDING,18000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12238,'New_Year_Rice_Cake_1','New Year Rice Cake','Usable',20,100,100,true,true,true,true,true,true,'sc_start SC_DPOISON,10000,0,1000,0; sc_start SC_POISON,50000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12239,'New_Year_Rice_Cake_2','New Year Rice Cake','Usable',20,100,100,true,true,true,true,true,true,'sc_start SC_DPOISON,10000,0,1000,0; sc_start SC_POISON,50000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (12240,'Old_Yellow_Box','Old Yellow Box','Usable',20,200,true,'getrandgroupitem(IG_YellowBox,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12241,'M_Center_Potion','Mercenary Concentration Potion','Usable',800,100,true,'mercenary_sc_start SC_ASPDPOTION0,1800000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12242,'M_Awakening_Potion','Mercenary Awakening Potion','Usable',1500,150,true,'mercenary_sc_start SC_ASPDPOTION1,1800000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12243,'M_Berserk_Potion','Mercenary Berserk Potion','Usable',3000,200,true,'mercenary_sc_start SC_ASPDPOTION2,1800000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (12244,'Old_Gift_Box','Old Gift Box','Usable',20,200,true,'getrandgroupitem(IG_OldGiftBox,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12245,'Green_Ale_US','Green Ale','Healing',5000,500,'percentheal 100,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (12246,'Magic_Card_Album','Mystical Card Album','Usable',10000,50,true,true,'getrandgroupitem(IG_MagicCardAlbum,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`script`) VALUES (12247,'Halohalo','Halo-Halo','Usable',2,100,20,'sc_start SC_INCALLSTATUS,600000,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (12248,'Masquerade_Ball_Box','Fancy Ball Box','Usable',20,10,true,'getrandgroupitem(IG_Masquerade,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12249,'Payroll_Of_Kafra_','Payment Statement for Kafra Employee','Usable',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12250,'Str_Dish10_M','Steamed Tongue','Usable',10,'sc_start SC_STRFOOD,3600000,10; percentheal 20,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12251,'Agi_Dish10_M','Steamed Desert Scorpions','Usable',10,'sc_start SC_AGIFOOD,3600000,10; percentheal 15,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12252,'Int_Dish10_M','Dragon Breath Cocktail','Usable',10,'sc_start SC_INTFOOD,3600000,10; percentheal 10,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12253,'Dex_Dish10_M','Hwergelmir\'s Tonic','Usable',10,'sc_start SC_DEXFOOD,3600000,10; percentheal 10,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12254,'Luk_Dish10_M','Cooked Nine Tail','Usable',10,'sc_start SC_LUKFOOD,3600000,10; percentheal 14,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12255,'Vit_Dish10_M','Immortal Stew','Usable',10,'sc_start SC_VITFOOD,3600000,10; percentheal 25,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12256,'PRO_Gift_Box','PRO Gift Box','Usable',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`script`) VALUES (12257,'Cold_Medicine','Cold Medicine','Healing',20,100,50,'percentheal 25,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12258,'Bombring_Box','Bomb Poring Box','Usable',10,100,true,true,true,true,true,true,true,'if(strcharinfo(3)=="job3_rang02") { monster "this",-1,-1,"--ja--",1904,1,""; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12259,'Miracle_Medicine','Miracle Tonic','Usable',100,true,true,true,true,true,true,true,true,'getexp2(3000000,1500000);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (12260,'Cool_Summer_Outfit','Cool Summer Outfit','Usable',100,true,'sc_start SC_SUMMER,600000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12261,'Secret_Medicine','Leap of Fantasy','Usable',100,true,true,true,true,true,true,true,true,'getexp2(2000000,1000000);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12262,'Inspector_Certificate_','Authoritative Badge','Usable',10,100,true,true,true,true,true,true,true,true,'sc_start SC_SPEEDUP0,540000,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12263,'Comp_Battle_Manual','Field Manual','Usable',2,10,100,true,true,true,true,true,true,true,true,'sc_start SC_EXPBOOST,1800000,200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12264,'Comp_Bubble_Gum','Bubble Gum','Usable',2,10,100,true,true,true,true,true,true,true,'sc_start SC_ITEMBOOST,1800000,200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12265,'Comp_Insurance','Life Insurrance','Usable',2,10,100,true,true,true,true,true,true,true,'sc_start SC_LIFEINSURANCE,1800000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12266,'Sesame_Pastry_','Sesame Pastry','Usable',2,70,100,true,true,true,true,true,true,true,true,'sc_start SC_HITFOOD,180000,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12267,'Honey_Pastry_','Honey Pastry','Usable',2,70,100,true,true,true,true,true,true,true,true,'sc_start SC_FLEEFOOD,180000,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12268,'Rainbow_Cake_','Rainbow Cake','Usable',2,70,100,true,true,true,true,true,true,true,true,'sc_start SC_ATKPOTION,60000,10; sc_start SC_MATKFOOD,60000,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12269,'Tasty_Colonel','Tasty Pink Ration','Usable',2,70,100,true,true,true,true,true,true,'sc_start SC_ATKPOTION,600000,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12270,'Tasty_Major','Tasty White Ration','Usable',2,70,100,true,true,true,true,true,true,'sc_start SC_MATKPOTION,600000,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12271,'Mre_A','Military Ration A','Healing',2,70,100,true,true,true,true,true,true,'percentheal 5,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12272,'Mre_B','Military Ration B','Usable',2,70,100,true,true,true,true,true,true,'sc_start SC_HITFOOD,600000,33;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12273,'Mre_C','Military Ration C','Usable',2,70,100,true,true,true,true,true,true,'sc_start SC_FLEEFOOD,600000,33;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12274,'Gold_Pill_1','Daehwandan','Healing',10,100,true,true,true,true,true,true,true,true,'sc_start2 SC_INCREASE_MAXHP,3600000,5,10; percentheal 10,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12275,'Gold_Pill_2','Taecheongdan','Healing',10,100,true,true,true,true,true,true,true,true,'sc_start2 SC_INCREASE_MAXSP,3600000,5,10; percentheal 0,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12276,'Mimic_Scroll','Mimic Scroll','Usable',2,10,100,true,true,true,true,true,true,true,'mercenary_create 2058,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12277,'Disguise_Scroll','Disguise Scroll','Usable',2,10,100,true,true,true,true,true,true,true,'mercenary_create 2059,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12278,'Alice_Scroll','Alice Scroll','Usable',2,10,100,true,true,true,true,true,true,true,'mercenary_create 2060,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12279,'Undead_Element_Scroll','Undead Elemental Scroll','Usable',10,'sc_start4 SC_ARMOR_RESIST,300000,20,20,20,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12280,'Holy_Element_Scroll','Holy Elemental Scroll','Usable',10,'specialeffect2 EF_BENEDICTIO; sc_start SC_BENEDICTIO,300000,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (12281,'Tresure_Box_WoE','Event Treasure Box','Usable',20,150,true,'getgroupitem(IG_Tresure_Box_WoE_);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12282,'Internet_Cafe1','Internet Cafe1','Usable',10,'sc_start SC_INCALLSTATUS,5400000,3; sc_start SC_ATKPOTION,5400000,15; sc_start SC_MATKPOTION,5400000,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12283,'Internet_Cafe2','Internet Cafe2','Usable',10,'sc_start SC_INCSTR,5400000,8; sc_start SC_INCDEX,5400000,4; sc_start SC_INCAGI,5400000,6; sc_start SC_ATKPOTION,5400000,32; sc_start SC_INCFLEE,5400000,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12284,'Internet_Cafe3','Internet Cafe3','Usable',10,'sc_start SC_INCINT,5400000,8; sc_start SC_INCVIT,5400000,4; sc_start SC_INCDEX,5400000,6; sc_start SC_MATKPOTION,5400000,40;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12285,'Internet_Cafe4','Internet Cafe4','Usable',10,'sc_start SC_INCDEX,5400000,8; sc_start SC_INCLUK,5400000,4; sc_start SC_INCAGI,5400000,6; sc_start SC_ATKPOTION,5400000,24; sc_start SC_MATKPOTION,5400000,24;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`script`) VALUES (12286,'Masquerade_Ball_Box2','Masquerade Ball Box2','Usable',10,true,'getrandgroupitem(IG_Masquerade_2,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`,`unequip_script`) VALUES (12287,'Love_Angel','Love Angel Magic Powder','Usable',100,true,true,true,true,true,true,true,true,'setfont 1;','setfont 0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`,`unequip_script`) VALUES (12288,'Squirrel','Squirrel Magic Powder','Usable',100,true,true,true,true,true,true,true,true,'setfont 2;','setfont 0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`,`unequip_script`) VALUES (12289,'Gogo','Gogo Magic Powder','Usable',100,true,true,true,true,true,true,true,true,'setfont 3;','setfont 0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12290,'Mysterious_Can','Mysterious Can Magic Powder','Usable',10,100,true,100,true,'percentheal 5,0; skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,120000,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12291,'Mysterious_PET_Bottle','Mysterious PET Bottle','Usable',10,100,true,100,true,'percentheal 5,0; skilleffect "AL_INCAGI",0; sc_start SC_INCREASEAGI,120000,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12292,'Unripe_Fruit','Unripe Yggdrasilberry','Healing',500,200,true,'percentheal 20,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12293,'Dried_Yggdrasilberry','Dried Yggdrasilberry','Healing',500,200,true,'percentheal 0,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12294,'PC_Bang_Coin_Box1','PC-Room Coin Box','Usable',10,100,true,true,true,true,true,true,true,true,'getitem 2740,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12295,'PC_Bang_Coin_Box2','PC-Room Coin Box','Usable',10,100,true,true,true,true,true,true,true,true,'getitem 2739,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12296,'PC_Bang_Coin_Box3','PC-Room Coin Box','Usable',10,100,true,true,true,true,true,true,true,true,'getitem 2738,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12297,'PC_Bang_Coin_Box4','PC-Room Coin Box','Usable',10,100,true,true,true,true,true,true,true,true,'getitem 2738,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12298,'SP_Potion','SP Consumption Reduction Potion','Usable',10,100,true,true,true,true,true,true,true,true,'sc_start SC_SPCOST_RATE,3600000,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12299,'Mega_Resist_Potion','Mega Resist Potion','Usable',10,100,true,true,true,true,true,true,true,true,'sc_start SC_COMMONSC_RESIST,3600000,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12300,'Wild_Rose_Scroll','Wild Rose Contract','Usable',10,100,true,true,true,true,true,true,true,'mercenary_create 1965,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12301,'Doppelganger_Scroll','Doppelganger Contract','Usable',10,100,true,true,true,true,true,true,true,'mercenary_create 1966,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12302,'Ygnizem_Scroll','Egnigem Cenia Contract','Usable',10,100,true,true,true,true,true,true,true,'mercenary_create 1967,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12303,'Water_Of_Blessing','Blessing Of Water','Usable',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`,`unequip_script`) VALUES (12304,'Picture_Diary','Diary Magic Powder','Usable',100,true,true,true,true,true,true,true,true,'setfont 4;','setfont 0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`,`unequip_script`) VALUES (12305,'Mini_Heart','Mini Heart Magic Powder','Usable',100,true,true,true,true,true,true,true,true,'setfont 5;','setfont 0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`,`unequip_script`) VALUES (12306,'Newcomer','Freshman Magic Powder','Usable',100,true,true,true,true,true,true,true,true,'setfont 6;','setfont 0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`,`unequip_script`) VALUES (12307,'Kid','Kid Magic Powder','Usable',100,true,true,true,true,true,true,true,true,'setfont 7;','setfont 0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`,`unequip_script`) VALUES (12308,'Magic_Castle','Magic Magic Powder','Usable',100,true,true,true,true,true,true,true,true,'setfont 8;','setfont 0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`,`unequip_script`) VALUES (12309,'Bulging_Head','JJangu Magic Powder','Usable',100,true,true,true,true,true,true,true,true,'setfont 9;','setfont 0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12310,'Spray_Of_Flowers','Spray Of Flowers','Usable',50,100,true,100,true,true,true,true,true,true,'sc_start SC_FLEEFOOD,300000,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12311,'Large_Spray_Of_Flowers','Huge Spray Of Flowers','Delayconsume',100,100,true,100,true,true,true,true,true,true,'itemskill "ALL_PARTYFLEE",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (12312,'Thick_Manual50','Thick Battle Manual','Usable','sc_start SC_EXPBOOST,3600000,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12313,'Protection_Of_Angel','Guardian Angel','Usable',100,true,100,true,true,true,true,true,true,true,'/* itemskill "ALL_ANGEL_PROTECT",1; */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12314,'Noive_Box','Adventurer Returns Support Box','Usable',10,100,true,true,true,true,true,true,true,true,'getgroupitem(IG_Noive_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12315,'Goddess_Bless','Goddess Of Blessing','Usable',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12316,'Angel_Bless','Angel Of Blessing','Usable',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12317,'Powder_Snow','Snow Powder','Usable',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12318,'Little_Heart','Small Hearts','Usable',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12319,'Strawberry_Cake','Rune Strawberry Cake','Usable',300,100,true,true,true,true,true,true,'sc_start SC_ATKPOTION,600000,5; sc_start SC_MATKPOTION,600000,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12320,'Pineapple_Juice','Schwarzwald Pine Jubilee','Usable',300,100,true,true,true,true,true,true,'sc_start SC_HITFOOD,600000,10; sc_start SC_FLEEFOOD,600000,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12321,'Spicy_Sandwich','Arunafeltz Desert Sandwich','Usable',300,100,true,true,true,true,true,true,'sc_start SC_INCCRI,600000,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12322,'Chocolate_Pie','Chocolate Pie','Healing',50,100,true,true,true,true,true,true,true,'percentheal 5,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12323,'N_Fly_Wing','Novice Fly Wing','Delayconsume',100,true,100,true,true,true,true,true,true,true,'itemskill "AL_TELEPORT",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12324,'N_Butterfly_Wing','Novice Butterfly Wing','Delayconsume',100,true,100,true,true,true,true,true,true,true,'itemskill "AL_TELEPORT",3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12325,'N_Magnifier','Novice Magnifier','Delayconsume',100,true,100,true,true,true,true,true,true,true,'itemskill "MC_IDENTIFY",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12326,'J_Firecracker','Large Firecracker','Usable',2,20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12327,'Charm_Of_Luck','Charm Of Luck','Usable',1000,50,'sc_start SC_INCLUK,3600000,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12328,'Charm_Of_Happiness','Charm Of Happiness','Usable',1800,100,'sc_start SC_INCLUK,3600000,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (12329,'Recall_MaleGM','Summon Male GameMaster Scroll','Usable',10,true,'mercenary_create 2000,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (12330,'Recall_FemaleGM','Summon Female GameMaster Scroll','Usable',10,true,'mercenary_create 2001,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12331,'Ginseng','Ginseng','Healing',10,100,true,true,true,true,true,true,true,true,'percentheal 6,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12332,'Fruit_Juice','Fruit Juice','Healing',10,100,true,true,true,true,true,true,'percentheal 0,6;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`stack_amount`,`stack_inventory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12333,'Ansila','Ancilla','Usable',10,3,true,100,true,true,true,true,true,true,true,true,'percentheal 0,15; sc_start SC_ANCILLA,60000,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`script`) VALUES (12334,'Cherish_Box','Treasure Edition Helm Box','Usable',10,true,'getrandgroupitem(IG_Cherish_Box,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12335,'Yummy_Skewered_Dish','Grilled Delicious Skewer','Healing',1000,350,'percentheal 60,60;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12336,'Baked_Mushroom','Grilled Mushroom','Healing',500,300,'percentheal 30,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12337,'Grilled_Sausage','Grilled Sausages','Healing',300,200,'percentheal 20,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12338,'Grilled_Corn','Grilled Corn','Usable',100,100,'sc_start SC_INCSTR,180000,2; sc_start SC_INCINT,180000,2; sc_start SC_INCAGI,180000,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`script`) VALUES (12339,'Cherish_Box_Ori','Treasure Edition Box','Usable',10,true,'getrandgroupitem(IG_Cherish_Box_Ori,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12340,'Mysterious_Rice_Powder','Chewy Rice Powder','Usable',10,100,true,100,true,true,true,true,true,true,true,'pet 1815;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12341,'Special_Alloy_Trap_Box','Special Alloy Trap Box','Usable',30000,10,true,'getitem 7940,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (12342,'Manuk\'s_Opportunity','Manuk\'s Opportunity','Usable',50,true,'specialeffect2 EF_POTION_BERSERK; sc_start SC_MANU_ATK,600000,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (12343,'Manuk\'s_Courage','Manuk\'s Courage','Usable',50,true,'specialeffect2 EF_GUARD; sc_start SC_MANU_DEF,600000,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (12344,'Pinguicula\'s_fruit_Jam','Pinguicula\'s Fruit Jam','Usable',50,true,'specialeffect2 EF_POTION_BERSERK; sc_start SC_SPL_ATK,600000,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (12345,'Luciola\'s_Honey_Jam','Luciola\'s Honey Jam','Usable',50,true,'specialeffect2 EF_GUARD; sc_start SC_SPL_DEF,600000,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`,`script`) VALUES (12346,'Unripe_Acorn','Unripe Acorn','Usable',true,'heal -100,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12347,'Acorn_Jelly','Acorn Jelly','Delayconsume',true,100,true,'itemskill "ALL_REVERSEORCISH",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (12348,'Manuk\'s_Faith','Manuk\'s Faith','Usable',50,true,'specialeffect2 EF_POTION_BERSERK; sc_start SC_MANU_MATK,600000,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (12349,'Cornus\'_Tears','Cornus\' Tears','Usable',50,true,'specialeffect2 EF_POTION_BERSERK; sc_start SC_SPL_MATK,600000,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12350,'Angeling_Potion','Angeling Potion','Delayconsume',20,100,true,100,true,'skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,120000,5; itemskill "AL_ANGELUS",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12351,'Shout_Megaphone','Scream Megaphone','Delayconsume',20,50,true,'itemskill "MC_LOUD",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12352,'Dun_Tele_Scroll3','Dungeon Teleport Scroll 3','Usable',10,'callfunc "F_CashDungeon",3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12353,'Tiny_Waterbottle','Small Bottle','Usable',800,10,true,'sc_start SC_WATERWEAPON,90000,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12354,'Buche_De_Noel','Buche De Noel','Usable',2,50,true,'specialeffect2 EF_ANGELUS; bonus_script "{ bonus bHPrecovRate,3; bonus bSPrecovRate,3; bonus bHit,3; bonus bCritical,7; }",600,0,0,EFST_BUCHEDENOEL;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (12355,'Xmas_Gift','Xmas Gift','Usable',2,100,true,true,'getrandgroupitem(IG_Xmas_Gift,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (12356,'Louise_Costume_Box','Louise Costume Box','Usable',2,100,true,true,'getrandgroupitem(IG_Louise_Costume_Box,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12357,'Shiny_Wing_Gown','Shiny Wing Gown','Usable',20,50,'pet 1630;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12358,'Fan_Of_Wind','Fan Of Wind','Usable',20,50,true,100,true,'pet 1513;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12359,'Very_Soft_Plant','Very Soft Plant','Usable',20,50,true,100,true,'pet 1586;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12360,'Very_Red_Juice','Very Red Juice','Usable',20,50,true,100,true,'pet 1505;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12361,'Delicious_Shaved_Ice','Delicious Shaved Ice','Usable',100,true,100,true,true,true,true,true,true,true,'pet 1143;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12362,'Kuloren','Kuloren','Usable',20,50,true,100,true,'pet 1401;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12363,'Fit_Pipe','Fit Pipe','Usable',100,true,100,true,true,true,true,true,true,true,'pet 1179;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12364,'Staff_Of_Leader','Staff Of Leader','Usable',20,50,true,100,true,'pet 1299;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12365,'Charming_Lotus','Charming Lotus','Usable',20,50,true,100,true,'pet 1416;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12366,'Gril_Doll','Girl\'s Doll','Usable',20,50,true,100,true,'pet 1404;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12367,'Luxury_Whisky_Bottle','Luxury Whisky Bottle','Usable',20,50,true,100,true,'pet 1504;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12368,'Splendid_Mirror','Splendid Mirror','Usable',20,50,true,100,true,'pet 1148;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12369,'Oilpalm_Coconut','Oilpalm Coconut','Usable',20,50,true,100,true,'pet 1495;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12370,'Gril\'s_Naivety','Girl\'s Naivety','Usable',100,true,100,true,true,true,true,true,true,true,'pet 1374;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12371,'Magical_Lithography','Magical Lithography','Usable',20,50,true,100,true,'pet 1040;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12372,'Hell_Contract','Hell Contract','Usable',20,50,true,100,true,'pet 1379;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12373,'Boy\'s_Naivety','Boy\'s Pure Heart','Usable',20,50,true,100,true,'pet 1370;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12374,'Flaming_Ice','Ice Fireworks','Usable',20,50,true,100,true,'pet 1837;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12375,'Acaraje','Akaraje','Usable',80,'specialeffect2 EF_STEAL; bonus_script "{ bonus bHit,5; bonus bAspdRate,10; }",1200,0,0,EFST_ACARAJE;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12376,'Mysterious_Can2','Mysterious Can2','Usable',10,100,true,100,true,'percentheal 3,0; itemskill "PR_GLORIA",2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12377,'Mysterious_PET_Bottle2','Mysterious PET Bottle2','Usable',10,100,true,100,true,'percentheal 0,3; itemskill "PR_MAGNIFICAT",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12378,'2009_Rice_Cake_Soup','Rice Cake Soup','Usable',10,100,'percentheal 50,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12379,'Pope\'s_Cookie','Pope Cookie','Usable',10,10,true,'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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12380,'Desert_Wolf_Babe_Scroll','Job Change Flute','Usable',10,10,'mercenary_create 2034,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12381,'ValkyrieA_Scroll','Ancient Languages Scroll','Usable',10,10,'if(strcharinfo(3)=="job3_arch02") { mercenary_create 2037,1800000; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12382,'ValkyrieB_Scroll','Ancient Languages Scroll','Usable',10,10,'if(strcharinfo(3)=="job3_arch02") { mercenary_create 2038,1800000; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12383,'Vulcan_Bullet_Magazine','Vulcan Bullet Magazine','Usable',11000,500,true,'getitem 6145,1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12384,'Rainbow_Ruby_Water','Rainbow Ruby','Delayconsume',50,100,true,true,true,true,true,true,true,'if(strcharinfo(3)=="job3_war02") { itemskill "WL_FROSTMISTY",5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12385,'Rainbow_Ruby_Fire','Rainbow Ruby','Delayconsume',50,100,true,true,true,true,true,true,true,'if(strcharinfo(3)=="job3_war02") { itemskill "WL_CRIMSONROCK",5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12386,'Rainbow_Ruby_Wind','Rainbow Ruby','Delayconsume',50,100,true,true,true,true,true,true,true,'if(strcharinfo(3)=="job3_war02") { itemskill "WL_CHAINLIGHTNING",5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12387,'Rainbow_Ruby_Earth','Rainbow Ruby','Delayconsume',50,100,true,true,true,true,true,true,true,'if(strcharinfo(3)=="job3_war02") { itemskill "WL_EARTHSTRAIN",5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12388,'Runstone_Crush','Rhydo Runestone For Apprentice','Delayconsume',10,100,true,100,true,true,true,true,true,true,true,true,'if(strcharinfo(3)=="job3_rune02") { itemskill "RK_CRUSHSTRIKE",1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12389,'Runstone_Storm','Pertz Runestone For Apprentice','Delayconsume',10,100,true,100,true,true,true,true,true,true,true,true,'if(strcharinfo(3)=="job3_rune02") { itemskill "RK_STORMBLAST",1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12390,'Runstone_Millennium','Verkana Runestone For Apprentice','Delayconsume',10,100,true,100,true,true,true,true,true,true,true,true,'if(strcharinfo(3)=="job3_rune02") { itemskill "RK_MILLENNIUMSHIELD",1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12391,'Lucky_Egg_C','Lucky Egg C','Usable',10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Lucky_Egg_C);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`flag_buyingstore`,`script`) VALUES (12392,'RepairA','Repair A','Usable',220,100,true,true,true,true,true,'if ( checkmadogear() ) { itemheal rand(200,300),0; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`flag_buyingstore`,`script`) VALUES (12393,'RepairB','Repair B','Usable',500,140,true,true,true,true,true,'if ( checkmadogear() ) { itemheal rand(300,400),0; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`flag_buyingstore`,`script`) VALUES (12394,'RepairC','Repair C','Usable',1100,180,true,true,true,true,true,'if ( checkmadogear() ) { itemheal rand(400,500),0; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12395,'Tantanmen','Tantan Noodle','Usable',20,50,true,'pet 1519;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12396,'Fools_Day_Box','Gift Box?','Delayconsume',20,10,100,true,'.@rnd = rand(1,10); if(.@rnd==1) itemskill "AL_TELEPORT",1; else if(.@rnd==2) itemskill "AL_TELEPORT",3; else if(.@rnd==3) percentheal 50,0; else if(.@rnd==4) percentheal 0,50; else if(.@rnd==5) end; else if(.@rnd==6) getitem 512,1; else if(.@rnd==7) itemskill "ALL_REVERSEORCISH",1; else if(.@rnd==8) specialeffect2 EF_MAPPILLAR2; else if(.@rnd==9) specialeffect2 EF_ANGEL2; else specialeffect2 EF_COIN;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12397,'Fools_Day_Box2','Gift Box?','Delayconsume',20,10,100,true,'.@rnd = rand(1,10); if(.@rnd==1) itemskill "TF_DETOXIFY",1; else if(.@rnd==2) itemskill "TF_PICKSTONE",1; else if(.@rnd==3) itemskill "BA_FROSTJOKER",1; else if(.@rnd==4) itemskill "DC_SCREAM",1; else if(.@rnd==5) end; else if(.@rnd==6) getitem 909,1; else if(.@rnd==7) itemskill "AL_RUWACH",1; else if(.@rnd==8) specialeffect2 EF_BEGINASURA; else if(.@rnd==9) specialeffect2 EF_MVP; else specialeffect2 EF_CURSEATTACK;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12398,'PCBang_Gift_Box','PCRoom Gift Box','Usable',20,10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12399,'Castle_Treasure_Box','Castle Treasure Box','Usable',20,1000,'Zeny += 1000000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12400,'Water_Of_Blessing_','Water Of Blessing','Usable',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (12401,'Rune_Kn_Test_Int','Rune Kn Test Int','Usable','sc_start SC_INCINT,300000,40;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12402,'29Fruit','29Fruit','Usable',100,true,true,true,true,true,true,true,'percentheal 5,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12403,'Lucky_Egg_C2','Lucky Egg C2','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Lucky_Egg_C2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12404,'Acti_Potion','Acti Potion','Usable',20,10,100,true,true,true,true,true,true,true,'specialeffect2 EF_STEAL; bonus_script "{ bonus2 bAddClass,Class_All,3; bonus bMatkRate,3; bonus2 bSubEle,Ele_All,3; }",120,0,0,EFST_POPECOOKIE;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12405,'Underripe_Yggseed','Underripe Yggseed','Usable',20,50,100,true,true,true,true,true,true,true,'percentheal 30,30; skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,140000,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12406,'Psychic_ArmorS','Psychic ArmorS','Usable',20,10,100,true,true,true,true,true,true,true,'specialeffect2 EF_ENERGYCOAT; sc_start4 SC_ELEMENTALCHANGE,10000,1,Ele_Ghost,1,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12407,'PCBang_Coupon_Box','PC Cafe Coupon Box','Usable',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (12408,'Leaf_Cat_Ball','Hydra Ball','Usable','pet 2081;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (12409,'Pork_Belly_H','1st Class Pork Belly','Usable'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (12410,'Spareribs_H','Thick Pork Belly','Usable'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12411,'HE_Battle_Manual','HE Battle Manual','Usable',2,10,'sc_start SC_EXPBOOST,900000,200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12412,'HE_Bubble_Gum','HE Bubble Gum','Usable',2,10,'sc_start SC_ITEMBOOST,900000,300;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12413,'PCBang_Coupon_Box2','PC Cafe Coupon Box','Usable',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12414,'Guarana_Candy','Guarana Candy','Usable',20,10,true,'sc_start SC_ASPDPOTION0,1800000,0; sc_start SC_INCREASEAGI,140000,5; skilleffect "AL_INCAGI",0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12415,'Siege_Teleport_Scroll2','Siege Teleport Scroll Silver','Usable',10,100,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12416,'Lucky_Egg_C3','Lucky Egg C3','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Lucky_Egg_C3);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12417,'Boost500','Boost500','Usable',100,50,'sc_start SC_BOOST500,500000,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12418,'Full_SwingK','Full SwingK','Usable',100,50,true,'sc_start SC_FULL_SWING_K,500000,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12419,'Mana_Plus','Mana Plus','Usable',100,50,true,'sc_start SC_MANA_PLUS,500000,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12420,'Stamina_Up_M','Stamina Up M','Usable',100,50,'sc_start SC_MUSTLE_M,500000,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12421,'Digestive_F','Falmons F','Usable',10,10,'sc_start SC_LIFE_FORCE_F,500000,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12422,'HP_Increase_PotionS','HP Increase Potion (Small)','Usable',100,20,true,'sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,1; percentheal 1,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12423,'HP_Increase_PotionM','HP Increase Potion (Medium)','Usable',100,40,true,'sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,2; percentheal 2,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12424,'HP_Increase_PotionL','HP Increase Potion (Large)','Usable',100,80,true,'sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,3; percentheal 5,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12425,'SP_Increase_PotionS','SP Increase Potion (Small)','Usable',100,20,true,'sc_start2 SC_ENERGY_DRINK_RESERCH,500000,1,1; percentheal 0,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12426,'SP_Increase_PotionM','SP Increase Potion (Medium)','Usable',100,40,true,'sc_start2 SC_ENERGY_DRINK_RESERCH,500000,1,2; percentheal 0,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12427,'SP_Increase_PotionL','SP Increase Potion (Large)','Usable',100,80,true,'sc_start2 SC_ENERGY_DRINK_RESERCH,500000,1,3; percentheal 0,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12428,'Enrich_White_PotionZ','Concentrated White Potion Z','Healing',10,10,true,'sc_start SC_EXTRACT_WHITE_POTION_Z,500000,20; heal 1000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (12429,'Savage_BBQ','Savage Full Roast','Usable',50,true,'sc_start SC_SAVAGE_STEAK,300000,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (12430,'Wug_Blood_Cocktail','Cocktail Warg Blood','Usable',50,true,'sc_start SC_COCKTAIL_WARG_BLOOD,300000,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (12431,'Minor_Brisket','Minor Stew','Usable',50,true,'sc_start SC_MINOR_BBQ,300000,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (12432,'Siroma_Icetea','Siroma Iced Tea','Usable',50,true,'sc_start SC_SIROMA_ICE_TEA,300000,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (12433,'Drocera_Herb_Stew','Drosera Herb Salad','Usable',50,true,'sc_start SC_DROCERA_HERB_STEAMED,300000,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (12434,'Petti_Tail_Noodle','Petite Tail Noodles','Usable',50,true,'sc_start SC_PUTTI_TAILS_NOODLES,300000,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12435,'Black_Thing','Black Mass','Usable',50,'sc_start SC_STOMACHACHE,60000,rand(5,10);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12436,'Vitata500','Vitata 500','Healing',10,10,true,'sc_start2 SC_VITATA_500,500000,20,5; itemheal 0,200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12437,'Enrich_Celermine_Juice','Concentrated Ceromain Soup','Usable',10,10,true,'sc_start SC_EXTRACT_SALAMINE_JUICE,500000,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12438,'F_Giant_Fly_Wing','F Giant Fly Wing','Usable',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12439,'F_Battle_Manual','F Old Battle Manual','Usable',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12440,'F_Insurance','F Insurance','Usable',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12441,'F_Bubble_Gum','F Old Bubble Gum','Usable',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12442,'F_Kafra_Card','F Kafra Card','Usable',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (12443,'F_Neuralizer','F Neuralizer','Usable',2); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12444,'F_Dun_Tele_Scroll1','WoE Telport Scroll','Usable',10,'callfunc "F_CashSiegeTele";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12445,'F_Str_Dish10_','F Str Dish10','Usable',2,10,'sc_start SC_STRFOOD,1800000,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12446,'F_Agi_Dish10_','F Agi Dish10','Usable',2,10,'sc_start SC_AGIFOOD,1800000,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12447,'F_Int_Dish10_','F Int Dish10','Usable',2,10,'sc_start SC_INTFOOD,1800000,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12448,'F_Dex_Dish10_','F Dex Dish10','Usable',2,10,'sc_start SC_DEXFOOD,1800000,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12449,'F_Luk_Dish10_','F Luk Dish10','Usable',2,10,'sc_start SC_LUKFOOD,1800000,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12450,'F_Vit_Dish10_','F Vit Dish10','Usable',2,10,'sc_start SC_VITFOOD,1800000,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12451,'F_WOB_Rune','F WOB Rune','Usable',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12452,'F_WOB_Schwaltz','F WOB Schwarz','Usable',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12453,'F_WOB_Rachel','F WOB Rachel','Usable',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12454,'F_WOB_Local','F WOB Local','Usable',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12456,'F_Greed_Scroll','F Greed Scroll','Usable',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12457,'F_Glass_Of_Illusion','F Glass Of Illusion','Usable',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12458,'F_Abrasive','F Abrasive','Usable',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12459,'F_Med_Life_Potion','F Med Life Potion','Usable',10,'specialeffect2 EF_HEAL3; sc_start2 SC_L_LIFEPOTION,600000,-7,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12460,'F_Small_Life_Potion','F Small Life Potion','Usable',10,'specialeffect2 EF_HEAL3; sc_start2 SC_S_LIFEPOTION,600000,-5,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12461,'F_Regeneration_Potion','F Regeneration Potion','Usable',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12462,'F_B_Mdef_Potion','F B Mdef Potion','Usable',10,'specialeffect EF_SPELLBREAKER; bonus_script "{ bonus3 bSubEle,Ele_All,3,BF_MAGIC; }",180,0,0,EFST_PROTECT_MDEF;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12463,'F_S_Mdef_Potion','F S Mdef Potion','Usable',10,'specialeffect EF_SPELLBREAKER; bonus_script "{ bonus3 bSubEle,Ele_All,3,BF_MAGIC; }",60,0,0,EFST_PROTECT_MDEF;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12464,'F_B_Def_Potion','F B Def Potion','Usable',10,'specialeffect EF_GUARD; bonus_script "{ bonus3 bSubEle,Ele_All,3,BF_SHORT; }",180,0,0,EFST_PROTECT_DEF;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12465,'F_S_Def_Potion','F S Def Potion','Usable',10,'specialeffect EF_GUARD; bonus_script "{ bonus3 bSubEle,Ele_All,3,BF_SHORT; }",60,0,0,EFST_PROTECT_DEF;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12466,'F_Blessing_10_Scroll','F Blessing 10 Scroll','Usable',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12467,'F_Inc_Agi_10_Scroll','F Inc Agi 10 Scroll','Usable',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12468,'F_Aspersio_5_Scroll','F Aspersio 5 Scroll','Usable',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12470,'F_Wind_Walk_10_Scroll','F Wind Walk 10 Scroll','Usable',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12471,'F_Adrenaline_Scroll','F Adrenaline Scroll','Usable',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12472,'F_Convex_Mirror','F Convex Mirror','Usable',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12473,'RWC_Parti_Box','RWC Parti Box','Usable',20,10,true,100,true,100,true,true,true,true,true,true,'getgroupitem(IG_RWC_Parti_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12474,'RWC_Final_Comp_Box','RWC Final Comp Box','Usable',20,10,true,100,true,100,true,true,true,true,true,true,'getgroupitem(IG_RWC_Final_Comp_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12475,'Cure_Free','Cure Free','Usable',20,50,true,'sc_end SC_SILENCE; sc_end SC_BLEEDING; sc_end SC_POISON; sc_end SC_CURSE; sc_end SC_ORCISH; sc_end SC_CHANGEUNDEAD; itemheal 500,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12476,'PCBang_Coupon_Box3','PCBang Coupon Box3','Usable',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_container`,`script`) VALUES (12477,'Gift_Bundle','Gift Bundle','Usable',true,'/*getgroupitem(IG_Gift_Bundle);*/ getitem 547,30; getitem 608,2; getitem 6302,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12478,'Chance_Box','Chance Box','Usable',20,10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12479,'Caracas_Ring_Box','Caracas Ring Box','Usable',true,100,true,true,true,true,true,true,true,true,'/*getgroupitem(IG_Caracas_Ring_Box);*/ rentitem 2841,270000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12480,'Attend_3Day_Box','Attend 3Day Box','Usable',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12481,'Attend_7Day_Box','Attend 7Day Box','Usable',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12482,'Attend_10Day_Box','Attend 10Day Box','Usable',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12483,'Attend_15Day_Box','Attend 15Day Box','Usable',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12484,'Attend_20Day_Box','Attend 20Day Box','Usable',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12485,'Attend_25Day_Box','Attend 25Day Box','Usable',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12486,'GoldPC_First_Box','GoldPC First Box','Usable',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12487,'PC_4Leaf_Clover_Box','PC 4Leaf Clover Box','Usable',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12488,'Ticket_Gift_Box','Ticket Gift Box','Usable',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12489,'Ticket_Gift_Box2','Ticket Gift Box2','Usable',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_buyingstore`,`script`) VALUES (12490,'Vivid_Notation','Christmas Music Box','Usable',20,true,'playbgm rand(53,58)+".mp3";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (12491,'Curious_Snowball','Curious Snowball','Usable',20,'callfunc "F_Snowball";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12492,'Crumpled_Paper','Crumpled Paper','Usable',2,10,true,100,true,true,true,true,true,true,true,'getrandgroupitem(IG_Crumpled_Paper,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12493,'Lucky_Egg_C4','Lucky Egg C4','Usable',10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Lucky_Egg_C4);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12494,'E_Giant_Fly_Wing','E Giant Fly Wing','Usable',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12495,'E_Battle_Manual','E Battle Manual','Usable',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12496,'E_Insurance','E Insurance','Usable',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12497,'E_Bubble_Gum','E Bubble Gum','Usable',2,10,100,true,true,true,true,true,true,true,'sc_start SC_ITEMBOOST,1800000,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12498,'E_Kafra_Card','E Kafra Card','Usable',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (12499,'E_Neuralizer','E Neuralizer','Usable',2); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12500,'E_Dun_Tele_Scroll1','E Dun Tele Scroll1','Usable',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12501,'E_Str_Dish10_','Steamed Tongue','Usable',2,10,100,true,true,true,true,true,true,true,'sc_start SC_STRFOOD,1800000,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12502,'E_Agi_Dish10_','Steamed Desert Scorpions','Usable',2,10,100,true,true,true,true,true,true,true,'sc_start SC_AGIFOOD,1800000,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12503,'E_Int_Dish10_','Dragon Breath Cocktail','Usable',2,10,100,true,true,true,true,true,true,true,'sc_start SC_INTFOOD,1800000,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12504,'E_Dex_Dish10_','Hwergelmir\'s Tonic','Usable',2,10,100,true,true,true,true,true,true,true,'sc_start SC_DEXFOOD,1800000,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12505,'E_Luk_Dish10_','Cooked Nine Tail','Usable',2,10,100,true,true,true,true,true,true,true,'sc_start SC_LUKFOOD,1800000,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12506,'E_Vit_Dish10_','Immortal Stew','Usable',2,10,100,true,true,true,true,true,true,true,'sc_start SC_VITFOOD,1800000,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12507,'E_WOB_Rune','Yellow Butterfly Wing','Usable',10,true,100,true,true,true,true,true,true,true,'callfunc "F_CashCity",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12508,'E_WOB_Schwaltz','Green Butterfly Wing','Usable',10,true,100,true,true,true,true,true,true,true,'callfunc "F_CashCity",2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12509,'E_WOB_Rachel','Red Butterfly Wing','Usable',10,true,100,true,true,true,true,true,true,true,'callfunc "F_CashCity",3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12510,'E_WOB_Local','Blue Butterfly Wing','Usable',10,true,100,true,true,true,true,true,true,true,'callfunc "F_CashCity",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12511,'E_Siege_Teleport_Scroll','E Siege Teleport Scroll','Usable',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12512,'E_Greed_Scroll','E Greed Scroll','Usable',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12513,'E_Glass_Of_Illusion','E Glass Of Illusion','Usable',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12514,'E_Abrasive','E Abrasive','Usable',10,100,true,true,true,true,true,true,true,'specialeffect2 EF_MAGICALATTHIT; sc_start SC_INCCRI,300000,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12515,'E_Med_Life_Potion','E Med Life Potion','Usable',10,100,true,true,true,true,true,true,true,'specialeffect2 EF_HEAL3; sc_start2 SC_L_LIFEPOTION,600000,-7,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12516,'E_Small_Life_Potion','E Small Life Potion','Usable',10,100,true,true,true,true,true,true,true,'specialeffect2 EF_HEAL3; sc_start2 SC_S_LIFEPOTION,600000,-5,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12517,'E_Regeneration_Potion','E Regeneration Potion','Usable',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12518,'E_B_Mdef_Potion','E B Mdef Potion','Usable',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12519,'E_S_Mdef_Potion','E S Mdef Potion','Usable',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12520,'E_B_Def_Potion','E B Def Potion','Usable',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12521,'E_S_Def_Potion','E S Def Potion','Usable',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12522,'E_Blessing_10_Scroll','Blessing Scroll Lv 10','Usable',2,10,100,true,true,true,true,true,true,true,'itemskill "AL_BLESSING",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12523,'E_Inc_Agi_10_Scroll','Increase Agility Scroll Lv 10','Usable',2,10,100,true,true,true,true,true,true,true,'itemskill "AL_INCAGI",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12524,'E_Aspersio_5_Scroll','Aspersio Scroll Lv 5','Usable',2,10,'itemskill "PR_ASPERSIO",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12525,'E_Assumptio_5_Scroll','Assumptio Scroll Lv 5','Usable',2,10,'itemskill "HP_ASSUMPTIO",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12526,'E_Wind_Walk_10_Scroll','Wind Walk Scroll Lv 10','Usable',2,10,'itemskill "SN_WINDWALK",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12527,'E_Adrenaline_Scroll','Adrenaline Scroll','Usable',2,10,'itemskill "BS_ADRENALINE",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12528,'E_Convex_Mirror','Convex Mirror','Usable',2,10,'sc_start SC_BOSSMAPINFO,600000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12529,'White_Slim_Potion_Box','White Slim Potion Box','Usable',100,true,true,true,true,true,true,true,'getitem 547,200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12530,'Mastela_Fruit_Box','Mastela Fruit Box','Usable',100,true,true,true,true,true,true,true,'getitem 522,200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12531,'White_Potion_Box','White Potion Box','Usable',100,true,true,true,true,true,true,true,'getitem 504,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12532,'Royal_Jelly_Box2','Royal Jelly Box','Usable',100,true,true,true,true,true,true,true,'getitem 526,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12533,'Blue_Herb_Box2','Blue Herb Box','Usable',100,true,true,true,true,true,true,true,'getitem 510,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12534,'Yggdrasil_Seed_Box','Yggdrasil Seed Box','Usable',100,true,true,true,true,true,true,true,'getitem 608,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12535,'Iggdrasilberry_Box','Iggdrasilberry Box','Usable',100,true,true,true,true,true,true,true,'getitem 607,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (12536,'NY_Rice_Cake_Soup','NY Rice Cake Soup','Usable',20,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (12537,'Solo_Gift_Basket','Solo Gift Basket','Usable',1000,10,true,'/*getgroupitem(IG_Solo_Gift_Basket);*/ getitem 597,5; getitem 596,3; getitem 561,3; getitem 573,4; getitem 559,10; getitem 560,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (12538,'Couple_Event_Basket','Couple Event Basket','Usable',2000,10,true,'/*getgroupitem(IG_Couple_Event_Basket);*/ getitem 14546,10; getitem 14547,10; getitem 14548,10; getitem 14549,10; getitem 14550,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12539,'Splendid_Box','Splendid Box','Usable',20,100,true,'getgroupitem(IG_Splendid_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12540,'GM_Warp_Box','GM Warp Box','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_GM_Warp_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12541,'Fortune_Cookie1','Fortune Cookie1','Usable',20,10,true,100,true,true,true,true,true,true,true,'getrandgroupitem(IG_Fortune_Cookie1,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12542,'Fortune_Cookie2','Fortune Cookie2','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Fortune_Cookie2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12543,'Fortune_Cookie3','Fortune Cookie3','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Fortune_Cookie3);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12544,'Mystic_Tree_Branch','Mystic Tree Branch','Usable',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12545,'Lucky_Egg_C5','Lucky Egg C5','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Lucky_Egg_C5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12546,'Suspicious_Dish','Suspicious Dish','Usable',100,50,'sc_start SC_POISON,50000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12547,'Chalcenodny_Box','Chalcenodny Box','Usable',200); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12548,'Buy_Market_Permit2','Shabby Purchase Street Stall License','Usable',500,10,'buyingstore 2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12549,'White_Slim_Pot_Box2','White Slim Pot Box2','Usable',100,true,true,true,true,true,true,true,'getitem 547,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12550,'Poison_Bottle_Box2','Deadly Poison Box','Usable',100,true,true,true,true,true,true,true,'getitem 678,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12551,'MVP_Tele_Scroll','MVP Tele Scroll','Usable',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12552,'Quest_Tele_Scroll','Quest Tele Scroll','Usable',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12553,'Brysinggamen_Piece_Box','Brysinggamen Piece Box','Usable',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12554,'Asprika_Piece_Box','Asprika Piece Box','Usable',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12555,'Brynhild_Piece_Box','Brynhild Piece Box','Usable',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12556,'Sleipnir_Piece_Box','Sleipnir Piece Box','Usable',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12557,'Mjolnir_Piece_Box','Mjolnir Piece Box','Usable',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12558,'Magingiorde_Piece_Box','Magingiorde Piece Box','Usable',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12559,'Tenkaippin_Strong','Tenkaippin Strong','Usable',650,200); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12560,'Tenkaippin_Clean','Tenkaippin Clean','Usable',650,200); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12561,'Mysterious_Seed','Mysterious Seed','Usable',20,10,true,'warp "bif_fild01",32,382;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12562,'Bubble_Gum_Plus','Bubble Gum Plus','Usable',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12563,'BM75','BM75','Usable',2,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12564,'3D_Glasses_Box','3D Glasses Box','Usable',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12565,'Cheer_Scarf_Box','Cheer Scarf Box','Usable',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12566,'Cheer_Scarf2_Box','Cheer Scarf2 Box','Usable',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12567,'Cheer_Scarf3_Box','Cheer Scarf3 Box','Usable',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12568,'Cheer_Scarf4_Box','Cheer Scarf4 Box','Usable',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12569,'Cheer_Scarf6_Box','Cheer Scarf6 Box','Usable',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12570,'Cheer_Scarf8_Box','Cheer Scarf8 Box','Usable',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12571,'Cheer_Scarf10_Box','Cheer Scarf10 Box','Usable',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12572,'Cheer_Scarf10_Box2','Cheer Scarf10 Box2','Usable',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (12573,'Fruit_Basket','Fruit Basket','Usable',20,50,true,'getrandgroupitem(IG_Fruit_Basket,1); getrandgroupitem(IG_Fruit_Basket,1); getrandgroupitem(IG_Fruit_Basket,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (12574,'Mora_Berry','Mora Berry','Usable',20,true,'itemheal 0,rand(50,65); specialeffect2 EF_GUARD; bonus_script "{ bonus2 bAddDefMonster,2137,50; bonus2 bAddDefMonster,2136,50; bonus2 bAddDefMonster,2134,50; bonus2 bAddDefMonster,2133,50; bonus2 bAddDefMonster,2132,50; }",120;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12575,'Arrow_Of_Elf_Cntr','Arrow Of Elf Cntr','Usable',500,250,true,'getitem 1773,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12576,'Hunting_Arrow_Cntr','Hunting Arrow Cntr','Usable',500,250,true,'getitem 1774,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12577,'Lucky_Egg_C6','Lucky Egg C6','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Lucky_Egg_C6);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12578,'Rapid_Life_Water','Rapid Life Water','Usable',10,100,true,true,true,true,true,true,true,'specialeffect2 EF_HEAL3; bonus_script "{ bonus2 bHPRegenRate,(MaxHp/100*6),3000; }",600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12579,'Ring_Of_Valkyrie_Box','Ring Of Valkyrie Box','Usable',20,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12580,'Vending_Search_Scroll','Universal Catalog Silver','Usable',10,'searchstores 10,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12581,'Vending_Search_Scroll2','Universal Catalog Gold','Usable',10,100,true,true,true,true,true,true,true,'searchstores 10,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (12582,'Siege_Supply_Box','WoE Supply Box','Delayconsume',100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12583,'PR_Team_Box','Public Relations box','Cash',20,10,100,true,true,true,true,true,true,true,true,'getitem 6397,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12584,'Develop_Team_box','Development Team box','Cash',20,10,100,true,true,true,true,true,true,true,true,'getitem 6398,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12585,'Marketing_Team_Box','Marketing Team box','Cash',20,10,100,true,true,true,true,true,true,true,true,'getitem 6399,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12586,'Operating_Team_Box','Operation Team box','Cash',20,10,100,true,true,true,true,true,true,true,true,'getitem 6400,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12587,'Summer_Night_box','A Summer Night\'s Box','Cash',20,10,100,true,true,true,true,true,true,true,true,'getitem 12246,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12588,'Summer_Night_box2','A Summer Night\'s Box2','Cash',20,10,100,true,true,true,true,true,true,true,true,'getitem 12103,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12589,'Summer_Night_box3','A Summer Night\'s Box3','Cash',20,10,100,true,true,true,true,true,true,true,true,'getitem 12106,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12591,'Uni_Catalog_Bz','Universal Catalog Bronze','Usable',10,100,true,true,true,true,true,true,true,'searchstores 10,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12592,'Cyclops_Box1','Cyclops Box1','Delayconsume',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12593,'Cyclops_Box2','Cyclops Box2','Delayconsume',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12594,'Cyclops_Box3','Cyclops Box3','Delayconsume',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12595,'Lucky_Egg_C7','Lucky Egg C7','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Lucky_Egg_C7);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`delay_duration`,`delay_status`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12596,'Magic_Candy','Magic Candy','Usable',10,180000,'Reuse_Limit_B',100,true,true,true,true,true,true,true,'specialeffect2 EF_HASTEUP; bonus_script "{ bonus bMatk,30; bonus bFixedCastrate,-70; bonus bNoCastCancel; bonus2 bSPLossRate,90,10000; }",60,0,0,EFST_MAGIC_CANDY;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12597,'Opor_Ayam','Opor Ayam','Delayconsume',20,150); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12598,'Dendeng_Balado','Dendeng Balado','Delayconsume',20,150); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12599,'Kurma','Kurma','Delayconsume',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12600,'Treasure_Box_Scroll','Treasure Chest Summoned','Delayconsume',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12601,'Cold_Watermelon_Juice','Fresh Watermelon Juice','Healing',20,100,'percentheal 5,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12602,'Special_Box1','Special Box I','Delayconsume',100,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12603,'Special_Box2','Special Box II','Delayconsume',100,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12604,'Special_Box3','Special Box III','Delayconsume',100,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12605,'Special_Box4','Special Box IV','Delayconsume',100,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12606,'Special_Box5','Special Box V','Delayconsume',100,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12607,'Lolli_Pop_Box','Delicious Lollipop Box','Delayconsume',20,10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (12608,'Splendid_Box2','Splendid Box2','Delayconsume',20,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12609,'Old_Ore_Box','Old Ore Box','Usable',20,100,true,'getgroupitem(IG_Old_Ore_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12610,'Mysterious_Egg','Mysterious Egg','Usable',10,100,true,true,true,true,true,true,true,'getitem callfunc("F_Rand",12545,12493,12577,12391,12403,12416),1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (12612,'Old_Coin_Pocket','Old Coin Bag','Usable',20,10,true,true,'getgroupitem(IG_Old_Coin_Pocket);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (12613,'High_Coin_Pocket','Improved Coin Bag','Usable',20,10,true,true,'getgroupitem(IG_High_Coin_Pocket);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (12614,'Mid_Coin_Pocket','Intermediate Coin Bag','Usable',20,10,true,true,'getgroupitem(IG_Mid_Coin_Pocket);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (12615,'Low_Coin_Pocket','Minor Coin Bag','Usable',20,10,true,true,'getgroupitem(IG_Low_Coin_Pocket);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (12616,'Sgrade_Pocket','S Grade Coin Bag','Usable',20,10,true,true,'getgroupitem(IG_Sgrade_Pocket);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (12617,'Agrade_Pocket','A Grade Coin Bag','Usable',20,10,true,true,'getgroupitem(IG_Agrade_Pocket);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (12618,'Bgrade_Pocket','B Grade Coin Bag','Usable',20,10,true,true,'getgroupitem(IG_Bgrade_Pocket);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (12619,'Cgrade_Pocket','C Grade Coin Bag','Usable',20,10,true,true,'getgroupitem(IG_Cgrade_Pocket);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (12620,'Dgrade_Pocket','D Grade Coin Bag','Usable',20,10,true,true,'getgroupitem(IG_Dgrade_Pocket);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (12621,'Egrade_Pocket','E Grade Coin Bag','Usable',20,10,true,true,'getgroupitem(IG_Egrade_Pocket);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_noconsume`,`delay_duration`,`delay_status`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`,`unequip_script`) VALUES (12622,'Boarding_Halter','Reins Of Mount','Usable',true,3000,'All_Riding_Reuse_Limit',100,true,true,true,true,true,true,true,true,'setmounting();','if (ismounting()) setmounting();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (12623,'High_Weapon_Box','Advanced Weapons Box','Usable',20,10,true,true,'getrandgroupitem(IG_Advanced_Weapons_Box,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12624,'Delicious_Jelly','Delicious Jelly','Healing',20,50,'percentheal 3,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12625,'Sapa_Feat_Cert_Pack','Sapa Feat Cert Pack','Usable',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12626,'Wander_Man_Scroll','Wander Man Scroll','Usable',20,10,'mercenary_create 2213,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12627,'Wicked_Nymph_Scroll','Wicked Nymph Scroll','Usable',20,10,'mercenary_create 2214,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12628,'Kasa_Scroll','Kasa Scroll','Usable',20,10,'mercenary_create 2215,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12629,'Salamander_Scroll','Salamander Scroll','Usable',20,10,'mercenary_create 2216,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12630,'Teddy_Bear_Scroll','Teddy Bear Scroll','Usable',20,10,'mercenary_create 2217,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (12631,'Macro_Stone_A','Macro Stone A','Usable'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (12632,'Macro_Stone_B','Macro Stone B','Usable'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12633,'Malang_Cat_Can','Malangdo Cat Can','Usable',20,50,100,true,true,true,true,true,true,true,'specialeffect2 EF_MAGICALATTHIT; bonus_script "{ bonus2 bExpAddRace,RC_All,10; bonus2 bDropAddRace,RC_All,20; }",1200,1,0,EFST_OVERLAPEXPUP;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (12634,'Macro_Stone_A1','Macro Stone A1','Usable'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (12635,'Macro_Stone_A2','Macro Stone A2','Usable'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12636,'Malang_Sp_Can','Malangdo Canned Specialties','Usable',20,100,true,true,true,true,true,true,'warp "malangdo",140,114;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12637,'Gong_Bug_Pocket','Sow Bug Pocket','Usable',20,10,100,true,true,true,true,true,true,true,'getitem 13208,200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12638,'Dried_Squid_Box','Dried Squid Box','Usable',20,2000,100,true,true,true,true,true,true,true,'getitem 13292,200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12639,'Flying_Fish_Box','Flying Fish Box','Usable',20,2000,100,true,true,true,true,true,true,true,'getitem 13293,200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12640,'Starfish_Box','Starfish Box','Usable',20,500,100,true,true,true,true,true,true,true,'getitem 13291,200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12641,'Lucky_Egg_C8','Lucky Egg C8','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Lucky_Egg_C8);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12642,'Fruit_Of_Mastela_Box2','Fruit Of Mastela 100 Box','Usable',100,true,true,true,true,true,true,true,'getitem 522,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (12643,'E_Coin_Pack50','E Coin Pack50','Usable','getitem 6422,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12644,'PCBang_Coupon_Box4','PCBang Coupon Box4','Usable',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12645,'J_Aspersio_5_Scroll_C','J Aspersio 5 Scroll C','Usable',2,10,100,true,true,true,true,true,true,true,'sc_start SC_ASPERSIO,180000,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12646,'Takoyaki','Fried Octopus Legs','Usable',20,30,'percentheal 5,5; sc_start SC_LUKFOOD,600000,9; sc_start SC_ATKPOTION,600000,20; sc_start SC_MATKPOTION,600000,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12647,'Ink_Ball','Sea Ink','Usable',20,30,'getgroupitem(IG_Ink_Ball);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12648,'Special_Potion_Set','Comprehensive Set Of Potions','Usable',20,100,'getitem 501,10; getitem 502,10; getitem 503,10; getitem 504,10; getitem 505,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12649,'Lv70_Imperial_Gift','Level 70 Bounty','Usable',20,10,100,true,true,true,true,true,true,true,true,'getitem 12073,5; getitem 12088,5; getitem 12078,5; getitem 12083,5; getitem 12093,5; getitem 12098,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12650,'Lv90_Imperial_Gift','Level 90 Bounty','Usable',20,10,100,true,true,true,true,true,true,true,true,'getitem 12263,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12651,'Lv110_Imperial_Gift','Level 110 Bounty','Usable',20,10,100,true,true,true,true,true,true,true,true,'getitem 12623,1; getitem 16765,1; getitem 16765,1; getitem 16765,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12652,'Lv130_Imperial_Gift','Level 130 Bounty','Usable',20,10,100,true,true,true,true,true,true,true,true,'getitem 12613,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12653,'Lv150_Imperial_Gift','Level 150 Bounty','Usable',20,10,100,true,true,true,true,true,true,true,true,'getitem 16740,1; getitem 16740,1; getitem 16740,1; getitem 5364,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12654,'Lucky_Egg_C9','Lucky Egg C9','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Lucky_Egg_C9);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12655,'Brain_Powder','Brain Powder','Usable',2000,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12656,'Magical_Powder','Magical Powder','Usable',3000,200); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12657,'Madness_Powder','Madness Powder','Usable',4000,300); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`delay_duration`,`delay_status`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12658,'Trans_Scroll_Devi','Transformation Scroll(Deviruchi)','Usable',20,10,10000,'Reuse_Limit_Mtf',100,true,true,true,true,true,true,true,'transform 1109,1200000,SC_MTF_ASPD,10,5; showscript "Traaaansformation-!! Deviruchi form!!";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`delay_duration`,`delay_status`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12659,'Trans_Scroll_Ray_Arch','Transformation Scroll(Raydric)','Usable',20,10,10000,'Reuse_Limit_Mtf',100,true,true,true,true,true,true,true,'transform 1276,1200000,SC_MTF_RANGEATK,25; showscript "Traaaansformation-!! Raydric form!!";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`delay_duration`,`delay_status`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12660,'Trans_Scroll_Mavka','Transformation Scroll(Mavka)','Usable',20,10,10000,'Reuse_Limit_Mtf',100,true,true,true,true,true,true,true,'transform 1884,1200000,SC_MTF_RANGEATK,25; showscript "Traaaansformation-!! Mavka form!!";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`delay_duration`,`delay_status`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12661,'Trans_Scroll_Marduk','Transformation Scroll(Marduk)','Usable',20,10,10000,'Reuse_Limit_Mtf',100,true,true,true,true,true,true,true,'transform 1140,1200000,SC_MTF_MATK,25; showscript "Traaaansformation-!! Marduk form!!";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`delay_duration`,`delay_status`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12662,'Trans_Scroll_Banshee','Transformation Scroll(Banshee)','Usable',20,10,10000,'Reuse_Limit_Mtf',100,true,true,true,true,true,true,true,'transform 1867,1200000,SC_MTF_MATK,25; showscript "Traaaansformation-!! Banshee form!!";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`delay_duration`,`delay_status`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12663,'Trans_Scroll_Poring','Transformation Scroll(Poring)','Usable',20,10,10000,'Reuse_Limit_Mtf',100,true,true,true,true,true,true,true,'transform 1002,1200000,SC_MTF_CRIDAMAGE,25; showscript "Traaaansformation-!! Poring form!!";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`delay_duration`,`delay_status`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12664,'Trans_Scroll_Golem','Transformation Scroll(Golem)','Usable',20,10,10000,'Reuse_Limit_Mtf',100,true,true,true,true,true,true,true,'transform 1040,1200000,SC_MTF_MLEATKED,5,20,2; showscript "Traaaansformation-!! Golem form!!";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (12665,'Grovel_Buff','Grovel Buff','Usable'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12666,'Thai_Perfume_MATK','Thai Perfume MATK','Usable',20,10,'specialeffect2 EF_MAGICALATTHIT; bonus_script "{ bonus bMatk,24; }",600,0,0,EFST_SKF_MATK;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12667,'Thai_Perfume_ATK','Thai Perfume ATK','Usable',20,10,'specialeffect2 EF_MAGICALATTHIT; bonus_script "{ bonus bBaseAtk,24; }",600,0,0,EFST_SKF_ATK;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12668,'Thai_Perfume_ASPD','Thai Perfume ASPD','Usable',20,10,'specialeffect2 EF_MAGICALATTHIT; bonus_script "{ bonus bAspdRate,3; }",600,0,0,EFST_SKF_ASPD;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12669,'Thai_Perfume_CAST','Thai Perfume CAST','Usable',20,10,'specialeffect2 EF_MAGICALATTHIT; bonus_script "{ bonus bVariableCastrate,-5; }",600,0,0,EFST_SKF_CAST;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12670,'Beast_Powder','Beast Powder','Usable',20,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12671,'99lv_Battle_Manual','99lv Battle Manual','Usable',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12672,'Start_New_Box','Start New Box','Usable',20,10,100,true,true,true,true,true,true,true,'getitem 617,2; getitem 12263,2; getitem 12329,3; getitem 12330,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12673,'Lucky_Egg_C10','Lucky Egg C10','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Lucky_Egg_C10);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12674,'God_Material_Box','God Material Box','Usable',20,500,'getgroupitem(IG_God_Material_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (12675,'Sg_Weapon_Supply_Box','WoE Weapon Supply Box','Usable',20,500,true,true,'getgroupitem(IG_Sg_Weapon_Supply_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12676,'Sg_Violet_Potion_Box','Siege Violet Potion Box','Usable',20,500,true,'getitem 11547,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`flag_buyingstore`,`script`) VALUES (12677,'Siege_Arrow_Quiver_S','Siege Arrow Quiver S','Usable',2,100,130,true,'getitem 1775,200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`flag_buyingstore`,`script`) VALUES (12678,'Siege_Arrow_Quiver_A','Siege Arrow Quiver A','Usable',2,100,95,true,'getitem 1776,200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12679,'Sg_White_Potion_Box','Siege White Potion Box','Usable',20,200,true,'getitem 11548,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12680,'Sg_Blue_Potion_Box','Siege Blue Potion Box','Usable',20,200,true,'getitem 11549,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12681,'Nestea_Lemon','Nestea Lemon','Usable',50); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12682,'Nestea_Blacktea','Nestea Black Tea','Usable',30); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12683,'Sg_Vi_Potion_Box200','Siege Violet Potion Box (200)','Usable',20,200,true,'getitem 11547,200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`delay_duration`,`delay_status`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12684,'ASPD_Potion','ASPD Potion','Usable',10,900000,'Reuse_Limit_Aspd_Potion',100,true,true,true,true,true,true,true,'sc_start SC_ATTHASTE_CASH,900000,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12685,'Gryphon_Egg_Scroll','Gryphon Egg Scroll','Usable',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12686,'Str_Dish20','Str Dish20','Usable',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12687,'Int_Dish20','Int Dish20','Usable',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12688,'Vit_Dish20','Vit Dish20','Usable',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12689,'Dex_Dish20','Dex Dish20','Usable',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (12690,'Old_C_Album_Helm','Headgear Card Album','Usable',20,50,true,true,'getrandgroupitem(IG_CardAlbum_Helm,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (12691,'Old_C_Album_Armor','Armor Card Album','Usable',20,50,true,true,'getrandgroupitem(IG_CardAlbum_Armor,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (12692,'Old_C_Album_Shield','Shield Card Album','Usable',20,50,true,true,'getrandgroupitem(IG_CardAlbum_Shield,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (12693,'Old_C_Album_Garment','Garment Card Album','Usable',20,50,true,true,'getrandgroupitem(IG_CardAlbum_Garment,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (12694,'Old_C_Album_Shoes','Shoes Card Album','Usable',20,50,true,true,'getrandgroupitem(IG_CardAlbum_Shoes,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (12695,'Old_C_Album_Acc','Accessory Card Album','Usable',20,50,true,true,'getrandgroupitem(IG_CardAlbum_Acc,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12696,'RWC_Cele_Fire','RWC Celebration Firecracker','Usable',20,'bonus_script "{ bonus bAllStats,3; bonus2 bAddClass,Class_All,5; bonus2 bMagicAddClass,Class_All,5; bonus bMatkRate,5; }",10,0,0,EFST_2011RWC;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12697,'RWC_Cele_Fire2','RWC Celebration Firecracker','Usable',20,'bonus_script "{ bonus bAllStats,3; bonus2 bAddClass,Class_All,5; bonus2 bMagicAddClass,Class_All,5; bonus bMatkRate,5; }",10,0,0,EFST_2011RWC;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (12698,'Old_C_Album_Weapon','Weapon Card Album','Usable',20,50,true,true,'getrandgroupitem(IG_CardAlbum_Weapon,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12699,'Tikbalang_Belt','Tikbalang Harness','Usable',20,50,true,'pet 2313;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12700,'Insideout_Shirt','Inside-out Shirt','Usable',20,10,true,'warp "malaya",242,211;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12701,'Old_Blue_Box_F','Old Blue Box','Usable',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12702,'Old_Bleu_Box','Old Navy Box','Usable',200,true,100,true,true,true,true,true,true,'getrandgroupitem(IG_BleuBox,1); getrandgroupitem(IG_BleuBox,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`script`) VALUES (12703,'Holy_Egg_2','Holy Egg','Usable',50,true,'getrandgroupitem(IG_Holy_Egg_2,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12704,'Elixir_Of_Life','Elixir of Life','Healing',10,85,100,true,true,true,true,true,true,true,'percentheal 100,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12705,'Noble_Nameplate','Noble Nameplate','Usable',100,90,100,true,true,true,true,true,true,true,'sc_start SC_EXPBOOST,1800000,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12706,'Lucky_Cookie01','Lucky Cookie','Delayconsume',100,100,true,'itemskill "PR_GLORIA",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12707,'Lucky_Cookie02','Lucky Cookie','Delayconsume',100,100,true,'itemskill "PR_MAGNIFICAT",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12708,'Lucky_Cookie03','Lucky Cookie','Delayconsume',100,100,true,'itemskill "PR_IMPOSITIO",3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12709,'Guyak_Candy','Guyak Candy','Healing',150,'percentheal 30,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12710,'Guyak_Pudding','Guyak Pudding','Usable',200,'sc_start SC_SPEEDUP1,300000,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12711,'Pretzel','Pretzel','Healing',2,100,'itemheal rand(50,90),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12712,'Green_Beer','Green Beer','Usable',2,100,'percentheal 0,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12713,'Monster_Extract','Monster Extract','Usable',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12714,'Easter_Scroll','Easter Scroll','Usable',1,10,true,100,true,true,true,true,true,true,'getrandgroupitem(IG_Easter_Scroll,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12715,'Black_Treasure_Box','Black Treasure Box','Usable',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12716,'Indian_Rice_Cake','Indian Rice Cake','Usable',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (12717,'Poison_Paralysis','Paralyze','Usable',2,20,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (12718,'Poison_Leech','Leech End','Usable',2,20,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (12719,'Poison_Oblivion','Oblivion Curse','Usable',2,20,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (12720,'Poison_Contamination','Disheart','Usable',2,20,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (12721,'Poison_Numb','Toxin','Usable',2,20,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (12722,'Poison_Fever','Pyrexia','Usable',2,20,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (12723,'Poison_Laughing','Magic Mushroom','Usable',2,20,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (12724,'Poison_Fatigue','Venom Bleed','Usable',2,20,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`delay_duration`,`delay_status`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12725,'Runstone_Nosiege','Nauthiz Rune','Usable',100,10,120000,'Reuse_Refresh',100,true,100,true,true,true,true,true,true,true,'if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_REFRESH",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`delay_duration`,`delay_status`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12726,'Runstone_Rhydo','Raido Rune','Usable',100,10,30000,'Reuse_Crushstrike',100,true,100,true,true,true,true,true,true,true,'if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_CRUSHSTRIKE",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`delay_duration`,`delay_status`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12727,'Runstone_Verkana','Berkana Rune','Usable',100,10,60000,'Reuse_Millenniumshield',100,true,100,true,true,true,true,true,true,true,'if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_MILLENNIUMSHIELD",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12728,'Runstone_Isia','Isa Rune','Usable',100,10,100,true,100,true,true,true,true,true,true,true,'if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_VITALITYACTIVATION",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12729,'Runstone_Asir','Othila Rune','Usable',100,10,100,true,100,true,true,true,true,true,true,true,'if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_FIGHTINGSPIRIT",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12730,'Runstone_Urj','Uruz Rune','Usable',100,10,100,true,100,true,true,true,true,true,true,true,'if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_ABUNDANCE",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12731,'Runstone_Turisus','Thurisaz Rune','Usable',100,10,100,true,100,true,true,true,true,true,true,true,'if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_GIANTGROWTH",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`delay_duration`,`delay_status`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12732,'Runstone_Pertz','Wyrd Rune','Usable',100,10,1000,'Reuse_Stormblast',100,true,100,true,true,true,true,true,true,true,'if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_STORMBLAST",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12733,'Runstone_Hagalas','Hagalaz Rune','Usable',100,10,100,true,100,true,true,true,true,true,true,true,'if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_STONEHARDSKIN",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`flag_buyingstore`,`script`) VALUES (12734,'Runstone_Quality','Luxurious Rune','Healing',2,100,true,true,true,true,true,'makerune 8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`flag_buyingstore`,`script`) VALUES (12735,'Runstone_Ancient','Ancient Rune','Healing',2,100,true,true,true,true,true,'makerune 30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`flag_buyingstore`,`script`) VALUES (12736,'Runstone_Mystic','Mystic Rune','Healing',2,100,true,true,true,true,true,'makerune 60;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`flag_buyingstore`,`script`) VALUES (12737,'Runstone_Ordinary','General Rune','Healing',2,100,true,true,true,true,true,'makerune 4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`flag_buyingstore`,`script`) VALUES (12738,'Runstone_Rare','Rare Rune','Healing',2,100,true,true,true,true,true,'makerune 15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (12739,'Snow_Flower','Snow Flowers','Usable',10,true,'percentheal 10,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12740,'Inc_Str_Scroll','Amplification Scroll','Usable',1,100,true,true,true,true,true,true,true,true,'specialeffect2 EF_POTION_BERSERK; bonus_script "{ bonus bStr,20; }",60,0,0,EFST_STR_SCROLL;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12741,'Inc_Int_Scroll','Intellect Amplification Scroll','Usable',1,100,true,true,true,true,true,true,true,true,'specialeffect2 EF_SPELLBREAKER; bonus_script "{ bonus bInt,20; }",60,0,0,EFST_INT_SCROLL;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (12742,'Valentine_Gift_Box1','Valentine Gift Box','Usable','getitem 7946,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (12743,'Valentine_Gift_Box2','Valentine Gift Box','Usable','getitem 7947,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (12744,'Chocotate_Box','Chocolate Box','Usable','getitem 558,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12745,'Skull_Scroll','Skull Scroll','Usable',20,10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12746,'Destruction_Scroll','Destruction Scroll','Usable',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12747,'Royal_Scroll','Royal Scroll','Usable',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12748,'Immune_Scroll','Immune Scroll','Usable',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12749,'Mystic_Scroll','Mystic Scroll','Usable',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12750,'Battle_Scroll','Battle Scroll','Usable',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12751,'Armor_Scroll','Armor Scroll','Usable',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12752,'Prayer_Scroll','Prayer Scroll','Usable',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12753,'Soul_Scroll','Soul Scroll','Usable',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12754,'New_Year_Bun','Chinese Pastel','Usable',10,'percentheal 50,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12755,'Traditional_Firecrack','Chinese Fireworks','Usable',2,10,'specialeffect2 EF_POK_JAP; /* itemskill "MO_CALLSPIRITS",3; itemskill "MO_FINGEROFFENSIVE",5; */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (12756,'New_Gift_Envelope','Chinese New Year Envelope','Usable',2,10,true,'/*getgroupitem(IG_New_Gift_Envelope);*/ getrandgroupitem(IG_New_Gift_Envelope,0);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (12757,'Loyal_Ring1_Box','Loyal Ring1 Box','Usable',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (12758,'Loyal_Ring2_Box','Loyal Ring2 Box','Usable',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (12759,'Loyal_Ring3_Box','Loyal Ring3 Box','Usable',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12760,'Bubble_Gum_Green','Bubble Gum Green','Usable',20,10,'sc_start SC_INCSTR,1200000,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12761,'Bubble_Gum_Yellow','Bubble Gum Yellow','Usable',20,10,'sc_start SC_INCINT,1200000,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12762,'Bubble_Gum_Orange','Bubble Gum Orange','Usable',20,10,'sc_start SC_INCDEX,1200000,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12763,'Bubble_Gum_Red','Bubble Gum Red','Usable',20,10,'sc_start SC_INCAGI,1200000,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (12764,'Fools_Day_Box_Tw','Fools Day Box Tw','Usable'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12765,'Summer_Knight_Box','Summer Knight Box','Usable',20,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12766,'Reward_Job_BM25','Reward Job BM25','Usable',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_container`,`script`) VALUES (12767,'Passion_FB_Hat_Box','Passion FB Hat Box','Usable',true,'/*getgroupitem(IG_Passion_FB_Hat_Box);*/ rentitem 5856,3600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_container`,`script`) VALUES (12768,'Cool_FB_Hat_Box','Cool FB Hat Box','Usable',true,'/*getgroupitem(IG_Cool_FB_Hat_Box);*/ rentitem 5857,3600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_container`,`script`) VALUES (12769,'Victory_FB_Hat_Box','Victory FB Hat Box','Usable',true,'/*getgroupitem(IG_Victory_FB_Hat_Box);*/ rentitem 5858,3600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_container`,`script`) VALUES (12770,'Glory_FB_Hat_Box','Glory FB Hat Box','Usable',true,'/*getgroupitem(IG_Glory_FB_Hat_Box);*/ rentitem 5859,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_container`,`script`) VALUES (12771,'Passion_Hat_Box2','Passion Hat Box2','Usable',true,'/*getgroupitem(IG_Passion_Hat_Box2);*/ rentitem 5856,21600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_container`,`script`) VALUES (12772,'Cool_Hat_Box2','Cool Hat Box2','Usable',true,'/*getgroupitem(IG_Cool_Hat_Box2);*/ rentitem 5857,21600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_container`,`script`) VALUES (12773,'Victory_Hat_Box2','Victory Hat Box2','Usable',true,'/*getgroupitem(IG_Victory_Hat_Box2);*/ rentitem 5858,21600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (12774,'Empty_Potion_Bottle','Empty Potion Bottle','Usable'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12775,'Ancient_Spirit_Agimat','Greater Agimat of Ancient Spirit','Usable',20,600,true,'specialeffect2 EF_PROVIDENCE; bonus_script "{ bonus2 bAddRace,RC_Demon,10; bonus2 bMagicAddRace,RC_Demon,10; }",1200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12776,'Agi_Dish20','Agi Dish20','Usable',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12777,'Luk_Dish20','Luk Dish20','Usable',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12778,'Bapho_Jr_Scroll','Bapho Jr Scroll','Usable',20,10,'mercenary_create 2325,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12779,'Galapago_Scroll','Galapago Scroll','Usable',20,10,'mercenary_create 2326,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (12780,'10M_Zeny_Check','10M Zeny Check','Usable'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (12781,'1M_Zeny_Check','1M Zeny Check','Usable'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (12782,'100T_Zeny_Check','100T Zeny Check','Usable'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (12783,'10000_Zeny_Check','10000 Zeny Check','Usable'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (12784,'1000_Zeny_Check','1000 Zeny Check','Usable'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12785,'Dragon_Egg_Scroll','Dragon Egg Scroll','Usable',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12786,'Change_Slot_Card','Character Position Change Coupon','Usable',100,true,true,true,true,true,true,true,'CharMoves++;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12787,'Diabolic_Scroll','Diabolic Scroll','Usable',20,10,'mercenary_create 2342,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12788,'No100_Firecracker','No100 Firecracker','Usable',2,20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12789,'Juicy_Fruit','Juicy Fruit','Usable',2,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12790,'Change_Name_Card','Character Name Change Coupon','Usable',100,true,true,true,true,true,true,true,'CharRename++;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12791,'Combat_Pill','Combat Pill','Usable',20,150,'specialeffect2 EF_POTION_BERSERK; bonus_script "{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bMaxHPrate,3; bonus bMaxSPrate,3; }",60,0,0,EFST_GM_BATTLE; /* showscript */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12792,'P_Combat_Pill','P Combat Pill','Usable',20,150,'specialeffect2 EF_POTION_BERSERK; bonus_script "{ bonus2 bAddClass,Class_All,10; bonus bMatkRate,10; bonus bMaxHPrate,5; bonus bMaxSPrate,5; }",60,0,0,EFST_GM_BATTLE;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (12793,'Combat_Pill_Box10','Combat Pill Box10','Usable',20,'getitem 12791,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (12794,'P_Combat_Pill_Box10','P Combat Pill Box10','Usable',20,'getitem 12792,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12795,'2011_RWC_Scroll_Kr','2011 RWC Scroll Kr','Usable',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12796,'Red_Booster','Red Booster','Usable',20,10,100,true,true,true,true,true,true,true,'itemskill "AC_CONCENTRATION",max(getskilllv("AC_CONCENTRATION"),3); specialeffect2 EF_POTION_BERSERK; showscript "Oh My GOODNESS!!! I FEEL AWESOMELY STRONG!!! WOWOW";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12797,'Wish_Maiden_Scroll','Wish Maiden Scroll','Usable',20,10,'mercenary_create 2344,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12798,'Zealotus_Scroll','Zealotus Scroll','Usable',20,10,'mercenary_create 2345,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12799,'PCBang_Coupon_Box5','PCBang Coupon Box5','Usable',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12800,'Ktullanux_Scroll','Ktullanux Scroll','Usable',20,10,'mercenary_create 2346,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12801,'Eddga_Scroll','Eddga Scroll','Usable',20,10,'mercenary_create 2347,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12802,'Time_Guardian_Box','Time Guardian Box','Usable',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12803,'Beginner_Kit_Box','Beginner Kit Box','Usable',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12804,'Cru_Scroll','Cru Scroll','Usable',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12805,'Mystic_Powder','Mystic Powder','Usable',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12806,'Scaraba_Scroll','Scaraba Scroll','Usable',20,10,'mercenary_create 2378,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12807,'Mercenary_Casting_','Mercenary Casting','Usable',20,100,true,true,true,true,true,true,true,true,'getitem 12160,5; getitem 12170,5; getitem 12180,5; getitem 12808,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12808,'Mother_Love_Box','Mother Love Box','Usable',40,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12809,'Level_Up_Box','Level Up Box','Usable',120,100,true,true,true,true,true,true,true,true,'getitem 12263,5; getitem 12264,5; getitem 12265,5; getitem 12766,5; getitem 12819,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12810,'Event_Gift_Box','Event Gift Box','Usable',20,10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12811,'Event_Gift_Box_','Event Gift Box','Usable',20,10,100,true,true,true,true,true,true,true,'getitem 607,3; getitem callfunc("F_Rand",22528,22802,12246,6228,6229,6230,6232,6233,6234),1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`delay_duration`,`delay_status`,`script`) VALUES (12812,'Snow_Flip','Snow Flip','Delayconsume',10,true,5000,'Reuse_Limit_Ecl','itemskill "ECL_SNOWFLIP",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`delay_duration`,`delay_status`,`script`) VALUES (12813,'Peony_Mommy','Peony Mamy','Delayconsume',10,true,5000,'Reuse_Limit_Ecl','itemskill "ECL_PEONYMAMY",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`delay_duration`,`delay_status`,`script`) VALUES (12814,'Slapping_Herb','Slapping Herb','Delayconsume',10,true,5000,'Reuse_Limit_Ecl','itemskill "ECL_SADAGUI",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`delay_duration`,`delay_status`,`script`) VALUES (12815,'Yggdrasil_Dust','Yggdrasil Dust','Delayconsume',10,true,5000,'Reuse_Limit_Ecl','itemskill "ECL_SEQUOIADUST",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12816,'Old_Ore_Box_','Old Ore Box','Usable',60,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12817,'Old_Card_Album_','Old Card Album','Usable',80,100,true,true,true,true,true,true,true,true,'getrandgroupitem(IG_CardAlbum,1); getitem 12818,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12818,'High_Weapon_Box_','High Weapon Box','Usable',100,100,true,true,true,true,true,true,true,true,'getrandgroupitem(IG_Advanced_Weapons_Box,1); getitem 12809,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12819,'Zherlthsh_Tck_Box_','Zherlthsh Tck Box','Usable',150,100,true,true,true,true,true,true,true,true,'getitem 6184,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12820,'Mao_Guai_Scroll','Mao Guai Scroll','Usable',20,10,'mercenary_create 2348,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12821,'Loli_Ruri_Scroll','Loli Ruri Scroll','Usable',20,10,'mercenary_create 2349,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12822,'Songpyun_Box50','Songpyun Box50','Usable',20,10,'getitem 663,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12823,'Sedora_Scroll','Sedora Scroll','Usable',20,10,'mercenary_create 2350,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12824,'Chepet_Scroll','Chepet Scroll','Usable',20,10,'mercenary_create 2351,1800000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (12826,'Wind_Type_Scroll','Wind Type Scroll','Usable',20,10,true,'getgroupitem(IG_Wind_Type_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (12827,'Water_Type_Scroll','Water Type Scroll','Usable',20,10,true,'getgroupitem(IG_Water_Type_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (12828,'Fire_Type_Scroll','Fire Type Scroll','Usable',20,10,true,'getgroupitem(IG_Fire_Type_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (12829,'Earth_Type_Scroll','Earth Type Scroll','Usable',20,10,true,'getgroupitem(IG_Earth_Type_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12831,'Potion_Box','Potion Box','Usable',50,100,true,true,true,true,true,true,true,'getitem 545,100; getitem 546,100; getitem 547,100; getitem 505,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12834,'Undead_Egg','Undead Egg','Usable',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12835,'Girls_Heart','Girls Heart','Usable',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (12837,'Wooden_Treasure_Box','Wooden Treasure Box','Usable'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`equip_level_min`) VALUES (12838,'Iron_Treasure_Box','Iron Treasure Box','Usable',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`equip_level_min`) VALUES (12839,'bronze_Treasure_Box','bronze Treasure Box','Usable',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`equip_level_min`) VALUES (12840,'Silver_Treasure_Box','Silver Treasure Box','Usable',30); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`equip_level_min`) VALUES (12841,'Golden_Treasure_Box','Golden Treasure Box','Usable',40); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`equip_level_min`) VALUES (12842,'Platinum_Treasure_Box','Platinum Treasure Box','Usable',50); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`equip_level_min`) VALUES (12843,'Pearl_Treasure_Box','Pearl Treasure Box','Usable',60); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`equip_level_min`) VALUES (12844,'Diamond_Treasure_Box','Diamond Treasure Box','Usable',70); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12845,'WOB_Amatsu','Amatsu_Butterfly_Wing','Usable',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12846,'Unripe_Apple2','Little Unripe Apple','Usable',10,50,'pet 2398;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12847,'Old_Equipment_Box','Old Equipment Box','Usable',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12848,'Falcon_Flute','Falcon Flute','Delayconsume',10,'if(getskilllv("HT_FALCON")) { if(!checkoption(Option_Wug) && !checkoption(Option_Wugrider)) setfalcon (!checkfalcon()); }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12849,'Combination_Kit','Combination Kit','Usable',40,10,'cooking 30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (12850,'Heaven_Scroll','Heaven Scroll','Usable',20,10,true,'getgroupitem(IG_Heaven_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (12851,'Vocation_Scroll','Vocation Scroll','Usable',20,10,true,'getgroupitem(IG_Vocation_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (12852,'Wisdom_Scroll','Wisdom Scroll','Usable',20,10,true,'getgroupitem(IG_Wisdom_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (12853,'Patron_Scroll','Patron Scroll','Usable',20,10,true,'getgroupitem(IG_Patron_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12860,'Mommy_Day_Cake','Mommy Day Cake','Usable',200,'percentheal 50,50; skilleffect "HP_ASSUMPTIO",0; sc_start SC_ASSUMPTIO,100000,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12863,'Treasure_Chest_Summoned_II','Treasure Chest Summoned II','Usable',10,100,true,true,true,true,true,true,true,true,'monster "this",-1,-1,"--ja--",rand(1324,1363),1,"";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12873,'TE_Potion_Box','TE Potion Box','Cash',100,100,true,true,true,true,true,true,true,'getitem(11558,10);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12874,'Frost_Giant_Blood','Frost Giant Blood','Usable',100,'specialeffect2 EF_POTION_CON; sc_start4 SC_GVG_GIANT,10000,3000,0,100,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12875,'Golem_Stone','Golem Stone','Usable',10,'specialeffect2 EF_POTION_CON; sc_start4 SC_GVG_GOLEM,10000,0,200,50,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12876,'Elf_Tear_Stun','Elf Tear Stun','Usable',10,'sc_start2 SC_GVG_STUN,10000,3000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12877,'Elf_Tear_Stone_Curse','Elf Tear Stone Curse','Usable',10,'sc_start2 SC_GVG_STONE,10000,3000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12878,'Elf_Tear_Freezing','Elf Tear Freezing','Usable',10,'sc_start2 SC_GVG_FREEZ,10000,3000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12879,'Elf_Tear_Sleep','Elf Tear Sleep','Usable',10,'sc_start2 SC_GVG_SLEEP,10000,3000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12880,'Elf_Tear_Curse','Elf Tear Curse','Usable',10,'sc_start2 SC_GVG_CURSE,10000,3000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12881,'Elf_Tear_Silence','Elf Tear Silence','Usable',10,'sc_start2 SC_GVG_SILENCE,10000,3000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12882,'Elf_Tear_Blind','Elf Tear Blind','Usable',10,'sc_start2 SC_GVG_BLIND,10000,3000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12883,'Almighty','Almighty','Usable',20,10,100,true,true,true,true,true,true,true,'specialeffect2 EF_BASH3D; sc_start SC_2011RWC_SCROLL,1800000,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12884,'Infinite_Concentration_Potion','Infinite Concentration Potion','Delayconsume',10,100,true,true,true,true,true,true,true,true,'sc_start SC_ASPDPOTION0,1800000,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12885,'Infinite_Awakening_Potion','Infinite Awakening Potion','Delayconsume',10,100,true,true,true,true,true,true,true,true,'sc_start SC_ASPDPOTION1,1800000,6;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12886,'Infinite_Berserk_Potion','Infinite Berserk Potion','Delayconsume',10,100,true,true,true,true,true,true,true,true,'sc_start SC_ASPDPOTION2,1800000,9;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_noconsume`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12887,'C_Wing_Of_Fly','Infinite Flywing','Usable',true,100,true,true,true,true,true,true,true,true,'itemskill "AL_TELEPORT",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12888,'Siege_Kit_Box','Siege Kit Box','Cash',100,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12889,'Weapon_Box_Spear','Weapon Box(Spear)','Usable',10,200); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12890,'Weapon_Box_Mace','Weapon Box(Mace)','Usable',10,200); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12891,'Weapon_Box_Dagger','Weapon Box(Dagger)','Usable',10,200); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12892,'Weapon_Box_Axe','Weapon Box(Axe)','Usable',10,200); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12893,'Weapon_Box_Bow','Weapon Box(Bow)','Usable',10,200); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12894,'Weapon_Box_Sword','Weapon Box(Sword)','Usable',10,200); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12895,'Weapon_Box_Knuckle','Weapon Box(Knuckle)','Usable',10,200); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12896,'Weapon_Box_Book','Weapon Box(Book)','Usable',10,200); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12897,'Weapon_Box_Guitar','Weapon Box(Guitar)','Usable',10,200); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12898,'Weapon_Box_Whip','Weapon Box(Whip)','Usable',10,200); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12899,'Weapon_Box_Staff','Weapon Box(Staff)','Usable',10,200); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12900,'Battle_Manual_Box','Battle Manual Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12208,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12901,'Insurance_Package','Insurance Package','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12209,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12902,'Bubble_Gum_Box','Bubble Gum Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12210,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12903,'Str_Dish_Box','Steamed Tongue Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12202,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12904,'Agi_Dish_Box','Steamed Scorpion Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12203,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12905,'Int_Dish_Box','Dragon Breath Cocktail Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12204,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12906,'Dex_Dish_Box','Hwergelmir\'s Tonic Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12205,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12907,'Luk_Dish_Box','Nine Tail Dish Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12206,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12908,'Vit_Dish_Box','Stew Of Immortality Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12207,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12909,'Kafra_Card_Box','Kafra Card Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12211,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12910,'Giant_Fly_Wing_Box','Giant Fly Wing Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12212,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12911,'Neuralizer_Box','Neuralizer Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12213,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12912,'Convex_Mirror_Box','Convex Mirror Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12214,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12913,'Blessing_10_Scroll_Box','Blessing 10 Scroll Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12215,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12914,'Inc_Agi_10_Scroll_Box','Increase AGI 10 scroll Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12216,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12915,'Aspersio_5_Scroll_Box','Aspersio 5 Scroll Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Aspersio_5_Scroll_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12916,'Assumptio_5_Scroll_Box','Assumptio 5 Scroll Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12218,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12917,'Wind_Walk_10_Scroll_Box','Wind Walk 10 Scroll Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12219,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12918,'Adrenaline_Scroll_Box','Adrenaline 5 Scroll Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12220,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12919,'Megaphone_Box','Megaphone Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12221,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12920,'Enriched_Elunium_Box','Enriched Elunium Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 7619,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12921,'Enriched_Oridecon_Box','Enriched Oridecon Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 7620,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12922,'Token_Of_Siegfried_Box','Token of Siegfried Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 7621,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`script`) VALUES (12923,'Pet_Egg_Scroll_Box1','December Lucky Box','Cash',20,10,true,100,true,'getgroupitem(IG_Pet_Egg_Scroll_Box1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`script`) VALUES (12924,'Pet_Egg_Scroll_Box2','Pet Egg Box 2','Cash',20,10,true,100,true,'getgroupitem(IG_Pet_Egg_Scroll_Box2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`script`) VALUES (12925,'Pet_Egg_Scroll1','Kafra Item Mall Prize Package','Cash',20,10,true,100,true,'getgroupitem(IG_Pet_Egg_Scroll1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`script`) VALUES (12926,'Pet_Egg_Scroll2','December Lucky Box','Cash',20,10,true,100,true,'getgroupitem(IG_Pet_Egg_Scroll2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12927,'J_Aspersio_5_Scroll_Box','Aspersio Scroll Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12928,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12928,'J_Aspersio_5_Scroll','Sacred Scroll','Delayconsume',2,10,100,true,true,true,true,true,true,true,'itemskill "PR_ASPERSIO",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12929,'Pet_Egg_Scroll_Box3','Pet Egg Box 3','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Pet_Egg_Scroll_Box3);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12930,'Pet_Egg_Scroll_Box4','Pet Egg Box 4','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Pet_Egg_Scroll_Box4);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12931,'Pet_Egg_Scroll_Box5','Pet Egg Box 5','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Pet_Egg_Scroll_Box5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12932,'Pet_Egg_Scroll3','Episode 13.2 Key Package','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Pet_Egg_Scroll3);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12933,'Pet_Egg_Scroll4','Summer Hat Pack','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Pet_Egg_Scroll4);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12934,'Pet_Egg_Scroll5','Pet Egg Scroll5','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Pet_Egg_Scroll5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12935,'Infiltrator_Box','Infiltrator Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Infiltrator_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12936,'Muramasa_Box','Muramasa Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Muramasa_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12937,'Excalibur_Box','Excalibur Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Excalibur_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12938,'Combat_Knife_Box','Combat Knife Box','Cash',20,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Combat_Knife_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12939,'Counter_Dagger_Box','Dagger of Counter Box','Cash',20,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Counter_Dagger_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12940,'Kaiser_Knuckle_Box','Kaiser Knuckle Box','Cash',20,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Kaiser_Knuckle_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12941,'Pole_Axe_Box','Poll Axe Box','Cash',20,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Pole_Axe_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12942,'Mighty_Staff_Box','Mighty Staff Box','Cash',20,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Mighty_Staff_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12943,'Right_Epsilon_Box','Light Epsilon Box','Cash',20,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Right_Epsilon_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12944,'Balistar_Box','Ballista Box','Cash',20,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Balistar_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12945,'Diary_Of_Great_Sage_Box','Sage\'s Diary Box','Cash',20,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Diary_Of_Great_Sage_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12946,'Asura_Box','Asura Box','Cash',20,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Asura_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12947,'Apple_Of_Archer_Box','Apple of Archer Box','Cash',20,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Apple_Of_Archer_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12948,'Bunny_Band_Box','Bunny Band Box','Cash',20,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Bunny_Band_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12949,'Sahkkat_Box','Sakkat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Sahkkat_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12950,'Lord_Circlet_Box','Grand Circlet Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Lord_Circlet_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12951,'Elven_Ears_Box','Elven Ears Box','Cash',20,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Elven_Ears_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12952,'Steel_Flower_Box','Steel Flower Box','Cash',20,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Steel_Flower_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12953,'Critical_Ring_Box','Critical Ring Box','Cash',20,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Critical_Ring_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12954,'Earring_Box','Earring Box','Cash',20,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Earring_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12955,'Ring_Box','Ring Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Ring_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12956,'Necklace_Box','Necklace Box','Cash',20,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Necklace_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12957,'Glove_Box','Glove Box','Cash',20,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Glove_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12958,'Brooch_Box','Brooch Box','Cash',20,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Brooch_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12959,'Rosary_Box','Rosary Box','Cash',20,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Rosary_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12960,'Safety_Ring_Box','Safety Ring Box','Cash',20,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Safety_Ring_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12961,'Vesper_Core01_Box','Vesper Core 01 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Vesper_Core01_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12962,'Vesper_Core02_Box','Vesper Core 02 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Vesper_Core02_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12963,'Vesper_Core03_Box','Vesper Core 03 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Vesper_Core03_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12964,'Vesper_Core04_Box','Vesper Core 04 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Vesper_Core04_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12965,'Emergency_Box1','Emergency Level 1 Scroll Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12968,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12966,'Emergency_Box2','Emergency Level 2 Scroll Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12969,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12967,'Emergency_Box3','Emergency Level 3 Scroll Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12970,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`delay_duration`,`delay_status`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12968,'Emergency_Scroll1','Emergency Level 1 Scroll','Usable',2,10,300000,'Reuse_Limit_Recall',100,true,true,true,true,true,true,true,'unitskilluseid getcharid(3),"GD_ITEMEMERGENCYCALL",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`delay_duration`,`delay_status`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12969,'Emergency_Scroll2','Emergency Level 2 Scroll','Usable',2,10,300000,'Reuse_Limit_Recall',100,true,true,true,true,true,true,true,'unitskilluseid getcharid(3),"GD_ITEMEMERGENCYCALL",2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`delay_duration`,`delay_status`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12970,'Emergency_Scroll3','Emergency Level 3 Scroll','Usable',2,10,300000,'Reuse_Limit_Recall',100,true,true,true,true,true,true,true,'unitskilluseid getcharid(3),"GD_ITEMEMERGENCYCALL",3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12971,'Teleport_Box1','Teleport Scroll Box 1','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12977,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12972,'Teleport_Box2','Teleport Scroll Box 2','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12978,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12973,'Teleport_Box3','Teleport Scroll Box 3','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12979,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12974,'Teleport_Box4','Teleport Scroll Box 4','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12980,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12975,'Teleport_Box5','Teleport Scroll Box 5','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12981,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12976,'Teleport_Box6','Teleport Scroll Box 6','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12982,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12977,'Teleport_Scroll1','Teleport Scroll 1','Usable',2,10,100,true,true,true,true,true,true,true,'callfunc "F_CashTele",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12978,'Teleport_Scroll2','Teleport Scroll 2','Usable',2,10,100,true,true,true,true,true,true,true,'callfunc "F_CashTele",2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12979,'Teleport_Scroll3','Teleport Scroll 3','Usable',2,10,100,true,true,true,true,true,true,true,'callfunc "F_CashTele",3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12980,'Teleport_Scroll4','Teleport Scroll 4','Usable',2,10,100,true,true,true,true,true,true,true,'callfunc "F_CashTele",4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12981,'Teleport_Scroll5','Teleport Scroll 5','Usable',2,10,100,true,true,true,true,true,true,true,'callfunc "F_CashTele",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12982,'Teleport_Scroll6','Teleport Scroll 6','Usable',2,10,100,true,true,true,true,true,true,true,'callfunc "F_CashTele",6;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12983,'Pet_Egg_Scroll_Box6','Pet Egg Scroll Box 6','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Pet_Egg_Scroll_Box6);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12984,'Pet_Egg_Scroll_Box7','Pet Egg Scroll Box 7','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Pet_Egg_Scroll_Box7);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12985,'Pet_Egg_Scroll_Box8','Pet Egg Scroll Box 8','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Pet_Egg_Scroll_Box8);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12986,'Pet_Egg_Scroll_Box9','Adventurer Pack Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Pet_Egg_Scroll_Box9);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12987,'Pet_Egg_Scroll_Box10','Pet Egg Scroll Box 10','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Pet_Egg_Scroll_Box10);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12988,'Pet_Egg_Scroll_Box11','Pet Egg Scroll Box 11','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Pet_Egg_Scroll_Box11);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12989,'Pet_Egg_Scroll6','Pet Egg Scroll 6','Cash',10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Pet_Egg_Scroll6);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12990,'Pet_Egg_Scroll7','Pet Egg Scroll 7','Cash',10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Pet_Egg_Scroll7);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12991,'Pet_Egg_Scroll8','Party Hard Pack','Cash',10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Pet_Egg_Scroll8);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12992,'Pet_Egg_Scroll9','Adventurer Pack','Cash',10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Pet_Egg_Scroll9);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12993,'Pet_Egg_Scroll10','Pet Egg Scroll 10','Cash',10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Pet_Egg_Scroll10);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12994,'Pet_Egg_Scroll11','Pet Egg Scroll 11','Cash',10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Pet_Egg_Scroll11);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12995,'White_Herb_Box','White Herb Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 509,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12996,'Blue_Herb_Box','Blue Herb Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 510,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12997,'Elunium_Box','Elunium Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 985,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12998,'Oridecon_Box','Oridecon Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 984,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12999,'Branch_Of_Dead_Tree_Box','Dead Branch Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 604,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13500,'Insurance60_Package','Life Insurrance Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14500,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13501,'Assorted_Scroll_Box','Experience Scroll Box','Cash',20,10,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13502,'Drooping_Kitty_Box','Refined Drooping Cat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 5279,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13503,'Magestic_Goat_Box','Baphomet Horns Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 5280,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13504,'Deviruchi_Cap_Box','Refined Deviruchi Hat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 5281,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13505,'Executioner_Box','Executioner Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 1174,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13506,'Brood_Axe_Box','Refined Bloody Axe Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 1373,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13507,'Tomahawk_Box','Tomahawk Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 1374,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13508,'Bow_Of_Rudra_Box','Rudra Bow Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 1729,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13509,'Cutlas_Box','Cutlus Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 13402,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13510,'Solar_Sword_Box','Solar Sword Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 13403,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13511,'Sword_Breaker_Box','Refined Swordbreaker Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 13024,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13512,'Mail_Breaker_Box','Refined Mailbreaker Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 13025,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13513,'Moonlight_Sword_Box','Moonlight Dagger Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 13026,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13514,'Spanner_Box','Wrench Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 1534,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13515,'Grape_Box','Grape Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 514,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13516,'Royal_Jelly_Box','Royal Jelly Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 526,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13517,'Yggdrasilberry_Box','Yggdrasil Berry Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 607,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13518,'Weapon_Card_Scroll_Box','Weapon Card Pet Egg Scroll Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 13558,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13519,'Armor_Card_Scroll_Box','Armor Card Pet Egg Scroll Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 13559,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13520,'Helmet_Card_Scroll_Box','Helmet Card Pet Egg Scroll Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 13560,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13521,'Hood_Card_Scroll_Box','Garment Card Pet Egg Scroll Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 13561,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13522,'Hood_Card_Scroll_Box2','Shield Card Pet Egg Scroll Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 13562,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13523,'Shoes_Card_Scroll_Box','Shoes Card Pet Egg Scroll Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 13563,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13524,'Accy_Card_Scroll_Box','Accessory Card Pet Egg Scroll Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 13564,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13525,'Zeny_Scroll_Box','Zeny Pet Egg Scroll Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14508,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13526,'Pet_Egg_Scroll_Box1_','Pet Egg Scroll Box 12','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12925,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13527,'Pet_Egg_Scroll_Box2_','Pet Egg Scroll Box 13','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12926,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13528,'Pet_Egg_Scroll_Box3_','Pet Egg Scroll Box 14','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12932,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13529,'Pet_Egg_Scroll_Box4_','Pet Egg Scroll Box 15','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12933,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13530,'Pet_Egg_Scroll_Box5_','Pet Egg Scroll Box 16','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12934,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13531,'Light_Red_Pot_Box','Light Red Potion Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 598,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13532,'Light_Orange_Pot_Box','Light Orange Potion Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 599,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13533,'Light_Yellow_Pot_Box','Light Yellow Potion Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 11500,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13534,'Light_White_Pot_Box','Light White Potion Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 11501,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13535,'Light_Center_Pot_Box','Light Concentration Potion Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14509,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13536,'Light_Awakening_Pot_Box','Light Awakening Potion Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14510,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13537,'Light_Berserk_Pot_Box','Light Berserk Potion Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14511,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13538,'Meteor_10_Scroll_Box','Meteor Storm Scroll Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14512,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13539,'Storm_10_Scroll_Box','Storm Gust Scroll Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14513,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13540,'Vermilion_10_Scroll_Box','Lord of Vermilion Scroll Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14514,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13541,'Lex_Aeterna_Scroll_Box','Lex Aeterna Scroll Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14515,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13542,'Magnificat_5_Scroll_Box','Magnificat Scroll Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14516,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13543,'CP_Helm_Scroll_Box','Chemical Protection Helm Scroll Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_CP_Helm_Scroll_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13544,'CP_Shield_Scroll_Box','Chemical Protection Shield Scroll Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_CP_Shield_Scroll_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13545,'CP_Armor_Scroll_Box','Chemical Protection Armor Scroll Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_CP_Armor_Scroll_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13546,'CP_Weapon_Scroll_Box','Chemical Protection Weapon Scroll Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_CP_Weapon_Scroll_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13547,'Repair_Scroll_Box','Repair Weapon Scroll Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Repair_Scroll_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13548,'Big_Bun_Box','Big Bun Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14522,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13549,'Pill__Box','Pill Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14523,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13550,'Superb_Fish_Slice_Box','Fish Slice Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14524,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13551,'Chewy_Ricecake_Box','Chewy Ricecake Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14525,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13552,'Oriental_Pastry_Box','Pastry Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14526,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13553,'Dun_Tele_Scroll1_Box','Dungeon Teleport Scroll 5 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14527,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13554,'Weapon_Card_Scroll_Box2','Weapon Card Pet Egg Scroll Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 13565,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13555,'Weapon_Card_Scroll_Box3','Weapon Card Pet Egg Scroll Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 13566,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13556,'Armor_Card_Scroll_Box2','Armor Card Pet Egg Scroll Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 13567,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13557,'Accy_Card_Scroll_Box2','Accessory Card Pet Egg Scroll Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 13568,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13558,'Weapon_Card_Scroll','Weapon Card Pet Egg Scroll','Usable',20,10,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13559,'Armor_Card_Scroll','Armor Card Pet Egg Scroll','Usable',20,10,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13560,'Helmet_Card_Scroll','Helmet Card Pet Egg Scroll','Usable',20,10,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13561,'Hood_Card_Scroll','Garment Card Pet Egg Scroll','Usable',20,10,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13562,'Hood_Card_Scroll2','Shield Card Pet Egg Scroll','Usable',20,10,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13563,'Shoes_Card_Scroll','Shoes Card Pet Egg Scroll','Usable',20,10,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13564,'Accy_Card_Scroll','Accessory Card Pet Egg Scroll','Usable',20,10,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13565,'Weapon_Card_Scroll2','Weapon Card Pet Egg Scroll','Usable',20,10,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13566,'Weapon_Card_Scroll3','Weapon Card Pet Egg Scroll','Usable',20,10,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13567,'Armor_Card_Scroll2','Armor Card Pet Egg Scroll','Usable',20,10,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13568,'Accy_Card_Scroll2','Accessory Card Pet Egg Scroll','Usable',20,10,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13569,'PVP_Tele_Scroll_Box','PVP Teleport Scroll Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14528,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13570,'Giant_Fly_Wing_Box50','Giant Fly Wing 50 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12212,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13571,'Giant_Fly_Wing_Box100','Giant Fly Wing 100 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12212,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13572,'Dex_Dish_Box30','Hwergelmir\'s Tonic 30 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12205,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13573,'Dex_Dish_Box50','Hwergelmir\'s Tonic 50 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12205,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13574,'Luk_Dish_Box30','Nine Tail Dish 30 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12206,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13575,'Luk_Dish_Box50','Nine Tail Dish 50 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12206,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13576,'Inc_Agi_10_Box30','Increase Agility Scroll 30 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12216,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13577,'Inc_Agi_10_Box50','Increase Agility Scroll 50 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12216,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13578,'Vit_Dish_Box30','Stew of Immortality 30 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12207,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13579,'Vit_Dish_Box50','Stew of Immortality 50 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12207,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13580,'Insurance_Package30','Life Insurrance 30 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12209,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13581,'Insurance_Package50','Life Insurrance 50 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12209,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13582,'Convex_Mirror_Box5','Convex Mirror 5 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12214,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13583,'Convex_Mirror_Box30','Convex Mirror 30 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12214,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13584,'Blessing10_Box30','Blessing Scroll 30 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12215,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13585,'Blessing10_Box50','Blessing Scroll 50 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12215,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13586,'Adrenaline10_Box30','Adrenaline Rush Scroll 30 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12220,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13587,'Adrenaline10_Box50','Adrenaline Rush Scroll 50 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12220,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13588,'Assumptio_5_Box30','Assumptio Scroll 30 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12218,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13589,'Assumptio_5_Box50','Assumptio Scroll 50 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12218,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13590,'Aspersio_5_Box30','Aspersio Scroll 30 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12217,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13591,'Aspersio_5_Box50','Aspersio Scroll 50 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12217,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13592,'Agi_Dish_Box30','Steamed Scorpion 30 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12203,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13593,'Agi_Dish_Box50','Steamed Scorpion 50 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12203,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13594,'Wind_Walk10_Box30','Wind Walk Scroll 30 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12219,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13595,'Wind_Walk10_Box50','Wind Walk Scroll 50 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12219,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13596,'Int_Dish_Box30','Dragon Breath Cocktail 30 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12204,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13597,'Int_Dish_Box50','Dragon Breath Cocktail 50 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12204,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13598,'Battle_Manual_Box1','Field Manual Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12208,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13599,'Battle_Manual_Box5','Field Manual 5 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12208,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13600,'Siegfried_Box5','Token of Siegfried 5 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 7621,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13601,'Siegfried_Box20','Token of Siegfried 20 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 7621,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13602,'Kafra_Card_Box30','Kafra Card 30 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12211,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13603,'Kafra_Card_Box50','Kafra Card 50 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12211,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13604,'Str_Dish_Box30','Steamed Tongue 30 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12202,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13605,'Str_Dish_Box50','Steamed Tongue 50 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12202,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13606,'Bubble_Gum_Box1','Bubble Gum Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12210,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13607,'Bubble_Gum_Box5','Bubble Gum 5 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12210,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13608,'Megaphone_Box1','Megaphone Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12221,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13609,'Megaphone_Box5','Megaphone 5 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12221,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13610,'Enriched_Elunium_Box5','Enriched Elunium 5 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 7619,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13611,'Enriched_Oridecon_Box5','Enriched Oridecon 5 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 7620,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13612,'Handcuff_Box','Arrest Handcuffs Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 2706,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13613,'Super_Pet_Egg_Box1','Super Pet Egg Box 1','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 13617,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13614,'Super_Pet_Egg_Box2','Super Pet Egg Box 2','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 13618,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13615,'Super_Pet_Egg_Box3','Super Pet Egg Box 3','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 13619,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13616,'Super_Pet_Egg_Box4','Super Pet Egg Box 4','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 13620,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13617,'Super_Pet_Egg1','Super Pet Egg 1','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Super_Pet_Egg1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13618,'Super_Pet_Egg2','Super Pet Egg 2','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Super_Pet_Egg2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13619,'Super_Pet_Egg3','Super Pet Egg 3','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Super_Pet_Egg3);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13620,'Super_Pet_Egg4','Super Pet Egg 4','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Super_Pet_Egg4);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13621,'Greed_Box30','Greed Scroll 30 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14529,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13622,'Greed_Box50','Greed Scroll 50 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14529,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13623,'Greed_Box100','Greed Scroll 100 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14529,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13624,'Flee_30_Scroll_Box','Evasion Scroll Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14530,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13625,'Accuracy_30_Scroll_Box','Concentration Scroll Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14531,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13626,'Super_Card_Pet_Egg_Box1','Super Card Pet Egg Box 1','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 13630,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13627,'Super_Card_Pet_Egg_Box2','Super Card Pet Egg Box 2','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 13631,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13628,'Super_Card_Pet_Egg_Box3','Super Card Pet Egg Box 3','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 13632,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13629,'Super_Card_Pet_Egg_Box4','Super Card Pet Egg Box 4','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 13633,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13630,'Super_Card_Pet_Egg1','Super Card Pet Egg 1','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Super_Card_Pet_Egg1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13631,'Super_Card_Pet_Egg2','Super Card Pet Egg 2','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Super_Card_Pet_Egg2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13632,'Super_Card_Pet_Egg3','Super Card Pet Egg 3','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Super_Card_Pet_Egg3);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13633,'Super_Card_Pet_Egg4','Super Card Pet Egg 4','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Super_Card_Pet_Egg4);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13634,'Vigorgra_Package1','1 Hour Package Vol. 1','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Vigorgra_Package1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13635,'Vigorgra_Package2','1 Hour Package Vol. 2','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Vigorgra_Package2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13636,'Vigorgra_Package3','1 Hour Package Vol. 3','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Vigorgra_Package3);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13637,'Vigorgra_Package4','1 Hour Package Vol. 4','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Vigorgra_Package4);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13638,'Vigorgra_Package5','1 Hour Package Vol. 5','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Vigorgra_Package5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13639,'Vigorgra_Package6','1 Hour Package Vol. 6','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Vigorgra_Package6);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13640,'Vigorgra_Package7','2 Hour Package Vol. 1','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Vigorgra_Package7);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13641,'Vigorgra_Package8','2 Hour Package Vol. 2','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Vigorgra_Package8);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13642,'Vigorgra_Package9','2 Hour Package Vol. 3','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Vigorgra_Package9);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13643,'Vigorgra_Package10','2 Hour Package Vol. 4','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Vigorgra_Package10);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13644,'Vigorgra_Package11','2 Hour Package Vol. 5','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Vigorgra_Package11);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13645,'Vigorgra_Package12','2 Hour Package Vol. 6','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Vigorgra_Package12);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13646,'Infiltrator_Box1','Refined Infiltrator Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 1267,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13647,'Muramasa_Box1','Refined Muramasa Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 1173,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13648,'Excalibur_Box1','Refined Excalibur Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 13401,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13649,'Combat_Knife_Box1','Refined Combat Knife Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 13021,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13650,'Counter_Dagger_Box1','Refined Dagger of Counter Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 13022,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13651,'Kaiser_Knuckle_Box1','Refined Kaiser Knuckle Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 1817,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13652,'Pole_Axe_Box1','Refined Pole Axe Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 1419,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13653,'Mighty_Staff_Box1','Refined Mighty Staff Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 1623,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13654,'Right_Epsilon_Box1','Refined Light Epsilon Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 1372,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13655,'Balistar_Box1','Refined Ballista Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 1728,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13656,'Diary_Of_Sage_Box1','Refined Sage\'s Diary Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 1563,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13657,'Asura_Box1','Refined Ashura Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 13023,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13658,'Apple_Of_Archer_Box1','Refined Apple of Archer Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 5265,1209600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13659,'Bunny_Band_Box1','Refined Bunny Band Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 5266,1209600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13660,'Sahkkat_Box1','Refined Sakkat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 5267,1209600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13661,'Lord_Circlet_Box1','Refined Grand Circlet Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 5268,1209600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13662,'Elven_Ears_Box1','Refined Elven Ears Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2686,1209600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13663,'Steel_Flower_Box1','Refined Romantic Flower Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2687,1209600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13664,'Critical_Ring_Box1','Refined Critical Ring Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2688,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13665,'Earring_Box1','Refined Earring Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2689,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13666,'Ring_Box1','Refined Ring Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2690,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13667,'Necklace_Box1','Refined Necklace Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2691,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13668,'Glove_Box1','Refined Glove Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2692,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13669,'Brooch_Box1','Refined Brooch Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2693,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13670,'Rosary_Box1','Refined Rosary Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2694,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13671,'Safety_Ring_Box1','Refined Safety Ring Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2695,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13672,'Vesper_Core01_Box1','Refined Vesper Core 01 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2696,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13673,'Vesper_Core02_Box1','Refined Vesper Core 02 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2697,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13674,'Vesper_Core03_Box1','Refined Vesper Core 03 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2698,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13675,'Vesper_Core04_Box1','Refined Vesper Core 04 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2699,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13676,'Drooping_Kitty_Box1','Refined Drooping Cat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 5279,1209600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13677,'Magestic_Goat_Box1','Refined Majestic Goat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 5280,1209600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13678,'Deviruchi_Cap_Box1','Refined Deviruchi Hat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 5281,1209600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13679,'Executioner_Box1','Refined Executioner Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 1174,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13680,'Brood_Axe_Box1','Refined Bloody Axe Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 1373,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13681,'Tomahawk_Box1','Refined Tomahawk Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 1374,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13682,'Bow_Of_Rudra_Box1','Refined Rudra Bow Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 1729,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13683,'Cutlas_Box1','Refined Cutlus Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 13402,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13684,'Solar_Sword_Box1','Refined Solar Sword Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 13403,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13685,'Sword_Breaker_Box1','Refined Swordbreaker Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 13024,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13686,'Mail_Breaker_Box1','Refined Mailbreaker Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 13025,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13687,'Moonlight_Sword_Box1','Refined Moonlight Dagger Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 13026,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13688,'Spanner_Box1','Refined Wrench Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 1534,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13689,'Bok_Choy_Box','Bok Choy Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 7766,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13690,'Chung_E_Cake_Box','Green Maiden Cake Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 7767,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13691,'Freyja_Overcoat_Box','Freya\'s Clothes Box','Cash',10,true,100,true,true,true,true,true,true,true,'rentitem 2369,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13692,'Freyja_Boots_Box','Freya\'s Boots Box','Cash',10,true,100,true,true,true,true,true,true,true,'rentitem 2428,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13693,'Freyja_Cape_Box','Freya\'s Manteau Box','Cash',10,true,100,true,true,true,true,true,true,true,'rentitem 2533,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13694,'Freyja_Crown_Box','Freya\'s Crown Box','Cash',10,true,100,true,true,true,true,true,true,true,'rentitem 5306,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13695,'Battle_Manual25_Box','Field Manual 25% Box','Cash',10,true,100,true,true,true,true,true,true,true,'getitem 14532,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13696,'Battle_Manual100_Box','Field Manual 100% Box','Cash',10,true,100,true,true,true,true,true,true,true,'getitem 14533,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13697,'J_Blessing10_Box','Blessing Scroll 10 Box','Cash',10,true,100,true,true,true,true,true,true,true,'getitem 12215,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13698,'J_Inc_Agi10_Box','Increase Agility Scroll 10 Box','Cash',10,true,100,true,true,true,true,true,true,true,'getitem 12216,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13699,'J_Wind_Walk10_Box','Wind Walk Scroll 10 Box','Cash',10,true,100,true,true,true,true,true,true,true,'getitem 12219,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13700,'J_Adrenaline10_Box','Adrenaline Rush Scroll 10 Box','Cash',10,true,100,true,true,true,true,true,true,true,'getitem 12220,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13701,'Pet_Egg_Scroll12','Pet Egg Scroll 12','Usable',10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Pet_Egg_Scroll12);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13702,'Pet_Egg_Scroll13','Pet Egg Scroll 13','Usable',10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Pet_Egg_Scroll13);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13703,'Pet_Egg_Scroll14','Pet Egg Scroll 14','Usable',10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Pet_Egg_Scroll14);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13704,'Super_Pet_Egg5','Super Pet Egg 5','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Super_Pet_Egg5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13705,'Super_Pet_Egg6','Super Pet Egg 6','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Super_Pet_Egg6);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13706,'Super_Pet_Egg7','Super Pet Egg 7','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Super_Pet_Egg7);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13707,'Super_Pet_Egg8','Super Pet Egg 8','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Super_Pet_Egg8);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13708,'Pet_Egg_Scroll_E','Pet Egg Scroll E','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Pet_Egg_Scroll_E);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13709,'BRO_Package_1','BRO Package Box','Usable',20,10,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13710,'Max_Weight_Up_Box','Gym Pass Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 7776,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13711,'Small_Life_Potion_Box','Small Life Potion 10 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14534,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13712,'Small_Life_Potion_Box30','Small Life Potion 30 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14534,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13713,'Small_Life_Potion_Box50','Small Life Potion 50 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14534,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13714,'Med_Life_Potion_Box','Medium Life Potion 10 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14535,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13715,'Med_Life_Potion_Box30','Medium Life Potion 30 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14535,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13716,'Med_Life_Potion_Box50','Medium Life Potion 50 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14535,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13717,'Abrasive_Box5','Abrasive 5 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14536,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13718,'Abrasive_Box10','Abrasive 10 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14536,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13719,'Regeneration_Box5','Regeneration Potion 5 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14537,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13720,'Regeneration_Box10','Regeneration 10 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14537,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13721,'Dun_Tele_Scroll_Box10','Dungeon Teleport Scroll 10 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14527,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13722,'Pecopeco_Hairband_Box','Peco Peco Hairband Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5286,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13723,'Red_Glasses_Box','Red Glasses Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5288,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13724,'Whisper_Mask_Box','Whisper Mask Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5294,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13725,'Ramen_Hat_Box','Ramen Hat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Ramen_Hat_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13726,'Gold_Box_','Golden Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 7777,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13727,'Silver_Box_','Silver Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 7778,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13728,'Gold_Key1_Box','Golden Key 1 Box','Cash',10,true,100,true,true,true,true,true,true,true,'getitem 7779,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13729,'Gold_Key5_Box','Golden Key 5 Box','Cash',10,true,100,true,true,true,true,true,true,true,'getitem 7779,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13730,'Silver_Key1_Box','Silver Key 1 Box','Cash',10,true,100,true,true,true,true,true,true,true,'getitem 7780,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13731,'Silver_Key5_Box','Silver Key 5 Box','Cash',10,true,100,true,true,true,true,true,true,true,'getitem 7780,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13734,'Pecopeco_Hairband_Box1','Peco Peco Hairband Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5286,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13735,'Red_Glasses_Box1','Red Glasses Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5288,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13736,'Whisper_Mask_Box1','Whisper Mask Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5294,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13737,'Ramen_Hat_Box1','Ramen Hat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5293,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13738,'Glass_Of_Illusion_Box5','Glass of Illusion 5 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14538,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13739,'Glass_Of_Illusion_Box10','Glass of Illusion 10 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14538,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13740,'Shadow_Armor_S_Box5','Shadow Armor Scroll 5 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14539,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13741,'Shadow_Armor_S_Box10','Shadow Armor Scroll 10 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14539,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13742,'Shadow_Armor_S_Box30','Shadow Armor Scroll 30 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14539,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13743,'Holy_Armor_S_Box5','Holy Armor Scroll 5 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14540,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13744,'Holy_Armor_S_Box10','Holy Armor Scroll 10 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14540,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13745,'Holy_Armor_S_Box30','Holy Armor Scroll 30 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14540,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13746,'S_Def_Potion_Box10','Small Defense Potion 10 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14541,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13747,'S_Def_Potion_Box30','Small Defense Potion 30 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14541,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13748,'S_Def_Potion_Box50','Small Defense Potion 50 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14541,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13749,'B_Def_Potion_Box10','Big Defense Potion 10 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14542,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13750,'B_Def_Potion_Box30','Big Defense Potion 30 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14542,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13751,'B_Def_Potion_Box50','Big Defense Potion 50 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14542,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13752,'S_Mdef_Potion_Box10','Small Magic Defense Potion 10 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14543,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13753,'S_Mdef_Potion_Box30','Small Magic Defense Potion 30 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14543,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13754,'S_Mdef_Potion_Box50','Small Magic Defense Potion 50 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14543,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13755,'B_Mdef_Potion_Box10','Big Magic Defense Potion 10 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14544,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13756,'B_Mdef_Potion_Box30','Big Magic Defense Potion 30 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14544,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13757,'B_Mdef_Potion_Box50','Big Magic Defense Potion 50 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14544,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13758,'Battle_Manual_X3_Box','Field Manual 300% Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14545,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13759,'In_Blue_Herb_Box','Blue Herb Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 510,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13760,'Honey_Box','Honey Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 518,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13761,'Empty_Bottle_Box','Empty Bottle Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 713,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13762,'In_Royal_Jelly_Box','Royal Jelly Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 526,70;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13763,'5_Anniversary_Coin_Box','Coin Box','Cash',20,10,true,100,true,true,true,true,true,true,true,true,'getitem 2709,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13764,'Battle_Manual_Box_TW','Beginner\'s Field Manual 5 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 7803,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13765,'Certificate_TW_Box','Certificate Box','Cash',20,10,true,100,true,true,true,true,true,true,true,true,'/*getitem 7804,1;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13766,'Nagan_Box','Refined Nagan Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 13407,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13767,'Skewer_Box','Refined Brocca Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 1424,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13768,'Survival_Rod_Box','Refined Survivor\'s Rod Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 1628,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13769,'Quadrille_Box','Refined Quadrille Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 1537,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13770,'Great_Axe_Box','Refined Great Axe Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 1378,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13771,'Bloody_Roar_Box','Refined Bloody Roar Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 1273,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13772,'Hardback_Box','Refined Hardcover Book Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 1567,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13773,'Fire_Brand_Box','Refined Fireblend Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Fire_Brand_Box); /*rentitem 13408,604800;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13774,'Immaterial_Sword_Box','Refined Immaterial Sword Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 13409,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13775,'Unholy_Touch_Box','Refined Unholy Touch Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 1274,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13776,'Cloak_Of_Survival_Box','Refined Survivor\'s Manteau Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2535,1209600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13777,'Masquerade_Box','Refined Masquerade Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 5326,1209600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13778,'Orc_Hero_Helm_Box','Refined Helmet of Orc Hero Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 5327,1209600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13779,'Evil_Wing_Ears_Box','Refined Wing of Diablo Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 5328,1209600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13780,'Dark_Blindfold_Box','Refined Dark Blinder Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 5329,1209600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13781,'kRO_Drooping_Kitty_Box','Refined Drooping Cat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 5330,1209600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13782,'Corsair_Box','Refined Corsair Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 5331,1209600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13783,'Bloody_Iron_Ball_Box','Refined Bloodied Shackle Ball Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2710,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13784,'Spiritual_Ring_Box','Refined Spiritual Ring Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2711,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13785,'Nagan_Box1','Refined Nagan Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 13407,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13786,'Skewer_Box1','Refined Brocca Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 1424,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13787,'Survival_Rod_Box1','Refined Survivor\'s Rod Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 1628,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13788,'Quadrille_Box1','Refined Quadrille Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 1537,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13789,'Great_Axe_Box1','Refined Great Axe Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 1378,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13790,'Bloody_Roar_Box1','Refined Bloody Roar Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 1273,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13791,'Hardback_Box1','Refined Hardcover Book Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 1567,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13792,'Fire_Brand_Box1','Refined Fireblend Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 13408,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13793,'Immaterial_Sword_Box1','Refined Immaterial Sword Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 13409,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13794,'Unholy_Touch_Box1','Refined Unholy Touch Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 1274,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13795,'Cloak_Of_Survival_Box1','Refined Survivor\'s Manteau Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2535,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13796,'Masquerade_Box1','Refined Masquerade Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 5326,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13797,'Orc_Hero_Helm_Box1','Refined Helmet of Orc Hero Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 5327,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13798,'Evil_Wing_Ears_Box1','Refined Wing of Diablo Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 5328,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13799,'Dark_Blindfold_Box1','Refined Dark Blinder Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 5329,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13800,'kRO_Drooping_Kitty_Box1','Refined Drooping Cat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 5330,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13801,'Corsair_Box1','Refined Corsair Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 5331,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13802,'Bloody_Iron_Ball_Box1','Refined Bloodied Shackle Ball Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2710,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13803,'Spiritual_Ring_Box1','Refined Spiritual Ring Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2711,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13804,'Fire_Cracker_Love_Box','I Love You Firecracker Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14546,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13805,'Fire_Cracker_Wday_Box','Whiteday Firecracker Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14547,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13806,'Fire_Cracker_Vday_Box','Valentine\'s Day Firecracker Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14548,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13807,'Fire_Cracker_Bday_Box','Birthday Firecracker Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14549,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13808,'Fire_Cracker_Xmas_Box','Xmas Firecracker Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14550,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13809,'Blue_Gemstone_Box','Blue Gemstone Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 717,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13810,'Blue_Potion_Box','Light Blue Potion Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 11502,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13811,'Food_Box_Lv1','Food Box Vol 1','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14551,1; getitem 14554,1; getitem 14557,1; getitem 14560,1; getitem 14563,1; getitem 14566,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13812,'Food_Box_Lv2','Food Box Vol 2','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14552,1; getitem 14555,1; getitem 14558,1; getitem 14561,1; getitem 14564,1; getitem 14567,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13813,'Food_Box_Lv3','Food Box Vol 3','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14553,1; getitem 14556,1; getitem 14559,1; getitem 14562,1; getitem 14565,1; getitem 14568,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13814,'Indonesia_Box','Healing Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 503,100; getitem 12684,10; getitem 607,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13815,'Knife_Goblin_Box','Knife Goblin Taming Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14569,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13816,'Flail_Goblin_Box','Flail Goblin Taming Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14570,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13817,'Hammer_Goblin_Box','Hammer Goblin Taming Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14571,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13818,'Red_Deleter_Box','Red Deleter Taming Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14572,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13819,'Diabolic_Box','Diabolic Taming Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14573,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13820,'Wanderer_Box','Wanderer Taming Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14574,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13821,'Green_Apple_Box','Green Apple Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 7821,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13822,'Whole_Barbecue_Box','Barbeque Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 7822,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13823,'Meat_Veg_Skewer_Box','Meat Skewer Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 7823,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13824,'Spirit_Liquor_Box','Spirit Liquor Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 7824,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`) VALUES (13825,'Green_Box_','Old Green Box','Usable',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13826,'Power_Box1','Power Box 1','Usable',20,10,true,100,true,true,true,true,true,true,true,'getitem 682,1; getitem 12123,1; getitem 12122,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13827,'Power_Box2','Power Box 2','Usable',20,10,true,100,true,true,true,true,true,true,true,'getitem 683,1; getitem 12123,1; getitem 12122,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13828,'Resist_Box1','Resist Box 1','Usable',20,10,true,100,true,true,true,true,true,true,true,'getitem 12118,1; getitem 12119,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13829,'Resist_Box2','Resist Box 2','Usable',20,10,true,100,true,true,true,true,true,true,true,'getitem 12120,1; getitem 12121,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13830,'Stat_Boost1','Stat Boost 1','Usable',20,10,true,100,true,true,true,true,true,true,true,'sc_start SC_INCSTR,60000,5; sc_start SC_INCAGI,60000,5; sc_start SC_INCVIT,60000,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13831,'Stat_Boost2','Stat Boost 2','Usable',20,10,true,100,true,true,true,true,true,true,true,'sc_start SC_INCINT,60000,5; sc_start SC_INCLUK,60000,5; sc_start SC_INCDEX,60000,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13832,'Stat_Boost3','Stat Boost 3','Usable',20,10,true,100,true,true,true,true,true,true,true,'sc_start SC_INCAGI,60000,5; sc_start SC_INCVIT,60000,5; sc_start SC_INCDEX,60000,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13833,'Stat_Boost4','Stat Boost 4','Usable',20,10,true,100,true,true,true,true,true,true,true,'sc_start SC_INCINT,60000,5; sc_start SC_INCVIT,60000,5; sc_start SC_INCDEX,60000,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13834,'Dun_Tele_Scroll2_Box5','Dungeon Teleport Scroll II 5 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14581,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13835,'Dun_Tele_Scroll2_Box10','Dungeon Teleport Scroll II 10 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14581,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13836,'Mbl_Str_Dish_Box','Steamed Tongue Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12250,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13837,'Mbl_Agi_Dish_Box','Steamed Desert Scorpions Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12251,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13838,'Mbl_Int_Dish_Box','Dragon Breath Cocktail Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12252,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13839,'Mbl_Dex_Dish_Box','Hwergelmir\'s Tonic Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12253,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13840,'Mbl_Luk_Dish_Box','Cooked Nine Tail Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12254,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13841,'Mbl_Vit_Dish_Box','Immortal Stew Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12255,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13842,'Mbl_Kafra_Card_Box','Payment Statement for Kafra Employee Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12249,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13843,'Mbl_Battle_Manual_Box','Field Manual Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14532,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13844,'Heroic_Stone_Box','Heroic Stone Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 7825,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13845,'Mysterious_Travel_Sack1','Mystery Travel Sack A','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Mysterious_Travel_Sack1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13846,'Mysterious_Travel_Sack2','Mystery Travel Sack B','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Mysterious_Travel_Sack2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13847,'Mysterious_Travel_Sack3','Mystery Travel Sack C','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Mysterious_Travel_Sack3);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13848,'Mysterious_Travel_Sack4','Mystery Travel Sack D','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Mysterious_Travel_Sack4);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13849,'WOB_Box_Rune5','Yellow Butterfly Wing 5 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14582,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13850,'WOB_Box_Rune10','Yellow Butterfly Wing Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14582,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13851,'WOB_Box_Schawaltz5','Green Butterfly Wing 5 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14583,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13852,'WOB_Box_Schawaltz10','Green Butterfly Wing Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14583,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13853,'WOB_Box_Rachel5','Red Butterfly Wing 5 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14584,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13854,'WOB_Box_Rachel10','Red Butterfly Wing Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14584,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13855,'WOB_Box_Local5','Blue Butterfly Wing 5 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14585,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13856,'WOB_Box_Local10','Blue Butterfly Wing Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14585,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13857,'Spark_Candy_Box5','Candy 5 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14586,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13858,'Spark_Candy_Box10','Candy 10 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14586,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13859,'Directive_A_Envelope','Directive Envelope A','Cash',20,10,true,100,true,true,true,true,true,true,true,true,'getitem 2734,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13860,'Directive_B_Envelope','Directive Envelope B','Cash',20,10,true,100,true,true,true,true,true,true,true,true,'getitem 2735,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13861,'Mini_Battle_Manual_Box','Small Field Manual Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12208,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13862,'Trial_Box','Trial Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12208,2; getitem 12215,15; getitem 12216,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13863,'Repair_Scroll_Box10','Repair Weapon Scroll 10 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14521,10; getitem 1002,10; getitem 998,10; getitem 756,10; getitem 999,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13864,'Hockey_Mask_Box','Hockey Mask Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 5314,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13865,'Observer_Box','Observer Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 5315,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13866,'Flying_Angel_Box','Flying Angel Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5210,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13867,'Neko_Mimi_Box','Neko Mimi Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5099,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13868,'MFH_Box','Moonlight Flower Hat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5214,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13869,'Chick_Hat_Box','Baby Chick Hat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5283,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13870,'New_Style_Box','Beauty Gift Certificate Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 7622,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13871,'Magician_Card_Box','Mage Card Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Magician_Card_Box); /*getitem 4327,1; getitem 4309,1; getitem 4325,1; getitem 4208,1; getitem 4258,1; getitem 4191,1;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13872,'Acolyte_Card_Box','Acolyte Card Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Acolyte_Card_Box); /*getitem 4185,1; getitem 4312,1; getitem 4217,1; getitem 4280,1; getitem 4293,1;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13873,'Archer_Card_Box','Archer Card Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Archer_Card_Box); /*getitem 4297,1; getitem 4234,1; getitem 4199,1; getitem 4178,1; getitem 4252,1;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13874,'Swordman_Card_Box','Swordman Card Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Swordman_Card_Box); /*getitem 4319,1; getitem 4331,1; getitem 4220,1; getitem 4311,1; getitem 4246,1;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13875,'Thief_Card_Box','Thief Card Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Thief_Card_Box); /*getitem 4230,1; getitem 4210,1; getitem 4257,1; getitem 4172,1; getitem 4272,1;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13876,'Merchant_Card_Box','Merchant Card Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Merchant_Card_Box); /*getitem 4206,1; getitem 4281,1; getitem 4186,1; getitem 4233,1; getitem 4321,1;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13877,'Clock_Tower_Card_Box','Clock Tower Card Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 4244,1; getitem 4299,1; getitem 4313,1; getitem 4229,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13878,'Geffenia_Card_Box','Geffenia Card Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 4218,1; getitem 4269,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13879,'Owl_Card_Box','Owl Card Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 4237,1; getitem 4238,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13880,'Ghost_Card_Box','Ghost Card Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 4193,1; getitem 4294,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13881,'Nightmare_Card_Box','Nightmare Card Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 4127,1; getitem 4166,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13882,'Curse_Card_Box','Curse Card Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 4076,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13883,'Sleep_Card_Box','Sleep Card Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 4024,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13884,'Freeze_Card_Box','Freeze Card Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 4055,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13885,'Stun_Card_Box','Stun Card Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 4017,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13886,'Silence_Card_Box','Silence Card Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 4057,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13887,'Blind_Card_Box','Blind Card Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 4020,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13888,'Chaos_Card_Box','Chaos Card Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 4104,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13889,'Elunium_Box_','Elunium Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 985,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13890,'Oridecon_Box_','Oridecon Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 984,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13891,'Fire_Converter_Box','Fire Converter Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12114,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13892,'Water_Converter_Box','Water Converter Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12115,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13893,'Wind_Converter_Box','Wind Converter Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12117,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13894,'Earth_Converter_Box','Earth Converter Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12116,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13895,'Starter_Pack','Starter Pack','Cash',20,true,100,true,true,true,true,true,true,true,'getitem 7229,2; getitem 569,300; getitem 504,20; getitem 505,20; getitem 7060,30; getitem 2403,1; getitem 5039,1; getitem 2503,1; getitem 2307,1; getitem 616,1; getitem 603,1; getitem 617,1; getitem 610,5; getitem 604,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13896,'Mimic_Summon_Box5','Mimic Summoning 5 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12276,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13897,'Disguise_Summon_Box5','Disguise Summoning 5 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12277,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13898,'Alice_Summon_Box5','Alice Summoning 5 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12278,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13899,'Mimic_Summon_Box10','Mimic Summoning 10 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12276,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13900,'Disguise_Summon_Box10','Disguise Summoning 10 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12277,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13901,'Alice_Summon_Box10','Alice Summoning 10 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12278,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13902,'Fish_Head_Hat_Box','Fish Head Hat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5380,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13903,'Santa_Poring_Hat_Box','Santa Poring Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5381,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13904,'Bell_Ribbon_Box','Bell Ribbon Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5382,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13905,'Hard_Core_Set_Box','XM Hardcore Set Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Hard_Core_Set_Box); /*getitem 12208,10; getitem 12209,10; getitem 12210,10;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13906,'Kitty_Set_Box','XM Kitty Set Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Kitty_Set_Box); /*getitem 5230,1; getitem 5231,1; getitem 5232,1; getitem 5233,1; getitem 5234,1;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13907,'Soft_Core_Set_Box','XM Softcore Set Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Soft_Core_Set_Box); /*getitem 12208,5; getitem 12209,5; getitem 12210,5;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13908,'Deviruchi_Set_Box','XM Deviruchi Set Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Deviruchi_Set_Box); /*getitem 5227,1; getitem 5228,1; getitem 5229,1;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13909,'MVP_Hunt_Box','MVP Hunting Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_MVP_Hunt_Box); /*getitem 7621,1; getitem 12210,1; getitem 12221,1; getitem 12214,3;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13910,'Brewing_Box','XM Brewing Set Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Brewing_Box); /*getitem 12204,10; getitem 12205,10; getitem 12206,10;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13911,'Xmas_Pet_Scroll','Christmas Pet Scroll','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Xmas_Pet_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13912,'Party_Blessing_Box','Party Blessing 10 Scroll Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14588,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13913,'Party_Inc_Agi_Box','Party Increase Agi 10 Scroll Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14589,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13914,'Party_Assumptio_Box','Party Assumptio 5 Scroll Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14590,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13915,'Love_Angel_Box','Love Angel Magic Powder Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 12287,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13916,'Squirrel_Box','Squirrel Magic Powder Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 12288,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13917,'Gogo_Box','Gogo Magic Powder Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 12289,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13918,'Drooping_W_Kitty_Box','Koneko Hat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5372,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13919,'L_Magestic_Goat_Box','Baphomet Horns Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5374,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13920,'Satanic_Chain_P_Box','Flying Evil Wing Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5376,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13921,'Antique_Pipe_Box','Gentleman\'s Pipe Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5377,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13922,'Rabbit_Ear_Hat_Box','Bunny Top Hat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5378,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13923,'Darkness_Helm_Box','Dark Randgris Helm Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5373,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13924,'L_Orc_Hero_Helm_Box','Orc Hero Headdress Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5375,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13925,'Lucky_Scroll08','Lucky Scroll08','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Lucky_Scroll08);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13926,'Crusader_Card_Box','Crusader Card Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 4371,1; getitem 4311,1; getitem 4319,1; getitem 4331,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13927,'Alchemist_Card_Box','Alchemist Card Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 4281,1; getitem 4233,1; getitem 4343,1; getitem 4186,1; getitem 4036,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13928,'Rogue_Card_Box','Rogue Card Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 4039,1; getitem 4210,1; getitem 4257,1; getitem 4230,1; getitem 4348,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13929,'Bard_Dancer_Card_Box','Bard Dancer Card Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 4297,1; getitem 4234,1; getitem 4178,1; getitem 4381,1; getitem 4252,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13930,'Sage_Card_Box','Sage card box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 4382,1; getitem 4258,1; getitem 4325,1; getitem 4208,1; getitem 4327,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13931,'Monk_Card_Box','Monk Card Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 4312,1; getitem 4332,1; getitem 4185,1; getitem 4293,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13932,'Sylph_Box','Sylph Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 4345,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13933,'Undine_Box','Undine Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 4350,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13934,'Salamander_Box','Salamander Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 4380,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13935,'Soul_Box','Soul Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 4388,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13936,'Noum_Bpx','Gnome Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 4335,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13937,'Robo_Eye_Box','Robo Eye Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5325,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13938,'Twin_Ribbon_Box','Maiden\'s Twin Ribbon Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5187,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13939,'Diadem_Box','Diadem Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5313,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13940,'Siege_Tele_Scroll_Box','WoE Teleport Scroll 100 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14591,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13941,'Valentine_Scroll_TW','Taiwan Valentine Scroll','Cash',20,10,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13942,'Love_Angel_Box_1m','Love Angel Magic Powder Box 30 Days','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14009,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13943,'Squirrel_Box_1m','Squirrel Magic Powder Box 30 Days','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14010,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13944,'Gogo_Box_1m','Gogo Magic Powder Box 30 Days','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14011,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13945,'Br_SwordPackage','Swordman Package','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Br_SwordPackage);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13946,'Br_MagePackage','Magician Package','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Br_MagePackage);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13947,'Br_AcolPackage','Acolyte Package','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Br_AcolPackage);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13948,'Br_ArcherPackage','Archer Package','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Br_ArcherPackage);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13949,'Br_MerPackage','Merchant Package','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Br_MerPackage);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13950,'Br_ThiefPackage','Thief Package','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Br_ThiefPackage);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13951,'Wasteland_Outlaw_Box','Western Outlaw Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 13109,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13952,'Lever_Action_Rifle_Box','Lever Action Rifle Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 13170,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13953,'All_In_One_Ring_Box','All In One Ring Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_All_In_One_Ring_Box); /*rentitem All_In_One_Ring,604800;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13954,'Spiritual_Tunic_Box','Spiritual Tunic Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2384,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13955,'Recuperative_Armor_Box','Recuvative Armor Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2385,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13956,'Shelter_Resistance_Box','Shell Of Resistance Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2132,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13957,'Sylphid_Manteau_Box','Silf Manteau Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2543,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13958,'Refresh_Shoes_Box','Refresh Shoes Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2439,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13959,'Toast_Box','Crunch Toast Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 5391,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13960,'Name_Change_Coupon_Box','Identification Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 7623,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13961,'Mojji_Box','Mochi Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 554,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13962,'Deprotai_Doll_Hat_Box','Defolty Doll Hat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5340,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13963,'Claris_Doll_Hat_Box','Glaris Doll Hat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5341,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13964,'Sorin_Doll_Hat_Box','Sorin Doll Hat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5342,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13965,'Tayelin_Doll_Hat_Box','Tailring Doll Hat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5343,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13966,'Binit_Doll_Hat_Box','Vinit Doll Hat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5344,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13967,'Debril_Doll_Hat_Box','W Doll Hat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5345,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13968,'Bubblegum_Lower_Box','Bubble Gum Hat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 5394,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13969,'Lucky_Clip_Box','Lucky Clip Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2742,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13970,'Iron_10_Box','Iron Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 998,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13971,'Steel_10_Box','Steel Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 999,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13972,'Coal_10_Box','Coal Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 1003,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13973,'Poison_Bottle_30_Box','Poison Bottle Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 678,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13974,'TW_Scroll01','Fisherman Scroll','Usable',20,10,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13975,'Picture_Diary_Box','Diary Magic Powder Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 12304,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13976,'Mini_Heart_Box','Mini Heart Magic Powder Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 12305,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13977,'Newcomer_Box','Freshman Magic Powder Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 12306,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13978,'Kid_Box','Kid Magic Powder Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 12307,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13979,'Magic_Castle_Box','Magic Magic Powder Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 12308,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13980,'Bulging_Head_Box','JJangu Magic Powder Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 12309,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13981,'Picture_Diary_Box_1m','Diary Magic Powder Box 30 Days','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 12304,2592000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13982,'Mini_Heart_Box_1m','Mini Heart Magic Powder Box 30 Days','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 12305,2592000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13983,'Newcomer_Box_1m','Freshman Magic Powder Box 30 Days','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 12306,2592000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13984,'Kid_Box_1m','Kid Magic Powder Box 30 Days','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 12307,2592000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13985,'Magic_Castle_Box_1m','Magic Magic Powder Box 30 Days','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 12308,2592000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13986,'Bulging_Head_Box_1m','JJangu Magic Powder Box 30 Days','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 12309,2592000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13987,'Ori_Stone_5_Box','Rough Oridecon 5 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 756,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13988,'Ori_Stone_50_Box','Rough Oridecon 50 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 756,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13989,'Acidbomb_10_Box','Acid Bomb 10 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Acidbomb_10_Box); /*getitem 7135,10; getitem 7136,10;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13990,'Job_Manual50_Box','JOB Battle Manual Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14592,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13991,'Tiger_Mask_Box','Tiger Mask Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5098,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13992,'Cat_Hat_Box','Pussy Cat Bell Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5099,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13993,'Alice_Doll_Box','Alice Hat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5137,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13994,'Speed_Up_Potion_Box5','Speed Potion 5 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12016,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13995,'Speed_Up_Potion_Box10','Speed Potion 10 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12016,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13996,'Big_Bun_Box100','Big Bun 100 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14522,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13997,'Big_Bun_Box500','Big Bun 500 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14522,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13998,'Giant_Fly_Wing_Box500','Giant Fly Wing 500 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12212,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13999,'Pill__Box100','Pill 100 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14523,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14000,'Pill__Box500','Pill 500 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14523,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14001,'Basic_Siege_Supply_Box','Recruit Siege Supply Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Basic_Siege_Supply_Box); /*getitem 11503,25; getitem 11504,10;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14002,'Adv_Siege_Supply_Box','Veteran Siege Supply Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Adv_Siege_Supply_Box); /*getitem 11503,50; getitem 11504,20;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14003,'Elite_Siege_Supply_Box','Elite Siege Supply Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Elite_Siege_Supply_Box); /*getitem 11503,100; getitem 11504,50;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14004,'Poison_Bottle_10_Box','Poison Bottle 10 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 678,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14005,'Poison_Bottle_5_Box','Poison Bottle 5 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 678,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14006,'F_Drooping_W_Kitty_Box','Evolved Drooping Cat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5372,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14007,'F_Rabbit_Ear_Hat_Box','Evolved Rabbits Headband Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5378,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14008,'F_L_Orc_Hero_Helm_Box','Evolved Helmet Of Orc Hero Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5375,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14009,'F_Love_Angel_Box','Love Angel Magic Powder Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 12287,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14010,'F_Squirrel_Box','Squillroll Magic Powder Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 12288,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14011,'F_Gogo_Box','Gogo Magic Powder Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 12289,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14012,'F_Love_Angel_Box_1m','Love Angel Magic Powder Box 30 Days','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 13915,2592000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14013,'F_Squirrel_Box_1m','Squillroll Magic Powder Box 30 Days','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 13916,2592000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14014,'F_Gogo_Box_1m','Gogo Magic Powder Box 30 Days','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 13917,2592000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14015,'F_Wasteland_Outlaw_Box','Western Outlaw Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 13107,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14016,'F_Lever_Action_Rifle_Box','Lever Action Rifle Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 13170,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14017,'F_All_In_One_Ring_Box','All In One Ring Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2741,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14018,'F_Spritual_Tunic_Box','Spiritual Tunic Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2384,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14019,'F_Recuperative_Box','Recuvative Armor Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2385,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14020,'F_Shelter_Resist_Box','Shell Of Resistance Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2132,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14021,'F_Sylphid_Manteau_Box','Silf Manteau Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2543,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14022,'F_Refresh_Shoes_Box','Refresh Shoes Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2439,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14023,'F_Toast_Box','Crunch Toast Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 5391,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14024,'F_Robo_Eye_Box','Robo Eye Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5325,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14025,'F_Twin_Ribbon_Box','Maiden\'s Twin Ribbon Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5187,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14026,'F_Diadem_Box','Diadem Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5313,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14027,'F_Fish_Head_Hat_Box','Fish Head Hat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5380,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14028,'F_Santa_Poring_Hat_Box','SantaPoring Cap Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5381,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14029,'F_Bell_Ribbon_Box','Bell Ribbon Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5382,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14030,'F_Mimic_Scroll_Box5','Mimic Summoning 5 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12276,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14031,'F_Disguise_Scroll_Box5','Disguise Summoning 5 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12277,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14032,'F_Alice_Scroll_Box5','Alice Summoning 5 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12278,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14033,'F_Mimic_Scroll_Box10','Mimic Summoning 10 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12276,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14034,'F_Disguise_Scroll_Box10','Disguise Summoning 10 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12277,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14035,'F_Alice_Scroll_Box10','Alice Summoning 10 Box)','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12278,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14036,'F_New_Style_Coupon_Box','New Style Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 7622,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14037,'F_Repair_Scroll_Box','Repair Weapon Scroll Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14521,5; getitem 1002,5; getitem 998,5; getitem 756,5; getitem 999,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14038,'F_Repair_Scroll_Box10','Repair Weapon Scroll 10 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14521,10; getitem 1002,10; getitem 998,10; getitem 756,10; getitem 999,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14039,'F_Hockey_Mask_Box','Hockey Mask Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 5314,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14040,'F_Observer_Box','Observer Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 5315,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14041,'F_WOB_Rune_Box5','Yellow Butterfly Wing 5 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14582,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14042,'F_WOB_Rune_Box10','Yellow Butterfly Wing Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14582,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14043,'F_WOB_Schwaltz_Box5','Green Butterfly Wing 5 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14583,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14044,'F_WOB_Schwaltz_Box10','Green Butterfly Wing Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14583,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14045,'F_WOB_Rachel_Box5','Red Butterfly Wing 5 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14584,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14046,'F_WOB_Rachel_Box10','Red Butterfly Wing Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14584,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14047,'F_WOB_Local_Box5','Blue Butterfly Wing 5 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14585,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14048,'F_WOB_Local_Box10','Blue Butterfly Wing Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14585,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14049,'F_Spark_Candy_Box5','Candy 5 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14586,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14050,'F_Spark_Candy_Box10','Candy 10 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14586,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14051,'F_Dun_Tel_Scroll2_Box5','Dungeon Teleport Scroll II 5 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14581,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14052,'F_Dun_Tel_Scroll2_Box10','Dungeon Teleport Scroll II 10 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14581,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14053,'F_Little_Angel_Doll_Box','Little Angel Doll Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5324,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14054,'F_Triple_Poring_Hat_Box','Poring 3 Hats Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5255,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14055,'F_Nagan_Box','Refined Nagan Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 13407,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14056,'F_Skewer_Box','Refined Brocca Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 1424,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14057,'F_Survival_Rod_Box','Refined Survivor\'s Rod Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 1628,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14058,'F_Quadrille_Box','Refined Quadrille Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 1537,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14059,'F_Great_Axe_Box','Refined Great Axe Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 1378,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14060,'F_Bloody_Roar_Box','Refined Bloody Roar Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 1273,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14061,'F_Hardback_Box','Refined Hardcover Book Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 1567,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14062,'F_Fire_Brand_Box','Refined Fireblend Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 13408,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14063,'F_Immaterial_Sword_Box','Refined Immaterial Sword Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 13409,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14064,'F_Unholy_Touch_Box','Refined Unholy Touch Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 1274,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14065,'F_Clack_Of_Servival_Box','Refined Survivor\'s Manteau Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2535,1209600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14066,'F_Masquerade_Box','Refined Masquerade Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 5326,1209600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14067,'F_Orc_Hero_Helm_Box','Refined Helmet of Orc Hero Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 5327,1209600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14068,'F_Ear_Of_Devil_Wing_Box','Refined Wing of Diablo Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 5328,1209600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14069,'F_Dark_Blindfold_Box','Refined Dark Blinder Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 5329,1209600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14070,'F_K_Drooping_Kitty_Box','Refined Drooping Cat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 5330,1209600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14071,'F_Corsair_Box','Refined Corsair Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 5331,1209600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14072,'F_Bloody_Iron_Ball_Box','Refined Bloodied Shackle Ball Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2710,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14073,'F_Spiritual_Ring_Box','Refined Spiritual Ring Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2711,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14074,'F_G_O_I_Box5','Wine Glass of Illusion 5 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14538,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14075,'F_G_O_I_Box10','Glass Of Illusion 10 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14538,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14076,'F_Shadow_Armor_S_Box5','Scroll of Shadow Armor 5 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14539,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14077,'F_Shadow_Armor_S_Box10','Scroll of Shadow Armor 10 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14539,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14078,'F_Shadow_Armor_S_Box30','Scroll of Shadow Armor 30 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14539,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14079,'F_Holy_Armor_S_Box5','Scroll of Holy Armor 5 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14540,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14080,'F_Holy_Armor_S_Box10','Scroll of Holy Armor 10 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14540,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14081,'F_Holy_Armor_S_Box30','Scroll of Holy Armor 30 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14540,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14082,'FS_Def_Potion_Box10','Small Defense Potion 10 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14541,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14083,'FS_Def_Potion_Box30','Small Physical Defense Potion 30 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14541,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14084,'FS_Def_Potion_Box50','Small Physical Defense Potion 50 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14541,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14085,'FB_Def_Potion_Box10','Big Defense Potion 10 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14542,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14086,'FB_Def_Potion_Box30','Large Physical Defense Potion 30 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14542,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14087,'FB_Def_Potion_Box50','Large Physical Defense Potion 50 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14542,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14088,'FS_Mdef_Potion_Box10','Small Magic Defense Potion 10 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14543,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14089,'FS_Mdef_Potion_Box30','Small Magical Defense Potion 30 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14543,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14090,'FS_Mdef_Potion_Box50','Small Magical Defense Potion 50 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14543,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14091,'FB_Mdef_Potion_Box10','Big Magic Defense Potion 10 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14544,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14092,'FB_Mdef_Potion_Box30','Large Magical Defense Potion 30 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14544,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14093,'FB_Mdef_Potion_Box50','Large Magical Defense Potion 50 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14544,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14094,'F_Flying_Angel_Box','Flying Angel Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5210,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14095,'F_Cat_Hat_Box','Neko Mimi Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5099,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14096,'F_M_F_H_Box','Moonlight Flower Hat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5214,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14097,'F_Chick_Hat_Box','Baby Chick Hat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5283,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14098,'F_Pecopeco_Hairband_Box','Peco Peco Hairband Box','Usable',20,10,true,100,true,true,true,true,true,true,true,'rentitem 5286,1209600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14099,'F_Red_Glasses_Box','Red Glasses Box','Usable',20,10,true,100,true,true,true,true,true,true,true,'rentitem 5288,1209600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14100,'F_Whisper_Mask_Box','Whisper Mask Box','Usable',20,10,true,100,true,true,true,true,true,true,true,'rentitem 5294,1209600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14101,'F_Ramen_Hat_Box','Ramen Hat Box','Usable',20,10,true,100,true,true,true,true,true,true,true,'rentitem 5293,1209600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14102,'F_Dun_Tele_Scroll1_Box','Dungeon Teleport Scroll 5 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14527,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14103,'F_Max_Weight_Up_Box','Gym Membership Card Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 7776,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14104,'F_S_Life_Potion_Box','Small Life Potion 10 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14534,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14105,'F_S_Life_Potion_Box30','Small Life Potion 30 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14534,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14106,'F_S_Life_Potion_Box50','Small Life Potion 50 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14534,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14107,'F_M_Life_Potion_Box','Medium Life Potion 10 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14535,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14108,'F_M_Life_Potion_Box30','Large Life Potion 30 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14535,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14109,'F_M_Life_Potion_Box50','Large Life Potion 50 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14535,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14110,'F_Abrasive_Box5','Abrasive 5 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14536,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14111,'F_Abrasive_Box10','Abrasive 10 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14536,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14112,'F_Regeneration_Box5','Regeneration Potion 5 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14537,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14113,'F_Regeneration_Box10','Regeneration Potion 10 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14537,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14114,'F_Dun_Tele_Scroll_Box10','Dungeon Teleport Scroll 10 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14527,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14115,'F_Infiltrator_Box','Refined Infiltrator Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 1267,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14116,'F_Muramasa_Box','Refined Muramasa Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 1173,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14117,'F_Excalibur_Box','Refined Excalibur Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 13401,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14118,'F_Combat_Knife_Box','Combat Knife Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 13021,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14119,'F_Counter_Dagger_Box','Counter Dagger Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 13022,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14120,'F_Kaiser_Knuckle_Box','Refined Kaiser Knuckle Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 1817,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14121,'F_Mighty_Staff_Box','Refined Mighty Staff Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 1623,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14122,'F_Right_Epsilon_Box','Light Epsilon Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 1372,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14123,'F_Balistar_Box','Refined Ballista Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 1728,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14124,'F_Diary_Of_Great_Sage','Sage\'s Diary Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 1563,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14125,'F_Asura_Box','Asura Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 13023,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14126,'F_Apple_Of_Archer_Box','Apple of Archer Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 5265,1209600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14127,'F_Bunny_Band_Box','Bunny Band Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 5266,1209600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14128,'F_Sahkkat_Box','Refined Sakkat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 5267,1209600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14129,'F_Lord_Circlet_Box','Refined Grand Circlet Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 5268,1209600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14130,'F_Elven_Ears_Box','Elven Ears Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2686,1209600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14131,'F_Steel_Flower_Box','Steel Flower Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2687,1209600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14132,'F_Critical_Ring_Box','Critical Ring Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2688,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14133,'F_Earring_Box','Earring Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2689,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14134,'F_Ring_Box','Ring Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2690,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14135,'F_Necklace_Box','Necklace Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2691,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14136,'F_Glove_Box','Glove Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2692,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14137,'F_Brooch_Box','Brooch Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2693,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14138,'F_Rosary_Box','Rosary Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2694,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14139,'F_Safety_Ring_Box','Safety Ring Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2695,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14140,'F_Vesper_Core_Box01','Refined Vesper Core 01 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2696,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14141,'F_Vesper_Core_Box02','Refined Vesper Core 02 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2697,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14142,'F_Vesper_Core_Box03','Refined Vesper Core 03 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2698,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14143,'F_Vesper_Core_Box04','Refined Vesper Core 04 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2699,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14144,'F_Vigorgra_Package1','Vigorgra Box1','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12250,2; getitem 12251,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14145,'F_Vigorgra_Package2','Vigorgra Box2','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12250,2; getitem 12255,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14146,'F_Vigorgra_Package3','Vigorgra Box3','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12252,2; getitem 12253,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14147,'F_Vigorgra_Package4','Vigorgra Box4','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12252,2; getitem 12255,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14148,'F_Vigorgra_Package5','Vigorgra Box5','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12252,2; getitem 12250,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14149,'F_Vigorgra_Package6','Vigorgra Box6','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12250,2; getitem 12251,2; getitem 12208,2; getitem 12215,15; getitem 12217,20; getitem 12211,1; getitem 7621,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14150,'F_Vigorgra_Package7','Vigorgra Box7','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12250,4; getitem 12251,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14151,'F_Vigorgra_Package8','Vigorgra Box8','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12250,4; getitem 12255,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14152,'F_Vigorgra_Package9','Start your Journey Pack','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12252,4; getitem 12253,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14153,'F_Vigorgra_Package10','Siege Mode Pack','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12252,4; getitem 12255,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14154,'F_Vigorgra_Package11','1 Hour Survival Pack','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12252,4; getitem 12250,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14155,'F_Vigorgra_Package12','Weekend Hunting Pack','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12250,4; getitem 12251,4; getitem 12208,4; getitem 12215,30; getitem 12217,40; getitem 12211,2; getitem 7621,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14156,'F_Battle_Manual_Box','Battle Manual Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12208,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14157,'F_Insurance_Package','Insurance Package','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12209,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14158,'F_Bubble_Gum_Box','Bubble Gum Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12210,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14159,'F_Str_Dish_Box','Steamed Tongue Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12202,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14160,'F_Agi_Dish_Box','Steamed Scorpion Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12203,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14161,'F_Int_Dish_Box','Dragon Breath Cocktail Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12204,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14162,'F_Dex_Dish_Box','Hwergelmir\'s Tonic Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12205,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14163,'F_Luk_Dish_Box','Nine Tail Dish Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12206,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14164,'F_Vit_Dish_Box','Stew Of Immortality Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12207,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14165,'F_Kafra_Card_Box','Kafra Card Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12211,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14166,'F_Giant_Fly_Wing_Box','Giant Fly Wing Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12212,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14167,'F_Neuralizer_Box','Neuralizer Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12213,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14168,'F_Convex_Mirror_Box','Convex Mirror Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12214,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14169,'F_Blessing_10_Scroll_Box','Blessing 10 Scroll Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12215,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14170,'F_Inc_Agi_10_Scroll_Box','Increase AGI 10 scroll Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12216,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14171,'F_Aspersio_5_Scroll_Box','Aspersio 5 Scroll Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12217,10; getitem 523,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14172,'F_Assumptio_5_Scroll_Box','Assumptio 5 Scroll Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12218,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14173,'F_Wind_Walk_10_Scroll_Box','Wind Walk 10 Scroll Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12219,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14174,'F_Adrenaline_Scroll_Box','Adrenaline 5 Scroll Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12220,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14175,'F_Megaphone_Box','Megaphone 10 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12221,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14176,'F_Enriched_Elunium_Box','Enriched Elunium Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 7619,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14177,'F_Enriched_Oridecon_Box','Enriched Oridecon Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 7620,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14178,'F_Token_Of_Siegfried_Box','Token of Siegfried Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 7621,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14179,'F_Giant_Fly_Wing_Box50','Giant Fly Wing 50 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12212,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14180,'F_Giant_Fly_Wing_Box100','Giant Fly Wing 100 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12212,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14181,'F_Dex_Dish_Box30','Hwergelmir\'s Tonic 30 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12205,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14182,'F_Dex_Dish_Box50','Hwergelmir\'s Tonic 50 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12205,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14183,'F_Luk_Dish_Box30','Nine Tail Dish 30 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12206,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14184,'F_Luk_Dish_Box50','Nine Tail Dish 50 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12206,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14185,'F_Inc_Agi_10_Box30','Increase Agility Scroll 30 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12216,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14186,'F_Inc_Agi_10_Box50','Increase Agility Scroll 50 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12216,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14187,'F_Vit_Dish_Box30','Stew of Immortality 30 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12207,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14188,'F_Vit_Dish_Box50','Stew of Immortality 50 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12207,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14189,'F_Insurance_Package30','Life Insurrance 30 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12209,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14190,'F_Insurance_Package50','Life Insurrance 50 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12209,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14191,'F_Convex_Mirror_Box5','Convex Mirror 5 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12214,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14192,'F_Convex_Mirror_Box30','Convex Mirror 30 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12214,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14193,'F_Blessing10_Box30','Blessing Scroll 30 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12215,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14194,'F_Blessing10_Box50','Lv10 Blessing Scroll Box 50','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12215,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14195,'F_Adrenaline10_Box30','Adrenaline Rush Scroll 30 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12220,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14196,'F_Adrenaline10_Box50','Adrenaline Rush Scroll 50 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12220,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14197,'F_Assumptio_5_Box30','Assumptio Scroll 30 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12218,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14198,'F_Assumptio_5_Box50','Lv5 Assumptio Scroll Box 50','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12218,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14199,'F_Aspersio_5_Box30','Aspersio Scroll 30 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12217,30; getitem 523,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14200,'F_Aspersio_5_Box50','Aspersio Scroll 50 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12217,50; getitem 523,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14201,'F_Agi_Dish_Box30','Steamed Scorpion 30 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12203,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14202,'F_Agi_Dish_Box50','Steamed Scorpion 50 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12203,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14203,'F_Wind_Walk10_Box30','Wind Walk Scroll 30 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12219,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14204,'F_Wind_Walk10_Box50','Wind Walk Scroll 50 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12219,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14205,'F_Int_Dish_Box30','Dragon Breath Cocktail 30 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12204,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14206,'F_Int_Dish_Box50','Dragon Breath Cocktail 50 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12204,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14207,'F_Battle_Manual_Box1','Field Manual Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12208,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14208,'F_Battle_Manual_Box5','Battle Manual 5 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12208,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14209,'F_Siegfried_Box5','Token of Siegfried 5 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 7621,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14210,'F_Siegfried_Box20','Token of Siegfried 20 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 7621,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14211,'F_Kafra_Card_Box30','Kafra Card 30 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12211,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14212,'F_Kafra_Card_Box50','Kafra Card 50 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12211,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14213,'F_Str_Dish_Box30','Steamed Tongue 30 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12202,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14214,'F_Str_Dish_Box50','Steamed Tongue 50 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12202,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14215,'F_Bubble_Gum_Box1','Bubble Gum Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12210,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14216,'F_Bubble_Gum_Box5','Bubble Gum 5 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12210,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14217,'F_Megaphone_Box1','Megaphone Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12221,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14218,'F_Megaphone_Box5','Megaphone 5 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12221,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14219,'F_Enriched_Elunium_Box5','Enriched Elunium 5 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 7619,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14220,'F_Enriched_Oridecon_Box5','Enriched Oridecon 5 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 7620,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14221,'MP_Scroll_Box','Mystical Amplification Scroll 10 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14593,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14222,'MP_Scroll_Box30','Mystical Amplification Scroll 30 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14593,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14223,'MP_Scroll_Box50','Mystical Amplification Scroll 50 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14593,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14224,'Quagmire_Scroll_Box','Quagmire Scroll 10 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14594,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14225,'Quagmire_Scroll_Box30','Quagmire Scroll 30 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14594,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14226,'Quagmire_Scroll_Box50','Quagmire Scroll 50 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14594,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14227,'Healing_Staff_Box','Healing Staff Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 1638,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14228,'Praxinus_Box','Praccsinos Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'rentitem 2752,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14229,'Cherry_Blossom_Scroll','Cherry Blossom Scroll','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Sakura_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14230,'Note_Headphones_Box','Note Headphones Box','Cash',10,100,true,true,true,true,true,true,true,'getitem 5151,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (14231,'Novice_Breastplate_Boxes','Novice Breastplate Boxes','Cash',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14232,'Yggdrasilberry_Box_','Yggdrasil Berry 10 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 607,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14233,'Dead_Tree_Branch_Box1','Dead Branch 10 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 604,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14234,'Dead_Tree_Branch_Box2','Dead Branch 25 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 604,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14235,'Field_Manual_Box_2','Field Manual 2 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12208,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14236,'Steamed_Tongue_Box_20','Steamed Tongue 20 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12202,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14237,'Steamed_Desert_Scorpions_Box_20','Steamed Desert Scorpions Box(20)','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12203,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14238,'Stew_Of_Immortality_Box_20','Immortal Stew 20 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12207,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14239,'Dragon_Breath_Cocktail_Box_20','Dragon Breath Cocktail 20 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12204,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14240,'Hwergelmir\'s_Tonic_Box_20','Hwergelmir\'s Tonic 20 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12205,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14241,'Nine_Tail_Dish_Box_20','Nine Tail Dish 20 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12206,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14242,'Beholder_Ring_Box','Beholder Ring Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Beholder_Ring_Box); /*rentitem 2753,604800;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14243,'Hallow_Ring_Box','Hallow Ring Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Hallow_Ring_Box); /*rentitem 2754,604800;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14244,'Clamorous_Ring_Box','Clamorous Ring Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Clamorous_Ring_Box); /*rentitem 2755,604800;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14245,'Chemical_Ring_Box','Chemical Ring Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Chemical_Ring_Box); /*rentitem 2756,604800;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14246,'Insecticide_Ring_Box','Insecticide Ring Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Insecticide_Ring_Box); /*rentitem 2757,604800;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14247,'Fisher_Ring_Box','Fisher Ring Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Fisher_Ring_Box); /*rentitem 2758,604800;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14248,'Decussate_Ring_Box','Decussate Ring Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Decussate_Ring_Box); /*rentitem 2759,604800;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14249,'Bloody_Ring_Box','Bloody Ring Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Bloody_Ring_Box); /*rentitem 2760,604800;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14250,'Satanic_Ring_Box','Satanic Ring Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Satanic_Ring_Box); /*rentitem 2761,604800;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14251,'Dragoon_Ring_Box','Dragon Ring Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Dragoon_Ring_Box); /*rentitem 2762,604800;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14252,'Beholder_Ring_Box2','Beholder Ring Box II','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 2753,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14253,'Hallow_Ring_Box2','Hallow Ring Box II','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 2754,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14254,'Clamorous_Ring_Box2','Clamorous Ring Box II','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 2755,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14255,'Chemical_Ring_Box2','Chemical Ring Box II','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 2756,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14256,'Insecticide_Ring_Box2','Insecticide Ring Box II','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 2757,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14257,'Fisher_Ring_Box2','Fisher Ring Box II','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 2758,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14258,'Decussate_Ring_Box2','Decussate Ring Box II','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 2759,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14259,'Bloody_Ring_Box2','Bloody Ring Box II','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 2760,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14260,'Satanic_Ring_Box2','Satanic Ring Box II','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 2761,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14261,'Dragoon_Ring_Box2','Dragon Ring Box II','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 2762,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14262,'Diary_Magic_Powder_Box','Diary Magic Powder Box','Cash',20,100,true,true,true,true,true,true,true,'rentitem 12304,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14263,'Mini_Heart_Magic_Powder_Box','Mini Heart Magic Powder Box','Cash',20,100,true,true,true,true,true,true,true,'rentitem 12305,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14264,'Freshman_Magic_Powder_Box','Freshman Magic Powder Box','Cash',20,100,true,true,true,true,true,true,true,'rentitem 12306,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14265,'Kid_Magic_Powder_Box','Kid Magic Powder Box','Cash',20,100,true,true,true,true,true,true,true,'rentitem 12307,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14266,'Magic_Magic_Powder_Box','Magic Magic Powder Box','Cash',20,100,true,true,true,true,true,true,true,'rentitem 12308,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14267,'JJangu_Magic_Powder_Box','JJangu Magic Powder Box','Cash',20,100,true,true,true,true,true,true,true,'rentitem 12309,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (14268,'Diary_Magic_Powder_Box4','Diary Magic Powder Box','Cash',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (14269,'Mini_Heart_Magic_Powder_Box4','Mini Heart Magic Powder Box','Cash',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (14270,'Freshman_Magic_Powder_Box4','Freshman Magic Powder Box','Cash',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (14271,'Kid_Magic_Powder_Box4','Kid Magic Powder Box','Cash',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (14272,'Magic_Magic_Powder_Box4','Magic Magic Powder Box','Cash',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (14273,'JJangu_Magic_Powder_Box4','JJangu Magic Powder Box','Cash',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14274,'Amplification_10_Scroll_Box2','Mystical Amplification Scroll 10 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14593,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14275,'Amplification_30_Scroll_Box2','Mystical Amplification Scroll 30 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14593,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14276,'Amplification_50_Scroll_Box2','Mystical Amplification Scroll 50 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14593,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14277,'Quagmire_10_Scroll_Box2','Quagmire Scroll 10 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14594,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14278,'Quagmire_30_Scroll_Box2','Quagmire Scroll 30 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14594,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14279,'Quagmire_50_Scroll_Box2','Quagmire Scroll 50 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14594,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14280,'Healing_Staff_Box2','Healing Staff Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 1638,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14281,'Praccsinos_Box','Praccsinos Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 2752,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14282,'Emperium_Box','Emperium Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 714,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14283,'Marriage_Certificate_Box','Written Oath Of Marriage Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 6026,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14284,'Muffler_Box','Muffler Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 2548,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14285,'Balkiriah_Shield_Box','Balkiriah Shield Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 2137,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14286,'Skull_Ring_Box','Skull Ring Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 2763,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14287,'Baricade_Repair_Kit','Barricade Repair Kit','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 1019,30; getitem 999,10; getitem 1011,10; getitem 984,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14288,'Guardian_Stone_Repair_Kit','Guardian Stone Repair Kit','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 984,1; getitem 985,1; getitem 7049,30; getitem 717,5; getitem 716,5; getitem 715,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14289,'Cloth_Dye_Coupon_Box','New Clothing Dye Coupon Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 6046,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14290,'Cloth_Dye_Coupon2_Box','Original Clothing Dye Coupon Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 6047,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14291,'Cloth_Dye_Coupon3_Box','Clothing Dye Coupon Box','Usable',10,100,true,true,true,true,true,true,true,'getitem 6046,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14292,'Cloth_Dye_Coupon4_Box','Clothing Dye Coupon Box II','Usable',10,100,true,true,true,true,true,true,true,'getitem 6047,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14293,'Mercenary_Contract_Box','Mercenary Contract Box','Usable',10,100,true,true,true,true,true,true,true,'getitem 6050,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14294,'Mercenary_Contract_Box5','Mercenary Contract Box 5ea','Usable',10,100,true,true,true,true,true,true,true,'getitem 6050,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14295,'Mercenary_Contract_Box10','Mercenary Contract Box 10ea','Usable',10,100,true,true,true,true,true,true,true,'getitem 6050,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14296,'Angel_Scroll','Angel Scroll','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Angel_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14297,'Devil_Scroll','Devil Scroll','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Devil_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14298,'Surprise_Scroll','Surprise Scroll','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Surprise_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14300,'Mask_Of_Ifrit_Box','Mask Of Ifrit Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5420,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14301,'Ifrit\'s_Ear_Box','Ears Of Ifrit Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5421,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14304,'Scuba_Mask_Box','Scuba Mask Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5397,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14306,'RWC_Special_Scroll','RWC Special Scroll','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_RWC_Special_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14307,'RWC_Limited_Scroll','RWC Limited Scroll','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_RWC_Limited_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (14308,'Ardor_Scroll','Ardor Scroll','Usable',20,10,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14314,'PhreeoniS_Box','Phreeoni Scroll Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14597,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14315,'GhostringS_Box','Ghostring Scroll Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14598,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14316,'July7_Scroll','July7 Scroll','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_July7_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14317,'Bacsojin_Scroll','Bacsojin Scroll','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Bacsojin_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14321,'Holy_Sabre_Box','Holy Sabre Box','Usable',20,10,100,true,true,true,true,true,true,true,'rentitem 13419,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14322,'Book_Of_Prayer_Box','Book of Prayer Box','Usable',20,10,100,true,true,true,true,true,true,true,'rentitem 1578,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14323,'Phenomena_Whip_Box','Phenomena Whip Box','Usable',20,10,100,true,true,true,true,true,true,true,'rentitem 1982,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14324,'Staff_Of_Darkness_Box','Staff of Darkness Box','Usable',20,10,100,true,true,true,true,true,true,true,'rentitem 1642,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14325,'Monk_Knuckle_Box','Monk Knuckle Box','Usable',20,10,100,true,true,true,true,true,true,true,'rentitem 1828,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14326,'Mace_Of_Madness_Box','Mace of Madness Box','Usable',20,10,100,true,true,true,true,true,true,true,'rentitem 1547,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14327,'Spear_Of_Excellent_Box','Spear of Excellent Box','Usable',20,10,100,true,true,true,true,true,true,true,'rentitem 1427,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14328,'Bow_Of_Evil_Box','Bow of Evil Box','Usable',20,10,100,true,true,true,true,true,true,true,'rentitem 1744,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14329,'Katar_Of_Speed_Box','Katar of Speed Box','Usable',20,10,100,true,true,true,true,true,true,true,'rentitem 1283,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14330,'Sharpshooter_Revolver_Box','Sharpshooter Revolver Box','Usable',20,10,100,true,true,true,true,true,true,true,'rentitem 13111,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14343,'Spiked_Scarf_Box','Spiked Scarf Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5462,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14344,'Rainbow_Scarf_Box','Rainbow Scarf Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5463,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14345,'Animal_Scroll','Animal Scroll','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Animal_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14349,'Mental_Potion20_Box','Mental Potion 20 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14600,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14350,'Mental_Potion50_Box','Mental Potion 50 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14600,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14351,'Tyr\'s_Blessing20_Box','Tyr\'s Blessing 20 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14601,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14352,'Tyr\'s_Blessing50_Box','Tyr\'s Blessing 50 Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14601,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14361,'Orc_HeroS_Box','Orc HeroS Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14604,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14362,'Orc_LoadS_Box','Orc LoadS Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 14605,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14363,'Heart_Scroll','Heart Scroll','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Heart_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (14372,'Powder_Snow_Box','Powder Snow Box','Cash',20,10,true,'getitem 12317,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (14375,'Holy_Celestial_Axe_Box','Celestial Axe Box','Cash',20,10,true,'getitem 1383,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (14376,'Angeling_Pot_Box','Angeling Potion Box','Cash',20,10,true,'getitem 12350,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (14377,'Shout_Megaphone_Box','Scream Megaphone Box','Cash',20,10,true,'getitem 12351,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (14379,'Love_Daddy_Box','Love Daddy Box','Cash',20,10,true,'getitem 5489,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (14380,'Anubis_Helm_Box','Anubis Hat Box','Cash',20,10,true,'getitem 5490,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14381,'Piercing_Box_M','Piercing Box M','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 1644,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14382,'Lich_Bone_Box_M','Lich Bone Box M','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 1645,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14383,'Long_Horn_Box_M','Long Horn Box M','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 1428,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14384,'Hunting_Spear_Box_M','Hunting Spear Box M','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 1429,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14385,'Death_Note_Box_M','Death Note Box M','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 1579,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14386,'Destruction_Box_M','Destruction Box M','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 2003,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14387,'Rider_Insignia_Box_M','Rider Insignia Box M','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 2551,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14388,'Mithril_Cape_Box_M','Mithril Cape Box M','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 2552,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14389,'Sniping_Box_M','Sniping Box M','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 2398,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14390,'Orleans_Box_M','Orleans Box M','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 2785,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14391,'Spiritual_Box_M','Spiritual Box M','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 2786,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14392,'Variant_Box_M','Variant Box M','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 2449,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14393,'Almighty_Charm_Box','Universal Amulet Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 7945,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (14407,'Xmas_Scroll','Xmas Scroll','Usable',20,10,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14408,'New_Year_Scroll','New Year Scroll','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_New_Year_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14426,'Fortune_Sword_Box','Neo Fortune Sword Box','Usable',20,10,100,true,true,true,true,true,true,true,'rentitem 13043,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14427,'House_Auger_Box','Neo House Auger','Usable',20,10,100,true,true,true,true,true,true,true,'rentitem 13044,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14428,'Kamaitachi_Box','Neo Kamaitachi Box','Usable',20,10,100,true,true,true,true,true,true,true,'rentitem 13045,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14429,'Berserk_Guitar_Box','Neo Berserk Guitar Box','Usable',20,10,100,true,true,true,true,true,true,true,'rentitem 1928,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14430,'Doom_Slayer_Box','Neo Doom Slayer Box','Usable',20,10,100,true,true,true,true,true,true,true,'rentitem 1386,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14431,'Huuma_Blaze_Shuriken_Box','Neo Huuma Blaze Shuriken Box','Usable',20,10,100,true,true,true,true,true,true,true,'rentitem 13308,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14432,'Odin\'s_Blessing_Box','Neo Odin\'s Blessing Box','Usable',20,10,100,true,true,true,true,true,true,true,'rentitem 15001,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14433,'Ring_Of_Flame_Lord_Box','Neo Ring of Flame Lord Box','Usable',20,10,100,true,true,true,true,true,true,true,'rentitem 2792,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14434,'Ring_Of_Resonance_Box','Neo Ring of Resonance Box','Usable',20,10,100,true,true,true,true,true,true,true,'rentitem 2793,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14435,'Boys_Cap_Box','Neo Boys Cap Box','Usable',20,10,100,true,true,true,true,true,true,true,'rentitem 5492,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14436,'Ulle\'s_Cap_Box','Neo Ulle\'s Cap Box','Usable',20,10,100,true,true,true,true,true,true,true,'rentitem 5493,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14437,'Sphinx_Helm_Box','Neo Sphinx Helm Box','Usable',20,10,100,true,true,true,true,true,true,true,'rentitem 5494,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14438,'Honglyun\'s_Sword_Box','Honglyun\'s Sword Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 13420,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14439,'Power_Of_Thor_Box','Power Of Thor Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5495,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14440,'Dice_Hat_Box','Dice Hat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5496,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14441,'King_Tiger_Doll_Hat_Box','King Tiger Doll Hat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5497,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14442,'Wondering_Wolf_Helm_Box','Wondering Wolf Helm Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5498,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14443,'Pizza_Hat_Box','Pizza Hat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5499,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14444,'Icecream_Hat_Box','Icecream Hat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5500,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14447,'Pirate\'s_Pride_Box','Pirate\'s Pride Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5501,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14448,'Necromencer\'s_Hood_Box','Necromancer\'s Hood Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5502,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14459,'Rabbit_Magic_Hat_Box','Magic Rabbit Hat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5503,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14460,'China_Wedding_Veil_Box','RO 5th Wedding Anniversary Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5504,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14461,'Asara_Fairy_Hat_Box','Ashura Fairy Hat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5505,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_container`,`script`) VALUES (14466,'Valentine_Pledge_Box','Valentine\'s Emblem Box','Usable',true,'getgroupitem(IG_Valentine_Pledge_Box); /*rentitem 5817,525600;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (14469,'Ox_Tail_Scroll','Ox Tail Egg','Usable',20,10,true,'getgroupitem(IG_Ox_Tail_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (14485,'Academy_Badge_Box','Academy Badge Box','Cash',20,10,true,'getitem 2751,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (14486,'Academy_Fresh_Hat_Box','Academy Fresh Hat Box','Cash',20,10,true,'getitem 5406,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (14487,'Academy_Gradu_Cap_Box','Academy Gradu Cap Box','Cash',20,10,true,'getitem 5407,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14488,'Blue_Pajamas_Hat_Box','Blue Pajamas Hat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5506,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14489,'Pink_Pajamas_Hat_Box','Pink Pajamas Hat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5507,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14490,'Shark_Hat_Box','Shark Hat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5508,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14494,'Samambaia_Box','Samambaia Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5511,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (14495,'Aquarius_Diadem_Box','Aquarius Diadem Box','Cash',20,10,true,'getitem 5512,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (14496,'Aquarius_Crown_Box','Aquarius Crown Box','Cash',20,10,true,'getitem 5513,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (14497,'Pisces_Diadem_Box','Pisces Diadem Box','Cash',20,10,true,'getitem 5514,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (14498,'Pisces_Crown_Box','Pisces Crown Box','Cash',20,10,true,'getitem 5515,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14499,'Peacock_Feather_Box','Peacock Feather Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5519,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14500,'Insurance60','Life Insurrance Certificate','Usable',20,10,100,true,true,true,true,true,true,true,'sc_start SC_LIFEINSURANCE,3600000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14505,'Dungeon_1_hour_Ticket','Dungeon 1 Hour Ticket','Usable',20,100,true,true,true,true,true,true,true,true,'warp "1@sthb",0,0; /*No map+coord info*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14506,'Dungeon_Ticket','Dungeon Ticket','Usable',20,100,true,true,true,true,true,true,true,true,'warp "1@sthc",0,0; /*No map+coord info*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14508,'Zeny_Scroll','Zeny Pet Egg Scroll','Usable',10,100,true,true,true,true,true,true,true,'Zeny += rand(1000,77777);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14509,'Light_Center_Pot','Light Concentration Potion','Usable',800,20,100,true,true,true,true,true,true,true,'sc_start SC_ASPDPOTION0,1800000,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_alchemist`,`job_archer`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_gunslinger`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_monk`,`job_ninja`,`job_novice`,`job_rebellion`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_summoner`,`job_supernovice`,`job_swordman`,`job_taekwon`,`job_thief`,`job_wizard`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14510,'Light_Awakening_Pot','Light Awakening Potion','Usable',1500,20,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,40,100,true,true,true,true,true,true,true,'sc_start SC_ASPDPOTION1,1800000,6;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_gunslinger`,`job_knight`,`job_mage`,`job_merchant`,`job_rebellion`,`job_rogue`,`job_soullinker`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`job_wizard`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14511,'Light_Berserk_Pot','Light Berserk Potion','Usable',3000,20,true,true,true,true,true,true,true,true,true,true,true,true,true,true,85,100,true,true,true,true,true,true,true,'sc_start SC_ASPDPOTION2,1800000,9;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14512,'Meteor_10_Scroll','Meteor Storm Scroll','Delayconsume',10,100,true,true,true,true,true,true,true,'itemskill "WZ_METEOR",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14513,'Storm_10_Scroll','Storm Gust Scroll','Delayconsume',10,100,true,true,true,true,true,true,true,'itemskill "WZ_STORMGUST",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14514,'Vermilion_10_Scroll','Lord of Vermilion Scroll','Delayconsume',10,100,true,true,true,true,true,true,true,'itemskill "WZ_VERMILION",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14515,'Lex_Aeterna_Scroll','Lex Aeterna Scroll','Delayconsume',10,100,true,true,true,true,true,true,true,'itemskill "PR_LEXAETERNA",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14516,'Magnificat_5_Scroll','Magnificat Scroll','Delayconsume',10,100,true,true,true,true,true,true,true,'itemskill "PR_MAGNIFICAT",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14517,'CP_Helm_Scroll','Chemical Protection Helm Scroll','Usable',10,100,true,true,true,true,true,true,true,'unitskilluseid getcharid(3),"AM_CP_HELM",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14518,'CP_Shield_Scroll','Chemical Protection Shield Scrol','Usable',10,100,true,true,true,true,true,true,true,'unitskilluseid getcharid(3),"AM_CP_SHIELD",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14519,'CP_Armor_Scroll','Chemical Protection Armor Scroll','Usable',10,100,true,true,true,true,true,true,true,'unitskilluseid getcharid(3),"AM_CP_ARMOR",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14520,'CP_Weapon_Scroll','Chemical Protection Weapon Scroll','Usable',10,100,true,true,true,true,true,true,true,'unitskilluseid getcharid(3),"AM_CP_WEAPON",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14521,'Repair_Scroll','Repair Weapon Scroll','Usable',10,100,true,100,true,true,true,true,true,true,true,'unitskilluseid getcharid(3),"BS_REPAIRWEAPON",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14522,'Big_Bun','Big Bun','Healing',10,100,true,true,true,true,true,true,true,'percentheal 100,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14523,'Pill_','Pill','Healing',10,100,true,true,true,true,true,true,true,'percentheal 0,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14524,'Superb_Fish_Slice','Superb Fish Slice','Healing',10,100,true,true,true,true,true,true,true,'percentheal 100,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14525,'Chewy_Ricecake','Chewy Ricecake','Usable',10,100,true,true,true,true,true,true,true,'sc_start SC_ATKPOTION,1800000,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14526,'Oriental_Pastry','Oriental Pastry','Usable',10,100,true,true,true,true,true,true,true,'sc_start SC_MATKPOTION,1800000,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14527,'Dun_Tele_Scroll1','Dungeon Teleport Scroll','Usable',10,100,true,true,true,true,true,true,true,'callfunc "F_CashDungeon",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14528,'PVP_Tele_Scroll','PVP Teleport Scroll','Usable',10,100,true,true,true,true,true,true,true,'warp "pvp_n_room",52,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14529,'Greed_Scroll','Greed Scroll','Delayconsume',10,100,true,100,true,true,true,true,true,true,true,true,'itemskill "BS_GREED",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14530,'Flee_30_Scroll','Evasion Scroll','Usable',10,100,true,true,true,true,true,true,true,'sc_start SC_FLEEFOOD,1800000,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14531,'Accuracy_30_Scroll','Concentration Scroll','Usable',10,100,true,true,true,true,true,true,true,'sc_start SC_HITFOOD,1800000,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14532,'Battle_Manual25','Field Manual 25%','Usable',2,10,100,true,100,true,true,true,true,true,true,true,'sc_start SC_EXPBOOST,1800000,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14533,'Battle_Manual100','Field Manual 100%','Usable',2,10,100,true,true,true,true,true,true,true,'sc_start SC_EXPBOOST,1800000,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14534,'Small_Life_Potion','Small Life Potion','Usable',10,100,true,true,true,true,true,true,true,'specialeffect2 EF_HEAL3; sc_start4 SC_S_LIFEPOTION,600000,-5,5,0,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14535,'Med_Life_Potion','Medium Life Potion','Usable',10,100,true,true,true,true,true,true,true,'specialeffect2 EF_HEAL3; sc_start4 SC_L_LIFEPOTION,600000,-7,4,0,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14536,'Abrasive','Abrasive','Usable',10,100,true,true,true,true,true,true,true,'specialeffect2 EF_MAGICALATTHIT; sc_start SC_INCCRI,300000,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14537,'Regeneration_Potion','Regeneration Potion','Usable',10,100,true,true,true,true,true,true,true,'specialeffect2 EF_LIGHTSPHERE; sc_start SC_INCHEALRATE,1800000,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`delay_duration`,`delay_status`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14538,'Glass_Of_Illusion','Glass of Illusion','Usable',10,300000,'Reuse_Limit_A',100,true,true,true,true,true,true,true,'specialeffect2 EF_STEAL; sc_start SC_INCFLEE2,60000,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14539,'Shadow_Armor_S','Shadow Armor Scroll','Usable',10,100,true,true,true,true,true,true,true,'specialeffect2 EF_CLOAKING; sc_start4 SC_ELEMENTALCHANGE,1800000,1,Ele_Dark,1,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14540,'Holy_Armor_S','Holy Armor Scroll','Usable',10,100,true,true,true,true,true,true,true,'specialeffect2 EF_BENEDICTIO; sc_start4 SC_ELEMENTALCHANGE,1800000,1,Ele_Holy,1,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14541,'S_Def_Potion','Small Defense Potion','Usable',10,100,true,true,true,true,true,true,true,'specialeffect2 EF_GUARD; sc_start SC_DEF_RATE,60000,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14542,'B_Def_Potion','Big Defense Potion','Usable',10,100,true,true,true,true,true,true,true,'specialeffect2 EF_GUARD; sc_start SC_DEF_RATE,180000,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14543,'S_Mdef_Potion','Small Magic Defense Potion','Usable',10,100,true,true,true,true,true,true,true,'specialeffect2 EF_SPELLBREAKER; sc_start SC_MDEF_RATE,60000,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14544,'B_Mdef_Potion','Big Magic Defense Potion','Usable',10,100,true,true,true,true,true,true,true,'specialeffect2 EF_SPELLBREAKER; sc_start SC_MDEF_RATE,180000,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14545,'Battle_Manual_X3','Field Manual 300%','Usable',10,100,true,true,true,true,true,true,true,'sc_start SC_EXPBOOST,1800000,300;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (14546,'Fire_Cracker_Love','I Love You Firecracker','Usable',2,20,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (14547,'Fire_Cracker_Wday','Whiteday Firecracker','Usable',2,20,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (14548,'Fire_Cracker_Vday','Valentine\'s Day Firecracker','Usable',2,20,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (14549,'Fire_Cracker_Bday','Birthday Firecracker','Usable',2,20,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (14550,'Fire_Cracker_Xmas','Xmas Firecracker','Usable',2,20,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14551,'Str_Dish01_','Fried Grasshopper Legs','Healing',2,10,100,true,true,true,true,true,true,true,'sc_start SC_STRFOOD,1200000,1; percentheal 5,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14552,'Str_Dish02_','Seasoned Sticky Webfoot','Healing',2,10,100,true,true,true,true,true,true,true,'sc_start SC_STRFOOD,1200000,2; percentheal 5,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14553,'Str_Dish03_','Bomber Steak','Healing',2,10,100,true,true,true,true,true,true,true,'sc_start SC_STRFOOD,1200000,3; percentheal 5,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14554,'Int_Dish01_','Grape Juice Herbal Tea','Healing',2,10,100,true,true,true,true,true,true,true,'sc_start SC_INTFOOD,1200000,1; percentheal 0,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14555,'Int_Dish02_','Autumn Red Tea','Healing',2,10,100,true,true,true,true,true,true,true,'sc_start SC_INTFOOD,1200000,2; percentheal 0,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14556,'Int_Dish03_','Honey Herbal Tea','Healing',2,10,100,true,true,true,true,true,true,true,'sc_start SC_INTFOOD,1200000,3; percentheal 0,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14557,'Vit_Dish01_','Steamed Crab Nippers','Healing',2,10,100,true,true,true,true,true,true,true,'sc_start SC_VITFOOD,1200000,1; percentheal 5,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14558,'Vit_Dish02_','Assorted Seafood','Healing',2,10,100,true,true,true,true,true,true,true,'sc_start SC_VITFOOD,1200000,2; percentheal 5,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14559,'Vit_Dish03_','Clam Soup','Healing',2,10,100,true,true,true,true,true,true,true,'sc_start SC_VITFOOD,1200000,3; percentheal 5,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14560,'Agi_Dish01_','Frog Egg Squid Ink Soup','Healing',2,10,100,true,true,true,true,true,true,true,'sc_start SC_AGIFOOD,1200000,1; percentheal 3,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14561,'Agi_Dish02_','Smooth Noodle','Healing',2,10,100,true,true,true,true,true,true,true,'sc_start SC_AGIFOOD,1200000,2; percentheal 3,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14562,'Agi_Dish03_','Tentacle Cheese Gratin','Healing',2,10,100,true,true,true,true,true,true,true,'sc_start SC_AGIFOOD,1200000,3; percentheal 3,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14563,'Dex_Dish01_','Honey Grape Juice','Healing',2,10,100,true,true,true,true,true,true,true,'sc_start SC_DEXFOOD,1200000,1; percentheal 2,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14564,'Dex_Dish02_','Chocolate Mousse Cake','Healing',2,10,100,true,true,true,true,true,true,true,'sc_start SC_DEXFOOD,1200000,2; percentheal 2,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14565,'Dex_Dish03_','Fruit Mix','Healing',2,10,100,true,true,true,true,true,true,true,'sc_start SC_DEXFOOD,1200000,3; percentheal 2,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14566,'Luk_Dish01_','Fried Monkey Tails','Healing',2,10,100,true,true,true,true,true,true,true,'sc_start SC_LUKFOOD,1200000,1; percentheal 3,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14567,'Luk_Dish02_','Mixed Juice','Healing',2,10,100,true,true,true,true,true,true,true,'sc_start SC_LUKFOOD,1200000,2; percentheal 3,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14568,'Luk_Dish03_','Fried Sweet Potato','Healing',2,10,100,true,true,true,true,true,true,true,'sc_start SC_LUKFOOD,1200000,3; percentheal 4,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14569,'Knife_Goblin_Ring','Knife Goblin Ring','Usable',10,100,true,true,true,true,true,true,true,'pet 1122;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14570,'Flail_Goblin_Ring','Flail Goblin Ring','Usable',10,100,true,true,true,true,true,true,true,'pet 1123;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14571,'Hammer_Goblin_Ring','Hammer Goblin Ring','Usable',10,100,true,true,true,true,true,true,true,'pet 1125;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14572,'Holy_Marble','Holy Marble','Usable',10,100,true,true,true,true,true,true,true,'pet 1385;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14573,'Red_Burning_Stone','Red Burning Stone','Usable',10,100,true,true,true,true,true,true,true,'pet 1382;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`script`) VALUES (14574,'Skull_Of_Vagabond','Vagabond\'s Skull','Usable',10,100,true,'pet 1208;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14575,'Str_Dish05_','Lutie Lady\'s Pancake','Healing',2,10,100,true,true,true,true,true,true,true,'sc_start SC_STRFOOD,1200000,5; percentheal 10,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14576,'Int_Dish05_','Mastela Fruit Wine','Healing',2,10,100,true,true,true,true,true,true,true,'sc_start SC_INTFOOD,1200000,5; percentheal 0,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14577,'Vit_Dish05_','Spicy Fried Bao','Healing',2,10,100,true,true,true,true,true,true,true,'sc_start SC_VITFOOD,1200000,5; percentheal 10,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14578,'Agi_Dish05_','Steamed Bat Wing in Pumpkin','Healing',2,10,100,true,true,true,true,true,true,true,'sc_start SC_AGIFOOD,1200000,5; percentheal 6,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14579,'Dex_Dish05_','Green Salad','Healing',2,10,100,true,true,true,true,true,true,true,'sc_start SC_DEXFOOD,1200000,5; percentheal 5,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14580,'Luk_Dish05_','Fried Scorpion Tails','Healing',2,10,100,true,true,true,true,true,true,true,'sc_start SC_LUKFOOD,1200000,5; percentheal 5,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14581,'Dun_Tele_Scroll2','Dungeon Teleport Scroll II','Usable',10,100,true,true,true,true,true,true,true,'callfunc "F_CashDungeon",2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14582,'WOB_Rune','Yellow Butterfly Wing','Usable',10,100,true,true,true,true,true,true,true,'callfunc "F_CashCity",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14583,'WOB_Schwaltz','Green Butterfly Wing','Usable',10,100,true,true,true,true,true,true,true,'callfunc "F_CashCity",2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14584,'WOB_Rachel','Red Butterfly Wing','Usable',10,100,true,true,true,true,true,true,true,'callfunc "F_CashCity",3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14585,'WOB_Local','Blue Butterfly Wing','Usable',10,100,true,true,true,true,true,true,true,'callfunc "F_CashCity",4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`delay_duration`,`delay_status`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14586,'Spark_Candy','Jumping Candy','Usable',10,180000,'Reuse_Limit_B',100,true,true,true,true,true,true,true,'specialeffect2 EF_HASTEUP; bonus_script "{ bonus2 bHPLossRate,100,10000; bonus bBaseAtk,20; bonus bAspdRate,25; bonus bNoWalkDelay; }",60,0,0,EFST_STEAMPACK;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14587,'Repair_Scroll_','Equipment Repair Spell Book','Delayconsume',10,100,true,100,true,true,true,true,true,true,true,'itemskill "BS_REPAIRWEAPON",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14588,'Pty_Blessing_Scroll','Party Blessing 10 Scroll','Delayconsume',10,10,100,true,true,true,true,true,true,true,'itemskill "CASH_BLESSING",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14589,'Pty_Inc_Agi_Scroll','Party Increase Agi 10 Scroll','Delayconsume',10,10,100,true,true,true,true,true,true,true,'itemskill "CASH_INCAGI",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14590,'Pty_Assumptio_Scroll','Party Assumptio 5 Scroll','Delayconsume',10,10,100,true,true,true,true,true,true,true,'itemskill "CASH_ASSUMPTIO",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14591,'Siege_Teleport_Scroll','WoE Teleport Scroll','Usable',10,100,true,100,true,true,true,true,true,true,true,'callfunc "F_CashSiegeTele";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14592,'Job_Manual50','JOB Battle Manual','Usable',10,100,true,100,true,true,true,true,true,true,true,'sc_start SC_JEXPBOOST,1800000,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14593,'Magic_Power_Scroll','Mystical Amplification Scroll','Delayconsume',10,100,true,100,true,true,true,true,true,true,true,'itemskill "HW_MAGICPOWER",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14594,'Quagmire_Scroll','Quagmire Scroll','Delayconsume',10,100,true,100,true,true,true,true,true,true,true,'itemskill "WZ_QUAGMIRE",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14595,'Unsealed_Magic_Spell','Unsealed Magic Spell','Usable',100,true,true,true,true,true,true,true,true,'warp "yuno_fild09",255,127;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`script`) VALUES (14596,'Pierre_Treasurebox','Pierre\'s Treasure Box','Usable',100,true,'getrandgroupitem(IG_Pierre_Treasurebox,1); getrandgroupitem(IG_Pierre_Treasurebox,1); getrandgroupitem(IG_Pierre_Treasurebox,1); getrandgroupitem(IG_Pierre_Treasurebox,1); getrandgroupitem(IG_Pierre_Treasurebox,1); getrandgroupitem(IG_Pierre_Treasurebox,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14597,'PhreeoniS','Phreeoni Scroll','Usable',10,100,true,true,true,true,true,true,true,'sc_start2 SC_ITEMSCRIPT,180000,4121,EFST_FOOD_BASICHIT;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14598,'GhostringS','Ghostring Scroll','Usable',10,100,true,true,true,true,true,true,true,'sc_start2 SC_ITEMSCRIPT,60000,4047,EFST_ARMOR_PROPERTY;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14599,'Greed_Scroll_C','Greed Scroll','Usable',10,100,true,100,true,true,true,true,true,true,true,'itemskill "BS_GREED",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14600,'Mental_Potion','Mental Potion','Usable',10,100,true,true,true,true,true,true,true,'specialeffect2 EF_SPELLBREAKER; bonus_script "{ bonus bUseSPrate,-10; bonus bMaxSPrate,10; }",1800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14601,'Tyr\'s_Blessing','Tyr\'s Blessing','Usable',10,100,true,true,true,true,true,true,true,'sc_start SC_FLEEFOOD,300000,30; sc_start SC_HITFOOD,300000,30; sc_start SC_ATKPOTION,300000,20; sc_start SC_MATKPOTION,300000,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14602,'TaogunkaS','Tao Gunka Scroll','Usable',10,100,true,true,true,true,true,true,true,'specialeffect2 EF_LIGHTSPHERE; bonus_script "{ bonus bMaxHPrate,100; bonus bDefRate,-50; bonus bMdefRate,-50; }",180,0,0,EFST_MVPCARD_TAOGUNKA;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14603,'MistressS','Mistress Scroll','Usable',10,100,true,true,true,true,true,true,true,'specialeffect2 EF_SPELLBREAKER; bonus_script "{ bonus bNoGemStone; bonus bUseSPrate,25; }",180,0,0,EFST_MVPCARD_MISTRESS;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14604,'Orc_HeroS','Orc Hero Scroll','Usable',10,100,true,true,true,true,true,true,true,'specialeffect2 EF_LIGHTSPHERE; bonus_script "{ bonus2 bResEff,Eff_Stun,10000; }",180,0,0,EFST_MVPCARD_ORCHERO;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14605,'Orc_LoadS','Orc Lord Scroll','Usable',10,100,true,true,true,true,true,true,true,'specialeffect2 EF_LIGHTSPHERE; bonus_script "{ bonus bShortWeaponDamageReturn,30; }",180,0,0,EFST_MVPCARD_ORCLORD;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (14606,'Job_Manual25','JOB Battle Manual','Usable',10,100,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14607,'Luxurious_Dinner_W','Luxurious Western Food','Usable',10000,600,'sc_start SC_INCALLSTATUS,3600000,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14608,'Luxurious_Dinner_E','Manchu-Han Imperial Feast','Usable',20000,1200,'sc_start SC_INCALLSTATUS,3600000,6;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14609,'Spoiled_Cuisine','Spoiled Cuisine','Usable',5000,300,'percentheal 10,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14611,'M_Def_Potion','M Def Potion','Delayconsume',10,100,true,true,true,true,true,true,true,'specialeffect2 EF_GUARD; sc_start SC_DEF_RATE,120000,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14612,'M_Mdef_Potion','M Mdef Potion','Delayconsume',10,100,true,true,true,true,true,true,true,'specialeffect2 EF_SPELLBREAKER; sc_start SC_MDEF_RATE,120000,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14613,'RWC_Scroll_2012','RWC Scroll 2012','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_RWC_Scroll_2012);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14614,'Ex_Def_Potion','Ex Def Potion','Usable',10,100,true,true,true,true,true,true,true,'specialeffect2 EF_GUARD; sc_start SC_DEF_RATE,1800000,3; sc_start SC_MDEF_RATE,1800000,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14616,'STR_Biscuit_Stick','Bar Cookie Of Strength','Usable',1,10,100,true,true,true,true,true,true,true,'sc_start SC_FOOD_STR_CASH,1800000,15; sc_start SC_ATKPOTION,600000,rand(11,111);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14617,'VIT_Biscuit_Stick','Bar Cookie Of Vitality','Usable',1,10,100,true,true,true,true,true,true,true,'sc_start SC_FOOD_VIT_CASH,1800000,15; bonus_script "{ bonus bHPRecovRate,rand(11,33); }",1800,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14618,'AGI_Biscuit_Stick','Bar Cookie Of Agility','Usable',1,10,100,true,true,true,true,true,true,true,'sc_start SC_FOOD_AGI_CASH,1800000,15; sc_start SC_FLEEFOOD,600000,rand(11,33);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14619,'INT_Biscuit_Stick','Bar Cookie Of Intelligence','Usable',1,10,100,true,true,true,true,true,true,true,'sc_start SC_FOOD_INT_CASH,1800000,15; sc_start SC_MATKPOTION,600000,rand(11,111);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14620,'DEX_Biscuit_Stick','Bar Cookie Of Dexterity','Usable',1,10,100,true,true,true,true,true,true,true,'sc_start SC_FOOD_DEX_CASH,1800000,15; sc_start SC_HITFOOD,600000,rand(11,33);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14621,'LUK_Biscuit_Stick','Bar Cookie Of Lucky','Usable',1,10,100,true,true,true,true,true,true,true,'sc_start SC_FOOD_LUK_CASH,1800000,15; sc_start SC_CRIFOOD,600000,rand(11,33);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14623,'Golden_Treasure_Box_','Golden Treasure Box','Cash',10,10,100,true,true,true,true,true,true,true,'/*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)*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (14624,'Blue_Scroll','Blue Scroll','Usable',20,10,true,'getgroupitem(IG_Blue_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_container`,`script`) VALUES (14626,'Indigo_Scroll','Indigo Scroll','Usable',20,true,'getgroupitem(IG_Indigo_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (14627,'Christmas_Scroll','Christmas Scroll','Usable',10,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (14628,'Costume_Festival_Box','Costume Festival Box','Usable',10,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14629,'Costume_Enchantment_Stone_Box','Costume Enchantment Stone Box','Usable',10,10,'getitem callfunc("F_Rand",6636,6637,6638,6639,6640,6641,6642,6643,6644,6645),1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_container`,`script`) VALUES (14643,'Violet_Scroll','Violet Scroll','Cash',20,true,'getgroupitem(IG_Violet_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14663,'Scroll_Sealed_Dark_Lord','Scroll Sealed Dark Lord','Cash',10,10,100,true,true,true,true,true,true,true,'/*TODO: Confirm the rates*/ getitem callfunc("F_Rand",6228,6232,4488,4169,19739,24032,24033,24031,24030,24028,24029,24028,24027),1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_container`,`script`) VALUES (14664,'Bi_Hwang_Scroll','Bi Hwang Scroll','Cash',20,true,'getgroupitem(IG_Bi_Hwang_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_container`,`script`) VALUES (14665,'Jung_Bi_Scroll','Jung Bi Scroll','Cash',20,true,'getgroupitem(IG_Jung_Bi_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_container`,`script`) VALUES (14666,'Je_Un_Scroll','Je Un Scroll','Cash',20,true,'getgroupitem(IG_Je_Un_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_container`,`script`) VALUES (14667,'Yong_Kwang_Scroll','Yong Kwang Scroll','Cash',20,true,'getgroupitem(IG_Yong_Kwang_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (14672,'Steel_Fighter_Scroll_Lv20','Steel Fighter Scroll (Lv20)','Healing',20,10,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (14673,'Steel_Fighter_Scroll_Lv25','Steel Fighter Scroll (Lv25)','Healing',20,10,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14674,'Cup_Of_Boza','Cup Of Boza','Usable',20,10,'bonus_script "{ bonus bVit,10; bonus2 bSubEle,Ele_Fire,5; }",120; /*EFST_CUP_OF_BOZA 120000*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (14675,'Shadow_Box_II','Shadow Box II','Cash',10,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (14679,'Article_Sealed_Storm_Scroll','Article Sealed Storm Scroll','Cash',10,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (14681,'Costume_Enchantment_Stone_Box_II','Costume Enchantment Stone Box II','Cash',10,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (14682,'Sealed_Beelzebub_Scroll','Sealed Beelzebub Scroll','Cash',10,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (14689,'Sealed_Kiel-D-01_Scroll','Sealed Kiel-D-01 Scroll','Cash',10,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (14695,'Costume_Enchant_Stone_Box_3','Costume Enchant Stone Box III','Cash',10,'getitem rand(6790,6792),1; getitem 4936,1; getitem 4937,1; getitem 4938,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14696,'Sealed_Gloom_Under_Night_Gachapon','Sealed Gloom Under Night Gachapon','Cash',10,100,true,true,true,true,true,true,true,'/* 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); */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`flag_container`,`script`) VALUES (14699,'Garuda_Scroll','Memorial Garuda Lucky Egg','Cash',10,10,1,true,'getgroupitem(IG_Garuda_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`flag_container`,`script`) VALUES (14701,'TW_13y_Lucky_Egg_06','Midgard Immortal Lucky Egg','Cash',10,10,1,true,'getgroupitem(IG_TW_13y_Lucky_Egg_06);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14704,'Gemstone_Shadow_Box','Gemstone Shadow Box','Cash',10,10,100,true,true,true,true,true,true,true,'getitem 24084,1; getitem 24085,1; getitem 24086,1; getitem 24087,1; getitem 24088,1; getitem 24089,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14705,'Sealed_Fallen_Bishop_Hibram_Scroll','Sealed Fallen Bishop Hibram Scroll','Cash',10,10,100,true,true,true,true,true,true,true,'/*TODO: COnfirm the rates*/ getitem callfunc("F_Rand",6228,6232,14704,19884,14695,6697),1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14713,'Sealed_Ifrit_Scroll','Sealed Ifrit Scroll','Usable',10,100,true,true,true,true,true,true,true,'/* getitem callfunc("F_Rand",Sealed ifrit card, 9 weapons smelting ticket, Armor 9 smelting ticket, costume Noah\'s hats, costumes Enchantment Stone Box); */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14717,'2013_RWC_Scroll','2013 RWC Scroll','Cash',10,10,100,true,true,true,true,true,true,true,'getgroupitem(IG_2013_RWC_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14718,'Scroll_Turtle_General_Sealed','Scroll Turtle General Sealed','Usable',10,10,100,true,true,true,true,true,true,true,'/*TODO: Confirm the rates*/ getitem callfunc("F_Rand",6228,6232,19751,14695),1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14723,'Limited_Neuralizer_I','(Limited)Neuralizer I','Delayconsume',2,100,true,true,true,true,true,true,true,'callfunc "F_CashReset";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14724,'Limited_Neuralizer_II','(Limited)Neuralizer II','Delayconsume',2,100,true,true,true,true,true,true,true,'callfunc "F_CashReset";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14725,'Sealed_Bacsojin_Scroll','Sealed Bacsojin Scroll','Cash',10,10,100,true,true,true,true,true,true,true,'/*TODO: Confirm the rates*/ getitem callfunc("F_Rand",4372,6228,6232,19750,14730,17474),1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14726,'Grid_Shadow_Box','Grid Shadow Box','Cash',10,10,100,true,true,true,true,true,true,true,'getitem 24114,1; getitem 24115,1; getitem 24116,1; getitem 24117,1; getitem 24118,1; getitem 24119,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14727,'Heal_Shadow_Box','Heal Shadow Box','Cash',10,10,100,true,true,true,true,true,true,true,'getitem 24120,1; getitem 24121,1; getitem 24122,1; getitem 24123,1; getitem 24124,1; getitem 24125,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14728,'Hiding_Shadow_Box','Hiding Shadow Box','Cash',10,10,100,true,true,true,true,true,true,true,'getitem 24126,1; getitem 24127,1; getitem 24128,1; getitem 24129,1; getitem 24130,1; getitem 24131,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14729,'Cloaking_Shadow_Box','Cloaking Shadow Box','Cash',10,10,100,true,true,true,true,true,true,true,'getitem 24132,1; getitem 24133,1; getitem 24134,1; getitem 24135,1; getitem 24136,1; getitem 24137,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14730,'Costume_Festival_Box_II','Costume Festival Box II','Cash',10,10,100,true,true,true,true,true,true,true,'/*TODO: No clue yet*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14731,'Teleport_Shadow_Box','Teleport Shadow Box','Cash',10,10,100,true,true,true,true,true,true,true,'getitem 24138,1; getitem 24139,1; getitem 24140,1; getitem 24141,1; getitem 24142,1; getitem 24143,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14732,'Steal_Shadow_Box','Steal Shadow Box','Cash',10,10,100,true,true,true,true,true,true,true,'getitem 24144,1; getitem 24145,1; getitem 24146,1; getitem 24147,1; getitem 24148,1; getitem 24149,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14733,'Sealed_Pharaoh_Scroll','Sealed Pharaoh Scroll','Cash',10,10,100,true,true,true,true,true,true,true,'/*TODO: Confirm the rates*/ getitem callfunc("F_Rand",6228,6232,14726,20034,17474),1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14735,'Costama_Egg22','Shapeshifter Costume','Cash',10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Shapeshifter_Costume);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14739,'Sealed_General_Egnigem_Cenia_Scroll','Sealed General Egnigem Cenia Scroll','Cash',10,10,100,true,true,true,true,true,true,true,'/*TODO: Confirm the rates*/ getitem callfunc("F_Rand",4482,6228,6232,24156,19935),1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (14740,'Sealed_Vesper_Scroll','Sealed Vesper Scroll','Cash',10,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`script`) VALUES (14741,'Imortal_Midgard_Scroll','Midgard Celebration Lucky Egg','Cash',10,true,'getgroupitem(IG_Imortal_Midgard_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`script`) VALUES (14753,'Hero_Midgard_Egg','Hero Midgard Egg','Cash',10,true,'getgroupitem(IG_Hero_Midgard_Egg);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14758,'Safe_To_Smelting_Scroll','Safe To Smelting Scroll','Cash',10,10,100,true,true,true,true,true,true,true,'getitem callfunc("F_Rand",6238,6239,6228,6232,24216,17474,969),1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14765,'Limited_Edition_JOB_Battle_Manual','Limited Edition JOB Battle Manual','Cash',10,10,100,true,true,true,true,true,true,true,'sc_start SC_JEXPBOOST,3600000,35;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14766,'Limited_Power_Booster','Limited Power Booster','Cash',10,10,100,true,true,true,true,true,true,true,'bonus_script "{ bonus bBaseAtk,30; bonus bMatk,30; bonus2 bAddClass,Class_All,1; bonus bMatkRate,1; bonus bHit,30; bonus bFlee,30; bonus bAspd,1; bonus bUseSPrate,-5; bonus bFixedCastrate,-30; }",1800,1,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14805,'July_Lucky_Scroll','Almighty Lucky Egg','Cash',10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_July_Lucky_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16131,'Lady_Tanee_Doll_Box','Lady Tanee Doll Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5526,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16132,'Lunatic_Hat_Box','Lunatic Hat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5527,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16133,'G_Staff_Of_Light_Box','Staff Of Light Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 2006,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16134,'King_Frog_Hat_Box','Frog King Hat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5528,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16135,'Evil\'s_Bone_Hat_Box','Satanic Bone Helm Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5529,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16185,'Raven_Cap_Box','Raven Cap Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5530,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16186,'B_Dragon_Hat_Box','Baby Dragon Hat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5531,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16192,'Quati_Hat_Box','Kwati Hat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5537,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16193,'Tucan_Hat_Box','Tucan Hat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5538,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16194,'Jaguar_Hat_Box','Jaguar Hat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5539,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`) VALUES (16195,'Tw_March_Scroll','Tw March Scroll','Cash',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16226,'Aries_Diadem_Box','Aries Diadem Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5545,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16227,'Aries_Crown_Box','Aries Crown Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5546,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16228,'RJC_Katusa_Box','RJC Katusa Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5547,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16229,'Scarlet_Rose_Box','Scarlet Rose Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5548,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16230,'Taurus_Diadem_Box','Taurus Diadem Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5549,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16231,'Taurus_Crown_Box','Taurus Crown Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5550,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_nocart`,`script`) VALUES (16232,'Reginleif_Box','Reginleif Box','Cash',20,10,true,100,true,true,true,'getitem 5471,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16235,'Octopus_Hat_Box','Octopus Hat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5554,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16236,'Leaf_Cat_Hat_Box','Leaf Cat Hat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5555,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16237,'Fur_Seal_Hat_Box','Fur Seal Hat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5556,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16238,'Wild_Rose_Hat_Box','Wild Rose Hat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5557,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (16239,'Saci_Hat_Box','Saci Hat Box','Cash',20,10,true,'getitem 5558,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (16244,'Dolor_Hat_Box','Dolor Hat Box','Cash',20,10,true,'getitem 5563,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (16245,'Tw_April_Scroll','Tw April Scroll','Usable',20,10,true,'getgroupitem(IG_Tw_April_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16246,'Crown_Of_Deceit_Box','Crown Of Deceit Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5564,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16247,'Dragon_Arhat_Mask_Box','Dragon Arhat Mask Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5565,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16248,'Tiger_Arhat_Mask_Box','Tiger Arhat Mask Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5566,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_uniqueid`) VALUES (16249,'Knight_Gift_Box','Knight Gift Box','Usable',true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`equip_level_min`,`script`) VALUES (16250,'Valkyrie\'s_Gift_Box','Valkyrie\'s Gift Box','Cash',10,1,'getitem 5826,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16251,'Gemini_Diadem_Box','Gemini Diadem Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5569,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16252,'Gemini_Crown_Box','Gemini Crown Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5570,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`) VALUES (16253,'Rabbit_Scroll','Rabbit Scroll','Usable',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (16254,'Energizing_Potion_Box','Energizing Potion Box','Usable',20,10,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (16257,'Buddah_Scroll','Buddah Scroll','Usable',20,10,true,'getgroupitem(IG_Buddah_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16258,'HD_Bradium_Box5','HD Bradium 5 Box','Usable',20,10,true,100,true,true,true,true,true,true,true,'getitem 6226,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16259,'HD_Carnium_Box5','HD Carnium 5 Box','Usable',20,10,true,100,true,true,true,true,true,true,true,'getitem 6225,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16260,'HD_Bradium_Box10','HD Bradium 10 Box','Usable',20,10,true,100,true,true,true,true,true,true,true,'getitem 6226,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16261,'HD_Carnium_Box10','HD Carnium 10 Box','Usable',20,10,true,100,true,true,true,true,true,true,true,'getitem 6225,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16262,'F_HD_Bradium_Box5','HD Bradium 5 Box','Usable',20,10,100,true,true,true,true,true,true,true,'getitem 6226,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16263,'F_HD_Carnium_Box5','HD Carnium 5 Box','Usable',20,10,100,true,true,true,true,true,true,true,'getitem 6225,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16264,'HD_Bradium_10_Box2','HD Bradium 10 Box','Usable',20,10,100,true,true,true,true,true,true,true,'getitem 6226,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16265,'HD_Carnium_10_Box2','HD Carnium 10 Box','Usable',20,10,100,true,true,true,true,true,true,true,'getitem 6225,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`script`) VALUES (16266,'Indonesia_Beret_Box','Indonesia Beret Box','Cash',10,10,1,'getitem 5580,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16267,'HE_Battle_Manual_Box','HE Battle Manual Box','Usable',20,1,'getitem 12411,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16268,'HE_Bubble_Gum_Box','HE Bubble Gum Box','Usable',20,1,'getitem 12412,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (16269,'Cancer_Diadem_Box','Cancer Diadem Box','Cash',20,10,true,'getitem 5581,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (16270,'Cancer_Crown_Box','Cancer Crown Box','Cash',20,10,true,'getitem 5582,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16304,'Evil_Incarnation_Disable','Evil Incarnation','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Evil_Incarnation);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16305,'Upg_Guard_Box','Upg Guard Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 2149,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16306,'F_Upg_Guard_Box','F Upg Guard Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 2149,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16307,'Upg_Buckler_Box','Upg Buckler Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 2150,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16308,'F_Upg_Buckler_Box','F Upg Buckler Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 2150,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16309,'Upg_Shield_Box','Upg Shield Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 2151,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16310,'F_Upg_Shield_Box','F Upg Shield Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 2151,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16311,'Upg_Shoes_Box','Upg Shoes Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 2459,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16312,'F_Upg_Shoes_Box','F Upg Shoes Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 2459,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16313,'Upg_Boots_Box','Upg Boots Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 2460,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16314,'F_Upg_Boots_Box','F Upg Boots Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 2460,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16315,'Upg_Greave_Box','Upg Greave Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 2461,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16316,'F_Upg_Greave_Box','F Upg Greave Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 2461,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16317,'Upg_Hood_Box','Upg Hood Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 2561,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16318,'F_Upg_Hood_Box','F Upg Hood Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 2561,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16319,'Upg_Muffler_Box','Upg Muffler Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 2562,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16320,'F_Upg_Muffler_Box','F Upg Muffler Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 2562,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16321,'Upg_Manteau_Box','Upg Manteau Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 2563,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16322,'F_Upg_Manteau_Box','F Upg Manteau Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 2563,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16323,'Upg_Clip_Box','Upg Clip Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 2828,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16324,'F_Upg_Clip_Box','F Upg Clip Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 2828,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16327,'Upg_Adv_Suit_Box','Upg Adv Suit Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 15015,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16328,'F_Upg_Adv_Suit_Box','F Upg Adv Suit Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 15015,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16329,'Upg_Coat_Box','Upg Coat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 15016,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16330,'F_Upg_Coat_Box','F Upg Coat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 15016,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16331,'Upg_Saint_Robe_Box','Upg Saint Robe Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 15017,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16332,'F_Upg_Saint_Robe_Box','F Upg Saint Robe Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 15017,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16333,'Upg_Tights_Box','Upg Tights Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 15018,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16334,'F_Upg_Tights_Box','F Upg Tights Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 15018,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16335,'Upg_Thief_Cloth_Box','Upg Thief Cloth Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 15019,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16336,'F_Upg_Thief_Cloth_Box','F Upg Thief Cloth Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 15019,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16337,'Upg_Mail_Box','Upg Mail Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 15020,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16338,'F_Upg_Mail_Box','F Upg Mail Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 15020,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16339,'Upg_Formal_Dress_Box','Upg Formal Dress Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 15021,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16340,'F_Upg_Formal_Dress_Box','F Upg Formal Dress Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 15021,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (16341,'Greed_Clip_Box','Greed Clip Box','Cash',20,10,true,'getitem 2829,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (16342,'F_Greed_Clip_Box','F Greed Clip Box','Cash',20,10,true,'getitem 2829,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (16343,'Leo_Crown_Box','Leo Crown Box','Cash',20,10,true,'getitem 5588,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (16344,'Leo_Diadem_Box','Leo Diadem Box','Cash',20,10,true,'getitem 5589,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (16345,'F_Leo_Crown_Box','F Leo Crown Box','Cash',20,10,true,'getitem 5588,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (16346,'F_Leo_Diadem_Box','F Leo Diadem Box','Cash',20,10,true,'getitem 5589,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16360,'Desert_Prince_Box','Desert Prince Box','Cash',10,true,100,true,true,true,true,true,true,true,'getitem 5591,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16361,'FDesert_Prince_Box','FDesert Prince Box','Cash',10,true,100,true,true,true,true,true,true,true,'getitem 5591,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16362,'Sigrun\'s_Wing_Box','Sigrun\'s Wing Box','Cash',10,true,100,true,true,true,true,true,true,true,'getitem 5592,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16363,'FSigrun\'s_Wing_Box','FSigrun\'s Wing Box','Cash',10,true,100,true,true,true,true,true,true,true,'getitem 5592,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16368,'Virgo_Crown_Box','Virgo Crown Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5598,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (16371,'Tw_Aug_Scroll','Tw Aug Scroll','Usable',20,10,true,'getgroupitem(IG_Tw_Aug_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16372,'F_Clover_Box_Mouth','F Clover Box Mouth','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_F_Clover_Box_Mouth); /*rentitem 4Leaf_Clover_In_Mouth,3600;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16374,'Mouth_Bubble_Gum_Box','Mouth Bubble Gum Box','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Mouth_Bubble_Gum_Box); /*rentitem Bubble_Gum_In_Mouth,3600;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16378,'Siege_Tele_Scroll_Box_30','Siege Teleport Scroll 30 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14591,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16379,'Siege_Teleport_Scroll_Silver_10Box','Siege Teleport Scroll Silver 10Box','Cash',10,10,1,100,true,true,true,true,true,true,true,'getitem 12415,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16380,'Siege_Teleport_Scroll_Silver_30Box','Siege Teleport Scroll Silver 30Box','Cash',10,10,1,100,true,true,true,true,true,true,true,'getitem 12415,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16381,'WoE_Teleport_Scroll_100_Box','WoE Teleport Scroll 100 Box','Usable',20,10,100,true,true,true,true,true,true,true,'getitem 12444,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16382,'WoE_Teleport_Scroll_30_Box','WoE Teleport Scroll 30 Box','Usable',20,10,100,true,true,true,true,true,true,true,'getitem 12444,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16385,'F_Clover_Box_Mouth2','F Clover Box Mouth2','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_F_Clover_Box_Mouth2); /*rentitem 4Leaf_Clover_In_Mouth,7200;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16386,'F_Clover_Box_Mouth4','F Clover Box Mouth4','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_F_Clover_Box_Mouth4); /*rentitem 4Leaf_Clover_In_Mouth,14400;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16389,'BGum_Box_In_Mouth2','BGum Box In Mouth2','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_BGum_Box_In_Mouth2); /*rentitem Bubble_Gum_In_Mouth,7200;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16390,'BGum_Box_In_Mouth4','BGum Box In Mouth4','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_BGum_Box_In_Mouth4); /*rentitem Bubble_Gum_In_Mouth,14400;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16393,'HD_Ori_Box5','HD Oridecon 5 Box','Usable',20,10,true,100,true,true,true,true,true,true,true,'getitem 6240,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16394,'HD_Ori_Box10','HD Oridecon 10 Box','Usable',20,10,true,100,true,true,true,true,true,true,true,'getitem 6240,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16395,'HD_Elu_Box5','HD Elunium 5 Box','Usable',20,10,true,100,true,true,true,true,true,true,true,'getitem 6241,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16396,'HD_Elu_Box10','HD Elunium 10 Box','Usable',20,10,true,100,true,true,true,true,true,true,true,'getitem 6241,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16397,'Virgo_Diadem_Box','Virgo Diadem Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5599,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16398,'Virgo_Crown_Box_','Virgo Crown Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 5598,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16399,'Virgo_Diadem_Box_','Virgo Diadem Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 5599,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16405,'Midgard_Coin_Box_','Midgard Coin Box','Cash',20,10,true,100,true,true,true,true,true,true,true,true,'getitem 6242,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16406,'FMidgard_Coin_Box','FMidgard Coin Box','Cash',20,10,true,100,true,true,true,true,true,true,true,true,'getitem 6242,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (16409,'Tw_Sep_Scroll','Tw Sep Scroll','Usable',20,10,true,'getgroupitem(IG_Tw_Sep_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (16410,'Chung_Hairband_Box','Chung Hairband Box','Cash',20,10,true,'getitem 5609,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (16411,'FChung_Hairband_Box','FChung Hairband Box','Cash',20,10,true,'getitem 5609,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (16412,'Ice_Wing_Ear_Box','Ice Wing Ear Box','Cash',20,10,true,'getitem 5610,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (16413,'FIce_Wing_Ear_Box','FIce Wing Ear Box','Cash',20,10,true,'getitem 5610,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (16414,'Turtle_Hat_Box','Turtle Hat Box','Cash',20,10,true,'getitem 5611,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (16415,'FTurtle_Hat_Box','FTurtle Hat Box','Cash',20,10,true,'getitem 5611,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16418,'Giant_Fly_Wing_Box_500','Giant Fly Wing Box 500','Usable',20,1,'getitem 12212,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16419,'Greed_Scroll_Box_30','Greed Scroll Box 30','Usable',20,1,'getitem 14529,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16420,'Adventurer_Pack','Adventurer Pack','Usable',20,1,'getitem 12208,10; getitem 12210,10; getitem 12216,20; getitem 12215,20; getitem 7621,10; getitem 12209,10; getitem 12211,5; getitem 12445,10; getitem 12446,10; getitem 12447,10; getitem 12448,10; getitem 12449,10; getitem 12450,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16421,'Written_Oath_Of_Marriage_Box','Written Oath Of Marriage Box','Usable',20,1,'getitem 6026,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16422,'Magestic_Goat_Box_','Magestic Goat Box','Usable',20,1,'rentitem 5280,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16423,'Episode_13.1_Key_Package','Episode 13.1 Key Package','Usable',20,1,'getitem 7782,1; getitem 12208,2; getitem 14582,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16424,'Executioner_Box_','Executioner Box','Usable',20,1,'rentitem 1174,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16425,'Cutlus_Box','Cutlus Box','Usable',20,1,'rentitem 13402,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16426,'Moonlight_Dagger_Box','Moonlight Dagger Box','Usable',20,1,'rentitem 13026,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16427,'Wrench_Box','Wrench Box','Usable',20,1,'rentitem 1534,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16428,'Solar_Sword_Box_','Solar Sword Box','Usable',20,1,'rentitem 13403,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16429,'Tomahawk_Box_','Tomahawk Box','Usable',20,1,'rentitem 1374,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16430,'Rudra_Bow_Box','Rudra Bow Box','Usable',20,1,'rentitem 1729,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16431,'Pole_Axe_Box_','Pole Axe Box','Usable',20,1,'rentitem 1419,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (16436,'Libra_Crown_Box','Libra Crown Box','Cash',20,10,true,'getitem 5662,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16437,'Libra_Crown_Box_','Libra Crown Box','Cash',20,10,'getitem 5662,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (16438,'Libra_Diadem_Box','Libra Diadem Box','Cash',20,10,true,'getitem 5663,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16439,'Libra_Diadem_Box_','Libra Diadem Box','Cash',20,10,'getitem 5663,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (16440,'Filir_Wing_Box','Filir Wing Box','Cash',20,10,true,'getitem 5664,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (16446,'Tw_October_Scroll','Tw October Scroll','Usable',20,10,true,'getgroupitem(IG_Tw_October_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16447,'Scorpio_Crown_Box','Scorpio Crown Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5676,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16448,'Scorpio_Diadem_Box','Scorpio Diadem Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5677,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16449,'Scorpio_Crown_Box_','Scorpio Crown Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 5676,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16450,'FScorpio_Diadem_Box','FScorpio Diadem Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5677,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (16456,'My_Scroll1','My Scroll1','Usable',20,10,true,'getgroupitem(IG_My_Scroll1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (16457,'Tw_Nov_Scroll','Tw Nov Scroll','Usable',20,10,true,'getgroupitem(IG_Tw_Nov_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (16461,'Red_Wing_Hat_Box','Red Wing Hat Box','Cash',20,10,true,'getitem 5690,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (16462,'FRed_Wing_Hat_Box','FRed Wing Hat Box','Cash',20,10,true,'getitem 5690,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (16466,'My_Scroll2','My Scroll2','Usable',20,10,true,'getgroupitem(IG_My_Scroll2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16481,'Small_Life_Potion_Box_10','Small Life Potion Box (10)','Usable',20,10,100,true,true,true,true,true,true,true,'getitem 12516,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16483,'Abrasive_Box_10','Abrasive Box (10)','Usable',20,10,100,true,true,true,true,true,true,true,'getitem 12514,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (16503,'E_Insurance_Package','E Insurance Package','Cash',20,10,true,'getitem 12209,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16504,'Bubble_Gum_Box_10','Bubble Gum Box(10)','Cash',10,10,100,true,true,true,true,true,true,true,'getitem 12210,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16505,'Steamed_Tongue_Box_10','Steamed Tongue Box (10)','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12501,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16506,'Steamed_Desert_Scorpions_Box_10','Steamed Desert Scorpions Box (10)','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12502,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16507,'Dragon_Breath_Cocktail_Box_10','Dragon Breath Cocktail Box (10)','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12503,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16508,'Hwergelmir\'s_Tonic_Box_10','Hwergelmir\'s Tonic Box (10)','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12504,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16509,'Cooked_Nine_Tail_Box_10','Cooked Nine Tail Box (10)','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12505,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16510,'Immortal_Stew_Box_10','Immortal Stew Box (10)','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12506,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16514,'Blessing_Scroll_Box_10','Blessing Scroll Box (10)','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12522,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16515,'Increase_Agility_Scroll_Box_10','Increase Agility Scroll Box (10)','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12523,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (16542,'Xmas_Bless','Xmas Bless','Usable',20,10,true,'getgroupitem(IG_Xmas_Bless);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16543,'Snowman_Hat_Box','Snowman Hat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5738,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16544,'FSnowman_Hat_Box','FSnowman Hat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5738,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (16548,'Sagittarius_Crown_Box','Sagittarius Crown Box','Cash',20,10,true,'getitem 5739,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (16549,'Sagittarius_Diadem_Box','Sagittarius Diadem Box','Cash',20,10,true,'getitem 5740,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16550,'Sagittarius_Crown_Box_','Sagittarius Crown Box','Cash',20,10,'getitem 5739,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16551,'Sagittarius_Diadem_Box_','Sagittarius Diadem Box','Cash',20,10,'getitem 5740,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16554,'Elven_Sunglasses_Box','Elven Sunglasses Box','Usable',20,1,'getitem 5245,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16555,'Pr_Reset_Stone_Box','Pr Reset Stone Box','Usable',20,10,true,100,true,true,true,true,true,true,true,'/*getgroupitem(IG_Pr_Reset_Stone_Box);*/ getitem 6320,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (16556,'FPremium_Reset_Stone_Box','Reset Stone Box','Usable',20,10,true,'/*getgroupitem(IG_FPr_Reset_Stone_Box);*/ getitem 6320,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_uniqueid`,`script`) VALUES (16557,'CP_Helm_Scroll10','CP Helm Scroll10','Cash',10,true,'getitem 14517,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_uniqueid`,`script`) VALUES (16558,'CP_Shield_Scroll10','CP Shield Scroll10','Cash',10,true,'getitem 14518,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_uniqueid`,`script`) VALUES (16559,'CP_Armor_Scroll10','CP Armor Scroll10','Cash',10,true,'getitem 14519,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_uniqueid`,`script`) VALUES (16560,'CP_Weapon_Scroll10','CP Weapon Scroll10','Cash',10,true,'getitem 14520,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_uniqueid`) VALUES (16561,'CP_Scroll_Package','CP Scroll Package','Usable',10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (16562,'Majestic_Devil_Scroll','Majestic Devil Scroll','Usable',20,10,true,'getgroupitem(IG_Majestic_Devil_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_uniqueid`,`script`) VALUES (16563,'BM100_Box_5','BM100 Box 5','Cash',10,true,'getitem 14533,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (16565,'Capricorn_Crown_Box','Capricorn Crown Box','Cash',20,10,true,'getitem 5744,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16566,'Capricorn_Crown_Box_','Capricorn Crown Box','Cash',20,10,'getitem 5744,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (16567,'Capricorn_Diadem_Box','Capricorn Diadem Box','Cash',20,10,true,'getitem 5745,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (16568,'FCapricorn_Diadem_Box','FCapricorn Diadem Box','Cash',20,10,true,'getitem 5745,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`) VALUES (16569,'Summer_Scroll','Summer Scroll','Usable',20,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`script`) VALUES (16571,'Rice_Ball_Hat_Box','Rice Ball Hat Box','Cash',10,10,1,'getitem 5575,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (16576,'Illusion_Nothing','Illusion Nothing','Usable',20,10,true,'getgroupitem(IG_Illusion_Nothing);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`) VALUES (16577,'Dragon_Captain','Dragon Captain','Usable',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (16582,'Red_Bunny_Band_Box','Red Bunny Band Box','Cash',20,10,true,'getitem 5763,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (16584,'Sloth_Hat_Box','Sloth Hat Box','Cash',20,10,true,'getitem 5761,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (16585,'F_Sloth_Hat_Box','F Sloth Hat Box','Cash',20,10,true,'getitem 5761,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (16586,'Duneyrr_Helm_Box','Duneyrr Helm Box','Cash',20,10,true,'getitem 5762,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (16587,'F_Duneyrr_Helm_Box','F Duneyrr Helm Box','Cash',20,10,true,'getitem 5762,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16588,'Thoughtful_Hat_Box','Thoughtful Hat Box','Usable',20,1,'getitem callfunc("F_Rand",5336,5337,5338,5346,5339,5474),1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16589,'Thoughtful_Hat_Box_','Thoughtful Hat Box','Usable',20,1,'getitem callfunc("F_Rand",5336,5337,5338,5346,5339,5474),1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16590,'Thoughtful_Hat_Box__','Thoughtful Hat Box','Usable',20,1,'getitem callfunc("F_Rand",5336,5337,5338,5346,5339,5474),1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (16598,'Activation_Potion_Box_II','Activation Potion Box II','Cash',10,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16659,'Zodiac_Diadem_Pack','Zodiac Diadem Box','Usable',20,1,'getitem callfunc("F_Rand",5545,5549,5569,5581,5589,5599,5663,5677,5740,5745,5512,5514),1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`) VALUES (16600,'Spring_Flower_Scr_Tw','Spring Flower Scr Tw','Usable',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (16601,'Blue_Arara_Hat_Box','Blue Arara Hat Box','Cash',20,10,true,'getitem 5778,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (16602,'F_Blue_Arara_Hat_Box','F Blue Arara Hat Box','Cash',20,10,true,'getitem 5778,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (16603,'Drooping_Votto_Box','Drooping Votto Box','Cash',10,'/* getitem drooping votto hat,1; */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (16604,'Drooping_Votto_Box_','Drooping Votto Box','Cash',10,'/* getitem drooping votto hat[1],1; */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16606,'Tendrilrion_Hat_Box','Tendrilrion Hat Box','Cash',10,10,'getitem 5780,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (16619,'Yellow_Bunnyband_Box','Yellow Bunnyband Box','Cash',20,10,true,'getitem 5783,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16620,'Yellow_Bunny_Headband_Box','Yellow Bunny Headband Box','Cash',10,10,'getitem 5783,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16622,'Pink_Bunny_Band_Box','Pink Bunny Band Box','Cash',10,10,'getitem 5784,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (16623,'Green_Bunny_Band_Box','Green Bunny Band Box','Cash',10,'getitem 5785,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16625,'Half_Asprika_box7','Half Asprika Box7','Usable',20,10,100,true,true,true,true,true,true,true,'rentitem 2566,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16628,'Brynhild_Box','Half Brynhild Box','Usable',20,47,100,true,true,true,true,true,true,true,'rentitem 15023,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`) VALUES (16631,'Aributa_Scroll','Aributa Scroll','Usable',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16638,'Ribbon_Of_Life_Box','Life Ribbon Box','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Life_Ribbon_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16639,'Ribbon_Of_Life_Box2','Life Ribbon Box2','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Life_Ribbon_Box2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16640,'Ribbon_Of_Life_Box3','Life Ribbon Box3','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Life_Ribbon_Box3);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (16652,'Flame_Light','Flame Light','Usable',20,10,true,'getgroupitem(IG_Flame_Light);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (16653,'BM75_10Box','BM75 10Box','Cash',20,10,true,'getitem 12563,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`) VALUES (16654,'Valiant_Will','Valiant Will','Usable',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16655,'Rapid_Life_Potion_10_Box','Rapid Life Potion 10 Box','Cash',10,10,1,100,true,true,true,true,true,true,true,'getitem 12578,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16658,'Rapid_Water_Box_10','Rapid Water Box(10)','Cash',10,10,100,true,true,true,true,true,true,true,'getitem 12578,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`) VALUES (16664,'Leo_Scroll','Leo Scroll','Usable',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`) VALUES (16665,'Virgo_Scroll','Virgo Scroll','Usable',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16666,'Magic_Candy_Box10','Magic Candy Box10','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Magic_Candy_Box10); /*getitem Magic_Candy,10;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`script`) VALUES (16668,'Kotak_Ketupat_Warna_Warni','Kotak Ketupat Warna Warni','Cash',10,10,1,'rentitem 2869,20160000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16670,'Field_Manual_Box_A','Field Manual Box A','Usable',20,10,'getitem 14532,10; if (!rand(10)) getitem callfunc("F_Rand",603,617),1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (16673,'Libra_Scroll','Libra Scroll','Usable',20,10,true,'getgroupitem(IG_Libra_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (16675,'Splash_Scroll','Splash Scroll','Usable',20,10,true,'getgroupitem(IG_Splash_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16676,'Zodiac_Crown_Pack','Zodiac Crown Box','Usable',20,10,'getitem callfunc("F_Rand",5546,5550,5570,5582,5588,5598,5662,5676,5739,5744,5513,5515),1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16677,'Universal_Catalog_Gold_Box10','Universal Catalog Gold 10 Box','Usable',10,100,true,true,true,true,true,true,true,'getitem 12581,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16678,'Universal_Catalog_Gold_Box50','Universal Catalog Gold 50 Box','Usable',10,100,true,true,true,true,true,true,true,'getitem 12581,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16679,'Universal_Catalog_Gold_Box10_','Universal Catalog Gold 10 Box','Usable',10,100,true,true,true,true,true,true,true,'getitem 12581,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16680,'Universal_Catalog_Gold_Box50_','Universal Catalog Gold 50 Box','Usable',10,100,true,true,true,true,true,true,true,'getitem 12581,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (16681,'BR_Independence_Scroll','BR Independence Scroll','Usable',20,10,true,'getgroupitem(IG_BR_Independence_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16682,'Boarding_Halter_Box','Boarding Halter Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Boarding_Halter_Box); /*rentitem 12622,604800;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16683,'B_Halter_Box_30Days','B Halter Box 30Days','Usable',20,10,true,100,true,true,true,true,true,true,true,'rentitem 12622,2592000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_uniqueid`,`script`) VALUES (16684,'Wing_Of_Fly_Box10','Wing Of Fly Box10','Usable',20,true,'getitem 601,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_uniqueid`,`script`) VALUES (16685,'Wing_Of_Fly_Box50','Wing Of Fly Box50','Usable',20,true,'getitem 601,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_uniqueid`,`script`) VALUES (16686,'Wing_Of_Fly_Box100','Wing Of Fly Box100','Usable',20,true,'getitem 601,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (16687,'RWC2010_SuitcaseA','RWC2010 SuitcaseA','Usable',20,10,true,'getgroupitem(IG_RWC2010_SuitcaseA);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (16688,'RWC2010_SuitcaseB','RWC2010 SuitcaseB','Usable',20,10,true,'getgroupitem(IG_RWC2010_SuitcaseB);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`) VALUES (16691,'Scorpius_Scroll','Scorpius Scroll','Usable',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16692,'Alice_Hat_Box','Alice Hat Box','Usable',20,10,'getitem 5137,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16693,'Crescent_Helm_Box','Crescent Helm Box','Usable',20,10,'getitem 5142,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16694,'Crescent_Helm_Box_','Crescent Helm Box','Usable',20,10,'getitem 5142,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16695,'Dragon_Skull_Box','Dragon Skull Box','Usable',20,10,'getitem 5292,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16696,'Dragon_Skull_Box_','Dragon Skull Box','Usable',20,10,'getitem 5292,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16697,'Drooping_Bunny_Box','Drooping Bunny Box','Usable',20,10,'getitem 5290,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16698,'Drooping_Bunny_Box_','Drooping Bunny Box','Usable',20,10,'getitem 5290,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16699,'Evolved_Blue_Fish_Box','Evolved Blue Fish Box','Usable',20,10,'getitem 5222,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16701,'Evolved_Pair_of_Red_Ribbon_Box','Evolved Pair of Red Ribbon Box','Usable',20,10,'getitem 5221,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16702,'Evolved_Pair_of_Red_Ribbon_Box_','Evolved Pair of Red Ribbon Box','Usable',20,10,'getitem 5221,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16703,'Evolved_Pipe_Box','Evolved Pipe Box','Usable',20,10,'getitem 5220,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16704,'Evolved_Pipe_Box_','Evolved Pipe Box','Usable',20,10,'getitem 5220,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16705,'Hibiscus_Box','Hibiscus Box','Usable',20,10,'getitem 5139,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16706,'Hibiscus_Box_','Hibiscus Box','Usable',20,10,'getitem 5139,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16707,'Jumping_Poring_Box','Jumping Poring Box','Usable',20,10,'getitem 5335,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16708,'Jumping_Poring_Box_','Jumping Poring Box','Usable',20,10,'getitem 5335,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16709,'Kettle_Hat_Box','Kettle Hat Box','Usable',20,10,'getitem 5291,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16710,'Kettle_Hat_Box_','Kettle Hat Box','Usable',20,10,'getitem 5291,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16711,'Magic_Eyes_Box','Magic Eyes Box','Usable',20,10,'getitem 5138,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16712,'Magic_Eyes_Box_','Magic Eyes Box','Usable',20,10,'getitem 5138,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16713,'Mini_Propeller_Box','Mini Propeller Box','Usable',20,10,'getitem 5226,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16714,'Mini_Propeller_Box_','Mini Propeller Box','Usable',20,10,'getitem 5226,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16715,'Puppy_Hat_Box','Puppy Hat Box','Usable',20,10,'getitem 5182,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16716,'Puppy_Hat_Box_','Puppy Hat Box','Usable',20,10,'getitem 5182,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16717,'Sheep_Hat_Box','Sheep Hat Box','Usable',20,10,'getitem 5133,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16718,'Sheep_Hat_Box_','Sheep Hat Box','Usable',20,10,'getitem 5133,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16719,'Tiger_Mask_Box_','Tiger Mask Box','Usable',20,10,'getitem 5098,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16720,'Tiger_Mask_Box__','Tiger Mask Box','Usable',20,10,'getitem 5098,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16721,'Vaccation_Hat_Box','Vacation Hat Box','Usable',20,10,'getitem 5629,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16722,'Vane_Hairpin_Box','Vane Hairpin Box','Usable',20,10,'getitem 5285,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16723,'Vane_Hairpin_Box_','Vane Hairpin Box','Usable',20,10,'getitem 5285,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16724,'Vanilmirth_Hat_Box','Vanilmirth Hat Box','Usable',20,10,'getitem 5289,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16725,'Vanilmirth_Hat_Box_','Vanilmirth Hat Box','Usable',20,10,'getitem 5289,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16726,'Water_Lily_Crown_Box','Water Lily Crown Box','Usable',20,10,'getitem 5284,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16727,'Water_Lily_Crown_Box_','Water Lily Crown Box','Usable',20,10,'getitem 5284,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16728,'Pink_Beanie_Hat_Box','Pink Beanie Hat Box','Usable',20,10,'getitem 5237,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16729,'Pink_Beanie_Hat_Box_','Pink Beanie Hat Box','Usable',20,10,'getitem 5237,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16730,'Green_Ribbon_Box','Green Ribbon Box','Usable',20,10,'getitem 5193,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16731,'Green_Ribbon_Box_','Green Ribbon Box','Usable',20,10,'getitem 5193,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16732,'Gray_Deviruchi_Hat_Box','Gray Deviruchi Hat Box','Usable',20,10,'getitem 5229,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16733,'Gray_Deviruchi_Hat_Box_','Gray Deviruchi Hat Box','Usable',20,10,'getitem 5229,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16734,'Blue_Drooping_Cat_Box','Blue Drooping Cat Box','Usable',20,10,'getitem 5233,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16735,'Blue_Drooping_Cat_Box_','Blue Drooping Cat Box','Usable',20,10,'getitem 5233,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16736,'Fantastic_Wig_Box','Fantastic Wig Box','Usable',20,10,'getitem 5276,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16737,'Fantastic_Wig_Box_','Fantastic Wig Box','Usable',20,10,'getitem 5276,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16738,'Yellow_Mage_Hat_Box','Yellow Mage Hat Box','Usable',20,10,'getitem 5242,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (16739,'Yellow_Mage_Hat_Box_','Yellow Mage Hat Box','Usable',20,10,'getitem 5242,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16740,'Ptotection_Seagod_Box','The Sea God\'s Call 23 Hour Box','Usable',20,10,true,100,true,true,true,true,true,true,true,'rentitem 6436,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16741,'Hairtail_Box1','Cutlass 1 Hour Box','Usable',20,10,true,100,true,true,true,true,true,true,true,'/*getgroupitem(IG_Hairtail_Box1);*/ rentitem 1198,3600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16742,'Hairtail_Box2','Cutlass 7 Day Box','Usable',20,10,true,100,true,true,true,true,true,true,true,'/*getgroupitem(IG_Hairtail_Box2);*/ rentitem 1198,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16743,'Spearfish_Box1','Marlin 1 Hour Box','Usable',20,10,true,100,true,true,true,true,true,true,true,'/*getgroupitem(IG_Spearfish_Box1);*/ rentitem 1489,3600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16744,'Spearfish_Box2','Marlin 7 Day Box','Usable',20,10,true,100,true,true,true,true,true,true,true,'/*getgroupitem(IG_Spearfish_Box2);*/ rentitem 1489,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16745,'Saurel_Box1','Pompano 1 Hour Box','Usable',20,10,true,100,true,true,true,true,true,true,true,'/*getgroupitem(IG_Saurel_Box1);*/ rentitem 13068,3600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16746,'Saurel_Box2','Pompano 7 Day Box','Usable',20,10,true,100,true,true,true,true,true,true,true,'/*getgroupitem(IG_Saurel_Box2);*/ rentitem 13068,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16747,'Tuna_Box1','Tuna 1 Hour Box','Usable',20,10,true,100,true,true,true,true,true,true,true,'/*getgroupitem(IG_Tuna_Box1);*/ rentitem 16016,3600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16748,'Tuna_Box2','Tuna 7 Day Box','Usable',20,10,true,100,true,true,true,true,true,true,true,'/*getgroupitem(IG_Tuna_Box2);*/ rentitem 16016,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16749,'Malang_Crab_Box1','Malangdo Crab 1 Hour Box','Usable',20,10,true,100,true,true,true,true,true,true,true,'/*getgroupitem(IG_Malang_Crab_Box1);*/ rentitem 18107,3600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16750,'Malang_Crab_Box2','Malangdo Crab 7 Day Box','Usable',20,10,true,100,true,true,true,true,true,true,true,'/*getgroupitem(IG_Malang_Crab_Box2);*/ rentitem 18107,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16751,'Brindle_Eel_Box1','Zebra Eel 1 Hour Box','Usable',20,10,true,100,true,true,true,true,true,true,true,'/*getgroupitem(IG_Brindle_Eel_Box1);*/ rentitem 18108,3600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16752,'Brindle_Eel_Box2','Zebra Eel 7 Day Box','Usable',20,10,true,100,true,true,true,true,true,true,true,'/*getgroupitem(IG_Brindle_Eel_Box2);*/ rentitem 18108,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (16753,'Unbreak_Weap_Box','Unbreakable Weapon Box','Usable',20,10,true,'getitem 6438,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (16754,'F_Unbreak_Weap_Box','Unbreakable Weapon Box','Usable',20,10,true,'getitem 6438,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (16755,'Unbreak_Def_Box','Unbreakable Armor Box','Usable',20,10,true,'getitem 6439,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (16756,'F_Unbreak_Def_Box','Unbreakable Armor Box','Usable',20,10,true,'getitem 6439,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (16757,'Hallo_Scroll','Hallo Scroll','Usable',20,10,true,'getgroupitem(IG_Hallo_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16760,'Umbala_Spirit_Box2','Umbala Spirit Box2','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Umbala_Spirit_Box2); /*rentitem Umbala_Spirit,604800;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16761,'F_Umbala_Spirit_Box2','F Umbala Spirit Box2','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_F_Umbala_Spirit_Box2); /*rentitem Umbala_Spirit,604800;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16763,'Ptotection_Seagod_Box2','The Sea God\'s Call 7 Day Box','Usable',20,10,true,100,true,true,true,true,true,true,true,'/*getgroupitem(IG_Ptotection_Seagod_Box2);*/ rentitem 6436,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16764,'Ptotection_Seagod_Box3','The Sea God\'s Call 15 Day Box','Usable',20,10,true,100,true,true,true,true,true,true,true,'/*getgroupitem(IG_Ptotection_Seagod_Box3);*/ rentitem 6436,1209600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16765,'Octo_Hstick_Box','Octopus Hunting Skewer 23 Hour Box','Usable',20,10,true,100,true,true,true,true,true,true,true,'/*getgroupitem(IG_Octo_Hstick_Box);*/ rentitem 6442,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16766,'Octo_Hstick_Box2','Octopus Hunting Skewer 3 Day Box','Usable',20,10,true,100,true,true,true,true,true,true,true,'/*getgroupitem(IG_Octo_Hstick_Box2);*/ rentitem 6442,259200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16767,'Octo_Hstick_Box3','Octopus Hunting Skewer 7 Day Box','Usable',20,10,true,100,true,true,true,true,true,true,true,'/*getgroupitem(IG_Octo_Hstick_Box3);*/ rentitem 6442,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16770,'Silvervine_Fruit_Box10','Silvervine 10 Box','Usable',20,10,true,100,true,true,true,true,true,true,true,'/*getgroupitem(IG_Silvervine_Fruit_Box10);*/ getitem 6417,10; getitem 12636,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16771,'Silvervine_Fruit_Box40','Silvervine 40 Box','Usable',20,10,true,100,true,true,true,true,true,true,true,'/*getgroupitem(IG_Silvervine_Fruit_Box40);*/ getitem 6417,40; getitem 12636,120;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (16774,'Asgard_Scroll','Asgard Scroll','Usable',20,10,true,'getgroupitem(IG_Asgard_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (16775,'Sagittarius_Scroll','Sagittarius Scroll','Usable',20,10,true,'getgroupitem(IG_Sagittarius_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16776,'Universal_Catalog_Gold_Box10__','Universal Catalog Gold 10 Box','Usable',10,100,true,true,true,true,true,true,true,'getitem 12581,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16777,'Universal_Catalog_Gold_Box50__','Universal Catalog Gold 50 Box','Usable',10,100,true,true,true,true,true,true,true,'getitem 12581,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (16821,'Dungeon_Teleport_Scroll_Box_5','Dungeon Teleport Scroll Box(5)','Usable',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (16822,'Dungeon_Teleport_Scroll_Box_10','Dungeon Teleport Scroll Box(10)','Usable',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (16826,'Sagittarius_Scr_Box','Sagittarius Scr Box','Usable',20,10,true,'getgroupitem(IG_Sagittarius_Scr_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (16837,'Dungeon_Teleport_Scroll_II_Box_5','Dungeon Teleport Scroll II Box(5)','Usable',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (16838,'Dungeon_Teleport_Scroll_II_Box_10','Dungeon Teleport Scroll II Box(10)','Usable',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16864,'Siege_Map_Teleport_Scroll_Box_10','Siege Map Teleport Scroll Box(10)','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14591,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16865,'Siege_Map_Teleport_Scroll_Box_30','Siege Map Teleport Scroll Box(30)','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14591,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16866,'Siege_Map_Teleport_Scroll_II_Box_10','Siege Map Teleport Scroll II Box(10)','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14591,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16867,'Siege_Map_Teleport_Scroll_II_Box_30','Siege Map Teleport Scroll II Box(30)','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14591,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16972,'Weather_Report_Box','Weather Report Box','Usable',20,10,true,100,true,true,true,true,true,true,true,'/*getgroupitem(IG_Weather_Report_Box);*/ getitem 19507,1; getitem 19518,1; getitem 19520,1; getitem 19519,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16973,'Yellow_Hat_Box','Yellow Hat Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 19515,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16974,'Comin_Actor_Box','Comin Actor Box','Usable',20,10,true,100,true,true,true,true,true,true,true,'/*getgroupitem(IG_Comin_Actor_Box);*/ getitem 19514,1; getitem 19521,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16975,'Singing_Bird_Box','Singing Bird Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 19516,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16976,'Hen_Set_Box','Hen Set Box','Usable',20,10,true,100,true,true,true,true,true,true,true,'/*getgroupitem(IG_Hen_Set_Box);*/ getitem 19513,1; getitem 19517,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16977,'Red_Minicrown_Box','Red Minicrown Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 19522,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16979,'Silvervine_Fruit_Box4','Silvervine 4 Box','Usable',20,10,true,100,true,true,true,true,true,true,true,'/*getgroupitem(IG_Silvervine_Fruit_Box4);*/ getitem 6417,4; getitem 12636,12;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (16990,'Sagittar_Diadem_Scroll','Sagittar Diadem Scroll','Usable',20,10,true,'getgroupitem(IG_Sagittar_Diadem_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (16991,'Sagittar_Di_Scroll_Box','Sagittar Di Scroll Box','Usable',20,10,true,'getgroupitem(IG_Sagittar_Di_Scroll_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_uniqueid`,`script`) VALUES (16992,'Butterfly_Wing_Box20','Butterfly Wing Box20','Cash',20,true,'getitem 602,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_uniqueid`,`script`) VALUES (16993,'Butterfly_Wing_Box50','Butterfly Wing Box50','Cash',20,true,'getitem 602,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (16995,'Old_Hat_Box','Old Hat Box','Cash',20,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (16996,'Capri_Crown_Scroll','Capri Crown Scroll','Usable',20,10,true,'getgroupitem(IG_Capri_Crown_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (16997,'Capri_Crown_Scroll_Box','Capri Crown Scroll Box','Usable',20,10,true,'getgroupitem(IG_Capri_Crown_Scroll_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16998,'Archangel_Wing_Box','Archangel Wings Box','Usable',10,true,100,true,true,true,true,true,true,true,'getitem 2573,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16999,'Bravery_Bag_Box','Bravery Bag Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 2576,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (17000,'Wander_Man_Box5','Wander Man Box5','Cash',20,10,true,'getitem 12626,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (17001,'Wander_Man_Box10','Wander Man Box10','Cash',20,10,true,'getitem 12626,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (17002,'Wicked_Nymph_Box5','Wicked Nymph Box5','Cash',20,10,true,'getitem 12627,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (17003,'Wicked_Nymph_Box10','Wicked Nymph Box10','Cash',20,10,true,'getitem 12627,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (17004,'Kasa_Scroll_Box5','Kasa Scroll Box5','Cash',20,10,true,'getitem 12628,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (17005,'Kasa_Scroll_Box10','Kasa Scroll Box10','Cash',20,10,true,'getitem 12628,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (17006,'Salamander_Box5','Salamander Box5','Cash',20,10,true,'getitem 12629,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (17007,'Salamander_Box10','Salamander Box10','Cash',20,10,true,'getitem 12629,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (17008,'Teddy_Bear_Box5','Teddy Bear Box5','Cash',20,10,true,'getitem 12630,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (17009,'Teddy_Bear_Box10','Teddy Bear Box10','Cash',20,10,true,'getitem 12630,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (17011,'Capricon_Di_Scroll','Capricon Di Scroll','Usable',20,10,true,'getgroupitem(IG_Capricon_Di_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (17012,'Capricon_Di_Scroll_Box','Capricon Di Scroll Box','Usable',20,10,true,'getgroupitem(IG_Capricon_Di_Scroll_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17013,'Malang_Woe_Encard_Box','Malang Woe Encard Box','Usable',20,10,true,100,true,true,true,true,true,true,true,'/*getgroupitem(IG_Malang_Woe_Encard_Box);*/ getitem 16740,1; getitem 16765,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17014,'Butterfly_ear_Box','Butterfly ear Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 19509,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17015,'Stuckhead_Screw_Box','Stuckhead Screw Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 19510,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (17016,'Aquarius_Diadem_Scroll','Aquarius Diadem Scroll','Usable',20,10,true,'getgroupitem(IG_Aquarius_Diadem_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (17017,'Aquarius_Di_Scroll_Box','Aquarius Di Scroll Box','Usable',20,10,true,'getgroupitem(IG_Aquarius_Di_Scroll_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`) VALUES (17018,'Libra_Scroll2','Libra Scroll2','Usable',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`) VALUES (17019,'Scorpio_Scroll2','Scorpio Scroll2','Usable',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (17020,'Tw_Nov_Scroll2','Tw Nov Scroll2','Usable',20,10,true,'getgroupitem(IG_Tw_Nov_Scroll2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (17021,'Summer_Scroll3','Summer Scroll3','Usable',20,100,true,'getgroupitem(IG_Summer_Scroll3);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (17022,'Super_Pet_Egg1_2','Super Pet Egg1 2','Usable',20,10,true,'getgroupitem(IG_Super_Pet_Egg1_2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (17023,'Super_Pet_Egg4_2','Super Pet Egg4 2','Usable',20,10,true,'getgroupitem(IG_Super_Pet_Egg4_2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (17024,'Lovely_Aquarius_Scroll','Lovely Aquarius Scroll','Usable',20,10,true,'getgroupitem(IG_Lovely_Aquarius_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (17025,'Lovely_Aquarius_Box','Lovely Aquarius Box','Usable',20,10,true,'getgroupitem(IG_Lovely_Aquarius_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (17026,'Boitata_Scroll','Boitata Scroll','Usable',20,10,true,'getgroupitem(IG_Boitata_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (17028,'Pisces_Diadem_Scroll','Pisces Diadem Scroll','Usable',20,10,true,'getgroupitem(IG_Pisces_Diadem_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (17029,'Pisces_Diadem_Box_','Pisces Diadem Box','Usable',20,10,true,'getgroupitem(IG_Pisces_Diadem_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (17030,'St_Pat_Hat_box','St Pat Hat box','Cash',20,100,true,'getitem 18565,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (17035,'Energetic_Pisces_Scroll','Energetic Pisces Scroll','Usable',20,10,true,'getgroupitem(IG_Energetic_Pisces_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (17036,'Energetic_Pisces_Box','Energetic Pisces Box','Usable',20,10,true,'getgroupitem(IG_Energetic_Pisces_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17037,'Trans_Box_Devi','Trans Box Devi','Usable',20,10,true,100,true,true,true,true,true,true,true,'getitem 12658,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17038,'Trans_Box_Ray_Arch','Trans Box Ray Arch','Usable',20,10,true,100,true,true,true,true,true,true,true,'getitem 12659,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17039,'Trans_Box_Mavka','Trans Box Mavka','Usable',20,10,true,100,true,true,true,true,true,true,true,'getitem 12660,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17040,'Trans_Box_Marduk','Trans Box Marduk','Usable',20,10,true,100,true,true,true,true,true,true,true,'getitem 12661,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17041,'Trans_Box_Banshee','Trans Box Banshee','Usable',20,10,true,100,true,true,true,true,true,true,true,'getitem 12662,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17042,'Trans_Box_Poring','Trans Box Poring','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 12663,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17043,'Trans_Box_Golem','Trans Box Golem','Usable',20,10,true,100,true,true,true,true,true,true,true,'getitem 12664,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (17050,'Aries_Scroll_','Aries Scroll','Usable',20,10,true,'getgroupitem(IG_Aries_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (17051,'Aries_Scroll_Box','Aries Scroll Box','Usable',20,10,true,'getgroupitem(IG_Aries_Scroll_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (17052,'Holy_Mom_Blaze_Box','Holy Mom Blaze Box','Cash',20,10,true,'getitem 6472,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`) VALUES (17056,'Wiz_Card_Album','Wiz Card Album','Usable',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`) VALUES (17057,'Swordman_Card_Album','Swordman Card Album','Usable',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`) VALUES (17058,'Thief_Card_Album','Thief Card Album','Usable',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`) VALUES (17059,'Acolyte_Card_Album','Acolyte Card Album','Usable',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`) VALUES (17060,'Merchant_Card_Album','Merchant Card Album','Usable',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`) VALUES (17061,'Archer_Card_Album','Archer Card Album','Usable',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (17062,'Taurus_Diadem_Scroll','Taurus Diadem Scroll','Usable',20,10,true,'getgroupitem(IG_Taurus_Diadem_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (17063,'Taurus_Di_Scroll_Box','Taurus Di Scroll Box','Usable',20,10,true,'getgroupitem(IG_Taurus_Di_Scroll_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`) VALUES (17064,'Tw_Sagitt_Scroll','Tw Sagitt Scroll','Usable',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (17066,'Poison_Bottle_Box50','Poison Bottle Box50','Cash',20,10,true,'getitem 678,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (17067,'Poison_Bottle_Box100','Poison Bottle Box100','Cash',20,10,true,'getitem 678,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (17068,'Acidbomb_Box50','Acidbomb Box50','Usable',20,10,true,'getitem 7135,50; getitem 7136,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (17069,'Acidbomb_Box100','Acidbomb Box100','Usable',20,10,true,'getitem 7135,100; getitem 7136,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (17070,'Acidbomb_Box500','Acidbomb Box500','Usable',20,10,true,'getitem 7135,500; getitem 7136,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (17071,'Superb_Fish_Box50','Superb Fish Box50','Cash',20,10,true,'getitem 14524,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (17072,'Superb_Fish_Box100','Superb Fish Box100','Cash',20,10,true,'getitem 14524,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (17073,'Superb_Fish_Box500','Superb Fish Box500','Cash',20,10,true,'getitem 14524,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (17074,'Empty_Bottle_Box10','Empty Bottle Box10','Cash',20,10,true,'getitem 713,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (17075,'Empty_Bottle_Box100','Empty Bottle Box100','Cash',20,10,true,'getitem 713,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (17076,'Empty_Bottle_Box500','Empty Bottle Box500','Cash',20,10,true,'getitem 713,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (17077,'Taurus_Crown_Scroll','Taurus Crown Scroll','Usable',20,10,true,'getgroupitem(IG_Taurus_Crown_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (17078,'Taurus_Crown_Scroll_Box','Taurus Crown Scroll Box','Usable',20,10,true,'getgroupitem(IG_Taurus_Crown_Scroll_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (17079,'Indonesia_Box2','Indonesia Box2','Cash',20,10,true,'getitem 602,5; getitem 601,50; getitem 12118,3; getitem 12119,3; getitem 12120,3; getitem 12121,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`) VALUES (17080,'Scorpio_Scroll3','Scorpio Scroll3','Usable',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17081,'Yggdrasil_Crown_Box','Yggdrasil Crown Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 18580,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (17082,'Gemi_Diadem_Scroll','Gemi Diadem Scroll','Usable',20,10,true,'getgroupitem(IG_Gemi_Diadem_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (17083,'Gemi_Diadem_Scroll_Box','Gemi Diadem Scroll Box','Usable',20,10,true,'getgroupitem(IG_Gemi_Diadem_Scroll_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17084,'Upg_Katar_Box','Upg Katar Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 1292,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17085,'Upg_Two_Handed_Axe_Box','Upg Two Handed Axe Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 1394,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17086,'Upg_Lance_Box','Upg Lance Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 1491,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17087,'Upg_Book_Box','Upg Book Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 1585,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17088,'Upg_Staff_Box','Upg Staff Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 2015,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17089,'Upg_Dagger_Box','Upg Dagger Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 13071,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17090,'Upg_Revolver_Box','Upg Revolver','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 13115,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17091,'Upg_Mace_Box','Upg Mace Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 16019,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17092,'Upg_Bow_Box','Upg Bow Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 18112,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17093,'Upg_Twohand_Sword_Box','Upg Two-Handed Sword Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 21000,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (17094,'Upg_Katar_Box2','Upg Katar Box','Cash',20,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (17095,'Upg_Two_Handed_Axe_Box2','Upg Two-Hand Axe Box2','Cash',20,10,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (17096,'Upg_Lance_Box2','Upg Lance Box2','Cash',20,10,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (17097,'Upg_Book_Box2','Upg_Book_Box2','Cash',20,10,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (17098,'Upg_Staff_Box2','Upg_Staff_Box2','Cash',20,10,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (17099,'Upg_Dagger_Box2','Upg_Dagger_Box2','Cash',20,10,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (17100,'Upg_Revolver_Box2','Upg_Revolver_Box2','Cash',20,10,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (17101,'Upg_Mace_Box2','Upg_Mace_Box2','Cash',20,10,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (17102,'Upg_Bow_Box2','Upg_Bow_Box2','Cash',20,10,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (17103,'Upg_Twohand_Sword_Box2','Upg_Twohand_Sword_Box2','Cash',20,10,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (17104,'HD_Oridecon_50Box','HD Oridecon 50 Box','Cash',20,10,true,'getitem 6240,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (17105,'HD_Elunium_50Box','HD Elunium 50 Box','Cash',20,10,true,'getitem 6241,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17106,'Max_Weight_Up_10Box','Heavy Lifter Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 7776,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (17107,'Gemi_Crown_Scroll','Gemi Crown Scroll','Cash',20,10,true,'getgroupitem(IG_Gemi_Crown_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (17108,'Gemi_Crown_Scroll_Box','Gemi Crown Scroll Box','Cash',20,10,true,'getgroupitem(IG_Gemi_Crown_Scroll_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`) VALUES (17109,'Capri_Scroll','Capri Scroll','Usable',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`) VALUES (17110,'Aquarius_Scroll','Aquarius Scroll','Usable',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`) VALUES (17113,'Pisces_Scroll','Pisces Scroll','Usable',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (17114,'Horn_Of_Ancient_Box','Horn Of Ancient Box','Cash',20,10,true,'getitem 18595,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (17115,'Sprout_Hat_Box','Sprout Hat Box','Cash',20,10,true,'getitem 18596,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (17116,'Mercury_Helm_Box','Mercury Helm Box','Cash',20,10,true,'getitem 18597,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`) VALUES (17117,'Aries_Scroll','Aries Scroll','Usable',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17118,'ASPD_Potion_Box10','ASPD Enhanced Potion Box','Cash',20,true,100,true,true,true,true,true,true,true,'getitem 12684,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`) VALUES (17120,'Taurus_Scroll','Taurus Scroll','Usable',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`) VALUES (17121,'Starry_Scroll','Starry Scroll','Usable',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17122,'Immuned_Shield_Box','Immuned Shield Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 2168,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17123,'Black_Devil_Mask_Box','Black Devil Mask Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 18599,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (17124,'Cat_Ears_Beret_Box','Cat Ears Beret Box','Cash',20,10,true,'getitem 18600,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (17125,'Red_Bread_Hat_Box','Red Bread Hat Box','Cash',20,10,true,'getitem 18601,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17126,'ASPD_Potion_Box10_2','ASPD Enhanced Potion Box','Cash',20,true,100,true,true,true,true,true,true,true,'getitem 12684,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`) VALUES (17127,'Leo_Scroll2','Leo Scroll2','Usable',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`) VALUES (17134,'RWC_Scroll','RWC Scroll','Usable',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (17138,'Ms_Cancer_Scroll','Ms Cancer Scroll','Usable',20,10,true,'getgroupitem(IG_Ms_Cancer_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (17139,'RWC_Super_Scroll','RWC Super Scroll','Usable',20,10,true,'getgroupitem(IG_RWC_Super_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (17140,'Leo_Scroll_','Leo Scroll','Usable',20,10,true,'getgroupitem(IG_Leo_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (17141,'Ms_Virgo_Scroll','Ms Virgo Scroll','Usable',20,10,true,'getgroupitem(IG_Ms_Virgo_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (17143,'Ms_Scorpio_Scroll','Ms Scorpio Scroll','Usable',20,10,true,'getgroupitem(IG_Ms_Scorpio_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (17146,'Dep_Alice_Hat_Box','Dep Alice Hat Box','Cash',20,10,true,'getitem 18630,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (17147,'Ribbon_Chef_Hat_Box','Ribbon Chef Hat Box','Cash',20,10,true,'getitem 18631,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (17152,'Bridal_Ribbon_Box','Bridal Ribbon Box','Cash',20,10,true,'getitem 18636,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17155,'Upg_Huuma_Shuriken_Box','Upg Huuma Shuriken Box','Usable',true,100,true,true,true,true,true,true,true,'rentitem 13316,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_container`,`script`) VALUES (17156,'TCG_Card_Scroll','Bossnia Ticket Scroll','Usable',20,true,'getgroupitem(IG_TCG_Card_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (17157,'Vital_Flower_Box','Vital Flower Box','Cash',20,10,true,'getitem 6113,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (17158,'Flame_Gemstone_Box','Flame Gemstone Box','Cash',20,10,true,'getitem 6114,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (17159,'Change_Name_Card_Box','Name Change Box','Cash',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (17160,'Character_Name_Change_Card_Box','Character Name Change Card Box','Cash',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17162,'Boarding_Halter_Box7','Boarding Halter Box7','Cash',10,true,100,true,true,true,true,true,true,true,'rentitem 12622,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (17165,'Challenge_Kit','Challenge Kit','Usable',20,10,true,'getgroupitem(IG_Challenge_Kit); /*getitem Blessing_10_Scroll,20; getitem Inc_Agi_10_Scroll,20;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (17176,'Boarding_Halter_Box3','Halter Lead Box[Trial]','Cash',20,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`) VALUES (17181,'Jan_Groove_Box','Jan Groove Box','Usable',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_uniqueid`,`script`) VALUES (17184,'3rd_Test_Pass_Box','3rd Test Pass Box','Cash',true,'getitem 6583,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`) VALUES (17203,'Free_Pass_Box','Free Pass Box','Usable',20,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17204,'Shining_Egg','Shining Egg','Cash',10,10,1,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Shining_Egg);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (17207,'Idn_Heart_Scroll','Idn Heart Scroll','Usable',20,10,true,'getgroupitem(IG_Idn_Heart_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (17209,'Tw_Rainbow_Scroll','Tw Rainbow Scroll','Usable',20,10,true,'getgroupitem(IG_Tw_Rainbow_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (17210,'Tw_Red_Scroll','Tw Red Scroll','Usable',20,10,true,'getgroupitem(IG_Tw_Red_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (17211,'Tw_Orange_Scroll','Tw Orange Scroll','Usable',20,10,true,'getgroupitem(IG_Tw_Orange_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (17212,'Tw_Yellow_Scroll','Tw Yellow Scroll','Usable',20,10,true,'getgroupitem(IG_Tw_Yellow_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17226,'Infinite_Concentration_Potion_','Infinite Concentration Potion','Cash',10,10,100,true,true,true,true,true,true,true,'rentitem 12884,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17227,'Infinite_Awakening_Potion_','Infinite Awakening Potion','Cash',10,10,100,true,true,true,true,true,true,true,'rentitem 12885,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17228,'Infinite_Berserk_Potion_','Infinite Berserk Potion','Cash',10,10,100,true,true,true,true,true,true,true,'rentitem 12886,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17229,'Infinite_Flywing_Box','Infinite Flywing Box','Cash',10,10,100,true,true,true,true,true,true,true,'rentitem 12887,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`script`) VALUES (17230,'Valerian_Scroll','Valerian Egg','Cash',10,10,1,'getgroupitem(IG_Valerian_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17231,'Refinement_Ore_Box','Refinement Ore Box','Usable',10,10,100,true,true,true,true,true,true,true,'getitem 7619,1; getitem 7620,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17232,'Refinement_Box_7','Refinement box(7)','Usable',10,10,100,true,true,true,true,true,true,true,'getitem 6230,1; getitem 6234,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (17233,'Scroll_Of_Death','Scroll Of Death','Usable',20,10,true,'getgroupitem(IG_Scroll_Of_Death);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (17234,'Scroll_Of_Life','Scroll Of Life','Usable',20,10,true,'getgroupitem(IG_Scroll_Of_Life);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (17235,'Scroll_Of_Magic','Scroll Of Magic','Usable',20,10,true,'getgroupitem(IG_Scroll_Of_Magic);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (17236,'Scroll_Of_Thews','Scroll Of Thews','Usable',20,10,true,'getgroupitem(IG_Scroll_Of_Thews);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (17237,'Scroll_Of_Darkness','Scroll Of Darkness','Usable',20,10,true,'getgroupitem(IG_Scroll_Of_Darkness);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (17238,'Scroll_Of_Holiness','Scroll Of Holiness','Usable',20,10,true,'getgroupitem(IG_Scroll_Of_Holiness);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (17239,'Horned_Scroll','Horned Scroll','Usable',20,10,true,'getgroupitem(IG_Horned_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (17240,'Mercury_Scroll','Mercury Scroll','Usable',20,10,true,'getgroupitem(IG_Mercury_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17241,'Amistr_Cap_Box','Amistir Cap Box','Usable',10,10,4,100,true,true,true,true,true,true,true,'getitem 5766,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17244,'Event_Almighty_Box','Event Almighty Box','Usable',10,10,100,true,true,true,true,true,true,true,'getitem 12883,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`script`) VALUES (17242,'Immortal_Egg','Immortal Egg','Cash',10,10,1,'getgroupitem(IG_Immortal_Egg);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_uniqueid`) VALUES (17245,'Idn_Independ_Scroll','Idn Independ Scroll','Cash',20,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17246,'HD_Elunium_Box_30','HD Elunium Box(30)','Usable',10,10,100,true,true,true,true,true,true,true,'getitem 6241,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17247,'HD_Oridecon_Box_30','HD Oridecon Box(30)','Usable',10,10,100,true,true,true,true,true,true,true,'getitem 6240,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17251,'C_Wing_Of_Fly_3Day_Box','C Wing Of Fly 3Day Box','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_C_Wing_Of_Fly_3Day_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17252,'RWC_2012_Set_Box','RWC 2012 Set Box','Usable',20,10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_RWC_2012_Set_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17253,'RWC_2012_Ring_Box','RWC 2012 Ring Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 2966,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17254,'RWC_2012_Pendant_Box','RWC 2012 Pendant Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 2968,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`script`) VALUES (17255,'Sapphire_Egg','Sapphire Egg','Cash',10,10,1,'getgroupitem(IG_Sapphire_Egg);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_container`,`script`) VALUES (17256,'Good_Student_Gift_Box','Good Student Gift Box','Cash',20,true,'getgroupitem(IG_Good_Student_Gift_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_container`,`script`) VALUES (17257,'Bad_Student_Gift_Box','Bad Student Gift Box','Cash',20,true,'getgroupitem(IG_Bad_Student_Gift_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17262,'Ex_Def_Potion_Box','Special Defense Potion Box','Cash',20,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Ex_Def_Potion_Box); /*getitem Ex_Def_Potion,5; getitem RWC_Scroll_2012,1;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17263,'Infinite_Concentration_Potion_3rd_Box','Infinite Concentration Potion 3rd Box','Usable',10,10,100,true,true,true,true,true,true,true,'rentitem 12884,259200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17264,'Infinite_Awakening_Potion_3rd_Box','Infinite Awakening Potion 3rd Box','Usable',10,10,100,true,true,true,true,true,true,true,'rentitem 12885,259200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17265,'Infinite_Berserk_Potion_3rd_Box','Infinite Berserk Potion 3rd Box','Usable',10,10,100,true,true,true,true,true,true,true,'rentitem 12886,259200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17266,'Limited_Battle_Manual_Package','Limited Battle Manual Package','Usable',10,10,100,true,true,true,true,true,true,true,'getitem 17263,1; getitem 17264,1; getitem 17265,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17270,'STR_Biscuit_Stick_Box','Bar Cookie Of Strength Box','Cash',true,100,true,true,true,true,true,true,true,'getitem 14616,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17271,'VIT_Biscuit_Stick_Box','Bar Cookie Of Vitality Box','Cash',true,100,true,true,true,true,true,true,true,'getitem 14617,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17272,'AGI_Biscuit_Stick_Box','Bar Cookie Of Agility Box','Cash',10,10,true,100,true,true,true,true,true,true,true,'getitem 14618,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17273,'INT_Biscuit_Stick_Box','Bar Cookie Of Intellgence Box','Cash',10,10,true,100,true,true,true,true,true,true,true,'getitem 14619,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17274,'DEX_Biscuit_Stick_Box','Bar Cookie Of Dexterity Box','Cash',10,10,true,100,true,true,true,true,true,true,true,'getitem 14620,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17275,'LUK_Biscuit_Stick_Box','Bar Cookie Of Luck Box','Cash',10,10,true,100,true,true,true,true,true,true,true,'getitem 14621,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17277,'Unlimited_Box','Unlimited Box','Cash',10,10,100,true,true,true,true,true,true,true,'getgroupitem(IG_Unlimited_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17278,'Unlimited_Box_10','Unlimited Box(10)','Cash',10,10,100,true,true,true,true,true,true,true,'getgroupitem(IG_Unlimited_Box_10);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17281,'Refinement_Ore_Box_IV','Refinement Ore Box IV','Cash',10,10,100,true,true,true,true,true,true,true,'getitem 7619,5; getitem 7620,5; getitem 14627,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17282,'Refinement_Ore_Box_IV_10','Refinement Ore Box IV(10)','Cash',10,10,100,true,true,true,true,true,true,true,'getitem 7619,50; getitem 7620,50; getitem 14627,11;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17283,'Refinement_Ore_Box_IV_20','Refinement Ore Box IV(20)','Cash',10,10,100,true,true,true,true,true,true,true,'getitem 7619,100; getitem 7620,100; getitem 14627,23;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`class_all`,`gender`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17285,'Events_Beauty_Gift_Box','Events Beauty Gift Box','Cash',10,10,false,'Female',100,true,true,true,true,true,true,true,'/*TODO*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17292,'Shadow_Box','Shadow Box','Cash',10,10,100,true,true,true,true,true,true,true,'getitem callfunc("F_Rand",24018,24019,24020,24021,24022,24023,24024,24025,24026),1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17293,'Shadow_Physical_Package','Shadow Physical Package','Cash',10,10,100,true,true,true,true,true,true,true,'getitem callfunc("F_Rand",24018,24019,24020,24024,24025,24026),1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17294,'Shadow_Magical_Package','Shadow Magical Package','Cash',10,10,100,true,true,true,true,true,true,true,'getitem callfunc("F_Rand",24021,24022,24023,24024,24025,24026),1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17298,'Support_Package','Support Package','Cash',10,10,100,true,true,true,true,true,true,true,'getgroupitem(IG_Support_Package);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17299,'Support_Package_10','Support Package(10)','Cash',10,10,100,true,true,true,true,true,true,true,'getgroupitem(IG_Support_Package_10);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (17302,'Shadow_Box_II_','Shadow Box II','Cash',10,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (17303,'Shadow_Set_Box_II','Shadow Set Box II','Cash',10,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17304,'Neuralizer_Box_3','Neuralizer Box 3','Cash',10,10,100,true,true,true,true,true,true,true,'getitem 12213,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17306,'Status_Reset_Coupon_Box','Status Reset Coupon Box','Cash',10,1,100,true,true,true,true,true,true,true,'getitem callfunc("F_Rand",6720,6721),1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`flag_container`,`script`) VALUES (17307,'Midgard_Scroll','Midgard Egg','Cash',10,10,1,true,'getgroupitem(IG_Midgard_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (17308,'Half_Asprika_box1','Half Asprika box1','Usable',20,10,'rentitem 2566,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`equip_level_min`,`script`) VALUES (17311,'Half_Brynhild_box1','Half Brynhild box1','Usable',20,47,'rentitem 15023,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17314,'Infinite_Giant_Fly_Wing_Box','Infinite Giant Fly Wing Box','Cash',10,10,100,true,true,true,true,true,true,true,'rentitem 12212,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17315,'Lucky_Silvervine_Fruit_Box_10','Lucky Silvervine Fruit Box(10)','Cash',10,10,100,true,true,true,true,true,true,true,'getitem 6417,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17316,'Lucky_Silvervine_Fruit_Box_110','Lucky Silvervine Fruit Box(110)','Cash',10,10,100,true,true,true,true,true,true,true,'getitem 6417,110;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`flag_container`,`script`) VALUES (17317,'Sweet_Midgard_Scroll','Sweet Midgard Egg','Cash',10,10,1,true,'getgroupitem(IG_Sweet_Midgard_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`flag_container`,`script`) VALUES (17320,'IdRO10th_Scroll','Birthday IdRO10th Scroll','Cash',10,10,1,true,'getgroupitem(IG_IdRO10th_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`class_all`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17321,'Three_Master_Package','Three Master Package','Cash',10,10,false,100,true,true,true,true,true,true,true,'/*TODO: Confirm the items and rates*/ getitem 14534,20; getitem 14535,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`class_all`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17322,'Three_Master_Package_10','Three Master Package(10)','Cash',10,10,false,100,true,true,true,true,true,true,true,'/*TODO: Confirm the items and rates*/ getitem 14534,200; getitem 14535,200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`flag_container`,`script`) VALUES (17326,'Requiem_Scroll','Requiem Egg','Cash',10,10,1,true,'getgroupitem(IG_Requiem_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17331,'Event_Almighty_Box_','Event Almighty Box','Cash',10,10,100,true,true,true,true,true,true,true,'getgroupitem(IG_Event_Almighty_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17332,'Event_Almighty_Box_100','Event Almighty Box(100)','Cash',10,10,100,true,true,true,true,true,true,true,'getgroupitem(IG_Event_Almighty_Box_100);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`flag_container`,`script`) VALUES (17337,'Holy_Spirit_Scroll','Holy Spirit Egg','Cash',10,10,1,true,'getgroupitem(IG_Holy_Spirit_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17338,'Ore_Box_V','Ore Box V','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 7619,5; getitem 7620,5; getitem 14696,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17339,'Ore_Box_V_10','Ore Box V(10)','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 7619,50; getitem 7620,50; getitem 14696,11;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (17394,'Event_Old_Headgear_Box','Event Old Headgear Box','Usable',20,50,'/* TODO */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (17396,'Half_L_Magestic_Goat_Box1','Half L Magestic Goat Box1','Usable',20,10,'rentitem 5887,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (17397,'Half_L_Magestic_Goat_Box7','Half L Magestic Goat Box7','Usable',20,10,'rentitem 5887,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (17398,'Half_BF_Spear1_Box1','Half BF Spear1 Box1','Usable',20,10,'rentitem 1439,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (17399,'Half_BF_Spear1_Box7','Half BF Spear1 Box7','Usable',20,10,'rentitem 1439,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (17400,'Half_BF_Book2_Box1','Half BF Book2 Box1','Usable',20,10,'rentitem 1597,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (17401,'Half_BF_Book2_Box7','Half BF Book2 Box7','Usable',20,10,'rentitem 1597,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (17402,'Half_BF_Staff4_Box1','Half BF Staff4 Box1','Usable',20,10,'rentitem 1673,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (17403,'Half_BF_Staff4_Box7','Half BF Staff4 Box7','Usable',20,10,'rentitem 1673,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (17404,'Half_BF_Staff2_Box1','Half BF Staff2 Box1','Usable',20,10,'rentitem 1674,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (17405,'Half_BF_Staff2_Box7','Half BF Staff2 Box7','Usable',20,10,'rentitem 1674,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (17406,'Half_BF_Knuckle1_Box1','Half BF Knuckle1 Box1','Usable',20,10,'rentitem 1838,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (17407,'Half_BF_Knuckle1_Box7','Half BF Knuckle1 Box7','Usable',20,10,'rentitem 1838,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (17408,'Half_BF_Dagger2_Box1','Half BF Dagger2 Box1','Usable',20,10,'rentitem 13096,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (17409,'Half_BF_Dagger2_Box7','Half BF Dagger2 Box1s','Usable',20,10,'rentitem 13096,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (17410,'Half_BF_Huuma_Shuriken2_Box1','Half BF Huuma Shuriken2 Box1','Usable',20,10,'rentitem 13321,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (17411,'Half_BF_Huuma_Shuriken2_Box7','Half BF Huuma Shuriken2 Box7','Usable',20,10,'rentitem 13321,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (17412,'Half_BF_Sword1_Box1','Half BF Sword1 Box1','Usable',20,10,'rentitem 13445,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (17413,'Half_BF_Sword1_Box7','Half BF Sword1 Box7','Usable',20,10,'rentitem 13445,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (17414,'Half_Mjolnir_Box1','Half Mjolnir Box1','Usable',20,10,'rentitem 16034,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (17415,'Half_Mjolnir_Box7','Half Mjolnir Box7','Usable',20,10,'rentitem 16034,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (17416,'Half_BF_Morning_Star1_Box1','Half BF Morning Star1 Box1','Usable',20,10,'rentitem 16035,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (17417,'Half_BF_Morning_Star1_Box7','Half BF Morning Star1 Box1','Usable',20,10,'rentitem 16035,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (17418,'Half_BF_Bow1_Box1','Half BF Bow1 Box1','Usable',20,10,'rentitem 18124,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (17419,'Half_BF_Bow1_Box7','Half BF Bow1 Box7','Usable',20,10,'rentitem 18124,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (17420,'Half_BF_Katar2_Box1','Half BF Katar2 Box1','Usable',20,10,'rentitem 28002,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (17421,'Half_BF_Katar2_Box7','Half BF Katar2 Box7','Usable',20,10,'rentitem 28002,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (17422,'Half_BF_Two_Handed_Axe1Box1','Half BF Two Handed Axe1Box1','Usable',20,10,'rentitem 28102,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (17423,'Half_BF_Two_Handed_Axe1Box7','Half BF Two Handed Axe1Box7','Usable',20,10,'rentitem 28102,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (17424,'Half_BF_Rifle1_Box1','Half BF Rifle1 Box1','Usable',20,10,'rentitem 28203,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (17425,'Half_BF_Rifle1_Box7','Half BF Rifle1 Box7','Usable',20,10,'rentitem 28203,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (17426,'Half_BF_Shotgun1_Box1','Half BF Shotgun1 Box1','Usable',20,10,'rentitem 28204,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (17427,'Half_BF_Shotgun1_Box7','Half BF Shotgun1 Box7','Usable',20,10,'rentitem 28204,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17429,'11_Anniversary_Shadow_Box','11 Anniversary Shadow Box','Cash',10,10,100,true,true,true,true,true,true,true,'/* getitem callfunc("F_Rand",Ritual\'s Flute (weapon, earrings, pendants), every risyeo\'s (shields, armor, shoes)),1; */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17430,'11_Anniversary_Shadow_Package','11 Anniversary Shadow Package','Cash',10,10,100,true,true,true,true,true,true,true,'/* getitem Ritual\'s Flute (weapon, earrings, pendants),1; getitem every risyeo\'s (shields, armor, shoes)),1; */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`flag_container`,`script`) VALUES (17431,'Thanks_Giving_Scroll','Miracle Lucky Egg','Cash',10,10,1,true,'getgroupitem(IG_Thanks_Giving_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17432,'Lucky_Silvervine_Fruit_Box_II_10','Lucky Silvervine Fruit Box II(10)','Cash',10,10,100,true,true,true,true,true,true,true,'/*getgroupitem(Lucky_Silvervine_Fruit_Box_II10);*/ getitem 6417,10; getitem 14705,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17433,'Lucky_Silvervine_Fruit_Box_II_110','Lucky Silvervine Fruit Box II(110)','Cash',10,10,100,true,true,true,true,true,true,true,'/*getgroupitem(Lucky_Silvervine_Fruit_Box_II110);*/ getitem 6417,110; getitem 14705,11;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`flag_container`,`script`) VALUES (17435,'Idn_Legend_Hero_Scroll','Legend Hero Lucky Egg','Cash',10,10,1,true,'getgroupitem(IG_Idn_Legend_Hero_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17440,'Name_Change_Card_Box','Name Change Card Box','Cash',10,10,100,true,true,true,true,true,true,true,'getitem 12790,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17441,'Halter_Lead_Box','Halter Lead Box','Cash',10,10,100,true,true,true,true,true,true,true,'getitem 12622,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17443,'Reinforcement_Buckler_Box','Reinforcement Buckler Box','Cash',10,10,100,true,true,true,true,true,true,true,'getitem 2150,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17442,'Emperium_G_Box','Emperium G Box','Usable',20,10,100,true,true,true,true,true,true,true,'getitem 6444,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`equip_level_min`,`flag_container`,`script`) VALUES (17447,'Blessing_Midgard_Scroll','Blessing Midgard Lucky Egg','Cash',10,1,true,'getgroupitem(IG_Blessing_Midgard_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17449,'Cookies_Bar_Set','Set Bar Cookies','Usable',10,10,100,true,true,true,true,true,true,true,'for (.@i = 14616; .@i <= 14621; .@i++) getitem .@i,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17455,'Premium_Battle_Manual_Box','Premium Battle Manual Box','Cash',10,10,100,true,true,true,true,true,true,true,'getitem 22614,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17456,'Support_Package_II','Support Package II','Cash',10,10,100,true,true,true,true,true,true,true,'getgroupitem(IG_Support_Package_II);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17457,'Support_Package_II_10','Support Package II(10)','Cash',10,10,100,true,true,true,true,true,true,true,'getgroupitem(IG_Support_Package_II_10);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17461,'Costama_Egg18','Frozen Egg Costume','Cash',10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Costama_Egg18);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`flag_container`,`script`) VALUES (17464,'Winter_Midgard_Scroll','Winter Midgard Egg','Cash',10,10,1,true,'getgroupitem(IG_Winter_Midgard_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17465,'Refinement_Ore_Box_VI','Refinement Ore Box VI','Cash',10,10,100,true,true,true,true,true,true,true,'getitem 7619,5; getitem 7620,5; getitem 14718,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17466,'Refinement_Ore_Box_VI_10','Refinement Ore Box VI(10)','Cash',10,10,100,true,true,true,true,true,true,true,'getitem 7619,50; getitem 7620,50; getitem 14718,11;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17467,'Limited_Token_of_Ziegfried_Box_50','(Limited) Token of Ziegfried Box(50)','Cash',10,10,100,true,true,true,true,true,true,true,'getitem 6833,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17468,'Neuralizer_II_Box_3','Neuralizer II Box (3)','Usable',10,10,100,true,true,true,true,true,true,true,'getitem 14724,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17469,'Neuralizer_I_Box','Neuralizer I Box','Usable',10,10,100,true,true,true,true,true,true,true,'getitem 14723,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17470,'Costama_Egg19','Headgear Costume Scroll','Cash',10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Costama_Egg19);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`flag_container`,`script`) VALUES (17471,'Spring_Festival_Scroll','Spring Festival Lucky Egg','Cash',10,10,1,true,'getgroupitem(IG_Spring_Festival_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17472,'Support_Package_III','Support Package III','Cash',10,10,100,true,true,true,true,true,true,true,'getgroupitem(IG_Support_Package_III);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17473,'Support_Package_III_10','Support Package III(10)','Cash',10,10,100,true,true,true,true,true,true,true,'getgroupitem(IG_Support_Package_III_10);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17474,'Infinite_Giant_Fly_Wing_Box_V','Infinite Giant Fly Wing Box V','Cash',10,10,100,true,true,true,true,true,true,true,'rentitem 12212,86400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17475,'Limited_Gym_Membership_Card_Box_10','(Limited)Gym Membership Card Box(10)','Cash',10,10,100,true,true,true,true,true,true,true,'getitem 17475,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17477,'Unlimited_Box_II','Unlimited Box II','Cash',10,10,100,true,true,true,true,true,true,true,'getgroupitem(IG_Unlimited_Box_II);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17478,'Unlimited_Box_II_10','Unlimited Box II(10)','Cash',10,10,100,true,true,true,true,true,true,true,'getgroupitem(IG_Unlimited_Box_II_10);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (17479,'Midgard_Fes_Scroll','Midgard Festival Egg','Usable',10,10,true,'getgroupitem(IG_Midgard_Fes_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17481,'Costama_Egg21','Flower Blossom Scroll','Cash',10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Costama_Egg21);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (17482,'Solaris_Festival_Scroll','Solaris Festival Scroll','Usable',10,10,true,'getgroupitem(IG_Solaris_Festival_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17483,'Three_Master_Package_III','Three Master Package III','Cash',10,10,100,true,true,true,true,true,true,true,'getgroupitem(IG_Three_Master_Package_III);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17484,'Three_Master_Package_III_10','Three Master Package III(10)','Cash',10,10,100,true,true,true,true,true,true,true,'getgroupitem(IG_Three_Master_Package_III_10);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (17490,'Time_Travel_Scroll','Time Travel Lucky Egg','Usable',10,10,true,'getgroupitem(IG_Time_Travel_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17491,'Refinement_Ore_Box_VII','Refinement Ore Box VII','Cash',10,10,100,true,true,true,true,true,true,true,'getitem 7619,5; getitem 7620,5; getitem 4482,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17492,'Refinement_Ore_Box_VII_10','Refinement Ore Box VII(10)','Cash',10,10,100,true,true,true,true,true,true,true,'getitem 7619,50; getitem 7620,50; getitem 4482,11;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17493,'Costama_Egg23','Burning Feather Costume Scroll','Cash',10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Costama_Egg23);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (17494,'Happy_Time_Scroll','Rise Midgard Lucky Egg','Cash',10,10,true,'getgroupitem(IG_Happy_Time_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17495,'Lucky_Silvervine_Fruit_Box_III10','Lucky Silvervine Fruit Box III(10)','Cash',10,10,100,true,true,true,true,true,true,true,'getgroupitem(IG_Lucky_Silvervine_Fruit_Box_III10);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17496,'Lucky_Silvervine_Fruit_Box_III110','Lucky Silvervine Fruit Box III(110)','Cash',10,10,100,true,true,true,true,true,true,true,'getgroupitem(IG_Lucky_Silvervine_Fruit_Box_III110);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17497,'Costama_Egg24','Seaside Costume Scroll','Cash',10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Costama_Egg24);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17498,'Three_Master_Package_IV','Three Master Package IV','Usable',10,10,100,true,true,true,true,true,true,true,'getitem 14534,20; getitem 14535,20; getitem 12578,20; getitem 22812,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17499,'Three_Master_Package_IV_10','Three Master Package IV(10)','Usable',10,10,100,true,true,true,true,true,true,true,'getitem 14534,200; getitem 14535,200; getitem 12578,200; getitem 22812,11;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17501,'Support_Package_IV','Support Package IV','Usable',10,10,100,true,true,true,true,true,true,true,'getitem 12208,2; getitem 12210,2; getitem 12883,2; getitem 14600,2; /*getitem Mysterious Water of Life,6;*/ if(!rand(100)) getitem 22823,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17502,'Support_Package_IV_10','Support Package IV(10)','Usable',10,10,100,true,true,true,true,true,true,true,'getitem 12208,20; getitem 12210,20; getitem 12883,20; getitem 14600,20; /*getitem Mysterious Water of Life,60;*/ if(!rand(100)) getitem 22823,11;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17507,'Nyangvine_Box4','Actinidia Cat Fruit Box(4)','Usable',10,10,100,true,true,true,true,true,true,true,'getitem 6909,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17508,'Nyangvine_Box10','Actinidia Cat Fruit Box(10)','Usable',10,10,100,true,true,true,true,true,true,true,'getitem 6909,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17509,'Nyangvine_Box40','Actinidia Cat Fruit Box(40)','Usable',10,10,100,true,true,true,true,true,true,true,'getitem 6909,40;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17510,'Smelting_Ore_Box_VIII','Smelting Ore Box VIII','Usable',10,10,100,true,true,true,true,true,true,true,'getitem 7619,5; getitem 7620,5; getitem 22828,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17511,'Smelting_Ore_Box_VIII_10','Smelting Ore Box VIII(10)','Usable',10,10,100,true,true,true,true,true,true,true,'getitem 7619,50; getitem 7620,50; getitem 22828,11;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17512,'Limited_Purified_Eluminium_Box_30','(Limited) Purified Eluminium Box(30)','Usable',10,10,100,true,true,true,true,true,true,true,'getitem 6911,30; getitem 6635,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17513,'Limited_Purified_Oridecon_Box_30','(Limited) Purified Oridecon Box(30)','Usable',10,10,100,true,true,true,true,true,true,true,'getitem 6910,30; getitem 6635,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17515,'Unlimited_Box_III','Unlimited Box III','Usable',10,10,100,true,true,true,true,true,true,true,'getitem 12684,5; getitem 12796,10; if(!rand(30)) getitem 14758,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17516,'Unlimited_Box_III_10','Unlimited Box III(10)','Usable',10,10,100,true,true,true,true,true,true,true,'getitem 12684,50; getitem 12796,100; if(!rand(30)) getitem 14758,11;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17517,'Costama_Egg28','Animal Costume Scroll','Cash',10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Costama_Egg28);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`script`) VALUES (17519,'Epic_Heroes_Scroll','Epic Heroes Scroll','Cash',10,true,'getgroupitem(IG_Epic_Heroes_Lucky_Egg);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17520,'Limited_Edition_Manual_Box','Limited Edition Manual Box','Usable',10,10,100,true,true,true,true,true,true,true,'getitem 14765,3; /*getitem (limited edition battle manual),2;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17521,'Three_Master_Package_V','Three Master Package V','Usable',10,10,100,true,true,true,true,true,true,true,'getitem 14534,20; getitem 14535,20; /*getitem Mysterious Water of Life,20;*/ getitem 22842,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17522,'Three_Master_Package_V_10','Three Master Package V(10)','Usable',10,10,100,true,true,true,true,true,true,true,'getitem 14534,200; getitem 14535,200; /*getitem Mysterious Water of Life,200;*/ getitem 22842,11;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17523,'Costama_Egg29','Mystical Costume Scroll','Cash',10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Costama_Egg29);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17524,'Limited_Power_Booster_Box','Limited Power Booster Box','Usable',10,10,100,true,true,true,true,true,true,true,'getitem 14766,1; getitem 22873,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17525,'Limited_Power_Booster_Box_100','Limited Power Booster Box(100)','Usable',10,10,100,true,true,true,true,true,true,true,'getitem 14766,100; getitem 22873,11;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`script`) VALUES (17526,'Majestic_Lucky_Scroll','Majestic Lucky Egg','Cash',10,true,'getgroupitem(IG_Majestic_Lucky_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17527,'Nyangvine_Box200','Actinidia Cat Fruit Box(200)','Usable',10,10,100,true,true,true,true,true,true,true,'getitem 6909,200; getitem 12636,rand(1,5); /*TODO: Fix the 12636 amount*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`script`) VALUES (17532,'Blessing_Lucky_Scroll','Blessing Lucky Egg','Cash',10,true,'getgroupitem(IG_Blessing_Lucky_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17544,'Smelting_Ore_Box_IX','Smelting Ore Box IX','Usable',10,10,100,true,true,true,true,true,true,true,'getitem 7619,5; getitem 7620,5; getitem 22888,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17545,'Smelting_Ore_Box_IX_10','Smelting Ore Box IX(10)','Usable',10,10,100,true,true,true,true,true,true,true,'getitem 7619,50; getitem 7620,50; getitem 22888,11;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17547,'Limited_2015_Neuralizer_Box','(Limited)2015 Neuralizer Box','Usable',20,10,100,true,true,true,true,true,true,true,'getitem 22894,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17548,'Limited_2015_Status_Initialization_Volume_Box','(Limited)2015 Status Initialization Volume Box','Usable',20,10,100,true,true,true,true,true,true,true,'getitem 22895,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17549,'Limited_High_Density_Bradium_Box_30','(Limited)High Density Bradium Box(30)','Usable',20,10,100,true,true,true,true,true,true,true,'getitem 6327,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17550,'Limited_High_Density_Kalunium_Box_30','(Limited)High Density Kalunium Box(30)','Usable',20,10,100,true,true,true,true,true,true,true,'getitem 6906,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`script`) VALUES (17552,'Garnet_Lucky_Scroll','Garnet Lucky Egg','Cash',10,true,'getgroupitem(IG_Garnet_Lucky_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17567,'Event_Almighty_Box__','Event Almighty Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 22902,1; bonus_script "{ bonus bAllStats,10; bonus bBaseAtk,30; bonus bMatk,30; }",1800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17568,'Event_Almighty_Box_100_','Event Almighty Box(100)','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 22902,11; bonus_script "{ bonus bAllStats,10; bonus bBaseAtk,30; bonus bMatk,30; }",1800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17569,'Dungeon_1_hour_Ticket_Box','Dungeon 1 Hour Ticket Box','Usable',20,10,100,true,true,true,true,true,true,true,'getitem 14505,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`script`) VALUES (17572,'Erzulie_Lucky_Scroll','Erzulie Lucky Egg','Cash',10,true,'getgroupitem(IG_Erzulie_Lucky_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`script`) VALUES (17584,'Venus_Lucky_Scroll','Venus Lucky Egg','Cash',10,true,'getgroupitem(IG_Venus_Lucky_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`script`) VALUES (17588,'Amora_Lucky_Scroll','Amora Lucky Egg','Cash',10,true,'getgroupitem(IG_Amora_Lucky_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`script`) VALUES (17598,'Sograt_Lucky_Scroll','Sograt Lucky Scroll','Cash',10,true,'getgroupitem(IG_Sograt_Lucky_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`script`) VALUES (17607,'Sanctuary_Lucky_Scroll','Sanctuary Lucky Egg','Cash',10,true,'getgroupitem(IG_Sanctuary_Lucky_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`script`) VALUES (17613,'Chronosian_Lucky_Scroll','Chronosian Lucky Egg','Cash',10,true,'getgroupitem(IG_Chronosian_Lucky_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`script`) VALUES (17628,'Cyborg_Lucky_Scroll','Cyborg Lucky Egg','Cash',10,true,'getgroupitem(IG_Cyborg_Lucky_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`script`) VALUES (17633,'Undine_Lucky_Scroll','Undine Lucky Egg','Cash',10,true,'getgroupitem(IG_Undine_Lucky_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17648,'Smithy_Lucky_Scroll','Smithy Lucky Egg','Cash',10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Smithy_Lucky_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17659,'Ganymede_Lucky_Scroll','Ganymede Lucky Egg','Cash',10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Ganymede_Lucky_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17665,'LastAngel_LuckyScroll','LastAngel LuckyScroll','Cash',10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_LastAngel_LuckyScroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17671,'Valkyrie_Lucky_Scroll','Valkyrie Lucky Egg','Cash',10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Valkyrie_Lucky_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17674,'Rainbow_Lucky_Scroll','Splash Rainbow Lucky Egg','Cash',10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Splash_Rainbow_Lucky_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17681,'Midgard_Lucky_Scroll','Midgard Lucky Scroll','Cash',10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Midgard_Lucky_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17692,'June_Lucky_Scroll','Blessing Scarlet Egg','Cash',10,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Blessing_Scarlet_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_noconsume`,`delay_duration`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22508,'Para_Team_Mark_','Eden Group Mark','Usable',true,1200000,100,true,true,true,true,true,true,true,true,'warp "moc_para01",171,115;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (22507,'ShabbyOldScroll','Old Scroll','Usable',10,10,'callfunc "F_22507";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22510,'King_Wolf_Scroll','King Wolf Scroll','Usable',10,10,100,true,true,true,true,true,true,true,'/*TODO, confirm the rates*/ getitem callfunc("F_Rand",6635,19598,5658,6238,6239),1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22511,'Fenrir_Card__','Fenrir\'s Power Scroll','Usable',10,10,100,true,true,true,true,true,true,'bonus_script "{ bonus bMatk,25; bonus bFixedCastRate,-50; }",300,1025;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22513,'King_of_Gift_Box','King of Gift Box','Usable',10,100,100,true,true,true,true,true,true,true,'/*TODO, confirm the rates*/ getitem callfunc("F_Rand",12817,4403,14512),1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (22514,'Candy_Holder','Candy Holder','Usable',20,10,true,'getrandgroupitem(IG_Candy_Holder,1); getrandgroupitem(IG_Candy_Holder,1); getrandgroupitem(IG_Candy_Holder,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`script`) VALUES (22518,'Idn_Wisdom_Egg','Egg Of Wisdom','Cash',10,10,1,'getgroupitem(IG_Idn_Wisdom_Egg);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22521,'Level_Up_Box_','Level Up Box','Cash',10,80,100,true,true,true,true,true,true,true,true,'/*TODO*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22522,'Level_Up_Box100','Level Up Box(100)','Cash',10,100,100,true,true,true,true,true,true,true,true,'getgroupitem(IG_Level_Up_Box100);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22523,'Level_Up_Box120','Level Up Box(120)','Cash',10,120,100,true,true,true,true,true,true,true,true,'getgroupitem(IG_Level_Up_Box120);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22524,'Level_Up_Box130','Level Up Box(130)','Cash',10,130,100,true,true,true,true,true,true,true,true,'getgroupitem(IG_Level_Up_Box130);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22525,'Level_Up_Box140','Level Up Box(140)','Cash',10,140,100,true,true,true,true,true,true,true,true,'getgroupitem(IG_Level_Up_Box140);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22526,'Level_Up_Box150','Level Up Box(150)','Cash',10,150,100,true,true,true,true,true,true,true,true,'getgroupitem(IG_Level_Up_Box150);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22527,'Level_Up_Box160','Level Up Box(160)','Cash',10,160,100,true,true,true,true,true,true,true,true,'getgroupitem(IG_Level_Up_Box160);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`class_all`,`gender`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22528,'Pet_Exchange_Ticket_Box','Pet Exchange Ticket Box','Cash',10,20,false,'Female',100,true,true,true,true,true,true,true,'/*TODO*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`script`) VALUES (22530,'Christmas_Box','Christmas Box','Cash',10,200,1,'getgroupitem(IG_Christmas_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`script`) VALUES (22531,'Special_Christmas_Box','Special Christmas Box','Cash',10,200,1,'getgroupitem(IG_Special_Christmas_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`script`) VALUES (22532,'Santa_Gift','Santa Gift','Cash',10,200,1,'getgroupitem(IG_Santa_Gift);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22533,'New_Year_Gift_Box','New Year Gift Box','Cash',10,200,1,100,true,true,true,true,true,true,true,true,'/*TODO*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`flag_buyingstore`,`script`) VALUES (22534,'Closedmind_Box','Closed Mind Box','Cash',10,1000,1,true,'getgroupitem(IG_Sealed_Mind_Box);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (22535,'WorkerScroll_A','Scroll Summoning Workers(Male)','Usable',10,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (22536,'WorkerScroll_B','Scroll Summoning Workers(Female)','Usable',10,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`equip_level_min`,`flag_container`,`script`) VALUES (22537,'PrizeOfHero','Prize Of Hero','Usable',100,1,true,'getrandgroupitem(IG_PrizeOfHero,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (22538,'Hanbok_bag','Hanbok bag','Usable',10,'sc_start SC_HANBOK,600000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`class_third`,`class_third_upper`,`class_third_baby`,`delay_duration`,`delay_status`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22540,'Runstone_Lux','Lux Anima Runestone','Delayconsume',2,10,true,true,true,5000,'Reuse_Limit_Luxanima',100,true,true,true,true,true,true,true,'itemskill "RK_LUXANIMA",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (22541,'PC_Room_Coupon_Box_VI','PC Room Coupon Box VI','Cash',10,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22542,'Center_Potion_B','Concentration Potion','Usable',10,100,100,true,true,true,true,true,true,'sc_start SC_ASPDPOTION0,1800000,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_mage`,`job_swordman`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22543,'Berserk_Potion_B','Berserk Potion','Usable',10,200,true,true,100,true,true,true,true,true,true,'sc_start SC_ASPDPOTION2,1800000,9;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22544,'Awakening_Potion_B','Awakening Potion','Usable',10,150,100,true,true,true,true,true,true,'sc_start SC_ASPDPOTION1,1800000,6;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22545,'Speed_Potion','Speed Potion','Usable',10,100,100,true,true,true,true,true,true,true,'sc_start SC_SPEEDUP1,5000,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22546,'Slow_Potion','Slow Potion','Usable',10,100,100,true,true,true,true,true,true,true,'sc_start SC_SLOWDOWN,5000,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (22547,'Anti-Payne_Moment','Anti-Payne Moment','Usable',10,100,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (22548,'Wed_Cursed','Wed Cursed','Usable',10,30,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22549,'Poison_Bottle_','Poison Bottle','Usable',10,100,100,true,true,true,true,true,true,'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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (22550,'Cookie_Bag_B','Sweets Pocket','Usable',10,70,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (22551,'Sesame_Pastry_B','Teacake','Usable',10,70,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (22552,'Honey_Pastry_B','Fried Pastry','Usable',10,70,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (22553,'Rainbow_Cake_B','Rainbow Bread','Usable',10,70,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22554,'First_Aid_Box','First Aid Box','Cash',10,200,100,true,true,true,true,true,true,'getrandgroupitem(IG_FirstAid,1); getrandgroupitem(IG_FirstAid,1); getrandgroupitem(IG_FirstAid,1); getrandgroupitem(IG_FirstAid,1); getrandgroupitem(IG_FirstAid,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nosell`,`trade_nocart`) VALUES (22555,'Gourmet_Chocolate','Gourmet Chocolate','Healing',10,10,100,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nosell`,`trade_nocart`) VALUES (22556,'Luxury_Chocolate','Luxury Chocolate','Healing',10,10,100,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nosell`,`trade_nocart`) VALUES (22557,'Masterpieces_of_Artisan_Chocolate','Masterpieces of Artisan Chocolate','Healing',10,10,100,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (22558,'Lucky_Bag','Lucky Bag','Usable',20,10,true,'getrandgroupitem(IG_Lucky_Bag,1);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`delay_duration`,`delay_status`,`script`) VALUES (22559,'Mock_Strawberry','Mock Strawberry','Delayconsume',20,100,3000,'Reuse_Limit_G','percentheal 50,50; itemskill "SM_ENDURE",3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (22563,'Lucky_Bag_Of_New_Era','Lucky Bag Of New Era','Usable','/* TODO */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nomail`,`trade_noauction`) VALUES (22567,'Squad_Prize','Expedition Award Box','Healing',20,100,100,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`gender`,`location_right_hand`) VALUES (22568,'Nyd_Summon_Scroll','Nidhoggur Summon Scroll','Healing',20,100,'Female',true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (22569,'Gift_New_start','Gift New start','Cash',10,100,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (22571,'Easter_Egg','Easter Egg','Delayconsume',10,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (22592,'Happy_Call_Box','Happy Call Box','Cash',10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (22605,'Gingerbread2','Ginger Bread','Usable',10,10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22610,'New_Beginnings_Box','New Beginnings Box','Usable',10,10,100,true,true,true,true,true,true,true,'getitem 12803,1; getitem 12802,1; getitem 12809,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (22611,'Packing_Envelope','Packed Envelope','Delayconsume',10,10,'/* TODO */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (22612,'Corrupt_Reagents','Corrupt Reagents','Delayconsume',10,50,'/* TODO */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (22613,'Contaminated_Reagents','Contaminated Reagents','Delayconsume',10,50,'/* TODO */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22614,'Premium_Manual','Premium Manual','Usable',2,100,true,true,true,true,true,true,true,true,'sc_start SC_EXPBOOST,8640000,50; sc_start SC_ITEMBOOST,8640000,200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (22617,'Clear_Box_S','Clear Box S','Cash',10,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (22618,'Clear_Box_A','Clear Box A','Cash',10,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22619,'Ghost_Summon_Scroll','Ghost Scroll','Usable',100,true,true,true,true,true,true,true,'/* mercenary_create M_E_DEVILING,1800000; */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`,`script`) VALUES (22620,'Memorial_Box','Box Of Memories','Usable',true,'/* TODO */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (22621,'Squid_Bbq','Barbecued Squid','Usable',5000,250,true,'specialeffect2 EF_EXIT; sc_start SC_JP_EVENT04,300000,25; percentheal 5,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22623,'New_Start_Box','New Start Box','Cash',10,10,100,true,true,true,true,true,true,true,'getitem 12803,1; getitem 12802,1; getitem 12809,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (22624,'Riesen_Bretzel','Riesen Bretzel','Healing','percentheal 100,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (22625,'Oktoberfest_Bag','Oktoberfest Bag','Usable',100,'sc_start SC_OKTOBERFEST,600000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22626,'January_Gift_Box','January Gift Box','Usable',100,100,true,true,true,true,true,true,true,'rentitem 19052,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22627,'February_Gift_Box','February Gift Box','Usable',100,100,true,true,true,true,true,true,true,'getitem 12105,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (22628,'Green_Package','Green Package','Cash',100,'getitem 17162,1; getitem 14534,5; getitem 12323,20; getitem 12324,20; getitem 12325,10; getitem 14533,2; getitem 22629,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (22629,'Green_Package40','Green Package 40','Cash',100,'getitem 14289,1; getitem 12215,10; getitem 12216,10; getitem 14534,10; getitem 14533,5; getitem 12766,5; getitem 22630,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (22630,'Green_Package80','Green Package 80','Cash',100,'getitem 7621,5; getitem 12209,5; getitem 14527,10; getitem 14533,5; getitem 12766,5; getitem 22631,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (22631,'Green_Package99','Green Package 99','Cash',100,'getitem 12213,1; getitem 7676,1; getitem 5883,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (22640,'17173_Green_Package','Green Package','Cash',100,'getitem 17162,1; getitem 14534,5; getitem 12323,20; getitem 12324,20; getitem 12325,10; getitem 14533,2; getitem 22641,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (22641,'17173_Green_Package40','Green Package 40','Cash',100,'getitem 14289,1; getitem 12215,10; getitem 12216,10; getitem 14534,10; getitem 14533,5; getitem 12766,5; getitem 22642,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (22642,'17173_Green_Package80','Green Package 80','Cash',100,'getitem 7621,5; getitem 12209,5; getitem 14527,10; getitem 14533,5; getitem 12766,5; getitem 22643,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (22643,'17173_Green_Package99','Green Package 99','Cash',100,'getitem 12213,1; getitem 7676,1; getitem 5883,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (22644,'S_Green_Package','Green Package','Cash',100,'getitem 17162,1; getitem 14534,5; getitem 12323,20; getitem 12324,20; getitem 12325,10; getitem 14533,2; getitem 22645,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (22645,'S_Green_Package40','Green Package 40','Cash',100,'getitem 14289,1; getitem 12215,10; getitem 12216,10; getitem 14534,10; getitem 14533,5; getitem 12766,5; getitem 22646,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (22646,'S_Green_Package80','Green Package 80','Cash',100,'getitem 7621,5; getitem 12209,5; getitem 14527,10; getitem 14533,5; getitem 12766,5; getitem 22647,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (22647,'S_Green_Package99','Green Package 99','Cash',100,'getitem 12213,1; getitem 7676,1; getitem 5883,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (22648,'Angeling_Package','Angel Ring Package','Usable',20,10,true,'getitem callfunc("F_Rand",12539,6230,6234/*,Angeling Balloon*/),1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (22649,'Deviling_Package','Devil Ring Package','Usable',20,10,true,'getitem callfunc("F_Rand",603,6230,6234/*,Angeling Balloon*/),1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22652,'Briliant_Hat_Box','Brilliant Hat Box','Usable',10,200,100,true,true,true,true,true,true,true,'/* TODO */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (22653,'Wet_Card_Album','Wet Card Album','Usable',10000,50,'/* TODO */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (22657,'Honey_Songpyun_','Honey Songpyun','Healing',20,200,'percentheal 20,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (22659,'Pig_Steamed_Ribs','Pig Steamed Ribs','Healing',20,100,'bonus_script "{ bonus bAspdRate,5; bonus bUseSPrate,-2; }",180;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (22658,'Cow_Steamed_Ribs','Cow Steamed Ribs','Healing',20,100,'bonus_script "{ bonus bVariableCastrate,5; bonus bUseSPrate,-3; }",180;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`script`) VALUES (22669,'HALLOWEEN_G_BOX','Halloween Box','Usable',200,true,'getgroupitem(IG_HALLOWEEN_G_BOX);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (22670,'DARK_INVITATION','Invitation of Darkness','Usable',10,10,'.@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; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22671,'March_Gift_Box','March Gift Box','Usable',10,100,100,true,true,true,true,true,true,true,'/*2 Lucky Eggs*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22672,'April_Gift_Box','April Gift Box','Usable',10,100,100,true,true,true,true,true,true,true,'rentitem callfunc("F_Rand",2566,2856,2857,15023),1209600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22673,'May_Gift_Box','May Gift Box','Usable',10,100,100,true,true,true,true,true,true,true,'getitem 22777,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22674,'June_Gift_Box','June Gift Box','Usable',10,100,100,true,true,true,true,true,true,true,'/*1 Potion Box*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (22676,'Hangul_Day_Event_Box','Hangul Day Event Box','Usable',20,'getitem 22675,10; getitem 607,9;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (22675,'Mysterious_Scroll','Mysterious Scroll','Usable',20,10,'sc_start SC_INTFOOD,3600000,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`equip_level_min`,`flag_buyingstore`,`script`) VALUES (22679,'Chest_Of_Death','Death\'s Chest','Usable',170,true,'getitem rand(6814,6819),1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22685,'Solo_Christmas_Gift','Single Union Christmas Gift','Usable',true,100,true,true,true,true,true,true,'getgroupitem(IG_Solo_Christmas_Gift);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (22686,'Solo_Cookie','Single Cookie','Healing',50,'percentheal 5,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`equip_level_min`,`flag_buyingstore`,`delay_duration`,`delay_status`,`script`) VALUES (22687,'Pieces_Of_Sentiment','Sentimental Fragment','Delayconsume',1,100,true,5000,'Reuse_Limit_F','callfunc("F_Pieces_Of_Sentiment");'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22691,'Piece_Of_Record1','Record Fragment','Healing',100,true,true,true,true,true,true,true,true,'warp "un_bk_q",98,143;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22692,'Piece_Of_Record2','Record Fragment','Healing',100,true,true,true,true,true,true,true,true,'warp "un_bk_q",45,276;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22693,'Piece_Of_Record3','Record Fragment','Healing',100,true,true,true,true,true,true,true,true,'warp "un_bk_q",217,346;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22694,'Piece_Of_Record4','Record Fragment','Healing',100,true,true,true,true,true,true,true,true,'warp "un_bk_q",273,235;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22695,'Piece_Of_Record5','Record Fragment','Healing',100,true,true,true,true,true,true,true,true,'warp "un_bk_q",275,290;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (22699,'Test_Reagent','Test Reagent','Usable',30,true,'bonus_script "bonus bFlee,100;",5,9; sc_start SC_BLIND,5000,0,10000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22700,'Jumping_Support_Box','Jumping Support Box','Cash',10,100,true,true,true,true,true,true,true,true,'/*TODO: getitem 12529,1; getitem 12323,200; getitem 12324,50; and 5 boxes that containing quivers + oridecons*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (22702,'STR_Soul_Potion','STR Reduction Potion','Delayconsume',10,'callfunc "F_CashReduceStat",bStr,-1,22702;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (22703,'AGI_Soul_Potion','STR Reduction Potion','Delayconsume',10,'callfunc "F_CashReduceStat",bAgi,-1,22703;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (22704,'VIT_Soul_Potion','STR Reduction Potion','Delayconsume',10,'callfunc "F_CashReduceStat",bVit,-1,22704;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (22705,'INT_Soul_Potion','STR Reduction Potion','Delayconsume',10,'callfunc "F_CashReduceStat",bInt,-1,22705;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (22706,'DEX_Soul_Potion','STR Reduction Potion','Delayconsume',10,'callfunc "F_CashReduceStat",bDex,-1,22706;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (22707,'LUK_Soul_Potion','STR Reduction Potion','Delayconsume',10,'callfunc "F_CashReduceStat",bLuk,-1,22707;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22708,'Pitapat_Box','Thrilling Box','Usable',10,100,100,true,true,true,true,true,true,true,'/*No clue the random item yet*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (22721,'?_Box','? Box','Cash',10,'/*No clue the random item yet*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22734,'Revolution_Quiz_Box','Revolution Quiz Box','Cash',10,10,100,true,true,true,true,true,true,true,true,'getitem 6635,2; getitem 6423,1; /*1x Enchanted Letter Introduction*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22735,'Sealed_Moonlight_Flower_Scroll','Sealed Moonlight Flower Scroll','Cash',10,10,100,true,true,true,true,true,true,true,'/*TODO: Confirm the rates*/ getitem callfunc("F_Rand",6228,6232,24150,19934,6635,17474),1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22736,'July_Gift_Box','July Gift Box','Usable',10,100,100,true,true,true,true,true,true,true,'getitem 20212,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (22737,'Bullet_Case_Blood_','Bloody Cartridge','Usable',10,250,'getitem 13222,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (22738,'Bullet_Case_Silver_','Silver Cartridge','Usable',10,250,'getitem 13221,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (22739,'Sphere_Case_Wind_','Lightning Sphere Pack','Usable',10,350,'getitem 13224,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (22740,'Sphere_Case_Darkness_','Blind Sphere Pack','Usable',10,350,'getitem 13226,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (22741,'Sphere_Case_Poison_','Poison Sphere Pack','Usable',10,350,'getitem 13225,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (22742,'Sphere_Case_Water_','Freezing Sphere Pack','Usable',10,350,'getitem 13227,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (22743,'Sphere_Case_Fire_','Flare Sphere Pack','Usable',10,350,'getitem 13223,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (22744,'Bullet_Case_AP','Armor-Piercing Cartridge','Usable',10,250,'getitem 13215,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (22745,'Bullet_Case_Blaze','Incandescence Shot Cartridge','Usable',10,250,'getitem 13216,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (22746,'Bullet_Case_Fleeze','Glaciation Shot Cartridge','Usable',10,250,'getitem 13217,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (22747,'Bullet_Case_Electric','Dengeki Shot Cartridge','Usable',10,250,'getitem 13218,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (22748,'Bullet_Case_Stone','Hearthstone Shot Cartridge','Usable',10,250,'getitem 13219,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (22749,'Sanctified_Bullet_Case','Purification Shot Cartridge','Usable',10,250,'getitem 13220,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (22750,'Trans_Scroll_Horn_Scaraba','Transformation Scroll(Horn Scaraba)','Usable',10,10,'transform 2161,1200000,SC_MTF_ASPD2,2,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (22751,'Trans_Scroll_Wanderer','Transformation Scroll(Wanderer)','Usable',10,10,'transform 1208,1200000,SC_MTF_ASPD2,2,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (22752,'Trans_Scroll_Gazeti','Transformation Scroll(Gazeti)','Usable',10,10,'transform 1778,1200000,SC_MTF_RANGEATK2,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (22753,'Trans_Scroll_Kobold_Archer','Transformation Scroll(Kobold Archer)','Usable',10,10,'transform 1282,1200000,SC_MTF_RANGEATK2,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (22754,'Trans_Scroll_Necromancer','Transformation Scroll(Necromancer)','Usable',10,10,'transform 1870,1200000,SC_MTF_RANGEATK2,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (22755,'Trans_Scroll_Wind_Ghost','Transformation Scroll(Wind Ghost)','Usable',10,10,'transform 1263,1200000,SC_MTF_MATK2,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22756,'August_Gift_Box','August Gift Box','Usable',10,100,100,true,true,true,true,true,true,true,'getitem 12246,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (22757,'Collection_Of_Scrolls_Magical_Transformation','Collection Of Scrolls Magical Transformation','Cash',10,200,'getitem 22755,1; getitem 22754,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (22758,'Collection_Of_Scrolls_Shooting_Transformation','Collection Of Scrolls Shooting Transformation','Cash',10,200,'getitem 22753,1; getitem 22752,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (22759,'Collection_Of_Scrolls_Attack_Speed_Transformation','Collection Of Scrolls Attack Speed Transformation','Cash',10,'getitem 22751,1; getitem 22750,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22760,'Argiope_Transportin','Argiope Transportin','Usable',10,100,true,true,true,true,true,true,true,true,'/*No Info*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22761,'Luciola_Vespa_Transportin','Luciola Vespa Transportin','Usable',10,100,true,true,true,true,true,true,true,true,'/*No Info*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22762,'Centipede_Transportin','Centipede Transportin','Usable',10,100,true,true,true,true,true,true,true,true,'/*No Info*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22764,'Pet_Exchange_Ticket_Box_','Pet Exchange Ticket Box','Cash',10,10,1,100,true,true,true,true,true,true,true,'/*TODO: Confirm the allowed pet_id and chance*/ getitem callfunc("F_Rand",6116,6117,6118,6129,6130,6130,6132,6133,6134,6135,6136,6137,6138,6139,6140,6141,6142,6143),1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (22770,'Shark_Skewer','Shark Skewer','Healing',10,10,true,'/*No Info*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (22771,'Bluefin_Tuna_Skewer','Bluefin Tuna Skewer','Healing',10,10,true,'sc_start SC_INCATKRATE,5000,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (22772,'Sea_Bream_Skewer','Sea Bream Skewer','Healing',10,10,true,'sc_start SC_INCMATKRATE,5000,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (22773,'Piranha_Skewer','Piranha Skewer','Healing',10,10,true,'sc_start SC_ASPDPOTION0,5000,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (22774,'Salmon_Skewer','Salmon Skewer','Healing',10,10,true,'sc_start SC_SPEEDUP0,5000,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (22775,'Eels_Skewer','Eels Skewer','Healing',10,10,true,'sc_start SC_DEF_RATE,5000,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (22776,'Carp_Skewer','Carp Skewer','Healing',10,10,true,'sc_start SC_MDEF_RATE,5000,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22777,'Gift_Buff_Set','Gift Buff Set','Usable',10,100,1,100,true,true,true,true,true,true,true,'getgroupitem(IG_Gift_Buff_Set);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22781,'PC_Bang_Normal_Box','PC Bang Normal Box','Usable',10,200,1,100,true,true,true,true,true,true,true,'getitem 547,20; /*No Info*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22782,'PC_Bang_Wooden_Box','PC Bang Wooden Box','Usable',10,200,1,100,true,true,true,true,true,true,true,'getitem 547,30; /*No Info*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22783,'PC_Bang_Golden_Box','PC Bang Golden Box','Usable',10,200,1,100,true,true,true,true,true,true,true,'getitem 547,1; getitem 985,10; /*No Info*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22784,'PC_Bang_Platinum_Box','PC Bang Platinum Box','Usable',10,200,1,100,true,true,true,true,true,true,true,'getitem 547,1; getitem 12017,10; getitem 678,12; /*No Info*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22979,'C_Battle_Gum_2','[Sale] Battle Manual and Bubble Gum','Usable',100,true,true,true,true,true,true,true,'sc_start SC_EXPBOOST,1800000,50; sc_start SC_ITEMBOOST,1800000,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`class_all`,`gender`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (22808,'Special_Gift_Box','Special Gift Box','Usable',10,100,false,'Female',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22812,'Sealed_Dracula_Scroll','Sealed Dracula Scroll','Usable',10,10,1,100,true,true,true,true,true,true,true,'getitem callfunc("F_Rand",6228,6232,22813,19937,17314, 6635),1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22813,'Bearer\'s_Shadow_Box','Bearer\'s Shadow Box','Usable',10,10,1,100,true,true,true,true,true,true,true,'getitem callfunc("F_Rand",24180,24181,24182,24183,24184,24185),1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`equip_level_min`,`script`) VALUES (22822,'Summer_Vacation_Costumes','Summer Vacation Costumes','Usable',100,1,'sc_start SC_DRESSUP,600000,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`class_all`,`gender`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22823,'Sealed_Sniper_Scroll','Sealed Sniper Scroll','Usable',10,10,false,'Female',100,true,true,true,true,true,true,true,'/*getitem callfunc("F_Rand",4491,6228,6232,24196, Hasty Shadow Armor, 19882, 17474, 6635),1;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`script`) VALUES (22826,'Enchant_Stone_Box4','Costume Enchantment Stone Box 4','Usable',10,100,1,'getitem callfunc("F_Rand",6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6740,6741,6742,6743,6744,6745,6790,6791,6792,6908),1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`class_all`,`gender`,`script`) VALUES (22827,'Shadow_Cube','Shadow Cube','Usable',10,10,false,'Female','/*No Info*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22828,'Sealed_Album_Scroll','Sealed Album Scroll','Usable',10,100,1,100,true,true,true,true,true,true,true,'getitem callfunc("F_Rand",22829,6232,6228,24208,24209,17474/*,Enchanted Letter*/),1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22829,'Sealed_Card_Album','Sealed Card Album','Usable',10,100,1,100,true,true,true,true,true,true,true,'getitem callfunc("F_Rand",4488,4497,4486,4480,4485,4539,4487,4494,4538,4489,4490,4482,4503,4483,4491),1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22837,'Integer_Time','Integer Time','Usable',10,50,1,100,true,true,true,true,true,true,true,true,'getitem 673,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`script`) VALUES (22838,'Something_Candy_Holder','Something Candy Holders','Usable',10,10,1,'getgroupitem(IG_Something_Candy_Holder);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22842,'Sealed_Dracula_Scroll_II','Sealed Dracula Scroll II','Usable',10,10,1,100,true,true,true,true,true,true,true,'getitem callfunc("F_Rand",22846,6228,6232,24223,24227,17474/*, Enchant Letter*/),1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (22843,'Superstar_Snack','Superstar Snack','Usable',10,10,'bonus_script "{ bonus bAtk2,50; bonus bMatk,50; }",300;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`class_all`,`gender`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22844,'Sealed_Dracula_Card_Album','Sealed Dracula Card Album','Usable',10,10,false,'Female',100,true,true,true,true,true,true,true,'/*No Info*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22845,'Sealed_Fortune_Egg','Sealed Fortune Egg','Usable',10,10,1,100,true,true,true,true,true,true,true,'getitem callfunc("F_Rand",4488,4497,4486,4480,4485,4539,4487,4494,4538,4489,4490,4482,4503,22846),1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22846,'Sealed_Dracula_Card_','Sealed Dracula Card','Usable',10,10,100,true,true,true,true,true,true,'bonus_script "{ bonus2 bSPDrainRate,50,5; }",300;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (22847,'Prontera_Medal','Prontera Medal','Usable',10,10,true,'warp "prontera",159,192; /*No coord info*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (22848,'Prison_Key','Prison Key','Usable',10,10,true,'warp "prt_prison",0,0; /*No coord info*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (22849,'Prontera_Time_Crystal','Prontera Time Crystal','Usable',10,10,true,'warp "prt_q",155,27;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22850,'January_Gift_Box_','January Gift Box','Usable',10,100,100,true,true,true,true,true,true,true,'rentitem 19052,604800;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22851,'February_Gift_Box_','February Gift Box','Usable',10,100,100,true,true,true,true,true,true,true,'getitem 12105,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22852,'March_Gift_Box_','March Gift Box','Usable',10,100,100,true,true,true,true,true,true,true,'/*2 Lucky Eggs*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22853,'April_Gift_Box_','April Gift Box','Usable',10,100,100,true,true,true,true,true,true,true,'rentitem callfunc("F_Rand",2566,2856,2857,15023),1209600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22854,'May_Gift_Box_','May Gift Box','Usable',10,100,100,true,true,true,true,true,true,true,'getitem 22777,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22855,'June_Gift_Box_','June Gift Box','Usable',10,100,100,true,true,true,true,true,true,true,'/*1 Potion Box*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22856,'July_Gift_Box_','July Gift Box','Usable',10,100,100,true,true,true,true,true,true,true,'getitem 20212,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22857,'August_Gift_Box_','August Gift Box','Usable',10,100,100,true,true,true,true,true,true,true,'getitem 12246,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22858,'September_Gift_Box','September Gift Box','Usable',10,100,100,true,true,true,true,true,true,true,'/*2 Lucky Eggs*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22859,'October_Gift_Box','October Gift Box','Usable',10,100,100,true,true,true,true,true,true,true,'getitem 12529,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22860,'November_Gift_Box','November Gift Box','Usable',10,100,100,true,true,true,true,true,true,true,'rentitem callfunc("F_Rand",2566,2856,2857,15023),1209600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22861,'December_Gift_Box','December Gift Box','Usable',10,100,100,true,true,true,true,true,true,true,'getitem 22869,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`script`) VALUES (22868,'Enchant_Stone_Box5','Costume Enchantment Stone Box 5','Usable',20,10,1,'getgroupitem(IG_Enchant_Stone_Box5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22869,'Lucky_Roulette_Tickets','Lucky Roulette Ticket','Usable',10,100,50,100,true,true,true,true,true,true,true,true,'RouletteBronze++;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22873,'Sealed_Beelzebub_Scroll_II','Sealed Beelzebub Scroll II','Usable',10,10,100,true,true,true,true,true,true,true,'getitem callfunc("F_Rand",22875,6238,6239,6228,6232,24231,24232,17474,6635),1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22874,'Sealed_Beelzebub_Card_Album','Sealed Beelzebub Card Album','Usable',10,50,100,true,true,true,true,true,true,true,'/*No Info*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (22876,'Old_Money_Pocket','Old Money Pocket','Usable','Zeny += rand(500,550);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22881,'Binding_Rope','Rope Gallows','Usable',10,100,true,true,true,true,true,true,true,'/*Used to catch a Lost Sheep*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (22882,'Choco_Tteokguk','Chocolate Rice Cake Soup','Usable',10,'percentheal 10,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22883,'September_Gift_Box_','September Gift Box','Usable',10,100,100,true,true,true,true,true,true,true,'/*2 Lucky Eggs*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22884,'October_Gift_Box_','October Gift Box','Usable',10,100,100,true,true,true,true,true,true,true,'getitem 12529,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22885,'November_Gift_Box_','November Gift Box','Usable',10,100,100,true,true,true,true,true,true,true,'rentitem callfunc("F_Rand",2566,2856,2857,15023),1209600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22886,'December_Gift_Box_','December Gift Box','Usable',10,100,100,true,true,true,true,true,true,true,'getitem 22869,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22887,'PC-Room_Box','PC-Room Box','Usable',20,10,100,true,true,true,true,true,true,true,true,'getitem 12531,1; getitem callfunc("F_Rand",6230,6234,22654),1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22888,'New_Year\'s_Scroll','New Year\'s Scroll','Usable',10,10,100,true,true,true,true,true,true,true,'getitem callfunc("F_Rand",6238,6239,6228,6232,24240,24241,24242,17474),1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22893,'New_Year\'s_Shadow_Cube','New Year\'s Shadow Cube','Usable',20,10,100,true,true,true,true,true,true,true,'/*Get a random Shadow Equip (No info which one)*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22894,'Limited_2015_Neuralizer','(Limited)2015 Neuralizer','Usable',20,100,true,true,true,true,true,true,true,true,'callfunc "F_CashReset";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22895,'Limited_2015_Status_Initialization_Volume','(Limited)2015 Status Initialization Volume','Usable',20,100,true,true,true,true,true,true,true,true,'/*Works like item 6320, can reset up to 3x within 1 hour*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22896,'Limited_Old_Status_Initialization_Volume','(Limited)Old Status Initialization Volume','Usable',20,100,true,true,true,true,true,true,true,true,'/*Works like item 6320, can reset up to 3x within 1 hour*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (22899,'Parchment_City','Parchment City','Usable',20,'itemskill "AL_INCAGI",1; heal -15,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22901,'Question_Old_Blue_Box','Mysterious Blue Box','Usable',20,100,true,true,true,true,true,true,true,'callfunc("F_Mysterious_box");'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22902,'Sealed_Card_Album_Scroll_II','Sealed Card Album Scroll II','Usable',20,10,100,true,true,true,true,true,true,true,'getitem callfunc("F_Rand",6238,6239,17474,22829,24243,24244,24245),1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`script`) VALUES (22905,'Enchant_Stone_Box6','Costume Enchantment Stone Box 6','Usable',10,10,1,'getgroupitem(IG_Enchant_Stone_Box6);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`script`) VALUES (22953,'Enchant_Stone_Box7','Costume Enchantment Stone Box 7','Usable',10,10,1,'getgroupitem(IG_Enchant_Stone_Box7);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (22984,'Kahluna_Milk','Kahluna Milk','Healing',6,10,'sc_start SC_DORAM_BUF_01, 180000, 0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (22985,'Basil','Basil','Healing',10,10,'sc_start SC_DORAM_BUF_02, 180000, 0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`script`) VALUES (23001,'Enchant_Stone_Box8','Costume Enchantment Stone Box 8','Usable',10,10,1,'getgroupitem(IG_Enchant_Stone_Box8);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (23012,'S_Small_Mana_Potion','[Sale] Small Mana Potion','Usable',10,100,true,true,true,true,true,true,true,'bonus_script "bonus2 bRegenPercentSP,5,5000;",600,9; /* fix me: unknown flag and specialeffect ; disabled when LK_BERSERK */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (23016,'Cursed_Fragment','Cursed Fragment','Usable',1,1,'callfunc("F_Cursed_Fragment");'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (23038,'S_Slim_White_Box','[Sale] Slim White Potion Box','Usable',100,true,true,true,true,true,true,true,'getitem 11573,200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`delay_duration`,`delay_status`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (23042,'S_Seed_Of_Yggdrasil','[NotForSale]Yggdrasil Seed','Healing',300,3000,'Reuse_Limit_G',100,true,true,true,true,true,true,true,'percentheal 50,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (23043,'S_Seed_Of_Yggdrasil_Box','[Sale] Yggdrasil Seed Box','Usable',100,true,true,true,true,true,true,true,'getitem 23042,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (23046,'S_Mystic_Powder','[Sale] Mystic Powder','Usable',100,true,true,true,true,true,true,true,'bonus_script "{ bonus bFlee,20; bonus bLuk,10; }",300,9; /* fix me: unknown flag and specialeffect */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (23047,'S_Blessing_Tyr','[Sale] Blessing of Tyr','Usable',10,100,true,true,true,true,true,true,true,'sc_start SC_FLEEFOOD,300000,30; sc_start SC_HITFOOD,300000,30; sc_start SC_ATKPOTION,300000,20; sc_start SC_MATKPOTION,300000,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (23048,'S_Resilience_Potion','[Sale] Resilience Enhancement Potion','Usable',10,100,true,true,true,true,true,true,true,'bonus_script "bonus bAddItemHealRate,20;",1800,9; /* fix me: unknown flag and specialeffect */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`script`) VALUES (23058,'Enchant_Stone_Box9','Costume Enchantment Stone Box 9','Usable',10,10,1,'getgroupitem(IG_Enchant_Stone_Box9);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (23076,'Build_Up_Potion_SS','Build Up Potion SS','Usable',10,10,'if (strcharinfo(3) == "slabw01") { sc_start SC_EP16_2_BUFF_SS,10000,0; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (23077,'Build_Up_Potion_SC','Build Up Potion SC','Usable',10,10,'if (strcharinfo(3) == "slabw01") { sc_start SC_EP16_2_BUFF_SC,10000,0; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (23078,'Build_Up_Potion_AC','Build Up Potion AC','Usable',10,10,'if (strcharinfo(3) == "slabw01") { sc_start SC_EP16_2_BUFF_AC,10000,0; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (23080,'Cursed_Crystal','Cursed Crystal','Usable',1,500,'callfunc("F_Cursed_Crystal");'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`script`) VALUES (23086,'Enchant_Stone_Box10','Costume Enchantment Stone Box 10','Usable',10,10,1,'getgroupitem(IG_Enchant_Stone_Box10);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (23087,'Small_Leather_Bag','Small Leather Bag','Usable',100,true,true,true,true,true,true,true,'getitem 25180,1; getitem 25181,1; getitem 25182,1; getitem 25183,1; getitem 25184,1; getitem 25185,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (23123,'Bullet_Case_Flare','Flare Bullet Cartridge','Usable',10,250,'getitem 13228,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (23124,'Bullet_Case_Lighting','Lightning Bullet Cartridge','Usable',10,250,'getitem 13229,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (23125,'Bullet_Case_Ice','Ice Bullet Cartridge','Usable',10,250,'getitem 13230,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (23126,'Bullet_Case_Poison','Poison Bullet Cartridge','Usable',10,250,'getitem 13231,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (23127,'Bullet_Case_Blind','Blind Bullet Cartridge','Usable',10,250,'getitem 13232,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`script`) VALUES (23174,'Enchant_Stone_Box11','Costume Enchantment Stone Box 11','Usable',10,10,1,'getgroupitem(IG_Enchant_Stone_Box11);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (23177,'Kafra_Card_','Kafra Card','Usable',2,10,100,true,true,true,true,true,true,true,'callfunc "F_CashStore";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (23188,'Unprocessed_Parts','Unprocessed Parts','Usable',10,'pet 1632;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (23189,'Small_Needle_Kit','Small Needle Kit','Usable',10,'pet 1622;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (23187,'Sap_Liquid','Sap Liquid','Usable',10,'pet 1180;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (23191,'Varetyr_Spear_Scroll_1_5','Level 5 Varetyr Spear','Delayconsume',10,10,'itemskill "SO_VARETYR_SPEAR",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (23192,'Diamond_Dust_Scroll_1_5','Level 5 Diamond Dust','Delayconsume',10,10,'itemskill "SO_DIAMONDDUST",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (23193,'Crimson_Rock_Scroll_1_5','Level 5 Crimson Rock','Delayconsume',10,10,'itemskill "WL_CRIMSONROCK",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (23194,'Sienna_Execrate_Scroll_1_5','Level 5 Sienna Execrate','Delayconsume',10,10,'itemskill "WL_SIENNAEXECRATE",5,true;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (23196,'Agust_Lucky_Scroll','Shining Blue Lucky Egg','Cash',10,10,1,true,100,true,true,true,true,true,true,true,'getgroupitem(IG_Agust_Lucky_Scroll);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (23228,'Hazy_Mooncake','Hazy Mooncake','Healing',768,10,true,'/* unknown */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (23256,'Elixir_Bandages','Elixir Bandages','Usable',10,'pet 1041;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`equip_level_min`,`delay_duration`,`script`) VALUES (23277,'Mado_Box','Emergency Magic Gear','Usable',10000,3000,true,true,true,true,100,180000,'setmadogear 1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`equip_level_min`,`equip_level_max`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (23280,'N_Fly_Wing_','Novice Fly Wing','Delayconsume',10,1,98,100,true,true,true,true,true,true,true,'itemskill "AL_TELEPORT",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (23288,'Compressed_Wing_Of_Fly','Compressed Fly Wing','Delayconsume',1000,10,'itemskill "AL_TELEPORT",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`script`) VALUES (23299,'Enchant_Stone_Box12','Costume Enchantment Stone Box 12','Usable',10,10,1,'getgroupitem(IG_Enchant_Stone_Box12);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (23307,'S_Shining_Def_Scroll','[Sale] Shining Defense Scroll','Usable',10,100,true,true,true,true,true,true,true,'bonus_script "{ bonus bDef,500; bonus bMdef,200; }",600; /* fix me: unknown flag and specialeffect */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (23340,'S_Megaphone','[Sale] Megaphone','Usable',10,100,true,true,true,true,true,true,'input .@megaphone$; announce strcharinfo(0) + ": " + .@megaphone$,bc_all,0xFF0000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`script`) VALUES (23524,'Enchant_Stone_Box13','Costume Enchantment Stone Box 13','Usable',10,10,1,'getgroupitem(IG_Enchant_Stone_Box13);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`script`) VALUES (23629,'Enchant_Stone_Box14','Costume Enchantment Stone Box 14','Usable',10,10,1,'getgroupitem(IG_Enchant_Stone_Box14);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`script`) VALUES (23682,'Enchant_Stone_Box15','Costume Enchantment Stone Box 15','Usable',10,10,1,'getgroupitem(IG_Enchant_Stone_Box15);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_noconsume`,`script`) VALUES (100065,'WL_MB_SG','Spell Book (Storm Gust)','Delayconsume',true,'itemskill "WL_READING_SB_READING",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_noconsume`,`script`) VALUES (100066,'WL_MB_LOV','Spell Book (Lord of Vermilion)','Delayconsume',true,'itemskill "WL_READING_SB_READING",2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_noconsume`,`script`) VALUES (100067,'WL_MB_MS','Spell Book (Meteor Storm)','Delayconsume',true,'itemskill "WL_READING_SB_READING",3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_noconsume`,`script`) VALUES (100068,'WL_MB_DL','Spell Book (Drain Life)','Delayconsume',true,'itemskill "WL_READING_SB_READING",4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_noconsume`,`script`) VALUES (100069,'WL_MB_JF','Spell Book (Jack Frost)','Delayconsume',true,'itemskill "WL_READING_SB_READING",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_noconsume`,`script`) VALUES (100070,'WL_MB_ES','Spell Book (Earth Strain)','Delayconsume',true,'itemskill "WL_READING_SB_READING",6;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_noconsume`,`script`) VALUES (100071,'WL_MB_CR','Spell Book (Crimson Rock)','Delayconsume',true,'itemskill "WL_READING_SB_READING",7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_noconsume`,`script`) VALUES (100072,'WL_MB_CL','Spell Book (Chain Lightning)','Delayconsume',true,'itemskill "WL_READING_SB_READING",8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_noconsume`,`script`) VALUES (100073,'WL_MB_CM','Spell Book (Comet)','Delayconsume',true,'itemskill "WL_READING_SB_READING",9;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_noconsume`,`script`) VALUES (100074,'WL_MB_TV','Spell Book (Tetra Vortex)','Delayconsume',true,'itemskill "WL_READING_SB_READING",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (100128,'Noblesses_Refine_Ticket','Noblesses Refine Ticket','Delayconsume',20,100,100,true,true,true,true,true,true,true,'/*upgradeui 100128;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (100129,'Imperial_Refine_Ticket','Imperial Refine Ticket','Delayconsume',20,125,100,true,true,true,true,true,true,true,'/*upgradeui 100129;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (100130,'Grace_Refine_Ticket','Grace Refine Ticket','Delayconsume',20,150,100,true,true,true,true,true,true,true,'/*upgradeui 100130;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (100131,'Imperial_P_Mo_Garment','Imperial Physical Modification Permit (Garment)','Delayconsume',20,125,100,true,true,true,true,true,true,true,'/*upgradeui 100131;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (100132,'Imperial_M_Mo_Garment','Imperial Magical Modification Permit (Garment)','Delayconsume',20,125,100,true,true,true,true,true,true,true,'/*upgradeui 100132;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (100133,'Grace_P_Mo_Garment','Grace Physical Modification Permit (Garment)','Delayconsume',20,150,100,true,true,true,true,true,true,true,'/*upgradeui 100133;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (100134,'Grace_M_Mo_Garment','Grace Magical Modification Permit (Garment)','Delayconsume',20,150,100,true,true,true,true,true,true,true,'/*upgradeui 100134;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (100135,'Imperial_P_Mo_Armor','Imperial Physical Modification Permit (Armor)','Delayconsume',20,125,100,true,true,true,true,true,true,true,'/*upgradeui 100135;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (100136,'Imperial_M_Mo_Armor','Imperial Magical Modification Permit (Armor)','Delayconsume',20,125,100,true,true,true,true,true,true,true,'/*upgradeui 100136;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (100137,'Grace_P_Mo_Armor','Grace Physical Modification Permit (Armor)','Delayconsume',20,150,100,true,true,true,true,true,true,true,'/*upgradeui 100137;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (100138,'Grace_M_Mo_Armor','Grace Magical Modification Permit (Armor)','Delayconsume',20,150,100,true,true,true,true,true,true,true,'/*upgradeui 100138;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (100231,'Ref_T_Potion','Golden X','Healing',10,30,'sc_start SC_REF_T_POTION,30000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (100232,'Add_Atk_Potion','Red Herb Activator','Healing',10,30,'sc_start SC_ADD_ATK_DAMAGE,500000,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (100233,'Add_Matk_Potion','Blue Herb Activator','Healing',10,30,'sc_start SC_ADD_MATK_DAMAGE,500000,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (100402,'Thousand_Sun_Cube','Thousand Sun Modification Cube','Delayconsume',10,'/*synthesisui 100402;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (100403,'Spirit_Pendulum_Cube','Spirit Pendulum Modification Cube','Delayconsume',10,'/*synthesisui 100403;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (100404,'Crimson_Rose_Cube','Crimson Rose Modification Cube','Delayconsume',10,'/*synthesisui 100404;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (100405,'Master_Soul_Rifle_Cube','Master Soul Rifle Modification Cube','Delayconsume',10,'/*synthesisui 100405;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (100406,'Golden_Lord_Launcher_Cube','Golden Lord Launcher Modification Cube','Delayconsume',10,'/*synthesisui 100406;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (100407,'The_Black_Cube','The Black Modification Cube','Delayconsume',10,'/*synthesisui 100407;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (100408,'Demon_Slayer_Shot_Cube','Demon Slayer Shot Modification Cube','Delayconsume',10,'/*synthesisui 100408;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`script`) VALUES (1100003,'Concentrated_R_P','Concentrated Red Potion','Healing',10,2,120,'itemheal rand(655,675),0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`script`) VALUES (1100004,'Concentrated_B_P','Concentrated Blue Potion','Healing',10,2,120,'itemheal 0,rand(340,360);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`script`) VALUES (1100005,'Concentrated_G_P','Concentrated Gold Potion','Healing',10,2,180,'itemheal rand(2730,2750),0;'); diff --git a/sql-files/item_db_usable.sql b/sql-files/item_db_usable.sql new file mode 100644 index 0000000000..db40c3a90f --- /dev/null +++ b/sql-files/item_db_usable.sql @@ -0,0 +1,2015 @@ +# +# Table structure for table `item_db` +# + +DROP TABLE IF EXISTS `item_db`; +CREATE TABLE `item_db` ( + `id` int(10) unsigned NOT NULL DEFAULT '0', + `name_aegis` varchar(50) NOT NULL DEFAULT '', + `name_english` varchar(50) NOT NULL DEFAULT '', + `type` varchar(20) DEFAULT NULL, + `subtype` varchar(20) DEFAULT NULL, + `price_buy` mediumint(8) unsigned DEFAULT NULL, + `price_sell` mediumint(8) unsigned DEFAULT NULL, + `weight` smallint(5) unsigned DEFAULT NULL, + `attack` smallint(5) unsigned DEFAULT NULL, + `defense` smallint(5) unsigned DEFAULT NULL, + `range` tinyint(2) unsigned DEFAULT NULL, + `slots` tinyint(2) unsigned DEFAULT NULL, + `job_all` tinyint(1) unsigned DEFAULT NULL, + `job_acolyte` tinyint(1) unsigned DEFAULT NULL, + `job_alchemist` tinyint(1) unsigned DEFAULT NULL, + `job_archer` tinyint(1) unsigned DEFAULT NULL, + `job_assassin` tinyint(1) unsigned DEFAULT NULL, + `job_barddancer` tinyint(1) unsigned DEFAULT NULL, + `job_blacksmith` tinyint(1) unsigned DEFAULT NULL, + `job_crusader` tinyint(1) unsigned DEFAULT NULL, + `job_gunslinger` tinyint(1) unsigned DEFAULT NULL, + `job_hunter` tinyint(1) unsigned DEFAULT NULL, + `job_knight` tinyint(1) unsigned DEFAULT NULL, + `job_mage` tinyint(1) unsigned DEFAULT NULL, + `job_merchant` tinyint(1) unsigned DEFAULT NULL, + `job_monk` tinyint(1) unsigned DEFAULT NULL, + `job_ninja` tinyint(1) unsigned DEFAULT NULL, + `job_novice` tinyint(1) unsigned DEFAULT NULL, + `job_priest` tinyint(1) unsigned DEFAULT NULL, + `job_rogue` tinyint(1) unsigned DEFAULT NULL, + `job_sage` tinyint(1) unsigned DEFAULT NULL, + `job_soullinker` tinyint(1) unsigned DEFAULT NULL, + `job_stargladiator` tinyint(1) unsigned DEFAULT NULL, + `job_supernovice` tinyint(1) unsigned DEFAULT NULL, + `job_swordman` tinyint(1) unsigned DEFAULT NULL, + `job_taekwon` tinyint(1) unsigned DEFAULT NULL, + `job_thief` tinyint(1) unsigned DEFAULT NULL, + `job_wizard` tinyint(1) unsigned DEFAULT NULL, + `class_all` tinyint(1) unsigned DEFAULT NULL, + `class_normal` tinyint(1) unsigned DEFAULT NULL, + `class_upper` tinyint(1) unsigned DEFAULT NULL, + `class_baby` tinyint(1) unsigned DEFAULT NULL, + `gender` varchar(10) DEFAULT NULL, + `location_head_top` tinyint(1) unsigned DEFAULT NULL, + `location_head_mid` tinyint(1) unsigned DEFAULT NULL, + `location_head_low` tinyint(1) unsigned DEFAULT NULL, + `location_armor` tinyint(1) unsigned DEFAULT NULL, + `location_right_hand` tinyint(1) unsigned DEFAULT NULL, + `location_left_hand` tinyint(1) unsigned DEFAULT NULL, + `location_garment` tinyint(1) unsigned DEFAULT NULL, + `location_shoes` tinyint(1) unsigned DEFAULT NULL, + `location_right_accessory` tinyint(1) unsigned DEFAULT NULL, + `location_left_accessory` tinyint(1) unsigned DEFAULT NULL, + `location_costume_head_top` tinyint(1) unsigned DEFAULT NULL, + `location_costume_head_mid` tinyint(1) unsigned DEFAULT NULL, + `location_costume_head_low` tinyint(1) unsigned DEFAULT NULL, + `location_costume_garment` tinyint(1) unsigned DEFAULT NULL, + `location_ammo` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_armor` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_weapon` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_shield` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_shoes` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_right_accessory` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_left_accessory` tinyint(1) unsigned DEFAULT NULL, + `weapon_level` tinyint(1) unsigned DEFAULT NULL, + `equip_level_min` tinyint(3) unsigned DEFAULT NULL, + `equip_level_max` tinyint(3) unsigned DEFAULT NULL, + `refineable` tinyint(1) unsigned DEFAULT NULL, + `view` smallint(5) unsigned DEFAULT NULL, + `alias_name` varchar(50) DEFAULT NULL, + `flag_buyingstore` tinyint(1) unsigned DEFAULT NULL, + `flag_deadbranch` tinyint(1) unsigned DEFAULT NULL, + `flag_container` tinyint(1) unsigned DEFAULT NULL, + `flag_uniqueid` tinyint(1) unsigned DEFAULT NULL, + `flag_bindonequip` tinyint(1) unsigned DEFAULT NULL, + `flag_dropannounce` tinyint(1) unsigned DEFAULT NULL, + `flag_noconsume` tinyint(1) unsigned DEFAULT NULL, + `flag_dropeffect` varchar(20) DEFAULT NULL, + `delay_duration` bigint(20) unsigned DEFAULT NULL, + `delay_status` varchar(30) DEFAULT NULL, + `stack_amount` smallint(5) unsigned DEFAULT NULL, + `stack_inventory` tinyint(1) unsigned DEFAULT NULL, + `stack_cart` tinyint(1) unsigned DEFAULT NULL, + `stack_storage` tinyint(1) unsigned DEFAULT NULL, + `stack_guildstorage` tinyint(1) unsigned DEFAULT NULL, + `nouse_override` smallint(5) unsigned DEFAULT NULL, + `nouse_sitting` tinyint(1) unsigned DEFAULT NULL, + `trade_override` smallint(5) unsigned DEFAULT NULL, + `trade_nodrop` tinyint(1) unsigned DEFAULT NULL, + `trade_notrade` tinyint(1) unsigned DEFAULT NULL, + `trade_tradepartner` tinyint(1) unsigned DEFAULT NULL, + `trade_nosell` tinyint(1) unsigned DEFAULT NULL, + `trade_nocart` tinyint(1) unsigned DEFAULT NULL, + `trade_nostorage` tinyint(1) unsigned DEFAULT NULL, + `trade_noguildstorage` tinyint(1) unsigned DEFAULT NULL, + `trade_nomail` tinyint(1) unsigned DEFAULT NULL, + `trade_noauction` tinyint(1) unsigned DEFAULT NULL, + `script` text, + `equip_script` text, + `unequip_script` text, + PRIMARY KEY (`id`), + UNIQUE INDEX `UniqueAegisName` (`name_aegis`) +) ENGINE=MyISAM; + +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (501,'Red_Potion','Red Potion','Healing',50,70,'itemheal rand(45,65),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (502,'Orange_Potion','Orange Potion','Healing',200,100,'itemheal rand(105,145),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (503,'Yellow_Potion','Yellow Potion','Healing',550,130,'itemheal rand(175,235),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (504,'White_Potion','White Potion','Healing',1200,150,'itemheal rand(325,405),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (505,'Blue_Potion','Blue Potion','Healing',5000,150,'itemheal 0,rand(40,60);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (506,'Green_Potion','Green Potion','Healing',40,70,true,'sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (507,'Red_Herb','Red Herb','Healing',18,30,true,'itemheal rand(18,28),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (508,'Yellow_Herb','Yellow Herb','Healing',40,50,true,'itemheal rand(38,58),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (509,'White_Herb','White Herb','Healing',120,70,true,'itemheal rand(75,115),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (510,'Blue_Herb','Blue Herb','Healing',60,70,true,'itemheal 0,rand(15,30);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (511,'Green_Herb','Green Herb','Healing',10,30,true,'sc_end SC_Poison;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (512,'Apple','Apple','Healing',15,20,true,'itemheal rand(16,22),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (513,'Banana','Banana','Healing',15,20,true,'itemheal rand(17,21),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (514,'Grape','Grape','Healing',200,20,true,'itemheal 0,rand(10,15);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (515,'Carrot','Carrot','Healing',15,20,true,'itemheal rand(18,20),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (516,'Sweet_Potato','Potato','Healing',15,20,true,'itemheal rand(15,23),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (517,'Meat','Meat','Healing',50,150,true,'itemheal rand(70,100),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (518,'Honey','Honey','Healing',500,100,true,'itemheal rand(70,100),rand(20,40);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (519,'Milk','Milk','Healing',25,30,true,'itemheal rand(27,37),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (520,'Leaflet_Of_Hinal','Hinalle Leaflet','Healing',150,10,true,'itemheal rand(175,235),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (521,'Leaflet_Of_Aloe','Aloe Leaflet','Healing',360,20,true,'itemheal rand(325,405),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (522,'Fruit_Of_Mastela','Mastela Fruit','Healing',8500,30,true,'itemheal rand(400,600),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (523,'Holy_Water','Holy Water','Healing',20,30,true,'sc_end SC_Curse;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (525,'Panacea','Panacea','Healing',500,100,true,'sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (526,'Royal_Jelly','Royal Jelly','Healing',7000,150,true,'itemheal rand(325,405),rand(40,60); sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (528,'Monster\'s_Feed','Monster\'s Feed','Healing',60,150,true,'itemheal rand(72,108),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (529,'Candy','Candy','Healing',10,30,true,'itemheal rand(45,65),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (530,'Candy_Striper','Candy Cane','Healing',20,40,true,'itemheal rand(105,145),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (531,'Apple_Juice','Apple Juice','Healing',20,40,true,'itemheal rand(25,35),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (532,'Banana_Juice','Banana Juice','Healing',20,40,true,'itemheal rand(26,34),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (533,'Grape_Juice','Grape Juice','Healing',250,40,true,'itemheal 0,rand(15,25);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (534,'Carrot_Juice','Carrot Juice','Healing',20,40,true,'itemheal rand(27,33),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (535,'Pumpkin','Pumpkin','Healing',15,20,true,'itemheal 19,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (536,'Ice_Cream','Ice Cream','Healing',150,80,true,'itemheal rand(105,145),0; sc_start SC_Freeze,10000,0,2500,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (537,'Pet_Food','Pet Food','Healing',1000,10,true,'itemheal rand(50,90),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (538,'Well_Baked_Cookie','Well-baked Cookie','Healing',1000,30,true,'itemheal rand(160,200),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (539,'Piece_Of_Cake','Piece of Cake','Healing',3000,100,true,'itemheal rand(270,330),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (540,'Falcon\'s_Feed','Falcon Food','Healing',2000,50,'itemheal rand(185,225),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (541,'Pecopeco\'s_Feed','PecoPeco Food','Healing',3000,50,'itemheal rand(325,405),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (544,'Fish_Slice','Raw Fish','Healing',20,30,true,'itemheal rand(25,60),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (545,'Red_Slim_Potion','Condensed Red Potion','Healing',150,10,'itemheal rand(45,65),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (546,'Yellow_Slim_Potion','Condensed Yellow Potion','Healing',600,20,'itemheal rand(175,235),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (547,'White_Slim_Potion','Condensed White Potion','Healing',1650,20,'itemheal rand(325,405),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (548,'Cheese','Cheese','Healing',2800,50,true,'itemheal 0,rand(10,15);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (549,'Nice_Sweet_Potato','Yam','Healing',180,80,true,'itemheal rand(50,100),0; sc_start SC_Stun,3000,0,1500,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (550,'Popped_Rice','Rice Cake','Healing',10,10,true,'itemheal rand(10,15),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (551,'Shusi','Sushi','Healing',1,50,true,'itemheal rand(50,60),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (552,'KETUPAT','Ketupat','Healing',1,10,'itemheal rand(70,90),rand(20,30);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (553,'Bun','Bao','Healing',1,50,true,'itemheal rand(35,70),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (554,'Mojji','Mochi','Healing',400,80,'itemheal rand(105,145),0; sc_start SC_Stun,3000,0; sc_start SC_Blind,2000,0,1500,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (555,'Rice_Cake','Traditional Rice Cake','Healing',100,20,'itemheal rand(105,145),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (556,'Long_Rice_Cake','Rice Cake Stick','Healing',10,10,'itemheal rand(20,25),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (557,'Hash_Rice_Cake','Neatly Sliced Rice Cake','Healing',10,10,'itemheal rand(25,30),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (558,'Chocolate','Chocolate','Healing',1,20,'itemheal 1,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (559,'HandMade_Chocolate','Hand-made Chocolate','Healing',1,80,'itemheal 50,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (560,'HandMade_Chocolate_','Handmade White Chocolate','Healing',5000,80,'itemheal 50,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (561,'White_Chocolate','White Chocolate','Healing',5000,80,'itemheal 50,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (562,'Pizza','Doublecrust Swiss Fondue','Healing',100,150,'itemheal rand(70,100),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (563,'Pizza_01','Doublecrust Swiss Fondue','Healing',1200,150,'itemheal rand(375,445),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (564,'Rice_Ball','Rice Ball','Healing',1,30,true,'itemheal 200,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (565,'Vita500_Bottle','Vita500','Healing',580,100,'itemheal rand(142,274),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (566,'Tomyumkung','Tom Yum Goong','Healing',10000,150,true,'itemheal rand(244,350),rand(10,30); sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (567,'Prawn','Shrimp','Healing',500,40,true,'itemheal rand(117,192),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (568,'Lemon','Lemon','Healing',60,40,true,'itemheal 0,rand(10,20);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (569,'Novice_Potion','Novice Potion','Healing',10,true,'itemheal rand(22,33),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (570,'Lucky_Candy','Lucky Candy','Healing',10,30,true,'itemheal rand(45,65),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (571,'Lucky_Candy_Cane','Lucky Candy Cane','Healing',20,40,true,'itemheal rand(105,145),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (572,'Lucky_Cookie','Lucky Cookie','Healing',1000,30,true,'itemheal rand(160,200),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (573,'Chocolate_Drink','Chocolate Drink','Healing',7000,150,'itemheal rand(330,410),rand(45,65); sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (574,'Egg','Egg','Healing',20,30,true,'itemheal rand(33,42),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (575,'Piece_Of_Cake_','2nd Anniversary Cake','Healing',10,100,'itemheal rand(270,330),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (576,'Prickly_Fruit','Prickly Fruit','Healing',540,60,true,'itemheal rand(150,300),rand(20,30);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (577,'Grain','Bag of Grain','Healing',200,20,true,'itemheal rand(60,70),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (578,'Strawberry','Strawberry','Healing',200,20,true,'itemheal 0,rand(16,28);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (579,'Delicious_Fish','Fresh Fish','Healing',250,20,true,'itemheal rand(100,150),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (580,'Bread','Bread','Healing',150,20,true,'itemheal rand(50,90),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (581,'Mushroom','Edible Mushroom','Healing',40,20,true,'itemheal rand(20,30),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (582,'Orange','Orange','Healing',300,20,true,'itemheal rand(10,20),rand(10,20);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (583,'KETUPAT_','Ketupat Sayur','Healing',7000,150,'itemheal rand(325,405),rand(40,60); sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (584,'Fish_Ball_Soup','Fish Cake Soup','Healing',100,60,true,'itemheal rand(40,70),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (585,'Wurst','Brusti','Delayconsume',2,40,'itemheal rand(15,20),0; itemskill "PR_MAGNIFICAT",3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (586,'Mother\'s_Cake','Mother\'s Cake','Healing',20,100,'itemheal rand(325,405),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (587,'Prickly_Fruit_','Red Prickly Fruit','Healing',880,60,true,'itemheal rand(270,330),rand(20,30);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (588,'Spaghetti','Spaghetti','Healing',100,100,'itemheal rand(40,70),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (589,'Pizza_02','Pizza','Healing',1200,150,'itemheal rand(375,445),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (590,'Brezel_','Pretzel','Healing',2,20,'itemheal rand(50,90),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (591,'Caviar_Pancake','Caviar Pancake','Healing',150,true,'itemheal rand(325,405),rand(40,60); sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (592,'Jam_Pancake','Jam Pancake','Healing',150,true,'itemheal rand(325,405),rand(40,60); sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (593,'Honey_Pancake','Honey Pancake','Healing',150,true,'itemheal rand(325,405),rand(40,60); sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (594,'Sour_Cream_Pancake','Sour-Cream Pancake','Healing',150,true,'itemheal rand(325,405),rand(40,60); sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (595,'Mushroom_Pancake','Mushroom Pancake','Healing',150,true,'itemheal rand(325,405),rand(40,60); sc_end SC_Poison; sc_end SC_Silence; sc_end SC_Blind; sc_end SC_Confusion; sc_end SC_Curse; sc_end SC_Hallucination;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (596,'Cute_Strawberry_Choco','Cute Strawberry-Choco','Healing',20,100,'itemheal 0,rand(1,100);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (597,'Lovely_Choco_Tart','Lovely Choco-Tart','Healing',20,100,'itemheal rand(10,400),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (598,'Light_Red_Pot','Light Red Potion','Healing',50,10,'itemheal rand(45,65),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (599,'Light_Orange_Pot','Light Orange Potion','Healing',200,10,'itemheal rand(105,145),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (601,'Wing_Of_Fly','Fly Wing','Delayconsume',60,50,true,'itemskill "AL_TELEPORT",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (602,'Wing_Of_Butterfly','Butterfly Wing','Delayconsume',300,50,true,'itemskill "AL_TELEPORT",3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (603,'Old_Blue_Box','Old Blue Box','Usable',10000,200,true,true,'getrandgroupitem(IG_BlueBox),1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_deadbranch`,`script`) VALUES (604,'Branch_Of_Dead_Tree','Dead Branch','Usable',50,50,true,true,'monster "this",-1,-1,"--ja--",-1,1,"";'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (605,'Anodyne','Anodyne','Delayconsume',2000,100,true,'itemskill "SM_ENDURE",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (606,'Aloebera','Aloevera','Delayconsume',1500,100,true,100,true,'itemskill "SM_SELFPROVOKE",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`delay_duration`,`delay_status`,`script`) VALUES (607,'Yggdrasilberry','Yggdrasil Berry','Healing',5000,300,true,5000,'Reuse_Limit_F','percentheal 100,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`delay_duration`,`delay_status`,`script`) VALUES (608,'Seed_Of_Yggdrasil','Yggdrasil Seed','Healing',5000,300,true,3000,'Reuse_Limit_G','percentheal 50,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (609,'Amulet','Amulet','Usable',100,100,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (610,'Leaf_Of_Yggdrasil','Yggdrasil Leaf','Delayconsume',4000,100,true,'itemskill "ALL_RESURRECTION",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (611,'Spectacles','Magnifier','Delayconsume',40,50,true,'itemskill "MC_IDENTIFY",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (612,'Portable_Furnace','Mini Furnace','Usable',150,200,true,'produce 21;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (613,'Iron_Hammer','Iron Hammer','Usable',1000,200,true,'produce 1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (614,'Golden_Hammer','Golden Hammer','Usable',3000,300,true,'produce 2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (615,'Oridecon_Hammer','Oridecon Hammer','Usable',5000,400,true,'produce 3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (616,'Old_Card_Album','Old Card Album','Usable',10000,50,true,true,'getrandgroupitem(IG_CardAlbum),1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (617,'Old_Violet_Box','Old Purple Box','Usable',10000,200,true,true,'getrandgroupitem(IG_VioletBox),1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`) VALUES (618,'Worn_Out_Scroll','Worn Out Scroll','Usable',50,20,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (619,'Unripe_Apple','Unripe Apple','Usable',1000,50,true,100,true,'pet 1002;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (620,'Orange_Juice','Orange Juice','Usable',1500,50,true,100,true,'pet 1113;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (621,'Bitter_Herb','Bitter Herb','Usable',20,50,true,100,true,'pet 1031;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (622,'Rainbow_Carrot','Rainbow Carrot','Usable',2500,50,true,100,true,'pet 1063;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (623,'Earthworm_The_Dude','Earthworm the Dude','Usable',4000,50,true,100,true,'pet 1049;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (624,'Rotten_Fish','Rotten Fish','Usable',2500,50,true,100,true,'pet 1011;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (625,'Lusty_Iron','Rusty Iron','Usable',100,50,true,100,true,'pet 1042;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (626,'Monster_Juice','Monster Juice','Usable',1500,50,true,100,true,'pet 1035;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (627,'Sweet_Milk','Sweet Milk','Usable',7000,50,true,100,true,'pet 1167;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (628,'Well_Dried_Bone','Well-Dried Bone','Usable',10000,50,true,100,true,'pet 1107;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (629,'Singing_Flower','Singing Flower','Usable',300,50,true,100,true,'pet 1052;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (630,'Dew_Laden_Moss','Dew Laden Moss','Usable',10,50,true,100,true,'pet 1014;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (631,'Deadly_Noxious_Herb','Deadly Noxious Herb','Usable',20,50,true,100,true,'pet 1077;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (632,'Fatty_Chubby_Earthworm','Fatty Chubby Earthworm','Usable',5000,50,true,100,true,'pet 1019;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (633,'Baked_Yam','Sweet Potato','Usable',20,50,true,100,true,'pet 1056;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (634,'Tropical_Banana','Tropical Banana','Usable',20,50,true,100,true,'pet 1057;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (635,'Horror_Of_Tribe','Orc Trophy','Usable',300,50,true,100,true,'pet 1023;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (636,'No_Recipient','No Recipient','Usable',100,50,true,100,true,'pet 1026;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (637,'Old_Broom','Old Broom','Usable',350,50,true,100,true,'pet 1110;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (638,'Silver_Knife_Of_Chaste','Silver Knife of Chastity','Usable',12000,50,true,100,true,'pet 1170;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (639,'Armlet_Of_Obedience','Armlet of Obedience','Usable',18000,50,true,100,true,'pet 1029;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (640,'Shining_Stone','Shining Stone','Usable',3000,50,true,100,true,'pet 1155;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (641,'Contracts_In_Shadow','Contract in Shadow','Usable',100,50,true,100,true,'pet 1109;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (642,'Book_Of_Devil','Book of the Devil','Usable',1800,50,true,100,true,'pet 1101;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (643,'Pet_Incubator','Pet Incubator','Usable',3000,30,true,'bpet;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (644,'Gift_Box','Gift Box','Usable',1000,200,true,true,'getrandgroupitem(IG_GiftBox),1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (645,'Center_Potion','Concentration Potion','Usable',800,100,true,'sc_start SC_ASPDPOTION0,1800000,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_alchemist`,`job_archer`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_gunslinger`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_monk`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_supernovice`,`job_swordman`,`job_taekwon`,`job_thief`,`job_wizard`,`equip_level_min`,`flag_buyingstore`,`script`) VALUES (656,'Awakening_Potion','Awakening Potion','Usable',1500,150,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,40,true,'sc_start SC_ASPDPOTION1,1800000,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_gunslinger`,`job_knight`,`job_mage`,`job_merchant`,`job_rogue`,`job_soullinker`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`job_wizard`,`equip_level_min`,`flag_buyingstore`,`script`) VALUES (657,'Berserk_Potion','Berserk Potion','Usable',3000,200,true,true,true,true,true,true,true,true,true,true,true,true,true,85,true,'sc_start SC_ASPDPOTION2,1800000,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (658,'Union_Of_Tribe','Union of Tribe','Usable',2,500,true,'guildgetexp rand(600000,1200000);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (659,'Heart_Of_Her','Her Heart','Usable',500,50,true,100,true,'pet 1188;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (660,'Prohibition_Red_Candle','Forbidden Red Candle','Usable',20000,50,true,100,true,'pet 1200;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (661,'Sway_Apron','Soft Apron','Usable',20000,50,true,100,true,'pet 1275;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (662,'Inspector_Certificate','Authoritative Badge','Usable',1450,30,true,'sc_start SC_SPEEDUP0,180000,25;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (663,'Korea_Rice_Cake','Korean Rice Cake','Healing',1,10,true,'percentheal 10,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (664,'Gift_Box_1','Gift Box','Usable',1000,200,true,true,'getrandgroupitem(IG_GiftBox_1),1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (665,'Gift_Box_2','Gift Box','Usable',1000,200,true,true,'getrandgroupitem(IG_GiftBox_2),1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (666,'Gift_Box_3','Gift Box','Usable',1000,200,true,true,'getrandgroupitem(IG_GiftBox_3),1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (667,'Gift_Box_4','Gift Box','Usable',1000,200,true,true,'getrandgroupitem(IG_GiftBox_4),1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (668,'Handsei','Red Envelope','Usable',20,true,'set Zeny,Zeny+rand(1000,10000);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (669,'Rice_Cake_Soup','Tempting Rice-Cake Soup','Healing',500,100,true,'percentheal -100,-100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (678,'Poison_Bottle','Poison Bottle','Usable',5000,100,true,'if(Class==Job_Assassin_Cross) { sc_start SC_DPoison,60000,0; sc_start SC_ASPDPOTION3,60000,0; } else percentheal -100,-100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (679,'Gold_Pill','Pilule','Usable',5000,300,true,'sc_start SC_DPoison,10000,0,1000,0; sc_start SC_Poison,50000,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (680,'Magical_Carnation','Magic Carnation','Healing',1000,'percentheal 0,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (681,'Memory_Of_Wedding','Sweet Memory of Marriage','Usable',50000,10,true,'if(getpartnerid()) sc_start SC_WEDDING,600000,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (682,'Realgar_Wine','Distilled Fighting Spirit','Usable',100,true,'sc_start SC_ATKPOTION,60000,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (683,'Exorcize_Herb','Herb of Incantation','Usable',50,true,'sc_start SC_MATKPOTION,60000,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (684,'Durian','Durian','Usable',15000,300,true,'sc_start SC_ATKPOTION,60000,10; sc_start SC_MATKPOTION,60000,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (685,'RAMADAN','Ramadan','Healing',5000,300,'percentheal 100,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (686,'Earth_Scroll_1_3','Level 3 Earth Spike','Delayconsume',1000,10,true,100,true,'itemskill "WZ_EARTHSPIKE",3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (687,'Earth_Scroll_1_5','Level 5 Earth Spike','Delayconsume',2000,10,true,100,true,'itemskill "WZ_EARTHSPIKE",5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (688,'Cold_Scroll_1_3','Level 3 Cold Bolt','Delayconsume',1000,10,true,100,true,'itemskill "MG_COLDBOLT",3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (689,'Cold_Scroll_1_5','Level 5 Cold Bolt','Delayconsume',2000,10,true,100,true,'itemskill "MG_COLDBOLT",5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (690,'Fire_Scroll_1_3','Level 3 Fire Bolt','Delayconsume',1000,10,true,100,true,'itemskill "MG_FIREBOLT",3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (691,'Fire_Scroll_1_5','Level 5 Fire Bolt','Delayconsume',2000,10,true,100,true,'itemskill "MG_FIREBOLT",5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (692,'Wind_Scroll_1_3','Level 3 Lightening Bolt','Delayconsume',1000,10,true,100,true,'itemskill "MG_LIGHTNINGBOLT",3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (693,'Wind_Scroll_1_5','Level 5 Lightening Bolt','Delayconsume',2000,10,true,100,true,'itemskill "MG_LIGHTNINGBOLT",5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (694,'Ghost_Scroll_1_3','Level 3 Soul Strike','Delayconsume',1000,10,true,100,true,'itemskill "MG_SOULSTRIKE",3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (695,'Ghost_Scroll_1_5','Level 5 Soul Strike','Delayconsume',2000,10,true,100,true,'itemskill "MG_SOULSTRIKE",5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (696,'Fire_Scroll_2_1','Level 1 Fire Ball','Delayconsume',1000,10,true,100,true,'itemskill "MG_FIREBALL",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (697,'Fire_Scroll_2_5','Level 5 Fire Ball','Delayconsume',2000,10,true,100,true,'itemskill "MG_FIREBALL",5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (698,'Fire_Scroll_3_1','Level 1 Fire Wall','Delayconsume',1000,10,true,100,true,'itemskill "MG_FIREWALL",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (699,'Fire_Scroll_3_5','Level 5 Fire Wall','Delayconsume',2000,10,true,100,true,'itemskill "MG_FIREWALL",5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (700,'Cold_Scroll_2_1','Level 1 Frost Diver','Delayconsume',1000,10,true,100,true,'itemskill "MG_FROSTDIVER",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6046,'Clothing_Dye_Coupon','Clothing Dye Coupon','Usable',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (6047,'Clothing_Dye_Coupon_II','Clothing Dye Coupon II','Usable',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11500,'Light_Yellow_Pot','Light Yellow Potion','Healing',550,10,'itemheal rand(175,235),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11501,'Light_White_Pot','Light White Potion','Healing',1200,10,'itemheal rand(325,405),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11502,'Light_Blue_Pot','Light Blue Potion','Healing',5000,10,'itemheal 0,rand(40,60);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (11503,'Siege_White_Potion','WoE White Potion','Healing',100,100,true,true,true,true,true,true,true,'itemheal rand(400,500),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (11504,'Siege_Blue_Potion','WoE Blue Potion','Healing',100,100,true,true,true,true,true,true,true,'itemheal 0,rand(50,70);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (11505,'Iris','Iris','Healing',30,100,true,true,true,true,true,true,true,true,'itemheal 0,150;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11506,'Fanta_Orange','Fanta Orange','Healing',800,100,'itemheal rand(50,70),rand(10,12);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11507,'Fanta_Grape','Fanta Grape','Healing',800,100,'itemheal rand(50,70),rand(10,12);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11508,'Karada_Meguri_Tea','Karada Meguricha','Healing',800,100,'itemheal rand(50,70),rand(10,12);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11509,'Royal_Milk_Tea','Black Tea Kochakaden','Healing',800,100,'itemheal rand(50,70),rand(10,12);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11510,'Coke_Zero','Coca Cola Zero','Healing',800,100,'itemheal rand(50,70),rand(10,12);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11511,'Coke_No_Cal','Diet Coca Cola','Healing',800,100,'itemheal rand(50,70),rand(10,12);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11512,'Coca_Cola','Coca Cola','Healing',800,100,'itemheal rand(50,70),rand(10,12);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (11513,'Protect_Neck_Candy','Protect Neck Candy','Healing',200,1,true,'itemheal rand(5,25),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (11514,'Enriched_Slim_Pot','Enriched Slim Pot','Healing',50,100,true,true,true,true,true,true,true,'itemheal rand(335,415),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (11515,'Coconut','Coconut','Healing',1500,120,true,'itemheal rand(300,400),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (11516,'Asai_Fruit','Asai Fruit','Healing',15,20,true,'itemheal rand(16,22),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (11517,'Puri_Potion','Puri Potion','Healing',20,100,true,'itemheal rand(400,600),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (11518,'N_Blue_Potion','Blue Potion','Healing',50,'itemheal 0,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (11519,'Beef_Toast','Beef Toast','Healing',650,40,true,'itemheal rand(170,250),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (11520,'Mora_Mandarin','Mora Mandar','Healing',500,20,true,'itemheal 0,rand(50,80);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (11521,'Pingui_Berry_Juice','Pingui Berry Juice','Healing',500,50,true,'itemheal rand(400,800),rand(50,80);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`delay_duration`,`delay_status`,`script`) VALUES (11522,'Red_Raffle_Sap','Red Raffle Sap','Healing',2000,100,true,1000,'Reuse_Limit_E','itemheal rand(400,800),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`delay_duration`,`delay_status`,`script`) VALUES (11523,'Yellow_Raffle_Sap','Yellow Raffle Sap','Healing',2400,120,true,2000,'Reuse_Limit_E','itemheal rand(600,1000),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`delay_duration`,`delay_status`,`script`) VALUES (11524,'White_Raffle_Sap','White Raffle Sap','Healing',2800,140,true,3000,'Reuse_Limit_E','itemheal rand(800,1200),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`delay_duration`,`delay_status`,`script`) VALUES (11525,'Mora_Hip_Tea','Mora HIp Tea','Healing',20,150,true,5000,'Reuse_Limit_H','itemheal rand(1500,2000),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (11526,'Rafflecino','Rafflecino','Healing',20,100,true,'itemheal 0,rand(120,160);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11527,'Baklava','Baklava','Healing',3500,600,'itemheal 1200,440;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11528,'Kanafeh','Kanafeh','Healing',1500,200,'itemheal 300,240;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11529,'MAAMOUL_','Maamoul','Healing',500,100,'itemheal 120,60;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11530,'Jujube','Jujube','Healing',10,100,'itemheal 30,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11531,'Coffee','Coffee','Healing',10,100,'itemheal 0,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11701,'Girl_Bunch_Of_Flower','Girl\'s Bouquet','Healing',20,50,'itemheal rand(105,145),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`nouse_override`,`nouse_sitting`) VALUES (11702,'Moon_Cookie','Moon Cookie','Healing',300,100,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (11703,'Mysterious_Blood','Mystery Blood','Healing',30,'itemheal 0,rand(25,35);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11704,'KETUPAT_F','Ketupat','Healing',2,10,'itemheal rand(70,90),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11705,'Special_White_Potion','Children\'s Potion','Healing',1,10,'itemheal rand(425,425),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11706,'Steak','Steak','Healing',1,200,'itemheal rand(700,1000),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11707,'Roasted_Beef','Roast Beef','Healing',1,200,'itemheal 0,rand(100,200);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11708,'Fore_Flank_Sirloin','Fore Flank Sirloin','Healing',20,100,'itemheal rand(30,50),rand(1,5);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11709,'Fanta_Zero_Lemon','Fanta Zero Lemon','Healing',800,100,'itemheal rand(50,70),rand(10,12);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11710,'Sakura_Mist','Sakura Mist','Healing',800,100,'itemheal rand(50,70),rand(10,12);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11711,'Sakura_Milk_Tea','Sakura Milk Tea','Healing',800,100,'itemheal rand(50,70),rand(10,12);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (11712,'First_Leaf_Tea','Flower','Healing',800,100,'itemheal rand(50,70),rand(10,12);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12000,'Cold_Scroll_2_5','Level 5 Frost Diver','Delayconsume',2000,10,true,100,true,'itemskill "MG_FROSTDIVER",5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12001,'Holy_Scroll_1_3','Level 3 Heal','Delayconsume',2000,10,true,100,true,'itemskill "AL_HEAL",3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12002,'Holy_Scroll_1_5','Level 5 Heal','Delayconsume',2000,10,true,100,true,'itemskill "AL_HEAL",5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12003,'Holy_Scroll_2_1','Level 1 Teleport','Delayconsume',1000,10,true,'itemskill "AL_TELEPORT",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12004,'Arrow_Container','Quiver','Usable',2,250,true,'getitem 1750,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12005,'Iron_Arrow_Container','Iron Arrow Quiver','Usable',2,250,true,'getitem 1770,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12006,'Steel_Arrow_Container','Steel Arrow Quiver','Usable',2,250,true,'getitem 1753,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12007,'Ori_Arrow_Container','Oridecon Arrow Quiver','Usable',2,250,true,'getitem 1765,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12008,'Fire_Arrow_Container','Fire Arrow Quiver','Usable',2,250,true,'getitem 1752,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12009,'Silver_Arrow_Container','Silver Arrow Quiver','Usable',2,250,true,'getitem 1751,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12010,'Wind_Arrow_Container','Wind Arrow Quiver','Usable',2,250,true,'getitem 1755,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12011,'Stone_Arrow_Container','Stone Arrow Quiver','Usable',2,250,true,'getitem 1756,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12012,'Crystal_Arrow_Container','Crystal Arrow Quiver','Usable',2,250,true,'getitem 1754,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12013,'Shadow_Arrow_Container','Shadow Arrow Quiver','Usable',2,250,true,'getitem 1767,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12014,'Imma_Arrow_Container','Immaterial Arrow Quiver','Usable',2,250,true,'getitem 1757,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12015,'Rusty_Arrow_Container','Rusty Arrow Quiver','Usable',2,250,true,'getitem 1762,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12016,'Speed_Up_Potion','Speed Potion','Usable',2,100,true,'sc_start SC_SPEEDUP1,5000,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12017,'Slow_Down_Potion','Slow Potion','Usable',2,100,true,'sc_start SC_SlowDown,5000,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (12018,'Fire_Cracker','Firecracker','Usable',2,20,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12019,'Holy_Egg','Holy Egg','Delayconsume',2,150,'itemskill "ALL_RESURRECTION",2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12020,'Water_Of_Darkness','Cursed Water','Delayconsume',2,30,true,'itemskill "ITEM_ENCHANTARMS",8;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12021,'Pork_Belly','Pork','Healing',10,'itemheal rand(70,99),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12022,'Spareribs','Galbi','Healing',10,'itemheal rand(70,99),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (12023,'Giftbox_China','Wrapped Box','Usable',1000,200,true,'getrandgroupitem(IG_GiftBoxChina),1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_deadbranch`,`script`) VALUES (12024,'Red_Pouch_Of_Surprise','Red Pouch','Usable',50,50,true,'monster "this",-1,-1,"--ja--",-4,1,"";'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (12025,'Egg_Boy','Dano Festival Egg','Usable',1000,200,true,'getrandgroupitem(IG_EggBoy),1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (12026,'Egg_Girl','Dano Festival Egg','Usable',1000,200,true,'getrandgroupitem(IG_EggGirl),1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12027,'Giggling_Box','Giggling Box','Usable',1000,200,true,100,true,'percentheal 9,0; sc_start SC_Curse,30000,0,3000,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12028,'Box_Of_Thunder','Box of Thunder','Usable',1000,200,true,100,true,'sc_start SC_SPEEDUP0,20000,25;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12029,'Gloomy_Box','Box of Gloom','Delayconsume',1000,200,true,100,true,'itemskill "AC_CONCENTRATION",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12030,'Box_Of_Grudge','Box of Resentment','Usable',1000,200,true,100,true,'sc_start SC_ATKPOTION,60000,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12031,'Sleepy_Box','Box of Drowsiness','Usable',1000,200,true,100,true,'sc_start SC_MATKPOTION,60000,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12032,'Box_Of_Storm','Box of Storms','Delayconsume',1000,200,true,100,true,'itemskill "ITEM_ENCHANTARMS",2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12033,'Box_Of_Sunlight','Box of Sunlight','Usable',1000,200,true,100,true,'sc_start SC_Intravision,30000,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12034,'Painting_Box','Box of Panting','Usable',1000,200,true,100,true,'percentheal 0,9; sc_start SC_Silence,30000,0,3000,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12035,'Lotto_Box01','Lotto Box 01','Usable',20,'getitem rand(7361,7370),1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12036,'Lotto_Box02','Lotto Box 02','Usable',20,'getitem rand(7371,7380),1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12037,'Lotto_Box03','Lotto Box 03','Usable',20,'getitem rand(7381,7390),1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`script`) VALUES (12038,'Lotto_Box04','Lotto Box 04','Usable',20,true,'getrandgroupitem(IG_LottoBox),1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12039,'Lotto_Box05','Lotto Box 05','Usable',20,'getitem rand(7542,7546),1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12040,'Stone_Of_Intelligence_','Stone of Sage','Usable',100000,300,true,'homevolution;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12041,'Str_Dish01','Fried Grasshopper Legs','Healing',2000,60,true,'sc_start SC_STRFOOD,1200000,1; percentheal 5,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12042,'Str_Dish02','Seasoned Sticky Webfoot','Healing',4000,500,true,'sc_start SC_STRFOOD,1200000,2; percentheal 5,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12043,'Str_Dish03','Bomber Steak','Healing',6000,500,true,'sc_start SC_STRFOOD,1200000,3; percentheal 5,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12044,'Str_Dish04','Herb Marinade Beef','Healing',8000,500,true,'sc_start SC_STRFOOD,1200000,4; percentheal 5,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12045,'Str_Dish05','Lutie Lady\'s Pancake','Healing',10000,500,true,'sc_start SC_STRFOOD,1200000,5; percentheal 10,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12046,'Int_Dish01','Grape Juice Herbal Tea','Healing',2000,100,true,'sc_start SC_INTFOOD,1200000,1; percentheal 0,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12047,'Int_Dish02','Autumn Red Tea','Healing',4000,500,true,'sc_start SC_INTFOOD,1200000,2; percentheal 0,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12048,'Int_Dish03','Honey Herbal Tea','Healing',6000,500,true,'sc_start SC_INTFOOD,1200000,3; percentheal 0,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12049,'Int_Dish04','Morocc Fruit Wine','Healing',8000,300,true,'sc_start SC_INTFOOD,1200000,4; percentheal 0,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12050,'Int_Dish05','Mastela Fruit Wine','Healing',10000,400,true,'sc_start SC_INTFOOD,1200000,5; percentheal 0,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12051,'Vit_Dish01','Steamed Crab Nippers','Healing',2000,100,true,'sc_start SC_VITFOOD,1200000,1; percentheal 5,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12052,'Vit_Dish02','Assorted Seafood','Healing',4000,200,true,'sc_start SC_VITFOOD,1200000,2; percentheal 5,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12053,'Vit_Dish03','Clam Soup','Healing',6000,300,true,'sc_start SC_VITFOOD,1200000,3; percentheal 5,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12054,'Vit_Dish04','Seasoned Jellyfish','Healing',8000,500,true,'sc_start SC_VITFOOD,1200000,4; percentheal 5,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12055,'Vit_Dish05','Spicy Fried Bao','Healing',10000,800,true,'sc_start SC_VITFOOD,1200000,5; percentheal 10,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12056,'Agi_Dish01','Frog Egg Squid Ink Soup','Healing',2000,100,true,'sc_start SC_AGIFOOD,1200000,1; percentheal 3,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12057,'Agi_Dish02','Smooth Noodle','Healing',4000,100,true,'sc_start SC_AGIFOOD,1200000,2; percentheal 3,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12058,'Agi_Dish03','Tentacle Cheese Gratin','Healing',6000,500,true,'sc_start SC_AGIFOOD,1200000,3; percentheal 3,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12059,'Agi_Dish04','Lutie Cold Noodle','Healing',8000,400,true,'sc_start SC_AGIFOOD,1200000,4; percentheal 3,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12060,'Agi_Dish05','Steamed Bat Wing in Pumpkin','Healing',10000,500,true,'sc_start SC_AGIFOOD,1200000,5; percentheal 6,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12061,'Dex_Dish01','Honey Grape Juice','Healing',2000,100,true,'sc_start SC_DEXFOOD,1200000,1; percentheal 2,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12062,'Dex_Dish02','Chocolate Mousse Cake','Healing',4000,200,true,'sc_start SC_DEXFOOD,1200000,2; percentheal 2,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12063,'Dex_Dish03','Fruit Mix','Healing',6000,200,true,'sc_start SC_DEXFOOD,1200000,3; percentheal 2,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12064,'Dex_Dish04','Cream Sandwich','Healing',8000,500,true,'sc_start SC_DEXFOOD,1200000,4; percentheal 2,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12065,'Dex_Dish05','Green Salad','Healing',10000,200,true,'sc_start SC_DEXFOOD,1200000,5; percentheal 5,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12066,'Luk_Dish01','Fried Monkey Tails','Healing',2000,60,true,'sc_start SC_LUKFOOD,1200000,1; percentheal 3,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12067,'Luk_Dish02','Mixed Juice','Healing',4000,200,true,'sc_start SC_LUKFOOD,1200000,2; percentheal 3,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12068,'Luk_Dish03','Fried Sweet Potato','Healing',6000,500,true,'sc_start SC_LUKFOOD,1200000,3; percentheal 4,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12069,'Luk_Dish04','Steamed Ancient Lips','Healing',8000,500,true,'sc_start SC_LUKFOOD,1200000,4; percentheal 4,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12070,'Luk_Dish05','Fried Scorpion Tails','Healing',10000,400,true,'sc_start SC_LUKFOOD,1200000,5; percentheal 5,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12071,'Str_Dish06','Shiny Marinade Beef','Healing',20000,800,true,'sc_start SC_STRFOOD,1200000,6; percentheal 10,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12072,'Str_Dish07','Whole Roast','Healing',40000,1000,true,'sc_start SC_STRFOOD,1200000,7; percentheal 10,4;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12073,'Str_Dish08','Bearfoot Special','Healing',60000,500,true,'sc_start SC_STRFOOD,1200000,8; percentheal 15,6;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12074,'Str_Dish09','Tendon Satay','Healing',80000,1000,true,'sc_start SC_STRFOOD,1200000,9; percentheal 15,8;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12075,'Str_Dish10','Steamed Tongue','Healing',100000,1000,true,'sc_start SC_STRFOOD,1200000,10; percentheal 20,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12076,'Int_Dish06','Red Mushroom Wine','Healing',20000,300,true,'sc_start SC_INTFOOD,1200000,6; percentheal 2,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12077,'Int_Dish07','Special Royal Jelly Herbal Tea','Healing',40000,800,true,'sc_start SC_INTFOOD,1200000,7; percentheal 4,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12078,'Int_Dish08','Royal Family Tea','Healing',60000,1000,true,'sc_start SC_INTFOOD,1200000,8; percentheal 6,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12079,'Int_Dish09','Tristan XII','Healing',80000,1000,true,'sc_start SC_INTFOOD,1200000,9; percentheal 8,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12080,'Int_Dish10','Dragon Breath Cocktail','Healing',100000,1000,true,'sc_start SC_INTFOOD,1200000,10; percentheal 10,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12081,'Vit_Dish06','Awfully Bitter Bracer','Healing',20000,500,true,'sc_start SC_VITFOOD,1200000,6; percentheal 13,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12082,'Vit_Dish07','Sumptuous Feast','Healing',40000,400,true,'sc_start SC_VITFOOD,1200000,7; percentheal 16,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12083,'Vit_Dish08','Giant Burito','Healing',60000,1000,true,'sc_start SC_VITFOOD,1200000,8; percentheal 19,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12084,'Vit_Dish09','Ascending Dragon Soup','Healing',80000,1000,true,'sc_start SC_VITFOOD,1200000,9; percentheal 22,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12085,'Vit_Dish10','Immortal Stew','Healing',100000,1000,true,'sc_start SC_VITFOOD,1200000,10; percentheal 25,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12086,'Agi_Dish06','Chile Shrimp Gratin','Healing',20000,800,true,'sc_start SC_AGIFOOD,1200000,6; percentheal 7,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12087,'Agi_Dish07','Steamed Alligator with Vegetable','Healing',40000,800,true,'sc_start SC_AGIFOOD,1200000,7; percentheal 8,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12088,'Agi_Dish08','Incredibly Spicy Curry','Healing',60000,1000,true,'sc_start SC_AGIFOOD,1200000,8; percentheal 9,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12089,'Agi_Dish09','Special Meat Stew','Healing',80000,1000,true,'sc_start SC_AGIFOOD,1200000,9; percentheal 10,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12090,'Agi_Dish10','Steamed Desert Scorpions','Healing',100000,1000,true,'sc_start SC_AGIFOOD,1200000,10; percentheal 15,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12091,'Dex_Dish06','Peach Cake','Healing',20000,800,true,'sc_start SC_DEXFOOD,1200000,6; percentheal 5,6;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12092,'Dex_Dish07','Soul Haunted Bread','Healing',40000,800,true,'sc_start SC_DEXFOOD,1200000,7; percentheal 5,7;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12093,'Dex_Dish08','Special Toast','Healing',60000,1000,true,'sc_start SC_DEXFOOD,1200000,8; percentheal 5,8;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12094,'Dex_Dish09','Heavenly Fruit Juice','Healing',80000,500,true,'sc_start SC_DEXFOOD,1200000,9; percentheal 5,9;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12095,'Dex_Dish10','Hwergelmir\'s Tonic','Healing',100000,1000,true,'sc_start SC_DEXFOOD,1200000,10; percentheal 10,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12096,'Luk_Dish06','Lucky Soup','Healing',20000,300,true,'sc_start SC_LUKFOOD,1200000,6; percentheal 6,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12097,'Luk_Dish07','Assorted Shish Kebob','Healing',40000,800,true,'sc_start SC_LUKFOOD,1200000,7; percentheal 7,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12098,'Luk_Dish08','Strawberry Flavored Rice Ball','Healing',60000,400,true,'sc_start SC_LUKFOOD,1200000,8; percentheal 9,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12099,'Luk_Dish09','Blood Flavored Soda','Healing',80000,1000,true,'sc_start SC_LUKFOOD,1200000,9; percentheal 10,4;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12100,'Luk_Dish10','Cooked Nine Tail\'s Tails','Healing',100000,500,true,'sc_start SC_LUKFOOD,1200000,10; percentheal 14,8;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (12101,'Citron','Citron','Healing',20,300,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (12102,'Meat_Skewer','Grilled Skewer','Healing',20,300,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_deadbranch`,`script`) VALUES (12103,'Bloody_Dead_Branch','Bloody Branch','Usable',10000,200,true,true,'monster "this",-1,-1,"--ja--",-3,1,"";'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (12104,'Random_Quiver','Random Quiver','Usable',10000,200,true,true,'getrandgroupitem(IG_Quiver),1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (12105,'Set_Of_Taiming_Item','Taming Gift Set','Usable',10000,200,true,true,'getrandgroupitem(IG_Taming),1; getrandgroupitem(IG_Taming),1; getrandgroupitem(IG_Taming),1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (12106,'Accessory_Box','Jewelry Box','Usable',10000,200,true,true,'getrandgroupitem(IG_Accesory),1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (12107,'Wrapped_Mask','Wrapped Mask','Usable',10000,200,true,true,'getrandgroupitem(IG_Mask),1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (12108,'Bundle_Of_Magic_Scroll','Scroll Package','Usable',10000,200,true,true,'getrandgroupitem(IG_Scroll),1; getrandgroupitem(IG_Scroll),1; getrandgroupitem(IG_Scroll),1; getrandgroupitem(IG_Scroll),1; getrandgroupitem(IG_Scroll),1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_deadbranch`,`script`) VALUES (12109,'Poring_Box','Poring Box','Usable',10000,200,true,true,'monster "this",-1,-1,"--ja--",-2,1,"";'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (12110,'First_Aid_Kit','First Aid Kit','Usable',10000,200,true,true,'getrandgroupitem(IG_FirstAid),1; getrandgroupitem(IG_FirstAid),1; getrandgroupitem(IG_FirstAid),1; getrandgroupitem(IG_FirstAid),1; getrandgroupitem(IG_FirstAid),1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (12111,'Food_Package','Bundle of Food','Usable',10000,200,true,true,'getrandgroupitem(IG_FoodBag),1; getrandgroupitem(IG_FoodBag),1; getrandgroupitem(IG_FoodBag),1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12112,'Tropical_Sograt','Tropical Sograt','Usable',1000,100,true,'sc_start SC_Curse,10000,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12113,'Vermilion_The_Beach','Vermilion on the Beach','Usable',1000,100,true,'sc_start SC_Stun,10000,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12114,'Elemental_Fire','Elemental Converter','Delayconsume',2,10,true,'itemskill "ITEM_ENCHANTARMS",4;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12115,'Elemental_Water','Elemental Converter','Delayconsume',2,10,true,'itemskill "ITEM_ENCHANTARMS",2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12116,'Elemental_Earth','Elemental Converter','Delayconsume',2,10,true,'itemskill "ITEM_ENCHANTARMS",3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12117,'Elemental_Wind','Elemental Converter','Delayconsume',2,10,true,'itemskill "ITEM_ENCHANTARMS",5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12118,'Resist_Fire','Fireproof Potion','Usable',2,10,true,'sc_start4 SC_ARMOR_ELEMENT_FIRE,1200000,-15,0,20,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12119,'Resist_Water','Coldproof Potion','Usable',2,10,true,'sc_start4 SC_ARMOR_ELEMENT_WATER,1200000,20,0,0,-15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12120,'Resist_Earth','Earthproof Potion','Usable',2,10,true,'sc_start4 SC_ARMOR_ELEMENT_EARTH,1200000,0,20,-15,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12121,'Resist_Wind','Thunderproof Potion','Usable',2,10,true,'sc_start4 SC_ARMOR_ELEMENT_WIND,1200000,0,-15,0,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12122,'Sesame_Pastry','Sesame Pastry','Usable',2,70,true,'sc_start SC_HITFOOD,1800000,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12123,'Honey_Pastry','Honey Pastry','Usable',2,70,true,'sc_start SC_FLEEFOOD,1800000,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12124,'Rainbow_Cake','Rainbow Cake','Usable',2,70,true,'sc_start SC_BATKFOOD,60000,10; sc_start SC_MATKFOOD,60000,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12125,'Outdoor_Cooking_Kits','Outdoor Cooking Kit','Usable',500,20,true,'cooking 11;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12126,'Indoor_Cooking_Kits','Home Cooking Kit','Usable',1000,30,true,'cooking 12;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12127,'High_end_Cooking_Kits','Professional Cooking Kit','Usable',2000,50,true,'cooking 13;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12128,'Imperial_Cooking_Kits','Royal Cooking Kit','Usable',5000,70,true,'cooking 14;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12129,'Fantastic_Cooking_Kits','Fantastic Cooking Kit','Usable',10000,70,true,'cooking 15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (12130,'Cookie_Bag','Cookie Bag','Usable',2,70,true,true,'getrandgroupitem(IG_CookieBag),1; getrandgroupitem(IG_CookieBag),1; getrandgroupitem(IG_CookieBag),1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12131,'Lucky_Potion','Lucky Potion','Healing',2,100); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (12132,'Red_Bag','Santa\'s Bag','Usable',200,true,'sc_start SC_Xmas,600000,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12133,'Ice_Cream_','McDonald\'s Ice Cone','Healing',80,'if(gettime(DT_DAYOFMONTH)!=MDiceCone) { set MDiceCone,gettime(DT_DAYOFMONTH); percentheal 50,50; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12134,'Red_Envelope','Red Envelope','Usable',1,10,'set Zeny,Zeny+rand(1000,10000);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12135,'Green_Ale','Green Ale','Usable',20,30,'percentheal 50,50; sc_start SC_Confusion,10000,0,1000,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12136,'Women\'s_Bundle','Women\'s Bundle','Usable',100,'getitem callfunc("F_Rand",558,529,2668,7518),1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (12137,'1st_Stage_Prize','First Stage Prize','Usable'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (12138,'2nd_Stage_Prize','Second Stage Prize','Usable'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (12139,'3rd_Stage_Prize','Third Stage Prize','Usable'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (12140,'4th_Stage_Prize','Fourth Stage Prize','Usable'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (12141,'5th_Stage_Prize','Fifth Stage Prize','Usable'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12142,'Magic_Book','Book of Magic','Usable',100,100,true,true,true,true,true,true,true,'sc_start SC_AGIFOOD,1800000,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12143,'Red_Can','Red Can','Usable',50000,300); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12144,'Sphere_Case_Wind','Lightning Sphere Pack','Usable',2,350,true,'getitem 13204,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12145,'Sphere_Case_Darkness','Blind Sphere Pack','Usable',2,350,true,'getitem 13206,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12146,'Sphere_Case_Poison','Poison Sphere Pack','Usable',2,350,true,'getitem 13205,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12147,'Sphere_Case_Water','Freezing Sphere Pack','Usable',2,350,true,'getitem 13207,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12148,'Sphere_Case_Fire','Flare Sphere Pack','Usable',2,350,true,'getitem 13203,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12149,'Bullet_Case','Cartridge','Usable',2,250,true,'getitem 13200,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12150,'Bullet_Case_Blood','Blood Cartridge','Usable',2,250,true,'getitem 13202,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12151,'Bullet_Case_Silver','Silver Cartridge','Usable',2,250,true,'getitem 13201,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12152,'Special_Box','Special Present','Usable',100); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12153,'Bow_Mercenary_Scroll1','Bowman Scroll 1','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6017,1800000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12154,'Bow_Mercenary_Scroll2','Bowman Scroll 2','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6018,1800000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12155,'Bow_Mercenary_Scroll3','Bowman Scroll 3','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6019,1800000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12156,'Bow_Mercenary_Scroll4','Bowman Scroll 4','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6020,1800000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12157,'Bow_Mercenary_Scroll5','Bowman Scroll 5','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6021,1800000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12158,'Bow_Mercenary_Scroll6','Bowman Scroll 6','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6022,1800000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12159,'Bow_Mercenary_Scroll7','Bowman Scroll 7','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6023,1800000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12160,'Bow_Mercenary_Scroll8','Bowman Scroll 8','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6024,1800000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12161,'Bow_Mercenary_Scroll9','Bowman Scroll 9','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6025,1800000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12162,'Bow_Mercenary_Scroll10','Bowman Scroll 10','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6026,1800000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12163,'SwordMercenary_Scroll1','Fencer Scroll 1','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6037,1800000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12164,'SwordMercenary_Scroll2','Fencer Scroll 2','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6038,1800000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12165,'SwordMercenary_Scroll3','Fencer Scroll 3','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6039,1800000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12166,'SwordMercenary_Scroll4','Fencer Scroll 4','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6040,1800000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12167,'SwordMercenary_Scroll5','Fencer Scroll 5','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6041,1800000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12168,'SwordMercenary_Scroll6','Fencer Scroll 6','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6042,1800000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12169,'SwordMercenary_Scroll7','Fencer Scroll 7','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6043,1800000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12170,'SwordMercenary_Scroll8','Fencer Scroll 8','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6044,1800000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12171,'SwordMercenary_Scroll9','Fencer Scroll 9','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6045,1800000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12172,'SwordMercenary_Scroll10','Fencer Scroll 10','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6046,1800000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12173,'SpearMercenary_Scroll1','Spearman Scroll 1','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6027,1800000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12174,'SpearMercenary_Scroll2','Spearman Scroll 2','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6028,1800000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12175,'SpearMercenary_Scroll3','Spearman Scroll 3','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6029,1800000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12176,'SpearMercenary_Scroll4','Spearman Scroll 4','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6030,1800000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12177,'SpearMercenary_Scroll5','Spearman Scroll 5','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6031,1800000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12178,'SpearMercenary_Scroll6','Spearman Scroll 6','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6032,1800000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12179,'SpearMercenary_Scroll7','Spearman Scroll 7','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6033,1800000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12180,'SpearMercenary_Scroll8','Spearman Scroll 8','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6034,1800000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12181,'SpearMercenary_Scroll9','Spearman Scroll 9','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6035,1800000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12182,'SpearMercenary_Scroll10','Spearman Scroll 10','Usable',2,100,100,true,true,true,true,true,true,true,'mercenary_create 6036,1800000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12183,'Holy_Arrow_Quiver','Holy Arrow Quiver','Usable',2,250,true,'getitem 1772,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12184,'Mercenary_Red_Potion','Mercenary Red Potion','Usable',500,100,true,'mercenary_heal 1000,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12185,'Mercenary_Blue_Potion','Mercenary Blue Potion','Usable',1000,100,true,'mercenary_heal 0,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (12186,'Red_Box','Old Red Box','Usable',50000,200,true,'getrandgroupitem(IG_RedBox),1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (12187,'Green_Box','Old Green Box','Usable',50000,200,true,'getrandgroupitem(IG_GreenBox),1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12188,'Magical_Moon_Cake','Grace Moon Cake','Healing',20,300,'percentheal 50,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (12189,'Red_Box_','Old Red Box','Usable',50000,200,true,'getrandgroupitem(IG_RedBox_2),1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12190,'Moon_Cake','Moon Cake','Usable',2,300); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12191,'Special_Moon_Cake','Special Moon Cake','Usable',2,500); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12192,'Pumpkin_Pie','Pumpkin Pie','Healing',20,10,'percentheal 5,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12193,'Brezel','Pretzel','Usable',20,20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (12194,'Hometown_Gift','Hometown Gift','Usable',20,200,true,true,'getrandgroupitem(IG_HometownGift),1; getrandgroupitem(IG_HometownGift),1; getrandgroupitem(IG_HometownGift),1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12195,'Plain_Rice_Cake','Plain Rice Cake','Healing',20,100,true,'percentheal 0,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12196,'Hearty_Rice_Cake','Hearty Rice Cake','Healing',20,100,true,'percentheal 50,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12197,'Salty_Rice_Cake','Salty Rice Cake','Healing',20,100,true,'percentheal 10,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12198,'Lucky_Rice_Cake','Lucky Rice Cake','Usable',20,100,true,'sc_start SC_INCLUK,1200000,21;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12199,'Rice_Scroll','Scroll of Magic','Usable',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12200,'Event_Cake','X-mas Cake','Delayconsume',20,50,'itemskill "PR_MAGNIFICAT",3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12201,'Red_Box_C','Commonplace Red Box','Usable',20,200); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12202,'Str_Dish10_','Steamed Tongue','Healing',2,10,100,true,true,true,true,true,true,true,'sc_start SC_FOOD_STR_CASH,1800000,10; percentheal 15,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12203,'Agi_Dish10_','Steamed Scorpion','Healing',2,10,100,true,true,true,true,true,true,true,'sc_start SC_FOOD_AGI_CASH,1800000,10; percentheal 15,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12204,'Int_Dish10_','Dragon Breath Cocktail','Healing',2,10,100,true,true,true,true,true,true,true,'sc_start SC_FOOD_INT_CASH,1800000,10; percentheal 15,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12205,'Dex_Dish10_','Hwergelmir\'s Tonic','Healing',2,10,100,true,true,true,true,true,true,true,'sc_start SC_FOOD_DEX_CASH,1800000,10; percentheal 15,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12206,'Luk_Dish10_','Cooked Nine Tail\'s Tails','Healing',2,10,100,true,true,true,true,true,true,true,'sc_start SC_FOOD_LUK_CASH,1800000,10; percentheal 15,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12207,'Vit_Dish10_','Stew Of Immortality','Healing',2,10,100,true,true,true,true,true,true,true,'sc_start SC_FOOD_VIT_CASH,1800000,10; percentheal 15,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`delay_duration`,`delay_status`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12208,'Battle_Manual','Battle Manual','Usable',2,10,60000,'Reuse_Limit_C',100,true,true,true,true,true,true,true,'sc_start SC_EXPBOOST,1800000,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12209,'Insurance','Life Insurance','Usable',2,10,100,true,true,true,true,true,true,true,'sc_start SC_LIFEINSURANCE,1800000,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`delay_duration`,`delay_status`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12210,'Bubble_Gum','Bubble Gum','Usable',2,10,60000,'Reuse_Limit_D',100,true,true,true,true,true,true,true,'sc_start SC_ITEMBOOST,1800000,200;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12211,'Kafra_Card','Kafra Card','Usable',2,10,100,true,true,true,true,true,true,true,'callfunc "F_CashStore";'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12212,'Giant_Fly_Wing','Giant Fly Wing','Usable',2,10,100,true,true,true,true,true,true,true,'callfunc "F_CashPartyCall";'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12213,'Neuralizer','Neuralizer','Delayconsume',2,100,true,true,true,true,true,true,true,'callfunc "F_CashReset";'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12214,'Convex_Mirror','Convex Mirror','Usable',2,10,100,true,true,true,true,true,true,true,'sc_start SC_BOSSMAPINFO,600000,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12215,'Blessing_10_Scroll','LV10 Blessing Scroll','Usable',2,10,100,true,100,true,true,true,true,true,true,true,'skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,240000,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12216,'Inc_Agi_10_Scroll','LV10 Agil Scroll','Usable',2,10,100,true,100,true,true,true,true,true,true,true,'if(Hp>15) { skilleffect "AL_INCAGI",0; sc_start SC_INCREASEAGI,240000,10; heal -15,0; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12217,'Aspersio_5_Scroll','LV5 Aspersio Scroll','Usable',2,10,100,true,100,true,true,true,true,true,true,true,'if(countitem(523)>0) { skilleffect "PR_ASPERSIO",0; sc_start SC_ASPERSIO,180000,5; delitem 523,1; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12218,'Assumptio_5_Scroll','LV5 Assumptio Scroll','Usable',2,10,100,true,100,true,true,true,true,true,true,true,'sc_start SC_ASSUMPTIO,100000,5; skilleffect "HP_ASSUMPTIO",0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12219,'Wind_Walk_10_Scroll','LV10 Wind Walker Scroll','Usable',2,10,100,true,100,true,true,true,true,true,true,true,'skilleffect "SN_WINDWALK",0; sc_start SC_WINDWALK,250000,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12220,'Adrenaline_Scroll','LV5 Adrenaline Scroll','Usable',2,10,100,true,100,true,true,true,true,true,true,true,'set .@type,getiteminfo(getequipid(EQI_HAND_R),11); if (.@type==W_1HAXE||.@type==W_2HAXE||.@type==W_MACE) { skilleffect "BS_ADRENALINE",0; sc_start SC_ADRENALINE,150000,5; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12221,'Megaphone_','Megaphone','Usable',2,10,100,true,true,true,true,true,true,true,'input @megaphone$; announce strcharinfo(0) + ": " + @megaphone$,bc_all,0xFF0000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12225,'Sweet_Candy_Striper','Sweet Candy Cane','Usable',20,50,100,true,'pet 1245;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12226,'Examination1','Examination 1','Healing',20,50,'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;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12227,'Examination2','Examination 2','Healing',20,50,'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;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12228,'Examination3','Examination 3','Healing',20,50,'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;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12229,'Examination4','Examination 4','Healing',20,50,'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;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12230,'Examination5','Examination 5','Healing',20,50,'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;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12231,'Examination6','Examination 6','Healing',20,50,'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;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12232,'Gingerbread','Ginger Bread','Usable',20,150,'sc_start SC_ASPDPOTION1,900000,0; sc_start SC_SPEEDUP0,900000,25;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12233,'Kvass','Kvass','Healing',20,200,'percentheal 100,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12234,'Cacao99','Fierce Cacao 99%','Healing',20,100,'percentheal 25,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12235,'Strawberry_Choco','Chocolate Strawberry','Usable',20,100,100,true,'percentheal 0,5; skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,240000,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12236,'Choco_Tart','Chocolate Tart','Delayconsume',20,100,100,true,'percentheal 5,0; itemskill "AL_ANGELUS",5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12237,'Choco_Lump','Junky Chocolate','Usable',100,100,true,'percentheal 0,5; sc_start SC_Poison,18000,0; sc_start SC_Bleeding,18000,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12238,'New_Year_Rice_Cake_1','New Year Rice Cake','Usable',20,100,'sc_start SC_DPoison,10000,0,1000,0; sc_start SC_Poison,50000,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12239,'New_Year_Rice_Cake_2','New Year Rice Cake','Usable',20,100,'sc_start SC_DPoison,10000,0,1000,0; sc_start SC_Poison,50000,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (12240,'Old_Yellow_Box','Old Yellow Box','Usable',20,200,true,'getrandgroupitem(IG_YellowBox),1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12241,'M_Center_Potion','Mercenary Concentration Potion','Usable',800,100,true,'mercenary_sc_start SC_ASPDPOTION0,1800000,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12242,'M_Awakening_Potion','Mercenary Awakening Potion','Usable',1500,150,true,'mercenary_sc_start SC_ASPDPOTION1,1800000,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12243,'M_Berserk_Potion','Mercenary Berserk Potion','Usable',3000,200,true,'mercenary_sc_start SC_ASPDPOTION2,1800000,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (12244,'Old_Gift_Box','Old Gift Box','Usable',20,200,true,'getrandgroupitem(IG_OldGiftBox),1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12245,'Green_Ale_US','Green Ale','Healing',5000,500,'percentheal 100,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (12246,'Magic_Card_Album','Mystical Card Album','Usable',10000,50,true,true,'getrandgroupitem(IG_MagicCardAlbum),1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`script`) VALUES (12247,'Halohalo','Halo-Halo','Usable',2,100,20,'sc_start SC_INCALLSTATUS,600000,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (12248,'Masquerade_Ball_Box','Fancy Ball Box','Usable',20,10,true,'getrandgroupitem(IG_Masquerade),1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12249,'Payroll_Of_Kafra_','Payment Statement for Kafra Employee','Usable',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12250,'Str_Dish10_M','Steamed Tongue','Usable',10,'sc_start SC_STRFOOD,3600000,10; percentheal 20,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12251,'Agi_Dish10_M','Steamed Desert Scorpions','Usable',10,'sc_start SC_AGIFOOD,3600000,10; percentheal 15,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12252,'Int_Dish10_M','Dragon Breath Cocktail','Usable',10,'sc_start SC_INTFOOD,3600000,10; percentheal 10,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12253,'Dex_Dish10_M','Hwergelmir\'s Tonic','Usable',10,'sc_start SC_DEXFOOD,3600000,10; percentheal 10,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12254,'Luk_Dish10_M','Cooked Nine Tail','Usable',10,'sc_start SC_LUKFOOD,3600000,10; percentheal 14,8;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12255,'Vit_Dish10_M','Immortal Stew','Usable',10,'sc_start SC_VITFOOD,3600000,10; percentheal 25,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12256,'PRO_Gift_Box','PRO Gift Box','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`script`) VALUES (12257,'Cold_Medicine','Cold Medicine','Healing',20,100,50,'percentheal 25,25;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12258,'Bombring_Box','Bomb Poring Box','Usable',10,100,true,true,true,true,true,true,true,'if(strcharinfo(3)=="job3_rang02") { monster "this",-1,-1,"--ja--",1904,1,""; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12259,'Miracle_Medicine','Miracle Tonic','Usable',100,true,true,true,true,true,true,true,true,'getexp2(3000000,1500000);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (12260,'Cool_Summer_Outfit','Cool Summer Outfit','Usable',100,true,'sc_start SC_Summer,600000,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12261,'Secret_Medicine','Leap of Fantasy','Usable',100,true,true,true,true,true,true,true,true,'getexp2(2000000,1000000);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12262,'Inspector_Certificate_','Authoritative Badge','Usable',10,100,true,true,true,true,true,true,true,true,'sc_start SC_SPEEDUP0,540000,25;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12263,'Comp_Battle_Manual','Field Manual','Usable',2,10,100,true,true,true,true,true,true,true,'sc_start SC_EXPBOOST,1800000,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12264,'Comp_Bubble_Gum','Bubble Gum','Usable',2,10,100,true,true,true,true,true,true,true,'sc_start SC_ITEMBOOST,1800000,200;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12265,'Comp_Insurance','Life Insurrance','Usable',2,10,100,true,true,true,true,true,true,true,'sc_start SC_LIFEINSURANCE,1800000,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12266,'Sesame_Pastry_','Sesame Pastry','Usable',2,70,100,true,true,true,true,true,true,true,true,'sc_start SC_HITFOOD,180000,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12267,'Honey_Pastry_','Honey Pastry','Usable',2,70,100,true,true,true,true,true,true,true,true,'sc_start SC_FLEEFOOD,180000,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12268,'Rainbow_Cake_','Rainbow Cake','Usable',2,70,100,true,true,true,true,true,true,true,true,'sc_start SC_ATKPOTION,60000,10; sc_start SC_MATKFOOD,60000,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12269,'Tasty_Colonel','Tasty Pink Ration','Usable',2,70,100,true,true,true,true,true,true,true,'sc_start SC_ATKPOTION,600000,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12270,'Tasty_Major','Tasty White Ration','Usable',2,70,100,true,true,true,true,true,true,true,'sc_start SC_MATKPOTION,600000,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12271,'Mre_A','Military Ration A','Healing',2,70,100,true,true,true,true,true,true,true,'percentheal 5,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12272,'Mre_B','Military Ration B','Usable',2,70,100,true,true,true,true,true,true,true,'sc_start SC_HITFOOD,600000,33;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12273,'Mre_C','Military Ration C','Usable',2,70,100,true,true,true,true,true,true,true,'sc_start SC_FLEEFOOD,600000,33;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12274,'Gold_Pill_1','Daehwandan','Healing',10,100,true,true,true,true,true,true,true,true,'sc_start2 SC_INCREASE_MAXHP,3600000,5,10; percentheal 10,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12275,'Gold_Pill_2','Taecheongdan','Healing',10,100,true,true,true,true,true,true,true,true,'sc_start2 SC_INCREASE_MAXSP,3600000,5,10; percentheal 0,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (12276,'Mimic_Scroll','Mimic Scroll','Usable',2,10,100,true,true,true,'mercenary_create 2058,1800000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (12277,'Disguise_Scroll','Disguise Scroll','Usable',2,10,100,true,true,true,'mercenary_create 2059,1800000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (12278,'Alice_Scroll','Alice Scroll','Usable',2,10,100,true,true,true,'mercenary_create 2060,1800000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12279,'Undead_Element_Scroll','Undead Elemental Scroll','Usable',10,'sc_start4 SC_ARMOR_RESIST,300000,20,20,20,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12280,'Holy_Element_Scroll','Holy Elemental Scroll','Usable',10,'specialeffect2 EF_BENEDICTIO; sc_start SC_BENEDICTIO,300000,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`script`) VALUES (12281,'Tresure_Box_WoE','Event Treasure Box','Usable',20,150,true,'getrandgroupitem(IG_Tresure_Box_WoE),1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12282,'Internet_Cafe1','Internet Cafe1','Usable',10,'sc_start SC_INCALLSTATUS,5400000,3; sc_start SC_ATKPOTION,5400000,15; sc_start SC_MATKPOTION,5400000,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12283,'Internet_Cafe2','Internet Cafe2','Usable',10,'sc_start SC_INCSTR,5400000,8; sc_start SC_INCDEX,5400000,4; sc_start SC_INCAGI,5400000,6; sc_start SC_ATKPOTION,5400000,32; sc_start SC_INCFLEE,5400000,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12284,'Internet_Cafe3','Internet Cafe3','Usable',10,'sc_start SC_INCINT,5400000,8; sc_start SC_INCVIT,5400000,4; sc_start SC_INCDEX,5400000,6; sc_start SC_MATKPOTION,5400000,40;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12285,'Internet_Cafe4','Internet Cafe4','Usable',10,'sc_start SC_INCDEX,5400000,8; sc_start SC_INCLUK,5400000,4; sc_start SC_INCAGI,5400000,6; sc_start SC_ATKPOTION,5400000,24; sc_start SC_MATKPOTION,5400000,24;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`script`) VALUES (12286,'Masquerade_Ball_Box2','Masquerade Ball Box2','Usable',10,true,'getrandgroupitem(IG_Masquerade_2),1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`,`unequip_script`) VALUES (12287,'Love_Angel','Love Angel Magic Powder','Usable',100,true,true,true,true,true,true,true,true,'setfont 1;','setfont 0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`,`unequip_script`) VALUES (12288,'Squirrel','Squirrel Magic Powder','Usable',100,true,true,true,true,true,true,true,true,'setfont 2;','setfont 0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`,`unequip_script`) VALUES (12289,'Gogo','Gogo Magic Powder','Usable',100,true,true,true,true,true,true,true,true,'setfont 3;','setfont 0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12290,'Mysterious_Can','Mysterious Can Magic Powder','Usable',10,100,true,100,true,'percentheal 5,0; skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,120000,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12291,'Mysterious_PET_Bottle','Mysterious PET Bottle','Usable',10,100,true,100,true,'percentheal 5,0; skilleffect "AL_INCAGI",0; sc_start SC_INCREASEAGI,120000,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12292,'Unripe_Fruit','Unripe Fruit','Healing',500,200,true,'percentheal 20,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12293,'Dried_Yggdrasilberry','Dried Yggdrasilberry','Healing',500,200,true,'percentheal 0,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12294,'PC_Bang_Coin_Box1','PC-Room Coin Box','Usable',10,100,true,true,true,true,true,true,true,true,'getitem 2740,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12295,'PC_Bang_Coin_Box2','PC-Room Coin Box','Usable',10,100,true,true,true,true,true,true,true,true,'getitem 2739,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12296,'PC_Bang_Coin_Box3','PC-Room Coin Box','Usable',10,100,true,true,true,true,true,true,true,true,'getitem 2738,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12297,'PC_Bang_Coin_Box4','PC-Room Coin Box','Usable',10,100,true,true,true,true,true,true,true,true,'getitem 2738,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12298,'SP_Potion','SP Consumption Reduction Potion','Usable',10,100,true,true,true,true,true,true,true,true,'sc_start SC_SPCOST_RATE,3600000,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12299,'Mega_Resist_Potion','Mega Resist Potion','Usable',10,100,true,true,true,true,true,true,true,true,'sc_start SC_COMMONSC_RESIST,3600000,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12300,'Wild_Rose_Scroll','Wild Rose Contract','Usable',10,100,true,true,true,true,true,true,true,'mercenary_create 1965,1800000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12301,'Doppelganger_Scroll','Doppelganger Contract','Usable',10,100,true,true,true,true,true,true,true,'mercenary_create 1966,1800000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12302,'Ygnizem_Scroll','Egnigem Cenia Contract','Usable',10,100,true,true,true,true,true,true,true,'mercenary_create 1967,1800000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12303,'Water_Of_Blessing','Blessing Of Water','Usable',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`,`unequip_script`) VALUES (12304,'Picture_Diary','Diary Magic Powder','Usable',100,true,true,true,true,true,true,true,true,'setfont 4;','setfont 0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`,`unequip_script`) VALUES (12305,'Mini_Heart','Mini Heart Magic Powder','Usable',100,true,true,true,true,true,true,true,true,'setfont 5;','setfont 0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`,`unequip_script`) VALUES (12306,'Newcomer','Freshman Magic Powder','Usable',100,true,true,true,true,true,true,true,true,'setfont 6;','setfont 0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`,`unequip_script`) VALUES (12307,'Kid','Kid Magic Powder','Usable',100,true,true,true,true,true,true,true,true,'setfont 7;','setfont 0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`,`unequip_script`) VALUES (12308,'Magic_Castle','Magic Magic Powder','Usable',100,true,true,true,true,true,true,true,true,'setfont 8;','setfont 0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`,`unequip_script`) VALUES (12309,'Bulging_Head','JJangu Magic Powder','Usable',100,true,true,true,true,true,true,true,true,'setfont 9;','setfont 0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12310,'Spray_Of_Flowers','Spray Of Flowers','Usable',50,100,true,100,true,true,true,true,true,true,'sc_start SC_FLEEFOOD,300000,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12311,'Large_Spray_Of_Flowers','Huge Spray Of Flowers','Delayconsume',100,100,true,100,true,true,true,true,true,true,'itemskill "ALL_PARTYFLEE",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (12312,'Thick_Manual50','Thick Battle Manual','Usable','sc_start SC_EXPBOOST,3600000,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12313,'Protection_Of_Angel','Guardian Angel','Usable',100,true,100,true,true,true,true,true,true,true,'/* itemskill "ALL_ANGEL_PROTECT",1; */'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12314,'Noive_Box','Noive Box','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12315,'Goddess_Bless','Goddess Of Blessing','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12316,'Angel_Bless','Angel Of Blessing','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12317,'Powder_Snow','Snow Powder','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12318,'Little_Heart','Small Hearts','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12319,'Strawberry_Cake','Rune Strawberry Cake','Usable',300,'sc_start SC_ATKPOTION,600000,5; sc_start SC_MATKPOTION,600000,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12320,'Pineapple_Juice','Schwarzwald Pine Jubilee','Usable',300,'sc_start SC_HITFOOD,600000,10; sc_start SC_FLEEFOOD,600000,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12321,'Spicy_Sandwich','Arunafeltz Desert Sandwich','Usable',300,'sc_start SC_INCCRI,600000,7;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12322,'Chocolate_Pie','Chocolate Pie','Healing',50,'percentheal 5,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12323,'N_Fly_Wing','Novice Fly Wing','Delayconsume',100,true,100,true,true,true,true,true,true,true,true,'itemskill "AL_TELEPORT",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12324,'N_Butterfly_Wing','Novice Butterfly Wing','Delayconsume',100,true,100,true,true,true,true,true,true,true,true,'itemskill "AL_TELEPORT",3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12325,'N_Magnifier','Novice Magnifier','Delayconsume',100,true,100,true,true,true,true,true,true,true,true,'itemskill "MC_IDENTIFY",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12326,'J_Firecracker','Large Firecracker','Usable',2,20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12327,'Charm_Of_Luck','Charm Of Luck','Usable',1000,50); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12328,'Charm_Of_Happiness','Charm Of Happiness','Usable',1800,100,'sc_start SC_INCLUK,3600000,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (12329,'Recall_MaleGM','Summon Male GameMaster Scroll','Usable',10,true,'mercenary_create 2000,1800000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (12330,'Recall_FemaleGM','Summon Female GameMaster Scroll','Usable',10,true,'mercenary_create 2001,1800000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12331,'Ginseng','Ginseng','Healing',10,100,true,true,true,true,true,true,true,true,'percentheal 6,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12332,'Fruit_Juice','Fruit Juice','Healing',10,100,true,true,true,true,true,true,true,true,'percentheal 0,6;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`stack_amount`,`stack_inventory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12333,'Ansila','Ancilla','Usable',10,3,true,100,true,true,true,true,true,true,true,true,'percentheal 0,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`script`) VALUES (12334,'Cherish_Box','Treasure Edition Helm Box','Usable',10,true,'getrandgroupitem(IG_Cherish_Box),1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12335,'Yummy_Skewered_Dish','Grilled Delicious Skewer','Healing',1000,350,'percentheal 60,60;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12336,'Baked_Mushroom','Grilled Mushroom','Healing',500,300,'percentheal 30,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12337,'Grilled_Sausage','Grilled Sausages','Healing',300,200,'percentheal 20,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12338,'Grilled_Corn','Grilled Corn','Usable',100,100,'sc_start SC_INCSTR,180000,2; sc_start SC_INCINT,180000,2; sc_start SC_INCAGI,180000,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`script`) VALUES (12339,'Cherish_Box_Ori','Treasure Edition Box','Usable',10,true,'getrandgroupitem(IG_Cherish_Box_Ori),1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12340,'Mysterious_Rice_Powder','Chewy Rice Powder','Usable',10,100,true,100,true,true,true,true,true,true,true,'pet 1815;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12341,'Special_Alloy_Trap_Box','Special Alloy Trap Box','Usable',30000,10,true,'getitem 7940,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12342,'Manuk\'s_Opportunity','Manuk\'s Opportunity','Usable',50,true,100,true,true,true,true,true,true,true,'specialeffect2 EF_POTION_BERSERK; sc_start SC_MANU_ATK,600000,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12343,'Manuk\'s_Courage','Manuk\'s Courage','Usable',50,true,100,true,true,true,true,true,true,true,'specialeffect2 EF_GUARD; sc_start SC_MANU_DEF,600000,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12344,'Pinguicula\'s_fruit_Jam','Pinguicula\'s Fruit Jam','Usable',50,true,100,true,true,true,true,true,true,true,'specialeffect2 EF_POTION_BERSERK; sc_start SC_SPL_ATK,600000,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12345,'Luciola\'s_Honey_Jam','Luciola\'s Honey Jam','Usable',50,true,100,true,true,true,true,true,true,true,'specialeffect2 EF_GUARD; sc_start SC_SPL_DEF,600000,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12346,'Unripe_Acorn','Unripe Acorn','Usable',true,100,true,true,true,true,true,true,true,'heal -100,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12347,'Acorn_Jelly','Acorn Jelly','Delayconsume',true,100,true,'itemskill "ALL_REVERSEORCISH",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12348,'Manuk\'s_Faith','Manuk\'s Faith','Usable',50,true,100,true,true,true,true,true,true,true,'specialeffect2 EF_POTION_BERSERK; sc_start SC_MANU_MATK,600000,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12349,'Cornus\'_Tears','Cornus\' Tears','Usable',50,true,100,true,true,true,true,true,true,true,'specialeffect2 EF_POTION_BERSERK; sc_start SC_SPL_MATK,600000,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12350,'Angeling_Potion','Angeling Potion','Delayconsume',20,100,true,100,true,100,true,true,true,true,true,'skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,120000,5; itemskill "AL_ANGELUS",5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12351,'Shout_Megaphone','Scream Megaphone','Delayconsume',20,50,true,100,true,true,true,true,true,'itemskill "MC_LOUD",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12352,'Dun_Tele_Scroll3','Dungeon Teleport Scroll 3','Usable',10,'callfunc "F_CashDungeon",3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12353,'Tiny_Waterbottle','Small Bottle','Usable',800,10,true,'sc_start SC_WATERWEAPON,90000,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12354,'Buche_De_Noel','Buche De Noel','Usable',2,50,true,'specialeffect2 EF_ANGELUS; sc_start SC_INCMHPRATE,600000,3; sc_start SC_INCMSPRATE,600000,3; sc_start SC_INCHITRATE,600000,3; sc_start SC_INCCRI,600000,7;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (12355,'Xmas_Gift','Xmas Gift','Usable',2,100,true,true,'getrandgroupitem(IG_Xmas_Gift),1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`flag_container`,`script`) VALUES (12356,'Louise_Costume_Box','Louise Costume Box','Usable',2,100,true,true,'getrandgroupitem(IG_Louise_Costume_Box),1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12357,'Shiny_Wing_Gown','Shiny Wing Gown','Usable',20,50,'pet 1630;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12358,'Fan_Of_Wind','Fan Of Wind','Usable',20,50,true,100,true,'pet 1513;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12359,'Very_Soft_Plant','Very Soft Plant','Usable',20,50,true,100,true,'pet 1586;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12360,'Very_Red_Juice','Very Red Juice','Usable',20,50,true,100,true,'pet 1505;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12361,'Delicious_Shaved_Ice','Delicious Shaved Ice','Usable',100,true,100,true,true,true,true,true,true,true,true,'pet 1143;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12362,'Kuloren','Kuloren','Usable',20,50,true,100,true,'pet 1401;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12363,'Fit_Pipe','Fit Pipe','Usable',100,true,100,true,true,true,true,true,true,true,true,'pet 1179;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12364,'Staff_Of_Leader','Staff Of Leader','Usable',20,50,true,100,true,'pet 1299;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12365,'Charming_Lotus','Charming Lotus','Usable',20,50,true,100,true,'pet 1416;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12366,'Gril_Doll','Girl\'s Doll','Usable',20,50,true,100,true,'pet 1404;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12367,'Luxury_Whisky_Bottle','Luxury Whisky Bottle','Usable',20,50,true,100,true,'pet 1504;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12368,'Splendid_Mirror','Splendid Mirror','Usable',20,50,true,100,true,'pet 1148;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12369,'Oilpalm_Coconut','Oilpalm Coconut','Usable',20,50,true,100,true,'pet 1495;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12370,'Gril\'s_Naivety','Girl\'s Naivety','Usable',100,true,100,true,true,true,true,true,true,true,true,'pet 1374;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12371,'Magical_Lithography','Magical Lithography','Usable',20,50,true,100,true,'pet 1040;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12372,'Hell_Contract','Hell Contract','Usable',20,50,true,100,true,'pet 1379;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12373,'Boy\'s_Naivety','Boy\'s Pure Heart','Usable',20,50,true,100,true,'pet 1370;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12374,'Flaming_Ice','Ice Fireworks','Usable',20,50,true,100,true,'pet 1837;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12375,'Acaraje','Akaraje','Usable',80,100,true,true,true,true,true,'specialeffect2 EF_STEAL; bonus_script "{ bonus bHit,5; bonus bAspdRate,10; }",1200,0,0,EFST_ACARAJE;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12376,'Mysterious_Can2','Mysterious Can2','Usable',10,100,true,100,true,'percentheal 3,0; itemskill "PR_GLORIA",2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12377,'Mysterious_PET_Bottle2','Mysterious PET Bottle2','Usable',10,100,true,100,true,'percentheal 0,3; itemskill "PR_MAGNIFICAT",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12378,'2009_Rice_Cake_Soup','Rice Cake Soup','Usable',10,100,'/* percentheal 50,50; */'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (12379,'Pope\'s_Cookie','Pope Cookie','Usable',10,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12380,'Desert_Wolf_Babe_Scroll','Job Change Flute','Usable',10,10,'mercenary_create 2034,1800000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12381,'ValkyrieA_Scroll','Ancient Languages Scroll','Usable',10,10,'if(strcharinfo(3)=="job3_arch02") { mercenary_create 2037,1800000; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12382,'ValkyrieB_Scroll','Ancient Languages Scroll','Usable',10,10,'if(strcharinfo(3)=="job3_arch02") { mercenary_create 2038,1800000; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12383,'Vulcan_Bullet_Magazine','Vulcan Bullet Magazine','Usable',11000,500,true,'getitem 6145,1000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12384,'Rainbow_Ruby_Water','Rainbow Ruby','Delayconsume',50,100,true,true,true,true,true,true,true,'/* if(strcharinfo(3)=="job3_war02") { itemskill "WL_FROSTMISTY",5; } */'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12385,'Rainbow_Ruby_Fire','Rainbow Ruby','Delayconsume',50,100,true,true,true,true,true,true,true,'/* if(strcharinfo(3)=="job3_war02") { itemskill "WL_CRIMSONROCK",5; } */'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12386,'Rainbow_Ruby_Wind','Rainbow Ruby','Delayconsume',50,100,true,true,true,true,true,true,true,'/* if(strcharinfo(3)=="job3_war02") { itemskill "WL_CHAINLIGHTNING",5; } */'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12387,'Rainbow_Ruby_Earth','Rainbow Ruby','Delayconsume',50,100,true,true,true,true,true,true,true,'/* if(strcharinfo(3)=="job3_war02") { itemskill "WL_EARTHSTRAIN",5; } */'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12388,'Runstone_Crush','Rhydo Runestone For Apprentice','Delayconsume',10,100,true,100,true,true,true,true,true,true,true,true,'/* if(strcharinfo(3)=="job3_rune02") { itemskill "RK_CRUSHSTRIKE",1; } */'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12389,'Runstone_Storm','Pertz Runestone For Apprentice','Delayconsume',10,100,true,100,true,true,true,true,true,true,true,true,'/* if(strcharinfo(3)=="job3_rune02") { itemskill "RK_STORMBLAST",1; } */'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12390,'Runstone_Millennium','Verkana Runestone For Apprentice','Delayconsume',10,100,true,100,true,true,true,true,true,true,true,true,'/* if(strcharinfo(3)=="job3_rune02") { itemskill "RK_MILLENNIUMSHIELD",1; } */'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12391,'Lucky_Egg_C','Lucky Egg','Usable',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_blacksmith`,`flag_buyingstore`,`script`) VALUES (12392,'RepairA','Repair A','Usable',220,100,true,true,'if ( checkmadogear() ) { itemheal rand(200,300),0; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_blacksmith`,`flag_buyingstore`,`script`) VALUES (12393,'RepairB','Repair B','Usable',500,140,true,true,'if ( checkmadogear() ) { itemheal rand(300,400),0; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_blacksmith`,`flag_buyingstore`,`script`) VALUES (12394,'RepairC','Repair C','Usable',1100,180,true,true,'if ( checkmadogear() ) { itemheal rand(400,500),0; }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12395,'Tantanmen','Tantan Noodle','Usable',20,50,true,'pet 1519;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (12396,'Fools_Day_Box','Gift Box?','Delayconsume',20,10,100,true,100,true,true,true,'.@rnd = rand(1,10); if(.@rnd==1) itemskill "AL_TELEPORT",1; else if(.@rnd==2) itemskill "AL_TELEPORT",3; else if(.@rnd==3) percentheal 50,0; else if(.@rnd==4) percentheal 0,50; else if(.@rnd==5) end; else if(.@rnd==6) getitem 512,1; else if(.@rnd==7) itemskill "ALL_REVERSEORCISH",1; else if(.@rnd==8) specialeffect2 EF_MAPPILLAR2; else if(.@rnd==9) specialeffect2 EF_ANGEL2; else specialeffect2 EF_COIN;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (12397,'Fools_Day_Box2','Gift Box?','Delayconsume',20,10,100,true,100,true,true,true,'.@rnd = rand(1,10); if(.@rnd==1) itemskill "TF_DETOXIFY",1; else if(.@rnd==2) itemskill "TF_PICKSTONE",1; else if(.@rnd==3) itemskill "BA_FROSTJOKER",1; else if(.@rnd==4) itemskill "DC_SCREAM",1; else if(.@rnd==5) end; else if(.@rnd==6) getitem 909,1; else if(.@rnd==7) itemskill "AL_RUWACH",1; else if(.@rnd==8) specialeffect2 EF_BEGINASURA; else if(.@rnd==9) specialeffect2 EF_MVP; else specialeffect2 EF_CURSEATTACK;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12398,'PCBang_Gift_Box','PCBang Gift Box','Usable',20,10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12399,'Castle_Treasure_Box','Castle Treasure Box','Usable',20,1000,'Zeny += 1000000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12400,'Water_Of_Blessing_','Water Of Blessing','Usable',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (12401,'Rune_Kn_Test_Int','Rune Kn Test Int','Usable','sc_start SC_INCINT,300000,40;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12402,'29Fruit','29Fruit','Usable',100,true,true,true,true,true,true,true,'percentheal 5,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12403,'Lucky_Egg_C2','Lucky Egg2','Usable',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12404,'Acti_Potion','Acti Potion','Usable',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12405,'Underripe_Yggseed','Underripe Yggseed','Usable',20,50,100,true,true,true,true,true,true,true,'percentheal 30,30; skilleffect "AL_BLESSING",0; sc_start SC_BLESSING,140000,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12406,'Psychic_ArmorS','Psychic ArmorS','Usable',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12407,'PCBang_Coupon_Box','PCBang Coupon Box','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (12408,'Leaf_Cat_Ball','Leaf Cat Ball','Usable','pet 2081;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (12409,'Pork_Belly_H','1st Class Pork Belly','Usable'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (12410,'Spareribs_H','Thick Pork Belly H','Usable'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12411,'HE_Battle_Manual','HE Battle Manual','Usable',2,10,'sc_start SC_EXPBOOST,900000,200;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12412,'HE_Bubble_Gum','HE Bubble Gum','Usable',2,10,'sc_start SC_ITEMBOOST,900000,300;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12413,'PCBang_Coupon_Box2','PCBang Coupon Box2','Usable',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12414,'Guarana_Candy','Guarana Candy','Usable',20,10,true,'sc_start SC_ASPDPOTION0,1800000,0; sc_start SC_INCREASEAGI,140000,5; skilleffect "AL_INCAGI",0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`nouse_override`,`nouse_sitting`) VALUES (12415,'Siege_Teleport_Scroll2','Siege Teleport Scroll Silver','Usable',10,100,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12416,'Lucky_Egg_C3','Lucky Egg C3','Usable',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12417,'Boost500','Boost500','Usable',100,50,'sc_start SC_BOOST500,500000,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12418,'Full_SwingK','Full SwingK','Usable',100,50,true,'sc_start SC_FULL_SWING_K,500000,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12419,'Mana_Plus','Mana Plus','Usable',100,50,true,'sc_start SC_MANA_PLUS,500000,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12420,'Stamina_Up_M','Stamina Up M','Usable',100,50,'sc_start SC_MUSTLE_M,500000,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12421,'Digestive_F','Falmons F','Usable',10,10,'sc_start SC_LIFE_FORCE_F,500000,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`class_normal`,`class_upper`,`class_baby`,`flag_buyingstore`,`script`) VALUES (12422,'HP_Increase_PotionS','HP Increase Potion (Small)','Usable',100,20,true,true,true,true,'sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,1; percentheal 1,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`class_normal`,`class_upper`,`class_baby`,`flag_buyingstore`,`script`) VALUES (12423,'HP_Increase_PotionM','HP Increase Potion (Medium)','Usable',100,40,true,true,true,true,'sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,2; percentheal 2,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`class_normal`,`class_upper`,`class_baby`,`flag_buyingstore`,`script`) VALUES (12424,'HP_Increase_PotionL','HP Increase Potion (Large)','Usable',100,80,true,true,true,true,'sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,3; percentheal 5,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`class_normal`,`class_upper`,`class_baby`,`flag_buyingstore`,`script`) VALUES (12425,'SP_Increase_PotionS','SP Increase Potion (Small)','Usable',100,20,true,true,true,true,'sc_start2 SC_ENERGY_DRINK_RESERCH,500000,1,1; percentheal 0,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`class_normal`,`class_upper`,`class_baby`,`flag_buyingstore`,`script`) VALUES (12426,'SP_Increase_PotionM','SP Increase Potion (Medium)','Usable',100,40,true,true,true,true,'sc_start2 SC_ENERGY_DRINK_RESERCH,500000,1,2; percentheal 0,4;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`class_normal`,`class_upper`,`class_baby`,`flag_buyingstore`,`script`) VALUES (12427,'SP_Increase_PotionL','SP Increase Potion (Large)','Usable',100,80,true,true,true,true,'sc_start2 SC_ENERGY_DRINK_RESERCH,500000,1,3; percentheal 0,8;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12428,'Enrich_White_PotionZ','Concentrated White Potion Z','Healing',10,10,true,'sc_start SC_EXTRACT_WHITE_POTION_Z,500000,20; heal 1000,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (12429,'Savage_BBQ','Savage Full Roast','Usable',50,true,'sc_start SC_SAVAGE_STEAK,300000,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (12430,'Wug_Blood_Cocktail','Cocktail Warg Blood','Usable',50,true,'sc_start SC_COCKTAIL_WARG_BLOOD,300000,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (12431,'Minor_Brisket','Minor Stew','Usable',50,true,'sc_start SC_MINOR_BBQ,300000,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (12432,'Siroma_Icetea','Siroma Iced Tea','Usable',50,true,'sc_start SC_SIROMA_ICE_TEA,300000,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (12433,'Drocera_Herb_Stew','Drosera Herb Salad','Usable',50,true,'sc_start SC_DROCERA_HERB_STEAMED,300000,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`,`script`) VALUES (12434,'Petti_Tail_Noodle','Petite Tail Noodles','Usable',50,true,'sc_start SC_PUTTI_TAILS_NOODLES,300000,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12435,'Black_Thing','Black Mass','Usable',50,'sc_start SC_STOMACHACHE,60000,rand(5,10);'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12436,'Vitata500','Vitata 500','Healing',10,10,true,'sc_start SC_VITATA_500,500000,0; itemheal 0,200;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12437,'Enrich_Celermine_Juice','Concentrated Ceromain Soup','Usable',10,10,true,'sc_start SC_EXTRACT_SALAMINE_JUICE,500000,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12438,'F_Giant_Fly_Wing','F Giant Fly Wing','Usable',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12439,'F_Battle_Manual','F Battle Manual','Usable',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12440,'F_Insurance','F Insurance','Usable',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12441,'F_Bubble_Gum','F Bubble Gum','Usable',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12442,'F_Kafra_Card','F Kafra Card','Usable',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (12443,'F_Neuralizer','F Neuralizer','Usable',2); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12444,'F_Dun_Tele_Scroll1','F Dun Tele Scroll1','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12445,'F_Str_Dish10_','F Str Dish10','Usable',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12446,'F_Agi_Dish10_','F Agi Dish10','Usable',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12447,'F_Int_Dish10_','F Int Dish10','Usable',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12448,'F_Dex_Dish10_','F Dex Dish10','Usable',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12449,'F_Luk_Dish10_','F Luk Dish10','Usable',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12450,'F_Vit_Dish10_','F Vit Dish10','Usable',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12451,'F_WOB_Rune','F WOB Rune','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12452,'F_WOB_Schwaltz','F WOB Schwarz','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12453,'F_WOB_Rachel','F WOB Rachel','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12454,'F_WOB_Local','F WOB Local','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12456,'F_Greed_Scroll','F Greed Scroll','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12457,'F_Glass_Of_Illusion','F Glass Of Illusion','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12458,'F_Abrasive','F Abrasive','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12459,'F_Med_Life_Potion','F Med Life Potion','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12460,'F_Small_Life_Potion','F Small Life Potion','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12461,'F_Regeneration_Potion','F Regeneration Potion','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12462,'F_B_Mdef_Potion','F B Mdef Potion','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12463,'F_S_Mdef_Potion','F S Mdef Potion','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12464,'F_B_Def_Potion','F B Def Potion','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12465,'F_S_Def_Potion','F S Def Potion','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12466,'F_Blessing_10_Scroll','F Blessing 10 Scroll','Usable',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12467,'F_Inc_Agi_10_Scroll','F Inc Agi 10 Scroll','Usable',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12468,'F_Aspersio_5_Scroll','F Aspersio 5 Scroll','Usable',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12470,'F_Wind_Walk_10_Scroll','F Wind Walk 10 Scroll','Usable',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12471,'F_Adrenaline_Scroll','F Adrenaline Scroll','Usable',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12472,'F_Convex_Mirror','F Convex Mirror','Usable',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12473,'RWC_Parti_Box','RWC Parti Box','Usable',20,10,100,true,100,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12474,'RWC_Final_Comp_Box','RWC Final Comp Box','Usable',20,10,100,true,100,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12475,'Cure_Free','Cure Free','Usable',20,50,true,'sc_end SC_SILENCE; sc_end SC_BLEEDING; sc_end SC_POISON; sc_end SC_CURSE; sc_end SC_ORCISH; sc_end SC_CHANGEUNDEAD; itemheal 500,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12476,'PCBang_Coupon_Box3','PCBang Coupon Box3','Usable',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (12477,'Gift_Bundle','Gift Bundle','Usable'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12478,'Chance_Box','Chance Box','Usable',20,10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12479,'Caracas_Ring_Box','Caracas Ring Box','Usable',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12480,'Attend_3Day_Box','Attend 3Day Box','Usable',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12481,'Attend_7Day_Box','Attend 7Day Box','Usable',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12482,'Attend_10Day_Box','Attend 10Day Box','Usable',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12483,'Attend_15Day_Box','Attend 15Day Box','Usable',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12484,'Attend_20Day_Box','Attend 20Day Box','Usable',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12485,'Attend_25Day_Box','Attend 25Day Box','Usable',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12486,'GoldPC_First_Box','GoldPC First Box','Usable',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12487,'PC_4Leaf_Clover_Box','PC 4Leaf Clover Box','Usable',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12488,'Ticket_Gift_Box','Ticket Gift Box','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12489,'Ticket_Gift_Box2','Ticket Gift Box2','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`flag_buyingstore`) VALUES (12490,'Vivid_Notation','Vivid Notation','Usable',20,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (12491,'Curious_Snowball','Curious Snowball','Usable',20,'callfunc "F_Snowball";'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12492,'Crumpled_Paper','Crumpled Paper','Usable',2,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12493,'Lucky_Egg_C4','Lucky Egg C4','Usable',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12494,'E_Giant_Fly_Wing','E Giant Fly Wing','Usable',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12495,'E_Battle_Manual','E Battle Manual','Usable',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12496,'E_Insurance','E Insurance','Usable',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12497,'E_Bubble_Gum','E Bubble Gum','Usable',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12498,'E_Kafra_Card','E Kafra Card','Usable',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (12499,'E_Neuralizer','E Neuralizer','Usable',2); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12500,'E_Dun_Tele_Scroll1','E Dun Tele Scroll1','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12501,'E_Str_Dish10_','E Str Dish10','Usable',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12502,'E_Agi_Dish10_','E Agi Dish10','Usable',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12503,'E_Int_Dish10_','E Int Dish10','Usable',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12504,'E_Dex_Dish10_','E Dex Dish10','Usable',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12505,'E_Luk_Dish10_','E Luk Dish10','Usable',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12506,'E_Vit_Dish10_','E Vit Dish10','Usable',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12507,'E_WOB_Rune','Yellow Butterfly Wing','Usable',10,'callfunc "F_CashCity",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12508,'E_WOB_Schwaltz','Green Butterfly Wing','Usable',10,'callfunc "F_CashCity",2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12509,'E_WOB_Rachel','Red Butterfly Wing','Usable',10,'callfunc "F_CashCity",3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12510,'E_WOB_Local','Blue Butterfly Wing','Usable',10,'callfunc "F_CashCity",5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12511,'E_Siege_Teleport_Scroll','E Siege Teleport Scroll','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12512,'E_Greed_Scroll','E Greed Scroll','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12513,'E_Glass_Of_Illusion','E Glass Of Illusion','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12514,'E_Abrasive','E Abrasive','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12515,'E_Med_Life_Potion','E Med Life Potion','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12516,'E_Small_Life_Potion','E Small Life Potion','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12517,'E_Regeneration_Potion','E Regeneration Potion','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12518,'E_B_Mdef_Potion','E B Mdef Potion','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12519,'E_S_Mdef_Potion','E S Mdef Potion','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12520,'E_B_Def_Potion','E B Def Potion','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12521,'E_S_Def_Potion','E S Def Potion','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12522,'E_Blessing_10_Scroll','E Blessing 10 Scroll','Usable',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12523,'E_Inc_Agi_10_Scroll','E Inc Agi 10 Scroll','Usable',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12524,'E_Aspersio_5_Scroll','E Aspersio 5 Scroll','Usable',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12525,'E_Assumptio_5_Scroll','E Assumptio 5 Scroll','Usable',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12526,'E_Wind_Walk_10_Scroll','E Wind Walk 10 Scroll','Usable',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12527,'E_Adrenaline_Scroll','E Adrenaline Scroll','Usable',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12528,'E_Convex_Mirror','E Convex Mirror','Usable',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12529,'White_Slim_Potion_Box','White Slim Potion Box','Usable',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12530,'Mastela_Fruit_Box','Mastela Fruit Box','Usable',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12531,'White_Potion_Box','White Potion Box','Usable',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12532,'Royal_Jelly_Box2','Royal Jelly Box2','Usable',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12533,'Blue_Herb_Box2','Blue Herb Box2','Usable',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12534,'Yggdrasil_Seed_Box','Yggdrasil Seed Box','Usable',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12535,'Iggdrasilberry_Box','Iggdrasilberry Box','Usable',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (12536,'NY_Rice_Cake_Soup','NY Rice Cake Soup','Usable',20,100,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12537,'Solo_Gift_Basket','Solo Gift Basket','Usable',1000,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12538,'Couple_Event_Basket','Couple Event Basket','Usable',2000,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (12539,'Splendid_Box','Splendid Box','Usable',20,100,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12540,'GM_Warp_Box','GM Warp Box','Usable',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12541,'Fortune_Cookie1','Fortune Cookie1','Usable',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12542,'Fortune_Cookie2','Fortune Cookie2','Usable',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12543,'Fortune_Cookie3','Fortune Cookie3','Usable',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12544,'Mystic_Tree_Branch','Mystic Tree Branch','Usable',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12545,'Lucky_Egg_C5','Lucky Egg C5','Usable',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12546,'Suspicious_Dish','Suspicious Dish','Usable',100,50); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12547,'Chalcenodny_Box','Chalcenodny Box','Usable',200); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12548,'Buy_Market_Permit2','Shabby Purchase Street Stall License','Usable',500,10,'buyingstore 2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12549,'White_Slim_Pot_Box2','White Slim Pot Box2','Usable',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12550,'Poison_Bottle_Box2','Poison Bottle Box2','Usable',100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12551,'MVP_Tele_Scroll','MVP Tele Scroll','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12552,'Quest_Tele_Scroll','Quest Tele Scroll','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12553,'Brysinggamen_Piece_Box','Brysinggamen Piece Box','Usable',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12554,'Asprika_Piece_Box','Asprika Piece Box','Usable',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12555,'Brynhild_Piece_Box','Brynhild Piece Box','Usable',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12556,'Sleipnir_Piece_Box','Sleipnir Piece Box','Usable',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12557,'Mjolnir_Piece_Box','Mjolnir Piece Box','Usable',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12558,'Magingiorde_Piece_Box','Magingiorde Piece Box','Usable',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12559,'Tenkaippin_Strong','Tenkaippin Strong','Usable',650,200); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12560,'Tenkaippin_Clean','Tenkaippin Clean','Usable',650,200); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (12561,'Mysterious_Seed','Mysterious Seed','Usable',20,10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12562,'Bubble_Gum_Plus','Bubble Gum Plus','Usable',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12563,'BM75','BM75','Usable',2,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12564,'3D_Glasses_Box','3D Glasses Box','Usable',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12565,'Cheer_Scarf_Box','Cheer Scarf Box','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12566,'Cheer_Scarf2_Box','Cheer Scarf2 Box','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12567,'Cheer_Scarf3_Box','Cheer Scarf3 Box','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12568,'Cheer_Scarf4_Box','Cheer Scarf4 Box','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12569,'Cheer_Scarf6_Box','Cheer Scarf6 Box','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12570,'Cheer_Scarf8_Box','Cheer Scarf8 Box','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12571,'Cheer_Scarf10_Box','Cheer Scarf10 Box','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12572,'Cheer_Scarf10_Box2','Cheer Scarf10 Box2','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12573,'Fruit_Basket','Fruit Basket','Usable',20,50); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (12574,'Mora_Berry','Mora Berry','Usable',20,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (12575,'Arrow_Of_Elf_Cntr','Arrow Of Elf Cntr','Usable',500,250,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (12576,'Hunting_Arrow_Cntr','Hunting Arrow Cntr','Usable',500,250,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12577,'Lucky_Egg_C6','Lucky Egg C6','Usable',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12578,'Rapid_Life_Water','Rapid Life Water','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (12579,'Ring_Of_Valkyrie_Box','Ring Of Valkyrie Box','Usable',20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12580,'Vending_Search_Scroll','Universal Catalog Silver','Usable',10,'searchstores 10,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12581,'Vending_Search_Scroll2','Universal Catalog Gold','Usable',10,'searchstores 10,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12591,'Uni_Catalog_Bz','Universal Catalog Bronze','Usable',10,'searchstores 10,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`class_normal`,`class_upper`,`class_baby`) VALUES (12609,'Old_Ore_Box','Old Ore Box','Usable',20,100,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12701,'Old_Blue_Box_F','Old Blue Box','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`script`) VALUES (12702,'Old_Bleu_Box','Old Navy Box','Usable',200,true,'getrandgroupitem(IG_BleuBox),1; getrandgroupitem(IG_BleuBox),1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12703,'Holy_Egg_2','Holy Egg','Delayconsume',50); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12704,'Elixir_Of_Life','Elixir of Life','Healing',10,85,100,true,true,true,true,true,true,true,'percentheal 100,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12705,'Noble_Nameplate','Noble Nameplate','Usable',100,90,100,true,true,true,true,true,true,true,'sc_start SC_EXPBOOST,1800000,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12706,'Lucky_Cookie01','Lucky Cookie','Delayconsume',100,100,true,'itemskill "PR_GLORIA",5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12707,'Lucky_Cookie02','Lucky Cookie','Delayconsume',100,100,true,'itemskill "PR_MAGNIFICAT",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`nouse_override`,`nouse_sitting`,`script`) VALUES (12708,'Lucky_Cookie03','Lucky Cookie','Delayconsume',100,100,true,'itemskill "PR_IMPOSITIO",3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12709,'Guyak_Candy','Guyak Candy','Healing',150,'percentheal 30,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12710,'Guyak_Pudding','Guyak Pudding','Usable',200,'sc_start SC_SPEEDUP1,300000,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12711,'Pretzel','Pretzel','Healing',2,100,'itemheal rand(50,90),0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12712,'Green_Beer','Green Beer','Usable',2,100,'percentheal 0,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12713,'Monster_Extract','Monster Extract','Usable',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_container`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12714,'Easter_Scroll','Easter Scroll','Usable',1,10,true,100,true,true,true,true,true,true,'getrandgroupitem(IG_Easter_Scroll),1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12715,'Black_Treasure_Box','Black Treasure Box','Usable',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (12716,'Indian_Rice_Cake','Indian Rice Cake','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12717,'Poison_Paralysis','Paralyze','Healing',2,100,true,'sc_start SC_PARALYSE,300000,0,10,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12718,'Poison_Leech','Leech End','Healing',2,100,true,'sc_start SC_LEECHESEND,300000,0,10,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12719,'Poison_Oblivion','Oblivion Curse','Healing',2,100,true,'sc_start SC_OBLIVIONCURSE,300000,0,10,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12720,'Poison_Contamination','Disheart','Healing',2,100,true,'sc_start SC_DEATHHURT,300000,0,10,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12721,'Poison_Numb','Toxin','Healing',2,100,true,'sc_start SC_TOXIN,300000,0,10,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12722,'Poison_Fever','Pyrexia','Healing',2,100,true,'sc_start SC_PYREXIA,300000,0,10,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12723,'Poison_Laughing','Magic Mushroom','Healing',2,100,true,'sc_start SC_MAGICMUSHROOM,300000,0,10,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (12724,'Poison_Fatigue','Venom Bleed','Healing',2,100,true,'sc_start SC_VENOMBLEED,15000,0,10,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`stack_amount`,`stack_inventory`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12725,'Runstone_Nosiege','Nauthiz Rune','Usable',100,100,60,true,100,true,100,true,true,true,true,true,true,true,'if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_REFRESH",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`stack_amount`,`stack_inventory`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12726,'Runstone_Rhydo','Raido Rune','Usable',100,100,60,true,100,true,100,true,true,true,true,true,true,true,'if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_CRUSHSTRIKE",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`stack_amount`,`stack_inventory`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12727,'Runstone_Verkana','Berkana Rune','Usable',100,100,60,true,100,true,100,true,true,true,true,true,true,true,'if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_MILLENNIUMSHIELD",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`stack_amount`,`stack_inventory`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12728,'Runstone_Isia','Isa Rune','Usable',100,100,60,true,100,true,100,true,true,true,true,true,true,true,'if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_VITALITYACTIVATION",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12729,'Runstone_Asir','Othila Rune','Usable',100,100,100,true,100,true,true,true,true,true,true,true,'if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_FIGHTINGSPIRIT",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`stack_amount`,`stack_inventory`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12730,'Runstone_Urj','Uruz Rune','Usable',100,100,60,true,100,true,100,true,true,true,true,true,true,true,'if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_ABUNDANCE",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12731,'Runstone_Turisus','Thurisaz Rune','Usable',100,100,100,true,100,true,true,true,true,true,true,true,'if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_GIANTGROWTH",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12732,'Runstone_Pertz','Wyrd Rune','Usable',100,100,100,true,100,true,true,true,true,true,true,true,'if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_STORMBLAST",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`stack_amount`,`stack_inventory`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12733,'Runstone_Hagalas','Hagalaz Rune','Usable',100,100,60,true,100,true,100,true,true,true,true,true,true,true,'if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT) unitskilluseid getcharid(3),"RK_STONEHARDSKIN",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_knight`,`flag_buyingstore`,`script`) VALUES (12734,'Runstone_Quality','Luxurious Rune','Healing',2,100,true,true,'makerune 5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_knight`,`flag_buyingstore`,`script`) VALUES (12735,'Runstone_Ancient','Ancient Rune','Healing',2,100,true,true,'makerune 11;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_knight`,`flag_buyingstore`,`script`) VALUES (12736,'Runstone_Mystic','Mystic Rune','Healing',2,100,true,true,'makerune 14;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_knight`,`flag_buyingstore`,`script`) VALUES (12737,'Runstone_Ordinary','General Rune','Healing',2,100,true,true,'makerune 2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_knight`,`flag_buyingstore`,`script`) VALUES (12738,'Runstone_Rare','Rare Rune','Healing',2,100,true,true,'makerune 8;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (12739,'Snow_Flower','Snow Flowers','Usable',10,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`) VALUES (12740,'Inc_Str_Scroll','Amplification Scroll','Usable',1,100,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`) VALUES (12741,'Inc_Int_Scroll','Intellect Amplification Scroll','Usable',1,100,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (12742,'Valentine_Gift_Box1','Valentine Gift Box','Usable'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (12743,'Valentine_Gift_Box2','Valentine Gift Box','Usable'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (12744,'Chocotate_Box','Chocolate Box','Usable'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12745,'Skull_Scroll','Skull Scroll','Usable',20,10,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12746,'Destruction_Scroll','Destruction Scroll','Usable',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12747,'Royal_Scroll','Royal Scroll','Usable',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12748,'Immune_Scroll','Immune Scroll','Usable',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12749,'Mystic_Scroll','Mystic Scroll','Usable',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12750,'Battle_Scroll','Battle Scroll','Usable',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12751,'Armor_Scroll','Armor Scroll','Usable',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12752,'Prayer_Scroll','Prayer Scroll','Usable',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12753,'Soul_Scroll','Soul Scroll','Usable',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12754,'New_Year_Bun','Chinese Pastel','Usable',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12755,'Traditional_Firecrack','Chinese Fireworks','Usable',2,10,100,true,true,true,true,true,true,true,'specialeffect2 EF_POK_JAP; /* itemskill "MO_CALLSPIRITS",3; itemskill "MO_FINGEROFFENSIVE",5; */'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12756,'New_Gift_Envelope','Chinese New Year Envelope','Usable',2,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (12757,'Loyal_Ring1_Box','Loyal Ring1 Box','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (12758,'Loyal_Ring2_Box','Loyal Ring2 Box','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (12759,'Loyal_Ring3_Box','Loyal Ring3 Box','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12760,'Bubble_Gum_Green','Bubble Gum Green','Usable',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12761,'Bubble_Gum_Yellow','Bubble Gum Yellow','Usable',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12762,'Bubble_Gum_Orange','Bubble Gum Orange','Usable',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12763,'Bubble_Gum_Red','Bubble Gum Red','Usable',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`) VALUES (12764,'Fools_Day_Box_Tw','Fools Day Box Tw','Usable'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (12765,'Summer_Knight_Box','Summer Knight Box','Usable',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12766,'Reward_Job_BM25','Reward Job BM25','Usable',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12767,'Passion_FB_Hat_Box','Passion FB Hat Box','Usable',100,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12768,'Cool_FB_Hat_Box','Cool FB Hat Box','Usable',100,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12769,'Victory_FB_Hat_Box','Victory FB Hat Box','Usable',100,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12770,'Glory_FB_Hat_Box','Glory FB Hat Box','Usable',100,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12771,'Passion_Hat_Box2','Passion Hat Box2','Usable',100,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12772,'Cool_Hat_Box2','Cool Hat Box2','Usable',100,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12773,'Victory_Hat_Box2','Victory Hat Box2','Usable',100,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`class_normal`,`class_upper`,`class_baby`) VALUES (12831,'Potion_Box','Potion Box','Usable',50,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (12848,'Falcon_Flute','Falcon Flute','Delayconsume',10,'if(getskilllv("HT_FALCON")) { if(!checkoption(Option_Wug) && !checkoption(Option_Wugrider)) setfalcon (!checkfalcon()); }'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12900,'Battle_Manual_Box','Battle Manual Box','Cash',20,10,100,true,true,true,true,true,'getitem 12208,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12901,'Insurance_Package','Insurance Package','Cash',20,10,100,true,true,true,true,true,'getitem 12209,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12902,'Bubble_Gum_Box','Bubble Gum Box','Cash',20,10,100,true,true,true,true,true,'getitem 12210,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12903,'Str_Dish_Box','Steamed Tongue Box','Cash',20,10,100,true,true,true,true,true,'getitem 12202,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12904,'Agi_Dish_Box','Steamed Scorpion Box','Cash',20,10,100,true,true,true,true,true,'getitem 12203,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12905,'Int_Dish_Box','Dragon Breath Cocktail Box','Cash',20,10,100,true,true,true,true,true,'getitem 12204,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12906,'Dex_Dish_Box','Hwergelmir\'s Tonic Box','Cash',20,10,100,true,true,true,true,true,'getitem 12205,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12907,'Luk_Dish_Box','Nine Tail Dish Box','Cash',20,10,100,true,true,true,true,true,'getitem 12206,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12908,'Vit_Dish_Box','Stew Of Immortality Box','Cash',20,10,100,true,true,true,true,true,'getitem 12207,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12909,'Kafra_Card_Box','Kafra Card Box','Cash',20,10,100,true,true,true,true,true,'getitem 12211,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12910,'Giant_Fly_Wing_Box','Giant Fly Wing Box','Cash',20,10,100,true,true,true,true,true,'getitem 12212,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12911,'Neuralizer_Box','Neuralizer Box','Cash',20,10,100,true,true,true,true,true,'getitem 12213,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12912,'Convex_Mirror_Box','Convex Mirror Box','Cash',20,10,100,true,true,true,true,true,'getitem 12214,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12913,'Blessing_10_Scroll_Box','Blessing 10 Scroll Box','Cash',20,10,100,true,true,true,true,true,'getitem 12215,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12914,'Inc_Agi_10_Scroll_Box','Increase AGI 10 scroll Box','Cash',20,10,100,true,true,true,true,true,'getitem 12216,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12915,'Aspersio_5_Scroll_Box','Aspersio 5 Scroll Box','Cash',20,10,100,true,true,true,true,true,'getitem 12217,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12916,'Assumptio_5_Scroll_Box','Assumptio 5 Scroll Box','Cash',20,10,100,true,true,true,true,true,'getitem 12218,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12917,'Wind_Walk_10_Scroll_Box','Wind Walk 10 Scroll Box','Cash',20,10,100,true,true,true,true,true,'getitem 12219,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12918,'Adrenaline_Scroll_Box','Adrenaline 5 Scroll Box','Cash',20,10,100,true,true,true,true,true,'getitem 12220,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12919,'Megaphone_Box','Megaphone Box','Cash',20,10,100,true,true,true,true,true,'getitem 12221,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12920,'Enriched_Elunium_Box','Enriched Elunium Box','Cash',20,10,100,true,true,true,true,true,'getitem 7619,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12921,'Enriched_Oridecon_Box','Enriched Oridecon Box','Cash',20,10,100,true,true,true,true,true,'getitem 7620,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12922,'Token_Of_Siegfried_Box','Token of Siegfried Box','Cash',20,10,100,true,true,true,true,true,'getitem 7621,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12923,'Pet_Egg_Scroll_Box1','December Lucky Box','Cash',20,10,100,true,true,true,true,true,'getitem 12925,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12924,'Pet_Egg_Scroll_Box2','Pet Egg Box 2','Cash',20,10,100,true,true,true,true,true,'getitem 12926,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12925,'Pet_Egg_Scroll1','Kafra Item Mall Prize Package','Cash',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12926,'Pet_Egg_Scroll2','December Lucky Box','Cash',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12927,'J_Aspersio_5_Scroll_Box','Aspersio Scroll Box','Cash',20,10,'getitem 12928,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12928,'J_Aspersio_5_Scroll','Sacred Scroll','Delayconsume',2,10,100,true,true,true,true,true,true,true,'itemskill "PR_ASPERSIO",5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12929,'Pet_Egg_Scroll_Box3','Pet Egg Box 3','Cash',20,10,100,true,true,true,true,true,'getitem 12932,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12930,'Pet_Egg_Scroll_Box4','Pet Egg Box 4','Cash',20,10,100,true,true,true,true,true,'getitem 12933,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12931,'Pet_Egg_Scroll_Box5','Pet Egg Box 5','Cash',20,10,100,true,true,true,true,true,'getitem 12934,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12932,'Pet_Egg_Scroll3','Episode 13.2 Key Package','Cash',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12933,'Pet_Egg_Scroll4','Summer Hat Pack','Cash',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12934,'Pet_Egg_Scroll5','Pet Egg Scroll5','Cash',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12935,'Infiltrator_Box','Infiltrator Box','Cash',20,10,100,true,true,true,true,true,true,'rentitem 1267,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12936,'Muramasa_Box','Muramasa Box','Cash',20,10,100,true,true,true,true,true,true,'rentitem 1173,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12937,'Excalibur_Box','Excalibur Box','Cash',20,10,100,true,true,true,true,true,true,'rentitem 13401,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12938,'Combat_Knife_Box','Combat Knife Box','Cash',20,10,100,true,true,true,true,true,true,'rentitem 13021,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12939,'Counter_Dagger_Box','Dagger of Counter Box','Cash',20,10,100,true,true,true,true,true,true,'rentitem 13022,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12940,'Kaiser_Knuckle_Box','Kaiser Knuckle Box','Cash',20,10,100,true,true,true,true,true,true,'rentitem 1817,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12941,'Pole_Axe_Box','Poll Axe Box','Cash',20,10,100,true,true,true,true,true,true,'rentitem 1419,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12942,'Mighty_Staff_Box','Mighty Staff Box','Cash',20,10,100,true,true,true,true,true,true,'rentitem 1623,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12943,'Right_Epsilon_Box','Light Epsilon Box','Cash',20,10,100,true,true,true,true,true,true,'rentitem 1372,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12944,'Balistar_Box','Ballista Box','Cash',20,10,100,true,true,true,true,true,true,'rentitem 1728,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12945,'Diary_Of_Great_Sage_Box','Sage\'s Diary Box','Cash',20,10,100,true,true,true,true,true,true,'rentitem 1563,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12946,'Asura_Box','Asura Box','Cash',20,10,100,true,true,true,true,true,true,'rentitem 13023,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12947,'Apple_Of_Archer_Box','Apple of Archer Box','Cash',20,10,100,true,true,true,true,true,true,'rentitem 5265,1209600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12948,'Bunny_Band_Box','Bunny Band Box','Cash',20,10,100,true,true,true,true,true,true,'rentitem 5266,1209600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12949,'Sahkkat_Box','Sakkat Box','Cash',20,10,100,true,true,true,true,true,true,'rentitem 5267,1209600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12950,'Lord_Circlet_Box','Grand Circlet Box','Cash',20,10,100,true,true,true,true,true,true,'rentitem 5268,1209600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12951,'Elven_Ears_Box','Elven Ears Box','Cash',20,10,100,true,true,true,true,true,true,'rentitem 2686,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12952,'Steel_Flower_Box','Steel Flower Box','Cash',20,10,100,true,true,true,true,true,true,'rentitem 2687,1209600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12953,'Critical_Ring_Box','Critical Ring Box','Cash',20,10,100,true,true,true,true,true,true,'rentitem 2688,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12954,'Earring_Box','Earring Box','Cash',20,10,100,true,true,true,true,true,true,'rentitem 2689,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12955,'Ring_Box','Ring Box','Cash',20,10,100,true,true,true,true,true,true,'rentitem 2690,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12956,'Necklace_Box','Necklace Box','Cash',20,10,100,true,true,true,true,true,true,'rentitem 2691,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12957,'Glove_Box','Glove Box','Cash',20,10,100,true,true,true,true,true,true,'rentitem 2692,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12958,'Brooch_Box','Brooch Box','Cash',20,10,100,true,true,true,true,true,true,'rentitem 2693,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12959,'Rosary_Box','Rosary Box','Cash',20,10,100,true,true,true,true,true,true,'rentitem 2694,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12960,'Safety_Ring_Box','Safety Ring Box','Cash',20,10,100,true,true,true,true,true,true,'rentitem 2695,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12961,'Vesper_Core01_Box','Vesper Core 01 Box','Cash',20,10,100,true,true,true,true,true,true,'rentitem 2696,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12962,'Vesper_Core02_Box','Vesper Core 02 Box','Cash',20,10,100,true,true,true,true,true,true,'rentitem 2697,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12963,'Vesper_Core03_Box','Vesper Core 03 Box','Cash',20,10,100,true,true,true,true,true,true,'rentitem 2698,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12964,'Vesper_Core04_Box','Vesper Core 04 Box','Cash',20,10,100,true,true,true,true,true,true,'rentitem 2699,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12965,'Emergency_Box1','Emergency Level 1 Scroll Box','Cash',20,10,'getitem 12968,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12966,'Emergency_Box2','Emergency Level 2 Scroll Box','Cash',20,10,'getitem 12969,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12967,'Emergency_Box3','Emergency Level 3 Scroll Box','Cash',20,10,'getitem 12970,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`delay_duration`,`delay_status`,`script`) VALUES (12968,'Emergency_Scroll1','Emergency Level 1 Scroll','Usable',2,10,300000,'Reuse_Limit_Recall','unitskilluseid getcharid(3),"GD_ITEMEMERGENCYCALL",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`delay_duration`,`delay_status`,`script`) VALUES (12969,'Emergency_Scroll2','Emergency Level 2 Scroll','Usable',2,10,300000,'Reuse_Limit_Recall','unitskilluseid getcharid(3),"GD_ITEMEMERGENCYCALL",2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`delay_duration`,`delay_status`,`script`) VALUES (12970,'Emergency_Scroll3','Emergency Level 3 Scroll','Usable',2,10,300000,'Reuse_Limit_Recall','unitskilluseid getcharid(3),"GD_ITEMEMERGENCYCALL",3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12971,'Teleport_Box1','Teleport Scroll Box 1','Cash',20,10,'getitem 12977,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12972,'Teleport_Box2','Teleport Scroll Box 2','Cash',20,10,'getitem 12978,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12973,'Teleport_Box3','Teleport Scroll Box 3','Cash',20,10,'getitem 12979,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12974,'Teleport_Box4','Teleport Scroll Box 4','Cash',20,10,'getitem 12980,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12975,'Teleport_Box5','Teleport Scroll Box 5','Cash',20,10,'getitem 12981,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12976,'Teleport_Box6','Teleport Scroll Box 6','Cash',20,10,'getitem 12982,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12977,'Teleport_Scroll1','Teleport Scroll 1','Usable',2,10,'callfunc "F_CashTele",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12978,'Teleport_Scroll2','Teleport Scroll 2','Usable',2,10,'callfunc "F_CashTele",2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12979,'Teleport_Scroll3','Teleport Scroll 3','Usable',2,10,'callfunc "F_CashTele",3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12980,'Teleport_Scroll4','Teleport Scroll 4','Usable',2,10,'callfunc "F_CashTele",4;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12981,'Teleport_Scroll5','Teleport Scroll 5','Usable',2,10,'callfunc "F_CashTele",5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12982,'Teleport_Scroll6','Teleport Scroll 6','Usable',2,10,'callfunc "F_CashTele",6;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12983,'Pet_Egg_Scroll_Box6','Pet Egg Scroll Box 6','Cash',20,10,100,true,true,true,true,true,'getitem 12989,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12984,'Pet_Egg_Scroll_Box7','Pet Egg Scroll Box 7','Cash',20,10,100,true,true,true,true,true,'getitem 12990,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12985,'Pet_Egg_Scroll_Box8','Pet Egg Scroll Box 8','Cash',20,10,100,true,true,true,true,true,'getitem 12991,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12986,'Pet_Egg_Scroll_Box9','Adventurer Pack Box','Cash',20,10,100,true,true,true,true,true,'getitem 12992,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12987,'Pet_Egg_Scroll_Box10','Pet Egg Scroll Box 10','Cash',20,10,100,true,true,true,true,true,'getitem 12993,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (12988,'Pet_Egg_Scroll_Box11','Pet Egg Scroll Box 11','Cash',20,10,100,true,true,true,true,true,'getitem 12994,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12989,'Pet_Egg_Scroll6','Pet Egg Scroll 6','Delayconsume',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12990,'Pet_Egg_Scroll7','Pet Egg Scroll 7','Delayconsume',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12991,'Pet_Egg_Scroll8','Party Hard Pack','Delayconsume',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12992,'Pet_Egg_Scroll9','Adventurer Pack','Delayconsume',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12993,'Pet_Egg_Scroll10','Pet Egg Scroll 10','Delayconsume',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (12994,'Pet_Egg_Scroll11','Pet Egg Scroll 11','Delayconsume',10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12995,'White_Herb_Box','White Herb Box','Cash',20,10,'getitem 509,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12996,'Blue_Herb_Box','Blue Herb Box','Cash',20,10,'getitem 510,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12997,'Elunium_Box','Elunium Box','Cash',20,10,'getitem 985,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12998,'Oridecon_Box','Oridecon Box','Cash',20,10,'getitem 984,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (12999,'Branch_Of_Dead_Tree_Box','Dead Branch Box','Cash',20,10,'getitem 604,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13500,'Insurance60_Package','Life Insurrance Box','Cash',20,10,'getitem 14500,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (13501,'Assorted_Scroll_Box','Experience Scroll Box','Cash',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13502,'Drooping_Kitty_Box','Refined Drooping Cat Box','Cash',20,10,'rentitem 5279,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13503,'Magestic_Goat_Box','Baphomet Horns Box','Cash',20,10,'rentitem 5280,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13504,'Deviruchi_Cap_Box','Refined Deviruchi Hat Box','Cash',20,10,'rentitem 5281,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13505,'Executioner_Box','Executioner Box','Cash',20,10,'rentitem 1174,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13506,'Brood_Axe_Box','Refined Bloody Axe Box','Cash',20,10,'rentitem 1373,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13507,'Tomahawk_Box','Tomahawk Box','Cash',20,10,'rentitem 1374,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13508,'Bow_Of_Rudra_Box','Rudra Bow Box','Cash',20,10,'rentitem 1729,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13509,'Cutlas_Box','Cutlus Box','Cash',20,10,'rentitem 13402,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13510,'Solar_Sword_Box','Solar Sword Box','Cash',20,10,'rentitem 13403,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13511,'Sword_Breaker_Box','Refined Swordbreaker Box','Cash',20,10,'rentitem 13024,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13512,'Mail_Breaker_Box','Refined Mailbreaker Box','Cash',20,10,'rentitem 13025,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13513,'Moonlight_Sword_Box','Moonlight Dagger Box','Cash',20,10,'rentitem 13026,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13514,'Spanner_Box','Wrench Box','Cash',20,10,'rentitem 1534,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13515,'Grape_Box','Grape Box','Cash',20,10,'getitem 514,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13516,'Royal_Jelly_Box','Royal Jelly Box','Cash',20,10,'getitem 526,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13517,'Yggdrasilberry_Box','Yggdrasil Berry Box','Cash',20,10,'getitem 607,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13518,'Weapon_Card_Scroll_Box','Weapon Card Pet Egg Scroll Box','Cash',20,10,'getitem 13558,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13519,'Armor_Card_Scroll_Box','Armor Card Pet Egg Scroll Box','Cash',20,10,'getitem 13559,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13520,'Helmet_Card_Scroll_Box','Helmet Card Pet Egg Scroll Box','Cash',20,10,'getitem 13560,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13521,'Hood_Card_Scroll_Box','Garment Card Pet Egg Scroll Box','Cash',20,10,'getitem 13561,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13522,'Hood_Card_Scroll_Box2','Shield Card Pet Egg Scroll Box','Cash',20,10,'getitem 13562,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13523,'Shoes_Card_Scroll_Box','Shoes Card Pet Egg Scroll Box','Cash',20,10,'getitem 13563,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13524,'Accy_Card_Scroll_Box','Accessory Card Pet Egg Scroll Box','Cash',20,10,'getitem 13564,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13525,'Zeny_Scroll_Box','Zeny Pet Egg Scroll Box','Cash',20,10,100,true,true,true,'getitem 14508,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13526,'Pet_Egg_Scroll_Box1_','Pet Egg Scroll Box 12','Cash',20,10,'getitem 12925,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13527,'Pet_Egg_Scroll_Box2_','Pet Egg Scroll Box 13','Cash',20,10,'getitem 12926,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13528,'Pet_Egg_Scroll_Box3_','Pet Egg Scroll Box 14','Cash',20,10,'getitem 12932,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13529,'Pet_Egg_Scroll_Box4_','Pet Egg Scroll Box 15','Cash',20,10,'getitem 12933,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13530,'Pet_Egg_Scroll_Box5_','Pet Egg Scroll Box 16','Cash',20,10,'getitem 12934,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13531,'Light_Red_Pot_Box','Light Red Potion Box','Cash',20,10,'getitem 598,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13532,'Light_Orange_Pot_Box','Light Orange Potion Box','Cash',20,10,'getitem 599,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13533,'Light_Yellow_Pot_Box','Light Yellow Potion Box','Cash',20,10,'getitem 11500,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13534,'Light_White_Pot_Box','Light White Potion Box','Cash',20,10,'getitem 11501,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13535,'Light_Center_Pot_Box','Light Concentration Potion Box','Cash',20,10,'getitem 14509,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13536,'Light_Awakening_Pot_Box','Light Awakening Potion Box','Cash',20,10,'getitem 14510,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13537,'Light_Berserk_Pot_Box','Light Berserk Potion Box','Cash',20,10,'getitem 14511,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13538,'Meteor_10_Scroll_Box','Meteor Storm Scroll Box','Cash',20,10,'getitem 14512,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13539,'Storm_10_Scroll_Box','Storm Gust Scroll Box','Cash',20,10,'getitem 14513,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13540,'Vermilion_10_Scroll_Box','Lord of Vermilion Scroll Box','Cash',20,10,'getitem 14514,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13541,'Lex_Aeterna_Scroll_Box','Lex Aeterna Scroll Box','Cash',20,10,'getitem 14515,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13542,'Magnificat_5_Scroll_Box','Magnificat Scroll Box','Cash',20,10,'getitem 14516,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13543,'CP_Helm_Scroll_Box','Chemical Protection Helm Scroll Box','Cash',20,10,'getitem 14517,10; getitem 7139,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13544,'CP_Shield_Scroll_Box','Chemical Protection Shield Scroll Box','Cash',20,10,'getitem 14518,10; getitem 7139,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13545,'CP_Armor_Scroll_Box','Chemical Protection Armor Scroll Box','Cash',20,10,'getitem 14519,10; getitem 7139,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13546,'CP_Weapon_Scroll_Box','Chemical Protection Weapon Scroll Box','Cash',20,10,'getitem 14520,10; getitem 7139,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13547,'Repair_Scroll_Box','Repair Weapon Scroll Box','Cash',20,10,100,true,true,true,'getitem 14587,5; getitem 1002,5; getitem 998,5; getitem 756,5; getitem 999,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13548,'Big_Bun_Box','Big Bun Box','Cash',20,10,'getitem 14522,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13549,'Pill__Box','Pill Box','Cash',20,10,'getitem 14523,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13550,'Superb_Fish_Slice_Box','Fish Slice Box','Cash',20,10,'getitem 14524,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13551,'Chewy_Ricecake_Box','Chewy Ricecake Box','Cash',20,10,'getitem 14525,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13552,'Oriental_Pastry_Box','Pastry Box','Cash',20,10,'getitem 14526,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13553,'Dun_Tele_Scroll1_Box','Dungeon Teleport Scroll 5 Box','Cash',20,10,100,true,true,true,'getitem 14527,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13554,'Weapon_Card_Scroll_Box2','Weapon Card Pet Egg Scroll Box','Cash',20,10,'getitem 13565,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13555,'Weapon_Card_Scroll_Box3','Weapon Card Pet Egg Scroll Box','Cash',20,10,'getitem 13566,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13556,'Armor_Card_Scroll_Box2','Armor Card Pet Egg Scroll Box','Cash',20,10,'getitem 13567,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13557,'Accy_Card_Scroll_Box2','Accessory Card Pet Egg Scroll Box','Cash',20,10,'getitem 13568,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (13558,'Weapon_Card_Scroll','Weapon Card Pet Egg Scroll','Usable',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (13559,'Armor_Card_Scroll','Armor Card Pet Egg Scroll','Usable',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (13560,'Helmet_Card_Scroll','Helmet Card Pet Egg Scroll','Usable',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (13561,'Hood_Card_Scroll','Garment Card Pet Egg Scroll','Usable',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (13562,'Hood_Card_Scroll2','Shield Card Pet Egg Scroll','Usable',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (13563,'Shoes_Card_Scroll','Shoes Card Pet Egg Scroll','Usable',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (13564,'Accy_Card_Scroll','Accessory Card Pet Egg Scroll','Usable',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (13565,'Weapon_Card_Scroll2','Weapon Card Pet Egg Scroll','Usable',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (13566,'Weapon_Card_Scroll3','Weapon Card Pet Egg Scroll','Usable',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (13567,'Armor_Card_Scroll2','Armor Card Pet Egg Scroll','Usable',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (13568,'Accy_Card_Scroll2','Accessory Card Pet Egg Scroll','Usable',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13569,'PVP_Tele_Scroll_Box','PVP Teleport Scroll Box','Cash',20,10,'getitem 14528,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13570,'Giant_Fly_Wing_Box50','Giant Fly Wing 50 Box','Cash',20,10,'getitem 12212,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13571,'Giant_Fly_Wing_Box100','Giant Fly Wing 100 Box','Cash',20,10,'getitem 12212,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13572,'Dex_Dish_Box30','Hwergelmir\'s Tonic 30 Box','Cash',20,10,'getitem 12205,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13573,'Dex_Dish_Box50','Hwergelmir\'s Tonic 50 Box','Cash',20,10,'getitem 12205,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13574,'Luk_Dish_Box30','Nine Tail Dish 30 Box','Cash',20,10,'getitem 12206,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13575,'Luk_Dish_Box50','Nine Tail Dish 50 Box','Cash',20,10,'getitem 12206,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13576,'Inc_Agi_10_Box30','Increase Agility Scroll 30 Box','Cash',20,10,'getitem 12216,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13577,'Inc_Agi_10_Box50','Increase Agility Scroll 50 Box','Cash',20,10,'getitem 12216,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13578,'Vit_Dish_Box30','Stew of Immortality 30 Box','Cash',20,10,'getitem 12207,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13579,'Vit_Dish_Box50','Stew of Immortality 50 Box','Cash',20,10,'getitem 12207,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13580,'Insurance_Package30','Life Insurrance 30 Box','Cash',20,10,'getitem 12209,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13581,'Insurance_Package50','Life Insurrance 50 Box','Cash',20,10,'getitem 12209,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13582,'Convex_Mirror_Box5','Convex Mirror 5 Box','Cash',20,10,'getitem 12214,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13583,'Convex_Mirror_Box30','Convex Mirror 30 Box','Cash',20,10,'getitem 12214,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13584,'Blessing10_Box30','Blessing Scroll 30 Box','Cash',20,10,'getitem 12215,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13585,'Blessing10_Box50','Blessing Scroll 50 Box','Cash',20,10,'getitem 12215,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13586,'Adrenaline10_Box30','Adrenaline Rush Scroll 30 Box','Cash',20,10,'getitem 12220,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13587,'Adrenaline10_Box50','Adrenaline Rush Scroll 50 Box','Cash',20,10,'getitem 12220,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13588,'Assumptio_5_Box30','Assumptio Scroll 30 Box','Cash',20,10,'getitem 12218,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13589,'Assumptio_5_Box50','Assumptio Scroll 50 Box','Cash',20,10,'getitem 12218,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13590,'Aspersio_5_Box30','Aspersio Scroll 30 Box','Cash',20,10,'getitem 12217,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13591,'Aspersio_5_Box50','Aspersio Scroll 50 Box','Cash',20,10,'getitem 12217,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13592,'Agi_Dish_Box30','Steamed Scorpion 30 Box','Cash',20,10,'getitem 12203,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13593,'Agi_Dish_Box50','Steamed Scorpion 50 Box','Cash',20,10,'getitem 12203,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13594,'Wind_Walk10_Box30','Wind Walk Scroll 30 Box','Cash',20,10,'getitem 12219,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13595,'Wind_Walk10_Box50','Wind Walk Scroll 50 Box','Cash',20,10,'getitem 12219,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13596,'Int_Dish_Box30','Dragon Breath Cocktail 30 Box','Cash',20,10,'getitem 12204,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13597,'Int_Dish_Box50','Dragon Breath Cocktail 50 Box','Cash',20,10,'getitem 12204,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13598,'Battle_Manual_Box1','Field Manual Box','Cash',20,10,'getitem 12208,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13599,'Battle_Manual_Box5','Field Manual 5 Box','Cash',20,10,'getitem 12208,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13600,'Siegfried_Box5','Token of Siegfried 5 Box','Cash',20,10,'getitem 7621,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13601,'Siegfried_Box20','Token of Siegfried 20 Box','Cash',20,10,'getitem 7621,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13602,'Kafra_Card_Box30','Kafra Card 30 Box','Cash',20,10,'getitem 12211,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13603,'Kafra_Card_Box50','Kafra Card 50 Box','Cash',20,10,'getitem 12211,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13604,'Str_Dish_Box30','Steamed Tongue 30 Box','Cash',20,10,'getitem 12202,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13605,'Str_Dish_Box50','Steamed Tongue 50 Box','Cash',20,10,'getitem 12202,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13606,'Bubble_Gum_Box1','Bubble Gum Box','Cash',20,10,'getitem 12210,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13607,'Bubble_Gum_Box5','Bubble Gum 5 Box','Cash',20,10,'getitem 12210,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13608,'Megaphone_Box1','Megaphone Box','Cash',20,10,'getitem 12221,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13609,'Megaphone_Box5','Megaphone 5 Box','Cash',20,10,'getitem 12221,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13610,'Enriched_Elunium_Box5','Enriched Elunium 5 Box','Cash',20,10,'getitem 7619,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13611,'Enriched_Oridecon_Box5','Enriched Oridecon 5 Box','Cash',20,10,'getitem 7620,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13612,'Handcuff_Box','Arrest Handcuffs Box','Cash',20,10,'getitem 2706,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13613,'Super_Pet_Egg_Box1','Super Pet Egg Box 1','Cash',20,10,'getitem 13617,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13614,'Super_Pet_Egg_Box2','Super Pet Egg Box 2','Cash',20,10,'getitem 13618,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13615,'Super_Pet_Egg_Box3','Super Pet Egg Box 3','Cash',20,10,'getitem 13619,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13616,'Super_Pet_Egg_Box4','Super Pet Egg Box 4','Cash',20,10,'getitem 13620,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (13617,'Super_Pet_Egg1','Super Pet Egg 1','Usable',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (13618,'Super_Pet_Egg2','Super Pet Egg 2','Usable',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (13619,'Super_Pet_Egg3','Super Pet Egg 3','Usable',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (13620,'Super_Pet_Egg4','Super Pet Egg 4','Usable',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13621,'Greed_Box30','Greed Scroll 30 Box','Cash',20,10,'getitem 14529,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13622,'Greed_Box50','Greed Scroll 50 Box','Cash',20,10,'getitem 14529,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13623,'Greed_Box100','Greed Scroll 100 Box','Cash',20,10,'getitem 14529,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13624,'Flee_30_Scroll_Box','Evasion Scroll Box','Cash',20,10,'getitem 14530,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13625,'Accuracy_30_Scroll_Box','Concentration Scroll Box','Cash',20,10,'getitem 14531,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13626,'Super_Card_Pet_Egg_Box1','Super Card Pet Egg Box 1','Cash',20,10,'getitem 13630,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13627,'Super_Card_Pet_Egg_Box2','Super Card Pet Egg Box 2','Cash',20,10,'getitem 13631,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13628,'Super_Card_Pet_Egg_Box3','Super Card Pet Egg Box 3','Cash',20,10,'getitem 13632,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13629,'Super_Card_Pet_Egg_Box4','Super Card Pet Egg Box 4','Cash',20,10,'getitem 13633,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (13630,'Super_Card_Pet_Egg1','Super Card Pet Egg 1','Usable',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (13631,'Super_Card_Pet_Egg2','Super Card Pet Egg 2','Usable',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (13632,'Super_Card_Pet_Egg3','Super Card Pet Egg 3','Usable',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (13633,'Super_Card_Pet_Egg4','Super Card Pet Egg 4','Usable',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13634,'Vigorgra_Package1','1 Hour Package Vol. 1','Cash',20,10,'getitem 12250,2; getitem 12251,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13635,'Vigorgra_Package2','1 Hour Package Vol. 2','Cash',20,10,'getitem 12250,2; getitem 12255,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13636,'Vigorgra_Package3','1 Hour Package Vol. 3','Cash',20,10,'getitem 12252,2; getitem 12253,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13637,'Vigorgra_Package4','1 Hour Package Vol. 4','Cash',20,10,'getitem 12252,2; getitem 12255,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13638,'Vigorgra_Package5','1 Hour Package Vol. 5','Cash',20,10,'getitem 12252,2; getitem 12250,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13639,'Vigorgra_Package6','1 Hour Package Vol. 6','Cash',20,10,'getitem 12250,2; getitem 12251,2; getitem 12208,2; getitem 12215,15; getitem 12217,20; getitem 12211,1; getitem 7621,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13640,'Vigorgra_Package7','2 Hour Package Vol. 1','Cash',20,10,'getitem 12250,4; getitem 12251,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13641,'Vigorgra_Package8','2 Hour Package Vol. 2','Cash',20,10,'getitem 12250,4; getitem 12255,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13642,'Vigorgra_Package9','2 Hour Package Vol. 3','Cash',20,10,'getitem 12252,4; getitem 12253,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13643,'Vigorgra_Package10','2 Hour Package Vol. 4','Cash',20,10,'getitem 12252,4; getitem 12255,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13644,'Vigorgra_Package11','2 Hour Package Vol. 5','Cash',20,10,'getitem 12252,4; getitem 12250,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13645,'Vigorgra_Package12','2 Hour Package Vol. 6','Cash',20,10,'getitem 12250,4; getitem 12251,4; getitem 12208,4; getitem 12215,30; getitem 12217,40; getitem 12211,2; getitem 7621,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13646,'Infiltrator_Box1','Refined Infiltrator Box','Cash',20,10,'rentitem 1267,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13647,'Muramasa_Box1','Refined Muramasa Box','Cash',20,10,'rentitem 1173,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13648,'Excalibur_Box1','Refined Excalibur Box','Cash',20,10,'rentitem 13401,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13649,'Combat_Knife_Box1','Refined Combat Knife Box','Cash',20,10,'rentitem 13021,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13650,'Counter_Dagger_Box1','Refined Dagger of Counter Box','Cash',20,10,'rentitem 13022,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13651,'Kaiser_Knuckle_Box1','Refined Kaiser Knuckle Box','Cash',20,10,'rentitem 1817,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13652,'Pole_Axe_Box1','Refined Pole Axe Box','Cash',20,10,'rentitem 1419,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13653,'Mighty_Staff_Box1','Refined Mighty Staff Box','Cash',20,10,'rentitem 1623,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13654,'Right_Epsilon_Box1','Refined Light Epsilon Box','Cash',20,10,'rentitem 1372,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13655,'Balistar_Box1','Refined Ballista Box','Cash',20,10,'rentitem 1728,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13656,'Diary_Of_Sage_Box1','Refined Sage\'s Diary Box','Cash',20,10,'rentitem 1563,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13657,'Asura_Box1','Refined Ashura Box','Cash',20,10,'rentitem 13023,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13658,'Apple_Of_Archer_Box1','Refined Apple of Archer Box','Cash',20,10,'rentitem 5265,1209600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13659,'Bunny_Band_Box1','Refined Bunny Band Box','Cash',20,10,'rentitem 5266,1209600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13660,'Sahkkat_Box1','Refined Sakkat Box','Cash',20,10,'rentitem 5267,1209600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13661,'Lord_Circlet_Box1','Refined Grand Circlet Box','Cash',20,10,'rentitem 5268,1209600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13662,'Elven_Ears_Box1','Refined Elven Ears Box','Cash',20,10,'rentitem 2686,1209600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13663,'Steel_Flower_Box1','Refined Romantic Flower Box','Cash',20,10,'rentitem 2687,1209600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13664,'Critical_Ring_Box1','Refined Critical Ring Box','Cash',20,10,'rentitem 2688,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13665,'Earring_Box1','Refined Earring Box','Cash',20,10,'rentitem 2689,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13666,'Ring_Box1','Refined Ring Box','Cash',20,10,'rentitem 2690,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13667,'Necklace_Box1','Refined Necklace Box','Cash',20,10,'rentitem 2691,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13668,'Glove_Box1','Refined Glove Box','Cash',20,10,'rentitem 2692,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13669,'Brooch_Box1','Refined Brooch Box','Cash',20,10,'rentitem 2693,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13670,'Rosary_Box1','Refined Rosary Box','Cash',20,10,'rentitem 2694,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13671,'Safety_Ring_Box1','Refined Safety Ring Box','Cash',20,10,'rentitem 2695,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13672,'Vesper_Core01_Box1','Refined Vesper Core 01 Box','Cash',20,10,'rentitem 2696,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13673,'Vesper_Core02_Box1','Refined Vesper Core 02 Box','Cash',20,10,'rentitem 2697,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13674,'Vesper_Core03_Box1','Refined Vesper Core 03 Box','Cash',20,10,'rentitem 2698,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13675,'Vesper_Core04_Box1','Refined Vesper Core 04 Box','Cash',20,10,'rentitem 2699,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13676,'Drooping_Kitty_Box1','Refined Drooping Cat Box','Cash',20,10,'rentitem 5279,1209600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13677,'Magestic_Goat_Box1','Refined Majestic Goat Box','Cash',20,10,'rentitem 5280,1209600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13678,'Deviruchi_Cap_Box1','Refined Deviruchi Hat Box','Cash',20,10,'rentitem 5281,1209600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13679,'Executioner_Box1','Refined Executioner Box','Cash',20,10,'rentitem 1174,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13680,'Brood_Axe_Box1','Refined Bloody Axe Box','Cash',20,10,'rentitem 1373,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13681,'Tomahawk_Box1','Refined Tomahawk Box','Cash',20,10,'rentitem 1374,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13682,'Bow_Of_Rudra_Box1','Refined Rudra Bow Box','Cash',20,10,'rentitem 1729,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13683,'Cutlas_Box1','Refined Cutlus Box','Cash',20,10,'rentitem 13402,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13684,'Solar_Sword_Box1','Refined Solar Sword Box','Cash',20,10,'rentitem 13403,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13685,'Sword_Breaker_Box1','Refined Swordbreaker Box','Cash',20,10,'rentitem 13024,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13686,'Mail_Breaker_Box1','Refined Mailbreaker Box','Cash',20,10,'rentitem 13025,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13687,'Moonlight_Sword_Box1','Refined Moonlight Dagger Box','Cash',20,10,'rentitem 13026,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13688,'Spanner_Box1','Refined Wrench Box','Cash',20,10,'rentitem 1534,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13689,'Bok_Choy_Box','Bok Choy Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 7766,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13690,'Chung_E_Cake_Box','Green Maiden Cake Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 7767,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (13691,'Freyja_Overcoat_Box','Freya\'s Clothes Box','Cash',10,'rentitem 2369,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (13692,'Freyja_Boots_Box','Freya\'s Boots Box','Cash',10,'rentitem 2428,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (13693,'Freyja_Cape_Box','Freya\'s Manteau Box','Cash',10,'rentitem 2533,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (13694,'Freyja_Crown_Box','Freya\'s Crown Box','Cash',10,'rentitem 5306,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (13695,'Battle_Manual25_Box','Field Manual 25% Box','Cash',10,'getitem 14532,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13696,'Battle_Manual100_Box','Field Manual 100% Box','Cash',10,100,true,true,true,true,true,'getitem 14533,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (13697,'J_Blessing10_Box','Blessing Scroll 10 Box','Cash',10,'getitem 12215,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (13698,'J_Inc_Agi10_Box','Increase Agility Scroll 10 Box','Cash',10,'getitem 12216,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (13699,'J_Wind_Walk10_Box','Wind Walk Scroll 10 Box','Cash',10,'getitem 12219,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (13700,'J_Adrenaline10_Box','Adrenaline Rush Scroll 10 Box','Cash',10,'getitem 12220,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (13701,'Pet_Egg_Scroll12','Pet Egg Scroll 12','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (13702,'Pet_Egg_Scroll13','Pet Egg Scroll 13','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (13703,'Pet_Egg_Scroll14','Pet Egg Scroll 14','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`) VALUES (13704,'Super_Pet_Egg5','Super Pet Egg 5','Usable',20,10,100,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`) VALUES (13705,'Super_Pet_Egg6','Super Pet Egg 6','Usable',20,10,100,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`) VALUES (13706,'Super_Pet_Egg7','Super Pet Egg 7','Usable',20,10,100,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`) VALUES (13707,'Super_Pet_Egg8','Super Pet Egg 8','Usable',20,10,100,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (13708,'Pet_Egg_Scroll_E','Pet Egg Scroll E','Usable',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (13709,'BRO_Package_1','BRO Package Box','Usable',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13710,'Max_Weight_Up_Box','Gym Pass Box','Cash',20,10,100,true,true,true,'getitem 7776,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13711,'Small_Life_Potion_Box','Small Life Potion 10 Box','Cash',20,10,100,true,true,true,'getitem 14534,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13712,'Small_Life_Potion_Box30','Small Life Potion 30 Box','Cash',20,10,100,true,true,true,'getitem 14534,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13713,'Small_Life_Potion_Box50','Small Life Potion 50 Box','Cash',20,10,100,true,true,true,'getitem 14534,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13714,'Med_Life_Potion_Box','Medium Life Potion 10 Box','Cash',20,10,100,true,true,true,'getitem 14535,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13715,'Med_Life_Potion_Box30','Medium Life Potion 30 Box','Cash',20,10,100,true,true,true,'getitem 14535,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13716,'Med_Life_Potion_Box50','Medium Life Potion 50 Box','Cash',20,10,100,true,true,true,'getitem 14535,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13717,'Abrasive_Box5','Abrasive 5 Box','Cash',20,10,100,true,true,true,'getitem 14536,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13718,'Abrasive_Box10','Abrasive 10 Box','Cash',20,10,100,true,true,true,'getitem 14536,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13719,'Regeneration_Box5','Regeneration Potion 5 Box','Cash',20,10,100,true,true,true,'getitem 14537,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13720,'Regeneration_Box10','Regeneration 10 Box','Cash',20,10,100,true,true,true,'getitem 14537,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13721,'Dun_Tele_Scroll_Box10','Dungeon Teleport Scroll 10 Box','Cash',20,10,100,true,true,true,'getitem 14527,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13722,'Pecopeco_Hairband_Box','Peco Peco Hairband Box','Cash',20,10,'getitem 5286,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13723,'Red_Glasses_Box','Red Glasses Box','Cash',20,10,'getitem 5288,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13724,'Whisper_Mask_Box','Whisper Mask Box','Cash',20,10,'getitem 5294,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13725,'Ramen_Hat_Box','Ramen Hat Box','Cash',20,10,'getitem 5293,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13726,'Gold_Box_','Golden Box','Cash',20,10,'getitem 7777,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13727,'Silver_Box_','Silver Box','Cash',20,10,'getitem 7778,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (13728,'Gold_Key1_Box','Golden Key 1 Box','Cash',10,'getitem 7779,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (13729,'Gold_Key5_Box','Golden Key 5 Box','Cash',10,'getitem 7779,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (13730,'Silver_Key1_Box','Silver Key 1 Box','Cash',10,'getitem 7780,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (13731,'Silver_Key5_Box','Silver Key 5 Box','Cash',10,'getitem 7780,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13734,'Pecopeco_Hairband_Box1','Peco Peco Hairband Box','Cash',20,10,'getitem 5286,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13735,'Red_Glasses_Box1','Red Glasses Box','Cash',20,10,'getitem 5288,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13736,'Whisper_Mask_Box1','Whisper Mask Box','Cash',20,10,'getitem 5294,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13737,'Ramen_Hat_Box1','Ramen Hat Box','Cash',20,10,'getitem 5293,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13738,'Glass_Of_Illusion_Box5','Glass of Illusion 5 Box','Cash',20,10,100,true,true,true,'getitem 14538,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13739,'Glass_Of_Illusion_Box10','Glass of Illusion 10 Box','Cash',20,10,100,true,true,true,'getitem 14538,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13740,'Shadow_Armor_S_Box5','Shadow Armor Scroll 5 Box','Cash',20,10,100,true,true,true,'getitem 14539,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13741,'Shadow_Armor_S_Box10','Shadow Armor Scroll 10 Box','Cash',20,10,100,true,true,true,'getitem 14539,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13742,'Shadow_Armor_S_Box30','Shadow Armor Scroll 30 Box','Cash',20,10,100,true,true,true,'getitem 14539,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13743,'Holy_Armor_S_Box5','Holy Armor Scroll 5 Box','Cash',20,10,100,true,true,true,'getitem 14540,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13744,'Holy_Armor_S_Box10','Holy Armor Scroll 10 Box','Cash',20,10,100,true,true,true,'getitem 14540,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13745,'Holy_Armor_S_Box30','Holy Armor Scroll 30 Box','Cash',20,10,100,true,true,true,'getitem 14540,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13746,'S_Def_Potion_Box10','Small Defense Potion 10 Box','Cash',20,10,100,true,true,true,'getitem 14541,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13747,'S_Def_Potion_Box30','Small Defense Potion 30 Box','Cash',20,10,100,true,true,true,'getitem 14541,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13748,'S_Def_Potion_Box50','Small Defense Potion 50 Box','Cash',20,10,100,true,true,true,'getitem 14541,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13749,'B_Def_Potion_Box10','Big Defense Potion 10 Box','Cash',20,10,100,true,true,true,'getitem 14542,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13750,'B_Def_Potion_Box30','Big Defense Potion 30 Box','Cash',20,10,100,true,true,true,'getitem 14542,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13751,'B_Def_Potion_Box50','Big Defense Potion 50 Box','Cash',20,10,100,true,true,true,'getitem 14542,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13752,'S_Mdef_Potion_Box10','Small Magic Defense Potion 10 Box','Cash',20,10,100,true,true,true,'getitem 14543,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13753,'S_Mdef_Potion_Box30','Small Magic Defense Potion 30 Box','Cash',20,10,100,true,true,true,'getitem 14543,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13754,'S_Mdef_Potion_Box50','Small Magic Defense Potion 50 Box','Cash',20,10,100,true,true,true,'getitem 14543,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13755,'B_Mdef_Potion_Box10','Big Magic Defense Potion 10 Box','Cash',20,10,100,true,true,true,'getitem 14544,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13756,'B_Mdef_Potion_Box30','Big Magic Defense Potion 30 Box','Cash',20,10,100,true,true,true,'getitem 14544,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13757,'B_Mdef_Potion_Box50','Big Magic Defense Potion 50 Box','Cash',20,10,100,true,true,true,'getitem 14544,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13758,'Battle_Manual_X3_Box','Field Manual 300% Box','Cash',20,10,'getitem 14545,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13759,'In_Blue_Herb_Box','Blue Herb Box','Cash',20,10,'getitem 510,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13760,'Honey_Box','Honey Box','Cash',20,10,'getitem 518,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13761,'Empty_Bottle_Box','Empty Bottle Box','Cash',20,10,'getitem 713,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13762,'In_Royal_Jelly_Box','Royal Jelly Box','Cash',20,10,'getitem 526,70;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13763,'5_Anniversary_Coin_Box','Coin Box','Cash',20,10,'getitem 2709,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13764,'Battle_Manual_Box_TW','Beginner\'s Field Manual 5 Box','Cash',20,10,'getitem 7803,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13765,'Certificate_TW_Box','Certificate Box','Cash',20,10,100,true,true,true,true,true,true,true,true,'getitem 7804,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13766,'Nagan_Box','Refined Nagan Box','Cash',20,10,'rentitem 13407,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13767,'Skewer_Box','Refined Brocca Box','Cash',20,10,'rentitem 1424,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13768,'Survival_Rod_Box','Refined Survivor\'s Rod Box','Cash',20,10,'rentitem 1628,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13769,'Quadrille_Box','Refined Quadrille Box','Cash',20,10,'rentitem 1537,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13770,'Great_Axe_Box','Refined Great Axe Box','Cash',20,10,'rentitem 1378,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13771,'Bloody_Roar_Box','Refined Bloody Roar Box','Cash',20,10,'rentitem 1273,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13772,'Hardback_Box','Refined Hardcover Book Box','Cash',20,10,'rentitem 1567,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13773,'Fire_Brand_Box','Refined Fireblend Box','Cash',20,10,'rentitem 13408,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13774,'Immaterial_Sword_Box','Refined Immaterial Sword Box','Cash',20,10,'rentitem 13409,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13775,'Unholy_Touch_Box','Refined Unholy Touch Box','Cash',20,10,'rentitem 1274,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13776,'Cloak_Of_Survival_Box','Refined Survivor\'s Manteau Box','Cash',20,10,'rentitem 2535,1209600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13777,'Masquerade_Box','Refined Masquerade Box','Cash',20,10,'rentitem 5326,1209600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13778,'Orc_Hero_Helm_Box','Refined Helmet of Orc Hero Box','Cash',20,10,'rentitem 5327,1209600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13779,'Evil_Wing_Ears_Box','Refined Wing of Diablo Box','Cash',20,10,'rentitem 5328,1209600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13780,'Dark_Blindfold_Box','Refined Dark Blinder Box','Cash',20,10,'rentitem 5329,1209600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13781,'kRO_Drooping_Kitty_Box','Refined Drooping Cat Box','Cash',20,10,'rentitem 5330,1209600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13782,'Corsair_Box','Refined Corsair Box','Cash',20,10,'rentitem 5331,1209600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13783,'Bloody_Iron_Ball_Box','Refined Bloodied Shackle Ball Box','Cash',20,10,'rentitem 2710,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13784,'Spiritual_Ring_Box','Refined Spiritual Ring Box','Cash',20,10,'rentitem 2711,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13785,'Nagan_Box1','Refined Nagan Box','Cash',20,10,'rentitem 13407,86400;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13786,'Skewer_Box1','Refined Brocca Box','Cash',20,10,'rentitem 1424,86400;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13787,'Survival_Rod_Box1','Refined Survivor\'s Rod Box','Cash',20,10,'rentitem 1628,86400;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13788,'Quadrille_Box1','Refined Quadrille Box','Cash',20,10,'rentitem 1537,86400;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13789,'Great_Axe_Box1','Refined Great Axe Box','Cash',20,10,'rentitem 1378,86400;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13790,'Bloody_Roar_Box1','Refined Bloody Roar Box','Cash',20,10,'rentitem 1273,86400;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13791,'Hardback_Box1','Refined Hardcover Book Box','Cash',20,10,'rentitem 1567,86400;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13792,'Fire_Brand_Box1','Refined Fireblend Box','Cash',20,10,'rentitem 13408,86400;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13793,'Immaterial_Sword_Box1','Refined Immaterial Sword Box','Cash',20,10,'rentitem 13409,86400;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13794,'Unholy_Touch_Box1','Refined Unholy Touch Box','Cash',20,10,'rentitem 1274,86400;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13795,'Cloak_Of_Survival_Box1','Refined Survivor\'s Manteau Box','Cash',20,10,'rentitem 2535,86400;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13796,'Masquerade_Box1','Refined Masquerade Box','Cash',20,10,'rentitem 5326,86400;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13797,'Orc_Hero_Helm_Box1','Refined Helmet of Orc Hero Box','Cash',20,10,'rentitem 5327,86400;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13798,'Evil_Wing_Ears_Box1','Refined Wing of Diablo Box','Cash',20,10,'rentitem 5328,86400;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13799,'Dark_Blindfold_Box1','Refined Dark Blinder Box','Cash',20,10,'rentitem 5329,86400;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13800,'kRO_Drooping_Kitty_Box1','Refined Drooping Cat Box','Cash',20,10,'rentitem 5330,86400;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13801,'Corsair_Box1','Refined Corsair Box','Cash',20,10,'rentitem 5331,86400;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13802,'Bloody_Iron_Ball_Box1','Refined Bloodied Shackle Ball Box','Cash',20,10,'rentitem 2710,86400;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13803,'Spiritual_Ring_Box1','Refined Spiritual Ring Box','Cash',20,10,'rentitem 2711,86400;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13804,'Fire_Cracker_Love_Box','I Love You Firecracker Box','Cash',20,10,'getitem 14546,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13805,'Fire_Cracker_Wday_Box','Whiteday Firecracker Box','Cash',20,10,'getitem 14547,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13806,'Fire_Cracker_Vday_Box','Valentine\'s Day Firecracker Box','Cash',20,10,'getitem 14548,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13807,'Fire_Cracker_Bday_Box','Birthday Firecracker Box','Cash',20,10,'getitem 14549,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13808,'Fire_Cracker_Xmas_Box','Xmas Firecracker Box','Cash',20,10,'getitem 14550,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13809,'Blue_Gemstone_Box','Blue Gemstone Box','Cash',20,10,'getitem 717,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13810,'Blue_Potion_Box','Blue Potion Box','Cash',20,10,'getitem 11502,25;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13811,'Food_Box_Lv1','Food Box Vol 1','Cash',20,10,'getitem 14551,1; getitem 14554,1; getitem 14557,1; getitem 14560,1; getitem 14563,1; getitem 14566,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13812,'Food_Box_Lv2','Food Box Vol 2','Cash',20,10,'getitem 14552,1; getitem 14555,1; getitem 14558,1; getitem 14561,1; getitem 14564,1; getitem 14567,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13813,'Food_Box_Lv3','Food Box Vol 3','Cash',20,10,'getitem 14553,1; getitem 14556,1; getitem 14559,1; getitem 14562,1; getitem 14565,1; getitem 14568,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (13814,'Indonesia_Box','Healing Box','Cash',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13815,'Knife_Goblin_Box','Knife Goblin Taming Box','Cash',20,10,100,true,true,true,'getitem 14569,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13816,'Flail_Goblin_Box','Flail Goblin Taming Box','Cash',20,10,100,true,true,true,'getitem 14570,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13817,'Hammer_Goblin_Box','Hammer Goblin Taming Box','Cash',20,10,100,true,true,true,'getitem 14571,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13818,'Red_Deleter_Box','Red Deleter Taming Box','Cash',20,10,100,true,true,true,'getitem 14572,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13819,'Diabolic_Box','Diabolic Taming Box','Cash',20,10,100,true,true,true,'getitem 14573,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13820,'Wanderer_Box','Wanderer Taming Box','Cash',20,10,100,true,true,true,'getitem 14574,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13821,'Green_Apple_Box','Green Apple Box','Cash',20,10,100,true,true,true,'getitem 7821,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13822,'Whole_Barbecue_Box','Barbeque Box','Cash',20,10,100,true,true,true,'getitem 7822,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13823,'Meat_Veg_Skewer_Box','Meat Skewer Box','Cash',20,10,100,true,true,true,'getitem 7823,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13824,'Spirit_Liquor_Box','Spirit Liquor Box','Cash',20,10,100,true,true,true,'getitem 7824,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (13825,'Green_Box_','Old Green Box','Usable',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13826,'Power_Box1','Power Box 1','Usable',20,10,'getitem 682,1; getitem 12123,1; getitem 12122,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13827,'Power_Box2','Power Box 2','Usable',20,10,'getitem 683,1; getitem 12123,1; getitem 12122,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13828,'Resist_Box1','Resist Box 1','Usable',20,10,'getitem 12118,1; getitem 12119,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13829,'Resist_Box2','Resist Box 2','Usable',20,10,'getitem 12120,1; getitem 12121,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13830,'Stat_Boost1','Stat Boost 1','Usable',20,10,'sc_start SC_INCSTR,60000,5; sc_start SC_INCAGI,60000,5; sc_start SC_INCVIT,60000,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13831,'Stat_Boost2','Stat Boost 2','Usable',20,10,'sc_start SC_INCINT,60000,5; sc_start SC_INCLUK,60000,5; sc_start SC_INCDEX,60000,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13832,'Stat_Boost3','Stat Boost 3','Usable',20,10,'sc_start SC_INCAGI,60000,5; sc_start SC_INCVIT,60000,5; sc_start SC_INCDEX,60000,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13833,'Stat_Boost4','Stat Boost 4','Usable',20,10,'sc_start SC_INCINT,60000,5; sc_start SC_INCVIT,60000,5; sc_start SC_INCDEX,60000,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13834,'Dun_Tele_Scroll2_Box5','Dungeon Teleport Scroll II 5 Box','Cash',20,10,'getitem 14581,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13835,'Dun_Tele_Scroll2_Box10','Dungeon Teleport Scroll II 10 Box','Cash',20,10,'getitem 14581,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13836,'Mbl_Str_Dish_Box','Steamed Tongue Box','Cash',20,10,'getitem 12250,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13837,'Mbl_Agi_Dish_Box','Steamed Desert Scorpions Box','Cash',20,10,'getitem 12251,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13838,'Mbl_Int_Dish_Box','Dragon Breath Cocktail Box','Cash',20,10,'getitem 12252,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13839,'Mbl_Dex_Dish_Box','Hwergelmir\'s Tonic Box','Cash',20,10,'getitem 12253,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13840,'Mbl_Luk_Dish_Box','Cooked Nine Tail Box','Cash',20,10,'getitem 12254,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13841,'Mbl_Vit_Dish_Box','Immortal Stew Box','Cash',20,10,'getitem 12255,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13842,'Mbl_Kafra_Card_Box','Payment Statement for Kafra Employee Box','Cash',20,10,'getitem 12249,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13843,'Mbl_Battle_Manual_Box','Field Manual Box','Cash',20,10,'getitem 14532,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13844,'Heroic_Stone_Box','Heroic Stone Box','Cash',20,10,'getitem 7825,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (13845,'Mysterious_Travel_Sack1','Mystery Travel Sack A','Cash',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (13846,'Mysterious_Travel_Sack2','Mystery Travel Sack B','Cash',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (13847,'Mysterious_Travel_Sack3','Mystery Travel Sack C','Cash',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (13848,'Mysterious_Travel_Sack4','Mystery Travel Sack D','Cash',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13849,'WOB_Box_Rune5','Yellow Butterfly Wing 5 Box','Cash',20,10,'getitem 14582,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13850,'WOB_Box_Rune10','Yellow Butterfly Wing Box','Cash',20,10,'getitem 14582,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13851,'WOB_Box_Schawaltz5','Green Butterfly Wing 5 Box','Cash',20,10,'getitem 14583,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13852,'WOB_Box_Schawaltz10','Green Butterfly Wing Box','Cash',20,10,'getitem 14583,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13853,'WOB_Box_Rachel5','Red Butterfly Wing 5 Box','Cash',20,10,'getitem 14584,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13854,'WOB_Box_Rachel10','Red Butterfly Wing Box','Cash',20,10,'getitem 14584,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13855,'WOB_Box_Local5','Blue Butterfly Wing 5 Box','Cash',20,10,'getitem 14585,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13856,'WOB_Box_Local10','Blue Butterfly Wing Box','Cash',20,10,'getitem 14585,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13857,'Spark_Candy_Box5','Candy 5 Box','Cash',20,10,'getitem 14586,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13858,'Spark_Candy_Box10','Candy 10 Box','Cash',20,10,'getitem 14586,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13859,'Directive_A_Envelope','Directive Envelope A','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 2734,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13860,'Directive_B_Envelope','Directive Envelope B','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 2735,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13861,'Mini_Battle_Manual_Box','Small Field Manual Box','Cash',20,10,'getitem 12208,4;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (13862,'Trial_Box','Trial Box','Cash',20,10,'getitem 12208,2; getitem 12215,15; getitem 12216,15;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13863,'Repair_Scroll_Box10','Repair Weapon Scroll 10 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14521,10; getitem 1002,10; getitem 998,10; getitem 756,10; getitem 999,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13866,'Flying_Angel_Box','Flying Angel Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 5210,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13867,'Neko_Mimi_Box','Neko Mimi Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 5099,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13868,'MFH_Box','Moonlight Flower Hat Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 5214,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13869,'Chick_Hat_Box','Baby Chick Hat Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 5283,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13870,'New_Style_Box','Beauty Gift Certificate Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 7622,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13871,'Magician_Card_Box','Mage Card Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 4327,1; getitem 4309,1; getitem 4325,1; getitem 4208,1; getitem 4258,1; getitem 4191,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13872,'Acolyte_Card_Box','Acolyte Card Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 4185,1; getitem 4312,1; getitem 4217,1; getitem 4280,1; getitem 4293,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13873,'Archer_Card_Box','Archer Card Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 4297,1; getitem 4234,1; getitem 4199,1; getitem 4178,1; getitem 4252,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13874,'Swordman_Card_Box','Swordman Card Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 4319,1; getitem 4331,1; getitem 4220,1; getitem 4311,1; getitem 4246,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13875,'Thief_Card_Box','Thief Card Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 4230,1; getitem 4210,1; getitem 4257,1; getitem 4172,1; getitem 4272,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13876,'Merchant_Card_Box','Merchant Card Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 4206,1; getitem 4281,1; getitem 4186,1; getitem 4233,1; getitem 4321,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13877,'Clock_Tower_Card_Box','Clock Tower Card Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 4244,1; getitem 4299,1; getitem 4313,1; getitem 4229,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13878,'Geffenia_Card_Box','Geffenia Card Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 4218,1; getitem 4269,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13879,'Owl_Card_Box','Owl Card Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 4237,1; getitem 4238,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13880,'Ghost_Card_Box','Ghost Card Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 4193,1; getitem 4294,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13881,'Nightmare_Card_Box','Nightmare Card Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 4127,1; getitem 4166,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13882,'Curse_Card_Box','Curse Card Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 4076,4;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13883,'Sleep_Card_Box','Sleep Card Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 4024,4;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13884,'Freeze_Card_Box','Freeze Card Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 4055,4;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13885,'Stun_Card_Box','Stun Card Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 4017,4;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13886,'Silence_Card_Box','Silence Card Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 4057,4;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13887,'Blind_Card_Box','Blind Card Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 4020,4;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13888,'Chaos_Card_Box','Chaos Card Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 4104,4;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13889,'Elunium_Box_','Elunium Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 985,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13890,'Oridecon_Box_','Oridecon Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 984,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13891,'Fire_Converter_Box','Fire Converter Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12114,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13892,'Water_Converter_Box','Water Converter Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12115,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13893,'Wind_Converter_Box','Wind Converter Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12117,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13894,'Earth_Converter_Box','Earth Converter Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12116,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13895,'Starter_Pack','Starter Pack','Cash',20,100,true,true,true,true,true,true,true,'getitem 7229,2; getitem 569,300; getitem 504,20; getitem 505,20; getitem 7060,30; getitem 2403,1; getitem 5039,1; getitem 2503,1; getitem 2307,1; getitem 616,1; getitem 603,1; getitem 617,1; getitem 610,5; getitem 604,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13896,'Mimic_Summon_Box5','Mimic Summoning 5 Box','Cash',20,10,100,true,true,true,'getitem 12276,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13897,'Disguise_Summon_Box5','Disguise Summoning 5 Box','Cash',20,10,100,true,true,true,'getitem 12277,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13898,'Alice_Summon_Box5','Alice Summoning 5 Box','Cash',20,10,100,true,true,true,'getitem 12278,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13899,'Mimic_Summon_Box10','Mimic Summoning 10 Box','Cash',20,10,100,true,true,true,'getitem 12276,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13900,'Disguise_Summon_Box10','Disguise Summoning 10 Box','Cash',20,10,100,true,true,true,'getitem 12277,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13901,'Alice_Summon_Box10','Alice Summoning 10 Box','Cash',20,10,100,true,true,true,'getitem 12278,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13902,'Fish_Head_Hat_Box','Fish Head Hat Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 5380,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13903,'Santa_Poring_Hat_Box','Santa Poring Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 5381,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13904,'Bell_Ribbon_Box','Bell Ribbon Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 5382,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13905,'Hard_Core_Set_Box','XM Hardcore Set Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12208,10; getitem 12209,10; getitem 12210,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13906,'Kitty_Set_Box','XM Kitty Set Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 5230,1; getitem 5231,1; getitem 5232,1; getitem 5233,1; getitem 5234,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13907,'Soft_Core_Set_Box','XM Softcore Set Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12208,5; getitem 12209,5; getitem 12210,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13908,'Deviruchi_Set_Box','XM Deviruchi Set Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 5227,1; getitem 5228,1; getitem 5229,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13909,'MVP_Hunt_Box','MVP Hunting Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 7621,1; getitem 12210,1; getitem 12221,1; getitem 12214,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13910,'Brewing_Box','XM Brewing Set Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12204,10; getitem 12205,10; getitem 12206,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13911,'Xmas_Pet_Scroll','Christmas Pet Scroll','Usable',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13912,'Party_Blessing_Box','Party Blessing 10 Scroll Box','Cash',20,10,100,true,true,true,'getitem 14588,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13913,'Party_Inc_Agi_Box','Party Increase Agi 10 Scroll Box','Cash',20,10,100,true,true,true,'getitem 14589,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (13914,'Party_Assumptio_Box','Party Assumptio 5 Scroll Box','Cash',20,10,100,true,true,true,'getitem 14590,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13915,'Love_Angel_Box','Love Angel Magic Powder Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 12287,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13916,'Squirrel_Box','Squirrel Magic Powder Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 12288,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13917,'Gogo_Box','Gogo Magic Powder Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 12289,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13926,'Crusader_Card_Box','Crusader Card Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 4371,1; getitem 4311,1; getitem 4319,1; getitem 4331,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13927,'Alchemist_Card_Box','Alchemist Card Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 4281,1; getitem 4233,1; getitem 4343,1; getitem 4186,1; getitem 4036,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13928,'Rogue_Card_Box','Rogue Card Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 4039,1; getitem 4210,1; getitem 4257,1; getitem 4230,1; getitem 4348,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13929,'Bard_Dancer_Card_Box','Bard Dancer Card Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 4297,1; getitem 4234,1; getitem 4178,1; getitem 4381,1; getitem 4252,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13930,'Sage_Card_Box','Sage card box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 4382,1; getitem 4258,1; getitem 4325,1; getitem 4208,1; getitem 4327,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13931,'Monk_Card_Box','Monk Card Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 4312,1; getitem 4332,1; getitem 4185,1; getitem 4293,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13932,'Sylph_Box','Sylph Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 4345,4;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13933,'Undine_Box','Undine Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 4350,4;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13934,'Salamander_Box','Salamander Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 4380,4;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13935,'Soul_Box','Soul Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 4388,4;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13936,'Noum_Bpx','Gnome Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 4335,4;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13937,'Robo_Eye_Box','Robo Eye Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 5325,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13938,'Twin_Ribbon_Box','Maiden\'s Twin Ribbon Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 5187,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13940,'Siege_Tele_Scroll_Box','WoE Teleport Scroll 100 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14591,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13941,'Valentine_Scroll_TW','Taiwan Valentine Scroll','Cash',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13942,'Love_Angel_Box_1m','Love Angel Magic Powder Box 30 Days','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14009,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13943,'Squirrel_Box_1m','Squirrel Magic Powder Box 30 Days','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14010,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13944,'Gogo_Box_1m','Gogo Magic Powder Box 30 Days','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14011,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13945,'Br_SwordPackage','Brazil Swordsman Package','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 2317,1; getitem 2106,1; getitem 2406,1; getitem 2506,1; getitem 4003,1; getitem 4133,1; getitem 2607,2; getitem 2229,1; getitem 2266,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13946,'Br_MagePackage','Brazil Magician Package','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 2322,1; getitem 2102,1; getitem 2104,1; getitem 2504,1; getitem 4003,1; getitem 4077,1; getitem 2607,2; getitem 5027,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13947,'Br_AcolPackage','Brazil Acolyte Package','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 2326,1; getitem 2104,1; getitem 2404,1; getitem 2504,1; getitem 4003,1; getitem 4100,1; getitem 2607,2; getitem 2217,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13948,'Br_ArcherPackage','Brazil Archer package','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 2331,1; getitem 1716,1; getitem 2406,1; getitem 2504,1; getitem 4064,1; getitem 4102,1; getitem 2607,2; getitem 2285,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13949,'Br_MerPackage','Brazil Merchant Package','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 2315,1; getitem 2104,1; getitem 2406,1; getitem 2506,1; getitem 4003,1; getitem 4133,1; getitem 2607,2; getitem 5021,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13950,'Br_ThiefPackage','Brazil Thief Package','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 2336,1; getitem 2104,1; getitem 2406,1; getitem 2506,1; getitem 4097,1; getitem 4102,1; getitem 2607,2; getitem 2274,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13951,'Wasteland_Outlaw_Box','Western Outlaw Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 13109,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13952,'Lever_Action_Rifle_Box','Lever Action Rifle Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 13170,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13953,'All_In_One_Ring_Box','All In One Ring Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 2741,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13954,'Spiritual_Tunic_Box','Spiritual Tunic Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 2384,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13955,'Recuperative_Armor_Box','Recuvative Armor Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 2385,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13956,'Shelter_Resistance_Box','Shell Of Resistance Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 2132,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13957,'Sylphid_Manteau_Box','Silf Manteau Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 2543,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13958,'Refresh_Shoes_Box','Refresh Shoes Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 2439,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13959,'Toast_Box','Crunch Toast Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 5391,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13960,'Name_Change_Coupon_Box','Identification Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 7623,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13961,'Mojji_Box','Mochi Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 554,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13962,'Deprotai_Doll_Hat_Box','Defolty Doll Hat Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 5340,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13963,'Claris_Doll_Hat_Box','Glaris Doll Hat Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 5341,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13964,'Sorin_Doll_Hat_Box','Sorin Doll Hat Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 5342,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13965,'Tayelin_Doll_Hat_Box','Tailring Doll Hat Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 5343,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13966,'Binit_Doll_Hat_Box','Vinit Doll Hat Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 5344,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13967,'Debril_Doll_Hat_Box','W Doll Hat Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 5345,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13970,'Iron_10_Box','Iron Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 998,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13971,'Steel_10_Box','Steel Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 999,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13972,'Coal_10_Box','Coal Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 1003,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13973,'Poison_Bottle_30_Box','Poison Bottle Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 678,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13974,'TW_Scroll01','Fisherman Scroll','Usable',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13975,'Picture_Diary_Box','Diary Magic Powder Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 12304,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13976,'Mini_Heart_Box','Mini Heart Magic Powder Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 12305,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13977,'Newcomer_Box','Freshman Magic Powder Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 12306,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13978,'Kid_Box','Kid Magic Powder Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 12307,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13979,'Magic_Castle_Box','Magic Magic Powder Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 12308,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13980,'Bulging_Head_Box','JJangu Magic Powder Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 12309,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13981,'Picture_Diary_Box_1m','Diary Magic Powder Box 30 Days','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 12304,2592000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13982,'Mini_Heart_Box_1m','Mini Heart Magic Powder Box 30 Days','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 12305,2592000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13983,'Newcomer_Box_1m','Freshman Magic Powder Box 30 Days','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 12306,2592000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13984,'Kid_Box_1m','Kid Magic Powder Box 30 Days','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 12307,2592000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13985,'Magic_Castle_Box_1m','Magic Magic Powder Box 30 Days','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 12308,2592000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13986,'Bulging_Head_Box_1m','JJangu Magic Powder Box 30 Days','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 12309,2592000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13987,'Ori_Stone_5_Box','Rough Oridecon 5 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 756,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13988,'Ori_Stone_50_Box','Rough Oridecon 50 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 756,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13989,'Acidbomb_10_Box','Acid Bomb 10 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 7135,10; getitem 7136,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13990,'Job_Manual50_Box','JOB Battle Manual Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14592,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13991,'Tiger_Mask_Box','Tiger Mask Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 5098,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13992,'Cat_Hat_Box','Pussy Cat Bell Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 5099,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13993,'Alice_Doll_Box','Alice Hat Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 5137,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13994,'Speed_Up_Potion_Box5','Speed Potion 5 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12016,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13995,'Speed_Up_Potion_Box10','Speed Potion 10 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12016,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13996,'Big_Bun_Box100','Big Bun 100 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14522,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13997,'Big_Bun_Box500','Big Bun 500 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14522,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13998,'Giant_Fly_Wing_Box500','Giant Fly Wing 500 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12212,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13999,'Pill__Box100','Pill 100 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14523,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14000,'Pill__Box500','Pill 500 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14523,500;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14001,'Basic_Siege_Supply_Box','Recruit Siege Supply Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 11503,25; getitem 11504,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14002,'Adv_Siege_Supply_Box','Veteran Siege Supply Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 11503,50; getitem 11504,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14003,'Elite_Siege_Supply_Box','Elite Siege Supply Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 11503,100; getitem 11504,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14004,'Poison_Bottle_10_Box','Poison Bottle 10 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 678,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14005,'Poison_Bottle_5_Box','Poison Bottle 5 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 678,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14006,'F_Drooping_W_Kitty_Box','Evolved Drooping Cat Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 5372,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14007,'F_Rabbit_Ear_Hat_Box','Evolved Rabbits Headband Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 5378,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14008,'F_L_Orc_Hero_Helm_Box','Evolved Helmet Of Orc Hero Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 5375,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14009,'F_Love_Angel_Box','Love Angel Magic Powder Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 12287,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14010,'F_Squirrel_Box','Squillroll Magic Powder Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 12288,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14011,'F_Gogo_Box','Gogo Magic Powder Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 12289,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14012,'F_Love_Angel_Box_1m','Love Angel Magic Powder Box 30 Days','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 13915,2592000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14013,'F_Squirrel_Box_1m','Squillroll Magic Powder Box 30 Days','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 13916,2592000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14014,'F_Gogo_Box_1m','Gogo Magic Powder Box 30 Days','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 13917,2592000;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14015,'F_Wasteland_Outlaw_Box','Western Outlaw Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 13107,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14016,'F_Lever_Action_Rifle_Box','Lever Action Rifle Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 13170,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14017,'F_All_In_One_Ring_Box','All In One Ring Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 2741,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14018,'F_Spritual_Tunic_Box','Spiritual Tunic Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 2384,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14019,'F_Recuperative_Box','Recuvative Armor Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 2385,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14020,'F_Shelter_Resist_Box','Shell Of Resistance Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 2132,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14021,'F_Sylphid_Manteau_Box','Silf Manteau Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 2543,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14022,'F_Refresh_Shoes_Box','Refresh Shoes Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 2439,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14023,'F_Toast_Box','Crunch Toast Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 5391,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14024,'F_Robo_Eye_Box','Robo Eye Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 5325,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14025,'F_Twin_Ribbon_Box','Maiden\'s Twin Ribbon Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 5187,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14027,'F_Fish_Head_Hat_Box','Fish Head Hat Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 5380,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14028,'F_Santa_Poring_Hat_Box','SantaPoring Cap Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 5381,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14029,'F_Bell_Ribbon_Box','Bell Ribbon Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 5382,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14030,'F_Mimic_Scroll_Box5','Mimic Summoning 5 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12276,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14031,'F_Disguise_Scroll_Box5','Disguise Summoning 5 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12277,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14032,'F_Alice_Scroll_Box5','Alice Summoning 5 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12278,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14033,'F_Mimic_Scroll_Box10','Mimic Summoning 10 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12276,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14034,'F_Disguise_Scroll_Box10','Disguise Summoning 10 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12277,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14035,'F_Alice_Scroll_Box10','Alice Summoning 10 Box)','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12278,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14036,'F_New_Style_Coupon_Box','New Style Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 7622,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14037,'F_Repair_Scroll_Box','Repair Weapon Scroll Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14521,5; getitem 1002,5; getitem 998,5; getitem 756,5; getitem 999,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14038,'F_Repair_Scroll_Box10','Repair Weapon Scroll 10 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14521,10; getitem 1002,10; getitem 998,10; getitem 756,10; getitem 999,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14041,'F_WOB_Rune_Box5','Yellow Butterfly Wing 5 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14582,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14042,'F_WOB_Rune_Box10','Yellow Butterfly Wing Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14582,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14043,'F_WOB_Schwaltz_Box5','Green Butterfly Wing 5 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14583,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14044,'F_WOB_Schwaltz_Box10','Green Butterfly Wing Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14583,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14045,'F_WOB_Rachel_Box5','Red Butterfly Wing 5 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14584,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14046,'F_WOB_Rachel_Box10','Red Butterfly Wing Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14584,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14047,'F_WOB_Local_Box5','Blue Butterfly Wing 5 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14585,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14048,'F_WOB_Local_Box10','Blue Butterfly Wing Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14585,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14049,'F_Spark_Candy_Box5','Candy 5 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14586,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14050,'F_Spark_Candy_Box10','Candy 10 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14586,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14051,'F_Dun_Tel_Scroll2_Box5','Dungeon Teleport Scroll II 5 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14581,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14052,'F_Dun_Tel_Scroll2_Box10','Dungeon Teleport Scroll II 10 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14581,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14053,'F_Little_Angel_Doll_Box','Little Angel Doll Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 5324,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14054,'F_Triple_Poring_Hat_Box','Poring 3 Hats Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 5255,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14055,'F_Nagan_Box','Refined Nagan Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 13407,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14056,'F_Skewer_Box','Refined Brocca Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 1424,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14057,'F_Survival_Rod_Box','Refined Survivor\'s Rod Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 1628,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14058,'F_Quadrille_Box','Refined Quadrille Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 1537,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14059,'F_Great_Axe_Box','Refined Great Axe Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 1378,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14060,'F_Bloody_Roar_Box','Refined Bloody Roar Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 1273,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14061,'F_Hardback_Box','Refined Hardcover Book Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 1567,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14062,'F_Fire_Brand_Box','Refined Fireblend Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 13408,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14063,'F_Immaterial_Sword_Box','Refined Immaterial Sword Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 13409,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14064,'F_Unholy_Touch_Box','Refined Unholy Touch Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 1274,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14065,'F_Clack_Of_Servival_Box','Refined Survivor\'s Manteau Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 2535,1209600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14066,'F_Masquerade_Box','Refined Masquerade Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 5326,1209600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14067,'F_Orc_Hero_Helm_Box','Refined Helmet of Orc Hero Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 5327,1209600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14068,'F_Ear_Of_Devil_Wing_Box','Refined Wing of Diablo Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 5328,1209600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14069,'F_Dark_Blindfold_Box','Refined Dark Blinder Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 5329,1209600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14070,'F_K_Drooping_Kitty_Box','Refined Drooping Cat Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 5330,1209600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14071,'F_Corsair_Box','Refined Corsair Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 5331,1209600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14072,'F_Bloody_Iron_Ball_Box','Refined Bloodied Shackle Ball Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 2710,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14073,'F_Spiritual_Ring_Box','Refined Spiritual Ring Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 2711,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14074,'F_G_O_I_Box5','Wine Glass of Illusion 5 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14538,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14075,'F_G_O_I_Box10','Glass Of Illusion 10 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14538,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14076,'F_Shadow_Armor_S_Box5','Scroll of Shadow Armor 5 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14539,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14077,'F_Shadow_Armor_S_Box10','Scroll of Shadow Armor 10 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14539,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14078,'F_Shadow_Armor_S_Box30','Scroll of Shadow Armor 30 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14539,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14079,'F_Holy_Armor_S_Box5','Scroll of Holy Armor 5 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14540,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14080,'F_Holy_Armor_S_Box10','Scroll of Holy Armor 10 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14540,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14081,'F_Holy_Armor_S_Box30','Scroll of Holy Armor 30 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14540,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14082,'FS_Def_Potion_Box10','Small Defense Potion 10 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14541,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14083,'FS_Def_Potion_Box30','Small Physical Defense Potion 30 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14541,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14084,'FS_Def_Potion_Box50','Small Physical Defense Potion 50 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14541,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14085,'FB_Def_Potion_Box10','Big Defense Potion 10 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14542,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14086,'FB_Def_Potion_Box30','Large Physical Defense Potion 30 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14542,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14087,'FB_Def_Potion_Box50','Large Physical Defense Potion 50 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14542,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14088,'FS_Mdef_Potion_Box10','Small Magic Defense Potion 10 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14543,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14089,'FS_Mdef_Potion_Box30','Small Magical Defense Potion 30 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14543,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14090,'FS_Mdef_Potion_Box50','Small Magical Defense Potion 50 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14543,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14091,'FB_Mdef_Potion_Box10','Big Magic Defense Potion 10 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14544,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14092,'FB_Mdef_Potion_Box30','Large Magical Defense Potion 30 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14544,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14093,'FB_Mdef_Potion_Box50','Large Magical Defense Potion 50 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14544,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14094,'F_Flying_Angel_Box','Flying Angel Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 5210,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14095,'F_Cat_Hat_Box','Neko Mimi Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 5099,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14096,'F_M_F_H_Box','Moonlight Flower Hat Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 5214,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14097,'F_Chick_Hat_Box','Baby Chick Hat Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 5283,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14098,'F_Pecopeco_Hairband_Box','Peco Peco Hairband Box','Usable',20,10,100,true,true,true,true,true,true,true,'rentitem 5286,1209600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14099,'F_Red_Glasses_Box','Red Glasses Box','Usable',20,10,100,true,true,true,true,true,true,true,'rentitem 5288,1209600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14100,'F_Whisper_Mask_Box','Whisper Mask Box','Usable',20,10,100,true,true,true,true,true,true,true,'rentitem 5294,1209600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14101,'F_Ramen_Hat_Box','Ramen Hat Box','Usable',20,10,100,true,true,true,true,true,true,true,'rentitem 5293,1209600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14102,'F_Dun_Tele_Scroll1_Box','Dungeon Teleport Scroll 5 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14527,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14103,'F_Max_Weight_Up_Box','Gym Membership Card Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 7776,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14104,'F_S_Life_Potion_Box','Small Life Potion 10 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14534,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14105,'F_S_Life_Potion_Box30','Small Life Potion 30 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14534,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14106,'F_S_Life_Potion_Box50','Small Life Potion 50 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14534,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14107,'F_M_Life_Potion_Box','Medium Life Potion 10 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14535,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14108,'F_M_Life_Potion_Box30','Large Life Potion 30 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14535,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14109,'F_M_Life_Potion_Box50','Large Life Potion 50 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14535,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14110,'F_Abrasive_Box5','Abrasive 5 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14536,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14111,'F_Abrasive_Box10','Abrasive 10 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14536,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14112,'F_Regeneration_Box5','Regeneration Potion 5 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14537,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14113,'F_Regeneration_Box10','Regeneration Potion 10 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14537,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14114,'F_Dun_Tele_Scroll_Box10','Dungeon Teleport Scroll 10 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14527,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14115,'F_Infiltrator_Box','Refined Infiltrator Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 1267,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14116,'F_Muramasa_Box','Refined Muramasa Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 1173,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14117,'F_Excalibur_Box','Refined Excalibur Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 13401,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14118,'F_Combat_Knife_Box','Combat Knife Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 13021,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14119,'F_Counter_Dagger_Box','Counter Dagger Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 13022,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14120,'F_Kaiser_Knuckle_Box','Refined Kaiser Knuckle Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 1817,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14121,'F_Mighty_Staff_Box','Refined Mighty Staff Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 1623,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14122,'F_Right_Epsilon_Box','Light Epsilon Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 1372,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14123,'F_Balistar_Box','Refined Ballista Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 1728,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14124,'F_Diary_Of_Great_Sage','Sage\'s Diary Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 1563,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14125,'F_Asura_Box','Asura Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 13023,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14126,'F_Apple_Of_Archer_Box','Apple of Archer Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 5265,1209600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14127,'F_Bunny_Band_Box','Bunny Band Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 5266,1209600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14128,'F_Sahkkat_Box','Refined Sakkat Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 5267,1209600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14129,'F_Lord_Circlet_Box','Refined Grand Circlet Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 5268,1209600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14130,'F_Elven_Ears_Box','Elven Ears Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 2686,1209600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14131,'F_Steel_Flower_Box','Steel Flower Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 2687,1209600;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14132,'F_Critical_Ring_Box','Critical Ring Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 2688,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14133,'F_Earring_Box','Earring Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 2689,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14134,'F_Ring_Box','Ring Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 2690,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14135,'F_Necklace_Box','Necklace Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 2691,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14136,'F_Glove_Box','Glove Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 2692,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14137,'F_Brooch_Box','Brooch Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 2693,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14138,'F_Rosary_Box','Rosary Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 2694,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14139,'F_Safety_Ring_Box','Safety Ring Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 2695,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14140,'F_Vesper_Core_Box01','Refined Vesper Core 01 Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 2696,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14141,'F_Vesper_Core_Box02','Refined Vesper Core 02 Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 2697,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14142,'F_Vesper_Core_Box03','Refined Vesper Core 03 Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 2698,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14143,'F_Vesper_Core_Box04','Refined Vesper Core 04 Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 2699,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14144,'F_Vigorgra_Package1','Vigorgra Box1','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12250,2; getitem 12251,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14145,'F_Vigorgra_Package2','Vigorgra Box2','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12250,2; getitem 12255,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14146,'F_Vigorgra_Package3','Vigorgra Box3','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12252,2; getitem 12253,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14147,'F_Vigorgra_Package4','Vigorgra Box4','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12252,2; getitem 12255,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14148,'F_Vigorgra_Package5','Vigorgra Box5','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12252,2; getitem 12250,2; getitem 12208,2; getitem 12215,15; getitem 12216,15; getitem 12211,1; getitem 7621,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14149,'F_Vigorgra_Package6','Vigorgra Box6','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12250,2; getitem 12251,2; getitem 12208,2; getitem 12215,15; getitem 12217,20; getitem 12211,1; getitem 7621,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14150,'F_Vigorgra_Package7','Vigorgra Box7','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12250,4; getitem 12251,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14151,'F_Vigorgra_Package8','Vigorgra Box8','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12250,4; getitem 12255,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14152,'F_Vigorgra_Package9','Start your Journey Pack','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12252,4; getitem 12253,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14153,'F_Vigorgra_Package10','Siege Mode Pack','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12252,4; getitem 12255,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14154,'F_Vigorgra_Package11','1 Hour Survival Pack','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12252,4; getitem 12250,4; getitem 12208,4; getitem 12215,30; getitem 12216,30; getitem 12211,2; getitem 7621,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14155,'F_Vigorgra_Package12','Weekend Hunting Pack','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12250,4; getitem 12251,4; getitem 12208,4; getitem 12215,30; getitem 12217,40; getitem 12211,2; getitem 7621,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14156,'F_Battle_Manual_Box','Battle Manual Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12208,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14157,'F_Insurance_Package','Insurance Package','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12209,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14158,'F_Bubble_Gum_Box','Bubble Gum Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12210,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14159,'F_Str_Dish_Box','Steamed Tongue Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12202,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14160,'F_Agi_Dish_Box','Steamed Scorpion Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12203,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14161,'F_Int_Dish_Box','Dragon Breath Cocktail Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12204,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14162,'F_Dex_Dish_Box','Hwergelmir\'s Tonic Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12205,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14163,'F_Luk_Dish_Box','Nine Tail Dish Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12206,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14164,'F_Vit_Dish_Box','Stew Of Immortality Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12207,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14165,'F_Kafra_Card_Box','Kafra Card Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12211,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14166,'F_Giant_Fly_Wing_Box','Giant Fly Wing Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12212,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14167,'F_Neuralizer_Box','Neuralizer Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12213,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14168,'F_Convex_Mirror_Box','Convex Mirror Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12214,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14169,'F_Blessing_10_Scroll_Box','Blessing 10 Scroll Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12215,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14170,'F_Inc_Agi_10_Scroll_Box','Increase AGI 10 scroll Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12216,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14171,'F_Aspersio_5_Scroll_Box','Aspersio 5 Scroll Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12217,10; getitem 523,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14172,'F_Assumptio_5_Scroll_Box','Assumptio 5 Scroll Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12218,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14173,'F_Wind_Walk_10_Scroll_Box','Wind Walk 10 Scroll Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12219,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14174,'F_Adrenaline_Scroll_Box','Adrenaline 5 Scroll Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12220,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14175,'F_Megaphone_Box','Megaphone 10 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12221,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14176,'F_Enriched_Elunium_Box','Enriched Elunium Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 7619,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14177,'F_Enriched_Oridecon_Box','Enriched Oridecon Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 7620,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14178,'F_Token_Of_Siegfried_Box','Token of Siegfried Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 7621,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14179,'F_Giant_Fly_Wing_Box50','Giant Fly Wing 50 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12212,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14180,'F_Giant_Fly_Wing_Box100','Giant Fly Wing 100 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12212,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14181,'F_Dex_Dish_Box30','Hwergelmir\'s Tonic 30 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12205,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14182,'F_Dex_Dish_Box50','Hwergelmir\'s Tonic 50 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12205,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14183,'F_Luk_Dish_Box30','Nine Tail Dish 30 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12206,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14184,'F_Luk_Dish_Box50','Nine Tail Dish 50 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12206,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14185,'F_Inc_Agi_10_Box30','Increase Agility Scroll 30 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12216,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14186,'F_Inc_Agi_10_Box50','Increase Agility Scroll 50 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12216,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14187,'F_Vit_Dish_Box30','Stew of Immortality 30 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12207,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14188,'F_Vit_Dish_Box50','Stew of Immortality 50 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12207,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14189,'F_Insurance_Package30','Life Insurrance 30 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12209,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14190,'F_Insurance_Package50','Life Insurrance 50 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12209,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14191,'F_Convex_Mirror_Box5','Convex Mirror 5 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12214,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14192,'F_Convex_Mirror_Box30','Convex Mirror 30 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12214,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14193,'F_Blessing10_Box30','Blessing Scroll 30 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12215,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14194,'F_Blessing10_Box50','Lv10 Blessing Scroll Box 50','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12215,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14195,'F_Adrenaline10_Box30','Adrenaline Rush Scroll 30 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12220,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14196,'F_Adrenaline10_Box50','Adrenaline Rush Scroll 50 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12220,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14197,'F_Assumptio_5_Box30','Assumptio Scroll 30 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12218,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14198,'F_Assumptio_5_Box50','Lv5 Assumptio Scroll Box 50','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12218,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14199,'F_Aspersio_5_Box30','Aspersio Scroll 30 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12217,30; getitem 523,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14200,'F_Aspersio_5_Box50','Aspersio Scroll 50 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12217,50; getitem 523,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14201,'F_Agi_Dish_Box30','Steamed Scorpion 30 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12203,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14202,'F_Agi_Dish_Box50','Steamed Scorpion 50 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12203,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14203,'F_Wind_Walk10_Box30','Wind Walk Scroll 30 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12219,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14204,'F_Wind_Walk10_Box50','Wind Walk Scroll 50 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12219,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14205,'F_Int_Dish_Box30','Dragon Breath Cocktail 30 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12204,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14206,'F_Int_Dish_Box50','Dragon Breath Cocktail 50 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12204,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14207,'F_Battle_Manual_Box1','Field Manual Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12208,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14208,'F_Battle_Manual_Box5','Battle Manual 5 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12208,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14209,'F_Siegfried_Box5','Token of Siegfried 5 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 7621,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14210,'F_Siegfried_Box20','Token of Siegfried 20 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 7621,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14211,'F_Kafra_Card_Box30','Kafra Card 30 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12211,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14212,'F_Kafra_Card_Box50','Kafra Card 50 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12211,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14213,'F_Str_Dish_Box30','Steamed Tongue 30 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12202,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14214,'F_Str_Dish_Box50','Steamed Tongue 50 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12202,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14215,'F_Bubble_Gum_Box1','Bubble Gum Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12210,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14216,'F_Bubble_Gum_Box5','Bubble Gum 5 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12210,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14217,'F_Megaphone_Box1','Megaphone Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12221,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14218,'F_Megaphone_Box5','Megaphone 5 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12221,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14219,'F_Enriched_Elunium_Box5','Enriched Elunium 5 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 7619,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14220,'F_Enriched_Oridecon_Box5','Enriched Oridecon 5 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 7620,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14221,'MP_Scroll_Box','Mystical Amplification Scroll 10 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14593,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14222,'MP_Scroll_Box30','Mystical Amplification Scroll 30 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14593,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14223,'MP_Scroll_Box50','Mystical Amplification Scroll 50 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14593,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14224,'Quagmire_Scroll_Box','Quagmire Scroll 10 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14594,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14225,'Quagmire_Scroll_Box30','Quagmire Scroll 30 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14594,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14226,'Quagmire_Scroll_Box50','Quagmire Scroll 50 Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 14594,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14227,'Healing_Staff_Box','Healing Staff Box','Cash',20,10,100,true,true,true,true,true,true,true,'rentitem 1638,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14232,'Yggdrasilberry_Box_','Yggdrasil Berry 10 Box','Cash',20,10,'getitem 607,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14233,'Dead_Tree_Branch_Box1','Dead Branch 10 Box','Cash',20,10,'getitem 604,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (14234,'Dead_Tree_Branch_Box2','Dead Branch 25 Box','Cash',20,10,100,true,true,true,'getitem 604,25;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14235,'Field_Manual_Box_2','Field Manual 2 Box','Cash',20,10,'getitem 12208,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14236,'Steamed_Tongue_Box_20','Steamed Tongue 20 Box','Cash',20,10,'getitem 12202,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14237,'Steamed_Desert_Scorpions_Box_20','Steamed Desert Scorpions Box(20)','Cash',20,10,'getitem 12203,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14238,'Stew_Of_Immortality_Box_20','Immortal Stew 20 Box','Cash',20,10,'getitem 12207,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14239,'Dragon_Breath_Cocktail_Box_20','Dragon Breath Cocktail 20 Box','Cash',20,10,'getitem 12204,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14240,'Hwergelmir\'s_Tonic_Box_20','Hwergelmir\'s Tonic 20 Box','Cash',20,10,'getitem 12205,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14241,'Nine_Tail_Dish_Box_20','Nine Tail Dish 20 Box','Cash',20,10,'getitem 12206,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (14242,'Beholder_Ring_Box','Beholder Ring Box','Cash',20,10,100,true,true,true,'getitem 2753,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (14243,'Hallow_Ring_Box','Hallow Ring Box','Cash',20,10,100,true,true,true,'getitem 2754,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (14244,'Clamorous_Ring_Box','Clamorous Ring Box','Cash',20,10,100,true,true,true,'getitem 2755,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (14245,'Chemical_Ring_Box','Chemical Ring Box','Cash',20,10,100,true,true,true,'getitem 2756,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (14246,'Insecticide_Ring_Box','Insecticide Ring Box','Cash',20,10,100,true,true,true,'getitem 2757,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (14247,'Fisher_Ring_Box','Fisher Ring Box','Cash',20,10,100,true,true,true,'getitem 2758,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (14248,'Decussate_Ring_Box','Decussate Ring Box','Cash',20,10,100,true,true,true,'getitem 2759,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (14249,'Bloody_Ring_Box','Bloody Ring Box','Cash',20,10,100,true,true,true,'getitem 2760,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (14250,'Satanic_Ring_Box','Satanic Ring Box','Cash',20,10,100,true,true,true,'getitem 2761,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (14251,'Dragoon_Ring_Box','Dragon Ring Box','Cash',20,10,100,true,true,true,'getitem 2762,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (14252,'Beholder_Ring_Box2','Beholder Ring Box II','Cash',20,10,100,true,true,true,'getitem 2753,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (14253,'Hallow_Ring_Box2','Hallow Ring Box II','Cash',20,10,100,true,true,true,'getitem 2754,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (14254,'Clamorous_Ring_Box2','Clamorous Ring Box II','Cash',20,10,100,true,true,true,'getitem 2755,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (14255,'Chemical_Ring_Box2','Chemical Ring Box II','Cash',20,10,100,true,true,true,'getitem 2756,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (14256,'Insecticide_Ring_Box2','Insecticide Ring Box II','Cash',20,10,100,true,true,true,'getitem 2757,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (14257,'Fisher_Ring_Box2','Fisher Ring Box II','Cash',20,10,100,true,true,true,'getitem 2758,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (14258,'Decussate_Ring_Box2','Decussate Ring Box II','Cash',20,10,100,true,true,true,'getitem 2759,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (14259,'Bloody_Ring_Box2','Bloody Ring Box II','Cash',20,10,100,true,true,true,'getitem 2760,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (14260,'Satanic_Ring_Box2','Satanic Ring Box II','Cash',20,10,100,true,true,true,'getitem 2761,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (14261,'Dragoon_Ring_Box2','Dragon Ring Box II','Cash',20,10,100,true,true,true,'getitem 2762,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (14262,'Diary_Magic_Powder_Box','Diary Magic Powder Box','Cash',20,'rentitem 12304,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (14263,'Mini_Heart_Magic_Powder_Box','Mini Heart Magic Powder Box','Cash',20,'rentitem 12305,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (14264,'Freshman_Magic_Powder_Box','Freshman Magic Powder Box','Cash',20,'rentitem 12306,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (14265,'Kid_Magic_Powder_Box','Kid Magic Powder Box','Cash',20,'rentitem 12307,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (14266,'Magic_Magic_Powder_Box','Magic Magic Powder Box','Cash',20,'rentitem 12308,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (14267,'JJangu_Magic_Powder_Box','JJangu Magic Powder Box','Cash',20,'rentitem 12309,604800;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (14268,'Diary_Magic_Powder_Box4','Diary Magic Powder Box','Cash',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (14269,'Mini_Heart_Magic_Powder_Box4','Mini_Heart_Magic Powder Box','Cash',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (14270,'Freshman_Magic_Powder_Box4','Freshman Magic Powder Box','Cash',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (14271,'Kid_Magic_Powder_Box4','Kid Magic Powder Box','Cash',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (14272,'Magic_Magic_Powder_Box4','Magic Magic Powder Box','Cash',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (14273,'JJangu_Magic_Powder_Box4','JJangu Magic Powder Box','Cash',20,10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14274,'Amplification_10_Scroll_Box2','Mystical Amplification Scroll 10 Box','Cash',20,10,'getitem 14593,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14275,'Amplification_30_Scroll_Box2','Mystical Amplification Scroll 30 Box','Cash',20,10,'getitem 14593,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14276,'Amplification_50_Scroll_Box2','Mystical Amplification Scroll 50 Box','Cash',20,10,'getitem 14593,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14277,'Quagmire_10_Scroll_Box2','Quagmire Scroll 10 Box','Cash',20,10,'getitem 14594,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14278,'Quagmire_30_Scroll_Box2','Quagmire Scroll 30 Box','Cash',20,10,'getitem 14594,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14279,'Quagmire_50_Scroll_Box2','Quagmire Scroll 50 Box','Cash',20,10,'getitem 14594,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14280,'Healing_Staff_Box2','Healing Staff Box','Cash',20,10,'getitem 1638,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14282,'Emperium_Box','Emperium Box','Cash',20,10,'getitem 714,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14283,'Marriage_Certificate_Box','Written Oath Of Marriage Box','Cash',20,10,'getitem 6026,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14287,'Baricade_Repair_Kit','Barricade Repair Kit','Cash',20,10,'getitem 1019,30; getitem 999,10; getitem 1011,10; getitem 984,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14288,'Guardian_Stone_Repair_Kit','Guardian Stone Repair Kit','Cash',20,10,'getitem 984,1; getitem 985,1; getitem 7049,30; getitem 717,5; getitem 716,5; getitem 715,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14289,'Cloth_Dye_Coupon_Box','New Clothing Dye Coupon Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 6046,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14290,'Cloth_Dye_Coupon2_Box','Original Clothing Dye Coupon Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 6047,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (14291,'Cloth_Dye_Coupon3_Box','Clothing Dye Coupon Box','Usable',10,'getitem 6046,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (14292,'Cloth_Dye_Coupon4_Box','Clothing Dye Coupon Box II','Usable',10,'getitem 6047,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`) VALUES (14296,'Angel_Scroll','Angel Scroll','Usable',20,10,100,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`) VALUES (14297,'Devil_Scroll','Devil Scroll','Usable',20,10,100,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (14300,'Mask_Of_Ifrit_Box','Mask Of Ifrit Box','Cash',20,10,100,true,true,true,'getitem 5420,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (14301,'Ifrit\'s_Ear_Box','Ears Of Ifrit Box','Cash',20,10,100,true,true,true,'getitem 5421,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (14304,'Scuba_Mask_Box','Scuba Mask Box','Cash',20,10,100,true,true,true,'getitem 5397,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14314,'Phreeoni_Scroll_Box','Phreeoni Scroll Box','Usable',10,100,true,true,true,true,true,true,true,'getitem 14597,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14315,'GhostringS_Box','Ghostring Scroll Box','Usable',10,100,true,true,true,true,true,true,true,'getitem 14598,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`) VALUES (14316,'July7_Scroll','July7 Scroll','Usable',20,10,100,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (14317,'Bacsojin_Scroll','Bacsojin Scroll','Usable',20,10,100,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14343,'Spiked_Scarf_Box','Spiked Scarf Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 5462,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14344,'Rainbow_Scarf_Box','Rainbow Scarf Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 5463,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (14345,'Animal_Scroll','Animal Scroll','Usable',20,10,100,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (14349,'Mental_Potion20_Box','Mental Potion 20 Box','Cash',20,10,100,true,true,true,'getitem 14600,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (14350,'Mental_Potion50_Box','Mental Potion 50 Box','Cash',20,10,100,true,true,true,'getitem 14600,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (14351,'Tyr\'s_Blessing20_Box','Tyr\'s Blessing 20 Box','Cash',20,10,100,true,true,true,'getitem 14601,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (14352,'Tyr\'s_Blessing50_Box','Tyr\'s Blessing 50 Box','Cash',20,10,100,true,true,true,'getitem 14601,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`) VALUES (14363,'Heart_Scroll','Heart Scroll','Usable',20,10,100,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14375,'Holy_Celestial_Axe_Box','Celestial Axe Box','Cash',20,10,100,true,true,true,true,true,'getitem 1383,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14376,'Angeling_Pot_Box','Angeling Potion Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 12350,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14377,'Shout_Megaphone_Box','Scream Megaphone Box','Cash',20,10,100,true,true,true,true,true,'getitem 12351,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14380,'Anubis_Helm_Box','Anubis Hat Box','Cash',20,10,100,true,true,true,true,true,'getitem 5490,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (14393,'Almighty_Charm_Box','Universal Amulet Box','Cash',20,10,100,true,true,true,'getitem 7945,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`) VALUES (14408,'New_Year_Scroll','New Year Scroll','Usable',20,10,100,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14440,'Dice_Hat_Box','Dice Hat Box','Cash',20,10,100,true,true,true,true,true,'getitem 5496,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14441,'King_Tiger_Doll_Hat_Box','King Tiger Doll Hat Box','Cash',20,10,100,true,true,true,true,true,'getitem 5497,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14447,'Pirate\'s_Pride_Box','Pirate\'s Pride Box','Cash',20,10,100,true,true,true,true,true,'getitem 5501,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14448,'Necromencer\'s_Hood_Box','Necromancer\'s Hood Box','Cash',20,10,100,true,true,true,true,true,'getitem 5502,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14459,'Rabbit_Magic_Hat_Box','Magic Rabbit Hat Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 5503,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14460,'China_Wedding_Veil_Box','RO 5th Wedding Anniversary Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 5504,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14461,'Asara_Fairy_Hat_Box','Ashura Fairy Hat Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 5505,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (14466,'Valentine_Pledge_Box','Valentine\'s Emblem Box','Usable',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (14469,'Ox_Tail_Scroll','Ox Tail Egg','Usable',20,10,100,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14500,'Insurance60','Life Insurrance Certificate','Usable',2,10,'sc_start SC_LIFEINSURANCE,3600000,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`) VALUES (14508,'Zeny_Scroll','Zeny Pet Egg Scroll','Usable',10,100,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14509,'Light_Center_Pot','Light Concentration Potion','Usable',800,20,'sc_start SC_ASPDPOTION0,1800000,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_alchemist`,`job_archer`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_gunslinger`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_monk`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_supernovice`,`job_swordman`,`job_taekwon`,`job_thief`,`job_wizard`,`equip_level_min`,`script`) VALUES (14510,'Light_Awakening_Pot','Light Awakening Potion','Usable',1500,20,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,40,'sc_start SC_ASPDPOTION1,1800000,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_gunslinger`,`job_knight`,`job_mage`,`job_merchant`,`job_rogue`,`job_soullinker`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`job_wizard`,`equip_level_min`,`script`) VALUES (14511,'Light_Berserk_Pot','Light Berserk Potion','Usable',3000,20,true,true,true,true,true,true,true,true,true,true,true,true,true,85,'sc_start SC_ASPDPOTION2,1800000,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (14512,'Meteor_10_Scroll','Meteor Storm Scroll','Delayconsume',10,'itemskill "WZ_METEOR",10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (14513,'Storm_10_Scroll','Storm Gust Scroll','Delayconsume',10,'itemskill "WZ_STORMGUST",10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (14514,'Vermilion_10_Scroll','Lord of Vermilion Scroll','Delayconsume',10,'itemskill "WZ_VERMILION",10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (14515,'Lex_Aeterna_Scroll','Lex Aeterna Scroll','Delayconsume',10,'itemskill "PR_LEXAETERNA",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (14516,'Magnificat_5_Scroll','Magnificat Scroll','Delayconsume',10,'itemskill "PR_MAGNIFICAT",5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (14517,'CP_Helm_Scroll','Chemical Protection Helm Scroll','Usable',10,'unitskilluseid getcharid(3),"AM_CP_HELM",5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (14518,'CP_Shield_Scroll','Chemical Protection Shield Scrol','Usable',10,'unitskilluseid getcharid(3),"AM_CP_SHIELD",5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (14519,'CP_Armor_Scroll','Chemical Protection Armor Scroll','Usable',10,'unitskilluseid getcharid(3),"AM_CP_ARMOR",5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (14520,'CP_Weapon_Scroll','Chemical Protection Weapon Scroll','Usable',10,'unitskilluseid getcharid(3),"AM_CP_WEAPON",5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14521,'Repair_Scroll','Repair Weapon Scroll','Usable',10,100,true,100,true,true,true,true,true,true,true,'unitskilluseid getcharid(3),"BS_REPAIRWEAPON",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (14522,'Big_Bun','Big Bun','Healing',10,'percentheal 100,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (14523,'Pill_','Pill','Healing',10,'percentheal 0,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (14524,'Superb_Fish_Slice','Superb Fish Slice','Healing',10,'percentheal 100,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (14525,'Chewy_Ricecake','Chewy Ricecake','Usable',10,'sc_start SC_ATKPOTION,1800000,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (14526,'Oriental_Pastry','Oriental Pastry','Usable',10,'sc_start SC_MATKPOTION,1800000,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14527,'Dun_Tele_Scroll1','Dungeon Teleport Scroll','Usable',10,100,true,true,true,true,true,true,true,'callfunc "F_CashDungeon",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (14528,'PVP_Tele_Scroll','PVP Teleport Scroll','Usable',10); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`nouse_override`,`nouse_sitting`,`script`) VALUES (14529,'Greed_Scroll','Greed Scroll','Delayconsume',10,100,true,'itemskill "BS_GREED",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (14530,'Flee_30_Scroll','Evasion Scroll','Usable',10,'sc_start SC_FLEEFOOD,1800000,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (14531,'Accuracy_30_Scroll','Concentration Scroll','Usable',10,'sc_start SC_HITFOOD,1800000,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`nouse_override`,`nouse_sitting`,`script`) VALUES (14532,'Battle_Manual25','Field Manual 25%','Usable',2,10,100,true,'sc_start SC_EXPBOOST,1800000,25;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14533,'Battle_Manual100','Field Manual 100%','Usable',2,10,100,true,true,true,true,true,true,true,'sc_start SC_EXPBOOST,1800000,100;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14534,'Small_Life_Potion','Small Life Potion','Usable',10,100,true,true,true,true,true,true,true,'specialeffect2 EF_HEAL3; sc_start4 SC_S_LIFEPOTION,600000,-5,5,0,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14535,'Med_Life_Potion','Medium Life Potion','Usable',10,100,true,true,true,true,true,true,true,'specialeffect2 EF_HEAL3; sc_start4 SC_L_LIFEPOTION,600000,-7,4,0,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14536,'Abrasive','Abrasive','Usable',10,100,true,true,true,true,true,true,true,'specialeffect2 EF_MAGICALATTHIT; sc_start SC_INCCRI,300000,30;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14537,'Regeneration_Potion','Regeneration Potion','Usable',10,100,true,true,true,true,true,true,true,'specialeffect2 EF_LIGHTSPHERE; sc_start SC_INCHEALRATE,1800000,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`delay_duration`,`delay_status`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14538,'Glass_Of_Illusion','Glass of Illusion','Usable',10,300000,'Reuse_Limit_A',100,true,true,true,true,true,true,true,'specialeffect2 EF_STEAL; sc_start SC_INCFLEE2,60000,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14539,'Shadow_Armor_S','Shadow Armor Scroll','Usable',10,100,true,true,true,true,true,true,true,'specialeffect2 EF_CLOAKING; sc_start4 SC_ELEMENTALCHANGE,1800000,1,Ele_Dark,1,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14540,'Holy_Armor_S','Holy Armor Scroll','Usable',10,100,true,true,true,true,true,true,true,'specialeffect2 EF_BENEDICTIO; sc_start4 SC_ELEMENTALCHANGE,1800000,1,Ele_Holy,1,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14541,'S_Def_Potion','Small Defense Potion','Usable',10,100,true,true,true,true,true,true,true,'specialeffect2 EF_GUARD; sc_start SC_DEF_RATE,60000,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14542,'B_Def_Potion','Big Defense Potion','Usable',10,100,true,true,true,true,true,true,true,'specialeffect2 EF_GUARD; sc_start SC_DEF_RATE,180000,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14543,'S_Mdef_Potion','Small Magic Defense Potion','Usable',10,100,true,true,true,true,true,true,true,'specialeffect2 EF_SPELLBREAKER; sc_start SC_MDEF_RATE,60000,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14544,'B_Mdef_Potion','Big Magic Defense Potion','Usable',10,100,true,true,true,true,true,true,true,'specialeffect2 EF_SPELLBREAKER; sc_start SC_MDEF_RATE,180000,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (14545,'Battle_Manual_X3','Field Manual 300%','Usable',10,'sc_start SC_EXPBOOST,1800000,300;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (14546,'Fire_Cracker_Love','I Love You Firecracker','Usable',2,20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (14547,'Fire_Cracker_Wday','Whiteday Firecracker','Usable',2,20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (14548,'Fire_Cracker_Vday','Valentine\'s Day Firecracker','Usable',2,20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (14549,'Fire_Cracker_Bday','Birthday Firecracker','Usable',2,20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (14550,'Fire_Cracker_Xmas','Xmas Firecracker','Usable',2,20); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14551,'Str_Dish01_','Fried Grasshopper Legs','Healing',2,10,'sc_start SC_STRFOOD,1200000,1; percentheal 5,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14552,'Str_Dish02_','Seasoned Sticky Webfoot','Healing',2,10,'sc_start SC_STRFOOD,1200000,2; percentheal 5,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14553,'Str_Dish03_','Bomber Steak','Healing',2,10,'sc_start SC_STRFOOD,1200000,3; percentheal 5,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14554,'Int_Dish01_','Grape Juice Herbal Tea','Healing',2,10,'sc_start SC_INTFOOD,1200000,1; percentheal 0,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14555,'Int_Dish02_','Autumn Red Tea','Healing',2,10,'sc_start SC_INTFOOD,1200000,2; percentheal 0,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14556,'Int_Dish03_','Honey Herbal Tea','Healing',2,10,'sc_start SC_INTFOOD,1200000,3; percentheal 0,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14557,'Vit_Dish01_','Steamed Crab Nippers','Healing',2,10,'sc_start SC_VITFOOD,1200000,1; percentheal 5,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14558,'Vit_Dish02_','Assorted Seafood','Healing',2,10,'sc_start SC_VITFOOD,1200000,2; percentheal 5,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14559,'Vit_Dish03_','Clam Soup','Healing',2,10,'sc_start SC_VITFOOD,1200000,3; percentheal 5,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14560,'Agi_Dish01_','Frog Egg Squid Ink Soup','Healing',2,10,'sc_start SC_AGIFOOD,1200000,1; percentheal 3,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14561,'Agi_Dish02_','Smooth Noodle','Healing',2,10,'sc_start SC_AGIFOOD,1200000,2; percentheal 3,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14562,'Agi_Dish03_','Tentacle Cheese Gratin','Healing',2,10,'sc_start SC_AGIFOOD,1200000,3; percentheal 3,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14563,'Dex_Dish01_','Honey Grape Juice','Healing',2,10,'sc_start SC_DEXFOOD,1200000,1; percentheal 2,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14564,'Dex_Dish02_','Chocolate Mousse Cake','Healing',2,10,'sc_start SC_DEXFOOD,1200000,2; percentheal 2,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14565,'Dex_Dish03_','Fruit Mix','Healing',2,10,'sc_start SC_DEXFOOD,1200000,3; percentheal 2,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14566,'Luk_Dish01_','Fried Monkey Tails','Healing',2,10,'sc_start SC_LUKFOOD,1200000,1; percentheal 3,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14567,'Luk_Dish02_','Mixed Juice','Healing',2,10,'sc_start SC_LUKFOOD,1200000,2; percentheal 3,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14568,'Luk_Dish03_','Fried Sweet Potato','Healing',2,10,'sc_start SC_LUKFOOD,1200000,3; percentheal 4,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14569,'Knife_Goblin_Ring','Knife Goblin Ring','Usable',10,100,true,true,true,true,true,true,true,'pet 1122;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14570,'Flail_Goblin_Ring','Flail Goblin Ring','Usable',10,100,true,true,true,true,true,true,true,'pet 1123;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14571,'Hammer_Goblin_Ring','Hammer Goblin Ring','Usable',10,100,true,true,true,true,true,true,true,'pet 1125;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14572,'Holy_Marble','Holy Marble','Usable',10,100,true,true,true,true,true,true,true,'pet 1385;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14573,'Red_Burning_Stone','Red Burning Stone','Usable',10,100,true,true,true,true,true,true,true,'pet 1382;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14574,'Skull_Of_Vagabond','Vagabond\'s Skull','Usable',10,100,true,true,true,true,true,true,true,'pet 1208;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14575,'Str_Dish05_','Lutie Lady\'s Pancake','Healing',2,10,'sc_start SC_STRFOOD,1200000,5; percentheal 10,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14576,'Int_Dish05_','Mastela Fruit Wine','Healing',2,10,'sc_start SC_INTFOOD,1200000,5; percentheal 0,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14577,'Vit_Dish05_','Spicy Fried Bao','Healing',2,10,'sc_start SC_VITFOOD,1200000,5; percentheal 10,0;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14578,'Agi_Dish05_','Steamed Bat Wing in Pumpkin','Healing',2,10,'sc_start SC_AGIFOOD,1200000,5; percentheal 6,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14579,'Dex_Dish05_','Green Salad','Healing',2,10,'sc_start SC_DEXFOOD,1200000,5; percentheal 5,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14580,'Luk_Dish05_','Fried Scorpion Tails','Healing',2,10,'sc_start SC_LUKFOOD,1200000,5; percentheal 5,2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (14581,'Dun_Tele_Scroll2','Dungeon Teleport Scroll II','Usable',10,'callfunc "F_CashDungeon",2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (14582,'WOB_Rune','Yellow Butterfly Wing','Usable',10,'callfunc "F_CashCity",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (14583,'WOB_Schwaltz','Green Butterfly Wing','Usable',10,'callfunc "F_CashCity",2;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (14584,'WOB_Rachel','Red Butterfly Wing','Usable',10,'callfunc "F_CashCity",3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (14585,'WOB_Local','Blue Butterfly Wing','Usable',10,'callfunc "F_CashCity",4;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`delay_duration`,`delay_status`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`) VALUES (14586,'Spark_Candy','Jumping Candy','Usable',10,180000,'Reuse_Limit_B',100,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14587,'Repair_Scroll_','Equipment Repair Spell Book','Delayconsume',10,100,true,100,true,true,true,true,true,true,true,'itemskill "BS_REPAIRWEAPON",1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (14588,'Pty_Blessing_Scroll','Party Blessing 10 Scroll','Delayconsume',10,10,100,true,true,true,true,'itemskill "CASH_BLESSING",10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (14589,'Pty_Inc_Agi_Scroll','Party Increase Agi 10 Scroll','Delayconsume',10,10,100,true,true,true,true,'itemskill "CASH_INCAGI",10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (14590,'Pty_Assumptio_Scroll','Party Assumptio 5 Scroll','Delayconsume',10,10,100,true,true,true,true,'itemskill "CASH_ASSUMPTIO",5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14591,'Siege_Teleport_Scroll','WoE Teleport Scroll','Usable',10,100,true,100,true,true,true,true,true,true,true,'callfunc "F_CashSiegeTele";'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14592,'Job_Manual50','JOB Battle Manual','Usable',10,100,true,100,true,true,true,true,true,true,true,'sc_start SC_JEXPBOOST,1800000,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14593,'Magic_Power_Scroll','Mystical Amplification Scroll','Delayconsume',10,100,true,100,true,true,true,true,true,true,true,'itemskill "HW_MAGICPOWER",10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14594,'Quagmire_Scroll','Quagmire Scroll','Delayconsume',10,100,true,100,true,true,true,true,true,true,true,'itemskill "WZ_QUAGMIRE",5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (14595,'Unsealed_Magic_Spell','Unsealed Magic Spell','Usable','warp "yuno_fild09",255,127;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`script`) VALUES (14596,'Pierre_Treasurebox','Pierre\'s Treasure Box','Usable',100,true,'getrandgroupitem(IG_Pierre_Treasurebox),1; getrandgroupitem(IG_Pierre_Treasurebox),1; getrandgroupitem(IG_Pierre_Treasurebox),1; getrandgroupitem(IG_Pierre_Treasurebox),1; getrandgroupitem(IG_Pierre_Treasurebox),1; getrandgroupitem(IG_Pierre_Treasurebox),1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14597,'PhreeoniS','Phreeoni Scroll','Usable',10,100,true,true,true,true,true,true,true,'sc_start2 SC_ITEMSCRIPT,180000,4121,EFST_FOOD_BASICHIT;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14598,'GhostringS','Ghostring Scroll','Usable',10,100,true,true,true,true,true,true,true,'sc_start2 SC_ITEMSCRIPT,60000,4047,EFST_ARMOR_PROPERTY;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (14599,'Greed_Scroll_C','Greed Scroll','Usable',10,100,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`) VALUES (14600,'Mental_Potion','Mental Potion','Usable',10,100,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (14601,'Tyr\'s_Blessing','Tyr\'s Blessing','Usable',10,100,true,true,true,'sc_start SC_FLEEFOOD,300000,30; sc_start SC_HITFOOD,300000,30; sc_start SC_ATKPOTION,300000,20; sc_start SC_MATKPOTION,300000,20;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14602,'TaogunkaS','Tao Gunka Scroll','Usable',10,100,true,true,true,true,true,true,true,'sc_start2 SC_ITEMSCRIPT,180000,4302,EFST_MVPCARD_TAOGUNKA;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14603,'MistressS','Mistress Scroll','Usable',10,100,true,true,true,true,true,true,true,'sc_start2 SC_ITEMSCRIPT,180000,4132,EFST_MVPCARD_MISTRESS;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14604,'Orc_HeroS','Orc Hero Scroll','Usable',10,100,true,true,true,true,true,true,true,'sc_start2 SC_ITEMSCRIPT,60000,4143,EFST_MVPCARD_ORCHERO;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14605,'Orc_LoadS','Orc Lord Scroll','Usable',10,100,true,true,true,true,true,true,true,'sc_start2 SC_ITEMSCRIPT,180000,4135,EFST_MVPCARD_ORCLORD;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`nouse_override`,`nouse_sitting`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (14606,'Job_Manual25','JOB Battle Manual','Usable',10,100,true,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14607,'Luxurious_Dinner_W','Luxurious Western Food','Usable',10000,600,'sc_start SC_INCALLSTATUS,3600000,3;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (14608,'Luxurious_Dinner_E','Manchu-Han Imperial Feast','Usable',20000,1200,100,true,true,true,'sc_start SC_INCALLSTATUS,3600000,6;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (14609,'Spoiled_Cuisine','Spoiled Cuisine','Usable',5000,300,'percentheal 10,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16134,'King_Frog_Hat_Box','Frog King Hat Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 5528,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16135,'Evil\'s_Bone_Hat_Box','Satanic Bone Helm Box','Cash',20,10,100,true,true,true,true,true,'getitem 5529,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16247,'Dragon_Arhat_Mask_Box','Dragon Arhat Mask Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 5565,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16248,'Tiger_Arhat_Mask_Box','Tiger Arhat Mask Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 5566,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`) VALUES (16257,'Buddah_Scroll','Buddah Scroll','Usable',20,10,100,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16258,'HD_Bradium_Box5','HD Bradium 5 Box','Usable',20,10,100,true,true,true,true,true,'getitem 6226,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16259,'HD_Carnium_Box5','HD Carnium 5 Box','Usable',20,10,100,true,true,true,true,true,'getitem 6225,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16260,'HD_Bradium_Box10','HD Bradium 10 Box','Usable',20,10,100,true,true,true,true,true,'getitem 6226,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16261,'HD_Carnium_Box10','HD Carnium 10 Box','Usable',20,10,100,true,true,true,true,true,'getitem 6225,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (16304,'Evil_Incarnation_Disable','Evil Incarnation','Usable',20,10,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`) VALUES (16371,'Tw_Aug_Scroll','Tw Aug Scroll','Usable',20,10,100,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16393,'HD_Ori_Box5','HD Oridecon 5 Box','Usable',20,10,100,true,true,true,true,true,'getitem 6240,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16394,'HD_Ori_Box10','HD Oridecon 10 Box','Usable',20,10,100,true,true,true,true,true,'getitem 6240,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16395,'HD_Elu_Box5','HD Elunium 5 Box','Usable',20,10,100,true,true,true,true,true,'getitem 6241,5;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16396,'HD_Elu_Box10','HD Elunium 10 Box','Usable',20,10,100,true,true,true,true,true,'getitem 6241,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (16461,'Red_Wing_Hat_Box','Red Wing Hat Box','Cash',20,10,100,true,true,true,'getitem 5690,1;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`) VALUES (16555,'Pr_Reset_Stone_Box','Pr Reset Stone Box','Usable',20,10,100,true,true,true); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (16677,'Universal_Catalog_Gold_Box10','Universal Catalog Gold 10 Box','Usable',10,'getitem 12581,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (16678,'Universal_Catalog_Gold_Box50','Universal Catalog Gold 50 Box','Usable',10,'getitem 12581,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (16679,'Universal_Catalog_Gold_Box10_','Universal Catalog Gold 10 Box','Usable',10,'getitem 12581,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (16680,'Universal_Catalog_Gold_Box50_','Universal Catalog Gold 50 Box','Usable',10,'getitem 12581,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (16776,'Universal_Catalog_Gold_Box10__','Universal Catalog Gold 10 Box','Usable',10,'getitem 12581,10;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (16777,'Universal_Catalog_Gold_Box50__','Universal Catalog Gold 50 Box','Usable',10,'getitem 12581,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (17104,'HD_Oridecon_50Box','HD Oridecon 50 Box','Usable',20,10,'getitem 6240,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (17105,'HD_Elunium_50Box','HD Elunium 50 Box','Usable',20,10,'getitem 6241,50;'); +REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`class_normal`,`class_upper`,`class_baby`,`equip_level_min`) VALUES (22777,'Gift_Buff_Set','Gift Buff Set','Usable',10,100,true,true,true,1); diff --git a/src/common/database.cpp b/src/common/database.cpp index ede740113d..24d8e1c30c 100644 --- a/src/common/database.cpp +++ b/src/common/database.cpp @@ -291,6 +291,9 @@ void YamlDatabase::invalidWarning( const YAML::Node &node, const char* fmt, ... va_start(ap, fmt); + // Remove any remaining garbage of a previous loading line + ShowMessage( CL_CLL ); + // Print the actual error _vShowMessage( MSG_ERROR, fmt, ap ); va_end(ap); diff --git a/src/common/mmo.hpp b/src/common/mmo.hpp index 36888bd14a..b4f1e2f593 100644 --- a/src/common/mmo.hpp +++ b/src/common/mmo.hpp @@ -266,7 +266,7 @@ struct item { }; //Equip position constants -enum equip_pos { +enum equip_pos : uint32 { EQP_HEAD_LOW = 0x000001, EQP_HEAD_MID = 0x000200, // 512 EQP_HEAD_TOP = 0x000100, // 256 @@ -972,9 +972,10 @@ enum e_job { JOB_MAX, }; -enum e_sex { +enum e_sex : uint8 { SEX_FEMALE = 0, SEX_MALE, + SEX_BOTH, SEX_SERVER }; diff --git a/src/map/atcommand.cpp b/src/map/atcommand.cpp index 38748e584e..bf4fbef618 100644 --- a/src/map/atcommand.cpp +++ b/src/map/atcommand.cpp @@ -2422,7 +2422,7 @@ ACMD_FUNC(produce) if ((flag = pc_additem(sd, &tmp_item, 1, LOG_TYPE_COMMAND))) clif_additem(sd, 0, 0, flag); } else { - sprintf(atcmd_output, msg_txt(sd,169), item_id, item_data->name); // The item (%u: '%s') is not equipable. + sprintf(atcmd_output, msg_txt(sd,169), item_id, item_data->name.c_str()); // The item (%u: '%s') is not equipable. clif_displaymessage(fd, atcmd_output); return -1; } @@ -3734,7 +3734,7 @@ ACMD_FUNC(idsearch) clif_displaymessage(fd, atcmd_output); } for(i = 0; i < match; i++) { - sprintf(atcmd_output, msg_txt(sd,78), item_array[i]->jname, item_array[i]->nameid); // %s: %u + sprintf(atcmd_output, msg_txt(sd,78), item_array[i]->ename.c_str(), item_array[i]->nameid); // %s: %u clif_displaymessage(fd, atcmd_output); } sprintf(atcmd_output, msg_txt(sd,79), match); // It is %d affair above. @@ -6335,7 +6335,7 @@ ACMD_FUNC(autolootitem) return -1; } sd->state.autolootid[i] = item_data->nameid; // Autoloot Activated - sprintf(atcmd_output, msg_txt(sd,1192), item_data->name, item_data->jname, item_data->nameid); // Autolooting item: '%s'/'%s' {%u} + sprintf(atcmd_output, msg_txt(sd,1192), item_data->name.c_str(), item_data->ename.c_str(), item_data->nameid); // Autolooting item: '%s'/'%s' {%u} clif_displaymessage(fd, atcmd_output); sd->state.autolooting = 1; break; @@ -6346,7 +6346,7 @@ ACMD_FUNC(autolootitem) return -1; } sd->state.autolootid[i] = 0; - sprintf(atcmd_output, msg_txt(sd,1194), item_data->name, item_data->jname, item_data->nameid); // Removed item: '%s'/'%s' {%u} from your autolootitem list. + sprintf(atcmd_output, msg_txt(sd,1194), item_data->name.c_str(), item_data->ename.c_str(), item_data->nameid); // Removed item: '%s'/'%s' {%u} from your autolootitem list. clif_displaymessage(fd, atcmd_output); ARR_FIND(0, AUTOLOOTITEM_SIZE, i, sd->state.autolootid[i] != 0); if (i == AUTOLOOTITEM_SIZE) { @@ -6371,7 +6371,7 @@ ACMD_FUNC(autolootitem) ShowDebug("Non-existant item %d on autolootitem list (account_id: %d, char_id: %d)", sd->state.autolootid[i], sd->status.account_id, sd->status.char_id); continue; } - sprintf(atcmd_output, "'%s'/'%s' {%u}", item_data->name, item_data->jname, item_data->nameid); + sprintf(atcmd_output, "'%s'/'%s' {%u}", item_data->name.c_str(), item_data->ename.c_str(), item_data->nameid); clif_displaymessage(fd, atcmd_output); } } @@ -7424,10 +7424,10 @@ ACMD_FUNC(mobinfo) #endif if (pc_isvip(sd)) // Display drop rate increase for VIP droprate += (droprate * battle_config.vip_drop_increase) / 100; - if (item_data->slot) - sprintf(atcmd_output2, " - %s[%d] %02.02f%%", item_data->jname, item_data->slot, (float)droprate / 100); + if (item_data->slots) + sprintf(atcmd_output2, " - %s[%d] %02.02f%%", item_data->ename.c_str(), item_data->slots, (float)droprate / 100); else - sprintf(atcmd_output2, " - %s %02.02f%%", item_data->jname, (float)droprate / 100); + sprintf(atcmd_output2, " - %s %02.02f%%", item_data->ename.c_str(), (float)droprate / 100); strcat(atcmd_output, atcmd_output2); if (++j % 3 == 0) { clif_displaymessage(fd, atcmd_output); @@ -7457,15 +7457,15 @@ ACMD_FUNC(mobinfo) if (mvppercent > 0) { j++; if (j == 1) { - if (item_data->slot) - sprintf(atcmd_output2, " %s[%d] %02.02f%%", item_data->jname, item_data->slot, mvppercent); + if (item_data->slots) + sprintf(atcmd_output2, " %s[%d] %02.02f%%", item_data->ename.c_str(), item_data->slots, mvppercent); else - sprintf(atcmd_output2, " %s %02.02f%%", item_data->jname, mvppercent); + sprintf(atcmd_output2, " %s %02.02f%%", item_data->ename.c_str(), mvppercent); } else { - if (item_data->slot) - sprintf(atcmd_output2, " - %s[%d] %02.02f%%", item_data->jname, item_data->slot, mvppercent); + if (item_data->slots) + sprintf(atcmd_output2, " - %s[%d] %02.02f%%", item_data->ename.c_str(), item_data->slots, mvppercent); else - sprintf(atcmd_output2, " - %s %02.02f%%", item_data->jname, mvppercent); + sprintf(atcmd_output2, " - %s %02.02f%%", item_data->ename.c_str(), mvppercent); } strcat(atcmd_output, atcmd_output2); } @@ -7890,8 +7890,8 @@ ACMD_FUNC(iteminfo) for (i = 0; i < count; i++) { struct item_data * item_data = item_array[i]; sprintf(atcmd_output, msg_txt(sd,1277), // Item: '%s'/'%s'[%d] (%u) Type: %s | Extra Effect: %s - item_data->name,item_data->jname,item_data->slot,item_data->nameid, - (item_data->type != IT_AMMO) ? itemdb_typename((enum item_types)item_data->type) : itemdb_typename_ammo((enum e_item_ammo)item_data->look), + item_data->name.c_str(),item_data->ename.c_str(),item_data->slots,item_data->nameid, + (item_data->type != IT_AMMO) ? itemdb_typename((enum item_types)item_data->type) : itemdb_typename_ammo((e_ammo_type)item_data->look), (item_data->script==NULL)? msg_txt(sd,1278) : msg_txt(sd,1279) // None / With script ); clif_displaymessage(fd, atcmd_output); @@ -7940,7 +7940,7 @@ ACMD_FUNC(whodrops) } for (i = 0; i < count; i++) { item_data = item_array[i]; - sprintf(atcmd_output, msg_txt(sd,1285), item_data->jname, item_data->slot, item_data->nameid); // Item: '%s'[%d] (ID: %u) + sprintf(atcmd_output, msg_txt(sd,1285), item_data->ename.c_str(), item_data->slots, item_data->nameid); // Item: '%s'[%d] (ID:%u) clif_displaymessage(fd, atcmd_output); if (item_data->mob[0].chance == 0) { @@ -8927,9 +8927,9 @@ ACMD_FUNC(itemlist) } if( it->refine ) - StringBuf_Printf(&buf, "%d %s %+d (%s, id: %u)", it->amount, itd->jname, it->refine, itd->name, it->nameid); + StringBuf_Printf(&buf, "%d %s %+d (%s, id: %u)", it->amount, itd->ename.c_str(), it->refine, itd->name.c_str(), it->nameid); else - StringBuf_Printf(&buf, "%d %s (%s, id: %u)", it->amount, itd->jname, itd->name, it->nameid); + StringBuf_Printf(&buf, "%d %s (%s, id: %u)", it->amount, itd->ename.c_str(), itd->name.c_str(), it->nameid); if( it->equip ) { char equipstr[CHAT_SIZE_MAX]; @@ -9015,7 +9015,7 @@ ACMD_FUNC(itemlist) } else { // normal item int counter2 = 0; - for( j = 0; j < itd->slot; ++j ) { + for( j = 0; j < itd->slots; ++j ) { struct item_data* card; if( it->card[j] == 0 || (card = itemdb_exists(it->card[j])) == NULL ) @@ -9029,7 +9029,7 @@ ACMD_FUNC(itemlist) if( counter2 != 1 ) StringBuf_AppendStr(&buf, ", "); - StringBuf_Printf(&buf, "#%d %s (id: %u)", counter2, card->jname, card->nameid); + StringBuf_Printf(&buf, "#%d %s (id: %u)", counter2, card->ename.c_str(), card->nameid); } if( counter2 > 0 ) diff --git a/src/map/battle.cpp b/src/map/battle.cpp index abf5d2fc62..6186c80455 100644 --- a/src/map/battle.cpp +++ b/src/map/battle.cpp @@ -7587,7 +7587,7 @@ enum damage_lv battle_weapon_attack(struct block_list* src, struct block_list* t if (sd->inventory_data[index]) { switch (sd->status.weapon) { case W_BOW: - if (sd->inventory_data[index]->look != A_ARROW) { + if (sd->inventory_data[index]->look != AMMO_ARROW) { clif_arrow_fail(sd,0); return ATK_NONE; } @@ -7596,7 +7596,7 @@ enum damage_lv battle_weapon_attack(struct block_list* src, struct block_list* t case W_RIFLE: case W_GATLING: case W_SHOTGUN: - if (sd->inventory_data[index]->look != A_BULLET) { + if (sd->inventory_data[index]->look != AMMO_BULLET) { clif_skill_fail(sd,0,USESKILL_FAIL_NEED_MORE_BULLET,0); return ATK_NONE; } @@ -7604,9 +7604,9 @@ enum damage_lv battle_weapon_attack(struct block_list* src, struct block_list* t case W_GRENADE: if (sd->inventory_data[index]->look != #ifdef RENEWAL - A_BULLET) { + AMMO_BULLET) { #else - A_GRENADE) { + AMMO_GRENADE) { #endif clif_skill_fail(sd,0,USESKILL_FAIL_NEED_MORE_BULLET,0); return ATK_NONE; diff --git a/src/map/buyingstore.cpp b/src/map/buyingstore.cpp index 4c43d40862..a4ae9bec16 100644 --- a/src/map/buyingstore.cpp +++ b/src/map/buyingstore.cpp @@ -671,7 +671,7 @@ void do_init_buyingstore_autotrade( void ) { Sql_GetData(mmysql_handle, 0, &data, NULL); at->id = atoi(data); Sql_GetData(mmysql_handle, 1, &data, NULL); at->account_id = atoi(data); Sql_GetData(mmysql_handle, 2, &data, NULL); at->char_id = atoi(data); - Sql_GetData(mmysql_handle, 3, &data, NULL); at->sex = (data[0] == 'F') ? 0 : 1; + Sql_GetData(mmysql_handle, 3, &data, NULL); at->sex = (data[0] == 'F') ? SEX_FEMALE : SEX_MALE; Sql_GetData(mmysql_handle, 4, &data, &len); safestrncpy(at->title, data, zmin(len + 1, MESSAGE_SIZE)); Sql_GetData(mmysql_handle, 5, &data, NULL); at->limit = atoi(data); Sql_GetData(mmysql_handle, 6, &data, NULL); at->dir = atoi(data); diff --git a/src/map/clif.cpp b/src/map/clif.cpp index b171df0be7..03ec6bffce 100644 --- a/src/map/clif.cpp +++ b/src/map/clif.cpp @@ -2643,7 +2643,7 @@ static void clif_addcards( struct EQUIPSLOTINFO* buf, struct item* item ){ int i = 0, j; // Client only receives four cards.. so randomly send them a set of cards. [Skotlex] - if( MAX_SLOTS > 4 && ( j = itemdb_slot( item->nameid ) ) > 4 ){ + if( MAX_SLOTS > 4 && ( j = itemdb_slots( item->nameid ) ) > 4 ){ i = rnd() % ( j - 3 ); //eg: 6 slots, possible i values: 0->3, 1->4, 2->5 => i = rnd()%3; } @@ -6767,8 +6767,8 @@ void clif_use_card(struct map_session_data *sd,int idx) if(sd->inventory_data[i]->type == IT_ARMOR && (ep & EQP_ACC) && ((ep & EQP_ACC) != EQP_ACC) && ((sd->inventory_data[i]->equip & EQP_ACC) != (ep & EQP_ACC)) ) // specific accessory-card can only be inserted to specific accessory. continue; - ARR_FIND( 0, sd->inventory_data[i]->slot, j, sd->inventory.u.items_inventory[i].card[j] == 0 ); - if( j == sd->inventory_data[i]->slot ) // No room + ARR_FIND( 0, sd->inventory_data[i]->slots, j, sd->inventory.u.items_inventory[i].card[j] == 0 ); + if( j == sd->inventory_data[i]->slots ) // No room continue; if( sd->inventory.u.items_inventory[i].equip > 0 ) // Do not check items that are already equipped @@ -6965,7 +6965,7 @@ void clif_item_refine_list( struct map_session_data *sd ){ int count = 0; for( int i = 0; i < MAX_INVENTORY; i++ ){ - unsigned char wlv; + uint16 wlv; if( sd->inventory.u.items_inventory[i].nameid > 0 && sd->inventory.u.items_inventory[i].refine < skill_lv && sd->inventory.u.items_inventory[i].identify && ( wlv = itemdb_wlv(sd->inventory.u.items_inventory[i].nameid ) ) >= 1 && @@ -16538,7 +16538,7 @@ void clif_parse_Auction_register(int fd, struct map_session_data *sd) return; } - safestrncpy(auction.item_name, item->jname, sizeof(auction.item_name)); + safestrncpy(auction.item_name, item->ename.c_str(), sizeof(auction.item_name)); auction.type = item->type; memcpy(&auction.item, &sd->inventory.u.items_inventory[sd->auction.index], sizeof(struct item)); auction.item.amount = 1; diff --git a/src/map/itemdb.cpp b/src/map/itemdb.cpp index 845a56a12a..cf6c1c1d79 100644 --- a/src/map/itemdb.cpp +++ b/src/map/itemdb.cpp @@ -3,14 +3,15 @@ #include "itemdb.hpp" +#include #include -#include "../common/malloc.hpp" #include "../common/nullpo.hpp" #include "../common/random.hpp" #include "../common/showmsg.hpp" #include "../common/strlib.hpp" #include "../common/utils.hpp" +#include "../common/utilities.hpp" #include "battle.hpp" // struct battle_config #include "cashshop.hpp" @@ -21,23 +22,1018 @@ #include "pc.hpp" #include "status.hpp" -static DBMap *itemdb; /// Item DB -static DBMap *itemdb_combo; /// Item Combo DB +using namespace rathena; + +static std::map> itemdb_combo; /// Item Combo DB static DBMap *itemdb_group; /// Item Group DB static DBMap *itemdb_randomopt; /// Random option DB static DBMap *itemdb_randomopt_group; /// Random option group DB -struct item_data *dummy_item; /// This is the default dummy item used for non-existant items. [Skotlex] - struct s_roulette_db rd; +static void itemdb_jobid2mapid(uint64 bclass[3], e_mapid jobmask, bool active); +static char itemdb_gendercheck(struct item_data *id); + +const std::string ItemDatabase::getDefaultLocation() { + return std::string(db_path) + "/item_db.yml"; +} + /** -* Check if combo exists -* @param combo_id -* @return NULL if not exist, or struct item_combo* -*/ -struct item_combo *itemdb_combo_exists(unsigned short combo_id) { - return (struct item_combo *)uidb_get(itemdb_combo, combo_id); + * Reads and parses an entry from the item_db. + * @param node: YAML node containing the entry. + * @return count of successfully parsed rows + */ +uint64 ItemDatabase::parseBodyNode(const YAML::Node &node) { + t_itemid nameid; + + if (!this->asUInt32(node, "Id", nameid)) + return 0; + + std::shared_ptr item = this->find(nameid); + bool exists = item != nullptr; + + if (!exists) { + if (!this->nodesExist(node, { "AegisName", "Name" })) + return 0; + + item = std::make_shared(); + item->nameid = nameid; + item->flag.available = true; + } + + if (this->nodeExists(node, "AegisName")) { + std::string name; + + if (!this->asString(node, "AegisName", name)) + return 0; + + if (itemdb_search_aegisname(name.c_str())) { + this->invalidWarning(node["AegisName"], "Found duplicate item Aegis name for %s, skipping.\n", name.c_str()); + return 0; + } + + item->name.resize(ITEM_NAME_LENGTH); + item->name = name.c_str(); + } + + if (this->nodeExists(node, "Name")) { + std::string name; + + if (!this->asString(node, "Name", name)) + return 0; + + item->ename.resize(ITEM_NAME_LENGTH); + item->ename = name.c_str(); + } + + if (this->nodeExists(node, "Type")) { + std::string type; + + if (!this->asString(node, "Type", type)) + return 0; + + std::string type_constant = "IT_" + type; + int64 constant; + + if (!script_get_constant(type_constant.c_str(), &constant) || constant < IT_HEALING || constant >= IT_MAX) { + this->invalidWarning(node["Type"], "Invalid item type %s, defaulting to IT_ETC.\n", type.c_str()); + constant = IT_ETC; + } + + if (constant == IT_DELAYCONSUME) { // Items that are consumed only after target confirmation + constant = IT_USABLE; + item->flag.delay_consume |= DELAYCONSUME_TEMP; + } + + item->type = static_cast(constant); + } else { + if (!exists) + item->type = IT_ETC; + } + + if (this->nodeExists(node, "SubType")) { + std::string type; + + if (!this->asString(node, "SubType", type)) + return 0; + + if (item->type == IT_WEAPON) { + std::string type_constant = "W_" + type; + int64 constant; + + if (!script_get_constant(type_constant.c_str(), &constant) || constant < W_FIST || constant >= MAX_WEAPON_TYPE) { + this->invalidWarning(node["SubType"], "Invalid weapon type %s, defaulting to W_FIST.\n", type.c_str()); + item->subtype = W_FIST; + } + + item->subtype = static_cast(constant); + } else if (item->type == IT_AMMO) { + std::string type_constant = "AMMO_" + type; + int64 constant; + + if (!script_get_constant(type_constant.c_str(), &constant) || constant <= AMMO_NONE || constant >= MAX_AMMO_TYPE) { + this->invalidWarning(node["SubType"], "Invalid ammo type %s, defaulting to AMMO_NONE.\n", type.c_str()); + item->subtype = AMMO_NONE; + } + + item->subtype = static_cast(constant); + } else + this->invalidWarning(node["SubType"], "Item sub type is not supported for this item type.\n"); + } else { + if (!exists) + item->subtype = 0; + } + + // When a particular price is not given, we should base it off the other one + // (it is important to make a distinction between 'no price' and 0z) + if (this->nodeExists(node, "Buy")) { + uint32 buy; + + if (!this->asUInt32(node, "Buy", buy)) + return 0; + + item->value_buy = buy; + } else { + if (!exists) { + if (this->nodeExists(node, "Sell")) { + uint32 sell; + + if (!this->asUInt32(node, "Sell", sell)) + return 0; + + item->value_buy = sell * 2; + } else + item->value_buy = 0; + } + } + + if (this->nodeExists(node, "Sell")) { + uint32 sell; + + if (!this->asUInt32(node, "Sell", sell)) + return 0; + + item->value_sell = sell; + } else { + if (!exists) + item->value_sell = item->value_buy / 2; + } + + if (item->value_buy / 124. < item->value_sell / 75.) { + this->invalidWarning(node["Sell"], "Buying/Selling [%d/%d] price of %s (%hu) allows Zeny making exploit through buying/selling at discounted/overcharged prices! Defaulting Sell to 1 Zeny.\n", item->value_buy, item->value_sell, item->name.c_str(), nameid); + item->value_sell = 1; + } + + if (this->nodeExists(node, "Weight")) { + uint32 weight; + + if (!this->asUInt32(node, "Weight", weight)) + return 0; + + item->weight = weight; + } else { + if (!exists) + item->weight = 0; + } + + if (this->nodeExists(node, "Attack")) { + uint32 atk; + + if (!this->asUInt32(node, "Attack", atk)) + return 0; + + item->atk = atk; + } else { + if (!exists) + item->atk = 0; + } + +#ifdef RENEWAL + if (this->nodeExists(node, "MagicAttack")) { + uint32 matk; + + if (!this->asUInt32(node, "MagicAttack", matk)) + return 0; + + item->matk = matk; + } else { + if (!exists) + item->matk = 0; + } +#endif + + if (this->nodeExists(node, "Defense")) { + uint32 def; + + if (!this->asUInt32(node, "Defense", def)) + return 0; + + if (def > DEFTYPE_MAX) { + this->invalidWarning(node["Defense"], "Item defense %d exceeds DEFTYPE_MAX (%d), capping to DEFTYPE_MAX.\n", def, DEFTYPE_MAX); + def = DEFTYPE_MAX; + } + + item->def = def; + } else { + if (!exists) + item->def = 0; + } + + if (this->nodeExists(node, "Range")) { + uint16 range; + + if (!this->asUInt16(node, "Range", range)) + return 0; + + if (range > AREA_SIZE) { + this->invalidWarning(node["Range"], "Item attack range %d exceeds AREA_SIZE (%d), capping to AREA_SIZE.\n", range, AREA_SIZE); + range = AREA_SIZE; + } + + item->range = range; + } else { + if (!exists) + item->range = 0; + } + + if (this->nodeExists(node, "Slots")) { + uint16 slots; + + if (!this->asUInt16(node, "Slots", slots)) + return 0; + + if (slots > MAX_SLOTS) { + this->invalidWarning(node["Slots"], "Item slots %d exceeds MAX_SLOTS (%d), capping to MAX_SLOTS.\n", slots, MAX_SLOTS); + slots = MAX_SLOTS; + } + + item->slots = slots; + } else { + if (!exists) + item->slots = 0; + } + + if (this->nodeExists(node, "Jobs")) { + const YAML::Node &jobNode = node["Jobs"]; + + item->class_base[0] = item->class_base[1] = item->class_base[2] = 0; + + if (this->nodeExists(jobNode, "All")) { + bool active; + + if (!this->asBool(jobNode, "All", active)) + return 0; + + itemdb_jobid2mapid(item->class_base, static_cast(MAPID_ALL), active); + } + + for (const auto &jobit : jobNode) { + std::string jobName = jobit.first.as(); + + // Skipped because processed above the loop + if (jobName.compare("All") == 0) + continue; + + std::string jobName_constant = "EAJ_" + jobName; + int64 constant; + + if (!script_get_constant(jobName_constant.c_str(), &constant)) { + this->invalidWarning(jobNode[jobName], "Invalid item job %s, defaulting to All.\n", jobName.c_str()); + itemdb_jobid2mapid(item->class_base, static_cast(MAPID_ALL), true); + break; + } + + bool active; + + if (!this->asBool(jobNode, jobName.c_str(), active)) + return 0; + + itemdb_jobid2mapid(item->class_base, static_cast(constant), active); + } + } else { + if (!exists) { + item->class_base[0] = item->class_base[1] = item->class_base[2] = 0; + + itemdb_jobid2mapid(item->class_base, static_cast(MAPID_ALL), true); + } + } + + if (this->nodeExists(node, "Classes")) { + const YAML::Node &classNode = node["Classes"]; + + if (this->nodeExists(classNode, "All")) { + bool active; + + if (!this->asBool(classNode, "All", active)) + return 0; + + if (active) + item->class_upper |= ITEMJ_ALL; + else + item->class_upper &= ~ITEMJ_ALL; + } + + for (const auto &classit : classNode) { + std::string className = classit.first.as(); + + // Skipped because processed above the loop + if (className.compare("All") == 0) + continue; + + std::string className_constant = "ITEMJ_" + className; + int64 constant; + + if (!script_get_constant(className_constant.c_str(), &constant)) { + this->invalidWarning(classNode[className], "Invalid class upper %s, defaulting to All.\n", className.c_str()); + item->class_upper |= ITEMJ_ALL; + break; + } + + bool active; + + if (!this->asBool(classNode, className.c_str(), active)) + return 0; + + if (active) + item->class_upper |= constant; + else + item->class_upper &= ~constant; + } + } else { + if (!exists) + item->class_upper = ITEMJ_ALL; + } + + if (this->nodeExists(node, "Gender")) { + std::string gender; + + if (!this->asString(node, "Gender", gender)) + return 0; + + std::string gender_constant = "SEX_" + gender; + int64 constant; + + if (!script_get_constant(gender_constant.c_str(), &constant) || constant < SEX_FEMALE || constant > SEX_BOTH) { + this->invalidWarning(node["Gender"], "Invalid item gender %s, defaulting to SEX_BOTH.\n", gender.c_str()); + constant = SEX_BOTH; + } + + item->sex = static_cast(constant); + item->sex = itemdb_gendercheck(item.get()); + } else { + if (!exists) { + item->sex = SEX_BOTH; + item->sex = itemdb_gendercheck(item.get()); + } + } + + if (this->nodeExists(node, "Locations")) { + const YAML::Node &locationNode = node["Locations"]; + + for (const auto &locit : locationNode) { + std::string equipName = locit.first.as(), equipName_constant = "EQP_" + equipName; + int64 constant; + + if (!script_get_constant(equipName_constant.c_str(), &constant)) { + this->invalidWarning(locationNode[equipName], "Invalid equip location %s, defaulting to IT_ETC.\n", equipName.c_str()); + item->type = IT_ETC; + break; + } + + bool active; + + if (!this->asBool(locationNode, equipName.c_str(), active)) + return 0; + + if (active) { + if (constant & EQP_SHADOW_GEAR && item->type != IT_SHADOWGEAR) { + this->invalidWarning(node, "Invalid item equip location %s as it's not a Shadow Gear item type, defaulting to IT_ETC.\n", equipName.c_str()); + item->type = IT_ETC; + } + + item->equip |= constant; + } else + item->equip &= ~constant; + } + } else { + if (!exists) { + if (itemdb_isequip2(item.get())) { + this->invalidWarning(node["Locations"], "Invalid item equip location as it has no equip location, defaulting to IT_ETC.\n"); + item->type = IT_ETC; + } else + item->equip = 0; + } + } + + if (this->nodeExists(node, "WeaponLevel")) { + uint16 lv; + + if (!this->asUInt16(node, "WeaponLevel", lv)) + return 0; + + if (lv >= REFINE_TYPE_SHADOW) { + this->invalidWarning(node["WeaponLevel"], "Invalid weapon level %d, defaulting to 0.\n", lv); + lv = REFINE_TYPE_ARMOR; + } + + if (item->type != IT_WEAPON) { + this->invalidWarning(node["WeaponLevel"], "Item type is not a weapon, defaulting to 0.\n"); + lv = REFINE_TYPE_ARMOR; + } + + item->wlv = lv; + } else { + if (!exists) + item->wlv = REFINE_TYPE_ARMOR; + } + + if (this->nodeExists(node, "EquipLevelMin")) { + uint16 lv; + + if (!this->asUInt16(node, "EquipLevelMin", lv)) + return 0; + + if (lv > MAX_LEVEL) { + this->invalidWarning(node["EquipLevelMin"], "Minimum equip level %d exceeds MAX_LEVEL (%d), capping to MAX_LEVEL.\n", lv, MAX_LEVEL); + lv = MAX_LEVEL; + } + + item->elv = lv; + } else { + if (!exists) + item->elv = 0; + } + + if (this->nodeExists(node, "EquipLevelMax")) { + uint16 lv; + + if (!this->asUInt16(node, "EquipLevelMax", lv)) + return 0; + + if (lv < item->elv) { + this->invalidWarning(node["EquipLevelMax"], "Maximum equip level %d is less than minimum equip level %d, capping to minimum equip level.\n", lv, item->elv); + lv = item->elv; + } + + if (lv > MAX_LEVEL) { + this->invalidWarning(node["EquipLevelMax"], "Maximum equip level %d exceeds MAX_LEVEL (%d), capping to MAX_LEVEL.\n", lv, MAX_LEVEL); + lv = MAX_LEVEL; + } + + item->elvmax = lv; + } else { + if (!exists) + item->elvmax = MAX_LEVEL; + } + + if (this->nodeExists(node, "Refineable")) { + bool refine; + + if (!this->asBool(node, "Refineable", refine)) + return 0; + + item->flag.no_refine = refine; + } else { + if (!exists) + item->flag.no_refine = false; + } + + if (this->nodeExists(node, "View")) { + uint32 look; + + if (!this->asUInt32(node, "View", look)) + return 0; + + item->look = look; + } else { + if (!exists) + item->look = 0; + } + + if (this->nodeExists(node, "AliasName")) { + std::string view; + + if (!this->asString(node, "AliasName", view)) + return 0; + + item_data *view_data = itemdb_search_aegisname(view.c_str()); + + if (view_data == nullptr) { + this->invalidWarning(node["AliasName"], "Unable to change the alias because %s is an unknown item.\n", view.c_str()); + return 0; + } + + item->view_id = view_data->nameid; + } else { + if (!exists) + item->view_id = 0; + } + + if (this->nodeExists(node, "Flags")) { + const YAML::Node &flagNode = node["Flags"]; + + if (this->nodeExists(flagNode, "Buyingstore")) { + bool active; + + if (!this->asBool(flagNode, "Buyingstore", active)) + return 0; + + if (!itemdb_isstackable2(item.get()) && active) { + this->invalidWarning(flagNode["Buyingstore"], "Non-stackable item cannot be enabled for buying store.\n"); + active = false; + } + + item->flag.buyingstore = active; + } else { + if (!exists) + item->flag.buyingstore = false; + } + + if (this->nodeExists(flagNode, "DeadBranch")) { + bool active; + + if (!this->asBool(flagNode, "DeadBranch", active)) + return 0; + + item->flag.dead_branch = active; + } else { + if (!exists) + item->flag.dead_branch = false; + } + + if (this->nodeExists(flagNode, "Container")) { + bool active; + + if (!this->asBool(flagNode, "Container", active)) + return 0; + + item->flag.group = active; + } else { + if (!exists) + item->flag.group = false; + } + + if (this->nodeExists(flagNode, "UniqueId")) { + bool active; + + if (!this->asBool(flagNode, "UniqueId", active)) + return 0; + + if (!itemdb_isstackable2(item.get()) && active) { + this->invalidWarning(flagNode["UniqueId"], "Non-stackable item cannot be enabled for UniqueId.\n"); + active = false; + } + + item->flag.guid = active; + } else { + if (!exists) + item->flag.guid = false; + } + + if (this->nodeExists(flagNode, "BindOnEquip")) { + bool active; + + if (!this->asBool(flagNode, "BindOnEquip", active)) + return 0; + + item->flag.bindOnEquip = active; + } else { + if (!exists) + item->flag.bindOnEquip = false; + } + + if (this->nodeExists(flagNode, "DropAnnounce")) { + bool active; + + if (!this->asBool(flagNode, "DropAnnounce", active)) + return 0; + + item->flag.broadcast = active; + } else { + if (!exists) + item->flag.broadcast = false; + } + + if (this->nodeExists(flagNode, "NoConsume")) { + bool active; + + if (!this->asBool(flagNode, "NoConsume", active)) + return 0; + + if (active) + item->flag.delay_consume |= DELAYCONSUME_NOCONSUME; + else + item->flag.delay_consume &= ~DELAYCONSUME_NOCONSUME; + } else { + if (!exists) { + if (!(item->flag.delay_consume & DELAYCONSUME_TEMP)) + item->flag.delay_consume = DELAYCONSUME_NONE; + } + } + + if (this->nodeExists(flagNode, "DropEffect")) { + std::string effect; + + if (!this->asString(flagNode, "DropEffect", effect)) + return 0; + + std::string effect_constant = "DROPEFFECT_" + effect; + int64 constant; + + if (!script_get_constant(effect_constant.c_str(), &constant) || constant < DROPEFFECT_NONE || constant > DROPEFFECT_MAX) { + this->invalidWarning(flagNode["DropEffect"], "Invalid item drop effect %s, defaulting to DROPEFFECT_NONE.\n", effect.c_str()); + constant = DROPEFFECT_NONE; + } + + item->flag.dropEffect = static_cast(constant); + } else { + if (!exists) + item->flag.dropEffect = DROPEFFECT_NONE; + } + } else { + if (!exists) { + item->flag.buyingstore = false; + item->flag.dead_branch = false; + item->flag.group = false; + item->flag.guid = false; + item->flag.bindOnEquip = false; + item->flag.broadcast = false; + if (!(item->flag.delay_consume & DELAYCONSUME_TEMP)) + item->flag.delay_consume = DELAYCONSUME_NONE; + item->flag.dropEffect = DROPEFFECT_NONE; + } + } + + if (this->nodeExists(node, "Delay")) { + const YAML::Node &delayNode = node["Delay"]; + + if (this->nodeExists(delayNode, "Duration")) { + uint32 duration; + + if (!this->asUInt32(delayNode, "Duration", duration)) + return 0; + + item->delay.duration = duration; + } else { + if (!exists) + item->delay.duration = 0; + } + + if (this->nodeExists(delayNode, "Status")) { + std::string status; + + if (!this->asString(delayNode, "Status", status)) + return 0; + + std::string status_constant = "SC_" + status; + int64 constant; + + if (!script_get_constant(status_constant.c_str(), &constant) || constant < SC_NONE || constant >= SC_MAX) { + this->invalidWarning(delayNode[status], "Invalid item delay status %s, defaulting to SC_NONE.\n", status.c_str()); + constant = SC_NONE; + } + + item->delay.sc = static_cast(constant); + } else { + if (!exists) + item->delay.sc = SC_NONE; + } + } else { + if (!exists) { + item->delay.duration = 0; + item->delay.sc = SC_NONE; + } + } + + if (this->nodeExists(node, "Stack")) { + const YAML::Node &stackNode = node["Stack"]; + + if (this->nodeExists(stackNode, "Amount")) { + uint16 amount; + + if (!this->asUInt16(stackNode, "Amount", amount)) + return 0; + + if (!itemdb_isstackable2(item.get())) { + this->invalidWarning(stackNode["Amount"], "Non-stackable item cannot be enabled for stacking.\n"); + amount = 0; + } + + item->stack.amount = amount; + } else { + if (!exists) + item->stack.amount = 0; + } + + if (this->nodeExists(stackNode, "Inventory")) { + bool active; + + if (!this->asBool(stackNode, "Inventory", active)) + return 0; + + item->stack.inventory = active; + } else { + if (!exists) + item->stack.inventory = true; + } + + if (this->nodeExists(stackNode, "Cart")) { + bool active; + + if (!this->asBool(stackNode, "Cart", active)) + return 0; + + item->stack.cart = active; + } else { + if (!exists) + item->stack.cart = true; + } + + if (this->nodeExists(stackNode, "Storage")) { + bool active; + + if (!this->asBool(stackNode, "Storage", active)) + return 0; + + item->stack.storage = active; + } else { + if (!exists) + item->stack.storage = true; + } + + if (this->nodeExists(stackNode, "GuildStorage")) { + bool active; + + if (!this->asBool(stackNode, "GuildStorage", active)) + return 0; + + item->stack.guild_storage = active; + } else { + if (!exists) + item->stack.guild_storage = true; + } + } else { + if (!exists) { + item->stack.amount = 0; + item->stack.inventory = false; + item->stack.cart = false; + item->stack.storage = false; + item->stack.guild_storage = false; + } + } + + if (this->nodeExists(node, "NoUse")) { + const YAML::Node &nouseNode = node["NoUse"]; + + if (this->nodeExists(nouseNode, "Override")) { + uint16 override; + + if (!this->asUInt16(nouseNode, "Override", override)) + return 0; + + if (override > 100) { + this->invalidWarning(nouseNode["Override"], "Item no use override level %d exceeds 100, capping to 100.\n", override); + override = 100; + } + + item->item_usage.override = override; + } else { + if (!exists) + item->item_usage.override = 0; + } + + if (this->nodeExists(nouseNode, "Sitting")) { + bool active; + + if (!this->asBool(nouseNode, "Sitting", active)) + return 0; + + item->item_usage.sitting = active; + } else { + if (!exists) + item->item_usage.sitting = false; + } + } else { + if (!exists) { + item->item_usage.override = 0; + item->item_usage.sitting = false; + } + } + + if (this->nodeExists(node, "Trade")) { + const YAML::Node &tradeNode = node["Trade"]; + + if (this->nodeExists(tradeNode, "Override")) { + uint16 override; + + if (!this->asUInt16(tradeNode, "Override", override)) + return 0; + + if (override > 100) { + this->invalidWarning(tradeNode["Override"], "Item trade override level %d exceeds 100, capping to 100.\n", override); + override = 100; + } + + item->gm_lv_trade_override = override; + } else { + if (!exists) + item->gm_lv_trade_override = 0; + } + + if (this->nodeExists(tradeNode, "NoDrop")) { + bool active; + + if (!this->asBool(tradeNode, "NoDrop", active)) + return 0; + + item->flag.trade_restriction.drop = active; + } else { + if (!exists) + item->flag.trade_restriction.drop = false; + } + + if (this->nodeExists(tradeNode, "NoTrade")) { + bool active; + + if (!this->asBool(tradeNode, "NoTrade", active)) + return 0; + + item->flag.trade_restriction.trade = active; + } else { + if (!exists) + item->flag.trade_restriction.trade = false; + } + + if (this->nodeExists(tradeNode, "TradePartner")) { + bool active; + + if (!this->asBool(tradeNode, "TradePartner", active)) + return 0; + + item->flag.trade_restriction.trade_partner = active; + } else { + if (!exists) + item->flag.trade_restriction.trade_partner = false; + } + + if (this->nodeExists(tradeNode, "NoSell")) { + bool active; + + if (!this->asBool(tradeNode, "NoSell", active)) + return 0; + + item->flag.trade_restriction.sell = active; + } else { + if (!exists) + item->flag.trade_restriction.sell = false; + } + + if (this->nodeExists(tradeNode, "NoCart")) { + bool active; + + if (!this->asBool(tradeNode, "NoCart", active)) + return 0; + + item->flag.trade_restriction.cart = active; + } else { + if (!exists) + item->flag.trade_restriction.cart = false; + } + + if (this->nodeExists(tradeNode, "NoStorage")) { + bool active; + + if (!this->asBool(tradeNode, "NoStorage", active)) + return 0; + + item->flag.trade_restriction.storage = active; + } else { + if (!exists) + item->flag.trade_restriction.storage = false; + } + + if (this->nodeExists(tradeNode, "NoGuildStorage")) { + bool active; + + if (!this->asBool(tradeNode, "NoGuildStorage", active)) + return 0; + + item->flag.trade_restriction.guild_storage = active; + } else { + if (!exists) + item->flag.trade_restriction.guild_storage = false; + } + + if (this->nodeExists(tradeNode, "NoMail")) { + bool active; + + if (!this->asBool(tradeNode, "NoMail", active)) + return 0; + + item->flag.trade_restriction.mail = active; + } else { + if (!exists) + item->flag.trade_restriction.mail = false; + } + + if (this->nodeExists(tradeNode, "NoAuction")) { + bool active; + + if (!this->asBool(tradeNode, "NoAuction", active)) + return 0; + + item->flag.trade_restriction.auction = active; + } else { + if (!exists) + item->flag.trade_restriction.auction = false; + } + } else { + if (!exists) { + item->gm_lv_trade_override = 0; + item->flag.trade_restriction.drop = false; + item->flag.trade_restriction.trade = false; + item->flag.trade_restriction.trade_partner = false; + item->flag.trade_restriction.sell = false; + item->flag.trade_restriction.cart = false; + item->flag.trade_restriction.storage = false; + item->flag.trade_restriction.guild_storage = false; + item->flag.trade_restriction.mail = false; + item->flag.trade_restriction.auction = false; + } + } + + if (this->nodeExists(node, "Script")) { + std::string script; + + if (!this->asString(node, "Script", script)) + return 0; + + if (exists && item->script) { + script_free_code(item->script); + item->script = nullptr; + } + + item->script = parse_script(script.c_str(), this->getCurrentFile().c_str(), node["Script"].Mark().line + 1, SCRIPT_IGNORE_EXTERNAL_BRACKETS); + } else { + if (!exists) + item->script = nullptr; + } + + if (this->nodeExists(node, "EquipScript")) { + std::string script; + + if (!this->asString(node, "EquipScript", script)) + return 0; + + if (exists && item->equip_script) { + script_free_code(item->equip_script); + item->equip_script = nullptr; + } + + item->equip_script = parse_script(script.c_str(), this->getCurrentFile().c_str(), node["EquipScript"].Mark().line + 1, SCRIPT_IGNORE_EXTERNAL_BRACKETS); + } else { + if (!exists) + item->equip_script = nullptr; + } + + if (this->nodeExists(node, "UnEquipScript")) { + std::string script; + + if (!this->asString(node, "UnEquipScript", script)) + return 0; + + if (exists && item->unequip_script) { + script_free_code(item->unequip_script); + item->unequip_script = nullptr; + } + + item->unequip_script = parse_script(script.c_str(), this->getCurrentFile().c_str(), node["UnEquipScript"].Mark().line + 1, SCRIPT_IGNORE_EXTERNAL_BRACKETS); + } else { + if (!exists) + item->unequip_script = nullptr; + } + + if (!exists) + this->put(nameid, item); + + return 1; +} + +ItemDatabase item_db; + +/** + * Check if combo exists + * @param combo_id + * @return s_item_combo or nullptr if it does not exist + */ +s_item_combo *itemdb_combo_exists(uint32 combo_id) { + auto item = util::map_find(itemdb_combo, combo_id); + + if( item == nullptr ){ + return nullptr; + } + + return item.get(); } /** @@ -95,29 +1091,6 @@ int16 itemdb_group_item_exists_pc(struct map_session_data *sd, unsigned short gr return -1; } -/** - * Search for item name - * name = item alias, so we should find items aliases first. if not found then look for "jname" (full name) - * @see DBApply - */ -static int itemdb_searchname_sub(DBKey key, DBData *data, va_list ap) -{ - struct item_data *item = (struct item_data *)db_data2ptr(data), **dst, **dst2; - char *str; - str = va_arg(ap,char *); - dst = va_arg(ap,struct item_data **); - dst2 = va_arg(ap,struct item_data **); - - //Absolute priority to Aegis code name. - if (dst != NULL && strcmpi(item->name, str) == 0) - *dst = item; - - //Second priority to Client displayed name. - if (dst2 != NULL && strcmpi(item->jname, str) == 0) - *dst2 = item; - return 0; -} - /*========================================== * Return item data from item name. (lookup) * @param str Item Name @@ -126,14 +1099,21 @@ static int itemdb_searchname_sub(DBKey key, DBData *data, va_list ap) *------------------------------------------*/ static struct item_data* itemdb_searchname1(const char *str, bool aegis_only) { - struct item_data *item = NULL, * item2 = NULL; + for (const auto &it : item_db) { + // Absolute priority to Aegis code name. + if (strcmpi(it.second->name.c_str(), str) == 0) + return it.second.get(); - if( !aegis_only ) - itemdb->foreach(itemdb, itemdb_searchname_sub, str, &item, &item2); - else - itemdb->foreach(itemdb, itemdb_searchname_sub, str, &item, NULL); + // If only Aegis name is allowed, continue with the next entry + if (aegis_only) + continue; - return ((item) ? item : item2); + //Second priority to Client displayed name. + if (strcmpi(it.second->ename.c_str(), str) == 0) + return it.second.get(); + } + + return nullptr; } struct item_data* itemdb_searchname(const char *str) @@ -145,23 +1125,8 @@ struct item_data* itemdb_search_aegisname( const char *str ){ return itemdb_searchname1( str, true ); } -/** - * @see DBMatcher - */ -static int itemdb_searchname_array_sub(DBKey key, DBData data, va_list ap) -{ - struct item_data *item = (struct item_data *)db_data2ptr(&data); - char *str = va_arg(ap,char *); - - if (stristr(item->jname,str)) - return 0; - if (stristr(item->name,str)) - return 0; - return strcmpi(item->jname,str); -} - /*========================================== - * Founds up to N matches. Returns number of matches [Skotlex] + * Finds up to N matches. Returns number of matches [Skotlex] * @param *data * @param size * @param str @@ -169,12 +1134,15 @@ static int itemdb_searchname_array_sub(DBKey key, DBData data, va_list ap) *------------------------------------------*/ int itemdb_searchname_array(struct item_data** data, int size, const char *str) { - DBData *db_data[MAX_SEARCH]; - int i, count = 0, db_count; + int count = 0; - db_count = itemdb->getall(itemdb, (DBData**)&db_data, size, itemdb_searchname_array_sub, str); - for (i = 0; i < db_count && count < size; i++) - data[count++] = (struct item_data*)db_data2ptr(db_data[i]); + for (const auto &it : item_db) { + if (count < size) { + if (stristr(it.second->name.c_str(), str) != nullptr || stristr(it.second->ename.c_str(), str) != nullptr || strcmpi(it.second->ename.c_str(), str) == 0) + data[count++] = it.second.get(); + } else + break; + } return count; } @@ -311,21 +1279,23 @@ char itemdb_pc_get_itemgroup(uint16 group_id, bool identify, struct map_session_ * @return *item_data if item is exist, or NULL if not */ struct item_data* itemdb_exists(t_itemid nameid) { - return ((struct item_data*)uidb_get(itemdb,nameid)); + std::shared_ptr item = item_db.find(nameid); + + return item ? item.get() : nullptr; } /// Returns name type of ammunition [Cydh] -const char *itemdb_typename_ammo (enum e_item_ammo ammo) { +const char *itemdb_typename_ammo (e_ammo_type ammo) { switch (ammo) { - case AMMO_ARROW: return "Arrow"; - case AMMO_THROWABLE_DAGGER: return "Throwable Dagger"; - case AMMO_BULLET: return "Bullet"; - case AMMO_SHELL: return "Shell"; - case AMMO_GRENADE: return "Grenade"; - case AMMO_SHURIKEN: return "Shuriken"; - case AMMO_KUNAI: return "Kunai"; - case AMMO_CANNONBALL: return "Cannonball"; - case AMMO_THROWABLE_ITEM: return "Throwable Item/Sling Item"; + case AMMO_ARROW: return "Arrow"; + case AMMO_DAGGER: return "Throwable Dagger"; + case AMMO_BULLET: return "Bullet"; + case AMMO_SHELL: return "Shell"; + case AMMO_GRENADE: return "Grenade"; + case AMMO_SHURIKEN: return "Shuriken"; + case AMMO_KUNAI: return "Kunai"; + case AMMO_CANNONBALL: return "Cannonball"; + case AMMO_THROWWEAPON: return "Throwable Item/Sling Item"; } return "Ammunition"; } @@ -356,110 +1326,59 @@ const char* itemdb_typename(enum item_types type) * Converts the jobmask from the format in itemdb to the format used by the map server. * @param bclass: Pointer to store itemdb format * @param jobmask: Job Mask to convert + * @param active: Whether the flag is active or not * @author: Skotlex */ -static void itemdb_jobid2mapid(uint64 *bclass, uint64 jobmask) +static void itemdb_jobid2mapid(uint64 bclass[3], e_mapid jobmask, bool active) { - int i; + uint64 temp_mask[3] = { 0 }; - bclass[0] = bclass[1] = bclass[2] = 0; + if (jobmask != MAPID_ALL) { + // Calculate the required bit to set + uint64 job = 1ULL << ( jobmask & MAPID_BASEMASK ); - //Base classes - if (jobmask & 1ULL< dummy_item; - memset(dummy_item, 0, sizeof(struct item_data)); + dummy_item = std::make_shared(); dummy_item->nameid = ITEMID_DUMMY; dummy_item->weight = 1; dummy_item->value_sell = 1; - dummy_item->type = IT_ETC; //Etc item - safestrncpy(dummy_item->name, "UNKNOWN_ITEM", sizeof(dummy_item->name)); - safestrncpy(dummy_item->jname, "Unknown Item", sizeof(dummy_item->jname)); + dummy_item->type = IT_ETC; + dummy_item->name = "UNKNOWN_ITEM"; + dummy_item->ename = "Unknown Item"; dummy_item->view_id = UNKNOWN_ITEM_ID; -} - -/** -* Create new item data -* @param nameid -*/ -static struct item_data *itemdb_create_item(t_itemid nameid) { - struct item_data *id; - CREATE(id, struct item_data, 1); - memset(id, 0, sizeof(struct item_data)); - id->nameid = nameid; - id->type = IT_ETC; //Etc item - uidb_put(itemdb, nameid, id); - return id; + item_db.put(ITEMID_DUMMY, dummy_item); } /*========================================== @@ -468,14 +1387,13 @@ static struct item_data *itemdb_create_item(t_itemid nameid) { * @return *item_data or *dummy_item if item not found *------------------------------------------*/ struct item_data* itemdb_search(t_itemid nameid) { - struct item_data* id = NULL; - if (nameid == dummy_item->nameid) - id = dummy_item; - else if (!(id = (struct item_data*)uidb_get(itemdb, nameid))) { + std::shared_ptr id; + + if (!(id = item_db.find(nameid))) { ShowWarning("itemdb_search: Item ID %u does not exists in the item_db. Using dummy data.\n", nameid); - id = dummy_item; + id = item_db.find(ITEMID_DUMMY); } - return id; + return id.get(); } /** Checks if item is equip type or not @@ -509,39 +1427,39 @@ bool itemdb_isstackable2(struct item_data *id) * Trade Restriction functions [Skotlex] *------------------------------------------*/ bool itemdb_isdropable_sub(struct item_data *item, int gmlv, int unused) { - return (item && (!(item->flag.trade_restriction&1) || gmlv >= item->gm_lv_trade_override)); + return (item && (!(item->flag.trade_restriction.drop) || gmlv >= item->gm_lv_trade_override)); } bool itemdb_cantrade_sub(struct item_data* item, int gmlv, int gmlv2) { - return (item && (!(item->flag.trade_restriction&2) || gmlv >= item->gm_lv_trade_override || gmlv2 >= item->gm_lv_trade_override)); + return (item && (!(item->flag.trade_restriction.trade) || gmlv >= item->gm_lv_trade_override || gmlv2 >= item->gm_lv_trade_override)); } bool itemdb_canpartnertrade_sub(struct item_data* item, int gmlv, int gmlv2) { - return (item && (item->flag.trade_restriction&4 || gmlv >= item->gm_lv_trade_override || gmlv2 >= item->gm_lv_trade_override)); + return (item && (item->flag.trade_restriction.trade_partner || gmlv >= item->gm_lv_trade_override || gmlv2 >= item->gm_lv_trade_override)); } bool itemdb_cansell_sub(struct item_data* item, int gmlv, int unused) { - return (item && (!(item->flag.trade_restriction&8) || gmlv >= item->gm_lv_trade_override)); + return (item && (!(item->flag.trade_restriction.sell) || gmlv >= item->gm_lv_trade_override)); } bool itemdb_cancartstore_sub(struct item_data* item, int gmlv, int unused) { - return (item && (!(item->flag.trade_restriction&16) || gmlv >= item->gm_lv_trade_override)); + return (item && (!(item->flag.trade_restriction.cart) || gmlv >= item->gm_lv_trade_override)); } bool itemdb_canstore_sub(struct item_data* item, int gmlv, int unused) { - return (item && (!(item->flag.trade_restriction&32) || gmlv >= item->gm_lv_trade_override)); + return (item && (!(item->flag.trade_restriction.storage) || gmlv >= item->gm_lv_trade_override)); } bool itemdb_canguildstore_sub(struct item_data* item, int gmlv, int unused) { - return (item && (!(item->flag.trade_restriction&64) || gmlv >= item->gm_lv_trade_override)); + return (item && (!(item->flag.trade_restriction.guild_storage) || gmlv >= item->gm_lv_trade_override)); } bool itemdb_canmail_sub(struct item_data* item, int gmlv, int unused) { - return (item && (!(item->flag.trade_restriction&128) || gmlv >= item->gm_lv_trade_override)); + return (item && (!(item->flag.trade_restriction.mail) || gmlv >= item->gm_lv_trade_override)); } bool itemdb_canauction_sub(struct item_data* item, int gmlv, int unused) { - return (item && (!(item->flag.trade_restriction&256) || gmlv >= item->gm_lv_trade_override)); + return (item && (!(item->flag.trade_restriction.auction) || gmlv >= item->gm_lv_trade_override)); } bool itemdb_isrestricted(struct item* item, int gmlv, int gmlv2, bool (*func)(struct item_data*, int, int)) @@ -552,10 +1470,10 @@ bool itemdb_isrestricted(struct item* item, int gmlv, int gmlv2, bool (*func)(st if (!func(item_data, gmlv, gmlv2)) return false; - if(item_data->slot == 0 || itemdb_isspecial(item->card[0])) + if(item_data->slots == 0 || itemdb_isspecial(item->card[0])) return true; - for(i = 0; i < item_data->slot; i++) { + for(i = 0; i < item_data->slots; i++) { if (!item->card[i]) continue; if (!func(itemdb_search(item->card[i]), gmlv, gmlv2)) return false; @@ -585,36 +1503,6 @@ char itemdb_isidentified(t_itemid nameid) { } } -/** Search by name for the override flags available items (Give item another sprite) -* Structure: , -*/ -static bool itemdb_read_itemavail(char* str[], int columns, int current) { - t_itemid nameid, sprite; - struct item_data *id; - - nameid = strtoul(str[0], nullptr, 10); - - if( ( id = itemdb_exists(nameid) ) == NULL ) - { - ShowWarning("itemdb_read_itemavail: Invalid item id %u.\n", nameid); - return false; - } - - sprite = strtoul(str[1], nullptr, 10); - - if( sprite > 0 ) - { - id->flag.available = 1; - id->view_id = sprite; - } - else - { - id->flag.available = 0; - } - - return true; -} - static int itemdb_group_free(DBKey key, DBData *data, va_list ap); static int itemdb_group_free2(DBKey key, DBData *data); @@ -769,231 +1657,16 @@ static bool itemdb_read_noequip(char* str[], int columns, int current) { return true; } -/** Reads item trade restrictions [Skotlex] -* Structure: ,, -*/ -static bool itemdb_read_itemtrade(char* str[], int columns, int current) { - t_itemid nameid; - unsigned short flag, gmlv; - struct item_data *id; - - nameid = strtoul(str[0], nullptr, 10); - - if( ( id = itemdb_exists(nameid) ) == NULL ) - { - //ShowWarning("itemdb_read_itemtrade: Invalid item id %u.\n", nameid); - //return false; - // FIXME: item_trade.txt contains items, which are commented in item database. - return true; - } - - flag = atoi(str[1]); - gmlv = atoi(str[2]); - - if( flag > 511 ) {//Check range - ShowWarning("itemdb_read_itemtrade: Invalid trading mask %hu for item id %u.\n", flag, nameid); - return false; - } - if( gmlv < 1 ) - { - ShowWarning("itemdb_read_itemtrade: Invalid override GM level %hu for item id %u.\n", gmlv, nameid); - return false; - } - - id->flag.trade_restriction = flag; - id->gm_lv_trade_override = gmlv; - - return true; -} - -/** Reads item delay amounts [Paradox924X] -* Structure: ,{,} -*/ -static bool itemdb_read_itemdelay(char* str[], int columns, int current) { - t_itemid nameid; - int delay; - struct item_data *id; - - nameid = strtoul(str[0], nullptr, 10); - - if( ( id = itemdb_exists(nameid) ) == NULL ) - { - ShowWarning("itemdb_read_itemdelay: Invalid item id %u.\n", nameid); - return false; - } - - delay = atoi(str[1]); - - if( delay < 0 ) - { - ShowWarning("itemdb_read_itemdelay: Invalid delay %d for item id %u.\n", delay, nameid); - return false; - } - - id->delay = delay; - - if (columns == 2) - id->delay_sc = SC_NONE; - else if( ISDIGIT(str[2][0]) ) - id->delay_sc = atoi(str[2]); - else{ // Try read sc group id from const db - int64 constant; - - if( !script_get_constant(trim(str[2]), &constant) ){ - ShowWarning("itemdb_read_itemdelay: Invalid sc group \"%s\" for item id %u.\n", str[2], nameid); - return false; - } - - id->delay_sc = (short)constant; - } - - return true; -} - -/** Reads item stacking restrictions -* Structure: ,, -*/ -static bool itemdb_read_stack(char* fields[], int columns, int current) { - t_itemid nameid; - unsigned short amount; - unsigned int type; - struct item_data* id; - - nameid = strtoul(fields[0], nullptr, 10); - - if( ( id = itemdb_exists(nameid) ) == NULL ) - { - ShowWarning("itemdb_read_stack: Unknown item id '%u'.\n", nameid); - return false; - } - - if( !itemdb_isstackable2(id) ) - { - ShowWarning("itemdb_read_stack: Item id '%u' is not stackable.\n", nameid); - return false; - } - - amount = (unsigned short)strtoul(fields[1], NULL, 10); - type = strtoul(fields[2], NULL, 10); - - if( !amount ) - {// ignore - return true; - } - - id->stack.amount = amount; - id->stack.inventory = (type&1)!=0; - id->stack.cart = (type&2)!=0; - id->stack.storage = (type&4)!=0; - id->stack.guildstorage = (type&8)!=0; - - return true; -} - -/** Reads items allowed to be sold in buying stores -* -*/ -static bool itemdb_read_buyingstore(char* fields[], int columns, int current) { - t_itemid nameid; - struct item_data* id; - - nameid = strtoul(fields[0], nullptr, 10); - - if( ( id = itemdb_exists(nameid) ) == NULL ) - { - ShowWarning("itemdb_read_buyingstore: Invalid item id %u.\n", nameid); - return false; - } - - if( !itemdb_isstackable2(id) ) - { - ShowWarning("itemdb_read_buyingstore: Non-stackable item id %u cannot be enabled for buying store.\n", nameid); - return false; - } - - id->flag.buyingstore = true; - - return true; -} - -/** Item usage restriction (item_nouse.txt) -* ,, -*/ -static bool itemdb_read_nouse(char* fields[], int columns, int current) { - t_itemid nameid; - unsigned short flag, override; - struct item_data* id; - - nameid = strtoul(fields[0], nullptr, 10); - - if( ( id = itemdb_exists(nameid) ) == NULL ) { - ShowWarning("itemdb_read_nouse: Invalid item id %u.\n", nameid); - return false; - } - - flag = atoi(fields[1]); - override = atoi(fields[2]); - - id->item_usage.flag = flag; - id->item_usage.override = override; - - return true; -} - -/** Misc Item flags -* , -* &1 - As dead branch item -* &2 - As item container -* &4 - GUID item, cannot be stacked even same or stackable item -*/ -static bool itemdb_read_flag(char* fields[], int columns, int current) { - t_itemid nameid = strtoul(fields[0], nullptr, 10); - uint16 flag; - bool set; - struct item_data *id; - - if (!(id = itemdb_exists(nameid))) { - ShowError("itemdb_read_flag: Invalid item id %u\n", nameid); - return true; - } - - flag = abs(atoi(fields[1])); - set = atoi(fields[1]) > 0; - - if (flag&1) id->flag.dead_branch = set ? 1 : 0; - if (flag&2) id->flag.group = set ? 1 : 0; - if (flag&4 && itemdb_isstackable2(id)) id->flag.guid = set ? 1 : 0; - if (flag&8) id->flag.bindOnEquip = true; - if (flag&16) id->flag.broadcast = 1; - if (flag&32) id->flag.delay_consume = 2; - - if( flag & 64 ){ - id->flag.dropEffect = 1; - }else if( flag & 128 ){ - id->flag.dropEffect = 2; - }else if( flag & 256 ){ - id->flag.dropEffect = 3; - }else if( flag & 512 ){ - id->flag.dropEffect = 4; - }else if( flag & 1024 ){ - id->flag.dropEffect = 5; - }else if( flag & 2048 ){ - id->flag.dropEffect = 6; - } - - return true; -} - /** * @return: amount of retrieved entries. **/ -static int itemdb_combo_split_atoi (char *str, int *val) { +static int itemdb_combo_split_atoi (char *str, t_itemid *val) { int i; for (i=0; icombos_count; - /* first entry, create */ - if( id->combos == NULL ) { - CREATE(id->combos, struct item_combo*, 1); - id->combos_count = 1; - } else { - RECREATE(id->combos, struct item_combo*, ++id->combos_count); - } - CREATE(id->combos[idx],struct item_combo,1); - id->combos[idx]->nameid = (t_itemid *)aMalloc(retcount * sizeof(t_itemid)); - id->combos[idx]->count = retcount; - id->combos[idx]->script = parse_script(str[1], path, lines, 0); - id->combos[idx]->id = count; - id->combos[idx]->isRef = false; - /* populate ->nameid field */ - for( v = 0; v < retcount; v++ ) { - id->combos[idx]->nameid[v] = items[v]; + + // Create combo data + auto entry = std::make_shared(); + + entry->nameid = {}; + entry->script = parse_script(str[1], path, lines, 0); + entry->id = count; + + // Store into first item + item_data *id = itemdb_exists(items[0]); + + id->combos.push_back(entry); + + size_t idx = id->combos.size() - 1; + + // Populate nameid field + for (v = 0; v < retcount; v++) + id->combos[idx]->nameid.push_back(items[v]); + + // Populate the children to refer to this combo + for (v = 1; v < retcount; v++) { + item_data *it = itemdb_exists(items[v]); + + // Copy to other combos in list + it->combos.push_back(id->combos[idx]); } - /* populate the children to refer to this combo */ - for( v = 1; v < retcount; v++ ) { - struct item_data * it; - int index; - it = itemdb_exists(items[v]); - index = it->combos_count; - if( it->combos == NULL ) { - CREATE(it->combos, struct item_combo*, 1); - it->combos_count = 1; - } else { - RECREATE(it->combos, struct item_combo*, ++it->combos_count); - } - CREATE(it->combos[index],struct item_combo,1); - /* we copy previously alloc'd pointers and just set it to reference */ - memcpy(it->combos[index],id->combos[idx],sizeof(struct item_combo)); - /* we flag this way to ensure we don't double-dealloc same data */ - it->combos[index]->isRef = true; - } - uidb_put(itemdb_combo,id->combos[idx]->id,id->combos[idx]); + itemdb_combo.insert({ id->combos[idx]->id, id->combos[idx] }); } count++; } @@ -1255,333 +1916,291 @@ static void itemdb_roulette_free(void) { static char itemdb_gendercheck(struct item_data *id) { if (id->nameid == WEDDING_RING_M) //Grom Ring - return 1; + return SEX_MALE; if (id->nameid == WEDDING_RING_F) //Bride Ring - return 0; + return SEX_FEMALE; if (id->look == W_MUSICAL && id->type == IT_WEAPON) //Musical instruments are always male-only - return 1; + return SEX_MALE; if (id->look == W_WHIP && id->type == IT_WEAPON) //Whips are always female-only - return 0; + return SEX_FEMALE; - return (battle_config.ignore_items_gender) ? 2 : id->sex; + return (battle_config.ignore_items_gender) ? SEX_BOTH : id->sex; } /** - * [RRInd] - * For backwards compatibility, in Renewal mode, MATK from weapons comes from the atk slot - * We use a ':' delimiter which, if not found, assumes the weapon does not provide any matk. - **/ -static void itemdb_re_split_atoi(char *str, int *val1, int *val2) { - int i, val[2]; + * Convert SQL data to YAML Node + * @param str: Array of parsed SQL data + * @return True on success or false otherwise + */ +static bool itemdb_read_sqldb_sub(char **str) { + YAML::Node node; + int index = -1; - for (i=0; i<2; i++) { - if (!str) break; - val[i] = atoi(str); - str = strchr(str,':'); - if (str) - *str++=0; - } - if( i == 0 ) { - *val1 = *val2 = 0; - return;//no data found - } - if( i == 1 ) {//Single Value - *val1 = val[0]; - *val2 = 0; - return; - } - //We assume we have 2 values. - *val1 = val[0]; - *val2 = val[1]; - return; -} - -/** -* Processes one itemdb entry -*/ -static bool itemdb_parse_dbrow(char** str, const char* source, int line, int scriptopt) { - /* - +----+--------------+---------------+------+-----------+------------+--------+--------+---------+-------+-------+------------+-------------+---------------+-----------------+--------------+-------------+------------+------+--------+--------------+----------------+ - | 00 | 01 | 02 | 03 | 04 | 05 | 06 | 07 | 08 | 09 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | - +----+--------------+---------------+------+-----------+------------+--------+--------+---------+-------+-------+------------+-------------+---------------+-----------------+--------------+-------------+------------+------+--------+--------------+----------------+ - | id | name_english | name_japanese | type | price_buy | price_sell | weight | attack | defence | range | slots | equip_jobs | equip_upper | equip_genders | equip_locations | weapon_level | equip_level | refineable | view | script | equip_script | unequip_script | - +----+--------------+---------------+------+-----------+------------+--------+--------+---------+-------+-------+------------+-------------+---------------+-----------------+--------------+-------------+------------+------+--------+--------------+----------------+ - */ - t_itemid nameid; - struct item_data* id; - - nameid = strtoul(str[0], nullptr, 10); - - if( nameid == 0 || nameid == dummy_item->nameid ) - { - ShowWarning("itemdb_parse_dbrow: Invalid id %d in line %d of \"%s\", skipping.\n", nameid, line, source); - return false; - } - - //ID,Name,Jname,Type,Price,Sell,Weight,ATK,DEF,Range,Slot,Job,Job Upper,Gender,Loc,wLV,eLV,refineable,View - if (!(id = itemdb_exists(nameid))) { - // Checks if the Itemname is already taken by another id - if( itemdb_searchname1(str[1], true) != NULL ) - ShowWarning("itemdb_parse_dbrow: Duplicate item name for \"%s\"\n", str[1]); - - // Adds a new Item ID - id = itemdb_create_item(nameid); - } - - safestrncpy(id->name, str[1], sizeof(id->name)); - safestrncpy(id->jname, str[2], sizeof(id->jname)); - - id->type = atoi(str[3]); - - if( id->type < 0 || id->type == IT_UNKNOWN || id->type == IT_UNKNOWN2 || ( id->type > IT_SHADOWGEAR && id->type < IT_CASH ) || id->type >= IT_MAX ) - {// catch invalid item types - ShowWarning("itemdb_parse_dbrow: Invalid item type %d for item %u. IT_ETC will be used.\n", id->type, nameid); - id->type = IT_ETC; - } - - if (id->type == IT_DELAYCONSUME) - { //Items that are consumed only after target confirmation - id->type = IT_USABLE; - id->flag.delay_consume = 1; - } else //In case of an itemdb reload and the item type changed. - id->flag.delay_consume = 0; - - //When a particular price is not given, we should base it off the other one - //(it is important to make a distinction between 'no price' and 0z) - if ( str[4][0] ) - id->value_buy = atoi(str[4]); - else - id->value_buy = atoi(str[5]) * 2; - - if ( str[5][0] ) - id->value_sell = atoi(str[5]); - else - id->value_sell = id->value_buy / 2; - /* - if ( !str[4][0] && !str[5][0]) - { - ShowWarning("itemdb_parse_dbrow: No buying/selling price defined for item %u (%s), using 20/10z\n", nameid, id->jname); - id->value_buy = 20; - id->value_sell = 10; - } else - */ - if (id->value_buy/124. < id->value_sell/75.) - ShowWarning("itemdb_parse_dbrow: Buying/Selling [%d/%d] price of item %u (%s) allows Zeny making exploit through buying/selling at discounted/overcharged prices!\n", - id->value_buy, id->value_sell, nameid, id->jname); - - id->weight = atoi(str[6]); + node["Id"] = strtoul(str[++index], nullptr, 10); + node["AegisName"] = str[++index]; + node["Name"] = str[++index]; + node["Type"] = str[++index]; + if (*str[++index]) + node["SubType"] = str[index]; + if (atoi(str[++index]) != 0) + node["Buy"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + node["Sell"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + node["Weight"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + node["Attack"] = atoi(str[index]); #ifdef RENEWAL - itemdb_re_split_atoi(str[7],&id->atk,&id->matk); -#else - id->atk = atoi(str[7]); + if (atoi(str[++index]) != 0) + node["MagicAttack"] = atoi(str[index]); #endif - id->def = atoi(str[8]); - id->range = atoi(str[9]); - id->slot = atoi(str[10]); + if (atoi(str[++index]) != 0) + node["Defense"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + node["Range"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + node["Slots"] = atoi(str[index]); - if (id->slot > MAX_SLOTS) - { - ShowWarning("itemdb_parse_dbrow: Item %u (%s) specifies %d slots, but the server only supports up to %d. Using %d slots.\n", nameid, id->jname, id->slot, MAX_SLOTS, MAX_SLOTS); - id->slot = MAX_SLOTS; - } + YAML::Node jobs; - itemdb_jobid2mapid(id->class_base, (uint64)strtoull(str[11],NULL,0)); - id->class_upper = atoi(str[12]); - id->sex = atoi(str[13]); - id->equip = atoi(str[14]); + if (atoi(str[++index]) != 0) + jobs["All"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + jobs["Acolyte"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + jobs["Alchemist"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + jobs["Archer"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + jobs["Assassin"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + jobs["BardDancer"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + jobs["Blacksmith"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + jobs["Crusader"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + jobs["Gunslinger"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + jobs["Hunter"] = atoi(str[index]); +#ifdef RENEWAL + if (atoi(str[++index]) != 0) + jobs["KagerouOboro"] = atoi(str[index]); +#endif + if (atoi(str[++index]) != 0) + jobs["Knight"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + jobs["Mage"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + jobs["Merchant"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + jobs["Monk"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + jobs["Ninja"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + jobs["Novice"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + jobs["Priest"] = atoi(str[index]); +#ifdef RENEWAL + if (atoi(str[++index]) != 0) + jobs["Rebellion"] = atoi(str[index]); +#endif + if (atoi(str[++index]) != 0) + jobs["Rogue"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + jobs["Sage"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + jobs["SoulLinker"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + jobs["StarGladiator"] = atoi(str[index]); +#ifdef RENEWAL + if (atoi(str[++index]) != 0) + jobs["Summoner"] = atoi(str[index]); +#endif + if (atoi(str[++index]) != 0) + jobs["SuperNovice"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + jobs["Swordman"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + jobs["Taekwon"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + jobs["Thief"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + jobs["Wizard"] = atoi(str[index]); + node["Jobs"] = jobs; - if (!id->equip && itemdb_isequip2(id)) - { - ShowWarning("Item %u (%s) is an equipment with no equip-field! Making it an etc item.\n", nameid, id->jname); - id->type = IT_ETC; - } + YAML::Node classes; - if( id->type != IT_SHADOWGEAR && id->equip&EQP_SHADOW_GEAR ) - { - ShowWarning("Item %u (%s) have invalid equipment slot! Making it an etc item.\n", nameid, id->jname); - id->type = IT_ETC; - } + if (atoi(str[++index]) != 0) + classes["All"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + classes["Normal"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + classes["Upper"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + classes["Baby"] = atoi(str[index]); +#ifdef RENEWAL + if (atoi(str[++index]) != 0) + classes["Third"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + classes["Third_Upper"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + classes["Third_Baby"] = atoi(str[index]); +#endif + node["Classes"] = classes; - id->wlv = cap_value(atoi(str[15]), REFINE_TYPE_ARMOR, REFINE_TYPE_MAX); - itemdb_re_split_atoi(str[16],&id->elv,&id->elvmax); - id->flag.no_refine = atoi(str[17]) ? 0 : 1; //FIXME: verify this - id->look = atoi(str[18]); + if (atoi(str[++index]) != 0) + node["Gender"] = str[index]; - id->flag.available = 1; - id->view_id = 0; - id->sex = itemdb_gendercheck(id); //Apply gender filtering. + YAML::Node locations; - if (id->script) { - script_free_code(id->script); - id->script = NULL; - } - if (id->equip_script) { - script_free_code(id->equip_script); - id->equip_script = NULL; - } - if (id->unequip_script) { - script_free_code(id->unequip_script); - id->unequip_script = NULL; - } + if (atoi(str[++index]) != 0) + locations["All"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + locations["Head_Top"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + locations["Head_Mid"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + locations["Head_Low"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + locations["Armor"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + locations["Left_Hand"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + locations["Right_Hand"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + locations["Garment"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + locations["Shoes"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + locations["Right_Accessory"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + locations["Left_Accessory"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + locations["Costume_Head_Top"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + locations["Costume_Head_Mid"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + locations["Costume_Head_Low"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + locations["Costume_Garment"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + locations["Ammo"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + locations["Shadow_Armor"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + locations["Shadow_Weapon"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + locations["Shadow_Shield"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + locations["Shadow_Shoes"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + locations["Shadow_Right_Accessory"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + locations["Shadow_Left_Accessory"] = atoi(str[index]); + node["Locations"] = locations; - if (*str[19]) - id->script = parse_script(str[19], source, line, scriptopt); - if (*str[20]) - id->equip_script = parse_script(str[20], source, line, scriptopt); - if (*str[21]) - id->unequip_script = parse_script(str[21], source, line, scriptopt); + if (atoi(str[++index]) != 0) + node["WeaponLevel"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + node["EquipLevelMin"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + node["EquipLevelMax"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + node["Refineable"] = true; + if (atoi(str[++index]) != 0) + node["View"] = atoi(str[index]); + if (*str[++index]) + node["AliasName"] = str[index]; - if (!id->nameid) { - id->nameid = nameid; - uidb_put(itemdb, nameid, id); - } - return true; + YAML::Node flags; + + if (atoi(str[++index]) != 0) + flags["BuyingStore"] = true; + if (atoi(str[++index]) != 0) + flags["DeadBranch"] = true; + if (atoi(str[++index]) != 0) + flags["Container"] = true; + if (atoi(str[++index]) != 0) + flags["UniqueId"] = true; + if (atoi(str[++index]) != 0) + flags["BindOnEquip"] = true; + if (atoi(str[++index]) != 0) + flags["DropAnnounce"] = true; + if (atoi(str[++index]) != 0) + flags["NoConsume"] = true; + if (*str[++index]) + flags["DropEffect"] = str[index]; + node["Flags"] = flags; + + YAML::Node delay; + + if (atoi(str[++index]) != 0) + delay["Duration"] = atoi(str[index]); + if (*str[++index]) + delay["Status"] = str[index]; + node["Delay"] = delay; + + YAML::Node stack; + + if (atoi(str[++index]) != 0) + stack["Amount"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + stack["Inventory"] = true; + if (atoi(str[++index]) != 0) + stack["Cart"] = true; + if (atoi(str[++index]) != 0) + stack["Storage"] = true; + if (atoi(str[++index]) != 0) + stack["GuildStorage"] = true; + node["Stack"] = stack; + + YAML::Node nouse; + + if (atoi(str[++index]) != 0) + nouse["Override"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + nouse["Sitting"] = true; + node["NoUse"] = nouse; + + YAML::Node trade; + + if (atoi(str[++index]) != 0) + trade["Override"] = atoi(str[index]); + if (atoi(str[++index]) != 0) + trade["NoDrop"] = true; + if (atoi(str[++index]) != 0) + trade["NoTrade"] = true; + if (atoi(str[++index]) != 0) + trade["TradePartner"] = true; + if (atoi(str[++index]) != 0) + trade["NoSell"] = true; + if (atoi(str[++index]) != 0) + trade["NoCart"] = true; + if (atoi(str[++index]) != 0) + trade["NoStorage"] = true; + if (atoi(str[++index]) != 0) + trade["NoGuildStorage"] = true; + if (atoi(str[++index]) != 0) + trade["NoMail"] = true; + if (atoi(str[++index]) != 0) + trade["NoAuction"] = true; + node["Trade"] = trade; + + if (*str[++index]) + node["Script"] = str[index]; + if (*str[++index]) + node["EquipScript"] = str[index]; + if (*str[++index]) + node["UnEquipScript"] = str[index]; + + return item_db.parseBodyNode(node) > 0; } /** -* Read item from item db -* item_db2 overwriting item_db -*/ -static int itemdb_readdb(void){ - const char* filename[] = { - DBPATH"item_db.txt", - DBIMPORT"/item_db.txt" - }; - - int fi; - - for( fi = 0; fi < ARRAYLENGTH(filename); ++fi ) { - uint32 lines = 0, count = 0; - char line[1024]; - - char path[256]; - FILE* fp; - - sprintf(path, "%s/%s", db_path, filename[fi]); - fp = fopen(path, "r"); - if( fp == NULL ) { - ShowWarning("itemdb_readdb: File not found \"%s\", skipping.\n", path); - continue; - } - - // process rows one by one - while(fgets(line, sizeof(line), fp)) - { - char *str[32], *p; - int i; - lines++; - if(line[0] == '/' && line[1] == '/') - continue; - memset(str, 0, sizeof(str)); - - p = strstr(line,"//"); - - if( p != nullptr ){ - *p = '\0'; - } - - p = line; - while( ISSPACE(*p) ) - ++p; - if( *p == '\0' ) - continue;// empty line - for( i = 0; i < 19; ++i ) - { - str[i] = p; - p = strchr(p,','); - if( p == NULL ) - break;// comma not found - *p = '\0'; - ++p; - } - - if( p == NULL ) - { - ShowError("itemdb_readdb: Insufficient columns in line %d of \"%s\" (item with id %d), skipping.\n", lines, path, atoi(str[0])); - continue; - } - - // Script - if( *p != '{' ) - { - ShowError("itemdb_readdb: Invalid format (Script column) in line %d of \"%s\" (item with id %d), skipping.\n", lines, path, atoi(str[0])); - continue; - } - str[19] = p + 1; - p = strstr(p+1,"},"); - if( p == NULL ) - { - ShowError("itemdb_readdb: Invalid format (Script column) in line %d of \"%s\" (item with id %d), skipping.\n", lines, path, atoi(str[0])); - continue; - } - *p = '\0'; - p += 2; - - // OnEquip_Script - if( *p != '{' ) - { - ShowError("itemdb_readdb: Invalid format (OnEquip_Script column) in line %d of \"%s\" (item with id %d), skipping.\n", lines, path, atoi(str[0])); - continue; - } - str[20] = p + 1; - p = strstr(p+1,"},"); - if( p == NULL ) - { - ShowError("itemdb_readdb: Invalid format (OnEquip_Script column) in line %d of \"%s\" (item with id %d), skipping.\n", lines, path, atoi(str[0])); - continue; - } - *p = '\0'; - p += 2; - - // OnUnequip_Script (last column) - if( *p != '{' ) - { - ShowError("itemdb_readdb: Invalid format (OnUnequip_Script column) in line %d of \"%s\" (item with id %d), skipping.\n", lines, path, atoi(str[0])); - continue; - } - str[21] = p; - p = &str[21][strlen(str[21]) - 2]; - - if ( *p != '}' ) { - /* lets count to ensure it's not something silly e.g. a extra space at line ending */ - int v, lcurly = 0, rcurly = 0; - - for( v = 0; v < strlen(str[21]); v++ ) { - if( str[21][v] == '{' ) - lcurly++; - else if (str[21][v] == '}') { - rcurly++; - p = &str[21][v]; - } - } - - if( lcurly != rcurly ) { - ShowError("itemdb_readdb: Mismatching curly braces in line %d of \"%s\" (item with id %d), skipping.\n", lines, path, atoi(str[0])); - continue; - } - } - str[21] = str[21] + 1; //skip the first left curly - *p = '\0'; //null the last right curly - - if (!itemdb_parse_dbrow(str, path, lines, SCRIPT_IGNORE_EXTERNAL_BRACKETS)) - continue; - - count++; - } - - fclose(fp); - - ShowStatus("Done reading '" CL_WHITE "%u" CL_RESET "' entries in '" CL_WHITE "%s" CL_RESET "'.\n", count, path); - } - - return 0; -} - -/** -* Read item_db table -*/ + * Read SQL item_db table + */ static int itemdb_read_sqldb(void) { - const char* item_db_name[] = { item_table, item2_table @@ -1589,7 +2208,7 @@ static int itemdb_read_sqldb(void) { int fi; for( fi = 0; fi < ARRAYLENGTH(item_db_name); ++fi ) { - uint32 lines = 0, count = 0; + uint32 count = 0; // retrieve all rows from the item database if( SQL_ERROR == Sql_Query(mmysql_handle, "SELECT * FROM `%s`", item_db_name[fi]) ) { @@ -1599,17 +2218,22 @@ static int itemdb_read_sqldb(void) { // process rows one by one while( SQL_SUCCESS == Sql_NextRow(mmysql_handle) ) {// wrap the result into a TXT-compatible format - char* str[22]; char dummy[256] = ""; - int i; - ++lines; - for( i = 0; i < 22; ++i ) { - Sql_GetData(mmysql_handle, i, &str[i], NULL); - if( str[i] == NULL ) +#ifdef RENEWAL + char *str[52]; + uint16 total_columns = 52; +#else + char *str[51]; + uint16 total_columns = 51; +#endif + + for( uint16 i = 0; i < total_columns; ++i ) { + Sql_GetData(mmysql_handle, i, &str[i], nullptr); + if( str[i] == nullptr ) str[i] = dummy; // get rid of NULL columns } - if (!itemdb_parse_dbrow(str, item_db_name[fi], lines, SCRIPT_IGNORE_EXTERNAL_BRACKETS)) + if (!itemdb_read_sqldb_sub(str)) continue; ++count; } @@ -1848,7 +2472,7 @@ static void itemdb_read(void) { if (db_use_sqldbs) itemdb_read_sqldb(); else - itemdb_readdb(); + item_db.load(); for(i=0; i 0); - sv_readdb(dbsubpath2, "item_stack.txt", ',', 3, 3, -1, &itemdb_read_stack, i > 0); - sv_readdb(dbsubpath1, "item_nouse.txt", ',', 3, 3, -1, &itemdb_read_nouse, i > 0); + sv_readdb(dbsubpath2, "item_group_db.txt", ',', 2, 10, -1, &itemdb_read_group, i > 0); sv_readdb(dbsubpath2, "item_bluebox.txt", ',', 2, 10, -1, &itemdb_read_group, i > 0); sv_readdb(dbsubpath2, "item_violetbox.txt", ',', 2, 10, -1, &itemdb_read_group, i > 0); @@ -1882,10 +2503,6 @@ static void itemdb_read(void) { itemdb_read_combos(dbsubpath2,i > 0); //TODO change this to sv_read ? id#script ? itemdb_read_randomopt(dbsubpath2, i > 0); sv_readdb(dbsubpath2, "item_noequip.txt", ',', 2, 2, -1, &itemdb_read_noequip, i > 0); - sv_readdb(dbsubpath2, "item_trade.txt", ',', 3, 3, -1, &itemdb_read_itemtrade, i > 0); - sv_readdb(dbsubpath2, "item_delay.txt", ',', 2, 3, -1, &itemdb_read_itemdelay, i > 0); - sv_readdb(dbsubpath2, "item_buyingstore.txt", ',', 1, 1, -1, &itemdb_read_buyingstore, i > 0); - sv_readdb(dbsubpath2, "item_flag.txt", ',', 2, 2, -1, &itemdb_read_flag, i > 0); sv_readdb(dbsubpath2, "item_randomopt_group.txt", ',', 5, 2+5*MAX_ITEM_RDM_OPT, -1, &itemdb_read_randomopt_group, i > 0); aFree(dbsubpath1); aFree(dbsubpath2); @@ -1896,50 +2513,6 @@ static void itemdb_read(void) { * Initialize / Finalize *------------------------------------------*/ -/** -* Destroys the item_data. -*/ -static void destroy_item_data(struct item_data* self) { - if( self == NULL ) - return; - // free scripts - if( self->script ) - script_free_code(self->script); - if( self->equip_script ) - script_free_code(self->equip_script); - if( self->unequip_script ) - script_free_code(self->unequip_script); - if( self->combos_count ) { - int i; - for( i = 0; i < self->combos_count; i++ ) { - if( !self->combos[i]->isRef ) { - aFree(self->combos[i]->nameid); - if (self->combos[i]->script) - script_free_code(self->combos[i]->script); - } - aFree(self->combos[i]); - } - aFree(self->combos); - } -#if defined(DEBUG) - // trash item - memset(self, 0xDD, sizeof(struct item_data)); -#endif - // free self - aFree(self); -} - -/** - * @see DBApply - */ -static int itemdb_final_sub(DBKey key, DBData *data, va_list ap) -{ - struct item_data *id = (struct item_data *)db_data2ptr(data); - - destroy_item_data(id); - return 0; -} - /** NOTE: * In some OSs, like Raspbian, we aren't allowed to pass 0 in va_list. * So, itemdb_group_free2 is useful in some cases. @@ -2006,11 +2579,11 @@ void itemdb_reload(void) { struct s_mapiterator* iter; struct map_session_data* sd; + item_db.clear(); + itemdb_combo.clear(); itemdb_group->clear(itemdb_group, itemdb_group_free); itemdb_randomopt->clear(itemdb_randomopt, itemdb_randomopt_free); itemdb_randomopt_group->clear(itemdb_randomopt_group, itemdb_randomopt_group_free); - itemdb->clear(itemdb, itemdb_final_sub); - db_clear(itemdb_combo); if (battle_config.feature_roulette) itemdb_roulette_free(); @@ -2027,17 +2600,7 @@ void itemdb_reload(void) { iter = mapit_geteachpc(); for( sd = (struct map_session_data*)mapit_first(iter); mapit_exists(iter); sd = (struct map_session_data*)mapit_next(iter) ) { memset(sd->item_delay, 0, sizeof(sd->item_delay)); // reset item delays - - if( sd->combos.count ) { // clear combo bonuses - aFree(sd->combos.bonus); - aFree(sd->combos.id); - aFree(sd->combos.pos); - sd->combos.bonus = nullptr; - sd->combos.id = nullptr; - sd->combos.pos = nullptr; - sd->combos.count = 0; - } - + sd->combos.clear(); // clear combo bonuses pc_setinventorydata(sd); pc_check_available_item(sd, ITMCHK_ALL); // Check for invalid(ated) items. pc_load_combo(sd); // Check to see if new combos are available @@ -2050,12 +2613,11 @@ void itemdb_reload(void) { * Finalizing Item DB */ void do_final_itemdb(void) { - db_destroy(itemdb_combo); + item_db.clear(); + itemdb_combo.clear(); itemdb_group->destroy(itemdb_group, itemdb_group_free); itemdb_randomopt->destroy(itemdb_randomopt, itemdb_randomopt_free); itemdb_randomopt_group->destroy(itemdb_randomopt_group, itemdb_randomopt_group_free); - itemdb->destroy(itemdb, itemdb_final_sub); - destroy_item_data(dummy_item); if (battle_config.feature_roulette) itemdb_roulette_free(); } @@ -2064,8 +2626,6 @@ void do_final_itemdb(void) { * Initializing Item DB */ void do_init_itemdb(void) { - itemdb = uidb_alloc(DB_OPT_BASE); - itemdb_combo = uidb_alloc(DB_OPT_BASE); itemdb_group = uidb_alloc(DB_OPT_BASE); itemdb_randomopt = uidb_alloc(DB_OPT_BASE); itemdb_randomopt_group = uidb_alloc(DB_OPT_BASE); diff --git a/src/map/itemdb.hpp b/src/map/itemdb.hpp index 8f264273b8..108cda7f75 100644 --- a/src/map/itemdb.hpp +++ b/src/map/itemdb.hpp @@ -4,10 +4,17 @@ #ifndef ITEMDB_HPP #define ITEMDB_HPP +#include + +#include "../common/database.hpp" #include "../common/db.hpp" +#include "../common/malloc.hpp" #include "../common/mmo.hpp" // ITEM_NAME_LENGTH +#include "script.hpp" +#include "status.hpp" +enum e_ammo_type : uint8; ///Use apple for unknown items. const t_itemid UNKNOWN_ITEM_ID = 512; @@ -207,36 +214,23 @@ enum poison_item_list : t_itemid ITEMID_VENOMBLEED, }; -///Item No Use List -enum item_nouse_list -{ - NOUSE_SITTING = 0x01, -}; - ///Item job -enum e_item_job +enum e_item_job : uint16 { + ITEMJ_NONE = 0x00, ITEMJ_NORMAL = 0x01, ITEMJ_UPPER = 0x02, ITEMJ_BABY = 0x04, ITEMJ_THIRD = 0x08, - ITEMJ_THIRD_TRANS = 0x10, + ITEMJ_THIRD_UPPER = 0x10, ITEMJ_THIRD_BABY = 0x20, -}; + ITEMJ_MAX = 0xFF, -enum e_item_ammo -{ - AMMO_ARROW = 1, - AMMO_THROWABLE_DAGGER, - AMMO_BULLET, - AMMO_SHELL, - AMMO_GRENADE, - AMMO_SHURIKEN, - AMMO_KUNAI, - AMMO_CANNONBALL, - AMMO_THROWABLE_ITEM, ///Sling items - - MAX_AMMO_TYPE, +#ifdef RENEWAL + ITEMJ_ALL = ITEMJ_NORMAL | ITEMJ_UPPER | ITEMJ_BABY | ITEMJ_THIRD | ITEMJ_THIRD_UPPER | ITEMJ_THIRD_BABY, +#else + ITEMJ_ALL = ITEMJ_NORMAL | ITEMJ_UPPER | ITEMJ_BABY, +#endif }; #define AMMO_TYPE_ALL ((1< nameid; + script_code *script; + uint32 id; + + ~s_item_combo() { + if (this->script) { + script_free_code(this->script); + this->script = nullptr; + } + + this->nameid.clear(); + } +}; /// Struct of item group entry struct s_item_group_entry @@ -808,34 +826,34 @@ extern struct s_roulette_db rd; struct item_data { t_itemid nameid; - char name[ITEM_NAME_LENGTH],jname[ITEM_NAME_LENGTH]; + std::string name, ename; //Do not add stuff between value_buy and view_id (see how getiteminfo works) - int value_buy; - int value_sell; - int type; + uint32 value_buy; + uint32 value_sell; + item_types type; + uint8 subtype; int maxchance; //For logs, for external game info, for scripts: Max drop chance of this item (e.g. 0.01% , etc.. if it = 0, then monsters don't drop it, -1 denotes items sold in shops only) [Lupus] - int sex; - int equip; - int weight; - int atk; - int def; - int range; - int slot; - int look; - int elv; - int wlv; + uint8 sex; + uint32 equip; + uint32 weight; + uint32 atk; + uint32 def; + uint16 range; + uint16 slots; + uint32 look; + uint16 elv; + uint16 wlv; t_itemid view_id; - int elvmax; ///< Maximum level for this item + uint16 elvmax; ///< Maximum level for this item #ifdef RENEWAL - int matk; + uint32 matk; #endif - int delay; //Lupus: I rearranged order of these fields due to compatibility with ITEMINFO script command // some script commands should be revised as well... uint64 class_base[3]; //Specifies if the base can wear this item (split in 3 indexes per type: 1-1, 2-1, 2-2) - unsigned class_upper : 6; //Specifies if the class-type can equip it (0x01: normal, 0x02: trans, 0x04: baby, 0x08:third, 0x10:trans-third, 0x20-third-baby) + uint16 class_upper; //Specifies if the class-type can equip it (See e_item_job) struct { int chance; int id; @@ -847,33 +865,52 @@ struct item_data unsigned available : 1; uint32 no_equip; unsigned no_refine : 1; // [celest] - unsigned delay_consume : 2; // 1 - Signifies items that are not consumed immediately upon double-click; 2 - Signifies items that are not removed on consumption [Skotlex] - unsigned trade_restriction : 9; //Item restrictions mask [Skotlex] + unsigned delay_consume; // [Skotlex] + struct { + bool drop, trade, trade_partner, sell, cart, storage, guild_storage, mail, auction; + } trade_restriction; //Item restrictions mask [Skotlex] unsigned autoequip: 1; - unsigned buyingstore : 1; - unsigned dead_branch : 1; // As dead branch item. Logged at `branchlog` table and cannot be used at 'nobranch' mapflag [Cydh] - unsigned group : 1; // As item group container [Cydh] + bool buyingstore; + bool dead_branch; // As dead branch item. Logged at `branchlog` table and cannot be used at 'nobranch' mapflag [Cydh] + bool group; // As item group container [Cydh] unsigned guid : 1; // This item always be attached with GUID and make it as bound item! [Cydh] - unsigned broadcast : 1; ///< Will be broadcasted if someone obtain the item [Cydh] + bool broadcast; ///< Will be broadcasted if someone obtain the item [Cydh] bool bindOnEquip; ///< Set item as bound when equipped - uint8 dropEffect; ///< Drop Effect Mode + e_item_drop_effect dropEffect; ///< Drop Effect Mode } flag; struct {// item stacking limitation - unsigned short amount; - unsigned int inventory:1; - unsigned int cart:1; - unsigned int storage:1; - unsigned int guildstorage:1; + uint16 amount; + bool inventory, cart, storage, guild_storage; } stack; - struct {// used by item_nouse.txt - unsigned int flag; - unsigned short override; + struct { + uint16 override; + bool sitting; } item_usage; short gm_lv_trade_override; //GM-level to override trade_restriction - /* bugreport:309 */ - struct item_combo **combos; - unsigned char combos_count; - short delay_sc; ///< Use delay group if any instead using player's item_delay data [Cydh] + std::vector> combos; + struct { + uint32 duration; + sc_type sc; ///< Use delay group if any instead using player's item_delay data [Cydh] + } delay; + + ~item_data() { + if (this->script){ + script_free_code(this->script); + this->script = nullptr; + } + + if (this->equip_script){ + script_free_code(this->equip_script); + this->equip_script = nullptr; + } + + if (this->unequip_script){ + script_free_code(this->unequip_script); + this->unequip_script = nullptr; + } + + this->combos.clear(); + } bool isStackable(); int inventorySlotNeeded(int quantity); @@ -904,14 +941,27 @@ struct s_random_opt_group { uint16 total; }; +class ItemDatabase : public TypesafeCachedYamlDatabase { +public: + ItemDatabase() : TypesafeCachedYamlDatabase("ITEM_DB", 1) { + + } + + const std::string getDefaultLocation(); + uint64 parseBodyNode(const YAML::Node& node); +}; + +extern ItemDatabase item_db; + struct item_data* itemdb_searchname(const char *name); struct item_data* itemdb_search_aegisname( const char *str ); int itemdb_searchname_array(struct item_data** data, int size, const char *str); struct item_data* itemdb_search(t_itemid nameid); struct item_data* itemdb_exists(t_itemid nameid); -#define itemdb_name(n) itemdb_search(n)->name -#define itemdb_jname(n) itemdb_search(n)->jname +#define itemdb_name(n) itemdb_search(n)->name.c_str() +#define itemdb_ename(n) itemdb_search(n)->ename.c_str() #define itemdb_type(n) itemdb_search(n)->type +#define itemdb_subtype(n) itemdb_search(n)->subtype #define itemdb_atk(n) itemdb_search(n)->atk #define itemdb_def(n) itemdb_search(n)->def #define itemdb_look(n) itemdb_search(n)->look @@ -921,14 +971,14 @@ struct item_data* itemdb_exists(t_itemid nameid); #define itemdb_equipscript(n) itemdb_search(n)->script #define itemdb_wlv(n) itemdb_search(n)->wlv #define itemdb_range(n) itemdb_search(n)->range -#define itemdb_slot(n) itemdb_search(n)->slot +#define itemdb_slots(n) itemdb_search(n)->slots #define itemdb_available(n) (itemdb_search(n)->flag.available) #define itemdb_traderight(n) (itemdb_search(n)->flag.trade_restriction) #define itemdb_viewid(n) (itemdb_search(n)->view_id) #define itemdb_autoequip(n) (itemdb_search(n)->flag.autoequip) #define itemdb_dropeffect(n) (itemdb_search(n)->flag.dropEffect) const char* itemdb_typename(enum item_types type); -const char *itemdb_typename_ammo (enum e_item_ammo ammo); +const char *itemdb_typename_ammo (e_ammo_type ammo); struct s_item_group_entry *itemdb_get_randgroupitem(uint16 group_id, uint8 sub_group); t_itemid itemdb_searchrandomid(uint16 group_id, uint8 sub_group); @@ -965,7 +1015,7 @@ bool itemdb_isstackable2(struct item_data *id); #define itemdb_isstackable(nameid) itemdb_isstackable2(itemdb_search(nameid)) bool itemdb_isNoEquip(struct item_data *id, uint16 m); -struct item_combo *itemdb_combo_exists(unsigned short combo_id); +s_item_combo *itemdb_combo_exists(uint32 combo_id); struct s_item_group_db *itemdb_group_exists(unsigned short group_id); bool itemdb_group_item_exists(unsigned short group_id, t_itemid nameid); diff --git a/src/map/map-server.vcxproj b/src/map/map-server.vcxproj index 96bbae78dc..03de25111b 100644 --- a/src/map/map-server.vcxproj +++ b/src/map/map-server.vcxproj @@ -311,25 +311,18 @@ - - - - - + - - - diff --git a/src/map/map.cpp b/src/map/map.cpp index 7011017c85..3e5de44e22 100644 --- a/src/map/map.cpp +++ b/src/map/map.cpp @@ -1841,7 +1841,7 @@ int map_addflooritem(struct item *item, int amount, int16 m, int16 x, int16 y, i nullpo_ret(item); - if (!(flags&4) && battle_config.item_onfloor && (itemdb_traderight(item->nameid)&1)) + if (!(flags&4) && battle_config.item_onfloor && (itemdb_traderight(item->nameid).trade)) return 0; //can't be dropped if (!map_searchrandfreecell(m,&x,&y,flags&2?1:0)) diff --git a/src/map/map.hpp b/src/map/map.hpp index ccb1f8394c..f2d8aa2d78 100644 --- a/src/map/map.hpp +++ b/src/map/map.hpp @@ -73,6 +73,7 @@ void map_msg_reload(void); #define MAPID_BASEMASK 0x00ff #define MAPID_UPPERMASK 0x0fff #define MAPID_THIRDMASK (JOBL_THIRD|MAPID_UPPERMASK) +#define MAPID_ALL 0xffff //First Jobs //Note the oddity of the novice: diff --git a/src/map/mob.cpp b/src/map/mob.cpp index 0a8b03d5bd..97d15eb8dc 100644 --- a/src/map/mob.cpp +++ b/src/map/mob.cpp @@ -2794,7 +2794,7 @@ int mob_dead(struct mob_data *md, struct block_list *src, int type) //A Rare Drop Global Announce by Lupus if( mvp_sd && drop_rate <= battle_config.rare_drop_announce ) { char message[128]; - sprintf (message, msg_txt(NULL,541), mvp_sd->status.name, md->name, it->jname, (float)drop_rate/100); + sprintf (message, msg_txt(NULL,541), mvp_sd->status.name, md->name, it->ename.c_str(), (float)drop_rate/100); //MSG: "'%s' won %s's %s (chance: %0.02f%%)" intif_broadcast(message,strlen(message)+1,BC_DEFAULT); } @@ -2948,7 +2948,7 @@ int mob_dead(struct mob_data *md, struct block_list *src, int type) //A Rare MVP Drop Global Announce by Lupus if(temp<=battle_config.rare_drop_announce) { char message[128]; - sprintf (message, msg_txt(NULL,541), mvp_sd->status.name, md->name, i_data->jname, temp/100.); + sprintf (message, msg_txt(NULL,541), mvp_sd->status.name, md->name, i_data->ename.c_str(), temp/100.); //MSG: "'%s' won %s's %s (chance: %0.02f%%)" intif_broadcast(message,strlen(message)+1,BC_DEFAULT); } @@ -4530,7 +4530,7 @@ uint64 MobAvailDatabase::parseBodyNode(const YAML::Node &node) { if (!this->asString(node, "Weapon", weapon)) return 0; - struct item_data *item = itemdb_searchname(weapon.c_str()); + struct item_data *item = itemdb_search_aegisname(weapon.c_str()); if (item == nullptr) { this->invalidWarning(node["Weapon"], "Weapon %s is not a valid item.\n", weapon.c_str()); @@ -4551,7 +4551,7 @@ uint64 MobAvailDatabase::parseBodyNode(const YAML::Node &node) { if (!this->asString(node, "Shield", shield)) return 0; - struct item_data *item = itemdb_searchname(shield.c_str()); + struct item_data *item = itemdb_search_aegisname(shield.c_str()); if (item == nullptr) { this->invalidWarning(node["Shield"], "Shield %s is not a valid item.\n", shield.c_str()); @@ -4574,7 +4574,7 @@ uint64 MobAvailDatabase::parseBodyNode(const YAML::Node &node) { struct item_data *item; - if ((item = itemdb_searchname(head.c_str())) == nullptr) { + if ((item = itemdb_search_aegisname(head.c_str())) == nullptr) { this->invalidWarning(node["HeadTop"], "HeadTop %s is not a valid item.\n", head.c_str()); return 0; } @@ -4593,7 +4593,7 @@ uint64 MobAvailDatabase::parseBodyNode(const YAML::Node &node) { if (!this->asString(node, "HeadMid", head)) return 0; - struct item_data *item = itemdb_searchname(head.c_str()); + struct item_data *item = itemdb_search_aegisname(head.c_str()); if (item == nullptr) { this->invalidWarning(node["HeadMid"], "HeadMid %s is not a valid item.\n", head.c_str()); @@ -4614,7 +4614,7 @@ uint64 MobAvailDatabase::parseBodyNode(const YAML::Node &node) { if (!this->asString(node, "HeadLow", head)) return 0; - struct item_data *item = itemdb_searchname(head.c_str()); + struct item_data *item = itemdb_search_aegisname(head.c_str()); if (item == nullptr) { this->invalidWarning(node["HeadLow"], "HeadLow %s is not a valid item.\n", head.c_str()); @@ -4637,7 +4637,7 @@ uint64 MobAvailDatabase::parseBodyNode(const YAML::Node &node) { if (!this->asString(node, "PetEquip", equipment)) return 0; - struct item_data *item = itemdb_searchname(equipment.c_str()); + struct item_data *item = itemdb_search_aegisname(equipment.c_str()); if (item == nullptr) { this->invalidWarning(node["PetEquip"], "PetEquip %s is not a valid item.\n", equipment.c_str()); diff --git a/src/map/npc.cpp b/src/map/npc.cpp index 4720b92090..8259a7f8c0 100644 --- a/src/map/npc.cpp +++ b/src/map/npc.cpp @@ -1614,7 +1614,7 @@ static enum e_CASHSHOP_ACK npc_cashshop_process_payment(struct npc_data *nd, int memset(output, '\0', sizeof(output)); - sprintf(output, msg_txt(sd, 712), id->jname, id->nameid); // You do not have enough %s (%u). + sprintf(output, msg_txt(sd, 712), id->ename.c_str(), id->nameid); // You do not have enough %s (%u). clif_messagecolor(&sd->bl, color_table[COLOR_RED], output, false, SELF); return ERROR_TYPE_PURCHASE_FAIL; } @@ -1797,7 +1797,7 @@ void npc_shop_currency_type(struct map_session_data *sd, struct npc_data *nd, in memset(output, '\0', sizeof(output)); - sprintf(output, msg_txt(sd, 714), id->jname, id->nameid); // Item Shop List: %s (%u) + sprintf(output, msg_txt(sd, 714), id->ename.c_str(), id->nameid); // Item Shop List: %s (%u) clif_broadcast(&sd->bl, output, strlen(output) + 1, BC_BLUE,SELF); } @@ -1886,7 +1886,7 @@ int npc_cashshop_buy(struct map_session_data *sd, t_itemid nameid, int amount, i if( (double)nd->u.shop.shop_item[i].value * amount > INT_MAX ) { - ShowWarning("npc_cashshop_buy: Item '%s' (%u) price overflow attempt!\n", item->name, nameid); + ShowWarning("npc_cashshop_buy: Item '%s' (%u) price overflow attempt!\n", item->name.c_str(), nameid); ShowDebug("(NPC:'%s' (%s,%d,%d), player:'%s' (%d/%d), value:%d, amount:%d)\n", nd->exname, map_mapid2mapname(nd->bl.m), nd->bl.x, nd->bl.y, sd->status.name, sd->status.account_id, sd->status.char_id, nd->u.shop.shop_item[i].value, amount); return ERROR_TYPE_ITEM_ID; @@ -3004,15 +3004,15 @@ static const char* npc_parse_shop(char* w1, char* w2, char* w3, char* w4, const } if (value == 0 && (type == NPCTYPE_SHOP || type == NPCTYPE_MARKETSHOP)) { // NPC selling items for free! ShowWarning("npc_parse_shop: Item %s [%u] is being sold for FREE in file '%s', line '%d'.\n", - id->name, nameid2, filepath, strline(buffer,start-buffer)); + id->name.c_str(), nameid2, filepath, strline(buffer,start-buffer)); } if( type == NPCTYPE_SHOP && value*0.75 < id->value_sell*1.24 ) { // Exploit possible: you can buy and sell back with profit ShowWarning("npc_parse_shop: Item %s [%u] discounted buying price (%d->%d) is less than overcharged selling price (%d->%d) at file '%s', line '%d'.\n", - id->name, nameid2, value, (int)(value*0.75), id->value_sell, (int)(id->value_sell*1.24), filepath, strline(buffer,start-buffer)); + id->name.c_str(), nameid2, value, (int)(value*0.75), id->value_sell, (int)(id->value_sell*1.24), filepath, strline(buffer,start-buffer)); } if (type == NPCTYPE_MARKETSHOP && (!qty || qty > UINT16_MAX)) { ShowWarning("npc_parse_shop: Item %s [%u] is stocked with invalid value %d, changed to 1. File '%s', line '%d'.\n", - id->name, nameid2, qty, filepath, strline(buffer,start-buffer)); + id->name.c_str(), nameid2, qty, filepath, strline(buffer,start-buffer)); qty = 1; } //for logs filters, atcommands and iteminfo script command diff --git a/src/map/pc.cpp b/src/map/pc.cpp index e9247938ff..ab737fef6f 100755 --- a/src/map/pc.cpp +++ b/src/map/pc.cpp @@ -836,7 +836,7 @@ bool pc_can_sell_item(struct map_session_data *sd, struct item *item, enum npc_s return true; else if (!item->bound) { struct item_data *itd = itemdb_search(item->nameid); - if (itd && itd->flag.trade_restriction&8 && battle_config.allow_bound_sell&ISR_SELLABLE) + if (itd && itd->flag.trade_restriction.sell && battle_config.allow_bound_sell&ISR_SELLABLE) return true; } break; @@ -974,7 +974,7 @@ int pc_equippoint_sub(struct map_session_data *sd,struct item_data* id){ return 0; //Not equippable by players. ep = id->equip; - if(id->look == W_DAGGER || id->look == W_1HSWORD || id->look == W_1HAXE) { + if(id->subtype == W_DAGGER || id->subtype == W_1HSWORD || id->subtype == W_1HAXE) { if(pc_checkskill(sd,AS_LEFT) > 0 || (sd->class_&MAPID_UPPERMASK) == MAPID_ASSASSIN || (sd->class_&MAPID_UPPERMASK) == MAPID_KAGEROUOBORO) { //Kagerou and Oboro can dual wield daggers. [Rytech] if (ep == EQP_WEAPON) return EQP_ARMS; @@ -1084,14 +1084,14 @@ void pc_setequipindex(struct map_session_data *sd) if (sd->inventory.u.items_inventory[i].equip & EQP_HAND_R) { if (sd->inventory_data[i]) - sd->weapontype1 = sd->inventory_data[i]->look; + sd->weapontype1 = sd->inventory_data[i]->subtype; else sd->weapontype1 = 0; } if( sd->inventory.u.items_inventory[i].equip & EQP_HAND_L ) { if( sd->inventory_data[i] && sd->inventory_data[i]->type == IT_WEAPON ) - sd->weapontype2 = sd->inventory_data[i]->look; + sd->weapontype2 = sd->inventory_data[i]->subtype; else sd->weapontype2 = 0; } @@ -1148,7 +1148,7 @@ bool pc_isequipped(struct map_session_data *sd, t_itemid nameid) continue; if( sd->inventory_data[index]->nameid == nameid ) return true; - for( j = 0; j < sd->inventory_data[index]->slot; j++ ){ + for( j = 0; j < sd->inventory_data[index]->slots; j++ ){ if( sd->inventory.u.items_inventory[index].card[j] == nameid ) return true; } @@ -1270,7 +1270,30 @@ bool pc_adoption(struct map_session_data *p1_sd, struct map_session_data *p2_sd, return false; // Job Change Fail } - + +static bool pc_job_can_use_item( struct map_session_data* sd, struct item_data* item ){ + nullpo_retr( false, sd ); + nullpo_retr( false, item ); + + // Calculate the required bit to check + uint64 job = 1ULL << ( sd->class_ & MAPID_BASEMASK ); + + size_t index; + + // 2-1 + if( ( sd->class_ & JOBL_2_1 ) != 0 ){ + index = 1; + // 2-2 + }else if( ( sd->class_ & JOBL_2_2 ) != 0 ){ + index = 2; + // Basejob + }else{ + index = 0; + } + + return ( item->class_base[index] & job ) != 0; +} + /*========================================== * Check if player can use/equip selected item. Used by pc_isUseitem and pc_isequip Returns: @@ -1294,7 +1317,7 @@ static bool pc_isItemClass (struct map_session_data *sd, struct item_data* item) break; //don't need to decide specific rules for third-classes? //items for third classes can be used for all third classes - if (item->class_upper&(ITEMJ_THIRD|ITEMJ_THIRD_TRANS|ITEMJ_THIRD_BABY) && sd->class_&JOBL_THIRD) + if (item->class_upper&(ITEMJ_THIRD|ITEMJ_THIRD_UPPER|ITEMJ_THIRD_BABY) && sd->class_&JOBL_THIRD) break; #else //trans. classes (exl. third-trans.) @@ -1307,7 +1330,7 @@ static bool pc_isItemClass (struct map_session_data *sd, struct item_data* item) if (item->class_upper&ITEMJ_THIRD && sd->class_&JOBL_THIRD && !(sd->class_&(JOBL_UPPER|JOBL_BABY))) break; //trans-third classes - if (item->class_upper&ITEMJ_THIRD_TRANS && sd->class_&JOBL_THIRD && sd->class_&JOBL_UPPER) + if (item->class_upper&ITEMJ_THIRD_UPPER && sd->class_&JOBL_THIRD && sd->class_&JOBL_UPPER) break; //third-baby classes if (item->class_upper&ITEMJ_THIRD_BABY && sd->class_&JOBL_THIRD && sd->class_&JOBL_BABY) @@ -1341,7 +1364,7 @@ uint8 pc_isequip(struct map_session_data *sd,int n) return ITEM_EQUIP_ACK_FAILLEVEL; if(item->elvmax && sd->status.base_level > (unsigned int)item->elvmax) return ITEM_EQUIP_ACK_FAILLEVEL; - if(item->sex != 2 && sd->status.sex != item->sex) + if(item->sex != SEX_BOTH && sd->status.sex != item->sex) return ITEM_EQUIP_ACK_FAIL; //fail to equip if item is restricted @@ -1349,14 +1372,14 @@ uint8 pc_isequip(struct map_session_data *sd,int n) return ITEM_EQUIP_ACK_FAIL; if (item->equip&EQP_AMMO) { - switch (item->look) { + switch (item->subtype) { case AMMO_ARROW: if (battle_config.ammo_check_weapon && sd->status.weapon != W_BOW && sd->status.weapon != W_MUSICAL && sd->status.weapon != W_WHIP) { clif_msg(sd, ITEM_NEED_BOW); return ITEM_EQUIP_ACK_FAIL; } break; - case AMMO_THROWABLE_DAGGER: + case AMMO_DAGGER: if (!pc_checkskill(sd, AS_VENOMKNIFE)) return ITEM_EQUIP_ACK_FAIL; break; @@ -1428,7 +1451,7 @@ uint8 pc_isequip(struct map_session_data *sd,int n) } //Not equipable by class. [Skotlex] - if (!(1ULL << (sd->class_&MAPID_BASEMASK)&item->class_base[(sd->class_&JOBL_2_1) ? 1 : ((sd->class_&JOBL_2_2) ? 2 : 0)])) + if (!pc_job_can_use_item(sd,item)) return ITEM_EQUIP_ACK_FAIL; if (!pc_isItemClass(sd, item)) @@ -4653,8 +4676,8 @@ int pc_insert_card(struct map_session_data* sd, int idx_card, int idx_equip) if( sd->inventory.u.items_inventory[idx_equip].equip != 0 ) return 0; // item must be unequipped - ARR_FIND( 0, item_eq->slot, i, sd->inventory.u.items_inventory[idx_equip].card[i] == 0 ); - if( i == item_eq->slot ) + ARR_FIND( 0, item_eq->slots, i, sd->inventory.u.items_inventory[idx_equip].card[i] == 0 ); + if( i == item_eq->slots ) return 0; // no free slots // remember the card id to insert @@ -5294,7 +5317,7 @@ bool pc_isUseitem(struct map_session_data *sd,int n) ) return false; - if( (item->item_usage.flag&NOUSE_SITTING) && (pc_issit(sd) == 1) && (pc_get_group_level(sd) < item->item_usage.override) ) { + if( (item->item_usage.sitting) && (pc_issit(sd) == 1) && (pc_get_group_level(sd) < item->item_usage.override) ) { clif_msg(sd,ITEM_NOUSE_SITTING); return false; // You cannot use this item while sitting. } @@ -5391,7 +5414,7 @@ bool pc_isUseitem(struct map_session_data *sd,int n) } //Gender check - if(item->sex != 2 && sd->status.sex != item->sex) + if(item->sex != SEX_BOTH && sd->status.sex != item->sex) return false; //Required level check if(item->elv && sd->status.base_level < (unsigned int)item->elv) @@ -5400,10 +5423,7 @@ bool pc_isUseitem(struct map_session_data *sd,int n) return false; //Not equipable by class. [Skotlex] - if (!( - (1ULL<<(sd->class_&MAPID_BASEMASK)) & - (item->class_base[sd->class_&JOBL_2_1?1:(sd->class_&JOBL_2_2?2:0)]) - )) + if (!pc_job_can_use_item(sd,item)) return false; if (sd->sc.count && ( @@ -5481,7 +5501,7 @@ int pc_useitem(struct map_session_data *sd,int n) return 0; /* Items with delayed consume are not meant to work while in mounts except reins of mount(12622) */ - if( id->flag.delay_consume ) { + if( id->flag.delay_consume > 0 ) { if( nameid != ITEMID_REINS_OF_MOUNT && sd->sc.data[SC_ALL_RIDING] ) return 0; else if( pc_issit(sd) ) @@ -5491,16 +5511,16 @@ int pc_useitem(struct map_session_data *sd,int n) //perform a skill-use check before going through. [Skotlex] //resurrection was picked as testing skill, as a non-offensive, generic skill, it will do. //FIXME: Is this really needed here? It'll be checked in unit.cpp after all and this prevents skill items using when silenced [Inkfish] - if( id->flag.delay_consume && ( sd->ud.skilltimer != INVALID_TIMER /*|| !status_check_skilluse(&sd->bl, &sd->bl, ALL_RESURRECTION, 0)*/ ) ) + if( id->flag.delay_consume > 0 && ( sd->ud.skilltimer != INVALID_TIMER /*|| !status_check_skilluse(&sd->bl, &sd->bl, ALL_RESURRECTION, 0)*/ ) ) return 0; - if( id->delay > 0 && !pc_has_permission(sd,PC_PERM_ITEM_UNCONDITIONAL) && pc_itemcd_check(sd, id, tick, n)) + if( id->delay.duration > 0 && !pc_has_permission(sd,PC_PERM_ITEM_UNCONDITIONAL) && pc_itemcd_check(sd, id, tick, n)) return 0; /* on restricted maps the item is consumed but the effect is not used */ if (!pc_has_permission(sd,PC_PERM_ITEM_UNCONDITIONAL) && itemdb_isNoEquip(id,sd->bl.m)) { clif_msg(sd,ITEM_CANT_USE_AREA); // This item cannot be used within this area - if( battle_config.allow_consume_restricted_item && !id->flag.delay_consume ) { //need confirmation for delayed consumption items + if( battle_config.allow_consume_restricted_item && id->flag.delay_consume > 0 ) { //need confirmation for delayed consumption items clif_useitemack(sd,n,item.amount-1,true); pc_delitem(sd,n,1,1,0,LOG_TYPE_CONSUME); } @@ -5515,7 +5535,7 @@ int pc_useitem(struct map_session_data *sd,int n) amount = item.amount; script = id->script; //Check if the item is to be consumed immediately [Skotlex] - if (id->flag.delay_consume) + if (id->flag.delay_consume > 0) clif_useitemack(sd, n, amount, true); else { @@ -5759,7 +5779,7 @@ int pc_show_steal(struct block_list *bl,va_list ap) if((item=itemdb_exists(itemid))==NULL) sprintf(output,"%s stole an Unknown Item (id: %u).",sd->status.name, itemid); else - sprintf(output,"%s stole %s.",sd->status.name,item->jname); + sprintf(output,"%s stole %s.",sd->status.name,item->ename.c_str()); clif_displaymessage( ((struct map_session_data *)bl)->fd, output); return 0; @@ -5852,7 +5872,7 @@ bool pc_steal_item(struct map_session_data *sd,struct block_list *bl, uint16 ski struct item_data *i_data; char message[128]; i_data = itemdb_search(itemid); - sprintf (message, msg_txt(sd,542), (sd->status.name[0])?sd->status.name :"GM", md->db->jname, i_data->jname, (float)md->db->dropitem[i].p/100); + sprintf (message, msg_txt(sd,542), (sd->status.name[0])?sd->status.name :"GM", md->db->jname, i_data->ename.c_str(), (float)md->db->dropitem[i].p/100); //MSG: "'%s' stole %s's %s (chance: %0.02f%%)" intif_broadcast(message, strlen(message) + 1, BC_DEFAULT); } @@ -10193,89 +10213,100 @@ void pc_cleareventtimer(struct map_session_data *sd) } /** -* Called when an item with combo is worn -* @param *sd -* @param *data struct item_data -* @return success numbers of succeed combo -*/ -static int pc_checkcombo(struct map_session_data *sd, struct item_data *data) { - uint16 i; + * Called when an item with combo is worn + * @param sd: Player data + * @param data: Item data + * @return Number of succeeded combo(s) + */ +static int pc_checkcombo(struct map_session_data *sd, item_data *data) { int success = 0; - for( i = 0; i < data->combos_count; i++ ) { - struct itemchk { - int idx; - t_itemid nameid; - t_itemid card[MAX_SLOTS]; - } *combo_idx; - int idx, j; - int nb_itemCombo; - unsigned int pos = 0; - /* ensure this isn't a duplicate combo */ - if( sd->combos.bonus != NULL ) { - int x; - ARR_FIND( 0, sd->combos.count, x, sd->combos.id[x] == data->combos[i]->id ); - /* found a match, skip this combo */ - if( x < sd->combos.count ) - continue; - } - nb_itemCombo = data->combos[i]->count; - if(nb_itemCombo<2) //a combo with less then 2 item ?? how that possible - continue; - CREATE(combo_idx,struct itemchk,nb_itemCombo); - for(j=0; j < nb_itemCombo; j++){ - combo_idx[j].idx=-1; - combo_idx[j].nameid=-1; - for( int k = 0; k < MAX_SLOTS; k++ ){ - combo_idx[j].card[k] = -1; + for (const auto &item_combo : data->combos) { + bool do_continue = false; + + // Ensure this isn't a duplicate combo + for (const auto player_combo : sd->combos) { + if (player_combo->id == item_combo->id) { + do_continue = true; + break; } } - - for( j = 0; j < nb_itemCombo; j++ ) { - t_itemid id = data->combos[i]->nameid[j]; - uint16 k; + + // Combo already equipped + if (do_continue) + continue; + + size_t nb_itemCombo = item_combo->nameid.size(); + + if (nb_itemCombo < 2) // A combo with less then 2 item? + continue; + + struct s_itemchk { + int idx; + t_itemid nameid, card[MAX_SLOTS]; + }; + std::vector combo_idx; + size_t j; + unsigned int pos = 0; + + combo_idx.reserve(nb_itemCombo); + + // Zero out temporary combo array + for (auto &tmp_combo : combo_idx) { + tmp_combo = {}; + } + + for (j = 0; j < nb_itemCombo; j++) { + t_itemid id = item_combo->nameid[j]; bool found = false; - - for( k = 0; k < EQI_MAX; k++ ) { + + for (int16 k = 0; k < EQI_MAX; k++) { short index = sd->equip_index[k]; - if( index < 0 ) + + if (index < 0) continue; - if( pc_is_same_equip_index((enum equip_index)k, sd->equip_index, index) ) + if (pc_is_same_equip_index((equip_index)k, sd->equip_index, index)) continue; - if (!sd->inventory_data[index] ) + if (!sd->inventory_data[index]) continue; - - if ( itemdb_type(id) != IT_CARD ) { - if ( sd->inventory_data[index]->nameid != id ) + + if (itemdb_type(id) != IT_CARD) { + if (sd->inventory_data[index]->nameid != id) continue; - if(j>0){ //check if this item not already used - bool do_continue = false; //used to continue that specific loop with some check that also use some loop - uint8 z; - for (z = 0; z < nb_itemCombo-1; z++) - if(combo_idx[z].idx == index && combo_idx[z].nameid == id) //we already have that index recorded - do_continue=true; - if(do_continue) + + if (j > 0) { // Check if this item not already used + do_continue = false; + + for (size_t z = 0; z < nb_itemCombo - 1; z++) { + if (combo_idx[z].idx == index && combo_idx[z].nameid == id) { // Index already recorded + do_continue = true; + break; + } + } + + if (do_continue) continue; } + combo_idx[j].nameid = id; combo_idx[j].idx = index; pos |= sd->inventory.u.items_inventory[index].equip; found = true; break; - } else { //Cards and enchants - uint16 z; - if ( itemdb_isspecial(sd->inventory.u.items_inventory[index].card[0]) ) + } else { // Cards and enchants + if (itemdb_isspecial(sd->inventory.u.items_inventory[index].card[0])) continue; - for (z = 0; z < MAX_SLOTS; z++) { - bool do_continue=false; + for (uint8 z = 0; z < MAX_SLOTS; z++) { + do_continue = false; + if (sd->inventory.u.items_inventory[index].card[z] != id) continue; - if(j>0){ - int c1, c2; - for (c1 = 0; c1 < nb_itemCombo-1; c1++){ - if(combo_idx[c1].idx == index && combo_idx[c1].nameid == id){ - for (c2 = 0; c2 < MAX_SLOTS; c2++){ - if(combo_idx[c1].card[c2] == id){ //we already have that card recorded (at this same idx) + + if (j > 0) { + for (size_t c1 = 0; c1 < nb_itemCombo - 1; c1++) { + if (combo_idx[c1].idx == index && combo_idx[c1].nameid == id) { + for (uint8 c2 = 0; c2 < MAX_SLOTS; c2++) { + if (combo_idx[c1].card[c2] == id) { // Card already recorded (at this same idx) do_continue = true; break; } @@ -10283,97 +10314,81 @@ static int pc_checkcombo(struct map_session_data *sd, struct item_data *data) { } } } - if(do_continue) + + if (do_continue) continue; + combo_idx[j].nameid = id; combo_idx[j].idx = index; combo_idx[j].card[z] = id; pos |= sd->inventory.u.items_inventory[index].equip; found = true; - break; - } + break; + } } } - if( !found ) - break;/* we haven't found all the ids for this combo, so we can return */ + + if (!found) + break; // Unable to found all the IDs for this combo, return } - aFree(combo_idx); - /* means we broke out of the count loop w/o finding all ids, we can move to the next combo */ - if( j < nb_itemCombo ) + + // Broke out of the count loop without finding all IDs, move to the next combo + if (j < nb_itemCombo) continue; - /* we got here, means all items in the combo are matching */ - idx = sd->combos.count; - if( sd->combos.bonus == NULL ) { - CREATE(sd->combos.bonus, struct script_code *, 1); - CREATE(sd->combos.id, unsigned short, 1); - CREATE(sd->combos.pos, unsigned int, 1); - sd->combos.count = 1; - } else { - RECREATE(sd->combos.bonus, struct script_code *, ++sd->combos.count); - RECREATE(sd->combos.id, unsigned short, sd->combos.count); - RECREATE(sd->combos.pos, unsigned int, sd->combos.count); - } - /* we simply copy the pointer */ - sd->combos.bonus[idx] = data->combos[i]->script; - /* save this combo's id */ - sd->combos.id[idx] = data->combos[i]->id; - /* save pos of combo*/ - sd->combos.pos[idx] = pos; + + // All items in the combo are matching + auto entry = std::make_shared(); + + entry->bonus = item_combo->script; + entry->id = item_combo->id; + entry->pos = pos; + sd->combos.push_back(entry); + combo_idx.clear(); success++; } + return success; } /** -* Called when an item with combo is removed -* @param *sd -* @param *data struct item_data -* @return retval numbers of removed combo -*/ -static int pc_removecombo(struct map_session_data *sd, struct item_data *data ) { - int i, retval = 0; + * Called when an item with combo is removed + * @param sd: Player data + * @param data: Item data + * @return Number of removed combo(s) + */ +static int pc_removecombo(struct map_session_data *sd, item_data *data ) { - if( sd->combos.bonus == NULL ) - return 0;/* nothing to do here, player has no combos */ - for( i = 0; i < data->combos_count; i++ ) { - /* check if this combo exists in this user */ - int x = 0, cursor = 0, j; - ARR_FIND( 0, sd->combos.count, x, sd->combos.id[x] == data->combos[i]->id ); - /* no match, skip this combo */ - if(x >= sd->combos.count) - continue; + if (sd->combos.empty()) + return 0; // Nothing to do here, player has no combos - sd->combos.bonus[x] = NULL; - sd->combos.id[x] = 0; - sd->combos.pos[x] = 0; - retval++; + int retval = 0; - /* check if combo requirements still fit */ - if( pc_checkcombo( sd, data ) ) - continue; + for (const auto &item_combo : data->combos) { + std::shared_ptr del_combo = nullptr; - /* move next value to empty slot */ - for( j = 0, cursor = 0; j < sd->combos.count; j++ ) { - if( sd->combos.bonus[j] == NULL ) - continue; - - if( cursor != j ) { - sd->combos.bonus[cursor] = sd->combos.bonus[j]; - sd->combos.id[cursor] = sd->combos.id[j]; - sd->combos.pos[cursor] = sd->combos.pos[j]; + // Check if this combo exists on this player + for (const auto &player_combo : sd->combos) { + if (player_combo->id == item_combo->id) { + del_combo = player_combo; + break; } - cursor++; } - /* it's empty, we can clear all the memory */ - if( (sd->combos.count = cursor) == 0 ) { - aFree(sd->combos.bonus); - aFree(sd->combos.id); - aFree(sd->combos.pos); - sd->combos.bonus = NULL; - sd->combos.id = NULL; - sd->combos.pos = NULL; - return retval; /* we also can return at this point for we have no more combos to check */ + // No match, skip this combo + if (del_combo == nullptr) + continue; + + util::vector_erase_if_exists(sd->combos, del_combo); + retval++; + + // Check if combo requirements still fit + if (pc_checkcombo(sd, data)) + continue; + + // It's empty, clear all the memory + if (sd->combos.empty()) { + sd->combos.clear(); + return retval; // Return at this point as there are no more combos to check } } @@ -10381,34 +10396,41 @@ static int pc_removecombo(struct map_session_data *sd, struct item_data *data ) } /** -* Load combo data(s) of player -* @param *sd -* @return ret numbers of succeed combo -*/ + * Load combo data(s) of player + * @param sd: Player data + * @return ret numbers of succeed combo + */ int pc_load_combo(struct map_session_data *sd) { - int i, ret = 0; - for( i = 0; i < EQI_MAX; i++ ) { - struct item_data *id = NULL; + int ret = 0; + + for (int16 i = 0; i < EQI_MAX; i++) { + item_data *id; short idx = sd->equip_index[i]; - if( idx < 0 || !(id = sd->inventory_data[idx] ) ) + + if (idx < 0 || !(id = sd->inventory_data[idx])) continue; - if( id->combos_count ) - ret += pc_checkcombo(sd,id); - if(!itemdb_isspecial(sd->inventory.u.items_inventory[idx].card[0])) { - struct item_data *data; - int j; - for( j = 0; j < MAX_SLOTS; j++ ) { + + if (!id->combos.empty()) + ret += pc_checkcombo(sd, id); + + if (!itemdb_isspecial(sd->inventory.u.items_inventory[idx].card[0])) { + item_data *data; + + for (uint8 j = 0; j < MAX_SLOTS; j++) { if (!sd->inventory.u.items_inventory[idx].card[j]) continue; - if ( ( data = itemdb_exists(sd->inventory.u.items_inventory[idx].card[j]) ) != NULL ) { - if( data->combos_count ) - ret += pc_checkcombo(sd,data); + + if ((data = itemdb_exists(sd->inventory.u.items_inventory[idx].card[j])) != nullptr) { + if (!data->combos.empty()) + ret += pc_checkcombo(sd, data); } } } } + return ret; } + /*========================================== * Equip item on player sd at req_pos from inventory index n * return: false - fail; true - success @@ -10490,7 +10512,7 @@ bool pc_equipitem(struct map_session_data *sd,short n,int req_pos,bool equipswit if (pos == EQP_ACC) //User specified both slots. pos = equip_index[EQI_ACC_R] >= 0 ? EQP_ACC_L : EQP_ACC_R; - for (i = 0; i < sd->inventory_data[n]->slot; i++) { // Accessories that have cards that force equip location + for (i = 0; i < sd->inventory_data[n]->slots; i++) { // Accessories that have cards that force equip location if (!sd->inventory.u.items_inventory[n].card[i]) continue; @@ -10627,19 +10649,21 @@ bool pc_equipitem(struct map_session_data *sd,short n,int req_pos,bool equipswit pc_checkallowskill(sd); //Check if status changes should be halted. iflag = sd->npc_item_flag; - /* check for combos (MUST be before status_calc_pc) */ - if( id->combos_count ) - pc_checkcombo(sd,id); - if(itemdb_isspecial(sd->inventory.u.items_inventory[n].card[0])) - ; //No cards + // Check for combos (MUST be before status_calc_pc) + if (!id->combos.empty()) + pc_checkcombo(sd, id); + + if (itemdb_isspecial(sd->inventory.u.items_inventory[n].card[0])) + ; // No cards else { - for( i = 0; i < MAX_SLOTS; i++ ) { - struct item_data *data; + for (i = 0; i < MAX_SLOTS; i++) { + item_data *data; + if (!sd->inventory.u.items_inventory[n].card[i]) continue; - if ( ( data = itemdb_exists(sd->inventory.u.items_inventory[n].card[i]) ) != NULL ) { - if( data->combos_count ) - pc_checkcombo(sd,data); + if ((data = itemdb_exists(sd->inventory.u.items_inventory[n].card[i])) != nullptr) { + if (!data->combos.empty()) + pc_checkcombo(sd, data); } } } @@ -10691,22 +10715,23 @@ static void pc_unequipitem_sub(struct map_session_data *sd, int n, int flag) { pc_checkallowskill(sd); iflag = sd->npc_item_flag; - /* check for combos (MUST be before status_calc_pc) */ + // Check for combos (MUST be before status_calc_pc) if (sd->inventory_data[n]) { - if (sd->inventory_data[n]->combos_count) { + if (!sd->inventory_data[n]->combos.empty()) { if (pc_removecombo(sd, sd->inventory_data[n])) status_calc = true; } + if (itemdb_isspecial(sd->inventory.u.items_inventory[n].card[0])) - ; //No cards + ; // No cards else { for (i = 0; i < MAX_SLOTS; i++) { - struct item_data *data; + item_data *data; if (!sd->inventory.u.items_inventory[n].card[i]) continue; - if ((data = itemdb_exists(sd->inventory.u.items_inventory[n].card[i])) != NULL) { - if (data->combos_count) { + if ((data = itemdb_exists(sd->inventory.u.items_inventory[n].card[i])) != nullptr) { + if (!data->combos.empty()) { if (pc_removecombo(sd, data)) status_calc = true; } @@ -12471,10 +12496,10 @@ uint8 pc_itemcd_add(struct map_session_data *sd, struct item_data *id, t_tick ti char e_msg[CHAT_SIZE_MAX]; if( e_tick > 99 ) sprintf(e_msg,msg_txt(sd,379), // Item Failed. [%s] is cooling down. Wait %.1f minutes. - itemdb_jname(sd->item_delay[i].nameid), (double)e_tick / 60); + itemdb_ename(sd->item_delay[i].nameid), (double)e_tick / 60); else sprintf(e_msg,msg_txt(sd,380), // Item Failed. [%s] is cooling down. Wait %d seconds. - itemdb_jname(sd->item_delay[i].nameid), e_tick+1); + itemdb_ename(sd->item_delay[i].nameid), e_tick+1); clif_messagecolor(&sd->bl,color_table[COLOR_YELLOW],e_msg,false,SELF); return 1; // Delay has not expired yet } @@ -12482,7 +12507,7 @@ uint8 pc_itemcd_add(struct map_session_data *sd, struct item_data *id, t_tick ti sd->item_delay[i].nameid = id->nameid; } if( !(id->nameid == ITEMID_REINS_OF_MOUNT && sd->sc.option&(OPTION_WUGRIDER|OPTION_RIDING|OPTION_DRAGON|OPTION_MADOGEAR)) ) - sd->item_delay[i].tick = tick + sd->inventory_data[n]->delay; + sd->item_delay[i].tick = tick + sd->inventory_data[n]->delay.duration; } else {// should not happen ShowError("pc_itemcd_add: Exceeded item delay array capacity! (nameid=%u, char_id=%d)\n", id->nameid, sd->status.char_id); } @@ -12512,17 +12537,17 @@ uint8 pc_itemcd_check(struct map_session_data *sd, struct item_data *id, t_tick nullpo_retr(0, id); // Do normal delay assignment - if (id->delay_sc <= SC_NONE || id->delay_sc >= SC_MAX || !(sc = &sd->sc)) + if (id->delay.sc <= SC_NONE || id->delay.sc >= SC_MAX || !(sc = &sd->sc)) return pc_itemcd_add(sd, id, tick, n); // Send reply of delay remains - if (sc->data[id->delay_sc]) { - const struct TimerData *timer = get_timer(sc->data[id->delay_sc]->timer); + if (sc->data[id->delay.sc]) { + const struct TimerData *timer = get_timer(sc->data[id->delay.sc]->timer); clif_msg_value(sd, ITEM_REUSE_LIMIT, (int)(timer ? DIFF_TICK(timer->tick, tick) / 1000 : 99)); return 1; } - sc_start(&sd->bl, &sd->bl, (sc_type)id->delay_sc, 100, id->nameid, id->delay); + sc_start(&sd->bl, &sd->bl, id->delay.sc, 100, id->nameid, id->delay.duration); return 0; } diff --git a/src/map/pc.hpp b/src/map/pc.hpp index 37289df34e..30324ddd2c 100644 --- a/src/map/pc.hpp +++ b/src/map/pc.hpp @@ -258,6 +258,18 @@ struct s_regen { int tick; }; +/// Item combo struct +struct s_combos { + script_code *bonus; + uint32 id; + uint32 pos; + + ~s_combos() { + if (this->bonus) + script_free_code(this->bonus); + } +}; + struct map_session_data { struct block_list bl; struct unit_data ud; @@ -699,12 +711,7 @@ struct map_session_data { enum npc_timeout_type npc_idle_type; #endif - struct s_combos { - struct script_code **bonus;/* the script */ - unsigned short *id;/* array of combo ids */ - unsigned int *pos;/* array of positions*/ - unsigned char count; - } combos; + std::vector> combos; /** * Guarantees your friend request is legit (for bugreport:4629) @@ -804,7 +811,7 @@ extern struct eri *str_reg_ers; /* Global Expiration Timer ID */ extern int pc_expiration_tid; -enum weapon_type { +enum weapon_type : uint8 { W_FIST, //Bare hands W_DAGGER, //1 W_1HSWORD, //2 @@ -842,16 +849,18 @@ enum weapon_type { #define WEAPON_TYPE_ALL ((1<inventory_data[i]; if( item != 0 ) - script_pushstrcopy(st,item->jname); + script_pushstrcopy(st,item->ename.c_str()); else script_pushconststr(st,""); @@ -13320,7 +13316,7 @@ BUILDIN_FUNC(getequipcardcnt) } count = 0; - for( j = 0; j < sd->inventory_data[i]->slot; j++ ) + for( j = 0; j < sd->inventory_data[i]->slots; j++ ) if( sd->inventory.u.items_inventory[i].card[j] && itemdb_type(sd->inventory.u.items_inventory[i].card[j]) == IT_CARD ) count++; @@ -13352,7 +13348,7 @@ BUILDIN_FUNC(successremovecards) { if(itemdb_isspecial(sd->inventory.u.items_inventory[i].card[0])) return SCRIPT_CMD_SUCCESS; - for( c = sd->inventory_data[i]->slot - 1; c >= 0; --c ) { + for( c = sd->inventory_data[i]->slots - 1; c >= 0; --c ) { if( sd->inventory.u.items_inventory[i].card[c] && itemdb_type(sd->inventory.u.items_inventory[i].card[c]) == IT_CARD ) {// extract this card from the item unsigned char flag = 0; struct item item_tmp; @@ -13369,7 +13365,7 @@ BUILDIN_FUNC(successremovecards) { } if(cardflag == 1) {//if card was remove remplace item with no card - unsigned char flag = 0, j; + unsigned char flag = 0; struct item item_tmp; memset(&item_tmp,0,sizeof(item_tmp)); @@ -13380,10 +13376,10 @@ BUILDIN_FUNC(successremovecards) { item_tmp.expire_time = sd->inventory.u.items_inventory[i].expire_time; item_tmp.bound = sd->inventory.u.items_inventory[i].bound; - for (j = sd->inventory_data[i]->slot; j < MAX_SLOTS; j++) + for (int j = sd->inventory_data[i]->slots; j < MAX_SLOTS; j++) item_tmp.card[j]=sd->inventory.u.items_inventory[i].card[j]; - for (j = 0; j < MAX_ITEM_RDM_OPT; j++){ + for (int j = 0; j < MAX_ITEM_RDM_OPT; j++){ item_tmp.option[j].id=sd->inventory.u.items_inventory[i].option[j].id; item_tmp.option[j].value=sd->inventory.u.items_inventory[i].option[j].value; item_tmp.option[j].param=sd->inventory.u.items_inventory[i].option[j].param; @@ -13428,7 +13424,7 @@ BUILDIN_FUNC(failedremovecards) { if(itemdb_isspecial(sd->inventory.u.items_inventory[i].card[0])) return SCRIPT_CMD_SUCCESS; - for( c = sd->inventory_data[i]->slot - 1; c >= 0; --c ) { + for( c = sd->inventory_data[i]->slots - 1; c >= 0; --c ) { if( sd->inventory.u.items_inventory[i].card[c] && itemdb_type(sd->inventory.u.items_inventory[i].card[c]) == IT_CARD ) { cardflag = 1; @@ -13453,7 +13449,7 @@ BUILDIN_FUNC(failedremovecards) { if(typefail == 0 || typefail == 2){ // destroy the item pc_delitem(sd,i,1,0,2,LOG_TYPE_SCRIPT); }else if(typefail == 1){ // destroy the card - unsigned char flag = 0, j; + unsigned char flag = 0; struct item item_tmp; memset(&item_tmp,0,sizeof(item_tmp)); @@ -13465,10 +13461,10 @@ BUILDIN_FUNC(failedremovecards) { item_tmp.expire_time = sd->inventory.u.items_inventory[i].expire_time; item_tmp.bound = sd->inventory.u.items_inventory[i].bound; - for (j = sd->inventory_data[i]->slot; j < MAX_SLOTS; j++) + for (int j = sd->inventory_data[i]->slots; j < MAX_SLOTS; j++) item_tmp.card[j]=sd->inventory.u.items_inventory[i].card[j]; - for (j = 0; j < MAX_ITEM_RDM_OPT; j++){ + for (int j = 0; j < MAX_ITEM_RDM_OPT; j++){ item_tmp.option[j].id=sd->inventory.u.items_inventory[i].option[j].id; item_tmp.option[j].value=sd->inventory.u.items_inventory[i].option[j].value; item_tmp.option[j].param=sd->inventory.u.items_inventory[i].option[j].param; @@ -13912,7 +13908,7 @@ BUILDIN_FUNC(getitemname) } item_name=(char *)aMalloc(ITEM_NAME_LENGTH*sizeof(char)); - memcpy(item_name, i_data->jname, ITEM_NAME_LENGTH); + memcpy(item_name, i_data->ename.c_str(), ITEM_NAME_LENGTH); script_pushstr(st,item_name); return SCRIPT_CMD_SUCCESS; } @@ -13929,7 +13925,7 @@ BUILDIN_FUNC(getitemslots) i_data = itemdb_exists(item_id); if (i_data) - script_pushint(st,i_data->slot); + script_pushint(st,i_data->slots); else script_pushint(st,-1); return SCRIPT_CMD_SUCCESS; @@ -15114,7 +15110,7 @@ BUILDIN_FUNC(checkequipedcard) if(sd->inventory.u.items_inventory[i].nameid > 0 && sd->inventory.u.items_inventory[i].amount && sd->inventory_data[i]){ if (itemdb_isspecial(sd->inventory.u.items_inventory[i].card[0])) continue; - for(n=0;ninventory_data[i]->slot;n++){ + for(n=0;ninventory_data[i]->slots;n++){ if(sd->inventory.u.items_inventory[i].card[n] == c) { script_pushint(st,1); return SCRIPT_CMD_SUCCESS; @@ -15666,7 +15662,7 @@ BUILDIN_FUNC(isequippedcnt) } else { //Count cards. if (itemdb_isspecial(sd->inventory.u.items_inventory[index].card[0])) continue; //No cards - for (short k = 0; k < sd->inventory_data[index]->slot; k++) { + for (short k = 0; k < sd->inventory_data[index]->slots; k++) { if (sd->inventory.u.items_inventory[index].card[k] == id) ret++; //[Lupus] } @@ -15722,11 +15718,11 @@ BUILDIN_FUNC(isequipped) break; } else { //Cards short k; - if (sd->inventory_data[index]->slot == 0 || + if (sd->inventory_data[index]->slots == 0 || itemdb_isspecial(sd->inventory.u.items_inventory[index].card[0])) continue; - for (k = 0; k < sd->inventory_data[index]->slot; k++) + for (k = 0; k < sd->inventory_data[index]->slots; k++) { //New hash system which should support up to 4 slots on any equipment. [Skotlex] unsigned int hash = 0; if (sd->inventory.u.items_inventory[index].card[k] != id) @@ -15796,7 +15792,7 @@ BUILDIN_FUNC(cardscnt) } else { if (itemdb_isspecial(sd->inventory.u.items_inventory[index].card[0])) continue; - for(k=0; kinventory_data[index]->slot; k++) { + for(k=0; kinventory_data[index]->slots; k++) { if (sd->inventory.u.items_inventory[index].card[k] == id) ret++; } diff --git a/src/map/script_constants.hpp b/src/map/script_constants.hpp index 750648e0a7..df56d305a0 100644 --- a/src/map/script_constants.hpp +++ b/src/map/script_constants.hpp @@ -260,9 +260,11 @@ export_constant2("EAJ_BLACKSMITH",MAPID_BLACKSMITH); export_constant2("EAJ_ASSASSIN",MAPID_ASSASSIN); export_constant2("EAJ_STAR_GLADIATOR",MAPID_STAR_GLADIATOR); + export_constant2("EAJ_STARGLADIATOR",MAPID_STAR_GLADIATOR); export_constant2("EAJ_REBELLION",MAPID_REBELLION); export_constant2("EAJ_KAGEROUOBORO",MAPID_KAGEROUOBORO); export_constant2("EAJ_DEATH_KNIGHT",MAPID_DEATH_KNIGHT); + export_constant2("EAJ_DEATHKNIGHT",MAPID_DEATH_KNIGHT); export_constant2("EAJ_CRUSADER",MAPID_CRUSADER); export_constant2("EAJ_SAGE",MAPID_SAGE); @@ -271,7 +273,9 @@ export_constant2("EAJ_ALCHEMIST",MAPID_ALCHEMIST); export_constant2("EAJ_ROGUE",MAPID_ROGUE); export_constant2("EAJ_SOUL_LINKER",MAPID_SOUL_LINKER); + export_constant2("EAJ_SOULLINKER",MAPID_SOUL_LINKER); export_constant2("EAJ_DARK_COLLECTOR",MAPID_DARK_COLLECTOR); + export_constant2("EAJ_DARKCOLLECTOR",MAPID_DARK_COLLECTOR); export_constant2("EAJ_NOVICE_HIGH",MAPID_NOVICE_HIGH); export_constant2("EAJ_SWORDMAN_HIGH",MAPID_SWORDMAN_HIGH); @@ -378,6 +382,7 @@ export_constant2("EAJ_BABY_SOUL_REAPER",MAPID_BABY_SOUL_REAPER); export_constant2("EAJ_SUPER_NOVICE",MAPID_SUPER_NOVICE); + export_constant2("EAJ_SUPERNOVICE",MAPID_SUPER_NOVICE); export_constant2("EAJ_SUPER_BABY",MAPID_SUPER_BABY); export_constant2("EAJ_SUPER_NOVICE_E",MAPID_SUPER_NOVICE_E); export_constant2("EAJ_SUPER_BABY_E",MAPID_SUPER_BABY_E); @@ -387,6 +392,7 @@ /* sex */ export_constant(SEX_FEMALE); export_constant(SEX_MALE); + export_constant(SEX_BOTH); /* broadcasts */ export_constant(BC_ALL); @@ -807,6 +813,13 @@ export_constant(EQP_ACC_RL); export_constant(EQP_SHADOW_ACC_RL); + export_constant2("EQP_Right_Hand", EQP_HAND_R); + export_constant2("EQP_Left_Hand", EQP_HAND_L); + export_constant2("EQP_Right_Accessory", EQP_ACC_R); + export_constant2("EQP_Left_Accessory", EQP_ACC_L); + export_constant2("EQP_Shadow_Right_Accessory", EQP_SHADOW_ACC_R); + export_constant2("EQP_Shadow_Left_Accessory", EQP_SHADOW_ACC_L); + /* looks */ export_constant(LOOK_BASE); export_constant(LOOK_HAIR); @@ -4049,15 +4062,27 @@ export_constant(MAX_WEAPON_TYPE_ALL); /* ammunition types */ - export_constant(A_ARROW); - export_constant(A_DAGGER); - export_constant(A_BULLET); - export_constant(A_SHELL); - export_constant(A_GRENADE); - export_constant(A_SHURIKEN); - export_constant(A_KUNAI); - export_constant(A_CANNONBALL); - export_constant(A_THROWWEAPON); + /* Send deprecation notice and temporarily replace with new constant value. */ + export_deprecated_constant3("A_ARROW", AMMO_ARROW, "AMMO_ARROW"); + export_deprecated_constant3("A_DAGGER", AMMO_DAGGER, "AMMO_DAGGER"); + export_deprecated_constant3("A_BULLET", AMMO_BULLET, "AMMO_BULLET"); + export_deprecated_constant3("A_SHELL", AMMO_SHELL, "AMMO_SHELL"); + export_deprecated_constant3("A_GRENADE", AMMO_GRENADE, "AMMO_GRENADE"); + export_deprecated_constant3("A_SHURIKEN", AMMO_SHURIKEN, "AMMO_SHURIKEN"); + export_deprecated_constant3("A_KUNAI", AMMO_KUNAI, "AMMO_KUNAI"); + export_deprecated_constant3("A_CANNONBALL", AMMO_CANNONBALL, "AMMO_CANNONBALL"); + export_deprecated_constant3("A_THROWWEAPON", AMMO_THROWWEAPON, "AMMO_THROWWEAPON"); + + export_constant(AMMO_ARROW); + export_constant(AMMO_DAGGER); + export_constant(AMMO_BULLET); + export_constant(AMMO_SHELL); + export_constant(AMMO_GRENADE); + export_constant(AMMO_SHURIKEN); + export_constant(AMMO_KUNAI); + export_constant(AMMO_CANNONBALL); + export_constant(AMMO_THROWWEAPON); + export_constant(MAX_AMMO_TYPE); /* monsterinfo types */ export_constant(MOB_NAME); @@ -7937,6 +7962,24 @@ export_constant(BG_INFO_MAPS); export_constant(BG_INFO_DESERTER_TIME); + /* item job classes */ + export_constant(ITEMJ_NORMAL); + export_constant(ITEMJ_UPPER); + export_constant(ITEMJ_BABY); + export_constant(ITEMJ_THIRD); + export_constant(ITEMJ_THIRD_UPPER); + export_constant(ITEMJ_THIRD_BABY); + + /* item drop effects */ + export_constant(DROPEFFECT_NONE); + export_constant(DROPEFFECT_CLIENT); + export_constant(DROPEFFECT_WHITE_PILLAR); + export_constant(DROPEFFECT_BLUE_PILLAR); + export_constant(DROPEFFECT_YELLOW_PILLAR); + export_constant(DROPEFFECT_PURPLE_PILLAR); + export_constant(DROPEFFECT_ORANGE_PILLAR); + export_constant(DROPEFFECT_MAX); + #undef export_constant #undef export_constant2 #undef export_parameter diff --git a/src/map/skill.cpp b/src/map/skill.cpp index 57c1b8663d..309538df83 100755 --- a/src/map/skill.cpp +++ b/src/map/skill.cpp @@ -15510,7 +15510,7 @@ bool skill_check_condition_castbegin(struct map_session_data* sd, uint16 skill_i if( (i = sd->itemindex) == -1 || sd->inventory.u.items_inventory[i].nameid != sd->itemid || sd->inventory_data[i] == NULL || - !sd->inventory_data[i]->flag.delay_consume || + sd->inventory_data[i]->flag.delay_consume == DELAYCONSUME_NONE || sd->inventory.u.items_inventory[i].amount < 1 ) { //Something went wrong, item exploit? @@ -15521,7 +15521,7 @@ bool skill_check_condition_castbegin(struct map_session_data* sd, uint16 skill_i //Consume sd->itemid = 0; sd->itemindex = -1; - if( (skill_id == WZ_EARTHSPIKE && sc && sc->data[SC_EARTHSCROLL] && rnd()%100 > sc->data[SC_EARTHSCROLL]->val2) || sd->inventory_data[i]->flag.delay_consume == 2 ) // [marquis007] + if( (skill_id == WZ_EARTHSPIKE && sc && sc->data[SC_EARTHSCROLL] && rnd()%100 > sc->data[SC_EARTHSCROLL]->val2) || sd->inventory_data[i]->flag.delay_consume & DELAYCONSUME_NOCONSUME ) // [marquis007] ; //Do not consume item. else if( sd->inventory.u.items_inventory[i].expire_time == 0 ) pc_delitem(sd,i,1,0,0,LOG_TYPE_CONSUME); // Rental usable items are not consumed until expiration @@ -16627,7 +16627,7 @@ bool skill_check_condition_castend(struct map_session_data* sd, uint16 skill_id, sprintf(e_msg,msg_txt(sd,381), //Skill Failed. [%s] requires %dx %s. skill_get_desc(skill_id), require.ammo_qty, - itemdb_jname(sd->inventory.u.items_inventory[i].nameid)); + itemdb_ename(sd->inventory.u.items_inventory[i].nameid)); clif_messagecolor(&sd->bl,color_table[COLOR_RED],e_msg,false,SELF); return false; } @@ -22319,7 +22319,7 @@ uint64 SkillDatabase::parseBodyNode(const YAML::Node &node) { skill->require.ammo = 0; } else { for (const auto &it : ammoNode) { - std::string ammo = it.first.as(), ammo_constant = "A_" + ammo; + std::string ammo = it.first.as(), ammo_constant = "AMMO_" + ammo; int64 constant; if (!script_get_constant(ammo_constant.c_str(), &constant)) { diff --git a/src/map/status.cpp b/src/map/status.cpp index 2a7dce6d2f..abd340a95e 100644 --- a/src/map/status.cpp +++ b/src/map/status.cpp @@ -4022,31 +4022,38 @@ int status_calc_pc_sub(struct map_session_data* sd, enum e_status_calc_opt opt) } } - // We've got combos to process and check - if( sd->combos.count ) { - for (i = 0; i < sd->combos.count; i++) { - uint8 j = 0; - bool no_run = false; - struct item_combo *combo = NULL; + // Process and check item combos + if (!sd->combos.empty()) { + for (const auto &combo : sd->combos) { + s_item_combo *item_combo; current_equip_item_index = -1; - current_equip_combo_pos = sd->combos.pos[i]; + current_equip_combo_pos = combo->pos; - if (!sd->combos.bonus[i] || !(combo = itemdb_combo_exists(sd->combos.id[i]))) + if (combo->bonus == nullptr || !(item_combo = itemdb_combo_exists(combo->id))) continue; + + bool no_run = false; + size_t j = 0; + // Check combo items - while (j < combo->count) { - struct item_data *id = itemdb_exists(combo->nameid[j]); + while (j < item_combo->nameid.size()) { + item_data *id = itemdb_exists(item_combo->nameid[j]); + // Don't run the script if at least one of combo's pair has restriction if (id && !pc_has_permission(sd, PC_PERM_USE_ALL_EQUIPMENT) && itemdb_isNoEquip(id, sd->bl.m)) { no_run = true; break; } + j++; } + if (no_run) continue; - run_script(sd->combos.bonus[i],0,sd->bl.id,0); + + run_script(combo->bonus, 0, sd->bl.id, 0); + if (!calculating) // Abort, run_script retriggered this return 1; } diff --git a/src/map/storage.cpp b/src/map/storage.cpp index 39766ac72c..5f6f113276 100644 --- a/src/map/storage.cpp +++ b/src/map/storage.cpp @@ -771,7 +771,7 @@ bool storage_guild_additem(struct map_session_data* sd, struct s_storage* stor, id = itemdb_search(item_data->nameid); - if( id->stack.guildstorage && amount > id->stack.amount ) // item stack limitation + if( id->stack.guild_storage && amount > id->stack.amount ) // item stack limitation return false; if (!itemdb_canguildstore(item_data, pc_get_group_level(sd)) || item_data->expire_time) { // Check if item is storable. [Skotlex] @@ -787,7 +787,7 @@ bool storage_guild_additem(struct map_session_data* sd, struct s_storage* stor, if(itemdb_isstackable2(id)) { //Stackable for(i = 0; i < stor->max_amount; i++) { if(compare_item(&stor->u.items_guild[i], item_data)) { - if( amount > MAX_AMOUNT - stor->u.items_guild[i].amount || ( id->stack.guildstorage && amount > id->stack.amount - stor->u.items_guild[i].amount ) ) + if( amount > MAX_AMOUNT - stor->u.items_guild[i].amount || ( id->stack.guild_storage && amount > id->stack.amount - stor->u.items_guild[i].amount ) ) return false; stor->u.items_guild[i].amount += amount; @@ -842,9 +842,9 @@ bool storage_guild_additem2(struct s_storage* stor, struct item* item, int amoun for (i = 0; i < stor->max_amount; i++) { if (compare_item(&stor->u.items_guild[i], item)) { // Set the amount, make it fit with max amount - amount = min(amount, ((id->stack.guildstorage) ? id->stack.amount : MAX_AMOUNT) - stor->u.items_guild[i].amount); + amount = min(amount, ((id->stack.guild_storage) ? id->stack.amount : MAX_AMOUNT) - stor->u.items_guild[i].amount); if (amount != item->amount) - ShowWarning("storage_guild_additem2: Stack limit reached! Altered amount of item \"" CL_WHITE "%s" CL_RESET "\" (%u). '" CL_WHITE "%d" CL_RESET "' -> '" CL_WHITE"%d" CL_RESET "'.\n", id->name, id->nameid, item->amount, amount); + ShowWarning("storage_guild_additem2: Stack limit reached! Altered amount of item \"" CL_WHITE "%s" CL_RESET "\" (%u). '" CL_WHITE "%d" CL_RESET "' -> '" CL_WHITE"%d" CL_RESET "'.\n", id->name.c_str(), id->nameid, item->amount, amount); stor->u.items_guild[i].amount += amount; stor->dirty = true; return true; diff --git a/src/map/unit.cpp b/src/map/unit.cpp index 15632f2015..c67d6740bd 100644 --- a/src/map/unit.cpp +++ b/src/map/unit.cpp @@ -3378,12 +3378,7 @@ int unit_free(struct block_list *bl, clr_type clrtype) sd->npc_id = 0; } - if( sd->combos.count ) { - aFree(sd->combos.bonus); - aFree(sd->combos.id); - aFree(sd->combos.pos); - sd->combos.count = 0; - } + sd->combos.clear(); if( sd->sc_display_count ) { /* [Ind] */ for( i = 0; i < sd->sc_display_count; i++ ) diff --git a/src/map/vending.cpp b/src/map/vending.cpp index cfefccd03a..27b363deb1 100755 --- a/src/map/vending.cpp +++ b/src/map/vending.cpp @@ -451,7 +451,7 @@ bool vending_searchall(struct map_session_data* sd, const struct s_search_store_ if( itemdb_isspecial(it->card[0]) ) { // something, that is not a carded continue; } - slot = itemdb_slot(it->nameid); + slot = itemdb_slots(it->nameid); for( c = 0; c < slot && it->card[c]; c ++ ) { ARR_FIND( 0, s->card_count, cidx, s->cardlist[cidx].itemId == it->card[c] ); diff --git a/src/tool/Makefile.in b/src/tool/Makefile.in index 5c31937776..dc6789ce6a 100644 --- a/src/tool/Makefile.in +++ b/src/tool/Makefile.in @@ -4,10 +4,6 @@ COMMON_DIR_OBJ = $(COMMON_OBJ:%=../common/obj/%) COMMON_H = $(shell ls ../common/*.hpp) COMMON_INCLUDE = -I../common/ -LIBCONFIG_H = $(shell ls ../../3rdparty/libconfig/*.h) -LIBCONFIG_AR = ../../3rdparty/libconfig/obj/libconfig.a -LIBCONFIG_INCLUDE = -I../../3rdparty/libconfig - YAML_CPP_OBJ = $(shell find ../../3rdparty/yaml-cpp/ -type f -name "*.cpp" | sed -e "s/\.cpp/\.o/g" ) YAML_CPP_DIR_OBJ = $(YAML_CPP_OBJ:%=obj/%) YAML_CPP_AR = ../../3rdparty/yaml-cpp/obj/yaml-cpp.a @@ -20,29 +16,36 @@ MAPCACHE_OBJ = obj_all/mapcache.o CSV2YAML_OBJ = obj_all/csv2yaml.o +YAML2SQL_OBJ = obj_all/yaml2sql.o + @SET_MAKE@ ##################################################################### -.PHONY : all mapcache csv2yaml clean help +.PHONY : all mapcache csv2yaml yaml2sql clean help -all: mapcache csv2yaml +all: mapcache csv2yaml yaml2sql -mapcache: obj_all $(MAPCACHE_OBJ) $(COMMON_DIR_OBJ) $(LIBCONFIG_OBJ) +mapcache: obj_all $(MAPCACHE_OBJ) $(COMMON_DIR_OBJ) @echo " LD $@" - @@CXX@ @LDFLAGS@ -o ../../mapcache@EXEEXT@ $(MAPCACHE_OBJ) $(COMMON_DIR_OBJ) $(LIBCONFIG_AR) @LIBS@ + @@CXX@ @LDFLAGS@ -o ../../mapcache@EXEEXT@ $(MAPCACHE_OBJ) $(COMMON_DIR_OBJ) @LIBS@ csv2yaml: obj_all $(CSV2YAML_OBJ) $(COMMON_DIR_OBJ) $(YAML_CPP_AR) @echo " LD $@" - @@CXX@ @LDFLAGS@ -o ../../csv2yaml@EXEEXT@ $(CSV2YAML_OBJ) $(COMMON_DIR_OBJ) $(YAML_CPP_AR) @LIBS@ + @@CXX@ @LDFLAGS@ -o ../../csv2yaml@EXEEXT@ $(CSV2YAML_OBJ) $(COMMON_DIR_OBJ) ../common/obj/database.o $(YAML_CPP_AR) @LIBS@ + +yaml2sql: obj_all $(YAML2SQL_OBJ) $(COMMON_DIR_OBJ) $(YAML_CPP_AR) + @echo " LD $@" + @@CXX@ @LDFLAGS@ -o ../../yaml2sql@EXEEXT@ $(YAML2SQL_OBJ) $(COMMON_DIR_OBJ) $(YAML_CPP_AR) @LIBS@ clean: @echo " CLEAN tool" - @rm -rf obj_all/*.o ../../mapcache@EXEEXT@ + @rm -rf obj_all/*.o ../../mapcache@EXEEXT@ ../../csv2yaml@EXEEXT@ ../../yaml2sql@EXEEXT@ help: - @echo "possible targets are 'mapcache' 'all' 'clean' 'help'" + @echo "possible targets are 'mapcache' 'csv2yaml' 'yaml2sql' 'all' 'clean' 'help'" @echo "'mapcache' - mapcache generator" - @echo "'csv2yaml' - csv2yaml converter" + @echo "'csv2yaml' - converts TXT databases to YAML" + @echo "'yaml2sql' - converts YAML databases to SQL" @echo "'all' - builds all above targets" @echo "'clean' - cleans builds and objects" @echo "'help' - outputs this message" @@ -52,16 +55,13 @@ help: obj_all: -mkdir obj_all -obj_all/%.o: %.cpp $(COMMON_H) $(OTHER_H) $(LIBCONFIG_H) $(YAML_CPP_H) +obj_all/%.o: %.cpp $(COMMON_H) $(OTHER_H) $(YAML_CPP_H) @echo " CXX $<" - @@CXX@ @CXXFLAGS@ $(COMMON_INCLUDE) $(LIBCONFIG_INCLUDE) $(YAML_CPP_INCLUDE) @CPPFLAGS@ -c $(OUTPUT_OPTION) $< + @@CXX@ @CXXFLAGS@ $(COMMON_INCLUDE) $(YAML_CPP_INCLUDE) @CPPFLAGS@ -c $(OUTPUT_OPTION) $< # missing common object files $(COMMON_DIR_OBJ): @$(MAKE) -C ../common server -$(LIBCONFIG_AR): - @$(MAKE) -C ../../3rdparty/libconfig - $(YAML_CPP_AR): @$(MAKE) -C ../../3rdparty/yaml-cpp diff --git a/src/tool/csv2yaml.cpp b/src/tool/csv2yaml.cpp index 5a7d3ad1c2..0557060d4d 100644 --- a/src/tool/csv2yaml.cpp +++ b/src/tool/csv2yaml.cpp @@ -5,6 +5,7 @@ #include #include #include +#include #include #include @@ -86,6 +87,100 @@ std::unordered_map skill_unit; std::unordered_map skill_copyable; std::unordered_map skill_nearnpc; +struct s_item_flag_csv2yaml { + bool buyingstore, dead_branch, group, guid, broadcast, bindOnEquip, delay_consume; + e_item_drop_effect dropEffect; +}; + +struct s_item_delay_csv2yaml { + uint32 delay; + std::string sc; +}; + +struct s_item_stack_csv2yaml { + uint16 amount; + bool inventory, cart, storage, guild_storage; +}; + +struct s_item_nouse_csv2yaml { + uint16 override; + bool sitting; +}; + +struct s_item_trade_csv2yaml { + uint16 override; + bool drop, trade, trade_partner, sell, cart, storage, guild_storage, mail, auction; +}; + +std::unordered_map item_avail; +std::unordered_map item_buyingstore; +std::unordered_map item_flag; +std::unordered_map item_delay; +std::unordered_map item_stack; +std::unordered_map item_nouse; +std::unordered_map item_trade; + +static std::map um_mapid2jobname { + { "Novice", JOB_NOVICE }, // Novice and Super Novice share the same value + { "SuperNovice", JOB_NOVICE }, + { "Swordman", JOB_SWORDMAN }, + { "Mage", JOB_MAGE }, + { "Archer", JOB_ARCHER }, + { "Acolyte", JOB_ACOLYTE }, + { "Merchant", JOB_MERCHANT }, + { "Thief", JOB_THIEF }, + { "Knight", JOB_KNIGHT }, + { "Priest", JOB_PRIEST }, + { "Wizard", JOB_WIZARD }, + { "Blacksmith", JOB_BLACKSMITH }, + { "Hunter", JOB_HUNTER }, + { "Assassin", JOB_ASSASSIN }, + { "Crusader", JOB_CRUSADER }, + { "Monk", JOB_MONK }, + { "Sage", JOB_SAGE }, + { "Rogue", JOB_ROGUE }, + { "Alchemist", JOB_ALCHEMIST }, + { "BardDancer", JOB_BARD }, // Bard and Dancer share the same value + { "BardDancer", JOB_DANCER }, + { "Gunslinger", JOB_GUNSLINGER }, + { "Ninja", JOB_NINJA }, + { "Taekwon", 21 }, + { "StarGladiator", 22 }, + { "SoulLinker", 23 }, +// { "Gangsi", 26 }, +// { "DeathKnight", 27 }, +// { "DarkCollector", 28 }, +#ifdef RENEWAL + { "KagerouOboro", 29 }, // Kagerou and Oboro share the same value + { "Rebellion", 30 }, + { "Summoner", 31 }, +#endif +}; + +static std::unordered_map um_equipnames { + { "Head_Low", EQP_HEAD_LOW }, + { "Head_Mid", EQP_HEAD_MID }, + { "Head_Top", EQP_HEAD_TOP }, + { "Right_Hand", EQP_HAND_R }, + { "Left_Hand", EQP_HAND_L }, + { "Armor", EQP_ARMOR }, + { "Shoes", EQP_SHOES }, + { "Garment", EQP_GARMENT }, + { "Right_Accessory", EQP_ACC_R }, + { "Left_Accessory", EQP_ACC_L }, + { "Costume_Head_Top", EQP_COSTUME_HEAD_TOP }, + { "Costume_Head_Mid", EQP_COSTUME_HEAD_MID }, + { "Costume_Head_Low", EQP_COSTUME_HEAD_LOW }, + { "Costume_Garment", EQP_COSTUME_GARMENT }, + { "Ammo", EQP_AMMO }, + { "Shadow_Armor", EQP_SHADOW_ARMOR }, + { "Shadow_Weapon", EQP_SHADOW_WEAPON }, + { "Shadow_Shield", EQP_SHADOW_SHIELD }, + { "Shadow_Shoes", EQP_SHADOW_SHOES }, + { "Shadow_Right_Accessory", EQP_SHADOW_ACC_R }, + { "Shadow_Left_Accessory", EQP_SHADOW_ACC_L }, +}; + // Forward declaration of conversion functions static bool guild_read_guildskill_tree_db( char* split[], int columns, int current ); static bool pet_read_db( const char* file ); @@ -102,16 +197,24 @@ static bool skill_parse_row_nonearnpcrangedb(char* split[], int columns, int cur static bool skill_parse_row_skilldb(char* split[], int columns, int current); static bool quest_read_db(char *split[], int columns, int current); static bool instance_readdb_sub(char* str[], int columns, int current); +static bool itemdb_read_itemavail(char *str[], int columns, int current); +static bool itemdb_read_buyingstore(char* fields[], int columns, int current); +static bool itemdb_read_flag(char* fields[], int columns, int current); +static bool itemdb_read_itemdelay(char* str[], int columns, int current); +static bool itemdb_read_stack(char* fields[], int columns, int current); +static bool itemdb_read_nouse(char* fields[], int columns, int current); +static bool itemdb_read_itemtrade(char* fields[], int columns, int current); +static bool itemdb_read_db(const char *file); // Constants for conversion std::unordered_map aegis_itemnames; -std::unordered_map aegis_itemviewid; +std::unordered_map aegis_itemviewid; std::unordered_map aegis_mobnames; std::unordered_map aegis_skillnames; std::unordered_map constants; // Forward declaration of constant loading functions -static bool parse_item_constants( const char* path ); +static bool parse_item_constants_txt( const char* path ); static bool parse_mob_constants( char* split[], int columns, int current ); static bool parse_skill_constants_txt( char* split[], int columns, int current ); static bool parse_skill_constants_yml(std::string path, std::string filename); @@ -142,6 +245,32 @@ static void skill_txt_data(const std::string& modePath, const std::string& fixed sv_readdb(fixedPath.c_str(), "skill_nonearnpc_db.txt", ',', 2, 3, -1, skill_parse_row_nonearnpcrangedb, false); } +// Item database data to memory +static void item_txt_data(const std::string& modePath, const std::string& fixedPath) { + item_avail.clear(); + item_buyingstore.clear(); + item_flag.clear(); + item_delay.clear(); + item_stack.clear(); + item_nouse.clear(); + item_trade.clear(); + + if (fileExists(fixedPath + "/item_avail.txt")) + sv_readdb(fixedPath.c_str(), "item_avail.txt", ',', 2, 2, -1, &itemdb_read_itemavail, false); + if (fileExists(modePath + "/item_buyingstore.txt")) + sv_readdb(modePath.c_str(), "item_buyingstore.txt", ',', 1, 1, -1, &itemdb_read_buyingstore, false); + if (fileExists(modePath + "/item_flag.txt")) + sv_readdb(modePath.c_str(), "item_flag.txt", ',', 2, 2, -1, &itemdb_read_flag, false); + if (fileExists(modePath + "/item_delay.txt")) + sv_readdb(modePath.c_str(), "item_delay.txt", ',', 2, 3, -1, &itemdb_read_itemdelay, false); + if (fileExists(modePath + "/item_stack.txt")) + sv_readdb(modePath.c_str(), "item_stack.txt", ',', 3, 3, -1, &itemdb_read_stack, false); + if (fileExists(fixedPath + "/item_nouse.txt")) + sv_readdb(fixedPath.c_str(), "item_nouse.txt", ',', 3, 3, -1, &itemdb_read_nouse, false); + if (fileExists(modePath + "/item_trade.txt")) + sv_readdb(modePath.c_str(), "item_trade.txt", ',', 3, 3, -1, &itemdb_read_itemtrade, false); +} + YAML::Emitter body; // Implement the function instead of including the original version by linking @@ -235,7 +364,7 @@ bool process( const std::string& type, uint32 version, const std::vector bool { + return itemdb_read_db((path + name_ext).c_str()); + })) { + return 0; + } + + item_txt_data(path_db_import, path_db_import); + if (!process("ITEM_DB", 1, { path_db_import }, "item_db", [](const std::string& path, const std::string& name_ext) -> bool { + return itemdb_read_db((path + name_ext).c_str()); + })) { + return 0; + } + // TODO: add implementations ;-) return 0; @@ -405,7 +552,7 @@ bool askConfirmation( const char* fmt, ... ){ } // Constant loading functions -static bool parse_item_constants( const char* path ){ +static bool parse_item_constants_txt( const char* path ){ uint32 lines = 0, count = 0; char line[1024]; @@ -413,7 +560,7 @@ static bool parse_item_constants( const char* path ){ fp = fopen(path, "r"); if (fp == NULL) { - ShowWarning("itemdb_readdb: File not found \"%s\", skipping.\n", path); + ShowWarning("parse_item_constants_txt: File not found \"%s\", skipping.\n", path); return false; } @@ -450,21 +597,21 @@ static bool parse_item_constants( const char* path ){ if (p == NULL) { - ShowError("itemdb_readdb: Insufficient columns in line %d of \"%s\" (item with id %d), skipping.\n", lines, path, atoi(str[0])); + ShowError("parse_item_constants_txt: Insufficient columns in line %d of \"%s\" (item with id %d), skipping.\n", lines, path, atoi(str[0])); continue; } // Script if (*p != '{') { - ShowError("itemdb_readdb: Invalid format (Script column) in line %d of \"%s\" (item with id %d), skipping.\n", lines, path, atoi(str[0])); + ShowError("parse_item_constants_txt: Invalid format (Script column) in line %d of \"%s\" (item with id %d), skipping.\n", lines, path, atoi(str[0])); continue; } str[19] = p + 1; p = strstr(p + 1, "},"); if (p == NULL) { - ShowError("itemdb_readdb: Invalid format (Script column) in line %d of \"%s\" (item with id %d), skipping.\n", lines, path, atoi(str[0])); + ShowError("parse_item_constants_txt: Invalid format (Script column) in line %d of \"%s\" (item with id %d), skipping.\n", lines, path, atoi(str[0])); continue; } *p = '\0'; @@ -473,14 +620,14 @@ static bool parse_item_constants( const char* path ){ // OnEquip_Script if (*p != '{') { - ShowError("itemdb_readdb: Invalid format (OnEquip_Script column) in line %d of \"%s\" (item with id %d), skipping.\n", lines, path, atoi(str[0])); + ShowError("parse_item_constants_txt: Invalid format (OnEquip_Script column) in line %d of \"%s\" (item with id %d), skipping.\n", lines, path, atoi(str[0])); continue; } str[20] = p + 1; p = strstr(p + 1, "},"); if (p == NULL) { - ShowError("itemdb_readdb: Invalid format (OnEquip_Script column) in line %d of \"%s\" (item with id %d), skipping.\n", lines, path, atoi(str[0])); + ShowError("parse_item_constants_txt: Invalid format (OnEquip_Script column) in line %d of \"%s\" (item with id %d), skipping.\n", lines, path, atoi(str[0])); continue; } *p = '\0'; @@ -489,7 +636,7 @@ static bool parse_item_constants( const char* path ){ // OnUnequip_Script (last column) if (*p != '{') { - ShowError("itemdb_readdb: Invalid format (OnUnequip_Script column) in line %d of \"%s\" (item with id %d), skipping.\n", lines, path, atoi(str[0])); + ShowError("parse_item_constants_txt: Invalid format (OnUnequip_Script column) in line %d of \"%s\" (item with id %d), skipping.\n", lines, path, atoi(str[0])); continue; } str[21] = p; @@ -509,7 +656,7 @@ static bool parse_item_constants( const char* path ){ } if (lcurly != rcurly) { - ShowError("itemdb_readdb: Mismatching curly braces in line %d of \"%s\" (item with id %d), skipping.\n", lines, path, atoi(str[0])); + ShowError("parse_item_constants_txt: Mismatching curly braces in line %d of \"%s\" (item with id %d), skipping.\n", lines, path, atoi(str[0])); continue; } } @@ -521,7 +668,7 @@ static bool parse_item_constants( const char* path ){ aegis_itemnames[item_id] = std::string(name); - if (atoi(str[14]) & (EQP_HELM | EQP_COSTUME_HELM) && util::umap_find(aegis_itemviewid, (uint16)atoi(str[18])) == nullptr) + if (atoi(str[14]) & (EQP_HELM | EQP_COSTUME_HELM) && util::umap_find(aegis_itemviewid, (t_itemid)atoi(str[18])) == nullptr) aegis_itemviewid[atoi(str[18])] = item_id; count++; @@ -534,6 +681,64 @@ static bool parse_item_constants( const char* path ){ return true; } +const std::string ItemDatabase::getDefaultLocation(){ + return std::string( db_path ) + "/item_db.yml"; +} + +uint64 ItemDatabase::parseBodyNode(const YAML::Node& node) { + t_itemid nameid; + + if (!this->asUInt32(node, "Id", nameid)) + return 0; + + if (this->nodeExists(node, "AegisName")) { + std::string name; + + if (!this->asString(node, "AegisName", name)) + return 0; + + aegis_itemnames[nameid] = name; + } + + if (this->nodeExists(node, "View")) { + uint32 look; + + if (!this->asUInt32(node, "View", look)) + return 0; + + if( look > 0 ){ + if (this->nodeExists(node, "Locations")) { + const YAML::Node& locationNode = node["Locations"]; + + static std::vector locations = { + "Head_Low", + "Head_Mid", + "Head_Top", + "Costume_Head_Low", + "Costume_Head_Mid", + "Costume_Head_Top" + }; + + for( std::string& location : locations ){ + if (this->nodeExists(locationNode, location)) { + bool active; + + if (!this->asBool(locationNode, location, active)) + return 0; + + aegis_itemviewid[look] = nameid; + break; + } + } + } + } + } + + return 1; +} + +ItemDatabase item_db; + static bool parse_mob_constants( char* split[], int columns, int current ){ uint16 mob_id = atoi( split[0] ); char* name = trim( split[1] ); @@ -638,6 +843,39 @@ uint8 skill_split_atoi2(char *str, int64 *val, const char *delim, int min_value, return i; } +/** + * Split string to int + * @param str: String input + * @param val1: Temporary storage to first value + * @param val2: Temporary storage to second value + */ +static void itemdb_re_split_atoi(char* str, int* val1, int* val2) { + int i, val[2]; + + for (i = 0; i < 2; i++) { + if (!str) + break; + val[i] = atoi(str); + str = strchr(str, ':'); + if (str) + *str++ = 0; + } + if (i == 0) { + *val1 = *val2 = 0; + return; // no data found + } + if (i == 1) { // Single Value + *val1 = val[0]; + *val2 = 0; + return; + } + + // We assume we have 2 values. + *val1 = val[0]; + *val2 = val[1]; + return; +} + // Implementation of the conversion functions // Copied and adjusted from guild.cpp @@ -1022,7 +1260,7 @@ static bool mob_readdb_mobavail(char* str[], int columns, int current) { } if (atoi(str[7]) != 0) { - uint16 *headtop_item_id = util::umap_find(aegis_itemviewid, (uint16)atoi(str[7])); + t_itemid *headtop_item_id = util::umap_find(aegis_itemviewid, (t_itemid)atoi(str[7])); if (headtop_item_id == nullptr) { ShowError("Item ID for view ID %hu (head top) is not known.\n", atoi(str[7])); @@ -1040,7 +1278,7 @@ static bool mob_readdb_mobavail(char* str[], int columns, int current) { } if (atoi(str[8]) != 0) { - uint16 *headmid_item_id = util::umap_find(aegis_itemviewid, (uint16)atoi(str[8])); + t_itemid *headmid_item_id = util::umap_find(aegis_itemviewid, (t_itemid)atoi(str[8])); if (headmid_item_id == nullptr) { ShowError("Item ID for view ID %hu (head mid) is not known.\n", atoi(str[8])); @@ -1058,7 +1296,7 @@ static bool mob_readdb_mobavail(char* str[], int columns, int current) { } if (atoi(str[9]) != 0) { - uint16 *headlow_item_id = util::umap_find(aegis_itemviewid, (uint16)atoi(str[9])); + t_itemid *headlow_item_id = util::umap_find(aegis_itemviewid, (t_itemid)atoi(str[9])); if (headlow_item_id == nullptr) { ShowError("Item ID for view ID %hu (head low) is not known.\n", atoi(str[9])); @@ -2563,3 +2801,488 @@ static bool instance_readdb_sub(char* str[], int columns, int current) { return true; } + +// item_db.yml function +//--------------------- +static bool itemdb_read_itemavail(char *str[], int columns, int current) { + item_avail.insert({ strtoul(str[0], nullptr, 10), strtoul(str[1], nullptr, 10) }); + return true; +} + +// item_db.yml function +//--------------------- +static bool itemdb_read_buyingstore(char* fields[], int columns, int current) { + item_buyingstore.insert({ strtoul(fields[0], nullptr, 10), true }); + return true; +} + +// item_db.yml function +//--------------------- +static bool itemdb_read_flag(char* fields[], int columns, int current) { + s_item_flag_csv2yaml item = { 0 }; + uint16 flag = abs(atoi(fields[1])); + + if (flag & 1) + item.dead_branch = true; + if (flag & 2) + item.group = true; + if (flag & 4) + item.guid = true; + if (flag & 8) + item.bindOnEquip = true; + if (flag & 16) + item.broadcast = true; + if (flag & 32) + item.delay_consume = true; + if (flag & 64) + item.dropEffect = DROPEFFECT_CLIENT; + else if (flag & 128) + item.dropEffect = DROPEFFECT_WHITE_PILLAR; + else if (flag & 256) + item.dropEffect = DROPEFFECT_BLUE_PILLAR; + else if (flag & 512) + item.dropEffect = DROPEFFECT_YELLOW_PILLAR; + else if (flag & 1024) + item.dropEffect = DROPEFFECT_PURPLE_PILLAR; + else if (flag & 2048) + item.dropEffect = DROPEFFECT_ORANGE_PILLAR; + + item_flag.insert({ strtoul(fields[0], nullptr, 10), item }); + return true; +} + +// item_db.yml function +//--------------------- +static bool itemdb_read_itemdelay(char* str[], int columns, int current) { + s_item_delay_csv2yaml item = { 0 }; + + item.delay = atoi(str[1]); + + if (columns == 3) + item.sc = trim(str[2]); + + item_delay.insert({ strtoul(str[0], nullptr, 10), item }); + return true; +} + +// item_db.yml function +//--------------------- +static bool itemdb_read_stack(char* fields[], int columns, int current) { + s_item_stack_csv2yaml item = { 0 }; + + item.amount = atoi(fields[1]); + + int type = strtoul(fields[2], NULL, 10); + + if (type & 1) + item.inventory = true; + if (type & 2) + item.cart = true; + if (type & 4) + item.storage = true; + if (type & 8) + item.guild_storage = true; + + item_stack.insert({ strtoul(fields[0], nullptr, 10), item }); + return true; +} + +// item_db.yml function +//--------------------- +static bool itemdb_read_nouse(char* fields[], int columns, int current) { + s_item_nouse_csv2yaml item = { 0 }; + + item.sitting = "true"; + item.override = atoi(fields[2]); + + item_nouse.insert({ strtoul(fields[0], nullptr, 10), item }); + return true; +} + +// item_db.yml function +//--------------------- +static bool itemdb_read_itemtrade(char* str[], int columns, int current) { + s_item_trade_csv2yaml item = { 0 }; + int flag = atoi(str[1]); + + if (flag & 1) + item.drop = true; + if (flag & 2) + item.trade = true; + if (flag & 4) + item.trade_partner = true; + if (flag & 8) + item.sell = true; + if (flag & 16) + item.cart = true; + if (flag & 32) + item.storage = true; + if (flag & 64) + item.guild_storage = true; + if (flag & 128) + item.mail = true; + if (flag & 256) + item.auction = true; + + item.override = atoi(str[2]); + + item_trade.insert({ strtoul(str[0], nullptr, 10), item }); + return true; +} + +// Copied and adjusted from itemdb.cpp +static bool itemdb_read_db(const char* file) { + FILE* fp = fopen(file, "r"); + + if (fp == nullptr) { + ShowError("can't read %s\n", file); + return false; + } + + int lines = 0; + size_t entries = 0; + char line[1024]; + + while (fgets(line, sizeof(line), fp)) { + char* str[32], * p; + int i; + + lines++; + + if (line[0] == '/' && line[1] == '/') + continue; + + memset(str, 0, sizeof(str)); + + p = strstr(line, "//"); + + if (p != nullptr) { + *p = '\0'; + } + + p = line; + while (ISSPACE(*p)) + ++p; + if (*p == '\0') + continue;// empty line + for (i = 0; i < 19; ++i) { + str[i] = p; + p = strchr(p, ','); + if (p == NULL) + break;// comma not found + *p = '\0'; + ++p; + } + + if (p == NULL) { + ShowError("itemdb_read_db: Insufficient columns in line %d (item with id %u), skipping.\n", lines, strtoul(str[0], nullptr, 10)); + continue; + } + + // Script + if (*p != '{') { + ShowError("itemdb_read_db: Invalid format (Script column) in line %d (item with id %u), skipping.\n", lines, strtoul(str[0], nullptr, 10)); + continue; + } + str[19] = p + 1; + p = strstr(p + 1, "},"); + if (p == NULL) { + ShowError("itemdb_read_db: Invalid format (Script column) in line %d (item with id %u), skipping.\n", lines, strtoul(str[0], nullptr, 10)); + continue; + } + *p = '\0'; + p += 2; + + // OnEquip_Script + if (*p != '{') { + ShowError("itemdb_read_db: Invalid format (OnEquip_Script column) in line %d (item with id %u), skipping.\n", lines, strtoul(str[0], nullptr, 10)); + continue; + } + str[20] = p + 1; + p = strstr(p + 1, "},"); + if (p == NULL) { + ShowError("itemdb_read_db: Invalid format (OnEquip_Script column) in line %d (item with id %u), skipping.\n", lines, strtoul(str[0], nullptr, 10)); + continue; + } + *p = '\0'; + p += 2; + + // OnUnequip_Script (last column) + if (*p != '{') { + ShowError("itemdb_read_db: Invalid format (OnUnequip_Script column) in line %d (item with id %u), skipping.\n", lines, strtoul(str[0], nullptr, 10)); + continue; + } + str[21] = p; + p = &str[21][strlen(str[21]) - 2]; + + if (*p != '}') { + /* lets count to ensure it's not something silly e.g. a extra space at line ending */ + int lcurly = 0, rcurly = 0; + + for (size_t v = 0; v < strlen(str[21]); v++) { + if (str[21][v] == '{') + lcurly++; + else if (str[21][v] == '}') { + rcurly++; + p = &str[21][v]; + } + } + + if (lcurly != rcurly) { + ShowError("itemdb_read_db: Mismatching curly braces in line %d (item with id %u), skipping.\n", lines, strtoul(str[0], nullptr, 10)); + continue; + } + } + str[21] = str[21] + 1; //skip the first left curly + *p = '\0'; //null the last right curly + + t_itemid nameid = strtoul(str[0], nullptr, 10); + + body << YAML::BeginMap; + body << YAML::Key << "Id" << YAML::Value << nameid; + body << YAML::Key << "AegisName" << YAML::Value << str[1]; + body << YAML::Key << "Name" << YAML::Value << str[2]; + + int type = atoi(str[3]), subtype = atoi(str[18]); + + body << YAML::Key << "Type" << YAML::Value << name2Upper(constant_lookup(type, "IT_") + 3); + if (type == IT_WEAPON && subtype) + body << YAML::Key << "SubType" << YAML::Value << name2Upper(constant_lookup(subtype, "W_") + 2); + else if (type == IT_AMMO && subtype) + body << YAML::Key << "SubType" << YAML::Value << name2Upper(constant_lookup(subtype, "AMMO_") + 5); + + if (atoi(str[4]) > 0) + body << YAML::Key << "Buy" << YAML::Value << atoi(str[4]); + if (atoi(str[5]) > 0) { + if (atoi(str[4]) / 2 != atoi(str[5])) + body << YAML::Key << "Sell" << YAML::Value << atoi(str[5]); + } + if (atoi(str[6]) > 0) + body << YAML::Key << "Weight" << YAML::Value << atoi(str[6]); + +#ifdef RENEWAL + int atk = 0, matk = 0; + + itemdb_re_split_atoi(str[7], &atk, &matk); + if (atk > 0) + body << YAML::Key << "Attack" << YAML::Value << atk; + if (matk > 0) + body << YAML::Key << "MagicAttack" << YAML::Value << matk; +#else + if (atoi(str[7]) > 0) + body << YAML::Key << "Attack" << YAML::Value << atoi(str[7]); +#endif + if (atoi(str[8]) > 0) + body << YAML::Key << "Defense" << YAML::Value << atoi(str[8]); + if (atoi(str[9]) > 0) + body << YAML::Key << "Range" << YAML::Value << atoi(str[9]); + if (atoi(str[10]) > 0) + body << YAML::Key << "Slots" << YAML::Value << atoi(str[10]); + + bool equippable = type == IT_UNKNOWN ? false : type == IT_ETC ? false : type == IT_CARD ? false : type == IT_PETEGG ? false : type == IT_PETARMOR ? false : type == IT_UNKNOWN2 ? false : true; + + if (equippable) { + uint64 temp_mask = strtoull(str[11], NULL, 0); + + if (temp_mask == 0) { + //body << YAML::Key << "Jobs"; + //body << YAML::BeginMap << YAML::Key << "All" << YAML::Value << "false" << YAML::EndMap; + } else if (temp_mask == 0xFFFFFFFF) { // Commented out because it's the default value + //body << YAML::Key << "Jobs"; + //body << YAML::BeginMap << YAML::Key << "All" << YAML::Value << "true" << YAML::EndMap; + } else if (temp_mask == 0xFFFFFFFE) { + body << YAML::Key << "Jobs"; + body << YAML::BeginMap; + body << YAML::Key << "All" << YAML::Value << "true"; + body << YAML::Key << "Novice" << YAML::Value << "false"; + body << YAML::Key << "SuperNovice" << YAML::Value << "false"; + body << YAML::EndMap; + } else { + body << YAML::Key << "Jobs"; + body << YAML::BeginMap; + for (const auto &it : um_mapid2jobname) { + uint64 job_mask = 1ULL << it.second; + + if ((temp_mask & job_mask) == job_mask) + body << YAML::Key << it.first << YAML::Value << "true"; + } + body << YAML::EndMap; + } + + int temp_class = atoi(str[12]); + + if (temp_class == ITEMJ_NONE) { + body << YAML::Key << "Classes"; + body << YAML::BeginMap << YAML::Key << "All" << YAML::Value << "false" << YAML::EndMap; + } else if (temp_class == ITEMJ_ALL) { // Commented out because it's the default value + //body << YAML::Key << "Classes"; + //body << YAML::BeginMap << YAML::Key << "All" << YAML::Value << "true" << YAML::EndMap; + } else { + body << YAML::Key << "Classes"; + body << YAML::BeginMap; + for (int32 i = ITEMJ_NONE; i <= ITEMJ_THIRD_BABY; i++) { + if (i & temp_class) { + const char* class_ = constant_lookup(i, "ITEMJ_"); + + if (class_ != nullptr) + body << YAML::Key << name2Upper(class_ + 6) << YAML::Value << "true"; + } + } + body << YAML::EndMap; + } + + switch (atoi(str[13])) { + case SEX_FEMALE: + body << YAML::Key << "Gender" << YAML::Value << "Female"; + break; + case SEX_MALE: + body << YAML::Key << "Gender" << YAML::Value << "Male"; + break; + //case SEX_BOTH: // Commented out because it's the default value + // body << YAML::Key << "Gender" << YAML::Value << "Both"; + // break; + } + } + if (atoi(str[14]) > 0) { + int temp_loc = atoi(str[14]); + + body << YAML::Key << "Locations"; + body << YAML::BeginMap; + for (const auto &it : um_equipnames) { + if (it.second & temp_loc) + body << YAML::Key << it.first << YAML::Value << "true"; + } + body << YAML::EndMap; + } + if (atoi(str[15]) > 0) + body << YAML::Key << "WeaponLevel" << YAML::Value << atoi(str[15]); + + int elv = 0, elvmax = 0; + + itemdb_re_split_atoi(str[16], &elv, &elvmax); + if (elv > 0) + body << YAML::Key << "EquipLevelMin" << YAML::Value << elv; + if (elvmax > 0) + body << YAML::Key << "EquipLevelMax" << YAML::Value << elvmax; + if (atoi(str[17]) > 0) + body << YAML::Key << "Refineable" << YAML::Value << "true"; + if (strtoul(str[18], nullptr, 10) > 0 && type != IT_WEAPON && type != IT_AMMO) + body << YAML::Key << "View" << YAML::Value << strtoul(str[18], nullptr, 10); + + auto it_avail = item_avail.find(nameid); + + if (it_avail != item_avail.end()) { + std::string *item_name = util::umap_find(aegis_itemnames, static_cast(it_avail->second)); + + if (item_name == nullptr) + ShowError("Item name for item id %u is not known (item_avail).\n", it_avail->second); + else + body << YAML::Key << "AliasName" << YAML::Value << *item_name; + } + + auto it_flag = item_flag.find(nameid); + auto it_buying = item_buyingstore.find(nameid); + + if (it_flag != item_flag.end() || it_buying != item_buyingstore.end()) { + body << YAML::Key << "Flags"; + body << YAML::BeginMap; + if (it_buying != item_buyingstore.end()) + body << YAML::Key << "BuyingStore" << YAML::Value << "true"; + if (it_flag != item_flag.end() && it_flag->second.dead_branch) + body << YAML::Key << "DeadBranch" << YAML::Value << it_flag->second.dead_branch; + if (it_flag != item_flag.end() && it_flag->second.group) + body << YAML::Key << "Container" << YAML::Value << it_flag->second.group; + if (it_flag != item_flag.end() && it_flag->second.guid) + body << YAML::Key << "UniqueId" << YAML::Value << it_flag->second.guid; + if (it_flag != item_flag.end() && it_flag->second.bindOnEquip) + body << YAML::Key << "BindOnEquip" << YAML::Value << it_flag->second.bindOnEquip; + if (it_flag != item_flag.end() && it_flag->second.broadcast) + body << YAML::Key << "DropAnnounce" << YAML::Value << it_flag->second.broadcast; + if (it_flag != item_flag.end() && it_flag->second.delay_consume) + body << YAML::Key << "NoConsume" << YAML::Value << it_flag->second.delay_consume; + if (it_flag != item_flag.end() && it_flag->second.dropEffect) + body << YAML::Key << "DropEffect" << YAML::Value << name2Upper(constant_lookup(it_flag->second.dropEffect, "DROPEFFECT_") + 11); + body << YAML::EndMap; + } + + auto it_delay = item_delay.find(nameid); + + if (it_delay != item_delay.end()) { + body << YAML::Key << "Delay"; + body << YAML::BeginMap; + body << YAML::Key << "Duration" << YAML::Value << it_delay->second.delay; + if (it_delay->second.sc.size() > 0) + body << YAML::Key << "Status" << YAML::Value << name2Upper(it_delay->second.sc.erase(0, 3)); + body << YAML::EndMap; + } + + auto it_stack = item_stack.find(nameid); + + if (it_stack != item_stack.end()) { + body << YAML::Key << "Stack"; + body << YAML::BeginMap; + body << YAML::Key << "Amount" << YAML::Value << it_stack->second.amount; + if (it_stack->second.inventory) + body << YAML::Key << "Inventory" << YAML::Value << it_stack->second.inventory; + if (it_stack->second.cart) + body << YAML::Key << "Cart" << YAML::Value << it_stack->second.cart; + if (it_stack->second.storage) + body << YAML::Key << "Storage" << YAML::Value << it_stack->second.storage; + if (it_stack->second.guild_storage) + body << YAML::Key << "GuildStorage" << YAML::Value << it_stack->second.guild_storage; + body << YAML::EndMap; + } + + auto it_nouse = item_nouse.find(nameid); + + if (it_nouse != item_nouse.end()) { + body << YAML::Key << "NoUse"; + body << YAML::BeginMap; + body << YAML::Key << "Override" << YAML::Value << it_nouse->second.override; + body << YAML::Key << "Sitting" << YAML::Value << "true"; + body << YAML::EndMap; + } + + auto it_trade = item_trade.find(nameid); + + if (it_trade != item_trade.end()) { + body << YAML::Key << "Trade"; + body << YAML::BeginMap; + body << YAML::Key << "Override" << YAML::Value << it_trade->second.override; + if (it_trade->second.drop) + body << YAML::Key << "NoDrop" << YAML::Value << it_trade->second.drop; + if (it_trade->second.trade) + body << YAML::Key << "NoTrade" << YAML::Value << it_trade->second.trade; + if (it_trade->second.trade_partner) + body << YAML::Key << "TradePartner" << YAML::Value << it_trade->second.trade_partner; + if (it_trade->second.sell) + body << YAML::Key << "NoSell" << YAML::Value << it_trade->second.sell; + if (it_trade->second.cart) + body << YAML::Key << "NoCart" << YAML::Value << it_trade->second.cart; + if (it_trade->second.storage) + body << YAML::Key << "NoStorage" << YAML::Value << it_trade->second.storage; + if (it_trade->second.guild_storage) + body << YAML::Key << "NoGuildStorage" << YAML::Value << it_trade->second.guild_storage; + if (it_trade->second.mail) + body << YAML::Key << "NoMail" << YAML::Value << it_trade->second.mail; + if (it_trade->second.auction) + body << YAML::Key << "NoAuction" << YAML::Value << it_trade->second.auction; + body << YAML::EndMap; + } + + if (*str[19]) + body << YAML::Key << "Script" << YAML::Value << YAML::Literal << trim(str[19]); + if (*str[20]) + body << YAML::Key << "EquipScript" << YAML::Value << YAML::Literal << trim(str[20]); + if (*str[21]) + body << YAML::Key << "UnEquipScript" << YAML::Value << YAML::Literal << trim(str[21]); + + body << YAML::EndMap; + entries++; + } + + fclose(fp); + ShowStatus("Done reading '" CL_WHITE "%d" CL_RESET "' items in '" CL_WHITE "%s" CL_RESET "'.\n", entries, file); + + return true; +} diff --git a/src/tool/csv2yaml.vcxproj b/src/tool/csv2yaml.vcxproj index 932d178402..ea31155ec9 100644 --- a/src/tool/csv2yaml.vcxproj +++ b/src/tool/csv2yaml.vcxproj @@ -159,8 +159,12 @@ + + + + diff --git a/src/tool/csv2yaml.vcxproj.filters b/src/tool/csv2yaml.vcxproj.filters index d6fc2430e4..419a7acd14 100644 --- a/src/tool/csv2yaml.vcxproj.filters +++ b/src/tool/csv2yaml.vcxproj.filters @@ -14,5 +14,13 @@ Source Files + + Source Files + + + + + Header Files + diff --git a/src/tool/yaml2sql.cpp b/src/tool/yaml2sql.cpp new file mode 100644 index 0000000000..4a52171027 --- /dev/null +++ b/src/tool/yaml2sql.cpp @@ -0,0 +1,557 @@ +// Copyright (c) rAthena Dev Teams - Licensed under GNU GPL +// For more information, see LICENCE in the main folder + +#include +#include +#include +#include +#include +#include + +#ifdef WIN32 + #include +#else + #include + #include + #include +#endif + +#include + +#include "../common/cbasetypes.hpp" +#include "../common/core.hpp" +#include "../common/malloc.hpp" +#include "../common/mmo.hpp" +#include "../common/nullpo.hpp" +#include "../common/showmsg.hpp" +#include "../common/strlib.hpp" +#include "../common/utilities.hpp" +#include "../common/utils.hpp" +#ifdef WIN32 +#include "../common/winapi.hpp" +#endif + +using namespace rathena; + +#ifndef WIN32 +int getch( void ){ + struct termios oldattr, newattr; + int ch; + tcgetattr( STDIN_FILENO, &oldattr ); + newattr = oldattr; + newattr.c_lflag &= ~( ICANON | ECHO ); + tcsetattr( STDIN_FILENO, TCSANOW, &newattr ); + ch = getchar(); + tcsetattr( STDIN_FILENO, TCSANOW, &oldattr ); + return ch; +} +#endif + +// Forward declaration of conversion functions +static bool item_db_yaml2sql(const std::string &file, const std::string &table); + +bool fileExists( const std::string& path ); +bool askConfirmation( const char* fmt, ... ); + +YAML::Node inNode; +std::ofstream out; + +void copyFileIfExists( std::ofstream& file,const std::string& name ){ + std::string path = "doc/yaml/sql/" + name + ".sql"; + + if( fileExists( path ) ){ + std::ifstream source( path, std::ios::binary ); + + std::istreambuf_iterator begin_source(source); + std::istreambuf_iterator end_source; + std::ostreambuf_iterator begin_dest( file ); + copy( begin_source, end_source, begin_dest ); + + source.close(); + } +} + +void prepareHeader(std::ofstream &file, const std::string& name) { + copyFileIfExists( file, name ); + + file << "\n"; +} + +template +bool process( const std::string& type, uint32 version, const std::vector& paths, const std::string& name, const std::string& to, const std::string& table, Func lambda ){ + for( const std::string& path : paths ){ + const std::string name_ext = name + ".yml"; + const std::string from = path + name_ext; + + if( fileExists( from ) ){ + if( !askConfirmation( "Found the file \"%s\", which can be converted to sql.\nDo you want to convert it now? (Y/N)\n", from.c_str() ) ){ + continue; + } + + inNode.reset(); + + try { + inNode = YAML::LoadFile(from); + } catch (YAML::Exception &e) { + ShowError("%s (Line %d: Column %d)\n", e.msg.c_str(), e.mark.line, e.mark.column); + if (!askConfirmation("Error found in \"%s\" while attempting to load.\nPress any key to continue.\n", from.c_str())) + continue; + } + + if (!inNode["Body"].IsDefined()) + continue; + + if (fileExists(to)) { + if (!askConfirmation("The file \"%s\" already exists.\nDo you want to replace it? (Y/N)\n", to.c_str())) { + continue; + } + } + + out.open(to); + + if (!out.is_open()) { + ShowError("Can not open file \"%s\" for writing.\n", to.c_str()); + return false; + } + + prepareHeader(out, table); + + if( !lambda( path, name_ext, table ) ){ + out.close(); + return false; + } + + out.close(); + } + } + + return true; +} + +int do_init( int argc, char** argv ){ + const std::string path_db = std::string( db_path ); + const std::string path_db_mode = path_db + "/" + DBPATH; + const std::string path_db_import = path_db + "/" + DBIMPORT + "/"; +#ifdef RENEWAL + const std::string item_table_name = "item_db_re"; + const std::string item_import_table_name = "item_db2_re"; +#else + const std::string item_table_name = "item_db"; + const std::string item_import_table_name = "item_db2"; +#endif + std::vector item_table_suffixes = { + "usable", + "equip", + "etc" + }; + + for( const std::string& suffix : item_table_suffixes ){ + if (!process("ITEM_DB", 1, { path_db_mode }, "item_db_" + suffix, "sql-files/" + item_table_name + "_" + suffix + ".sql", item_table_name, [](const std::string& path, const std::string& name_ext, const std::string& table) -> bool { + return item_db_yaml2sql(path + name_ext, table); + })) { + return 0; + } + } + + if (!process("ITEM_DB", 1, { path_db_import }, "item_db", "sql-files/" + item_import_table_name + ".sql", item_import_table_name, [](const std::string& path, const std::string& name_ext, const std::string& table) -> bool { + return item_db_yaml2sql(path + name_ext, table); + })) { + return 0; + } + + // TODO: add implementations ;-) + + return 0; +} + +void do_final(void){ +} + +bool fileExists( const std::string& path ){ + std::ifstream in; + + in.open( path ); + + if( in.is_open() ){ + in.close(); + + return true; + }else{ + return false; + } +} + +bool askConfirmation( const char* fmt, ... ){ + va_list ap; + + va_start( ap, fmt ); + + _vShowMessage( MSG_NONE, fmt, ap ); + + va_end( ap ); + + char c = getch(); + + if( c == 'Y' || c == 'y' ){ + return true; + }else{ + return false; + } +} + +std::string name2Upper(std::string name) { + std::transform(name.begin(), name.end(), name.begin(), ::tolower); + name[0] = toupper(name[0]); + + for (size_t i = 0; i < name.size(); i++) { + if (name[i - 1] == '_' || (name[i - 2] == '1' && name[i - 1] == 'h') || (name[i - 2] == '2' && name[i - 1] == 'h')) + name[i] = toupper(name[i]); + } + + return name; +} + +const std::string WHITESPACE = " \n\r\t\f\v"; + +std::string ltrim(const std::string &s) { + size_t start = s.find_first_not_of(WHITESPACE); + + return (start == std::string::npos) ? "" : s.substr(start); +} + +std::string rtrim(const std::string &s) { + size_t end = s.find_last_not_of(WHITESPACE); + + return (end == std::string::npos) ? "" : s.substr(0, end + 1); +} + +std::string string_trim(const std::string &s) { + return rtrim(ltrim(s)); +} + +std::string string_escape(const std::string &s) { + size_t n = s.length(); + std::string escaped; + + escaped.reserve(n * 2); + + for (size_t i = 0; i < n; ++i) { + if (s[i] == '\\' || s[i] == '\'') + escaped += '\\'; + escaped += s[i]; + } + + return escaped; +} + +/** + * Append the entry value to the string if the Node exists + * @param node: Node with entry + * @param value: String to store node value to + * @param string: If value is a string or not + */ +static bool appendEntry(const YAML::Node &node, std::string &value, bool string = false) { + if (node.IsDefined()) { + if (string) { + value.append("'"); + value.append(string_trim(string_escape(node.as()))); + value.append("',"); + } else { + value.append(string_trim(node.as())); + value.append(","); + } + + return true; + } + + return false; +} + +// Implementation of the conversion functions + +// Copied and adjusted from itemdb.cpp +static bool item_db_yaml2sql(const std::string &file, const std::string &table) { + size_t entries = 0; + + for (const YAML::Node &input : inNode["Body"]) { + std::string column = "", value = ""; + + if (appendEntry(input["Id"], value)) + column.append("`id`,"); + if (appendEntry(input["AegisName"], value, true)) + column.append("`name_aegis`,"); + if (appendEntry(input["Name"], value, true)) + column.append("`name_english`,"); + if (appendEntry(input["Type"], value, true)) + column.append("`type`,"); + if (appendEntry(input["SubType"], value, true)) + column.append("`subtype`,"); + if (appendEntry(input["Buy"], value)) + column.append("`price_buy`,"); + if (appendEntry(input["Sell"], value)) + column.append("`price_sell`,"); + if (appendEntry(input["Weight"], value)) + column.append("`weight`,"); + if (appendEntry(input["Attack"], value)) + column.append("`attack`,"); +#ifdef RENEWAL + if (appendEntry(input["MagicAttack"], value)) + column.append("`magic_attack`,"); +#endif + if (appendEntry(input["Defense"], value)) + column.append("`defense`,"); + if (appendEntry(input["Range"], value)) + column.append("`range`,"); + if (appendEntry(input["Slots"], value)) + column.append("`slots`,"); + + const YAML::Node &jobs = input["Jobs"]; + + if (jobs) { + if (appendEntry(jobs["All"], value)) + column.append("`job_all`,"); + if (appendEntry(jobs["Acolyte"], value)) + column.append("`job_acolyte`,"); + if (appendEntry(jobs["Alchemist"], value)) + column.append("`job_alchemist`,"); + if (appendEntry(jobs["Archer"], value)) + column.append("`job_archer`,"); + if (appendEntry(jobs["Assassin"], value)) + column.append("`job_assassin`,"); + if (appendEntry(jobs["BardDancer"], value)) + column.append("`job_barddancer`,"); + if (appendEntry(jobs["Blacksmith"], value)) + column.append("`job_blacksmith`,"); + if (appendEntry(jobs["Crusader"], value)) + column.append("`job_crusader`,"); + if (appendEntry(jobs["Gunslinger"], value)) + column.append("`job_gunslinger`,"); + if (appendEntry(jobs["Hunter"], value)) + column.append("`job_hunter`,"); +#ifdef RENEWAL + if (appendEntry(jobs["KagerouOboro"], value)) + column.append("`job_kagerouoboro`,"); +#endif + if (appendEntry(jobs["Knight"], value)) + column.append("`job_knight`,"); + if (appendEntry(jobs["Mage"], value)) + column.append("`job_mage`,"); + if (appendEntry(jobs["Merchant"], value)) + column.append("`job_merchant`,"); + if (appendEntry(jobs["Monk"], value)) + column.append("`job_monk`,"); + if (appendEntry(jobs["Ninja"], value)) + column.append("`job_ninja`,"); + if (appendEntry(jobs["Novice"], value)) + column.append("`job_novice`,"); + if (appendEntry(jobs["Priest"], value)) + column.append("`job_priest`,"); +#ifdef RENEWAL + if (appendEntry(jobs["Rebellion"], value)) + column.append("`job_rebellion`,"); +#endif + if (appendEntry(jobs["Rogue"], value)) + column.append("`job_rogue`,"); + if (appendEntry(jobs["Sage"], value)) + column.append("`job_sage`,"); + if (appendEntry(jobs["SoulLinker"], value)) + column.append("`job_soullinker`,"); + if (appendEntry(jobs["StarGladiator"], value)) + column.append("`job_stargladiator`,"); +#ifdef RENEWAL + if (appendEntry(jobs["Summoner"], value)) + column.append("`job_summoner`,"); +#endif + if (appendEntry(jobs["SuperNovice"], value)) + column.append("`job_supernovice`,"); + if (appendEntry(jobs["Swordman"], value)) + column.append("`job_swordman`,"); + if (appendEntry(jobs["Taekwon"], value)) + column.append("`job_taekwon`,"); + if (appendEntry(jobs["Thief"], value)) + column.append("`job_thief`,"); + if (appendEntry(jobs["Wizard"], value)) + column.append("`job_wizard`,"); + } + + const YAML::Node &classes = input["Classes"]; + + if (classes) { + if (appendEntry(classes["All"], value)) + column.append("`class_all`,"); + if (appendEntry(classes["Normal"], value)) + column.append("`class_normal`,"); + if (appendEntry(classes["Upper"], value)) + column.append("`class_upper`,"); + if (appendEntry(classes["Baby"], value)) + column.append("`class_baby`,"); +#ifdef RENEWAL + if (appendEntry(classes["Third"], value)) + column.append("`class_third`,"); + if (appendEntry(classes["Third_Upper"], value)) + column.append("`class_third_upper`,"); + if (appendEntry(classes["Third_Baby"], value)) + column.append("`class_third_baby`,"); +#endif + } + + if (appendEntry(input["Gender"], value, true)) + column.append("`gender`,"); + + const YAML::Node &locations = input["Locations"]; + + if (locations) { + if (appendEntry(locations["Head_Top"], value)) + column.append("`location_head_top`,"); + if (appendEntry(locations["Head_Mid"], value)) + column.append("`location_head_mid`,"); + if (appendEntry(locations["Head_Low"], value)) + column.append("`location_head_low`,"); + if (appendEntry(locations["Armor"], value)) + column.append("`location_armor`,"); + if (appendEntry(locations["Left_Hand"], value)) + column.append("`location_left_hand`,"); + if (appendEntry(locations["Right_Hand"], value)) + column.append("`location_right_hand`,"); + if (appendEntry(locations["Garment"], value)) + column.append("`location_garment`,"); + if (appendEntry(locations["Shoes"], value)) + column.append("`location_shoes`,"); + if (appendEntry(locations["Right_Accessory"], value)) + column.append("`location_right_accessory`,"); + if (appendEntry(locations["Left_Accessory"], value)) + column.append("`location_left_accessory`,"); + if (appendEntry(locations["Costume_Head_Top"], value)) + column.append("`location_costume_head_top`,"); + if (appendEntry(locations["Costume_Head_Mid"], value)) + column.append("`location_costume_head_Mid`,"); + if (appendEntry(locations["Costume_Head_Low"], value)) + column.append("`location_costume_head_Low`,"); + if (appendEntry(locations["Costume_Garment"], value)) + column.append("`location_costume_Garment`,"); + if (appendEntry(locations["Ammo"], value)) + column.append("`location_ammo`,"); + if (appendEntry(locations["Shadow_Armor"], value)) + column.append("`location_shadow_armor`,"); + if (appendEntry(locations["Shadow_Weapon"], value)) + column.append("`location_shadow_weapon`,"); + if (appendEntry(locations["Shadow_Shield"], value)) + column.append("`location_shadow_shield`,"); + if (appendEntry(locations["Shadow_Shoes"], value)) + column.append("`location_shadow_shoes`,"); + if (appendEntry(locations["Shadow_Right_Accessory"], value)) + column.append("`location_shadow_right_accessory`,"); + if (appendEntry(locations["Shadow_Left_Accessory"], value)) + column.append("`location_shadow_left_accessory`,"); + } + + if (appendEntry(input["WeaponLevel"], value)) + column.append("`weapon_level`,"); + if (appendEntry(input["EquipLevelMin"], value)) + column.append("`equip_level_min`,"); + if (appendEntry(input["EquipLevelMax"], value)) + column.append("`equip_level_max`,"); + if (appendEntry(input["Refineable"], value)) + column.append("`refineable`,"); + if (appendEntry(input["View"], value)) + column.append("`view`,"); + if (appendEntry(input["AliasName"], value, true)) + column.append("`alias_name`,"); + + const YAML::Node &flags = input["Flags"]; + + if (flags) { + if (appendEntry(flags["BuyingStore"], value)) + column.append("`flag_buyingstore`,"); + if (appendEntry(flags["DeadBranch"], value)) + column.append("`flag_deadbranch`,"); + if (appendEntry(flags["Container"], value)) + column.append("`flag_container`,"); + if (appendEntry(flags["UniqueId"], value)) + column.append("`flag_uniqueid`,"); + if (appendEntry(flags["BindOnEquip"], value)) + column.append("`flag_bindonequip`,"); + if (appendEntry(flags["DropAnnounce"], value)) + column.append("`flag_dropannounce`,"); + if (appendEntry(flags["NoConsume"], value)) + column.append("`flag_noconsume`,"); + if (appendEntry(flags["DropEffect"], value, true)) + column.append("`flag_dropeffect`,"); + } + + const YAML::Node &delay = input["Delay"]; + + if (delay) { + if (appendEntry(delay["Duration"], value)) + column.append("`delay_duration`,"); + if (appendEntry(delay["Status"], value, true)) + column.append("`delay_status`,"); + } + + const YAML::Node &stack = input["Stack"]; + + if (stack) { + if (appendEntry(stack["Amount"], value)) + column.append("`stack_amount`,"); + if (appendEntry(stack["Inventory"], value)) + column.append("`stack_inventory`,"); + if (appendEntry(stack["Cart"], value)) + column.append("`stack_cart`,"); + if (appendEntry(stack["Storage"], value)) + column.append("`stack_storage`,"); + if (appendEntry(stack["GuildStorage"], value)) + column.append("`stack_guildstorage`,"); + } + + const YAML::Node &nouse = input["NoUse"]; + + if (nouse) { + if (appendEntry(nouse["Override"], value)) + column.append("`nouse_override`,"); + if (appendEntry(nouse["Sitting"], value)) + column.append("`nouse_sitting`,"); + } + + const YAML::Node &trade = input["Trade"]; + + if (trade) { + if (appendEntry(trade["Override"], value)) + column.append("`trade_override`,"); + if (appendEntry(trade["NoDrop"], value)) + column.append("`trade_nodrop`,"); + if (appendEntry(trade["NoTrade"], value)) + column.append("`trade_notrade`,"); + if (appendEntry(trade["TradePartner"], value)) + column.append("`trade_tradepartner`,"); + if (appendEntry(trade["NoSell"], value)) + column.append("`trade_nosell`,"); + if (appendEntry(trade["NoCart"], value)) + column.append("`trade_nocart`,"); + if (appendEntry(trade["NoStorage"], value)) + column.append("`trade_nostorage`,"); + if (appendEntry(trade["NoGuildStorage"], value)) + column.append("`trade_noguildstorage`,"); + if (appendEntry(trade["NoMail"], value)) + column.append("`trade_nomail`,"); + if (appendEntry(trade["NoAuction"], value)) + column.append("`trade_noauction`,"); + } + + if (appendEntry(input["Script"], value, true)) + column.append("`script`,"); + if (appendEntry(input["EquipScript"], value, true)) + column.append("`equip_script`,"); + if (appendEntry(input["UnEquipScript"], value, true)) + column.append("`unequip_script`,"); + + column.pop_back(); // Remove last ',' + value.pop_back(); // Remove last ',' + + out << "REPLACE INTO `" + table + "` (" + column + ") VALUES (" + value + ");\n"; + entries++; + } + + ShowStatus("Done converting '" CL_WHITE "%d" CL_RESET "' items in '" CL_WHITE "%s" CL_RESET "'.\n", entries, file.c_str()); + + return true; +} diff --git a/src/tool/yaml2sql.vcxproj b/src/tool/yaml2sql.vcxproj new file mode 100644 index 0000000000..1d62a4cd13 --- /dev/null +++ b/src/tool/yaml2sql.vcxproj @@ -0,0 +1,177 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + {CDBBB260-B245-44EC-80FB-3F9421885E40} + Win32Proj + yaml2sql + + + + Application + true + $(DefaultPlatformToolset) + MultiByte + + + Application + true + $(DefaultPlatformToolset) + MultiByte + + + Application + false + $(DefaultPlatformToolset) + true + MultiByte + + + Application + false + $(DefaultPlatformToolset) + true + MultiByte + + + + + + + + + + + + + + + + + + + true + $(SolutionDir) + $(SolutionDir).vs\build\$(ProjectName)\$(Platform)\$(Configuration)\ + + + true + $(SolutionDir) + $(SolutionDir).vs\build\$(ProjectName)\$(Platform)\$(Configuration)\ + + + false + $(SolutionDir) + $(SolutionDir).vs\build\$(ProjectName)\$(Platform)\$(Configuration)\ + + + false + $(SolutionDir) + $(SolutionDir).vs\build\$(ProjectName)\$(Platform)\$(Configuration)\ + + + + + + Level3 + Disabled + $(DefineConstants);WIN32;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;LIBCONFIG_STATIC;YY_USE_CONST;MINICORE;_DEBUG;_CONSOLE;_LIB;_ITERATOR_DEBUG_LEVEL=0;%(PreprocessorDefinitions) + MultiThreadedDebug + $(SolutionDir)3rdparty\yaml-cpp\include\ + + + Console + true + ws2_32.lib;$(SolutionDir).vs\build\common-minicore.lib;$(SolutionDir)3rdparty\zlib\lib\$(Platform)\zlib.lib;$(SolutionDir).vs\build\yaml-cpp.lib;%(AdditionalDependencies) + + + + + + + Level3 + Disabled + $(DefineConstants);WIN32;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;LIBCONFIG_STATIC;YY_USE_CONST;MINICORE;_DEBUG;_CONSOLE;_LIB;_ITERATOR_DEBUG_LEVEL=0;%(PreprocessorDefinitions) + MultiThreadedDebug + $(SolutionDir)3rdparty\yaml-cpp\include\ + + + Console + true + ws2_32.lib;$(SolutionDir).vs\build\common-minicore.lib;$(SolutionDir)3rdparty\zlib\lib\$(Platform)\zlib.lib;$(SolutionDir).vs\build\yaml-cpp.lib;%(AdditionalDependencies) + + + + + Level3 + + + MaxSpeed + true + true + $(DefineConstants);WIN32;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;LIBCONFIG_STATIC;YY_USE_CONST;MINICORE;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) + MultiThreaded + $(SolutionDir)3rdparty\yaml-cpp\include\ + + + Console + true + true + true + ws2_32.lib;$(SolutionDir).vs\build\common-minicore.lib;$(SolutionDir)3rdparty\zlib\lib\$(Platform)\zlib.lib;$(SolutionDir).vs\build\yaml-cpp.lib;%(AdditionalDependencies) + + + + + Level3 + + + MaxSpeed + true + true + $(DefineConstants);WIN32;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WINSOCK_DEPRECATED_NO_WARNINGS;LIBCONFIG_STATIC;YY_USE_CONST;MINICORE;NDEBUG;_CONSOLE;_LIB;%(PreprocessorDefinitions) + MultiThreaded + $(SolutionDir)3rdparty\yaml-cpp\include\ + + + Console + true + true + true + ws2_32.lib;$(SolutionDir).vs\build\common-minicore.lib;$(SolutionDir)3rdparty\zlib\lib\$(Platform)\zlib.lib;$(SolutionDir).vs\build\yaml-cpp.lib;%(AdditionalDependencies) + + + + + + + + + + + + + + + + + + + diff --git a/src/tool/yaml2sql.vcxproj.filters b/src/tool/yaml2sql.vcxproj.filters new file mode 100644 index 0000000000..46b2558469 --- /dev/null +++ b/src/tool/yaml2sql.vcxproj.filters @@ -0,0 +1,18 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;hm;inl;inc;xsd + + + + + Source Files + + + diff --git a/tools/ci/sql.bat b/tools/ci/sql.bat index 41ed133799..db2cae0d82 100644 --- a/tools/ci/sql.bat +++ b/tools/ci/sql.bat @@ -10,9 +10,13 @@ set MYSQL_PWD=%DB_ROOTPW% %MYSQL% -u %DB_ROOT% %DB_NAME% -e "source sql-files\logs.sql" %MYSQL% -u %DB_ROOT% %DB_NAME% -e "source sql-files\item_cash_db.sql" %MYSQL% -u %DB_ROOT% %DB_NAME% -e "source sql-files\item_cash_db2.sql" -%MYSQL% -u %DB_ROOT% %DB_NAME% -e "source sql-files\item_db.sql" +%MYSQL% -u %DB_ROOT% %DB_NAME% -e "source sql-files\item_db_usable.sql" +%MYSQL% -u %DB_ROOT% %DB_NAME% -e "source sql-files\item_db_equip.sql" +%MYSQL% -u %DB_ROOT% %DB_NAME% -e "source sql-files\item_db_etc.sql" %MYSQL% -u %DB_ROOT% %DB_NAME% -e "source sql-files\item_db2.sql" -%MYSQL% -u %DB_ROOT% %DB_NAME% -e "source sql-files\item_db_re.sql" +%MYSQL% -u %DB_ROOT% %DB_NAME% -e "source sql-files\item_db_re_usable.sql" +%MYSQL% -u %DB_ROOT% %DB_NAME% -e "source sql-files\item_db_re_equip.sql" +%MYSQL% -u %DB_ROOT% %DB_NAME% -e "source sql-files\item_db_re_etc.sql" %MYSQL% -u %DB_ROOT% %DB_NAME% -e "source sql-files\item_db2_re.sql" %MYSQL% -u %DB_ROOT% %DB_NAME% -e "source sql-files\mob_db.sql" %MYSQL% -u %DB_ROOT% %DB_NAME% -e "source sql-files\mob_db2.sql" diff --git a/tools/ci/sql.sh b/tools/ci/sql.sh index 920aad57bd..7b26adbf53 100755 --- a/tools/ci/sql.sh +++ b/tools/ci/sql.sh @@ -10,9 +10,13 @@ mysql -u $DB_ROOT $DB_NAME < sql-files/main.sql || aborterror "Unable to import mysql -u $DB_ROOT $DB_NAME < sql-files/logs.sql || aborterror "Unable to import logs database." mysql -u $DB_ROOT $DB_NAME < sql-files/item_cash_db.sql || aborterror "Unable to import cash item table." mysql -u $DB_ROOT $DB_NAME < sql-files/item_cash_db2.sql || aborterror "Unable to import cash item 2 table." -mysql -u $DB_ROOT $DB_NAME < sql-files/item_db.sql || aborterror "Unable to import pre-renewal item table." +mysql -u $DB_ROOT $DB_NAME < sql-files/item_db_usable.sql || aborterror "Unable to import pre-renewal usable item table." +mysql -u $DB_ROOT $DB_NAME < sql-files/item_db_equip.sql || aborterror "Unable to import pre-renewal equip item table." +mysql -u $DB_ROOT $DB_NAME < sql-files/item_db_etc.sql || aborterror "Unable to import pre-renewal etc item table." mysql -u $DB_ROOT $DB_NAME < sql-files/item_db2.sql || aborterror "Unable to import pre-renewal item 2 table." -mysql -u $DB_ROOT $DB_NAME < sql-files/item_db_re.sql || aborterror "Unable to import renewal item table." +mysql -u $DB_ROOT $DB_NAME < sql-files/item_db_re_usable.sql || aborterror "Unable to import renewal usable item table." +mysql -u $DB_ROOT $DB_NAME < sql-files/item_db_re_equip.sql || aborterror "Unable to import renewal equip item table." +mysql -u $DB_ROOT $DB_NAME < sql-files/item_db_re_etc.sql || aborterror "Unable to import renewal etc item table." mysql -u $DB_ROOT $DB_NAME < sql-files/item_db2_re.sql || aborterror "Unable to import renewal item 2 table." mysql -u $DB_ROOT $DB_NAME < sql-files/mob_db.sql || aborterror "Unable to import pre-renewal monster table." mysql -u $DB_ROOT $DB_NAME < sql-files/mob_db2.sql || aborterror "Unable to import pre-renewal monster 2 table." diff --git a/tools/convert_itemtype.pl b/tools/convert_itemtype.pl deleted file mode 100644 index 30a4a49658..0000000000 --- a/tools/convert_itemtype.pl +++ /dev/null @@ -1,107 +0,0 @@ -#!/usr/bin/perl -# rAthena Item Type Converter -# Fixes incorrect weapon and armor item types. -# https://rathena.org/board/topic/90738-itemtype-update-read-this-very-important/ - -use strict; -use warnings; -use Getopt::Long; -use File::Basename; -use Scalar::Util qw(looks_like_number); - -my $sFileins; -my @aFilein = ("../db/re/item_db.txt","../db/pre-re/item_db.txt","../db/item_db2.txt"); -my $sFileouts; -my @aFileout = ("../db/re/item_db.txt","../db/pre-re/item_db.txt","../db/item_db2.txt"); -my $sHelp = 0; - - -Main(); - -sub GetArgs { - GetOptions( - 'i=s' => \$sFileins, #Output file name. - 'o=s' => \$sFileouts, #Input file name. - 'help!' => \$sHelp, - ) or $sHelp=1; #Display help if invalid options are supplied. - - if( $sHelp ) { - print "Incorrect option specified. Available options:\n" - ."\t --o=filename => Output file name. (file must be separate by coma if multiple) \n" - ."\t --i=filenames => Input files name. (file must be separate by coma if multiple) \n"; - exit; - } - if($sFileins){ - chomp($sFileins); - @aFilein = split(",",$sFileins); - } - if($sFileouts){ - chomp($sFileouts); - @aFileout = split(",",$sFileouts); - } - unless(scalar(@aFileout)==scalar(@aFilein)){ - print "ERROR: Number of input files doesn't match number of output files. You must specify an output for each input:\n" - ."afilein = [ @aFilein ] \n" - ."afileout = [ @aFileout ] \n"; - exit; - } -} - -sub Main { - my $sI=0; - my($filename, $dir, $suffix) = fileparse($0); - chdir $dir; #put ourself like was called in tool folder - GetArgs(); - print "Running rAthena's item type converter...\n"; - print "Files to be converted: '@aFilein' into '@aFileout'.\n"; - foreach my $sFile (@aFilein){ - my $sReplace=0; #should we replace file when finished - my $sFileouttmp=$aFileout[$sI]; - if($sFile eq $sFileouttmp){ - $sReplace=1; - $sFileouttmp = $sFileouttmp.".out"; - print "Asking to replace file tmp fileout= $sFileouttmp \n"; - } - unless(open FHIN,"$sFile"){ - print "ERROR: Can't read or locate $sFile.\n"; - next; - } - unless(open FHOUT,">$sFileouttmp"){ - print "ERROR: Can't write or locate $aFileout[$sI].\n"; - next; - } - $sI++; - while (){ - if( $_ =~ /^\s*$/) { #ignore empty line - print FHOUT $_; - next; - } - my @champ = split(",",$_); - my $sDoconvertion=0; #should this comment be converted - if( $_ =~ /^\/\// ) { # // line - if(scalar(@champ)>3){ - $champ[0] =~ s!\/\/!!g; - $sDoconvertion=looks_like_number($champ[0]); - $champ[0] = "//".$champ[0]; #recomment it - } - if($sDoconvertion==0) { - print FHOUT $_; - next; - } - } - if(scalar(@champ>3)){ - if($champ[3] == 4) { $champ[3]=5; } - elsif($champ[3] == 5) { $champ[3]=4; } - my $newline = join(",",@champ); - print FHOUT $newline; - } - else { print FHOUT $_; } - } - close FHOUT; - close FHIN; - if($sReplace){ - unlink $sFile; - rename $sFileouttmp, $sFile; - } - } -} diff --git a/tools/convert_sql.pl b/tools/convert_sql.pl index 9d2b3c2302..191a7b6a7a 100755 --- a/tools/convert_sql.pl +++ b/tools/convert_sql.pl @@ -1,9 +1,5 @@ #!/usr/bin/perl -# Item Database: -# --i=../db/pre-re/item_db.txt --o=../sql-files/item_db.sql --t=pre --m=item --table=item_db -# --i=../db/re/item_db.txt --o=../sql-files/item_db_re.sql --t=re --m=item --table=item_db_re -# # Mob Database: # --i=../db/pre-re/mob_db.txt --o=../sql-files/mob_db.sql --t=pre --m=mob --table=mob_db # --i=../db/re/mob_db.txt --o=../sql-files/mob_db_re.sql --t=re --m=mob --table=mob_db_re @@ -42,12 +38,12 @@ sub GetArgs { 'i=s' => \$sFilein, #Output file name. 'o=s' => \$sFileout, #Input file name. 't=s' => \$sTarget, #Renewal setting: pre-re, re. - 'm=s' => \$sType, #Database: item, mob, mob_skill. + 'm=s' => \$sType, #Database: mob, mob_skill. 'table=s' => \$sTable, #Table name. 'help!' => \$sHelp, ) or $sHelp=1; #Display help if invalid options are supplied. my $sValidTarget = "re|pre"; - my $sValidType = "item|mob|mob_skill"; + my $sValidType = "mob|mob_skill"; if( $sHelp ) { print "Incorrect option specified. Available options:\n" @@ -109,21 +105,10 @@ sub ConvertFile { my($sFilein,$sFileout,$sType)=@_; if ($ligne =~ $line_format ) { @champ = ($1,$2,$3,$4,$5,$6,$7,$8,$9,$10,$11,$12,$13,$14,$15,$16,$17,$18,$19); } } elsif ($sType =~ /mob/i) { @champ = split(",",$ligne); } - elsif ($sType =~ /item/i ) { - if ($ligne =~ $line_format) { @champ = ($1,$2,$3,$4,$5,$6,$7,$8,$9,$10,$11,$12,$13,$14,$15,$16,$17,$18,$19,$20,$21,$22); } - } if ($#champ != $nb_columns - 1) { #Can't parse, it's a real comment. printf $sFHout ("%s\n", $ligne); } else { printf $sFHout ("REPLACE INTO `%s` VALUES (", $db); - if( $sType =~ /item/i and $sWasCom == 0){ #check if aegis name is duplicate, (only for not com) - $hAEgisName{$champ[1]}++; - if($hAEgisName{$champ[1]} > 1){ - print "Warning, aegisName=$champ[1] multiple occurence found, val=$hAEgisName{$champ[1]}, line=$ligne\n" ; - $champ[1] = $champ[1]."_"x($hAEgisName{$champ[1]}-1); - print "Converted into '$champ[1]'\n" ; - } - } for (my $i=0; $i<$#champ; $i++) { printField($sFHout,$champ[$i],",",$i); } @@ -192,95 +177,7 @@ sub escape { my ($str,$sregex,$sreplace) = @_; sub BuildDataForType{ my($sTarget,$sType) = @_; print "Starting BuildDataForType with: \n\t Target=$sTarget, Type=$sType \n"; - if($sType =~ /item/i) { - if($sTarget =~ /Pre/i){ - $db = $sTable; - $db = "item_db" unless($db); - $nb_columns = 22; - @str_col = (1,2,19,20,21); - @str_col2 = (19,20,21); - $line_format = "([^\,]*),"x($nb_columns-3)."(\{.*\}),"x(2)."(\{.*\})"; #Last 3 columns are scripts. - $create_table = -"# -# Table structure for table `$db` -# - -DROP TABLE IF EXISTS `$db`; -CREATE TABLE `$db` ( - `id` int(10) unsigned NOT NULL DEFAULT '0', - `name_english` varchar(50) NOT NULL DEFAULT '', - `name_japanese` varchar(50) NOT NULL DEFAULT '', - `type` tinyint(2) unsigned NOT NULL DEFAULT '0', - `price_buy` mediumint(8) unsigned DEFAULT NULL, - `price_sell` mediumint(8) unsigned DEFAULT NULL, - `weight` smallint(5) unsigned NOT NULL DEFAULT '0', - `attack` smallint(5) unsigned DEFAULT NULL, - `defence` smallint(5) unsigned DEFAULT NULL, - `range` tinyint(2) unsigned DEFAULT NULL, - `slots` tinyint(2) unsigned DEFAULT NULL, - `equip_jobs` bigint(20) unsigned DEFAULT NULL, - `equip_upper` tinyint(2) unsigned DEFAULT NULL, - `equip_genders` tinyint(1) unsigned DEFAULT NULL, - `equip_locations` mediumint(7) unsigned DEFAULT NULL, - `weapon_level` tinyint(1) unsigned DEFAULT NULL, - `equip_level` tinyint(3) unsigned DEFAULT NULL, - `refineable` tinyint(1) unsigned DEFAULT NULL, - `view` smallint(5) unsigned DEFAULT NULL, - `script` text, - `equip_script` text, - `unequip_script` text, - PRIMARY KEY (`id`), - UNIQUE INDEX `UniqueAegisName` (`name_english`) -) ENGINE=MyISAM; -"; - #NOTE: These do not match the table struct defaults. - @defaults = ('0','\'\'','\'\'','0','NULL','NULL',0,'NULL','NULL','NULL','NULL','NULL','NULL','NULL','NULL','NULL','NULL','NULL','NULL','NULL','NULL','NULL'); - } - elsif($sTarget =~ /Re/i){ - $db = $sTable; - $db = "item_db_re" unless($db); - $nb_columns = 22; - @str_col = (1,2,7,16,19,20,21); - @str_col2 = (19,20,21); - $line_format = "([^\,]*),"x($nb_columns-3)."(\{.*\}),"x(2)."(\{.*\})"; #Last 3 columns are scripts. - $create_table = -"# -# Table structure for table `$db` -# - -DROP TABLE IF EXISTS `$db`; -CREATE TABLE `$db` ( - `id` int(10) unsigned NOT NULL DEFAULT '0', - `name_english` varchar(50) NOT NULL DEFAULT '', - `name_japanese` varchar(50) NOT NULL DEFAULT '', - `type` tinyint(2) unsigned NOT NULL DEFAULT '0', - `price_buy` mediumint(8) unsigned DEFAULT NULL, - `price_sell` mediumint(8) unsigned DEFAULT NULL, - `weight` smallint(5) unsigned NOT NULL DEFAULT '0', - `atk:matk` varchar(11) DEFAULT NULL, - `defence` smallint(5) unsigned DEFAULT NULL, - `range` tinyint(2) unsigned DEFAULT NULL, - `slots` tinyint(2) unsigned DEFAULT NULL, - `equip_jobs` bigint(20) unsigned DEFAULT NULL, - `equip_upper` tinyint(2) unsigned DEFAULT NULL, - `equip_genders` tinyint(1) unsigned DEFAULT NULL, - `equip_locations` mediumint(7) unsigned DEFAULT NULL, - `weapon_level` tinyint(1) unsigned DEFAULT NULL, - `equip_level` varchar(10) DEFAULT NULL, - `refineable` tinyint(1) unsigned DEFAULT NULL, - `view` smallint(5) unsigned DEFAULT NULL, - `script` text, - `equip_script` text, - `unequip_script` text, - PRIMARY KEY (`id`), - UNIQUE INDEX `UniqueAegisName` (`name_english`) -) ENGINE=MyISAM; -"; - #NOTE: These do not match the table struct defaults. - @defaults = ('0','\'\'','\'\'','0','NULL','NULL',0,'NULL','NULL','NULL','NULL','NULL','NULL','NULL','NULL','NULL','NULL','NULL','NULL','NULL','NULL','NULL'); - } - } - elsif($sType =~ /mob_skill/i) { #Same format for Pre-Renewal and Renewal. + if($sType =~ /mob_skill/i) { #Same format for Pre-Renewal and Renewal. $db = $sTable; if($sTarget =~ /Pre/i){ $db = "mob_skill_db" unless($db); diff --git a/tools/yaml2sql.bat b/tools/yaml2sql.bat new file mode 100644 index 0000000000..9229931c7d --- /dev/null +++ b/tools/yaml2sql.bat @@ -0,0 +1,2 @@ +@ECHO OFF +CALL serv.bat yaml2sql.exe YAML 2 SQL From 63e42dbd4ba732cd3dee7d7b684864b9f26379bc Mon Sep 17 00:00:00 2001 From: Lemongrass3110 Date: Thu, 22 Oct 2020 10:37:55 +0200 Subject: [PATCH 20/45] First small follow up to 04cfe17 Only report duplicate Aegisname, if it is not the same item. When buy and sell price caused a possible zeny exploit the whole YAML node will be reported, since it could be from import and either Buy or Sell might not exist. --- src/map/itemdb.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/map/itemdb.cpp b/src/map/itemdb.cpp index cf6c1c1d79..cd27762de4 100644 --- a/src/map/itemdb.cpp +++ b/src/map/itemdb.cpp @@ -67,7 +67,9 @@ uint64 ItemDatabase::parseBodyNode(const YAML::Node &node) { if (!this->asString(node, "AegisName", name)) return 0; - if (itemdb_search_aegisname(name.c_str())) { + item_data* id = itemdb_search_aegisname(name.c_str()); + + if (id != nullptr && id->nameid != nameid) { this->invalidWarning(node["AegisName"], "Found duplicate item Aegis name for %s, skipping.\n", name.c_str()); return 0; } @@ -180,7 +182,7 @@ uint64 ItemDatabase::parseBodyNode(const YAML::Node &node) { } if (item->value_buy / 124. < item->value_sell / 75.) { - this->invalidWarning(node["Sell"], "Buying/Selling [%d/%d] price of %s (%hu) allows Zeny making exploit through buying/selling at discounted/overcharged prices! Defaulting Sell to 1 Zeny.\n", item->value_buy, item->value_sell, item->name.c_str(), nameid); + this->invalidWarning(node, "Buying/Selling [%d/%d] price of %s (%hu) allows Zeny making exploit through buying/selling at discounted/overcharged prices! Defaulting Sell to 1 Zeny.\n", item->value_buy, item->value_sell, item->name.c_str(), nameid); item->value_sell = 1; } From 52dbea2fba9018e5b8bf4951b3bc718fefca74bd Mon Sep 17 00:00:00 2001 From: Lemongrass3110 Date: Thu, 22 Oct 2020 11:07:07 +0200 Subject: [PATCH 21/45] Follow up to 323db7e Fixes 2 compilation warnings Thanks to @zEro-trap and Mael --- src/map/pc.cpp | 2 +- src/map/status.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/map/pc.cpp b/src/map/pc.cpp index ab737fef6f..475b6cf4b6 100755 --- a/src/map/pc.cpp +++ b/src/map/pc.cpp @@ -11534,7 +11534,7 @@ void pc_overheat(struct map_session_data *sd, int16 heat) { if (sce) { static std::vector limit = { 150, 200, 280, 360, 450 }; - uint16 skill_lv = cap_value(pc_checkskill(sd, NC_MAINFRAME), 0, limit.size()-1); + uint16 skill_lv = cap_value(pc_checkskill(sd, NC_MAINFRAME), 0, (uint16)(limit.size()-1)); sce->val1 += heat; sce->val1 = cap_value(sce->val1, 0, 1000); diff --git a/src/map/status.cpp b/src/map/status.cpp index abd340a95e..275e50a64d 100644 --- a/src/map/status.cpp +++ b/src/map/status.cpp @@ -14448,7 +14448,7 @@ TIMER_FUNC(status_change_timer){ case SC_OVERHEAT_LIMITPOINT: if (--(sce->val1) >= 0) { // Cooling static std::vector limit = { 150, 200, 280, 360, 450 }; - uint16 skill_lv = (sd ? cap_value(pc_checkskill(sd, NC_MAINFRAME), 0, limit.size()-1) : 0); + uint16 skill_lv = (sd ? cap_value(pc_checkskill(sd, NC_MAINFRAME), 0, (uint16)(limit.size()-1)) : 0); if (sc && sc->data[SC_OVERHEAT]) status_change_end(bl,SC_OVERHEAT,INVALID_TIMER); From 20f39922dc53416b964a854ff259c6af3331876f Mon Sep 17 00:00:00 2001 From: Lemongrass3110 Date: Thu, 22 Oct 2020 12:54:22 +0200 Subject: [PATCH 22/45] Fixes compilation on 2010-07-30 and older (#5470) Fixes #5464 Thanks to @KrokusPokus --- src/map/clif.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/map/clif.cpp b/src/map/clif.cpp index 03ec6bffce..d34fa7bcb3 100644 --- a/src/map/clif.cpp +++ b/src/map/clif.cpp @@ -16647,6 +16647,7 @@ void clif_parse_Auction_buysell(int fd, struct map_session_data* sd) /// void clif_cashshop_open( struct map_session_data* sd, int tab ){ +#if PACKETVER_MAIN_NUM >= 20101123 || PACKETVER_RE_NUM >= 20120328 || defined(PACKETVER_ZERO) nullpo_retv( sd ); struct PACKET_ZC_SE_CASHSHOP_OPEN p; @@ -16659,9 +16660,11 @@ void clif_cashshop_open( struct map_session_data* sd, int tab ){ #endif clif_send( &p, sizeof( p ), &sd->bl, SELF ); +#endif } void clif_parse_cashshop_open_request( int fd, struct map_session_data* sd ){ +#if PACKETVER_MAIN_NUM >= 20101123 || PACKETVER_RE_NUM >= 20120328 || defined(PACKETVER_ZERO) nullpo_retv( sd ); int tab = 0; @@ -16676,12 +16679,15 @@ void clif_parse_cashshop_open_request( int fd, struct map_session_data* sd ){ sd->npc_shopid = -1; // Set npc_shopid when using cash shop from "cash shop" button [Aelys|Susu] bugreport:96 clif_cashshop_open( sd, tab ); +#endif } void clif_parse_cashshop_close( int fd, struct map_session_data* sd ){ +#if PACKETVER_MAIN_NUM >= 20101123 || PACKETVER_RE_NUM >= 20120328 || defined(PACKETVER_ZERO) sd->state.cashshop_open = false; sd->npc_shopid = 0; // Reset npc_shopid when using cash shop from "cash shop" button [Aelys|Susu] bugreport:96 // No need to do anything here +#endif } //0846 .W (CZ_REQ_SE_CASH_TAB_CODE)) From 73360584859b6e3b23efa5bc0737029f3815e468 Mon Sep 17 00:00:00 2001 From: Lemongrass3110 Date: Thu, 22 Oct 2020 23:56:54 +0200 Subject: [PATCH 23/45] Cleaned up and fixed some subtype checks (#5472) Fixes #5471 Thanks to @LuciferGmes Co-authored-by: aleos --- src/map/atcommand.cpp | 2 +- src/map/battle.cpp | 10 +++++----- src/map/pc.cpp | 34 +++++++++++++++++----------------- src/map/skill.cpp | 4 ++-- src/map/status.cpp | 4 ++-- 5 files changed, 27 insertions(+), 27 deletions(-) diff --git a/src/map/atcommand.cpp b/src/map/atcommand.cpp index bf4fbef618..59e67c5c06 100644 --- a/src/map/atcommand.cpp +++ b/src/map/atcommand.cpp @@ -7891,7 +7891,7 @@ ACMD_FUNC(iteminfo) struct item_data * item_data = item_array[i]; sprintf(atcmd_output, msg_txt(sd,1277), // Item: '%s'/'%s'[%d] (%u) Type: %s | Extra Effect: %s item_data->name.c_str(),item_data->ename.c_str(),item_data->slots,item_data->nameid, - (item_data->type != IT_AMMO) ? itemdb_typename((enum item_types)item_data->type) : itemdb_typename_ammo((e_ammo_type)item_data->look), + (item_data->type != IT_AMMO) ? itemdb_typename((enum item_types)item_data->type) : itemdb_typename_ammo((e_ammo_type)item_data->subtype), (item_data->script==NULL)? msg_txt(sd,1278) : msg_txt(sd,1279) // None / With script ); clif_displaymessage(fd, atcmd_output); diff --git a/src/map/battle.cpp b/src/map/battle.cpp index 6186c80455..a1945ab219 100644 --- a/src/map/battle.cpp +++ b/src/map/battle.cpp @@ -2506,7 +2506,7 @@ static bool is_attack_right_handed(struct block_list *src, int skill_id) struct map_session_data *sd = BL_CAST(BL_PC, src); //Skills ALWAYS use ONLY your right-hand weapon (tested on Aegis 10.2) - if(!skill_id && sd && sd->weapontype1 == 0 && sd->weapontype2 > 0) + if(!skill_id && sd && sd->weapontype1 == W_FIST && sd->weapontype2 != W_FIST) return false; } return true; @@ -2528,7 +2528,7 @@ static bool is_attack_left_handed(struct block_list *src, int skill_id) struct map_session_data *sd = BL_CAST(BL_PC, src); if (sd) { - if (sd->weapontype1 == 0 && sd->weapontype2 > 0) + if (sd->weapontype1 == W_FIST && sd->weapontype2 != W_FIST) return true; if (sd->status.weapon == W_KATAR) return true; @@ -7587,7 +7587,7 @@ enum damage_lv battle_weapon_attack(struct block_list* src, struct block_list* t if (sd->inventory_data[index]) { switch (sd->status.weapon) { case W_BOW: - if (sd->inventory_data[index]->look != AMMO_ARROW) { + if (sd->inventory_data[index]->subtype != AMMO_ARROW) { clif_arrow_fail(sd,0); return ATK_NONE; } @@ -7596,13 +7596,13 @@ enum damage_lv battle_weapon_attack(struct block_list* src, struct block_list* t case W_RIFLE: case W_GATLING: case W_SHOTGUN: - if (sd->inventory_data[index]->look != AMMO_BULLET) { + if (sd->inventory_data[index]->subtype != AMMO_BULLET) { clif_skill_fail(sd,0,USESKILL_FAIL_NEED_MORE_BULLET,0); return ATK_NONE; } break; case W_GRENADE: - if (sd->inventory_data[index]->look != + if (sd->inventory_data[index]->subtype != #ifdef RENEWAL AMMO_BULLET) { #else diff --git a/src/map/pc.cpp b/src/map/pc.cpp index 475b6cf4b6..f1556f38ef 100755 --- a/src/map/pc.cpp +++ b/src/map/pc.cpp @@ -1030,7 +1030,7 @@ void pc_calcweapontype(struct map_session_data *sd) return; } // dual-wield - sd->status.weapon = 0; + sd->status.weapon = W_FIST; switch (sd->weapontype1){ case W_DAGGER: switch (sd->weapontype2) { @@ -1086,14 +1086,14 @@ void pc_setequipindex(struct map_session_data *sd) if (sd->inventory_data[i]) sd->weapontype1 = sd->inventory_data[i]->subtype; else - sd->weapontype1 = 0; + sd->weapontype1 = W_FIST; } if( sd->inventory.u.items_inventory[i].equip & EQP_HAND_L ) { if( sd->inventory_data[i] && sd->inventory_data[i]->type == IT_WEAPON ) sd->weapontype2 = sd->inventory_data[i]->subtype; else - sd->weapontype2 = 0; + sd->weapontype2 = W_FIST; } } if (sd->inventory.u.items_inventory[i].equipSwitch) { @@ -1438,7 +1438,7 @@ uint8 pc_isequip(struct map_session_data *sd,int n) return ITEM_EQUIP_ACK_OK; //Can equip all helms if (sd->status.base_level > 96 && item->equip & EQP_ARMS && item->type == IT_WEAPON && item->wlv == 4) - switch(item->look) { //In weapons, the look determines type of weapon. + switch(item->subtype) { //In weapons, the look determines type of weapon. case W_DAGGER: //All level 4 - Daggers case W_1HSWORD: //All level 4 - 1H Swords case W_1HAXE: //All level 4 - 1H Axes @@ -10590,26 +10590,26 @@ bool pc_equipitem(struct map_session_data *sd,short n,int req_pos,bool equipswit if(pos & EQP_HAND_R) { if(id) - sd->weapontype1 = id->look; + sd->weapontype1 = id->subtype; else - sd->weapontype1 = 0; + sd->weapontype1 = W_FIST; pc_calcweapontype(sd); clif_changelook(&sd->bl,LOOK_WEAPON,sd->status.weapon); } if(pos & EQP_HAND_L) { if(id) { if(id->type == IT_WEAPON) { - sd->status.shield = 0; - sd->weapontype2 = id->look; + sd->status.shield = W_FIST; + sd->weapontype2 = id->subtype; } else if(id->type == IT_ARMOR) { sd->status.shield = id->look; - sd->weapontype2 = 0; + sd->weapontype2 = W_FIST; } } else - sd->status.shield = sd->weapontype2 = 0; + sd->status.shield = sd->weapontype2 = W_FIST; pc_calcweapontype(sd); clif_changelook(&sd->bl,LOOK_SHIELD,sd->status.shield); } @@ -10620,23 +10620,23 @@ bool pc_equipitem(struct map_session_data *sd,short n,int req_pos,bool equipswit short idx = sd->equip_index[EQI_AMMO]; if (idx >= 0) { - switch (sd->inventory_data[idx]->look) { + switch (sd->inventory_data[idx]->subtype) { case AMMO_ARROW: - if (id->look != W_BOW && id->look != W_MUSICAL && id->look != W_WHIP) + if (id->subtype != W_BOW && id->subtype != W_MUSICAL && id->subtype != W_WHIP) pc_unequipitem(sd, idx, 2 | 4); break; case AMMO_BULLET: case AMMO_SHELL: - if (id->look != W_REVOLVER && id->look != W_RIFLE && id->look != W_GATLING && id->look != W_SHOTGUN + if (id->subtype != W_REVOLVER && id->subtype != W_RIFLE && id->subtype != W_GATLING && id->subtype != W_SHOTGUN #ifdef RENEWAL - && id->look != W_GRENADE + && id->subtype != W_GRENADE #endif ) pc_unequipitem(sd, idx, 2 | 4); break; #ifndef RENEWAL case AMMO_GRENADE: - if (id->look != W_GRENADE) + if (id->subtype != W_GRENADE) pc_unequipitem(sd, idx, 2 | 4); break; #endif @@ -10836,7 +10836,7 @@ bool pc_unequipitem(struct map_session_data *sd, int n, int flag) { if (sd->status.shield && battle_getcurrentskill(&sd->bl) == LG_SHIELDSPELL) unit_skillcastcancel(&sd->bl, 0); // Cancel Shield Spell if player swaps shields. - sd->status.shield = sd->weapontype2 = 0; + sd->status.shield = sd->weapontype2 = W_FIST; pc_calcweapontype(sd); clif_changelook(&sd->bl,LOOK_SHIELD,sd->status.shield); } @@ -10851,7 +10851,7 @@ bool pc_unequipitem(struct map_session_data *sd, int n, int flag) { // On weapon change (right and left hand) if ((pos & EQP_ARMS) && sd->inventory_data[n]->type == IT_WEAPON) { if (battle_config.ammo_unequip && !(flag & 4)) { - switch (sd->inventory_data[n]->look) { + switch (sd->inventory_data[n]->subtype) { case W_BOW: case W_MUSICAL: case W_WHIP: diff --git a/src/map/skill.cpp b/src/map/skill.cpp index 309538df83..2f5925bf70 100755 --- a/src/map/skill.cpp +++ b/src/map/skill.cpp @@ -16157,7 +16157,7 @@ bool skill_check_condition_castbegin(struct map_session_data* sd, uint16 skill_i } break; case KO_JYUMONJIKIRI: - if (sd->weapontype1 && (sd->weapontype2 || sd->status.shield)) + if (sd->weapontype1 != W_FIST && (sd->weapontype2 != W_FIST || sd->status.shield != W_FIST)) return true; else { clif_skill_fail(sd,skill_id,USESKILL_FAIL_LEVEL,0); @@ -16631,7 +16631,7 @@ bool skill_check_condition_castend(struct map_session_data* sd, uint16 skill_id, clif_messagecolor(&sd->bl,color_table[COLOR_RED],e_msg,false,SELF); return false; } - if (!(require.ammo&1<inventory_data[i]->look)) { //Ammo type check. Send the "wrong weapon type" message + if (!(require.ammo&1<inventory_data[i]->subtype)) { //Ammo type check. Send the "wrong weapon type" message //which is the closest we have to wrong ammo type. [Skotlex] clif_arrow_fail(sd,0); //Haplo suggested we just send the equip-arrows message instead. [Skotlex] //clif_skill_fail(sd,skill_id,USESKILL_FAIL_THIS_WEAPON,0); diff --git a/src/map/status.cpp b/src/map/status.cpp index 275e50a64d..9cc1c70495 100644 --- a/src/map/status.cpp +++ b/src/map/status.cpp @@ -2657,7 +2657,7 @@ int status_base_amotion_pc(struct map_session_data* sd, struct status_data* stat amotion = job_info[classidx].aspd_base[sd->weapontype1]; // Single weapon if (sd->status.shield) amotion += job_info[classidx].aspd_base[MAX_WEAPON_TYPE]; - else if (sd->weapontype2 && sd->equip_index[EQI_HAND_R] != sd->equip_index[EQI_HAND_L]) + else if (sd->weapontype2 != W_FIST && sd->equip_index[EQI_HAND_R] != sd->equip_index[EQI_HAND_L]) amotion += job_info[classidx].aspd_base[sd->weapontype2] / 4; // Dual-wield switch(sd->status.weapon) { @@ -13106,7 +13106,7 @@ int status_change_end_(struct block_list* bl, enum sc_type type, int tid, const } if (begin_spurt && sce->val1 >= 7 && DIFF_TICK(gettick(), starttick) <= 1000 && - (!sd || (sd->weapontype1 == 0 && sd->weapontype2 == 0)) + (!sd || (sd->weapontype1 == W_FIST && sd->weapontype2 == W_FIST)) ) sc_start(bl,bl,SC_SPURT,100,sce->val1,skill_get_time2(status_sc2skill(type), sce->val1)); } From ed473d066d757bf7e8b535d28269964ae2b2e81d Mon Sep 17 00:00:00 2001 From: Lemongrass3110 Date: Fri, 23 Oct 2020 01:07:12 +0200 Subject: [PATCH 24/45] Cleaned up hat effect code (#5462) Converted from self written container to std::vector. Converted clif code to struct usage. --- src/map/clif.cpp | 54 ++++++++++++++++++++------------------- src/map/clif_packetdb.hpp | 6 +++-- src/map/pc.cpp | 5 ++-- src/map/pc.hpp | 5 ++-- src/map/script.cpp | 29 ++++++--------------- src/map/script.hpp | 2 +- src/map/unit.cpp | 8 ++---- 7 files changed, 47 insertions(+), 62 deletions(-) diff --git a/src/map/clif.cpp b/src/map/clif.cpp index d34fa7bcb3..cbc6d749ca 100644 --- a/src/map/clif.cpp +++ b/src/map/clif.cpp @@ -80,6 +80,9 @@ static struct eri *delay_clearunit_ers; struct s_packet_db packet_db[MAX_PACKET_DB + 1]; int packet_db_ack[MAX_ACK_FUNC + 1]; +// Reuseable global packet buffer to prevent too many allocations +// Take socket.cpp::socket_max_client_packet into consideration +static int8 packet_buffer[UINT16_MAX]; unsigned long color_table[COLOR_MAX]; #include "clif_obfuscation.hpp" @@ -20553,9 +20556,7 @@ void clif_navigateTo(struct map_session_data *sd, const char* mapname, uint16 x, /// Send hat effects to the client (ZC_HAT_EFFECT). /// 0A3B .W .L .B { .W } void clif_hat_effects( struct map_session_data* sd, struct block_list* bl, enum send_target target ){ -#if PACKETVER >= 20150513 - unsigned char* buf; - int len,i; +#if PACKETVER_MAIN_NUM >= 20150507 || PACKETVER_RE_NUM >= 20150429 || defined(PACKETVER_ZERO) struct map_session_data *tsd; struct block_list* tbl; @@ -20567,39 +20568,40 @@ void clif_hat_effects( struct map_session_data* sd, struct block_list* bl, enum tbl = bl; } - if( !tsd->hatEffectCount ) + nullpo_retv( tsd ); + + if( tsd->hatEffects.empty() ){ return; - - len = 9 + tsd->hatEffectCount * 2; - - buf = (unsigned char*)aMalloc( len ); - - WBUFW(buf,0) = 0xa3b; - WBUFW(buf,2) = len; - WBUFL(buf,4) = tsd->bl.id; - WBUFB(buf,8) = 1; - - for( i = 0; i < tsd->hatEffectCount; i++ ){ - WBUFW(buf,9+i*2) = tsd->hatEffectIDs[i]; } - clif_send(buf, len,tbl,target); + struct PACKET_ZC_HAT_EFFECT* p = (struct PACKET_ZC_HAT_EFFECT*)packet_buffer; - aFree(buf); + p->packetType = HEADER_ZC_HAT_EFFECT; + p->packetLength = (int16)( sizeof( struct PACKET_ZC_HAT_EFFECT ) + sizeof( int16 ) * tsd->hatEffects.size() ); + p->aid = tsd->bl.id; + p->status = 1; + + for( size_t i = 0; i < tsd->hatEffects.size(); i++ ){ + p->effects[i] = tsd->hatEffects[i]; + } + + clif_send( p, p->packetLength, tbl, target ); #endif } void clif_hat_effect_single( struct map_session_data* sd, uint16 effectId, bool enable ){ -#if PACKETVER >= 20150513 - unsigned char buf[13]; +#if PACKETVER_MAIN_NUM >= 20150507 || PACKETVER_RE_NUM >= 20150429 || defined(PACKETVER_ZERO) + nullpo_retv( sd ); - WBUFW(buf,0) = 0xa3b; - WBUFW(buf,2) = 13; - WBUFL(buf,4) = sd->bl.id; - WBUFB(buf,8) = enable; - WBUFL(buf,9) = effectId; + struct PACKET_ZC_HAT_EFFECT* p = (struct PACKET_ZC_HAT_EFFECT*)packet_buffer; - clif_send(buf,13,&sd->bl,AREA); + p->packetType = HEADER_ZC_HAT_EFFECT; + p->packetLength = (int16)( sizeof( struct PACKET_ZC_HAT_EFFECT ) + sizeof( int16 ) ); + p->aid = sd->bl.id; + p->status = enable; + p->effects[0] = effectId; + + clif_send( p, p->packetLength, &sd->bl, AREA ); #endif } diff --git a/src/map/clif_packetdb.hpp b/src/map/clif_packetdb.hpp index 234683b8d0..9609fbfa45 100644 --- a/src/map/clif_packetdb.hpp +++ b/src/map/clif_packetdb.hpp @@ -2248,10 +2248,12 @@ packet(0x0A2D,-1); // ZC_EQUIPWIN_MICROSCOPE_V6 #endif +#if PACKETVER_MAIN_NUM >= 20150507 || PACKETVER_RE_NUM >= 20150429 || defined(PACKETVER_ZERO) + packet( HEADER_ZC_HAT_EFFECT, -1 ); +#endif + // 2015-05-13aRagexe #if PACKETVER >= 20150513 - // New Packets - packet(0xA3B,-1); // ZC_HAT_EFFECT // RODEX Mail system packet(0x09E7,3); // ZC_NOTIFY_UNREADMAIL parseable_packet(0x09E8,11,clif_parse_Mail_refreshinbox,2,3); // CZ_OPEN_MAILBOX diff --git a/src/map/pc.cpp b/src/map/pc.cpp index f1556f38ef..bdf12eb33a 100755 --- a/src/map/pc.cpp +++ b/src/map/pc.cpp @@ -1663,9 +1663,8 @@ bool pc_authok(struct map_session_data *sd, uint32 login_id2, time_t expiration_ // Initialize BG queue sd->bg_queue_id = 0; -#if PACKETVER >= 20150513 - sd->hatEffectIDs = NULL; - sd->hatEffectCount = 0; +#if PACKETVER_MAIN_NUM >= 20150507 || PACKETVER_RE_NUM >= 20150429 || defined(PACKETVER_ZERO) + sd->hatEffects = {}; #endif sd->catch_target_class = PET_CATCH_FAIL; diff --git a/src/map/pc.hpp b/src/map/pc.hpp index 30324ddd2c..8a13caad06 100644 --- a/src/map/pc.hpp +++ b/src/map/pc.hpp @@ -787,9 +787,8 @@ struct map_session_data { short setlook_head_top, setlook_head_mid, setlook_head_bottom, setlook_robe; ///< Stores 'setlook' script command values. -#if PACKETVER >= 20150513 - uint32* hatEffectIDs; - uint8 hatEffectCount; +#if PACKETVER_MAIN_NUM >= 20150507 || PACKETVER_RE_NUM >= 20150429 || defined(PACKETVER_ZERO) + std::vector hatEffects; #endif struct{ diff --git a/src/map/script.cpp b/src/map/script.cpp index 890343932f..59e266aeb8 100644 --- a/src/map/script.cpp +++ b/src/map/script.cpp @@ -23191,47 +23191,34 @@ BUILDIN_FUNC(recalculatestat) { } BUILDIN_FUNC(hateffect){ -#if PACKETVER >= 20150513 +#if PACKETVER_MAIN_NUM >= 20150507 || PACKETVER_RE_NUM >= 20150429 || defined(PACKETVER_ZERO) struct map_session_data* sd; - bool enable; - int i, effectID; if( !script_rid2sd(sd) ) return SCRIPT_CMD_FAILURE; - effectID = script_getnum(st,2); - enable = script_getnum(st,3) ? true : false; + int16 effectID = script_getnum(st,2); + bool enable = script_getnum(st,3) ? true : false; if( effectID <= HAT_EF_MIN || effectID >= HAT_EF_MAX ){ ShowError( "buildin_hateffect: unsupported hat effect id %d\n", effectID ); return SCRIPT_CMD_FAILURE; } - ARR_FIND( 0, sd->hatEffectCount, i, sd->hatEffectIDs[i] == effectID ); + auto it = util::vector_get( sd->hatEffects, effectID ); if( enable ){ - if( i < sd->hatEffectCount ){ + if( it != sd->hatEffects.end() ){ return SCRIPT_CMD_SUCCESS; } - RECREATE(sd->hatEffectIDs,uint32,sd->hatEffectCount+1); - sd->hatEffectIDs[sd->hatEffectCount] = effectID; - sd->hatEffectCount++; + sd->hatEffects.push_back( effectID ); }else{ - if( i == sd->hatEffectCount ){ + if( it == sd->hatEffects.end() ){ return SCRIPT_CMD_SUCCESS; } - for( ; i < sd->hatEffectCount - 1; i++ ){ - sd->hatEffectIDs[i] = sd->hatEffectIDs[i+1]; - } - - sd->hatEffectCount--; - - if( !sd->hatEffectCount ){ - aFree(sd->hatEffectIDs); - sd->hatEffectIDs = NULL; - } + util::vector_erase_if_exists( sd->hatEffects, effectID ); } if( !sd->state.connect_new ){ diff --git a/src/map/script.hpp b/src/map/script.hpp index 83e3672b02..804d003329 100644 --- a/src/map/script.hpp +++ b/src/map/script.hpp @@ -1842,7 +1842,7 @@ enum e_special_effects { EF_MAX }; -enum e_hat_effects { +enum e_hat_effects : int16{ HAT_EF_MIN = 0, HAT_EF_BLOSSOM_FLUTTERING, HAT_EF_MERMAID_LONGING, diff --git a/src/map/unit.cpp b/src/map/unit.cpp index c67d6740bd..ca8b0b349e 100644 --- a/src/map/unit.cpp +++ b/src/map/unit.cpp @@ -3401,12 +3401,8 @@ int unit_free(struct block_list *bl, clr_type clrtype) } sd->qi_count = 0; -#if PACKETVER >= 20150513 - if( sd->hatEffectCount > 0 ){ - aFree(sd->hatEffectIDs); - sd->hatEffectIDs = NULL; - sd->hatEffectCount = 0; - } +#if PACKETVER_MAIN_NUM >= 20150507 || PACKETVER_RE_NUM >= 20150429 || defined(PACKETVER_ZERO) + sd->hatEffects.clear(); #endif if (sd->achievement_data.achievements) From 2c199f1aadb92198342ce3e859606d8db946626f Mon Sep 17 00:00:00 2001 From: Vincent Stumpf Date: Fri, 23 Oct 2020 04:18:04 -0700 Subject: [PATCH 25/45] Fix items not being refineable (#5474) --- src/map/itemdb.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/map/itemdb.cpp b/src/map/itemdb.cpp index cd27762de4..9753f1e103 100644 --- a/src/map/itemdb.cpp +++ b/src/map/itemdb.cpp @@ -494,10 +494,10 @@ uint64 ItemDatabase::parseBodyNode(const YAML::Node &node) { if (!this->asBool(node, "Refineable", refine)) return 0; - item->flag.no_refine = refine; + item->flag.no_refine = !refine; } else { if (!exists) - item->flag.no_refine = false; + item->flag.no_refine = true; } if (this->nodeExists(node, "View")) { From f28019a7986321fd8fa537af6864d48d9e4c092e Mon Sep 17 00:00:00 2001 From: Daegaladh Date: Fri, 23 Oct 2020 16:21:48 +0200 Subject: [PATCH 26/45] Fixed Acid Terror armor break rate on renewal (#5475) *Follow up to ea8da71cdda5cddbc05cdc736683487e5c14bf08 --- src/map/skill.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/map/skill.cpp b/src/map/skill.cpp index 2f5925bf70..0e96062234 100755 --- a/src/map/skill.cpp +++ b/src/map/skill.cpp @@ -1296,7 +1296,11 @@ int skill_additional_effect(struct block_list* src, struct block_list *bl, uint1 //"While the damage can be blocked by Pneuma, the chance to break armor remains", irowiki. [Cydh] if (dmg_lv == ATK_BLOCK && skill_id == AM_ACIDTERROR) { sc_start2(src,bl,SC_BLEEDING,(skill_lv*3),skill_lv,src->id,skill_get_time2(skill_id,skill_lv)); +#ifdef RENEWAL + if (skill_break_equip(src,bl, EQP_ARMOR, (1000 * skill_lv + 500) - 1000, BCT_ENEMY)) +#else if (skill_break_equip(src,bl, EQP_ARMOR, 100*skill_get_time(skill_id,skill_lv), BCT_ENEMY)) +#endif clif_emotion(bl,ET_HUK); } } From 4786d76ef711da6449d1252dfe91709bb85102aa Mon Sep 17 00:00:00 2001 From: Atemo Date: Sat, 24 Oct 2020 22:31:30 +0200 Subject: [PATCH 27/45] Fixed a typo in the item parsing (#5480) The 'Locations' node doesn't exist in the block --- src/map/itemdb.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/map/itemdb.cpp b/src/map/itemdb.cpp index 9753f1e103..6af3cd92f5 100644 --- a/src/map/itemdb.cpp +++ b/src/map/itemdb.cpp @@ -420,7 +420,7 @@ uint64 ItemDatabase::parseBodyNode(const YAML::Node &node) { } else { if (!exists) { if (itemdb_isequip2(item.get())) { - this->invalidWarning(node["Locations"], "Invalid item equip location as it has no equip location, defaulting to IT_ETC.\n"); + this->invalidWarning(node, "Invalid item equip location as it has no equip location, defaulting to IT_ETC.\n"); item->type = IT_ETC; } else item->equip = 0; From 579dc7b3a1aa57e01ac5a402b98000683b73a5e2 Mon Sep 17 00:00:00 2001 From: Lemongrass3110 Date: Sat, 24 Oct 2020 22:49:19 +0200 Subject: [PATCH 28/45] Added an initial loading message to YAML parsing --- src/common/database.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/common/database.cpp b/src/common/database.cpp index 24d8e1c30c..13b0a2636f 100644 --- a/src/common/database.cpp +++ b/src/common/database.cpp @@ -95,6 +95,7 @@ bool YamlDatabase::load(const std::string& path) { YAML::Node rootNode; try { + ShowStatus( "Loading '" CL_WHITE "%s" CL_RESET "'..." CL_CLL "\r", path.c_str() ); rootNode = YAML::LoadFile(path); } catch(YAML::Exception &e) { From 7a4009601dbd33212aa8eb1b1c13ab9e8498b77b Mon Sep 17 00:00:00 2001 From: Lemongrass3110 Date: Sun, 25 Oct 2020 00:12:00 +0200 Subject: [PATCH 29/45] Fixed newline escaping in YAML2SQL converter --- src/tool/yaml2sql.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/tool/yaml2sql.cpp b/src/tool/yaml2sql.cpp index 4a52171027..62686cd258 100644 --- a/src/tool/yaml2sql.cpp +++ b/src/tool/yaml2sql.cpp @@ -236,6 +236,12 @@ std::string string_escape(const std::string &s) { escaped.reserve(n * 2); for (size_t i = 0; i < n; ++i) { + if (s[i] == '\r') + continue; + if (s[i] == '\n' && (i + 1) < n) { + escaped += "\\n"; + continue; + } if (s[i] == '\\' || s[i] == '\'') escaped += '\\'; escaped += s[i]; From 708056148ec343bae422405678ec683cdf80a838 Mon Sep 17 00:00:00 2001 From: Lemongrass3110 Date: Sun, 25 Oct 2020 07:29:11 +0100 Subject: [PATCH 30/45] Updated allowed jobs for renewal equip (#5482) Based on Divine Pride's API --- db/re/item_db_equip.yml | 1805 +++++++++++++++++++------------- sql-files/item_db_re_equip.sql | 996 +++++++++--------- 2 files changed, 1579 insertions(+), 1222 deletions(-) diff --git a/db/re/item_db_equip.yml b/db/re/item_db_equip.yml index b89ca1a3af..d1f5758330 100644 --- a/db/re/item_db_equip.yml +++ b/db/re/item_db_equip.yml @@ -2217,6 +2217,7 @@ Body: Attack: 280 Range: 2 Jobs: + Crusader: true Knight: true Classes: Third: true @@ -2329,6 +2330,9 @@ Body: Crusader: true Knight: true Swordman: true + Classes: + Upper: true + Third_Upper: true Locations: Right_Hand: true Left_Hand: true @@ -3070,6 +3074,7 @@ Body: Blacksmith: true Crusader: true Hunter: true + KagerouOboro: true Knight: true Mage: true Merchant: true @@ -3103,6 +3108,7 @@ Body: Blacksmith: true Crusader: true Hunter: true + KagerouOboro: true Knight: true Mage: true Merchant: true @@ -3135,6 +3141,7 @@ Body: Blacksmith: true Crusader: true Hunter: true + KagerouOboro: true Knight: true Mage: true Merchant: true @@ -3168,6 +3175,7 @@ Body: Blacksmith: true Crusader: true Hunter: true + KagerouOboro: true Knight: true Mage: true Merchant: true @@ -3202,6 +3210,7 @@ Body: Blacksmith: true Crusader: true Hunter: true + KagerouOboro: true Knight: true Mage: true Merchant: true @@ -3236,6 +3245,7 @@ Body: Blacksmith: true Crusader: true Hunter: true + KagerouOboro: true Knight: true Mage: true Merchant: true @@ -3270,6 +3280,7 @@ Body: Blacksmith: true Crusader: true Hunter: true + KagerouOboro: true Knight: true Mage: true Merchant: true @@ -3305,6 +3316,7 @@ Body: Blacksmith: true Crusader: true Hunter: true + KagerouOboro: true Knight: true Mage: true Merchant: true @@ -3339,6 +3351,7 @@ Body: Blacksmith: true Crusader: true Hunter: true + KagerouOboro: true Knight: true Mage: true Merchant: true @@ -3373,6 +3386,7 @@ Body: Blacksmith: true Crusader: true Hunter: true + KagerouOboro: true Knight: true Mage: true Merchant: true @@ -3407,6 +3421,7 @@ Body: Blacksmith: true Crusader: true Hunter: true + KagerouOboro: true Knight: true Mage: true Merchant: true @@ -3441,6 +3456,7 @@ Body: Blacksmith: true Crusader: true Hunter: true + KagerouOboro: true Knight: true Mage: true Merchant: true @@ -3476,6 +3492,7 @@ Body: Blacksmith: true Crusader: true Hunter: true + KagerouOboro: true Knight: true Mage: true Merchant: true @@ -3528,6 +3545,7 @@ Body: Blacksmith: true Crusader: true Hunter: true + KagerouOboro: true Knight: true Mage: true Merchant: true @@ -3562,6 +3580,7 @@ Body: Blacksmith: true Crusader: true Hunter: true + KagerouOboro: true Knight: true Mage: true Merchant: true @@ -3614,6 +3633,7 @@ Body: Blacksmith: true Crusader: true Hunter: true + KagerouOboro: true Knight: true Mage: true Merchant: true @@ -3648,6 +3668,7 @@ Body: Blacksmith: true Crusader: true Hunter: true + KagerouOboro: true Knight: true Mage: true Merchant: true @@ -3682,6 +3703,7 @@ Body: Blacksmith: true Crusader: true Hunter: true + KagerouOboro: true Knight: true Mage: true Merchant: true @@ -3716,6 +3738,7 @@ Body: Blacksmith: true Crusader: true Hunter: true + KagerouOboro: true Knight: true Mage: true Merchant: true @@ -3750,6 +3773,7 @@ Body: Blacksmith: true Crusader: true Hunter: true + KagerouOboro: true Knight: true Mage: true Merchant: true @@ -3844,6 +3868,7 @@ Body: Range: 1 Jobs: Assassin: true + KagerouOboro: true Ninja: true Rogue: true Thief: true @@ -4816,6 +4841,10 @@ Body: Slots: 1 Jobs: Assassin: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Hand: true Left_Hand: true @@ -4884,6 +4913,10 @@ Body: Slots: 1 Jobs: Assassin: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Hand: true Left_Hand: true @@ -4904,6 +4937,10 @@ Body: Slots: 1 Jobs: Assassin: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Hand: true Left_Hand: true @@ -5135,10 +5172,8 @@ Body: Knight: true Merchant: true Novice: true - Rogue: true SuperNovice: true Swordman: true - Thief: true Locations: Right_Hand: true WeaponLevel: 1 @@ -5162,10 +5197,8 @@ Body: Knight: true Merchant: true Novice: true - Rogue: true SuperNovice: true Swordman: true - Thief: true Locations: Right_Hand: true WeaponLevel: 1 @@ -5188,10 +5221,8 @@ Body: Knight: true Merchant: true Novice: true - Rogue: true SuperNovice: true Swordman: true - Thief: true Locations: Right_Hand: true WeaponLevel: 1 @@ -5214,10 +5245,8 @@ Body: Knight: true Merchant: true Novice: true - Rogue: true SuperNovice: true Swordman: true - Thief: true Locations: Right_Hand: true WeaponLevel: 3 @@ -5327,10 +5356,8 @@ Body: Knight: true Merchant: true Novice: true - Rogue: true SuperNovice: true Swordman: true - Thief: true Locations: Right_Hand: true WeaponLevel: 3 @@ -5409,10 +5436,8 @@ Body: Knight: true Merchant: true Novice: true - Rogue: true SuperNovice: true Swordman: true - Thief: true Locations: Right_Hand: true WeaponLevel: 3 @@ -5445,10 +5470,8 @@ Body: Knight: true Merchant: true Novice: true - Rogue: true SuperNovice: true Swordman: true - Thief: true Locations: Right_Hand: true WeaponLevel: 1 @@ -5774,33 +5797,7 @@ Body: Range: 1 Slots: 2 Jobs: - Acolyte: true - Alchemist: true - Archer: true - Assassin: true - BardDancer: true - Crusader: true - Gunslinger: true - Hunter: true - KagerouOboro: true - Knight: true - Mage: true - Merchant: true - Monk: true - Ninja: true - Novice: true - Priest: true - Rebellion: true - Rogue: true - Sage: true - SoulLinker: true - StarGladiator: true - Summoner: true - SuperNovice: true - Swordman: true - Taekwon: true - Thief: true - Wizard: true + Blacksmith: true Classes: Third: true Third_Upper: true @@ -6660,10 +6657,7 @@ Body: Jobs: Alchemist: true Blacksmith: true - Crusader: true - Knight: true Merchant: true - Swordman: true Locations: Right_Hand: true Left_Hand: true @@ -6685,6 +6679,7 @@ Body: Blacksmith: true Classes: Upper: true + Third_Upper: true Locations: Right_Hand: true Left_Hand: true @@ -6738,6 +6733,8 @@ Body: Blacksmith: true Crusader: true Knight: true + Merchant: true + Swordman: true Classes: Upper: true Third_Upper: true @@ -6866,11 +6863,11 @@ Body: Blacksmith: true Crusader: true Knight: true + Merchant: true + Swordman: true Classes: Upper: true - Third: true Third_Upper: true - Third_Baby: true Locations: Right_Hand: true Left_Hand: true @@ -6894,11 +6891,11 @@ Body: Blacksmith: true Crusader: true Knight: true + Merchant: true + Swordman: true Classes: Upper: true - Third: true Third_Upper: true - Third_Baby: true Locations: Right_Hand: true Left_Hand: true @@ -7819,8 +7816,10 @@ Body: Slots: 1 Jobs: Crusader: true - Knight: true - Swordman: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Hand: true WeaponLevel: 3 @@ -7937,10 +7936,6 @@ Body: Crusader: true Knight: true Swordman: true - Classes: - Third: true - Third_Upper: true - Third_Baby: true Locations: Right_Hand: true WeaponLevel: 4 @@ -8110,11 +8105,10 @@ Body: Jobs: Crusader: true Knight: true + Swordman: true Classes: Upper: true - Third: true Third_Upper: true - Third_Baby: true Locations: Right_Hand: true WeaponLevel: 4 @@ -9018,9 +9012,6 @@ Body: Crusader: true Knight: true Swordman: true - Classes: - Upper: true - Third_Upper: true Locations: Right_Hand: true Left_Hand: true @@ -9049,6 +9040,10 @@ Body: Range: 3 Jobs: Knight: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Hand: true Left_Hand: true @@ -9200,10 +9195,6 @@ Body: Crusader: true Knight: true Swordman: true - Classes: - Third: true - Third_Upper: true - Third_Baby: true Locations: Right_Hand: true Left_Hand: true @@ -10426,15 +10417,14 @@ Body: Attack: 150 Range: 1 Jobs: - Acolyte: true Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true - Monk: true - Priest: true + StarGladiator: true Swordman: true + Taekwon: true Locations: Right_Hand: true WeaponLevel: 3 @@ -11285,6 +11275,10 @@ Body: Slots: 2 Jobs: Sage: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Hand: true WeaponLevel: 4 @@ -12953,6 +12947,7 @@ Body: MagicAttack: 170 Range: 1 Jobs: + Mage: true Sage: true Wizard: true Classes: @@ -12976,15 +12971,14 @@ Body: MagicAttack: 180 Range: 1 Jobs: - Acolyte: true - Mage: true Monk: true - Novice: true Priest: true Sage: true - SoulLinker: true - SuperNovice: true Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Hand: true WeaponLevel: 3 @@ -13128,15 +13122,11 @@ Body: Range: 1 Slots: 1 Jobs: - Acolyte: true - Mage: true - Monk: true - Novice: true - Priest: true Sage: true - SoulLinker: true - SuperNovice: true - Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Hand: true WeaponLevel: 3 @@ -13198,6 +13188,10 @@ Body: Slots: 2 Jobs: Priest: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Hand: true WeaponLevel: 3 @@ -13249,6 +13243,10 @@ Body: Slots: 1 Jobs: Priest: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Hand: true WeaponLevel: 4 @@ -13269,6 +13267,10 @@ Body: Slots: 1 Jobs: Priest: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Hand: true WeaponLevel: 3 @@ -13288,6 +13290,9 @@ Body: Range: 1 Jobs: Wizard: true + Classes: + Upper: true + Third_Upper: true Locations: Right_Hand: true WeaponLevel: 4 @@ -13358,10 +13363,13 @@ Body: Jobs: Acolyte: true Mage: true + Monk: true + Priest: true + Sage: true + Wizard: true Classes: Upper: true Third_Upper: true - Third_Baby: true Locations: Right_Hand: true WeaponLevel: 4 @@ -13487,8 +13495,6 @@ Body: Range: 1 Slots: 1 Jobs: - Acolyte: true - Mage: true Monk: true Priest: true Sage: true @@ -13521,11 +13527,9 @@ Body: Acolyte: true Mage: true Monk: true - Novice: true Priest: true Sage: true SoulLinker: true - SuperNovice: true Wizard: true Locations: Right_Hand: true @@ -13775,10 +13779,6 @@ Body: Range: 1 Jobs: Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Right_Hand: true WeaponLevel: 1 @@ -13828,10 +13828,6 @@ Body: Slots: 1 Jobs: Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Right_Hand: true WeaponLevel: 2 @@ -13851,10 +13847,6 @@ Body: Slots: 1 Jobs: Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Right_Hand: true WeaponLevel: 2 @@ -13875,10 +13867,6 @@ Body: Slots: 1 Jobs: Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Right_Hand: true WeaponLevel: 2 @@ -13898,10 +13886,6 @@ Body: Slots: 1 Jobs: Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Right_Hand: true WeaponLevel: 2 @@ -13922,10 +13906,6 @@ Body: Slots: 1 Jobs: Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Right_Hand: true WeaponLevel: 1 @@ -13954,10 +13934,6 @@ Body: Slots: 3 Jobs: Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Right_Hand: true WeaponLevel: 2 @@ -13978,10 +13954,6 @@ Body: Slots: 2 Jobs: Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Right_Hand: true WeaponLevel: 3 @@ -14002,10 +13974,6 @@ Body: Slots: 2 Jobs: Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Right_Hand: true WeaponLevel: 3 @@ -14026,10 +13994,6 @@ Body: Slots: 1 Jobs: Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Right_Hand: true WeaponLevel: 4 @@ -14049,10 +14013,6 @@ Body: Slots: 3 Jobs: Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Right_Hand: true WeaponLevel: 2 @@ -14072,10 +14032,6 @@ Body: Slots: 2 Jobs: Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Right_Hand: true WeaponLevel: 3 @@ -14095,10 +14051,6 @@ Body: Slots: 2 Jobs: Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Right_Hand: true WeaponLevel: 3 @@ -14118,10 +14070,6 @@ Body: Slots: 1 Jobs: Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Right_Hand: true WeaponLevel: 4 @@ -14162,10 +14110,6 @@ Body: Range: 1 Jobs: Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Right_Hand: true WeaponLevel: 2 @@ -14571,6 +14515,7 @@ Body: Attack: 75 Range: 11 Jobs: + Rogue: true Thief: true Locations: Right_Hand: true @@ -15079,6 +15024,7 @@ Body: Range: 5 Slots: 1 Jobs: + Archer: true BardDancer: true Hunter: true Classes: @@ -15209,6 +15155,10 @@ Body: Jobs: BardDancer: true Hunter: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Hand: true Left_Hand: true @@ -15939,7 +15889,10 @@ Body: Slots: 1 Jobs: Monk: true - Priest: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Hand: true WeaponLevel: 3 @@ -16211,6 +16164,10 @@ Body: Slots: 2 Jobs: Monk: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Hand: true WeaponLevel: 4 @@ -16902,6 +16859,10 @@ Body: Slots: 1 Jobs: BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Gender: Male Locations: Right_Hand: true @@ -16999,6 +16960,10 @@ Body: Slots: 2 Jobs: BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Gender: Male Locations: Right_Hand: true @@ -17019,6 +16984,10 @@ Body: Slots: 2 Jobs: BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Gender: Male Locations: Right_Hand: true @@ -17927,6 +17896,10 @@ Body: Slots: 1 Jobs: BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Gender: Female Locations: Right_Hand: true @@ -17947,6 +17920,10 @@ Body: Range: 1 Jobs: BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Gender: Female Locations: Right_Hand: true @@ -18044,6 +18021,10 @@ Body: Slots: 2 Jobs: BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Gender: Female Locations: Right_Hand: true @@ -18064,6 +18045,10 @@ Body: Slots: 2 Jobs: BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Gender: Female Locations: Right_Hand: true @@ -18126,10 +18111,6 @@ Body: Slots: 1 Jobs: BardDancer: true - Classes: - Third: true - Third_Upper: true - Third_Baby: true Gender: Female Locations: Right_Hand: true @@ -18273,6 +18254,7 @@ Body: Monk: true Priest: true Sage: true + SoulLinker: true Wizard: true Locations: Right_Hand: true @@ -18411,6 +18393,10 @@ Body: Slots: 2 Jobs: Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Hand: true Left_Hand: true @@ -18432,6 +18418,10 @@ Body: Slots: 2 Jobs: Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Hand: true Left_Hand: true @@ -18453,6 +18443,10 @@ Body: Slots: 2 Jobs: Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Hand: true Left_Hand: true @@ -18474,6 +18468,10 @@ Body: Slots: 2 Jobs: Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Hand: true Left_Hand: true @@ -18495,6 +18493,10 @@ Body: Slots: 1 Jobs: Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Hand: true Left_Hand: true @@ -18516,6 +18518,10 @@ Body: Slots: 1 Jobs: Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Hand: true Left_Hand: true @@ -18537,6 +18543,10 @@ Body: Slots: 1 Jobs: Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Hand: true Left_Hand: true @@ -18558,6 +18568,10 @@ Body: Slots: 1 Jobs: Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Hand: true Left_Hand: true @@ -18658,11 +18672,9 @@ Body: Acolyte: true Mage: true Monk: true - Novice: true Priest: true Sage: true SoulLinker: true - SuperNovice: true Wizard: true Locations: Right_Hand: true @@ -18794,8 +18806,6 @@ Body: Range: 1 Slots: 1 Jobs: - Acolyte: true - Mage: true Monk: true Priest: true Sage: true @@ -18825,8 +18835,9 @@ Body: MagicAttack: 170 Slots: 1 Jobs: + Monk: true + Priest: true Sage: true - SoulLinker: true Wizard: true Classes: Third: true @@ -18857,6 +18868,8 @@ Body: Range: 1 Slots: 2 Jobs: + Mage: true + Sage: true SoulLinker: true Wizard: true Locations: @@ -18902,6 +18915,9 @@ Body: MagicAttack: 320 Slots: 2 Jobs: + Monk: true + Priest: true + Sage: true Wizard: true Classes: Third: true @@ -18927,6 +18943,8 @@ Body: Range: 1 Slots: 1 Jobs: + Mage: true + Sage: true SoulLinker: true Wizard: true Locations: @@ -18975,13 +18993,10 @@ Body: Jobs: Mage: true Sage: true - SoulLinker: true Wizard: true Classes: Upper: true - Third: true Third_Upper: true - Third_Baby: true Locations: Right_Hand: true Left_Hand: true @@ -19048,14 +19063,6 @@ Body: MagicAttack: 300 Range: 1 Slots: 2 - Jobs: - Acolyte: true - Mage: true - Monk: true - Priest: true - Sage: true - SoulLinker: true - Wizard: true Locations: Right_Hand: true Left_Hand: true @@ -19075,10 +19082,7 @@ Body: Range: 1 Slots: 2 Jobs: - Acolyte: true Mage: true - Monk: true - Priest: true Sage: true SoulLinker: true Wizard: true @@ -19227,7 +19231,7 @@ Body: Range: 1 Slots: 2 Jobs: - Priest: true + Wizard: true Classes: Third: true Third_Upper: true @@ -19251,7 +19255,7 @@ Body: Range: 1 Slots: 2 Jobs: - Priest: true + Wizard: true Classes: Third: true Third_Upper: true @@ -19559,6 +19563,7 @@ Body: Weight: 150 Defense: 50 Jobs: + KagerouOboro: true Ninja: true Locations: Left_Hand: true @@ -19574,6 +19579,7 @@ Body: Defense: 50 Slots: 1 Jobs: + KagerouOboro: true Ninja: true Locations: Left_Hand: true @@ -19588,6 +19594,7 @@ Body: Weight: 150 Defense: 45 Jobs: + KagerouOboro: true Ninja: true Locations: Left_Hand: true @@ -19605,6 +19612,7 @@ Body: Defense: 45 Slots: 1 Jobs: + KagerouOboro: true Ninja: true Locations: Left_Hand: true @@ -19897,8 +19905,6 @@ Body: Priest: true Rogue: true Sage: true - SoulLinker: true - StarGladiator: true Wizard: true Classes: Upper: true @@ -19996,8 +20002,6 @@ Body: Priest: true Rogue: true Sage: true - SoulLinker: true - StarGladiator: true Wizard: true Classes: Upper: true @@ -20018,6 +20022,10 @@ Body: Defense: 60 Jobs: Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Left_Hand: true EquipLevelMin: 99 @@ -20031,6 +20039,10 @@ Body: Slots: 1 Jobs: Knight: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Left_Hand: true EquipLevelMin: 99 @@ -20160,7 +20172,10 @@ Body: Jobs: Crusader: true Knight: true - Swordman: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Left_Hand: true EquipLevelMin: 100 @@ -20269,6 +20284,10 @@ Body: Slots: 1 Jobs: Crusader: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Left_Hand: true EquipLevelMin: 102 @@ -20313,6 +20332,10 @@ Body: Slots: 1 Jobs: Priest: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Left_Hand: true EquipLevelMin: 110 @@ -20373,7 +20396,10 @@ Body: Jobs: Crusader: true Knight: true - Swordman: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Left_Hand: true EquipLevelMin: 100 @@ -20391,6 +20417,10 @@ Body: Slots: 1 Jobs: Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Left_Hand: true EquipLevelMin: 100 @@ -20408,6 +20438,10 @@ Body: Slots: 1 Jobs: Priest: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Left_Hand: true EquipLevelMin: 140 @@ -20549,6 +20583,7 @@ Body: Defense: 45 Slots: 1 Jobs: + KagerouOboro: true Ninja: true Locations: Left_Hand: true @@ -20566,6 +20601,7 @@ Body: Defense: 70 Slots: 1 Jobs: + KagerouOboro: true Ninja: true Locations: Left_Hand: true @@ -20583,6 +20619,7 @@ Body: Defense: 45 Slots: 1 Jobs: + KagerouOboro: true Ninja: true Locations: Left_Hand: true @@ -20818,7 +20855,7 @@ Body: Jobs: Priest: true Sage: true - SoulLinker: true + StarGladiator: true Locations: Left_Hand: true EquipLevelMin: 99 @@ -20834,6 +20871,19 @@ Body: Weight: 2000 Defense: 75 Slots: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + Wizard: true Classes: Third: true Third_Upper: true @@ -21014,7 +21064,6 @@ Body: Type: Armor Buy: 23000 Weight: 100 - Gender: Female Locations: Head_Top: true Refineable: true @@ -21039,7 +21088,6 @@ Body: Buy: 800 Weight: 100 Defense: 1 - Gender: Female Locations: Head_Top: true Refineable: true @@ -21054,7 +21102,6 @@ Body: Weight: 100 Defense: 1 Slots: 1 - Gender: Female Locations: Head_Top: true Refineable: true @@ -21463,7 +21510,6 @@ Body: All: true Novice: false SuperNovice: false - Gender: Female Locations: Head_Top: true EquipLevelMin: 45 @@ -21482,7 +21528,6 @@ Body: All: true Novice: false SuperNovice: false - Gender: Male Locations: Head_Top: true EquipLevelMin: 45 @@ -22715,7 +22760,6 @@ Body: Priest: true Sage: true SoulLinker: true - Swordman: true Wizard: true Locations: Armor: true @@ -22742,7 +22786,6 @@ Body: Priest: true Sage: true SoulLinker: true - Swordman: true Wizard: true Locations: Armor: true @@ -22962,6 +23005,7 @@ Body: Defense: 40 Jobs: Assassin: true + KagerouOboro: true Ninja: true Rogue: true Thief: true @@ -22980,6 +23024,7 @@ Body: Slots: 1 Jobs: Assassin: true + KagerouOboro: true Ninja: true Rogue: true Thief: true @@ -22997,6 +23042,7 @@ Body: Defense: 58 Jobs: Assassin: true + KagerouOboro: true Ninja: true Rogue: true Thief: true @@ -23381,6 +23427,7 @@ Body: Slots: 1 Jobs: Assassin: true + KagerouOboro: true Ninja: true Rogue: true Thief: true @@ -23769,6 +23816,7 @@ Body: Slots: 1 Jobs: Assassin: true + KagerouOboro: true Ninja: true Rogue: true Thief: true @@ -23964,8 +24012,6 @@ Body: Priest: true Rogue: true Sage: true - SoulLinker: true - StarGladiator: true Wizard: true Classes: Upper: true @@ -23996,8 +24042,6 @@ Body: Priest: true Rogue: true Sage: true - SoulLinker: true - StarGladiator: true Wizard: true Classes: Upper: true @@ -24047,8 +24091,6 @@ Body: Priest: true Rogue: true Sage: true - SoulLinker: true - StarGladiator: true Wizard: true Classes: Upper: true @@ -24388,7 +24430,6 @@ Body: All: true Novice: false SuperNovice: false - Gender: Female Locations: Shoes: true Refineable: true @@ -24508,7 +24549,6 @@ Body: All: true Novice: false SuperNovice: false - Gender: Female Locations: Shoes: true EquipLevelMin: 30 @@ -24870,8 +24910,6 @@ Body: Priest: true Rogue: true Sage: true - SoulLinker: true - StarGladiator: true Wizard: true Classes: Upper: true @@ -24914,6 +24952,7 @@ Body: Assassin: true Blacksmith: true Crusader: true + KagerouOboro: true Knight: true Merchant: true Ninja: true @@ -25055,8 +25094,6 @@ Body: Priest: true Rogue: true Sage: true - SoulLinker: true - StarGladiator: true Wizard: true Classes: Upper: true @@ -25504,6 +25541,11 @@ Body: Slots: 1 Jobs: BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Gender: Female Locations: Shoes: true EquipLevelMin: 105 @@ -25530,6 +25572,10 @@ Body: Defense: 12 Jobs: Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Shoes: true EquipLevelMin: 100 @@ -25545,6 +25591,10 @@ Body: Defense: 12 Jobs: Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Shoes: true EquipLevelMin: 100 @@ -25560,6 +25610,10 @@ Body: Defense: 12 Jobs: Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Shoes: true EquipLevelMin: 100 @@ -25575,6 +25629,10 @@ Body: Defense: 12 Jobs: Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Shoes: true EquipLevelMin: 100 @@ -25590,6 +25648,10 @@ Body: Defense: 12 Jobs: Priest: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Shoes: true EquipLevelMin: 100 @@ -25605,6 +25667,10 @@ Body: Defense: 12 Jobs: Priest: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Shoes: true EquipLevelMin: 100 @@ -25694,6 +25760,10 @@ Body: Slots: 1 Jobs: Assassin: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Shoes: true EquipLevelMin: 100 @@ -25710,6 +25780,10 @@ Body: Slots: 1 Jobs: Assassin: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Shoes: true EquipLevelMin: 100 @@ -25726,6 +25800,10 @@ Body: Slots: 1 Jobs: Hunter: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Shoes: true EquipLevelMin: 100 @@ -25787,9 +25865,7 @@ Body: Crusader: true Knight: true Merchant: true - StarGladiator: true Swordman: true - Taekwon: true Locations: Shoes: true EquipLevelMin: 95 @@ -25864,6 +25940,9 @@ Body: All: true Novice: false SuperNovice: false + Classes: + Upper: true + Third_Upper: true Locations: Shoes: true EquipLevelMin: 75 @@ -26769,8 +26848,6 @@ Body: Priest: true Rogue: true Sage: true - SoulLinker: true - StarGladiator: true Wizard: true Classes: Upper: true @@ -26792,6 +26869,7 @@ Body: Assassin: true Blacksmith: true Crusader: true + KagerouOboro: true Knight: true Merchant: true Ninja: true @@ -26946,8 +27024,6 @@ Body: Priest: true Rogue: true Sage: true - SoulLinker: true - StarGladiator: true Wizard: true Classes: Upper: true @@ -26966,7 +27042,6 @@ Body: Defense: 10 Slots: 1 Jobs: - Monk: true Priest: true Classes: Upper: true @@ -27426,6 +27501,10 @@ Body: Defense: 12 Jobs: Priest: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Garment: true EquipLevelMin: 100 @@ -27441,6 +27520,10 @@ Body: Defense: 12 Jobs: Priest: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Garment: true EquipLevelMin: 100 @@ -27555,6 +27638,10 @@ Body: Defense: 13 Jobs: Assassin: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Garment: true EquipLevelMin: 100 @@ -27570,6 +27657,10 @@ Body: Defense: 13 Jobs: Assassin: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Garment: true EquipLevelMin: 100 @@ -27598,6 +27689,10 @@ Body: Defense: 15 Jobs: Hunter: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Garment: true EquipLevelMin: 100 @@ -27633,6 +27728,10 @@ Body: Jobs: Priest: true Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Garment: true EquipLevelMin: 130 @@ -28108,6 +28207,7 @@ Body: Weight: 100 Jobs: Assassin: true + KagerouOboro: true Ninja: true Rogue: true Thief: true @@ -28317,7 +28417,6 @@ Body: AegisName: Bridegroom_Ring Name: Wedding Ring Type: Armor - Gender: Male Locations: Right_Accessory: true Left_Accessory: true @@ -28337,7 +28436,6 @@ Body: AegisName: Bride_Ring Name: Wedding Ring Type: Armor - Gender: Female Locations: Right_Accessory: true Left_Accessory: true @@ -28484,6 +28582,7 @@ Body: Weight: 200 Jobs: Assassin: true + KagerouOboro: true Ninja: true Rogue: true Thief: true @@ -28621,6 +28720,7 @@ Body: Defense: 1 Jobs: Assassin: true + KagerouOboro: true Ninja: true Rogue: true Thief: true @@ -28707,8 +28807,6 @@ Body: Priest: true Rogue: true Sage: true - SoulLinker: true - StarGladiator: true Wizard: true Classes: Upper: true @@ -28738,8 +28836,6 @@ Body: Priest: true Rogue: true Sage: true - SoulLinker: true - StarGladiator: true Wizard: true Classes: Upper: true @@ -28769,8 +28865,6 @@ Body: Priest: true Rogue: true Sage: true - SoulLinker: true - StarGladiator: true Wizard: true Classes: Upper: true @@ -28800,8 +28894,6 @@ Body: Priest: true Rogue: true Sage: true - SoulLinker: true - StarGladiator: true Wizard: true Classes: Upper: true @@ -29076,8 +29168,6 @@ Body: Priest: true Rogue: true Sage: true - SoulLinker: true - StarGladiator: true Wizard: true Classes: Upper: true @@ -29106,8 +29196,6 @@ Body: Priest: true Rogue: true Sage: true - SoulLinker: true - StarGladiator: true Wizard: true Classes: Upper: true @@ -29883,6 +29971,7 @@ Body: Jobs: Mage: true Sage: true + SoulLinker: true Wizard: true Locations: Right_Accessory: true @@ -29957,6 +30046,7 @@ Body: Defense: 1 Jobs: Assassin: true + KagerouOboro: true Ninja: true Rogue: true Thief: true @@ -30146,8 +30236,6 @@ Body: Priest: true Rogue: true Sage: true - SoulLinker: true - StarGladiator: true Wizard: true Classes: Upper: true @@ -30444,8 +30532,6 @@ Body: Priest: true Rogue: true Sage: true - SoulLinker: true - StarGladiator: true Wizard: true Classes: Upper: true @@ -30474,8 +30560,6 @@ Body: Priest: true Rogue: true Sage: true - SoulLinker: true - StarGladiator: true Wizard: true Classes: Upper: true @@ -30505,8 +30589,6 @@ Body: Priest: true Rogue: true Sage: true - SoulLinker: true - StarGladiator: true Wizard: true Classes: Upper: true @@ -30594,8 +30676,6 @@ Body: Priest: true Rogue: true Sage: true - SoulLinker: true - StarGladiator: true Wizard: true Classes: Upper: true @@ -31208,6 +31288,10 @@ Body: Buy: 20 Weight: 100 Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false Locations: Right_Accessory: true Left_Accessory: true @@ -31276,6 +31360,10 @@ Body: Buy: 20 Weight: 200 Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false Classes: Upper: true Third_Upper: true @@ -31292,6 +31380,10 @@ Body: Buy: 20 Weight: 200 Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false Classes: Upper: true Third_Upper: true @@ -31307,6 +31399,10 @@ Body: Buy: 20 Weight: 200 Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false Classes: Upper: true Third_Upper: true @@ -31322,6 +31418,10 @@ Body: Buy: 20 Weight: 200 Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false Classes: Upper: true Third_Upper: true @@ -31359,8 +31459,6 @@ Body: Priest: true Rogue: true Sage: true - SoulLinker: true - StarGladiator: true Wizard: true Classes: Upper: true @@ -31397,8 +31495,6 @@ Body: Priest: true Rogue: true Sage: true - SoulLinker: true - StarGladiator: true Wizard: true Classes: Upper: true @@ -31425,6 +31521,10 @@ Body: Slots: 1 Jobs: Knight: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Accessory: true Left_Accessory: true @@ -31446,9 +31546,22 @@ Body: Name: Green Apple Ring Type: Armor Jobs: - All: true - Novice: false - SuperNovice: false + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Accessory: true Left_Accessory: true @@ -32254,9 +32367,12 @@ Body: Type: Armor Defense: 2 Jobs: - All: true - Novice: false - SuperNovice: false + Alchemist: true + Sage: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Accessory: true Left_Accessory: true @@ -32449,9 +32565,22 @@ Body: Weight: 200 Defense: 2 Jobs: - All: true - Novice: false - SuperNovice: false + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Accessory: true Left_Accessory: true @@ -32467,9 +32596,22 @@ Body: Defense: 1 Slots: 1 Jobs: - All: true - Novice: false - SuperNovice: false + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Accessory: true Left_Accessory: true @@ -32558,6 +32700,10 @@ Body: Defense: 2 Jobs: Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Accessory: true Left_Accessory: true @@ -32573,6 +32719,10 @@ Body: Defense: 2 Jobs: Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Accessory: true Left_Accessory: true @@ -32588,6 +32738,10 @@ Body: Defense: 2 Jobs: Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Accessory: true Left_Accessory: true @@ -32603,6 +32757,10 @@ Body: Defense: 2 Jobs: Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Accessory: true Left_Accessory: true @@ -32637,6 +32795,10 @@ Body: Buy: 20 Jobs: Priest: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Accessory: true Left_Accessory: true @@ -32650,6 +32812,10 @@ Body: Buy: 20 Jobs: Priest: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Accessory: true Left_Accessory: true @@ -32663,6 +32829,10 @@ Body: Buy: 20 Jobs: Priest: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Accessory: true Left_Accessory: true @@ -32956,6 +33126,10 @@ Body: Weight: 100 Jobs: Assassin: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Accessory: true Left_Accessory: true @@ -32970,6 +33144,10 @@ Body: Weight: 100 Jobs: Assassin: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Accessory: true Left_Accessory: true @@ -33007,6 +33185,10 @@ Body: Weight: 100 Jobs: Hunter: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Accessory: true Left_Accessory: true @@ -33041,6 +33223,10 @@ Body: Slots: 1 Jobs: Assassin: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Accessory: true Left_Accessory: true @@ -33067,6 +33253,10 @@ Body: Defense: 1 Jobs: Monk: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Accessory: true Left_Accessory: true @@ -33557,9 +33747,7 @@ Body: Wizard: true Classes: Upper: true - Third: true Third_Upper: true - Third_Baby: true Locations: Right_Accessory: true Left_Accessory: true @@ -33735,6 +33923,10 @@ Body: Weight: 100 Defense: 3 Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false Locations: Right_Accessory: true Left_Accessory: true @@ -34001,6 +34193,8 @@ Body: Defense: 1 Slots: 1 Jobs: + Mage: true + Sage: true SoulLinker: true Wizard: true Locations: @@ -34212,6 +34406,23 @@ Body: Type: Armor Buy: 20 Weight: 100 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Accessory: true Left_Accessory: true @@ -34224,6 +34435,23 @@ Body: Type: Armor Buy: 20 Weight: 100 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Accessory: true Left_Accessory: true @@ -34237,6 +34465,23 @@ Body: Buy: 20 Weight: 100 Slots: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Accessory: true Left_Accessory: true @@ -34269,6 +34514,12 @@ Body: Buy: 10 Weight: 500 Slots: 1 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Accessory: true Left_Accessory: true @@ -36467,7 +36718,6 @@ Body: All: true Novice: false SuperNovice: false - Gender: Male Locations: Head_Low: true Head_Mid: true @@ -36843,7 +37093,6 @@ Body: All: true Novice: false SuperNovice: false - Gender: Female Locations: Head_Top: true EquipLevelMin: 45 @@ -36863,7 +37112,6 @@ Body: All: true Novice: false SuperNovice: false - Gender: Male Locations: Head_Top: true EquipLevelMin: 45 @@ -37262,7 +37510,6 @@ Body: Weight: 100 Defense: 1 Slots: 1 - Gender: Female Locations: Head_Top: true Refineable: true @@ -37277,7 +37524,6 @@ Body: Weight: 100 Defense: 1 Slots: 1 - Gender: Female Locations: Head_Top: true Refineable: true @@ -37292,7 +37538,6 @@ Body: Weight: 100 Defense: 1 Slots: 1 - Gender: Female Locations: Head_Top: true Refineable: true @@ -37307,7 +37552,6 @@ Body: Weight: 100 Defense: 1 Slots: 1 - Gender: Female Locations: Head_Top: true Refineable: true @@ -37322,7 +37566,6 @@ Body: Weight: 100 Defense: 1 Slots: 1 - Gender: Female Locations: Head_Top: true Refineable: true @@ -37337,7 +37580,6 @@ Body: Weight: 100 Defense: 1 Slots: 1 - Gender: Female Locations: Head_Top: true Refineable: true @@ -37352,7 +37594,6 @@ Body: Weight: 100 Defense: 1 Slots: 1 - Gender: Female Locations: Head_Top: true Refineable: true @@ -37701,7 +37942,6 @@ Body: Buy: 20 Weight: 100 Defense: 2 - Gender: Female Locations: Head_Mid: true EquipLevelMin: 45 @@ -38659,6 +38899,10 @@ Body: Type: Armor Buy: 2 Defense: 10 + Jobs: + All: true + Novice: false + SuperNovice: false Locations: Head_Top: true View: 41 @@ -39189,16 +39433,6 @@ Body: Weight: 100 Defense: 5 Slots: 1 - Jobs: - Alchemist: true - Assassin: true - Blacksmith: true - Crusader: true - Knight: true - Merchant: true - Rogue: true - Swordman: true - Thief: true Locations: Head_Top: true Refineable: true @@ -39329,10 +39563,6 @@ Body: Weight: 200 Defense: 3 Slots: 1 - Jobs: - All: true - Novice: false - SuperNovice: false Locations: Head_Top: true EquipLevelMin: 1 @@ -39464,6 +39694,10 @@ Body: Type: Armor Buy: 1 Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false Locations: Head_Mid: true View: 78 @@ -39532,6 +39766,10 @@ Body: Type: Armor Buy: 1 Defense: 1 + Jobs: + All: true + Novice: false + SuperNovice: false Locations: Head_Mid: true View: 187 @@ -39977,7 +40215,6 @@ Body: Type: Armor Weight: 100 Defense: 4 - Gender: Male Locations: Head_Top: true View: 362 @@ -39989,7 +40226,6 @@ Body: Type: Armor Weight: 100 Defense: 4 - Gender: Female Locations: Head_Top: true View: 363 @@ -40068,10 +40304,6 @@ Body: Buy: 20 Weight: 200 Defense: 4 - Jobs: - All: true - Novice: false - SuperNovice: false Locations: Head_Top: true EquipLevelMin: 45 @@ -40719,8 +40951,6 @@ Body: Priest: true Rogue: true Sage: true - SoulLinker: true - StarGladiator: true Wizard: true Classes: Upper: true @@ -40737,7 +40967,6 @@ Body: Type: Armor Buy: 20 Weight: 200 - Gender: Female Locations: Head_Low: true Head_Mid: true @@ -41642,6 +41871,10 @@ Body: Weight: 300 Defense: 2 Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false Locations: Head_Top: true EquipLevelMin: 1 @@ -41774,6 +42007,10 @@ Body: Buy: 20 Defense: 1 Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false Locations: Head_Top: true Refineable: true @@ -42311,10 +42548,6 @@ Body: Weight: 600 Defense: 5 Slots: 1 - Jobs: - All: true - Novice: false - SuperNovice: false Locations: Head_Mid: true Head_Top: true @@ -45061,7 +45294,6 @@ Body: Buy: 800 Weight: 100 Defense: 1 - Gender: Female Locations: Head_Top: true Refineable: true @@ -46078,7 +46310,6 @@ Body: Third: true Third_Upper: true Third_Baby: true - Gender: Male Locations: Head_Top: true EquipLevelMin: 100 @@ -46386,7 +46617,6 @@ Body: Third: true Third_Upper: true Third_Baby: true - Gender: Female Locations: Head_Top: true EquipLevelMin: 100 @@ -49585,6 +49815,7 @@ Body: Slots: 1 Jobs: Assassin: true + KagerouOboro: true Ninja: true Rogue: true Thief: true @@ -49607,6 +49838,7 @@ Body: Slots: 2 Jobs: Assassin: true + KagerouOboro: true Ninja: true Rogue: true Thief: true @@ -49645,6 +49877,7 @@ Body: Attack: 150 Range: 1 Jobs: + KagerouOboro: true Ninja: true Locations: Right_Hand: true @@ -49663,6 +49896,7 @@ Body: Attack: 70 Range: 1 Jobs: + KagerouOboro: true Ninja: true Locations: Right_Hand: true @@ -49682,6 +49916,7 @@ Body: Range: 1 Slots: 1 Jobs: + KagerouOboro: true Ninja: true Locations: Right_Hand: true @@ -49700,6 +49935,7 @@ Body: Attack: 125 Range: 2 Jobs: + KagerouOboro: true Ninja: true Locations: Right_Hand: true @@ -49720,6 +49956,7 @@ Body: Range: 1 Slots: 2 Jobs: + KagerouOboro: true Ninja: true Locations: Right_Hand: true @@ -49738,6 +49975,7 @@ Body: Range: 1 Slots: 3 Jobs: + KagerouOboro: true Ninja: true Locations: Right_Hand: true @@ -49755,6 +49993,7 @@ Body: Range: 1 Slots: 1 Jobs: + KagerouOboro: true Ninja: true Locations: Right_Hand: true @@ -49774,6 +50013,7 @@ Body: Range: 1 Slots: 2 Jobs: + KagerouOboro: true Ninja: true Locations: Right_Hand: true @@ -49792,6 +50032,7 @@ Body: Attack: 120 Range: 1 Jobs: + KagerouOboro: true Ninja: true Locations: Right_Hand: true @@ -49811,6 +50052,7 @@ Body: Range: 1 Slots: 1 Jobs: + KagerouOboro: true Ninja: true Locations: Right_Hand: true @@ -49837,6 +50079,7 @@ Body: Blacksmith: true Crusader: true Hunter: true + KagerouOboro: true Knight: true Mage: true Merchant: true @@ -49872,6 +50115,7 @@ Body: Blacksmith: true Crusader: true Hunter: true + KagerouOboro: true Knight: true Mage: true Merchant: true @@ -49907,6 +50151,7 @@ Body: Blacksmith: true Crusader: true Hunter: true + KagerouOboro: true Knight: true Mage: true Merchant: true @@ -50004,6 +50249,7 @@ Body: Blacksmith: true Crusader: true Hunter: true + KagerouOboro: true Knight: true Mage: true Merchant: true @@ -50069,6 +50315,7 @@ Body: MagicAttack: 98 Range: 1 Jobs: + KagerouOboro: true Ninja: true Locations: Right_Hand: true @@ -50102,6 +50349,7 @@ Body: Blacksmith: true Crusader: true Hunter: true + KagerouOboro: true Knight: true Mage: true Merchant: true @@ -50143,6 +50391,7 @@ Body: Blacksmith: true Crusader: true Hunter: true + KagerouOboro: true Knight: true Mage: true Merchant: true @@ -50184,6 +50433,7 @@ Body: Blacksmith: true Crusader: true Hunter: true + KagerouOboro: true Knight: true Mage: true Merchant: true @@ -50230,10 +50480,8 @@ Body: Knight: true Mage: true Merchant: true - Ninja: true Rogue: true Sage: true - SoulLinker: true Swordman: true Thief: true Wizard: true @@ -50268,10 +50516,8 @@ Body: Knight: true Mage: true Merchant: true - Ninja: true Rogue: true Sage: true - SoulLinker: true Swordman: true Thief: true Wizard: true @@ -50301,6 +50547,7 @@ Body: Blacksmith: true Crusader: true Hunter: true + KagerouOboro: true Knight: true Mage: true Merchant: true @@ -50381,6 +50628,7 @@ Body: Blacksmith: true Crusader: true Hunter: true + KagerouOboro: true Knight: true Mage: true Merchant: true @@ -50416,6 +50664,7 @@ Body: Blacksmith: true Crusader: true Hunter: true + KagerouOboro: true Knight: true Mage: true Merchant: true @@ -50625,10 +50874,8 @@ Body: Knight: true Mage: true Merchant: true - Ninja: true Rogue: true Sage: true - SoulLinker: true Swordman: true Thief: true Wizard: true @@ -50768,6 +51015,7 @@ Body: Blacksmith: true Crusader: true Hunter: true + KagerouOboro: true Knight: true Mage: true Merchant: true @@ -50808,6 +51056,7 @@ Body: Blacksmith: true Crusader: true Hunter: true + KagerouOboro: true Knight: true Mage: true Merchant: true @@ -50841,6 +51090,7 @@ Body: Attack: 155 Range: 2 Jobs: + KagerouOboro: true Ninja: true Locations: Right_Hand: true @@ -50920,6 +51170,7 @@ Body: Blacksmith: true Crusader: true Hunter: true + KagerouOboro: true Knight: true Mage: true Merchant: true @@ -51315,6 +51566,10 @@ Body: Slots: 1 Jobs: Rogue: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Hand: true WeaponLevel: 3 @@ -51342,10 +51597,8 @@ Body: Knight: true Mage: true Merchant: true - Ninja: true Rogue: true Sage: true - SoulLinker: true Swordman: true Thief: true Wizard: true @@ -51483,17 +51736,12 @@ Body: Mage: true Merchant: true Ninja: true - Novice: true Rogue: true Sage: true SoulLinker: true - SuperNovice: true Swordman: true Thief: true Wizard: true - Classes: - Upper: true - Third_Upper: true Locations: Right_Hand: true WeaponLevel: 3 @@ -51522,11 +51770,9 @@ Body: Mage: true Merchant: true Ninja: true - Novice: true Rogue: true Sage: true SoulLinker: true - SuperNovice: true Swordman: true Thief: true Wizard: true @@ -51566,6 +51812,9 @@ Body: Rogue: true Swordman: true Thief: true + Classes: + Upper: true + Third_Upper: true Locations: Right_Hand: true WeaponLevel: 4 @@ -51593,6 +51842,9 @@ Body: Rogue: true Swordman: true Thief: true + Classes: + Upper: true + Third_Upper: true Locations: Right_Hand: true WeaponLevel: 4 @@ -51707,6 +51959,7 @@ Body: SubType: Dagger Range: 1 Jobs: + KagerouOboro: true Ninja: true Locations: Right_Hand: true @@ -51733,6 +51986,7 @@ Body: Attack: 130 Range: 1 Jobs: + KagerouOboro: true Ninja: true Locations: Right_Hand: true @@ -51753,6 +52007,7 @@ Body: Range: 1 Slots: 1 Jobs: + KagerouOboro: true Ninja: true Locations: Right_Hand: true @@ -51794,6 +52049,7 @@ Body: Range: 1 Slots: 1 Jobs: + KagerouOboro: true Ninja: true Locations: Right_Hand: true @@ -51811,14 +52067,24 @@ Body: Attack: 55 Slots: 1 Jobs: + Alchemist: true Archer: true Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true Merchant: true Ninja: true Novice: true Rogue: true + Sage: true SoulLinker: true SuperNovice: true + Swordman: true Thief: true Wizard: true Locations: @@ -51926,12 +52192,24 @@ Body: Weight: 200 Attack: 80 Jobs: + Alchemist: true Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true Mage: true Merchant: true Ninja: true + Rogue: true + Sage: true SoulLinker: true Swordman: true + Thief: true + Wizard: true Locations: Right_Hand: true WeaponLevel: 4 @@ -51950,9 +52228,13 @@ Body: Range: 1 Jobs: Alchemist: true + Archer: true Assassin: true + BardDancer: true Blacksmith: true Crusader: true + Hunter: true + KagerouOboro: true Knight: true Mage: true Merchant: true @@ -51979,13 +52261,24 @@ Body: MagicAttack: 50 Slots: 1 Jobs: + Alchemist: true Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true Mage: true Merchant: true Ninja: true + Rogue: true + Sage: true SoulLinker: true Swordman: true Thief: true + Wizard: true Locations: Right_Hand: true WeaponLevel: 4 @@ -52012,6 +52305,7 @@ Body: Blacksmith: true Crusader: true Hunter: true + KagerouOboro: true Knight: true Mage: true Merchant: true @@ -52050,6 +52344,7 @@ Body: Blacksmith: true Crusader: true Hunter: true + KagerouOboro: true Knight: true Mage: true Merchant: true @@ -52080,14 +52375,26 @@ Body: Range: 1 Slots: 1 Jobs: - Acolyte: true + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true Mage: true Merchant: true Ninja: true Novice: true + Rogue: true + Sage: true SoulLinker: true SuperNovice: true + Swordman: true Thief: true + Wizard: true Locations: Right_Hand: true WeaponLevel: 3 @@ -52122,10 +52429,6 @@ Body: Rogue: true Swordman: true Thief: true - Classes: - Third: true - Third_Upper: true - Third_Baby: true Locations: Right_Hand: true WeaponLevel: 4 @@ -52736,9 +53039,6 @@ Body: Attack: 100 Range: 7 Slots: 2 - Jobs: - Gunslinger: true - Rebellion: true Locations: Right_Hand: true Left_Hand: true @@ -52763,9 +53063,6 @@ Body: Attack: 150 Range: 9 Slots: 1 - Jobs: - Gunslinger: true - Rebellion: true Locations: Right_Hand: true Left_Hand: true @@ -52852,6 +53149,7 @@ Body: Range: 7 Slots: 1 Jobs: + Gunslinger: true Rebellion: true Locations: Right_Hand: true @@ -52918,9 +53216,6 @@ Body: Attack: 95 Range: 7 Slots: 1 - Jobs: - Gunslinger: true - Rebellion: true Locations: Right_Hand: true Left_Hand: true @@ -52947,8 +53242,6 @@ Body: Attack: 150 Range: 7 Slots: 2 - Jobs: - Rebellion: true Locations: Right_Hand: true Left_Hand: true @@ -53661,8 +53954,6 @@ Body: Jobs: Gunslinger: true Rebellion: true - Classes: - Normal: true Locations: Right_Hand: true Left_Hand: true @@ -53679,8 +53970,6 @@ Body: Jobs: Gunslinger: true Rebellion: true - Classes: - Normal: true Locations: Right_Hand: true Left_Hand: true @@ -53697,8 +53986,6 @@ Body: Jobs: Gunslinger: true Rebellion: true - Classes: - Normal: true Locations: Right_Hand: true Left_Hand: true @@ -53715,8 +54002,6 @@ Body: Jobs: Gunslinger: true Rebellion: true - Classes: - Normal: true Locations: Right_Hand: true Left_Hand: true @@ -53920,7 +54205,6 @@ Body: Attack: 250 Range: 9 Jobs: - Gunslinger: true Rebellion: true Locations: Right_Hand: true @@ -53960,7 +54244,6 @@ Body: Range: 9 Slots: 1 Jobs: - Gunslinger: true Rebellion: true Locations: Right_Hand: true @@ -53981,7 +54264,6 @@ Body: Range: 9 Slots: 2 Jobs: - Gunslinger: true Rebellion: true Locations: Right_Hand: true @@ -53999,7 +54281,6 @@ Body: Attack: 250 Range: 9 Jobs: - Gunslinger: true Rebellion: true Locations: Right_Hand: true @@ -54020,7 +54301,6 @@ Body: Range: 9 Slots: 1 Jobs: - Gunslinger: true Rebellion: true Locations: Right_Hand: true @@ -54040,6 +54320,7 @@ Body: Attack: 150 Range: 1 Jobs: + KagerouOboro: true Ninja: true Locations: Right_Hand: true @@ -54060,6 +54341,7 @@ Body: Range: 1 Slots: 3 Jobs: + KagerouOboro: true Ninja: true Locations: Right_Hand: true @@ -54080,6 +54362,7 @@ Body: Range: 1 Slots: 4 Jobs: + KagerouOboro: true Ninja: true Locations: Right_Hand: true @@ -54099,6 +54382,7 @@ Body: Attack: 185 Range: 1 Jobs: + KagerouOboro: true Ninja: true Locations: Right_Hand: true @@ -54119,6 +54403,7 @@ Body: Range: 1 Slots: 2 Jobs: + KagerouOboro: true Ninja: true Locations: Right_Hand: true @@ -54137,6 +54422,7 @@ Body: Attack: 55 Range: 1 Jobs: + KagerouOboro: true Ninja: true Locations: Right_Hand: true @@ -54164,6 +54450,7 @@ Body: Attack: 55 Range: 1 Jobs: + KagerouOboro: true Ninja: true Locations: Right_Hand: true @@ -54192,6 +54479,7 @@ Body: MagicAttack: 90 Range: 1 Jobs: + KagerouOboro: true Ninja: true Locations: Right_Hand: true @@ -54218,6 +54506,7 @@ Body: Attack: 230 Range: 1 Jobs: + KagerouOboro: true Ninja: true Locations: Right_Hand: true @@ -54243,6 +54532,7 @@ Body: Attack: 99 Range: 1 Jobs: + KagerouOboro: true Ninja: true Locations: Right_Hand: true @@ -54270,6 +54560,7 @@ Body: MagicAttack: 50 Range: 1 Jobs: + KagerouOboro: true Ninja: true Locations: Right_Hand: true @@ -54295,6 +54586,7 @@ Body: Attack: 170 Range: 1 Jobs: + KagerouOboro: true Ninja: true Locations: Right_Hand: true @@ -54312,6 +54604,7 @@ Body: Weight: 3000 Range: 1 Jobs: + KagerouOboro: true Ninja: true Locations: Right_Hand: true @@ -54341,6 +54634,7 @@ Body: Range: 1 Slots: 2 Jobs: + KagerouOboro: true Ninja: true Locations: Right_Hand: true @@ -54361,6 +54655,7 @@ Body: MagicAttack: 50 Range: 1 Jobs: + KagerouOboro: true Ninja: true Locations: Right_Hand: true @@ -54381,6 +54676,7 @@ Body: MagicAttack: 50 Range: 1 Jobs: + KagerouOboro: true Ninja: true Locations: Right_Hand: true @@ -54401,6 +54697,7 @@ Body: Range: 1 Slots: 1 Jobs: + KagerouOboro: true Ninja: true Locations: Right_Hand: true @@ -54468,6 +54765,7 @@ Body: Range: 1 Slots: 1 Jobs: + KagerouOboro: true Ninja: true Locations: Right_Hand: true @@ -54498,6 +54796,7 @@ Body: Slots: 1 Jobs: KagerouOboro: true + Ninja: true Locations: Right_Hand: true Left_Hand: true @@ -54597,6 +54896,7 @@ Body: Slots: 2 Jobs: KagerouOboro: true + Ninja: true Locations: Right_Hand: true Left_Hand: true @@ -54616,6 +54916,7 @@ Body: Range: 1 Slots: 2 Jobs: + KagerouOboro: true Ninja: true Locations: Right_Hand: true @@ -54635,6 +54936,7 @@ Body: Range: 1 Slots: 2 Jobs: + KagerouOboro: true Ninja: true Locations: Right_Hand: true @@ -54814,9 +55116,7 @@ Body: Thief: true Classes: Upper: true - Third: true Third_Upper: true - Third_Baby: true Locations: Right_Hand: true WeaponLevel: 4 @@ -54846,9 +55146,7 @@ Body: Thief: true Classes: Upper: true - Third: true Third_Upper: true - Third_Baby: true Locations: Right_Hand: true WeaponLevel: 4 @@ -55858,14 +56156,24 @@ Body: Attack: 60 Range: 1 Jobs: + Alchemist: true + Archer: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + KagerouOboro: true + Knight: true + Mage: true Merchant: true - Novice: true - SuperNovice: true + Ninja: true + Rogue: true + Sage: true + SoulLinker: true Swordman: true Thief: true - Classes: - Normal: true - Baby: true + Wizard: true Locations: Right_Hand: true WeaponLevel: 1 @@ -55888,10 +56196,6 @@ Body: Crusader: true Knight: true Swordman: true - Classes: - Third: true - Third_Upper: true - Third_Baby: true Locations: Right_Hand: true WeaponLevel: 4 @@ -56259,10 +56563,6 @@ Body: SuperNovice: true Swordman: true Thief: true - Classes: - Third: true - Third_Upper: true - Third_Baby: true Locations: Right_Hand: true WeaponLevel: 3 @@ -56290,24 +56590,16 @@ Body: Slots: 1 Jobs: Alchemist: true - Archer: true Assassin: true - BardDancer: true Blacksmith: true Crusader: true - Hunter: true Knight: true - Mage: true Merchant: true - Ninja: true Novice: true Rogue: true - Sage: true - SoulLinker: true SuperNovice: true Swordman: true Thief: true - Wizard: true Locations: Right_Hand: true WeaponLevel: 3 @@ -56338,12 +56630,13 @@ Body: Blacksmith: true Crusader: true Knight: true + Merchant: true Rogue: true + Swordman: true + Thief: true Classes: Upper: true - Third: true Third_Upper: true - Third_Baby: true Locations: Right_Hand: true WeaponLevel: 4 @@ -56366,12 +56659,13 @@ Body: Blacksmith: true Crusader: true Knight: true + Merchant: true Rogue: true + Swordman: true + Thief: true Classes: Upper: true - Third: true Third_Upper: true - Third_Baby: true Locations: Right_Hand: true WeaponLevel: 4 @@ -56394,12 +56688,13 @@ Body: Blacksmith: true Crusader: true Knight: true + Merchant: true Rogue: true + Swordman: true + Thief: true Classes: Upper: true - Third: true Third_Upper: true - Third_Baby: true Locations: Right_Hand: true WeaponLevel: 4 @@ -56968,6 +57263,10 @@ Body: Slots: 1 Jobs: Knight: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Armor: true EquipLevelMin: 99 @@ -57264,6 +57563,7 @@ Body: Slots: 1 Jobs: Assassin: true + KagerouOboro: true Ninja: true Rogue: true Thief: true @@ -57376,6 +57676,10 @@ Body: Defense: 40 Jobs: Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Armor: true EquipLevelMin: 100 @@ -57391,6 +57695,10 @@ Body: Defense: 40 Jobs: Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Armor: true EquipLevelMin: 100 @@ -57406,6 +57714,10 @@ Body: Defense: 40 Jobs: Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Armor: true EquipLevelMin: 100 @@ -57421,6 +57733,10 @@ Body: Defense: 40 Jobs: Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Armor: true EquipLevelMin: 100 @@ -57601,6 +57917,10 @@ Body: Slots: 1 Jobs: Assassin: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Armor: true EquipLevelMin: 100 @@ -57617,6 +57937,10 @@ Body: Slots: 1 Jobs: Assassin: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Armor: true EquipLevelMin: 100 @@ -57660,6 +57984,10 @@ Body: Slots: 1 Jobs: Hunter: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Armor: true EquipLevelMin: 100 @@ -57696,6 +58024,10 @@ Body: Slots: 1 Jobs: Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Armor: true EquipLevelMin: 100 @@ -57847,6 +58179,7 @@ Body: Weight: 1200 Defense: 70 Jobs: + KagerouOboro: true Ninja: true Locations: Armor: true @@ -57863,6 +58196,7 @@ Body: Defense: 90 Slots: 1 Jobs: + KagerouOboro: true Ninja: true Locations: Armor: true @@ -57879,6 +58213,7 @@ Body: Defense: 60 Slots: 1 Jobs: + KagerouOboro: true Ninja: true Locations: Armor: true @@ -57895,6 +58230,7 @@ Body: Defense: 70 Slots: 1 Jobs: + KagerouOboro: true Ninja: true Locations: Armor: true @@ -57922,15 +58258,12 @@ Body: Defense: 40 Slots: 1 Jobs: - Archer: true - Novice: true - SuperNovice: true - Swordman: true - Thief: true + All: true + Novice: false + SuperNovice: false Classes: - Normal: true Upper: true - Baby: true + Third_Upper: true Locations: Armor: true EquipLevelMin: 1 @@ -58259,18 +58592,17 @@ Body: Slots: 1 Jobs: Alchemist: true + Archer: true Assassin: true + BardDancer: true Blacksmith: true Crusader: true + Hunter: true Knight: true Merchant: true Rogue: true Swordman: true Thief: true - Classes: - Third: true - Third_Upper: true - Third_Baby: true Locations: Armor: true EquipLevelMin: 120 @@ -58286,8 +58618,6 @@ Body: Defense: 55 Slots: 1 Jobs: - Acolyte: true - Mage: true Monk: true Priest: true Sage: true @@ -58313,7 +58643,10 @@ Body: Jobs: Crusader: true Knight: true - Swordman: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Armor: true EquipLevelMin: 160 @@ -58332,6 +58665,9 @@ Body: Mage: true Sage: true Wizard: true + Classes: + Upper: true + Third_Upper: true Locations: Armor: true EquipLevelMin: 160 @@ -58350,6 +58686,9 @@ Body: Acolyte: true Monk: true Priest: true + Classes: + Upper: true + Third_Upper: true Locations: Armor: true EquipLevelMin: 160 @@ -58369,9 +58708,8 @@ Body: Blacksmith: true Merchant: true Classes: - Third: true + Upper: true Third_Upper: true - Third_Baby: true Locations: Armor: true EquipLevelMin: 160 @@ -58390,6 +58728,9 @@ Body: Assassin: true Rogue: true Thief: true + Classes: + Upper: true + Third_Upper: true Locations: Armor: true EquipLevelMin: 160 @@ -58405,7 +58746,6 @@ Body: Defense: 60 Slots: 1 Jobs: - Archer: true BardDancer: true Hunter: true Classes: @@ -58426,6 +58766,23 @@ Body: Weight: 1500 Defense: 20 Slots: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Armor: true EquipLevelMin: 130 @@ -58440,6 +58797,23 @@ Body: Weight: 1500 Defense: 20 Slots: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Armor: true EquipLevelMin: 130 @@ -58655,10 +59029,6 @@ Body: Slots: 1 Jobs: Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Armor: true EquipLevelMin: 100 @@ -58688,10 +59058,6 @@ Body: Slots: 1 Jobs: Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Armor: true EquipLevelMin: 140 @@ -58811,10 +59177,6 @@ Body: Slots: 1 Jobs: Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Armor: true EquipLevelMin: 6 @@ -58831,10 +59193,6 @@ Body: Slots: 1 Jobs: Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Armor: true EquipLevelMin: 15 @@ -58939,10 +59297,6 @@ Body: Slots: 1 Jobs: Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Armor: true EquipLevelMin: 175 @@ -59105,6 +59459,7 @@ Body: Defense: 50 Jobs: KagerouOboro: true + Ninja: true Locations: Armor: true EquipLevelMin: 100 @@ -59690,15 +60045,16 @@ Body: Range: 1 Slots: 2 Jobs: - Acolyte: true Alchemist: true Blacksmith: true Crusader: true Knight: true - Merchant: true Monk: true Priest: true - Swordman: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Hand: true WeaponLevel: 3 @@ -59862,15 +60218,11 @@ Body: Range: 1 Slots: 1 Jobs: - Acolyte: true Alchemist: true - Blacksmith: true - Crusader: true - Knight: true - Merchant: true - Monk: true - Priest: true - Swordman: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Hand: true WeaponLevel: 3 @@ -59950,9 +60302,7 @@ Body: Knight: true Merchant: true Monk: true - Novice: true Priest: true - SuperNovice: true Swordman: true Locations: Right_Hand: true @@ -60011,9 +60361,7 @@ Body: Knight: true Merchant: true Monk: true - Novice: true Priest: true - SuperNovice: true Swordman: true Locations: Right_Hand: true @@ -60044,6 +60392,9 @@ Body: Acolyte: true Monk: true Priest: true + Classes: + Upper: true + Third_Upper: true Locations: Right_Hand: true WeaponLevel: 4 @@ -60347,15 +60698,12 @@ Body: Range: 1 Slots: 1 Jobs: - Acolyte: true Alchemist: true Blacksmith: true Crusader: true Knight: true - Merchant: true Monk: true Priest: true - Swordman: true Classes: Third: true Third_Upper: true @@ -60381,11 +60729,11 @@ Body: Slots: 1 Jobs: Acolyte: true + Monk: true + Priest: true Classes: Upper: true - Third: true Third_Upper: true - Third_Baby: true Locations: Right_Hand: true WeaponLevel: 4 @@ -60472,15 +60820,12 @@ Body: Range: 1 Slots: 2 Jobs: - Acolyte: true Alchemist: true Blacksmith: true Crusader: true Knight: true - Merchant: true Monk: true Priest: true - Swordman: true Classes: Third: true Third_Upper: true @@ -60603,7 +60948,6 @@ Body: Knight: true Monk: true Priest: true - Wizard: true Classes: Third: true Third_Upper: true @@ -61160,8 +61504,6 @@ Body: Archer: true BardDancer: true Hunter: true - Rogue: true - Thief: true Locations: Right_Hand: true Left_Hand: true @@ -61245,6 +61587,10 @@ Body: Slots: 2 Jobs: Rogue: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Hand: true Left_Hand: true @@ -61265,6 +61611,10 @@ Body: Slots: 2 Jobs: Hunter: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Hand: true Left_Hand: true @@ -61286,6 +61636,10 @@ Body: Jobs: BardDancer: true Hunter: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Hand: true Left_Hand: true @@ -61308,8 +61662,6 @@ Body: Archer: true BardDancer: true Hunter: true - Rogue: true - Thief: true Locations: Right_Hand: true Left_Hand: true @@ -61399,6 +61751,7 @@ Body: Range: 5 Slots: 1 Jobs: + Archer: true BardDancer: true Hunter: true Locations: @@ -61481,7 +61834,6 @@ Body: Range: 5 Slots: 1 Jobs: - Archer: true BardDancer: true Hunter: true Classes: @@ -61556,6 +61908,10 @@ Body: Slots: 1 Jobs: Hunter: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Hand: true Left_Hand: true @@ -61577,6 +61933,10 @@ Body: Jobs: BardDancer: true Hunter: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Hand: true Left_Hand: true @@ -61685,13 +62045,6 @@ Body: Attack: 160 Range: 5 Slots: 1 - Jobs: - Hunter: true - Rogue: true - Classes: - Third: true - Third_Upper: true - Third_Baby: true Locations: Right_Hand: true Left_Hand: true @@ -61883,13 +62236,12 @@ Body: Range: 5 Slots: 2 Jobs: + Archer: true BardDancer: true Hunter: true Classes: Upper: true - Third: true Third_Upper: true - Third_Baby: true Locations: Right_Hand: true Left_Hand: true @@ -63165,9 +63517,22 @@ Body: Defense: 7 Slots: 1 Jobs: - All: true - Novice: false - SuperNovice: false + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Head_Top: true EquipLevelMin: 100 @@ -65657,6 +66022,9 @@ Body: All: true Novice: false SuperNovice: false + Classes: + Upper: true + Third_Upper: true Locations: Head_Top: true EquipLevelMin: 99 @@ -65695,6 +66063,10 @@ Body: Weight: 600 Defense: 1 Slots: 1 + Jobs: + All: true + Novice: false + SuperNovice: false Locations: Head_Top: true EquipLevelMin: 1 @@ -65866,9 +66238,11 @@ Body: Blacksmith: true Crusader: true Hunter: true + KagerouOboro: true Knight: true Monk: true Priest: true + Rebellion: true Rogue: true Sage: true SoulLinker: true @@ -65889,21 +66263,6 @@ Body: Weight: 2400 Defense: 4 Slots: 1 - Jobs: - Alchemist: true - Assassin: true - BardDancer: true - Blacksmith: true - Crusader: true - Hunter: true - Knight: true - Monk: true - Priest: true - Rogue: true - Sage: true - SoulLinker: true - StarGladiator: true - Wizard: true Locations: Head_Mid: true Head_Top: true @@ -66467,6 +66826,19 @@ Body: Weight: 450 Defense: 35 Slots: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + Wizard: true Classes: Third: true Third_Upper: true @@ -68758,10 +69130,6 @@ Body: Buy: 20 Weight: 300 Slots: 1 - Jobs: - All: true - Novice: false - SuperNovice: false Locations: Head_Mid: true EquipLevelMin: 50 @@ -68855,10 +69223,6 @@ Body: Weight: 200 Defense: 4 Slots: 1 - Jobs: - All: true - Novice: false - SuperNovice: false Locations: Head_Top: true EquipLevelMin: 45 @@ -69750,6 +70114,7 @@ Body: Defense: 10 Slots: 1 Jobs: + Gunslinger: true Rebellion: true Locations: Head_Top: true @@ -69776,6 +70141,7 @@ Body: Slots: 1 Jobs: KagerouOboro: true + Ninja: true Locations: Head_Top: true EquipLevelMin: 100 @@ -71538,10 +71904,6 @@ Body: Name: Costume Wandering Wolf Hat Type: Armor Buy: 20 - Jobs: - All: true - Novice: false - SuperNovice: false Locations: Costume_Head_Top: true Costume_Head_Mid: true @@ -79061,6 +79423,19 @@ Body: Weight: 600 Defense: 45 Slots: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + Wizard: true Classes: Third: true Third_Upper: true @@ -79498,10 +79873,6 @@ Body: Slots: 1 Jobs: Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Garment: true EquipLevelMin: 100 @@ -79518,10 +79889,6 @@ Body: Slots: 1 Jobs: Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Garment: true EquipLevelMin: 140 @@ -79538,10 +79905,6 @@ Body: Slots: 1 Jobs: Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Garment: true EquipLevelMin: 175 @@ -79680,6 +80043,7 @@ Body: Defense: 12 Jobs: KagerouOboro: true + Ninja: true Locations: Garment: true EquipLevelMin: 100 @@ -80166,10 +80530,6 @@ Body: Weight: 550 Defense: 20 Slots: 1 - Jobs: - All: true - Novice: false - SuperNovice: false Locations: Garment: true EquipLevelMin: 99 @@ -80184,10 +80544,6 @@ Body: Weight: 750 Defense: 23 Slots: 1 - Jobs: - All: true - Novice: false - SuperNovice: false Locations: Garment: true EquipLevelMin: 99 @@ -80443,7 +80799,6 @@ Body: Jobs: Crusader: true Knight: true - Swordman: true Locations: Right_Hand: true Left_Hand: true @@ -80489,10 +80844,6 @@ Body: Crusader: true Knight: true Swordman: true - Classes: - Third: true - Third_Upper: true - Third_Baby: true Locations: Right_Hand: true Left_Hand: true @@ -80515,7 +80866,6 @@ Body: Jobs: Crusader: true Knight: true - Swordman: true Locations: Right_Hand: true Left_Hand: true @@ -80537,7 +80887,6 @@ Body: Jobs: Crusader: true Knight: true - Swordman: true Classes: Third: true Third_Upper: true @@ -80608,7 +80957,6 @@ Body: Jobs: Crusader: true Knight: true - Swordman: true Classes: Third: true Third_Upper: true @@ -80684,7 +81032,6 @@ Body: Jobs: Crusader: true Knight: true - Swordman: true Classes: Third: true Third_Upper: true @@ -80733,7 +81080,6 @@ Body: Jobs: Crusader: true Knight: true - Swordman: true Classes: Third: true Third_Upper: true @@ -80760,10 +81106,6 @@ Body: Crusader: true Knight: true Swordman: true - Classes: - Third: true - Third_Upper: true - Third_Baby: true Locations: Right_Hand: true Left_Hand: true @@ -80785,7 +81127,6 @@ Body: Jobs: Crusader: true Knight: true - Swordman: true Classes: Third: true Third_Upper: true @@ -80877,9 +81218,18 @@ Body: Weight: 600 Defense: 25 Jobs: - All: true - Novice: false - SuperNovice: false + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + Wizard: true Classes: Third: true Third_Upper: true @@ -80898,9 +81248,18 @@ Body: Weight: 600 Defense: 20 Jobs: - All: true - Novice: false - SuperNovice: false + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + Wizard: true Classes: Third: true Third_Upper: true @@ -80919,9 +81278,18 @@ Body: Weight: 600 Defense: 25 Jobs: - All: true - Novice: false - SuperNovice: false + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + Wizard: true Classes: Third: true Third_Upper: true @@ -80940,9 +81308,18 @@ Body: Weight: 600 Defense: 25 Jobs: - All: true - Novice: false - SuperNovice: false + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + Wizard: true Classes: Third: true Third_Upper: true @@ -80961,9 +81338,18 @@ Body: Weight: 600 Defense: 25 Jobs: - All: true - Novice: false - SuperNovice: false + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + Wizard: true Classes: Third: true Third_Upper: true @@ -80982,9 +81368,18 @@ Body: Weight: 600 Defense: 20 Jobs: - All: true - Novice: false - SuperNovice: false + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + Wizard: true Classes: Third: true Third_Upper: true @@ -81004,9 +81399,18 @@ Body: Defense: 25 Slots: 1 Jobs: - All: true - Novice: false - SuperNovice: false + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + Wizard: true Classes: Third: true Third_Upper: true @@ -81026,9 +81430,18 @@ Body: Defense: 25 Slots: 1 Jobs: - All: true - Novice: false - SuperNovice: false + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + Wizard: true Classes: Third: true Third_Upper: true @@ -81048,9 +81461,18 @@ Body: Defense: 25 Slots: 1 Jobs: - All: true - Novice: false - SuperNovice: false + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + Wizard: true Classes: Third: true Third_Upper: true @@ -81070,9 +81492,18 @@ Body: Defense: 20 Slots: 1 Jobs: - All: true - Novice: false - SuperNovice: false + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + Wizard: true Classes: Third: true Third_Upper: true @@ -81092,9 +81523,18 @@ Body: Defense: 25 Slots: 1 Jobs: - All: true - Novice: false - SuperNovice: false + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + Wizard: true Classes: Third: true Third_Upper: true @@ -81114,9 +81554,18 @@ Body: Defense: 20 Slots: 1 Jobs: - All: true - Novice: false - SuperNovice: false + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + Wizard: true Classes: Third: true Third_Upper: true @@ -81256,6 +81705,19 @@ Body: Weight: 400 Defense: 25 Slots: 1 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + Wizard: true Classes: Third: true Third_Upper: true @@ -81538,10 +82000,6 @@ Body: Slots: 1 Jobs: Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Shoes: true EquipLevelMin: 9 @@ -81558,10 +82016,6 @@ Body: Slots: 1 Jobs: Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Shoes: true EquipLevelMin: 18 @@ -81679,10 +82133,6 @@ Body: Slots: 1 Jobs: Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Shoes: true EquipLevelMin: 100 @@ -81699,10 +82149,6 @@ Body: Slots: 1 Jobs: Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Shoes: true EquipLevelMin: 140 @@ -81719,10 +82165,6 @@ Body: Slots: 1 Jobs: Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Shoes: true EquipLevelMin: 175 @@ -81802,8 +82244,22 @@ Body: Weight: 600 Defense: 25 Jobs: - KagerouOboro: true - Rebellion: true + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Shoes: true EquipLevelMin: 99 @@ -82257,23 +82713,6 @@ Body: Weight: 600 Defense: 16 Slots: 1 - Jobs: - Alchemist: true - Archer: true - Assassin: true - BardDancer: true - Blacksmith: true - Crusader: true - Gunslinger: true - Hunter: true - Knight: true - Merchant: true - Rebellion: true - Rogue: true - StarGladiator: true - Swordman: true - Taekwon: true - Thief: true Locations: Shoes: true EquipLevelMin: 100 @@ -84731,6 +85170,19 @@ Body: Name: Enhanced Force Shadow Weapon Type: Shadowgear Buy: 10 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + Wizard: true Classes: Third: true Third_Upper: true @@ -84779,6 +85231,19 @@ Body: Name: Enhanced Soul Shadow Weapon Type: Shadowgear Buy: 10 + Jobs: + Alchemist: true + Assassin: true + BardDancer: true + Blacksmith: true + Crusader: true + Hunter: true + Knight: true + Monk: true + Priest: true + Rogue: true + Sage: true + Wizard: true Classes: Third: true Third_Upper: true @@ -85404,10 +85869,6 @@ Body: Type: Shadowgear Jobs: Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Shadow_Weapon: true EquipLevelMin: 1 @@ -85420,10 +85881,6 @@ Body: Type: Shadowgear Jobs: Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Shadow_Weapon: true EquipLevelMin: 1 @@ -85881,6 +86338,7 @@ Body: Type: Shadowgear Buy: 10 Jobs: + KagerouOboro: true Ninja: true Locations: Shadow_Shield: true @@ -85910,10 +86368,6 @@ Body: Buy: 10 Jobs: Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Shadow_Shield: true EquipLevelMin: 1 @@ -85927,10 +86381,6 @@ Body: Buy: 10 Jobs: Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Shadow_Shield: true EquipLevelMin: 1 @@ -86845,6 +87295,7 @@ Body: Type: Shadowgear Buy: 10 Jobs: + Gunslinger: true Rebellion: true Locations: Shadow_Armor: true @@ -86859,7 +87310,7 @@ Body: Buy: 10 Jobs: KagerouOboro: true - Gender: Male + Ninja: true Locations: Shadow_Armor: true EquipLevelMin: 100 @@ -86873,7 +87324,7 @@ Body: Buy: 10 Jobs: KagerouOboro: true - Gender: Female + Ninja: true Locations: Shadow_Armor: true EquipLevelMin: 100 @@ -86886,6 +87337,7 @@ Body: Type: Shadowgear Buy: 10 Jobs: + Gunslinger: true Rebellion: true Locations: Shadow_Shoes: true @@ -86900,7 +87352,7 @@ Body: Buy: 10 Jobs: KagerouOboro: true - Gender: Male + Ninja: true Locations: Shadow_Shoes: true EquipLevelMin: 100 @@ -86914,7 +87366,7 @@ Body: Buy: 10 Jobs: KagerouOboro: true - Gender: Female + Ninja: true Locations: Shadow_Shoes: true EquipLevelMin: 100 @@ -86928,10 +87380,6 @@ Body: Buy: 10 Jobs: Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Shadow_Armor: true EquipLevelMin: 100 @@ -86945,10 +87393,6 @@ Body: Buy: 10 Jobs: Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Shadow_Shoes: true EquipLevelMin: 100 @@ -86962,10 +87406,6 @@ Body: Buy: 10 Jobs: Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Shadow_Armor: true EquipLevelMin: 100 @@ -86979,10 +87419,6 @@ Body: Buy: 10 Jobs: Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Shadow_Shoes: true EquipLevelMin: 100 @@ -86996,6 +87432,10 @@ Body: Buy: 10 Jobs: StarGladiator: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Shadow_Armor: true EquipLevelMin: 100 @@ -87009,6 +87449,10 @@ Body: Buy: 10 Jobs: StarGladiator: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Shadow_Shoes: true EquipLevelMin: 100 @@ -87022,6 +87466,10 @@ Body: Buy: 10 Jobs: SoulLinker: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Shadow_Armor: true EquipLevelMin: 100 @@ -87035,6 +87483,10 @@ Body: Buy: 10 Jobs: SoulLinker: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Shadow_Shoes: true EquipLevelMin: 100 @@ -87210,7 +87662,10 @@ Body: Jobs: Crusader: true Knight: true - Swordman: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true Locations: Right_Hand: true Left_Hand: true @@ -87230,10 +87685,6 @@ Body: Range: 1 Jobs: Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Right_Hand: true WeaponLevel: 2 @@ -87260,10 +87711,6 @@ Body: Range: 1 Jobs: Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Right_Hand: true WeaponLevel: 3 @@ -87312,13 +87759,12 @@ Body: Range: 1 Slots: 2 Jobs: + Mage: true Sage: true Wizard: true Classes: Upper: true - Third: true Third_Upper: true - Third_Baby: true Locations: Right_Hand: true WeaponLevel: 4 @@ -87417,16 +87863,6 @@ Body: MagicAttack: 175 Range: 1 Slots: 2 - Jobs: - Acolyte: true - Mage: true - Monk: true - Novice: true - Priest: true - Sage: true - SoulLinker: true - SuperNovice: true - Wizard: true Locations: Right_Hand: true WeaponLevel: 4 @@ -87447,10 +87883,6 @@ Body: Slots: 2 Jobs: Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Right_Hand: true WeaponLevel: 4 @@ -87840,9 +88272,7 @@ Body: Assassin: true Classes: Upper: true - Third: true Third_Upper: true - Third_Baby: true Locations: Right_Hand: true Left_Hand: true @@ -87864,9 +88294,7 @@ Body: Assassin: true Classes: Upper: true - Third: true Third_Upper: true - Third_Baby: true Locations: Right_Hand: true Left_Hand: true @@ -87961,10 +88389,6 @@ Body: Knight: true Merchant: true Swordman: true - Classes: - Third: true - Third_Upper: true - Third_Baby: true Locations: Right_Hand: true Left_Hand: true @@ -87993,9 +88417,8 @@ Body: Merchant: true Swordman: true Classes: - Third: true + Upper: true Third_Upper: true - Third_Baby: true Locations: Right_Hand: true Left_Hand: true @@ -88091,10 +88514,6 @@ Body: Knight: true Merchant: true Swordman: true - Classes: - Third: true - Third_Upper: true - Third_Baby: true Locations: Right_Hand: true Left_Hand: true @@ -88366,8 +88785,6 @@ Body: Attack: 200 Range: 9 Slots: 2 - Jobs: - Rebellion: true Locations: Right_Hand: true Left_Hand: true @@ -88386,8 +88803,6 @@ Body: Attack: 300 Range: 9 Slots: 2 - Jobs: - Rebellion: true Locations: Right_Hand: true Left_Hand: true @@ -88406,8 +88821,6 @@ Body: Attack: 200 Range: 9 Slots: 2 - Jobs: - Rebellion: true Locations: Right_Hand: true Left_Hand: true @@ -88426,8 +88839,6 @@ Body: Attack: 350 Range: 9 Slots: 2 - Jobs: - Rebellion: true Locations: Right_Hand: true Left_Hand: true @@ -88543,9 +88954,6 @@ Body: Attack: 250 Range: 9 Slots: 2 - Jobs: - Gunslinger: true - Rebellion: true Locations: Right_Hand: true Left_Hand: true @@ -89152,12 +89560,6 @@ Body: Type: Armor Buy: 20 Weight: 100 - Jobs: - Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Right_Accessory: true Left_Accessory: true @@ -89206,10 +89608,6 @@ Body: Slots: 1 Jobs: Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Right_Accessory: true Left_Accessory: true @@ -89225,10 +89623,6 @@ Body: Slots: 1 Jobs: Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Right_Accessory: true Left_Accessory: true @@ -89244,10 +89638,6 @@ Body: Slots: 1 Jobs: Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Right_Accessory: true Left_Accessory: true @@ -90757,6 +91147,7 @@ Body: Jobs: Priest: true Sage: true + StarGladiator: true Locations: Right_Hand: true WeaponLevel: 4 @@ -91024,6 +91415,7 @@ Body: Blacksmith: true Crusader: true Hunter: true + KagerouOboro: true Knight: true Mage: true Merchant: true @@ -91036,10 +91428,6 @@ Body: Swordman: true Thief: true Wizard: true - Classes: - Third: true - Third_Upper: true - Third_Baby: true Locations: Right_Hand: true WeaponLevel: 4 @@ -91071,6 +91459,7 @@ Body: Blacksmith: true Crusader: true Hunter: true + KagerouOboro: true Knight: true Mage: true Merchant: true @@ -91109,6 +91498,7 @@ Body: Blacksmith: true Crusader: true Hunter: true + KagerouOboro: true Knight: true Mage: true Merchant: true @@ -91179,6 +91569,7 @@ Body: Slots: 2 Jobs: KagerouOboro: true + Ninja: true Locations: Right_Hand: true WeaponLevel: 3 @@ -91204,6 +91595,7 @@ Body: Blacksmith: true Crusader: true Hunter: true + KagerouOboro: true Knight: true Mage: true Merchant: true @@ -96326,6 +96718,9 @@ Body: AegisName: C_Smiling_Eyes Name: C Smiling Eyes Type: Armor + Jobs: + All: true + Summoner: false Locations: Costume_Head_Mid: true EquipLevelMin: 1 @@ -97344,10 +97739,6 @@ Body: Buy: 10 Weight: 500 Slots: 1 - Jobs: - All: true - Novice: false - SuperNovice: false Locations: Right_Accessory: true Left_Accessory: true @@ -98030,10 +98421,6 @@ Body: Slots: 1 Jobs: Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Armor: true EquipLevelMin: 100 @@ -98058,10 +98445,6 @@ Body: Slots: 1 Jobs: Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Armor: true EquipLevelMin: 100 @@ -99021,10 +99404,6 @@ Body: Slots: 1 Jobs: Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Armor: true EquipLevelMin: 125 @@ -99049,10 +99428,6 @@ Body: Slots: 1 Jobs: Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Armor: true EquipLevelMin: 125 @@ -99957,10 +100332,6 @@ Body: Slots: 1 Jobs: Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Armor: true EquipLevelMin: 150 @@ -99985,10 +100356,6 @@ Body: Slots: 1 Jobs: Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Armor: true EquipLevelMin: 150 @@ -100332,7 +100699,6 @@ Body: Defense: 70 Slots: 1 Jobs: - Novice: true SuperNovice: true Locations: Armor: true @@ -100357,7 +100723,6 @@ Body: Defense: 70 Slots: 1 Jobs: - Novice: true SuperNovice: true Locations: Armor: true @@ -100382,7 +100747,6 @@ Body: Defense: 90 Slots: 1 Jobs: - Novice: true SuperNovice: true Locations: Armor: true @@ -100407,7 +100771,6 @@ Body: Defense: 90 Slots: 1 Jobs: - Novice: true SuperNovice: true Locations: Armor: true @@ -100432,7 +100795,6 @@ Body: Defense: 100 Slots: 1 Jobs: - Novice: true SuperNovice: true Locations: Armor: true @@ -100457,7 +100819,6 @@ Body: Defense: 100 Slots: 1 Jobs: - Novice: true SuperNovice: true Locations: Armor: true @@ -101106,7 +101467,9 @@ Body: Jobs: Sage: true Classes: + Third: true Third_Upper: true + Third_Baby: true Locations: Right_Hand: true WeaponLevel: 4 @@ -101150,10 +101513,6 @@ Body: Slots: 2 Jobs: Summoner: true - Classes: - Normal: true - Upper: true - Baby: true Locations: Right_Hand: true WeaponLevel: 4 @@ -101606,7 +101965,6 @@ Body: Range: 5 Slots: 2 Jobs: - BardDancer: true Hunter: true Rogue: true Classes: @@ -101631,7 +101989,6 @@ Body: Range: 5 Slots: 2 Jobs: - BardDancer: true Hunter: true Rogue: true Classes: diff --git a/sql-files/item_db_re_equip.sql b/sql-files/item_db_re_equip.sql index c52454438e..cc156415bb 100644 --- a/sql-files/item_db_re_equip.sql +++ b/sql-files/item_db_re_equip.sql @@ -204,12 +204,12 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`pr REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1188,'Veteran_Sword','Veteran Sword','Weapon','2hSword',10000,2000,180,1,1,true,true,true,true,true,4,80,true,'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;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1189,'Krasnaya','Krasnaya','Weapon','2hSword',20,3800,200,2,3,true,true,true,true,true,true,true,2,50,true,'if(readparam(bStr)>=95) { bonus bBaseAtk,20; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_crusader`,`job_knight`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1190,'Claymore_C','Claymore','Weapon','2hSword',220,1,true,true,true,true,3,1,100,true,true,true,true,true,true,true,true,'bonus2 bAddSize,Size_All,40;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1191,'Alca_Bringer','Alca Bringer','Weapon','2hSword',20,3400,280,2,true,true,true,true,true,true,3,100,true,'bonus bAspd,(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1191,'Alca_Bringer','Alca Bringer','Weapon','2hSword',20,3400,280,2,true,true,true,true,true,true,true,3,100,true,'bonus bAspd,(getrefine()/2);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (1192,'P_Slayer1','Eden Slayer I','Weapon','2hSword',162,1,true,true,true,true,true,2,26,100,true,true,true,true,true,true,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (1193,'P_Slayer2','Eden Slayer II','Weapon','2hSword',185,1,true,true,true,true,true,2,40,100,true,true,true,true,true,true,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`script`) VALUES (1194,'F_Executioner_C','Executioner','Weapon','2hSword',2,190,1,true,true,true,true,true,4,'bonus bAtkEle,Ele_Dark; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bSubRace,RC_DemiHuman,-10; bonus bIgnoreDefRace,RC_DemiHuman; bonus2 bAddRace,RC_Player_Human,20; bonus2 bSubRace,RC_Player_Human,-10; bonus bIgnoreDefRace,RC_Player_Human;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`script`) VALUES (1195,'E_Executioner_C','Executioner','Weapon','2hSword',2,190,1,true,true,true,true,true,4,'bonus bAtkEle,Ele_Dark;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1196,'Chrome_Twohand_Sword','Chrome Two-Handed Sword','Weapon','2hSword',20,400,280,1,true,true,true,true,true,3,110,true,'bonus bUnbreakableWeapon; bonus bAgi,3; bonus bMaxHPrate,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1196,'Chrome_Twohand_Sword','Chrome Two-Handed Sword','Weapon','2hSword',20,400,280,1,true,true,true,true,true,true,true,3,110,true,'bonus bUnbreakableWeapon; bonus bAgi,3; bonus bMaxHPrate,-10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (1197,'P_Slayer3','Eden Slayer III','Weapon','2hSword',200,1,true,true,true,true,true,3,60,100,true,true,true,true,true,true,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1198,'Hairtail','Cutlass','Weapon','2hSword',220,3,true,true,true,true,true,1,50,100,true,true,true,true,true,true,true,true,'bonus bCritical,20; bonus bCritAtkRate,50; bonus2 bAddEff,Eff_Crystalize,30; if(BaseLevel>99) { bonus bBaseAtk,50; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1199,'Ebony_Toe_Nail','Ebony Toe Nail','Weapon','2hSword',56000,1000,250,150,1,true,true,true,true,true,4,120,true); @@ -231,32 +231,32 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`pr REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1216,'Stiletto','Stiletto','Weapon','Dagger',19500,700,87,1,2,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,2,12,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1217,'Stiletto_','Stiletto','Weapon','Dagger',19500,700,87,1,3,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,2,12,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1218,'Stiletto__','Stiletto','Weapon','Dagger',19500,700,87,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,2,12,true); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1219,'Gladius','Gladius','Weapon','Dagger',43000,700,105,1,2,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,24,true); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1220,'Gladius_','Gladius','Weapon','Dagger',43000,700,105,1,3,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,24,true); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1221,'Gladius__','Gladius','Weapon','Dagger',43000,700,105,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,24,true); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1222,'Damascus','Damascus','Weapon','Dagger',49000,800,118,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,24,true,'bonus bUnbreakableWeapon;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1223,'Forturn_Sword','Fortune Sword','Weapon','Dagger',20,500,90,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,24,true,'bonus bLuk,5; bonus bFlee2,20;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1224,'Sword_Breaker','Swordbreaker','Weapon','Dagger',20,1000,70,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bBreakWeaponRate,500;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1225,'Mail_Breaker','Mailbreaker','Weapon','Dagger',20,1000,70,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bBreakArmorRate,500;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1226,'Damascus_','Damascus','Weapon','Dagger',49000,800,118,1,2,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,24,true,'bonus bUnbreakableWeapon;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1227,'Weeder_Knife','Weeder Knife','Weapon','Dagger',20,400,80,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bIgnoreDefRace,RC_Plant; bonus2 bAddRace,RC_Plant,15; bonus2 bSubRace,RC_Plant,15;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1228,'Combat_Knife','Combat Knife','Weapon','Dagger',20,400,80,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Demon,-10;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1229,'Mama\'s_Knife','Kitchen Knife','Weapon','Dagger',20,500,75,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bCritical,30; bonus3 bAddMonsterDropItem,517,RC_Brute,5000;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1230,'House_Auger','Ice Pick','Weapon','Dagger',20,600,80,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bDefRatioAtkClass,Class_All;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1231,'Bazerald','Bazerald','Weapon','Dagger',20,500,70,105,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bAtkEle,Ele_Fire; bonus bInt,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1219,'Gladius','Gladius','Weapon','Dagger',43000,700,105,1,2,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,24,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1220,'Gladius_','Gladius','Weapon','Dagger',43000,700,105,1,3,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,24,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1221,'Gladius__','Gladius','Weapon','Dagger',43000,700,105,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,24,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1222,'Damascus','Damascus','Weapon','Dagger',49000,800,118,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,24,true,'bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1223,'Forturn_Sword','Fortune Sword','Weapon','Dagger',20,500,90,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,24,true,'bonus bLuk,5; bonus bFlee2,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1224,'Sword_Breaker','Swordbreaker','Weapon','Dagger',20,1000,70,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bBreakWeaponRate,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1225,'Mail_Breaker','Mailbreaker','Weapon','Dagger',20,1000,70,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bBreakArmorRate,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1226,'Damascus_','Damascus','Weapon','Dagger',49000,800,118,1,2,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,24,true,'bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1227,'Weeder_Knife','Weeder Knife','Weapon','Dagger',20,400,80,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bIgnoreDefRace,RC_Plant; bonus2 bAddRace,RC_Plant,15; bonus2 bSubRace,RC_Plant,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1228,'Combat_Knife','Combat Knife','Weapon','Dagger',20,400,80,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Demon,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1229,'Mama\'s_Knife','Kitchen Knife','Weapon','Dagger',20,500,75,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bCritical,30; bonus3 bAddMonsterDropItem,517,RC_Brute,5000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1230,'House_Auger','Ice Pick','Weapon','Dagger',20,600,80,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bDefRatioAtkClass,Class_All;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1231,'Bazerald','Bazerald','Weapon','Dagger',20,500,70,105,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bAtkEle,Ele_Fire; bonus bInt,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_assassin`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1232,'Assasin_Dagger','Assassin Dagger','Weapon','Dagger',20,600,140,1,true,true,4,36,true,'bonus bMaxHPrate,20; bonus bMaxSPrate,15; bonus bAspdRate,2; bonus bAtkEle,Ele_Dark;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1233,'Exercise','Exorciser','Weapon','Dagger',20,700,90,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bIgnoreDefRace,RC_Demon; bonus2 bSubRace,RC_Demon,5; bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player_Human,-10;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1234,'Moonlight_Sword','Moonlight Dagger','Weapon','Dagger',20,700,50,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bMaxSPrate,10; bonus bSPDrainValue,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1233,'Exercise','Exorciser','Weapon','Dagger',20,700,90,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bIgnoreDefRace,RC_Demon; bonus2 bSubRace,RC_Demon,5; bonus2 bSubRace,RC_DemiHuman,-10; bonus2 bSubRace,RC_Player_Human,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1234,'Moonlight_Sword','Moonlight Dagger','Weapon','Dagger',20,700,50,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bMaxSPrate,10; bonus bSPDrainValue,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1235,'Azoth','Azoth','Weapon','Dagger',20,700,110,1,true,true,4,36,true,'bonus bClassChange,300;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1236,'Sucsamad','Sucsamad','Weapon','Dagger',20,800,140,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Wind,10; bonus bUnbreakableWeapon;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1237,'Grimtooth_','Grimtooth','Weapon','Dagger',20,800,180,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bFlee,10; bonus bFlee2,5; bonus bDefRate,-50; bonus bDef2Rate,-50;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1238,'Zeny_Knife','Zeny Knife','Weapon','Dagger',20,1200,64,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,70,true,'bonus2 bGetZenyNum,100,40;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1239,'Poison_Knife','Poison Knife','Weapon','Dagger',20,800,64,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,65,true,'bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,3000;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1240,'Princess_Knife','Princess Knife','Weapon','Dagger',20,400,84,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,1,true,'bonus bAllStats,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1236,'Sucsamad','Sucsamad','Weapon','Dagger',20,800,140,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Wind,10; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1237,'Grimtooth_','Grimtooth','Weapon','Dagger',20,800,180,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bFlee,10; bonus bFlee2,5; bonus bDefRate,-50; bonus bDef2Rate,-50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1238,'Zeny_Knife','Zeny Knife','Weapon','Dagger',20,1200,64,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,70,true,'bonus2 bGetZenyNum,100,40;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1239,'Poison_Knife','Poison Knife','Weapon','Dagger',20,800,64,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,65,true,'bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,3000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1240,'Princess_Knife','Princess Knife','Weapon','Dagger',20,400,84,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,1,true,'bonus bAllStats,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1241,'Cursed_Dagger','Cursed Dagger','Weapon','Dagger',80000,400,55,1,true,true,true,true,true,4,85,true,'bonus2 bAddEff,Eff_Curse,5000;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1242,'Counter_Dagger','Dagger of Counter','Weapon','Dagger',120000,550,140,1,true,true,true,true,true,4,55,true,'bonus bCritical,90;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`job_novice`,`job_supernovice`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (1243,'Novice_Knife','Novice Main-Gauche','Weapon','Dagger',1,45,1,true,true,true,1,1,100,true,true,true,true,true,true,true); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_assassin`,`job_ninja`,`job_rogue`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1244,'Holy_Dagger','Holy Dagger','Weapon','Dagger',20,800,100,1,true,true,true,true,true,4,55,true,'bonus bAtkEle,Ele_Holy; bonus2 bAddRace,RC_Demon,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_assassin`,`job_kagerouoboro`,`job_ninja`,`job_rogue`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1244,'Holy_Dagger','Holy Dagger','Weapon','Dagger',20,800,100,1,true,true,true,true,true,true,4,55,true,'bonus bAtkEle,Ele_Holy; bonus2 bAddRace,RC_Demon,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_novice`,`job_supernovice`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1245,'Cinquedea','Cinquedea','Weapon','Dagger',40000,700,110,1,1,true,true,true,3,30,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_novice`,`job_supernovice`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1246,'Cinquedea_','Cinquedea','Weapon','Dagger',40000,700,110,1,2,true,true,true,3,30,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1247,'Kindling_Dagger','Kindle Dagger','Weapon','Dagger',10000,600,39,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,1,true,'bonus bAtkEle,Ele_Fire;'); @@ -299,11 +299,11 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`pr REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1284,'Krishna','Krishna','Weapon','Katar',20,1200,120,1,2,true,true,true,true,true,3,50,true,'bonus2 bSkillAtk,"AS_GRIMTOOTH",10; bonus3 bAutoSpell,"AS_SONICBLOW",max(getskilllv("AS_SONICBLOW"),1),100;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1285,'Cakram','Chakram','Weapon','Katar',20,1000,130,1,2,true,true,true,true,true,3,50,true,'if(getskilllv("AS_KATAR")==10) { bonus bHit,10; } bonus2 bSkillAtk,"ASC_METEORASSAULT",20;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1286,'Jamadhar_C','Jamadhar','Weapon','Katar',200,1,true,true,true,3,1,100,true,true,true,true,true,true,true,true,'bonus bUnbreakableWeapon; bonus2 bAddSize,Size_All,40;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1287,'Durga','Durga','Weapon','Katar',20,1200,190,1,1,true,true,true,3,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1287,'Durga','Durga','Weapon','Katar',20,1200,190,1,1,true,true,true,true,true,true,3,100,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1288,'Bloody_Fear_C','Bloody Fear','Weapon','Katar',1,145,1,true,true,true,4,1,100,true,true,true,true,true,true,true,true,'bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bAddEff,Eff_Bleeding,100;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (1289,'P_Katar1','Eden Katar I','Weapon','Katar',155,1,true,true,true,3,60,100,true,true,true,true,true,true,true); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1290,'Agent_Katar','Agent Katar','Weapon','Katar',41000,1200,170,1,1,true,true,true,3,100,true,'bonus bHit,readparam(bLuk)/2;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1291,'Guillotine_Katar','Guillotine Katar','Weapon','Katar',56000,1500,200,1,1,true,true,true,4,140,true,'bonus bDex,2; bonus bFlee,-30; bonus2 bAddRace,RC_DemiHuman,50; bonus2 bAddRace,RC_Player_Human,50; bonus2 bSkillAtk,"GC_CROSSIMPACT",30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1290,'Agent_Katar','Agent Katar','Weapon','Katar',41000,1200,170,1,1,true,true,true,true,true,true,3,100,true,'bonus bHit,readparam(bLuk)/2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1291,'Guillotine_Katar','Guillotine Katar','Weapon','Katar',56000,1500,200,1,1,true,true,true,true,true,true,4,140,true,'bonus bDex,2; bonus bFlee,-30; bonus2 bAddRace,RC_DemiHuman,50; bonus2 bAddRace,RC_Player_Human,50; bonus2 bSkillAtk,"GC_CROSSIMPACT",30;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (1292,'Upg_Katar','Upg Katar','Weapon','Katar',20,1000,80,1,1,true,true,true,3,1,true,100,true,'.@r = getrefine(); bonus bBaseAtk,(.@r*10); bonus bCritAtkRate,(.@r*2); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*10);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1293,'Velum_Jamadhar','Vellum Jamadhar','Weapon','Katar',20,1200,170,1,true,true,true,4,95,true,'bonus4 bSetDefRace,RC_Player_Human,10000,5000,1; bonus4 bSetMDefRace,RC_Player_Human,10000,5000,1; bonus bAspdRate,getrefine();'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1294,'Velum_Scare','Vellum Scale','Weapon','Katar',20,1200,50,1,true,true,true,4,95,true,'bonus3 bSPVanishRaceRate,RC_Player_Human,1000,10;'); @@ -313,19 +313,19 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`pr REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1298,'Shiver_Katar','Katar Of Horror','Weapon','Katar',60000,2700,110,1,2,true,true,true,4,105,true,'bonus bCritical,getrefine();'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1299,'TE_Woe_Katar','TE Woe Katar','Weapon','Katar',120,1,true,true,true,3,40,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Bleeding,1000;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1300,'Cleaver_','Cleaver','Weapon','1hAxe',20,1200,140,1,3,true,true,true,true,true,true,true,4,44,true,'bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus3 bAddMonsterDropItem,517,RC_Brute,3000;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1301,'Axe','Axe','Weapon','1hAxe',500,800,38,1,3,true,true,true,true,true,true,true,true,true,true,true,true,1,3,true); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1302,'Axe_','Axe','Weapon','1hAxe',500,800,38,1,4,true,true,true,true,true,true,true,true,true,true,true,true,1,3,true); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1303,'Axe__','Axe','Weapon','1hAxe',500,800,38,1,true,true,true,true,true,true,true,true,true,true,true,true,1,3,true); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1304,'Orcish_Axe','Orcish Axe','Weapon','1hAxe',20,1500,75,1,true,true,true,true,true,true,true,true,true,true,true,true,3,3,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1301,'Axe','Axe','Weapon','1hAxe',500,800,38,1,3,true,true,true,true,true,true,true,true,true,true,1,3,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1302,'Axe_','Axe','Weapon','1hAxe',500,800,38,1,4,true,true,true,true,true,true,true,true,true,true,1,3,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1303,'Axe__','Axe','Weapon','1hAxe',500,800,38,1,true,true,true,true,true,true,true,true,true,true,1,3,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1304,'Orcish_Axe','Orcish Axe','Weapon','1hAxe',20,1500,75,1,true,true,true,true,true,true,true,true,true,true,3,3,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1305,'Cleaver','Cleaver','Weapon','1hAxe',20,1200,140,1,true,true,true,true,true,true,true,4,44,true,'bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus3 bAddMonsterDropItem,517,RC_Brute,3000;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1306,'War_Axe','War Axe','Weapon','1hAxe',20,4200,140,1,1,true,true,true,3,76,true,'bonus bDex,2; bonus bLuk,2; bonus bUnbreakableWeapon;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1307,'Windhawk','Windhawk','Weapon','1hAxe',18000,1500,115,1,true,true,true,true,true,true,true,true,true,true,2,14,true,'bonus bAtkEle,Ele_Wind; bonus bAspdRate,5; bonus bUnbreakableWeapon;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_novice`,`job_supernovice`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1308,'Golden_Axe','Golden Axe','Weapon','1hAxe',20,3000,170,1,true,true,true,4,45,true); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1309,'Orcish_Axe_','Orcish Axe','Weapon','1hAxe',20,1500,75,1,4,true,true,true,true,true,true,true,true,true,true,true,true,3,3,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1309,'Orcish_Axe_','Orcish Axe','Weapon','1hAxe',20,1500,75,1,4,true,true,true,true,true,true,true,true,true,true,3,3,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1310,'Krieger_Onehand_Axe1','Glorious Cleaver','Weapon','1hAxe',20,130,1,true,true,true,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus bAspdRate,5; } if(.@r>8) { bonus bAspdRate,5; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,50; bonus4 bAutoSpellOnSkill,"MC_MAMMONITE","NPC_CRITICALWOUND",2,200; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1311,'Vecer_Axe','Vecer Axe','Weapon','1hAxe',20,1500,140,1,2,true,true,true,true,true,true,true,true,true,3,50,true,'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; }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1312,'Orcish_Axe_C','Orcish Axe','Weapon','1hAxe',110,1,true,true,true,true,true,true,true,true,true,true,true,true,3,1,100,true,true,true,true,true,true,true,true,'bonus2 bAddSize,Size_All,70;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1313,'Tourist_Axe','Tourist Axe','Weapon','1hAxe',500,77,1,true,true,true,true,true,true,true,true,true,true,true,true,1,1,100,true,true,true,true,true,true,true,'bonus bStr,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1312,'Orcish_Axe_C','Orcish Axe','Weapon','1hAxe',110,1,true,true,true,true,true,true,true,true,true,true,3,1,100,true,true,true,true,true,true,true,true,'bonus2 bAddSize,Size_All,70;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1313,'Tourist_Axe','Tourist Axe','Weapon','1hAxe',500,77,1,true,true,true,true,true,true,true,true,true,true,1,1,100,true,true,true,true,true,true,true,'bonus bStr,2;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`script`) VALUES (1314,'F_Tomahawk_C','Tomahawk','Weapon','2hAxe',2,200,1,true,true,true,true,true,true,true,true,4,'bonus bAtkEle,Ele_Wind; skill "ITM_TOMAHAWK",1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (1315,'F_Right_Epsilon_C','Light Epsilon','Weapon','2hAxe',1,229,1,true,true,true,true,true,true,true,true,4,1,'bonus bAtkEle,Ele_Holy; bonus bStr,10; bonus2 bAddRace,RC_Demon,3; skill "AL_HEAL",3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_merchant`,`location_right_hand`,`weapon_level`,`equip_level_min`) VALUES (1316,'Adventure_Axe','Adventure Axe','Weapon','1hAxe',100,1,true,true,true,true,1,1); @@ -338,7 +338,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`we REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1324,'War_Axe_','War Axe','Weapon','1hAxe',20,4200,140,1,3,true,true,true,3,76,true,'bonus bDex,2; bonus bLuk,2;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_merchant`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1326,'Illusion_War_Axe','Illusion War Axe','Weapon','1hAxe',4200,180,1,2,true,true,true,true,4,120,true,'bonus bStr,2; bonus bDex,2; bonus bLuk,2; .@r = getrefine(); if (.@r >= 9) { .@val = 40; } else if (.@r >= 7) { .@val = 20; } bonus2 bSkillAtk,"NC_AXETORNADO",(100+.@val); bonus2 bSkillAtk,"NC_AXEBOOMERANG",(100+.@val); bonus2 bSkillAtk,"GN_CART_TORNADO",(75+.@val);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1333,'Golden_Wrench','Golden Wrench','Weapon','1hAxe',5500,220,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bAddClass,Class_all,5; bonus bBaseAtk,4*.@r; if (.@r>=11) .@val = 35; else if (.@r>=9) .@val = 20; bonus2 bSkillAtk,"NC_AXEBOOMERANG",.@val; bonus2 bSkillAtk,"NC_POWERSWING",.@val;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_crusader`,`job_gunslinger`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_monk`,`job_ninja`,`job_novice`,`job_priest`,`job_rebellion`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_summoner`,`job_supernovice`,`job_swordman`,`job_taekwon`,`job_thief`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1336,'Guardian_Knight_Axe','Guardian Knight Axe','Weapon','1hAxe',1500,210,1,2,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,170,true,'bonus bUnbreakableWeapon; bonus2 bAddClass,Class_All,5; .@r = getrefine(); bonus bLongAtkRate,.@r; if(.@r >= 9){ bonus2 bSkillAtk,"NC_POWERSWING",20; bonus2 bSkillAtk,"NC_AXEBOOMERANG",20; } if(.@r >= 11){ bonus2 bAddRace,RC_Undead,20; bonus2 bAddRace,RC_Angel,20; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1336,'Guardian_Knight_Axe','Guardian Knight Axe','Weapon','1hAxe',1500,210,1,2,true,true,true,true,true,4,170,true,'bonus bUnbreakableWeapon; bonus2 bAddClass,Class_All,5; .@r = getrefine(); bonus bLongAtkRate,.@r; if(.@r >= 9){ bonus2 bSkillAtk,"NC_POWERSWING",20; bonus2 bSkillAtk,"NC_AXEBOOMERANG",20; } if(.@r >= 11){ bonus2 bAddRace,RC_Undead,20; bonus2 bAddRace,RC_Angel,20; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1351,'Battle_Axe','Battle Axe','Weapon','2hAxe',5400,1500,80,1,3,true,true,true,true,true,true,true,true,1,3,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1352,'Battle_Axe_','Battle Axe','Weapon','2hAxe',5400,1500,80,1,4,true,true,true,true,true,true,true,true,1,3,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1353,'Battle_Axe__','Battle Axe','Weapon','2hAxe',5400,1500,80,1,true,true,true,true,true,true,true,true,1,3,true); @@ -372,16 +372,16 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`pr REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`) VALUES (1381,'N_Battle_Axe','Novice Battle Axe','Weapon','2hAxe',100,1,3,true,true,true,true,true,true,true,true,1,3); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1382,'Krieger_Twohand_Axe1','Glorious Two-Handed Axe','Weapon','2hAxe',20,220,1,true,true,true,true,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-3,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-3,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,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; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_merchant`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1383,'Holy_Celestial_Axe','Celestial Axe','Weapon','2hAxe',20,1500,200,1,true,true,true,true,true,4,60,true,'bonus2 bAddRace,RC_Undead,10; bonus3 bAutoSpell,"AL_BLESSING",5,5;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1384,'Veteran_Axe','Veteran Axe','Weapon','2hAxe',10000,3000,250,1,2,true,true,true,true,true,true,true,true,3,80,true,'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; bonus4 bAutoSpellOnSkill,"BS_HAMMERFALL","SM_MAGNUM",3,50;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_blacksmith`,`class_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1385,'Bradium_Stonehammer','Bradium Stone Hammer','Weapon','2hAxe',20,2700,210,1,true,true,true,true,4,75,true,'bonus3 bAddEffOnSkill,"BS_HAMMERFALL",Eff_Stun,500+(200*getrefine());'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_merchant`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1384,'Veteran_Axe','Veteran Axe','Weapon','2hAxe',10000,3000,250,1,2,true,true,true,true,true,3,80,true,'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; bonus4 bAutoSpellOnSkill,"BS_HAMMERFALL","SM_MAGNUM",3,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_blacksmith`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1385,'Bradium_Stonehammer','Bradium Stone Hammer','Weapon','2hAxe',20,2700,210,1,true,true,true,true,true,4,75,true,'bonus3 bAddEffOnSkill,"BS_HAMMERFALL",Eff_Stun,500+(200*getrefine());'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1386,'Doom_Slayer_I','Doom Slayer','Weapon','2hAxe',20,1,true,true,true,true,true,true,true,true,4,100,true,true,true,true,true,true,true,true,'bonus bAspdRate,-25; bonus bUseSPrate,100; if(readparam(bStr)>=95){ bonus bBaseAtk,400; bonus2 bAddEff,Eff_Stun,3000; bonus bBreakArmorRate,500; }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1387,'Giant_Axe','Giant Axe','Weapon','2hAxe',20,4000,330,1,1,true,true,true,true,true,true,true,true,3,50,true,'bonus2 bSkillAtk,"WS_CARTTERMINATION",15; if(readparam(bStr)>=95) { bonus bHit,10; bonus bAspdRate,3; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1387,'Giant_Axe','Giant Axe','Weapon','2hAxe',20,4000,330,1,1,true,true,true,true,true,true,true,true,true,true,3,50,true,'bonus2 bSkillAtk,"WS_CARTTERMINATION",15; if(readparam(bStr)>=95) { bonus bHit,10; bonus bAspdRate,3; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1388,'Two_Handed_Axe_C','Two-Handed Axe','Weapon','2hAxe',220,1,true,true,true,true,true,true,true,true,3,1,100,true,true,true,true,true,true,true,true,'bonus2 bAddSize,Size_All,40;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`script`) VALUES (1389,'E_Tomahawk_C','Tomahawk','Weapon','2hAxe',2,200,1,true,true,true,true,true,true,true,true,4,'bonus bAtkEle,Ele_Wind;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (1390,'E_Right_Epsilon_C','Light Epsilon','Weapon','2hAxe',1,229,1,true,true,true,true,true,true,true,true,4,1,'bonus bAtkEle,Ele_Holy; bonus bStr,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (1391,'P_Two_Handed_Axe1','Eden Two-Handed Axe I','Weapon','2hAxe',195,1,true,true,true,true,true,true,true,true,3,60,100,true,true,true,true,true,true,true); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`class_upper`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1392,'Ygnus_Stale','Ignus Steel','Weapon','2hAxe',56000,1900,250,1,1,true,true,true,true,true,true,true,true,true,true,4,95,true,'bonus bAtkEle,Ele_Fire; bonus bUnbreakableWeapon; bonus2 bAddEff,Eff_Burning,200; bonus2 bAddEff2,Eff_Burning,100;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`class_upper`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1393,'End_Sektura','End Sectora','Weapon','2hAxe',56000,1900,250,1,1,true,true,true,true,true,true,true,true,true,true,4,95,true,'bonus bAtkEle,Ele_Water; bonus bUnbreakableWeapon; bonus2 bAddEff,Eff_Freeze,300; bonus2 bAddEff2,Eff_Freeze,300;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1392,'Ygnus_Stale','Ignus Steel','Weapon','2hAxe',56000,1900,250,1,1,true,true,true,true,true,true,true,true,true,true,4,95,true,'bonus bAtkEle,Ele_Fire; bonus bUnbreakableWeapon; bonus2 bAddEff,Eff_Burning,200; bonus2 bAddEff2,Eff_Burning,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1393,'End_Sektura','End Sectora','Weapon','2hAxe',56000,1900,250,1,1,true,true,true,true,true,true,true,true,true,true,4,95,true,'bonus bAtkEle,Ele_Water; bonus bUnbreakableWeapon; bonus2 bAddEff,Eff_Freeze,300; bonus2 bAddEff2,Eff_Freeze,300;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (1394,'Upg_Two_Handed_Axe','Upg Two Handed Axe','Weapon','2hAxe',20,2000,110,1,1,true,true,true,true,true,true,true,true,3,1,true,100,true,'bonus bBaseAtk,(getrefine()*14); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*10); bonus bUnbreakableWeapon;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1395,'Velum_Buster','Vellum Buster','Weapon','2hAxe',20,2500,50,1,true,true,true,true,true,true,true,true,4,95,true,'bonus bUnbreakableWeapon; bonus3 bSPVanishRaceRate,RC_Player_Human,1000,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1396,'Velum_Guillotine','Vellum Guillotine','Weapon','2hAxe',20,5500,300,1,true,true,true,true,true,true,true,true,4,95,true,'bonus bUnbreakableWeapon; bonus2 bAddRace,RC_Player_Human,40; bonus2 bIgnoreDefRaceRate,RC_Player_Human,30; .@r = getrefine(); if(.@r>=6) { bonus2 bSkillAtk,"NC_AXEBOOMERANG",80; bonus2 bSkillAtk,"NC_POWERSWING",80; } if(.@r>=9) { bonus2 bAddRace,RC_Player_Human,60; }'); @@ -421,12 +421,12 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`pr REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1430,'Pike_C','Pike','Weapon','1hSpear',74,3,true,true,true,true,1,1,100,true,true,true,true,true,true,true,true,'bonus2 bAddSize,Size_All,70;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (1431,'F_Pole_Axe_C','Pole Axe','Weapon','1hSpear',1,4800,195,3,true,true,true,true,3,1,'bonus bStr,1; bonus bInt,2; bonus bDex,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (1432,'E_Pole_Axe_C','Pole Axe','Weapon','1hSpear',1,4800,195,3,true,true,true,true,3,1,'bonus bStr,1; bonus bInt,2; bonus bDex,1;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1433,'Imperial_Spear','Imperial Spear','Weapon','1hSpear',20,1800,180,40,3,1,true,true,true,true,3,102,true,'.@r = getrefine(); bonus2 bSkillAtk,"LG_CANNONSPEAR",20+(.@r/2*3); bonus2 bSkillAtk,"LG_BANISHINGPOINT",20+(.@r/2*3);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_crusader`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1433,'Imperial_Spear','Imperial Spear','Weapon','1hSpear',20,1800,180,40,3,1,true,true,true,true,true,3,102,true,'.@r = getrefine(); bonus2 bSkillAtk,"LG_CANNONSPEAR",20+(.@r/2*3); bonus2 bSkillAtk,"LG_BANISHINGPOINT",20+(.@r/2*3);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (1434,'P_Sphere1','Eden Spear I','Weapon','1hSpear',165,3,true,true,true,true,3,60,100,true,true,true,true,true,true,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1435,'Cannon_Spear','Cannon Spear','Weapon','1hSpear',56000,1600,180,3,1,true,true,true,true,true,4,100,true,'bonus bMaxSP,-100; bonus2 bSkillAtk,"LG_CANNONSPEAR",10; bonus2 bSkillAtk,"LG_CANNONSPEAR",(getrefine()/3);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1436,'Velum_Spear','Vellum Spear','Weapon','1hSpear',20,850,150,3,true,true,true,true,4,95,true,'bonus2 bAddRace,RC_Player_Human,60; .@r = getrefine(); if(.@r>=6) { bonus2 bSkillAtk,"RK_HUNDREDSPEAR",80; bonus2 bSkillAtk,"LG_PINPOINTATTACK",80; } if(.@r>=9) { bonus2 bAddRace,RC_Player_Human,30; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1437,'TE_Woe_Pike','TE Woe Pike','Weapon','1hSpear',100,3,true,true,true,true,3,40,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Curse,1000;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (1438,'Thanos_Spear','Thanos Spear','Weapon','1hSpear',10,3000,150,100,3,1,true,true,true,true,true,true,true,4,120,true,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000;','heal -1000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (1438,'Thanos_Spear','Thanos Spear','Weapon','1hSpear',10,3000,150,100,3,1,true,true,true,true,4,120,true,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000;','heal -1000,0;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1439,'Half_BF_Spear1','Half BF Spear1','Weapon','1hSpear',20,60,3,true,true,true,true,3,80,true,'bonus bStr,2; bonus2 bAddRace,RC_DemiHuman,45; bonus2 bAddRace,RC_Player_Human,45; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon; if(BaseJob==Job_Crusader) bonus bAspdRate,20;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1440,'Battle_Hook_','Battle Hook','Weapon','1hSpear',20,900,140,3,3,true,true,true,true,true,true,4,65,true,'bonus2 bAddEff,Eff_Stun,500; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; skill "KN_PIERCE",3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1441,'Ru_Blue_Spear','Blue Spear','Weapon','1hSpear',10,1200,180,3,1,true,true,true,true,true,3,100,true,'bonus bStr,5; bonus bAgi,5;'); @@ -434,7 +434,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`we REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1443,'Crimson_Spear','Crimson Spear','Weapon','1hSpear',20,900,90,3,2,true,true,true,true,3,70,true,'.@r = getrefine(); bonus bBaseAtk,(.@r<=15?pow(.@r,2):225); bonus bBaseAtk,((max(0,BaseLevel-70)/10)*5);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1445,'[Rental]_Hunting_Spear','[Rental] Hunting Spear','Weapon','1hSpear',20,140,3,2,true,true,true,true,3,50,true,'.@r = getrefine(); if(.@r >= 7){ bonus2 bAddRace,RC_Insect,10; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddEle,Ele_Water,10; bonus2 bAddEle,Ele_Earth,10; } if(.@r >= 9){ bonus2 bAddRace,RC_Insect,15; bonus2 bAddRace,RC_DemiHuman,15; bonus2 bAddEle,Ele_Water,15; bonus2 bAddEle,Ele_Earth,15; } bonus bAtkEle,Ele_Fire;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1446,'Requiem_Spear','Requiem Spear','Weapon','1hSpear',20,1000,130,3,true,true,true,4,100,true,'.@r = getrefine(); .@b = 40; bonus bUnbreakableWeapon; if(.@r>=5){ .@b += (.@r-5)*15+20; } bonus2 bAddRace2,RC2_BioLab,.@b;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`class_upper`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1447,'Poison_Forged_Spear','Poison Forged Spear','Weapon','1hSpear',500,150,3,3,true,true,true,true,true,true,true,4,100,true,'bonus bAtkEle,Ele_Poison; bonus bCritical,10; skill "TF_DOUBLE",5; bonus bDoubleRate,25; bonus2 bAddEff,Eff_Poison,1000; bonus2 bAddEff2,Eff_Poison,300;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1447,'Poison_Forged_Spear','Poison Forged Spear','Weapon','1hSpear',500,150,3,3,true,true,true,true,true,true,4,100,true,'bonus bAtkEle,Ele_Poison; bonus bCritical,10; skill "TF_DOUBLE",5; bonus bDoubleRate,25; bonus2 bAddEff,Eff_Poison,1000; bonus2 bAddEff2,Eff_Poison,300;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1448,'Warrior\'s_Spear','Warrior\'s Spear','Weapon','1hSpear',2000,140,3,3,true,true,true,true,3,50,true,'.@r = getrefine(); if(.@r >= 7){ bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Plant,10; bonus2 bAddEle,Ele_Wind,10; bonus2 bAddEle,Ele_Earth,10; } if(.@r >= 9){ bonus2 bAddRace,RC_Brute,15; bonus2 bAddRace,RC_Plant,15; bonus2 bAddEle,Ele_Wind,15; bonus2 bAddEle,Ele_Earth,15; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1449,'Gelerdria_','Gelerdria','Weapon','1hSpear',20,700,145,3,3,true,true,true,true,4,48,true,'bonus bAtkEle,Ele_Earth; bonus bMaxHP,800; bonus bMaxSP,-50;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1450,'Lance_of_Vicious_Mind','Lance of Vicious Mind','Weapon','2hSpear',20,2250,225,3,1,true,true,true,true,true,4,160,true,'bonus bAtk,pow(min(getrefine(),15),2);'); @@ -476,14 +476,14 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`pr REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1486,'Krieger_Twohand_Spear1','Glorious Lance','Weapon','2hSpear',20,220,3,true,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,70; bonus2 bAddRace,RC_Player_Human,70; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,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; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1487,'Lance_C','Lance','Weapon','2hSpear',220,3,true,true,true,true,true,3,1,100,true,true,true,true,true,true,true,true,'bonus2 bAddSize,Size_All,50;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_crusader`,`job_knight`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1488,'Ahlspiess_C','Ahlspiess','Weapon','2hSpear',20,135,3,true,true,true,true,4,1,true,100,true,true,true,true,true,true,true,true,'bonus bIgnoreDefClass,Class_Normal; bonus bIgnoreDefClass,Class_Boss; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; bonus3 bAutoSpell,"KN_PIERCE",5,30;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1489,'Spearfish_','Marlin','Weapon','2hSpear',220,3,true,true,true,true,true,true,true,1,50,100,true,true,true,true,true,true,true,true,'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; }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_knight`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (1490,'Giant_Lance','Gigantic Lance','Weapon','2hSpear',20,20000,20,3,true,true,true,4,140,true,'bonus bAspd,-10; bonus2 bSkillCooldown,"LK_SPIRALPIERCE",20000; if(readparam(bStr)>=120){ bonus bBaseAtk,300; }','heal 0,-600;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1489,'Spearfish_','Marlin','Weapon','2hSpear',220,3,true,true,true,true,true,1,50,100,true,true,true,true,true,true,true,true,'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; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (1490,'Giant_Lance','Gigantic Lance','Weapon','2hSpear',20,20000,20,3,true,true,true,true,true,true,4,140,true,'bonus bAspd,-10; bonus2 bSkillCooldown,"LK_SPIRALPIERCE",20000; if(readparam(bStr)>=120){ bonus bBaseAtk,300; }','heal 0,-600;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (1491,'Upg_Lance','Upg Lance','Weapon','2hSpear',20,1500,105,3,1,true,true,true,true,true,3,1,true,100,true,'bonus bBaseAtk,(getrefine()*12); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*10);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1492,'Velum_Glaive','Vellum Glaive','Weapon','2hSpear',20,4500,250,3,true,true,true,true,true,4,95,true,'bonus2 bAddRace,RC_Player_Human,80; bonus2 bAddRace,RC_Player_Doram,80; .@r = getrefine(); if(.@r>=6) { bonus2 bSkillAtk,"LK_SPIRALPIERCE",100; bonus2 bSkillAtk,"LG_OVERBRAND",50; } if(.@r>=9) { bonus bShortWeaponDamageReturn,20; bonus bMagicDamageReturn,20; bonus5 bAutoSpellWhenHit,"NPC_MAGICMIRROR",7,300,BF_MAGIC,0; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1493,'Metal_Lance','Metal Lance','Weapon','2hSpear',20,100,3,1,true,true,true,true,true,3,1,true,100,true,true,true,true,true,true,true,'bonus bBaseAtk,(getrefine()*6); .@i = min(BaseLevel/10,12); if(.@i>2) bonus bBaseAtk,((.@i-2)*5);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1494,'Undine_Spear','Spear Of Odin','Weapon','2hSpear',50000,3800,190,3,3,true,true,true,true,true,4,105,true,'bonus bAtkEle,Ele_Water; bonus bMaxHPrate,getrefine();'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1495,'TE_Woe_Lance','TE Woe Lance','Weapon','2hSpear',150,3,true,true,true,true,true,3,40,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Blind,1000;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (1496,'Thanos_Long_Spear','Thanos Long Spear','Weapon','2hSpear',10,3750,250,50,3,1,true,true,true,true,true,true,true,true,4,120,true,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000;','heal -1000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (1496,'Thanos_Long_Spear','Thanos Long Spear','Weapon','2hSpear',10,3750,250,50,3,1,true,true,true,true,true,4,120,true,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000;','heal -1000,0;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1497,'Hell_Fire_','Hellfire','Weapon','2hSpear',20,3500,200,3,3,true,true,true,true,true,4,48,true,'bonus bAtkEle,Ele_Fire; bonus3 bAutoSpell,"MG_FIREBALL",5,100; bonus bStr,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1498,'Crimson_Lance','Crimson Lance','Weapon','2hSpear',20,1750,175,1,2,true,true,true,true,true,3,70,true,'.@r = getrefine(); bonus bBaseAtk,pow(.@r,2); bonus bBaseAtk,(max(0,BaseLevel-70)/10)*5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_crusader`,`job_knight`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1499,'Requiem_Lance','Requiem Lance','Weapon','2hSpear',20,1500,220,3,true,true,true,true,4,100,true,'.@r = getrefine(); .@b = 40; .@c = 5; bonus bUnbreakableWeapon; if(.@r>=5){ .@b += (.@r-5)*15+30; .@c += (.@r-5); } bonus2 bAddRace2,RC2_BioLab,.@b; bonus2 bSubRace2,RC2_BioLab,.@c;'); @@ -533,7 +533,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`pr REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1544,'Lunakaligo','Lunakaligo','Weapon','Mace',20,700,110,1,3,true,true,true,true,true,true,3,50,true,'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; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`) VALUES (1545,'N_Mace','Novice Mace','Weapon','Mace',57,1,3,true,true,true,true,true,true,true,true,true,true,true,true,1,2); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1546,'Krieger_Onehand_Mace1','Glorious Morning Star','Weapon','Mace',20,130,1,true,true,true,true,true,true,true,true,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus bAspdRate,5; } if(.@r>8) { bonus2 bAddEff,Eff_Stun,2000; bonus bAspdRate,5; }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1547,'Mace_Of_Madness','Mace Of Madness','Weapon','Mace',20,150,1,true,true,true,true,true,true,true,true,true,true,3,100,true,true,true,true,true,true,true,true,'bonus2 bSkillAtk,"MC_CARTREVOLUTION",25; bonus bStr,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1547,'Mace_Of_Madness','Mace Of Madness','Weapon','Mace',20,150,1,true,true,true,true,true,true,true,true,true,3,100,true,true,true,true,true,true,true,true,'bonus2 bSkillAtk,"MC_CARTREVOLUTION",25; bonus bStr,2;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1548,'Veteran_Hammer','Veteran Hammer','Weapon','Mace',10000,1800,160,1,2,true,true,true,true,3,80,true,'bonus bHealPower,getskilllv("AL_DP"); bonus bCriticalRate,getskilllv("PR_MACEMASTERY")*2; bonus bInt,1; bonus bLuk,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1549,'Pilebuncker','Pile Bunker','Weapon','Mace',10000,3500,450,1,true,true,true,true,true,3,99,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1550,'Book','Book','Weapon','Book',30000,600,85,1,3,true,true,true,true,2,14,true); @@ -570,7 +570,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`at REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (1581,'F_Diary_Of_Great_Sage_C','Diary Of Great Sage','Weapon','Book',1,135,1,2,true,true,true,true,3,1,'bonus bMatkRate,20; bonus bAspdRate,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`) VALUES (1582,'E_Diary_Of_Great_Sage_C','Diary Of Great Sage','Weapon','Book',1,135,1,2,true,true,true,true,3,1); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`magic_attack`,`range`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (1583,'P_Dic1','Eden Book I','Weapon','Book',135,110,1,true,true,true,true,3,60,100,true,true,true,true,true,true,true); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_sage`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1584,'Chilly_Spell_Book','Cold Magic Book','Weapon','Book',56000,1000,100,160,1,2,true,true,4,100,true,'bonus bAtkEle,Ele_Water; bonus bUnbreakableWeapon; 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);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1584,'Chilly_Spell_Book','Cold Magic Book','Weapon','Book',56000,1000,100,160,1,2,true,true,true,true,true,4,100,true,'bonus bAtkEle,Ele_Water; bonus bUnbreakableWeapon; 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);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (1585,'Upg_Book','Upg Book','Weapon','Book',20,600,45,20,1,1,true,true,true,true,3,1,true,100,true,'.@r = getrefine(); bonus bBaseAtk,(.@r*10); bonus bMatk,(.@r*5); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*5);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1586,'Velum_Bible','Vellum Bible','Weapon','Book',20,600,110,125,1,true,true,true,true,4,95,true,'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; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1587,'Velum_Encyclopedia','Vellum Great Encyclopedia','Weapon','Book',20,1000,130,1,true,true,true,true,4,95,true,'.@r = getrefine(); bonus2 bAddRace,RC_Player_Human,80+.@r; bonus2 bIgnoreDefRaceRate,RC_Player_Human,30; if(.@r>8) { autobonus "{ bonus bBaseAtk,200; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; }'); @@ -634,29 +634,29 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`pr REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1645,'Lich_Bone_Wand_M','Lich\'s Bone Wand','Weapon','Staff',20,800,60,170,1,2,true,true,true,true,true,true,true,true,true,3,70,true,100,true,true,true,true,true,true,true,'bonus bInt,1; bonus bDex,1; bonus bAtkEle,Ele_Undead; bonus bMatkRate,20; .@r = getrefine(); bonus3 bAutoSpellWhenHit,"NPC_WIDECURSE",5,10+.@r; if(.@r>=9){ bonus bMatkRate,3; bonus bMaxSP,300; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_mage`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1646,'La\'cryma_Stick','La\'cryma Stick','Weapon','Staff',20,500,30,180,1,2,true,true,true,true,true,true,3,50,true,'.@r = getrefine(); bonus bInt,4; bonus bMdef,.@r; bonus2 bSkillAtk,"WZ_STORMGUST",.@r; if (.@r > 9) bonus2 bVariableCastrate,"WZ_STORMGUST",-8;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1647,'Croce_Staff','Croce Staff','Weapon','Staff',20,500,30,175,1,1,true,true,true,true,true,true,3,50,true,'bonus bAtkEle,Ele_Holy; bonus bInt,4; bonus4 bAutoSpellOnSkill,"AL_HEAL","AL_BLESSING",max(getskilllv("AL_BLESSING"),1),20;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1648,'Staff_Of_Bordeaux','Staff Of Bordeaux','Weapon','Staff',20,500,30,170,1,true,true,true,true,true,4,50,true,'bonus bInt,2; bonus bDex,1; if(getskilllv("SA_DRAGONOLOGY") == 5) { bonus bUseSPrate,-15; bonus bInt,3; }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_novice`,`job_priest`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1649,'Rafini_Staff','Laphine Staff','Weapon','Staff',20,500,30,180,1,true,true,true,true,true,true,true,true,true,true,3,100,true,'bonus bFixedCastRate,-getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_mage`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1648,'Staff_Of_Bordeaux','Staff Of Bordeaux','Weapon','Staff',20,500,30,170,1,true,true,true,true,true,true,4,50,true,'bonus bInt,2; bonus bDex,1; if(getskilllv("SA_DRAGONOLOGY") == 5) { bonus bUseSPrate,-15; bonus bInt,3; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_monk`,`job_priest`,`job_sage`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1649,'Rafini_Staff','Laphine Staff','Weapon','Staff',20,500,30,180,1,true,true,true,true,true,true,true,true,3,100,true,'bonus bFixedCastRate,-getrefine();'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1650,'P_Staff1','Eden Staff I','Weapon','Staff',60,125,1,true,true,true,true,true,true,true,true,2,26,100,true,true,true,true,true,true,true,'bonus bInt,2;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1651,'P_Staff2','Eden Staff II','Weapon','Staff',60,150,1,true,true,true,true,true,true,true,true,2,40,100,true,true,true,true,true,true,true,'bonus bInt,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_novice`,`job_priest`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1652,'Tourist_Staff','Tourist Staff','Weapon','Staff',500,35,1,true,true,true,true,true,true,true,true,true,true,1,1,100,true,true,true,true,true,true,true,'bonus bMatkRate,15; bonus bInt,2; bonus bAgi,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1653,'Staff_Of_Healing_C','Staff of Healing','Weapon','Staff',20,10,100,1,true,true,true,true,3,1,100,true,true,true,true,true,true,true,true,'bonus bAtkEle,Ele_Holy; bonus bHealPower,18;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_novice`,`job_priest`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (1654,'Mental_Stick','Mental Stick','Weapon','Staff',20,500,40,170,1,1,true,true,true,true,true,true,true,true,true,true,3,102,true,'.@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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (1654,'Mental_Stick','Mental Stick','Weapon','Staff',20,500,40,170,1,1,true,true,true,true,true,3,102,true,'.@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;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (1655,'Adventure_Staff','Adventure Staff','Weapon','Staff',60,1,true,true,true,true,true,1,1,'bonus bUnbreakableWeapon;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1656,'Academy_Wand','Academy Wand','Weapon','Staff',600,60,1,1,true,true,true,true,true,1,1,true,'bonus bUnbreakableWeapon;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1657,'Wand_Of_Affection','Wand Of Affection','Weapon','Staff',20,500,30,160,1,2,true,true,3,100,true,'bonus bInt,2; bonus bAtkEle,Ele_Holy; bonus bHealPower,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1657,'Wand_Of_Affection','Wand Of Affection','Weapon','Staff',20,500,30,160,1,2,true,true,true,true,true,3,100,true,'bonus bInt,2; bonus bAtkEle,Ele_Holy; bonus bHealPower,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1658,'P_Staff3','Eden Staff III','Weapon','Staff',60,170,1,true,true,true,true,true,true,true,true,3,60,100,true,true,true,true,true,true,true,'bonus bInt,4;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1659,'Recovery_Light','Light of Recovery','Weapon','Staff',56000,400,30,160,1,1,true,true,4,110,true,'bonus bAtkEle,Ele_Holy; bonus bUnbreakableWeapon; .@r = getrefine(); bonus bHealPower,(.@r*6); bonus2 bSkillUseSP,"AL_HEAL",-(.@r*10); bonus2 bSkillUseSP,"AB_CHEAL",-(.@r*12); bonus2 bSkillUseSP,"AB_HIGHNESSHEAL",-(.@r*14);'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1660,'Wand_Of_Affection2','Empowered Wand Of Affection','Weapon','Staff',20,500,30,180,1,1,true,true,3,130,true,'bonus bAtkEle,Ele_Holy; bonus bInt,4; bonus bHealPower,20;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1661,'Mental_Destroyer','Mental Destroyer','Weapon','Staff',20,1400,100,50,1,true,true,4,95,true,'.@r = getrefine(); bonus bInt,10; bonus bUnbreakableWeapon; bonus bUseSPrate,100; bonus bMdef,20; bonus3 bSPVanishRate,1000,5+(.@r>5?3:0),BF_WEAPON|BF_MAGIC|BF_MISC;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1659,'Recovery_Light','Light of Recovery','Weapon','Staff',56000,400,30,160,1,1,true,true,true,true,true,4,110,true,'bonus bAtkEle,Ele_Holy; bonus bUnbreakableWeapon; .@r = getrefine(); bonus bHealPower,(.@r*6); bonus2 bSkillUseSP,"AL_HEAL",-(.@r*10); bonus2 bSkillUseSP,"AB_CHEAL",-(.@r*12); bonus2 bSkillUseSP,"AB_HIGHNESSHEAL",-(.@r*14);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1660,'Wand_Of_Affection2','Empowered Wand Of Affection','Weapon','Staff',20,500,30,180,1,1,true,true,true,true,true,3,130,true,'bonus bAtkEle,Ele_Holy; bonus bInt,4; bonus bHealPower,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1661,'Mental_Destroyer','Mental Destroyer','Weapon','Staff',20,1400,100,50,1,true,true,true,true,4,95,true,'.@r = getrefine(); bonus bInt,10; bonus bUnbreakableWeapon; bonus bUseSPrate,100; bonus bMdef,20; bonus3 bSPVanishRate,1000,5+(.@r>5?3:0),BF_WEAPON|BF_MAGIC|BF_MISC;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1662,'Bone_Wand_','Evil Bone Wand','Weapon','Staff',20,700,40,110,1,2,true,true,true,true,true,true,true,true,3,24,true,'bonus bInt,4; bonus bAtkEle,Ele_Undead;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1663,'Staff_Of_Bordeaux_','Staff Of Bordeaux','Weapon','Staff',20,500,30,180,1,2,true,true,true,true,true,4,50,true,'bonus bInt,2; bonus bDex,1; if(getskilllv("SA_DRAGONOLOGY") == 5) { bonus bUseSPrate,-15; bonus bInt,3; }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`slots`,`job_acolyte`,`job_mage`,`class_upper`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1664,'Thorn_Staff_','Thorn Staff of Darkness','Weapon','Mace',10,700,60,160,1,true,true,true,true,true,true,4,75,true,'bonus bInt,3; bonus bDex,3; .@r = getrefine(); bonus2 bIgnoreMdefClassRate,Class_Normal,.@r; bonus2 bIgnoreMdefClassRate,Class_Boss,.@r; bonus bDelayrate,-.@r*3/2; bonus bAtkEle,Ele_Dark;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1664,'Thorn_Staff_','Thorn Staff of Darkness','Weapon','Mace',10,700,60,160,1,true,true,true,true,true,true,true,true,true,4,75,true,'bonus bInt,3; bonus bDex,3; .@r = getrefine(); bonus2 bIgnoreMdefClassRate,Class_Normal,.@r; bonus2 bIgnoreMdefClassRate,Class_Boss,.@r; bonus bDelayrate,-.@r*3/2; bonus bAtkEle,Ele_Dark;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1665,'Piercing_Staff_','Piercing Staff','Weapon','Staff',20,500,80,145,1,2,true,true,true,true,true,true,true,true,true,3,70,true,'.@r = getrefine(); bonus bInt,4; bonus2 bIgnoreMdefClassRate,Class_Normal,10+.@r; bonus2 bIgnoreMdefClassRate,Class_Boss,10+.@r;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1666,'Healing_Staff_','Healing Staff','Weapon','Staff',20,400,10,105,1,2,true,true,true,true,3,55,true,'bonus bAtkEle,Ele_Holy; bonus bHealPower,(getrefine()*3/2);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_novice`,`job_priest`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1667,'TE_Woe_Staff','TE Woe Staff','Weapon','Staff',50,100,1,true,true,true,true,true,true,true,true,true,true,3,40,true,100,true,true,true,true,true,true,true,'bonus2 bMagicAddRace,RC_Player_Human,10; bonus3 bAddEff,Eff_Blind,1000,ATF_MAGIC; bonus bHPRecovRate,5; bonus bSPRecovRate,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`slots`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1668,'Sword_Stick','Sword Stick','Weapon','Staff',10,500,120,150,2,true,true,true,true,true,4,80,true,'bonus bAspdRate,10;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (1669,'Thanos_Staff','Thanos Staff','Weapon','Staff',10,1000,100,200,1,1,true,true,true,true,true,true,true,true,true,true,4,120,true,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus bHealPower,15; bonus bMagicHPGainValue,500; bonus bMagicSPGainValue,50; bonus2 bHPLossRate,100,10000;','heal -1000,0;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_novice`,`job_priest`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (1670,'RWC_Memory_Staff','RWC Memory Staff','Weapon','Staff',20,500,25,30,1,1,true,true,true,true,true,true,true,true,true,true,3,1,true,100,true,'.@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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_monk`,`job_priest`,`job_sage`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (1669,'Thanos_Staff','Thanos Staff','Weapon','Staff',10,1000,100,200,1,1,true,true,true,true,true,true,true,true,4,120,true,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus bHealPower,15; bonus bMagicHPGainValue,500; bonus bMagicSPGainValue,50; bonus2 bHPLossRate,100,10000;','heal -1000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (1670,'RWC_Memory_Staff','RWC Memory Staff','Weapon','Staff',20,500,25,30,1,1,true,true,true,true,true,true,true,true,3,1,true,100,true,'.@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;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_novice`,`job_priest`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1671,'Devil_Won_Staff','Evil Slayer Vanquisher Staff','Weapon','Staff',800,30,155,1,true,true,true,true,true,true,true,true,true,true,3,100,true,'bonus2 bAddRace,RC_Undead,10; bonus2 bAddRace,RC_Demon,10; bonus2 bMagicAddRace,RC_Undead,10; bonus2 bMagicAddRace,RC_Demon,10; .@r = getrefine(); if(.@r>=9) { .@dmg = 5; if(.@r>=12) { .@dmg += 7; } bonus bMatkRate,.@dmg; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1673,'Half_BF_Staff4','Half BF Staff4','Weapon','Staff',20,70,125,1,true,true,true,true,true,true,true,true,3,80,true,'bonus bInt,3; bonus bDex,2; bonus bDelayRate,-10; bonus2 bSPLossRate,5,12000; bonus bUnbreakableWeapon;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1674,'Half_BF_Staff2','Half BF Staff2','Weapon','Staff',20,70,125,1,true,true,true,true,true,true,true,true,3,80,true,'bonus bInt,3; bonus bDex,3; bonus2 bMagicAddRace,RC_DemiHuman,10; bonus2 bMagicAddRace,RC_Player_Human,10; bonus3 bAddEff,Eff_Stun,200,ATF_SKILL; bonus bUnbreakableWeapon;'); @@ -666,23 +666,23 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`pr REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1678,'Ru_Gold_Wand','Ru Gold Wand','Weapon','Staff',50,1,2,true,true,true,true,true,3,120,true,'bonus bDex,8; bonus bInt,8;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_novice`,`job_priest`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1679,'Rafini_Staff_S','Laphine Staff','Weapon','Staff',20,500,30,180,1,2,true,true,true,true,true,true,true,true,true,true,3,100,true,'bonus bFixedCastRate,-getrefine();'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_novice`,`job_priest`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1680,'Crimson_One-Handed_Staff','Crimson One-Handed Staff','Weapon','Staff',10,600,60,70,1,2,true,true,true,true,true,true,true,true,true,true,3,70,true,'.@r = getrefine(); bonus bInt,4; bonus bMatk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bUnbreakableWeapon;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (1681,'Short_Foxtail_Staff','Short Foxtail Staff','Weapon','Staff',20,30,1,true,true,true,true,true,1,1,true,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_summoner`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (1681,'Short_Foxtail_Staff','Short Foxtail Staff','Weapon','Staff',20,30,1,true,true,1,1,true,100,true,true,true,true,true,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1682,'Shadow_Staff','Shadow Staff','Weapon','Staff',600,70,130,1,2,true,true,true,true,true,4,90,true,'.@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; }";'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1683,'Enriched_Foxtail_Staff','Enriched Foxtail Staff','Weapon','Staff',20,200,50,70,1,1,true,true,true,true,true,2,12,true,'bonus bMaxSP,50;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1684,'Long_Foxtail_Staff','Long Foxtail Staff','Weapon','Staff',20,200,50,2,1,true,true,true,true,true,2,12,true,'bonus bLongAtkRate,5; bonus bMaxHP,200;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1685,'Dragonfly_Sitting_Foxtail_Staff','Dragonfly Sitting Foxtail Staff','Weapon','Staff',20,300,70,100,1,1,true,true,true,true,true,2,20,true,'bonus bInt,1; bonus bMaxHP,100; bonus bMaxSP,150;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1686,'Large_Foxtail_Staff','Large Foxtail Staff','Weapon','Staff',20,300,70,1,1,true,true,true,true,true,2,20,true,'bonus bLongAtkRate,8; bonus bDex,1; bonus bMaxHP,200; bonus bMaxSP,100;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1687,'Beginner_Foxtail_Staff','Beginner Foxtail Staff','Weapon','Staff',20,100,40,15,1,1,true,true,true,true,true,1,3,true,100,true,true,true,true,true,true,'bonus bMaxHP,100;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1690,'Mysterious_Foxtail_Staff','Mysterious Foxtail Staff','Weapon','Staff',20,400,80,180,1,3,true,true,true,true,true,2,60,true,'.@r = getrefine(); bonus bMaxSP,10*(.@r/3)+50; bonus bMatk,10*(.@r/3);'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1691,'Strange_God_Foxtail_Staff','Strange God Foxtail Staff','Weapon','Staff',20,500,100,240,1,2,true,true,true,true,true,3,100,true,'bonus bMaxSP,100; .@r = getrefine(); bonus bMatkRate,2*(.@r/3); bonus bMaxSPrate,.@r/3; if(.@r>=7){ .@r = min(.@r,10)-7; bonus bWeaponAtkRate,(20*.@r)+40; bonus bWeaponMatkRate,(20*.@r)+40; } bonus bUnbreakableWeapon;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1692,'Magical_Foxtail_Staff','Magical Foxtail Staff','Weapon','Staff',20,600,120,260,1,2,true,true,true,true,true,3,140,true,'bonus bMaxSP,100; .@r = getrefine(); bonus bMatkRate,2*(.@r/3); bonus bMaxSPrate,.@r/3; if(.@r>=7){ .@r = min(.@r,10)-7; bonus bWeaponAtkRate,(20*.@r)+40; bonus bWeaponMatkRate,(20*.@r)+40; }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1693,'Magical_Yellow_Foxtail_Staff','Magical Yellow Foxtail Staff','Weapon','Staff',20,700,140,280,1,1,true,true,true,true,true,4,175,true,'.@r = getrefine(); bonus bMatkRate,3*(.@r/2); bonus4 bAutoSpellOnSkill,"SU_FRESHSHRIMP","SU_ARCLOUSEDASH",max(1,getskilllv("SU_ARCLOUSEDASH")),200; bonus4 bAutoSpellOnSkill,"SU_SV_STEMSPEAR","SU_FRESHSHRIMP",max(1,getskilllv("SU_FRESHSHRIMP")),200; if(.@r>=7){ .@r = min(.@r,10)-7; bonus bWeaponAtkRate,(20*.@r)+40; bonus bWeaponMatkRate,(20*.@r)+40; }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1694,'Foxtail_Model','Foxtail Model','Weapon','Staff',20,300,150,1,3,true,true,true,true,true,2,60,true,'bonus bLongAtkRate,8; bonus bMaxHP,100; .@r = getrefine(); bonus bDex,(.@r/3)*2; bonus bMaxSP,(.@r/3)*10;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1695,'Delicate_Foxtail_Model','Delicate Foxtail Model','Weapon','Staff',20,300,195,1,2,true,true,true,true,true,3,100,true,'bonus bLongAtkRate,8; bonus bMaxHP,200; .@r = getrefine(); bonus bDex,(.@r/3)*3; bonus bMaxSP,(.@r/3)*15; if(.@r>=7){ .@r = min(.@r,10)-7; bonus bWeaponAtkRate,(20*.@r)+40; bonus bWeaponMatkRate,(20*.@r)+40; }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1696,'Exquisite_Foxtail_Model','Exquisite Foxtail Model','Weapon','Staff',20,300,240,1,2,true,true,true,true,true,3,140,true,'bonus bLongAtkRate,8; bonus bMaxHPrate,5; .@r = getrefine(); bonus bDex,(.@r/2)*3; bonus bMaxSP,(.@r/2)*15; if(.@r>=7){ .@r = min(.@r,10)-7; bonus bWeaponAtkRate,(20*.@r)+40; bonus bWeaponMatkRate,(20*.@r)+40; }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1697,'Exquisite_Yellow_Foxtail_Model','Exquisite Yellow Foxtail Model','Weapon','Staff',20,300,270,1,1,true,true,true,true,true,4,175,true,'bonus bLongAtkRate,9; bonus bMaxHPrate,7; .@r = getrefine(); bonus bLongAtkRate,.@r/2; bonus bMaxSP,(.@r/2)*20; bonus4 bAutoSpellOnSkill,"SU_PICKYPECK","SU_FRESHSHRIMP",max(1,getskilllv("SU_FRESHSHRIMP")),200; if(.@r>=7){ .@r = min(.@r,10)-7; bonus bWeaponAtkRate,(20*.@r)+40; bonus bWeaponMatkRate,(20*.@r)+40; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_summoner`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1683,'Enriched_Foxtail_Staff','Enriched Foxtail Staff','Weapon','Staff',20,200,50,70,1,1,true,true,2,12,true,'bonus bMaxSP,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_summoner`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1684,'Long_Foxtail_Staff','Long Foxtail Staff','Weapon','Staff',20,200,50,2,1,true,true,2,12,true,'bonus bLongAtkRate,5; bonus bMaxHP,200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_summoner`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1685,'Dragonfly_Sitting_Foxtail_Staff','Dragonfly Sitting Foxtail Staff','Weapon','Staff',20,300,70,100,1,1,true,true,2,20,true,'bonus bInt,1; bonus bMaxHP,100; bonus bMaxSP,150;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_summoner`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1686,'Large_Foxtail_Staff','Large Foxtail Staff','Weapon','Staff',20,300,70,1,1,true,true,2,20,true,'bonus bLongAtkRate,8; bonus bDex,1; bonus bMaxHP,200; bonus bMaxSP,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_summoner`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1687,'Beginner_Foxtail_Staff','Beginner Foxtail Staff','Weapon','Staff',20,100,40,15,1,1,true,true,1,3,true,100,true,true,true,true,true,true,'bonus bMaxHP,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_summoner`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1690,'Mysterious_Foxtail_Staff','Mysterious Foxtail Staff','Weapon','Staff',20,400,80,180,1,3,true,true,2,60,true,'.@r = getrefine(); bonus bMaxSP,10*(.@r/3)+50; bonus bMatk,10*(.@r/3);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_summoner`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1691,'Strange_God_Foxtail_Staff','Strange God Foxtail Staff','Weapon','Staff',20,500,100,240,1,2,true,true,3,100,true,'bonus bMaxSP,100; .@r = getrefine(); bonus bMatkRate,2*(.@r/3); bonus bMaxSPrate,.@r/3; if(.@r>=7){ .@r = min(.@r,10)-7; bonus bWeaponAtkRate,(20*.@r)+40; bonus bWeaponMatkRate,(20*.@r)+40; } bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_summoner`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1692,'Magical_Foxtail_Staff','Magical Foxtail Staff','Weapon','Staff',20,600,120,260,1,2,true,true,3,140,true,'bonus bMaxSP,100; .@r = getrefine(); bonus bMatkRate,2*(.@r/3); bonus bMaxSPrate,.@r/3; if(.@r>=7){ .@r = min(.@r,10)-7; bonus bWeaponAtkRate,(20*.@r)+40; bonus bWeaponMatkRate,(20*.@r)+40; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_summoner`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1693,'Magical_Yellow_Foxtail_Staff','Magical Yellow Foxtail Staff','Weapon','Staff',20,700,140,280,1,1,true,true,4,175,true,'.@r = getrefine(); bonus bMatkRate,3*(.@r/2); bonus4 bAutoSpellOnSkill,"SU_FRESHSHRIMP","SU_ARCLOUSEDASH",max(1,getskilllv("SU_ARCLOUSEDASH")),200; bonus4 bAutoSpellOnSkill,"SU_SV_STEMSPEAR","SU_FRESHSHRIMP",max(1,getskilllv("SU_FRESHSHRIMP")),200; if(.@r>=7){ .@r = min(.@r,10)-7; bonus bWeaponAtkRate,(20*.@r)+40; bonus bWeaponMatkRate,(20*.@r)+40; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_summoner`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1694,'Foxtail_Model','Foxtail Model','Weapon','Staff',20,300,150,1,3,true,true,2,60,true,'bonus bLongAtkRate,8; bonus bMaxHP,100; .@r = getrefine(); bonus bDex,(.@r/3)*2; bonus bMaxSP,(.@r/3)*10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_summoner`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1695,'Delicate_Foxtail_Model','Delicate Foxtail Model','Weapon','Staff',20,300,195,1,2,true,true,3,100,true,'bonus bLongAtkRate,8; bonus bMaxHP,200; .@r = getrefine(); bonus bDex,(.@r/3)*3; bonus bMaxSP,(.@r/3)*15; if(.@r>=7){ .@r = min(.@r,10)-7; bonus bWeaponAtkRate,(20*.@r)+40; bonus bWeaponMatkRate,(20*.@r)+40; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_summoner`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1696,'Exquisite_Foxtail_Model','Exquisite Foxtail Model','Weapon','Staff',20,300,240,1,2,true,true,3,140,true,'bonus bLongAtkRate,8; bonus bMaxHPrate,5; .@r = getrefine(); bonus bDex,(.@r/2)*3; bonus bMaxSP,(.@r/2)*15; if(.@r>=7){ .@r = min(.@r,10)-7; bonus bWeaponAtkRate,(20*.@r)+40; bonus bWeaponMatkRate,(20*.@r)+40; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_summoner`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1697,'Exquisite_Yellow_Foxtail_Model','Exquisite Yellow Foxtail Model','Weapon','Staff',20,300,270,1,1,true,true,4,175,true,'bonus bLongAtkRate,9; bonus bMaxHPrate,7; .@r = getrefine(); bonus bLongAtkRate,.@r/2; bonus bMaxSP,(.@r/2)*20; bonus4 bAutoSpellOnSkill,"SU_PICKYPECK","SU_FRESHSHRIMP",max(1,getskilllv("SU_FRESHSHRIMP")),200; if(.@r>=7){ .@r = min(.@r,10)-7; bonus bWeaponAtkRate,(20*.@r)+40; bonus bWeaponMatkRate,(20*.@r)+40; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_mage`,`job_novice`,`job_supernovice`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1698,'Requiem_Arc_Wand','Requiem Arc Wand','Weapon','Staff',20,500,80,145,1,true,true,true,true,true,4,100,true,'.@r = getrefine(); .@b = 40; if(.@r>=5){ .@b += (.@r-5)*15+20; } bonus2 bMagicAddRace2,RC2_BioLab,.@b;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1699,'Paradise_Foxtail_Staff_I','Eden Group Foxtail I','Weapon','Staff',20,120,135,1,true,true,true,true,true,2,26,100,true,true,true,true,true,true,true,'bonus bDex,3; bonus bInt,3; bonus bLongAtkRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`job_summoner`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1699,'Paradise_Foxtail_Staff_I','Eden Group Foxtail I','Weapon','Staff',20,120,135,1,true,true,2,26,100,true,true,true,true,true,true,true,'bonus bDex,3; bonus bInt,3; bonus bLongAtkRate,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1701,'Bow','Bow','Weapon','Bow',1000,500,15,5,3,true,true,true,true,true,true,true,1,4,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1702,'Bow_','Bow','Weapon','Bow',1000,500,15,5,4,true,true,true,true,true,true,true,1,4,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1703,'Bow__','Bow','Weapon','Bow',1000,15,5,true,true,true,true,true,true,true,1,4,true,100,true,true,true,true,true,true,true,true,'bonus2 bAddDamageClass,1002,500; bonus2 bAddDamageClass,1113,500; bonus2 bAddDamageClass,1031,500; bonus2 bAddDamageClass,1242,500;'); @@ -700,7 +700,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`pr REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1715,'Arbalest_','Arbalest','Weapon','Bow',48000,1000,90,5,2,true,true,true,true,true,true,true,3,33,true,'bonus bDex,2;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1716,'Kakkung_','Gakkung Bow','Weapon','Bow',42000,1100,100,5,2,true,true,true,true,true,true,true,3,33,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_hunter`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1718,'Hunter_Bow','Hunter Bow','Weapon','Bow',64000,1500,125,5,true,true,true,3,33,true); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1719,'Bow_Of_Roguemaster','Roguemaster\'s Bow','Weapon','Bow',20,500,75,11,true,true,true,4,48,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1719,'Bow_Of_Roguemaster','Roguemaster\'s Bow','Weapon','Bow',20,500,75,11,true,true,true,true,4,48,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1720,'Bow_Of_Rudra','Rudra Bow','Weapon','Bow',20,1200,150,5,true,true,true,true,true,true,4,48,true,'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;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1721,'Repeting_CrossBow','Repeating Crossbow','Weapon','Bow',89000,2000,95,9,1,true,true,true,true,true,3,65,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_barddancer`,`job_hunter`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1722,'Balistar','Ballista','Weapon','Bow',124000,3500,145,5,true,true,true,true,4,77,true); @@ -722,12 +722,12 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`pr REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1738,'BF_Bow1','Valorous Battle CrossBow','Weapon','Bow',20,100,5,true,true,true,true,true,true,true,3,80,true,100,true,true,true,true,true,true,true,'bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1739,'BF_Bow2','Brave Battle CrossBow','Weapon','Bow',20,100,5,true,true,true,true,true,true,true,3,80,true,100,true,true,true,true,true,true,true,'bonus bDex,2; bonus bInt,10; bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus bUnbreakableWeapon;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_hunter`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1740,'Nepenthes_Bow','Nepenthes Bow','Weapon','Bow',20,1000,105,5,2,true,true,true,true,true,4,60,true,'bonus4 bAutoSpellOnSkill,"AC_DOUBLE","AC_CHARGEARROW",1,20;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`job_hunter`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1741,'Cursed_Lyre','Cursed Lyre','Weapon','Bow',20,1250,125,5,1,true,true,true,true,true,true,4,80,true,'bonus bLuk,-2; bonus2 bAddEff,Eff_Curse,400;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1741,'Cursed_Lyre','Cursed Lyre','Weapon','Bow',20,1250,125,5,1,true,true,true,true,true,true,true,4,80,true,'bonus bLuk,-2; bonus2 bAddEff,Eff_Curse,400;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`) VALUES (1742,'N_Composite_Bow','Novice Composite Bow','Weapon','Bow',1,49,5,3,true,true,true,true,true,true,true,1,4); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1743,'Krieger_Bow1','Glorious Hunter Bow','Weapon','Bow',100,5,true,true,true,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; .@r = getrefine(); bonus bCritAtkRate,min(10,.@r)*2; bonus bUnbreakableWeapon; if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) bonus2 bSkillAtk,"AC_DOUBLE",20;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1744,'Bow_Of_Evil','Bow Of Evil','Weapon','Bow',20,170,5,true,true,true,true,true,true,true,4,1,100,true,true,true,true,true,true,true,true,'bonus2 bSkillAtk,"AC_DOUBLE",25; bonus bDex,2;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_hunter`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1745,'Falken_Blitz','Falken Blitz','Weapon','Bow',20,1000,100,5,2,true,true,true,true,true,3,50,true,'bonus2 bSkillAtk,"SN_SHARPSHOOTING",10; bonus2 bSkillAtk,"AC_DOUBLE",10; bonus2 bSkillAtk,"AC_CHARGEARROW",10;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`job_hunter`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1746,'Elven_Bow','Elven Bow','Weapon','Bow',20,1500,160,5,1,true,true,true,true,3,100,true,'bonus bDex,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1746,'Elven_Bow','Elven Bow','Weapon','Bow',20,1500,160,5,1,true,true,true,true,true,true,true,3,100,true,'bonus bDex,2;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (1747,'P_Bow1','Eden Bow I','Weapon','Bow',82,5,true,true,true,true,true,true,true,2,26,100,true,true,true,true,true,true,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (1748,'P_Bow2','Eden Bow II','Weapon','Bow',120,5,true,true,true,true,true,true,true,2,40,100,true,true,true,true,true,true,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1749,'Tourist_Bow','Tourist Bow','Weapon','Bow',500,40,5,true,true,true,true,true,true,true,1,1,100,true,true,true,true,true,true,true,'bonus bDex,2;'); @@ -761,7 +761,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`pr REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1827,'Krieger_Knuckle2','Glorious Fist','Weapon','Knuckle',20,30,1,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) { bonus2 bVariableCastrate,"MO_EXTREMITYFIST",-100; bonus2 bFixedCastrate,"MO_EXTREMITYFIST",-100; bonus4 bautospellonskill,"MO_EXPLOSIONSPIRITS","CH_SOULCOLLECT",1,1000; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1828,'Monk_Knuckle','Monk Knuckle','Weapon','Knuckle',20,150,1,true,true,true,4,100,true,true,true,true,true,true,true,true,'bonus bInt,2; bonus2 bSkillAtk,"MO_FINGEROFFENSIVE",25;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1829,'Fist_C','Fist','Weapon','Knuckle',150,1,true,true,true,3,1,100,true,true,true,true,true,true,true,true,'bonus2 bAddSize,Size_All,40;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1830,'Sura_Rampage','Sura Rampage','Weapon','Knuckle',20,500,142,1,1,true,true,true,3,102,true,'bonus2 bSkillAtk,"SR_EARTHSHAKER",20; bonus2 bSkillAtk,"SR_SKYNETBLOW",20; bonus bUseSPrate,5; .@r = getrefine(); if(.@r>6) { bonus bUseSPrate,-1*(.@r-6); }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1830,'Sura_Rampage','Sura Rampage','Weapon','Knuckle',20,500,142,1,1,true,true,true,true,true,3,102,true,'bonus2 bSkillAtk,"SR_EARTHSHAKER",20; bonus2 bSkillAtk,"SR_SKYNETBLOW",20; bonus bUseSPrate,5; .@r = getrefine(); if(.@r>6) { bonus bUseSPrate,-1*(.@r-6); }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (1831,'P_Knuckle1','Eden Knuckle I','Weapon','Knuckle',120,1,true,true,true,3,60,100,true,true,true,true,true,true,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1832,'Velum_Claw','Vellum Claw','Weapon','Knuckle',20,650,160,1,true,true,true,4,95,true,'bonus2 bAddRace,RC_Player_Human,100; .@r = getrefine(); if(.@r>7) { bonus2 bAddRace,RC_Player_Human,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; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1833,'Claw_Of_Flash','Claw of Flash','Weapon','Knuckle',60000,400,140,1,2,true,true,true,4,105,true,'bonus bAspd,1; bonus bAspdRate,getrefine(); bonus2 bAddSize,Size_Medium,getrefine();'); @@ -774,7 +774,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`pr REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1840,'Requiem_Knuckle','Requiem Knuckle','Weapon','Knuckle',20,500,150,100,1,true,true,true,4,100,true,'.@r = getrefine(); .@b = 40; if(.@r>=5){ .@b += (.@r-5)*15+20; } bonus2 bAddRace2,RC2_BioLab,.@b;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1841,'Claw_Of_Flash_','Claw of Flash','Weapon','Knuckle',60000,400,140,1,3,true,true,true,4,105,true,'bonus bAspd,1; bonus bAspdRate,getrefine(); bonus2 bAddSize,Size_Medium,getrefine();'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_monk`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1846,'Illusion_Combo_Battle_Glove','Illusion Combo Battle Glove','Weapon','Knuckle',500,250,1,2,true,true,true,true,true,4,120,true,'.@r = getrefine(); bonus2 bSkillAtk,"SR_SKYNETBLOW",(10+5*(.@r/2)); bonus2 bSkillAtk,"SR_DRAGONCOMBO",(10+5*(.@r/2)); bonus2 bSkillAtk,"SR_TIGERCANNON",(5*(.@r/3));'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1862,'Burning_Knuckle-OS','Burning Knuckle-OS','Weapon','Knuckle',20,900,175,1,2,true,true,4,130,true,'.@r = getrefine(); bonus2 bAddClass,Class_All,3; if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",15; if (.@r >= 11) { bonus2 bAddSize,Size_Medium,20; bonus2 bAddSize,Size_Large,20; } } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1862,'Burning_Knuckle-OS','Burning Knuckle-OS','Weapon','Knuckle',20,900,175,1,2,true,true,true,true,true,4,130,true,'.@r = getrefine(); bonus2 bAddClass,Class_All,3; if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",15; if (.@r >= 11) { bonus2 bAddSize,Size_Medium,20; bonus2 bAddSize,Size_Large,20; } } }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1865,'Raging_Dragon_Fist','Raging Dragon Fist','Weapon','Knuckle',20,700,210,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bBaseAtk,4*.@r; bonus2 bSkillAtk,"MO_CHAINCOMBO",30; if (.@r >= 9) { bonus2 bSkillAtk,"MO_COMBOFINISH",50; bonus2 bSkillAtk,"CH_CHAINCRUSH",50; } if (.@r >= 11) bonus2 bSkillAtk,"CH_CHAINCRUSH",30;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1866,'Dedicated_Bandage','Dedicated Bandage','Weapon','Knuckle',20,800,220,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bBaseAtk,4*.@r; bonus bLongAtkRate,10; if (.@r >= 9) bonus2 bSkillAtk,"SR_KNUCKLEARROW",40; if (.@r >= 11) bonus bDelayrate,-7;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1900,'Violin_of_Vicious_Mind','Violin of Vicious Mind','Weapon','Musical',20,1300,130,50,1,1,true,'Male',true,4,160,true,'bonus bAtk,pow(min(getrefine(),15),2); bonus bMatk,pow(min(getrefine(),15),2)/2;'); @@ -807,12 +807,12 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`pr REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1927,'Krieger_Instrument1','Glorious Guitar','Weapon','Musical',20,50,1,true,'Male',true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) bonus4 bAutoSpellOnSkill,"CG_ARROWVULCAN","CG_TAROTCARD",5,100;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_barddancer`,`class_upper`,`class_third_upper`,`gender`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1928,'Berserk_Guitar_I','Spirited Guitar','Weapon','Musical',40,1,true,true,true,'Male',true,4,100,true,true,true,true,true,true,true,true,'bonus bAspdRate,100; bonus bHPrecovRate,-100; bonus2 bHPLossRate,50,5000; bonus bDex,-readparam(bDex);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1929,'Guitar_C','Guitar','Weapon','Musical',177,1,true,'Male',true,3,1,100,true,true,true,true,true,true,true,true,'bonus2 bAddSize,Size_All,40;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1930,'Green_Whistle','Green Whistle','Weapon','Musical',20,800,170,50,1,1,true,'Male',true,3,102,true,'.@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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1930,'Green_Whistle','Green Whistle','Weapon','Musical',20,800,170,50,1,1,true,true,true,true,'Male',true,3,102,true,'.@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;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (1931,'P_String_Inst1','Eden Guitar I','Weapon','Musical',125,1,true,'Male',true,3,60,100,true,true,true,true,true,true,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1932,'TE_Woe_Guitar','TE Woe Guitar','Weapon','Musical',100,1,true,'Male',true,3,40,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Poison,3000;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (1933,'Thanos_Violin','Thanos Violin','Weapon','Musical',10,2000,200,130,1,1,true,true,true,true,'Male',true,4,120,true,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus bLongAtkRate,20; bonus2 bHPLossRate,100,10000;','heal -1000,0;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1934,'Contabass','Contrabass','Weapon','Musical',20,250,180,120,1,2,true,'Male',true,3,130,true,'bonus2 bSkillCooldown,"WM_RANDOMIZESPELL",-20;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1935,'Ukulele_Of_Newoz','Oz\'s New Ukulele','Weapon','Musical',20,2000,160,1,2,true,'Male',true,4,130,true,'bonus2 bSkillUseSP,"MI_RUSH_WINDMILL",20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1934,'Contabass','Contrabass','Weapon','Musical',20,250,180,120,1,2,true,true,true,true,'Male',true,3,130,true,'bonus2 bSkillCooldown,"WM_RANDOMIZESPELL",-20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1935,'Ukulele_Of_Newoz','Oz\'s New Ukulele','Weapon','Musical',20,2000,160,1,2,true,true,true,true,'Male',true,4,130,true,'bonus2 bSkillUseSP,"MI_RUSH_WINDMILL",20;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1936,'Ru_Blue_Violin','Blue Violin','Weapon','Musical',10,1500,180,2,1,true,'Male',true,3,100,true,'bonus bDex,5; bonus bVit,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1937,'Ru_Gold_Violin','Ru Gold Violin','Weapon','Musical',1500,180,1,2,true,true,true,true,true,3,120,true,'bonus bDex,8; bonus bVit,8;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (1938,'Infinity_Violin','Infinity Violin','Weapon','Musical',10,500,150,2,1,true,true,true,true,'Male',true,4,100,true,100,true,true,true,true,true,true); @@ -855,61 +855,61 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`pr REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1981,'Krieger_Whip1','Glorious Lariat','Weapon','Whip',20,50,2,true,'Female',true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) bonus4 bAutoSpellOnSkill,"CG_ARROWVULCAN","CG_TAROTCARD",5,100;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1982,'Phenomena_Whip','Phenomena Whip','Weapon','Whip',20,160,2,true,'Female',true,4,100,true,true,true,true,true,true,true,true,'bonus bDex,2; bonus2 bSkillAtk,"DC_THROWARROW",25;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1983,'Rante_C','Rante Whip','Weapon','Whip',170,2,true,'Female',true,3,1,100,true,true,true,true,true,true,true,true,'bonus2 bAddSize,Size_All,40;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1984,'Stem_Whip','Stem Whip','Weapon','Whip',20,800,170,50,1,1,true,'Female',true,3,102,true,'.@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;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1985,'Rosebine','Rosebine','Weapon','Whip',20,1000,100,130,1,true,'Female',true,4,110,true,'bonus bInt,2; bonus bAgi,-2; bonus3 bAutoSpell,"WM_VOICEOFSIREN",1,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1984,'Stem_Whip','Stem Whip','Weapon','Whip',20,800,170,50,1,1,true,true,true,true,'Female',true,3,102,true,'.@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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1985,'Rosebine','Rosebine','Weapon','Whip',20,1000,100,130,1,true,true,true,true,'Female',true,4,110,true,'bonus bInt,2; bonus bAgi,-2; bonus3 bAutoSpell,"WM_VOICEOFSIREN",1,20;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (1986,'P_Tail1','Eden Tail I','Weapon','Whip',125,2,true,'Female',true,3,60,100,true,true,true,true,true,true,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1987,'TE_Woe_Rope','TE Woe Rope','Weapon','Whip',100,2,true,'Female',true,3,40,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Blind,3000;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (1988,'Thanos_Whip','Thanos Whip','Weapon','Whip',10,2200,200,130,2,1,true,true,true,true,'Female',true,4,120,true,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus bLongAtkRate,20; bonus2 bHPLossRate,100,10000;','heal -1000,0;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1989,'Gymnastics_Ribbon','Rhythmic Gymnastics Ribbon','Weapon','Whip',20,300,150,120,2,2,true,'Female',true,3,130,true,'bonus bAspdRate,20;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1990,'Floral_Mic_Of_Igu','Bloody Floral Decoration Microphone','Weapon','Whip',20,1000,160,2,2,true,'Female',true,4,130,true,'bonus2 bSkillUseSP,"CG_MOONLIT",20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1989,'Gymnastics_Ribbon','Rhythmic Gymnastics Ribbon','Weapon','Whip',20,300,150,120,2,2,true,true,true,true,'Female',true,3,130,true,'bonus bAspdRate,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1990,'Floral_Mic_Of_Igu','Bloody Floral Decoration Microphone','Weapon','Whip',20,1000,160,2,2,true,true,true,true,'Female',true,4,130,true,'bonus2 bSkillUseSP,"CG_MOONLIT",20;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1991,'Ru_Blue_Whip','Blue Whip','Weapon','Whip',10,1500,180,2,1,true,'Female',true,3,100,true,'bonus bDex,5; bonus bVit,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1992,'Ru_Gold_Whip','Ru Gold Whip','Weapon','Whip',1500,180,2,2,true,true,true,true,true,3,120,true,'bonus bDex,8; bonus bVit,8;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (1994,'Infinity_Whip','Infinity Whip','Weapon','Whip',10,500,150,2,1,true,true,true,true,'Female',true,4,100,true,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (1994,'Infinity_Whip','Infinity Whip','Weapon','Whip',10,500,150,2,1,true,'Female',true,4,100,true,100,true,true,true,true,true,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1995,'Crimson_Whip','Crimson Whip','Weapon','Whip',20,800,80,2,2,true,'Female',true,3,70,true,'.@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1996,'Wire_of_Vicious_Mind','Wire of Vicious Mind','Weapon','Whip',20,1300,130,50,2,1,true,'Female',true,4,160,true,'bonus bAtk,pow(min(getrefine(),15),2); bonus bMatk,pow(min(getrefine(),15),2)/2;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (1997,'Unity_Whip','Unity Whip','Weapon','Whip',20,76,40,2,1,true,'Female',true,3,1,true,100,true,true,true,true,true,true,'bonus bBaseAtk,pow(getrefine(),2)*125/100;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2000,'Destruction_Rod','Staff of Destruction','Weapon','2hStaff',20,2500,130,280,1,1,true,true,true,true,true,4,80,true,'.@r = getrefine; bonus bMatkRate,.@r/2; bonus bInt,3; bonus bAgi,10; bonus bUseSPrate,(.@r*2); bonus3 bAutoSpellWhenHit,"WZ_JUPITEL",5,(.@r*20); bonus2 bFixedCastrate,"HW_MAGICPOWER",-50;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_monk`,`job_priest`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2001,'Divine_Cross','Divine Cross','Weapon','2hStaff',20,1500,120,210,1,true,true,true,true,4,70,true,'bonus bAtkEle,Ele_Holy; bonus bDex,4; bonus2 bSubRace,RC_Demon,15; bonus2 bSubRace,RC_Undead,15;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2002,'Krieger_Twohand_Staff1','Glorious Destruction Staff','Weapon','2hStaff',20,70,210,1,true,true,true,true,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatkRate,.@r; bonus2 bMagicAddRace,RC_DemiHuman,15; bonus2 bMagicAddRace,RC_Player_Human,15; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; if(.@r>5) { bonus2 bMagicAddRace,RC_DemiHuman,(min(14,.@r)-5)*2; bonus2 bMagicAddRace,RC_Player_Human,(min(14,.@r)-5)*2; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5+(min(14,.@r)-5)*2; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,5+(min(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; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2002,'Krieger_Twohand_Staff1','Glorious Destruction Staff','Weapon','2hStaff',20,70,210,1,true,true,true,true,true,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatkRate,.@r; bonus2 bMagicAddRace,RC_DemiHuman,15; bonus2 bMagicAddRace,RC_Player_Human,15; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; if(.@r>5) { bonus2 bMagicAddRace,RC_DemiHuman,(min(14,.@r)-5)*2; bonus2 bMagicAddRace,RC_Player_Human,(min(14,.@r)-5)*2; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5+(min(14,.@r)-5)*2; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,5+(min(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; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2003,'Destruction_Rod_M','Staff of Destruction','Weapon','2hStaff',20,2500,130,280,1,1,true,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'.@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;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_mage`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2004,'Kronos','Kronos','Weapon','2hStaff',20,1000,30,240,1,true,true,true,true,true,true,true,4,50,true,'.@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; }";'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2005,'Dea_Staff','Dea Staff','Weapon','2hStaff',20,1000,30,220,1,1,true,true,true,true,true,true,true,3,50,true,'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; }";'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2006,'G_Staff_Of_Light','Staff Of Light','Weapon','2hStaff',20,1900,80,150,1,true,true,true,true,true,true,4,60,true,'bonus bAtkEle,Ele_Holy; bonus bInt,6;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2007,'Golden_Rod_Staff','Golden Rod Staff','Weapon','2hStaff',20,900,30,230,1,2,true,true,true,4,100,true,'bonus bAtkEle,Ele_Wind; bonus bInt,3; bonus2 bSkillAtk,"WZ_JUPITEL",12;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2008,'Aqua_Staff','Aqua Staff','Weapon','2hStaff',20,900,30,230,1,2,true,true,true,4,100,true,'bonus bAtkEle,Ele_Water; bonus bInt,3; bonus2 bSkillAtk,"MG_COLDBOLT",12; bonus2 bSkillAtk,"MG_FROSTDIVER",12;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2009,'Crimson_Staff','Crimson Staff','Weapon','2hStaff',20,900,30,230,1,2,true,true,true,4,100,true,'bonus bAtkEle,Ele_Fire; bonus bInt,3; bonus2 bSkillAtk,"MG_FIREBOLT",10; bonus2 bSkillAtk,"MG_FIREBALL",10;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2010,'Forest_Staff','Forest Staff','Weapon','2hStaff',20,900,30,230,1,2,true,true,true,4,100,true,'bonus bAtkEle,Ele_Earth; bonus bInt,3; bonus2 bSkillAtk,"WZ_EARTHSPIKE",10; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",10;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2011,'Golden_Rod_Staff2','Empowered Golden Rod Staff','Weapon','2hStaff',20,900,30,270,1,1,true,true,true,4,130,true,'bonus bAtkEle,Ele_Wind; bonus bInt,5; bonus2 bSkillAtk,"WZ_JUPITEL",30;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2012,'Aqua_Staff2','Empowered Aqua Staff','Weapon','2hStaff',20,900,30,270,1,1,true,true,true,4,130,true,'bonus bAtkEle,Ele_Water; bonus bInt,5; bonus2 bSkillAtk,"MG_COLDBOLT",30; bonus2 bSkillAtk,"MG_FROSTDIVER",30;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2013,'Crimson_Staff2','Empowered Crimson Staff','Weapon','2hStaff',20,900,30,270,1,1,true,true,true,4,130,true,'bonus bAtkEle,Ele_Fire; bonus bInt,5; bonus2 bSkillAtk,"MG_FIREBOLT",30; bonus2 bSkillAtk,"MG_FIREBALL",30;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2014,'Forest_Staff2','Empowered Forest Staff','Weapon','2hStaff',20,900,30,270,1,1,true,true,true,4,130,true,'bonus bAtkEle,Ele_Earth; bonus bInt,5; bonus2 bSkillAtk,"WZ_EARTHSPIKE",30; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2007,'Golden_Rod_Staff','Golden Rod Staff','Weapon','2hStaff',20,900,30,230,1,2,true,true,true,true,true,true,4,100,true,'bonus bAtkEle,Ele_Wind; bonus bInt,3; bonus2 bSkillAtk,"WZ_JUPITEL",12;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2008,'Aqua_Staff','Aqua Staff','Weapon','2hStaff',20,900,30,230,1,2,true,true,true,true,true,true,4,100,true,'bonus bAtkEle,Ele_Water; bonus bInt,3; bonus2 bSkillAtk,"MG_COLDBOLT",12; bonus2 bSkillAtk,"MG_FROSTDIVER",12;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2009,'Crimson_Staff','Crimson Staff','Weapon','2hStaff',20,900,30,230,1,2,true,true,true,true,true,true,4,100,true,'bonus bAtkEle,Ele_Fire; bonus bInt,3; bonus2 bSkillAtk,"MG_FIREBOLT",10; bonus2 bSkillAtk,"MG_FIREBALL",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2010,'Forest_Staff','Forest Staff','Weapon','2hStaff',20,900,30,230,1,2,true,true,true,true,true,true,4,100,true,'bonus bAtkEle,Ele_Earth; bonus bInt,3; bonus2 bSkillAtk,"WZ_EARTHSPIKE",10; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2011,'Golden_Rod_Staff2','Empowered Golden Rod Staff','Weapon','2hStaff',20,900,30,270,1,1,true,true,true,true,true,true,4,130,true,'bonus bAtkEle,Ele_Wind; bonus bInt,5; bonus2 bSkillAtk,"WZ_JUPITEL",30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2012,'Aqua_Staff2','Empowered Aqua Staff','Weapon','2hStaff',20,900,30,270,1,1,true,true,true,true,true,true,4,130,true,'bonus bAtkEle,Ele_Water; bonus bInt,5; bonus2 bSkillAtk,"MG_COLDBOLT",30; bonus2 bSkillAtk,"MG_FROSTDIVER",30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2013,'Crimson_Staff2','Empowered Crimson Staff','Weapon','2hStaff',20,900,30,270,1,1,true,true,true,true,true,true,4,130,true,'bonus bAtkEle,Ele_Fire; bonus bInt,5; bonus2 bSkillAtk,"MG_FIREBOLT",30; bonus2 bSkillAtk,"MG_FIREBALL",30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2014,'Forest_Staff2','Empowered Forest Staff','Weapon','2hStaff',20,900,30,270,1,1,true,true,true,true,true,true,4,130,true,'bonus bAtkEle,Ele_Earth; bonus bInt,5; bonus2 bSkillAtk,"WZ_EARTHSPIKE",30; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",30;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (2015,'Upg_Staff','Upg Staff','Weapon','2hStaff',20,1000,50,70,1,1,true,true,true,true,true,true,true,true,true,3,1,true,100,true,'.@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);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2016,'Velum_Arc_Wand','Vellum Arc Wand','Weapon','2hStaff',20,800,110,220,1,true,true,true,true,true,true,true,true,true,4,95,true,'bonus bUnbreakableWeapon; bonus2 bMagicAddRace,RC_Player_Human,25; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; .@r = getrefine(); if(.@r>5) { bonus2 bMagicAddRace,RC_Player_Human,15; } if(.@r>8) { bonus bVariableCastrate,-50; bonus bFixedCast,-200; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_monk`,`job_priest`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2017,'Divine_Cross_','Divine Cross','Weapon','2hStaff',20,1500,120,210,1,1,true,true,true,true,4,70,true,'bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Holy; bonus bDex,4; bonus2 bSubRace,RC_Demon,15; bonus2 bSubRace,RC_Undead,15;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_novice`,`job_priest`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2018,'Metal_Staff','Metal Staff','Weapon','2hStaff',20,50,70,1,1,true,true,true,true,true,true,true,true,true,true,true,3,1,true,100,true,true,true,true,true,true,true,'if(BaseJob==Job_Wizard) bonus bMatk,15; else if(BaseJob==Job_Sage) bonus bMatk,10; bonus bMatk,(getrefine()*5); .@i = min(BaseLevel/10,12); if(.@i>2) bonus bMatk,((.@i-2)*5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2018,'Metal_Staff','Metal Staff','Weapon','2hStaff',20,50,70,1,1,true,true,true,true,true,true,true,true,true,3,1,true,100,true,true,true,true,true,true,true,'if(BaseJob==Job_Wizard) bonus bMatk,15; else if(BaseJob==Job_Sage) bonus bMatk,10; bonus bMatk,(getrefine()*5); .@i = min(BaseLevel/10,12); if(.@i>2) bonus bMatk,((.@i-2)*5);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`magic_attack`,`range`,`job_acolyte`,`job_mage`,`job_monk`,`job_novice`,`job_priest`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2019,'TE_Woe_Two_Hand_Staff','TE Woe Two Hand Staff','Weapon','2hStaff',50,130,1,true,true,true,true,true,true,true,true,true,true,true,3,40,true,100,true,true,true,true,true,true,true,'bonus2 bMagicAddRace,RC_Player_Human,20; bonus3 bAddEff,Eff_Stun,1000,ATF_MAGIC; bonus bHPRecovRate,5; bonus bSPRecovRate,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`job_sage`,`job_soullinker`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (2020,'Jormungand','Jormungand','Weapon','2hStaff',10,3000,200,280,true,true,true,true,true,4,1,'bonus bInt,20; bonus3 bAddEff,Eff_Poison,3000,ATF_MAGIC; bonus2 bAddEffWhenHit,Eff_DPoison,100; bonus bUnbreakableWeapon;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2021,'Ganbantein','Ganbantein','Weapon','Staff',2000,100,320,1,true,true,true,true,true,4,100,true,'bonus bInt,25; bonus bDex,25; bonus3 bAddEff,Eff_Poison,1000,ATF_MAGIC; bonus3 bAutoSpell,"AB_SILENTIUM",1,100; bonus bUnbreakableWeapon;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2022,'Staff_Of_Geffen','Staff of Geffen','Weapon','2hStaff',20,1000,100,300,1,1,true,true,true,true,true,1,150,true,'bonus bInt,20;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (2023,'Thanos_Rod','Thanos Two-Handed Staff','Weapon','2hStaff',10,1400,120,250,1,1,true,true,true,true,true,true,true,true,true,true,true,4,120,true,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus bHealPower,18; bonus bMagicHPGainValue,500; bonus bMagicSPGainValue,50; bonus2 bHPLossRate,100,10000;','heal -1000,0;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`slots`,`job_sage`,`job_soullinker`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (2024,'Infinity_Two-handed_Stick','Infinity Two-handed Stick','Weapon','2hStaff',10,500,30,170,1,true,true,true,true,true,true,true,true,4,100,true,100,true,true,true,true,true,true); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_soullinker`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2025,'Crimson_Two-Handed_Staff','Crimson Two-Handed Staff','Weapon','2hStaff',20,1000,100,1,2,true,true,true,true,3,70,true,'.@r = getrefine(); bonus bInt,5; bonus bMatk,150+((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_monk`,`job_priest`,`job_sage`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (2023,'Thanos_Rod','Thanos Two-Handed Staff','Weapon','2hStaff',10,1400,120,250,1,1,true,true,true,true,true,true,true,true,true,4,120,true,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus bHealPower,18; bonus bMagicHPGainValue,500; bonus bMagicSPGainValue,50; bonus2 bHPLossRate,100,10000;','heal -1000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`slots`,`job_monk`,`job_priest`,`job_sage`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (2024,'Infinity_Two-handed_Stick','Infinity Two-handed Stick','Weapon','2hStaff',10,500,30,170,1,true,true,true,true,true,true,true,true,true,4,100,true,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2025,'Crimson_Two-Handed_Staff','Crimson Two-Handed Staff','Weapon','2hStaff',20,1000,100,1,2,true,true,true,true,true,true,3,70,true,'.@r = getrefine(); bonus bInt,5; bonus bMatk,150+((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2026,'Staff_of_Vicious_Mind','Staff of Vicious Mind','Weapon','2hStaff',20,1000,100,200,1,1,true,true,true,true,true,true,4,160,true,'bonus bMatk,pow(min(getrefine(),15),2); bonus bInt,6; bonus bUnbreakableWeapon;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2027,'Sunflower_Kid','Sunflower Kid','Weapon','2hStaff',10,1500,150,320,2,true,true,true,true,true,true,4,170,true,'bonus bInt,5; .@r = getrefine(); bonus bMatkRate,(.@r/2); bonus bDelayrate,(.@r*-1); bonus bUnbreakableWeapon;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_soullinker`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2030,'Unity_Two-Handed_Staff','Unity Two-Handed Staff','Weapon','2hStaff',20,500,95,135,1,1,true,true,true,true,3,1,true,100,true,true,true,true,true,true,'bonus bMatk,pow(getrefine(),2)*125/100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`slots`,`job_monk`,`job_priest`,`job_sage`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2027,'Sunflower_Kid','Sunflower Kid','Weapon','2hStaff',10,1500,150,320,2,true,true,true,true,true,true,true,true,true,4,170,true,'bonus bInt,5; .@r = getrefine(); bonus bMatkRate,(.@r/2); bonus bDelayrate,(.@r*-1); bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2030,'Unity_Two-Handed_Staff','Unity Two-Handed Staff','Weapon','2hStaff',20,500,95,135,1,1,true,true,true,true,true,true,3,1,true,100,true,true,true,true,true,true,'bonus bMatk,pow(getrefine(),2)*125/100;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2032,'Requiem_Wizardry_Staff','Requiem Wizardry Staff','Weapon','Staff',20,500,100,230,1,true,4,100,true,'.@r = getrefine(); .@b = 40; .@c = 5; if(.@r>=5){ .@b += (.@r-5)*15+20; .@c += .@r-5; } bonus2 bMagicAddRace2,RC2_BioLab,.@b; bonus2 bSubRace2,RC2_BioLab,.@c; bonus2 bIgnoreMdefRace2Rate,RC2_BioLab,(.@r-5)*10;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`class_upper`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2039,'Illusion_Wizardry_Staff','Illusion Wizardry Staff','Weapon','2hStaff',2400,150,250,1,2,true,true,true,true,true,true,true,true,true,true,4,100,true,'.@val = min(getrefine(),10)/2; bonus bInt,(6+.@val); bonus bDex,(2+.@val);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_mage`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2039,'Illusion_Wizardry_Staff','Illusion Wizardry Staff','Weapon','2hStaff',2400,150,250,1,2,true,true,true,true,true,true,true,4,100,true,'.@val = min(getrefine(),10)/2; bonus bInt,(6+.@val); bonus bDex,(2+.@val);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2046,'Novice_Warlock\'s_Staff','Novice Warlock\'s Staff','Weapon','2hStaff',70,170,1,1,true,true,true,true,true,true,3,100,true,'bonus bMatkRate,5; .@r = getrefine(); if(.@r>=7){ bonus2 bSkillAtk,"WL_CRIMSONROCK",15; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2048,'Aeon_Staff','Aeon Staff','Weapon','2hStaff',800,100,200,1,2,true,true,true,true,true,true,4,100,true,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus2 bSkillAtk,"WL_EARTHSTRAIN",12*(.@r/3); if(.@r>=9){ bonus bVariableCastrate,-10; } if (.@r>=11) { bonus2 bSkillCooldown,"WL_EARTHSTRAIN",-1000; }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2049,'Blue_Flame_Cane','Blue Flame Cane','Weapon','2hStaff',20,800,110,300,1,2,true,true,true,true,true,true,true,true,true,4,175,true,'.@r = getrefine; bonus bInt,7; bonus bMatkRate,.@r/2; bonus bUnbreakableWeapon; if (.@r>=9) .@val = 15; else if (.@r>=7) .@val = 5; if (.@r>=11) bonus2 bSubSize,Size_All,20; if (.@r>=13) bonus bDelayrate,-15; bonus2 bMagicAtkEle,Ele_Fire,.@val; bonus2 bMagicAtkEle,Ele_Earth,.@val; bonus2 bMagicAtkEle,Ele_Water,.@val; bonus2 bMagicAtkEle,Ele_Holy,.@val;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2051,'Illusion_Survivor\'s_Staff','Illusion Survivor\'s Staff','Weapon','2hStaff',1200,100,240,1,2,true,true,true,true,true,true,true,true,true,4,120,true,'.@r = getrefine(); bonus bDex,2; bonus bInt,2; bonus bMaxHP,600; bonus bUnbreakableWeapon; bonus bMatkRate,(.@r/2); if (.@r >= 7) { bonus2 bMagicAddSize,Size_Small,15; bonus2 bMagicAddSize,Size_Medium,15; if (.@r >= 9) { bonus2 bSubSize,Size_Small,15; bonus2 bSubSize,Size_Medium,15; if (.@r >= 11) { bonus2 bSubDefEle,Ele_Water,15; bonus2 bSubDefEle,Ele_Wind,15; bonus2 bSubDefEle,Ele_Earth,15; bonus2 bSubDefEle,Ele_Fire,15; } } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2049,'Blue_Flame_Cane','Blue Flame Cane','Weapon','2hStaff',20,800,110,300,1,2,true,true,4,175,true,'.@r = getrefine; bonus bInt,7; bonus bMatkRate,.@r/2; bonus bUnbreakableWeapon; if (.@r>=9) .@val = 15; else if (.@r>=7) .@val = 5; if (.@r>=11) bonus2 bSubSize,Size_All,20; if (.@r>=13) bonus bDelayrate,-15; bonus2 bMagicAtkEle,Ele_Fire,.@val; bonus2 bMagicAtkEle,Ele_Earth,.@val; bonus2 bMagicAtkEle,Ele_Water,.@val; bonus2 bMagicAtkEle,Ele_Holy,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2051,'Illusion_Survivor\'s_Staff','Illusion Survivor\'s Staff','Weapon','2hStaff',1200,100,240,1,2,true,true,true,true,true,true,4,120,true,'.@r = getrefine(); bonus bDex,2; bonus bInt,2; bonus bMaxHP,600; bonus bUnbreakableWeapon; bonus bMatkRate,(.@r/2); if (.@r >= 7) { bonus2 bMagicAddSize,Size_Small,15; bonus2 bMagicAddSize,Size_Medium,15; if (.@r >= 9) { bonus2 bSubSize,Size_Small,15; bonus2 bSubSize,Size_Medium,15; if (.@r >= 11) { bonus2 bSubDefEle,Ele_Water,15; bonus2 bSubDefEle,Ele_Wind,15; bonus2 bSubDefEle,Ele_Earth,15; bonus2 bSubDefEle,Ele_Fire,15; } } }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_novice`,`job_priest`,`job_supernovice`,`job_wizard`,`class_upper`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2053,'Abyss_Staff','Abyss Staff','Weapon','2hStaff',2400,120,270,1,1,true,true,true,true,true,true,true,true,true,true,4,165,true,'bonus2 bSubRace,RC_Player_Human,30; .@r = getrefine(); bonus bHealPower,.@r*2; if(.@r>=7){ bonus2 bMagicAddClass,Class_All,5; bonus2 bSubRace,RC_Player_Human,5; } if(.@r>=9){ bonus2 bMagicAddClass,Class_All,5; bonus2 bSubRace,RC_Player_Human,5; } bonus bUnbreakableWeapon;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2054,'Sealed_Aeon_Staff','Sealed Aeon Staff','Weapon','2hStaff',100,200,1,2,true,true,true,true,true,true,4,99,true,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus2 bSkillAtk,"WL_EARTHSTRAIN",12*(.@r/3); if(.@r>=7){ bonus bVariableCastrate,-10; } if(.@r>=9){ bonus2 bSkillCooldown,"WL_EARTHSTRAIN",-1000; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2055,'Staff_of_Miracle','Staff of Miracle','Weapon','2hStaff',20,1200,100,270,1,2,true,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Ghost,5; if (.@r >= 9) { bonus2 bSkillAtk,"MG_SOULSTRIKE",20; bonus2 bSkillAtk,"HW_NAPALMVULCAN",20; bonus2 bSkillAtk,"WL_SOULEXPANSION",20; } if (.@r >= 11) { bonus2 bSkillAtk,"MG_SOULSTRIKE",30; bonus2 bSkillAtk,"HW_NAPALMVULCAN",30; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2056,'Gravitation_Staff','Gravitation Staff','Weapon','2hStaff',20,1300,110,280,1,2,true,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Neutral,5; if (.@r >= 9) { bonus2 bSkillAtk,"HW_GRAVITATION",30; bonus2 bSkillAtk,"WL_DRAINLIFE",30; } if (.@r >= 11) { bonus2 bSkillCooldown,"HW_GRAVITATION",-2000; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2057,'Adorare_Staff','Adorare Staff','Weapon','2hStaff',20,1200,100,240,1,2,true,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Holy,5; if (.@r >= 9) { bonus2 bSkillAtk,"AB_ADORAMUS",30; } if (.@r >= 11) { bonus2 bSubSize,Size_All,25; }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2058,'Detecting_Staff','Detecting Staff','Weapon','2hStaff',2000,180,330,1,2,true,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,10; if (.@r >= 7) { bonus bMatk,60; bonus bVariableCastrate,-10; } if (.@r >= 9) { bonus2 bMagicAtkEle,Ele_Fire,15; autobonus "{ bonus2 bMagicAddSize,Size_All,20; }",10,10000,BF_MAGIC; } if (.@r >= 11) { bonus bDelayrate,-20; }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2060,'Royal_Magician_Staff','Royal Magician Staff','Weapon','2hStaff',1500,100,270,1,2,true,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,5; bonus bMatk,5*.@r; if (.@r >= 9) { bonus2 bSkillAtk,"WL_CHAINLIGHTNING",20; bonus2 bSkillAtk,"WL_EARTHSTRAIN",20; } if (.@r >= 11) { bonus2 bMagicAddRace,RC_Undead,20; bonus2 bMagicAddRace,RC_Angel,20; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2058,'Detecting_Staff','Detecting Staff','Weapon','2hStaff',2000,180,330,1,2,true,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,10; if (.@r >= 7) { bonus bMatk,60; bonus bVariableCastrate,-10; } if (.@r >= 9) { bonus2 bMagicAtkEle,Ele_Fire,15; autobonus "{ bonus2 bMagicAddSize,Size_All,20; }",10,10000,BF_MAGIC; } if (.@r >= 11) { bonus bDelayrate,-20; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (2060,'Royal_Magician_Staff','Royal Magician Staff','Weapon','2hStaff',1500,100,270,1,2,true,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,5; bonus bMatk,5*.@r; if (.@r >= 9) { bonus2 bSkillAtk,"WL_CHAINLIGHTNING",20; bonus2 bSkillAtk,"WL_EARTHSTRAIN",20; } if (.@r >= 11) { bonus2 bMagicAddRace,RC_Undead,20; bonus2 bMagicAddRace,RC_Angel,20; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_left_hand`,`refineable`,`view`) VALUES (2101,'Guard','Guard','Armor',500,300,20,true,true,1); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_left_hand`,`refineable`,`view`) VALUES (2102,'Guard_','Guard','Armor',500,300,20,1,true,true,1); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_acolyte`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_rogue`,`job_swordman`,`job_thief`,`location_left_hand`,`refineable`,`view`) VALUES (2103,'Buckler','Buckler','Armor',14000,600,40,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,2); @@ -926,10 +926,10 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2114,'Stone_Buckler','Stone Buckler','Armor',30000,1500,45,1,true,false,false,true,65,true,2,'bonus2 bSubSize,Size_Large,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2115,'Valkyrja\'s_Shield','Valkyrja\'s Shield','Armor',30000,500,80,1,true,false,false,true,65,true,4,'bonus2 bSubEle,Ele_Water,20; bonus2 bSubEle,Ele_Fire,20; bonus2 bSubEle,Ele_Dark,20; bonus2 bSubEle,Ele_Undead,20; bonus bMdef,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2116,'Angel\'s_Safeguard','Angelic Guard','Armor',10000,400,30,1,true,true,true,20,true,1,'bonus2 bSubRace,RC_Demon,5;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_ninja`,`location_left_hand`,`equip_level_min`,`refineable`,`view`) VALUES (2117,'Arm_Guard','Arm Guard','Armor',10000,150,50,true,true,20,true,1); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_ninja`,`location_left_hand`,`equip_level_min`,`refineable`,`view`) VALUES (2118,'Arm_Guard_','Arm Guard','Armor',10000,150,50,1,true,true,20,true,1); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_ninja`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2119,'Improved_Arm_Guard','Advanced Arm Guard','Armor',40000,150,45,true,true,50,true,1,'bonus bMdef,5;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_ninja`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2120,'Improved_Arm_Guard_','Advanced Arm Guard','Armor',40000,150,45,1,true,true,50,true,1,'bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_kagerouoboro`,`job_ninja`,`location_left_hand`,`equip_level_min`,`refineable`,`view`) VALUES (2117,'Arm_Guard','Arm Guard','Armor',10000,150,50,true,true,true,20,true,1); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_kagerouoboro`,`job_ninja`,`location_left_hand`,`equip_level_min`,`refineable`,`view`) VALUES (2118,'Arm_Guard_','Arm Guard','Armor',10000,150,50,1,true,true,true,20,true,1); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_kagerouoboro`,`job_ninja`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2119,'Improved_Arm_Guard','Advanced Arm Guard','Armor',40000,150,45,true,true,true,50,true,1,'bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_kagerouoboro`,`job_ninja`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2120,'Improved_Arm_Guard_','Advanced Arm Guard','Armor',40000,150,45,1,true,true,true,50,true,1,'bonus bMdef,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_left_hand`,`refineable`,`view`,`script`) VALUES (2121,'Memorize_Book_','Memory Book','Armor',20,1000,25,1,true,true,true,true,true,true,5,'bonus bInt,1; bonus bMdef,2;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2122,'Platinum_Shield','Platinum Shield','Armor',20,1200,95,true,false,false,true,true,true,68,true,4,'bonus bMdef,5; bonus2 bSubSize,Size_Medium,15; bonus2 bSubSize,Size_Large,15; bonus2 bSubRace,RC_Undead,10; bonus5 bAutoSpellWhenHit,"NPC_MAGICMIRROR",7,150,BF_MAGIC,0;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2123,'Orleans_Server','Orleans\'s Server','Armor',20,1000,75,1,true,false,false,true,true,true,55,true,4,'bonus bMdef,2; bonus bMagicDamageReturn,5;'); @@ -943,13 +943,13 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2131,'Magic_Study_Vol1','Magic Bible Vol1','Armor',20,1000,18,1,true,true,true,true,true,70,true,5,'bonus bMdef,3; bonus bInt,2; bonus2 bAddEffWhenHit,Eff_Stun,1000;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_left_hand`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2132,'Shelter_Resistance','Shell Of Resistance','Armor',20,9,true,2,100,true,true,true,true,true,true,true,true,'bonus2 bSubEle,Ele_All,20; bonus bShortWeaponDamageReturn,1; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bAllStats,1; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_upper`,`class_third_upper`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2133,'Tournament_Shield','Tournament Shield','Armor',20,1000,105,1,true,true,true,true,true,true,50,true,4,'bonus2 bAddClass,Class_All,1; if( Class == Job_Lord_Knight ) bonus bAspdRate,-5;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2134,'Shield_Of_Naga','Shield of Naga','Armor',20,500,35,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,70,true,2,'.@r = getrefine(); bonus bMdef,3; if(.@r<11) { autobonus2 "{ bonus bShortWeaponDamageReturn,("+.@r+"*3); }",10,5000,BF_WEAPON,"{ specialeffect2 EF_GUARD; }"; } else { autobonus2 "{ bonus bShortWeaponDamageReturn,("+.@r+"*3); }",10,5000+(.@r/2*1000),BF_WEAPON,"{ specialeffect2 EF_GUARD; }"; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2134,'Shield_Of_Naga','Shield of Naga','Armor',20,500,35,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,70,true,2,'.@r = getrefine(); bonus bMdef,3; if(.@r<11) { autobonus2 "{ bonus bShortWeaponDamageReturn,("+.@r+"*3); }",10,5000,BF_WEAPON,"{ specialeffect2 EF_GUARD; }"; } else { autobonus2 "{ bonus bShortWeaponDamageReturn,("+.@r+"*3); }",10,5000+(.@r/2*1000),BF_WEAPON,"{ specialeffect2 EF_GUARD; }"; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_rogue`,`class_upper`,`class_third_upper`,`location_left_hand`,`equip_level_min`,`refineable`,`view`) VALUES (2135,'Shadow_Guard','Shadow Guard','Armor',20,800,52,1,true,true,true,true,70,true,2); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_left_hand`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2136,'Cracked_Buckler','Cracked Buckler','Armor',5,true,2,100,true,true,true,true,true,true,true,true,'bonus bAgi,2; bonus2 bSubEle,Ele_Neutral,10; bonus3 bAutoSpellWhenHit,"PR_KYRIE",10,10; bonus bMdef,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_left_hand`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2137,'Valkyrja\'s_Shield_C','Neo Valkyrja\'s Shield','Armor',5,true,false,false,true,true,true,95,4,100,true,true,true,true,true,true,true,true,'bonus2 bSubEle,Ele_Water,20; bonus2 bSubEle,Ele_Fire,20; bonus2 bSubEle,Ele_Dark,20; bonus2 bSubEle,Ele_Undead,20; bonus bMdef,5;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2138,'Bradium_Shield','Bradium Shield','Armor',20,1800,98,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,65,true,3,'bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",60; bonus bAgi,-1; bonus bMaxHP,500;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_blacksmith`,`location_left_hand`,`equip_level_min`,`view`) VALUES (2139,'Flame_Thrower','Flame Thrower','Armor',20000,2000,60,true,true,99,1); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_knight`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2140,'Energy_Rune_Guard','Energy Rune Guard','Armor',20,70,1,true,true,99,true,4,100,true,true,true,true,true,true,true,true,'bonus bMaxSPrate,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2138,'Bradium_Shield','Bradium Shield','Armor',20,1800,98,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,65,true,3,'bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",60; bonus bAgi,-1; bonus bMaxHP,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`equip_level_min`,`view`) VALUES (2139,'Flame_Thrower','Flame Thrower','Armor',20000,2000,60,true,true,true,true,true,99,1); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2140,'Energy_Rune_Guard','Energy Rune Guard','Armor',20,70,1,true,true,true,true,true,99,true,4,100,true,true,true,true,true,true,true,true,'bonus bMaxSPrate,2;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_left_hand`,`equip_level_min`,`view`,`script`) VALUES (2141,'Freyja_SShield7','Freyja Spirit Shield','Armor',300,5,true,20,1,'bonus2 bSubSize,Size_Medium,25;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_left_hand`,`equip_level_min`,`view`,`script`) VALUES (2142,'Freyja_SShield30','Freyja Spirit Shield','Armor',300,5,true,20,1,'bonus2 bSubSize,Size_Medium,25;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_left_hand`,`equip_level_min`,`view`,`script`) VALUES (2143,'Freyja_SShield60','Freyja Spirit Shield','Armor',300,5,true,20,1,'bonus2 bSubSize,Size_Medium,25;'); @@ -957,21 +957,21 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`def REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_left_hand`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2145,'Time_Keepr_Shield','Time Keeper Shield','Armor',30000,20,true,true,3,100,true,true,true,true,true,true,'bonus bMdef,1; bonus2 bSubEle,Ele_Neutral,10; bonus2 bSubSize,Size_Medium,25;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`) VALUES (2146,'Siver_Guard','Silver Guard','Armor',12500,300,60,1,true,22,true,1); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_left_hand`,`equip_level_min`,`refineable`,`view`) VALUES (2147,'Round_Buckler','Round Buckleer','Armor',24000,600,90,1,true,false,false,true,true,true,22,true,2); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`equip_level_min`,`refineable`,`view`) VALUES (2148,'Rotha_Shield','Rosa Shield','Armor',56000,1300,130,1,true,true,true,true,100,true,3); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`equip_level_min`,`refineable`,`view`) VALUES (2148,'Rotha_Shield','Rosa Shield','Armor',56000,1300,130,1,true,true,true,true,true,true,100,true,3); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (2149,'Upg_Guard','Upg Guard','Armor',20,150,25,1,true,1,true,1,100,true,'bonus bMaxHPrate,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_rogue`,`job_swordman`,`job_thief`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (2150,'Upg_Buckler','Upg Buckler','Armor',20,300,45,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,true,2,100,true,'bonus bMaxHPrate,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (2151,'Upg_Shield','Upg Shield','Armor',20,650,65,1,true,true,true,true,1,true,3,100,true,'bonus bMaxHPrate,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_left_hand`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2152,'Anti_Demon_Shield_C','Anti-Demon Shield','Armor',120,true,1,3,100,true,true,true,true,true,true,true,true,'bonus2 bSubRace,RC_DemiHuman,25; bonus2 bSubRace,RC_Player_Human,25; bonus2 bSubRace,RC_Demon,25; bonus bMaxHP,400;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2153,'Imperial_Guard','Imperial Guard','Armor',20,2500,120,1,true,true,102,true,4,'.@r = getrefine(); bonus bMdef,5; bonus2 bSkillAtk,"LG_SHIELDPRESS",(.@r>=6?20+((.@r-5)*2):20);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2153,'Imperial_Guard','Imperial Guard','Armor',20,2500,120,1,true,true,true,true,true,102,true,4,'.@r = getrefine(); bonus bMdef,5; bonus2 bSkillAtk,"LG_SHIELDPRESS",(.@r>=6?20+((.@r-5)*2):20);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`) VALUES (2154,'Toy_Shield','Toy Shield','Armor',500,1,1,true,10,true,1); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_left_hand`,`refineable`,`view`) VALUES (2155,'Academy_Shield','Academy Shield','Armor',1500,3,1,true,false,false,true,true,4); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_priest`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2156,'Bible_Of_Promise1','Bible of Promise(1st Vol.)','Armor',20,500,10,1,true,true,110,true,5,'bonus bMdef,2; skill "ALL_ODINS_POWER",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2156,'Bible_Of_Promise1','Bible of Promise(1st Vol.)','Armor',20,500,10,1,true,true,true,true,true,110,true,5,'bonus bMdef,2; skill "ALL_ODINS_POWER",1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`refineable`,`view`,`script`) VALUES (2157,'Insecticide','Pesticide','Armor',20,100,true,true,3,'bonus2 bAddRace,RC_Insect,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2158,'Ramor_Shield_Undead','Ramor Shield','Armor',20,1300,50,1,true,65,true,3,'bonus2 bSubDefEle,Ele_Undead,5; bonus2 bMagicSubDefEle,Ele_Undead,5; bonus2 bSubRace,RC_DemiHuman,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2159,'Sharel_Shield','Sharel Shield','Armor',20,1300,50,1,true,65,true,3,'bonus2 bSubDefEle,Ele_Fire,5; bonus2 bMagicSubDefEle,Ele_Fire,5; bonus2 bSubRace,RC_Demon,5;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2160,'Giant_Shield','Giant Shield','Armor',56000,2800,130,1,true,true,true,true,100,true,3,'bonus2 bSubSize,Size_Large,5; if(getrefine()>=9){ bonus2 bSubSize,Size_Large,5; }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_wizard`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2161,'Geffenia_Book_Water','Geffenia Tomb of Water','Armor',56000,1000,30,1,true,true,100,true,5,'bonus bMdef,2; bonus bInt,1; if(readparam(bInt)>=120){ bonus bMatk,10; bonus bMaxHP,800; }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_priest`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2162,'Bible_Of_Promise2','Bible of Promise(2nd Vol.)','Armor',20,500,20,1,true,true,140,true,5,'bonus bMdef,5; skill "ALL_ODINS_POWER",2; bonus bHealPower,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2160,'Giant_Shield','Giant Shield','Armor',56000,2800,130,1,true,true,true,true,true,true,100,true,3,'bonus2 bSubSize,Size_Large,5; if(getrefine()>=9){ bonus2 bSubSize,Size_Large,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2161,'Geffenia_Book_Water','Geffenia Tomb of Water','Armor',56000,1000,30,1,true,true,true,true,true,100,true,5,'bonus bMdef,2; bonus bInt,1; if(readparam(bInt)>=120){ bonus bMatk,10; bonus bMaxHP,800; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2162,'Bible_Of_Promise2','Bible of Promise(2nd Vol.)','Armor',20,500,20,1,true,true,true,true,true,140,true,5,'bonus bMdef,5; skill "ALL_ODINS_POWER",2; bonus bHealPower,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2163,'Flow_Shield','Flow Shield','Armor',20,1300,50,1,true,65,true,3,'bonus2 bSubDefEle,Ele_Water,5; bonus2 bMagicSubDefEle,Ele_Water,5; bonus2 bSubRace,RC_Brute,-5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2164,'Sombre_Shield','Sombre Shield','Armor',20,1300,50,1,true,65,true,3,'bonus2 bSubDefEle,Ele_Dark,5; bonus2 bMagicSubDefEle,Ele_Dark,5; bonus2 bSubRace,RC_Undead,-5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2165,'Sol_Shield','Sol Shield','Armor',20,1300,50,1,true,65,true,3,'bonus2 bSubDefEle,Ele_Earth,5; bonus2 bMagicSubDefEle,Ele_Earth,5; bonus2 bSubRace,RC_Plant,-5;'); @@ -980,9 +980,9 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (2168,'Immuned_Shield','Immune Shield','Armor',20,700,55,1,true,1,true,4,100,true,'.@r = getrefine(); if (.@r>=5) bonus2 bSubEle,Ele_Neutral,min(.@r,12)-4; if(.@r>6) bonus2 bSubEle,Ele_Neutral,5; if(.@r>8) { bonus2 bSubEle,Ele_Fire,5; bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Wind,5; bonus2 bSubEle,Ele_Earth,5; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2169,'Kalasak','Kalasag','Armor',20,400,40,true,1,true,1,'bonus2 bSubClass,Class_Boss,getrefine()/3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2170,'Bayani_Kalasak','Bayani Kalasag','Armor',20,400,40,1,true,1,true,1,'bonus2 bSubClass,Class_Boss,getrefine()/3;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_ninja`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2171,'Fox_Armguard','Fox Wrist Guard','Armor',40000,200,45,1,true,true,100,true,1,'bonus bFlee,5;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_ninja`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2172,'Wolf_Armguard','Wolf Wrist Guard','Armor',45000,250,70,1,true,true,100,true,1,'autobonus "{ bonus bBaseAtk,100; bonus bFlee,-50; }",20,5000,BF_WEAPON,"{ specialeffect2 EF_TEIHIT1; }";'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_ninja`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2173,'Crescent_Armguard','Crescent Wrist Guard','Armor',45000,250,45,1,true,true,100,true,1,'bonus bDelayRate,-(getrefine()*2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_kagerouoboro`,`job_ninja`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2171,'Fox_Armguard','Fox Wrist Guard','Armor',40000,200,45,1,true,true,true,100,true,1,'bonus bFlee,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_kagerouoboro`,`job_ninja`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2172,'Wolf_Armguard','Wolf Wrist Guard','Armor',45000,250,70,1,true,true,true,100,true,1,'autobonus "{ bonus bBaseAtk,100; bonus bFlee,-50; }",20,5000,BF_WEAPON,"{ specialeffect2 EF_TEIHIT1; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_kagerouoboro`,`job_ninja`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2173,'Crescent_Armguard','Crescent Wrist Guard','Armor',45000,250,45,1,true,true,true,100,true,1,'bonus bDelayRate,-(getrefine()*2);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2174,'Lumiere_Shield','Lumiere Shield','Armor',20,1300,50,1,true,65,true,3,'bonus2 bSubDefEle,Ele_Holy,5; bonus2 bMagicSubDefEle,Ele_Holy,5; bonus2 bSubRace,RC_Dragon,-5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2175,'Esprit_Shield','Spirit Shield','Armor',20,1300,50,1,true,65,true,3,'bonus2 bSubDefEle,Ele_Ghost,5; bonus2 bMagicSubDefEle,Ele_Ghost,5; bonus2 bSubRace,RC_Angel,-5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2176,'Dark_Book','Black Book','Armor',20,500,80,1,true,65,true,5,'bonus bMdef,5; .@r = getrefine(); bonus3 bAutoSpellWhenHit,"NPC_DRAGONFEAR",1,(.@r<=6)?(10):((.@r<=8)?(20):(30));'); @@ -994,8 +994,8 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`equip_level_min`,`view`,`script`) VALUES (2182,'Hervor_Alvitr','Hervor Alvitr','Armor',3000,150,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,100,2,'bonus bMdef,10; bonus bVit,20; bonus2 bSubRace,RC_All,30; bonus bUnbreakableShield; 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;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2183,'Impr_Angel\'s_Safeguard','Advanced Angelic Guard','Armor',10000,400,30,1,true,true,true,99,true,1,'bonus2 bSubRace,RC_Demon,5; bonus2 bSubEle,Ele_All,5; bonus2 bSubEle,Ele_Neutral,-5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2185,'Magic_Reflector','Magic Reflect','Armor',10,1000,50,1,true,99,true,3,'bonus bMdef,10; bonus bMagicDamageReturn,3+((getrefine()>=9) ? 3 : 0);'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`magic_attack`,`defense`,`slots`,`job_priest`,`job_sage`,`job_soullinker`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2186,'Encyclopedia_Revision','Great Encyclopedia Revision','Armor',10,200,5,50,1,true,true,true,true,99,true,4,'bonus bInt,3; bonus bDex,2; .@r = getrefine(); bonus bCritical,3+((.@r >= 7) ? 2 : 0); if(.@r >= 9) bonus bMatk,5;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2187,'Shield_Of_Gray','Shield of Gray','Armor',10,2000,75,1,true,true,true,true,120,true,3,'.@r = getrefine(); bonus2 bSubEle,Ele_Holy,30+.@r; bonus bMdef,9+.@r/3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`magic_attack`,`defense`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2186,'Encyclopedia_Revision','Great Encyclopedia Revision','Armor',10,200,5,50,1,true,true,true,true,99,true,4,'bonus bInt,3; bonus bDex,2; .@r = getrefine(); bonus bCritical,3+((.@r >= 7) ? 2 : 0); if(.@r >= 9) bonus bMatk,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2187,'Shield_Of_Gray','Shield of Gray','Armor',10,2000,75,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,120,true,3,'.@r = getrefine(); bonus2 bSubEle,Ele_Holy,30+.@r; bonus bMdef,9+.@r/3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2188,'Svalinn_J','Svalinn','Armor',10,500,80,1,true,65,true,3,'.@r = getrefine(); bonus2 bSubEle,Ele_Water,10; bonus bMaxHPrate,1*(.@r/3); bonus2 bSubEle,Ele_Water,5*(.@r/3); bonus bMdef,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2189,'Mad_Bunny','Mad Bunny Shield','Armor',10,100,40,1,true,30,true,6,'bonus2 bSubEle,Ele_All,5; bonus bMdef,6; bonus bDex,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2190,'Ancient_Shield_Of_Aeon','Ancient Shield Of Aeon','Armor',200,5,true,true,true,true,true,true,true,true,true,true,true,true,true,130,true,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;'); @@ -1008,10 +1008,10 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`view`) VALUES (2203,'Glasses','Glasses','Armor',4000,100,true,3); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_mid`,`view`) VALUES (2204,'Glasses_','Glasses','Armor',4000,100,1,true,3); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`view`) VALUES (2205,'Diver\'s_Goggles','Diver Goggles','Armor',3500,100,true,10); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`gender`,`location_head_top`,`refineable`,`view`,`script`) VALUES (2206,'Wedding_Veil','Wedding Veil','Armor',23000,100,'Female',true,true,44,'bonus bMdef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`refineable`,`view`,`script`) VALUES (2206,'Wedding_Veil','Wedding Veil','Armor',23000,100,true,true,44,'bonus bMdef,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`view`,`script`) VALUES (2207,'Fancy_Flower','Fancy Flower','Armor',20,100,true,4,'bonus2 bSubRace,RC_Plant,10;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`gender`,`location_head_top`,`refineable`,`view`,`script`) VALUES (2208,'Ribbon','Ribbon','Armor',800,100,1,'Female',true,true,17,'bonus bMdef,3;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`gender`,`location_head_top`,`refineable`,`view`,`script`) VALUES (2209,'Ribbon_','Ribbon','Armor',800,100,1,1,'Female',true,true,17,'bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (2208,'Ribbon','Ribbon','Armor',800,100,1,true,true,17,'bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (2209,'Ribbon_','Ribbon','Armor',800,100,1,1,true,true,17,'bonus bMdef,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`view`) VALUES (2210,'Hair_Band','Hair Band','Armor',500,100,1,true,9); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (2211,'Bandana','Bandana','Armor',400,100,1,true,true,6); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`view`) VALUES (2212,'Eye_Bandage','Eye Patch','Armor',1000,100,true,13); @@ -1036,8 +1036,8 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_head_top`,`refineable`,`script`) VALUES (2231,'Gemmed_Sallet_','Gemmed Sallet','Armor',50000,500,8,1,true,true,true,true,true,true,true,true,true,true,true,'bonus bMdef,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_head_top`,`refineable`,`view`,`script`) VALUES (2232,'Circlet','Circlet','Armor',7500,300,6,true,true,true,true,true,true,true,true,true,18,'bonus bMdef,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_head_top`,`refineable`,`view`,`script`) VALUES (2233,'Circlet_','Circlet','Armor',7500,300,6,1,true,true,true,true,true,true,true,true,true,18,'bonus bMdef,3;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`gender`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2234,'Tiara','Tiara','Armor',20,400,7,true,false,false,'Female',true,45,true,19,'bonus bInt,2;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`gender`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2235,'Crown','Crown','Armor',20,400,7,true,false,false,'Male',true,45,true,45,'bonus bInt,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2234,'Tiara','Tiara','Armor',20,400,7,true,false,false,true,45,true,19,'bonus bInt,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2235,'Crown','Crown','Armor',20,400,7,true,false,false,true,45,true,45,'bonus bInt,2;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (2236,'Santa\'s_Hat','Santa Hat','Armor',20,100,1,true,true,20,'bonus bMdef,1; bonus bLuk,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`) VALUES (2237,'Weird_Goatee','Bandit Beard','Armor',2,100,true,21); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`) VALUES (2238,'Weird_Moustache','Moustache','Armor',2,100,true,22); @@ -1122,8 +1122,8 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_blacksmith`,`job_merchant`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2318,'Clothes_Of_The_Lord','Lord\'s Clothes','Armor',20,2500,59,1,true,true,true,true,70,true,'bonus bMdef,5; bonus bInt,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2319,'Glittering_Clothes','Glittering Jacket','Armor',20,2500,58,1,true,false,false,true,60,true,'bonus bMdef,5; bonus2 bAddEff,Eff_Blind,300;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`refineable`) VALUES (2320,'Formal_Suit','Formal Suit','Armor',20,300,40,1,true,false,false,true,true); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_mage`,`job_merchant`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_swordman`,`job_wizard`,`location_armor`,`refineable`,`script`) VALUES (2321,'Silk_Robe','Silk Robe','Armor',8000,400,20,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,'bonus bMdef,10;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_mage`,`job_merchant`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_swordman`,`job_wizard`,`location_armor`,`refineable`,`script`) VALUES (2322,'Silk_Robe_','Silk Robe','Armor',8000,400,20,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,'bonus bMdef,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_mage`,`job_merchant`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_armor`,`refineable`,`script`) VALUES (2321,'Silk_Robe','Silk Robe','Armor',8000,400,20,true,true,true,true,true,true,true,true,true,true,true,true,true,true,'bonus bMdef,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_mage`,`job_merchant`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_armor`,`refineable`,`script`) VALUES (2322,'Silk_Robe_','Silk Robe','Armor',8000,400,20,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,'bonus bMdef,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_acolyte`,`job_monk`,`job_priest`,`location_armor`,`refineable`) VALUES (2323,'Scapulare','Scapulare','Armor',6500,400,24,true,true,true,true,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`location_armor`,`refineable`) VALUES (2324,'Scapulare_','Scapulare','Armor',6500,400,24,1,true,true,true,true,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_merchant`,`job_monk`,`job_priest`,`location_armor`,`refineable`,`script`) VALUES (2325,'Saint_Robe','Saint\'s Robe','Armor',54000,600,50,true,true,true,true,true,true,true,true,'bonus bMdef,5;'); @@ -1136,9 +1136,9 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_armor`,`refineable`) VALUES (2332,'Silver_Robe','Silver Robe','Armor',7000,700,23,true,true,true,true,true,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_armor`,`refineable`) VALUES (2333,'Silver_Robe_','Silver Robe','Armor',7000,700,23,1,true,true,true,true,true,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2334,'Mage_Coat','Mage Coat','Armor',20,600,40,true,true,true,true,true,50,true,'bonus bMdef,5; bonus bInt,1;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_assassin`,`job_ninja`,`job_rogue`,`job_thief`,`location_armor`,`refineable`,`script`) VALUES (2335,'Thief_Clothes','Thief Clothes','Armor',74000,100,40,true,true,true,true,true,true,'bonus bAgi,1;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_assassin`,`job_ninja`,`job_rogue`,`job_thief`,`location_armor`,`refineable`,`script`) VALUES (2336,'Thief_Clothes_','Thief Clothes','Armor',74000,100,40,1,true,true,true,true,true,true,'bonus bAgi,1;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_assassin`,`job_ninja`,`job_rogue`,`job_thief`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2337,'Ninja_Suit','Ninja Suit','Armor',20,1500,58,true,true,true,true,true,50,true,'bonus bAgi,1; bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_assassin`,`job_kagerouoboro`,`job_ninja`,`job_rogue`,`job_thief`,`location_armor`,`refineable`,`script`) VALUES (2335,'Thief_Clothes','Thief Clothes','Armor',74000,100,40,true,true,true,true,true,true,true,'bonus bAgi,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_assassin`,`job_kagerouoboro`,`job_ninja`,`job_rogue`,`job_thief`,`location_armor`,`refineable`,`script`) VALUES (2336,'Thief_Clothes_','Thief Clothes','Armor',74000,100,40,1,true,true,true,true,true,true,true,'bonus bAgi,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_assassin`,`job_kagerouoboro`,`job_ninja`,`job_rogue`,`job_thief`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2337,'Ninja_Suit','Ninja Suit','Armor',20,1500,58,true,true,true,true,true,true,50,true,'bonus bAgi,1; bonus bMdef,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`refineable`,`script`) VALUES (2338,'Wedding_Dress','Wedding Dress','Armor',43000,500,10,true,false,false,true,true,'bonus bMdef,15;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_armor`,`refineable`) VALUES (2339,'G_Strings','Pantie','Armor',1000,100,22,true,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`) VALUES (2340,'Novice_Breast','Novice Breastplate','Armor',89000,500,4,1,true,true,true,10,true); @@ -1160,7 +1160,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_monk`,`job_priest`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2356,'Vestment_Of_Grace','Blessed Holy Robe','Armor',20,2500,45,1,true,true,true,70,true,'bonus bMdef,5; bonus2 bResEff,Eff_Blind,8000;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2357,'Valkyrie_Armor','Valkyrian Armor','Armor',2800,55,1,true,false,false,true,true,true,1,true,'bonus bAllStats,1; bonus bUnbreakableArmor; 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;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_armor`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2358,'Dress_Of_Angel','Angel\'s Dress','Armor',20,1000,5,true,100,true,true,true,true,true,true,true,'bonus bLuk,4;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_assassin`,`job_ninja`,`job_rogue`,`job_thief`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2359,'Ninja_Suit_','Ninja Suit','Armor',20,1500,58,1,true,true,true,true,true,50,true,'bonus bAgi,1; bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_assassin`,`job_kagerouoboro`,`job_ninja`,`job_rogue`,`job_thief`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2359,'Ninja_Suit_','Ninja Suit','Armor',20,1500,58,1,true,true,true,true,true,true,50,true,'bonus bAgi,1; bonus bMdef,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_sage`,`job_soullinker`,`job_wizard`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2360,'Robe_Of_Casting_','Robe of Cast','Armor',124800,1100,40,1,true,true,true,true,75,true,'bonus bVariableCastrate,-3; bonus bMdef,4;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2361,'Blue_Aodai','Blue Robe','Armor',20,500,true,false,false,true,1,true,'bonus bAllStats,3; bonus bMdef,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2362,'Red_Aodai','Red Robe','Armor',20,500,true,false,false,true,1,true,'bonus bAllStats,3; bonus bMdef,5;'); @@ -1179,7 +1179,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`class_upper`,`class_third_upper`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2375,'Diabolus_Armor','Diabolus Armor','Armor',20,600,79,1,true,true,true,true,true,true,true,true,true,true,true,true,55,true,'bonus bStr,2; bonus bDex,1; bonus bMdef,5; bonus bMaxHP,150; bonus2 bResEff,Eff_Stun,500; bonus2 bResEff,Eff_Stone,500;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2376,'Assaulter_Plate','Assaulter Plate','Armor',10,57,1,true,true,true,true,true,true,true,true,true,80,true,100,true,true,true,true,true,true,true,'bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_alchemist`,`job_blacksmith`,`job_merchant`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2377,'Elite_Engineer_Armor','Elite Engineer Armor','Armor',10,50,1,true,true,true,true,80,true,100,true,true,true,true,true,true,true,'bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_assassin`,`job_ninja`,`job_rogue`,`job_thief`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2378,'Assassin_Robe','Assassin Robe','Armor',10,41,1,true,true,true,true,true,80,true,100,true,true,true,true,true,true,true,'bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_assassin`,`job_kagerouoboro`,`job_ninja`,`job_rogue`,`job_thief`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2378,'Assassin_Robe','Assassin Robe','Armor',10,41,1,true,true,true,true,true,true,80,true,100,true,true,true,true,true,true,true,'bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2379,'Warlock_Battle_Robe','Warlock\'s Battle Robe','Armor',10,36,1,true,true,true,true,true,80,true,100,true,true,true,true,true,true,true,'bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2380,'Medic_Robe','Medic\'s Robe','Armor',10,25,1,true,true,true,true,80,true,100,true,true,true,true,true,true,true,'bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2381,'Elite_Archer_Suit','Elite Archer Suit','Armor',10,35,1,true,true,true,true,80,true,100,true,true,true,true,true,true,true,'bonus bMaxHP,150; bonus bMdef,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;'); @@ -1187,10 +1187,10 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_armor`,`equip_level_min`,`script`) VALUES (2383,'Brynhild','Brynhild','Armor',20,400,120,true,94,'bonus bMdef,10; bonus bMaxHP,20*BaseLevel; bonus bMaxSP,5*BaseLevel; bonus2 bAddClass,Class_All,10; bonus bMatkRate,10; bonus bUnbreakableArmor; bonus bNoKnockback;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_armor`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2384,'Spritual_Tunic','Spiritual Tunic','Armor',20,10,true,100,true,true,true,true,true,true,true,true,'bonus bMdef,5; 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;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_armor`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`,`unequip_script`) VALUES (2385,'Recuperative_Armor','Recuperative Armor','Armor',20,12,true,100,true,true,true,true,true,true,true,true,'bonus bNoRegen,1; bonus bNoRegen,2; bonus bHPGainValue,60; bonus bSPGainValue,6; bonus bMagicHPGainValue,60; bonus bMagicSPGainValue,6;','heal 0,-100;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2386,'Chameleon_Armor','Chameleon Armor','Armor',20,1700,55,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,70,true,'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;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2387,'Sprint_Mail','Sprint Mail','Armor',20,1000,20,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,70,true,'bonus bVit,1; bonus bHPrecovRate,5; bonus bAddItemHealRate,3; bonus2 bSkillHeal,"AL_HEAL",3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2386,'Chameleon_Armor','Chameleon Armor','Armor',20,1700,55,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,70,true,'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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2387,'Sprint_Mail','Sprint Mail','Armor',20,1000,20,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,70,true,'bonus bVit,1; bonus bHPrecovRate,5; bonus bAddItemHealRate,3; bonus2 bSkillHeal,"AL_HEAL",3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_assassin`,`class_upper`,`class_third_upper`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2388,'Kandura','Kandura','Armor',20,300,36,1,true,true,true,true,70,true,'bonus bAgi,1; bonus bFlee,5; bonus bAspdRate,2;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2389,'Armor_Of_Naga','Armor of Naga','Armor',20,1000,45,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,70,true,'bonus bMdef,2; autobonus "{ bonus bBaseAtk,20; }",10,10000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2389,'Armor_Of_Naga','Armor of Naga','Armor',20,1000,45,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,70,true,'bonus bMdef,2; autobonus "{ bonus bBaseAtk,20; }",10,10000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }";'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`class_upper`,`class_third_upper`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2390,'Improved_Tights','Improved Tights','Armor',20,400,38,1,true,true,true,true,true,true,75,true,'bonus bMdef,2; bonus bFlee2,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_upper`,`class_third_upper`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (2391,'Life_Link','Life Link','Armor',20,3500,75,1,true,true,true,true,true,true,82,true,'bonus bVit,2; bonus bMdef,5; bonus bHPrecovRate,50;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_armor`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2392,'Old_Pant','Old Green Pantie','Armor',10,true,100,true,true,true,true,true,true,true,true,'bonus bStr,2; bonus bVit,2; bonus bMaxHP,200; bonus3 bAutoSpellWhenHit,"MO_CALLSPIRITS",5,20; bonus bMdef,1;'); @@ -1207,7 +1207,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`refineable`) VALUES (2404,'Shoes_','Shoes','Armor',3500,400,10,1,true,false,false,true,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_gunslinger`,`job_hunter`,`job_knight`,`job_merchant`,`job_rebellion`,`job_rogue`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`job_thief`,`location_shoes`,`refineable`) VALUES (2405,'Boots','Boots','Armor',18000,600,16,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_gunslinger`,`job_hunter`,`job_knight`,`job_merchant`,`job_rebellion`,`job_rogue`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`job_thief`,`location_shoes`,`refineable`) VALUES (2406,'Boots_','Boots','Armor',18000,600,16,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`gender`,`location_shoes`,`refineable`,`script`) VALUES (2407,'Chrystal_Pumps','Crystal Pumps','Armor',20,100,5,true,false,false,'Female',true,true,'bonus bMdef,10; bonus bLuk,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`refineable`,`script`) VALUES (2407,'Chrystal_Pumps','Crystal Pumps','Armor',20,100,5,true,false,false,true,true,'bonus bMdef,10; bonus bLuk,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_shoes`,`refineable`) VALUES (2408,'Cuffs','Shackles','Armor',5000,3000,18,true,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`refineable`,`script`) VALUES (2409,'Spiky_Heel','High Heels','Armor',8500,600,4,true,false,false,true,true,'bonus bMdef,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_shoes`,`equip_level_min`,`script`) VALUES (2410,'Sleipnir','Sleipnir','Armor',20,3500,40,true,94,'bonus bMdef,10; bonus bMaxHPrate,20; bonus bMaxSPrate,20; bonus bSPrecovRate,25; bonus bSpeedRate,25; bonus bInt,25;'); @@ -1215,7 +1215,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`job_knight`,`location_shoes`,`equip_level_min`,`refineable`) VALUES (2412,'Grave_','Greaves','Armor',54000,750,15,1,true,true,true,65,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_crusader`,`job_knight`,`job_swordman`,`location_shoes`,`equip_level_min`) VALUES (2413,'Safty_Boots','Safety Boots','Armor',34000,350,6,true,true,true,true,30); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_novice`,`job_supernovice`,`location_shoes`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (2414,'Novice_Boots','Novice Slippers','Armor',1,1,5,true,true,true,100,true,true,true,true,true,true,true); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`gender`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2415,'Slipper','Bunny Slipper','Armor',34000,300,3,1,true,false,false,'Female',true,30,true,'bonus bLuk,3; bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2415,'Slipper','Bunny Slipper','Armor',34000,300,3,1,true,false,false,true,30,true,'bonus bLuk,3; bonus bMdef,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2416,'Novice_Shoes','Novice Shoes','Armor',35000,500,8,1,true,true,true,40,true,'bonus bMaxHPrate,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2417,'Fricco_Shoes','Fricco\'s Shoes','Armor',30000,500,12,true,false,false,true,65,true,'bonus bAgi,2; bonus2 bAddItemGroupHealRate,IG_Potion,20;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2418,'Vidar\'s_Boots','Vidar\'s Boots','Armor',30000,650,13,true,false,false,true,65,true,'bonus bMaxHPrate,9; bonus bMaxSPrate,9;'); @@ -1233,14 +1233,14 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`def REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_shoes`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (2430,'Iron_Boots02','Iron Boots','Armor',800,5,true,true,100,true,true,true,true,true,true,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_shoes`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2431,'Valley_Shoes','Valley Shoes','Armor',20,10,true,100,true,true,true,true,true,true,true,'bonus bMaxHPrate,7; bonus bMaxSPrate,7;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`refineable`,`script`) VALUES (2432,'Spiky_Heel_','High Heels','Armor',8500,600,10,1,true,false,false,true,true,'bonus bMdef,5;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_shoes`,`refineable`,`script`) VALUES (2433,'Diabolus_Boots','Diabolus Boots','Armor',20,250,15,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,'bonus bMaxHP,(BaseLevel*10);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_shoes`,`refineable`,`script`) VALUES (2433,'Diabolus_Boots','Diabolus Boots','Armor',20,250,15,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,'bonus bMaxHP,(BaseLevel*10);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2434,'Black_Leather_Boots_','Black Leather Boots','Armor',20,500,16,1,true,false,false,true,true,true,55,true,'bonus bAgi,(getrefine()>=9?3:1);'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_ninja`,`job_rogue`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`job_thief`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2435,'Battle_Greave','Battle Greaves','Armor',10,15,1,true,true,true,true,true,true,true,true,true,true,true,true,true,80,true,100,true,true,true,true,true,true,true,'bonus bMaxHP,100; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_kagerouoboro`,`job_knight`,`job_merchant`,`job_ninja`,`job_rogue`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`job_thief`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2435,'Battle_Greave','Battle Greaves','Armor',10,15,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,80,true,100,true,true,true,true,true,true,true,'bonus bMaxHP,100; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_acolyte`,`job_archer`,`job_barddancer`,`job_hunter`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2436,'Combat_Boots','Combat Boots','Armor',10,9,1,true,true,true,true,true,true,true,true,true,true,true,80,true,100,true,true,true,true,true,true,true,'bonus bMaxHP,100; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_gunslinger`,`job_rebellion`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2437,'Battle_Boots','Battle Boots','Armor',10,9,1,true,true,true,80,true,100,true,true,true,true,true,true,true,'bonus bMaxHP,100; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2438,'Paw_Of_Cat','Paw Of Cat','Armor',10,300,true,80,true,100,true,true,true,true,true,true,'bonus bFlee,5; bonus bAgi,1; /* skill "ALL_CATCRY",1; */'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_shoes`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2439,'Refresh_Shoes','Refresh Shoes','Armor',20,9,true,100,true,true,true,true,true,true,true,true,'bonus bMaxHPrate,17; bonus bMaxSPrate,8; bonus2 bHPRegenRate,20,10000; bonus2 bSPRegenRate,3,10000;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2440,'Sprint_Shoes','Sprint Shoes','Armor',20,300,10,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,70,true,'bonus bAgi,1; bonus bSPrecovRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2440,'Sprint_Shoes','Sprint Shoes','Armor',20,300,10,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,70,true,'bonus bAgi,1; bonus bSPrecovRate,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`refineable`,`script`) VALUES (2441,'Beach_Sandal','Beach Sandals','Armor',20,200,true,true,'bonus bStr,1; bonus bInt,1; bonus bAgi,1; bonus2 bSubEle,Ele_Fire,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_shoes`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2442,'Boots_Perforated','Red Stocking Boots','Armor',7,true,100,true,true,true,true,true,true,true,true,'bonus bLuk,2; bonus bHPrecovRate,10; bonus bSPrecovRate,10; bonus3 bAutoSpellWhenHit,"WZ_QUAGMIRE",3,30; bonus bMdef,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (2443,'Fish_Shoes','Fisher\'s Boots','Armor',10,250,true,100,true,true,true,true,true,true,true); @@ -1265,28 +1265,28 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_shoes`,`equip_level_min`,`script`) VALUES (2462,'Sleipnir_C','Sleipnir','Armor',20,40,true,94,'bonus bMdef,10; bonus bMaxHPrate,20; bonus bMaxSPrate,20; bonus bSPrecovRate,15; bonus bSpeedRate,25;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_shoes`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (2463,'Feral_Boots','Feral Boots','Armor',20,12,true,75,100,true,true,true,true,true,true,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_shoes`,`equip_level_min`,`script`) VALUES (2464,'No_Fear_Shoes','No Fear Shoes','Armor',6,true,20,'bonus bStr,1; bonus bInt,1; bonus bDex,1;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_barddancer`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2465,'Dance_Shoes','Dance Shoes','Armor',20,300,15,1,true,true,105,true,'bonus bAgi,1; bonus bAspdRate,2; bonus2 bSkillUseSP,"WA_SWING_DANCE",32;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2465,'Dance_Shoes','Dance Shoes','Armor',20,300,15,1,true,true,true,true,'Female',true,105,true,'bonus bAgi,1; bonus bAspdRate,2; bonus2 bSkillUseSP,"WA_SWING_DANCE",32;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_shoes`,`equip_level_min`,`refineable`) VALUES (2466,'Training_Shoes','Training Shoes','Armor',20,300,1,true,1,true); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_wizard`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2467,'Golden_Rod_Shoes','Golden Rod Shoes','Armor',20,500,12,true,true,100,true,'bonus bMdef,2; bonus bMaxHP,500; bonus2 bSubEle,Ele_Wind,15;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_wizard`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2468,'Aqua_Shoes','Aqua Shoes','Armor',20,500,12,true,true,100,true,'bonus bMdef,2; bonus bMaxHP,500; bonus2 bSubEle,Ele_Water,15;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_wizard`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2469,'Crimson_Shoes','Crismons Shoes','Armor',20,500,12,true,true,100,true,'bonus bMdef,2; bonus bMaxHP,500; bonus2 bSubEle,Ele_Fire,15;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_wizard`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2470,'Forest_Shoes','Forest Shoes','Armor',20,500,12,true,true,100,true,'bonus bMdef,2; bonus bMaxHP,500; bonus2 bSubEle,Ele_Earth,15;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_priest`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2471,'Shoes_Of_Affection','Shoes Of Affection','Armor',20,300,12,true,true,100,true,'bonus bMaxHP,500; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Formless,-10; bonus2 bSubRace,RC_Undead,-10; bonus2 bSubRace,RC_Brute,-10; bonus2 bSubRace,RC_Player_Doram,-10; bonus2 bSubRace,RC_Plant,-10; bonus2 bSubRace,RC_Insect,-10; bonus2 bSubRace,RC_Fish,-10; bonus2 bSubRace,RC_Demon,-10; bonus2 bSubRace,RC_Angel,-10; bonus2 bSubRace,RC_Dragon,-10;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_priest`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2472,'Shoes_Of_Judgement','Shoes Of Judgement','Armor',20,300,12,true,true,100,true,'bonus2 bSkillAtk,"AB_JUDEX",30; bonus2 bSkillUseSP,"AB_JUDEX",-40; bonus bMaxSP,150;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2467,'Golden_Rod_Shoes','Golden Rod Shoes','Armor',20,500,12,true,true,true,true,true,100,true,'bonus bMdef,2; bonus bMaxHP,500; bonus2 bSubEle,Ele_Wind,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2468,'Aqua_Shoes','Aqua Shoes','Armor',20,500,12,true,true,true,true,true,100,true,'bonus bMdef,2; bonus bMaxHP,500; bonus2 bSubEle,Ele_Water,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2469,'Crimson_Shoes','Crismons Shoes','Armor',20,500,12,true,true,true,true,true,100,true,'bonus bMdef,2; bonus bMaxHP,500; bonus2 bSubEle,Ele_Fire,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2470,'Forest_Shoes','Forest Shoes','Armor',20,500,12,true,true,true,true,true,100,true,'bonus bMdef,2; bonus bMaxHP,500; bonus2 bSubEle,Ele_Earth,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2471,'Shoes_Of_Affection','Shoes Of Affection','Armor',20,300,12,true,true,true,true,true,100,true,'bonus bMaxHP,500; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Formless,-10; bonus2 bSubRace,RC_Undead,-10; bonus2 bSubRace,RC_Brute,-10; bonus2 bSubRace,RC_Player_Doram,-10; bonus2 bSubRace,RC_Plant,-10; bonus2 bSubRace,RC_Insect,-10; bonus2 bSubRace,RC_Fish,-10; bonus2 bSubRace,RC_Demon,-10; bonus2 bSubRace,RC_Angel,-10; bonus2 bSubRace,RC_Dragon,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2472,'Shoes_Of_Judgement','Shoes Of Judgement','Armor',20,300,12,true,true,true,true,true,100,true,'bonus2 bSkillAtk,"AB_JUDEX",30; bonus2 bSkillUseSP,"AB_JUDEX",-40; bonus bMaxSP,150;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_shoes`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2473,'Para_Team_Boots4','Eden Team Boots IV','Armor',20,true,60,100,true,true,true,true,true,true,true,'bonus bAgi,1; bonus bVit,1; bonus bHPrecovRate,28; bonus bSPrecovRate,12;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2474,'Lehmannza_Shoes','Lehmannza Shoes','Armor',20,500,3,1,true,60,true,'bonus bMdef,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2475,'Ur_Greave','Ur\'s Greaves','Armor',20,900,32,1,true,true,true,true,true,100,true,'bonus bMaxSP,40; .@r = getrefine(); if(.@r>7) bonus bMaxHPrate,.@r-7;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2476,'Peuz_Greave','Peuz\'s Greaves','Armor',20,900,32,1,true,true,true,true,true,100,true,'bonus bMaxSP,40; .@r = getrefine(); if(.@r>7) bonus bAgi,.@r-7;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_assassin`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2477,'Sabah_Shoes','Sapha Shoes','Armor',20,400,18,1,true,true,100,true,'bonus bMaxSP,30; bonus bLuk,3;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_assassin`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2478,'Nab_Shoes','Nab Shoes','Armor',20,400,18,1,true,true,100,true,'bonus bFlee,3; bonus bInt,2;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_hunter`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2479,'White_Wing_Boots','White Wing Boots','Armor',20,400,18,1,true,true,100,true,'bonus bAgi,2; bonus2 bSkillUseSP,"RA_AIMEDBOLT",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2477,'Sabah_Shoes','Sapha Shoes','Armor',20,400,18,1,true,true,true,true,true,100,true,'bonus bMaxSP,30; bonus bLuk,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2478,'Nab_Shoes','Nab Shoes','Armor',20,400,18,1,true,true,true,true,true,100,true,'bonus bFlee,3; bonus bInt,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2479,'White_Wing_Boots','White Wing Boots','Armor',20,400,18,1,true,true,true,true,true,100,true,'bonus bAgi,2; bonus2 bSkillUseSP,"RA_AIMEDBOLT",10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2480,'Black_Wing_Boots','Black Wing Boots','Armor',20,400,18,1,true,true,true,true,true,100,true,'bonus bInt,2; bonus bMaxSPrate,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_shoes`,`refineable`,`script`) VALUES (2481,'Rune_Boots','Rune Boots','Armor',20,100,5,true,true,'.@a = readparam(bStr); .@b = readparam(bInt); bonus bBaseAtk,(.@a>=120)?(20):((.@a>=90)?(10):(0)); bonus bMatkRate,(.@b>=120)?(5):((.@b>=90)?(3):(0));'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_shoes`,`script`) VALUES (2482,'Shoes_Of_Valor','Shoes Of Valor','Armor',4,true,'skill "AL_INCAGI",1; bonus bUseSPrate,10;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2483,'Siege_Greave','Siege Greaves','Armor',10,750,30,1,true,true,true,true,true,true,true,true,true,95,true,'bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2483,'Siege_Greave','Siege Greaves','Armor',10,750,30,1,true,true,true,true,true,true,true,95,true,'bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_gunslinger`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_merchant`,`job_ninja`,`job_rebellion`,`job_rogue`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`job_thief`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2484,'Siege_Boots','Siege Boots','Armor',10,500,20,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,95,true,'bonus bMdef,5; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_novice`,`job_priest`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_wizard`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2485,'Siege_Shoes','Siege Shoes','Armor',10,350,15,1,true,true,true,true,true,true,true,true,true,true,95,true,'bonus bMdef,10; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2486,'Shadow_Walk_','Shadow Walk','Armor',20,2000,1,true,false,false,true,75,true,'bonus bMdef,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2486,'Shadow_Walk_','Shadow Walk','Armor',20,2000,1,true,false,false,true,true,true,75,true,'bonus bMdef,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2487,'Vital_Tree_Shoes_','Vital Tree Shoes','Armor',20,500,16,1,true,false,false,true,60,true,'bonus bVit,2; bonus bMdef,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2488,'Fricco_Shoes_','Fricco Shoes','Armor',30000,500,12,1,true,false,false,true,65,true,'bonus bAgi,2; bonus2 bAddItemGroupHealRate,IG_Potion,20;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (2489,'Vidar\'s_Boots_','Vidar\'s Boots','Armor',30000,650,13,1,true,false,false,true,65,true,'bonus bMaxHPrate,9; bonus bMaxSPrate,9;'); @@ -1335,15 +1335,15 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`def REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_garment`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2534,'Ruffler','Ruffler','Armor',20,10,true,100,true,true,true,true,true,true,true,'bonus2 bSubEle,Ele_Neutral,17; bonus bFlee,17;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_garment`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2535,'Cloak_Of_Survival_C','Cloak Of Survival','Armor',1,5,true,true,true,true,true,100,true,true,true,true,true,true,true,true,'bonus bVit,10; bonus bMdef,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2536,'Skin_Of_Ventus','Skin of Ventus','Armor',20,250,7,1,true,false,false,true,60,true,'bonus bMdef,2; bonus bMaxHP,200; bonus bFlee,10;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_garment`,`refineable`,`script`) VALUES (2537,'Diabolus_Manteau','Diabolus Manteau','Armor',20,250,15,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,'bonus2 bSubEle,Ele_Neutral,5; bonus bMaxHP,100; bonus2 bAddDamageClass,1916,10; bonus2 bAddDamageClass,1917,10;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_ninja`,`job_rogue`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`job_thief`,`location_garment`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2538,'Commander_Manteau','Captain\'s Manteau','Armor',10,28,1,true,true,true,true,true,true,true,true,true,true,true,true,true,80,true,100,true,true,true,true,true,true,true,'bonus bMaxHP,50; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_garment`,`refineable`,`script`) VALUES (2537,'Diabolus_Manteau','Diabolus Manteau','Armor',20,250,15,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,'bonus2 bSubEle,Ele_Neutral,5; bonus bMaxHP,100; bonus2 bAddDamageClass,1916,10; bonus2 bAddDamageClass,1917,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_kagerouoboro`,`job_knight`,`job_merchant`,`job_ninja`,`job_rogue`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`job_thief`,`location_garment`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2538,'Commander_Manteau','Captain\'s Manteau','Armor',10,28,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,80,true,100,true,true,true,true,true,true,true,'bonus bMaxHP,50; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_acolyte`,`job_archer`,`job_barddancer`,`job_hunter`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_garment`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2539,'Commander_Manteau_','Commander\'s Manteau','Armor',10,20,1,true,true,true,true,true,true,true,true,true,true,true,80,true,100,true,true,true,true,true,true,true,'bonus bMaxHP,50; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_gunslinger`,`job_rebellion`,`location_garment`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2540,'Sheriff_Manteau','Sheriff\'s Manteau','Armor',10,20,1,true,true,true,80,true,100,true,true,true,true,true,true,true,'bonus bMaxHP,50; bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_garment`,`equip_level_min`,`script`) VALUES (2541,'Asprika','Asprika','Armor',20,400,40,true,94,'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;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2542,'Flame_Manteau','Flame Manteau of Naght Sieger','Armor',20,700,16,1,true,false,false,true,true,true,70,true,'bonus bMaxHPrate,5; bonus bMdef,2; bonus bMatkRate,1; bonus2 bAddEle,Ele_Fire,2;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_garment`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2543,'Sylphid_Manteau','Sylphid Manteau','Armor',20,9,true,100,true,true,true,true,true,true,true,true,'bonus bFlee,13; bonus2 bSubEle,Ele_Neutral,13; bonus bFlee2,1;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_garment`,`refineable`,`script`) VALUES (2544,'Leather_Of_Tendrilion','Leather of Tendrilion','Armor',20,300,14,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,'bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Earth,5; bonus2 bSubRace,RC_Plant,5; bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_monk`,`job_priest`,`class_upper`,`class_third_upper`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2545,'Musika','Musika','Armor',20,500,10,1,true,true,true,true,true,70,true,'bonus bMdef,3; bonus3 bAutoSpellwhenhit,"AL_HEAL",max(1,getskilllv("AL_HEAL")),20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_garment`,`refineable`,`script`) VALUES (2544,'Leather_Of_Tendrilion','Leather of Tendrilion','Armor',20,300,14,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,'bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Earth,5; bonus2 bSubRace,RC_Plant,5; bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_priest`,`class_upper`,`class_third_upper`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2545,'Musika','Musika','Armor',20,500,10,1,true,true,true,true,70,true,'bonus bMdef,3; bonus3 bAutoSpellwhenhit,"AL_HEAL",max(1,getskilllv("AL_HEAL")),20;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_garment`,`refineable`,`script`) VALUES (2546,'Beach_Manteau','Beach Manteau','Armor',20,600,1,true,true,'bonus bStr,1; bonus bInt,1; bonus2 bSubEle,Ele_Fire,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_garment`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2547,'Cheap_Running_Shirts','Cheap Undershirt','Armor',8,true,true,100,true,true,true,true,true,true,true,true,'bonus bDex,2; bonus bFlee,10; bonus2 bSubEle,Ele_Neutral,10; bonus bMdef,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_garment`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2548,'Muffler_C','Neo Muffler','Armor',5,true,false,false,true,true,true,95,100,true,true,true,true,true,true,true,true,'bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus bMaxHPrate,10; bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Fire,5; bonus2 bSubEle,Ele_Holy,5; bonus2 bSubEle,Ele_Dark,5;'); @@ -1367,20 +1367,20 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_garment`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2566,'Half_Asprika','Half Asprika','Armor',20,20,true,47,100,true,true,true,true,true,true,true,'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;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_archer`,`job_novice`,`job_supernovice`,`job_thief`,`class_normal`,`class_upper`,`class_baby`,`location_garment`,`refineable`) VALUES (2567,'Academy_Manteau','Academy Manteau','Armor',600,3,1,true,true,true,true,true,true,true,true,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_garment`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2568,'Muffler_Of_Roki','Loki\'s Muffler','Armor',20,400,10,true,100,100,true,true,true,true,true,true,'bonus bAgi,1; bonus2 bSkillAtk,"ASC_BREAKER",5; bonus2 bSkillAtk,"GC_CROSSIMPACT",5;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_priest`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2569,'Shawl_Of_Affection','Shawl Of Affection','Armor',20,400,12,true,true,100,true,'bonus bFlee2,5; autobonus2 "{ bonus2 bHPRegenRate,1000,5000; }",300,90000,BF_WEAPON; autobonus2 "{ bonus2 bHPRegenRate,1000,5000; }",400,90000,BF_MAGIC;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_priest`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2570,'Shawl_Of_Judgement','Shawl Of Judgement','Armor',20,400,12,true,true,100,true,'bonus bFlee,5; .@i = max(2,getskilllv("AB_ORATIO")); bonus5 bAutoSpellWhenHit,"AB_ORATIO",.@i,30,BF_WEAPON,0; bonus5 bAutoSpellWhenHit,"AB_ORATIO",.@i,40,BF_MAGIC,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2569,'Shawl_Of_Affection','Shawl Of Affection','Armor',20,400,12,true,true,true,true,true,100,true,'bonus bFlee2,5; autobonus2 "{ bonus2 bHPRegenRate,1000,5000; }",300,90000,BF_WEAPON; autobonus2 "{ bonus2 bHPRegenRate,1000,5000; }",400,90000,BF_MAGIC;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2570,'Shawl_Of_Judgement','Shawl Of Judgement','Armor',20,400,12,true,true,true,true,true,100,true,'bonus bFlee,5; .@i = max(2,getskilllv("AB_ORATIO")); bonus5 bAutoSpellWhenHit,"AB_ORATIO",.@i,30,BF_WEAPON,0; bonus5 bAutoSpellWhenHit,"AB_ORATIO",.@i,40,BF_MAGIC,0;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_garment`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2571,'Para_Team_Manteau2','Eden Team Manteau II','Armor',18,true,60,100,true,true,true,true,true,true,true,'bonus bFlee,12; bonus2 bSubEle,Ele_Neutral,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`) VALUES (2572,'Katabart_Sholder','Katabart Sholder','Armor',20,3000,4,1,true,70,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_garment`,`refineable`,`view`,`trade_override`,`trade_nodrop`) VALUES (2573,'Archangel_Wing','Archangel Wings','Armor',200,18,1,true,true,1,100,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2574,'Ur_Manteau','Ur\'s Manteau','Armor',20,600,20,true,true,true,true,true,100,true,'bonus bMaxHPrate,2; bonus2 bSubEle,Ele_Neutral,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2575,'Peuz_Manteau','Peuz\'s Manteau','Armor',20,600,16,true,true,true,true,true,100,true,'bonus bFlee,10; bonus bCritical,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_garment`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (2576,'Bravery_Bag','Adventurer\'s Backpack','Armor',200,20,1,true,true,2,100,true,'skill "BS_GREED",1; .@r = getrefine(); if(.@r>=7) { if(readparam(bStr)>=90) { bonus bBaseAtk,(.@r>=9)?30:20; } if(readparam(bInt)>=90) { bonus bMatk,(.@r>=9)?50:30; } if(readparam(bVit)>=90) { bonus2 bSubEle,Ele_Neutral,(.@r>=9)?10:5; } if(readparam(bAgi)>=90) { bonus bAspdRate,8; if(.@r>=9) { bonus bAspd,1; } } if(readparam(bDex)>=90) { bonus bLongAtkRate,(.@r>=9)?10:5; } if(readparam(bLuk)>=90) { bonus bCritAtkRate,(.@r>=9)?15:10; } }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_assassin`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2577,'Sabah_Hood','Sapha Hood','Armor',20,100,13,true,true,100,true,'bonus bFlee,12; bonus bCritical,getrefine();'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_assassin`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2578,'Nab_Hood','Nab Hood','Armor',20,100,13,true,true,100,true,'.@r = getrefine(); bonus bFlee,.@r*2; bonus bBaseAtk,.@r*2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2577,'Sabah_Hood','Sapha Hood','Armor',20,100,13,true,true,true,true,true,100,true,'bonus bFlee,12; bonus bCritical,getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2578,'Nab_Hood','Nab Hood','Armor',20,100,13,true,true,true,true,true,100,true,'.@r = getrefine(); bonus bFlee,.@r*2; bonus bBaseAtk,.@r*2;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`refineable`,`script`) VALUES (2579,'Magic_Stole','Magic Stole','Armor',20,700,8,1,true,true,'bonus bMdef,3; bonus bUseSPrate,-5; bonus bMaxSPrate,((getrefine()>=4)?6:3);'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_hunter`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2580,'White_Wing_Manteau','White Wing Manteau','Armor',20,200,15,true,true,100,true,'bonus bAgi,2; bonus bFlee,10; autobonus2 "{ bonus bFlee,20; }",20,7000,BF_LONG,"{ specialeffect2 EF_CHAINCOMBO; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2580,'White_Wing_Manteau','White Wing Manteau','Armor',20,200,15,true,true,true,true,true,100,true,'bonus bAgi,2; bonus bFlee,10; autobonus2 "{ bonus bFlee,20; }",20,7000,BF_LONG,"{ specialeffect2 EF_CHAINCOMBO; }";'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2581,'Black_Wing_Manteau','Black Wing Manteau','Armor',20,200,15,true,true,true,true,true,100,true,'.@r = getrefine(); bonus bInt,2; if(.@r>6) bonus bFlee2,.@r-6;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_priest`,`job_wizard`,`location_garment`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (2582,'Salvage_Cape','Salvage Cape','Armor',56000,400,1,true,true,true,130,true,'skill "NJ_UTSUSEMI",1; bonus2 bSkillCooldown,"NJ_UTSUSEMI",30000; bonus bUseSPrate,100;','heal 0,-1200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_priest`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_garment`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (2582,'Salvage_Cape','Salvage Cape','Armor',56000,400,1,true,true,true,true,true,true,130,true,'skill "NJ_UTSUSEMI",1; bonus2 bSkillCooldown,"NJ_UTSUSEMI",30000; bonus bUseSPrate,100;','heal 0,-1200;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (2583,'Holy_Cape','Holy Cape','Armor',20,100,5,1,true,50,true,'bonus bDex,-5; bonus bMdef,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`refineable`) VALUES (2584,'Wanderer_Outer','Wanderer Outer','Armor',20,500,8,1,true,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_garment`,`script`) VALUES (2585,'Muffler_Of_Valor','Muffler Of Valor','Armor',4,true,'bonus bSPrecovRate,10;'); @@ -1414,7 +1414,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2617,'Mitten_Of_Presbyter','Celebrant\'s Mitten','Armor',2,100,1,true,false,false,true,true,35,'bonus bInt,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2618,'Matyr\'s_Flea_Guard','Matyr\'s Leash','Armor',2,100,1,true,false,false,true,true,35,'bonus bAgi,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_archer`,`job_barddancer`,`job_hunter`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2619,'Thimble_Of_Archer','Bow Thimble','Armor',10000,100,true,true,true,true,true,65,'bonus bLongAtkRate,3;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_assassin`,`job_ninja`,`job_rogue`,`job_thief`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2620,'Ring_Of_Rogue','Rogue\'s Treasure','Armor',10000,100,true,true,true,true,true,true,70,'if(readparam(bStr)>=90){ bonus bHit,10; bonus bFlee,10; } if(readparam(bAgi)>=90){ bonus bBaseAtk,10; bonus bCritical,10; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_assassin`,`job_kagerouoboro`,`job_ninja`,`job_rogue`,`job_thief`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2620,'Ring_Of_Rogue','Rogue\'s Treasure','Armor',10000,100,true,true,true,true,true,true,true,70,'if(readparam(bStr)>=90){ bonus bHit,10; bonus bFlee,10; } if(readparam(bAgi)>=90){ bonus bBaseAtk,10; bonus bCritical,10; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2621,'Ring_','Ring','Armor',30000,200,1,true,false,false,true,true,90,'bonus bStr,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2622,'Earring_','Earring','Armor',30000,200,1,true,false,false,true,true,90,'bonus bInt,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2623,'Necklace_','Necklace','Armor',30000,200,1,true,false,false,true,true,90,'bonus bVit,1;'); @@ -1428,8 +1428,8 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2631,'First_Age_Ring','Celebration Ring','Armor',1,10,true,true,'bonus bAllStats,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2632,'Korean_Trinket','Korean Trinket','Armor',125000,100,1,true,false,false,true,true,65,'bonus bVit,1; bonus bDex,1; bonus bLuk,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2633,'Jade_Ring','Jade Ring','Armor',204000,100,true,false,false,true,true,80,'bonus bStr,2; bonus bInt,1;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`gender`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2634,'Bridegroom_Ring','Wedding Ring','Armor','Male',true,true,100,true,true,true,true,true,true,true,true,'skill "WE_MALE",1; skill "WE_FEMALE",1; skill "WE_CALLPARTNER",1; skill "WE_CALLALLFAMILY",1; skill "WE_ONEFOREVER",1;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`gender`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2635,'Bride_Ring','Wedding Ring','Armor','Female',true,true,100,true,true,true,true,true,true,true,true,'skill "WE_MALE",1; skill "WE_FEMALE",1; skill "WE_CALLPARTNER",1; skill "WE_CALLALLFAMILY",1; skill "WE_ONEFOREVER",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2634,'Bridegroom_Ring','Wedding Ring','Armor',true,true,100,true,true,true,true,true,true,true,true,'skill "WE_MALE",1; skill "WE_FEMALE",1; skill "WE_CALLPARTNER",1; skill "WE_CALLALLFAMILY",1; skill "WE_ONEFOREVER",1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2635,'Bride_Ring','Wedding Ring','Armor',true,true,100,true,true,true,true,true,true,true,true,'skill "WE_MALE",1; skill "WE_FEMALE",1; skill "WE_CALLPARTNER",1; skill "WE_CALLALLFAMILY",1; skill "WE_ONEFOREVER",1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2636,'Gold_Ring_','Gold Christmas Ring','Armor',30000,100,true,true,'bonus bLuk,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2637,'Silver_Ring_','Silver Christmas Ring','Armor',20000,100,true,true,'bonus bLuk,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2638,'Exorcize_Sachet','Sacred Incense','Armor',20000,100,true,true,'bonus bStr,1; bonus bLuk,1;'); @@ -1439,7 +1439,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (2642,'Serin\'s_Gold_Ring','Serin\'s Gold Ring','Armor',20,true,true,100,true,true,true,true,true,true,true,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`) VALUES (2643,'Serin\'s_Gold_Ring_','Serin\'s Gold Ring','Armor',45000,100,true,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2644,'The_Sign_','The Sign','Armor',2,true,true,100,true,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,5; bonus2 bMagicAddClass,Class_All,5;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_assassin`,`job_ninja`,`job_rogue`,`job_thief`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2645,'Moonlight_Ring','Moonlight Ring','Armor',40000,200,true,true,true,true,true,true,60,'bonus bMdef,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_assassin`,`job_kagerouoboro`,`job_ninja`,`job_rogue`,`job_thief`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2645,'Moonlight_Ring','Moonlight Ring','Armor',40000,200,true,true,true,true,true,true,true,60,'bonus bMdef,2;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2646,'Bunch_Of_Carnation','Bunch of Carnations','Armor',2,100,true,true,'bonus bAllStats,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2647,'Nile_Rose','Nile Rose','Armor',2,100,1,true,true,100,true,true,true,true,true,true,true,true,'bonus bAllStats,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2648,'Morpheus\'s_Ring','Morpheus\'s Ring','Armor',30000,100,true,false,false,true,true,33,'bonus bInt,1; bonus bMaxSPrate,5;'); @@ -1448,15 +1448,15 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2651,'Morrigane\'s_Pendant','Morrigane\'s Pendant','Armor',30000,200,true,false,false,true,true,61,'bonus bStr,2; bonus bCritical,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2652,'Cursed_Lucky_Brooch','Goddess of Fortune\'s Cursed Brooch','Armor',20,100,true,true,40,'bonus bCritical,6; bonus2 bAddEff2,Eff_Curse,50;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`) VALUES (2653,'Sacrifice_Ring','Sacrifice Ring','Armor',20,100,true,true,90); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_assassin`,`job_ninja`,`job_rogue`,`job_thief`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2654,'Shinobi\'s_Sash','Shinobi Sash','Armor',20000,300,1,true,true,true,true,true,true,30,'bonus bStr,1; bonus bAgi,1; bonus bMdef,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_assassin`,`job_kagerouoboro`,`job_ninja`,`job_rogue`,`job_thief`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2654,'Shinobi\'s_Sash','Shinobi Sash','Armor',20000,300,1,true,true,true,true,true,true,true,30,'bonus bStr,1; bonus bAgi,1; bonus bMdef,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`) VALUES (2655,'Bloody_Iron_Ball','Bloodied Shackle Ball','Armor',50000,4000,true,false,false,true,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2656,'Hyper_Changer','Armor Charm','Armor',20000,1000,1,true,true,true,true,true,true,true,true,true,true,true,1,'bonus bMaxHP,50;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`) VALUES (2657,'Lab_Passport','Laboratory Permit','Armor',20,100,true,true,1); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2658,'Nile_Rose_','Nile Rose','Armor',2,100,1,true,true,'bonus bMaxHP,10;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2659,'Vesper_Core01','Vesper Core 01','Armor',20,500,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,'bonus bMdef,3; bonus bInt,2; bonus bMaxSPrate,5;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2660,'Vesper_Core02','Vesper Core 02','Armor',20,500,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,'bonus bMdef,3; bonus bStr,3; bonus bBaseAtk,10;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2661,'Vesper_Core03','Vesper Core 03','Armor',20,500,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,'bonus bMdef,3; bonus bAgi,3; bonus bFlee,5;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2662,'Vesper_Core04','Vesper Core 04','Armor',20,500,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,'bonus bMdef,3; bonus bDex,3; bonus bHit,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2659,'Vesper_Core01','Vesper Core 01','Armor',20,500,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,'bonus bMdef,3; bonus bInt,2; bonus bMaxSPrate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2660,'Vesper_Core02','Vesper Core 02','Armor',20,500,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,'bonus bMdef,3; bonus bStr,3; bonus bBaseAtk,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2661,'Vesper_Core03','Vesper Core 03','Armor',20,500,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,'bonus bMdef,3; bonus bAgi,3; bonus bFlee,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2662,'Vesper_Core04','Vesper Core 04','Armor',20,500,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,'bonus bMdef,3; bonus bDex,3; bonus bHit,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2663,'Gauntlet_Of_Accuracy','Gauntlet of Hit','Armor',20,900,true,true,75,'bonus bHit,15; bonus bStr,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2664,'Scarf_Belt','Belcarf','Armor',20,200,true,false,false,true,true,75,'bonus bDex,2; bonus bInt,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2665,'Ring_Of_Exorcism','Exorcising Ring','Armor',20,500,true,true,true,true,true,60,'bonus bMdef,1; bonus2 bExpAddRace,RC_Undead,5; bonus2 bExpAddRace,RC_Demon,5;'); @@ -1472,8 +1472,8 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2675,'Lord_Ring','Lord Ring','Armor',10,true,true,1,'bonus bAllStats,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2676,'Hunter_Earring','Hunter\'s Earring','Armor',20,300,true,true,1,100,true,true,true,true,true,true,true,true,'bonus2 bAddMonsterDropItem,7618,100;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2677,'Spiritual_Ring','Spiritual Ring','Armor',20,100,true,true,'bonus bInt,2; bonus bDex,1;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2678,'Ring_Of_Flame_Lord','Ring Of Flame Lord','Armor',20,100,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,'bonus bStr,2; bonus bVit,1; bonus bBaseAtk,15; 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;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2679,'Ring_Of_Resonance','Ring Of Resonance','Armor',20,100,2,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,'bonus bAgi,2; bonus bVit,1; bonus bMdef,2; 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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2678,'Ring_Of_Flame_Lord','Ring Of Flame Lord','Armor',20,100,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,'bonus bStr,2; bonus bVit,1; bonus bBaseAtk,15; 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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2679,'Ring_Of_Resonance','Ring Of Resonance','Armor',20,100,2,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,'bonus bAgi,2; bonus bVit,1; bonus bMdef,2; 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;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2680,'Lesser_Elemental_Ring','Lesser Elemental Ring','Armor',20,100,true,true,'bonus bAllStats,1; bonus3 bAutoSpell,"WZ_ESTIMATION",1,80; bonus3 bAutoSpell,"MC_IDENTIFY",1,50; bonus3 bAutoSpell,"TF_PICKSTONE",1,100; bonus3 bAutoSpell,"BS_GREED",1,10; bonus3 bAutoSpellWhenHit,"TK_RUN",5,20; bonus3 bAutoSpellWhenHit,"TK_HIGHJUMP",3,30; bonus3 bAutoSpellWhenHit,"NV_FIRSTAID",1,100; bonus3 bAutoSpellWhenHit,"TF_BACKSLIDING",1,50;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2681,'Republic_Ring','Republic Anniversary Ring','Armor',20,1000,true,true,100,true,true,true,true,true,true,true,true,'bonus bAllStats,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2682,'Ring_Of_Water','Ring of Water','Armor',20,100,1,true,false,false,true,true,20,'bonus2 bSubDefEle,Ele_Water,5;'); @@ -1511,11 +1511,11 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_rig REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`) VALUES (2714,'Marvelous_Pandent','Marvelous Pendant','Armor',100,1,true,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2715,'Skul_Ring_','Skull Ring','Armor',10000,100,1,true,true,'bonus2 bSubRace,RC_Undead,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2716,'Librarian_Glove','Librarian Glove','Armor',20,100,1,true,true,true,true,true,80,'bonus bMaxSP,20;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_mage`,`job_sage`,`job_wizard`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`) VALUES (2717,'Pocket_Watch_','Pocket Watch','Armor',20,200,true,true,true,true,true,80); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`) VALUES (2717,'Pocket_Watch_','Pocket Watch','Armor',20,200,true,true,true,true,true,true,80); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`) VALUES (2718,'Lunatic_Brooch','Lunatic Brooch','Armor',20,200,1,true,true,true,true,true,65); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2719,'Iron_Wrist','Iron Wrist','Armor',20,700,1,true,true,true,true,true,true,true,true,50,'bonus2 bSkillAtk,"SM_BASH",6; bonus2 bSkillAtk,"MC_MAMMONITE",6;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_crusader`,`job_knight`,`job_stargladiator`,`job_swordman`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2720,'Medal_Swordman','Medal of Honor','Armor',20,1,true,true,true,true,true,true,70,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bHit,10; bonus bMaxHP,500; bonus bMaxSP,50; bonus3 bAddEff,Eff_Stun,100,ATF_SHORT;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_assassin`,`job_ninja`,`job_rogue`,`job_thief`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2721,'Medal_Thief','Medal of Honor','Armor',20,1,true,true,true,true,true,true,70,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bFlee,10; bonus bMaxHP,300; bonus bMaxSP,80; bonus3 bAddEff,Eff_Poison,100,ATF_SHORT;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_assassin`,`job_kagerouoboro`,`job_ninja`,`job_rogue`,`job_thief`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2721,'Medal_Thief','Medal of Honor','Armor',20,1,true,true,true,true,true,true,true,70,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bFlee,10; bonus bMaxHP,300; bonus bMaxSP,80; bonus3 bAddEff,Eff_Poison,100,ATF_SHORT;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2722,'Medal_Acolyte','Medal of Honor','Armor',20,1,true,true,true,true,true,70,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bMdef,6; bonus bMaxHP,600; bonus3 bAddEff,Eff_Silence,100,ATF_SHORT;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2723,'Medal_Mage','Medal of Honor','Armor',20,1,true,true,true,true,true,true,70,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bMdef,6; bonus bMaxHP,600; bonus2 bAddEffWhenHit,Eff_Stone,100;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_archer`,`job_barddancer`,`job_hunter`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2724,'Medal_Archer','Medal of Honor','Armor',20,1,true,true,true,true,true,70,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bCritical,10; bonus bMaxHP,300; bonus bMaxSP,80; bonus3 bAddEff,Eff_Blind,100,ATF_LONG;'); @@ -1523,7 +1523,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_hunter`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2726,'Icarus_Wing','Icarus Wings','Armor',20,100,true,true,true,true,true,70,'bonus bMaxSP,50; bonus bDex,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_hunter`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2727,'Bowman_Scarf','Bowman Scarf','Armor',20,200,true,true,true,true,true,70,'bonus bMaxSP,50; bonus bDex,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2728,'Cursed_Hand','Cursed Hand','Armor',20,50,1,true,false,false,true,true,80,'bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,30; bonus bHit,10; bonus bHPrecovRate,20;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2729,'Diabolus_Ring','Diabolus Ring','Armor',20,50,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,'bonus bMaxHP,100; bonus bMaxSP,100; bonus bHealPower,5; bonus2 bAddDamageClass,1916,10; bonus2 bAddDamageClass,1917,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2729,'Diabolus_Ring','Diabolus Ring','Armor',20,50,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,'bonus bMaxHP,100; bonus bMaxSP,100; bonus bHealPower,5; bonus2 bAddDamageClass,1916,10; bonus2 bAddDamageClass,1917,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2730,'Morroc_Seal','Seal of Continental Guard','Armor',20,50,1,true,false,false,true,true,80,100,true,true,true,true,true,true,'bonus bMaxHP,50; bonus bAspdRate,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2731,'Morroc_Charm_Stone','Rune Spellstone','Armor',20,50,1,true,false,false,true,true,80,100,true,true,true,true,true,true,'bonus bMaxSP,50; bonus bVariableCastrate,-1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2732,'Morroc_Ring','Death Loop','Armor',20,50,1,true,false,false,true,true,80,100,true,true,true,true,true,true,'bonus bCritical,5;'); @@ -1537,13 +1537,13 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_rig REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2740,'Rusty_Coin','Rusty Coin','Armor',true,true,100,true,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,3; bonus bMatkRate,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2741,'All_In_One_Ring','All In One Ring','Armor',20,true,true,100,true,true,true,true,true,true,true,true,'bonus bAllStats,1; bonus bNoCastCancel; bonus bVariableCastrate,10; skill "AL_HEAL",1; skill "AL_TELEPORT",1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2742,'Lucky_Clip','Lucky Clip','Armor',true,true,100,true,true,true,true,true,true,true,true,'bonus2 bDropAddRace,RC_All,50;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2743,'Angelic_Ring','Angelic Ring','Armor',20,100,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,70,'bonus bInt,2; bonus bDex,1; bonus bMdef,2; autobonus3 "{ bonus bHealPower,20; }",100,3000,"AL_HEAL","{ specialeffect2 EF_HEAL3; }"; autobonus3 "{ bonus bHealPower,20; }",100,3000,"AM_POTIONPITCHER","{ specialeffect2 EF_HEAL3; }"; autobonus3 "{ bonus bHealPower,20; }",100,3000,"PR_SANCTUARY","{ specialeffect2 EF_HEAL3; }";'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2744,'Sprint_Ring','Sprint Ring','Armor',20,100,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,70,'bonus bVariableCastrate,-10; bonus bDelayRate,5;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2745,'Pinguicula_Corsage','Pinguicula Corsage','Armor',20,200,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,70,'bonus bMdef,2; bonus bMaxSP,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2743,'Angelic_Ring','Angelic Ring','Armor',20,100,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,70,'bonus bInt,2; bonus bDex,1; bonus bMdef,2; autobonus3 "{ bonus bHealPower,20; }",100,3000,"AL_HEAL","{ specialeffect2 EF_HEAL3; }"; autobonus3 "{ bonus bHealPower,20; }",100,3000,"AM_POTIONPITCHER","{ specialeffect2 EF_HEAL3; }"; autobonus3 "{ bonus bHealPower,20; }",100,3000,"PR_SANCTUARY","{ specialeffect2 EF_HEAL3; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2744,'Sprint_Ring','Sprint Ring','Armor',20,100,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,70,'bonus bVariableCastrate,-10; bonus bDelayRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2745,'Pinguicula_Corsage','Pinguicula Corsage','Armor',20,200,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,70,'bonus bMdef,2; bonus bMaxSP,25;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_assassin`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2746,'Cold_Heart','Cold Heart','Armor',20,100,1,true,true,true,true,true,80,'bonus bAgi,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_rogue`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2747,'Black_Cat','Black Cat','Armor',20,100,1,true,true,true,true,true,80,'bonus bDex,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_archer`,`job_barddancer`,`job_hunter`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`,`unequip_script`) VALUES (2748,'Cursed_Star','Cursed Star','Armor',20,200,true,true,true,true,true,true,true,84,'bonus bMdef,3; bonus bDex,2; bonus bLuk,-1; bonus2 bHPLossRate,50,10000; bonus3 bAddEff,Eff_Curse,200,ATF_WEAPON|ATF_LONG|ATF_TARGET;','heal -300,0;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2749,'Linen_Glove','Linen Glove','Armor',20,120,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,90,'bonus bMdef,2; bonus bAgi,2; bonus bDex,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2749,'Linen_Glove','Linen Glove','Armor',20,120,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,90,'bonus bMdef,2; bonus bAgi,2; bonus bDex,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2750,'Summer_Night_Dream','Summer Night Dream','Armor',20,true,true,100,true,true,true,true,true,true,true,true,'/* skill "ALL_DREAM_SUMMERNIGHT",1; */'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2751,'Academy_Badge','Academy Of Badge','Armor',100,true,true,100,true,true,true,true,true,true,'if(BaseLevel<80) { bonus bMaxHP,400; bonus bMaxSP,200; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2752,'Praxinus_C','Praccsinos','Armor',2,true,true,100,true,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,5; bonus bMatkrate,5;'); @@ -1577,19 +1577,19 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`script`) VALUES (2780,'Dark_Knight_Glove','Dark Knight Glove','Armor',20,500,1,true,true,80,100,true,'autobonus "{ bonus bAspdRate,2; }",10,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }";'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`script`) VALUES (2781,'Aumdura\'s_Grace','Aumdura\'s Benefit','Armor',100,1,1,true,true,1,100,true,'bonus bAllStats,1; bonus bMdef,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2782,'Ring_Of_Wise_King','Ring of the Ancient Wise King','Armor',20,100,true,true,100,true,true,true,true,true,true,true,'bonus bMaxHP,50; bonus bMaxSP,20;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2783,'Eyes_Stone_Ring','Eye Stone Ring','Armor',20,100,1,true,true,70,'bonus bCritical,2; bonus bMaxSP,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2783,'Eyes_Stone_Ring','Eye Stone Ring','Armor',20,100,1,true,false,false,true,true,70,'bonus bCritical,2; bonus bMaxSP,25;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2784,'Oh_Holy_Night','Christmas Musicbox','Armor',20,100,true,true,1,'skill "ALL_WEWISH",1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2785,'Orleans_Glove_M','Orlean\'s Gloves','Armor',20,100,1,true,false,false,true,true,true,true,90,100,true,true,true,true,true,true,true,'bonus bDex,2; bonus bMatkRate,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`script`) VALUES (2786,'Spiritual_Ring_M','Spiritual Ring','Armor',20,100,true,true,100,true,'bonus bInt,2; bonus bDex,1;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2787,'Waterdrop_Brooch','Waterdrop Brooch','Armor',20,200,1,true,true,true,true,1,'bonus bMdef,2; bonus bMaxHPrate,1; bonus2 bSubEle,Ele_Water,5;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2788,'Bradium_Earing','Bradium Earring','Armor',20,200,1,true,true,true,true,'bonus bInt,1; bonus bDex,1; bonus bMatk,5;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2789,'Bradium_Ring','Bradium Ring','Armor',20,200,1,true,true,true,true,'bonus bStr,1; bonus bVit,1; bonus bBaseAtk,5;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2790,'Bradium_Brooch','Bradium Brooch','Armor',20,200,1,true,true,true,true,'bonus bAgi,1; bonus bFlee,4; if(readparam(bAgi)>=120) bonus bCritical,4;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2787,'Waterdrop_Brooch','Waterdrop Brooch','Armor',20,200,1,true,false,false,true,true,true,true,1,'bonus bMdef,2; bonus bMaxHPrate,1; bonus2 bSubEle,Ele_Water,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2788,'Bradium_Earing','Bradium Earring','Armor',20,200,1,true,false,false,true,true,true,true,'bonus bInt,1; bonus bDex,1; bonus bMatk,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2789,'Bradium_Ring','Bradium Ring','Armor',20,200,1,true,false,false,true,true,true,true,'bonus bStr,1; bonus bVit,1; bonus bBaseAtk,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2790,'Bradium_Brooch','Bradium Brooch','Armor',20,200,1,true,false,false,true,true,true,true,'bonus bAgi,1; bonus bFlee,4; if(readparam(bAgi)>=120) bonus bCritical,4;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2791,'Just_Got_Fish','Fresh Fish','Armor',20,500,1,true,true,1,'bonus bHit,3;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2792,'Ring_Of_Flame_Lord_I','Ring of Flame Lord','Armor',true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,100,true,true,true,true,true,true,true,true,'bonus bStr,2; bonus bVit,1; bonus bBaseAtk,15; 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;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2793,'Ring_Of_Resonance_I','Ring of Resonance','Armor',2,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,100,true,true,true,true,true,true,true,true,'bonus bAgi,2; bonus bVit,1; bonus bMdef,2; 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;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`slots`,`job_knight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2794,'Magic_Stone_Ring','Magic Stone Ring','Armor',1,true,true,true,99,100,true,true,true,true,true,true,true,true,'bonus bStr,2;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2795,'Green_Apple_Ring','Green Apple Ring','Armor',true,false,false,true,true,99,100,true,true,true,true,true,true,true,'if(JobLevel<30) { bonus bAllStats,6-(JobLevel/5); }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2792,'Ring_Of_Flame_Lord_I','Ring of Flame Lord','Armor',true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,100,true,true,true,true,true,true,true,true,'bonus bStr,2; bonus bVit,1; bonus bBaseAtk,15; 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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2793,'Ring_Of_Resonance_I','Ring of Resonance','Armor',2,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,100,true,true,true,true,true,true,true,true,'bonus bAgi,2; bonus bVit,1; bonus bMdef,2; 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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2794,'Magic_Stone_Ring','Magic Stone Ring','Armor',1,true,true,true,true,true,true,99,100,true,true,true,true,true,true,true,true,'bonus bStr,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2795,'Green_Apple_Ring','Green Apple Ring','Armor',true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,99,100,true,true,true,true,true,true,true,'if(JobLevel<30) { bonus bAllStats,6-(JobLevel/5); }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2796,'Magical_Stone','Rocks','Armor',200,true,true,true,true,true,true,99,100,true,true,true,true,true,true,true,true,'bonus2 bAddDamageClass,2047,10; bonus2 bAddDefMonster,2048,-10; bonus3 bAddMonsterIdDropItem,6152,2047,70;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2797,'Magical_Stone_','Rocks','Armor',200,true,true,true,true,true,true,99,100,true,true,true,true,true,true,true,true,'bonus2 bAddDamageClass,2049,10; bonus2 bAddDefMonster,2050,-10; bonus3 bAddMonsterIdDropItem,6151,2049,70;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`job_monk`,`job_priest`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2798,'Will_Of_Exhausted_Angel','Will Of Exhausted Angel','Armor',200,true,true,true,true,99,100,true,true,true,true,true,true,true,'if(strcharinfo(3)=="job3_arch02") { bonus2 bAddDefMonster,1761,50; bonus2 bAddDefMonster,1762,50; }'); @@ -1635,7 +1635,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2838,'F_Necklace_C','Necklace','Armor',1,true,false,false,true,true,1,'bonus bVit,4;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2839,'F_Ring_C','Ring','Armor',1,true,false,false,true,true,1,'bonus bStr,4;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2840,'F_Rosary_C','Rosary','Armor',1,true,false,false,true,true,1,'bonus bLuk,4; bonus bMdef,5;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2841,'Caracas_Ring','Caracas Ring','Armor',2,true,false,false,true,true,99,100,true,true,true,true,true,true,true,true,'bonus bInt,2; bonus bDex,2; bonus bMdef,2; bonus2 bExpAddRace,RC_All,10; bonus2 bDropAddRace,RC_All,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`job_alchemist`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2841,'Caracas_Ring','Caracas Ring','Armor',2,true,true,true,true,true,true,true,99,100,true,true,true,true,true,true,true,true,'bonus bInt,2; bonus bDex,2; bonus bMdef,2; bonus2 bExpAddRace,RC_All,10; bonus2 bDropAddRace,RC_All,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2842,'F_Earing_C','Earring','Armor',1,true,false,false,true,true,1,'bonus bInt,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2843,'Gold_Trickle','Gold Trickle','Armor',20,true,true,75,100,true,true,true,true,true,true,true,'bonus bMaxSP,50;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2844,'El_Dicastes_Light','Light Of El Discastes','Armor',20,100,true,true,80,100,true,true,true,true,true,true,true,'skill "RETURN_TO_ELDICASTES",1;'); @@ -1647,20 +1647,20 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2850,'E_Ring_C','Ring','Armor',1,true,false,false,true,true,1,'bonus bVit,4;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2851,'E_Necklace_C','Necklace','Armor',1,true,false,false,true,true,1,'bonus bStr,4;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2852,'E_Rosary_C','Rosary','Armor',1,true,false,false,true,true,1,'bonus bLuk,4; bonus bMdef,5;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2853,'Telekinetic_Orb','Telekinetic Orb','Armor',20,200,2,true,false,false,true,true,110,'bonus bMdef,1; bonus bInt,3; bonus bMaxSP,30; bonus2 bSkillAtk,"WL_SOULEXPANSION",10; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",10; bonus2 bSkillUseSP,"WL_SOULEXPANSION",-50; bonus2 bSkillUseSP,"SO_PSYCHIC_WAVE",-50;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2854,'Alchemy_Glove','Alchemy Glove','Armor',20,100,1,1,true,false,false,true,true,125,'bonus bMdef,2; bonus bInt,1; bonus2 bMagicAtkEle,Ele_Fire,10; bonus2 bMagicAtkEle,Ele_Water,-20; bonus2 bSubEle,Ele_Water,-30; bonus3 bAutoSpell,"MG_FIREBALL",5,30; bonus5 bAutoSpell,"MG_FIREBOLT",5,30,BF_MAGIC,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2853,'Telekinetic_Orb','Telekinetic Orb','Armor',20,200,2,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,110,'bonus bMdef,1; bonus bInt,3; bonus bMaxSP,30; bonus2 bSkillAtk,"WL_SOULEXPANSION",10; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",10; bonus2 bSkillUseSP,"WL_SOULEXPANSION",-50; bonus2 bSkillUseSP,"SO_PSYCHIC_WAVE",-50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2854,'Alchemy_Glove','Alchemy Glove','Armor',20,100,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,125,'bonus bMdef,2; bonus bInt,1; bonus2 bMagicAtkEle,Ele_Fire,10; bonus2 bMagicAtkEle,Ele_Water,-20; bonus2 bSubEle,Ele_Water,-30; bonus3 bAutoSpell,"MG_FIREBALL",5,30; bonus5 bAutoSpell,"MG_FIREBOLT",5,30,BF_MAGIC,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2855,'Whike_Black_Tail','Whike Black Tail','Armor',20,100,true,true,45,'bonus bCriticalRate,7; bonus bAspdRate,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2856,'Half_Megin','Half Megingjard','Armor',20,1,true,true,47,100,true,true,true,true,true,true,true,'bonus bMdef,3; bonus bStr,20;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2857,'Half_Brysing','Half Brisingamen','Armor',20,1,true,true,47,100,true,true,true,true,true,true,true,'bonus bStr,3; bonus bInt,5; bonus bVit,3; bonus bDex,3; bonus bAgi,3; bonus bLuk,5; bonus bMdef,2;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2858,'Pendant_Of_Guardian','Pendant Of Guardian','Armor',true,true,70,100,true,true,true,true,true,true,true,'skill "ALL_GUARDIAN_RECALL",1;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_wizard`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2859,'Golden_Rod_Orb','Golden Rod Orb','Armor',20,200,2,true,true,true,100,'bonus bMdef,2; bonus bInt,1; bonus2 bSubEle,Ele_Wind,15; bonus3 bAutoSpellWhenHit,"WZ_JUPITEL",3,30;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_wizard`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2860,'Aqua_Orb','Aqua Orb','Armor',20,200,2,true,true,true,100,'bonus bMdef,2; bonus bInt,1; bonus2 bSubEle,Ele_Water,15; bonus3 bAutoSpellWhenHit,"WZ_FROSTNOVA",3,30;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_wizard`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2861,'Crimson_Orb','Crismon Orb','Armor',20,200,2,true,true,true,100,'bonus bMdef,2; bonus bInt,1; bonus2 bSubEle,Ele_Fire,15; bonus3 bAutoSpellWhenHit,"WZ_SIGHTRASHER",3,30;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_wizard`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2862,'Forest_Orb','Forest Orb','Armor',20,200,2,true,true,true,100,'bonus bMdef,2; bonus bInt,1; bonus2 bSubEle,Ele_Earth,15; bonus3 bAutoSpellWhenHit,"WZ_QUAGMIRE",3,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2859,'Golden_Rod_Orb','Golden Rod Orb','Armor',20,200,2,true,true,true,true,true,true,100,'bonus bMdef,2; bonus bInt,1; bonus2 bSubEle,Ele_Wind,15; bonus3 bAutoSpellWhenHit,"WZ_JUPITEL",3,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2860,'Aqua_Orb','Aqua Orb','Armor',20,200,2,true,true,true,true,true,true,100,'bonus bMdef,2; bonus bInt,1; bonus2 bSubEle,Ele_Water,15; bonus3 bAutoSpellWhenHit,"WZ_FROSTNOVA",3,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2861,'Crimson_Orb','Crismon Orb','Armor',20,200,2,true,true,true,true,true,true,100,'bonus bMdef,2; bonus bInt,1; bonus2 bSubEle,Ele_Fire,15; bonus3 bAutoSpellWhenHit,"WZ_SIGHTRASHER",3,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2862,'Forest_Orb','Forest Orb','Armor',20,200,2,true,true,true,true,true,true,100,'bonus bMdef,2; bonus bInt,1; bonus2 bSubEle,Ele_Earth,15; bonus3 bAutoSpellWhenHit,"WZ_QUAGMIRE",3,30;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2863,'Ring_Of_Valkyrie','Ring Of Valkyrie','Armor',2,true,true,1,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddClass,Class_All,5; bonus2 bDropAddRace,RC_All,5;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_priest`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2864,'Light_Of_Cure','Light Of Cure','Armor',20,true,true,true,110,'bonus bVit,2; bonus bHealPower,2;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_priest`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2865,'Seal_Of_Cathedral','Seal Of Cathedral','Armor',20,true,true,true,110,'bonus bInt,2; bonus bHealPower,2;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_priest`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2866,'Ring_Of_Archbishop','Ring Of Archbishop','Armor',20,true,true,true,110,'bonus bDex,2; bonus bHealPower,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2864,'Light_Of_Cure','Light Of Cure','Armor',20,true,true,true,true,true,true,110,'bonus bVit,2; bonus bHealPower,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2865,'Seal_Of_Cathedral','Seal Of Cathedral','Armor',20,true,true,true,true,true,true,110,'bonus bInt,2; bonus bHealPower,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2866,'Ring_Of_Archbishop','Ring Of Archbishop','Armor',20,true,true,true,true,true,true,110,'bonus bDex,2; bonus bHealPower,2;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2867,'Broken_Bamboo_Piece','Broken Bamboo Piece','Armor',20,100,2,true,true,'bonus bMdef,2;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2868,'Green_Batik','Green Batik','Armor',20,100,1,true,false,false,true,true,45,'bonus bStr,1; bonus bInt,1; bonus bDex,1; bonus bMdef,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2869,'Colorful_Ketupat','Colorful Ketupat','Armor',20,100,true,false,false,true,true,45,'bonus bStr,1; bonus bInt,1; bonus bDex,1;'); @@ -1680,15 +1680,15 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2883,'Ur_Seal','Ur\'s Seal','Armor',20,200,4,1,true,true,true,true,true,true,100,'bonus bMaxHPrate,2; bonus2 bSkillUseSP,"LK_SPIRALPIERCE",5; bonus2 bSkillUseSP,"RK_HUNDREDSPEAR",5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2884,'Peuz_Seal','Peuz\'s Seal','Armor',20,200,3,1,true,true,true,true,true,true,100,'bonus bBaseAtk,20; bonus bMaxSP,20;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2885,'Mother_Heart','Mother Heart','Armor',true,true,100,true,true,true,true,true,true,true,'bonus bBaseAtk,15; bonus bMatk,15; bonus2 bExpAddClass,Class_All,15;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_assassin`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2886,'Sabah_Ring','Sapha Ring','Armor',20,100,true,true,true,100,'bonus bCritical,3; bonus2 bSkillUseSP,"GC_DARKILLUSION",5;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_assassin`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2887,'Nab_Ring','Nab Ring','Armor',20,100,true,true,true,100,'bonus bBaseAtk,10; bonus bMatk,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2886,'Sabah_Ring','Sapha Ring','Armor',20,100,true,true,true,true,true,true,100,'bonus bCritical,3; bonus2 bSkillUseSP,"GC_DARKILLUSION",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2887,'Nab_Ring','Nab Ring','Armor',20,100,true,true,true,true,true,true,100,'bonus bBaseAtk,10; bonus bMatk,20;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2888,'School_Bag','School Bag','Armor',20,1000,1,true,true,'bonus bAspdRate,3; bonus bVariableCastrate,-3; if(BaseLevel<80){ bonus bMaxHP,200; bonus bMaxSP,100; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`) VALUES (2889,'Endure_Ring','Endure Ring','Armor',20,100,1,true,true,60); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_hunter`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2890,'White_Wing_Brooch','White Wing Brooch','Armor',20,100,true,true,true,100,'bonus bDex,2; bonus bLongAtkRate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2890,'White_Wing_Brooch','White Wing Brooch','Armor',20,100,true,true,true,true,true,true,100,'bonus bDex,2; bonus bLongAtkRate,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2891,'Black_wing_Brooch','Black Wing Brooch','Armor',20,100,true,true,true,true,true,true,100,'bonus bInt,2; bonus bFlee2,3;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_assassin`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2892,'Assassin_Handcuffs','Assassin\'s Glove','Armor',56000,400,3,1,true,true,true,100,'bonus bMaxSP,20; bonus bCritical,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2892,'Assassin_Handcuffs','Assassin\'s Glove','Armor',56000,400,3,1,true,true,true,true,true,true,100,'bonus bMaxSP,20; bonus bCritical,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`) VALUES (2893,'Cursed_Heart','Cursed Heart','Armor',20,50,1,true,true,80); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_monk`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2894,'Glove_Of_Shura','Sura Gauntlet','Armor',20,400,1,true,true,true,130,'bonus bStr,5; bonus bMaxSPrate,6; bonus bMaxHPrate,-6; if(readparam(bStr)>=120){ bonus bBaseAtk,30; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_monk`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2894,'Glove_Of_Shura','Sura Gauntlet','Armor',20,400,1,true,true,true,true,true,true,130,'bonus bStr,5; bonus bMaxSPrate,6; bonus bMaxHPrate,-6; if(readparam(bStr)>=120){ bonus bBaseAtk,30; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2895,'Medal_Of_Valor1','Medal Of Valor1','Armor',4,true,true,'bonus bVariableCastrate,-2;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2896,'Medal_Of_Valor2','Medal Of Valor2','Armor',4,true,true,'bonus bAspdRate,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2897,'2011RWC_Necklace_J','2011RWC Necklace J','Armor',100,true,true,1,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus2 bExpAddClass,Class_All,1;'); @@ -1723,7 +1723,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2926,'Vit_Glove_','Vit Glove','Armor',75000,100,1,true,true,100,'bonus bMaxHP,100; bonus bMaxSP,20; bonus bMaxHP,(readparam(bVit)/10)*50; if(readparam(bVit)>=110) bonus bMaxHPrate,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2927,'Dex_Glove_','Dex Glove','Armor',75000,100,1,true,true,100,'bonus bMaxHP,100; bonus bMaxSP,20; bonus bHit,(readparam(bDex)/10); if(readparam(bDex)>=110) bonus bLongAtkRate,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2928,'Luk_Glove_','Luk Glove','Armor',75000,100,1,true,true,100,'bonus bMaxHP,100; bonus bMaxSP,20; bonus bCritical,(readparam(bLuk)/10); if(readparam(bLuk)>=110) bonus bCritAtkRate,1;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_upper`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2935,'Sprint_Gloves','Sprint Gloves','Armor',20,100,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,'bonus bVariableCastrate,-1; bonus bDelayrate,-1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2935,'Sprint_Gloves','Sprint Gloves','Armor',20,100,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,'bonus bVariableCastrate,-1; bonus bDelayrate,-1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2936,'Recovery_Ring','Recovery Ring','Armor',20,100,5,1,true,true,10,'bonus bVit,1; bonus bMaxHP,250; bonus bMaxHPrate,5; bonus bHealPower2,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2940,'Ninja_Manual','Ninja Manual','Armor',100,true,true,true,true,100,true,true,true,true,true,true,true,'bonus bMaxSP,100; skill "NJ_UTSUSEMI",1; skill "NJ_KOUENKA",1; skill "NJ_SYURIKEN",1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2941,'Gunslinger_Manual','Gunslinger Manual','Armor',100,true,true,true,true,100,true,true,true,true,true,true,true,'bonus bMaxSP,100; skill "GS_GLITTERING",1; skill "GS_ADJUSTMENT",1; skill "GS_MADNESSCANCEL",1; skill "GS_INCREASING",1;'); @@ -1733,7 +1733,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_rig REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2945,'TE_Ring_Of_Rage','TE Ring Of Rage','Armor',true,true,40,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_Player_Human,5; bonus2 bMagicAddRace,RC_Player_Human,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2946,'TE_Ring_Of_Defiance','TE Ring Of Defiance','Armor',true,true,40,100,true,true,true,true,true,true,true,'bonus bMdef,5; bonus2 bSubRace,RC_Player_Human,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2948,'Demon_Wing','Demon Wing','Armor',10,100,1,true,true,70,'bonus bFlee,5;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2949,'Silversmith_Bracelet','Silversmith Bracelet','Armor',10,100,3,1,true,true,60,'bonus bAllStats,1; bonus bMdef,3; skill "SA_SPELLBREAKER",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2949,'Silversmith_Bracelet','Silversmith Bracelet','Armor',10,100,3,1,true,false,false,true,true,60,'bonus bAllStats,1; bonus bMdef,3; skill "SA_SPELLBREAKER",5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2950,'Rune_Ring','Rune Ring','Armor',true,true,1,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddClass,Class_Normal,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2951,'Kvasir_Ring_Blue','Kvasir Ring Blue','Armor',100,true,true,1,'bonus bMaxSP,30; skill "ECL_SNOWFLIP",1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2952,'Kvasir_Ring_Red','Kvasir Ring Red','Armor',100,true,true,1,'bonus bMaxSP,30; skill "ECL_PEONYMAMY",1;'); @@ -1750,7 +1750,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`script`) VALUES (2967,'RWC_2012_Ring_','Chambered RWC 2012 Ring','Armor',20,200,1,true,true,100,true,'bonus2 bAddClass,Class_All,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`script`) VALUES (2968,'RWC_2012_Pendant','RWC 2012 Pendant','Armor',20,200,true,true,100,true,'bonus bMatkRate,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`script`) VALUES (2969,'RWC_2012_Pendant_','Chambered RWC 2012 Pendant','Armor',20,200,1,true,true,100,true,'bonus bMatkRate,1;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_soullinker`,`job_wizard`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2971,'Pocket_Watch','Pocket Watch','Armor',10,200,1,1,true,true,true,true,80,'bonus bHPrecovRate,15; bonus bSPrecovRate,15; bonus bMatkRate,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2971,'Pocket_Watch','Pocket Watch','Armor',10,200,1,1,true,true,true,true,true,true,80,'bonus bHPrecovRate,15; bonus bSPrecovRate,15; bonus bMatkRate,7;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`,`unequip_script`) VALUES (2976,'Red_Lantern','Red Lantern','Armor',10,200,1,true,true,100,'bonus bMaxSP,-300; skill "MG_SIGHT",1;','sc_end SC_SIGHT;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2977,'Hurt_Mind','Hurt Mind','Armor',10,100,1,true,true,110,'bonus bMaxSP,200; skill "DC_SCREAM",3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2978,'KindHeart','Kind Heart','Armor',10,100,1,true,true,110,'bonus bMaxHP,500; bonus2 bHPRegenRate,300,10000;'); @@ -1764,11 +1764,11 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (2987,'Snake_Pendant','Snake Pendant','Armor',20,100,3,1,true,true,'bonus bAgi,3; bonus bLuk,2; bonus bMdef,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2988,'Winged_Ring_Of_Newoz','Oz\'s New Wing Ring','Armor',20,100,1,true,true,true,true,'Male',true,true,130,'bonus bVariableCastrate,-25;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2989,'Floral_Bracelet_Of_Igu','Bloody Floral Decoration Bracelet','Armor',20,100,1,true,true,true,true,'Female',true,true,130,'bonus bVariableCastrate,-25;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2990,'Pendant_Of_Harmony','Pendant of Harmony','Armor',20,100,true,true,130,'bonus bMatkRate,6; bonus bHPrecovRate,50; bonus bSPrecovRate,50; bonus2 bSubEle,Ele_Holy,5; autobonus "{ bonus2 bHPRegenRate,1000,5000; }",100,90000,BF_NORMAL; bonus4 bAutoSpellWhenHit,"PR_SANCTUARY",3,100,0; bonus bStr,-5;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2991,'Pendant_Of_Chaos','Pendant of Chaos','Armor',20,100,true,true,130,'bonus2 bAddClass,Class_All,6; bonus2 bSubEle,Ele_Dark,5; bonus2 bResEff,Eff_Confusion,10000; bonus2 bAddEff,Eff_Confusion,500; bonus3 bAutoSpellWhenHit,"NPC_WIDECONFUSE",2,30; bonus bInt,-5;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2992,'Pendant_Of_Maelstorm','Pendant of Maelstrom','Armor',20,100,1,true,true,130,'bonus2 bAddClass,Class_All,6; bonus bMatkRate,6; bonus bAllStats,1; bonus5 bAutoSpellWhenHit,"SC_MAELSTROM",1,100,BF_MAGIC,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2990,'Pendant_Of_Harmony','Pendant of Harmony','Armor',20,100,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,130,'bonus bMatkRate,6; bonus bHPrecovRate,50; bonus bSPrecovRate,50; bonus2 bSubEle,Ele_Holy,5; autobonus "{ bonus2 bHPRegenRate,1000,5000; }",100,90000,BF_NORMAL; bonus4 bAutoSpellWhenHit,"PR_SANCTUARY",3,100,0; bonus bStr,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2991,'Pendant_Of_Chaos','Pendant of Chaos','Armor',20,100,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,130,'bonus2 bAddClass,Class_All,6; bonus2 bSubEle,Ele_Dark,5; bonus2 bResEff,Eff_Confusion,10000; bonus2 bAddEff,Eff_Confusion,500; bonus3 bAutoSpellWhenHit,"NPC_WIDECONFUSE",2,30; bonus bInt,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2992,'Pendant_Of_Maelstorm','Pendant of Maelstrom','Armor',20,100,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,130,'bonus2 bAddClass,Class_All,6; bonus bMatkRate,6; bonus bAllStats,1; bonus5 bAutoSpellWhenHit,"SC_MAELSTROM",1,100,BF_MAGIC,0;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2995,'Supplement_Part_Dex','Supplement Part Dex','Armor',25000,100,1,true,true,true,true,true,true,100,'bonus bUseSPrate,-10; bonus bDelayrate,-10; bonus bVariableCastrate,-10; bonus2 bSkillCooldown,"NC_AXEBOOMERANG",-2000;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2996,'Upgrade_Part_Gun_Barrel','Reinforced Parts - Gun Barrel','Armor',10,500,1,true,true,100,'bonus2 bAddClass,Class_All,4; bonus bHit,10; bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2996,'Upgrade_Part_Gun_Barrel','Reinforced Parts - Gun Barrel','Armor',10,500,1,true,true,true,true,true,true,100,'bonus2 bAddClass,Class_All,4; bonus bHit,10; bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",25;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2997,'RWC_Gold_Brooch','RWC Gold Brooch','Armor',10,200,1,true,true,100,true,true,true,true,true,true,true,'bonus bBaseAtk,25; bonus bMatk,20;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (2998,'Shining_Trapezohedron','Shining Trapezohedron','Armor',100,1,true,true,90,'bonus2 bSubEle,Ele_Holy,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (2999,'RWC_Brooch','RWC Brooch','Armor',10,200,true,true,100,true,true,true,true,true,true,true,'bonus bMaxHP,300; bonus bMaxSP,30;'); @@ -1914,7 +1914,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5140,'Charming_Ribbon','Charming Ribbon','Armor',20,400,2,1,true,10,true,211,'bonus2 bSubRace,RC_Undead,5; bonus2 bSubRace,RC_Demon,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5141,'Marionette_Doll','Marionette Doll','Armor',20,400,1,1,true,false,false,true,30,true,212,'bonus bStr,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5142,'Crescent_Helm','Crescent Helm','Armor',20,3000,20,1,true,true,true,true,true,true,true,true,50,true,213,100,true,'bonus bVit,1; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`gender`,`location_head_top`,`location_head_mid`,`location_head_low`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5143,'Kabuki_Mask','Kabuki Mask','Armor',20,1000,5,1,true,false,false,'Male',true,true,true,30,true,214,100,true,'bonus2 bResEff,Eff_Silence,3000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`location_head_mid`,`location_head_low`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5143,'Kabuki_Mask','Kabuki Mask','Armor',20,1000,5,1,true,false,false,true,true,true,30,true,214,100,true,'bonus2 bResEff,Eff_Silence,3000;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5144,'Gambler_Hat','Gambler Hat','Armor',20,200,4,true,true,16,'bonus bLuk,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5145,'Carnival_Joker_Jester','Carnival Joker Jester','Armor',10,100,true,true,89,'bonus bAllStats,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5146,'Elephant_Hat','Elephant Hat','Armor',500,true,true,215,'bonus bVit,1; bonus2 bSubRace,RC_Brute,7; bonus2 bSubRace,RC_Player_Doram,7; skill "WZ_WATERBALL",1;'); @@ -1935,8 +1935,8 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_rogue`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`job_thief`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5161,'Sharp_Gear_','Spiky Band','Armor',20,1000,12,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,50,true,43); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5162,'Bone_Helm_','Bone Helm','Armor',20,800,15,1,true,true,true,true,true,true,true,70,true,103,'bonus2 bSubEle,Ele_Dark,-15;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5163,'Corsair_','Corsair','Armor',20,500,10,1,true,false,false,true,true,105,'bonus bVit,1;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`gender`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5164,'Tiara_','Tiara','Armor',20,400,7,1,true,false,false,'Female',true,45,true,19,'bonus bInt,1;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`gender`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5165,'Crown_','Crown','Armor',20,400,7,1,true,false,false,'Male',true,45,true,45,'bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5164,'Tiara_','Tiara','Armor',20,400,7,1,true,false,false,true,45,true,19,'bonus bInt,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5165,'Crown_','Crown','Armor',20,400,7,1,true,false,false,true,45,true,45,'bonus bInt,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_head_top`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (5166,'Spinx_Helm_','Sphinx Hat','Armor',20,3000,5,1,true,true,true,true,true,65,137,'bonus bStr,2;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`location_head_low`,`view`,`script`) VALUES (5167,'Munak_Turban_','Munak Hat','Armor',20,300,5,1,true,true,true,51,'bonus2 bSubRace,RC_Undead,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`location_head_low`,`view`) VALUES (5168,'Bongun_Hat_','Bongun Hat','Armor',20,300,5,1,true,true,true,139); @@ -1962,13 +1962,13 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5188,'Minstrel_Hat','Wandering Minstrel Hat','Armor',20,500,2,true,50,true,240,'bonus bInt,1; bonus bDex,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5189,'Fallen_Leaves','Autumn Leaves','Armor',20,100,true,true,241,'bonus bMaxHP,40; bonus bMaxSP,40;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`) VALUES (5190,'Baseball_Cap_','Independence Memorial Hat','Armor',20,20,3,1,true,true,216); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`gender`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5191,'Ribbon_Black','Black Ribbon','Armor',800,100,1,1,'Female',true,true,242,'bonus bInt,1; bonus bMdef,3;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`gender`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5192,'Ribbon_Yellow','Yellow Ribbon','Armor',800,100,1,1,'Female',true,true,243,'bonus bMdef,3;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`gender`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5193,'Ribbon_Green','Green Ribbon','Armor',800,100,1,1,'Female',true,true,244,'bonus bMdef,3;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`gender`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5194,'Ribbon_Pink','Pink Ribbon','Armor',800,100,1,1,'Female',true,true,245,'bonus bMdef,3;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`gender`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5195,'Ribbon_Red','Red Ribbon','Armor',800,100,1,1,'Female',true,true,246,'bonus bMdef,3;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`gender`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5196,'Ribbon_Orange','Orange Ribbon','Armor',800,100,1,1,'Female',true,true,247,'bonus bMdef,3;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`gender`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5197,'Ribbon_White','White Ribbon','Armor',800,100,1,1,'Female',true,true,248,'bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5191,'Ribbon_Black','Black Ribbon','Armor',800,100,1,1,true,true,242,'bonus bInt,1; bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5192,'Ribbon_Yellow','Yellow Ribbon','Armor',800,100,1,1,true,true,243,'bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5193,'Ribbon_Green','Green Ribbon','Armor',800,100,1,1,true,true,244,'bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5194,'Ribbon_Pink','Pink Ribbon','Armor',800,100,1,1,true,true,245,'bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5195,'Ribbon_Red','Red Ribbon','Armor',800,100,1,1,true,true,246,'bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5196,'Ribbon_Orange','Orange Ribbon','Armor',800,100,1,1,true,true,247,'bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5197,'Ribbon_White','White Ribbon','Armor',800,100,1,1,true,true,248,'bonus bMdef,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5198,'Drooping_Bunny','Drooping Bunny','Armor',10,100,1,true,true,249,'bonus bDex,1; bonus bFlee,2;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`refineable`,`view`) VALUES (5199,'Baseball_Cap_I','Baseball Cap','Armor',200,3,true,true,216); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`refineable`,`view`) VALUES (5200,'Coppola','Coppola','Armor',10,300,true,true,252); @@ -1992,7 +1992,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5218,'Bunny_Band_','Evolved Bunny Band','Armor',20,100,3,true,true,15,'bonus bInt,2;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5219,'Drooping_Kitty_','Evolved Drooping Cat','Armor',250000,500,3,true,false,false,true,true,142,'bonus bMdef,18; bonus bFlee,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_low`,`view`,`script`) VALUES (5220,'Smoking_Pipe_','Evolved Pipe','Armor',20,100,true,false,false,true,55,'bonus bVit,1; bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`gender`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (5221,'Pair_Of_Red_Ribbon_','Evolved Pair of Red Ribbon','Armor',20,100,2,'Female',true,45,169,'bonus bFlee,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (5221,'Pair_Of_Red_Ribbon_','Evolved Pair of Red Ribbon','Armor',20,100,2,true,45,169,'bonus bFlee,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5222,'Fish_On_Head_','Evolved Blue Fish','Armor',20,500,4,true,50,true,149,'bonus bAgi,1; bonus bDex,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5223,'Big_Golden_Bell_','Evolved Big Golden Bell','Armor',20,200,2,true,false,false,true,true,35,true,175,'bonus bAgi,2;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5224,'Orc_Hero_Helm_TW','Evolved Orc Hero Helm','Armor',500000,900,5,true,false,false,true,true,55,true,178,'bonus bStr,2; bonus bVit,1; bonus bMaxHPrate,10;'); @@ -2051,7 +2051,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5277,'Yellow_Bandana','Yellow Bandana','Armor',20,100,1,true,false,false,true,20,true,309,'bonus bLuk,2; bonus bVit,2; bonus bLongAtkDef,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5278,'Yellow_Ribbon','Yellow Ribbon','Armor',20,100,2,true,false,false,true,20,true,310,'bonus bLuk,2; bonus bVit,2; bonus bLongAtkDef,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5279,'Drooping_Kitty_C','Refined Drooping Cat','Armor',2,3,true,false,false,true,142,100,true,true,true,true,true,true,true,true,'bonus bMdef,15; bonus2 bResEff,Eff_Curse,3000;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5280,'Magestic_Goat_C','Baphomet Horns','Armor',2,10,true,41,100,true,true,true,true,true,true,true,true,'bonus bStr,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5280,'Magestic_Goat_C','Baphomet Horns','Armor',2,10,true,false,false,true,41,100,true,true,true,true,true,true,true,true,'bonus bStr,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5281,'Deviruchi_Cap_C','Refined Deviruchi Hat','Armor',2,4,true,false,false,true,123,100,true,true,true,true,true,true,true,true,'bonus bStr,1; bonus bInt,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`) VALUES (5282,'euRO_Baseball_Cap','Europe Baseball Cap','Armor',200,5,1,true,true,216); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5283,'Chick_Hat','Chick Hat','Armor',20,100,2,true,10,311,100,true,'bonus bLuk,2; bonus bMaxHP,50; bonus bMaxSP,50; skill "TF_DOUBLE",2; bonus bDoubleRate,10; bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3;'); @@ -2083,24 +2083,24 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`location_head_low`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5309,'Mahican','Wool Mask','Armor',20,200,1,true,true,true,true,331,100,true,true,true,true,true,true,true,'skill "RG_GRAFFITI",1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`,`unequip_script`) VALUES (5310,'Bulb_Hairband','Shining Electric Bulb Hairband','Armor',20,100,5,1,true,true,332,'bonus2 bSubEle,Ele_Dark,10; skill "MG_SIGHT",1;','sc_end SC_SIGHT;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5311,'Large_Hibiscus','Large Hisbiscus','Armor',20,100,2,1,true,true,333,'bonus bMdef,15;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5312,'Ayothaya_Hat','Ayothaya King\'s Hat','Armor',20,100,5,1,true,true,true,true,true,true,true,true,true,true,true,334,100,true,'bonus bStr,1; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5312,'Ayothaya_Hat','Ayothaya King\'s Hat','Armor',20,100,5,1,true,true,334,100,true,'bonus bStr,1; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5313,'Diadem','Diadem','Armor',20,100,3,1,true,true,true,335,100,true,'bonus bInt,1; bonus bMatkRate,3; bonus bVariableCastrate,-3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5314,'Hockey_Mask','Hockey Mask','Armor',20,100,1,true,true,50,336,100,true,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5315,'Observer','Observer','Armor',20,100,2,true,35,337,100,true,true,true,true,true,true,true,true,'skill "WZ_ESTIMATION",1; /*Gold PC Room: bonus bAllStats,1;*/'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5316,'Umbrella_Hat','Umbrella Hat','Armor',20,100,2,true,50,true,338,'bonus2 bSubEle,Ele_Water,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5317,'Fisherman_Hat','Fisherman\'s Hat','Armor',20,100,4,true,50,true,339,'bonus3 bAutoSpell,"WZ_WATERBALL",3,50;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5318,'Poring_Party_Hat','Poring Party Hat','Armor',20,2,true,true,340,100,true,true,true,true,true,true,'bonus bFlee,6;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5319,'Hellomother_Hat','Hello Mother Hat','Armor',20,200,3,1,true,false,false,true,1,true,341,100,true,'bonus bHPrecovRate,150; bonus bMaxHP,80+(80*getrefine());'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5319,'Hellomother_Hat','Hello Mother Hat','Armor',20,200,3,1,true,1,true,341,100,true,'bonus bHPrecovRate,150; bonus bMaxHP,80+(80*getrefine());'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5320,'Champion_Wreath','Champion Wreath','Armor',20,500,8,true,false,false,true,true,261,100,true,true,true,true,true,true,true,'bonus bAllStats,2; bonus4 bAutoSpellWhenHit,"AL_HEAL",1,50,0;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5321,'Indonesian_Bandana','Bandana Merah Putih','Armor',20,500,4,true,true,342,'bonus2 bAddMonsterDropItem,518,300;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5322,'Scarf','Kerchief','Armor',20,100,4,true,24,true,343,100,true,true,true,true,true,true,true,'bonus bMdef,2; bonus bFlee,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5323,'Misstrance_Crown','Misstrance Crown','Armor',20,14,true,165,100,true,true,true,true,true,true,true,'bonus bAllStats,2;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5324,'Little_Angel_Doll','Little Angel Doll','Armor',20,300,4,true,10,true,344,100,true,'bonus bDex,3; bonus4 bAutoSpellWhenHit,"CR_GRANDCROSS",3,30,0;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5325,'Robo_Eye','Robo Eye','Armor',20,200,2,true,10,345,100,true,'bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; bonus bDex,1;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_mid`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5326,'Masquerade_C','Masquerade C','Armor',1,1,true,78,100,true,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,7; bonus2 bAddRace,RC_Player_Human,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5326,'Masquerade_C','Masquerade C','Armor',1,1,true,false,false,true,78,100,true,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,7; bonus2 bAddRace,RC_Player_Human,7;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`location_head_mid`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5327,'Orc_Hero_Helm_C','Refined Helmet of Orc Hero','Armor',1,10,true,false,false,true,true,178,100,true,true,true,true,true,true,true,true,'bonus bStr,5; bonus bVit,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_mid`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5328,'Evil_Wing_Ears_C','Evil Wing Ears C','Armor',1,4,true,152,100,true,true,true,true,true,true,true,true,'bonus bStr,1;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_mid`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5329,'Dark_Blindfold_C','Dark Blindfold C','Armor',1,1,true,187,100,true,true,true,true,true,true,true,true,'bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Stun,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5329,'Dark_Blindfold_C','Dark Blindfold C','Armor',1,1,true,false,false,true,187,100,true,true,true,true,true,true,true,true,'bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Stun,500;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5330,'kRO_Drooping_Kitty_C','kRO Drooping Kitty C','Armor',1,9,true,false,false,true,142,100,true,true,true,true,true,true,true,true,'bonus bMdef,15; bonus2 bResEff,Eff_Curse,4000; bonus2 bResEff,Eff_Stun,1000;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5331,'Corsair_C','Corsair C','Armor',1,14,true,false,false,true,105,100,true,true,true,true,true,true,true,true,'bonus bVit,3; bonus bInt,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_mid`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (5332,'Loki_Mask','Loki Mask','Armor',200,2,true,true,20,346,'bonus bFlee2,3;'); @@ -2125,13 +2125,13 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`view`,`script`) VALUES (5351,'Sunflower_','Sunflower','Armor',20,100,2,1,true,37,'bonus2 bSubRace,RC_Insect,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5352,'Poporing_Cap','Poporing Cap','Armor',20,700,4,true,false,false,true,38,true,361); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`location_head_top`,`location_head_mid`,`refineable`,`view`,`script`) VALUES (5353,'Helm_Of_Sun_','Hat of the Sun God','Armor',20,2400,4,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,138,'bonus bStr,3; bonus bInt,2;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`gender`,`location_head_top`,`view`,`script`) VALUES (5354,'Muslim_Hat_M','Muslim Hat M','Armor',100,4,'Male',true,362,'bonus bVariableCastrate,-5;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`gender`,`location_head_top`,`view`,`script`) VALUES (5355,'Muslim_Hat_F','Selendang','Armor',100,4,'Female',true,363,'bonus bVariableCastrate,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`view`,`script`) VALUES (5354,'Muslim_Hat_M','Muslim Hat M','Armor',100,4,true,362,'bonus bVariableCastrate,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`view`,`script`) VALUES (5355,'Muslim_Hat_F','Selendang','Armor',100,4,true,363,'bonus bVariableCastrate,-5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5356,'Pumpkin_Hat_H','Festival Pumpkin Hat','Armor',20,200,3,true,true,206,'bonus2 bSubRace,RC_Demon,5; bonus2 bAddRace,RC_Demon,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5357,'Wings_Of_Victory','Wings Of Victory','Armor',20,200,10,true,true,365,100,true,true,true,true,true,true,true,'bonus bMdef,10; bonus bUnbreakableHelm;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (5358,'Pecopeco_Wing_Ears','Peco Ears','Armor',20,100,2,true,70,366,'bonus bAgi,1; bonus bMdef,2; bonus bUnbreakableHelm;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5359,'J_Captain_Hat','Ship Captain Hat','Armor',20,300,3,1,true,60,true,367,100,true,'bonus bDex,1; bonus bMaxHP,100; bonus bLongAtkRate,7;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5360,'Whikebain_Ears','Hyuke\'s Black Cat Ears','Armor',20,200,4,true,false,false,true,45,true,368,100,true,'bonus bFlee,10; bonus bCritAtkRate,10; autobonus "{ bonus2 bIgnoreMdefClassRate,Class_Normal,100; bonus2 bIgnoreMdefClassRate,Class_Boss,100; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_STEAL; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5360,'Whikebain_Ears','Hyuke\'s Black Cat Ears','Armor',20,200,4,true,45,true,368,100,true,'bonus bFlee,10; bonus bCritAtkRate,10; autobonus "{ bonus2 bIgnoreMdefClassRate,Class_Normal,100; bonus2 bIgnoreMdefClassRate,Class_Boss,100; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_STEAL; }";'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5361,'Gang_Scarf','Gangster Scarf','Armor',20,100,true,369,100,true,'bonus bBaseAtk,5; if(BaseJob==Job_Rogue) skill "RG_GANGSTER",1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5362,'Ninja_Scroll','Ninja Scroll','Armor',20,200,true,370,100,true,'bonus bMatkRate,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5363,'Helm_Of_Abyss','Helm Of Abyss','Armor',20,1000,9,1,true,true,true,true,true,true,true,true,true,true,70,true,371,100,true,'bonus2 bSubClass,Class_Normal,-5; bonus2 bSubClass,Class_Boss,10;'); @@ -2170,8 +2170,8 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5396,'Jasper_Crest','Jasper Crest','Armor',20,700,6,1,true,true,399,100,true,'bonus bDex,1; bonus2 bAddRace,RC_Undead,5; .@r = getrefine(); if (.@r<6) { bonus2 bAddEff2,Eff_Blind,10; } else if (.@r>8) { bonus bDex,2; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`view`,`script`) VALUES (5397,'Scuba_Mask','Scuba Gear','Armor',20,100,true,400,'bonus2 bSubEle,Ele_Water,10; bonus2 bExpAddRace,RC_Fish,10; bonus bUnbreakableHelm;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`class_upper`,`class_third_upper`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5398,'Bone_Head','Bone Head','Armor',20,1200,10,1,true,true,true,true,true,true,true,true,true,85,true,401,'bonus bStr,2; bonus bMdef,5; bonus2 bResEff,Eff_Stun,500; bonus2 bResEff,Eff_Bleeding,500;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`class_upper`,`class_third_upper`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5399,'Mandragora_Cap','Mandragora Cap','Armor',20,300,5,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,85,402,'bonus bVit,3; bonus3 bAutoSpellWhenHit,"DC_SCREAM",5,30;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`gender`,`location_head_top`,`location_head_mid`,`location_head_low`,`view`,`script`) VALUES (5400,'Fox_Hat','Fox Hat','Armor',20,200,'Female',true,true,true,403,'bonus bLuk,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5399,'Mandragora_Cap','Mandragora Cap','Armor',20,300,5,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,85,402,'bonus bVit,3; bonus3 bAutoSpellWhenHit,"DC_SCREAM",5,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`view`,`script`) VALUES (5400,'Fox_Hat','Fox Hat','Armor',20,200,true,true,true,403,'bonus bLuk,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (5401,'Black_Glasses','Black Frame Glasses','Armor',20,200,2,true,70,404,'bonus bInt,1; bonus bMdef,2; bonus bUnbreakableHelm;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (5402,'Mischievous_Fairy','Mischievous Fairy','Armor',10,200,2,true,70,405,'bonus bUnbreakableHelm; bonus bFlee2,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (5403,'Fish_In_Mouth','Fish In Mouth','Armor',10,200,true,30,406,'bonus2 bAddMonsterDropItem,579,500; bonus2 bAddItemHealRate,579,25;'); @@ -2228,14 +2228,14 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5454,'Dog_Cap_','Puppy Hat','Armor',20,500,3,1,true,true,234,'bonus bStr,1; bonus bInt,1; autobonus "{ bonus bCritical,100; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; autobonus "{ bonus2 bIgnoreMdefClassRate,Class_Normal,100; bonus2 bIgnoreMdefClassRate,Class_Boss,100; }",10,3000,BF_MAGIC,"{ specialeffect2 EF_MAGICALATTHIT; }";'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5455,'Geographer_Band_','Decorative Geographer','Armor',20,500,1,1,true,true,238,'bonus bInt,1; bonus3 bAutoSpell,"AL_HEAL",5,50; bonus3 bAutoSpellWhenHit,"AL_HEAL",5,30;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5456,'Vacation_Hat_','Summer Hat','Armor',20,200,true,true,315,'bonus bVit,5; bonus bHPrecovRate,20; bonus bSPrecovRate,15;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5457,'Spring_Rabbit_Hat','Moon Rabbit Hat','Armor',20,300,2,1,true,1,true,455,'bonus bAgi,3; bonus bBaseAtk,5; bonus bMatkRate,5; .@r = getrefine(); if(.@r>4) { bonus bBaseAtk,.@r-4; bonus bMatkRate,.@r-4; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5457,'Spring_Rabbit_Hat','Moon Rabbit Hat','Armor',20,300,2,1,true,false,false,true,1,true,455,'bonus bAgi,3; bonus bBaseAtk,5; bonus bMatkRate,5; .@r = getrefine(); if(.@r>4) { bonus bBaseAtk,.@r-4; bonus bMatkRate,.@r-4; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5458,'Pinwheel_Cap','Pinwheel Hat','Armor',20,200,3,true,true,456,'bonus bMaxHPrate,5; bonus bMaxSPrate,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5459,'Drooping_Bunny_Chusuk','Drooping Bunny','Armor',100,3,true,true,249,'bonus bDex,1; bonus bFlee,2;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5460,'Adv_Dragon_Skull','Evolved Dragon Skull Hat','Armor',20,1000,14,true,60,true,457,100,true,true,true,true,true,true,true,'bonus bAllStats,2; bonus bMaxHPrate,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`location_head_low`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5461,'Adv_Whisper_Mask','Evolved Whisper Mask','Armor',20,300,1,true,true,true,50,true,458,100,true,true,true,true,true,true,true,'bonus bDex,3; bonus2 bSubEle,Ele_Ghost,20;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5462,'Spiked_Scarf','Spiked Scarf','Armor',20,100,1,true,90,459,100,true,true,true,true,true,true,true,true,'bonus bAtk,30; bonus bMaxHPrate,-2;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5463,'Rainbow_Scarf','Rainbow Scarf','Armor',20,1,true,90,460,100,true,true,true,true,true,true,true,true,'bonus bMatk,30; bonus bMaxSPrate,-2;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5464,'Zaha_Doll_Hat','Zaha Doll Hat','Armor',20,1,1,true,true,461,100,true,'bonus bInt,3; bonus bMdef,9; bonus2 bMagicAddEle,Ele_Undead,10; .@r0 = getrefine(); autobonus "{ .@r = getrefine(); bonus2 bSPLossRate,10,1000; bonus bMatk,30*.@r; bonus bFixedCast,-80*.@r; }",3*.@r0,3000,BF_MAGIC,"{ active_transform 1518,3000; specialeffect2 EF_POTION_BERSERK; showscript \\"Bacsojin Power !\\"; }"; autobonus2 "{ .@r = getrefine(); bonus2 bSPLossRate,10,1000; bonus bMatk,30*.@r; bonus bFixedCast,-80*.@r; }",.@r0,3000,BF_MAGIC,"{ active_transform 1518,3000; specialeffect2 EF_POTION_BERSERK; showscript \\"Bacsojin Power !\\"; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5464,'Zaha_Doll_Hat','Zaha Doll Hat','Armor',20,1,1,true,false,false,true,true,461,100,true,'bonus bInt,3; bonus bMdef,9; bonus2 bMagicAddEle,Ele_Undead,10; .@r0 = getrefine(); autobonus "{ .@r = getrefine(); bonus2 bSPLossRate,10,1000; bonus bMatk,30*.@r; bonus bFixedCast,-80*.@r; }",3*.@r0,3000,BF_MAGIC,"{ active_transform 1518,3000; specialeffect2 EF_POTION_BERSERK; showscript \\"Bacsojin Power !\\"; }"; autobonus2 "{ .@r = getrefine(); bonus2 bSPLossRate,10,1000; bonus bMatk,30*.@r; bonus bFixedCast,-80*.@r; }",.@r0,3000,BF_MAGIC,"{ active_transform 1518,3000; specialeffect2 EF_POTION_BERSERK; showscript \\"Bacsojin Power !\\"; }";'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5465,'Celestial_Hat','Hat Of Fortune','Armor',20,500,3,1,true,40,true,462,'bonus bLuk,2; bonus bMdef,5; .@r = getrefine(); if(.@r>4) bonus bLuk,.@r-4;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5466,'Wind_Milestone','Wind Milestone','Armor',20,100,2,1,true,30,true,463,'bonus bAgi,2; skill "AL_TELEPORT",1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5467,'Helm_Of_Dragoon','Helm Of Dragon','Armor',20,1000,10,1,true,1,true,464,100,true,'bonus bStr,2; bonus bInt,2; bonus bDex,2; .@r = getrefine(); if(.@r>=7) bonus2 bExpAddRace,RC_Dragon,3; if(.@r>=9) bonus2 bExpAddRace,RC_Dragon,5; bonus3 bAutoSpell,"NPC_DRAGONFEAR",1,30;'); @@ -2269,7 +2269,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`jo REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5495,'Power_Of_Thor','Power Of Thor','Armor',20,100,6,1,true,true,493,100,true,'bonus bInt,1; bonus bDex,1; bonus bMdef,3; bonus bFlee,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5496,'Dice_Hat','Dice Hat','Armor',20,300,3,true,50,494,'bonus bLuk,4;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5497,'King_Tiger_Doll_Hat','King Tiger Doll Hat','Armor',20,400,6,1,true,false,false,true,1,true,495,100,true,'bonus bStr,2; bonus bDex,2; bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Player_Doram,10; .@r = getrefine(); autobonus "{ bonus2 bSPLossRate,5,1000; bonus bBaseAtk,25*getrefine(); }",3*.@r,3000,BF_NORMAL,"{ active_transform 1115,3000; specialeffect2 EF_POTION_BERSERK; showscript \\"Eddga Power !\\"; }"; autobonus2 "{ bonus2 bSPLossRate,5,1000; bonus bBaseAtk,25*getrefine(); }",.@r,3000,BF_NORMAL,"{ active_transform 1115,3000; specialeffect2 EF_POTION_BERSERK; showscript \\"Eddga Power !\\"; }";'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5498,'Wondering_Wolf_Helm','Wandering Wolf Helm','Armor',20,600,5,1,true,false,false,true,true,1,true,490,100,true,'bonus bAgi,5; bonus bFlee,10; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Brute,10; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,10; if(getrefine()>=7){ bonus2 bAddEff,Eff_Bleeding,10; } if(getrefine()>=9){ bonus3 bAutoSpellWhenHit,"MC_LOUD",1,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5498,'Wondering_Wolf_Helm','Wandering Wolf Helm','Armor',20,600,5,1,true,true,1,true,490,100,true,'bonus bAgi,5; bonus bFlee,10; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Brute,10; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,10; if(getrefine()>=7){ bonus2 bAddEff,Eff_Bleeding,10; } if(getrefine()>=9){ bonus3 bAutoSpellWhenHit,"MC_LOUD",1,1; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`view`,`script`) VALUES (5499,'Pizza_Hat','Pizza Hat','Armor',20,600,true,487,'skill "SM_PROVOKE",1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5500,'Icecream_Hat','Icecream Hat','Armor',300,6,true,30,true,488,'bonus bMdef,3; skill "MG_FROSTDIVER",3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (5501,'Pirate\'s_Pride','Pirate\'s Pride','Armor',100,6,true,10,496,'bonus2 bAddRace2,RC2_Ninja,5; bonus2 bSubRace2,RC2_Ninja,5;'); @@ -2452,7 +2452,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5678,'Notation_Hairband','Notation Hairband','Armor',200,100,5,true,1,true,607,'bonus bUnbreakableHelm;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5679,'Engineer_Cap','Engineer Cap','Armor',20,200,2,1,true,10,true,608,'bonus2 bAddRace,RC_Formless,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (5680,'Hawkeyes','Hawkeyes','Armor',20,100,true,10,609,'bonus bHit,10; bonus bUnbreakableHelm;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`gender`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5681,'F_Ribbon_Green','Green Ribbon','Armor',800,100,1,'Female',true,true,244,'bonus bMdef,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`refineable`,`view`,`script`) VALUES (5681,'F_Ribbon_Green','Green Ribbon','Armor',800,100,1,true,true,244,'bonus bMdef,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (5682,'Triangle_Rune_Cap','Triangle Rune Cap','Armor',20,300,5,1,true,1,true,610,100,true,'bonus bInt,1; 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; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5683,'Majestic_Goat_Repl','Baphomet Horns','Armor',20,100,5,true,1,true,41); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`) VALUES (5684,'Jewel_Crown_Repl','Ornate Crown','Armor',20,100,5,true,1,true,88); @@ -2520,7 +2520,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5746,'Rune_Circlet','Rune Circlet','Armor',20,100,12,1,true,true,true,true,true,100,true,623,100,true,true,true,true,true,true,'bonus bStr,1; bonus bInt,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,10; bonus bMatk,5; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5747,'Mitra','Mitra','Armor',20,100,12,1,true,true,true,true,true,100,true,624,100,true,true,true,true,true,true,'bonus bVit,1; bonus bInt,1; bonus bMdef,5; bonus bHealPower,5; if(readparam(bInt)>=120){ bonus bMatk,10; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5748,'Sniper_Goggle','Sniper Goggles','Armor',20,100,12,1,true,true,true,true,true,true,100,true,625,100,true,true,true,true,true,true,'bonus bAgi,1; bonus bDex,1; bonus bMdef,5; if(readparam(bAgi)>=120){ bonus bLongAtkRate,4; bonus bAspd,1; }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5749,'Driver_Band','Driver Band','Armor',20,100,12,1,true,true,true,true,'Male',true,100,true,626,100,true,true,true,true,true,true,'bonus bStr,1; bonus bDex,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,10; bonus bCritical,3; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5749,'Driver_Band','Driver Band','Armor',20,100,12,1,true,true,true,true,true,100,true,626,100,true,true,true,true,true,true,'bonus bStr,1; bonus bDex,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,10; bonus bCritical,3; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5750,'Shadow_Handicraft','Shadow Crown','Armor',20,100,12,1,true,true,true,true,true,100,true,627,100,true,true,true,true,true,true,'bonus bAgi,1; bonus bInt,1; bonus bMdef,5; if(readparam(bAgi)>=120){ bonus bBaseAtk,10; bonus bFlee,3; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5751,'Minstrel_Song_Hat','Minstrel Song Hat','Armor',20,100,12,1,true,true,true,true,'Male',true,100,true,628,100,true,true,true,true,true,true,'bonus bInt,1; bonus bLuk,1; bonus bMdef,5; bonus bLongAtkRate,5; bonus2 bSkillUseSP,"MI_RUSH_WINDMILL",10; bonus2 bSkillUseSP,"MI_ECHOSONG",10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5752,'Midas_Whisper','Midas Whispers','Armor',20,100,12,1,true,true,true,true,true,100,true,629,100,true,true,true,true,true,true,'bonus bStr,1; bonus bDex,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,5; bonus bAspd,1; }'); @@ -2531,7 +2531,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5757,'Schmidt_Helm','Reissue Schmitz Helm','Armor',20,100,12,1,true,true,true,true,true,true,100,true,634,100,true,true,true,true,true,true,'bonus bVit,2; bonus bInt,1; bonus bMdef,5; if(readparam(bInt)>=120){ bonus bMatk,10; bonus bDef,5; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5758,'Dying_Swan','Resting Swan','Armor',20,100,17,1,true,true,true,true,'Female',true,100,true,635,100,true,true,true,true,true,true,'bonus bInt,1; bonus bLuk,1; bonus bMdef,5; bonus bLongAtkRate,5; bonus2 bSkillUseSP,"WA_SWING_DANCE",10; bonus2 bSkillUseSP,"WA_SYMPHONY_OF_LOVER",10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5759,'Noah_Hat','Noah Hat','Armor',20,500,1,1,true,1,true,636,'bonus bMdef,3;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5760,'Driver_Band_','Driver Band','Armor',20,100,12,1,true,true,true,true,'Female',true,100,true,637,100,true,true,true,true,true,true,'bonus bStr,1; bonus bDex,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,10; bonus bCritical,3; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5760,'Driver_Band_','Driver Band','Armor',20,100,12,1,true,true,true,true,true,100,true,637,100,true,true,true,true,true,true,'bonus bStr,1; bonus bDex,1; bonus bMdef,5; if(readparam(bStr)>=120){ bonus bBaseAtk,10; bonus bCritical,3; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5761,'Sloth_Hat','Sloth Hat','Armor',20,800,3,true,1,true,638,'bonus bAgi,2; bonus3 bAutoSpell,"AS_SONICBLOW",5,50;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5762,'Duneyrr_Helm','Duneyrr Helm','Armor',20,100,5,true,1,true,639,'bonus bAllStats,1; bonus bMdef,5; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; bonus2 bSubRace,RC_Brute,2; bonus2 bSubRace,RC_Player_Doram,2;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5763,'Red_Bunny_Band','Red Bunny Band','Armor',200,4,true,1,true,640,'bonus bAgi,2; bonus bMdef,3;'); @@ -2842,52 +2842,52 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13000,'Jujube_Dagger','Jujube Dagger','Weapon','Dagger',10000,600,39,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,1,true,'bonus bAtkEle,Ele_Wind;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13001,'Dragon_Killer','Dragon Killer','Weapon','Dagger',20,900,110,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,60,true,'bonus bIgnoreDefRace,RC_Dragon; bonus2 bExpAddRace,RC_Dragon,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13002,'Ginnungagap','Ginnungagap','Weapon','Dagger',20,700,148,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,70,true,'bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Blind,500; bonus2 bAddEff2,Eff_Blind,50;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`job_ninja`,`job_rogue`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13003,'Coward','Cowardice Blade','Weapon','Dagger',52000,700,80,1,1,true,true,true,true,true,3,55,true,'bonus bDef,5;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`job_ninja`,`job_rogue`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13004,'Coward_','Cowardice Blade','Weapon','Dagger',52000,700,80,1,2,true,true,true,true,true,3,55,true,'bonus bDef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`job_kagerouoboro`,`job_ninja`,`job_rogue`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13003,'Coward','Cowardice Blade','Weapon','Dagger',52000,700,80,1,1,true,true,true,true,true,true,3,55,true,'bonus bDef,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`job_kagerouoboro`,`job_ninja`,`job_rogue`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13004,'Coward_','Cowardice Blade','Weapon','Dagger',52000,700,80,1,2,true,true,true,true,true,true,3,55,true,'bonus bDef,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_novice`,`job_supernovice`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (13005,'Angelwing_Short_Sword','Angelic Wing Dagger','Weapon','Dagger',20,600,120,1,1,true,true,true,4,50,true); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13006,'Khukri','Khukri','Weapon','Dagger',240000,600,150,1,true,true,3,65,true,'bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Curse,1000;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13007,'Jitte','Jitte','Weapon','Dagger',20000,400,70,1,true,true,2,35,true,'bonus bBreakWeaponRate,200;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13008,'Jitte_','Jitte','Weapon','Dagger',20000,400,70,1,1,true,true,2,35,true,'bonus bBreakWeaponRate,200;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13009,'Kamaitachi','Kamaitachi','Weapon','Dagger',48000,900,125,2,true,true,4,70,true,'bonus bAtkEle,Ele_Wind; bonus bCritical,3; bonus bAspdRate,3;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (13010,'Asura','Asura','Weapon','Dagger',3000,600,50,50,1,2,true,true,1,12,true); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (13011,'Asura_','Asura','Weapon','Dagger',3000,600,50,50,1,3,true,true,1,12,true); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13012,'Murasame','Murasame','Weapon','Dagger',20,700,95,1,1,true,true,2,24,true,'bonus bAtkEle,Ele_Water; bonus2 bCriticalAddRace,RC_DemiHuman,10; bonus2 bCriticalAddRace,RC_Player_Human,10;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13013,'Murasame_','Murasame','Weapon','Dagger',20,700,95,1,2,true,true,2,24,true,'bonus bAtkEle,Ele_Water; bonus2 bCriticalAddRace,RC_DemiHuman,10; bonus2 bCriticalAddRace,RC_Player_Human,10;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13014,'Hakujin','Hakujin','Weapon','Dagger',20,800,120,1,true,true,3,42,true,'bonus bInt,2; bonus3 bAutoSpell,"AL_HEAL",1,10;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13015,'Hakujin_','Hakujin','Weapon','Dagger',20,800,120,1,1,true,true,3,42,true,'bonus bInt,2; bonus3 bAutoSpell,"AL_HEAL",1,10;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13016,'Poison_Knife_','Poison Knife','Weapon','Dagger',20,800,64,1,2,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,65,true,'bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,3000;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13017,'House_Auger_','Ice Pick','Weapon','Dagger',20,600,70,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bDefRatioAtkClass,Class_All;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13018,'Sucsamad_','Sucsamad','Weapon','Dagger',20,800,140,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Wind,10; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_kagerouoboro`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13006,'Khukri','Khukri','Weapon','Dagger',240000,600,150,1,true,true,true,3,65,true,'bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Curse,1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_kagerouoboro`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13007,'Jitte','Jitte','Weapon','Dagger',20000,400,70,1,true,true,true,2,35,true,'bonus bBreakWeaponRate,200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_kagerouoboro`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13008,'Jitte_','Jitte','Weapon','Dagger',20000,400,70,1,1,true,true,true,2,35,true,'bonus bBreakWeaponRate,200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_kagerouoboro`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13009,'Kamaitachi','Kamaitachi','Weapon','Dagger',48000,900,125,2,true,true,true,4,70,true,'bonus bAtkEle,Ele_Wind; bonus bCritical,3; bonus bAspdRate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_kagerouoboro`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (13010,'Asura','Asura','Weapon','Dagger',3000,600,50,50,1,2,true,true,true,1,12,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_kagerouoboro`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (13011,'Asura_','Asura','Weapon','Dagger',3000,600,50,50,1,3,true,true,true,1,12,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_kagerouoboro`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13012,'Murasame','Murasame','Weapon','Dagger',20,700,95,1,1,true,true,true,2,24,true,'bonus bAtkEle,Ele_Water; bonus2 bCriticalAddRace,RC_DemiHuman,10; bonus2 bCriticalAddRace,RC_Player_Human,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_kagerouoboro`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13013,'Murasame_','Murasame','Weapon','Dagger',20,700,95,1,2,true,true,true,2,24,true,'bonus bAtkEle,Ele_Water; bonus2 bCriticalAddRace,RC_DemiHuman,10; bonus2 bCriticalAddRace,RC_Player_Human,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_kagerouoboro`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13014,'Hakujin','Hakujin','Weapon','Dagger',20,800,120,1,true,true,true,3,42,true,'bonus bInt,2; bonus3 bAutoSpell,"AL_HEAL",1,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_kagerouoboro`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13015,'Hakujin_','Hakujin','Weapon','Dagger',20,800,120,1,1,true,true,true,3,42,true,'bonus bInt,2; bonus3 bAutoSpell,"AL_HEAL",1,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13016,'Poison_Knife_','Poison Knife','Weapon','Dagger',20,800,64,1,2,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,65,true,'bonus bAtkEle,Ele_Poison; bonus2 bAddEff,Eff_Poison,3000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13017,'House_Auger_','Ice Pick','Weapon','Dagger',20,600,70,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bDefRatioAtkClass,Class_All;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13018,'Sucsamad_','Sucsamad','Weapon','Dagger',20,800,140,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Wind,10; bonus bUnbreakableWeapon;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13019,'Ginnungagap_','Ginnungagap','Weapon','Dagger',20,700,148,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,70,true,'bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Blind,500; bonus2 bAddEff2,Eff_Blind,50;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13020,'Warrior_Balmung_','Warrior\'s Balmung','Weapon','Dagger',20,1000,170,1,true,4,48,true,100,true,true,true,true,true,true,true,true,'bonus bAllStats,5;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13021,'Combat_Knife_C','Combat Knife','Weapon','Dagger',1,129,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,1,100,true,true,true,true,true,true,true,true,'bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Demon,-10; bonus bMaxSPrate,10; bonus bSPDrainValue,3; /*Gold PC Room: bonus bBaseAtk,10; bonus bMatk,10;*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13021,'Combat_Knife_C','Combat Knife','Weapon','Dagger',1,129,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,1,100,true,true,true,true,true,true,true,true,'bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Demon,-10; bonus bMaxSPrate,10; bonus bSPDrainValue,3; /*Gold PC Room: bonus bBaseAtk,10; bonus bMatk,10;*/'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13022,'Counter_Dagger_C','Dagger of Counter','Weapon','Dagger',1,209,1,true,true,true,true,true,4,1,100,true,true,true,true,true,true,true,true,'bonus bCriticalRate,90; /*Gold PC Room: bonus bBaseAtk,10; bonus bMatk,10;*/'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13023,'Asura_C','Ashura','Weapon','Dagger',1,120,98,1,true,true,1,1,100,true,true,true,true,true,true,true,true,'/*Gold PC Room: bonus bBaseAtk,10; bonus bMatk,10; */'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13024,'Sword_Breaker_C','Refined Swordbreaker','Weapon','Dagger',2,105,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,100,true,true,true,true,true,true,true,true,'bonus bBreakWeaponRate,500;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13025,'Mail_Breaker_C','Refined Mailbreaker','Weapon','Dagger',2,105,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,100,true,true,true,true,true,true,true,true,'bonus bBreakArmorRate,500;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13026,'Moonlight_Sword_C','Moonlight Dagger','Weapon','Dagger',2,85,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,100,true,true,true,true,true,true,true,true,'bonus bMaxSPrate,10; bonus bSPDrainValue,3;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13027,'Scalpel','Scalpel','Weapon','Dagger',20,500,120,1,3,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,55,true,'bonus2 bAddEff,Eff_Bleeding,500;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13028,'Tooth_Blade','Tooth Blade','Weapon','Dagger',20,700,130,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,55,true,'if(getrefine()>=9){ bonus3 bAutoSpell,"NPC_SLOWCAST",2,70; } else bonus3 bAutoSpell,"NPC_SLOWCAST",1,50;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13029,'Prinsence_Knife','Prinsense Knife','Weapon','Dagger',20,120,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`job_kagerouoboro`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13023,'Asura_C','Ashura','Weapon','Dagger',1,120,98,1,true,true,true,1,1,100,true,true,true,true,true,true,true,true,'/*Gold PC Room: bonus bBaseAtk,10; bonus bMatk,10; */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13024,'Sword_Breaker_C','Refined Swordbreaker','Weapon','Dagger',2,105,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,100,true,true,true,true,true,true,true,true,'bonus bBreakWeaponRate,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13025,'Mail_Breaker_C','Refined Mailbreaker','Weapon','Dagger',2,105,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,100,true,true,true,true,true,true,true,true,'bonus bBreakArmorRate,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13026,'Moonlight_Sword_C','Moonlight Dagger','Weapon','Dagger',2,85,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,100,true,true,true,true,true,true,true,true,'bonus bMaxSPrate,10; bonus bSPDrainValue,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_rogue`,`job_sage`,`job_swordman`,`job_thief`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13027,'Scalpel','Scalpel','Weapon','Dagger',20,500,120,1,3,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,55,true,'bonus2 bAddEff,Eff_Bleeding,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_rogue`,`job_sage`,`job_swordman`,`job_thief`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13028,'Tooth_Blade','Tooth Blade','Weapon','Dagger',20,700,130,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,55,true,'if(getrefine()>=9){ bonus3 bAutoSpell,"NPC_SLOWCAST",2,70; } else bonus3 bAutoSpell,"NPC_SLOWCAST",1,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13029,'Prinsence_Knife','Prinsense Knife','Weapon','Dagger',20,120,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,50;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13030,'Dragon_Killer_','Dragon Killer','Weapon','Dagger',20,900,110,1,2,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,60,true,'bonus bIgnoreDefRace,RC_Dragon; bonus2 bExpAddRace,RC_Dragon,10;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13031,'Sword_Breaker_','Swordbreaker','Weapon','Dagger',20,1000,70,1,3,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bBreakWeaponRate,500;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13032,'Mail_Breaker_','Mailbreaker','Weapon','Dagger',20,1000,70,1,3,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bBreakArmorRate,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13031,'Sword_Breaker_','Swordbreaker','Weapon','Dagger',20,1000,70,1,3,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bBreakWeaponRate,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13032,'Mail_Breaker_','Mailbreaker','Weapon','Dagger',20,1000,70,1,3,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,36,true,'bonus bBreakArmorRate,500;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13033,'Assasin_Dagger_','Assassin Dagger','Weapon','Dagger',20,600,140,1,1,true,true,4,36,true,'bonus bMaxHPrate,20; bonus bMaxSPrate,15; bonus bAspdRate,2; bonus bAtkEle,Ele_Dark;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (13034,'Twilight_Desert','Desert Twilight','Weapon','Dagger',20,600,130,1,2,true,true,true,true,2,70,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (13035,'Sandstorm','Sandstorm','Weapon','Dagger',20,600,50,1,4,true,true,true,true,2,70,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13036,'BF_Dagger1','Brave Assassin\'s Damascus','Weapon','Dagger',20,120,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,80,true,100,true,true,true,true,true,true,true,'bonus bStr,1; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon; if(Class==Job_Ninja||Class==Job_Rogue||Class==Job_Stalker) bonus bMatk,90;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13037,'BF_Dagger2','Valorous Assassin\'s Damascus','Weapon','Dagger',20,120,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,80,true,100,true,true,true,true,true,true,true,'bonus bStr,1; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus bUnbreakableWeapon; autobonus "{ bonus bDefRatioAtkClass,Class_All; }",10,6000,BF_WEAPON,"{ specialeffect2 EF_HASTEUP; }"; if(Class==Job_Ninja||Class==Job_Rogue||Class==Job_Stalker) bonus bMatk,90;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rogue`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13038,'Dagger_Of_Hunter','Dagger of Hunter','Weapon','Dagger',20,700,120,1,3,true,true,true,true,3,70,true,'bonus bStr,1; bonus bAgi,2; bonus bDex,1; bonus4 bAutoSpellOnSkill,"RG_BACKSTAP","SM_BASH",10,100; bonus2 bSkillAtk,"RG_BACKSTAP",20;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13039,'Ivory_Knife','Ivory Knife','Weapon','Dagger',20,700,130,1,2,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,50,true,'bonus bAgi,2; bonus bAspdRate,3; bonus2 bAddEff,Eff_Bleeding,300; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_rogue`,`job_sage`,`job_swordman`,`job_thief`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13039,'Ivory_Knife','Ivory Knife','Weapon','Dagger',20,700,130,1,2,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,50,true,'bonus bAgi,2; bonus bAspdRate,3; bonus2 bAddEff,Eff_Bleeding,300; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,30;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`) VALUES (13040,'N_Cutter','Novice Cutter','Weapon','Dagger',50,1,3,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,1); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`) VALUES (13041,'N_Main_Gauche','Novice Main Gauche','Weapon','Dagger',63,1,3,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,1); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13042,'Krieger_Dagger1','Glorious Gladius','Weapon','Dagger',20,120,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus3 bAutoSpell,"PR_LEXDIVINA",1,20; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) bonus4 bAutoSpellOnSkill,"RG_RAID","NPC_WIDEBLEEDING",1,250;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13043,'Fortune_Sword_I','Fortune Sword','Weapon','Dagger',120,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,100,true,true,true,true,true,true,true,true,'bonus bFlee2,20; bonus bLuk,5;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13044,'House_Auger_I','Ice Pick','Weapon','Dagger',105,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,100,true,true,true,true,true,true,true,true,'bonus bDefRatioAtkClass,Class_All; autobonus "{ bonus bFlee,20; }",10,10000,BF_WEAPON|BF_MISC;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_ninja`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13045,'Kamaitachi_I','Kamaitachi','Weapon','Dagger',155,2,true,true,4,100,true,true,true,true,true,true,true,true,'bonus bUnbreakableWeapon; bonus bCritical,10; bonus bAspdRate,5; bonus bAtkEle,Ele_Wind;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13043,'Fortune_Sword_I','Fortune Sword','Weapon','Dagger',120,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,100,true,true,true,true,true,true,true,true,'bonus bFlee2,20; bonus bLuk,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13044,'House_Auger_I','Ice Pick','Weapon','Dagger',105,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,100,true,true,true,true,true,true,true,true,'bonus bDefRatioAtkClass,Class_All; autobonus "{ bonus bFlee,20; }",10,10000,BF_WEAPON|BF_MISC;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_kagerouoboro`,`job_ninja`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13045,'Kamaitachi_I','Kamaitachi','Weapon','Dagger',155,2,true,true,true,4,100,true,true,true,true,true,true,true,true,'bonus bUnbreakableWeapon; bonus bCritical,10; bonus bAspdRate,5; bonus bAtkEle,Ele_Wind;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`job_rogue`,`job_thief`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13046,'Krieg','Krierg','Weapon','Dagger',20,500,110,1,3,true,true,true,true,true,true,2,50,true,'bonus3 bAddEffOnSkill,"RG_BACKSTAP",Eff_Bleeding,1000; bonus2 bSkillAtk,"RG_BACKSTAP",15;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`job_rogue`,`job_thief`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13047,'Weihna','Weihna','Weapon','Dagger',20,500,135,1,2,true,true,true,true,true,true,3,50,true,'bonus3 bAddEffOnSkill,"RG_RAID",Eff_Poison,100; autobonus "{ bonus2 bAddClass,Class_All,10; }",5,5000,BF_WEAPON|BF_SHORT,"{ specialeffect2 EF_POTION_BERSERK; }";'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13048,'Damascus_C','Damascus','Weapon','Dagger',153,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,1,100,true,true,true,true,true,true,true,true,'bonus2 bAddSize,Size_All,40;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13048,'Damascus_C','Damascus','Weapon','Dagger',153,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,1,100,true,true,true,true,true,true,true,true,'bonus2 bAddSize,Size_All,40;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (13049,'Lacma','Lacma','Weapon','Dagger',20,650,45,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,1,true,100,true,'.@r = getrefine(); if (.@r>=3) { bonus bBaseAtk,40; bonus bMatk,40; } if(.@r>=6){ bonus2 bAddSize,Size_Medium,8; bonus2 bMagicAddSize,Size_Medium,8; autobonus "{ bonus bNoSizeFix; }",10,5000; } if(.@r>=9){ bonus2 bAddSize,Size_Medium,20; bonus2 bMagicAddSize,Size_Medium,20; } if(.@r>12){ bonus bNoSizeFix; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`magic_attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13050,'P_Dagger1','Eden Dagger I','Weapon','Dagger',124,60,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,2,26,100,true,true,true,true,true,true,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`magic_attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13051,'P_Dagger2','Eden Dagger II','Weapon','Dagger',158,70,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,2,40,100,true,true,true,true,true,true,true); @@ -2900,34 +2900,34 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`pr REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`) VALUES (13058,'E_Combat_Knife_C','Combat Knife','Weapon','Dagger',1,129,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,1); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`) VALUES (13059,'E_Asura_C','Asura','Weapon','Dagger',1,120,1,true,true,1,1); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`) VALUES (13060,'E_Counter_Dagger_C','Counter Dagger','Weapon','Dagger',1,209,1,true,true,true,true,true,4,1); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rogue`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13061,'Black_Wing','Black Wing','Weapon','Dagger',20,600,142,1,1,true,true,3,102,true,'.@r = getrefine(); bonus2 bSkillAtk,"SC_FATALMENACE",30; if(.@r>=6){ bonus2 bSkillAtk,"SC_FATALMENACE",.@r*2; bonus bMatkRate,(.@r*3); }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13062,'Ancient_Dagger','Ancient Dagger','Weapon','Dagger',20,600,107,120,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,120,true,'bonus bMaxSP,100; bonus bSPrecovRate,5; bonus2 bAddEff2,Eff_Curse,20; bonus3 bAddEff,Eff_Curse,20,ATF_SELF;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13061,'Black_Wing','Black Wing','Weapon','Dagger',20,600,142,1,1,true,true,true,true,true,3,102,true,'.@r = getrefine(); bonus2 bSkillAtk,"SC_FATALMENACE",30; if(.@r>=6){ bonus2 bSkillAtk,"SC_FATALMENACE",.@r*2; bonus bMatkRate,(.@r*3); }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_rogue`,`job_sage`,`job_swordman`,`job_thief`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13062,'Ancient_Dagger','Ancient Dagger','Weapon','Dagger',20,600,107,120,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,120,true,'bonus bMaxSP,100; bonus bSPrecovRate,5; bonus2 bAddEff2,Eff_Curse,20; bonus3 bAddEff,Eff_Curse,20,ATF_SELF;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_assassin`,`job_ninja`,`job_rogue`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (13063,'Adventure_Knife','Adventure Knife','Weapon','Dagger',60,1,true,true,true,true,true,1,1,'bonus bUnbreakableWeapon;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`job_ninja`,`job_rogue`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13064,'Academy_Knife','Academy Knife','Weapon','Dagger',700,110,1,1,true,true,true,true,true,1,1,true,'bonus bUnbreakableWeapon;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_novice`,`job_supernovice`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13065,'Academy_Eti_Knife','Academy Eti Knife','Weapon','Dagger',1200,120,1,1,true,true,true,1,1,true,'bonus bUnbreakableWeapon;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`magic_attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13066,'P_Dagger3','Eden Dagger III','Weapon','Dagger',165,80,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,60,100,true,true,true,true,true,true,true); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13067,'Caress','Keris','Weapon','Dagger',20,700,107,70,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,30,true,'bonus2 bHPDrainRate,20,10;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`magic_attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13068,'Saurel','Pompano','Weapon','Dagger',160,100,3,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,50,100,true,true,true,true,true,true,true,true,'bonus bAgi,3; bonus bUnbreakableWeapon; 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; }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13069,'Aztoe_Nail','As-nail','Weapon','Dagger',56000,500,160,80,1,true,true,true,true,true,true,true,true,true,true,4,110,true,'bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Freeze,100+(getrefine()*50);'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13070,'Scarletto_Nail','Scarlet-nail','Weapon','Dagger',56000,500,160,80,1,true,true,true,true,true,true,true,true,true,true,4,110,true,'bonus bAtkEle,Ele_Fire; bonus2 bAddEff,Eff_Stone,100+(getrefine()*50);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13067,'Caress','Keris','Weapon','Dagger',20,700,107,70,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,30,true,'bonus2 bHPDrainRate,20,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`magic_attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13068,'Saurel','Pompano','Weapon','Dagger',160,100,3,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,50,100,true,true,true,true,true,true,true,true,'bonus bAgi,3; bonus bUnbreakableWeapon; 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; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13069,'Aztoe_Nail','As-nail','Weapon','Dagger',56000,500,160,80,1,true,true,true,true,true,true,true,true,true,true,true,true,4,110,true,'bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Freeze,100+(getrefine()*50);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13070,'Scarletto_Nail','Scarlet-nail','Weapon','Dagger',56000,500,160,80,1,true,true,true,true,true,true,true,true,true,true,true,true,4,110,true,'bonus bAtkEle,Ele_Fire; bonus2 bAddEff,Eff_Stone,100+(getrefine()*50);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (13071,'Upg_Dagger','Upg Dagger','Weapon','Dagger',20,600,55,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,1,true,100,true,'.@r = getrefine(); bonus bBaseAtk,(.@r*10); bonus bMatk,(.@r*5); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*5);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13072,'Velum_Damascus','Vellum Damascus','Weapon','Dagger',20,1000,180,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,95,true,'bonus4 bSetDefRace,RC_Player_Human,10000,5000,1; bonus4 bSetMDefRace,RC_Player_Human,10000,5000,1; bonus bAspdRate,getrefine();'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13073,'Counter_Dagger_','Counter Dagger','Weapon','Dagger',120000,550,140,1,1,true,true,true,true,true,4,55,true,'bonus bCritical,90;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`range`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13074,'Ninja_Cutter','Ninja Sword Prototype','Weapon','Dagger',1,true,true,4,99,true,100,true,true,true,true,true,true,true,true); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13075,'Kurenai','Kurenai','Weapon','Dagger',5000,700,130,1,true,true,3,99,true,'bonus bInt,3;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13076,'Raksasa_Dagger','Nachal Sword','Weapon','Dagger',40000,600,120,100,1,1,true,true,3,110,true,'bonus bInt,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`range`,`job_kagerouoboro`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13074,'Ninja_Cutter','Ninja Sword Prototype','Weapon','Dagger',1,true,true,true,4,99,true,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_kagerouoboro`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13075,'Kurenai','Kurenai','Weapon','Dagger',5000,700,130,1,true,true,true,3,99,true,'bonus bInt,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_kagerouoboro`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13076,'Raksasa_Dagger','Nachal Sword','Weapon','Dagger',40000,600,120,100,1,1,true,true,true,3,110,true,'bonus bInt,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_ninja`,`class_normal`,`class_upper`,`class_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (13077,'Kagekiri','Kagekiri','Weapon','Dagger',40000,600,50,120,1,true,true,true,true,true,4,100,true); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13078,'Mikatsuki','Mikacheuki','Weapon','Dagger',40000,600,50,120,1,1,true,true,4,100,true,'bonus bUseSPrate,-5; bonus bVariableCastrate,-5;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`slots`,`job_archer`,`job_assassin`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_soullinker`,`job_supernovice`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13079,'Metal_Dagger','Metal Dagger','Weapon','Dagger',20,55,1,true,true,true,true,true,true,true,true,true,true,true,3,1,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,(.@r*5); bonus bMatk,(.@r*2); .@i = min(BaseLevel/10,12); if(.@i>2) bonus bBaseAtk,((.@i-2)*5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_kagerouoboro`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13078,'Mikatsuki','Mikacheuki','Weapon','Dagger',40000,600,50,120,1,1,true,true,true,4,100,true,'bonus bUseSPrate,-5; bonus bVariableCastrate,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13079,'Metal_Dagger','Metal Dagger','Weapon','Dagger',20,55,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,1,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,(.@r*5); bonus bMatk,(.@r*2); .@i = min(BaseLevel/10,12); if(.@i>2) bonus bBaseAtk,((.@i-2)*5);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13081,'Octo_kitchen_Knife','Discount knife Octopus','Weapon','Dagger',200000,700,140,3,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,105,true,'.@r = getrefine(); bonus bHit,.@r;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`magic_attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13083,'TE_Woe_Knife','TE Woe Knife','Weapon','Dagger',100,100,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,40,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Silence,3000;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_archer`,`job_mage`,`job_merchant`,`job_ninja`,`job_soullinker`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (13085,'Volcano_Knife','Volcano Knife','Weapon','Dagger',10,200,80,true,true,true,true,true,true,true,4,60,'bonus bAtkEle,Ele_Fire; bonus bAgi,2; bonus bMaxHPrate,-2; bonus2 bSubEle,Ele_Fire,2; bonus2 bSubEle,Ele_Water,-5; .@r = getrefine(); if(.@r>=7){ bonus bMaxHPrate,.@r-6; bonus2 bSubEle,Ele_Fire,3; }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (13086,'Goldsmithing_Dagger','Goldsmithing Dagger','Weapon','Dagger',20,500,35,25,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,1,true); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`slots`,`job_archer`,`job_mage`,`job_merchant`,`job_ninja`,`job_soullinker`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13088,'Greater_Lease','Greater Lease','Weapon','Dagger',10,500,110,50,1,true,true,true,true,true,true,true,true,4,30,true,'.@r = getrefine(); if (.@r >= 5) bonus bMatk,30; if (.@r >= 7) bonus bMatk,40; if (.@r >= 9) bonus bMatk,50;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13089,'FaceWorm_Leg','Faceworm Leg','Weapon','Dagger',20,500,110,50,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,24,true,'bonus bAtkEle,Ele_Poison; autobonus "{}",30,5000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; active_transform 2528,5000; }";'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13090,'FaceWormQueen_Leg','Faceworm Queen Leg','Weapon','Dagger',20,500,180,120,1,2,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,100,true,'bonus bInt,3; autobonus "{ bonus3 bAutoSpell,\\"NPC_EARTHQUAKE\\",1,200; }",8,5000,BF_NORMAL,"{ specialeffect2 EF_POTION_BERSERK; active_transform 2529,5000; }";'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_soullinker`,`job_supernovice`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (13092,'RWC_Memory_Knife','RWC Memory Knife','Weapon','Dagger',20,650,50,1,1,true,true,true,true,true,true,true,true,true,3,1,true,100,true,'.@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; }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (13093,'Thanos_Dagger','Thanos Dagger','Weapon','Dagger',10,800,100,130,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,120,true,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000;','heal -1000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (13085,'Volcano_Knife','Volcano Knife','Weapon','Dagger',10,200,80,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,60,'bonus bAtkEle,Ele_Fire; bonus bAgi,2; bonus bMaxHPrate,-2; bonus2 bSubEle,Ele_Fire,2; bonus2 bSubEle,Ele_Water,-5; .@r = getrefine(); if(.@r>=7){ bonus bMaxHPrate,.@r-6; bonus2 bSubEle,Ele_Fire,3; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (13086,'Goldsmithing_Dagger','Goldsmithing Dagger','Weapon','Dagger',20,500,35,25,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,1,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13088,'Greater_Lease','Greater Lease','Weapon','Dagger',10,500,110,50,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,30,true,'.@r = getrefine(); if (.@r >= 5) bonus bMatk,30; if (.@r >= 7) bonus bMatk,40; if (.@r >= 9) bonus bMatk,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13089,'FaceWorm_Leg','Faceworm Leg','Weapon','Dagger',20,500,110,50,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,24,true,'bonus bAtkEle,Ele_Poison; autobonus "{}",30,5000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; active_transform 2528,5000; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13090,'FaceWormQueen_Leg','Faceworm Queen Leg','Weapon','Dagger',20,500,180,120,1,2,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,100,true,'bonus bInt,3; autobonus "{ bonus3 bAutoSpell,\\"NPC_EARTHQUAKE\\",1,200; }",8,5000,BF_NORMAL,"{ specialeffect2 EF_POTION_BERSERK; active_transform 2529,5000; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (13092,'RWC_Memory_Knife','RWC Memory Knife','Weapon','Dagger',20,650,50,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,1,true,100,true,'.@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; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (13093,'Thanos_Dagger','Thanos Dagger','Weapon','Dagger',10,800,100,130,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,4,120,true,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000;','heal -1000,0;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13094,'Devil_Pierced_Dagger','Evil Slayer Stabber Dagger','Weapon','Dagger',900,120,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,100,true,'bonus2 bAddRace,RC_Undead,10; bonus2 bAddRace,RC_Demon,10; .@r = getrefine(); if(.@r>=9) { .@dmg = 5; if(.@r>=12) { .@dmg += 7; } bonus2 bAddClass,Class_All,.@dmg; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13096,'Half_BF_Dagger2','Half BF Dagger2','Weapon','Dagger',20,120,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,1,true,'bonus bStr,1; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon; 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;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13097,'Ru_Blue_Dagger','Blue Dagger','Weapon','Dagger',10,1000,160,1,1,true,true,true,true,true,3,100,true,'bonus bStr,5; bonus bInt,5;'); @@ -2952,16 +2952,16 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`pr REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (13116,'Novice_Revolver','Novice Revolver','Weapon','Revolver',500,20,7,true,true,true,true,1,1,'bonus bHit,-5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13117,'TE_Woe_Pistol','TE Woe Pistol','Weapon','Revolver',60,7,true,true,true,true,3,40,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Curse,3000;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13118,'Tiny_Flame','Fading Flame','Weapon','Revolver',1,100,7,true,true,true,true,1,1,true,100,true,true,true,true,true,true,true); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13119,'Freedom_Flame','Freedom Flame','Weapon','Revolver',1,100,100,7,2,true,true,true,true,3,99,true,100,true,true,true,true,true,true); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13120,'H_FEATHER_H_FIRE','Heaven\'s Feather & Hell\'s Fire','Weapon','Revolver',1200000,800,150,9,1,true,true,true,true,3,99,true,'bonus2 bSkillAtk,"GS_DESPERADO",20; bonus2 bAddEff,Eff_Burning,200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13119,'Freedom_Flame','Freedom Flame','Weapon','Revolver',1,100,100,7,2,true,true,3,99,true,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13120,'H_FEATHER_H_FIRE','Heaven\'s Feather & Hell\'s Fire','Weapon','Revolver',1200000,800,150,9,1,true,true,3,99,true,'bonus2 bSkillAtk,"GS_DESPERADO",20; bonus2 bAddEff,Eff_Burning,200;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13122,'ALTAIR_ARES','Altair & Ares','Weapon','Revolver',1450000,1000,200,9,true,true,true,3,140,true,'bonus bHit,5; bonus bAspdRate,10; bonus bLongAtkRate,30;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13124,'ALTAIR_ARES_','Altair & Ares','Weapon','Revolver',1450000,1000,200,9,1,true,true,true,3,140,true,'bonus bHit,5; bonus bAspdRate,10; bonus bLongAtkRate,30;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13125,'Metal_Revolver','Metal Revolver','Weapon','Revolver',30,7,1,true,true,true,true,3,1,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,3*.@r; bonus bLongAtkRate,1; if (BaseLevel >= 20) { bonus bBaseAtk,3*(min(BaseLevel,120)/10); }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13126,'Infinity_Pistol','Infinity Pistol','Weapon','Revolver',10,500,175,7,1,true,true,true,4,100,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13126,'Infinity_Pistol','Infinity Pistol','Weapon','Revolver',10,500,175,7,1,true,true,true,true,4,100,100,true,true,true,true,true,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13127,'Crimson_Revolver','Crimson Revolver','Weapon','Revolver',20,1000,100,7,2,true,true,true,true,3,70,true,'.@r = getrefine(); bonus bBaseAtk,(.@r<=15?pow(.@r,2):225); if(BaseLevel>=70){ bonus bBaseAtk,(BaseLevel/10)*5; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13128,'Revolver_of_Vicious_Mind','Revolver of Vicious Mind','Weapon','Revolver',20,1500,150,7,1,true,true,true,true,4,160,true,'bonus bAtk,pow(min(getrefine(),15),2);'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13129,'Unity_Revolver','Unity Revolver','Weapon','Revolver',20,500,95,7,1,true,true,true,true,3,1,true,100,true,true,true,true,true,true,'bonus bBaseAtk,pow(getrefine(),2)*125/100;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13138,'Dark_Rose','Dark Rose','Weapon','Revolver',20,1800,150,7,2,true,true,true,3,120,true,'.@r = getrefine(); bonus bAspdRate,10; if (.@r >= 7) { bonus bLongAtkRate,15; if (.@r >= 9) { bonus bAspd,1; } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13129,'Unity_Revolver','Unity Revolver','Weapon','Revolver',20,500,95,7,1,true,true,3,1,true,100,true,true,true,true,true,true,'bonus bBaseAtk,pow(getrefine(),2)*125/100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13138,'Dark_Rose','Dark Rose','Weapon','Revolver',20,1800,150,7,2,true,true,3,120,true,'.@r = getrefine(); bonus bAspdRate,10; if (.@r >= 7) { bonus bLongAtkRate,15; if (.@r >= 9) { bonus bAspd,1; } }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13146,'Calf_Deathadder','Calf Deathadder','Weapon','Revolver',1400,170,7,2,true,true,true,4,150,true,'.@r = getrefine(); bonus bAspdRate,10; bonus bLongAtkRate,(.@r/2)*5 + (.@r > 11 ? 5 : 0); if(.@r > 6){ bonus bAspdRate,5; } if(.@r > 8){ bonus2 bSkillAtk,"RL_FIREDANCE",25; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (13150,'Branch','Branch','Weapon','Rifle',3000,500,50,9,3,true,true,true,true,1,1,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13151,'The_Cyclone','Cyclone','Weapon','Rifle',17500,700,120,9,1,true,true,true,true,2,24,true,'bonus bHit,10; bonus bCritical,10;'); @@ -2993,10 +2993,10 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`at REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13177,'Krieger_Gatling1','Glorious Gatling Gun','Weapon','Gatling',90,9,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(.@r,14)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(.@r,14)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) { bonus2 bAddClass,Class_All,.@r; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13178,'Krieger_Shotgun1','Glorious Shotgun','Weapon','Shotgun',110,9,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,55; bonus2 bAddRace,RC_Player_Human,55; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bSplashRange,1; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(.@r,14)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(.@r,14)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) { bonus2 bSkillAtk,"GS_SPREADATTACK",.@r * 2; bonus3 bAddEffOnSkill,"GS_SPREADATTACK",Eff_Stun,2000; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13179,'Krieger_Launcher1','Glorious Grenade Launcher','Weapon','Grenade',330,9,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus2 bSkillAtk,"GS_TRIPLEACTION",30; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(.@r,14)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(.@r,14)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,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; }"; }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`class_normal`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`) VALUES (13180,'Novice_Rifle','Novice Rifle','Weapon','Rifle',500,50,9,3,true,true,true,true,true,1,1); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`class_normal`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`) VALUES (13181,'Novice_Shotgun','Novice Shotgun','Weapon','Shotgun',1000,80,9,true,true,true,true,true,1,1); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`class_normal`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`) VALUES (13182,'Novice_Gatling','Novice Gatling','Weapon','Gatling',1500,40,9,true,true,true,true,true,1,1); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`class_normal`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`) VALUES (13183,'Novice_Grenade_Launcher','Novice Grenade Launcher','Weapon','Grenade',1500,40,9,true,true,true,true,true,1,1); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`) VALUES (13180,'Novice_Rifle','Novice Rifle','Weapon','Rifle',500,50,9,3,true,true,true,true,1,1); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`) VALUES (13181,'Novice_Shotgun','Novice Shotgun','Weapon','Shotgun',1000,80,9,true,true,true,true,1,1); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`) VALUES (13182,'Novice_Gatling','Novice Gatling','Weapon','Gatling',1500,40,9,true,true,true,true,1,1); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`) VALUES (13183,'Novice_Grenade_Launcher','Novice Grenade Launcher','Weapon','Grenade',1500,40,9,true,true,true,true,1,1); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13184,'TE_Woe_Rifle','TE Woe Rifle','Weapon','Rifle',80,9,true,true,true,true,3,40,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Silence,1000;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13185,'TE_Woe_Gatling','TE Woe Gatling','Weapon','Gatling',100,7,true,true,true,true,3,40,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Stun,1000;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13186,'TE_Woe_Shotgun','TE Woe Shotgun','Weapon','Shotgun',100,7,true,true,true,true,3,40,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Poison,1000;'); @@ -3005,46 +3005,46 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`pr REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13190,'RAG203_','RAG203','Weapon','Rifle',1800000,1300,260,9,1,true,true,true,3,140,true,'bonus bHit,10; bonus bCriticalRate,15; bonus4 bAutoSpell,"AL_DECAGI",1,30,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13192,'DEATHFIRE','Death Fire','Weapon','Shotgun',1250000,2000,400,9,1,true,true,true,3,108,true,'bonus bSplashRange,1; bonus bAtkRange,5; bonus bHit,-50; bonus bAspdRate,-10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13193,'R_THUNDER','Rolling Thunder','Weapon','Shotgun',1350000,1800,280,9,1,true,true,true,3,120,true,'bonus bSplashRange,1; bonus bHit,-10; bonus bAspdRate,-10; bonus3 bAutoSpell,"MG_THUNDERSTORM",5,30;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13194,'P_BREAKER','Peace Breaker','Weapon','Shotgun',1950000,1400,250,9,true,true,true,true,3,140,true,'bonus bHit,-25; bonus bAspdRate,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13194,'P_BREAKER','Peace Breaker','Weapon','Shotgun',1950000,1400,250,9,true,true,true,3,140,true,'bonus bHit,-25; bonus bAspdRate,25;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13195,'RAG203','RAG203','Weapon','Rifle',1800000,1300,260,9,true,true,true,3,140,true,'bonus bHit,10; bonus bCriticalRate,15; bonus4 bAutoSpell,"AL_DECAGI",1,30,1;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13196,'P_BREAKER_','Peace Breaker','Weapon','Shotgun',1950000,1400,250,9,1,true,true,true,true,3,140,true,'bonus bHit,-25; bonus bAspdRate,25;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (13197,'MINIMAY','Mini Mei','Weapon','Gatling',1600000,2500,220,9,2,true,true,true,true,2,106,true); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13198,'TEMPEST','Tempest','Weapon','Gatling',2200000,2500,250,9,true,true,true,true,4,140,true,'bonus bHit,-25; bonus bCritical,10; bonus bLongAtkRate,20;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13199,'TEMPEST_','Tempest','Weapon','Gatling',2200000,2500,250,9,1,true,true,true,true,4,140,true,'bonus bHit,-25; bonus bCritical,10; bonus bLongAtkRate,20;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13300,'Huuma_Bird_Wing','Huuma Wing Shuriken','Weapon','Huuma',90000,3000,150,1,true,true,true,4,65,true,'bonus bAtkEle,Ele_Wind; bonus bDex,-2; bonus bAgi,-1;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13301,'Huuma_Giant_Wheel','Huuma Giant Wheel Shuriken','Weapon','Huuma',40000,2500,50,1,3,true,true,true,4,42,true,'bonus2 bAddEff,Eff_Bleeding,100;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13302,'Huuma_Giant_Wheel_','Huuma Giant Wheel Shuriken','Weapon','Huuma',40000,2500,50,1,4,true,true,true,4,42,true,'bonus2 bAddEff,Eff_Bleeding,100;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13303,'Huuma_Blaze','Huuma Blaze Shuriken','Weapon','Huuma',78000,1500,185,1,true,true,true,4,55,true,'bonus bAtkEle,Ele_Fire; bonus bDex,-2; bonus3 bAutoSpell,"MG_FIREBALL",5,30;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13304,'Huuma_Calm_Mind','Huuma Calm Mind','Weapon','Huuma',20,1550,112,1,2,true,true,true,3,70,true,'bonus2 bSkillAtk,"NJ_HUUMA",30; bonus bNoCastCancel;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13305,'BF_Huuma_Shuriken1','Brave Huuma Front Shuriken','Weapon','Huuma',20,55,1,true,true,true,3,80,true,100,true,true,true,true,true,true,true,'bonus bStr,2; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13306,'BF_Huuma_Shuriken2','Valorous Huuma Front Shuriken','Weapon','Huuma',20,55,1,true,true,true,3,80,true,100,true,true,true,true,true,true,true,'bonus bStr,2; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; autobonus "{ bonus2 bSkillAtk,\\"NJ_HUUMA\\",100; bonus2 bSkillAtk,\\"NJ_ISSEN\\",100; }",50,10000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; bonus bUnbreakableWeapon;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13307,'Krieger_Huuma_Shuriken1','Glorious Shuriken','Weapon','Huuma',20,55,90,1,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; autobonus "{ bonus2 bSkillAtk,\\"NJ_HUUMA\\",100; bonus2 bSkillAtk,\\"NJ_ISSEN\\",100; }",50,10000; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-3,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-3,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) { bonus5 bAutoSpellOnSkill,"NJ_ISSEN","AL_HEAL",10,1000,1; bonus4 bAutoSpellOnSkill,"NJ_HUUMA","NPC_CRITICALWOUND",2,200; }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13308,'Huuma_Blaze_I','Huuma Blaze Shuriken','Weapon','Huuma',230,1,true,true,true,4,100,true,true,true,true,true,true,true,true,'bonus bAtkEle,Ele_Fire; bonus3 bAutoSpell,"MG_FIREBALL",5,30; bonus bDex,2;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13309,'Huuma_Giant_Wheel_C','Huuma Giant Wheel Shuriken','Weapon','Huuma',99,1,true,true,true,4,1,100,true,true,true,true,true,true,true,true,'bonus2 bAddEff,Eff_Bleeding,100; bonus2 bAddSize,Size_All,80;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`magic_attack`,`range`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13310,'P_Huuma_Shuriken1','P.Huuma Suriken I','Weapon','Huuma',150,50,1,true,true,true,3,60,100,true,true,true,true,true,true,true); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13311,'Huuma_Shadow','Sword Huuma Shuriken','Weapon','Huuma',5000,1500,170,1,true,true,true,3,99,true,'bonus bStr,3;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`range`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13312,'Huuma_Job_Test','Prototype Huuma Shuriken','Weapon','Huuma',3000,1,true,true,true,4,99,true,100,true,true,true,true,true,true,true,true); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13313,'Huuma_Swirling_Petal','Flower Huuma Shuriken','Weapon','Huuma',100000,1500,150,50,1,2,true,true,true,3,110,true,'bonus2 bSkillAtk,"KO_HUUMARANKA",20;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13314,'Huuma_Fluttering_Snow','Wave Huuma Shuriken','Weapon','Huuma',100000,1500,200,50,1,true,true,true,4,110,true,'bonus bAtkEle,Ele_Water; bonus3 bAutoSpell,"NJ_HYOUSYOURAKU",max(getskilllv("NJ_HYOUSYOURAKU"),1),30;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13315,'Huuma_Thunderstorm','Thunderstorm Huuma Shuriken','Weapon','Huuma',100000,1500,200,50,1,true,true,true,4,110,true,'bonus bAtkEle,Ele_Wind; bonus3 bAutoSpell,"NJ_RAIGEKISAI",max(getskilllv("NJ_RAIGEKISAI"),1),30; bonus2 bAddEff,Eff_Blind,500;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (13316,'Upg_Huuma_Shuriken','Upg Huuma Shuriken','Weapon','Huuma',20,1500,55,1,1,true,true,true,3,1,true,100,true,'.@r = getrefine(); bonus bBaseAtk,(.@r*10); bonus bMatk,(.@r*5); bonus bLongAtkRate,(.@r); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*5); bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13196,'P_BREAKER_','Peace Breaker','Weapon','Shotgun',1950000,1400,250,9,1,true,true,true,3,140,true,'bonus bHit,-25; bonus bAspdRate,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (13197,'MINIMAY','Mini Mei','Weapon','Gatling',1600000,2500,220,9,2,true,true,true,2,106,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13198,'TEMPEST','Tempest','Weapon','Gatling',2200000,2500,250,9,true,true,true,4,140,true,'bonus bHit,-25; bonus bCritical,10; bonus bLongAtkRate,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13199,'TEMPEST_','Tempest','Weapon','Gatling',2200000,2500,250,9,1,true,true,true,4,140,true,'bonus bHit,-25; bonus bCritical,10; bonus bLongAtkRate,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_kagerouoboro`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13300,'Huuma_Bird_Wing','Huuma Wing Shuriken','Weapon','Huuma',90000,3000,150,1,true,true,true,true,4,65,true,'bonus bAtkEle,Ele_Wind; bonus bDex,-2; bonus bAgi,-1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_kagerouoboro`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13301,'Huuma_Giant_Wheel','Huuma Giant Wheel Shuriken','Weapon','Huuma',40000,2500,50,1,3,true,true,true,true,4,42,true,'bonus2 bAddEff,Eff_Bleeding,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_kagerouoboro`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13302,'Huuma_Giant_Wheel_','Huuma Giant Wheel Shuriken','Weapon','Huuma',40000,2500,50,1,4,true,true,true,true,4,42,true,'bonus2 bAddEff,Eff_Bleeding,100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_kagerouoboro`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13303,'Huuma_Blaze','Huuma Blaze Shuriken','Weapon','Huuma',78000,1500,185,1,true,true,true,true,4,55,true,'bonus bAtkEle,Ele_Fire; bonus bDex,-2; bonus3 bAutoSpell,"MG_FIREBALL",5,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_kagerouoboro`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13304,'Huuma_Calm_Mind','Huuma Calm Mind','Weapon','Huuma',20,1550,112,1,2,true,true,true,true,3,70,true,'bonus2 bSkillAtk,"NJ_HUUMA",30; bonus bNoCastCancel;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_kagerouoboro`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13305,'BF_Huuma_Shuriken1','Brave Huuma Front Shuriken','Weapon','Huuma',20,55,1,true,true,true,true,3,80,true,100,true,true,true,true,true,true,true,'bonus bStr,2; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_kagerouoboro`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13306,'BF_Huuma_Shuriken2','Valorous Huuma Front Shuriken','Weapon','Huuma',20,55,1,true,true,true,true,3,80,true,100,true,true,true,true,true,true,true,'bonus bStr,2; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; autobonus "{ bonus2 bSkillAtk,\\"NJ_HUUMA\\",100; bonus2 bSkillAtk,\\"NJ_ISSEN\\",100; }",50,10000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`job_kagerouoboro`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13307,'Krieger_Huuma_Shuriken1','Glorious Shuriken','Weapon','Huuma',20,55,90,1,true,true,true,true,4,80,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,95; bonus2 bAddRace,RC_Player_Human,95; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; autobonus "{ bonus2 bSkillAtk,\\"NJ_HUUMA\\",100; bonus2 bSkillAtk,\\"NJ_ISSEN\\",100; }",50,10000; bonus bUnbreakableWeapon; .@r = getrefine(); if(.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-3,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-3,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if(.@r>8) { bonus5 bAutoSpellOnSkill,"NJ_ISSEN","AL_HEAL",10,1000,1; bonus4 bAutoSpellOnSkill,"NJ_HUUMA","NPC_CRITICALWOUND",2,200; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_kagerouoboro`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13308,'Huuma_Blaze_I','Huuma Blaze Shuriken','Weapon','Huuma',230,1,true,true,true,true,4,100,true,true,true,true,true,true,true,true,'bonus bAtkEle,Ele_Fire; bonus3 bAutoSpell,"MG_FIREBALL",5,30; bonus bDex,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_kagerouoboro`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13309,'Huuma_Giant_Wheel_C','Huuma Giant Wheel Shuriken','Weapon','Huuma',99,1,true,true,true,true,4,1,100,true,true,true,true,true,true,true,true,'bonus2 bAddEff,Eff_Bleeding,100; bonus2 bAddSize,Size_All,80;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`magic_attack`,`range`,`job_kagerouoboro`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13310,'P_Huuma_Shuriken1','P.Huuma Suriken I','Weapon','Huuma',150,50,1,true,true,true,true,3,60,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_kagerouoboro`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13311,'Huuma_Shadow','Sword Huuma Shuriken','Weapon','Huuma',5000,1500,170,1,true,true,true,true,3,99,true,'bonus bStr,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`range`,`job_kagerouoboro`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (13312,'Huuma_Job_Test','Prototype Huuma Shuriken','Weapon','Huuma',3000,1,true,true,true,true,4,99,true,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_kagerouoboro`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13313,'Huuma_Swirling_Petal','Flower Huuma Shuriken','Weapon','Huuma',100000,1500,150,50,1,2,true,true,true,true,3,110,true,'bonus2 bSkillAtk,"KO_HUUMARANKA",20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_kagerouoboro`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13314,'Huuma_Fluttering_Snow','Wave Huuma Shuriken','Weapon','Huuma',100000,1500,200,50,1,true,true,true,true,4,110,true,'bonus bAtkEle,Ele_Water; bonus3 bAutoSpell,"NJ_HYOUSYOURAKU",max(getskilllv("NJ_HYOUSYOURAKU"),1),30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`job_kagerouoboro`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13315,'Huuma_Thunderstorm','Thunderstorm Huuma Shuriken','Weapon','Huuma',100000,1500,200,50,1,true,true,true,true,4,110,true,'bonus bAtkEle,Ele_Wind; bonus3 bAutoSpell,"NJ_RAIGEKISAI",max(getskilllv("NJ_RAIGEKISAI"),1),30; bonus2 bAddEff,Eff_Blind,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_kagerouoboro`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (13316,'Upg_Huuma_Shuriken','Upg Huuma Shuriken','Weapon','Huuma',20,1500,55,1,1,true,true,true,true,3,1,true,100,true,'.@r = getrefine(); bonus bBaseAtk,(.@r*10); bonus bMatk,(.@r*5); bonus bLongAtkRate,(.@r); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*5); bonus bUnbreakableWeapon;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`magic_attack`,`range`,`job_kagerouoboro`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13317,'TE_Woe_Huuma','TE Woe Huuma','Weapon','Huuma',80,100,1,true,true,true,3,40,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Bleeding,1000; bonus bUnbreakableWeapon;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13321,'Half_BF_Huuma_Shuriken2','Half BF Huuma Shuriken','Weapon','Huuma',20,55,1,true,true,true,3,80,true,'bonus bStr,2; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,40; bonus2 bAddRace,RC_Player_Human,40; autobonus "{ bonus2 bSkillAtk,\\"NJ_HUUMA\\",100; bonus2 bSkillAtk,\\"NJ_ISSEN\\",100; }",50,10000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; bonus bUnbreakableWeapon;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`slots`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13322,'Huuma_Metal_Shuriken','Huuma Metal Shuriken','Weapon','Huuma',20,50,1,1,true,true,true,3,1,true,100,true,true,true,true,true,true,true,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bBaseAtk,.@r*5; bonus bMatk,.@r*3; bonus bLongAtkRate,.@r; if (BaseLevel >= 20 && BaseLevel <= 120) bonus bBaseAtk,3*.@r/10;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_kagerouoboro`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13323,'Infinity_Shuriken','Infinity Shuriken','Weapon','Huuma',500,150,40,1,1,true,true,true,4,100,true,100,true,true,true,true,true,true,'bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`slots`,`job_kagerouoboro`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13322,'Huuma_Metal_Shuriken','Huuma Metal Shuriken','Weapon','Huuma',20,50,1,1,true,true,true,true,3,1,true,100,true,true,true,true,true,true,true,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bBaseAtk,.@r*5; bonus bMatk,.@r*3; bonus bLongAtkRate,.@r; if (BaseLevel >= 20 && BaseLevel <= 120) bonus bBaseAtk,3*.@r/10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_kagerouoboro`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13323,'Infinity_Shuriken','Infinity Shuriken','Weapon','Huuma',500,150,40,1,1,true,true,true,true,4,100,true,100,true,true,true,true,true,true,'bonus bUnbreakableWeapon;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_kagerouoboro`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13327,'Crimson_Huuma_Shuriken','Crimson Huuma Shuriken','Weapon','Huuma',20,1000,100,1,2,true,true,true,true,3,70,true,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bBaseAtk,(.@r<=15?pow(.@r,2):225); bonus bMatk,(.@r<=15?(pow(.@r,2)/2):225); if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*5);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_kagerouoboro`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13328,'Huuma_Shuriken_of_Vicious_Mind','Huuma Shuriken of Vicious Mind','Weapon','Huuma',20,1500,150,50,1,1,true,true,true,true,4,160,true,'bonus bAtk,pow(min(getrefine(),15),2); bonus bMatk,pow(min(getrefine(),15),2)/2; bonus bUnbreakableWeapon;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_kagerouoboro`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13329,'Unity_Huuma_Shuriken','Unity Huuma Shuriken','Weapon','Huuma',20,500,95,1,1,true,true,true,true,3,1,true,100,true,true,true,true,true,true,'bonus bBaseAtk,pow(getrefine(),2)*125/100;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_kagerouoboro`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13332,'Huuma_Shuriken_of_Dancing_Petals','Huuma Shuriken of Dancing Petals','Weapon','Huuma',2000,250,1,2,true,true,true,4,100,true,'.@r = getrefine(); .@bonus = 20; if (.@r>=7) { bonus bLongAtkRate,10; } if (.@r>=9) { .@bonus += 20; } bonus2 bSkillAtk,"KO_HUUMARANKA",.@bonus;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13337,'Illusion_Huuma_Fluttering_Snow','Illusion Huuma Fluttering Snow','Weapon','Huuma',1500,250,50,1,2,true,true,true,4,120,true,'.@r = getrefine(); bonus bBaseAtk,(30*(.@r/3)); bonus bLongAtkRate,(3*.@r);'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13338,'Illusion_Wing_Shuriken','Illusion Wing Shuriken','Weapon','Huuma',1500,300,1,2,true,true,true,4,120,true,'bonus bDex,2; bonus2 bSkillAtk,"KO_HAPPOKUNAI",(9*getrefine());'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_kagerouoboro`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13332,'Huuma_Shuriken_of_Dancing_Petals','Huuma Shuriken of Dancing Petals','Weapon','Huuma',2000,250,1,2,true,true,true,true,4,100,true,'.@r = getrefine(); .@bonus = 20; if (.@r>=7) { bonus bLongAtkRate,10; } if (.@r>=9) { .@bonus += 20; } bonus2 bSkillAtk,"KO_HUUMARANKA",.@bonus;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_kagerouoboro`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13337,'Illusion_Huuma_Fluttering_Snow','Illusion Huuma Fluttering Snow','Weapon','Huuma',1500,250,50,1,2,true,true,true,true,4,120,true,'.@r = getrefine(); bonus bBaseAtk,(30*(.@r/3)); bonus bLongAtkRate,(3*.@r);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_kagerouoboro`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13338,'Illusion_Wing_Shuriken','Illusion Wing Shuriken','Weapon','Huuma',1500,300,1,2,true,true,true,true,4,120,true,'bonus bDex,2; bonus2 bSkillAtk,"KO_HAPPOKUNAI",(9*getrefine());'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_kagerouoboro`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13345,'Huuma_Shuriken_Clearness','Huuma Shuriken Clearness','Weapon','Huuma',20,1300,230,1,2,true,true,true,true,4,100,true,'.@r = getrefine(); bonus bLongAtkRate,2*(.@r/3); bonus bBaseAtk,10*(.@r/2); if (.@r >= 7) { bonus2 bSkillAtk,"KO_HUUMARANKA",30; if (.@r >= 9) { bonus2 bSkillCooldown,"KO_HUUMARANKA",-1000; if (.@r >= 11) { bonus2 bAddEle,Ele_Fire,15; bonus2 bAddEle,Ele_Dark,15; bonus2 bAddRace,RC_Undead,30; bonus2 bAddRace,RC_Demon,30; } } }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13400,'Cutlas_','Cutlus','Weapon','1hSword',20,900,150,1,1,true,true,true,true,true,true,true,true,true,true,4,40,true,'skill "SM_BASH",5; bonus bStr,2; bonus bDef,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13401,'Excalibur_C','Excalibur','Weapon','1hSword',1,199,1,true,true,true,true,true,true,true,true,true,true,4,1,100,true,true,true,true,true,true,true,true,'bonus bInt,10; bonus bLuk,10; bonus bAtkEle,Ele_Holy;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13402,'Cutlas_C','Cutlus','Weapon','1hSword',2,185,1,true,true,true,true,true,true,true,true,true,true,4,100,true,true,true,true,true,true,true,true,'skill "SM_BASH",5; bonus bStr,2; bonus bDef,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13403,'Solar_Sword_C','Solar Sword','Weapon','1hSword',2,120,1,true,true,true,true,true,true,true,true,true,true,4,100,true,true,true,true,true,true,true,true,'bonus bAtkEle,Ele_Fire; bonus2 bSPLossRate,15,10000; bonus2 bHPDrainRate,1000,1;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`class_upper`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13404,'Platinum_Shotel','Platinum Shotel','Weapon','1hSword',20,1500,130,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,55,true,'bonus bCritical,50;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`class_upper`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13405,'Curved_Sword','Curved Sword','Weapon','1hSword',20,800,125,1,2,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,55,true,'bonus bAspdRate,10; bonus2 bAddEff,Eff_Curse,300;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13404,'Platinum_Shotel','Platinum Shotel','Weapon','1hSword',20,1500,130,1,1,true,true,true,true,true,true,true,true,true,true,true,true,4,55,true,'bonus bCritical,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13405,'Curved_Sword','Curved Sword','Weapon','1hSword',20,800,125,1,2,true,true,true,true,true,true,true,true,true,true,true,true,4,55,true,'bonus bAspdRate,10; bonus2 bAddEff,Eff_Curse,300;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13406,'Edger','Edger','Weapon','1hSword',20,120,1,true,true,true,true,true,true,true,true,true,true,1,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,50;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13407,'Nagan_C','Refined Nagan','Weapon','1hSword',1,148,1,true,true,true,true,true,true,true,true,true,true,4,100,true,true,true,true,true,true,true,true,'skill "TF_DOUBLE",5; bonus bDoubleRate,25; bonus2 bAddRace,RC_DemiHuman,40; bonus2 bAddRace,RC_Player_Human,40;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13408,'Fire_Brand_C','Refined Fireblend','Weapon','1hSword',1,120,1,true,true,true,true,true,true,true,true,true,true,4,100,true,true,true,true,true,true,true,true,'bonus bAtkEle,Ele_Fire; bonus bInt,2; skill "MG_FIREBOLT",5; bonus3 bAutoSpell,"MG_FIREBOLT",5,100;'); @@ -3079,8 +3079,8 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`pr REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13437,'Orcish_Sword_','Orcish Sword','Weapon','1hSword',20,800,90,1,4,true,true,true,true,true,true,true,true,true,true,true,true,3,5,true,'bonus bUnbreakableWeapon;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (13438,'Magical_Blade','Magical Blade','Weapon','1hSword',60000,2000,165,110,1,2,true,true,true,true,true,true,true,true,true,true,true,true,4,105,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`magic_attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13439,'TE_Woe_Sword','TE Woe Sword','Weapon','1hSword',120,100,1,true,true,true,true,true,true,true,true,true,true,true,true,3,40,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Poison,3000;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_merchant`,`job_novice`,`job_supernovice`,`job_swordman`,`job_thief`,`class_normal`,`class_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13440,'Ceremonial_Sword','Ceremonial Sword','Weapon','1hSword',20,500,60,1,true,true,true,true,true,true,true,true,1,1,true,'bonus bAtkEle,Ele_Holy;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (13441,'Thanos_Sword','Thanos Sword','Weapon','1hSword',10,700,150,100,1,1,true,true,true,true,true,true,true,4,120,true,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000;','heal -1000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13440,'Ceremonial_Sword','Ceremonial Sword','Weapon','1hSword',20,500,60,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,1,true,'bonus bAtkEle,Ele_Holy;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (13441,'Thanos_Sword','Thanos Sword','Weapon','1hSword',10,700,150,100,1,1,true,true,true,true,4,120,true,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000;','heal -1000,0;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13442,'Old_Parasol','Old Parasol','Weapon','1hSword',10,500,120,80,3,true,true,true,true,true,true,true,true,true,true,3,80,true,'bonus bMatk,getrefine(); skill "MG_SOULSTRIKE",10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`refineable`,`script`) VALUES (13444,'Pala','Pala','Weapon','1hSword',20,700,190,1,true,true,true,true,true,true,true,true,true,true,3,true,'bonus bAspdRate,8;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13445,'Half_BF_Sword1','Half BF Sword1','Weapon','1hSword',20,115,1,true,true,true,true,true,true,true,true,true,true,true,true,3,80,true,'bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon;'); @@ -3094,11 +3094,11 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`we REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13453,'Mysteltainn__','Mysteltainn','Weapon','1hSword',20,1000,170,1,3,true,true,true,true,true,true,true,true,true,true,4,40,true,'bonus bAtkEle,Ele_Dark; bonus2 bAddEle,Ele_Ghost,15; bonus3 bAutoSpell,"MG_STONECURSE",3,100; bonus2 bAddEff,Eff_Stone,10; bonus bDex,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13454,'Crimson_Saber','Crimson Saber','Weapon','1hSword',20,850,85,1,2,true,true,true,true,true,true,true,true,true,true,true,true,3,70,true,'.@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13455,'Saber_of_Vicious_Mind','Saber of Vicious Mind','Weapon','1hSword',20,1350,135,1,1,true,true,true,true,true,true,true,true,true,true,true,true,4,160,true,'bonus bAtk,pow(min(getrefine(),15),2);'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13456,'Unity_Sword','Unity Sword','Weapon','1hSword',20,420,80,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,1,true,100,true,true,true,true,true,true,'bonus bBaseAtk,pow(getrefine(),2)*125/100;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13457,'Unity_Dagger','Unity Dagger','Weapon','Dagger',20,270,52,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,1,true,100,true,true,true,true,true,true,'bonus bBaseAtk,pow(getrefine(),2)*125/100;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_rogue`,`class_upper`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13460,'Sealed_Magic_Sword','Sealed Magic Sword','Weapon','1hSword',1500,100,1,2,true,true,true,true,true,true,true,true,true,true,true,4,100,true,'.@r = getrefine(); .@sp = -100; bonus3 bAutoSpell,"MG_FIREBOLT",5,100; if (.@r >= 7) { .@sp += 50; .@matk = 85; if (.@r >= 10) { bonus bAspd,1; .@sp += 50; .@matk += 45; } bonus bMatk,.@matk; } bonus bMaxSP,.@sp;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_rogue`,`class_upper`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13461,'Sealed_Evil_Sword','Sealed Evil Sword','Weapon','1hSword',1500,100,1,2,true,true,true,true,true,true,true,true,true,true,true,4,100,true,'.@r = getrefine(); .@def = -50; .@mdef = -10; bonus3 bAutoSpell,"WZ_FROSTNOVA",5,100; if (.@r >= 7) { .@crit = 30; .@mdef += 10; if (.@r >= 10) { bonus bAspd,1; .@crit += 20; .@def += 50; } bonus bCritical,.@crit; } bonus bDef,.@def; bonus bMdef,.@mdef;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_rogue`,`class_upper`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13462,'Sealed_Max_Sword','Sealed Maximum Sword','Weapon','1hSword',1500,100,1,2,true,true,true,true,true,true,true,true,true,true,true,4,100,true,'.@r = getrefine(); .@hp = -1000; bonus3 bAutoSpell,"MG_COLDBOLT",5,100; if (.@r >= 7) { .@atk = 65; .@hp += 500; if (.@r >= 10) { bonus bAspd,1; .@atk += 45; .@hp += 500; } bonus bBaseAtk,.@atk; } if (.@hp) { bonus bMaxHP,.@hp; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13456,'Unity_Sword','Unity Sword','Weapon','1hSword',20,420,80,1,1,true,true,true,true,true,true,true,true,true,true,true,true,3,1,true,100,true,true,true,true,true,true,'bonus bBaseAtk,pow(getrefine(),2)*125/100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13457,'Unity_Dagger','Unity Dagger','Weapon','Dagger',20,270,52,1,1,true,true,true,true,true,true,true,true,true,true,true,true,3,1,true,100,true,true,true,true,true,true,'bonus bBaseAtk,pow(getrefine(),2)*125/100;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13460,'Sealed_Magic_Sword','Sealed Magic Sword','Weapon','1hSword',1500,100,1,2,true,true,true,true,true,true,true,true,true,true,true,true,4,100,true,'.@r = getrefine(); .@sp = -100; bonus3 bAutoSpell,"MG_FIREBOLT",5,100; if (.@r >= 7) { .@sp += 50; .@matk = 85; if (.@r >= 10) { bonus bAspd,1; .@sp += 50; .@matk += 45; } bonus bMatk,.@matk; } bonus bMaxSP,.@sp;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13461,'Sealed_Evil_Sword','Sealed Evil Sword','Weapon','1hSword',1500,100,1,2,true,true,true,true,true,true,true,true,true,true,true,true,4,100,true,'.@r = getrefine(); .@def = -50; .@mdef = -10; bonus3 bAutoSpell,"WZ_FROSTNOVA",5,100; if (.@r >= 7) { .@crit = 30; .@mdef += 10; if (.@r >= 10) { bonus bAspd,1; .@crit += 20; .@def += 50; } bonus bCritical,.@crit; } bonus bDef,.@def; bonus bMdef,.@mdef;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13462,'Sealed_Max_Sword','Sealed Maximum Sword','Weapon','1hSword',1500,100,1,2,true,true,true,true,true,true,true,true,true,true,true,true,4,100,true,'.@r = getrefine(); .@hp = -1000; bonus3 bAutoSpell,"MG_COLDBOLT",5,100; if (.@r >= 7) { .@atk = 65; .@hp += 500; if (.@r >= 10) { bonus bAspd,1; .@atk += 45; .@hp += 500; } bonus bBaseAtk,.@atk; } if (.@hp) { bonus bMaxHP,.@hp; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13469,'Illusion_Immaterial_Sword','Illusion Immaterial Sword','Weapon','1hSword',900,180,1,2,true,true,true,true,true,true,true,true,true,true,4,120,true,'.@r = getrefine(); bonus bSPDrainValue,-1; bonus bUnbreakableWeapon; if (.@r >= 12) { .@val = 20; } bonus2 bSPVanishRate,(80+(20*.@r)),(30+.@val); bonus bAtkEle,Ele_Ghost;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13473,'God\'s_Sword','God\'s Sword','Weapon','1hSword',1300,150,1,2,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,120,true,'bonus bAgi,5; bonus bCritical,50; bonus bFlee2,20; bonus2 bAddRace,RC_Demon,30; .@r = getrefine(); .@rate = 1+.@r; .@s = getskilllv("ASC_BREAKER"); .@slv = 3; if(.@s>3) { .@slv = .@s; } bonus3 bAutoSpell,"ASC_BREAKER",.@slv,.@rate; if(.@r>=8){ skill "ASC_BREAKER",3; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (13474,'Sword___','Sword','Weapon','1hSword',1,500,25,1,4,true,true,true,true,true,true,true,true,true,true,true,true,1,2,true); @@ -3120,7 +3120,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`pr REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13499,'Kladenets','Kladenets','Weapon','1hSword',1,1500,180,160,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,4,130,true,'.@r = getrefine(); .@rate = 1+.@r; bonus3 bAutoSpellWhenHit,"SO_PSYCHIC_WAVE",3,.@rate; if(.@r>=10){ bonus bFixedCastrate,-70; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`class_upper`,`class_third_upper`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15000,'Bone_Plate','Bone Plate','Armor',20,1000,60,1,true,true,true,true,true,true,true,true,true,true,true,true,85,true,'bonus bStr,1; bonus bMdef,3; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus2 bIgnoreDefRaceRate,RC_Brute,10; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,10; bonus3 bAutoSpellWhenHit,"NPC_WIDEBLEEDING",1,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (15001,'Odin\'s_Blessing_I','Odin\'s Blessing','Armor',10,true,false,false,true,100,true,true,true,true,true,true,true,true); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`job_knight`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (15002,'Rune_Plate','Rune Plate','Armor',95,1,true,true,99,true,100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (15002,'Rune_Plate','Rune Plate','Armor',95,1,true,true,true,true,true,99,true,100,true,true,true,true,true,true,true,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_armor`,`equip_level_min`,`script`) VALUES (15003,'Freyja_SRobe7','Freyja Soul Robe7','Armor',300,7,true,20,'bonus bMaxHP,700;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_armor`,`equip_level_min`,`script`) VALUES (15004,'Freyja_SRobe30','Freyja Soul Robe30','Armor',300,7,true,20,'bonus bMaxHP,700;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_armor`,`equip_level_min`,`script`) VALUES (15005,'Freyja_SRobe60','Freyja Soul Robe60','Armor',300,7,true,20,'bonus bMaxHP,700;'); @@ -3137,16 +3137,16 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (15016,'Upg_Coat','Upg Coat','Armor',20,600,47,1,true,false,false,true,1,true,100,true,'bonus bMaxHPrate,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_merchant`,`job_monk`,`job_priest`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (15017,'Upg_Saint_Robe','Upg Saint Robe','Armor',20,300,55,1,true,true,true,true,true,true,true,1,true,100,true,'bonus bMdef,5; bonus bMaxHPrate,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (15018,'Upg_Tights','Upg Tights','Armor',20,250,32,1,true,true,true,true,1,true,100,true,'bonus bDex,1; bonus bMaxHPrate,3;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_assassin`,`job_ninja`,`job_rogue`,`job_thief`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (15019,'Upg_Thief_Cloth','Upg Thief Cloth','Armor',20,100,45,1,true,true,true,true,true,1,true,100,true,'bonus bAgi,1; bonus bMaxHPrate,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_assassin`,`job_kagerouoboro`,`job_ninja`,`job_rogue`,`job_thief`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (15019,'Upg_Thief_Cloth','Upg Thief Cloth','Armor',20,100,45,1,true,true,true,true,true,true,1,true,100,true,'bonus bAgi,1; bonus bMaxHPrate,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (15020,'Upg_Mail','Upg Mail','Armor',20,1650,60,1,true,true,true,true,true,true,true,true,true,true,1,true,100,true,'bonus bMaxHPrate,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (15021,'Upg_Formal_Dress','Upg Formal Dress','Armor',20,150,45,1,true,false,false,true,1,true,100,true,'bonus bMaxHPrate,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15022,'Brazil_Swimsuit','Brazil Swimsuit','Armor',20,100,1,true,1,true,'bonus bStr,4; bonus bInt,4; bonus bMdef,3; bonus2 bSubEle,Ele_Water,20;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_armor`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (15023,'Half_Brynhild','Half Brynhild','Armor',20,60,true,47,100,true,true,true,true,true,true,true,'bonus bMdef,10; bonus bMaxHP,20*BaseLevel; bonus bMaxSP,5*BaseLevel; bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bUnbreakableArmor; bonus bNoKnockback;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_armor`,`equip_level_min`,`refineable`) VALUES (15024,'Army_Padding','Army Padding','Armor',10,10,true,1,true); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_wizard`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15025,'Golden_Rod_Robe','Golden Rod Robe','Armor',20,500,40,true,true,100,true,'bonus bDefEle,Ele_Wind; bonus bMdef,10; bonus bInt,1; bonus2 bSkillVariableCast,"WZ_VERMILION",-3000; if(readparam(bInt)>=120){ bonus bInt,1; }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_wizard`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15026,'Aqua_Robe','Aqua Robe','Armor',20,500,40,true,true,100,true,'bonus bDefEle,Ele_Water; bonus bMdef,10; bonus bInt,1; bonus2 bSkillVariableCast,"WZ_STORMGUST",-3000; if(readparam(bInt)>=120){ bonus bInt,1; }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_wizard`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15027,'Crimson_Robe','Crimson Robe','Armor',20,500,40,true,true,100,true,'bonus bDefEle,Ele_Fire; bonus bMdef,10; bonus bInt,1; bonus2 bSkillVariableCast,"WZ_METEOR",-3000; if(readparam(bInt)>=120){ bonus bInt,1; }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_wizard`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15028,'Forest_Robe','Forest Robe','Armor',20,500,40,true,true,100,true,'bonus bDefEle,Ele_Earth; bonus bMdef,10; bonus bInt,1; bonus2 bSkillVariableCast,"WZ_HEAVENDRIVE",-3000; if(readparam(bInt)>=120){ bonus bInt,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15025,'Golden_Rod_Robe','Golden Rod Robe','Armor',20,500,40,true,true,true,true,true,100,true,'bonus bDefEle,Ele_Wind; bonus bMdef,10; bonus bInt,1; bonus2 bSkillVariableCast,"WZ_VERMILION",-3000; if(readparam(bInt)>=120){ bonus bInt,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15026,'Aqua_Robe','Aqua Robe','Armor',20,500,40,true,true,true,true,true,100,true,'bonus bDefEle,Ele_Water; bonus bMdef,10; bonus bInt,1; bonus2 bSkillVariableCast,"WZ_STORMGUST",-3000; if(readparam(bInt)>=120){ bonus bInt,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15027,'Crimson_Robe','Crimson Robe','Armor',20,500,40,true,true,true,true,true,100,true,'bonus bDefEle,Ele_Fire; bonus bMdef,10; bonus bInt,1; bonus2 bSkillVariableCast,"WZ_METEOR",-3000; if(readparam(bInt)>=120){ bonus bInt,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15028,'Forest_Robe','Forest Robe','Armor',20,500,40,true,true,true,true,true,100,true,'bonus bDefEle,Ele_Earth; bonus bMdef,10; bonus bInt,1; bonus2 bSkillVariableCast,"WZ_HEAVENDRIVE",-3000; if(readparam(bInt)>=120){ bonus bInt,1; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15029,'Robe_Of_Affection','Robe Of Affection','Armor',20,300,22,true,true,true,true,true,100,true,'bonus bDefEle,Ele_Holy; bonus bMdef,10; bonus bInt,1; bonus2 bSkillUseSP,"AB_CLEMENTIA",50;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15030,'Robe_Of_Judgement','Robe Of Judgement','Armor',20,300,22,true,true,true,true,true,100,true,'bonus bDefEle,Ele_Dark; bonus bMdef,10; bonus bStr,2; bonus bInt,1; bonus2 bSubRace,RC_All,-10; bonus2 bSubRace,RC_Undead,20; bonus2 bSubRace,RC_Demon,20;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_armor`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (15031,'Para_Team_Armor','Paradise Uniform IV','Armor',70,true,60,100,true,true,true,true,true,true,true,'bonus bMdef,5; bonus bMaxHP,500; bonus bMaxSP,50; bonus bStr,1; bonus bInt,1; bonus bDex,1;'); @@ -3156,13 +3156,13 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`def REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`refineable`,`script`) VALUES (15035,'2010_Love_Daddy','2010 Love Dad','Armor',10,100,6,1,true,true,'bonus bAllStats,1; bonus bMaxHP,150; bonus bMaxSP,150; bonus2 bResEff,Eff_Stone,9000; bonus2 bResEff,Eff_Freeze,9000; bonus2 bResEff,Eff_Stun,9000; bonus2 bResEff,Eff_Sleep,9000; bonus2 bResEff,Eff_Silence,9000; bonus2 bResEff,Eff_Curse,9000; bonus2 bResEff,Eff_Confusion,9000; bonus2 bResEff,Eff_Blind,9000; bonus2 bResEff,Eff_Poison,9000; bonus2 bResEff,Eff_Bleeding,9000;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15036,'Ur_Plate','Ur\'s Plate','Armor',20,3000,110,true,true,true,true,true,100,true,'bonus bMdef,10; bonus bMaxHPrate,getrefine(); bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubEle,Ele_Neutral,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15037,'Peuz_Plate','Peuz\'s Plate','Armor',20,3000,110,true,true,true,true,true,100,true,'bonus bMdef,10; bonus bBaseAtk,20; bonus bFlee,17;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_assassin`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15038,'Sabah_Cloth','Sapha\'s Cloth','Armor',20,100,45,1,true,true,100,true,'bonus bLuk,3; bonus3 bAutoSpell,"ASC_METEORASSAULT",max(getskilllv("ASC_METEORASSAULT"),1),20;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_assassin`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15039,'Nab_Cloth','Nab\'s Cloth','Armor',20,100,45,1,true,true,100,true,'bonus bStr,2; bonus bInt,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15038,'Sabah_Cloth','Sapha\'s Cloth','Armor',20,100,45,1,true,true,true,true,true,100,true,'bonus bLuk,3; bonus3 bAutoSpell,"ASC_METEORASSAULT",max(getskilllv("ASC_METEORASSAULT"),1),20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15039,'Nab_Cloth','Nab\'s Cloth','Armor',20,100,45,1,true,true,true,true,true,100,true,'bonus bStr,2; bonus bInt,2;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15040,'Prison_Uniform','Prison Uniform','Armor',10,1500,5,true,50,true,'.@r = getrefine(); bonus bHit,.@r; bonus bFlee,.@r;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15041,'Boitata_Armor','Boitata Armor','Armor',20,600,45,1,true,60,true,'bonus bMdef,3; bonus2 bSubEle,Ele_Neutral,7; bonus bMaxHPrate,5; bonus bFlee,5;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_hunter`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15042,'White_Wing_Suits','White Wing Suits','Armor',20,100,45,1,true,true,100,true,'.@r = getrefine(); bonus bLongAtkRate,.@r*2; bonus bFlee,.@r;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15042,'White_Wing_Suits','White Wing Suits','Armor',20,100,45,1,true,true,true,true,true,100,true,'.@r = getrefine(); bonus bLongAtkRate,.@r*2; bonus bFlee,.@r;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15043,'Black_Wing_Suits','Black Wing Suits','Armor',20,100,45,1,true,true,true,true,true,100,true,'bonus bInt,2; bonus bBaseAtk,getrefine()*3;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15044,'Green_Operation_Coat','Green Surgical Gown','Armor',56000,660,66,1,true,true,100,true,'bonus bDex,1; bonus bMaxSP,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15044,'Green_Operation_Coat','Green Surgical Gown','Armor',56000,660,66,1,true,true,true,true,true,100,true,'bonus bDex,1; bonus bMaxSP,30;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_armor`,`script`) VALUES (15045,'Armor_Of_Valor','Armor Of Valor','Armor',4,true,'bonus bHPrecovRate,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15046,'Siege_Plate','Siege Plate','Armor',3300,85,1,true,true,true,true,true,true,true,true,true,95,true,'bonus bMdef,5; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; .@r = getrefine(); if(.@r>5) { bonus bHealpower2,12; bonus bAddItemHealRate,12; } if(.@r>8) { bonus bMaxHPrate,25; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_gunslinger`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_merchant`,`job_ninja`,`job_rebellion`,`job_rogue`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`job_thief`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15047,'Siege_Suits','Siege Suit','Armor',750,50,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,95,true,'bonus bMdef,10; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; .@r = getrefine(); if(.@r>5) { bonus bFlee2,5; bonus bLongAtkDef,20; } if(.@r>8) { bonus bMaxHPrate,15; }'); @@ -3171,12 +3171,12 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15050,'Armor_Of_Sanctity','Armor Of Sanctity','Armor',20,1000,true,50,true,'bonus bStr,4; bonus bInt,4; bonus bVit,4; bonus bDex,4; bonus bAgi,4; bonus bLuk,4;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15051,'Bakonawa_Armor','Bakunawa Scale Armor','Armor',20,500,55,true,1,true,'bonus2 bSubClass,Class_Boss,getrefine()/2; bonus bAllStats,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15052,'Bayani_Bakonawa_Armor','Bayani Bakunawa Scale Armor','Armor',20,500,55,1,true,1,true,'bonus2 bSubClass,Class_Boss,getrefine()/2; bonus bAllStats,2;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_ninja`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15053,'Special_Ninja_Suit','Special Ninja Suit','Armor',10000,1200,70,true,true,100,true,'bonus bAgi,1+(getrefine()/3);'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_ninja`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15054,'Ninja_Scale_Armor','Ninja Scale Armor','Armor',10000,1800,90,1,true,true,100,true,'bonus bMaxHPrate,15; bonus bMaxSPrate,-30;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_ninja`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15055,'Tenebris_Latitantes','Armor of Nothingness','Armor',10000,1500,60,1,true,true,100,true,'bonus bAgi,1; bonus4 bAutoSpellWhenHit,"KO_ZANZOU",1,50,1;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_ninja`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15056,'Special_Ninja_Suit_','Special Ninja Suit','Armor',10000,1200,70,1,true,true,100,true,'bonus bAgi,1+(getrefine()/3);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_kagerouoboro`,`job_ninja`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15053,'Special_Ninja_Suit','Special Ninja Suit','Armor',10000,1200,70,true,true,true,100,true,'bonus bAgi,1+(getrefine()/3);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_kagerouoboro`,`job_ninja`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15054,'Ninja_Scale_Armor','Ninja Scale Armor','Armor',10000,1800,90,1,true,true,true,100,true,'bonus bMaxHPrate,15; bonus bMaxSPrate,-30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_kagerouoboro`,`job_ninja`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15055,'Tenebris_Latitantes','Armor of Nothingness','Armor',10000,1500,60,1,true,true,true,100,true,'bonus bAgi,1; bonus4 bAutoSpellWhenHit,"KO_ZANZOU",1,50,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_kagerouoboro`,`job_ninja`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15056,'Special_Ninja_Suit_','Special Ninja Suit','Armor',10000,1200,70,1,true,true,true,100,true,'bonus bAgi,1+(getrefine()/3);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`refineable`) VALUES (15057,'Pure_White_Apron','Pure White Apron','Armor',20,600,50,1,true,true); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_archer`,`job_novice`,`job_supernovice`,`job_swordman`,`job_thief`,`class_normal`,`class_upper`,`class_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15058,'Rider_Suit','Rider Suit','Armor',20,1000,40,1,true,true,true,true,true,true,true,true,true,1,true,'bonus bAgi,1+(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15058,'Rider_Suit','Rider Suit','Armor',20,1000,40,1,true,false,false,true,true,true,1,true,'bonus bAgi,1+(getrefine()/2);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`refineable`) VALUES (15059,'2011Love_Daddy','2011Love Daddy','Armor',20,100,80,1,true,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`refineable`,`script`) VALUES (15060,'Sky_Blue_Smock','Sky Blue Smock','Armor',20,300,1,1,true,true,'bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; if(BaseLevel<80) { bonus bHealPower,5; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15061,'Egir_Armor','Egir Armor','Armor',200000,2600,55,1,true,110,true,'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;'); @@ -3195,16 +3195,16 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15087,'Azure_Dragon_Armor','Azure Dragon Armor','Armor',20,500,55,1,true,70,true,'bonus bDefEle,Ele_Water; bonus bMdef,5; bonus2 bAddEle,Ele_Water,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`refineable`,`script`) VALUES (15088,'School_Uniform','School Uniform','Armor',20,500,25,1,true,true,'bonus bAgi,1; bonus bLuk,1; bonus bMaxHP,BaseLevel*3; bonus bMaxSP,BaseLevel/2;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15089,'Menswear','Menswear','Armor',10,300,40,true,false,false,true,80,true,'.@r = getrefine(); bonus bAspdRate,3+((.@r>=7)?2:0); bonus bDelayrate,-3-((.@r>=7)?2:0); bonus bVariableCastrate,-3-((.@r>=7)?2:0);'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15090,'Armor_Of_Gray','Armor of Gray','Armor',10,2400,90,1,true,true,true,true,true,true,true,true,true,true,true,true,true,120,true,'bonus bMdef,10; bonus2 bSubEle,Ele_Holy,10+getrefine()*2;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15091,'Gray_Robe','Gray Robe','Armor',20,1300,55,1,true,true,true,true,true,true,true,true,true,true,120,true,'bonus2 bSubEle,Ele_Holy,10+getrefine()*2;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15093,'Hero_Plate','Hero Plate','Armor',10,4000,120,1,true,true,true,true,160,true,'bonus bMdef,5; bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bMatk,10; bonus bBaseAtk,10; bonus bHit,10; bonus bFlee,10; bonus2 bSkillAtk,"LG_BANISHINGPOINT",10; bonus2 bSkillAtk,"RK_HUNDREDSPEAR",10; .@r = getrefine(); bonus5 bAutoSpell,"AL_HEAL",10,50+.@r,BF_SHORT,0; bonus5 bAutoSpell,"WZ_STORMGUST",10,50+.@r,BF_SHORT,1;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_mage`,`job_sage`,`job_wizard`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15094,'Hero_Magic_Coat','Hero Magic Coat','Armor',10,800,50,1,true,true,true,true,160,true,'bonus bMatk,10; bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bFlee,10; bonus2 bSkillAtk,"WL_CRIMSONROCK",10; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",10; .@r = getrefine(); if (.@r) { bonus bFixedCastrate,21-.@r/2; bonus bNoCastCancel2; bonus bMdef,.@r/2; }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15095,'Hero_Judgement_Shawl','Hero Judgement Shawl','Armor',10,500,77,1,true,true,true,true,160,true,'bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bMatk,10; bonus bBaseAtk,10; bonus bHit,10; bonus bFlee,10; bonus2 bSkillAtk,"AB_JUDEX",10; bonus2 bSkillAtk,"AB_ADORAMUS",10; bonus2 bSkillAtk,"SR_DRAGONCOMBO",10; bonus2 bSkillAtk,"SR_SKYNETBLOW",10; bonus2 bSkillAtk,"SR_EARTHSHAKER",10; .@r = getrefine(); bonus5 bAutoSpell,"PR_KYRIE",10,50+.@r,BF_SHORT,0; bonus5 bAutoSpell,"PR_LEXAETERNA",1,50+.@r,BF_MAGIC,1;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_blacksmith`,`job_merchant`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15096,'Hero_Trade_Mail','Hero Trade Mail','Armor',10,500,100,1,true,true,true,true,true,true,true,160,true,'bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bMatk,10; bonus bBaseAtk,10; .@r = getrefine(); if(readparam(bStr) >= 90) bonus bStr,.@r/2; if(readparam(bInt) >= 90) bonus bInt,.@r/2; if(readparam(bAgi) >= 90) bonus bAgi,.@r/2; if(readparam(bVit) >= 90) bonus bVit,.@r/2; if(readparam(bDex) >= 90) bonus bDex,.@r/2; if(readparam(bLuk) >= 90) bonus bLuk,.@r/2;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_assassin`,`job_rogue`,`job_thief`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15097,'Hero_Hidden_Cloth','Hero Hidden Cloth','Armor',10,200,70,1,true,true,true,true,160,true,'bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus2 bSkillAtk,"SC_FATALMENACE",10; bonus2 bSkillAtk,"SC_TRIANGLESHOT",10; bonus2 bSkillAtk,"GC_CROSSIMPACT",10; bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",10; autobonus "{ bonus bCritical,20; bonus bFlee,20; bonus2 bAddClass,Class_All,10; bonus bMatkRate,10; }",(5+getrefine())*10,10000,BF_WEAPON;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15098,'Hero_Taget_Suits','Hero Target Suit','Armor',10,200,60,1,true,true,true,true,true,true,true,160,true,'bonus bMaxHPrate,5; bonus bMaxSPrate,5; .@r = getrefine(); bonus bAllStats,1; bonus5 bAutoSpell,"AC_CONCENTRATION",10,(5+.@r)*5,BF_WEAPON,0; bonus5 bAutoSpell,"AC_DOUBLE",10,(5+.@r)*5,BF_WEAPON,1;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15100,'Frozen_Breastplate','Frozen Breastplate','Armor',20,1500,20,1,true,130,true,'bonus bDefEle,Ele_Water;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15101,'Harden_Breastplate','Hardened Breastplate','Armor',20,1500,20,1,true,130,true,'bonus bDefEle,Ele_Earth;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15090,'Armor_Of_Gray','Armor of Gray','Armor',10,2400,90,1,true,true,true,true,true,true,true,true,true,true,true,true,true,120,true,'bonus bMdef,10; bonus2 bSubEle,Ele_Holy,10+getrefine()*2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_monk`,`job_priest`,`job_sage`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15091,'Gray_Robe','Gray Robe','Armor',20,1300,55,1,true,true,true,true,true,true,true,true,120,true,'bonus2 bSubEle,Ele_Holy,10+getrefine()*2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15093,'Hero_Plate','Hero Plate','Armor',10,4000,120,1,true,true,true,true,true,true,160,true,'bonus bMdef,5; bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bMatk,10; bonus bBaseAtk,10; bonus bHit,10; bonus bFlee,10; bonus2 bSkillAtk,"LG_BANISHINGPOINT",10; bonus2 bSkillAtk,"RK_HUNDREDSPEAR",10; .@r = getrefine(); bonus5 bAutoSpell,"AL_HEAL",10,50+.@r,BF_SHORT,0; bonus5 bAutoSpell,"WZ_STORMGUST",10,50+.@r,BF_SHORT,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_mage`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15094,'Hero_Magic_Coat','Hero Magic Coat','Armor',10,800,50,1,true,true,true,true,true,true,160,true,'bonus bMatk,10; bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bFlee,10; bonus2 bSkillAtk,"WL_CRIMSONROCK",10; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",10; .@r = getrefine(); if (.@r) { bonus bFixedCastrate,21-.@r/2; bonus bNoCastCancel2; bonus bMdef,.@r/2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`class_upper`,`class_third_upper`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15095,'Hero_Judgement_Shawl','Hero Judgement Shawl','Armor',10,500,77,1,true,true,true,true,true,true,160,true,'bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bMatk,10; bonus bBaseAtk,10; bonus bHit,10; bonus bFlee,10; bonus2 bSkillAtk,"AB_JUDEX",10; bonus2 bSkillAtk,"AB_ADORAMUS",10; bonus2 bSkillAtk,"SR_DRAGONCOMBO",10; bonus2 bSkillAtk,"SR_SKYNETBLOW",10; bonus2 bSkillAtk,"SR_EARTHSHAKER",10; .@r = getrefine(); bonus5 bAutoSpell,"PR_KYRIE",10,50+.@r,BF_SHORT,0; bonus5 bAutoSpell,"PR_LEXAETERNA",1,50+.@r,BF_MAGIC,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_blacksmith`,`job_merchant`,`class_upper`,`class_third_upper`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15096,'Hero_Trade_Mail','Hero Trade Mail','Armor',10,500,100,1,true,true,true,true,true,true,160,true,'bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bMatk,10; bonus bBaseAtk,10; .@r = getrefine(); if(readparam(bStr) >= 90) bonus bStr,.@r/2; if(readparam(bInt) >= 90) bonus bInt,.@r/2; if(readparam(bAgi) >= 90) bonus bAgi,.@r/2; if(readparam(bVit) >= 90) bonus bVit,.@r/2; if(readparam(bDex) >= 90) bonus bDex,.@r/2; if(readparam(bLuk) >= 90) bonus bLuk,.@r/2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_assassin`,`job_rogue`,`job_thief`,`class_upper`,`class_third_upper`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15097,'Hero_Hidden_Cloth','Hero Hidden Cloth','Armor',10,200,70,1,true,true,true,true,true,true,160,true,'bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus2 bSkillAtk,"SC_FATALMENACE",10; bonus2 bSkillAtk,"SC_TRIANGLESHOT",10; bonus2 bSkillAtk,"GC_CROSSIMPACT",10; bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",10; autobonus "{ bonus bCritical,20; bonus bFlee,20; bonus2 bAddClass,Class_All,10; bonus bMatkRate,10; }",(5+getrefine())*10,10000,BF_WEAPON;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_barddancer`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15098,'Hero_Taget_Suits','Hero Target Suit','Armor',10,200,60,1,true,true,true,true,true,true,160,true,'bonus bMaxHPrate,5; bonus bMaxSPrate,5; .@r = getrefine(); bonus bAllStats,1; bonus5 bAutoSpell,"AC_CONCENTRATION",10,(5+.@r)*5,BF_WEAPON,0; bonus5 bAutoSpell,"AC_DOUBLE",10,(5+.@r)*5,BF_WEAPON,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15100,'Frozen_Breastplate','Frozen Breastplate','Armor',20,1500,20,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,130,true,'bonus bDefEle,Ele_Water;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15101,'Harden_Breastplate','Hardened Breastplate','Armor',20,1500,20,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,130,true,'bonus bDefEle,Ele_Earth;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15102,'Hunter_Mail','Hunter Mail','Armor',20,500,30,1,true,50,true,'.@r = getrefine(); if (.@r>5) .@a = (.@r-5); else .@a = 0; bonus2 bAddRace,RC_Brute,3+.@a; bonus2 bMagicAddRace,RC_Brute,3+.@a; bonus2 bAddRace,RC_Player_Doram,3+.@a; bonus2 bMagicAddRace,RC_Player_Doram,3+.@a;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`script`) VALUES (15103,'Kirin_Armor','Kirin Armor','Armor',10,500,55,1,true,70,'bonus bDefEle,Ele_Holy;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`script`) VALUES (15104,'FishingMan_Mail','FishingMan Mail','Armor',10,500,30,1,true,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; }'); @@ -3218,9 +3218,9 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15121,'Robe_Of_Sarah','Sarah\'s Battle Robe','Armor',10,800,35,1,true,145,true,'autobonus "{ bonus bMatk,getrefine()*8; }",3,10000,BF_MAGIC;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15123,'Whikebain_Suit','Whikebain Suit','Armor',900,56,1,true,true,true,true,true,105,true,'.@r = getrefine(); bonus bCritAtkRate,(.@r>=7)?(6):((.@r>=5)?(4):(0)); bonus3 bAutoSpell,"DC_WINKCHARM",1,10; /* Confirm: Success rate */'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15125,'Female_Diver_Suit','Female Diver\'s Suit','Armor',20,300,20,1,true,80,true,'bonus2 bAddMonsterDropItem,579,500+(getrefine()*100); if (getrefine()>=7) { bonus bHPrecovRate,-100; bonus bHPGainValue,100; }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15126,'Female_Poring_Balloon','Private Doram Suits','Armor',20,700,80,1,true,true,true,true,true,100,true,'bonus bMaxHP,500; bonus bMaxSP,100; .@r = getrefine()/3; bonus bDex,.@r; bonus bInt,.@r;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_summoner`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15126,'Female_Poring_Balloon','Private Doram Suits','Armor',20,700,80,1,true,true,100,true,'bonus bMaxHP,500; bonus bMaxSP,100; .@r = getrefine()/3; bonus bDex,.@r; bonus bInt,.@r;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15128,'Excelion_Suit','Excelion Suit','Armor',20,1000,100,true,99,true,'bonus bVit,6 + (BaseLevel > 129 ? 4 : 0); bonus bMaxHPrate,(getrefine() / 3) * 4; bonus bUnbreakableArmor;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15129,'Blue_Bellflower_Hat','Luxury Doram Suit','Armor',20,800,100,1,true,true,true,true,true,140,true,'bonus bMaxHPrate,10; bonus bMaxSPrate,10; .@r = getrefine()/2; bonus bDex,.@r; bonus bInt,.@r;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_summoner`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15129,'Blue_Bellflower_Hat','Luxury Doram Suit','Armor',20,800,100,1,true,true,140,true,'bonus bMaxHPrate,10; bonus bMaxSPrate,10; .@r = getrefine()/2; bonus bDex,.@r; bonus bInt,.@r;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15138,'Aegir_Armor','Aegir Armor','Armor',10,1600,25,1,true,40,true,'bonus bMaxHP,500; bonus bMaxSP,50; bonus bUnbreakableArmor;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (15141,'Rift_Ancient_Armor','Rift Ancient Armor','Armor',10,500,30,1,true,100,true,100,true,true,true,true,true,true,'.@r = getrefine(); bonus bMaxHP,(.@r >= 9 ? 1500 : .@r >= 7 ? 900 : 500); bonus bMaxSP,-100;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15143,'Vermin_Cloth','Vermin Cloth','Armor',10,1200,30,1,true,70,true,'.@r = getrefine(); bonus bMdef,5+.@r; bonus2 bSubRace,RC_Plant,(5+.@r);'); @@ -3228,13 +3228,13 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15145,'EvilDragon_Armor','Evil Dragon Armor','Armor',4000,60,1,true,99,true,'.@r = getrefine(); if(.@r>=10){ bonus2 bHPDrainRate,60,6; bonus2 bSPDrainRate,50,5; } else if(.@r>=9){ bonus2 bHPDrainRate,40,4; bonus2 bSPDrainRate,30,3; } else if(.@r>=8){ bonus2 bHPDrainRate,30,3; bonus2 bSPDrainRate,20,2; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15146,'Flattery_Robe','Flattery Robe','Armor',20,100,1,true,100,true,'skill "SM_ENDURE",1; .@i = BaseLevel; bonus bMatk,(.@i>=140)?(150):((.@i>=120)?(100):(50));'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15147,'Invective_Robe','Invective Robe','Armor',20,100,1,true,100,true,'skill "AC_CONCENTRATION",1; .@i = getrefine()*4; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,.@i; bonus2 bIgnoreDefRaceRate,RC_Demon,.@i; bonus2 bIgnoreDefRaceRate,RC_Undead,.@i;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15150,'White_Shirt','White Shirt','Armor',20,50,25,1,true,true,true,true,true,6,true,'bonus bMaxHP,70; bonus bFlee,5;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15151,'White_Eco-Shirt','White Eco-Shirt','Armor',20,100,40,1,true,true,true,true,true,15,true,'bonus bMaxHP,150; bonus bFlee,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_summoner`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15150,'White_Shirt','White Shirt','Armor',20,50,25,1,true,true,6,true,'bonus bMaxHP,70; bonus bFlee,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_summoner`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15151,'White_Eco-Shirt','White Eco-Shirt','Armor',20,100,40,1,true,true,15,true,'bonus bMaxHP,150; bonus bFlee,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (15152,'Unity_Mail','Unity Mail','Armor',10,300,45,1,true,1,true,100,true,true,true,true,true,true,'.@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bStr,2; bonus bMaxHPrate,2*(.@r/2); }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (15153,'Unity_Mantle','Unity Mantle','Armor',10,300,45,1,true,1,true,100,true,true,true,true,true,true,'.@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bAgi,2; bonus bFlee,3*(.@r/2); }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (15154,'Unity_Suit','Unity Suit','Armor',10,300,45,1,true,1,true,100,true,true,true,true,true,true,'.@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bDex,2; bonus bCritical,2*(.@r/2); }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (15155,'Unity_Robe','Unity Robe','Armor',10,300,45,1,true,1,true,100,true,true,true,true,true,true,'.@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bInt,2; bonus bUseSPrate,-(.@r/2); }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15156,'Elegant_Doram_Suit','Elegant Doram Suit','Armor',20,900,120,1,true,true,true,true,true,175,true,'bonus bMaxHPrate,15; bonus bMaxSPrate,15; .@r = getrefine(); bonus bDex,.@r; bonus bInt,.@r; if(.@r > 9) bonus bUseSPrate,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_summoner`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15156,'Elegant_Doram_Suit','Elegant Doram Suit','Armor',20,900,120,1,true,true,175,true,'bonus bMaxHPrate,15; bonus bMaxSPrate,15; .@r = getrefine(); bonus bDex,.@r; bonus bInt,.@r; if(.@r > 9) bonus bUseSPrate,-5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15162,'Lounge_Suit','Lounge Suit','Armor',20,300,40,1,true,false,false,true,80,true,'bonus bAspdRate,3; bonus bCastrate,-3; bonus bDelayrate,-3; if(getrefine() > 6) { bonus bAspdRate,2; bonus bCastrate,-2; bonus bDelayrate,-2; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15163,'Agenda_Robe','Agenda Robe','Armor',20,100,1,true,100,true,'skill "SA_SPELLBREAKER",1; if (BaseLevel >= 140) { .@val = 14; } else if (BaseLevel >= 120) { .@val = 9; } else { .@val = 5; } bonus bMatkRate,.@val;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15164,'Consultative_Robe','Consultation Robe','Armor',20,100,1,true,100,true,'.@r = getrefine(); bonus bVit,5; skill "PA_SACRIFICE",1; bonus2 bSubEle,Ele_Dark,.@r*3; bonus2 bSubEle,Ele_Fire,.@r*3;'); @@ -3245,7 +3245,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15175,'Flame_Dragon_Armor','Flame Dragon Armor','Armor',20,400,100,1,true,90,true,'.@r = getrefine(); if (.@r>=9) .@val = 20; else if (.@r>=7) .@val = 10; bonus bAllStats,1; bonus bHit,10+.@val; bonus2 bAddClass,Class_Boss,.@val;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15176,'Vigilante_Suit','Vigilante Suit','Armor',500,50,true,true,true,true,true,100,true,'.@r = getrefine(); bonus bDex,5; bonus bLongAtkRate,3*(.@r/2); if (.@r>=9) bonus2 bSkillAtk,"SC_TRIANGLESHOT",20;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15177,'Elemental_Robe','Elemental Robe','Armor',500,40,true,true,true,true,true,100,true,'.@r = getrefine(); bonus bAspdRate,10; bonus bMatk,5*(.@r/2); if (.@r>=9) bonus3 bAutoSpell,"MG_THUNDERSTORM",max(5,getskilllv("MG_THUNDERSTORM")),50;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`job_kagerouoboro`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15178,'Golden_Ninja_Suit','Golden Ninja Suit','Armor',500,50,true,true,100,true,'.@r = getrefine(); bonus bflee,5*(.@r/2); if (.@r>=9) bonus2 bSkillAtk,"KO_HAPPOKUNAI",20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`job_kagerouoboro`,`job_ninja`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15178,'Golden_Ninja_Suit','Golden Ninja Suit','Armor',500,50,true,true,true,100,true,'.@r = getrefine(); bonus bflee,5*(.@r/2); if (.@r>=9) bonus2 bSkillAtk,"KO_HAPPOKUNAI",20;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15179,'Mine_Worker\'s_Vest','Mine Worker\'s Vest','Armor',1500,80,true,true,true,true,true,100,true,'.@r = getrefine(); bonus bFlee,(10+4*(.@r/2)); if (.@r>=9) bonus bCritical,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15180,'Hippie_Clothes','Hippie Clothes','Armor',50,50,true,true,true,true,true,100,true,'.@r = getrefine(); bonus bBaseAtk,20; if (.@r >= 9) bonus3 bAutoSpell,"AC_DOUBLE",max(3,getskilllv("AC_DOUBLE")),10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_armor`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (15181,'Para_Team_Uniform100','Awakened Eden Group Uniform I','Armor',20,80,true,100,100,true,true,true,true,true,true,'bonus bAllStats,1; bonus bMaxHP,700; bonus bMaxSP,100; bonus bMdef,7;'); @@ -3282,21 +3282,21 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`def REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16000,'Erde','Erde','Weapon','Mace',20,500,130,1,2,true,true,true,true,true,true,true,true,true,true,true,true,3,50,true,'bonus2 bSkillAtk,"AM_ACIDTERROR",20; bonus2 bSkillAtk,"AM_DEMONSTRATION",20; bonus bMaxSP,50; bonus bHealPower,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16001,'Red_Square_Bag','Red Square Bag','Weapon','Mace',20,500,130,1,2,true,true,true,true,true,true,true,true,true,true,true,true,3,50,true,'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;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16002,'Stunner_C','Stunner','Weapon','Mace',175,1,true,true,true,true,3,1,100,true,true,true,true,true,true,true,true,'bonus2 bAddEff,Eff_Stun,1000; bonus2 bAddSize,Size_All,40;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (16003,'Carga_Mace','Carga Mace','Weapon','Mace',20,1500,175,1,2,true,true,true,true,true,true,true,true,true,true,3,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_monk`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (16003,'Carga_Mace','Carga Mace','Weapon','Mace',20,1500,175,1,2,true,true,true,true,true,true,true,true,true,true,3,100,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (16004,'P_Mace1','Eden Mace I','Weapon','Mace',142,1,true,true,true,true,true,true,true,true,true,true,2,26,100,true,true,true,true,true,true,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (16005,'P_Mace2','Eden Mace II','Weapon','Mace',163,1,true,true,true,true,true,true,true,true,true,true,2,40,100,true,true,true,true,true,true,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16006,'Tourist_Mace','Tourist Mace','Weapon','Mace',500,45,1,true,true,true,true,true,true,true,true,true,true,true,true,1,1,100,true,true,true,true,true,true,true,'bonus bInt,1; bonus bAgi,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (16007,'Mjolnir_C','Mjolnir','Weapon','Mace',20,250,1,true,true,true,true,true,true,true,4,95,'bonus bAtkEle,Ele_Wind; bonus bStr,15; bonus bDex,40;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`) VALUES (16008,'F_Spanner_C','Spanner','Weapon','Mace',2,150,1,true,true,true,true,3); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`) VALUES (16009,'E_Spanner_C','Spanner','Weapon','Mace',2,150,1,true,true,true,true,3); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16010,'Red_Ether_Bag','Red Ether Bag','Weapon','Mace',20,1000,15,100,1,1,true,true,true,true,true,true,true,true,true,true,3,102,true,'.@r = getrefine(); if(.@r>=6){ bonus2 bSkillAtk,"GN_CRAZYWEED",20+((.@r-5)*2); bonus2 bSkillAtk,"GN_DEMONIC_FIRE",20+((.@r-5)*2); } else { bonus2 bSkillAtk,"GN_CRAZYWEED",20; bonus2 bSkillAtk,"GN_DEMONIC_FIRE",20; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16010,'Red_Ether_Bag','Red Ether Bag','Weapon','Mace',20,1000,15,100,1,1,true,true,true,true,true,3,102,true,'.@r = getrefine(); if(.@r>=6){ bonus2 bSkillAtk,"GN_CRAZYWEED",20+((.@r-5)*2); bonus2 bSkillAtk,"GN_DEMONIC_FIRE",20+((.@r-5)*2); } else { bonus2 bSkillAtk,"GN_CRAZYWEED",20; bonus2 bSkillAtk,"GN_DEMONIC_FIRE",20; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`) VALUES (16011,'Adventure_Mace','Adventure Mace','Weapon','Mace',60,1,true,true,true,true,1,1); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (16012,'Academy_Mace','Academy Mace','Weapon','Mace',1000,110,1,1,true,true,true,true,1,1,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16013,'Mace_Of_Judgement','Mace Of Judgement','Weapon','Mace',20,1200,140,180,1,2,true,true,true,true,true,3,100,true,'bonus bAtkEle,Ele_Holy; 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; }";'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (16014,'P_Mace3','Eden Mace III','Weapon','Mace',172,1,true,true,true,true,true,true,true,true,true,true,true,true,3,60,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (16014,'P_Mace3','Eden Mace III','Weapon','Mace',172,1,true,true,true,true,true,true,true,true,true,true,3,60,100,true,true,true,true,true,true,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16015,'Cat_Club','Cat Club','Weapon','Mace',20,700,88,1,3,true,true,true,true,true,true,true,true,true,true,true,true,1,1,true,'bonus2 bAddRace,RC_Brute,15; bonus2 bAddRace,RC_Player_Doram,15;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16016,'Tuna','Tuna','Weapon','Mace',180,1,true,true,true,true,true,true,true,true,true,true,true,true,1,50,100,true,true,true,true,true,true,true,true,'bonus bUnbreakableWeapon; bonus2 bAddEff,Eff_Stun,1500; bonus3 bAutoSpell,"SM_BASH",max(getskilllv("SM_BASH"),5),20; bonus2 bAddEff2,Eff_Freeze,100; if(BaseLevel>99) bonus bBaseAtk,20;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16017,'Bloody_Cross','Bloody Cross','Weapon','Mace',20,1500,170,1,true,true,true,true,4,100,true,'bonus bAtkEle,Ele_Dark; .@r = getrefine(); bonus3 bAutoSpell,"WL_HELLINFERNO",1,(.@r?.@r*20:20);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16016,'Tuna','Tuna','Weapon','Mace',180,1,true,true,true,true,true,true,true,true,true,true,1,50,100,true,true,true,true,true,true,true,true,'bonus bUnbreakableWeapon; bonus2 bAddEff,Eff_Stun,1500; bonus3 bAutoSpell,"SM_BASH",max(getskilllv("SM_BASH"),5),20; bonus2 bAddEff2,Eff_Freeze,100; if(BaseLevel>99) bonus bBaseAtk,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_acolyte`,`job_monk`,`job_priest`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16017,'Bloody_Cross','Bloody Cross','Weapon','Mace',20,1500,170,1,true,true,true,true,true,true,4,100,true,'bonus bAtkEle,Ele_Dark; .@r = getrefine(); bonus3 bAutoSpell,"WL_HELLINFERNO",1,(.@r?.@r*20:20);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16018,'Mace_Of_Judgement2','Empowered Mace Of Judgement','Weapon','Mace',20,1200,170,180,1,1,true,true,true,true,true,3,130,true,'bonus bAtkEle,Ele_Holy; 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; }";'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (16019,'Upg_Mace','Upg Mace','Weapon','Mace',20,800,80,1,1,true,true,true,true,true,true,true,true,true,true,true,true,3,1,true,100,true,'.@r = getrefine(); bonus bBaseAtk,(.@r*10); bonus bHealPower,.@r; if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*5);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16020,'Velum_Stunner','Vellum Stunner','Weapon','Mace',20,1500,170,1,true,true,true,true,true,true,true,true,true,true,true,true,4,95,true,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus2 bAddEff,Eff_Stun,1000+.@r; bonus4 bSetDefRace,RC_Player_Human,10000,5000,1; bonus4 bSetMDefRace,RC_Player_Human,10000,5000,1; bonus bAspdRate,.@r;'); @@ -3307,17 +3307,17 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`pr REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (16025,'TE_Woe_Mace','TE Woe Mace','Weapon','Mace',120,1,true,true,true,true,true,true,true,true,true,true,true,true,3,40,true,100,true,true,true,true,true,true,true,'bonus bUnbreakableWeapon; bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Freeze,3000; bonus bHPRecovRate,5; bonus bSPRecovRate,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (16026,'RWC_Memory_Mace','RWC Memory Mace','Weapon','Mace',20,800,100,1,1,true,true,true,true,true,true,true,true,true,true,3,1,true,100,true,'bonus bUnbreakableWeapon; .@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; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16027,'Hammer_Of_Evil_Slayer','Evil Slayer Destroyer Hammer','Weapon','Mace',10,1350,125,1,1,true,true,true,true,true,true,true,true,true,true,true,true,3,100,true,'bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; .@r = getrefine(); bonus2 bAddClass,Class_All,(.@r>=12?12:(.@r>=9?5:0));'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (16028,'Thanos_Hammer','Thanos Hammer','Weapon','Mace',10,3000,180,120,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,4,120,true,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000;','heal -1000,0;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`slots`,`job_acolyte`,`class_upper`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16029,'Noble_Cross','Noble Cross','Weapon','Mace',10,1500,195,150,1,true,true,true,true,true,true,4,40,true,'bonus bAtkEle,Ele_Holy; bonus3 bAutoSpell,"PR_TURNUNDEAD",6,50; bonus2 bSPDrainValueRace,RC_Undead,1; bonus2 bSPGainRace,RC_Undead,12;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_monk`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (16028,'Thanos_Hammer','Thanos Hammer','Weapon','Mace',10,3000,180,120,1,1,true,true,true,true,true,true,true,true,true,true,4,120,true,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000;','heal -1000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16029,'Noble_Cross','Noble Cross','Weapon','Mace',10,1500,195,150,1,true,true,true,true,true,true,4,40,true,'bonus bAtkEle,Ele_Holy; bonus3 bAutoSpell,"PR_TURNUNDEAD",6,50; bonus2 bSPDrainValueRace,RC_Undead,1; bonus2 bSPGainRace,RC_Undead,12;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16030,'Pilebuncker_S','Pile Bunker S','Weapon','Mace',20,3000,400,1,1,true,true,true,true,true,4,130,true,'bonus bAspdRate,getrefine()/2;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16031,'Pilebuncker_P','Pile Bunker P','Weapon','Mace',20,4000,450,1,true,true,true,true,true,4,130,true,'bonus bBaseAtk,getrefine()*5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16032,'Pilebuncker_T','Pile Bunker T','Weapon','Mace',20,3500,400,1,1,true,true,true,true,true,4,130,true,'bonus bUseSPrate,getrefine()*-1;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_priest`,`job_swordman`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16033,'Robot\'s_Arm','Robot\'s Arm','Weapon','Mace',30000,3000,195,1,2,true,true,true,true,true,true,true,true,true,true,true,true,true,4,130,true,'bonus bUnbreakableWeapon; bonus bCritical,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_monk`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16033,'Robot\'s_Arm','Robot\'s Arm','Weapon','Mace',30000,3000,195,1,2,true,true,true,true,true,true,true,true,true,true,4,130,true,'bonus bUnbreakableWeapon; bonus bCritical,20;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (16034,'Half_Mjolnir','Half Mjolnir','Weapon','Mace',20,6000,350,1,true,true,true,true,true,true,true,4,95,'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;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16035,'Half_BF_Morning_Star1','Half BF Morning Star1','Weapon','Mace',20,105,1,true,true,true,true,true,true,true,true,true,true,true,true,3,80,true,'bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16036,'Ru_Blue_Mace','Blue Mace','Weapon','Mace',10,1500,170,1,1,true,true,true,true,true,3,100,true,'bonus bVit,5; bonus bInt,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_monk`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16037,'Ru_Gold_Mace','Ru Gold Mace','Weapon','Mace',1500,170,1,2,true,true,true,true,true,3,120,true,'bonus bVit,8; bonus bInt,8;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_monk`,`job_priest`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (16038,'Infinity_Mace','Infinity Mace','Weapon','Mace',10,500,155,1,1,true,true,true,true,true,true,true,true,true,true,true,4,100,true,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_monk`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (16038,'Infinity_Mace','Infinity Mace','Weapon','Mace',10,500,155,1,1,true,true,true,true,true,true,true,true,true,true,4,100,true,100,true,true,true,true,true,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16039,'Spoon','Spoon','Weapon','Mace',10,1000,80,1,1,true,true,true,true,true,true,true,true,true,true,true,true,3,40,true,'bonus bAspd,10; bonus2 bAddEff,Eff_Curse,1000;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16040,'Crimson_Mace','Crimson Mace','Weapon','Mace',20,800,80,1,2,true,true,true,true,true,true,true,true,true,true,true,true,3,70,true,'.@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_monk`,`job_novice`,`job_priest`,`job_supernovice`,`job_swordman`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16041,'Mace_of_Vicious_Mind','Mace of Vicious Mind','Weapon','Mace',20,1300,130,1,1,true,true,true,true,true,true,true,true,true,true,true,true,4,160,true,'bonus bAtk,pow(min(getrefine(),15),2); bonus bUnbreakableWeapon;'); @@ -3340,29 +3340,29 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`pr REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`job_barddancer`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18103,'Mystic_Bow','Mystic Bow','Weapon','Bow',1700,75,100,5,true,true,true,true,true,true,true,3,105,true,'bonus bInt,4; bonus2 bSkillUseSP,"WM_SEVERE_RAINSTORM",10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_barddancer`,`job_hunter`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (18104,'Adventure_Bow','Adventure Bow','Weapon','Bow',60,1,true,true,true,true,1,1,'bonus bUnbreakableWeapon;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`job_hunter`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (18105,'Academy_Bow','Academy Bow','Weapon','Bow',1200,90,5,1,true,true,true,true,1,1,true); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (18106,'P_Bow3','Eden Bow III','Weapon','Bow',140,5,true,true,true,true,true,true,true,3,60,100,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (18106,'P_Bow3','Eden Bow III','Weapon','Bow',140,5,true,true,true,true,true,3,60,100,true,true,true,true,true,true,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18107,'Malang_Snow_Crab','Malangdo Crab','Weapon','Bow',120,5,true,true,true,true,true,true,true,1,50,100,true,true,true,true,true,true,true,true,'bonus bUnbreakableWeapon; bonus bLuk,3; bonus bCritAtkRate,50; if(BaseLevel>99) { bonus bLongAtkRate,10; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_barddancer`,`job_hunter`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18108,'Brindle_Eel','Zebra Eel','Weapon','Bow',180,5,true,true,true,true,1,50,100,true,true,true,true,true,true,true,true,'bonus bUnbreakableWeapon; bonus bAgi,3; autobonus "{ bonus bAspd,2; }",10,7000,BF_WEAPON,"{ specialeffect2 EF_HASTEUP; }"; if(BaseLevel>99) { bonus bLongAtkRate,10; }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rogue`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18109,'Catapult','Thief Crossbow','Weapon','Bow',56000,1100,150,5,2,true,true,true,4,100,true,'.@r = getrefine(); bonus2 bSkillAtk,"SC_TRIANGLESHOT",(.@r*2); bonus2 bSkillUseSP,"SC_TRIANGLESHOT",(.@r*2);'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_hunter`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18110,'Big_CrossBow','Giant Crossbow','Weapon','Bow',56000,900,160,5,2,true,true,true,4,110,true,'.@r = getrefine(); bonus2 bSkillAtk,"RA_ARROWSTORM",(.@r*5); bonus2 bSkillUseSP,"RA_ARROWSTORM",-(.@r*5); if(readparam(bAgi)>=120){ bonus bAspd,1; }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`job_hunter`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18111,'Creeper_Bow','Creeper Bow','Weapon','Bow',56000,1500,150,5,2,true,true,true,true,3,120,true,'bonus bDex,1; bonus3 bAutoSpell,"PF_SPIDERWEB",1,200;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (18112,'Upg_Bow','Upg Bow','Weapon','Bow',20,600,60,5,1,true,true,true,true,true,true,true,3,1,true,100,true,'.@r = getrefine(); bonus bBaseAtk,(.@r*7); bonus bLongAtkRate,(.@r*2); if(BaseJob==Job_Hunter) bonus bBaseAtk,20; if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*10);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18109,'Catapult','Thief Crossbow','Weapon','Bow',56000,1100,150,5,2,true,true,true,true,true,true,4,100,true,'.@r = getrefine(); bonus2 bSkillAtk,"SC_TRIANGLESHOT",(.@r*2); bonus2 bSkillUseSP,"SC_TRIANGLESHOT",(.@r*2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18110,'Big_CrossBow','Giant Crossbow','Weapon','Bow',56000,900,160,5,2,true,true,true,true,true,true,4,110,true,'.@r = getrefine(); bonus2 bSkillAtk,"RA_ARROWSTORM",(.@r*5); bonus2 bSkillUseSP,"RA_ARROWSTORM",-(.@r*5); if(readparam(bAgi)>=120){ bonus bAspd,1; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18111,'Creeper_Bow','Creeper Bow','Weapon','Bow',56000,1500,150,5,2,true,true,true,true,true,true,true,3,120,true,'bonus bDex,1; bonus3 bAutoSpell,"PF_SPIDERWEB",1,200;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`script`) VALUES (18112,'Upg_Bow','Upg Bow','Weapon','Bow',20,600,60,5,1,true,true,true,true,true,3,1,true,100,true,'.@r = getrefine(); bonus bBaseAtk,(.@r*7); bonus bLongAtkRate,(.@r*2); if(BaseJob==Job_Hunter) bonus bBaseAtk,20; if(BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*10);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18113,'Velum_Arbalest','Vellum Arbalest','Weapon','Bow',20,1100,50,5,true,true,true,true,true,true,true,4,95,true,'bonus3 bSPVanishRaceRate,RC_Player_Human,1000,4; bonus bAspd,-5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18114,'Velum_CrossBow','Vellum CrossBow','Weapon','Bow',20,1100,110,5,true,true,true,true,true,true,true,4,95,true,'bonus2 bAddRace,RC_Player_Human,30+getrefine(); bonus2 bIgnoreDefRaceRate,RC_Player_Human,30;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (18115,'Orc_Archer_Bow_','Orc Archer Bow','Weapon','Bow',20,1600,120,5,1,true,true,true,true,true,true,true,3,65,true); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`slots`,`job_barddancer`,`job_hunter`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18116,'Metal_Bow','Metal Bow','Weapon','Bow',20,50,5,1,true,true,true,true,3,1,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); if(BaseJob==Job_Hunter && Upper!=2) bonus bBaseAtk,10; bonus bBaseAtk,(.@r*3); bonus bLongAtkRate,.@r; .@i = min(BaseLevel/10,12); if(.@i>2) bonus bBaseAtk,((.@i-2)*5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18116,'Metal_Bow','Metal Bow','Weapon','Bow',20,50,5,1,true,true,true,true,true,3,1,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); if(BaseJob==Job_Hunter && Upper!=2) bonus bBaseAtk,10; bonus bBaseAtk,(.@r*3); bonus bLongAtkRate,.@r; .@i = min(BaseLevel/10,12); if(.@i>2) bonus bBaseAtk,((.@i-2)*5);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (18117,'Royal_Bow','Royal Bow','Weapon','Bow',200000,1500,80,5,1,true,true,true,true,true,true,4,105,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18118,'TE_Woe_Bow','TE Woe Bow','Weapon','Bow',120,5,true,true,true,true,true,true,true,3,40,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Curse,3000;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (18119,'Thanos_Bow','Thanos Bow','Weapon','Bow',10,1300,180,110,5,1,true,true,true,true,true,true,true,true,4,120,true,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000;','heal -1000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_barddancer`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (18119,'Thanos_Bow','Thanos Bow','Weapon','Bow',10,1300,180,110,5,1,true,true,true,true,true,true,true,4,120,true,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000;','heal -1000,0;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18120,'Bow_Of_Evil_Slayer','Evil Slayer Piercer Bow','Weapon','Bow',10,1350,115,5,1,true,true,true,true,true,true,3,100,true,'bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; .@r = getrefine(); bonus2 bAddClass,Class_All,(.@r>=12?12:(.@r>=9?5:0));'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18121,'Bow_of_Vicious_Mind','Bow of Vicious Mind','Weapon','Bow',20,1700,170,5,1,true,true,true,true,true,true,4,160,true,'bonus bAtk,pow(min(getrefine(),15),2);'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_hunter`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18122,'Gigantic_Bow','Giant Bow','Weapon','Bow',20,3000,195,5,1,true,true,true,4,130,true,'bonus bLongAtkRate,40; bonus bAspdRate,-15; bonus bHit,-50;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`job_hunter`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18123,'Bow_Of_Storm','Bow of Storms','Weapon','Bow',20,1500,160,5,1,true,true,true,true,4,130,true,'bonus bLongAtkRate,30; bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; bonus2 bSkillUseSP,"WM_SEVERE_RAINSTORM",15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18122,'Gigantic_Bow','Giant Bow','Weapon','Bow',20,3000,195,5,1,true,true,true,true,true,true,4,130,true,'bonus bLongAtkRate,40; bonus bAspdRate,-15; bonus bHit,-50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18123,'Bow_Of_Storm','Bow of Storms','Weapon','Bow',20,1500,160,5,1,true,true,true,true,true,true,true,4,130,true,'bonus bLongAtkRate,30; bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; bonus2 bSkillUseSP,"WM_SEVERE_RAINSTORM",15;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18124,'Half_BF_Bow1','Half BF Bow1','Weapon','Bow',20,100,5,true,true,true,true,true,true,true,3,80,true,'bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player_Human,30; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_rogue`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18125,'Arcus_Daemonicus','Arcus Daemonicus','Weapon','Bow',20,1000,130,5,2,true,true,true,true,4,80,true,'/*Fix me: bonus2 bAddClass,Class_All,50; when equipped with shadow arrows*/ if(getrefine()>9){ bonus bAspd,1; bonus bUseSPrate,-20; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18126,'Ru_Blue_Bow','Blue Bow','Weapon','Bow',10,1200,150,5,1,true,true,true,true,true,true,3,100,true,'bonus bAgi,5; bonus bDex,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18127,'Ru_Gold_Bow','Ru Gold Bow','Weapon','Bow',1200,150,5,2,true,true,true,true,true,true,3,120,true,'bonus bAgi,8; bonus bDex,8;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_hunter`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (18128,'Infinity_Bow','Infinity Bow','Weapon','Bow',20,500,160,5,1,true,true,true,true,true,true,true,4,100,true,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (18128,'Infinity_Bow','Infinity Bow','Weapon','Bow',20,500,160,5,1,true,true,4,100,true,100,true,true,true,true,true,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18130,'Crimson_Bow','Crimson Bow','Weapon','Bow',20,1200,120,5,2,true,true,true,true,true,true,true,3,70,true,'.@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18132,'Unity_Bow','Unity Bow','Weapon','Bow',20,600,114,5,2,true,true,true,true,true,true,true,3,1,true,100,true,true,true,true,true,true,'bonus bBaseAtk,pow(getrefine(),2)*125/100;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18137,'Burning_Bow_','Burning Bow','Weapon','Bow',20,1400,95,5,2,true,true,true,true,true,true,3,55,true,'bonus2 bSubEle,Ele_Fire,10;'); @@ -3370,7 +3370,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`pr REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (18139,'Earth_Bow_','Earth Bow','Weapon','Bow',20,1400,105,5,2,true,true,true,true,true,true,3,55,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (18140,'Gust_Bow_','Gust Bow','Weapon','Bow',20,1400,95,5,2,true,true,true,true,true,true,3,55,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18145,'Vigilante_Bow','Vigilante Bow','Weapon','Bow',1000,140,5,2,true,true,true,true,true,true,3,100,true,'.@r = getrefine(); .@bonus = 5*(readparam(bDex)/20); if (.@r>=7) { .@bonus += 10; } if (.@r>=9) { bonus2 bSkillAtk,"AC_DOUBLE",50; } bonus bLongAtkRate,.@bonus;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`job_hunter`,`class_upper`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18149,'Illusion_Ballista','Illusion Ballista','Weapon','Bow',3500,200,5,2,true,true,true,true,true,true,true,true,4,100,true,'bonus bLongAtkRate,getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18149,'Illusion_Ballista','Illusion Ballista','Weapon','Bow',3500,200,5,2,true,true,true,true,true,true,true,4,100,true,'bonus bLongAtkRate,getrefine();'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18174,'Illusion_Hunter_Bow','Illusion Hunter Bow','Weapon','Bow',1500,165,5,2,true,true,true,true,true,true,4,120,true,'.@r = getrefine(); bonus bCritical,.@r; if (.@r >= 7) { bonus bAspdRate,10; if (.@r >= 9) { bonus bCritAtkRate,15; if (.@r >= 11) { bonus2 bAddRace,RC_Insect,30; bonus2 bAddRace,RC_Brute,30; bonus2 bAddRace,RC_Player_Doram,30; } } }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18178,'Virtual_Bow-OS','Virtual Bow-OS','Weapon','Bow',20,1200,200,5,2,true,true,true,true,true,true,4,130,true,'.@r = getrefine(); bonus2 bAddClass,Class_All,3; if (.@r >= 7) { bonus bLongAtkRate,7; if (.@r >= 9) { .@dmg = 30; if (.@r >= 11) { .@dmg += 20; } bonus2 bSkillAtk,"RA_ARROWSTORM",.@dmg; } }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18179,'MH-P89-OS','MH-P89-OS','Weapon','Bow',20,1200,170,5,2,true,true,true,true,true,true,4,130,true,'.@r = getrefine(); bonus2 bAddClass,Class_All,3; if (.@r >= 7) { bonus bLongAtkRate,7; if (.@r >= 9) { bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; if (.@r >= 11) { bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15; } } }'); @@ -3450,7 +3450,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`) VALUES (18567,'Stretched_Nose','Stretched Nose','Armor',20,100,true,737); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (18568,'Humming_Bird','Humming Bird','Armor',20,100,3,true,10,702,'bonus bMdef,6;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (18569,'Soft_Sheep_Hat','Soft Sheep Hat','Armor',20,1000,true,10,true,738,100,true,'bonus bMaxHPrate,1+getrefine(); if(getrefine()>9) { bonus2 bExpAddClass,Class_All,5; };'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18570,'Ancient_Gold_Deco','Ancient Gold Ornament','Armor',20,400,7,1,true,false,false,true,100,true,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 bMatkRate,8; bonus bHealPower,7; } if(BaseClass==Job_Archer){ bonus bDex,3; bonus bLongAtkRate,10; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18570,'Ancient_Gold_Deco','Ancient Gold Ornament','Armor',20,400,7,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,100,true,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 bMatkRate,8; bonus bHealPower,7; } if(BaseClass==Job_Archer){ bonus bDex,3; bonus bLongAtkRate,10; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`view`,`script`) VALUES (18571,'Lucky_Hat','Lucky Hat','Armor',20,1000,1,true,740,'bonus2 bExpAddRace,RC_All,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (18572,'Korean_Judge_Hat','Korean Judge Hat','Armor',20,300,2,1,true,true,377,100,true,'bonus bMdef,2; bonus bVariableCastrate,-6; bonus bAspdRate,6; .@r = getrefine(); if(.@r>6){ bonus2 bSubRace,RC_DemiHuman,2;bonus2 bSubRace,RC_Player_Human,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;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18573,'White_Feather','White Feather','Armor',20,500,2,1,true,30,true,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; }'); @@ -3618,10 +3618,10 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18748,'Gold_Ingot_Poring_Hat','Gold Ingot Poring Hat','Armor',20,200,3,1,true,true,887,'bonus bDex,2; bonus bLuk,2;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18749,'Majoruros_Horn','Majoruros Horn','Armor',20,500,8,1,true,true,888,'bonus bStr,2; bonus bMaxHP,100;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (18750,'Poker_Card_In_Mouth','Poker Card In Mouth','Armor',20,50,true,10,889,'bonus2 bAddRace,RC_DemiHuman,2; bonus2 bAddRace,RC_Player_Human,2;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18752,'Cursed_Book','Cursed Book','Armor',20,300,3,1,true,false,false,true,99,true,890,'.@r = getrefine(); bonus2 bHPLossRate,.@r,5000; bonus2 bHPDrainRate,40,4+(.@r/2); bonus2 bSPDrainRate,10,1+(.@r/3);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`class_third_upper`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18752,'Cursed_Book','Cursed Book','Armor',20,300,3,1,true,false,false,true,true,true,99,true,890,'.@r = getrefine(); bonus2 bHPLossRate,.@r,5000; bonus2 bHPDrainRate,40,4+(.@r/2); bonus2 bSPDrainRate,10,1+(.@r/3);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`view`,`script`) VALUES (18753,'Tw_Rice_Ball','Tw Rice Ball','Armor',20,100,6,true,892,'bonus bLuk,1; bonus2 bAddMonsterDropItem,564,100;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (18754,'Blood_Sucker','Blood Sucker','Armor',20,300,true,40,893,'bonus bUnbreakableHelm; bonus2 bHPDrainRate,30,5; bonus bHPrecovRate,-100; bonus bSPrecovRate,-100;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18755,'Feather_Beret_','Feather Beret','Armor',600,1,1,true,1,true,224,'bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18755,'Feather_Beret_','Feather Beret','Armor',600,1,1,true,false,false,true,1,true,224,'bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18756,'Black_Shiba_Inu_Hat','Black Shiba Inu Hat','Armor',20,400,6,1,true,50,true,894,'bonus bBaseAtk,30; bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Player_Doram,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`) VALUES (18758,'Hat_Of_Scrat','Hat Of Scrat','Armor',20,200,3,1,true,true,896); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (18759,'Stretched_Nose_M','Wood Goblin\'s Nose','Armor',20,200,true,50,737,'bonus bUnbreakableHelm; bonus2 bAddMonsterDropItem,1032,400; bonus2 bAddMonsterDropItem,1033,100; bonus3 bAddMonsterDropItem,576,RC_Plant,40;'); @@ -3631,8 +3631,8 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18763,'Remodel_Joker_Jester','Improved Joker Jester','Armor',20,100,3,1,true,false,false,true,true,89,'bonus bLuk,2; bonus bMdef,5; if(getrefine()>=7) bonus bCritAtkRate,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18764,'Remodel_Bunny_Band','Improved Bunny Band','Armor',20,100,3,1,true,true,15,'bonus bLuk,2; if(getrefine()>=7) bonus bCritical,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18765,'Enhanced_Corsair','Enhanced Corsair','Armor',20,500,10,1,true,false,false,true,99,true,105,'bonus bVit,1; bonus bMaxHprate,5; .@r = getrefine(); if(.@r>=7) bonus2 bSubEle,Ele_Neutral,1; if(.@r>=9) bonus bMaxHPrate,3;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18766,'Enhanced_Helm_Of_Angel','Enhanced Helm of Angel','Armor',20,1600,10,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,99,true,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;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18767,'Enhanced_Helm_Of_Sun','Enhanced Hat of the Sun God','Armor',20,2400,4,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,99,true,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);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_monk`,`job_priest`,`job_rebellion`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18766,'Enhanced_Helm_Of_Angel','Enhanced Helm of Angel','Armor',20,1600,10,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,99,true,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;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18767,'Enhanced_Helm_Of_Sun','Enhanced Hat of the Sun God','Armor',20,2400,4,1,true,true,99,true,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);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18768,'Enhanced_Bone_Helm','Enhanced Bone Helm','Armor',20,800,15,1,true,true,true,true,true,true,true,70,true,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);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`location_head_low`,`refineable`,`view`,`script`) VALUES (18769,'Remodel_Munak_Turban','Improved Munak Hat','Armor',20,300,5,1,true,true,true,true,51,'bonus2 bSubRace,RC_Undead,10; if(getrefine()>=7) bonus2 bAddRace,RC_Undead,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`location_head_low`,`refineable`,`view`,`script`) VALUES (18770,'Remodel_Bongun_Hat','Improved Bongun Hat','Armor',20,300,5,1,true,true,true,true,139,'bonus2 bSubRace,RC_Demon,10; if(getrefine()>=7) bonus2 bAddRace,RC_Demon,10;'); @@ -3667,7 +3667,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18817,'Adv_Devil_School_Cap','Evoked Devil School Cap','Armor',20,100,4,1,true,false,false,true,true,930,'bonus bStr,2; bonus bVit,2; bonus bLuk,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`,`script`) VALUES (18818,'Red_Pencil_In_Mouth','Red Pencil In Mouth','Armor',20,100,true,931,'bonus bUnbreakableHelm; bonus bHit,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`view`,`script`) VALUES (18819,'Blue_Pencil_In_Mouth','Blue Pencil In Mouth','Armor',20,100,true,932,'bonus bUnbreakableHelm; bonus bHit,3;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18820,'Gray_Helmet','Gray Helmet','Armor',20,450,35,1,true,true,true,true,120,true,941,'bonus2 bSubEle,Ele_Holy,3+getrefine()/2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18820,'Gray_Helmet','Gray Helmet','Armor',20,450,35,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,120,true,941,'bonus2 bSubEle,Ele_Holy,3+getrefine()/2;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (18821,'Rainbow_Feather_Deco','Rainbow Feather Deco','Armor',20,300,5,1,true,1,true,934,100,true,'bonus2 bAddClass,Class_All,1; bonus bMatkRate,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18823,'Imperial_Feather','Imperial Feather','Armor',10,500,true,70,true,935,'bonus bAspdRate,1; bonus2 bSubEle,Ele_Wind,5; if(readparam(bAgi)>107){ bonus bAspd,1; bonus bAspdRate,1; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`refineable`,`view`,`script`) VALUES (18827,'Valkyrie_Circlet','Valkyrie Circlet','Armor',300,10,1,true,true,940,'bonus bStr,3; bonus2 bAddEle,Ele_Dark,10; bonus2 bAddRace,RC_Demon,10;'); @@ -3812,13 +3812,13 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`loc REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (19118,'Poring_Sunglasses__','Poring Sunglasses','Armor',10,1,true,1,954,'bonus2 bDropAddRace,RC_All,4; bonus2 bExpAddRace,RC_All,4;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19125,'Cylinder_Hairband','Cylinder Hairband','Armor',20,300,12,1,true,90,true,1477,'bonus bStr,5; bonus bInt,5; bonus2 bVariableCastrate,"GN_CARTCANNON",-100; bonus2 bSkillUseSP,"GN_CARTCANNON",30; bonus2 bSkillUseSP,"GN_CART_TORNADO",5; bonus2 bSkillAtk,"GN_CARTCANNON",10; bonus2 bSkillAtk,"GN_CART_TORNADO",5; if (getrefine()>=5) { bonus2 bSkillAtk,"GN_CARTCANNON",20; bonus2 bSkillAtk,"GN_CART_TORNADO",10; } if (getrefine()>=8) { bonus2 bSkillAtk,"GN_CARTCANNON",30; bonus2 bSkillAtk,"GN_CART_TORNADO",20; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_mid`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19126,'Shadow_Booster_','Magical Booster','Armor',10,300,1,true,1,true,873,'bonus bAspd,1; bonus bDelayrate,-1;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (19128,'Ifrit\'s_Ear_','Ears Of Ifrit','Armor',20,300,1,true,false,false,true,50,422,'bonus bStr,1; bonus bMdef,3; bonus bInt,1; bonus2 bSkillAtk,"MG_FIREBOLT",3; bonus2 bSkillAtk,"WZ_FIREPILLAR",3; bonus2 bSkillAtk,"WZ_METEOR",3; bonus2 bSkillAtk,"SM_BASH",4; bonus2 bSkillAtk,"SM_MAGNUM",4; bonus2 bSkillAtk,"KN_PIERCE",3; bonus2 bSubEle,Ele_Fire,3; bonus2 bSubEle,Ele_Water,-3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (19128,'Ifrit\'s_Ear_','Ears Of Ifrit','Armor',20,300,1,true,50,422,'bonus bStr,1; bonus bMdef,3; bonus bInt,1; bonus2 bSkillAtk,"MG_FIREBOLT",3; bonus2 bSkillAtk,"WZ_FIREPILLAR",3; bonus2 bSkillAtk,"WZ_METEOR",3; bonus2 bSkillAtk,"SM_BASH",4; bonus2 bSkillAtk,"SM_MAGNUM",4; bonus2 bSkillAtk,"KN_PIERCE",3; bonus2 bSubEle,Ele_Fire,3; bonus2 bSubEle,Ele_Water,-3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`view`,`script`) VALUES (19129,'Chick_Hat_','Chick Hat','Armor',20,100,2,1,true,10,311,'bonus bLuk,2; bonus bMaxHP,50; bonus bMaxSP,50; skill "TF_DOUBLE",2; bonus bDoubleRate,10; bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19130,'Magic_Eyes_','Magic Eyes','Armor',20,300,3,1,true,true,true,true,true,54,true,209,'bonus bMdef,5; bonus bVariableCastrate,-10; bonus bUseSPrate,20;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19131,'Radio_Antenna_','Radio Antenna','Armor',1500,2,1,true,1,true,347,'bonus bMdef,5; bonus bCritical,5; bonus bFlee,5; skill "MG_LIGHTNINGBOLT",1; bonus4 bAutoSpellWhenHit,"MG_THUNDERSTORM",5,30,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`view`,`script`) VALUES (19132,'Masquerade_','Masquerade','Armor',20,100,1,true,false,false,true,78,'bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player_Human,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_mid`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (19133,'Odin_Mask_','Odin\'s Mask','Armor',20,100,1,1,true,true,1,480,'bonus2 bSubClass,Class_Boss,2;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19134,'Wickebines_Black_Cat_Ears','Wickebine\'s Black Cat Ears','Armor',20,200,4,1,true,false,false,true,45,true,368,'bonus bFlee,10; bonus bCritAtkRate,10; autobonus "{ bonus2 bIgnoreMdefClassRate,Class_Normal,100; bonus2 bIgnoreMdefClassRate,Class_Boss,100; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_STEAL; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19134,'Wickebines_Black_Cat_Ears','Wickebine\'s Black Cat Ears','Armor',20,200,4,1,true,45,true,368,'bonus bFlee,10; bonus bCritAtkRate,10; autobonus "{ bonus2 bIgnoreMdefClassRate,Class_Normal,100; bonus2 bIgnoreMdefClassRate,Class_Boss,100; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_STEAL; }";'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (19137,'Strawberry_Mouth_Guard','Strawberry Mouth Guard','Armor',20,100,true,80,861,'bonus bVit,2; bonus bLongAtkDef,5; bonus bShortWeaponDamageReturn,5; if (Baselevel>=100) { bonus bMaxHP,2000; } else { bonus bMaxHP,200; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`equip_level_min`,`view`,`script`) VALUES (19138,'Seraphim_Coronet','Seraphim Coronet','Armor',20,300,true,70,1487,'bonus bStr,2; .@int = readparam(bInt); bonus bBaseAtk,(.@int/8)*5; bonus bHealPower,.@int/8; bonus bVariableCastrate,.@int/8; if ((.@int>=108)) { bonus bBaseAtk,50; bonus bHealPower,5; bonus bVariableCastrate,4; } if ((.@int>=120)) { bonus bBaseAtk,125; bonus bHealPower,10; bonus bVariableCastrate,6; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_low`,`equip_level_min`,`view`,`script`) VALUES (19139,'SurviveOrb','Survive Orb','Armor',300,true,50,1488,'skill "TF_HIDING",1; bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; bonus bVariableCastrate,-3;'); @@ -3869,8 +3869,8 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19199,'Racing_Cap_RA','Racing Cap (Ranger)','Armor',20,10,1,true,true,true,true,true,100,true,1134,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus2 bSkillAtk,"RA_AIMEDBOLT",3*getskilllv("HT_STEELCROW"); if (.@r>=11) bonus bDelayrate,-15;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19200,'Racing_Cap_MI','Racing Cap (Minstrel)','Armor',20,10,1,true,true,true,true,'Male',true,100,true,1134,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus bBaseAtk,5*getskilllv("BA_MUSICALLESSON"); if (.@r>=11) bonus3 bAutoSpell,"WM_REVERBERATION",max(2,getskilllv("WM_REVERBERATION")),50; /* Unknow rates*/'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19201,'Racing_Cap_WA','Racing Cap (Wanderer)','Armor',20,10,1,true,true,true,true,'Female',true,100,true,1134,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus bBaseAtk,5*getskilllv("DC_DANCINGLESSON"); if (.@r>=11) bonus3 bAutoSpell,"WM_REVERBERATION",max(2,getskilllv("WM_REVERBERATION")),50; /* Unknow rates*/'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_rebellion`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19202,'Racing_Cap_GS','Racing Cap (Gunslinger)','Armor',20,10,1,true,true,100,true,1134,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) { bonus2 bSkillCooldown,"RL_HAMMER_OF_GOD",-2000*getskilllv("GS_PIERCINGSHOT"); bonus2 bSkillCooldown,"RL_D_TAIL",-200*getskilllv("GS_GROUNDDRIFT"); } if (.@r>=11) bonus2 bSkillCooldown,"RL_C_MARKER",-1000;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_kagerouoboro`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19203,'Racing_Cap_NJ','Racing Cap (Ninja)','Armor',20,10,1,true,true,100,true,1134,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus bLongAtkRate,getskilllv("NJ_HUUMA"); if (.@r>=11) bonus2 bSkillAtk,"KO_HUUMARANKA",30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_gunslinger`,`job_rebellion`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19202,'Racing_Cap_GS','Racing Cap (Gunslinger)','Armor',20,10,1,true,true,true,100,true,1134,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) { bonus2 bSkillCooldown,"RL_HAMMER_OF_GOD",-2000*getskilllv("GS_PIERCINGSHOT"); bonus2 bSkillCooldown,"RL_D_TAIL",-200*getskilllv("GS_GROUNDDRIFT"); } if (.@r>=11) bonus2 bSkillCooldown,"RL_C_MARKER",-1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_kagerouoboro`,`job_ninja`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19203,'Racing_Cap_NJ','Racing Cap (Ninja)','Armor',20,10,1,true,true,true,100,true,1134,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus bLongAtkRate,getskilllv("NJ_HUUMA"); if (.@r>=11) bonus2 bSkillAtk,"KO_HUUMARANKA",30;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19204,'Racing_Cap_SN','Racing Cap (Super Novice)','Armor',20,10,1,true,true,true,100,true,1134,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus bCritAtkRate,10*getskilllv("TF_DOUBLE"); if (.@r>=11) { bonus bAspd,1; bonus bBaseAtk,20; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_summoner`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19205,'Racing_Cap_SU','Racing Cap (Summoner)','Armor',20,10,1,true,true,100,true,1134,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,5*(.@r/2); bonus bMatk,5*.@r/2; bonus bAspdRate,2*(.@r/3); if (.@r>=8) { bonus2 bSkillCooldown,"SU_SVG_SPIRIT",-4000*getskilllv("SU_LUNATICCARROTBEAT"); bonus2 bSkillCooldown,"SU_NYANGGRASS",-8000*getskilllv("SU_CN_METEOR"); bonus2 bSkillCooldown,"SU_BUNCHOFSHRIMP",-4000*getskilllv("SU_FRESHSHRIMP"); } if (.@r>=11) bonus bDelayrate,-15;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19209,'Illusion_Nurse_Cap','Illusion Nurse Cap','Armor',20,200,1,1,true,true,true,true,99,true,64,'.@r = getrefine(); bonus bInt,(1+(.@r/2)); bonus bHealPower,(3*(.@r/2));'); @@ -4011,7 +4011,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_cos REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19595,'C_Dress_Hat_J','Costume April\'s Fool Day','Armor',true,1,265); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19596,'C_Flapping_Angel_Wing','Costume Flapping Angel Wing','Armor',true,1,264); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19597,'C_Magic_Eyes','Costume Magic Eyes','Armor',true,1,209); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_costume_head_top`,`location_costume_head_Mid`,`view`,`trade_override`,`trade_nodrop`) VALUES (19598,'C_Wondering_Wolf_Helm','Costume Wandering Wolf Hat','Armor',20,true,false,false,true,true,490,100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`location_costume_head_Mid`,`view`,`trade_override`,`trade_nodrop`) VALUES (19598,'C_Wondering_Wolf_Helm','Costume Wandering Wolf Hat','Armor',20,true,true,490,100,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_costume_head_top`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`script`) VALUES (19599,'C_Imp_Hat','Costume Imp Hat','Armor',20,400,1,true,1,589,100,true,'bonus3 bAutoSpell,"SA_FLAMELAUNCHER",1,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19600,'Drooping_Kiehl','Costume Drooping Kiehl','Armor',40,true,30,909); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19601,'Drooping_Aliot','Costume Drooping Aliot','Armor',10,true,1,910); @@ -4841,7 +4841,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20716,'Spirit_Manteau','Spirit Manteau','Armor',20,700,20,1,true,65,true,'bonus2 bSubEle,Ele_Ghost,5; bonus2 bSubRace,RC_Angel,-5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20717,'FaceWorm_Skin','Gigant Snake Skin','Armor',10,400,38,true,1,true,'bonus bMdef,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20718,'FaceWorm_Skin_','Gigant Snake Skin','Armor',10,400,38,1,true,1,true,'bonus bMdef,10;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`class_third`,`class_third_upper`,`class_third_baby`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20721,'Cloak_Of_Gray','Cloak of Gray','Armor',20,600,45,1,true,true,true,true,120,true,'bonus2 bSubEle,Ele_Holy,5+getrefine()/2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20721,'Cloak_Of_Gray','Cloak of Gray','Armor',20,600,45,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,120,true,'bonus2 bSubEle,Ele_Holy,5+getrefine()/2;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (20724,'Love_Dad_Wings_2012','Love Dad Wings 2012','Armor',100,15,1,true,1,true,5,'.@r = getrefine(); if ((readparam(bStr)>89)) { bonus bAllStats,1; bonus bStr,.@r; bonus bMaxHPRate,1; bonus bMaxSPRate,1; } if ((readparam(bAgi)>89)) { bonus bAllStats,1; bonus bAgi,.@r; bonus bMaxHPRate,1; bonus bMaxSPRate,1; } if ((readparam(bVit)>89)) { bonus bAllStats,1; bonus bVit,.@r; bonus bMaxHPRate,1; bonus bMaxSPRate,1; } if ((readparam(bInt)>89)) { bonus bAllStats,1; bonus bInt,.@r; bonus bMaxHPRate,1; bonus bMaxSPRate,1; } if ((readparam(bDex)>89)) { bonus bAllStats,1; bonus bDex,.@r; bonus bMaxHPRate,1; bonus bMaxSPRate,1; } if ((readparam(bLuk)>89)) { bonus bAllStats,1; bonus bLuk,.@r; bonus bMaxHPRate,1; bonus bMaxSPRate,1; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`magic_attack`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (20725,'Ribbon_Piamat','Ribbon Piamat','Armor',10,100,10,1,true,30,true,7,'bonus bInt,1; bonus bDex,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20726,'Fire_Dragon\'s_Coat','Fire Dragon\'s Coat','Armor',20,300,1,true,30,true,'bonus bMaxHPrate,5; bonus2 bMagicAtkEle,Ele_Fire,2; if (getrefine()>=7) { bonus2 bMagicAtkEle,Ele_Fire,3; } bonus2 bMagicAtkEle,Ele_Water,-10;'); @@ -4871,9 +4871,9 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (20782,'Unity_INT_Muffler','Unity INT Muffler','Armor',32000,300,20,1,true,1,true,100,true,true,true,true,true,true,'.@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bUseSPrate,-(.@r/2); }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20783,'Hero_Cape','Hero Cape','Armor',100,1,true,10,true,'.@r = getrefine(); bonus2 bSubEle,Ele_Neutral,1+(.@r/3); bonus bFlee,1+(.@r/3); if (.@r > 9) { bonus2 bSubEle,Ele_Neutral,20; bonus bFlee,20; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (20787,'Unity_Exquisite_Muffler','Unity Exquisite Muffler','Armor',32000,300,20,1,true,1,true,100,true,true,true,true,true,true,'.@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bCritical,2*(.@r/2); }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20788,'Private_Doram_Manteau','Private Doram Manteau','Armor',20,300,20,1,true,true,true,true,true,100,true,'bonus bFlee,5; bonus2 bSubEle,Ele_Neutral,2; bonus bFlee2,getrefine()/3;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20789,'Luxury_Doram_Manteau','Luxury Doram Manteau','Armor',20,400,25,1,true,true,true,true,true,140,true,'bonus bFlee,7; bonus2 bSubEle,Ele_Neutral,3; .@r = getrefine()/3; bonus bFlee2,.@r; bonus bLuk,.@r;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20790,'Elegant_Doram_Manteau','Elegant Doram Manteau','Armor',20,500,30,1,true,true,true,true,true,175,true,'bonus bFlee,10; bonus2 bSubEle,Ele_Neutral,5; .@r = getrefine()/2; bonus bFlee2,.@r; bonus bInt,.@r; bonus bDex,.@r; bonus bLuk,.@r;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_summoner`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20788,'Private_Doram_Manteau','Private Doram Manteau','Armor',20,300,20,1,true,true,100,true,'bonus bFlee,5; bonus2 bSubEle,Ele_Neutral,2; bonus bFlee2,getrefine()/3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_summoner`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20789,'Luxury_Doram_Manteau','Luxury Doram Manteau','Armor',20,400,25,1,true,true,140,true,'bonus bFlee,7; bonus2 bSubEle,Ele_Neutral,3; .@r = getrefine()/3; bonus bFlee2,.@r; bonus bLuk,.@r;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_summoner`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20790,'Elegant_Doram_Manteau','Elegant Doram Manteau','Armor',20,500,30,1,true,true,175,true,'bonus bFlee,10; bonus2 bSubEle,Ele_Neutral,5; .@r = getrefine()/2; bonus bFlee2,.@r; bonus bInt,.@r; bonus bDex,.@r; bonus bLuk,.@r;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20797,'Etran_Shirt','Etran Shirt','Armor',150,1,true,1,true,'bonus bMdef,10; bonus bMaxHPrate,2; .@r = getrefine(); if (.@r >= 6) bonus bMaxHPrate,4; if (.@r >= 7) bonus bMaxHPrate,6; if (.@r >= 8) bonus bMaxHPrate,8; if (.@r >= 9) bonus bNoKnockback;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (20798,'GrimReaper_Protection','Costume Grim Reaper Protection','Armor',true,1,1450); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20799,'Elemental_Towel','Elemental Towel','Armor',20,400,13,1,true,100,true,'bonus bLongAtkRate,2; if(getrefine()>=7) { bonus2 bSkillUseSP,"RA_ARROWSTORM",20; bonus2 bSkillUseSP,"WM_SEVERE_RAINSTORM",60; } if(getrefine()>=8) { bonus bLongAtkRate,2; } if(getrefine()>=9) { bonus bLongAtkRate,3; }'); @@ -4883,7 +4883,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20815,'SeraphimRobe','Seraphim Robe','Armor',300,18,1,true,1,true,'bonus bMaxHPrate,10; bonus2 bMagicAtkEle,Ele_Neutral,5; .@r = getrefine(); if (.@r > 6) { bonus2 bSubEle,Ele_Dark,20; bonus2 bSubEle,Ele_Holy,20; bonus bMatkRate,10; } if (.@r > 8) { bonus2 bSubEle,Ele_Dark,10; bonus2 bSubEle,Ele_Holy,10; bonus bVariableCastrate,-5; } if (getskilllv("CR_TRUST") > 0) { bonus2 bSubEle,Ele_Holy,.@r*3; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20819,'Oxygen_Bottle','Oxygen Bottle','Armor',500,1,true,40,true,'bonus bFlee,12+getrefine(); bonus bHit,getrefine();'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20820,'Elemental_Cape','Elemental Cape','Armor',500,12,true,true,true,true,true,100,true,'.@r = getrefine(); bonus bFlee,(10+5*(.@r/3)); bonus2 bSubEle,Ele_Neutral,10; if (.@r>=9) bonus bAspdRate,5;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`job_kagerouoboro`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20821,'Golden_Scarf','Golden Scarf','Armor',500,12,true,true,100,true,'.@r = getrefine(); bonus bFlee,20; if (.@r>=9) { bonus bLongAtkRate,10; } else if (.@r>=7) { bonus bLongAtkRate,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`job_kagerouoboro`,`job_ninja`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20821,'Golden_Scarf','Golden Scarf','Armor',500,12,true,true,true,100,true,'.@r = getrefine(); bonus bFlee,20; if (.@r>=9) { bonus bLongAtkRate,10; } else if (.@r>=7) { bonus bLongAtkRate,5; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20822,'Mine_Worker\'s_Backpack','Mine Worker\'s Backpack','Armor',600,16,true,true,true,true,true,100,true,'.@r = getrefine(); bonus bAspdRate,(5+(.@r/2)); if (.@r>=9) bonus bBaseAtk,20;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_garment`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (20823,'Para_Team_Manteau100','Awakened Eden Group Manteau I','Armor',20,true,100,true,100,true,true,true,true,true,true,'bonus2 bSubEle,Ele_Neutral,10; bonus bFlee,12; .@r = getrefine(); if(.@r >= 7){ bonus bMaxHP,500; bonus bFlee2,2; if(.@r >= 9){ bonus bMaxHP,500; bonus2 bSubEle,Ele_All,10; bonus2 bSubEle,Ele_Neutral,-10; } }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_garment`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (20824,'Para_Team_Manteau130','Awakened Eden Group Manteau II','Armor',25,true,130,true,100,true,true,true,true,true,true,'bonus2 bSubEle,Ele_Neutral,10; bonus bFlee,12; bonus bMaxHP,500; bonus bFlee2,2; .@r = getrefine(); if(.@r >= 7){ bonus bMaxHP,500; bonus2 bSubEle,Ele_All,10; bonus2 bSubEle,Ele_Neutral,-10; if(.@r >= 9){ bonus2 bSubEle,Ele_Neutral,5; } }'); @@ -4916,8 +4916,8 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20937,'Lava_Leather_Hood','Lava Leather Hood','Armor',20,300,25,1,true,175,true,'bonus bVariableCastrate,-10; .@r = getrefine(); if (.@r>=7) bonus bVariableCastrate,-10; if (.@r>=9) bonus bVariableCastrate,-10; if (.@r>=11) bonus2 bMagicAtkEle,Ele_Fire,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20941,'Phoenix_Muffler','Phoenix Muffler','Armor',20,200,18,1,true,100,true,'.@r = getrefine(); bonus bMdef,5; bonus2 bAddEle,Ele_Fire,15+.@r; bonus2 bMagicAddEle,Ele_Fire,15+.@r; bonus2 bSubRace,RC_Player_Human,5; bonus bAspdRate,.@r; if (.@r>=10) bonus2 bSubEle,Ele_Fire,100;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20942,'Manteau_Of_Guardsman','Manteau Of Guardsman','Armor',20,500,15,1,true,100,true,'.@r = getrefine(); bonus bMdef,15; bonus bMaxHPrate,5+3*(.@r/3); bonus bMaxSPrate,5+3*(.@r/3); bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20943,'Geffen_Magic_Muffler','Geffen Magic Muffler','Armor',20,550,20,1,true,false,false,true,99,true,'.@r = getrefine(); .@val = -10; bonus bMatk,(10*(.@r/2)); bonus bMatkRate,(.@r/3); if (.@r >= 7) { bonus2 bMagicAtkEle,Ele_All,5; } if (.@r >= 9) { .@val -= 10; } bonus bVariableCastrate,.@val;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20944,'Anti_Magic_Manteau','Anti Magic Manteau','Armor',20,750,23,1,true,false,false,true,99,true,'.@r = getrefine(); bonus bMaxHP,(300+(100*(.@r/2))); bonus bMaxHPRate,(2*(.@r/3)); if (.@r >= 7) { bonus2 bAddClass,Class_All,7; } if (.@r >= 9) { bonus bVariableCastrate,-10; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20943,'Geffen_Magic_Muffler','Geffen Magic Muffler','Armor',20,550,20,1,true,99,true,'.@r = getrefine(); .@val = -10; bonus bMatk,(10*(.@r/2)); bonus bMatkRate,(.@r/3); if (.@r >= 7) { bonus2 bMagicAtkEle,Ele_All,5; } if (.@r >= 9) { .@val -= 10; } bonus bVariableCastrate,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20944,'Anti_Magic_Manteau','Anti Magic Manteau','Armor',20,750,23,1,true,99,true,'.@r = getrefine(); bonus bMaxHP,(300+(100*(.@r/2))); bonus bMaxHPRate,(2*(.@r/3)); if (.@r >= 7) { bonus2 bAddClass,Class_All,7; } if (.@r >= 9) { bonus bVariableCastrate,-10; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20948,'Illusion_Morpheus\'s_Shawl','Illusion Morpheus\'s Shawl','Armor',20,600,8,1,true,130,true,'bonus bMaxSPrate,10; bonus bMdef,5; .@r = getrefine(); if (.@r >= 7) { .@bonus = -10; if (.@r >= 9) { .@bonus -= 10; } bonus bVariableCastrate,.@bonus; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20949,'Ladon_Skin','Ladon\'s Skin','Armor',20,600,15,1,true,100,true,'bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5; bonus2 bSubEle,Ele_Wind,5; bonus2 bSubEle,Ele_Earth,5; bonus bAgi,5; bonus bVit,5; bonus bMdef,10; .@r = getrefine(); if (.@r>=7) { .@val = 10; bonus bSPGainValue,10; bonus bLongSPGainValue,10; if (.@r>=8) { .@s = (readparam(bAgi)+readparam(bVit))/20; bonus bBaseAtk,15*.@s; bonus bHit,5*.@s; if (.@r>=9) { .@val += 10; } } bonus bSPGainValue,.@val; bonus bLongSPGainValue,.@val; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20952,'Nameless_Assassin_Muffler','Nameless Assassin\'s Muffler','Armor',20,100,10,1,true,100,true,'.@r= getrefine(); bonus bMdef,5; bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus2 bSubRace,RC_Player_Human,5; if (.@r>=7) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bAspd,1; bonus bHPGainValue,5; bonus bLongHPGainValue,5; } if (.@r>=8) bonus bSpeedRate,40; if (.@r>=9) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bAspd,1; bonus bHPGainValue,5; bonus bLongHPGainValue,5; } if (.@r>=10) skill "AS_CLOAKING",3;'); @@ -4930,36 +4930,36 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`pr REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (21004,'Alca_Bringer_','Alca Bringer','Weapon','2hSword',20,3400,280,2,2,true,true,true,true,true,3,100,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (21005,'Metal_Two_Hand_Sword','Metal Two Hand Sword','Weapon','2hSword',20,95,1,1,true,true,true,true,true,3,1,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,(.@r*6); bonus bMatk,(.@r*2); .@i = min(BaseLevel/10,12); if(.@i>2) bonus bBaseAtk,((.@i-2)*5);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (21006,'TE_Woe_Two_Hand_Sword','TE Woe Two Hand Sword','Weapon','2hSword',150,1,true,true,true,true,true,3,40,true,100,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Bleeding,3000;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (21007,'Heavy_Sword','Heavy Greatsword','Weapon','2hSword',20,2500,330,1,1,true,true,true,true,true,1,150,true,'bonus bStr,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (21007,'Heavy_Sword','Heavy Greatsword','Weapon','2hSword',20,2500,330,1,1,true,true,true,true,1,150,true,'bonus bStr,20;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (21008,'Small_Karasuma','Small Karasuma','Weapon','2hSword',20,1000,170,1,2,true,true,true,true,true,4,50,true,'bonus bCritAtkRate,getrefine()*2; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,50;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (21009,'Thanos_Great_Sword','Thanos Great Sword','Weapon','2hSword',10,1300,280,120,1,1,true,true,true,true,true,true,true,true,4,120,true,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000;','heal -1000,0;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (21010,'Tw_Sword_Of_Evil_Slayer','Evil Slayer Slaher Sword','Weapon','2hSword',2000,225,1,1,true,true,true,true,true,3,100,true,'bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; .@r = getrefine(); if(.@r>=9) { .@dmg = 5; if(.@r>=12) { .@dmg += 7; } bonus2 bAddClass,Class_All,.@dmg; }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (21011,'Giant_Blade','Gigantic Blade','Weapon','2hSword',30000,5000,300,1,1,true,true,true,true,true,true,true,true,4,130,true,'bonus bUnbreakableWeapon; bonus bAspdRate,-5; bonus bCritAtkRate,getrefine(); if(readparam(bStr)<=110){ bonus bAtk,-250; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (21009,'Thanos_Great_Sword','Thanos Great Sword','Weapon','2hSword',10,1300,280,120,1,1,true,true,true,true,true,4,120,true,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000;','heal -1000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (21010,'Tw_Sword_Of_Evil_Slayer','Evil Slayer Slaher Sword','Weapon','2hSword',2000,225,1,1,true,true,true,true,3,100,true,'bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; .@r = getrefine(); if(.@r>=9) { .@dmg = 5; if(.@r>=12) { .@dmg += 7; } bonus2 bAddClass,Class_All,.@dmg; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (21011,'Giant_Blade','Gigantic Blade','Weapon','2hSword',30000,5000,300,1,1,true,true,true,true,true,true,true,4,130,true,'bonus bUnbreakableWeapon; bonus bAspdRate,-5; bonus bCritAtkRate,getrefine(); if(readparam(bStr)<=110){ bonus bAtk,-250; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (21012,'Some_Wizard_MagicSword','Some Wizard MagicSword','Weapon','2hSword',2200,200,150,1,2,true,true,true,true,true,true,4,110,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (21013,'Hetairoi_Sword','Hetairoi Sword','Weapon','2hSword',2200,210,1,2,true,true,true,true,true,true,4,110,true,'bonus2 bSkillUseSP,"KN_AUTOCOUNTER",2; bonus2 bSkillUseSP,"LK_PARRYING",25;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (21014,'Infinity_Two-Handed_Sword','Infinity Two-Handed Sword','Weapon','2hSword',20,500,230,1,1,true,true,true,true,true,true,true,true,4,100,true,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (21014,'Infinity_Two-Handed_Sword','Infinity Two-Handed Sword','Weapon','2hSword',20,500,230,1,1,true,true,true,true,true,true,true,4,100,true,100,true,true,true,true,true,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (21015,'Crimson_Two-Handed_Sword','Crimson Two-Handed Sword','Weapon','2hSword',20,1700,170,1,2,true,true,true,true,true,3,70,true,'.@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bMatk,(.@r<=15?(pow(.@r,2)/2):225);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (21016,'Two_Handed_Sword_of_Vicious_Mind','Two-Handed Sword of Vicious Mind','Weapon','2hSword',20,2200,220,1,1,true,true,true,true,true,4,160,true,'bonus bAtk,pow(min(getrefine(),15),2);'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (21018,'Lindy_Hop','Lindy Hop','Weapon','2hSword',20,3400,340,1,2,true,true,true,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus2 bAddClass,Class_All,.@r/2; bonus bAspdRate,.@r; bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (21018,'Lindy_Hop','Lindy Hop','Weapon','2hSword',20,3400,340,1,2,true,true,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus2 bAddClass,Class_All,.@r/2; bonus bAspdRate,.@r; bonus bUnbreakableWeapon;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (21019,'Onimaru','Onimaru','Weapon','2hSword',4200,75,1,2,true,true,true,true,true,true,4,130,true,'.@bStr = readparam(bStr); .@r = getrefine(); bonus bBaseAtk,(min(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; bonus4 bAutoSpell,"NPC_WIDECURSE",4,100,0; if (.@r > 8) bonus4 bAutoSpellOnSkill,"LK_BERSERK","BS_OVERTHRUST",5,100;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (21039,'Royal_Knight\'s_Broadsword','Royal Knight\'s Broadsword','Weapon','2hSword',20,4000,280,1,2,true,true,true,true,true,true,true,true,4,175,true,'.@r = getrefine(); bonus bBaseAtk,20*(.@r/2); if (.@r>=7) bonus bCritAtkRate,10; if (.@r>=9) bonus bUnbreakableWeapon;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (21047,'Beam_Claymor-OS','Beam Claymor-OS','Weapon','2hSword',20,1800,250,1,2,true,true,true,true,true,true,true,true,4,130,true,'.@r = getrefine(); bonus bUnbreakableWeapon; bonus bCritical,5; if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus bCritAtkRate,15; if (.@r >= 11) { bonus2 bAddSize,Size_Small,20; bonus2 bAddSize,Size_Medium,20; } } }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (21050,'Illusion_Tae_Goo_Lyeon','Illusion Tae Goo Lyeon','Weapon','2hSword',20,2000,250,1,2,true,true,true,true,true,true,true,true,4,120,true,'.@r = getrefine(); bonus bFlee2,10; bonus bLongAtkRate,.@r*2; if (.@r >= 7) { bonus bUseSPrate,-20; if (.@r >= 9) { bonus bDelayrate,-20; if (.@r >= 11) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; } } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (21039,'Royal_Knight\'s_Broadsword','Royal Knight\'s Broadsword','Weapon','2hSword',20,4000,280,1,2,true,true,true,true,true,true,true,4,175,true,'.@r = getrefine(); bonus bBaseAtk,20*(.@r/2); if (.@r>=7) bonus bCritAtkRate,10; if (.@r>=9) bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (21047,'Beam_Claymor-OS','Beam Claymor-OS','Weapon','2hSword',20,1800,250,1,2,true,true,true,true,true,4,130,true,'.@r = getrefine(); bonus bUnbreakableWeapon; bonus bCritical,5; if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus bCritAtkRate,15; if (.@r >= 11) { bonus2 bAddSize,Size_Small,20; bonus2 bAddSize,Size_Medium,20; } } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (21050,'Illusion_Tae_Goo_Lyeon','Illusion Tae Goo Lyeon','Weapon','2hSword',20,2000,250,1,2,true,true,true,true,true,true,true,4,120,true,'.@r = getrefine(); bonus bFlee2,10; bonus bLongAtkRate,.@r*2; if (.@r >= 7) { bonus bUseSPrate,-20; if (.@r >= 9) { bonus bDelayrate,-20; if (.@r >= 11) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; } } }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (21051,'Volar','Volar','Weapon','2hSword',20,2800,280,1,2,true,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus2 bSkillAtk,"KN_BOWLINGBASH",30; bonus bBaseAtk,4*.@r; if (.@r>=9) { bonus2 bSkillCooldown,"KN_BOWLINGBASH",-1000; bonus2 bSkillCooldown,"RK_IGNITIONBREAK",-1000; } if (.@r>=11) { bonus bUnbreakableWeapon; bonus2 bSkillAtk,"KN_BOWLINGBASH",20; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (21052,'Vernan','Vernan','Weapon','2hSword',20,6500,300,1,2,true,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bLongAtkRate,.@r; bonus2 bAddClass,Class_All,5; if (.@r>=9) { bonus2 bSkillAtk,"LK_SPIRALPIERCE",30; bonus2 bSkillAtk,"RK_SONICWAVE",30; } if (.@r>=11) { bonus2 bSkillCooldown,"RK_SONICWAVE",-1500; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (21058,'Up_Dragonic_Slayer','Patent Dragonic Slayer','Weapon','1hSword',2000,200,1,2,true,true,true,true,true,true,4,150,true,'.@r = getrefine(); bonus bMaxHPrate,.@r/2*5; bonus bMaxSPrate,.@r/2*5; bonus2 bSkillAtk,"RK_DRAGONBREATH",.@r/3*5; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",.@r/3*5; if (.@r>=7){ bonus bDelayRate,-10; bonus bVariableCastrate,-10; } if (.@r>=9){ bonus bLongAtkRate,10; } if (.@r>=11){ bonus bDelayRate,-7; bonus bMaxSPrate,5; }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22000,'Temporal_Str_Boots','Temporal Boots Of Strength','Armor',20,600,25,true,false,false,true,true,true,true,99,true,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAtk,7*(.@r/3); if(readparam(bStr)>=120) bonus bAtk,50;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22001,'Temporal_Int_Boots','Temporal Boots Of Intelligence','Armor',20,600,20,true,false,false,true,true,true,true,99,true,'.@r = getrefine(); bonus bMdef,5; bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMatk,10*(.@r/3); if(readparam(bInt)>=120) bonus bMatk,60;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22002,'Temporal_Agi_Boots','Temporal Boots Of Agility','Armor',20,600,25,true,false,false,true,true,true,true,99,true,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAspdRate,3*(.@r/3); if(readparam(bAgi)>=120) bonus bAspd,1;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22003,'Temporal_Vit_Boots','Temporal Boots Of Vitality','Armor',20,600,25,true,false,false,true,true,true,true,99,true,'.@r = getrefine(); bonus bMaxHP,300+(300*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); if(readparam(bVit)>=120) bonus bMaxHPrate,8;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22004,'Temporal_Dex_Boots','Temporal Boots Of Dexterity','Armor',20,600,25,true,false,false,true,true,true,true,99,true,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bDex,3*(.@r/3); if(readparam(bDex)>=120){ bonus bLongAtkRate,5; bonus bFixedCast,-500; }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22005,'Temporal_Luk_Boots','Temporal Boots Of Luck','Armor',20,600,20,true,false,false,true,true,true,true,99,true,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMdef,5; bonus bCritAtkRate,2*(.@r/3); if(readparam(bLuk)>=120) bonus bCritAtkRate,30;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22006,'Temporal_Str_Boots_','Temporal Boots Of Strength','Armor',20,600,25,1,true,false,false,true,true,true,true,99,true,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAtk,7*(.@r/3); if(readparam(bStr)>=120) bonus bAtk,50;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22007,'Temporal_Vit_Boots_','Temporal Boots Of Vitality','Armor',20,600,25,1,true,false,false,true,true,true,true,99,true,'.@r = getrefine(); bonus bMaxHP,300+(300*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); if(readparam(bVit)>=120) bonus bMaxHPrate,8;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22008,'Temporal_Dex_Boots_','Temporal Boots Of Dexterity','Armor',20,600,25,1,true,false,false,true,true,true,true,99,true,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bDex,3*(.@r/3); if(readparam(bDex)>=120){ bonus bLongAtkRate,5; bonus bFixedCast,-500; }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22009,'Temporal_Int_Boots_','Temporal Boots Of Intelligence','Armor',20,600,20,1,true,false,false,true,true,true,true,99,true,'.@r = getrefine(); bonus bMdef,5; bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMatk,10*(.@r/3); if(readparam(bInt)>=120) bonus bMatk,60;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22010,'Temporal_Agi_Boots_','Temporal Boots Of Agility','Armor',20,600,25,1,true,false,false,true,true,true,true,99,true,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAspdRate,3*(.@r/3); if(readparam(bAgi)>=120) bonus bAspd,1;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22011,'Temporal_Luk_Boots_','Temporal Boots Of Luck','Armor',20,600,20,1,true,false,false,true,true,true,true,99,true,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMdef,5; bonus bCritAtkRate,2*(.@r/3); if(readparam(bLuk)>=120) bonus bCritAtkRate,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22000,'Temporal_Str_Boots','Temporal Boots Of Strength','Armor',20,600,25,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,99,true,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAtk,7*(.@r/3); if(readparam(bStr)>=120) bonus bAtk,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22001,'Temporal_Int_Boots','Temporal Boots Of Intelligence','Armor',20,600,20,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,99,true,'.@r = getrefine(); bonus bMdef,5; bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMatk,10*(.@r/3); if(readparam(bInt)>=120) bonus bMatk,60;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22002,'Temporal_Agi_Boots','Temporal Boots Of Agility','Armor',20,600,25,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,99,true,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAspdRate,3*(.@r/3); if(readparam(bAgi)>=120) bonus bAspd,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22003,'Temporal_Vit_Boots','Temporal Boots Of Vitality','Armor',20,600,25,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,99,true,'.@r = getrefine(); bonus bMaxHP,300+(300*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); if(readparam(bVit)>=120) bonus bMaxHPrate,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22004,'Temporal_Dex_Boots','Temporal Boots Of Dexterity','Armor',20,600,25,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,99,true,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bDex,3*(.@r/3); if(readparam(bDex)>=120){ bonus bLongAtkRate,5; bonus bFixedCast,-500; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22005,'Temporal_Luk_Boots','Temporal Boots Of Luck','Armor',20,600,20,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,99,true,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMdef,5; bonus bCritAtkRate,2*(.@r/3); if(readparam(bLuk)>=120) bonus bCritAtkRate,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22006,'Temporal_Str_Boots_','Temporal Boots Of Strength','Armor',20,600,25,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,99,true,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAtk,7*(.@r/3); if(readparam(bStr)>=120) bonus bAtk,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22007,'Temporal_Vit_Boots_','Temporal Boots Of Vitality','Armor',20,600,25,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,99,true,'.@r = getrefine(); bonus bMaxHP,300+(300*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); if(readparam(bVit)>=120) bonus bMaxHPrate,8;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22008,'Temporal_Dex_Boots_','Temporal Boots Of Dexterity','Armor',20,600,25,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,99,true,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bDex,3*(.@r/3); if(readparam(bDex)>=120){ bonus bLongAtkRate,5; bonus bFixedCast,-500; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22009,'Temporal_Int_Boots_','Temporal Boots Of Intelligence','Armor',20,600,20,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,99,true,'.@r = getrefine(); bonus bMdef,5; bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMatk,10*(.@r/3); if(readparam(bInt)>=120) bonus bMatk,60;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22010,'Temporal_Agi_Boots_','Temporal Boots Of Agility','Armor',20,600,25,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,99,true,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAspdRate,3*(.@r/3); if(readparam(bAgi)>=120) bonus bAspd,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22011,'Temporal_Luk_Boots_','Temporal Boots Of Luck','Armor',20,600,20,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,99,true,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMdef,5; bonus bCritAtkRate,2*(.@r/3); if(readparam(bLuk)>=120) bonus bCritAtkRate,30;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22012,'Mana_Boots','Mana Boots','Armor',true,1,true,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddRace,RC_All,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_monk`,`job_priest`,`job_rebellion`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_wizard`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22014,'Enhanced_Variant_Shoes','Enhanced Variant Shoes','Armor',20,500,13,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,85,true,'bonus bMaxHPrate,12; bonus bMaxSPrate,12; .@r = getrefine(); bonus bDef,.@r; bonus bMdef,.@r;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22015,'Impr_Angel\'s_Arrival','Advanced Angel\'s Reincarnation','Armor',10000,300,8,1,true,true,true,99,true,'bonus bMaxHP,500; bonus bMaxSP,100;'); @@ -4967,7 +4967,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22017,'Fisherman_Shoes','Fisherman\'s Shoes','Armor',20,300,10,true,30,true,'bonus2 bExpAddRace,RC_Fish,5+getrefine();'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22018,'Shoes_Of_Wise_Man','Shoes Of Wise Man','Armor',10,300,15,1,true,50,true,'.@r = getrefine(); if(.@r>5){ bonus bInt,.@r-5; bonus bMaxHPrate,-(.@r-5); }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22032,'Exorcist_Shoes','Exorcist\'s Shoes','Armor',20,300,10,true,30,true,'bonus2 bExpAddRace,RC_Demon,5+getrefine();'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22033,'Boots_Of_Gray','Boots of Gray','Armor',20,400,25,1,true,true,true,true,120,true,'bonus2 bSubEle,Ele_Holy,2+getrefine()/3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22033,'Boots_Of_Gray','Boots of Gray','Armor',20,400,25,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,120,true,'bonus2 bSubEle,Ele_Holy,2+getrefine()/3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22034,'Crimson_Gaiter','Crimson Gaiter','Armor',500,10,true,50,true,'bonus bCritical,2; bonus bCritAtkRate,2; if(getrefine()>=7){ bonus bCritical,3; bonus bCritAtkRate,3; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22035,'Vet_Nepen_Heel','Heoric Nepenthes Shoes','Armor',10,300,10,1,true,160,true,'.@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;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22036,'Vet_SliverFox_Boots','Heroic Silver Fox Leather Boots','Armor',10,300,15,1,true,160,true,'.@r = getrefine(); if (.@r>=8 && .@r<=13) .@i=.@r; else if (.@r>13) .@i=13; bonus bLongAtkRate,5+.@i;'); @@ -4985,22 +4985,22 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22069,'Lian_Shoes','Lian Shoes','Armor',250,12,1,true,90,true,'bonus bMdef,3; bonus2 bSubEle,Ele_Neutral,5; .@r = getrefine(); bonus bMaxHPrate,.@r; bonus bMaxSPrate,.@r;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22072,'Hikingboots','Hikingboots','Armor',500,10,1,true,100,true,'.@r = getrefine(); bonus bMaxHPRate,4+(.@r/3); bonus bMaxSPRate,4+(.@r/3); if (.@r > 9) bonus bSpeedRate,25;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22075,'Rift_Shoes','Rift Shoes','Armor',20,250,12,1,true,100,true,100,true,true,true,true,true,true,'.@r = getrefine(); bonus bMaxHP,(.@r >= 9 ? 1300 : .@r >= 7 ? 700 : 300); bonus bMaxSP,-50;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22076,'Wooden_Slipper','Wooden Slipper','Armor',20,50,10,1,true,true,true,true,true,9,true,'bonus2 bHPRegenRate,2,10000;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22077,'Red_Eco-Friendly_Shoes','Red Eco-Friendly Shoes','Armor',20,100,20,1,true,true,true,true,true,18,true,'bonus bCritical,5; bonus2 bHPRegenRate,4,10000; bonus2 bSPRegenRate,1,10000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_summoner`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22076,'Wooden_Slipper','Wooden Slipper','Armor',20,50,10,1,true,true,9,true,'bonus2 bHPRegenRate,2,10000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_summoner`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22077,'Red_Eco-Friendly_Shoes','Red Eco-Friendly Shoes','Armor',20,100,20,1,true,true,18,true,'bonus bCritical,5; bonus2 bHPRegenRate,4,10000; bonus2 bSPRegenRate,1,10000;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22078,'Unity_STR_Boots','Unity STR Boots','Armor',10,300,20,1,true,1,true,100,true,true,true,true,true,true,'.@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bStr,.@r/2; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22079,'Unity_AGI_Boots','Unity AGI Boots','Armor',10,300,20,1,true,1,true,100,true,true,true,true,true,true,'.@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bAgi,.@r/2; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22080,'Unity_DEX_Boots','Unity DEX Boots','Armor',10,300,20,1,true,1,true,100,true,true,true,true,true,true,'.@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bDex,.@r/2; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22081,'Unity_INT_Boots','Unity INT Boots','Armor',10,300,20,1,true,1,true,100,true,true,true,true,true,true,'.@r = getrefine(); if(BaseLevel<100) { bonus2 bExpAddRace,RC_All,4; bonus bInt,.@r/2; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22082,'Polyhedron_Shoes','Polyhedron Shoes','Armor',500,12,1,true,90,true,'.@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; }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22083,'Private_Doram_Shoes','Private Doram Shoes','Armor',20,500,25,1,true,true,true,true,true,100,true,'bonus bMaxHP,100; bonus bMaxSP,50; .@r = getrefine()/3; bonus bHPrecovRate,.@r*10; bonus bSPrecovRate,.@r*10;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22084,'Luxury_Doram_Shoes','Luxury Doram Shoes','Armor',20,600,30,1,true,true,true,true,true,140,true,'bonus bMaxHP,300; bonus bMaxSP,100; .@r = getrefine()/3; bonus bHPrecovRate,20*.@r; bonus bSPrecovRate,20*.@r;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22085,'Elegant_Doram_Shoes','Elegant Doram Shoes','Armor',20,700,35,1,true,true,true,true,true,175,true,'bonus bMaxHPrate,10; bonus bMaxSPrate,5; .@r = getrefine()/2; bonus bMaxHP,100*.@r; bonus bMaxSP,20*.@r; if(.@r >= 4) bonus2 bSkillUseSP,"SU_LOPE",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_summoner`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22083,'Private_Doram_Shoes','Private Doram Shoes','Armor',20,500,25,1,true,true,100,true,'bonus bMaxHP,100; bonus bMaxSP,50; .@r = getrefine()/3; bonus bHPrecovRate,.@r*10; bonus bSPrecovRate,.@r*10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_summoner`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22084,'Luxury_Doram_Shoes','Luxury Doram Shoes','Armor',20,600,30,1,true,true,140,true,'bonus bMaxHP,300; bonus bMaxSP,100; .@r = getrefine()/3; bonus bHPrecovRate,20*.@r; bonus bSPrecovRate,20*.@r;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_summoner`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22085,'Elegant_Doram_Shoes','Elegant Doram Shoes','Armor',20,700,35,1,true,true,175,true,'bonus bMaxHPrate,10; bonus bMaxSPrate,5; .@r = getrefine()/2; bonus bMaxHP,100*.@r; bonus bMaxSP,20*.@r; if(.@r >= 4) bonus2 bSkillUseSP,"SU_LOPE",5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22089,'Crimson_Gaiter_','Crimson Gaiter','Armor',500,10,1,true,50,true,'bonus bCritical,2; bonus bCritAtkRate,2; if(getrefine()>=7){ bonus bCritical,3; bonus bCritAtkRate,3; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22101,'Angel_Poring_Boots','Angel Poring Boots','Armor',10,300,15,1,true,1,true,'bonus bAllStats,1; skill "AL_HEAL",1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22103,'Excelion_Leg','Excelion Leg','Armor',500,13,true,100,true,'.@r = getrefine(); bonus bMaxHP,5+((BaseLevel > 129) ? 4 : 0)+(.@r/3)*3; bonus bMaxSP,5+((BaseLevel > 129) ? 4 : 0)+(.@r/3)*3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22104,'Pororoca_Shoes','Pororoca Shoes','Armor',20,500,15,true,100,true,'bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bMdef,15; bonus bMatkRate,2; bonus2 bMagicAtkEle,Ele_Water,2; skill "SA_DELUGE",5; if (getrefine()>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bMatkRate,3; bonus2 bMagicAtkEle,Ele_Water,3; } if (getrefine()>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bMatkRate,5; bonus2 bMagicAtkEle,Ele_Water,5; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22106,'Giant_Boots','Giant Boots','Armor',500,13,1,true,85,true,'bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; bonus bMaxHPrate,2; bonus bMaxSPrate,2; .@r = getrefine(); if (.@r > 4) { bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; bonus bMaxHPrate,4; bonus bMaxSPrate,4; } if (.@r > 6) { bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; bonus bMaxHPrate,4; bonus bMaxSPrate,4; }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_kagerouoboro`,`job_rebellion`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22107,'Modified_Str_Boots','Modified Str Boots','Armor',20,600,25,true,true,true,99,true,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAtk,7*(.@r/3); if(readparam(bStr)>=120) bonus bBaseAtk,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22107,'Modified_Str_Boots','Modified Str Boots','Armor',20,600,25,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,99,true,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAtk,7*(.@r/3); if(readparam(bStr)>=120) bonus bBaseAtk,50;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_kagerouoboro`,`job_rebellion`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22108,'Modified_Int_Boots','Modified Int Boots','Armor',20,600,25,true,true,true,99,true,'.@r = getrefine(); bonus bMdef,5; bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMatk,10*(.@r/3); if(readparam(bInt)>=120) bonus bMatk,60;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_kagerouoboro`,`job_rebellion`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22109,'Modified_Agi_Boots','Modified Agi Boots','Armor',20,600,25,true,true,true,99,true,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAspdRate,3*(.@r/3); if(readparam(bAgi)>=120) bonus bAspd,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_kagerouoboro`,`job_rebellion`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22110,'Modified_Vit_Boots','Modified Vit Boots','Armor',20,600,25,true,true,true,99,true,'.@r = getrefine(); bonus bMaxHP,300+(300*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); if(readparam(bVit)>=120) bonus bMaxHPrate,8;'); @@ -5029,7 +5029,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22172,'Gray_Wing_Boots','Gray Wing Boots','Armor',20,500,15,true,100,true,'.@r = getrefine(); bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bMdef,15; bonus bLongAtkRate,2; bonus bCritAtkRate,2; skill "TF_HIDING",1; if (.@r>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bLongAtkRate,3; bonus bCritAtkRate,3; } if (.@r>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bLongAtkRate,5; bonus bCritAtkRate,5; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`script`) VALUES (22173,'Beginner\'s_Boots','Beginner\'s Boots','Armor',20,10,1,true,100,'bonus bMaxHP,300; bonus bMaxSP,50; bonus bFlee,15; bonus bHPrecovRate,10; bonus bSPrecovRate,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22189,'Pilgrim_Shoes','Pilgrim Shoes','Armor',20,500,15,true,100,true,'.@r = getrefine(); bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bDef,50*getskilllv("AB_SECRAMENT"); bonus bMdef,15; bonus bAspdRate,4*getskilllv("AB_CANTO"); bonus2 bSkillCooldown,"AB_PRAEFATIO",-1000; bonus bDelayrate,-6*getskilllv("AB_PRAEFATIO"); bonus2 bSubRace,RC_DemiHuman,2*getskilllv("AB_SECRAMENT"); bonus2 bSubRace,RC_Player_Human,2*getskilllv("AB_SECRAMENT"); bonus bHealPower,5*getskilllv("AB_HIGHNESSHEAL"); if (.@r>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bUseSPrate,-3; } if (.@r>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bUseSPrate,-5; }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_gunslinger`,`job_hunter`,`job_knight`,`job_merchant`,`job_rebellion`,`job_rogue`,`job_stargladiator`,`job_swordman`,`job_taekwon`,`job_thief`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22190,'Illusion_Boots','Illusion Boots','Armor',600,16,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,100,true,'.@r = getrefine(); bonus bCritical,(5*(.@r/3)); bonus bAspdRate,.@r;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22190,'Illusion_Boots','Illusion Boots','Armor',600,16,1,true,100,true,'.@r = getrefine(); bonus bCritical,(5*(.@r/3)); bonus bAspdRate,.@r;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22192,'Illusion_Goibne\'s_Greaves','Illusion Goibne\'s Greaves','Armor',1200,42,1,true,false,false,true,130,true,'.@r = getrefine(); bonus bMaxHPrate,5; bonus bMaxSPrate,5; if (.@r >= 7) { bonus bVariableCastrate,-5; if (.@r >= 9) { bonus bLongAtkRate,10; } }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22195,'Booster_Shoes','Booster Shoes','Armor',20,800,30,1,true,100,true,'.@r = getrefine(); bonus bMdef,10; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bSubRace,RC_Player_Human,5; if (.@r>=7) { if (readparam(bStr)>=125) bonus bBaseAtk,90; if (readparam(bAgi)>=125) bonus bAspd,2; if (readparam(bVit)>=125) bonus bMaxHPrate,12; if (readparam(bInt)>=125) bonus bMatk,120; if (readparam(bDex)>=125) bonus bLongAtkRate,10; if (readparam(bLuk)>=125) bonus bCritAtkRate,20; } if (.@r>=9) { if (readparam(bStr)>=125) bonus bBaseAtk,90; if (readparam(bAgi)>=125) bonus bAspd,2; if (readparam(bVit)>=125) bonus bMaxHPrate,12; if (readparam(bInt)>=125) bonus bMatk,120; if (readparam(bDex)>=125) bonus bLongAtkRate,10; if (readparam(bLuk)>=125) bonus bCritAtkRate,20; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22196,'Illusion_Leg_A-type','Illusion Leg A-type','Armor',20,500,20,1,true,130,true,'.@r = getrefine(); bonus bMaxSP,200+(20*(.@r/2)); if (.@r >= 7) { bonus bLongAtkRate,5; }'); @@ -5265,11 +5265,11 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24220,'S_FireBolt_Armor','Fire Bolt Shadow Armor','Shadowgear',10,true,1,true,'.@r = getrefine(); if(.@r>=2) autobonus "{ bonus3 bAutoSpell,\\"MG_FIREBOLT\\",("+.@r+"/2),1000; }",(.@r*2)+100,100,BF_SHORT;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24221,'S_LightingBolt_Armor','Lightning Bolt Shadow Armor','Shadowgear',10,true,1,true,'.@r = getrefine(); if(.@r>=2) autobonus "{ bonus3 bAutoSpell,\\"MG_LIGHTNINGBOLT\\",("+.@r+"/2),1000; }",(.@r*2)+100,100,BF_SHORT;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24222,'S_EarthSpike_Armor','Earth Spike Shadow Armor','Shadowgear',10,true,1,true,'.@r = getrefine(); if(.@r>=2) autobonus "{ bonus3 bAutoSpell,\\"WZ_EARTHSPIKE\\",("+.@r+"/2),1000; }",(.@r*2)+100,100,BF_SHORT;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24223,'S_Enhance_Force_Weapon','Enhanced Force Shadow Weapon','Shadowgear',10,true,true,true,true,100,true,'bonus bAtk2,10; bonus2 bAddClass,Class_All,(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24223,'S_Enhance_Force_Weapon','Enhanced Force Shadow Weapon','Shadowgear',10,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,100,true,'bonus bAtk2,10; bonus2 bAddClass,Class_All,(getrefine()/2);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24224,'S_Force_Weapon','Force Shadow Weapon','Shadowgear',10,true,70,true,'.@r = getrefine(); bonus2 bAddClass,Class_All,(.@r<7)?1:((.@r<9)?2:3);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24225,'S_Force_Earring','Force Shadow Earring','Shadowgear',10,true,70,true,'.@r = getrefine(); bonus bAtk2,(5+.@r); if(.@r>=7) bonus bMaxHPrate,1; if(.@r>=9) bonus bMaxSPrate,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24226,'S_Force_Pendant','Force Shadow Pendant','Shadowgear',10,true,70,true,'.@r = getrefine(); bonus bAtk2,(5+.@r); if(.@r>=7) bonus bMaxHPrate,1; if(.@r>=9) bonus bMaxSPrate,1;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24227,'S_Enhance_Spirit_Weapon','Enhanced Soul Shadow Weapon','Shadowgear',10,true,true,true,true,100,true,'bonus bMatk,10; bonus bMatkRate,(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24227,'S_Enhance_Spirit_Weapon','Enhanced Soul Shadow Weapon','Shadowgear',10,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,100,true,'bonus bMatk,10; bonus bMatkRate,(getrefine()/2);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24228,'S_Spirit_Weapon','Soul Shadow Weapon','Shadowgear',10,true,70,true,'.@r = getrefine(); bonus bMatkRate,(.@r<7)?1:((.@r<9)?2:3);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24229,'S_Spirit_Earring','Soul Shadow Earring','Shadowgear',10,true,70,true,'.@r = getrefine(); bonus bMatk,(5+.@r); if(.@r>=7) bonus bMaxHPrate,1; if(.@r>=9) bonus bMatkRate,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24230,'S_Spirit_Pendant','Soul Shadow Pendant','Shadowgear',10,true,70,true,'.@r = getrefine(); bonus bMatk,(5+.@r); if(.@r>=7) bonus bMaxHPrate,1; if(.@r>=9) bonus bMatkRate,1;'); @@ -5328,8 +5328,8 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`job_novice`, REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`job_gunslinger`,`job_rebellion`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24283,'Gunslinger_Shadow_Weapon','Gunslinger Shadow Weapon','Shadowgear',true,true,true,1,true,'.@r = getrefine(); bonus2 bIgnoreDefClassRate,Class_Normal,3*(getskilllv("GS_SNAKEEYE")+.@r); .@aspd = 1; if (.@r>=7) { .@aspd += 1; bonus bLongAtkRate,3; } if (.@r>=9) { .@aspd += 1; bonus bLongAtkRate,5; bonus bAspd,.@aspd; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`job_soullinker`,`job_stargladiator`,`job_taekwon`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24284,'Taekwondo_Shadow_Weapon','Taekwondo Shadow Weapon','Shadowgear',true,true,true,true,1,true,'.@r = getrefine(); bonus bAspd,1; bonus2 bAddClass,Class_All,.@r; bonus bMatkRate,.@r; if (.@r>=7) { bonus bMaxHP,1000; bonus bMaxSP,200; bonus bAspd,1; } if (.@r>=9) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bAspd,1; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`job_kagerouoboro`,`job_ninja`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24285,'Ninja_Shadow_Weapon','Ninja Shadow Weapon','Shadowgear',true,true,true,1,true,'.@r = getrefine(); .@val = 3; bonus2 bSkillCooldown,"KO_BAKURETSU",-2000; bonus bMatk,(3*getskilllv("NJ_NINPOU")); if (.@r >= 7) { .@val += 3; if (.@r >= 9) { .@val += 4; } } bonus2 bAddClass,Class_Normal,.@val; bonus bMatkRate,.@val;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24286,'Doram_Magical_Shadow_Weapon','Doram Magical Shadow Weapon','Shadowgear',true,true,true,true,true,1,true,'.@r = getrefine(); bonus bVariableCastrate,-(5+.@r); if (getskilllv("SU_POWEROFLAND")==1) bonus bFixedCast,-100; if (getskilllv("SU_POWEROFSEA")==1) { bonus bUseSPrate,-3; } if (.@r>=7) bonus bMatkRate,5; if (.@r>=9) bonus bMatkRate,5;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24287,'Doram_Physical_Shadow_Weapon','Doram Physical Shadow Weapon','Shadowgear',true,true,true,true,true,1,true,'.@r = getrefine(); bonus bLongAtkRate,.@r; if (getskilllv("SU_POWEROFLIFE")==1) bonus bAspd,1; if (.@r>=7) bonus bFlee2,2; if (.@r>=9) bonus bFlee2,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`job_summoner`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24286,'Doram_Magical_Shadow_Weapon','Doram Magical Shadow Weapon','Shadowgear',true,true,1,true,'.@r = getrefine(); bonus bVariableCastrate,-(5+.@r); if (getskilllv("SU_POWEROFLAND")==1) bonus bFixedCast,-100; if (getskilllv("SU_POWEROFSEA")==1) { bonus bUseSPrate,-3; } if (.@r>=7) bonus bMatkRate,5; if (.@r>=9) bonus bMatkRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`job_summoner`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24287,'Doram_Physical_Shadow_Weapon','Doram Physical Shadow Weapon','Shadowgear',true,true,1,true,'.@r = getrefine(); bonus bLongAtkRate,.@r; if (getskilllv("SU_POWEROFLIFE")==1) bonus bAspd,1; if (.@r>=7) bonus bFlee2,2; if (.@r>=9) bonus bFlee2,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24288,'Rune_Knight_Shadow_Weapon','Rune Knight Shadow Weapon','Shadowgear',10,true,true,true,true,true,99,true,'.@r = getrefine(); bonus2 bSkillAtk,"RK_SONICWAVE",20+.@r*5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_crusader`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24289,'Royal_Guard_Shadow_Weapon','Royal Guard Shadow Weapon','Shadowgear',10,true,true,true,true,true,99,true,'.@r = getrefine(); bonus2 bSkillAtk,"LG_CANNONSPEAR",20+.@r*5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24290,'Mechanic_Shadow_Weapon','Mechanic Shadow Weapon','Shadowgear',10,true,true,true,true,true,99,true,'.@r = getrefine(); bonus2 bSkillAtk,"NC_VULCANARM",20+.@r*5;'); @@ -5356,10 +5356,10 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24311,'Ranger_Shadow_Shield','Ranger Shadow Shield','Shadowgear',10,true,true,true,true,true,99,true,'.@r = getrefine(); bonus2 bSkillUseSPrate,"RA_AIMEDBOLT",(20+(5*.@r));'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24312,'Minstrel_Shadow_Shield','Minstrel Shadow Shield','Shadowgear',10,true,true,true,true,'Male',true,99,true,'.@r = getrefine(); bonus bMaxSPrate,3; bonus bMdef,.@r*(getskilllv("MI_HARMONIZE")+getskilllv("MI_RUSH_WINDMILL")+getskilllv("MI_ECHOSONG"))/5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24313,'Wanderer_Shadow_Shield','Wanderer Shadow Shield','Shadowgear',10,true,true,true,true,'Female',true,99,true,'.@r = getrefine(); bonus bMaxSPrate,3; bonus bMdef,.@r*(getskilllv("WA_SWING_DANCE")+getskilllv("WA_SYMPHONY_OF_LOVER")+getskilllv("WA_MOONLIT_SERENADE"))/5;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_ninja`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24314,'Ninja_Shadow_Shield','Ninja Shadow Shield','Shadowgear',10,true,true,1,true,'.@r = getrefine(); bonus bAspd,1; bonus bBaseAtk,(3*getskilllv("NJ_TOBIDOUGU")); autobonus3 "{ bonus bAspd,1; }",1000,50000,"NJ_NEN"; .@val = 4 * .@r; if (.@r >= 7) { .@val += 10; if (.@r >= 9) { .@val += 10; } } bonus2 bIgnoreDefClassRate,Class_Normal,.@val; bonus2 bIgnoreMdefClassRate,Class_Normal,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_kagerouoboro`,`job_ninja`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24314,'Ninja_Shadow_Shield','Ninja Shadow Shield','Shadowgear',10,true,true,true,1,true,'.@r = getrefine(); bonus bAspd,1; bonus bBaseAtk,(3*getskilllv("NJ_TOBIDOUGU")); autobonus3 "{ bonus bAspd,1; }",1000,50000,"NJ_NEN"; .@val = 4 * .@r; if (.@r >= 7) { .@val += 10; if (.@r >= 9) { .@val += 10; } } bonus2 bIgnoreDefClassRate,Class_Normal,.@val; bonus2 bIgnoreMdefClassRate,Class_Normal,.@val;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_soullinker`,`job_stargladiator`,`job_taekwon`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24315,'Taekwon_Shadow_Shield','Taekwon Shadow Shield','Shadowgear',10,true,true,true,true,1,true,'.@r = getrefine(); .@val = 3; if (.@r >= 7) { .@val += 2; if (.@r >= 9) { .@val += 3; } } bonus2 bIgnoreDefClassRate,Class_Normal,(3*(getskilllv("TK_HPTIME")+.@r)); bonus2 bIgnoreMdefClassRate,Class_Normal,(3*(getskilllv("TK_SPTIME")+.@r)); bonus2 bAddClass,Class_All,.@val; bonus bMatkRate,.@val;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24316,'Doram_Physical_Shadow_Shield','Doram Physical Shadow Shield','Shadowgear',10,true,true,true,true,true,1,true,'.@r = getrefine(); bonus2 bAddClass,Class_All,3; autobonus3 "{ bonus bAspd,1; }",1000,50000,"SU_ARCLOUSEDASH"; bonus2 bSkillCooldown,"SU_LUNATICCARROTBEAT",-(.@r*200); if (.@r>=7) bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",5; if (.@r>=9) bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",5;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24317,'Doram_Magical_Shadow_Shield','Doram Magical Shadow Shield','Shadowgear',10,true,true,true,true,true,1,true,'.@r = getrefine(); bonus bMatkRate,3; autobonus3 "{ bonus2 bSPRegenRate,5,5000; }",1000,30000,"SU_BUNCHOFSHRIMP"; bonus2 bSkillCooldown,"SU_CN_METEOR",-(.@r*100); if (.@r>=7) bonus2 bSkillAtk,"SU_CN_METEOR",5; if (.@r>=9) bonus2 bSkillAtk,"SU_CN_METEOR",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_summoner`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24316,'Doram_Physical_Shadow_Shield','Doram Physical Shadow Shield','Shadowgear',10,true,true,1,true,'.@r = getrefine(); bonus2 bAddClass,Class_All,3; autobonus3 "{ bonus bAspd,1; }",1000,50000,"SU_ARCLOUSEDASH"; bonus2 bSkillCooldown,"SU_LUNATICCARROTBEAT",-(.@r*200); if (.@r>=7) bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",5; if (.@r>=9) bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_summoner`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24317,'Doram_Magical_Shadow_Shield','Doram Magical Shadow Shield','Shadowgear',10,true,true,1,true,'.@r = getrefine(); bonus bMatkRate,3; autobonus3 "{ bonus2 bSPRegenRate,5,5000; }",1000,30000,"SU_BUNCHOFSHRIMP"; bonus2 bSkillCooldown,"SU_CN_METEOR",-(.@r*100); if (.@r>=7) bonus2 bSkillAtk,"SU_CN_METEOR",5; if (.@r>=9) bonus2 bSkillAtk,"SU_CN_METEOR",5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_novice`,`job_supernovice`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24318,'Super_Novice_Shadow_Shield','Super Novice Shadow Shield','Shadowgear',10,true,true,true,1,true,'.@r = getrefine(); bonus bMaxHP,1000; bonus bMaxSP,200; bonus bAspdRate,(2*getskilllv("TF_DOUBLE")+.@r); bonus bVariableCastrate,-(2*getskilllv("AC_OWL")+.@r); if (.@r>=7) { bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; } if (.@r>=9) { bonus2 bAddClass,Class_All,3; bonus bMatkRate,3; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_gunslinger`,`job_rebellion`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24319,'Gunslinger_Shadow_Shield','Gunslinger Shadow Shield','Shadowgear',10,true,true,true,1,true,'.@r = getrefine(); bonus bCritAtkRate,5; bonus bCritical,(getskilllv("GS_SINGLEACTION")*2)+.@r; if (.@r>=7) bonus bCritAtkRate,2; if (.@r>=9) bonus bCritAtkRate,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24320,'S_Hasty_Shoes_II','Hasty Shadow Shoes II','Shadowgear',true,1,true,'.@val = 1; if (getrefine() >= 7) { .@val += 1; } bonus bFlee,5; bonus2 bAddClass,Class_All,.@val; bonus bMatkRate,.@val;'); @@ -5444,20 +5444,20 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_sha REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`script`) VALUES (24399,'S_Immune_Athena_Shield','Immune Athena Shadow Shield','Shadowgear',true,1,true,'bonus bDef,50+20*(getrefine()/2);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24400,'S_Hard_Champion_Shoes','Hard Champion Shadow Shoes','Shadowgear',true,1,true,'.@val = getrefine()/2; bonus bMaxHP,200; bonus bMaxSP,100; bonus bMaxHPrate,.@val; bonus bMaxSPrate,.@val;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24401,'S_Kingbird_Ancient_Armor','Kingbird Ancient Shadow Armor','Shadowgear',true,1,true,'.@r = getrefine(); bonus bBaseAtk,15; bonus bLongAtkRate,.@r/2; if (.@r >= 7) { bonus bHit,30; } else { bonus bHit,15; }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_rebellion`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24402,'Rebellion_Shadow_Armor','Rebellion Shadow Armor','Shadowgear',10,true,true,100,true,'.@r = getrefine(); bonus2 bSkillCooldown,"RL_HEAT_BARREL",-1000*(1+.@r/2);'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_kagerouoboro`,`gender`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24403,'Kagerou_Shadow_Armor','Kagerou Shadow Armor','Shadowgear',10,true,'Male',true,100,true,'.@r = getrefine(); bonus2 bSkillAtk,"KO_HUUMARANKA",20+.@r*5;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_kagerouoboro`,`gender`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24404,'Oboro_Shadow_Armor','Oboro Shadow Armor','Shadowgear',10,true,'Female',true,100,true,'.@r = getrefine(); bonus2 bSkillAtk,"NJ_KOUENKA",20+.@r*5; bonus2 bSkillAtk,"NJ_HYOUSENSOU",20+.@r*5; bonus2 bSkillAtk,"NJ_HUUJIN",20+.@r*5;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_rebellion`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24405,'Rebellion_Shadow_Shoes','Rebellion Shadow Shoes','Shadowgear',10,true,true,100,true,'.@r = getrefine(); bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",20+.@r*5;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_kagerouoboro`,`gender`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24406,'Kagerou_Shadow_Shoes','Kagerou Shadow Shoes','Shadowgear',10,true,'Male',true,100,true,'.@r = getrefine(); bonus2 bSkillAtk,"KO_HAPPOKUNAI",20+.@r*5;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_kagerouoboro`,`gender`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24407,'Oboro_Shadow_Shoes','Oboro Shadow Shoes','Shadowgear',10,true,'Female',true,100,true,'.@r = getrefine(); bonus2 bSkillCooldown,"KO_ZANZOU",-1000*(1+.@r/2);'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24408,'Doram_Physical_Shadow_Armor','Doram Physical Shadow Armor','Shadowgear',10,true,true,true,true,true,100,true,'.@r = getrefine(); bonus2 bSkillAtk,"SU_PICKYPECK",20; bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",.@r*3;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24409,'Doram_Physical_Shadow_Shoes','Doram Physical Shadow Shoes','Shadowgear',10,true,true,true,true,true,100,true,'.@r = getrefine(); bonus2 bSkillCooldown,"SU_HISS",-3000*(1+.@r/2);'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24410,'Doram_Magical_Shadow_Armor','Doram Magical Shadow Armor','Shadowgear',10,true,true,true,true,true,100,true,'.@r = getrefine(); bonus2 bSkillAtk,"SU_CN_METEOR",20; bonus2 bSkillAtk,"SU_SV_STEMSPEAR",.@r*3;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24411,'Doram_Magical_Shadow_Shoes','Doram Magical Shadow Shoes','Shadowgear',10,true,true,true,true,true,100,true,'.@r = getrefine(); bonus2 bSkillCooldown,"SU_CHATTERING",-3000*(1+.@r/2);'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_stargladiator`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24412,'Star_Emperor_Shadow_Armor','Star Emperor Shadow Armor','Shadowgear',10,true,true,100,true,'.@r = getrefine(); bonus2 bSkillAtk,"SJ_NEWMOONKICK",20; bonus2 bSkillAtk,"SJ_FULLMOONKICK",.@r*3;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_stargladiator`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24413,'Star_Emperor_Shadow_Shoes','Star Emperor Shadow Shoes','Shadowgear',10,true,true,100,true,'.@r = getrefine(); bonus2 bSkillCooldown,"SJ_DOCUMENT",-3000*(1+.@r/2);'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_soullinker`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24414,'Soul_Reaper_Shadow_Armor','Soul Reaper Shadow Armor','Shadowgear',10,true,true,100,true,'.@r = getrefine(); bonus2 bSkillAtk,"SP_SWHOO",20; bonus2 bSkillAtk,"SP_SPA",.@r*3;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_soullinker`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24415,'Soul_Reaper_Shadow_Shoes','Soul Reaper Shadow Shoes','Shadowgear',10,true,true,100,true,'.@r = getrefine(); bonus2 bSkillCooldown,"SP_SOULREAPER",-3000-1000*(.@r/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_gunslinger`,`job_rebellion`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24402,'Rebellion_Shadow_Armor','Rebellion Shadow Armor','Shadowgear',10,true,true,true,100,true,'.@r = getrefine(); bonus2 bSkillCooldown,"RL_HEAT_BARREL",-1000*(1+.@r/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_kagerouoboro`,`job_ninja`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24403,'Kagerou_Shadow_Armor','Kagerou Shadow Armor','Shadowgear',10,true,true,true,100,true,'.@r = getrefine(); bonus2 bSkillAtk,"KO_HUUMARANKA",20+.@r*5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_kagerouoboro`,`job_ninja`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24404,'Oboro_Shadow_Armor','Oboro Shadow Armor','Shadowgear',10,true,true,true,100,true,'.@r = getrefine(); bonus2 bSkillAtk,"NJ_KOUENKA",20+.@r*5; bonus2 bSkillAtk,"NJ_HYOUSENSOU",20+.@r*5; bonus2 bSkillAtk,"NJ_HUUJIN",20+.@r*5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_gunslinger`,`job_rebellion`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24405,'Rebellion_Shadow_Shoes','Rebellion Shadow Shoes','Shadowgear',10,true,true,true,100,true,'.@r = getrefine(); bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",20+.@r*5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_kagerouoboro`,`job_ninja`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24406,'Kagerou_Shadow_Shoes','Kagerou Shadow Shoes','Shadowgear',10,true,true,true,100,true,'.@r = getrefine(); bonus2 bSkillAtk,"KO_HAPPOKUNAI",20+.@r*5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_kagerouoboro`,`job_ninja`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24407,'Oboro_Shadow_Shoes','Oboro Shadow Shoes','Shadowgear',10,true,true,true,100,true,'.@r = getrefine(); bonus2 bSkillCooldown,"KO_ZANZOU",-1000*(1+.@r/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_summoner`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24408,'Doram_Physical_Shadow_Armor','Doram Physical Shadow Armor','Shadowgear',10,true,true,100,true,'.@r = getrefine(); bonus2 bSkillAtk,"SU_PICKYPECK",20; bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",.@r*3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_summoner`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24409,'Doram_Physical_Shadow_Shoes','Doram Physical Shadow Shoes','Shadowgear',10,true,true,100,true,'.@r = getrefine(); bonus2 bSkillCooldown,"SU_HISS",-3000*(1+.@r/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_summoner`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24410,'Doram_Magical_Shadow_Armor','Doram Magical Shadow Armor','Shadowgear',10,true,true,100,true,'.@r = getrefine(); bonus2 bSkillAtk,"SU_CN_METEOR",20; bonus2 bSkillAtk,"SU_SV_STEMSPEAR",.@r*3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_summoner`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24411,'Doram_Magical_Shadow_Shoes','Doram Magical Shadow Shoes','Shadowgear',10,true,true,100,true,'.@r = getrefine(); bonus2 bSkillCooldown,"SU_CHATTERING",-3000*(1+.@r/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_stargladiator`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24412,'Star_Emperor_Shadow_Armor','Star Emperor Shadow Armor','Shadowgear',10,true,true,true,true,true,100,true,'.@r = getrefine(); bonus2 bSkillAtk,"SJ_NEWMOONKICK",20; bonus2 bSkillAtk,"SJ_FULLMOONKICK",.@r*3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_stargladiator`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24413,'Star_Emperor_Shadow_Shoes','Star Emperor Shadow Shoes','Shadowgear',10,true,true,true,true,true,100,true,'.@r = getrefine(); bonus2 bSkillCooldown,"SJ_DOCUMENT",-3000*(1+.@r/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_soullinker`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24414,'Soul_Reaper_Shadow_Armor','Soul Reaper Shadow Armor','Shadowgear',10,true,true,true,true,true,100,true,'.@r = getrefine(); bonus2 bSkillAtk,"SP_SWHOO",20; bonus2 bSkillAtk,"SP_SPA",.@r*3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_soullinker`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (24415,'Soul_Reaper_Shadow_Shoes','Soul Reaper Shadow Shoes','Shadowgear',10,true,true,true,true,true,100,true,'.@r = getrefine(); bonus2 bSkillCooldown,"SP_SOULREAPER",-3000-1000*(.@r/2);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (24416,'S_Temporal_Transcendent_Weapon','Temporal Transcendent Shadow Weapon','Shadowgear',true,1,true,100,true,true,true,true,true,true,true,'bonus bCritAtkRate,7;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (24417,'S_Temporal_Transcendent_Armor','Temporal Transcendent Shadow Armor','Shadowgear',true,1,true,100,true,true,true,true,true,true,true,'bonus bAspd,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shield`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (24418,'S_Temporal_Transcendent_Shield','Temporal Transcendent Shadow Shield','Shadowgear',true,1,true,100,true,true,true,true,true,true,true,'bonus bVariableCastrate,-10;'); @@ -5467,16 +5467,16 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_sha REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24423,'S_Tempest_Weapon','Tempest Shadow Weapon','Shadowgear',true,1,true,'bonus2 bIgnoreDefClassRate,Class_Normal,5+(getrefine()/2);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24424,'S_Tempest_Armor','Tempest Shadow Armor','Shadowgear',true,1,true,'bonus2 bIgnoreDefClassRate,Class_Normal,5+(getrefine()/2);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26007,'Illusion_Spectral_Spear','Illusion Spectral Spear','Weapon','2hSpear',20,2000,240,3,1,true,true,true,true,true,4,99,true,'.@r = getrefine(); .@val = 3*(.@r/2); bonus2 bAddEle,Ele_Dark,(20+.@val); bonus2 bAddRace,RC_Demon,(20+.@val); bonus2 bAddRace,RC_Undead,(20+.@val); bonus2 bSubRace,RC_Demon,(10+.@val); bonus2 bSubEle,Ele_Undead,(10+.@val); bonus2 bSubEle,Ele_Dark,(10+.@val); bonus bHPGainValue,50; bonus bSPGainValue,(.@r/2); bonus2 bAddEff2,Eff_Confusion,1000;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26016,'Royal_Knight\'s_Lance','Royal Knight\'s Lance','Weapon','2hSpear',20,1000,205,1,2,true,true,true,true,true,3,175,true,'.@r = getrefine(); bonus bLongAtkRate,3*(.@r/2); if (.@r>=7) bonus2 bAddClass,Class_All,5; if (.@r>=9) bonus2 bAddRace,RC_All,15;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (26100,'Paradise_Foxtail_Staff_II','Eden Group Foxtail Staff II','Weapon','Staff',20,135,165,1,true,true,true,true,true,2,40,100,true,true,true,true,true,true,true,'bonus bDex,4; bonus bInt,4; bonus bLongAtkRate,6;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (26101,'Paradise_Foxtail_Staff_III','Eden Group Foxtail Staff III','Weapon','Staff',20,150,195,1,true,true,true,true,true,3,60,100,true,true,true,true,true,true,true,'bonus bDex,5; bonus bInt,5; bonus bLongAtkRate,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26016,'Royal_Knight\'s_Lance','Royal Knight\'s Lance','Weapon','2hSpear',20,1000,205,1,2,true,true,true,true,true,true,true,3,175,true,'.@r = getrefine(); bonus bLongAtkRate,3*(.@r/2); if (.@r>=7) bonus2 bAddClass,Class_All,5; if (.@r>=9) bonus2 bAddRace,RC_All,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`job_summoner`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (26100,'Paradise_Foxtail_Staff_II','Eden Group Foxtail Staff II','Weapon','Staff',20,135,165,1,true,true,2,40,100,true,true,true,true,true,true,true,'bonus bDex,4; bonus bInt,4; bonus bLongAtkRate,6;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`job_summoner`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (26101,'Paradise_Foxtail_Staff_III','Eden Group Foxtail Staff III','Weapon','Staff',20,150,195,1,true,true,3,60,100,true,true,true,true,true,true,true,'bonus bDex,5; bonus bInt,5; bonus bLongAtkRate,7;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26107,'Elder_Staff','Elder Staff','Weapon','Staff',500,60,150,1,3,true,true,true,true,3,100,true,'.@r = getrefine(); .@bonus = 10; if (.@r>=7) { .@bonus += 5; } if (.@r>=9) { .@bonus += 10; } bonus bHealPower,.@bonus;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_sage`,`job_wizard`,`class_upper`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26109,'Illusion_Staff_of_Bordeaux','Illusion Staff of Bordeaux','Weapon','Staff',20,500,60,180,1,2,true,true,true,true,true,true,true,4,99,true,'bonus bInt,3; bonus bDex,2; if (getskilllv("SA_DRAGONOLOGY") == 5) { .@val = getrefine()/3; bonus bMatkRate,(5+.@val); bonus bUseSPrate,(-15-(5*.@val)); }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_mage`,`job_sage`,`job_wizard`,`class_upper`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26109,'Illusion_Staff_of_Bordeaux','Illusion Staff of Bordeaux','Weapon','Staff',20,500,60,180,1,2,true,true,true,true,true,true,4,99,true,'bonus bInt,3; bonus bDex,2; if (getskilllv("SA_DRAGONOLOGY") == 5) { .@val = getrefine()/3; bonus bMatkRate,(5+.@val); bonus bUseSPrate,(-15-(5*.@val)); }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_novice`,`job_priest`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26110,'CandyCaneRod','Candy Cane Rod','Weapon','Staff',20,500,10,140,1,2,true,true,true,true,true,true,true,true,true,true,4,99,true,'bonus bInt,2; bonus bFlee,2*getrefine(); if(getrefine()>= 10) { bonus bFlee2,10; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26138,'Hellfire_Staff','Hellfire Staff','Weapon','2hStaff',20,800,110,180,1,2,true,true,true,true,true,true,true,true,4,175,true,'.@r = getrefine; bonus bInt,5; bonus bMatk,15*(.@r/2); bonus bUnbreakableWeapon; if (.@r>=9) .@val = 15; else if (.@r>=7) .@val = 5; bonus2 bMagicAtkEle,Ele_Fire,.@val; bonus2 bMagicAtkEle,Ele_Earth,.@val;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_priest`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26139,'Icicle_Staff','Icicle Staff','Weapon','2hStaff',20,800,110,180,1,2,true,true,true,true,true,true,true,true,4,175,true,'.@r = getrefine; bonus bInt,5; bonus bMatk,15*(.@r/2); bonus bUnbreakableWeapon; if (.@r>=9) .@val = 15; else if (.@r>=7) .@val = 5; bonus2 bMagicAtkEle,Ele_Water,.@val; bonus2 bMagicAtkEle,Ele_Holy,.@val;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_acolyte`,`job_mage`,`job_monk`,`job_novice`,`job_priest`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26151,'Rutilus_Stick-OS','Rutilus Stick-OS','Weapon','Staff',20,900,80,175,1,2,true,true,true,true,true,true,true,true,true,true,4,130,true,'.@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bMagicAddEle,Ele_Neutral,5; bonus2 bMagicAddEle,Ele_Earth,5; if (.@r >= 7) { bonus bVariableCastrate,-7; if (.@r >= 9) { autobonus "{ bonus2 bMagicAtkEle,Ele_Fire,30; }",5,10000,BF_MAGIC; /* unknown rate */ if (.@r >= 11) { bonus bDelayrate,-10; } } }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26155,'Meowmeow_Foxtail','Meowmeow Foxtail','Weapon','Staff',20,1100,300,300,1,2,true,true,true,true,true,4,100,true,'.@r = getrefine(); bonus bMatk,10*(.@r/2); bonus bBaseAtk,10*(.@r/2); bonus2 bAddClass,Class_All,2*(.@r/3); bonus bMatkRate,2*(.@r/3); if (.@r >= 7) { bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",15; bonus2 bSkillAtk,"SU_SV_STEMSPEAR",15; if (.@r >= 9) { bonus bVariableCastrate,-10; bonus bAspdRate,10; if (.@r >= 11) { bonus2 bSkillAtk,"SU_PICKYPECK",15; bonus2 bSkillAtk,"SU_CN_METEOR",15; } } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26151,'Rutilus_Stick-OS','Rutilus Stick-OS','Weapon','Staff',20,900,80,175,1,2,true,4,130,true,'.@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bMagicAddEle,Ele_Neutral,5; bonus2 bMagicAddEle,Ele_Earth,5; if (.@r >= 7) { bonus bVariableCastrate,-7; if (.@r >= 9) { autobonus "{ bonus2 bMagicAtkEle,Ele_Fire,30; }",5,10000,BF_MAGIC; /* unknown rate */ if (.@r >= 11) { bonus bDelayrate,-10; } } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_summoner`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26155,'Meowmeow_Foxtail','Meowmeow Foxtail','Weapon','Staff',20,1100,300,300,1,2,true,true,4,100,true,'.@r = getrefine(); bonus bMatk,10*(.@r/2); bonus bBaseAtk,10*(.@r/2); bonus2 bAddClass,Class_All,2*(.@r/3); bonus bMatkRate,2*(.@r/3); if (.@r >= 7) { bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",15; bonus2 bSkillAtk,"SU_SV_STEMSPEAR",15; if (.@r >= 9) { bonus bVariableCastrate,-10; bonus bAspdRate,10; if (.@r >= 11) { bonus2 bSkillAtk,"SU_PICKYPECK",15; bonus2 bSkillAtk,"SU_CN_METEOR",15; } } }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26158,'Crimson_Rose_Stick','Crimson Rose Stick','Weapon','Staff',20,700,100,180,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Fire,5; bonus2 bMagicAtkEle,Ele_Dark,5; if (.@r >= 9) { bonus2 bSkillAtk,"WL_HELLINFERNO",30; } if (.@r >= 11) { bonus2 bSkillCooldown,"WL_CRIMSONROCK",-1000; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26159,'Psychic_Spear_Rod','Psychic Spear Rod','Weapon','Staff',20,800,120,180,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Wind,5; bonus2 bMagicAtkEle,Ele_Neutral,5; if (.@r >= 9) { bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",30; } if (.@r >= 11) { bonus2 bSkillCooldown,"SO_VARETYR_SPEAR",-2000; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26160,'Dust_Grave','Dust Grave','Weapon','Staff',20,800,120,180,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); if (.@r >= 11) .@val = 50; else if (.@r >= 9) .@val = 30; bonus2 bSkillAtk,"SO_DIAMONDDUST",.@val; bonus2 bSkillAtk,"SO_EARTHGRAVE",.@val; bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Water,5; bonus2 bMagicAtkEle,Ele_Earth,5;'); @@ -5493,17 +5493,17 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`pr REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28008,'Katar_of_Vicious_Mind','Katar of Vicious Mind','Weapon','Katar',20,1800,180,1,1,true,true,true,4,160,true,'bonus bAtk,pow(min(getrefine(),15),2);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28010,'Juliette_D._Rachel','Juliette D. Rachel','Weapon','Katar',20,2500,300,1,2,true,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus2 bAddClass,Class_All,(.@r/2); bonus bAspdRate,.@r; bonus bUnbreakableWeapon;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28011,'Unity_Katar','Unity Katar','Weapon','Katar',20,650,123,1,1,true,true,true,3,1,true,100,true,true,true,true,true,true,'bonus bBaseAtk,pow(getrefine(),2)*125/100;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_upper`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28022,'Illusion_Infiltrator','Illusion Infiltrator','Weapon','Katar',1500,200,1,2,true,true,true,true,true,true,true,4,100,true,'bonus2 bAddRace,RC_DemiHuman,60; bonus2 bAddRace,RC_Player_Human,60; bonus bDef,3; .@flee = 5; .@flee2 = 2; if (getrefine() >= 9) { .@flee += 5; .@flee2 += 2; bonus2 bAddClass,Class_All,5; } bonus bFlee,.@flee; bonus bFlee2,.@flee2;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_upper`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28023,'Illusion_Sharpened_Legbone_of_Ghoul','Illusion Sharpened Legbone of Ghoul','Weapon','Katar',1700,220,1,2,true,true,true,true,true,true,true,3,100,true,'autobonus "{ bonus bDefEle,Ele_Undead; sc_start SC_ENDURE,6000,1; }",40,6000,BF_WEAPON|BF_SHORT,"{ active_transform 1036,6000; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28022,'Illusion_Infiltrator','Illusion Infiltrator','Weapon','Katar',1500,200,1,2,true,true,true,true,true,4,100,true,'bonus2 bAddRace,RC_DemiHuman,60; bonus2 bAddRace,RC_Player_Human,60; bonus bDef,3; .@flee = 5; .@flee2 = 2; if (getrefine() >= 9) { .@flee += 5; .@flee2 += 2; bonus2 bAddClass,Class_All,5; } bonus bFlee,.@flee; bonus bFlee2,.@flee2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28023,'Illusion_Sharpened_Legbone_of_Ghoul','Illusion Sharpened Legbone of Ghoul','Weapon','Katar',1700,220,1,2,true,true,true,true,true,3,100,true,'autobonus "{ bonus bDefEle,Ele_Undead; sc_start SC_ENDURE,6000,1; }",40,6000,BF_WEAPON|BF_SHORT,"{ active_transform 1036,6000; }";'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28038,'Meuchler-OS','Meuchler-OS','Weapon','Katar',20,1300,190,1,2,true,true,true,4,130,true,'.@r = getrefine(); bonus2 bAddClass,Class_All,3; if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",15; if (.@r >= 11) { bonus2 bAddSize,Size_Small,20; bonus2 bAddSize,Size_Medium,20; } } }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28042,'Ripper_Cross','Ripper Cross','Weapon','Katar',20,1500,250,1,2,true,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus2 bAddClass,Class_All,5; bonus bLongAtkRate,.@r; if (.@r>=9) bonus2 bSkillAtk,"GC_ROLLINGCUTTER",30; if (.@r>=11) bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",20;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28044,'Agudo_Filo','Agudo Filo','Weapon','Katar',20,2000,270,1,2,true,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bCritAtkRate,5; bonus bBaseAtk,4*.@r; if (.@r>=9) bonus2 bAddSize,Size_All,15; if (.@r>=11) { bonus bUnbreakableWeapon; bonus2 bAddClass,Class_All,7; }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (28100,'Thanos_Axe','Thanos Axe','Weapon','2hAxe',10,4000,300,80,1,1,true,true,true,true,true,true,true,true,true,true,true,4,120,true,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000;','heal -1000,0;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28101,'Tornado_Axe','Tornado Axe','Weapon','2hAxe',30000,4000,320,1,1,true,true,true,true,true,true,true,true,true,true,true,4,100,true,'bonus bAtkEle,Ele_Wind; bonus2 bSkillCooldown,"NC_AXETORNADO",-1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (28100,'Thanos_Axe','Thanos Axe','Weapon','2hAxe',10,4000,300,80,1,1,true,true,true,true,true,true,true,true,4,120,true,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000;','heal -1000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28101,'Tornado_Axe','Tornado Axe','Weapon','2hAxe',30000,4000,320,1,1,true,true,true,true,true,true,true,true,true,true,4,100,true,'bonus bAtkEle,Ele_Wind; bonus2 bSkillCooldown,"NC_AXETORNADO",-1000;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28102,'Half_BF_Two_Handed_Axe1','Half BF Two Handed Axe1','Weapon','2hAxe',20,200,1,true,true,true,true,true,true,true,true,3,80,true,'bonus bStr,3; bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player_Human,30; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28103,'Ru_Blue_Axe_M','Blue Twohand Axe','Weapon','2hAxe',10,3000,330,1,1,true,true,true,true,true,true,3,1,true,'bonus bStr,5; bonus bVit,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28104,'Ru_Gold_Axe_M','Ru Gold Axe M','Weapon','2hAxe',3000,330,1,2,true,true,true,true,true,true,3,120,true,'bonus bStr,8; bonus bVit,8;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (28105,'Infinity_Axe','Infinity Axe','Weapon','2hAxe',10,500,265,1,1,true,true,true,true,true,true,true,true,true,true,true,4,100,true,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (28105,'Infinity_Axe','Infinity Axe','Weapon','2hAxe',10,500,265,1,1,true,true,true,true,true,true,true,true,4,100,true,100,true,true,true,true,true,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28106,'Crimson_Two-Handed_Axe','Crimson Two-Handed Axe','Weapon','2hAxe',20,2000,200,1,2,true,true,true,true,true,true,true,true,3,70,true,'.@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bUnbreakableWeapon;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28107,'Two_Handed_Axe_of_Vicious_Mind','Two Handed Axe of Vicious Mind','Weapon','2hAxe',20,2500,250,1,1,true,true,true,true,true,true,true,true,4,160,true,'bonus bAtk,pow(min(getrefine(),15),2); bonus bUnbreakableWeapon;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28110,'Unity_Two-Handed_Axe','Unity Two-Handed Axe','Weapon','2hAxe',20,1000,190,1,1,true,true,true,true,true,true,true,true,3,1,true,100,true,true,true,true,true,true,'bonus bBaseAtk,pow(getrefine(),2)*125/100;'); @@ -5515,16 +5515,16 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`pr REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28202,'Southern_Cross_R_','Southern Cross','Weapon','Grenade',2800000,2000,480,9,1,true,true,true,4,141,true,'bonus3 bAutoSpell,"GC_CROSSIMPACT",1,50;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28203,'Half_BF_Rifle1','Half BF Rifle1','Weapon','Rifle',50,9,true,true,true,true,3,80,true,'bonus bDex,2; bonus bHit,8; bonus bCritical,8; bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player_Human,30; bonus2 bVariableCastrate,"GS_TRACKING",-20; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`attack`,`range`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28204,'Half_BF_Shotgun1','Half BF Shotgun1','Weapon','Shotgun',100,9,true,true,true,true,3,80,true,'bonus bDex,2; bonus bSplashRange,1; bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player_Human,30; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; autobonus "{ bonus bBaseAtk,80; bonus2 bHPLossRate,100,1000; }",30,6000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; bonus bUnbreakableWeapon;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28223,'Just_Finish','Finisher','Weapon','Rifle',20,2000,200,9,2,true,true,true,3,120,true,'.@r = getrefine(); bonus bLongAtkRate,15; if (.@r >= 7) { bonus2 bSkillAtk,"RL_AM_BLAST",30; bonus2 bSkillAtk,"RL_MASS_SPIRAL",30; if (.@r >= 9) { bonus2 bSkillCooldown,"RL_AM_BLAST",-1000; } }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28224,'Dust_Fire','Dustfire','Weapon','Shotgun',20,1300,300,9,2,true,true,true,3,120,true,'.@r = getrefine(); bonus bSplashRange,1; bonus2 bAddEff,Eff_Blind,50; if (.@r >= 7) { bonus2 bSkillAtk,"RL_S_STORM",15; if (.@r >= 9) { bonus2 bSkillAtk,"RL_BANISHING_BUSTER",15; } }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28225,'Burning_Rose','Burning Rose','Weapon','Gatling',20,2500,200,9,2,true,true,true,3,120,true,'bonus bLongAtkRate,15; if (.@r >= 7) { bonus2 bSkillAtk,"RL_FIRE_RAIN",30; if (.@r >= 9) { bonus2 bSkillCooldown,"RL_FIRE_RAIN",-1000; } }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28226,'Revenger','Avenger','Weapon','Grenade',20,1800,350,9,2,true,true,true,3,120,true,'bonus bLongAtkRate,20; if (.@r >= 7) { bonus2 bSkillAtk,"RL_D_TAIL",15; if (.@r >= 9) { bonus2 bSkillCooldown,"RL_H_MINE",-1000; } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28223,'Just_Finish','Finisher','Weapon','Rifle',20,2000,200,9,2,true,true,3,120,true,'.@r = getrefine(); bonus bLongAtkRate,15; if (.@r >= 7) { bonus2 bSkillAtk,"RL_AM_BLAST",30; bonus2 bSkillAtk,"RL_MASS_SPIRAL",30; if (.@r >= 9) { bonus2 bSkillCooldown,"RL_AM_BLAST",-1000; } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28224,'Dust_Fire','Dustfire','Weapon','Shotgun',20,1300,300,9,2,true,true,3,120,true,'.@r = getrefine(); bonus bSplashRange,1; bonus2 bAddEff,Eff_Blind,50; if (.@r >= 7) { bonus2 bSkillAtk,"RL_S_STORM",15; if (.@r >= 9) { bonus2 bSkillAtk,"RL_BANISHING_BUSTER",15; } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28225,'Burning_Rose','Burning Rose','Weapon','Gatling',20,2500,200,9,2,true,true,3,120,true,'bonus bLongAtkRate,15; if (.@r >= 7) { bonus2 bSkillAtk,"RL_FIRE_RAIN",30; if (.@r >= 9) { bonus2 bSkillCooldown,"RL_FIRE_RAIN",-1000; } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28226,'Revenger','Avenger','Weapon','Grenade',20,1800,350,9,2,true,true,3,120,true,'bonus bLongAtkRate,20; if (.@r >= 7) { bonus2 bSkillAtk,"RL_D_TAIL",15; if (.@r >= 9) { bonus2 bSkillCooldown,"RL_H_MINE",-1000; } }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28240,'Calf_Kingcobra','Calf Kingcobra','Weapon','Rifle',900,230,9,2,true,true,true,4,150,true,'.@r = getrefine(); bonus bAspdRate,10 + (.@r > 6 ? 5 : 0); bonus bLongAtkRate,(.@r/2)*5 + (.@r > 11 ? 5 : 0); if(.@r > 8){ bonus bCritAtkRate,15; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28241,'Calf_Diamondback','Calf Diamondback','Weapon','Gatling',3000,220,9,2,true,true,true,4,150,true,'.@r = getrefine(); bonus bDex,2; bonus2 bAddClass,Class_All,2; bonus bLongAtkRate,(.@r/2)*5 + (.@r > 11 ? 5 : 0); if(.@r > 6){ bonus2 bSkillAtk,"RL_R_TRIP",20; } if(.@r > 8){ bonus2 bSkillUseSPrate,"RL_R_TRIP",5; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28242,'Calf_Anaconda','Calf Anaconda','Weapon','Shotgun',10,1400,305,9,2,true,true,true,4,150,true,'.@r = getrefine(); bonus bSplashRange,1; bonus bMaxSPrate,2; bonus bLongAtkRate,(.@r/2)*5 + (.@r > 8 ? 5 : 0); if(.@r > 6){ bonus2 bSkillAtk,"RL_BANISHING_BUSTER",20; } if(.@r > 11){ bonus2 bSkillUseSPrate,"RL_BANISHING_BUSTER",15; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28243,'Calf_Python','Calf Python','Weapon','Grenade',10,2000,360,9,2,true,true,true,4,150,true,'.@r = getrefine(); bonus bDex,2; bonus2 bAddClass,Class_All,2; bonus bLongAtkRate,(.@r/2)*5; if(.@r > 6){ bonus bAspdRate,5; } if(.@r > 8){ bonus2 bSkillAtk,"RL_D_TAIL",15 + (.@r > 11 ? 15 : 0); }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28244,'Illusion_Gate_Keeper_DD','Illusion Gate Keeper DD','Weapon','Shotgun',1300,240,9,2,true,true,true,4,120,true,'.@r = getrefine(); bonus bDex,1; bonus bSplashRange,1; .@val = 5*(.@r/2); if (.@r >= 7) { bonus bAspdRate,15; if (.@r >= 9) { .@val += 5; if (.@r >= 11) { bonus5 bAutoSpell,"GS_SPREADATTACK",max(6,getskilllv("GS_SPREADATTACK")),50,BF_LONG|BF_WEAPON,1; } } } bonus bLongAtkRate,.@val;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28253,'HR-S55-OS','HR-S55-OS','Weapon','Rifle',20,1000,250,9,2,true,true,true,true,4,130,true,'.@r = getrefine(); bonus2 bAddClass,Class_All,3; if (.@r >= 7) { bonus bLongAtkRate,7; if (.@r >= 9) { bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",20; if (.@r >= 11) { bonus2 bSkillCooldown,"RL_HAMMER_OF_GOD",-5000; } } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28253,'HR-S55-OS','HR-S55-OS','Weapon','Rifle',20,1000,250,9,2,true,true,4,130,true,'.@r = getrefine(); bonus2 bAddClass,Class_All,3; if (.@r >= 7) { bonus bLongAtkRate,7; if (.@r >= 9) { bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",20; if (.@r >= 11) { bonus2 bSkillCooldown,"RL_HAMMER_OF_GOD",-5000; } } }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28254,'Illusion_Butcher','Illusion Butcher','Weapon','Gatling',20,2500,210,9,2,true,true,true,true,4,120,true,'.@r = getrefine(); bonus bLongAtkRate,2*(readparam(bStr)/15); bonus bBaseAtk,10*.@r; if (.@r >= 7) { bonus2 bSkillAtk,"RL_FIRE_RAIN",20; if (.@r >= 9) { bonus2 bSkillAtk,"RL_R_TRIP",15; if (.@r >= 11) { bonus2 bAddRace,RC_Brute,30; bonus2 bAddRace,RC_Player_Doram,30; bonus2 bAddRace,RC_Demon,30; } } }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28255,'Master_Soul_Rifle','Master Soul Rifle','Weapon','Rifle',20,1000,150,210,9,2,true,true,true,4,100,true,'.@r = getrefine(); bonus bMatk,10*(.@r/3); bonus bAspdRate,3*(.@r/3); if (.@r >= 7) { bonus bAspd,1; bonus bMatkRate,5; if (.@r >= 9) { .@chance = 1; /* unknown rate*/ if (.@r >= 11) { .@chance += 1; bonus5 bAutoSpell,"WL_SOULEXPANSION",3,1,BF_LONG,1; } bonus5 bAutoSpell,"MG_SOULSTRIKE",10,.@chance,BF_LONG,1; } }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28256,'Demon_Slayer_Shot','Demon Slayer Shot','Weapon','Shotgun',20,1400,275,9,2,true,true,true,4,100,true,'.@r = getrefine(); bonus bSplashRange,1; bonus bLongAtkRate,3*(.@r/2); bonus bMaxSPrate,2*(.@r/3); if (.@r >= 7) { bonus2 bAddClass,Class_Boss,10; if (.@r >= 9) { autobonus3 "{ bonus bBaseAtk,50; bonus bLongAtkRate,10; }",1000,90000,"RL_P_ALTER"; if (.@r >= 11) { bonus2 bAddRace,RC_Undead,15; bonus2 bAddRace,RC_Demon,15; } } }'); @@ -5560,12 +5560,12 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28370,'Broken_Chip_Green','Broken Chip (Green)','Armor',100,1,1,true,true,100,'bonus2 bAddClass,Class_All,5; bonus bDelayrate,-5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28371,'Broken_Chip_Red','Broken Chip (Red)','Armor',100,1,1,true,true,100,'bonus2 bMagicAddClass,Class_All,5; bonus bVariableCastrate,-10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28372,'Imperial_Ring','Imperial Ring','Armor',500,3,1,true,true,50,'bonus bStr,1; bonus bInt,1; bonus bMaxHPRate,3; bonus bMaxSPRate,3;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28374,'Foxtail_Ring','Foxtail Ring','Armor',20,100,true,true,true,true,true,true,1,100,true,true,true,true,true,true,'bonus2 bExpAddRace,RC_All,5; .@lvl = min(BaseLevel/5,10); bonus bAtk,2*.@lvl; bonus bMatk,2*.@lvl; bonus bMaxHP,10*.@lvl; bonus bMaxSP,5*.@lvl;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28374,'Foxtail_Ring','Foxtail Ring','Armor',20,100,true,true,1,100,true,true,true,true,true,true,'bonus2 bExpAddRace,RC_All,5; .@lvl = min(BaseLevel/5,10); bonus bAtk,2*.@lvl; bonus bMatk,2*.@lvl; bonus bMaxHP,10*.@lvl; bonus bMaxSP,5*.@lvl;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28377,'Magical_Ring','Magical Ring','Armor',100,1,true,true,20,'bonus2 bMagicAtkEle,Ele_Fire,5; bonus2 bMagicAtkEle,Ele_Water,5; bonus2 bMagicAtkEle,Ele_Earth,5; bonus2 bMagicAtkEle,Ele_Wind,5; if (BaseLevel > 4) { bonus2 bSkillAtk,"MG_FIREBOLT",BaseLevel/5; bonus2 bSkillAtk,"MG_COLDBOLT",BaseLevel/5; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",BaseLevel/5; bonus2 bSkillAtk,"WZ_EARTHSPIKE",BaseLevel/5; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28379,'Shadow_Ring','Shadow Ring','Armor',20,100,1,true,true,20,'.@s = getskilllv("RG_STEALCOIN"); .@r = getskilllv("RG_RAID"); if (.@s>=1) .@a = .@s; else .@a = 1; bonus3 bAutoSpell,"RG_STEALCOIN",.@a,50; bonus2 bSkillAtk,"RG_BACKSTAP",2*BaseLevel; bonus3 bAddEff,Eff_Stun,.@r*100,ATF_SHORT; autobonus3 "{ bonus2 bSkillAtk,\\"SC_TRIANGLESHOT\\",BaseLevel/3; }",1000,20000,5010,"{ specialeffect2 153; }"; /* Placeholder specialeffect */'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28380,'Fresh_Grass_Necklace','Fresh Grass Necklace','Armor',20,100,1,true,true,true,true,true,true,100,'bonus bFlee2,5; bonus2 bSkillCooldown,"SU_SCAROFTAROU",-5000;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28381,'Cute_Grass_Necklace','Cute Grass Necklace','Armor',20,10,1,true,true,true,true,true,true,100,'bonus bHealPower,5; bonus2 bSkillCooldown,"SU_TUNAPARTY",-7000;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28382,'Charm_Grass_Necklace','Charm Grass Necklace','Armor',20,10,1,true,true,true,true,true,true,100,'bonus bMdef,5; bonus2 bVariableCastrate,"SU_CN_METEOR",-1000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_summoner`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28380,'Fresh_Grass_Necklace','Fresh Grass Necklace','Armor',20,100,1,true,true,true,100,'bonus bFlee2,5; bonus2 bSkillCooldown,"SU_SCAROFTAROU",-5000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_summoner`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28381,'Cute_Grass_Necklace','Cute Grass Necklace','Armor',20,10,1,true,true,true,100,'bonus bHealPower,5; bonus2 bSkillCooldown,"SU_TUNAPARTY",-7000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_summoner`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28382,'Charm_Grass_Necklace','Charm Grass Necklace','Armor',20,10,1,true,true,true,100,'bonus bMdef,5; bonus2 bVariableCastrate,"SU_CN_METEOR",-1000;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28386,'Fallen_Monk_Rosary','Fallen Monk Rosary','Armor',100,1,true,true,20,'bonus bAspdRate,5; bonus bCritical,5; bonus2 bSkillUseSP,"CH_SOULCOLLECT",-5; if (BaseLevel > 14) bonus2 bSkillAtk,"SR_DRAGONCOMBO",BaseLevel/15; if (BaseLevel > 19) bonus2 bSkillAtk,"SR_KNUCKLEARROW",BaseLevel/20; if (BaseLevel > 29) bonus2 bSkillAtk,"SR_SKYNETBLOW",BaseLevel/30;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (28391,'S_Thief_Earring','Thief Shadow Earring','Shadowgear',true,1,true,'autobonus3 "{ .@val = 30+(getrefine()*10); bonus bBaseAtk,.@val; bonus bFlee,.@val; }",200,5000,"TF_THROWSTONE","{ specialeffect2 EF_ENHANCE; }";'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (28392,'S_Archer_Earring','Archer Shadow Earring','Shadowgear',true,1,true,'autobonus3 "{ .@val = 30+(getrefine()*10); bonus bBaseAtk,.@val; bonus bHit,.@val; }",200,5000,"AC_DOUBLE","{ specialeffect2 EF_ENHANCE; }";'); @@ -5657,7 +5657,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`pr REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_archer`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28601,'Ru_Gold_Book','Ru Gold Book','Weapon','Book',500,160,1,2,true,true,3,120,true,'bonus bVit,8; bonus bInt,8;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28602,'Demon_Hunting_Bible','Demon Hunting Bible','Weapon','Book',500,30,170,1,2,true,true,true,true,true,3,110,true,'bonus bInt,2; bonus bDex,2; .@b = readparam(bInt); bonus2 bSkillAtk,"PR_MAGNUS",30+min(.@b,120); bonus bHealPower,10; bonus bAddItemHealRate,10; .@r = (getrefine()*1000); autobonus2 "{ bonus bIgnoreMdefRace,RC_All; }",50,1000+.@r,BF_WEAPON,"{ specialeffect2 EF_FLOWERCAST;}"; bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Holy;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28604,'Crimson_Bible','Crimson Bible','Weapon','Book',20,450,45,1,2,true,true,true,true,3,70,true,'.@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bMatk,(.@r<=15?(pow(.@r,2)/2):225);'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28605,'Book_of_Vicious_Mind','Book of Vicious Mind','Weapon','Book',20,950,95,1,1,true,true,true,4,160,true,'bonus bAtk,pow(min(getrefine(),15),2); bonus bMatk,pow(min(getrefine(),15),2); bonus bUnbreakableWeapon;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28605,'Book_of_Vicious_Mind','Book of Vicious Mind','Weapon','Book',20,950,95,1,1,true,true,true,true,4,160,true,'bonus bAtk,pow(min(getrefine(),15),2); bonus bMatk,pow(min(getrefine(),15),2); bonus bUnbreakableWeapon;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (28606,'Unity_Bible','Unity Bible','Weapon','Book',20,220,42,1,1,true,true,true,true,3,1,true,100,true,true,true,true,true,true,'bonus bBaseAtk,pow(getrefine(),2)*125/100;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28608,'Elemental_Origin','Elemental Origin','Weapon','Book',20,800,120,150,1,2,true,true,true,true,true,3,100,true,'.@r = getrefine(); bonus bInt,4; .@bonus = 10; if (.@r>=7) { .@bonus += 10; } if (.@r>=9) { .@bonus += 10; } bonus2 bSkillAtk,"MG_FIREBOLT",.@bonus; bonus2 bSkillAtk,"MG_COLDBOLT",.@bonus; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",.@bonus;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28612,'Illusion_Apocalypse','Illusion Apocalypse','Weapon','Book',800,170,1,2,true,true,true,true,4,100,true,'.@val = 10 + 10*(min(getrefine(),10)/3); bonus2 bAddEle,Ele_Water,.@val; bonus2 bAddEle,Ele_Earth,.@val; bonus2 bAddEle,Ele_Fire,.@val; bonus2 bAddEle,Ele_Wind,.@val; bonus2 bSubDefEle,Ele_Holy,-30;'); @@ -5669,12 +5669,12 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`pr REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28700,'Ru_Gold_Dagger','Ru Gold Dagger','Weapon','Dagger',1000,160,1,2,true,true,true,true,true,3,120,true,'bonus bStr,8; bonus bInt,8;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28701,'Ru_Gold_Knife','Ru Gold Knife','Weapon','Dagger',500,160,1,2,true,true,true,true,true,3,120,true,'bonus bVit,8; bonus bInt,8;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (28702,'Ru_Gold_Ashura','Ru Gold Ashura','Weapon','Dagger',1000,150,150,1,2,true,true,3,120,true); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (28703,'Infinity_Dagger','Infinity Dagger','Weapon','Dagger',10,500,125,100,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,100,true,100,true,true,true,true,true,true); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28705,'Crimson_Dagger','Crimson Dagger','Weapon','Dagger',20,550,55,1,2,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,70,true,'.@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bMatk,(.@r<=15?(pow(.@r,2)/2):225);'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28706,'Dagger_of_Vicious_Mind','Dagger of Vicious Mind','Weapon','Dagger',20,1050,105,50,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,160,true,'bonus bAtk,pow(min(getrefine(),15),2); bonus bMatk,pow(min(getrefine(),15),2)/2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (28703,'Infinity_Dagger','Infinity Dagger','Weapon','Dagger',10,500,125,100,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,100,true,100,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28705,'Crimson_Dagger','Crimson Dagger','Weapon','Dagger',20,550,55,1,2,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,3,70,true,'.@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bMatk,(.@r<=15?(pow(.@r,2)/2):225);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28706,'Dagger_of_Vicious_Mind','Dagger of Vicious Mind','Weapon','Dagger',20,1050,105,50,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,160,true,'bonus bAtk,pow(min(getrefine(),15),2); bonus bMatk,pow(min(getrefine(),15),2)/2;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_novice`,`job_rogue`,`job_sage`,`job_soullinker`,`job_supernovice`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28717,'Valkyrie_Knife','Valkyrie Knife','Weapon','Dagger',50,100,50,50,1,4,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,70,true,'.@r = getrefine(); .@b = readparam(bDex)/10; if (BaseClass==Job_Novice) { bonus bMaxHP,300+(200*.@r); bonus bMaxSP,300+(20*.@r); bonus bBaseAtk,100; bonus bMatk,150+(15*.@r); bonus bUseSPrate,-5; bonus bUnbreakableWeapon; bonus bInt,2*.@r; bonus bDex,(2*.@r)-(.@r*.@b); bonus bCritical,7*.@r; bonus bAspdRate,10*.@r; bonus bCritAtkRate,1*.@r; } if (BaseClass==Job_Thief) { bonus bMaxSP,100; bonus bMatk,150; bonus bCritAtkRate,.@r; } if (BaseClass==Job_Mage) { bonus bMaxHP,200*.@r; bonus bMaxSP,20*.@r; } if (BaseJob==Job_Hunter) { bonus bMaxHP,200; bonus bUseSPrate,-5; bonus bInt,2*.@r; bonus bDex,2*.@r; } if (BaseJob==Job_Bard||BaseJob==Job_Dancer) { bonus bBaseAtk,100; bonus bAspdRate,10*.@r; bonus bUnbreakableWeapon; bonus bDex,-1*(.@r*.@b); } if (.@r>=7) { if (BaseClass==Job_Novice||BaseJob==Job_Mage) { bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; } }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_kagerouoboro`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28721,'Monokage','Monokage','Weapon','Dagger',10,800,100,1,2,true,true,3,100,true,'.@r = getrefine(); bonus2 bSkillAtk,"KO_BAKURETSU",getskilllv("NJ_TOBIDOUGU"); if (.@r>=9) { bonus bLongAtkRate,5; } else if (.@r>=7) { bonus bLongAtkRate,2; }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28725,'Illusion_Moonlight_Dagger','Illusion Moonlight Dagger','Weapon','Dagger',20,700,150,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,99,true,'bonus bMaxSPrate,10; .@val = 3; if (getrefine() >= 10) { .@val += 4; } bonus bSPDrainValue,.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_kagerouoboro`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28721,'Monokage','Monokage','Weapon','Dagger',10,800,100,1,2,true,true,true,3,100,true,'.@r = getrefine(); bonus2 bSkillAtk,"KO_BAKURETSU",getskilllv("NJ_TOBIDOUGU"); if (.@r>=9) { bonus bLongAtkRate,5; } else if (.@r>=7) { bonus bLongAtkRate,2; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28725,'Illusion_Moonlight_Dagger','Illusion Moonlight Dagger','Weapon','Dagger',20,700,150,1,1,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,99,true,'bonus bMaxSPrate,10; .@val = 3; if (getrefine() >= 10) { .@val += 4; } bonus bSPDrainValue,.@val;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (28745,'Illusion_Counter_Dagger','Illusion Counter Dagger','Weapon','Dagger',900,170,1,2,true,true,true,true,true,4,120,'.@r = getrefine(); bonus bCritical,90; bonus bCritAtkRate,(3*(.@r/2)); if (.@r >= 7) { bonus2 bAddClass,Class_All,5; if (.@r >= 9) { bonus2 bAddSize,Size_All,20; if (.@r >= 11) { bonus2 bAddEle,Ele_All,20; } } }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_kagerouoboro`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28755,'Kuroiro-OS','Kuroiro-OS','Weapon','Dagger',20,900,150,150,1,2,true,true,true,4,130,true,'.@r = getrefine(); .@dmg = 5; if (.@r >= 7) { .@dmg += 10; if (.@r >= 9) { bonus2 bSkillAtk,"KO_HAPPOKUNAI",20; if (.@r >= 11) { bonus2 bAddRace,RC_Demon,10; bonus2 bMagicAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; bonus2 bMagicAddRace,RC_Undead,10; } } } bonus2 bAddEle,Ele_Undead,.@dmg; bonus2 bMagicAddEle,Ele_Undead,.@dmg; bonus2 bAddEle,Ele_Dark,.@dmg; bonus2 bMagicAddEle,Ele_Dark,.@dmg;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_ninja`,`job_rogue`,`job_sage`,`job_soullinker`,`job_swordman`,`job_thief`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28762,'Illusion_Bazerald','Illusion Bazerald','Weapon','Dagger',20,500,120,170,1,2,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,4,120,true,'bonus bAtkEle,Ele_Fire; bonus bInt,5; .@r = getrefine(); bonus bMatkRate,(.@r/2); if (.@r >= 7) { bonus2 bMagicAtkEle,Ele_Fire,10; if (.@r >= 9) { bonus2 bSkillAtk,"MG_FIREBOLT",40; bonus2 bSkillAtk,"MG_FIREBALL",40; if (.@r >= 11) { bonus2 bSkillAtk,"WZ_METEOR",30; bonus2 bSkillAtk,"WL_CRIMSONROCK",30; } } }'); @@ -6258,7 +6258,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_cos REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31696,'Costume_Shark_Hat','C Shark Hat','Armor',true,1,503); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31697,'Costume_Bird_Nest','C Bird Nest','Armor',true,1,201); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`) VALUES (31698,'C_Pigtail_Red_Hood','C Red Riding Hood','Armor',true,1,1879); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31699,'C_Smiling_Eyes','C Smiling Eyes','Armor',true,1,1880); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`job_all`,`job_summoner`,`location_costume_head_Mid`,`equip_level_min`,`view`) VALUES (31699,'C_Smiling_Eyes','C Smiling Eyes','Armor',true,false,true,1,1880); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31702,'Costume_Moon_Cat_Hat','C Moon Cat Hat','Armor',true,1,1308); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31703,'Costume_Valentine_Hat','C Love Valentine\'s Hat','Armor',true,1,397); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (31704,'Costume_Sweet_Valentine_Out','C Sweet Valentine Out','Armor',true,1,865); @@ -6360,7 +6360,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`def REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (32232,'Schmidt_Insignia_Flash','King Schmidt\'s Flash Insignia','Armor',200,10,1,true,150,'bonus bAspdRate,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (32233,'Schmidt_Insignia_Celestial','King Schmidt\'s Celestial Insignia','Armor',200,10,1,true,150,'bonus bLongAtkRate,7;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (32234,'Warrior\'s_Ring','Warrior\'s Ring','Armor',300,1,true,true,100,'bonus2 bAddClass,Class_All,5; bonus2 bMagicAddClass,Class_All,5; bonus2 bAddEle,Ele_Wind,10; bonus2 bAddEle,Ele_Earth,10; bonus2 bMagicAddEle,Ele_Wind,10; bonus2 bMagicAddEle,Ele_Earth,10; bonus2 bSubEle,Ele_Wind,5; bonus2 bSubEle,Ele_Earth,5;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (32237,'Celine\'s_Brooch','Celine\'s Brooch','Armor',10,500,1,true,false,false,true,true,100,'bonus bMatkRate,5; bonus bVariableCastrate,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (32237,'Celine\'s_Brooch','Celine\'s Brooch','Armor',10,500,1,true,true,100,'bonus bMatkRate,5; bonus bVariableCastrate,-10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`equip_level_min`,`script`) VALUES (32238,'Illusion_Morpheus\'s_Ring','Illusion Morpheus\'s Ring','Armor',20,100,1,true,130,'bonus bInt,3; bonus bMaxSPrate,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (32239,'Illusion_Morpheus\'s_Bracelet','Illusion Morpheus\'s Bracelet','Armor',20,100,1,true,130,'bonus bInt,3; bonus bMaxSPrate,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (32242,'Old_Detachment_Ring','Old Detachment Ring','Armor',20,true,true,100,'bonus bMdef,10; bonus2 bSubRace,RC_Player_Human,3;'); @@ -6389,8 +6389,8 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450033,'Noblesse_Assassin_Suit','Noblesse Assassin Suit','Armor',20,70,1,true,true,true,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bCritAtkRate,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450034,'Noblesse_Fatal_Suit','Noblesse Fatal Suit','Armor',20,70,1,true,true,true,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus2 bAddSize,Size_All,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450035,'Noblesse_Stalker_Suit','Noblesse Stalker Suit','Armor',20,70,1,true,true,true,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Fire,5;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450036,'Noblesse_Picky_Robe','Noblesse Picky Robe','Armor',20,70,1,true,true,true,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus bLongAtkRate,5;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450037,'Noblesse_Catnip_Robe','Noblesse Catnip Robe','Armor',20,70,1,true,true,true,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_summoner`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450036,'Noblesse_Picky_Robe','Noblesse Picky Robe','Armor',20,70,1,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus bLongAtkRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_summoner`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450037,'Noblesse_Catnip_Robe','Noblesse Catnip Robe','Armor',20,70,1,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_rebellion`,`location_armor`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450038,'Noblesse_Trip_Suit','Noblesse Trip Suit','Armor',20,70,1,true,true,100,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus2 bAddClass,Class_All,5; if(.@r>=9) bonus bLongAtkRate,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_rebellion`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450039,'Noblesse_Fire_Rain_Suit','Noblesse Fire Rain Suit','Armor',20,70,1,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus2 bAddClass,Class_All,5; if(.@r>=9) bonus bLongAtkRate,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450040,'Noblesse_Crimson_Robe','Noblesse Crimson Robe','Armor',20,70,1,true,true,true,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Fire,5;'); @@ -6425,8 +6425,8 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450069,'Imperial_Assassin_Suit','Imperial Assassin Suit','Armor',20,90,1,true,true,true,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bCritAtkRate,7;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450070,'Imperial_Fatal_Suit','Imperial Fatal Suit','Armor',20,90,1,true,true,true,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus2 bAddSize,Size_All,7;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450071,'Imperial_Stalker_Suit','Imperial Stalker Suit','Armor',20,90,1,true,true,true,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Fire,7;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450072,'Imperial_Picky_Robe','Imperial Picky Robe','Armor',20,90,1,true,true,true,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus bLongAtkRate,7;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450073,'Imperial_Catnip_Robe','Imperial Catnip Robe','Armor',20,90,1,true,true,true,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_summoner`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450072,'Imperial_Picky_Robe','Imperial Picky Robe','Armor',20,90,1,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus bLongAtkRate,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_summoner`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450073,'Imperial_Catnip_Robe','Imperial Catnip Robe','Armor',20,90,1,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,7;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_rebellion`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450074,'Imperial_Trip_Suit','Imperial Trip Suit','Armor',20,90,1,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus2 bAddClass,Class_All,7; if(.@r>=9) bonus bLongAtkRate,7;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_rebellion`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450075,'Imperial_Fire_Rain_Suit','Imperial Fire Rain Suit','Armor',20,90,1,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus2 bAddClass,Class_All,7; if(.@r>=9) bonus bLongAtkRate,7;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450076,'Imperial_Crimson_Robe','Imperial Crimson Robe','Armor',20,90,1,true,true,true,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus bVariableCastrate,-15; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Fire,7;'); @@ -6459,8 +6459,8 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450103,'Grace_Assassin_Suit','Grace Assassin Suit','Armor',20,100,1,true,true,true,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bCritAtkRate,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450104,'Grace_Fatal_Suit','Grace Fatal Suit','Armor',20,100,1,true,true,true,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus2 bAddSize,Size_All,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450105,'Grace_Stalker_Suit','Grace Stalker Suit','Armor',20,100,1,true,true,true,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Fire,10;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450106,'Grace_Picky_Robe','Grace Picky Robe','Armor',20,100,1,true,true,true,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus bLongAtkRate,10;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450107,'Grace_Catnip_Robe','Grace Catnip Robe','Armor',20,100,1,true,true,true,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_summoner`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450106,'Grace_Picky_Robe','Grace Picky Robe','Armor',20,100,1,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus bLongAtkRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_summoner`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450107,'Grace_Catnip_Robe','Grace Catnip Robe','Armor',20,100,1,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_rebellion`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450108,'Grace_Trip_Suit','Grace Trip Suit','Armor',20,100,1,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus2 bAddClass,Class_All,10; if(.@r>=9) bonus bLongAtkRate,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_rebellion`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450109,'Grace_Fire_Rain_Suit','Grace Fire Rain Suit','Armor',20,100,1,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus2 bAddClass,Class_All,10; if(.@r>=9) bonus bLongAtkRate,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450110,'Grace_Crimson_Robe','Grace Crimson Robe','Armor',20,100,1,true,true,true,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus bVariableCastrate,-20; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Fire,10;'); @@ -6473,12 +6473,12 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_kagerouoboro`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450117,'Grace_Kunai_Suit','Grace Kunai Suit','Armor',20,100,1,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus2 bAddClass,Class_All,10; if(.@r>=9) bonus bLongAtkRate,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_soullinker`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450118,'Grace_Eswhoo_Robe','Grace Eswhoo Robe','Armor',20,100,1,true,true,true,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Dark,10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Dark,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_soullinker`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450119,'Grace_Explosion_Robe','Grace Explosion Robe','Armor',20,100,1,true,true,true,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus2 bMagicAtkEle,Ele_Dark,10; if(.@r>=9) bonus2 bMagicAtkEle,Ele_Dark,10;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450121,'Noblesse_Super_Novice_Suit','Noblesse Super Novice Suit','Armor',20,70,1,true,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bMaxHPrate,5;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450122,'Noblesse_Super_Novice_Robe','Noblesse Super Novice Robe','Armor',20,70,1,true,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bMaxHPrate,5;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450123,'Imperial_Super_Novice_Suit','Imperial Super Novice Suit','Armor',20,90,1,true,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bMaxHPrate,7;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450124,'Imperial_Super_Novice_Robe','Imperial Super Novice Robe','Armor',20,90,1,true,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bMaxHPrate,7;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450125,'Grace_Super_Novice_Suit','Grace Super Novice Suit','Armor',20,100,1,true,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bMaxHPrate,10;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450126,'Grace_Super_Novice_Robe','Grace Super Novice Robe','Armor',20,100,1,true,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bMaxHPrate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450121,'Noblesse_Super_Novice_Suit','Noblesse Super Novice Suit','Armor',20,70,1,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bMaxHPrate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450122,'Noblesse_Super_Novice_Robe','Noblesse Super Novice Robe','Armor',20,70,1,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bMaxHPrate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450123,'Imperial_Super_Novice_Suit','Imperial Super Novice Suit','Armor',20,90,1,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bMaxHPrate,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450124,'Imperial_Super_Novice_Robe','Imperial Super Novice Robe','Armor',20,90,1,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bMaxHPrate,7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450125,'Grace_Super_Novice_Suit','Grace Super Novice Suit','Armor',20,100,1,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bMaxHPrate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450126,'Grace_Super_Novice_Robe','Grace Super Novice Robe','Armor',20,100,1,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bMaxHPrate,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (470016,'Noblesse_Attack_Boots','Noblesse Attack Boots','Armor',20,1,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,10; bonus bHit,10; if (.@r>=7) bonus bFixedCast,-500; if (.@r>=9) bonus bLongAtkRate,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (470017,'Noblesse_Magic_Boots','Noblesse Magic Boots','Armor',20,1,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,10; bonus bFlee,10; if (.@r>=7) bonus bFixedCast,-500; if (.@r>=9) bonus2 bMagicAtkEle,Ele_All,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (470018,'Imperial_Attack_Boots','Imperial Attack Boots','Armor',25,1,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,15; bonus bHit,15; if (.@r>=7) bonus bFixedCast,-500; if (.@r>=9) bonus bLongAtkRate,7;'); @@ -6508,9 +6508,9 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`pr REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_stargladiator`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (540010,'Up_Thousand_Sun','Patent One Sky One Sun','Weapon','Book',1100,200,1,2,true,true,true,true,true,4,150,true,'.@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bShortAtkRate,4*(.@r/3); if (.@r>=7){ bonus2 bSkillAtk,"SJ_PROMINENCEKICK",20; bonus bAspdRate,10; } if (.@r>=9){ bonus2 bSkillAtk,"SJ_SOLARBURST",25; } if (.@r>=11){ bonus2 bAddSize,Size_All,15; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (540011,'Up_Demon_Hunting_Bible','Patent Exorcist\'s Bible','Weapon','Book',20,700,205,190,1,2,true,true,true,true,true,4,150,true,'.@r = getrefine(); bonus bBaseAtk,.@r/2*10; bonus bMatk,.@r/2*10; bonus2 bSkillAtk,"AB_DUPLELIGHT",25*(.@r/3); bonus2 bSkillAtk,"AB_JUDEX",25*(.@r/3); if (.@r>=7){ bonus bAspdRate,10; bonus2 bMagicAtkEle,Ele_Holy,15; } if (.@r>=9){ bonus2 bSkillAtk,"AB_DUPLELIGHT",30; bonus2 bSkillAtk,"AB_JUDEX",30; } if (.@r>=11){ .@i = getskilllv("AB_JUDEX"); bonus3 bAutoSpell,"AB_JUDEX",(.@i > 5 ? .@i : 5),100; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (550007,'Freezing_Rod','Chilling Cane','Weapon','Staff',500,40,150,1,2,true,true,true,true,true,4,100,true,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,.@r/2*10; bonus2 bSkillAtk,"SO_DIAMONDDUST",.@r/3*8; if (.@r>=9) { bonus2 bMagicAddEle,Ele_Undead,10; } if (.@r>=11) { bonus2 bMagicAtkEle,Ele_Water,7; }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_sage`,`class_third_upper`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (550012,'Up_Shadow_Staff_K','Patent Shadow Staff','Weapon','Staff',20,750,40,195,1,2,true,true,true,4,150,true,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,.@r/2*15; bonus2 bSkillAtk,"SO_EARTHGRAVE",12*(.@r/3); if (.@r>=7){ bonus2 bMagicAtkEle,Ele_Earth,15; bonus2 bMagicAtkEle,Ele_Neutral,15; } if (.@r>=9){ bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",25; bonus bVariableCastrate,-7; } if (.@r>=11){ bonus bVariableCastrate,-8; bonus2 bSkillCooldown,"SO_PSYCHIC_WAVE",-1000; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (550012,'Up_Shadow_Staff_K','Patent Shadow Staff','Weapon','Staff',20,750,40,195,1,2,true,true,true,true,true,4,150,true,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,.@r/2*15; bonus2 bSkillAtk,"SO_EARTHGRAVE",12*(.@r/3); if (.@r>=7){ bonus2 bMagicAtkEle,Ele_Earth,15; bonus2 bMagicAtkEle,Ele_Neutral,15; } if (.@r>=9){ bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",25; bonus bVariableCastrate,-7; } if (.@r>=11){ bonus bVariableCastrate,-8; bonus2 bSkillCooldown,"SO_PSYCHIC_WAVE",-1000; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (550013,'Up_Freezing_Rod','Patent Chilling Cane','Weapon','Staff',750,40,195,1,2,true,true,true,true,true,4,150,true,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,.@r/2*10; bonus2 bSkillAtk,"SO_DIAMONDDUST",.@r/3*12; if (.@r>=7){ bonus2 bMagicAddEle,Ele_All,15; bonus2 bSkillAtk,"SO_VARETYR_SPEAR",15; } if (.@r>=9){ bonus2 bSkillAtk,"SO_VARETYR_SPEAR",20; bonus bVariableCastrate,-7; } if (.@r>=11){ bonus bVariableCastrate,-8; bonus2 bSkillCooldown,"SO_VARETYR_SPEAR",-2000; }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (550014,'Up_MeawFoxtail','Patent Meowmeow Foxtail','Weapon','Staff',20,1200,350,350,1,2,true,true,true,true,true,4,150,true,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,15*(.@r/2); bonus bBaseAtk,15*(.@r/2); bonus2 bAddClass,Class_All,2*(.@r/3); bonus bMatkRate,2*(.@r/3); if (.@r>=7){ bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",25; bonus2 bSkillAtk,"SU_SV_STEMSPEAR",25; } if (.@r>=9){ bonus bVariableCastrate,-10; bonus bAspdRate,10; } if (.@r>=11){ bonus2 bSkillAtk,"SU_PICKYPECK",25; bonus2 bSkillAtk,"SU_CN_METEOR",25; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_summoner`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (550014,'Up_MeawFoxtail','Patent Meowmeow Foxtail','Weapon','Staff',20,1200,350,350,1,2,true,true,4,150,true,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,15*(.@r/2); bonus bBaseAtk,15*(.@r/2); bonus2 bAddClass,Class_All,2*(.@r/3); bonus bMatkRate,2*(.@r/3); if (.@r>=7){ bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",25; bonus2 bSkillAtk,"SU_SV_STEMSPEAR",25; } if (.@r>=9){ bonus bVariableCastrate,-10; bonus bAspdRate,10; } if (.@r>=11){ bonus2 bSkillAtk,"SU_PICKYPECK",25; bonus2 bSkillAtk,"SU_CN_METEOR",25; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_soullinker`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (550015,'Up_Spirit_Pendulum_','Patent Spirit Pendulum','Weapon','Staff',1200,70,190,1,2,true,true,true,true,true,4,150,true,'.@r = getrefine(); bonus bMatk,15*(.@r/2); bonus2 bMagicAddEle,Ele_All,2*(.@r/3); if (.@r>=7){ bonus2 bSkillAtk,"SP_SPA",15; bonus bVariableCastrate,-10; } if (.@r>=9){ bonus2 bSkillAtk,"SP_SWHOO",20; } if (.@r>=11){ autobonus "{ bonus2 bSPRegenRate,230,10000; }",70,10000,BF_MAGIC; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_monk`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (560002,'Ray_Knuckle','Ray Knuckle','Weapon','Knuckle',700,185,1,2,true,true,true,true,true,4,100,true,'.@r = getrefine(); bonus bBaseAtk,.@r/2*10; bonus2 bSkillAtk,"SR_TIGERCANNON",.@r/3*4; if (.@r>=9) { bonus2 bSkillAtk,"SR_TIGERCANNON",15; } if (.@r>=11) { bonus2 bSkillCooldown,"SR_TIGERCANNON",-1000; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_monk`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (560008,'Up_Iron_Nail_K','Patent Iron Nail','Weapon','Knuckle',1200,205,1,2,true,true,true,true,true,4,150,true,'.@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bLongAtkRate,.@r/3*4; if (.@r>=7){ bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",10; bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",10; } if (.@r>=9){ bonus2 bSkillCooldown,"SR_RAMPAGEBLASTER",-1000; bonus2 bSkillCooldown,"SR_EARTHSHAKER",-1000; } if (.@r>=11){ bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",15; bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",15; bonus2 bSkillUseSPrate,"SR_RAMPAGEBLASTER",-15; }'); @@ -6530,8 +6530,8 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`we REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (640012,'Up_Blue_Crystal_Staff','Patent Blue Crystal Staff','Weapon','Staff',1000,100,235,1,2,true,true,true,true,true,4,150,true,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,.@r/2*15; bonus2 bSkillAtk,"WL_JACKFROST",.@r/3*12; if (.@r>=7){ bonus bVariableCastrate,-10; bonus2 bMagicAtkEle,Ele_Water,15; bonus2 bMagicAtkEle,Ele_Wind,15; } if (.@r>=9){ bonus2 bSkillCooldown,"WL_JACKFROST",-1000; bonus bDelayRate,-5; } if (.@r>=11){ bonus2 bMagicAddSize,Size_All,15; bonus2 bSkillAtk,"WL_CHAINLIGHTNING",15; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_kagerouoboro`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (650004,'Up_Humma_Clear','Patent Huuma Shuriken Clearness','Weapon','Huuma',20,2300,290,1,2,true,true,true,true,4,150,true,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bBaseAtk,15*(.@r/2); bonus bLongAtkRate,.@r/3*2; if (.@r>=7){ bonus2 bSkillAtk,"KO_HUUMARANKA",30; bonus bVariableCastrate,-10; } if (.@r>=9){ bonus2 bSkillCooldown,"KO_HUUMARANKA",-1000; } if (.@r>=11){ bonus2 bAddEle,Ele_Fire,20; bonus2 bAddEle,Ele_Dark,20; bonus2 bAddEle,Ele_Holy,20; bonus2 bAddRace,RC_Undead,20; bonus2 bAddRace,RC_Demon,20; bonus2 bAddRace,RC_Angel,20; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (700003,'Scalet_Dragon_L_Bow','Scarlet Dragon Leather Bow','Weapon','Bow',800,170,5,2,true,true,true,true,true,true,4,100,true,'.@r = getrefine(); bonus bBaseAtk,.@r/2*10; bonus bDelayRate,-(.@r/3*4); if (.@r>=9) { bonus2 bSkillAtk,"RA_AIMEDBOLT",35; } if (.@r>=11) { bonus2 bSkillCooldown,"RA_AIMEDBOLT",-1000; }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`job_hunter`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (700013,'Up_Narcis_Bow','Patent Narcissus Bow','Weapon','Bow',1000,210,5,2,true,true,true,true,true,true,true,true,4,150,true,'.@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bLongAtkRate,.@r/3*4; if (.@r>=7){ bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; } if (.@r>=9){ bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15; } if (.@r>=11){ bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",10; bonus2 bWeaponDamageRate,W_BOW,15; }'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`job_hunter`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (700018,'Up_Royal_Bow_K','Patent Royal Bow','Weapon','Bow',1200,205,5,2,true,true,true,true,true,true,true,true,4,150,true,'.@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus2 bSkillAtk,"RA_ARROWSTORM",12*(.@r/3); if (.@r>=7){ bonus bAspdRate,10; bonus2 bWeaponDamageRate,W_BOW,15; } if (.@r>=9){ bonus bLongAtkRate,12; bonus bCritAtkRate,10; } if (.@r>=11){ bonus2 bSkillAtk,"SN_SHARPSHOOTING",20; bonus bDelayRate,-10; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_hunter`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (700013,'Up_Narcis_Bow','Patent Narcissus Bow','Weapon','Bow',1000,210,5,2,true,true,true,true,true,true,true,4,150,true,'.@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bLongAtkRate,.@r/3*4; if (.@r>=7){ bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; } if (.@r>=9){ bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15; } if (.@r>=11){ bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",10; bonus2 bWeaponDamageRate,W_BOW,15; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_hunter`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (700018,'Up_Royal_Bow_K','Patent Royal Bow','Weapon','Bow',1200,205,5,2,true,true,true,true,true,true,true,4,150,true,'.@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus2 bSkillAtk,"RA_ARROWSTORM",12*(.@r/3); if (.@r>=7){ bonus bAspdRate,10; bonus2 bWeaponDamageRate,W_BOW,15; } if (.@r>=9){ bonus bLongAtkRate,12; bonus bCritAtkRate,10; } if (.@r>=11){ bonus2 bSkillAtk,"SN_SHARPSHOOTING",20; bonus bDelayRate,-10; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (700019,'Up_Scalet_Dragon_L_Bow','Patent Scarlet Dragon Leather Bow','Weapon','Bow',900,200,5,2,true,true,true,true,true,true,4,150,true,'.@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bDelayRate,-(.@r/3*4); if (.@r>=7){ bonus bLongAtkRate,10; bonus2 bAddSize,Size_All,10; } if (.@r>=9){ bonus2 bSkillAtk,"RA_AIMEDBOLT",35; } if (.@r>=11){ bonus2 bSkillCooldown,"RA_AIMEDBOLT",-1000; bonus bVariableCastrate,-10; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (800002,'Up_Crimson_Rose','Patent Crimson Rose','Weapon','Revolver',20,1000,200,7,2,true,true,true,4,150,true,'.@r = getrefine(); bonus bBaseAtk,.@r/2*10; bonus2 bSkillAtk,"RL_FIREDANCE",.@r/3*2; if (.@r>=7){ bonus2 bAddClass,Class_All,5; bonus bLongAtkRate,10; } if (.@r>=9){ bonus2 bSkillAtk,"RL_FIREDANCE",25; autobonus3 "{ bonus bLongAtkRate,20; }",1000,60000,"RL_HEAT_BARREL"; } if (.@r>=11){ bonus bDelayRate,-10; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (810001,'Up_Master_Soul_Rifle','Patent Master Soul Rifle','Weapon','Rifle',20,1000,200,250,9,2,true,true,true,4,150,true,'.@r = getrefine(); bonus bMatk,15*(.@r/2); bonus2 bSkillAtk,"MG_SOULSTRIKE",15*(.@r/3); bonus2 bSkillAtk,"HW_NAPALMVULCAN",15*(.@r/3); if (.@r>=7){ bonus2 bSkillAtk,"WL_SOULEXPANSION",20; bonus2 bMagicAddEle,Ele_Ghost,15; } if (.@r>=9){ bonus5 bAutoSpell,"MG_SOULSTRIKE",10,150,BF_LONG,1; } if (.@r>=11){ bonus5 bAutoSpell,"HW_NAPALMVULCAN",3,70,BF_LONG,1; bonus5 bAutoSpell,"WL_SOULEXPANSION",3,70,BF_LONG,1; }'); From 99e75b07bca299123be4fd8b2ac5f22849993252 Mon Sep 17 00:00:00 2001 From: Atemo Date: Sun, 25 Oct 2020 17:54:02 +0100 Subject: [PATCH 31/45] Implemented the items from sky fortress instance (#5479) * Implemented the items from sky fortress instance (part of https://github.com/rathena/rathena/pull/3586) Co-authored-by: Lemongrass3110 --- db/re/item_combo_db.txt | 2 ++ db/re/item_db_etc.yml | 41 +++++++++++++++++++++++++++++++++ db/re/item_db_usable.yml | 15 ++++++------ sql-files/item_db_re_etc.sql | 3 +++ sql-files/item_db_re_usable.sql | 6 ++--- 5 files changed, 57 insertions(+), 10 deletions(-) diff --git a/db/re/item_combo_db.txt b/db/re/item_combo_db.txt index 0f33ff3c31..65d94c1200 100644 --- a/db/re/item_combo_db.txt +++ b/db/re/item_combo_db.txt @@ -1442,6 +1442,8 @@ 28907:2998,{ bonus bSpeedRate,25; } 28908:2998,{ bonus bDelayrate,-10; } 28909:2998,{ bonus bUseSPrate,-10; bonus bMaxSPrate,10; } +31024:31026,{ bonus bAspd,1; } +31025:31026,{ bonus bVariableCastrate,-10; } 32228:15388:15389,{ bonus bBaseAtk,25; bonus bHit,10; } 32229:15388:15389,{ bonus bMatk,25; bonus bVariableCastrate,-8; } 32230:15388:15389,{ bonus bCritAtkRate,7; bonus2 bAddClass,Class_All,5; } diff --git a/db/re/item_db_etc.yml b/db/re/item_db_etc.yml index 0592e2c78f..b4feff414f 100644 --- a/db/re/item_db_etc.yml +++ b/db/re/item_db_etc.yml @@ -37400,3 +37400,44 @@ Body: Right_Hand: true Script: | bonus bMatkRate,10; bonus5 bAutoSpell,"NPC_CRITICALWOUND",3,5+(10*(getrefine()/3)),BF_MAGIC,1; + - Id: 31024 + AegisName: As_Bdy_Knight_Card + Name: Immortal Cursed Knight Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddClass,Class_All,10; + bonus5 bAutoSpell,"RK_IGNITIONBREAK",5,20,BF_WEAPON,1; + - Id: 31025 + AegisName: As_Wind_Ghost_Card + Name: Immortal Wind Ghost Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus bMatkRate,10; + bonus5 bAutoSpell,"SO_CLOUD_KILL",5,10,BF_MAGIC,1; + - Id: 31026 + AegisName: As_Ragged_Golem_Card + Name: Stephane Jack Earnest Wolf Card + Type: Card + Buy: 20 + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus5 bAutoSpellWhenHit,"SO_FIREWALK",5,35,BF_WEAPON,0; + bonus5 bAutoSpellWhenHit,"SO_ELECTRICWALK",5,80,BF_MAGIC,0; + autobonus "{ bonus bFlee,200; }",30,10000,BF_WEAPON,"{ specialeffect2 EF_TEIHIT1; }"; + autobonus "{ bonus bSpeedRate,25; }",25,10000,BF_MAGIC,"{ specialeffect2 EF_POTION_BERSERK; }"; diff --git a/db/re/item_db_usable.yml b/db/re/item_db_usable.yml index b56df9af5c..6fa848fe9e 100644 --- a/db/re/item_db_usable.yml +++ b/db/re/item_db_usable.yml @@ -31519,7 +31519,7 @@ Body: Script: | sc_start SC_LIFEINSURANCE,3600000,0; - Id: 14505 - AegisName: Dungeon_1_hour_Ticket + AegisName: Dun_1HR_Voucher Name: Dungeon 1 Hour Ticket Type: Usable Buy: 20 @@ -31534,10 +31534,10 @@ Body: NoMail: true NoAuction: true Script: | - warp "1@sthb",0,0; /*No map+coord info*/ + warp "dali02",117,69; - Id: 14506 - AegisName: Dungeon_Ticket - Name: Dungeon Ticket + AegisName: Dun_Voucher + Name: Dungeon 1 Hour Ticket Type: Usable Buy: 20 Trade: @@ -31551,7 +31551,8 @@ Body: NoMail: true NoAuction: true Script: | - warp "1@sthc",0,0; /*No map+coord info*/ + select("Invasion of Air Stronghold - Lv. 145 or higher"); + warp "dali02",117,69; - Id: 14508 AegisName: Zeny_Scroll Name: Zeny Pet Egg Scroll @@ -42939,8 +42940,8 @@ Body: Script: | getitem 22902,11; bonus_script "{ bonus bAllStats,10; bonus bBaseAtk,30; bonus bMatk,30; }",1800; - Id: 17569 - AegisName: Dungeon_1_hour_Ticket_Box - Name: Dungeon 1 Hour Ticket Box + AegisName: Dun_Voucher_Box1 + Name: Sky Fortress Ticket 1 Hour Box Type: Usable Buy: 20 Weight: 10 diff --git a/sql-files/item_db_re_etc.sql b/sql-files/item_db_re_etc.sql index 888d440fa3..cfacfde576 100644 --- a/sql-files/item_db_re_etc.sql +++ b/sql-files/item_db_re_etc.sql @@ -4036,3 +4036,6 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (31021,'Dancing_Marionette_Card','Dancing Marionette Card','Card',20,10,true,'bonus bAspdRate,10; bonus2 bAddClass,Class_All,-3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`script`) VALUES (31022,'Abandoned_Teddy_Bear_Card','Abandoned Teddy Bear Card','Card',20,10,true,'bonus bMaxSPRate,20; bonus2 bAddEff2,Eff_Curse,20;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (31023,'Celine_Kimi_Card','Celine Kimi Card','Card',20,10,true,'bonus bMatkRate,10; bonus5 bAutoSpell,"NPC_CRITICALWOUND",3,5+(10*(getrefine()/3)),BF_MAGIC,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (31024,'As_Bdy_Knight_Card','Immortal Cursed Knight Card','Card',20,10,true,true,'bonus2 bAddClass,Class_All,10;\nbonus5 bAutoSpell,"RK_IGNITIONBREAK",5,20,BF_WEAPON,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (31025,'As_Wind_Ghost_Card','Immortal Wind Ghost Card','Card',20,10,true,true,'bonus bMatkRate,10;\nbonus5 bAutoSpell,"SO_CLOUD_KILL",5,10,BF_MAGIC,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (31026,'As_Ragged_Golem_Card','Stephane Jack Earnest Wolf Card','Card',20,10,true,true,'bonus5 bAutoSpellWhenHit,"SO_FIREWALK",5,35,BF_WEAPON,0;\nbonus5 bAutoSpellWhenHit,"SO_ELECTRICWALK",5,80,BF_MAGIC,0;\nautobonus "{ bonus bFlee,200; }",30,10000,BF_WEAPON,"{ specialeffect2 EF_TEIHIT1; }";\nautobonus "{ bonus bSpeedRate,25; }",25,10000,BF_MAGIC,"{ specialeffect2 EF_POTION_BERSERK; }";'); diff --git a/sql-files/item_db_re_usable.sql b/sql-files/item_db_re_usable.sql index 1cb2ff5b6a..9c583b574e 100644 --- a/sql-files/item_db_re_usable.sql +++ b/sql-files/item_db_re_usable.sql @@ -2274,8 +2274,8 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`script`) VALUES (14498,'Pisces_Crown_Box','Pisces Crown Box','Cash',20,10,true,'getitem 5515,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_uniqueid`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14499,'Peacock_Feather_Box','Peacock Feather Box','Cash',20,10,true,100,true,true,true,true,true,true,true,'getitem 5519,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14500,'Insurance60','Life Insurrance Certificate','Usable',20,10,100,true,true,true,true,true,true,true,'sc_start SC_LIFEINSURANCE,3600000,0;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14505,'Dungeon_1_hour_Ticket','Dungeon 1 Hour Ticket','Usable',20,100,true,true,true,true,true,true,true,true,'warp "1@sthb",0,0; /*No map+coord info*/'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14506,'Dungeon_Ticket','Dungeon Ticket','Usable',20,100,true,true,true,true,true,true,true,true,'warp "1@sthc",0,0; /*No map+coord info*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14505,'Dun_1HR_Voucher','Dungeon 1 Hour Ticket','Usable',20,100,true,true,true,true,true,true,true,true,'warp "dali02",117,69;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14506,'Dun_Voucher','Dungeon 1 Hour Ticket','Usable',20,100,true,true,true,true,true,true,true,true,'select("Invasion of Air Stronghold - Lv. 145 or higher");\nwarp "dali02",117,69;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14508,'Zeny_Scroll','Zeny Pet Egg Scroll','Usable',10,100,true,true,true,true,true,true,true,'Zeny += rand(1000,77777);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14509,'Light_Center_Pot','Light Concentration Potion','Usable',800,20,100,true,true,true,true,true,true,true,'sc_start SC_ASPDPOTION0,1800000,4;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_alchemist`,`job_archer`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_gunslinger`,`job_hunter`,`job_kagerouoboro`,`job_knight`,`job_mage`,`job_merchant`,`job_monk`,`job_ninja`,`job_novice`,`job_rebellion`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_summoner`,`job_supernovice`,`job_swordman`,`job_taekwon`,`job_thief`,`job_wizard`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (14510,'Light_Awakening_Pot','Light Awakening Potion','Usable',1500,20,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,40,100,true,true,true,true,true,true,true,'sc_start SC_ASPDPOTION1,1800000,6;'); @@ -3095,7 +3095,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`script`) VALUES (17552,'Garnet_Lucky_Scroll','Garnet Lucky Egg','Cash',10,true,'getgroupitem(IG_Garnet_Lucky_Scroll);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17567,'Event_Almighty_Box__','Event Almighty Box','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 22902,1; bonus_script "{ bonus bAllStats,10; bonus bBaseAtk,30; bonus bMatk,30; }",1800;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17568,'Event_Almighty_Box_100_','Event Almighty Box(100)','Cash',20,10,100,true,true,true,true,true,true,true,'getitem 22902,11; bonus_script "{ bonus bAllStats,10; bonus bBaseAtk,30; bonus bMatk,30; }",1800;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17569,'Dungeon_1_hour_Ticket_Box','Dungeon 1 Hour Ticket Box','Usable',20,10,100,true,true,true,true,true,true,true,'getitem 14505,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (17569,'Dun_Voucher_Box1','Sky Fortress Ticket 1 Hour Box','Usable',20,10,100,true,true,true,true,true,true,true,'getitem 14505,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`script`) VALUES (17572,'Erzulie_Lucky_Scroll','Erzulie Lucky Egg','Cash',10,true,'getgroupitem(IG_Erzulie_Lucky_Scroll);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`script`) VALUES (17584,'Venus_Lucky_Scroll','Venus Lucky Egg','Cash',10,true,'getgroupitem(IG_Venus_Lucky_Scroll);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_container`,`script`) VALUES (17588,'Amora_Lucky_Scroll','Amora Lucky Egg','Cash',10,true,'getgroupitem(IG_Amora_Lucky_Scroll);'); From de621fee16944bbe66f9d99be596ae1032f12100 Mon Sep 17 00:00:00 2001 From: Vincent Stumpf Date: Sun, 25 Oct 2020 14:53:43 -0700 Subject: [PATCH 32/45] Fix erroneous freeing of global combo script (#5483) Fixes #5476 When removing a combo, we free the bonus script in the global map Thanks to @saya9200 --- src/map/pc.hpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/map/pc.hpp b/src/map/pc.hpp index 8a13caad06..26be10ef76 100644 --- a/src/map/pc.hpp +++ b/src/map/pc.hpp @@ -263,11 +263,6 @@ struct s_combos { script_code *bonus; uint32 id; uint32 pos; - - ~s_combos() { - if (this->bonus) - script_free_code(this->bonus); - } }; struct map_session_data { From ad3f48f9ded76de3c25093ae8b70f0ddeab8caaa Mon Sep 17 00:00:00 2001 From: Aleos Date: Sun, 25 Oct 2020 19:16:15 -0400 Subject: [PATCH 33/45] Cleans up the item SQL parsing (#5478) Fixes a couple issues with the column checking. Adds verification to table columns to make sure table format is correct. Cleans up the node processing. Adds a loading progress status. Adjusts the SQL import files to not destroy previously imported data. Updated README.md to reflect the changes for SQL importing. Fixes #5485 Fixes #5477 Thanks to @Lemongrass3110! Co-authored-by: Lemongrass3110 --- sql-files/README.md | 10 +- sql-files/item_db.sql | 109 ++++++++ sql-files/item_db_equip.sql | 108 +------- sql-files/item_db_etc.sql | 108 +------- sql-files/item_db_re.sql | 116 +++++++++ sql-files/item_db_re_equip.sql | 115 +-------- sql-files/item_db_re_etc.sql | 115 +-------- sql-files/item_db_re_usable.sql | 115 +-------- sql-files/item_db_usable.sql | 108 +------- src/map/itemdb.cpp | 439 ++++++++++++++++---------------- tools/ci/sql.bat | 2 + tools/ci/sql.sh | 2 + 12 files changed, 464 insertions(+), 883 deletions(-) create mode 100644 sql-files/item_db.sql create mode 100644 sql-files/item_db_re.sql diff --git a/sql-files/README.md b/sql-files/README.md index 05a38d3df3..60940e1749 100644 --- a/sql-files/README.md +++ b/sql-files/README.md @@ -22,9 +22,15 @@ Note: If `conf/inter_athena.conf::use_sql_db` is set to yes continue with these * item_cash_db.sql - Used for client's cash shop. * item_cash_db2.sql - Used for client's cash shop (import). -* item_db.sql - Contains __pre-renewal__ item data. +* item_db.sql - Contains __pre-renewal__ item data table structure. +* item_db_equip.sql - Contains __pre-renewal__ equipment item data. +* item_db_etc.sql - Contains __pre-renewal__ etcetera item data. * item_db2.sql - Contains __pre-renewal__ item data (import). -* item_db_re.sql - Contains __renewal__ item data. +* item_db_re.sql - Contains __renewal__ item data table structure. +* item_db_re_equip.sql - Contains __renewal__ equipment item data. +* item_db_re_etc.sql - Contains __renewal__ etcetera item data. +* item_db_re_usable.sql - Contains __renewal__ usable item data. +* item_db_usable.sql - Contains __pre-renewal__ usable item data. * item_db2_re.sql - Contains __renewal__ item data (import). * mob_db.sql - Contains __pre-renewal__ mob data. * mob_db2.sql - Contains __pre-renewal__ mob data (import). diff --git a/sql-files/item_db.sql b/sql-files/item_db.sql new file mode 100644 index 0000000000..2286d0b9ba --- /dev/null +++ b/sql-files/item_db.sql @@ -0,0 +1,109 @@ +# +# Table structure for table `item_db` +# + +DROP TABLE IF EXISTS `item_db`; +CREATE TABLE `item_db` ( + `id` int(10) unsigned NOT NULL DEFAULT '0', + `name_aegis` varchar(50) NOT NULL DEFAULT '', + `name_english` varchar(50) NOT NULL DEFAULT '', + `type` varchar(20) DEFAULT NULL, + `subtype` varchar(20) DEFAULT NULL, + `price_buy` mediumint(8) unsigned DEFAULT NULL, + `price_sell` mediumint(8) unsigned DEFAULT NULL, + `weight` smallint(5) unsigned DEFAULT NULL, + `attack` smallint(5) unsigned DEFAULT NULL, + `defense` smallint(5) unsigned DEFAULT NULL, + `range` tinyint(2) unsigned DEFAULT NULL, + `slots` tinyint(2) unsigned DEFAULT NULL, + `job_all` tinyint(1) unsigned DEFAULT NULL, + `job_acolyte` tinyint(1) unsigned DEFAULT NULL, + `job_alchemist` tinyint(1) unsigned DEFAULT NULL, + `job_archer` tinyint(1) unsigned DEFAULT NULL, + `job_assassin` tinyint(1) unsigned DEFAULT NULL, + `job_barddancer` tinyint(1) unsigned DEFAULT NULL, + `job_blacksmith` tinyint(1) unsigned DEFAULT NULL, + `job_crusader` tinyint(1) unsigned DEFAULT NULL, + `job_gunslinger` tinyint(1) unsigned DEFAULT NULL, + `job_hunter` tinyint(1) unsigned DEFAULT NULL, + `job_knight` tinyint(1) unsigned DEFAULT NULL, + `job_mage` tinyint(1) unsigned DEFAULT NULL, + `job_merchant` tinyint(1) unsigned DEFAULT NULL, + `job_monk` tinyint(1) unsigned DEFAULT NULL, + `job_ninja` tinyint(1) unsigned DEFAULT NULL, + `job_novice` tinyint(1) unsigned DEFAULT NULL, + `job_priest` tinyint(1) unsigned DEFAULT NULL, + `job_rogue` tinyint(1) unsigned DEFAULT NULL, + `job_sage` tinyint(1) unsigned DEFAULT NULL, + `job_soullinker` tinyint(1) unsigned DEFAULT NULL, + `job_stargladiator` tinyint(1) unsigned DEFAULT NULL, + `job_supernovice` tinyint(1) unsigned DEFAULT NULL, + `job_swordman` tinyint(1) unsigned DEFAULT NULL, + `job_taekwon` tinyint(1) unsigned DEFAULT NULL, + `job_thief` tinyint(1) unsigned DEFAULT NULL, + `job_wizard` tinyint(1) unsigned DEFAULT NULL, + `class_all` tinyint(1) unsigned DEFAULT NULL, + `class_normal` tinyint(1) unsigned DEFAULT NULL, + `class_upper` tinyint(1) unsigned DEFAULT NULL, + `class_baby` tinyint(1) unsigned DEFAULT NULL, + `gender` varchar(10) DEFAULT NULL, + `location_head_top` tinyint(1) unsigned DEFAULT NULL, + `location_head_mid` tinyint(1) unsigned DEFAULT NULL, + `location_head_low` tinyint(1) unsigned DEFAULT NULL, + `location_armor` tinyint(1) unsigned DEFAULT NULL, + `location_right_hand` tinyint(1) unsigned DEFAULT NULL, + `location_left_hand` tinyint(1) unsigned DEFAULT NULL, + `location_garment` tinyint(1) unsigned DEFAULT NULL, + `location_shoes` tinyint(1) unsigned DEFAULT NULL, + `location_right_accessory` tinyint(1) unsigned DEFAULT NULL, + `location_left_accessory` tinyint(1) unsigned DEFAULT NULL, + `location_costume_head_top` tinyint(1) unsigned DEFAULT NULL, + `location_costume_head_mid` tinyint(1) unsigned DEFAULT NULL, + `location_costume_head_low` tinyint(1) unsigned DEFAULT NULL, + `location_costume_garment` tinyint(1) unsigned DEFAULT NULL, + `location_ammo` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_armor` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_weapon` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_shield` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_shoes` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_right_accessory` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_left_accessory` tinyint(1) unsigned DEFAULT NULL, + `weapon_level` tinyint(1) unsigned DEFAULT NULL, + `equip_level_min` tinyint(3) unsigned DEFAULT NULL, + `equip_level_max` tinyint(3) unsigned DEFAULT NULL, + `refineable` tinyint(1) unsigned DEFAULT NULL, + `view` smallint(5) unsigned DEFAULT NULL, + `alias_name` varchar(50) DEFAULT NULL, + `flag_buyingstore` tinyint(1) unsigned DEFAULT NULL, + `flag_deadbranch` tinyint(1) unsigned DEFAULT NULL, + `flag_container` tinyint(1) unsigned DEFAULT NULL, + `flag_uniqueid` tinyint(1) unsigned DEFAULT NULL, + `flag_bindonequip` tinyint(1) unsigned DEFAULT NULL, + `flag_dropannounce` tinyint(1) unsigned DEFAULT NULL, + `flag_noconsume` tinyint(1) unsigned DEFAULT NULL, + `flag_dropeffect` varchar(20) DEFAULT NULL, + `delay_duration` bigint(20) unsigned DEFAULT NULL, + `delay_status` varchar(30) DEFAULT NULL, + `stack_amount` smallint(5) unsigned DEFAULT NULL, + `stack_inventory` tinyint(1) unsigned DEFAULT NULL, + `stack_cart` tinyint(1) unsigned DEFAULT NULL, + `stack_storage` tinyint(1) unsigned DEFAULT NULL, + `stack_guildstorage` tinyint(1) unsigned DEFAULT NULL, + `nouse_override` smallint(5) unsigned DEFAULT NULL, + `nouse_sitting` tinyint(1) unsigned DEFAULT NULL, + `trade_override` smallint(5) unsigned DEFAULT NULL, + `trade_nodrop` tinyint(1) unsigned DEFAULT NULL, + `trade_notrade` tinyint(1) unsigned DEFAULT NULL, + `trade_tradepartner` tinyint(1) unsigned DEFAULT NULL, + `trade_nosell` tinyint(1) unsigned DEFAULT NULL, + `trade_nocart` tinyint(1) unsigned DEFAULT NULL, + `trade_nostorage` tinyint(1) unsigned DEFAULT NULL, + `trade_noguildstorage` tinyint(1) unsigned DEFAULT NULL, + `trade_nomail` tinyint(1) unsigned DEFAULT NULL, + `trade_noauction` tinyint(1) unsigned DEFAULT NULL, + `script` text, + `equip_script` text, + `unequip_script` text, + PRIMARY KEY (`id`), + UNIQUE INDEX `UniqueAegisName` (`name_aegis`) +) ENGINE=MyISAM; diff --git a/sql-files/item_db_equip.sql b/sql-files/item_db_equip.sql index c20820045a..ad7f3e96ef 100644 --- a/sql-files/item_db_equip.sql +++ b/sql-files/item_db_equip.sql @@ -1,113 +1,7 @@ # -# Table structure for table `item_db` +# Table data for table `item_db` # -DROP TABLE IF EXISTS `item_db`; -CREATE TABLE `item_db` ( - `id` int(10) unsigned NOT NULL DEFAULT '0', - `name_aegis` varchar(50) NOT NULL DEFAULT '', - `name_english` varchar(50) NOT NULL DEFAULT '', - `type` varchar(20) DEFAULT NULL, - `subtype` varchar(20) DEFAULT NULL, - `price_buy` mediumint(8) unsigned DEFAULT NULL, - `price_sell` mediumint(8) unsigned DEFAULT NULL, - `weight` smallint(5) unsigned DEFAULT NULL, - `attack` smallint(5) unsigned DEFAULT NULL, - `defense` smallint(5) unsigned DEFAULT NULL, - `range` tinyint(2) unsigned DEFAULT NULL, - `slots` tinyint(2) unsigned DEFAULT NULL, - `job_all` tinyint(1) unsigned DEFAULT NULL, - `job_acolyte` tinyint(1) unsigned DEFAULT NULL, - `job_alchemist` tinyint(1) unsigned DEFAULT NULL, - `job_archer` tinyint(1) unsigned DEFAULT NULL, - `job_assassin` tinyint(1) unsigned DEFAULT NULL, - `job_barddancer` tinyint(1) unsigned DEFAULT NULL, - `job_blacksmith` tinyint(1) unsigned DEFAULT NULL, - `job_crusader` tinyint(1) unsigned DEFAULT NULL, - `job_gunslinger` tinyint(1) unsigned DEFAULT NULL, - `job_hunter` tinyint(1) unsigned DEFAULT NULL, - `job_knight` tinyint(1) unsigned DEFAULT NULL, - `job_mage` tinyint(1) unsigned DEFAULT NULL, - `job_merchant` tinyint(1) unsigned DEFAULT NULL, - `job_monk` tinyint(1) unsigned DEFAULT NULL, - `job_ninja` tinyint(1) unsigned DEFAULT NULL, - `job_novice` tinyint(1) unsigned DEFAULT NULL, - `job_priest` tinyint(1) unsigned DEFAULT NULL, - `job_rogue` tinyint(1) unsigned DEFAULT NULL, - `job_sage` tinyint(1) unsigned DEFAULT NULL, - `job_soullinker` tinyint(1) unsigned DEFAULT NULL, - `job_stargladiator` tinyint(1) unsigned DEFAULT NULL, - `job_supernovice` tinyint(1) unsigned DEFAULT NULL, - `job_swordman` tinyint(1) unsigned DEFAULT NULL, - `job_taekwon` tinyint(1) unsigned DEFAULT NULL, - `job_thief` tinyint(1) unsigned DEFAULT NULL, - `job_wizard` tinyint(1) unsigned DEFAULT NULL, - `class_all` tinyint(1) unsigned DEFAULT NULL, - `class_normal` tinyint(1) unsigned DEFAULT NULL, - `class_upper` tinyint(1) unsigned DEFAULT NULL, - `class_baby` tinyint(1) unsigned DEFAULT NULL, - `gender` varchar(10) DEFAULT NULL, - `location_head_top` tinyint(1) unsigned DEFAULT NULL, - `location_head_mid` tinyint(1) unsigned DEFAULT NULL, - `location_head_low` tinyint(1) unsigned DEFAULT NULL, - `location_armor` tinyint(1) unsigned DEFAULT NULL, - `location_right_hand` tinyint(1) unsigned DEFAULT NULL, - `location_left_hand` tinyint(1) unsigned DEFAULT NULL, - `location_garment` tinyint(1) unsigned DEFAULT NULL, - `location_shoes` tinyint(1) unsigned DEFAULT NULL, - `location_right_accessory` tinyint(1) unsigned DEFAULT NULL, - `location_left_accessory` tinyint(1) unsigned DEFAULT NULL, - `location_costume_head_top` tinyint(1) unsigned DEFAULT NULL, - `location_costume_head_mid` tinyint(1) unsigned DEFAULT NULL, - `location_costume_head_low` tinyint(1) unsigned DEFAULT NULL, - `location_costume_garment` tinyint(1) unsigned DEFAULT NULL, - `location_ammo` tinyint(1) unsigned DEFAULT NULL, - `location_shadow_armor` tinyint(1) unsigned DEFAULT NULL, - `location_shadow_weapon` tinyint(1) unsigned DEFAULT NULL, - `location_shadow_shield` tinyint(1) unsigned DEFAULT NULL, - `location_shadow_shoes` tinyint(1) unsigned DEFAULT NULL, - `location_shadow_right_accessory` tinyint(1) unsigned DEFAULT NULL, - `location_shadow_left_accessory` tinyint(1) unsigned DEFAULT NULL, - `weapon_level` tinyint(1) unsigned DEFAULT NULL, - `equip_level_min` tinyint(3) unsigned DEFAULT NULL, - `equip_level_max` tinyint(3) unsigned DEFAULT NULL, - `refineable` tinyint(1) unsigned DEFAULT NULL, - `view` smallint(5) unsigned DEFAULT NULL, - `alias_name` varchar(50) DEFAULT NULL, - `flag_buyingstore` tinyint(1) unsigned DEFAULT NULL, - `flag_deadbranch` tinyint(1) unsigned DEFAULT NULL, - `flag_container` tinyint(1) unsigned DEFAULT NULL, - `flag_uniqueid` tinyint(1) unsigned DEFAULT NULL, - `flag_bindonequip` tinyint(1) unsigned DEFAULT NULL, - `flag_dropannounce` tinyint(1) unsigned DEFAULT NULL, - `flag_noconsume` tinyint(1) unsigned DEFAULT NULL, - `flag_dropeffect` varchar(20) DEFAULT NULL, - `delay_duration` bigint(20) unsigned DEFAULT NULL, - `delay_status` varchar(30) DEFAULT NULL, - `stack_amount` smallint(5) unsigned DEFAULT NULL, - `stack_inventory` tinyint(1) unsigned DEFAULT NULL, - `stack_cart` tinyint(1) unsigned DEFAULT NULL, - `stack_storage` tinyint(1) unsigned DEFAULT NULL, - `stack_guildstorage` tinyint(1) unsigned DEFAULT NULL, - `nouse_override` smallint(5) unsigned DEFAULT NULL, - `nouse_sitting` tinyint(1) unsigned DEFAULT NULL, - `trade_override` smallint(5) unsigned DEFAULT NULL, - `trade_nodrop` tinyint(1) unsigned DEFAULT NULL, - `trade_notrade` tinyint(1) unsigned DEFAULT NULL, - `trade_tradepartner` tinyint(1) unsigned DEFAULT NULL, - `trade_nosell` tinyint(1) unsigned DEFAULT NULL, - `trade_nocart` tinyint(1) unsigned DEFAULT NULL, - `trade_nostorage` tinyint(1) unsigned DEFAULT NULL, - `trade_noguildstorage` tinyint(1) unsigned DEFAULT NULL, - `trade_nomail` tinyint(1) unsigned DEFAULT NULL, - `trade_noauction` tinyint(1) unsigned DEFAULT NULL, - `script` text, - `equip_script` text, - `unequip_script` text, - PRIMARY KEY (`id`), - UNIQUE INDEX `UniqueAegisName` (`name_aegis`) -) ENGINE=MyISAM; - REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1101,'Sword','Sword','Weapon','1hSword',100,500,25,1,3,true,true,true,true,true,true,true,true,true,true,true,true,1,2,true); REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1102,'Sword_','Sword','Weapon','1hSword',100,500,25,1,4,true,true,true,true,true,true,true,true,true,true,true,true,1,2,true); REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1103,'Sword__','Sword','Weapon','1hSword',100,500,25,1,true,true,true,true,true,true,true,true,true,true,true,true,1,2,true); diff --git a/sql-files/item_db_etc.sql b/sql-files/item_db_etc.sql index bdc4a2ebdb..b31143d2a8 100644 --- a/sql-files/item_db_etc.sql +++ b/sql-files/item_db_etc.sql @@ -1,113 +1,7 @@ # -# Table structure for table `item_db` +# Table data for table `item_db` # -DROP TABLE IF EXISTS `item_db`; -CREATE TABLE `item_db` ( - `id` int(10) unsigned NOT NULL DEFAULT '0', - `name_aegis` varchar(50) NOT NULL DEFAULT '', - `name_english` varchar(50) NOT NULL DEFAULT '', - `type` varchar(20) DEFAULT NULL, - `subtype` varchar(20) DEFAULT NULL, - `price_buy` mediumint(8) unsigned DEFAULT NULL, - `price_sell` mediumint(8) unsigned DEFAULT NULL, - `weight` smallint(5) unsigned DEFAULT NULL, - `attack` smallint(5) unsigned DEFAULT NULL, - `defense` smallint(5) unsigned DEFAULT NULL, - `range` tinyint(2) unsigned DEFAULT NULL, - `slots` tinyint(2) unsigned DEFAULT NULL, - `job_all` tinyint(1) unsigned DEFAULT NULL, - `job_acolyte` tinyint(1) unsigned DEFAULT NULL, - `job_alchemist` tinyint(1) unsigned DEFAULT NULL, - `job_archer` tinyint(1) unsigned DEFAULT NULL, - `job_assassin` tinyint(1) unsigned DEFAULT NULL, - `job_barddancer` tinyint(1) unsigned DEFAULT NULL, - `job_blacksmith` tinyint(1) unsigned DEFAULT NULL, - `job_crusader` tinyint(1) unsigned DEFAULT NULL, - `job_gunslinger` tinyint(1) unsigned DEFAULT NULL, - `job_hunter` tinyint(1) unsigned DEFAULT NULL, - `job_knight` tinyint(1) unsigned DEFAULT NULL, - `job_mage` tinyint(1) unsigned DEFAULT NULL, - `job_merchant` tinyint(1) unsigned DEFAULT NULL, - `job_monk` tinyint(1) unsigned DEFAULT NULL, - `job_ninja` tinyint(1) unsigned DEFAULT NULL, - `job_novice` tinyint(1) unsigned DEFAULT NULL, - `job_priest` tinyint(1) unsigned DEFAULT NULL, - `job_rogue` tinyint(1) unsigned DEFAULT NULL, - `job_sage` tinyint(1) unsigned DEFAULT NULL, - `job_soullinker` tinyint(1) unsigned DEFAULT NULL, - `job_stargladiator` tinyint(1) unsigned DEFAULT NULL, - `job_supernovice` tinyint(1) unsigned DEFAULT NULL, - `job_swordman` tinyint(1) unsigned DEFAULT NULL, - `job_taekwon` tinyint(1) unsigned DEFAULT NULL, - `job_thief` tinyint(1) unsigned DEFAULT NULL, - `job_wizard` tinyint(1) unsigned DEFAULT NULL, - `class_all` tinyint(1) unsigned DEFAULT NULL, - `class_normal` tinyint(1) unsigned DEFAULT NULL, - `class_upper` tinyint(1) unsigned DEFAULT NULL, - `class_baby` tinyint(1) unsigned DEFAULT NULL, - `gender` varchar(10) DEFAULT NULL, - `location_head_top` tinyint(1) unsigned DEFAULT NULL, - `location_head_mid` tinyint(1) unsigned DEFAULT NULL, - `location_head_low` tinyint(1) unsigned DEFAULT NULL, - `location_armor` tinyint(1) unsigned DEFAULT NULL, - `location_right_hand` tinyint(1) unsigned DEFAULT NULL, - `location_left_hand` tinyint(1) unsigned DEFAULT NULL, - `location_garment` tinyint(1) unsigned DEFAULT NULL, - `location_shoes` tinyint(1) unsigned DEFAULT NULL, - `location_right_accessory` tinyint(1) unsigned DEFAULT NULL, - `location_left_accessory` tinyint(1) unsigned DEFAULT NULL, - `location_costume_head_top` tinyint(1) unsigned DEFAULT NULL, - `location_costume_head_mid` tinyint(1) unsigned DEFAULT NULL, - `location_costume_head_low` tinyint(1) unsigned DEFAULT NULL, - `location_costume_garment` tinyint(1) unsigned DEFAULT NULL, - `location_ammo` tinyint(1) unsigned DEFAULT NULL, - `location_shadow_armor` tinyint(1) unsigned DEFAULT NULL, - `location_shadow_weapon` tinyint(1) unsigned DEFAULT NULL, - `location_shadow_shield` tinyint(1) unsigned DEFAULT NULL, - `location_shadow_shoes` tinyint(1) unsigned DEFAULT NULL, - `location_shadow_right_accessory` tinyint(1) unsigned DEFAULT NULL, - `location_shadow_left_accessory` tinyint(1) unsigned DEFAULT NULL, - `weapon_level` tinyint(1) unsigned DEFAULT NULL, - `equip_level_min` tinyint(3) unsigned DEFAULT NULL, - `equip_level_max` tinyint(3) unsigned DEFAULT NULL, - `refineable` tinyint(1) unsigned DEFAULT NULL, - `view` smallint(5) unsigned DEFAULT NULL, - `alias_name` varchar(50) DEFAULT NULL, - `flag_buyingstore` tinyint(1) unsigned DEFAULT NULL, - `flag_deadbranch` tinyint(1) unsigned DEFAULT NULL, - `flag_container` tinyint(1) unsigned DEFAULT NULL, - `flag_uniqueid` tinyint(1) unsigned DEFAULT NULL, - `flag_bindonequip` tinyint(1) unsigned DEFAULT NULL, - `flag_dropannounce` tinyint(1) unsigned DEFAULT NULL, - `flag_noconsume` tinyint(1) unsigned DEFAULT NULL, - `flag_dropeffect` varchar(20) DEFAULT NULL, - `delay_duration` bigint(20) unsigned DEFAULT NULL, - `delay_status` varchar(30) DEFAULT NULL, - `stack_amount` smallint(5) unsigned DEFAULT NULL, - `stack_inventory` tinyint(1) unsigned DEFAULT NULL, - `stack_cart` tinyint(1) unsigned DEFAULT NULL, - `stack_storage` tinyint(1) unsigned DEFAULT NULL, - `stack_guildstorage` tinyint(1) unsigned DEFAULT NULL, - `nouse_override` smallint(5) unsigned DEFAULT NULL, - `nouse_sitting` tinyint(1) unsigned DEFAULT NULL, - `trade_override` smallint(5) unsigned DEFAULT NULL, - `trade_nodrop` tinyint(1) unsigned DEFAULT NULL, - `trade_notrade` tinyint(1) unsigned DEFAULT NULL, - `trade_tradepartner` tinyint(1) unsigned DEFAULT NULL, - `trade_nosell` tinyint(1) unsigned DEFAULT NULL, - `trade_nocart` tinyint(1) unsigned DEFAULT NULL, - `trade_nostorage` tinyint(1) unsigned DEFAULT NULL, - `trade_noguildstorage` tinyint(1) unsigned DEFAULT NULL, - `trade_nomail` tinyint(1) unsigned DEFAULT NULL, - `trade_noauction` tinyint(1) unsigned DEFAULT NULL, - `script` text, - `equip_script` text, - `unequip_script` text, - PRIMARY KEY (`id`), - UNIQUE INDEX `UniqueAegisName` (`name_aegis`) -) ENGINE=MyISAM; - REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (670,'Gold_Coin_Moneybag','Bag of Gold Coins','Etc',100000,400); REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (671,'Gold_Coin','Gold Coin','Etc',10000,40); REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (672,'Copper_Coin_Moneybag','Bag of Bronze Coins','Etc',1000,400); diff --git a/sql-files/item_db_re.sql b/sql-files/item_db_re.sql new file mode 100644 index 0000000000..36c5a37e74 --- /dev/null +++ b/sql-files/item_db_re.sql @@ -0,0 +1,116 @@ +# +# Table structure for table `item_db_re` +# + +DROP TABLE IF EXISTS `item_db_re`; +CREATE TABLE `item_db_re` ( + `id` int(10) unsigned NOT NULL DEFAULT '0', + `name_aegis` varchar(50) NOT NULL DEFAULT '', + `name_english` varchar(50) NOT NULL DEFAULT '', + `type` varchar(20) DEFAULT NULL, + `subtype` varchar(20) DEFAULT NULL, + `price_buy` mediumint(8) unsigned DEFAULT NULL, + `price_sell` mediumint(8) unsigned DEFAULT NULL, + `weight` smallint(5) unsigned DEFAULT NULL, + `attack` smallint(5) unsigned DEFAULT NULL, + `magic_attack` smallint(5) unsigned DEFAULT NULL, + `defense` smallint(5) unsigned DEFAULT NULL, + `range` tinyint(2) unsigned DEFAULT NULL, + `slots` tinyint(2) unsigned DEFAULT NULL, + `job_all` tinyint(1) unsigned DEFAULT NULL, + `job_acolyte` tinyint(1) unsigned DEFAULT NULL, + `job_alchemist` tinyint(1) unsigned DEFAULT NULL, + `job_archer` tinyint(1) unsigned DEFAULT NULL, + `job_assassin` tinyint(1) unsigned DEFAULT NULL, + `job_barddancer` tinyint(1) unsigned DEFAULT NULL, + `job_blacksmith` tinyint(1) unsigned DEFAULT NULL, + `job_crusader` tinyint(1) unsigned DEFAULT NULL, + `job_gunslinger` tinyint(1) unsigned DEFAULT NULL, + `job_hunter` tinyint(1) unsigned DEFAULT NULL, + `job_kagerouoboro` tinyint(1) unsigned DEFAULT NULL, + `job_knight` tinyint(1) unsigned DEFAULT NULL, + `job_mage` tinyint(1) unsigned DEFAULT NULL, + `job_merchant` tinyint(1) unsigned DEFAULT NULL, + `job_monk` tinyint(1) unsigned DEFAULT NULL, + `job_ninja` tinyint(1) unsigned DEFAULT NULL, + `job_novice` tinyint(1) unsigned DEFAULT NULL, + `job_priest` tinyint(1) unsigned DEFAULT NULL, + `job_rebellion` tinyint(1) unsigned DEFAULT NULL, + `job_rogue` tinyint(1) unsigned DEFAULT NULL, + `job_sage` tinyint(1) unsigned DEFAULT NULL, + `job_soullinker` tinyint(1) unsigned DEFAULT NULL, + `job_stargladiator` tinyint(1) unsigned DEFAULT NULL, + `job_summoner` tinyint(1) unsigned DEFAULT NULL, + `job_supernovice` tinyint(1) unsigned DEFAULT NULL, + `job_swordman` tinyint(1) unsigned DEFAULT NULL, + `job_taekwon` tinyint(1) unsigned DEFAULT NULL, + `job_thief` tinyint(1) unsigned DEFAULT NULL, + `job_wizard` tinyint(1) unsigned DEFAULT NULL, + `class_all` tinyint(1) unsigned DEFAULT NULL, + `class_normal` tinyint(1) unsigned DEFAULT NULL, + `class_upper` tinyint(1) unsigned DEFAULT NULL, + `class_baby` tinyint(1) unsigned DEFAULT NULL, + `class_third` tinyint(1) unsigned DEFAULT NULL, + `class_third_upper` tinyint(1) unsigned DEFAULT NULL, + `class_third_baby` tinyint(1) unsigned DEFAULT NULL, + `gender` varchar(10) DEFAULT NULL, + `location_head_top` tinyint(1) unsigned DEFAULT NULL, + `location_head_mid` tinyint(1) unsigned DEFAULT NULL, + `location_head_low` tinyint(1) unsigned DEFAULT NULL, + `location_armor` tinyint(1) unsigned DEFAULT NULL, + `location_right_hand` tinyint(1) unsigned DEFAULT NULL, + `location_left_hand` tinyint(1) unsigned DEFAULT NULL, + `location_garment` tinyint(1) unsigned DEFAULT NULL, + `location_shoes` tinyint(1) unsigned DEFAULT NULL, + `location_right_accessory` tinyint(1) unsigned DEFAULT NULL, + `location_left_accessory` tinyint(1) unsigned DEFAULT NULL, + `location_costume_head_top` tinyint(1) unsigned DEFAULT NULL, + `location_costume_head_mid` tinyint(1) unsigned DEFAULT NULL, + `location_costume_head_low` tinyint(1) unsigned DEFAULT NULL, + `location_costume_garment` tinyint(1) unsigned DEFAULT NULL, + `location_ammo` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_armor` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_weapon` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_shield` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_shoes` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_right_accessory` tinyint(1) unsigned DEFAULT NULL, + `location_shadow_left_accessory` tinyint(1) unsigned DEFAULT NULL, + `weapon_level` tinyint(1) unsigned DEFAULT NULL, + `equip_level_min` tinyint(3) unsigned DEFAULT NULL, + `equip_level_max` tinyint(3) unsigned DEFAULT NULL, + `refineable` tinyint(1) unsigned DEFAULT NULL, + `view` smallint(5) unsigned DEFAULT NULL, + `alias_name` varchar(50) DEFAULT NULL, + `flag_buyingstore` tinyint(1) unsigned DEFAULT NULL, + `flag_deadbranch` tinyint(1) unsigned DEFAULT NULL, + `flag_container` tinyint(1) unsigned DEFAULT NULL, + `flag_uniqueid` tinyint(1) unsigned DEFAULT NULL, + `flag_bindonequip` tinyint(1) unsigned DEFAULT NULL, + `flag_dropannounce` tinyint(1) unsigned DEFAULT NULL, + `flag_noconsume` tinyint(1) unsigned DEFAULT NULL, + `flag_dropeffect` varchar(20) DEFAULT NULL, + `delay_duration` bigint(20) unsigned DEFAULT NULL, + `delay_status` varchar(30) DEFAULT NULL, + `stack_amount` smallint(5) unsigned DEFAULT NULL, + `stack_inventory` tinyint(1) unsigned DEFAULT NULL, + `stack_cart` tinyint(1) unsigned DEFAULT NULL, + `stack_storage` tinyint(1) unsigned DEFAULT NULL, + `stack_guildstorage` tinyint(1) unsigned DEFAULT NULL, + `nouse_override` smallint(5) unsigned DEFAULT NULL, + `nouse_sitting` tinyint(1) unsigned DEFAULT NULL, + `trade_override` smallint(5) unsigned DEFAULT NULL, + `trade_nodrop` tinyint(1) unsigned DEFAULT NULL, + `trade_notrade` tinyint(1) unsigned DEFAULT NULL, + `trade_tradepartner` tinyint(1) unsigned DEFAULT NULL, + `trade_nosell` tinyint(1) unsigned DEFAULT NULL, + `trade_nocart` tinyint(1) unsigned DEFAULT NULL, + `trade_nostorage` tinyint(1) unsigned DEFAULT NULL, + `trade_noguildstorage` tinyint(1) unsigned DEFAULT NULL, + `trade_nomail` tinyint(1) unsigned DEFAULT NULL, + `trade_noauction` tinyint(1) unsigned DEFAULT NULL, + `script` text, + `equip_script` text, + `unequip_script` text, + PRIMARY KEY (`id`), + UNIQUE INDEX `UniqueAegisName` (`name_aegis`) +) ENGINE=MyISAM; diff --git a/sql-files/item_db_re_equip.sql b/sql-files/item_db_re_equip.sql index cc156415bb..dc7c208ef4 100644 --- a/sql-files/item_db_re_equip.sql +++ b/sql-files/item_db_re_equip.sql @@ -1,120 +1,7 @@ # -# Table structure for table `item_db_re` +# Table data for table `item_db_re` # -DROP TABLE IF EXISTS `item_db_re`; -CREATE TABLE `item_db_re` ( - `id` int(10) unsigned NOT NULL DEFAULT '0', - `name_aegis` varchar(50) NOT NULL DEFAULT '', - `name_english` varchar(50) NOT NULL DEFAULT '', - `type` varchar(20) DEFAULT NULL, - `subtype` varchar(20) DEFAULT NULL, - `price_buy` mediumint(8) unsigned DEFAULT NULL, - `price_sell` mediumint(8) unsigned DEFAULT NULL, - `weight` smallint(5) unsigned DEFAULT NULL, - `attack` smallint(5) unsigned DEFAULT NULL, - `magic_attack` smallint(5) unsigned DEFAULT NULL, - `defense` smallint(5) unsigned DEFAULT NULL, - `range` tinyint(2) unsigned DEFAULT NULL, - `slots` tinyint(2) unsigned DEFAULT NULL, - `job_all` tinyint(1) unsigned DEFAULT NULL, - `job_acolyte` tinyint(1) unsigned DEFAULT NULL, - `job_alchemist` tinyint(1) unsigned DEFAULT NULL, - `job_archer` tinyint(1) unsigned DEFAULT NULL, - `job_assassin` tinyint(1) unsigned DEFAULT NULL, - `job_barddancer` tinyint(1) unsigned DEFAULT NULL, - `job_blacksmith` tinyint(1) unsigned DEFAULT NULL, - `job_crusader` tinyint(1) unsigned DEFAULT NULL, - `job_gunslinger` tinyint(1) unsigned DEFAULT NULL, - `job_hunter` tinyint(1) unsigned DEFAULT NULL, - `job_kagerouoboro` tinyint(1) unsigned DEFAULT NULL, - `job_knight` tinyint(1) unsigned DEFAULT NULL, - `job_mage` tinyint(1) unsigned DEFAULT NULL, - `job_merchant` tinyint(1) unsigned DEFAULT NULL, - `job_monk` tinyint(1) unsigned DEFAULT NULL, - `job_ninja` tinyint(1) unsigned DEFAULT NULL, - `job_novice` tinyint(1) unsigned DEFAULT NULL, - `job_priest` tinyint(1) unsigned DEFAULT NULL, - `job_rebellion` tinyint(1) unsigned DEFAULT NULL, - `job_rogue` tinyint(1) unsigned DEFAULT NULL, - `job_sage` tinyint(1) unsigned DEFAULT NULL, - `job_soullinker` tinyint(1) unsigned DEFAULT NULL, - `job_stargladiator` tinyint(1) unsigned DEFAULT NULL, - `job_summoner` tinyint(1) unsigned DEFAULT NULL, - `job_supernovice` tinyint(1) unsigned DEFAULT NULL, - `job_swordman` tinyint(1) unsigned DEFAULT NULL, - `job_taekwon` tinyint(1) unsigned DEFAULT NULL, - `job_thief` tinyint(1) unsigned DEFAULT NULL, - `job_wizard` tinyint(1) unsigned DEFAULT NULL, - `class_all` tinyint(1) unsigned DEFAULT NULL, - `class_normal` tinyint(1) unsigned DEFAULT NULL, - `class_upper` tinyint(1) unsigned DEFAULT NULL, - `class_baby` tinyint(1) unsigned DEFAULT NULL, - `class_third` tinyint(1) unsigned DEFAULT NULL, - `class_third_upper` tinyint(1) unsigned DEFAULT NULL, - `class_third_baby` tinyint(1) unsigned DEFAULT NULL, - `gender` varchar(10) DEFAULT NULL, - `location_head_top` tinyint(1) unsigned DEFAULT NULL, - `location_head_mid` tinyint(1) unsigned DEFAULT NULL, - `location_head_low` tinyint(1) unsigned DEFAULT NULL, - `location_armor` tinyint(1) unsigned DEFAULT NULL, - `location_right_hand` tinyint(1) unsigned DEFAULT NULL, - `location_left_hand` tinyint(1) unsigned DEFAULT NULL, - `location_garment` tinyint(1) unsigned DEFAULT NULL, - `location_shoes` tinyint(1) unsigned DEFAULT NULL, - `location_right_accessory` tinyint(1) unsigned DEFAULT NULL, - `location_left_accessory` tinyint(1) unsigned DEFAULT NULL, - `location_costume_head_top` tinyint(1) unsigned DEFAULT NULL, - `location_costume_head_mid` tinyint(1) unsigned DEFAULT NULL, - `location_costume_head_low` tinyint(1) unsigned DEFAULT NULL, - `location_costume_garment` tinyint(1) unsigned DEFAULT NULL, - `location_ammo` tinyint(1) unsigned DEFAULT NULL, - `location_shadow_armor` tinyint(1) unsigned DEFAULT NULL, - `location_shadow_weapon` tinyint(1) unsigned DEFAULT NULL, - `location_shadow_shield` tinyint(1) unsigned DEFAULT NULL, - `location_shadow_shoes` tinyint(1) unsigned DEFAULT NULL, - `location_shadow_right_accessory` tinyint(1) unsigned DEFAULT NULL, - `location_shadow_left_accessory` tinyint(1) unsigned DEFAULT NULL, - `weapon_level` tinyint(1) unsigned DEFAULT NULL, - `equip_level_min` tinyint(3) unsigned DEFAULT NULL, - `equip_level_max` tinyint(3) unsigned DEFAULT NULL, - `refineable` tinyint(1) unsigned DEFAULT NULL, - `view` smallint(5) unsigned DEFAULT NULL, - `alias_name` varchar(50) DEFAULT NULL, - `flag_buyingstore` tinyint(1) unsigned DEFAULT NULL, - `flag_deadbranch` tinyint(1) unsigned DEFAULT NULL, - `flag_container` tinyint(1) unsigned DEFAULT NULL, - `flag_uniqueid` tinyint(1) unsigned DEFAULT NULL, - `flag_bindonequip` tinyint(1) unsigned DEFAULT NULL, - `flag_dropannounce` tinyint(1) unsigned DEFAULT NULL, - `flag_noconsume` tinyint(1) unsigned DEFAULT NULL, - `flag_dropeffect` varchar(20) DEFAULT NULL, - `delay_duration` bigint(20) unsigned DEFAULT NULL, - `delay_status` varchar(30) DEFAULT NULL, - `stack_amount` smallint(5) unsigned DEFAULT NULL, - `stack_inventory` tinyint(1) unsigned DEFAULT NULL, - `stack_cart` tinyint(1) unsigned DEFAULT NULL, - `stack_storage` tinyint(1) unsigned DEFAULT NULL, - `stack_guildstorage` tinyint(1) unsigned DEFAULT NULL, - `nouse_override` smallint(5) unsigned DEFAULT NULL, - `nouse_sitting` tinyint(1) unsigned DEFAULT NULL, - `trade_override` smallint(5) unsigned DEFAULT NULL, - `trade_nodrop` tinyint(1) unsigned DEFAULT NULL, - `trade_notrade` tinyint(1) unsigned DEFAULT NULL, - `trade_tradepartner` tinyint(1) unsigned DEFAULT NULL, - `trade_nosell` tinyint(1) unsigned DEFAULT NULL, - `trade_nocart` tinyint(1) unsigned DEFAULT NULL, - `trade_nostorage` tinyint(1) unsigned DEFAULT NULL, - `trade_noguildstorage` tinyint(1) unsigned DEFAULT NULL, - `trade_nomail` tinyint(1) unsigned DEFAULT NULL, - `trade_noauction` tinyint(1) unsigned DEFAULT NULL, - `script` text, - `equip_script` text, - `unequip_script` text, - PRIMARY KEY (`id`), - UNIQUE INDEX `UniqueAegisName` (`name_aegis`) -) ENGINE=MyISAM; - REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1101,'Sword','Sword','Weapon','1hSword',100,500,25,1,3,true,true,true,true,true,true,true,true,true,true,true,true,1,2,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1102,'Sword_','Sword','Weapon','1hSword',100,500,25,1,4,true,true,true,true,true,true,true,true,true,true,true,true,1,2,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_novice`,`job_rogue`,`job_supernovice`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1103,'Sword__','Sword','Weapon','1hSword',100,500,25,1,true,true,true,true,true,true,true,true,true,true,true,true,1,2,true); diff --git a/sql-files/item_db_re_etc.sql b/sql-files/item_db_re_etc.sql index cfacfde576..aa320943de 100644 --- a/sql-files/item_db_re_etc.sql +++ b/sql-files/item_db_re_etc.sql @@ -1,120 +1,7 @@ # -# Table structure for table `item_db_re` +# Table data for table `item_db_re` # -DROP TABLE IF EXISTS `item_db_re`; -CREATE TABLE `item_db_re` ( - `id` int(10) unsigned NOT NULL DEFAULT '0', - `name_aegis` varchar(50) NOT NULL DEFAULT '', - `name_english` varchar(50) NOT NULL DEFAULT '', - `type` varchar(20) DEFAULT NULL, - `subtype` varchar(20) DEFAULT NULL, - `price_buy` mediumint(8) unsigned DEFAULT NULL, - `price_sell` mediumint(8) unsigned DEFAULT NULL, - `weight` smallint(5) unsigned DEFAULT NULL, - `attack` smallint(5) unsigned DEFAULT NULL, - `magic_attack` smallint(5) unsigned DEFAULT NULL, - `defense` smallint(5) unsigned DEFAULT NULL, - `range` tinyint(2) unsigned DEFAULT NULL, - `slots` tinyint(2) unsigned DEFAULT NULL, - `job_all` tinyint(1) unsigned DEFAULT NULL, - `job_acolyte` tinyint(1) unsigned DEFAULT NULL, - `job_alchemist` tinyint(1) unsigned DEFAULT NULL, - `job_archer` tinyint(1) unsigned DEFAULT NULL, - `job_assassin` tinyint(1) unsigned DEFAULT NULL, - `job_barddancer` tinyint(1) unsigned DEFAULT NULL, - `job_blacksmith` tinyint(1) unsigned DEFAULT NULL, - `job_crusader` tinyint(1) unsigned DEFAULT NULL, - `job_gunslinger` tinyint(1) unsigned DEFAULT NULL, - `job_hunter` tinyint(1) unsigned DEFAULT NULL, - `job_kagerouoboro` tinyint(1) unsigned DEFAULT NULL, - `job_knight` tinyint(1) unsigned DEFAULT NULL, - `job_mage` tinyint(1) unsigned DEFAULT NULL, - `job_merchant` tinyint(1) unsigned DEFAULT NULL, - `job_monk` tinyint(1) unsigned DEFAULT NULL, - `job_ninja` tinyint(1) unsigned DEFAULT NULL, - `job_novice` tinyint(1) unsigned DEFAULT NULL, - `job_priest` tinyint(1) unsigned DEFAULT NULL, - `job_rebellion` tinyint(1) unsigned DEFAULT NULL, - `job_rogue` tinyint(1) unsigned DEFAULT NULL, - `job_sage` tinyint(1) unsigned DEFAULT NULL, - `job_soullinker` tinyint(1) unsigned DEFAULT NULL, - `job_stargladiator` tinyint(1) unsigned DEFAULT NULL, - `job_summoner` tinyint(1) unsigned DEFAULT NULL, - `job_supernovice` tinyint(1) unsigned DEFAULT NULL, - `job_swordman` tinyint(1) unsigned DEFAULT NULL, - `job_taekwon` tinyint(1) unsigned DEFAULT NULL, - `job_thief` tinyint(1) unsigned DEFAULT NULL, - `job_wizard` tinyint(1) unsigned DEFAULT NULL, - `class_all` tinyint(1) unsigned DEFAULT NULL, - `class_normal` tinyint(1) unsigned DEFAULT NULL, - `class_upper` tinyint(1) unsigned DEFAULT NULL, - `class_baby` tinyint(1) unsigned DEFAULT NULL, - `class_third` tinyint(1) unsigned DEFAULT NULL, - `class_third_upper` tinyint(1) unsigned DEFAULT NULL, - `class_third_baby` tinyint(1) unsigned DEFAULT NULL, - `gender` varchar(10) DEFAULT NULL, - `location_head_top` tinyint(1) unsigned DEFAULT NULL, - `location_head_mid` tinyint(1) unsigned DEFAULT NULL, - `location_head_low` tinyint(1) unsigned DEFAULT NULL, - `location_armor` tinyint(1) unsigned DEFAULT NULL, - `location_right_hand` tinyint(1) unsigned DEFAULT NULL, - `location_left_hand` tinyint(1) unsigned DEFAULT NULL, - `location_garment` tinyint(1) unsigned DEFAULT NULL, - `location_shoes` tinyint(1) unsigned DEFAULT NULL, - `location_right_accessory` tinyint(1) unsigned DEFAULT NULL, - `location_left_accessory` tinyint(1) unsigned DEFAULT NULL, - `location_costume_head_top` tinyint(1) unsigned DEFAULT NULL, - `location_costume_head_mid` tinyint(1) unsigned DEFAULT NULL, - `location_costume_head_low` tinyint(1) unsigned DEFAULT NULL, - `location_costume_garment` tinyint(1) unsigned DEFAULT NULL, - `location_ammo` tinyint(1) unsigned DEFAULT NULL, - `location_shadow_armor` tinyint(1) unsigned DEFAULT NULL, - `location_shadow_weapon` tinyint(1) unsigned DEFAULT NULL, - `location_shadow_shield` tinyint(1) unsigned DEFAULT NULL, - `location_shadow_shoes` tinyint(1) unsigned DEFAULT NULL, - `location_shadow_right_accessory` tinyint(1) unsigned DEFAULT NULL, - `location_shadow_left_accessory` tinyint(1) unsigned DEFAULT NULL, - `weapon_level` tinyint(1) unsigned DEFAULT NULL, - `equip_level_min` tinyint(3) unsigned DEFAULT NULL, - `equip_level_max` tinyint(3) unsigned DEFAULT NULL, - `refineable` tinyint(1) unsigned DEFAULT NULL, - `view` smallint(5) unsigned DEFAULT NULL, - `alias_name` varchar(50) DEFAULT NULL, - `flag_buyingstore` tinyint(1) unsigned DEFAULT NULL, - `flag_deadbranch` tinyint(1) unsigned DEFAULT NULL, - `flag_container` tinyint(1) unsigned DEFAULT NULL, - `flag_uniqueid` tinyint(1) unsigned DEFAULT NULL, - `flag_bindonequip` tinyint(1) unsigned DEFAULT NULL, - `flag_dropannounce` tinyint(1) unsigned DEFAULT NULL, - `flag_noconsume` tinyint(1) unsigned DEFAULT NULL, - `flag_dropeffect` varchar(20) DEFAULT NULL, - `delay_duration` bigint(20) unsigned DEFAULT NULL, - `delay_status` varchar(30) DEFAULT NULL, - `stack_amount` smallint(5) unsigned DEFAULT NULL, - `stack_inventory` tinyint(1) unsigned DEFAULT NULL, - `stack_cart` tinyint(1) unsigned DEFAULT NULL, - `stack_storage` tinyint(1) unsigned DEFAULT NULL, - `stack_guildstorage` tinyint(1) unsigned DEFAULT NULL, - `nouse_override` smallint(5) unsigned DEFAULT NULL, - `nouse_sitting` tinyint(1) unsigned DEFAULT NULL, - `trade_override` smallint(5) unsigned DEFAULT NULL, - `trade_nodrop` tinyint(1) unsigned DEFAULT NULL, - `trade_notrade` tinyint(1) unsigned DEFAULT NULL, - `trade_tradepartner` tinyint(1) unsigned DEFAULT NULL, - `trade_nosell` tinyint(1) unsigned DEFAULT NULL, - `trade_nocart` tinyint(1) unsigned DEFAULT NULL, - `trade_nostorage` tinyint(1) unsigned DEFAULT NULL, - `trade_noguildstorage` tinyint(1) unsigned DEFAULT NULL, - `trade_nomail` tinyint(1) unsigned DEFAULT NULL, - `trade_noauction` tinyint(1) unsigned DEFAULT NULL, - `script` text, - `equip_script` text, - `unequip_script` text, - PRIMARY KEY (`id`), - UNIQUE INDEX `UniqueAegisName` (`name_aegis`) -) ENGINE=MyISAM; - REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (670,'Gold_Coin_Moneybag','Bag of Gold Coins','Etc',100000,400); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (672,'Copper_Coin_Moneybag','Bag of Bronze Coins','Etc',1000,400); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (674,'Mithril_Coin','Mithril Coin','Etc',5000,40); diff --git a/sql-files/item_db_re_usable.sql b/sql-files/item_db_re_usable.sql index 9c583b574e..a741e8f0f5 100644 --- a/sql-files/item_db_re_usable.sql +++ b/sql-files/item_db_re_usable.sql @@ -1,120 +1,7 @@ # -# Table structure for table `item_db_re` +# Table data for table `item_db_re` # -DROP TABLE IF EXISTS `item_db_re`; -CREATE TABLE `item_db_re` ( - `id` int(10) unsigned NOT NULL DEFAULT '0', - `name_aegis` varchar(50) NOT NULL DEFAULT '', - `name_english` varchar(50) NOT NULL DEFAULT '', - `type` varchar(20) DEFAULT NULL, - `subtype` varchar(20) DEFAULT NULL, - `price_buy` mediumint(8) unsigned DEFAULT NULL, - `price_sell` mediumint(8) unsigned DEFAULT NULL, - `weight` smallint(5) unsigned DEFAULT NULL, - `attack` smallint(5) unsigned DEFAULT NULL, - `magic_attack` smallint(5) unsigned DEFAULT NULL, - `defense` smallint(5) unsigned DEFAULT NULL, - `range` tinyint(2) unsigned DEFAULT NULL, - `slots` tinyint(2) unsigned DEFAULT NULL, - `job_all` tinyint(1) unsigned DEFAULT NULL, - `job_acolyte` tinyint(1) unsigned DEFAULT NULL, - `job_alchemist` tinyint(1) unsigned DEFAULT NULL, - `job_archer` tinyint(1) unsigned DEFAULT NULL, - `job_assassin` tinyint(1) unsigned DEFAULT NULL, - `job_barddancer` tinyint(1) unsigned DEFAULT NULL, - `job_blacksmith` tinyint(1) unsigned DEFAULT NULL, - `job_crusader` tinyint(1) unsigned DEFAULT NULL, - `job_gunslinger` tinyint(1) unsigned DEFAULT NULL, - `job_hunter` tinyint(1) unsigned DEFAULT NULL, - `job_kagerouoboro` tinyint(1) unsigned DEFAULT NULL, - `job_knight` tinyint(1) unsigned DEFAULT NULL, - `job_mage` tinyint(1) unsigned DEFAULT NULL, - `job_merchant` tinyint(1) unsigned DEFAULT NULL, - `job_monk` tinyint(1) unsigned DEFAULT NULL, - `job_ninja` tinyint(1) unsigned DEFAULT NULL, - `job_novice` tinyint(1) unsigned DEFAULT NULL, - `job_priest` tinyint(1) unsigned DEFAULT NULL, - `job_rebellion` tinyint(1) unsigned DEFAULT NULL, - `job_rogue` tinyint(1) unsigned DEFAULT NULL, - `job_sage` tinyint(1) unsigned DEFAULT NULL, - `job_soullinker` tinyint(1) unsigned DEFAULT NULL, - `job_stargladiator` tinyint(1) unsigned DEFAULT NULL, - `job_summoner` tinyint(1) unsigned DEFAULT NULL, - `job_supernovice` tinyint(1) unsigned DEFAULT NULL, - `job_swordman` tinyint(1) unsigned DEFAULT NULL, - `job_taekwon` tinyint(1) unsigned DEFAULT NULL, - `job_thief` tinyint(1) unsigned DEFAULT NULL, - `job_wizard` tinyint(1) unsigned DEFAULT NULL, - `class_all` tinyint(1) unsigned DEFAULT NULL, - `class_normal` tinyint(1) unsigned DEFAULT NULL, - `class_upper` tinyint(1) unsigned DEFAULT NULL, - `class_baby` tinyint(1) unsigned DEFAULT NULL, - `class_third` tinyint(1) unsigned DEFAULT NULL, - `class_third_upper` tinyint(1) unsigned DEFAULT NULL, - `class_third_baby` tinyint(1) unsigned DEFAULT NULL, - `gender` varchar(10) DEFAULT NULL, - `location_head_top` tinyint(1) unsigned DEFAULT NULL, - `location_head_mid` tinyint(1) unsigned DEFAULT NULL, - `location_head_low` tinyint(1) unsigned DEFAULT NULL, - `location_armor` tinyint(1) unsigned DEFAULT NULL, - `location_right_hand` tinyint(1) unsigned DEFAULT NULL, - `location_left_hand` tinyint(1) unsigned DEFAULT NULL, - `location_garment` tinyint(1) unsigned DEFAULT NULL, - `location_shoes` tinyint(1) unsigned DEFAULT NULL, - `location_right_accessory` tinyint(1) unsigned DEFAULT NULL, - `location_left_accessory` tinyint(1) unsigned DEFAULT NULL, - `location_costume_head_top` tinyint(1) unsigned DEFAULT NULL, - `location_costume_head_mid` tinyint(1) unsigned DEFAULT NULL, - `location_costume_head_low` tinyint(1) unsigned DEFAULT NULL, - `location_costume_garment` tinyint(1) unsigned DEFAULT NULL, - `location_ammo` tinyint(1) unsigned DEFAULT NULL, - `location_shadow_armor` tinyint(1) unsigned DEFAULT NULL, - `location_shadow_weapon` tinyint(1) unsigned DEFAULT NULL, - `location_shadow_shield` tinyint(1) unsigned DEFAULT NULL, - `location_shadow_shoes` tinyint(1) unsigned DEFAULT NULL, - `location_shadow_right_accessory` tinyint(1) unsigned DEFAULT NULL, - `location_shadow_left_accessory` tinyint(1) unsigned DEFAULT NULL, - `weapon_level` tinyint(1) unsigned DEFAULT NULL, - `equip_level_min` tinyint(3) unsigned DEFAULT NULL, - `equip_level_max` tinyint(3) unsigned DEFAULT NULL, - `refineable` tinyint(1) unsigned DEFAULT NULL, - `view` smallint(5) unsigned DEFAULT NULL, - `alias_name` varchar(50) DEFAULT NULL, - `flag_buyingstore` tinyint(1) unsigned DEFAULT NULL, - `flag_deadbranch` tinyint(1) unsigned DEFAULT NULL, - `flag_container` tinyint(1) unsigned DEFAULT NULL, - `flag_uniqueid` tinyint(1) unsigned DEFAULT NULL, - `flag_bindonequip` tinyint(1) unsigned DEFAULT NULL, - `flag_dropannounce` tinyint(1) unsigned DEFAULT NULL, - `flag_noconsume` tinyint(1) unsigned DEFAULT NULL, - `flag_dropeffect` varchar(20) DEFAULT NULL, - `delay_duration` bigint(20) unsigned DEFAULT NULL, - `delay_status` varchar(30) DEFAULT NULL, - `stack_amount` smallint(5) unsigned DEFAULT NULL, - `stack_inventory` tinyint(1) unsigned DEFAULT NULL, - `stack_cart` tinyint(1) unsigned DEFAULT NULL, - `stack_storage` tinyint(1) unsigned DEFAULT NULL, - `stack_guildstorage` tinyint(1) unsigned DEFAULT NULL, - `nouse_override` smallint(5) unsigned DEFAULT NULL, - `nouse_sitting` tinyint(1) unsigned DEFAULT NULL, - `trade_override` smallint(5) unsigned DEFAULT NULL, - `trade_nodrop` tinyint(1) unsigned DEFAULT NULL, - `trade_notrade` tinyint(1) unsigned DEFAULT NULL, - `trade_tradepartner` tinyint(1) unsigned DEFAULT NULL, - `trade_nosell` tinyint(1) unsigned DEFAULT NULL, - `trade_nocart` tinyint(1) unsigned DEFAULT NULL, - `trade_nostorage` tinyint(1) unsigned DEFAULT NULL, - `trade_noguildstorage` tinyint(1) unsigned DEFAULT NULL, - `trade_nomail` tinyint(1) unsigned DEFAULT NULL, - `trade_noauction` tinyint(1) unsigned DEFAULT NULL, - `script` text, - `equip_script` text, - `unequip_script` text, - PRIMARY KEY (`id`), - UNIQUE INDEX `UniqueAegisName` (`name_aegis`) -) ENGINE=MyISAM; - REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`script`) VALUES (500,'Choko_Gangjeong','Choko Gangjeong','Healing',10,'percentheal 10,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (501,'Red_Potion','Red Potion','Healing',10,70,'itemheal rand(45,65),0;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (502,'Orange_Potion','Orange Potion','Healing',50,100,'itemheal rand(105,145),0;'); diff --git a/sql-files/item_db_usable.sql b/sql-files/item_db_usable.sql index db40c3a90f..a3668ec979 100644 --- a/sql-files/item_db_usable.sql +++ b/sql-files/item_db_usable.sql @@ -1,113 +1,7 @@ # -# Table structure for table `item_db` +# Table data for table `item_db` # -DROP TABLE IF EXISTS `item_db`; -CREATE TABLE `item_db` ( - `id` int(10) unsigned NOT NULL DEFAULT '0', - `name_aegis` varchar(50) NOT NULL DEFAULT '', - `name_english` varchar(50) NOT NULL DEFAULT '', - `type` varchar(20) DEFAULT NULL, - `subtype` varchar(20) DEFAULT NULL, - `price_buy` mediumint(8) unsigned DEFAULT NULL, - `price_sell` mediumint(8) unsigned DEFAULT NULL, - `weight` smallint(5) unsigned DEFAULT NULL, - `attack` smallint(5) unsigned DEFAULT NULL, - `defense` smallint(5) unsigned DEFAULT NULL, - `range` tinyint(2) unsigned DEFAULT NULL, - `slots` tinyint(2) unsigned DEFAULT NULL, - `job_all` tinyint(1) unsigned DEFAULT NULL, - `job_acolyte` tinyint(1) unsigned DEFAULT NULL, - `job_alchemist` tinyint(1) unsigned DEFAULT NULL, - `job_archer` tinyint(1) unsigned DEFAULT NULL, - `job_assassin` tinyint(1) unsigned DEFAULT NULL, - `job_barddancer` tinyint(1) unsigned DEFAULT NULL, - `job_blacksmith` tinyint(1) unsigned DEFAULT NULL, - `job_crusader` tinyint(1) unsigned DEFAULT NULL, - `job_gunslinger` tinyint(1) unsigned DEFAULT NULL, - `job_hunter` tinyint(1) unsigned DEFAULT NULL, - `job_knight` tinyint(1) unsigned DEFAULT NULL, - `job_mage` tinyint(1) unsigned DEFAULT NULL, - `job_merchant` tinyint(1) unsigned DEFAULT NULL, - `job_monk` tinyint(1) unsigned DEFAULT NULL, - `job_ninja` tinyint(1) unsigned DEFAULT NULL, - `job_novice` tinyint(1) unsigned DEFAULT NULL, - `job_priest` tinyint(1) unsigned DEFAULT NULL, - `job_rogue` tinyint(1) unsigned DEFAULT NULL, - `job_sage` tinyint(1) unsigned DEFAULT NULL, - `job_soullinker` tinyint(1) unsigned DEFAULT NULL, - `job_stargladiator` tinyint(1) unsigned DEFAULT NULL, - `job_supernovice` tinyint(1) unsigned DEFAULT NULL, - `job_swordman` tinyint(1) unsigned DEFAULT NULL, - `job_taekwon` tinyint(1) unsigned DEFAULT NULL, - `job_thief` tinyint(1) unsigned DEFAULT NULL, - `job_wizard` tinyint(1) unsigned DEFAULT NULL, - `class_all` tinyint(1) unsigned DEFAULT NULL, - `class_normal` tinyint(1) unsigned DEFAULT NULL, - `class_upper` tinyint(1) unsigned DEFAULT NULL, - `class_baby` tinyint(1) unsigned DEFAULT NULL, - `gender` varchar(10) DEFAULT NULL, - `location_head_top` tinyint(1) unsigned DEFAULT NULL, - `location_head_mid` tinyint(1) unsigned DEFAULT NULL, - `location_head_low` tinyint(1) unsigned DEFAULT NULL, - `location_armor` tinyint(1) unsigned DEFAULT NULL, - `location_right_hand` tinyint(1) unsigned DEFAULT NULL, - `location_left_hand` tinyint(1) unsigned DEFAULT NULL, - `location_garment` tinyint(1) unsigned DEFAULT NULL, - `location_shoes` tinyint(1) unsigned DEFAULT NULL, - `location_right_accessory` tinyint(1) unsigned DEFAULT NULL, - `location_left_accessory` tinyint(1) unsigned DEFAULT NULL, - `location_costume_head_top` tinyint(1) unsigned DEFAULT NULL, - `location_costume_head_mid` tinyint(1) unsigned DEFAULT NULL, - `location_costume_head_low` tinyint(1) unsigned DEFAULT NULL, - `location_costume_garment` tinyint(1) unsigned DEFAULT NULL, - `location_ammo` tinyint(1) unsigned DEFAULT NULL, - `location_shadow_armor` tinyint(1) unsigned DEFAULT NULL, - `location_shadow_weapon` tinyint(1) unsigned DEFAULT NULL, - `location_shadow_shield` tinyint(1) unsigned DEFAULT NULL, - `location_shadow_shoes` tinyint(1) unsigned DEFAULT NULL, - `location_shadow_right_accessory` tinyint(1) unsigned DEFAULT NULL, - `location_shadow_left_accessory` tinyint(1) unsigned DEFAULT NULL, - `weapon_level` tinyint(1) unsigned DEFAULT NULL, - `equip_level_min` tinyint(3) unsigned DEFAULT NULL, - `equip_level_max` tinyint(3) unsigned DEFAULT NULL, - `refineable` tinyint(1) unsigned DEFAULT NULL, - `view` smallint(5) unsigned DEFAULT NULL, - `alias_name` varchar(50) DEFAULT NULL, - `flag_buyingstore` tinyint(1) unsigned DEFAULT NULL, - `flag_deadbranch` tinyint(1) unsigned DEFAULT NULL, - `flag_container` tinyint(1) unsigned DEFAULT NULL, - `flag_uniqueid` tinyint(1) unsigned DEFAULT NULL, - `flag_bindonequip` tinyint(1) unsigned DEFAULT NULL, - `flag_dropannounce` tinyint(1) unsigned DEFAULT NULL, - `flag_noconsume` tinyint(1) unsigned DEFAULT NULL, - `flag_dropeffect` varchar(20) DEFAULT NULL, - `delay_duration` bigint(20) unsigned DEFAULT NULL, - `delay_status` varchar(30) DEFAULT NULL, - `stack_amount` smallint(5) unsigned DEFAULT NULL, - `stack_inventory` tinyint(1) unsigned DEFAULT NULL, - `stack_cart` tinyint(1) unsigned DEFAULT NULL, - `stack_storage` tinyint(1) unsigned DEFAULT NULL, - `stack_guildstorage` tinyint(1) unsigned DEFAULT NULL, - `nouse_override` smallint(5) unsigned DEFAULT NULL, - `nouse_sitting` tinyint(1) unsigned DEFAULT NULL, - `trade_override` smallint(5) unsigned DEFAULT NULL, - `trade_nodrop` tinyint(1) unsigned DEFAULT NULL, - `trade_notrade` tinyint(1) unsigned DEFAULT NULL, - `trade_tradepartner` tinyint(1) unsigned DEFAULT NULL, - `trade_nosell` tinyint(1) unsigned DEFAULT NULL, - `trade_nocart` tinyint(1) unsigned DEFAULT NULL, - `trade_nostorage` tinyint(1) unsigned DEFAULT NULL, - `trade_noguildstorage` tinyint(1) unsigned DEFAULT NULL, - `trade_nomail` tinyint(1) unsigned DEFAULT NULL, - `trade_noauction` tinyint(1) unsigned DEFAULT NULL, - `script` text, - `equip_script` text, - `unequip_script` text, - PRIMARY KEY (`id`), - UNIQUE INDEX `UniqueAegisName` (`name_aegis`) -) ENGINE=MyISAM; - REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (501,'Red_Potion','Red Potion','Healing',50,70,'itemheal rand(45,65),0;'); REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (502,'Orange_Potion','Orange Potion','Healing',200,100,'itemheal rand(105,145),0;'); REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (503,'Yellow_Potion','Yellow Potion','Healing',550,130,'itemheal rand(175,235),0;'); diff --git a/src/map/itemdb.cpp b/src/map/itemdb.cpp index 6af3cd92f5..a3f4e4eb34 100644 --- a/src/map/itemdb.cpp +++ b/src/map/itemdb.cpp @@ -307,7 +307,7 @@ uint64 ItemDatabase::parseBodyNode(const YAML::Node &node) { bool active; - if (!this->asBool(jobNode, jobName.c_str(), active)) + if (!this->asBool(jobNode, jobName, active)) return 0; itemdb_jobid2mapid(item->class_base, static_cast(constant), active); @@ -353,7 +353,7 @@ uint64 ItemDatabase::parseBodyNode(const YAML::Node &node) { bool active; - if (!this->asBool(classNode, className.c_str(), active)) + if (!this->asBool(classNode, className, active)) return 0; if (active) @@ -404,7 +404,7 @@ uint64 ItemDatabase::parseBodyNode(const YAML::Node &node) { bool active; - if (!this->asBool(locationNode, equipName.c_str(), active)) + if (!this->asBool(locationNode, equipName, active)) return 0; if (active) { @@ -1584,7 +1584,7 @@ static bool itemdb_read_group(char* str[], int columns, int current) { // Check if the item can be found by id if( ( entry.nameid = strtoul(str[1], nullptr, 10) ) == 0 || !itemdb_exists( entry.nameid ) ){ // Otherwise look it up by name - struct item_data *id = itemdb_searchname(str[1]); + struct item_data *id = itemdb_search_aegisname(str[1]); if( id ){ // Found the item with a name lookup @@ -1934,268 +1934,260 @@ static char itemdb_gendercheck(struct item_data *id) * @param str: Array of parsed SQL data * @return True on success or false otherwise */ -static bool itemdb_read_sqldb_sub(char **str) { +static bool itemdb_read_sqldb_sub(std::vector str) { YAML::Node node; - int index = -1; + int32 index = -1; - node["Id"] = strtoul(str[++index], nullptr, 10); + node["Id"] = std::stoul(str[++index], nullptr, 10); node["AegisName"] = str[++index]; node["Name"] = str[++index]; node["Type"] = str[++index]; - if (*str[++index]) + if (!str[++index].empty()) node["SubType"] = str[index]; - if (atoi(str[++index]) != 0) - node["Buy"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - node["Sell"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - node["Weight"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - node["Attack"] = atoi(str[index]); -#ifdef RENEWAL - if (atoi(str[++index]) != 0) - node["MagicAttack"] = atoi(str[index]); -#endif - if (atoi(str[++index]) != 0) - node["Defense"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - node["Range"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - node["Slots"] = atoi(str[index]); + if (!str[++index].empty()) + node["Buy"] = std::stoi(str[index]); + if (!str[++index].empty()) + node["Sell"] = std::stoi(str[index]); + if (!str[++index].empty()) + node["Weight"] = std::stoi(str[index]); + if (!str[++index].empty()) + node["Attack"] = std::stoi(str[index]); + if (!str[++index].empty()) + node["Defense"] = std::stoi(str[index]); + if (!str[++index].empty()) + node["Range"] = std::stoi(str[index]); + if (!str[++index].empty()) + node["Slots"] = std::stoi(str[index]); YAML::Node jobs; - if (atoi(str[++index]) != 0) - jobs["All"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - jobs["Acolyte"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - jobs["Alchemist"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - jobs["Archer"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - jobs["Assassin"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - jobs["BardDancer"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - jobs["Blacksmith"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - jobs["Crusader"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - jobs["Gunslinger"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - jobs["Hunter"] = atoi(str[index]); -#ifdef RENEWAL - if (atoi(str[++index]) != 0) - jobs["KagerouOboro"] = atoi(str[index]); -#endif - if (atoi(str[++index]) != 0) - jobs["Knight"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - jobs["Mage"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - jobs["Merchant"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - jobs["Monk"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - jobs["Ninja"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - jobs["Novice"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - jobs["Priest"] = atoi(str[index]); -#ifdef RENEWAL - if (atoi(str[++index]) != 0) - jobs["Rebellion"] = atoi(str[index]); -#endif - if (atoi(str[++index]) != 0) - jobs["Rogue"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - jobs["Sage"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - jobs["SoulLinker"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - jobs["StarGladiator"] = atoi(str[index]); -#ifdef RENEWAL - if (atoi(str[++index]) != 0) - jobs["Summoner"] = atoi(str[index]); -#endif - if (atoi(str[++index]) != 0) - jobs["SuperNovice"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - jobs["Swordman"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - jobs["Taekwon"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - jobs["Thief"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - jobs["Wizard"] = atoi(str[index]); - node["Jobs"] = jobs; + if (!str[++index].empty()) + jobs["All"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + jobs["Acolyte"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + jobs["Alchemist"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + jobs["Archer"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + jobs["Assassin"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + jobs["BardDancer"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + jobs["Blacksmith"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + jobs["Crusader"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + jobs["Gunslinger"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + jobs["Hunter"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + jobs["Knight"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + jobs["Mage"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + jobs["Merchant"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + jobs["Monk"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + jobs["Ninja"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + jobs["Novice"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + jobs["Priest"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + jobs["Rogue"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + jobs["Sage"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + jobs["SoulLinker"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + jobs["StarGladiator"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + jobs["SuperNovice"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + jobs["Swordman"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + jobs["Taekwon"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + jobs["Thief"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + jobs["Wizard"] = std::stoi(str[index]) ? "true" : "false"; YAML::Node classes; - if (atoi(str[++index]) != 0) - classes["All"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - classes["Normal"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - classes["Upper"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - classes["Baby"] = atoi(str[index]); -#ifdef RENEWAL - if (atoi(str[++index]) != 0) - classes["Third"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - classes["Third_Upper"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - classes["Third_Baby"] = atoi(str[index]); -#endif - node["Classes"] = classes; + if (!str[++index].empty()) + classes["All"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + classes["Normal"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + classes["Upper"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + classes["Baby"] = std::stoi(str[index]) ? "true" : "false"; - if (atoi(str[++index]) != 0) + if (!str[++index].empty()) node["Gender"] = str[index]; YAML::Node locations; - if (atoi(str[++index]) != 0) - locations["All"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - locations["Head_Top"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - locations["Head_Mid"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - locations["Head_Low"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - locations["Armor"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - locations["Left_Hand"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - locations["Right_Hand"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - locations["Garment"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - locations["Shoes"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - locations["Right_Accessory"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - locations["Left_Accessory"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - locations["Costume_Head_Top"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - locations["Costume_Head_Mid"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - locations["Costume_Head_Low"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - locations["Costume_Garment"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - locations["Ammo"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - locations["Shadow_Armor"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - locations["Shadow_Weapon"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - locations["Shadow_Shield"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - locations["Shadow_Shoes"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - locations["Shadow_Right_Accessory"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - locations["Shadow_Left_Accessory"] = atoi(str[index]); + if (!str[++index].empty()) + locations["Head_Top"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + locations["Head_Mid"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + locations["Head_Low"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + locations["Armor"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + locations["Right_Hand"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + locations["Left_Hand"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + locations["Garment"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + locations["Shoes"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + locations["Right_Accessory"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + locations["Left_Accessory"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + locations["Costume_Head_Top"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + locations["Costume_Head_Mid"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + locations["Costume_Head_Low"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + locations["Costume_Garment"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + locations["Ammo"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + locations["Shadow_Armor"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + locations["Shadow_Weapon"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + locations["Shadow_Shield"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + locations["Shadow_Shoes"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + locations["Shadow_Right_Accessory"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + locations["Shadow_Left_Accessory"] = std::stoi(str[index]) ? "true" : "false"; node["Locations"] = locations; - if (atoi(str[++index]) != 0) - node["WeaponLevel"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - node["EquipLevelMin"] = atoi(str[index]); - if (atoi(str[++index]) != 0) - node["EquipLevelMax"] = atoi(str[index]); - if (atoi(str[++index]) != 0) + if (!str[++index].empty()) + node["WeaponLevel"] = std::stoi(str[index]); + if (!str[++index].empty()) + node["EquipLevelMin"] = std::stoi(str[index]); + if (!str[++index].empty()) + node["EquipLevelMax"] = std::stoi(str[index]); + if (!str[++index].empty()) node["Refineable"] = true; - if (atoi(str[++index]) != 0) - node["View"] = atoi(str[index]); - if (*str[++index]) + if (!str[++index].empty()) + node["View"] = std::stoi(str[index]); + if (!str[++index].empty()) node["AliasName"] = str[index]; YAML::Node flags; - if (atoi(str[++index]) != 0) + if (!str[++index].empty()) flags["BuyingStore"] = true; - if (atoi(str[++index]) != 0) + if (!str[++index].empty()) flags["DeadBranch"] = true; - if (atoi(str[++index]) != 0) + if (!str[++index].empty()) flags["Container"] = true; - if (atoi(str[++index]) != 0) + if (!str[++index].empty()) flags["UniqueId"] = true; - if (atoi(str[++index]) != 0) + if (!str[++index].empty()) flags["BindOnEquip"] = true; - if (atoi(str[++index]) != 0) + if (!str[++index].empty()) flags["DropAnnounce"] = true; - if (atoi(str[++index]) != 0) + if (!str[++index].empty()) flags["NoConsume"] = true; - if (*str[++index]) + if (!str[++index].empty()) flags["DropEffect"] = str[index]; node["Flags"] = flags; YAML::Node delay; - if (atoi(str[++index]) != 0) - delay["Duration"] = atoi(str[index]); - if (*str[++index]) + if (!str[++index].empty()) + delay["Duration"] = std::stoi(str[index]); + if (!str[++index].empty()) delay["Status"] = str[index]; node["Delay"] = delay; YAML::Node stack; - if (atoi(str[++index]) != 0) - stack["Amount"] = atoi(str[index]); - if (atoi(str[++index]) != 0) + if (!str[++index].empty()) + stack["Amount"] = std::stoi(str[index]); + if (!str[++index].empty()) stack["Inventory"] = true; - if (atoi(str[++index]) != 0) + if (!str[++index].empty()) stack["Cart"] = true; - if (atoi(str[++index]) != 0) + if (!str[++index].empty()) stack["Storage"] = true; - if (atoi(str[++index]) != 0) + if (!str[++index].empty()) stack["GuildStorage"] = true; node["Stack"] = stack; YAML::Node nouse; - if (atoi(str[++index]) != 0) - nouse["Override"] = atoi(str[index]); - if (atoi(str[++index]) != 0) + if (!str[++index].empty()) + nouse["Override"] = std::stoi(str[index]); + if (!str[++index].empty()) nouse["Sitting"] = true; node["NoUse"] = nouse; YAML::Node trade; - if (atoi(str[++index]) != 0) - trade["Override"] = atoi(str[index]); - if (atoi(str[++index]) != 0) + if (!str[++index].empty()) + trade["Override"] = std::stoi(str[index]); + if (!str[++index].empty()) trade["NoDrop"] = true; - if (atoi(str[++index]) != 0) + if (!str[++index].empty()) trade["NoTrade"] = true; - if (atoi(str[++index]) != 0) + if (!str[++index].empty()) trade["TradePartner"] = true; - if (atoi(str[++index]) != 0) + if (!str[++index].empty()) trade["NoSell"] = true; - if (atoi(str[++index]) != 0) + if (!str[++index].empty()) trade["NoCart"] = true; - if (atoi(str[++index]) != 0) + if (!str[++index].empty()) trade["NoStorage"] = true; - if (atoi(str[++index]) != 0) + if (!str[++index].empty()) trade["NoGuildStorage"] = true; - if (atoi(str[++index]) != 0) + if (!str[++index].empty()) trade["NoMail"] = true; - if (atoi(str[++index]) != 0) + if (!str[++index].empty()) trade["NoAuction"] = true; node["Trade"] = trade; - if (*str[++index]) + if (!str[++index].empty()) node["Script"] = str[index]; - if (*str[++index]) + if (!str[++index].empty()) node["EquipScript"] = str[index]; - if (*str[++index]) + if (!str[++index].empty()) node["UnEquipScript"] = str[index]; +#ifdef RENEWAL + if (!str[++index].empty()) + node["MagicAttack"] = std::stoi(str[index]); + if (!str[++index].empty()) + classes["Third"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + classes["Third_Upper"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + classes["Third_Baby"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + jobs["KagerouOboro"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + jobs["Rebellion"] = std::stoi(str[index]) ? "true" : "false"; + if (!str[++index].empty()) + jobs["Summoner"] = std::stoi(str[index]) ? "true" : "false"; +#endif + + node["Classes"] = classes; + node["Jobs"] = jobs; + return item_db.parseBodyNode(node) > 0; } @@ -2207,35 +2199,46 @@ static int itemdb_read_sqldb(void) { item_table, item2_table }; - int fi; - - for( fi = 0; fi < ARRAYLENGTH(item_db_name); ++fi ) { - uint32 count = 0; + for( uint8 fi = 0; fi < ARRAYLENGTH(item_db_name); ++fi ) { // retrieve all rows from the item database - if( SQL_ERROR == Sql_Query(mmysql_handle, "SELECT * FROM `%s`", item_db_name[fi]) ) { + if( SQL_ERROR == Sql_Query(mmysql_handle, "SELECT `id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`price_sell`,`weight`,`attack`,`defense`,`range`,`slots`," + "`job_all`,`job_acolyte`,`job_alchemist`,`job_archer`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_gunslinger`,`job_hunter`,`job_knight`,`job_mage`,`job_merchant`," + "`job_monk`,`job_ninja`,`job_novice`,`job_priest`,`job_rogue`,`job_sage`,`job_soullinker`,`job_stargladiator`,`job_supernovice`,`job_swordman`,`job_taekwon`,`job_thief`,`job_wizard`," + "`class_all`,`class_normal`,`class_upper`,`class_baby`,`gender`," + "`location_head_top`,`location_head_mid`,`location_head_low`,`location_armor`,`location_right_hand`,`location_left_hand`,`location_garment`,`location_shoes`,`location_right_accessory`,`location_left_accessory`," + "`location_costume_head_top`,`location_costume_head_mid`,`location_costume_head_low`,`location_costume_garment`,`location_ammo`,`location_shadow_armor`,`location_shadow_weapon`,`location_shadow_shield`,`location_shadow_shoes`,`location_shadow_right_accessory`,`location_shadow_left_accessory`," + "`weapon_level`,`equip_level_min`,`equip_level_max`,`refineable`,`view`,`alias_name`," + "`flag_buyingstore`,`flag_deadbranch`,`flag_container`,`flag_uniqueid`,`flag_bindonequip`,`flag_dropannounce`,`flag_noconsume`,`flag_dropeffect`," + "`delay_duration`,`delay_status`,`stack_amount`,`stack_inventory`,`stack_cart`,`stack_storage`,`stack_guildstorage`,`nouse_override`,`nouse_sitting`," + "`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_tradepartner`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`,`equip_script`,`unequip_script`" +#ifdef RENEWAL + ",`magic_attack`,`class_third`,`class_third_upper`,`class_third_baby`,`job_kagerouoboro`,`job_rebellion`,`job_summoner`" +#endif + " FROM `%s`", item_db_name[fi]) ) { Sql_ShowDebug(mmysql_handle); continue; } - // process rows one by one - while( SQL_SUCCESS == Sql_NextRow(mmysql_handle) ) {// wrap the result into a TXT-compatible format - char dummy[256] = ""; -#ifdef RENEWAL - char *str[52]; - uint16 total_columns = 52; -#else - char *str[51]; - uint16 total_columns = 51; -#endif + uint32 total_columns = Sql_NumColumns(mmysql_handle); + uint64 total_rows = Sql_NumRows(mmysql_handle), rows = 0, count = 0; - for( uint16 i = 0; i < total_columns; ++i ) { - Sql_GetData(mmysql_handle, i, &str[i], nullptr); - if( str[i] == nullptr ) - str[i] = dummy; // get rid of NULL columns + // process rows one by one + while( SQL_SUCCESS == Sql_NextRow(mmysql_handle) ) { + ShowStatus( "Loading [%" PRIu64 "/%" PRIu64 "] rows from '" CL_WHITE "%s" CL_RESET "'" CL_CLL "\r", ++rows, total_rows, item_db_name[fi] ); + + std::vector data = {}; + + for( uint32 i = 0; i < total_columns; ++i ) { + char *str; + + Sql_GetData(mmysql_handle, i, &str, nullptr); + if( str == nullptr ) + str = ""; // get rid of NULL columns + data.push_back(str); } - if (!itemdb_read_sqldb_sub(str)) + if (!itemdb_read_sqldb_sub(data)) continue; ++count; } @@ -2243,7 +2246,7 @@ static int itemdb_read_sqldb(void) { // free the query result Sql_FreeResult(mmysql_handle); - ShowStatus("Done reading '" CL_WHITE "%u" CL_RESET "' entries in '" CL_WHITE "%s" CL_RESET "'.\n", count, item_db_name[fi]); + ShowStatus("Done reading '" CL_WHITE "%" PRIu64 CL_RESET "' entries in '" CL_WHITE "%s" CL_RESET "'.\n", count, item_db_name[fi]); } return 0; diff --git a/tools/ci/sql.bat b/tools/ci/sql.bat index db2cae0d82..536d1b82dd 100644 --- a/tools/ci/sql.bat +++ b/tools/ci/sql.bat @@ -10,10 +10,12 @@ set MYSQL_PWD=%DB_ROOTPW% %MYSQL% -u %DB_ROOT% %DB_NAME% -e "source sql-files\logs.sql" %MYSQL% -u %DB_ROOT% %DB_NAME% -e "source sql-files\item_cash_db.sql" %MYSQL% -u %DB_ROOT% %DB_NAME% -e "source sql-files\item_cash_db2.sql" +%MYSQL% -u %DB_ROOT% %DB_NAME% -e "source sql-files\item_db.sql" %MYSQL% -u %DB_ROOT% %DB_NAME% -e "source sql-files\item_db_usable.sql" %MYSQL% -u %DB_ROOT% %DB_NAME% -e "source sql-files\item_db_equip.sql" %MYSQL% -u %DB_ROOT% %DB_NAME% -e "source sql-files\item_db_etc.sql" %MYSQL% -u %DB_ROOT% %DB_NAME% -e "source sql-files\item_db2.sql" +%MYSQL% -u %DB_ROOT% %DB_NAME% -e "source sql-files\item_db_re.sql" %MYSQL% -u %DB_ROOT% %DB_NAME% -e "source sql-files\item_db_re_usable.sql" %MYSQL% -u %DB_ROOT% %DB_NAME% -e "source sql-files\item_db_re_equip.sql" %MYSQL% -u %DB_ROOT% %DB_NAME% -e "source sql-files\item_db_re_etc.sql" diff --git a/tools/ci/sql.sh b/tools/ci/sql.sh index 7b26adbf53..d0f0918c91 100755 --- a/tools/ci/sql.sh +++ b/tools/ci/sql.sh @@ -10,10 +10,12 @@ mysql -u $DB_ROOT $DB_NAME < sql-files/main.sql || aborterror "Unable to import mysql -u $DB_ROOT $DB_NAME < sql-files/logs.sql || aborterror "Unable to import logs database." mysql -u $DB_ROOT $DB_NAME < sql-files/item_cash_db.sql || aborterror "Unable to import cash item table." mysql -u $DB_ROOT $DB_NAME < sql-files/item_cash_db2.sql || aborterror "Unable to import cash item 2 table." +mysql -u $DB_ROOT $DB_NAME < sql-files/item_db.sql || aborterror "Unable to import pre-renewal item table structure." mysql -u $DB_ROOT $DB_NAME < sql-files/item_db_usable.sql || aborterror "Unable to import pre-renewal usable item table." mysql -u $DB_ROOT $DB_NAME < sql-files/item_db_equip.sql || aborterror "Unable to import pre-renewal equip item table." mysql -u $DB_ROOT $DB_NAME < sql-files/item_db_etc.sql || aborterror "Unable to import pre-renewal etc item table." mysql -u $DB_ROOT $DB_NAME < sql-files/item_db2.sql || aborterror "Unable to import pre-renewal item 2 table." +mysql -u $DB_ROOT $DB_NAME < sql-files/item_db_re.sql || aborterror "Unable to import renewal item table structure." mysql -u $DB_ROOT $DB_NAME < sql-files/item_db_re_usable.sql || aborterror "Unable to import renewal usable item table." mysql -u $DB_ROOT $DB_NAME < sql-files/item_db_re_equip.sql || aborterror "Unable to import renewal equip item table." mysql -u $DB_ROOT $DB_NAME < sql-files/item_db_re_etc.sql || aborterror "Unable to import renewal etc item table." From 7a4bef2ab7199f1ad2c6e7ace7aa4715220f891a Mon Sep 17 00:00:00 2001 From: Eric Liu Date: Tue, 27 Oct 2020 06:44:13 +1100 Subject: [PATCH 34/45] Fix several honor token items and add Prontera Recall skill (#5431) Co-authored-by: Eric Co-authored-by: Lemongrass3110 --- db/re/item_db_equip.yml | 23 +++++++++++++++++------ db/re/item_db_usable.yml | 6 +++--- db/re/skill_db.yml | 25 +++++++++++++++++++++++++ sql-files/item_db_re_equip.sql | 6 +++--- sql-files/item_db_re_usable.sql | 2 +- src/common/mapindex.hpp | 2 +- src/map/skill.cpp | 13 +++++++++++++ src/map/skill.hpp | 2 ++ 8 files changed, 65 insertions(+), 14 deletions(-) diff --git a/db/re/item_db_equip.yml b/db/re/item_db_equip.yml index d1f5758330..9af7017b33 100644 --- a/db/re/item_db_equip.yml +++ b/db/re/item_db_equip.yml @@ -89439,7 +89439,7 @@ Body: Script: | bonus bMdef,3; bonus2 bAddClass,Class_All,5; - Id: 28354 - AegisName: City_Map + AegisName: DowntownMap_ Name: City Map Type: Armor Weight: 100 @@ -89449,9 +89449,9 @@ Body: Left_Accessory: true EquipLevelMin: 1 Script: | - /* todo */ + skill "AL_INCAGI",3; - Id: 28355 - AegisName: Shining_Holy_Water_ + AegisName: ShiningHolyWater_ Name: Shining Holy Water Type: Armor Weight: 100 @@ -89461,9 +89461,18 @@ Body: Left_Accessory: true EquipLevelMin: 1 Script: | - /* todo */ + bonus2 bHPRegenRate,100,10000; + bonus2 bSPRegenRate,5,10000; + bonus2 bAddDefMonster,3445,20; + bonus2 bAddDefMonster,3446,20; + bonus2 bAddDefMonster,3447,20; + bonus2 bAddDefMonster,3448,20; + bonus2 bAddDefMonster,3449,20; + bonus2 bAddDefMonster,3450,20; + bonus2 bAddDefMonster,3451,20; + bonus2 bAddDefMonster,3452,20; - Id: 28356 - AegisName: Prontera_Badge + AegisName: BadgeOfProntera_ Name: Prontera Badge Type: Armor Weight: 100 @@ -89471,8 +89480,10 @@ Body: Right_Accessory: true Left_Accessory: true EquipLevelMin: 1 + Delay: + Duration: 900000 Script: | - /*warp "prontera",159,192; 15 mins cooldown */ + skill "ALL_PRONTERA_RECALL",2; - Id: 28357 AegisName: Vesper_Gear_03 Name: Vesper Gear 03 diff --git a/db/re/item_db_usable.yml b/db/re/item_db_usable.yml index 6fa848fe9e..0e566c8d8a 100644 --- a/db/re/item_db_usable.yml +++ b/db/re/item_db_usable.yml @@ -45253,15 +45253,15 @@ Body: Script: | bonus_script "{ bonus2 bSPDrainRate,50,5; }",300; - Id: 22847 - AegisName: Prontera_Medal - Name: Prontera Medal + AegisName: BadgeOfProntera + Name: Prontera Badge Type: Usable Buy: 10 Weight: 10 Flags: BuyingStore: true Script: | - warp "prontera",159,192; /*No coord info*/ + warp "prontera",159,192; - Id: 22848 AegisName: Prison_Key Name: Prison Key diff --git a/db/re/skill_db.yml b/db/re/skill_db.yml index ae7aaf315e..ca6c885a4a 100644 --- a/db/re/skill_db.yml +++ b/db/re/skill_db.yml @@ -31611,6 +31611,31 @@ Body: IgnoreItemBonus: true Requires: SpCost: 1 + - Id: 3042 + Name: ALL_PRONTERA_RECALL + Description: Prontera Recall + MaxLevel: 2 + TargetType: Self + DamageFlags: + NoDamage: true + Hit: Single + HitCount: 1 + Cooldown: + - Level: 1 + Time: 1800000 + - Level: 2 + Time: 900000 + FixedCastTime: 1000 + CastTimeFlags: + IgnoreDex: true + IgnoreStatus: true + IgnoreItemBonus: true + CastDelayFlags: + IgnoreDex: true + IgnoreStatus: true + IgnoreItemBonus: true + Requires: + SpCost: 1 - Id: 5001 Name: GC_DARKCROW Description: Dark Claw diff --git a/sql-files/item_db_re_equip.sql b/sql-files/item_db_re_equip.sql index dc7c208ef4..fcfba8f401 100644 --- a/sql-files/item_db_re_equip.sql +++ b/sql-files/item_db_re_equip.sql @@ -5438,9 +5438,9 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28342,'Critical_Anklet','Critical Anklet','Armor',200,3,1,true,true,50,'bonus bCritical,5; bonus bMdef,3;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28352,'Vesper_Gear_01','Vesper Gear 01','Armor',20,100,1,1,true,true,90,'bonus bMdef,3; bonus bMatkRate,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28353,'Vesper_Gear_02','Vesper Gear 02','Armor',20,100,1,1,true,true,90,'bonus bMdef,3; bonus2 bAddClass,Class_All,5;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28354,'City_Map','City Map','Armor',100,1,true,true,1,'/* todo */'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28355,'Shining_Holy_Water_','Shining Holy Water','Armor',100,1,true,true,1,'/* todo */'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28356,'Prontera_Badge','Prontera Badge','Armor',100,true,true,1,'/*warp "prontera",159,192; 15 mins cooldown */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28354,'DowntownMap_','City Map','Armor',100,1,true,true,1,'skill "AL_INCAGI",3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28355,'ShiningHolyWater_','Shining Holy Water','Armor',100,1,true,true,1,'bonus2 bHPRegenRate,100,10000;\nbonus2 bSPRegenRate,5,10000;\nbonus2 bAddDefMonster,3445,20;\nbonus2 bAddDefMonster,3446,20;\nbonus2 bAddDefMonster,3447,20;\nbonus2 bAddDefMonster,3448,20;\nbonus2 bAddDefMonster,3449,20;\nbonus2 bAddDefMonster,3450,20;\nbonus2 bAddDefMonster,3451,20;\nbonus2 bAddDefMonster,3452,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`delay_duration`,`script`) VALUES (28356,'BadgeOfProntera_','Prontera Badge','Armor',100,true,true,1,900000,'skill "ALL_PRONTERA_RECALL",2;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28357,'Vesper_Gear_03','Vesper Gear 03','Armor',20,100,1,1,true,true,90,'bonus bMdef,3; bonus bFlee,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`,`unequip_script`) VALUES (28358,'Cursed_Lucky_Clover','Cursed Lucky Clover','Armor',100,1,true,true,100,'bonus bLuk,2; bonus bFlee,3; bonus2 bAddEff2,Eff_Curse,5;','sc_end SC_CLOAKING; /*FIXME: Because the combo has Cloaking skill*/'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (28359,'Vesper_Gear_04','Vesper Gear 04','Armor',20,100,1,1,true,true,90,'bonus bMdef,3; bonus bHit,10;'); diff --git a/sql-files/item_db_re_usable.sql b/sql-files/item_db_re_usable.sql index a741e8f0f5..c7a1f4fdc8 100644 --- a/sql-files/item_db_re_usable.sql +++ b/sql-files/item_db_re_usable.sql @@ -3169,7 +3169,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`class_all`,`gender`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22844,'Sealed_Dracula_Card_Album','Sealed Dracula Card Album','Usable',10,10,false,'Female',100,true,true,true,true,true,true,true,'/*No Info*/'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22845,'Sealed_Fortune_Egg','Sealed Fortune Egg','Usable',10,10,1,100,true,true,true,true,true,true,true,'getitem callfunc("F_Rand",4488,4497,4486,4480,4485,4539,4487,4494,4538,4489,4490,4482,4503,22846),1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22846,'Sealed_Dracula_Card_','Sealed Dracula Card','Usable',10,10,100,true,true,true,true,true,true,'bonus_script "{ bonus2 bSPDrainRate,50,5; }",300;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (22847,'Prontera_Medal','Prontera Medal','Usable',10,10,true,'warp "prontera",159,192; /*No coord info*/'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (22847,'BadgeOfProntera','Prontera Badge','Usable',10,10,true,'warp "prontera",159,192;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (22848,'Prison_Key','Prison Key','Usable',10,10,true,'warp "prt_prison",0,0; /*No coord info*/'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`,`script`) VALUES (22849,'Prontera_Time_Crystal','Prontera Time Crystal','Usable',10,10,true,'warp "prt_q",155,27;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (22850,'January_Gift_Box_','January Gift Box','Usable',10,100,100,true,true,true,true,true,true,true,'rentitem 19052,604800;'); diff --git a/src/common/mapindex.hpp b/src/common/mapindex.hpp index 2d39d41722..17a57fd5d3 100644 --- a/src/common/mapindex.hpp +++ b/src/common/mapindex.hpp @@ -8,7 +8,7 @@ #define MAX_MAPINDEX 2000 -//Some definitions for the mayor city maps. +//Some definitions for the major city maps. #define MAP_PRONTERA "prontera" #define MAP_GEFFEN "geffen" #define MAP_MORROC "morocc" diff --git a/src/map/skill.cpp b/src/map/skill.cpp index 0e96062234..0b6cd8926f 100755 --- a/src/map/skill.cpp +++ b/src/map/skill.cpp @@ -859,6 +859,7 @@ bool skill_isNotOk(uint16 skill_id, struct map_session_data *sd) case RETURN_TO_ELDICASTES: case ALL_GUARDIAN_RECALL: case ECLAGE_RECALL: + case ALL_PRONTERA_RECALL: if(mapdata->flag[MF_NOWARP]) { clif_skill_teleportmessage(sd,0); return true; @@ -10745,6 +10746,7 @@ int skill_castend_nodamage_id (struct block_list *src, struct block_list *bl, ui case RETURN_TO_ELDICASTES: case ALL_GUARDIAN_RECALL: case ECLAGE_RECALL: + case ALL_PRONTERA_RECALL: if( sd ) { short x=0, y=0; // Destiny position. @@ -10767,6 +10769,17 @@ int skill_castend_nodamage_id (struct block_list *src, struct block_list *bl, ui y = 31; mapindex = mapindex_name2id(MAP_ECLAGE_IN); break; + case ALL_PRONTERA_RECALL: + if(skill_lv == 1) { + x = 115; + y = 72; + } + else if(skill_lv == 2) { + x = 159; + y = 192; + } + mapindex = mapindex_name2id(MAP_PRONTERA); + break; } if(!mapindex) diff --git a/src/map/skill.hpp b/src/map/skill.hpp index f91d3a6f1a..68fedd3298 100644 --- a/src/map/skill.hpp +++ b/src/map/skill.hpp @@ -1895,6 +1895,8 @@ enum e_skill { ECL_SEQUOIADUST, ECLAGE_RECALL, + ALL_PRONTERA_RECALL = 3042, + GC_DARKCROW = 5001, RA_UNLIMIT, GN_ILLUSIONDOPING, From 8682a9e02eeeef1b445250e5700e629e9f30c890 Mon Sep 17 00:00:00 2001 From: Daegaladh Date: Tue, 27 Oct 2020 11:58:35 +0100 Subject: [PATCH 35/45] Small walkpath optimizations (#5322) * Thanks to @mattthewaz Co-authored-by: Aleos Co-authored-by: Lemongrass3110 --- src/map/unit.cpp | 176 ++++++++++++++++++++++++----------------------- 1 file changed, 89 insertions(+), 87 deletions(-) diff --git a/src/map/unit.cpp b/src/map/unit.cpp index ca8b0b349e..3dbaddb7bd 100644 --- a/src/map/unit.cpp +++ b/src/map/unit.cpp @@ -78,25 +78,28 @@ struct unit_data* unit_bl2ud(struct block_list *bl) */ int unit_walktoxy_sub(struct block_list *bl) { - int i; - struct walkpath_data wpd; - struct unit_data *ud = NULL; - nullpo_retr(1, bl); - ud = unit_bl2ud(bl); - if(ud == NULL) return 0; + + unit_data *ud = unit_bl2ud(bl); + + if (ud == nullptr) + return 0; + + walkpath_data wpd = { 0 }; if( !path_search(&wpd,bl->m,bl->x,bl->y,ud->to_x,ud->to_y,ud->state.walk_easy,CELL_CHKNOPASS) ) return 0; #ifdef OFFICIAL_WALKPATH - if( !path_search_long(NULL, bl->m, bl->x, bl->y, ud->to_x, ud->to_y, CELL_CHKNOPASS) // Check if there is an obstacle between - && wpd.path_len > 14 // Official number of walkable cells is 14 if and only if there is an obstacle between. [malufett] - && (bl->type != BL_NPC) ) // If type is a NPC, please disregard. + if( bl->type != BL_NPC // If type is a NPC, please disregard. + && wpd.path_len > 14 // Official number of walkable cells is 14 if and only if there is an obstacle between. [malufett] + && !path_search_long(nullptr, bl->m, bl->x, bl->y, ud->to_x, ud->to_y, CELL_CHKNOPASS) ) // Check if there is an obstacle between return 0; #endif - memcpy(&ud->walkpath,&wpd,sizeof(wpd)); + ud->walkpath = wpd; + + int i; if (ud->target_to && ud->chaserange>1) { // Generally speaking, the walk path is already to an adjacent tile @@ -360,30 +363,16 @@ int unit_walktoxy_ontouch(struct block_list *bl, va_list ap) * @param data: Data used in timer calls * @return 0 or unit_walktoxy_sub() or unit_walktoxy() */ -static TIMER_FUNC(unit_walktoxy_timer){ - int i; - int x,y,dx,dy; - unsigned char icewall_walk_block; - struct block_list *bl; - struct unit_data *ud; - TBL_PC *sd=NULL; - TBL_MOB *md=NULL; - TBL_NPC *nd=NULL; +static TIMER_FUNC(unit_walktoxy_timer) +{ + block_list *bl = map_id2bl(id); - bl = map_id2bl(id); - - if(bl == NULL) + if(bl == nullptr) return 0; + + unit_data *ud = unit_bl2ud(bl); - switch(bl->type) { // svoid useless cast, we can only be 1 type - case BL_PC: sd = BL_CAST(BL_PC, bl); break; - case BL_MOB: md = BL_CAST(BL_MOB, bl); break; - case BL_NPC: nd = BL_CAST(BL_NPC, bl); break; - } - - ud = unit_bl2ud(bl); - - if(ud == NULL) + if(ud == nullptr) return 0; if(ud->walktimer != tid) { @@ -393,7 +382,7 @@ static TIMER_FUNC(unit_walktoxy_timer){ ud->walktimer = INVALID_TIMER; - if (bl->prev == NULL) + if (bl->prev == nullptr) return 0; // Stop moved because it is missing from the block_list if(ud->walkpath.path_pos>=ud->walkpath.path_len) @@ -402,26 +391,38 @@ static TIMER_FUNC(unit_walktoxy_timer){ if(ud->walkpath.path[ud->walkpath.path_pos]>=DIR_MAX) return 1; - x = bl->x; - y = bl->y; + int x = bl->x; + int y = bl->y; enum directions dir = ud->walkpath.path[ud->walkpath.path_pos]; ud->dir = dir; - dx = dirx[dir]; - dy = diry[dir]; + int dx = dirx[dir]; + int dy = diry[dir]; + + map_session_data *sd = nullptr; + mob_data *md = nullptr; + npc_data *nd = nullptr; // Get icewall walk block depending on Status Immune mode (players can't be trapped) - if(md && status_has_mode(&md->status,MD_STATUS_IMMUNE)) - icewall_walk_block = battle_config.boss_icewall_walk_block; - else if(md) - icewall_walk_block = battle_config.mob_icewall_walk_block; - else - icewall_walk_block = 0; + unsigned char icewall_walk_block = 0; + + switch(bl->type) { // avoid useless cast, we can only be 1 type + case BL_PC: sd = BL_CAST(BL_PC, bl); break; + case BL_MOB: + md = BL_CAST(BL_MOB, bl); + + if (status_has_mode(&md->status,MD_STATUS_IMMUNE)) + icewall_walk_block = battle_config.boss_icewall_walk_block; + else + icewall_walk_block = battle_config.mob_icewall_walk_block; + break; + case BL_NPC: nd = BL_CAST(BL_NPC, bl); break; + } //Monsters will walk into an icewall from the west and south if they already started walking if(map_getcell(bl->m,x+dx,y+dy,CELL_CHKNOPASS) - && (icewall_walk_block == 0 || !map_getcell(bl->m,x+dx,y+dy,CELL_CHKICEWALL) || dx < 0 || dy < 0)) + && (icewall_walk_block == 0 || dx < 0 || dy < 0 || !map_getcell(bl->m,x+dx,y+dy,CELL_CHKICEWALL))) return unit_walktoxy_sub(bl); //Monsters can only leave icewalls to the west and south @@ -554,6 +555,8 @@ static TIMER_FUNC(unit_walktoxy_timer){ if(tid == INVALID_TIMER) // A directly invoked timer is from battle_stop_walking, therefore the rest is irrelevant. return 0; + int speed; + //If stepaction is set then we remembered a client request that should be executed on the next step if (ud->stepaction && ud->target_to) { //Delete old stepaction even if not executed yet, the latest command is what counts @@ -563,10 +566,10 @@ static TIMER_FUNC(unit_walktoxy_timer){ } //Delay stepactions by half a step (so they are executed at full step) if( direction_diagonal( ud->walkpath.path[ud->walkpath.path_pos] ) ) - i = status_get_speed(bl)*MOVE_DIAGONAL_COST/MOVE_COST/2; + speed = status_get_speed(bl)*MOVE_DIAGONAL_COST/MOVE_COST/2; else - i = status_get_speed(bl)/2; - ud->steptimer = add_timer(tick+i, unit_step_timer, bl->id, 0); + speed = status_get_speed(bl)/2; + ud->steptimer = add_timer(tick+speed, unit_step_timer, bl->id, 0); } if(ud->state.change_walk_target) { @@ -581,14 +584,14 @@ static TIMER_FUNC(unit_walktoxy_timer){ ud->walkpath.path_pos++; if(ud->walkpath.path_pos >= ud->walkpath.path_len) - i = -1; + speed = -1; else if( direction_diagonal( ud->walkpath.path[ud->walkpath.path_pos] ) ) - i = status_get_speed(bl)*MOVE_DIAGONAL_COST/MOVE_COST; + speed = status_get_speed(bl)*MOVE_DIAGONAL_COST/MOVE_COST; else - i = status_get_speed(bl); + speed = status_get_speed(bl); - if(i > 0) { - ud->walktimer = add_timer(tick+i,unit_walktoxy_timer,id,i); + if(speed > 0) { + ud->walktimer = add_timer(tick+speed,unit_walktoxy_timer,id,speed); if( md && DIFF_TICK(tick,md->dmgtick) < 3000 ) // Not required not damaged recently clif_move(ud); } else if(ud->state.running) { // Keep trying to run. @@ -696,36 +699,34 @@ TIMER_FUNC(unit_delay_walktobl_timer){ */ int unit_walktoxy( struct block_list *bl, short x, short y, unsigned char flag) { - struct unit_data* ud = NULL; - struct status_change* sc = NULL; - struct walkpath_data wpd; - TBL_PC *sd = NULL; - nullpo_ret(bl); - ud = unit_bl2ud(bl); + unit_data* ud = unit_bl2ud(bl); - if (ud == NULL) + if (ud == nullptr) return 0; - if (bl->type == BL_PC) - sd = BL_CAST(BL_PC, bl); - if ((flag&8) && !map_closest_freecell(bl->m, &x, &y, BL_CHAR|BL_NPC, 1)) //This might change x and y return 0; + walkpath_data wpd = { 0 }; + if (!path_search(&wpd, bl->m, bl->x, bl->y, x, y, flag&1, CELL_CHKNOPASS)) // Count walk path cells return 0; -#ifdef OFFICIAL_WALKPATH - if( !path_search_long(NULL, bl->m, bl->x, bl->y, x, y, CELL_CHKNOPASS) // Check if there is an obstacle between - && wpd.path_len > 14 // Official number of walkable cells is 14 if and only if there is an obstacle between. [malufett] - && (bl->type != BL_NPC) ) // If type is a NPC, please disregard. + // NPCs do not need to fulfill the following checks + if( bl->type != BL_NPC ){ + if( wpd.path_len > battle_config.max_walk_path ){ return 0; -#endif + } - if ((wpd.path_len > battle_config.max_walk_path) && (bl->type != BL_NPC)) - return 0; +#ifdef OFFICIAL_WALKPATH + // Official number of walkable cells is 14 if and only if there is an obstacle between. + if( wpd.path_len > 14 && !path_search_long( nullptr, bl->m, bl->x, bl->y, x, y, CELL_CHKNOPASS ) ){ + return 0; + } +#endif + } if (flag&4) { unit_unattackable(bl); @@ -745,7 +746,7 @@ int unit_walktoxy( struct block_list *bl, short x, short y, unsigned char flag) ud->to_y = y; unit_stop_attack(bl); //Sets target to 0 - sc = status_get_sc(bl); + status_change* sc = status_get_sc(bl); if (sc && sc->data[SC_CONFUSION]) // Randomize the target position map_random_dir(bl, &ud->to_x, &ud->to_y); @@ -756,15 +757,19 @@ int unit_walktoxy( struct block_list *bl, short x, short y, unsigned char flag) return 1; } + TBL_PC *sd = BL_CAST(BL_PC, bl); + // Start timer to recall summon - if (sd && sd->md) - unit_check_start_teleport_timer(&sd->md->bl); - if (sd && sd->ed) - unit_check_start_teleport_timer(&sd->ed->bl); - if (sd && sd->hd) - unit_check_start_teleport_timer(&sd->hd->bl); - if (sd && sd->pd) - unit_check_start_teleport_timer(&sd->pd->bl); + if( sd != nullptr ){ + if (sd->md != nullptr) + unit_check_start_teleport_timer(&sd->md->bl); + if (sd->ed != nullptr) + unit_check_start_teleport_timer(&sd->ed->bl); + if (sd->hd != nullptr) + unit_check_start_teleport_timer(&sd->hd->bl); + if (sd->pd != nullptr) + unit_check_start_teleport_timer(&sd->pd->bl); + } return unit_walktoxy_sub(bl); } @@ -819,15 +824,12 @@ static TIMER_FUNC(unit_walktobl_sub){ */ int unit_walktobl(struct block_list *bl, struct block_list *tbl, int range, unsigned char flag) { - struct unit_data *ud = NULL; - struct status_change *sc = NULL; - nullpo_ret(bl); nullpo_ret(tbl); - ud = unit_bl2ud(bl); + unit_data *ud = unit_bl2ud(bl); - if(ud == NULL) + if(ud == nullptr) return 0; if (!status_bl_has_mode(bl,MD_CANMOVE)) @@ -851,7 +853,7 @@ int unit_walktobl(struct block_list *bl, struct block_list *tbl, int range, unsi ud->state.attack_continue = flag&2?1:0; // Chase to attack. unit_stop_attack(bl); //Sets target to 0 - sc = status_get_sc(bl); + status_change *sc = status_get_sc(bl); if (sc && sc->data[SC_CONFUSION]) // Randomize the target position map_random_dir(bl, &ud->to_x, &ud->to_y); @@ -2541,10 +2543,10 @@ bool unit_can_reach_bl(struct block_list *bl,struct block_list *tbl, int range, return false; #ifdef OFFICIAL_WALKPATH - if( !path_search_long(NULL, bl->m, bl->x, bl->y, tbl->x-dx, tbl->y-dy, CELL_CHKNOPASS) // Check if there is an obstacle between - && wpd.path_len > 14 // Official number of walkable cells is 14 if and only if there is an obstacle between. [malufett] - && (bl->type != BL_NPC) ) // If type is a NPC, please disregard. - return false; + if( bl->type != BL_NPC // If type is a NPC, please disregard. + && wpd.path_len > 14 // Official number of walkable cells is 14 if and only if there is an obstacle between. [malufett] + && !path_search_long(nullptr, bl->m, bl->x, bl->y, tbl->x-dx, tbl->y-dy, CELL_CHKNOPASS) ) // Check if there is an obstacle between + return false; #endif return true; From 93eaf3207eea73c89a3d5047965d43b1bd6ea9ee Mon Sep 17 00:00:00 2001 From: Aleos Date: Wed, 28 Oct 2020 12:45:52 -0400 Subject: [PATCH 36/45] Resolves SQL header output on suffix files (#5497) * Resolves an issue where the wrong header was being printed to the SQL files that contain a suffix to them. Thanks to @Atemo! --- doc/yaml/sql/item_db_equip.sql | 3 +++ doc/yaml/sql/item_db_etc.sql | 3 +++ doc/yaml/sql/item_db_re_equip.sql | 3 +++ doc/yaml/sql/item_db_re_etc.sql | 3 +++ doc/yaml/sql/item_db_re_usable.sql | 3 +++ doc/yaml/sql/item_db_usable.sql | 3 +++ src/tool/yaml2sql.cpp | 9 +++++---- 7 files changed, 23 insertions(+), 4 deletions(-) create mode 100644 doc/yaml/sql/item_db_equip.sql create mode 100644 doc/yaml/sql/item_db_etc.sql create mode 100644 doc/yaml/sql/item_db_re_equip.sql create mode 100644 doc/yaml/sql/item_db_re_etc.sql create mode 100644 doc/yaml/sql/item_db_re_usable.sql create mode 100644 doc/yaml/sql/item_db_usable.sql diff --git a/doc/yaml/sql/item_db_equip.sql b/doc/yaml/sql/item_db_equip.sql new file mode 100644 index 0000000000..9f02662b66 --- /dev/null +++ b/doc/yaml/sql/item_db_equip.sql @@ -0,0 +1,3 @@ +# +# Table data for table `item_db` +# diff --git a/doc/yaml/sql/item_db_etc.sql b/doc/yaml/sql/item_db_etc.sql new file mode 100644 index 0000000000..9f02662b66 --- /dev/null +++ b/doc/yaml/sql/item_db_etc.sql @@ -0,0 +1,3 @@ +# +# Table data for table `item_db` +# diff --git a/doc/yaml/sql/item_db_re_equip.sql b/doc/yaml/sql/item_db_re_equip.sql new file mode 100644 index 0000000000..c5916d98e5 --- /dev/null +++ b/doc/yaml/sql/item_db_re_equip.sql @@ -0,0 +1,3 @@ +# +# Table data for table `item_db_re` +# diff --git a/doc/yaml/sql/item_db_re_etc.sql b/doc/yaml/sql/item_db_re_etc.sql new file mode 100644 index 0000000000..c5916d98e5 --- /dev/null +++ b/doc/yaml/sql/item_db_re_etc.sql @@ -0,0 +1,3 @@ +# +# Table data for table `item_db_re` +# diff --git a/doc/yaml/sql/item_db_re_usable.sql b/doc/yaml/sql/item_db_re_usable.sql new file mode 100644 index 0000000000..c5916d98e5 --- /dev/null +++ b/doc/yaml/sql/item_db_re_usable.sql @@ -0,0 +1,3 @@ +# +# Table data for table `item_db_re` +# diff --git a/doc/yaml/sql/item_db_usable.sql b/doc/yaml/sql/item_db_usable.sql new file mode 100644 index 0000000000..9f02662b66 --- /dev/null +++ b/doc/yaml/sql/item_db_usable.sql @@ -0,0 +1,3 @@ +# +# Table data for table `item_db` +# diff --git a/src/tool/yaml2sql.cpp b/src/tool/yaml2sql.cpp index 62686cd258..3a2440a513 100644 --- a/src/tool/yaml2sql.cpp +++ b/src/tool/yaml2sql.cpp @@ -78,10 +78,11 @@ void prepareHeader(std::ofstream &file, const std::string& name) { } template -bool process( const std::string& type, uint32 version, const std::vector& paths, const std::string& name, const std::string& to, const std::string& table, Func lambda ){ +bool process( const std::string& type, uint32 version, const std::vector& paths, const std::string& name, const std::string& to_table, const std::string& table, Func lambda ){ for( const std::string& path : paths ){ const std::string name_ext = name + ".yml"; const std::string from = path + name_ext; + const std::string to = "sql-files/" + to_table + ".sql"; if( fileExists( from ) ){ if( !askConfirmation( "Found the file \"%s\", which can be converted to sql.\nDo you want to convert it now? (Y/N)\n", from.c_str() ) ){ @@ -114,7 +115,7 @@ bool process( const std::string& type, uint32 version, const std::vector bool { + if (!process("ITEM_DB", 1, { path_db_mode }, "item_db_" + suffix, item_table_name + "_" + suffix, item_table_name, [](const std::string& path, const std::string& name_ext, const std::string& table) -> bool { return item_db_yaml2sql(path + name_ext, table); })) { return 0; } } - if (!process("ITEM_DB", 1, { path_db_import }, "item_db", "sql-files/" + item_import_table_name + ".sql", item_import_table_name, [](const std::string& path, const std::string& name_ext, const std::string& table) -> bool { + if (!process("ITEM_DB", 1, { path_db_import }, "item_db", item_import_table_name, item_import_table_name, [](const std::string& path, const std::string& name_ext, const std::string& table) -> bool { return item_db_yaml2sql(path + name_ext, table); })) { return 0; From a1273d3ec415e81426281f84ca29e08e42648d21 Mon Sep 17 00:00:00 2001 From: Atemo Date: Wed, 28 Oct 2020 19:21:11 +0100 Subject: [PATCH 37/45] Item DB update: illusion of under water (#5487) * Implemented items from January 2020 KRO patch (part of illusion of under water) --- db/re/item_combo_db.txt | 23 ++ db/re/item_db_equip.yml | 408 +++++++++++++++++++++++++++++++++ db/re/item_db_etc.yml | 213 +++++++++++++++++ sql-files/item_db_re_equip.sql | 14 ++ sql-files/item_db_re_etc.sql | 21 ++ 5 files changed, 679 insertions(+) diff --git a/db/re/item_combo_db.txt b/db/re/item_combo_db.txt index 65d94c1200..81957dc05e 100644 --- a/db/re/item_combo_db.txt +++ b/db/re/item_combo_db.txt @@ -1517,3 +1517,26 @@ 22238:830002,{ bonus bDex,10; bonus bLongAtkRate,5; } 22238:820001,{ bonus bDex,10; bonus bLongAtkRate,5; } 28763:510022,{ .@r = getequiprefinerycnt(EQI_HAND_R) + getequiprefinerycnt(EQI_HAND_L); bonus bBaseAtk,15*(.@r/3); bonus2 bAddClass,Class_All,3*(.@r/5); if (.@r>=14){ bonus2 bSkillAtk,"KO_JYUMONJIKIRI",30; bonus2 bSkillCooldown,"KO_JYUMONJIKIRI",-2000; } if (.@r>=16){ skill "OB_ZANGETSU",getskilllv("KG_KAGEHUMI"); skill "KG_KAGEHUMI",getskilllv("OB_ZANGETSU"); } if (.@r>=18){ bonus2 bAddEle,Ele_All,15; } if (.@r>=20){ bonus2 bSkillAtk,"KO_JYUMONJIKIRI",25; } } +//300141:300120,{ bonus2 bMagicAddEle,Ele_Water,15; } +300144:300150,{ bonus bCritAtkRate,15; } +300146:4521,{ bonus bCritAtkRate,15; } +300147:4089,{ bonus bMatkRate,3; } +300148:300140,{ bonus bMatk,30; } +300148:300142,{ bonus bBaseAtk,30; } +300149:300141,{ bonus2 bSubEle,Ele_Neutral,5; } +300150:4524,{ bonus bMaxHPrate,15; bonus bStr,4; } +400053:480054:490069:490070,{ bonus2 bAddSize,Size_Small,20; bonus bCritical,5; bonus2 bAddClass,Class_All,10; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bStr,5; if (.@r>=18) { bonus bFlee2,10; bonus bBaseAtk,50; } if (.@r>=22) { bonus2 bAddSize,Size_Medium,20; bonus bCritAtkRate,20; } } +400054:13493,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus bMatk,30; bonus2 bSkillAtk,"WL_HELLINFERNO",4*(.@r/2); } +400054:26151,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus bMatk,30; bonus2 bSkillAtk,"WL_COMET",5*(.@r/2); } +400054:28755,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus2 bMagicAtkEle,Ele_Fire,5; bonus2 bMagicAtkEle,Ele_Water,5; bonus2 bMagicAtkEle,Ele_Wind,5; bonus2 bSkillAtk,"NJ_KOUENKA",3*(.@r/2); bonus2 bSkillAtk,"NJ_HYOUSENSOU",3*(.@r/2); bonus2 bSkillAtk,"NJ_HUUJIN",3*(.@r/2); } +450144:1846,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR); bonus bBaseAtk,30; if (.@sum>=7) { bonus2 bAddClass,Class_All,5; } if (.@sum>=18) { bonus2 bSkillAtk,"SR_SKYNETBLOW",20; } if (.@sum>=22) { bonus bDelayrate,-10; } } +450146:610012,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR); bonus2 bAddClass,Class_All,5; if (.@sum>=7) { bonus bCritical,5; } if (.@sum>=18) { bonus bCritAtkRate,15; } if (.@sum>=22) { bonus2 bAddEle,Ele_Fire,10; bonus2 bAddRace,RC_Insect,10; } } +490069:490070,{ bonus bAspdRate,10; bonus2 bAddClass,Class_All,10; } +570008:20838,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_GARMENT); bonus bBaseAtk,30; if (.@sum>=7) { bonus bLongAtkRate,5; } if (.@sum>=18) { bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",20; } if (.@sum>=22) { bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-1000; } } +570008:22133,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_SHOES); bonus bMatk,40; if (.@sum>=7) { bonus2 bMagicAtkEle,Ele_Neutral,5; } if (.@sum>=18) { bonus2 bSkillAtk,"WM_REVERBERATION",20; } if (.@sum>=22) { bonus2 bSkillFixedCast,"WM_REVERBERATION",-500; } } +580008:20838,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_GARMENT); bonus bBaseAtk,30; if (.@sum>=7) { bonus bLongAtkRate,5; } if (.@sum>=18) { bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",20; } if (.@sum>=22) { bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-1000; } } +580008:22133,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_SHOES); bonus bMatk,40; if (.@sum>=7) { bonus2 bMagicAtkEle,Ele_Neutral,5; } if (.@sum>=18) { bonus2 bSkillAtk,"WM_REVERBERATION",20; } if (.@sum>=22) { bonus2 bSkillFixedCast,"WM_REVERBERATION",-500; } } +600011:450146,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR); bonus bBaseAtk,30; if (.@sum>=7) { bonus bCritical,5; } if (.@sum>=18) { bonus2 bSkillAtk,"RK_STORMBLAST",20; } if (.@sum>=22) { bonus2 bAddEle,Ele_Water,10; bonus2 bAddRace,RC_Fish,15; } } +610012:28509,{ bonus2 bAddClass,Class_All,5; if (getequiprefinerycnt(EQI_HAND_R)>=9) { bonus bCritAtkRate,20; } if (getequiprefinerycnt(EQI_HAND_R)>=11) { autobonus3 "{ bonus bCritical,15; }",1000,30000,"GC_VENOMIMPRESS"; } } +630006:450145,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR); bonus2 bAddClass,Class_All,5; if (.@sum>=7) { bonus bDelayrate,-5; } if (.@sum>=18) { bonus2 bSkillAtk,"LG_OVERBRAND",20; } if (.@sum>=22) { autobonus3 "{ bonus2 bAddRace,RC_Fish,50; bonus2 bAddRace,RC_Demon,50; bonus bBaseAtk,50; }",1000,10000,"LG_OVERBRAND"; } } +630007:450146,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR); bonus bBaseAtk,30; if (.@sum>=7) { bonus bLongAtkRate,5; } if (.@sum>=18) { bonus2 bSkillAtk,"LK_SPIRALPIERCE",20; } if (.@sum>=22) { bonus2 bAddEle,Ele_Water,10; bonus2 bAddRace,RC_Fish,15; } } diff --git a/db/re/item_db_equip.yml b/db/re/item_db_equip.yml index 9af7017b33..2681aa0f1a 100644 --- a/db/re/item_db_equip.yml +++ b/db/re/item_db_equip.yml @@ -97919,6 +97919,56 @@ Body: Refineable: true Script: | .@r = getrefine(); bonus2 bSkillCooldown,"GN_SPORE_EXPLOSION",-1000; bonus bBaseAtk,4*.@r; if (.@r>=11) .@val = 50; else if (.@r>=9) .@val = 30; bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",.@val; + - Id: 400053 + AegisName: aegis_400053 + Name: Illusion Morrigane's Helm + Type: Armor + View: 257 + Weight: 500 + Defense: 15 + Slots: 1 + Jobs: + All: true + Novice: false + Locations: + Head_Top: true + EquipLevelMin: 130 + Refineable: true + Script: | + .@r = getrefine(); + bonus bCritical,5; + bonus bStr,5; + if (.@r>=7) { + bonus bBaseAtk,50; + } + if (.@r>=9) { + bonus bAspdRate,10; + } + - Id: 400054 + AegisName: aegis_400054 + Name: Great Magician's Ceremonial Crown + Type: Armor + View: 1811 + Weight: 100 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 130 + Refineable: true + Script: | + .@r = getrefine(); + bonus bMatk,20*(.@r/2); + if (.@r>=7) { + bonus bVariableCastrate,-15; + } + if (.@r>=9) { + bonus2 bMagicAtkEle,Ele_All,15; + } + if (.@r>=11) { + bonus bFixedCast,-200; + bonus2 bMagicAddSize,Size_Small,15; + bonus2 bMagicAddSize,Size_Medium,15; + } - Id: 450018 AegisName: Noblesse_Breath_Armor Name: Noblesse Breath Armor @@ -100846,6 +100896,87 @@ Body: NoAuction: true Script: | .@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bMaxHPrate,10; + - Id: 450144 + AegisName: aegis_450144 + Name: Illusion Saint Robe + Type: Armor + Weight: 600 + Defense: 60 + Slots: 1 + Jobs: + Acolyte: true + Alchemist: true + Blacksmith: true + Merchant: true + Monk: true + Priest: true + Locations: + Armor: true + EquipLevelMin: 120 + Refineable: true + Script: | + .@r = getrefine(); + bonus bMaxHPrate,10; + bonus bMaxSPrate,10; + bonus bMdef,10; + if (.@r>=9) { + bonus2 bSubRace,RC_Fish,15; + } + if (.@r>=11) { + bonus2 bIgnoreDefRaceRate,RC_Fish,20; + } + - Id: 450145 + AegisName: aegis_450145 + Name: Illusion Saphien's Armor of Ocean + Type: Armor + Weight: 2200 + Defense: 50 + Slots: 1 + Jobs: + Alchemist: true + Blacksmith: true + Crusader: true + Knight: true + Merchant: true + Swordman: true + Locations: + Armor: true + EquipLevelMin: 120 + Refineable: true + Script: | + .@r = getrefine(); + bonus bMaxHPrate,10; + bonus bMaxHP,125*.@r; + if (.@r>=7) { + bonus bDef,50; + } + if (.@r>=9) { + autobonus2 "{ bonus2 bSubEle,Ele_Water,15; }",1,5000,BF_MAGIC|BF_WEAPON; + } + - Id: 450146 + AegisName: aegis_450146 + Name: Illusion Chain Mail + Type: Armor + Weight: 3300 + Defense: 70 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 120 + Refineable: true + Script: | + .@r = getrefine(); + bonus bMaxHPrate,10; + bonus bMaxSPrate,10; + bonus bBaseAtk,4*.@r; + bonus2 bAddEle,Ele_Fire,4*(.@r/3); + bonus2 bAddEle,Ele_Water,4*(.@r/3); + if (.@r>=9) { + bonus2 bAddClass,Class_All,10; + } + if (.@r>=11) { + bonus bAspdRate,10; + } - Id: 470016 AegisName: Noblesse_Attack_Boots Name: Noblesse Attack Boots @@ -101098,6 +101229,36 @@ Body: NoAuction: true Script: | .@r = getrefine(); bonus bVariableCastrate,-10; if (.@r>=7) bonus bDelayrate,-5; if (.@r>=9) bonus2 bMagicAtkEle,Ele_All,10; + - Id: 480054 + AegisName: aegis_480054 + Name: Illusion Morrigane's Manteau + Type: Armor + Weight: 600 + Defense: 12 + Slots: 1 + Jobs: + All: true + Novice: false + Locations: + Garment: true + EquipLevelMin: 130 + Refineable: true + Script: | + .@r = getrefine(); + bonus bLuk,5; + bonus bFlee,20; + if (.@r>=7) { + bonus2 bAddRace,RC_Fish,5; + bonus2 bAddRace,RC_Insect,5; + bonus2 bAddRace,RC_Demon,5; + bonus2 bAddRace,RC_DemiHuman,5; + } + if (.@r>=9) { + bonus2 bAddRace,RC_Fish,10; + bonus2 bAddRace,RC_Insect,10; + bonus2 bAddRace,RC_Demon,10; + bonus2 bAddRace,RC_DemiHuman,10; + } - Id: 490014 AegisName: Noblesse_Attack_Ring Name: Noblesse Attack Ring @@ -101218,6 +101379,36 @@ Body: NoAuction: true Script: | bonus bAspdRate,7; bonus bVariableCastrate,-10; bonus2 bMagicAddEle,Ele_All,10; + - Id: 490069 + AegisName: aegis_490069 + Name: Illusion Morrigane's Belt + Type: Armor + Weight: 200 + Slots: 1 + Jobs: + All: true + Novice: false + Locations: + Right_Accessory: true + EquipLevelMin: 130 + Script: | + bonus bMaxHPrate,5; + bonus bStr,3; + - Id: 490070 + AegisName: aegis_490070 + Name: Illusion Morrigane's Pendant + Type: Armor + Weight: 200 + Slots: 1 + Jobs: + All: true + Novice: false + Locations: + Left_Accessory: true + EquipLevelMin: 130 + Script: | + bonus bCritical,5; + bonus bBaseAtk,20; - Id: 500013 AegisName: Up_Sword_Of_Bluefire Name: Patent Red Lotus Sword @@ -101620,6 +101811,44 @@ Body: Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,15*(.@r/2); bonus2 bSkillAtk,"SR_TIGERCANNON",4*(.@r/3); if (.@r>=7){ bonus2 bSkillAtk,"SR_TIGERCANNON",15; bonus2 bSkillAtk,"SR_HELLGATE",20; } if (.@r>=9){ bonus2 bSkillCooldown,"SR_TIGERCANNON",-1000; } if (.@r>=11){ bonus bMaxHPrate,10; bonus2 bSkillAtk,"SR_HELLGATE",15; } + - Id: 570008 + AegisName: aegis_570008 + Name: Illusion Electric Guitar + Type: Weapon + SubType: Musical + Weight: 1800 + Attack: 170 + MagicAttack: 180 + Range: 1 + Slots: 2 + Jobs: + BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 120 + Refineable: true + Script: | + .@r = getrefine(); + bonus bLongAtkRate,3*(.@r/2); + bonus bMatk,6*(.@r/2); + if (.@r>=7) { + bonus2 bMagicAtkEle,Ele_Neutral,10; + bonus2 bSkillUseSPrate,"WM_SEVERE_RAINSTORM",10; + } + if (.@r>=9) { + bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15; + bonus2 bSkillAtk,"WM_REVERBERATION",15; + } + if (.@r>=11) { + bonus2 bMagicAtkEle,Ele_Water,10; + bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-1000; + } - Id: 570009 AegisName: Up_Trumpet_Shell_K Name: Patent Trumpet Shell @@ -101644,6 +101873,44 @@ Body: Refineable: true Script: | .@r = getrefine(); bonus bMatk,.@r/2*15; bonus2 bMagicAtkEle,Ele_All,.@r/3*4; if (.@r>=7){ bonus2 bSkillAtk,"WM_REVERBERATION",10; bonus2 bSkillAtk,"WM_METALICSOUND",10; } if (.@r>=9){ bonus2 bSkillFixedCast,WM_REVERBERATION,-500; } if (.@r>=11){ bonus bMatkRate,7; bonus2 bSkillAtk,"WM_REVERBERATION",15; bonus2 bSkillAtk,"WM_METALICSOUND",15; } + - Id: 580008 + AegisName: aegis_580008 + Name: Illusion Electric Eel + Type: Weapon + SubType: Whip + Weight: 1800 + Attack: 170 + MagicAttack: 180 + Range: 2 + Slots: 2 + Jobs: + BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 120 + Refineable: true + Script: | + .@r = getrefine(); + bonus bLongAtkRate,3*(.@r/2); + bonus bMatk,6*(.@r/2); + if (.@r>=7) { + bonus2 bMagicAtkEle,Ele_Neutral,10; + bonus2 bSkillUseSPrate,"WM_SEVERE_RAINSTORM",10; + } + if (.@r>=9) { + bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15; + bonus2 bSkillAtk,"WM_REVERBERATION",15; + } + if (.@r>=11) { + bonus2 bMagicAtkEle,Ele_Water,10; + bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-1000; + } - Id: 580009 AegisName: Up_Barb_Wire_K Name: Patent Barbed Wire Whip @@ -101760,6 +102027,42 @@ Body: Refineable: true Script: | .@r = getrefine(); .@i = max(2,getskilllv("RK_SONICWAVE")); bonus bBaseAtk,.@r/2*15; bonus2 bSkillAtk,"RK_SONICWAVE",.@r/3*10; if (.@r>=7){ bonus bUnbreakableWeapon; bonus bAspdRate,10; } if (.@r>=9){ bonus5 bAutoSpell,"RK_SONICWAVE",.@i,20,BF_SHORT,1; } if (.@r>=11){ bonus bCritical,15; bonus bCritAtkRate,15; } + - Id: 600011 + AegisName: aegis_600011 + Name: Illusion Death Guidance + Type: Weapon + SubType: 2hSword + Weight: 2000 + Attack: 240 + Range: 1 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Classes: + Upper: true + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 120 + Script: | + .@r = getrefine(); + bonus bBaseAtk,4*.@r; + if (.@r>=7) { + bonus2 bSkillAtk,"RK_STORMBLAST",20; + } + if (.@r>=9) { + autobonus "{ bonus2 bHPRegenRate,getrefine()*50,1000; }",30,4000,BF_WEAPON; + } + if (.@r>=11) { + bonus bCritAtkRate,15; + bonus bCritical,15; + } - Id: 610003 AegisName: Blade_Katar Name: Blade Katar @@ -101829,6 +102132,36 @@ Body: Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bAspdRate,(.@r*2/3); if (.@r>=7){ bonus2 bSkillAtk,"GC_ROLLINGCUTTER",25; bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",25; } if (.@r>=9){ bonus bDelayRate,-12; } if (.@r>=11){ bonus bShortAtkRate,10; bonus bLongAtkRate,10; } + - Id: 610012 + AegisName: aegis_610012 + Name: Illusion Katar of Frozen Icicle + Type: Weapon + SubType: Katar + Weight: 1200 + Attack: 220 + Range: 1 + Slots: 2 + Jobs: + Assassin: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 120 + Script: | + .@r = getrefine(); + bonus bBaseAtk,5*.@r; + if (.@r>=7) { + bonus2 bSkillAtk,"GC_CROSSIMPACT",20; + } + if (.@r>=9) { + bonus bAspdRate,10; + } + if (.@r>=11) { + bonus2 bAddRace,RC_Insect,10; + bonus2 bAddEle,Ele_Fire,10; + bonus bCritical,15; + } - Id: 620004 AegisName: Up_Avenger Name: Patent Avenger @@ -101852,6 +102185,80 @@ Body: Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bBaseAtk,.@r/2*15; bonus2 bSkillAtk,"NC_AXETORNADO",10*(.@r/3); if (.@r>=7){ bonus2 bSkillAtk,"NC_AXEBOOMERANG",40; bonus2 bSkillCooldown,"NC_AXEBOOMERANG",-1000; } if (.@r>=9){ bonus2 bAddSize,Size_All,15; } if (.@r>=11){ bonus2 bSubEle,Ele_All,20; } + - Id: 630006 + AegisName: aegis_630006 + Name: Illusion Brionac + Type: Weapon + SubType: 2hSpear + Weight: 3000 + Attack: 210 + Range: 3 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 120 + Script: | + .@r = getrefine(); + bonus2 bAddClass,Class_All,10; + bonus2 bSkillAtk,"LG_OVERBRAND",5*(.@r/2); + if (.@r>=7) { + bonus2 bSkillAtk,"LG_OVERBRAND",20; + } + if (.@r>=9) { + bonus2 bAddSize,Size_Medium,15; + bonus2 bAddSize,Size_Large,15; + } + if (.@r>=11) { + bonus2 bAddRace,RC_Fish,30; + bonus2 bAddRace,RC_Demon,30; + } + - Id: 630007 + AegisName: aegis_630007 + Name: Illusion Zephyrus + Type: Weapon + SubType: 2hSpear + Weight: 3300 + Attack: 250 + Range: 3 + Slots: 2 + Jobs: + Crusader: true + Knight: true + Swordman: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 120 + Script: | + .@r = getrefine(); + bonus bBaseAtk,4*.@r; + bonus bLongAtkRate,3*(.@r/2); + if (.@r>=7) { + bonus2 bSkillAtk,"LK_SPIRALPIERCE",20; + } + if (.@r>=9) { + bonus bLongAtkRate,5; + } + if (.@r>=11) { + bonus2 bAddSize,Size_Medium,10; + bonus2 bAddSize,Size_Large,10; + bonus bHit,10; + } - Id: 640004 AegisName: Blue_Crystal_Staff Name: Blue Crystal Staff @@ -102136,3 +102543,4 @@ Body: Refineable: true Script: | .@r = getrefine(); bonus bLongAtkRate,3*(.@r/2); bonus bBaseAtk,20*(.@r/3); if (.@r>=7){ bonus2 bSkillAtk,"RL_D_TAIL",15; bonus2 bSkillCooldown,"RL_D_TAIL",-1000; } if (.@r>=9){ bonus2 bSkillAtk,"RL_D_TAIL",20; } if (.@r>=11){ bonus2 bAddEle,Ele_All,15; } + diff --git a/db/re/item_db_etc.yml b/db/re/item_db_etc.yml index b4feff414f..fbda490d98 100644 --- a/db/re/item_db_etc.yml +++ b/db/re/item_db_etc.yml @@ -24642,6 +24642,13 @@ Body: Weight: 10 Flags: BuyingStore: true + - Id: 7324 + AegisName: aegis_7324 + Name: Deep Sea Kraken's Leg + Type: Etc + Weight: 10 + Flags: + BuyingStore: true - Id: 7325 AegisName: Tube Name: Flexible Tube @@ -33992,6 +33999,69 @@ Body: Weight: 10 Script: | autobonus "{ bonus bLuk,50; bonus2 bMagicAtkEle,Ele_All,10; bonus2 bHPLossRate,300,1000; }",20,10000,BF_MAGIC; /* unknown rate */ + - Id: 25892 + AegisName: aegis_25892 + Name: Deep Sea Shell + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 25893 + AegisName: aegis_25893 + Name: Deep Sea Fish's Tail + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 25894 + AegisName: aegis_25894 + Name: Rotten Deep Sea Fish + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 25895 + AegisName: aegis_25895 + Name: Deep Sea Starfish + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 25896 + AegisName: aegis_25896 + Name: Deep Sea Crab + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 25897 + AegisName: aegis_25897 + Name: Deep Sea Witch's Crown + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 25898 + AegisName: Siroods_Fish_Rod + Name: Searud's Fishing Rod # !todo check english name + Type: Etc + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoSell: true + NoCart: true + NoStorage: true + NoGuildStorage: true + NoMail: true + NoAuction: true + - Id: 25899 + AegisName: aegis_25899 + Name: Abyssal Essence + Type: Etc + Weight: 10 + Flags: + BuyingStore: true - Id: 27012 AegisName: Kick_Step_Card Name: Kick Step Card @@ -37441,3 +37511,146 @@ Body: bonus5 bAutoSpellWhenHit,"SO_ELECTRICWALK",5,80,BF_MAGIC,0; autobonus "{ bonus bFlee,200; }",30,10000,BF_WEAPON,"{ specialeffect2 EF_TEIHIT1; }"; autobonus "{ bonus bSpeedRate,25; }",25,10000,BF_MAGIC,"{ specialeffect2 EF_POTION_BERSERK; }"; + - Id: 300140 + AegisName: aegis_300140 + Name: Deep Sea Sropho Card + Type: Card + Weight: 10 + Locations: + Right_Hand: true + Script: | + .@r = getrefine(); + bonus2 bMagicAtkEle,Ele_Wind,3; + if (.@r>=9) { + bonus2 bMagicAtkEle,Ele_Wind,2; + } + if (.@r>=11) { + bonus2 bMagicAtkEle,Ele_Wind,5; + } + - Id: 300141 + AegisName: aegis_300141 + Name: Deep Sea Obeaune Card + Type: Card + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bMatk,30; + - Id: 300142 + AegisName: aegis_300142 + Name: Deep Sea Deviace Card + Type: Card + Weight: 10 + Locations: + Right_Hand: true + Script: | + .@r = getrefine(); + bonus2 bAddRace,RC_Fish,5; + bonus2 bAddEle,Ele_Water,5; + if (.@r>=7) { + bonus2 bAddEle,Ele_Water,5; + } + if (.@r>=9) { + bonus2 bAddRace,RC_Fish,5; + } + - Id: 300143 + AegisName: aegis_300143 + Name: Deep Sea Marse Card + Type: Card + Weight: 10 + Locations: + Left_Hand: true + Script: | + bonus2 bSubEle,Ele_Earth,15; + bonus2 bSubRace,RC_Insect,15; + - Id: 300144 + AegisName: aegis_300144 + Name: Deep Sea Merman Card + Type: Card + Weight: 10 + Locations: + Shoes: true + Script: | + bonus bBaseAtk,4*(readparam(bStr)/15); + - Id: 300145 + AegisName: aegis_300145 + Name: Deep Sea Witch Card + Type: Card + Weight: 10 + Locations: + Garment: true + Script: | + bonus2 bMagicAtkEle,Ele_Fire,100; + bonus2 bMagicAtkEle,Ele_Dark,100; + bonus2 bSubEle,Ele_All,-30; + - Id: 300146 + AegisName: aegis_300146 + Name: Deep Sea Sedora Card + Type: Card + Weight: 10 + Locations: + Right_Hand: true + Script: | + bonus2 bCriticalAddRace,RC_Fish,30; + - Id: 300147 + AegisName: aegis_300147 + Name: Deep Sea Swordfish Card + Type: Card + Weight: 10 + Locations: + Head_Top: true + Head_Mid: true + Head_Low: true + Script: | + bonus2 bSubEle,Ele_Water,10; + if (getrefine()>=9) { + bonus2 bMagicAddEle,Ele_Water,10; + } + - Id: 300148 + AegisName: aegis_300148 + Name: Deep Sea Strouf Card + Type: Card + Weight: 10 + Locations: + Armor: true + Script: | + bonus bMaxHPrate,10; + bonus bMaxSPrate,5; + if (getrefine()>=9) { + bonus2 bMagicAddEle,Ele_Water,5; + bonus2 bAddEle,Ele_Water,5; + } + - Id: 300149 + AegisName: aegis_300149 + Name: Deep Sea Phen Card + Type: Card + Weight: 10 + Locations: + Garment: true + Script: | + bonus2 bSubEle,Ele_Neutral,15; + bonus2 bMagicAtkEle,Ele_Wind,3*getrefine(); + - Id: 300150 + AegisName: aegis_300150 + Name: Deep Sea King Dramoh Card + Type: Card + Weight: 10 + Locations: + Head_Top: true + Head_Mid: true + Head_Low: true + Script: | + bonus bMaxHPrate,-5; + bonus2 bAddClass,Class_All,(getrefine()/3); + - Id: 300151 + AegisName: aegis_300151 + Name: Deep Sea Kraken Card + Type: Card + Weight: 10 + Locations: + Right_Hand: true + Script: | + bonus bLongAtkRate,25; + bonus bPerfectHitRate,5; + diff --git a/sql-files/item_db_re_equip.sql b/sql-files/item_db_re_equip.sql index fcfba8f401..fe27e6b298 100644 --- a/sql-files/item_db_re_equip.sql +++ b/sql-files/item_db_re_equip.sql @@ -6258,6 +6258,8 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`pr REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32302,'Crimson_Rose','Crimson Rose','Weapon','Revolver',20,700,150,7,2,true,true,true,4,100,true,'.@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,3*(.@r/3); if (.@r >= 7) { bonus bAspd,1; bonus2 bAddClass,Class_All,5; if (.@r >= 9) { bonus bCritAtkRate,20; if (.@r >= 11) { autobonus3 "{ bonus bCritical,20; bonus bLongAtkRate,15; }",1000,60000,"RL_HEAT_BARREL"; } } }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_crusader`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32350,'Farthezan','Farthezan','Weapon','1hSword',20,1100,130,180,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus2 bSkillAtk,"PA_PRESSURE",40; bonus bVariableCastrate,-.@r; if (.@r>=9) bonus2 bSkillAtk,"LG_RAYOFGENESIS",30; if (.@r>=11) { bonus2 bSkillAtk,"LG_RAYOFGENESIS",20; bonus2 bSkillAtk,"PA_PRESSURE",20; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32351,'Estal','Estal','Weapon','1hSword',20,700,195,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus2 bSkillCooldown,"GN_SPORE_EXPLOSION",-1000; bonus bBaseAtk,4*.@r; if (.@r>=11) .@val = 50; else if (.@r>=9) .@val = 30; bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (400053,'aegis_400053','Illusion Morrigane\'s Helm','Armor',500,15,1,true,false,true,130,true,257,'.@r = getrefine();\nbonus bCritical,5;\nbonus bStr,5;\nif (.@r>=7) {\n bonus bBaseAtk,50;\n}\nif (.@r>=9) {\n bonus bAspdRate,10;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (400054,'aegis_400054','Great Magician\'s Ceremonial Crown','Armor',100,1,true,130,true,1811,'.@r = getrefine();\nbonus bMatk,20*(.@r/2);\nif (.@r>=7) {\n bonus bVariableCastrate,-15;\n}\nif (.@r>=9) {\n bonus2 bMagicAtkEle,Ele_All,15;\n}\nif (.@r>=11) {\n bonus bFixedCast,-200;\n bonus2 bMagicAddSize,Size_Small,15;\n bonus2 bMagicAddSize,Size_Medium,15;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450018,'Noblesse_Breath_Armor','Noblesse Breath Armor','Armor',20,100,1,true,true,true,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMaxHPrate,5; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus bMaxHPrate,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450019,'Noblesse_Knight_Armor','Noblesse Knight Armor','Armor',20,100,1,true,true,true,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bCritAtkRate,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_crusader`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450020,'Noblesse_Spear_Armor','Noblesse Spear Armor','Armor',20,100,1,true,true,true,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,50; if(.@r>=7) bonus bAspdRate,3; if(.@r>=9) bonus bLongAtkRate,5;'); @@ -6366,6 +6368,9 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450124,'Imperial_Super_Novice_Robe','Imperial Super Novice Robe','Armor',20,90,1,true,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,75; if(.@r>=7) bonus bAspdRate,5; if(.@r>=9) bonus bMaxHPrate,7;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450125,'Grace_Super_Novice_Suit','Grace Super Novice Suit','Armor',20,100,1,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bMaxHPrate,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_supernovice`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450126,'Grace_Super_Novice_Robe','Grace Super Novice Robe','Armor',20,100,1,true,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,100; if(.@r>=7) bonus bAspdRate,7; if(.@r>=9) bonus bMaxHPrate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_acolyte`,`job_alchemist`,`job_blacksmith`,`job_merchant`,`job_monk`,`job_priest`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (450144,'aegis_450144','Illusion Saint Robe','Armor',600,60,1,true,true,true,true,true,true,true,120,true,'.@r = getrefine();\nbonus bMaxHPrate,10;\nbonus bMaxSPrate,10;\nbonus bMdef,10;\nif (.@r>=9) {\n bonus2 bSubRace,RC_Fish,15;\n}\nif (.@r>=11) {\n bonus2 bIgnoreDefRaceRate,RC_Fish,20;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (450145,'aegis_450145','Illusion Saphien\'s Armor of Ocean','Armor',2200,50,1,true,true,true,true,true,true,true,120,true,'.@r = getrefine();\nbonus bMaxHPrate,10;\nbonus bMaxHP,125*.@r;\nif (.@r>=7) {\n bonus bDef,50;\n}\nif (.@r>=9) {\n autobonus2 "{ bonus2 bSubEle,Ele_Water,15; }",1,5000,BF_MAGIC|BF_WEAPON;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (450146,'aegis_450146','Illusion Chain Mail','Armor',3300,70,1,true,120,true,'.@r = getrefine();\nbonus bMaxHPrate,10;\nbonus bMaxSPrate,10;\nbonus bBaseAtk,4*.@r;\nbonus2 bAddEle,Ele_Fire,4*(.@r/3);\nbonus2 bAddEle,Ele_Water,4*(.@r/3);\nif (.@r>=9) {\n bonus2 bAddClass,Class_All,10;\n}\nif (.@r>=11) {\n bonus bAspdRate,10;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (470016,'Noblesse_Attack_Boots','Noblesse Attack Boots','Armor',20,1,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,10; bonus bHit,10; if (.@r>=7) bonus bFixedCast,-500; if (.@r>=9) bonus bLongAtkRate,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (470017,'Noblesse_Magic_Boots','Noblesse Magic Boots','Armor',20,1,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMatk,10; bonus bFlee,10; if (.@r>=7) bonus bFixedCast,-500; if (.@r>=9) bonus2 bMagicAtkEle,Ele_All,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (470018,'Imperial_Attack_Boots','Imperial Attack Boots','Armor',25,1,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bBaseAtk,15; bonus bHit,15; if (.@r>=7) bonus bFixedCast,-500; if (.@r>=9) bonus bLongAtkRate,7;'); @@ -6378,12 +6383,15 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`sl REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (480017,'Imperial_Magic_Manteau','Imperial Magic Manteau','Armor',25,1,true,125,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bVariableCastrate,-7; if (.@r>=7) bonus bDelayrate,-5; if (.@r>=9) bonus2 bMagicAtkEle,Ele_All,7;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (480018,'Grace_Attack_Manteau','Grace Attack Manteau','Armor',30,1,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bAspdRate,7; if (.@r>=7) bonus bDelayrate,-5; if (.@r>=9) bonus2 bAddSize,Size_All,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (480019,'Grace_Magic_Manteau','Grace Magic Manteau','Armor',30,1,true,150,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bVariableCastrate,-10; if (.@r>=7) bonus bDelayrate,-5; if (.@r>=9) bonus2 bMagicAtkEle,Ele_All,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (480054,'aegis_480054','Illusion Morrigane\'s Manteau','Armor',600,12,1,true,false,true,130,true,'.@r = getrefine();\nbonus bLuk,5;\nbonus bFlee,20;\nif (.@r>=7) {\n bonus2 bAddRace,RC_Fish,5;\n bonus2 bAddRace,RC_Insect,5;\n bonus2 bAddRace,RC_Demon,5;\n bonus2 bAddRace,RC_DemiHuman,5;\n}\nif (.@r>=9) {\n bonus2 bAddRace,RC_Fish,10;\n bonus2 bAddRace,RC_Insect,10;\n bonus2 bAddRace,RC_Demon,10;\n bonus2 bAddRace,RC_DemiHuman,10;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`location_right_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (490014,'Noblesse_Attack_Ring','Noblesse Attack Ring','Armor',5,1,true,100,100,true,true,true,true,true,true,true,'bonus bAspdRate,3; bonus bVariableCastrate,-5; bonus bCritAtkRate,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`location_right_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (490015,'Noblesse_Magic_Ring','Noblesse Magic Ring','Armor',5,1,true,100,100,true,true,true,true,true,true,true,'bonus bAspdRate,3; bonus bVariableCastrate,-5; bonus2 bMagicAddEle,Ele_All,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_right_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (490017,'Imperial_Attack_Ring','Imperial Attack Ring','Armor',50,1,true,125,100,true,true,true,true,true,true,true,'bonus bAspdRate,5; bonus bVariableCastrate,-7; bonus bCritAtkRate,7;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_right_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (490018,'Imperial_Magic_Ring','Imperial Magic Ring','Armor',50,1,true,125,100,true,true,true,true,true,true,true,'bonus bAspdRate,5; bonus bVariableCastrate,-7; bonus2 bMagicAddEle,Ele_All,7;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_right_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (490019,'Grace_Attack_Ring','Grace Attack Ring','Armor',50,1,true,150,100,true,true,true,true,true,true,true,'bonus bAspdRate,7; bonus bVariableCastrate,-10; bonus bCritAtkRate,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_right_accessory`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (490020,'Grace_Magic_Ring','Grace Magic Ring','Armor',50,1,true,150,100,true,true,true,true,true,true,true,'bonus bAspdRate,7; bonus bVariableCastrate,-10; bonus2 bMagicAddEle,Ele_All,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`job_all`,`job_novice`,`location_right_accessory`,`equip_level_min`,`script`) VALUES (490069,'aegis_490069','Illusion Morrigane\'s Belt','Armor',200,1,true,false,true,130,'bonus bMaxHPrate,5;\nbonus bStr,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`job_all`,`job_novice`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (490070,'aegis_490070','Illusion Morrigane\'s Pendant','Armor',200,1,true,false,true,130,'bonus bCritical,5;\nbonus bBaseAtk,20;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (500013,'Up_Sword_Of_Bluefire','Patent Red Lotus Sword','Weapon','1hSword',1000,200,1,2,true,true,true,true,true,4,150,true,'.@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bLongAtkRate,.@r/3*4; if (.@r>=7){ bonus2 bSkillUseSPrate,"GN_CARTCANNON",-10; bonus bVariableCastrate,-7; } if (.@r>=9){ bonus2 bSkillAtk,"GN_CARTCANNON",20; } if (.@r>=11){ bonus bVariableCastrate,-5; bonus2 bSkillAtk,"CR_ACIDDEMONSTRATION",10; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (500014,'Up_Slate_Sword','Patent Slate Sword','Weapon','1hSword',1200,205,1,2,true,true,true,true,true,4,150,true,'.@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus2 bSkillAtk,"GN_CART_TORNADO",.@r/3*10; bonus2 bSkillAtk,"GN_HELLS_PLANT",.@r/3*5; if (.@r>=7){ bonus2 bSkillAtk,"GN_CART_TORNADO",20; bonus2 bSkillAtk,"GN_HELLS_PLANT",10; } if (.@r>=9){ bonus bDelayRate,-10; } if (.@r>=11){ bonus bDelayRate,-5; bonus bMaxHPrate,10; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_crusader`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (500017,'Up_Light_Blade','Patent Light Blade','Weapon','1hSword',1200,130,195,1,2,true,true,true,true,true,4,150,true,'.@r = getrefine(); bonus bMatk,.@r/2*15; bonus2 bSkillAtk,"PA_PRESSURE",.@r/3*5; bonus2 bSkillAtk,"LG_RAYOFGENESIS",.@r/3*5; if (.@r>=7){ bonus bVariableCastrate,-10; } if (.@r>=9){ bonus2 bMagicAtkEle,Ele_Holy,15; } if (.@r>=11){ bonus2 bMagicAddSize,Size_All,15; bonus2 bSkillAtk,"PA_PRESSURE",15; bonus2 bSkillAtk,"LG_RAYOFGENESIS",15; }'); @@ -6402,16 +6410,22 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`we REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_monk`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (560002,'Ray_Knuckle','Ray Knuckle','Weapon','Knuckle',700,185,1,2,true,true,true,true,true,4,100,true,'.@r = getrefine(); bonus bBaseAtk,.@r/2*10; bonus2 bSkillAtk,"SR_TIGERCANNON",.@r/3*4; if (.@r>=9) { bonus2 bSkillAtk,"SR_TIGERCANNON",15; } if (.@r>=11) { bonus2 bSkillCooldown,"SR_TIGERCANNON",-1000; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_monk`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (560008,'Up_Iron_Nail_K','Patent Iron Nail','Weapon','Knuckle',1200,205,1,2,true,true,true,true,true,4,150,true,'.@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bLongAtkRate,.@r/3*4; if (.@r>=7){ bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",10; bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",10; } if (.@r>=9){ bonus2 bSkillCooldown,"SR_RAMPAGEBLASTER",-1000; bonus2 bSkillCooldown,"SR_EARTHSHAKER",-1000; } if (.@r>=11){ bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",15; bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",15; bonus2 bSkillUseSPrate,"SR_RAMPAGEBLASTER",-15; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_monk`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (560009,'Up_Ray_Knuckle','Patent Ray Knuckle','Weapon','Knuckle',800,205,1,2,true,true,true,true,true,4,150,true,'.@r = getrefine(); bonus bBaseAtk,15*(.@r/2); bonus2 bSkillAtk,"SR_TIGERCANNON",4*(.@r/3); if (.@r>=7){ bonus2 bSkillAtk,"SR_TIGERCANNON",15; bonus2 bSkillAtk,"SR_HELLGATE",20; } if (.@r>=9){ bonus2 bSkillCooldown,"SR_TIGERCANNON",-1000; } if (.@r>=11){ bonus bMaxHPrate,10; bonus2 bSkillAtk,"SR_HELLGATE",15; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (570008,'aegis_570008','Illusion Electric Guitar','Weapon','Musical',1800,170,180,1,2,true,true,true,true,'Male',true,4,120,true,'.@r = getrefine();\nbonus bLongAtkRate,3*(.@r/2);\nbonus bMatk,6*(.@r/2);\nif (.@r>=7) {\n bonus2 bMagicAtkEle,Ele_Neutral,10;\n bonus2 bSkillUseSPrate,"WM_SEVERE_RAINSTORM",10;\n}\nif (.@r>=9) {\n bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15;\n bonus2 bSkillAtk,"WM_REVERBERATION",15;\n}\nif (.@r>=11) {\n bonus2 bMagicAtkEle,Ele_Water,10;\n bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-1000;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (570009,'Up_Trumpet_Shell_K','Patent Trumpet Shell','Weapon','Musical',1000,160,230,1,2,true,true,true,true,'Male',true,4,150,true,'.@r = getrefine(); bonus bMatk,.@r/2*15; bonus2 bMagicAtkEle,Ele_All,.@r/3*4; if (.@r>=7){ bonus2 bSkillAtk,"WM_REVERBERATION",10; bonus2 bSkillAtk,"WM_METALICSOUND",10; } if (.@r>=9){ bonus2 bSkillFixedCast,WM_REVERBERATION,-500; } if (.@r>=11){ bonus bMatkRate,7; bonus2 bSkillAtk,"WM_REVERBERATION",15; bonus2 bSkillAtk,"WM_METALICSOUND",15; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (580008,'aegis_580008','Illusion Electric Eel','Weapon','Whip',1800,170,180,2,2,true,true,true,true,'Female',true,4,120,true,'.@r = getrefine();\nbonus bLongAtkRate,3*(.@r/2);\nbonus bMatk,6*(.@r/2);\nif (.@r>=7) {\n bonus2 bMagicAtkEle,Ele_Neutral,10;\n bonus2 bSkillUseSPrate,"WM_SEVERE_RAINSTORM",10;\n}\nif (.@r>=9) {\n bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15;\n bonus2 bSkillAtk,"WM_REVERBERATION",15;\n}\nif (.@r>=11) {\n bonus2 bMagicAtkEle,Ele_Water,10;\n bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-1000;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (580009,'Up_Barb_Wire_K','Patent Barbed Wire Whip','Weapon','Whip',1000,160,230,1,2,true,true,true,true,'Female',true,4,150,true,'.@r = getrefine(); bonus bMatk,.@r/2*15; bonus2 bMagicAtkEle,Ele_All,.@r/3*4; if (.@r>=7){ bonus2 bSkillAtk,"WM_REVERBERATION",10; bonus2 bSkillAtk,"WM_METALICSOUND",10; } if (.@r>=9){ bonus2 bSkillFixedCast,WM_REVERBERATION,-500; } if (.@r>=11){ bonus bMatkRate,7; bonus2 bSkillAtk,"WM_REVERBERATION",15; bonus2 bSkillAtk,"WM_METALICSOUND",15; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (590003,'Saint_Hall','Saint Mace','Weapon','Mace',800,170,165,1,2,true,true,true,true,true,4,100,true,'bonus bUnbreakableWeapon; bonus bMatkRate,3; .@r = getrefine(); bonus2 bMagicAtkEle,Ele_Holy,.@r/2*1; bonus2 bSkillAtk,"AB_ADORAMUS",.@r/3*5; if (.@r>=9) { bonus bVariableCastrate,-10; } if (.@r>=11) { bonus2 bMagicAtkEle,Ele_Holy,10; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (590011,'Up_Meteor_Striker','Patent Meteor Striker','Weapon','Mace',3500,320,1,2,true,true,true,true,true,true,4,150,true,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus2 bSkillAtk,"NC_VULCANARM",.@r/3*10; bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",.@r/3*10; if (.@r>=7){ bonus2 bSkillAtk,"NC_VULCANARM",15; bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",15; } if (.@r>=9){ bonus2 bSkillAtk,"NC_ARMSCANNON",25; } if (.@r>=11){ bonus bLongAtkRate,15; bonus bVariableCastrate,-15; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (590012,'Up_Saint_Hall','Patent Saint Mace','Weapon','Mace',1000,170,200,1,2,true,true,true,true,true,4,150,true,'bonus bUnbreakableWeapon; bonus bMatkRate,3; .@r = getrefine(); bonus2 bMagicAtkEle,Ele_Holy,.@r/2*1; bonus2 bSkillAtk,"AB_ADORAMUS",.@r/3*5; if (.@r>=7){ bonus bVariableCastrate,-10; bonus2 bMagicAtkEle,Ele_Holy,10; } if (.@r>=9){ bonus2 bMagicAddRace,RC_All,15; } if (.@r>=11){ bonus2 bSkillAtk,"AB_ADORAMUS",15; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (600009,'Up_Oriental_Sword','Patent Oriental Sword','Weapon','2hSword',2000,240,1,2,true,true,true,true,true,true,4,150,true,'.@r = getrefine(); .@i = max(2,getskilllv("RK_SONICWAVE")); bonus bBaseAtk,.@r/2*15; bonus2 bSkillAtk,"RK_SONICWAVE",.@r/3*10; if (.@r>=7){ bonus bUnbreakableWeapon; bonus bAspdRate,10; } if (.@r>=9){ bonus5 bAutoSpell,"RK_SONICWAVE",.@i,20,BF_SHORT,1; } if (.@r>=11){ bonus bCritical,15; bonus bCritAtkRate,15; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_upper`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (600011,'aegis_600011','Illusion Death Guidance','Weapon','2hSword',2000,240,1,2,true,true,true,true,true,true,true,true,true,4,120,'.@r = getrefine();\nbonus bBaseAtk,4*.@r;\nif (.@r>=7) {\n bonus2 bSkillAtk,"RK_STORMBLAST",20;\n}\nif (.@r>=9) {\n autobonus "{ bonus2 bHPRegenRate,getrefine()*50,1000; }",30,4000,BF_WEAPON;\n}\nif (.@r>=11) {\n bonus bCritAtkRate,15;\n bonus bCritical,15;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (610003,'Blade_Katar','Blade Katar','Weapon','Katar',1000,185,1,2,true,true,true,true,true,true,4,100,true,'.@r = getrefine(); bonus bBaseAtk,.@r/2*10; bonus bAspdRate,(.@r*2/3); if (.@r>=2) { bonus2 bSkillAtk,"GC_ROLLINGCUTTER",20; } if (.@r>=11) { bonus bDelayRate,-7; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (610008,'Up_Shiver_Katar_K','Patent Shiver Katar','Weapon','Katar',1400,255,1,2,true,true,true,true,true,true,4,150,true,'.@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus2 bSkillAtk,"GC_CROSSIMPACT",.@r/3*10; if (.@r>=7){ bonus bCritAtkRate,15; bonus bAspdRate,10; } if (.@r>=9){ bonus2 bAddRace,RC_Brute,25; bonus2 bAddRace,RC_DemiHuman,25; } if (.@r>=11){ bonus bCritical,15; bonus2 bSkillCooldown,"GC_DARKCROW",-10000; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (610009,'Up_Blade_Katar','Patent Blade Katar','Weapon','Katar',1400,275,1,2,true,true,true,true,true,true,4,150,true,'.@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bAspdRate,(.@r*2/3); if (.@r>=7){ bonus2 bSkillAtk,"GC_ROLLINGCUTTER",25; bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",25; } if (.@r>=9){ bonus bDelayRate,-12; } if (.@r>=11){ bonus bShortAtkRate,10; bonus bLongAtkRate,10; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (610012,'aegis_610012','Illusion Katar of Frozen Icicle','Weapon','Katar',1200,220,1,2,true,true,true,4,120,'.@r = getrefine();\nbonus bBaseAtk,5*.@r;\nif (.@r>=7) {\n bonus2 bSkillAtk,"GC_CROSSIMPACT",20;\n}\nif (.@r>=9) {\n bonus bAspdRate,10;\n}\nif (.@r>=11) {\n bonus2 bAddRace,RC_Insect,10;\n bonus2 bAddEle,Ele_Fire,10;\n bonus bCritical,15;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (620004,'Up_Avenger','Patent Avenger','Weapon','2hAxe',7000,290,1,2,true,true,true,true,true,true,4,150,true,'.@r = getrefine(); bonus bUnbreakableWeapon; bonus bBaseAtk,.@r/2*15; bonus2 bSkillAtk,"NC_AXETORNADO",10*(.@r/3); if (.@r>=7){ bonus2 bSkillAtk,"NC_AXEBOOMERANG",40; bonus2 bSkillCooldown,"NC_AXEBOOMERANG",-1000; } if (.@r>=9){ bonus2 bAddSize,Size_All,15; } if (.@r>=11){ bonus2 bSubEle,Ele_All,20; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (630006,'aegis_630006','Illusion Brionac','Weapon','2hSpear',3000,210,3,2,true,true,true,true,true,true,true,true,4,120,'.@r = getrefine();\nbonus2 bAddClass,Class_All,10;\nbonus2 bSkillAtk,"LG_OVERBRAND",5*(.@r/2);\nif (.@r>=7) {\n bonus2 bSkillAtk,"LG_OVERBRAND",20;\n}\nif (.@r>=9) {\n bonus2 bAddSize,Size_Medium,15;\n bonus2 bAddSize,Size_Large,15;\n}\nif (.@r>=11) {\n bonus2 bAddRace,RC_Fish,30;\n bonus2 bAddRace,RC_Demon,30;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (630007,'aegis_630007','Illusion Zephyrus','Weapon','2hSpear',3300,250,3,2,true,true,true,true,true,true,true,true,4,120,'.@r = getrefine();\nbonus bBaseAtk,4*.@r;\nbonus bLongAtkRate,3*(.@r/2);\nif (.@r>=7) {\n bonus2 bSkillAtk,"LK_SPIRALPIERCE",20;\n}\nif (.@r>=9) {\n bonus bLongAtkRate,5;\n}\nif (.@r>=11) {\n bonus2 bAddSize,Size_Medium,10;\n bonus2 bAddSize,Size_Large,10;\n bonus bHit,10;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (640004,'Blue_Crystal_Staff','Blue Crystal Staff','Weapon','Staff',800,100,200,1,2,true,true,true,true,true,4,100,true,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,.@r/2*10; bonus2 bSkillAtk,"WL_JACKFROST",.@r/3*12; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Water,7; } if (.@r>=11) { bonus2 bSkillCooldown,"WL_JACKFROST",-1000; bonus2 bMagicAddEle,Ele_Fire,7; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (640011,'Up_Iron_Staff','Patent Iron Staff','Weapon','2hStaff',1000,100,235,1,2,true,true,true,true,true,true,4,150,true,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,.@r/2*15; bonus2 bSkillAtk,"WL_EARTHSTRAIN",.@r/3*12; if (.@r>=7){ bonus bVariableCastrate,-10; bonus2 bMagicAtkEle,Ele_Earth,15; bonus2 bMagicAtkEle,Ele_Fire,15; } if (.@r>=9){ bonus2 bSkillCooldown,"WL_EARTHSTRAIN",-1000; bonus bVariableCastrate,-5; } if (.@r>=11){ bonus2 bMagicAddSize,Size_All,15; bonus2 bSkillAtk,"WL_CRIMSONROCK",15; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (640012,'Up_Blue_Crystal_Staff','Patent Blue Crystal Staff','Weapon','Staff',1000,100,235,1,2,true,true,true,true,true,4,150,true,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,.@r/2*15; bonus2 bSkillAtk,"WL_JACKFROST",.@r/3*12; if (.@r>=7){ bonus bVariableCastrate,-10; bonus2 bMagicAtkEle,Ele_Water,15; bonus2 bMagicAtkEle,Ele_Wind,15; } if (.@r>=9){ bonus2 bSkillCooldown,"WL_JACKFROST",-1000; bonus bDelayRate,-5; } if (.@r>=11){ bonus2 bMagicAddSize,Size_All,15; bonus2 bSkillAtk,"WL_CHAINLIGHTNING",15; }'); diff --git a/sql-files/item_db_re_etc.sql b/sql-files/item_db_re_etc.sql index aa320943de..e7ed095ee5 100644 --- a/sql-files/item_db_re_etc.sql +++ b/sql-files/item_db_re_etc.sql @@ -2480,6 +2480,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7321,'Fragment_Of_Crystal','Crystal Fragment','Etc',552,10,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7322,'Poisonous_Gas','Toxic Gas','Etc',666,10,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7323,'Battered_Kettle','Battered Kettle','Etc',256,10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (7324,'aegis_7324','Deep Sea Kraken\'s Leg','Etc',10,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7325,'Tube','Flexible Tube','Etc',102,10,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7326,'Fluorescent_Liquid','Fluorescent Liquid','Etc',712,10,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7327,'Headlamp','Flashlight','Etc',1024,10,true); @@ -3500,6 +3501,14 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (25703,'M_M_Overpower','Modification Module (Overpower)','Card',20,10,'autobonus "{ bonus bStr,50; bonus2 bAddClass,Class_All,15; bonus bMatkRate,-15; }",20,10000,BF_WEAPON; /* unknown rate */'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (25704,'M_M_Fatal_Flash','Modification Module (Fatal Flash)','Card',20,10,'autobonus "{ bonus bStr,50; bonus bCritAtkRate,10; bonus2 bHPLossRate,300,1000; }",20,10000,BF_WEAPON; /* unknown rate */'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (25705,'M_M_Lucky_Strike','Modification Module (Lucky Strike)','Card',20,10,'autobonus "{ bonus bLuk,50; bonus2 bMagicAtkEle,Ele_All,10; bonus2 bHPLossRate,300,1000; }",20,10000,BF_MAGIC; /* unknown rate */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (25892,'aegis_25892','Deep Sea Shell','Etc',10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (25893,'aegis_25893','Deep Sea Fish\'s Tail','Etc',10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (25894,'aegis_25894','Rotten Deep Sea Fish','Etc',10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (25895,'aegis_25895','Deep Sea Starfish','Etc',10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (25896,'aegis_25896','Deep Sea Crab','Etc',10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (25897,'aegis_25897','Deep Sea Witch\'s Crown','Etc',10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`) VALUES (25898,'Siroods_Fish_Rod','Searud\'s Fishing Rod','Etc',100,true,true,true,true,true,true,true,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (25899,'aegis_25899','Abyssal Essence','Etc',10,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`script`) VALUES (27012,'Kick_Step_Card','Kick Step Card','Card',20,10,true,'bonus bMaxHPrate,8; if((eaclass()&EAJ_THIRDMASK) == EAJ_MECHANIC){ bonus bLongAtkDef,30; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (27013,'Kick_&_Kick_Card','Kick & Kick Card','Card',20,10,true,'bonus2 bSkillAtk,"NC_VULCANARM",10+((getrefine()>=10)*20);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`script`) VALUES (27014,'Green_Cenere_Card','Green Cenere Card','Card',20,10,true,'bonus bMaxHPrate,2; autobonus2 "{ bonus2 bHPRegenRate,1000,1000; }",30,5000;'); @@ -3926,3 +3935,15 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (31024,'As_Bdy_Knight_Card','Immortal Cursed Knight Card','Card',20,10,true,true,'bonus2 bAddClass,Class_All,10;\nbonus5 bAutoSpell,"RK_IGNITIONBREAK",5,20,BF_WEAPON,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (31025,'As_Wind_Ghost_Card','Immortal Wind Ghost Card','Card',20,10,true,true,'bonus bMatkRate,10;\nbonus5 bAutoSpell,"SO_CLOUD_KILL",5,10,BF_MAGIC,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (31026,'As_Ragged_Golem_Card','Stephane Jack Earnest Wolf Card','Card',20,10,true,true,'bonus5 bAutoSpellWhenHit,"SO_FIREWALK",5,35,BF_WEAPON,0;\nbonus5 bAutoSpellWhenHit,"SO_ELECTRICWALK",5,80,BF_MAGIC,0;\nautobonus "{ bonus bFlee,200; }",30,10000,BF_WEAPON,"{ specialeffect2 EF_TEIHIT1; }";\nautobonus "{ bonus bSpeedRate,25; }",25,10000,BF_MAGIC,"{ specialeffect2 EF_POTION_BERSERK; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_hand`,`script`) VALUES (300140,'aegis_300140','Deep Sea Sropho Card','Card',10,true,'.@r = getrefine();\nbonus2 bMagicAtkEle,Ele_Wind,3;\nif (.@r>=9) {\n bonus2 bMagicAtkEle,Ele_Wind,2;\n}\nif (.@r>=11) {\n bonus2 bMagicAtkEle,Ele_Wind,5;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (300141,'aegis_300141','Deep Sea Obeaune Card','Card',10,true,true,'bonus bMatk,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_hand`,`script`) VALUES (300142,'aegis_300142','Deep Sea Deviace Card','Card',10,true,'.@r = getrefine();\nbonus2 bAddRace,RC_Fish,5;\nbonus2 bAddEle,Ele_Water,5;\nif (.@r>=7) {\n bonus2 bAddEle,Ele_Water,5;\n}\nif (.@r>=9) {\n bonus2 bAddRace,RC_Fish,5;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_left_hand`,`script`) VALUES (300143,'aegis_300143','Deep Sea Marse Card','Card',10,true,'bonus2 bSubEle,Ele_Earth,15;\nbonus2 bSubRace,RC_Insect,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_shoes`,`script`) VALUES (300144,'aegis_300144','Deep Sea Merman Card','Card',10,true,'bonus bBaseAtk,4*(readparam(bStr)/15);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_garment`,`script`) VALUES (300145,'aegis_300145','Deep Sea Witch Card','Card',10,true,'bonus2 bMagicAtkEle,Ele_Fire,100;\nbonus2 bMagicAtkEle,Ele_Dark,100;\nbonus2 bSubEle,Ele_All,-30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_hand`,`script`) VALUES (300146,'aegis_300146','Deep Sea Sedora Card','Card',10,true,'bonus2 bCriticalAddRace,RC_Fish,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`script`) VALUES (300147,'aegis_300147','Deep Sea Swordfish Card','Card',10,true,true,true,'bonus2 bSubEle,Ele_Water,10;\nif (getrefine()>=9) {\n bonus2 bMagicAddEle,Ele_Water,10;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_armor`,`script`) VALUES (300148,'aegis_300148','Deep Sea Strouf Card','Card',10,true,'bonus bMaxHPrate,10;\nbonus bMaxSPrate,5;\nif (getrefine()>=9) {\n bonus2 bMagicAddEle,Ele_Water,5;\n bonus2 bAddEle,Ele_Water,5;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_garment`,`script`) VALUES (300149,'aegis_300149','Deep Sea Phen Card','Card',10,true,'bonus2 bSubEle,Ele_Neutral,15;\nbonus2 bMagicAtkEle,Ele_Wind,3*getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`script`) VALUES (300150,'aegis_300150','Deep Sea King Dramoh Card','Card',10,true,true,true,'bonus bMaxHPrate,-5;\nbonus2 bAddClass,Class_All,(getrefine()/3);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_hand`,`script`) VALUES (300151,'aegis_300151','Deep Sea Kraken Card','Card',10,true,'bonus bLongAtkRate,25;\nbonus bPerfectHitRate,5;'); From c867d2f5b74a13e00f75848ccfcb1c87d73e9f7d Mon Sep 17 00:00:00 2001 From: Atemo Date: Thu, 29 Oct 2020 01:21:40 +0100 Subject: [PATCH 38/45] Added Royal Members Cards (nov 2019) (#5498) --- db/re/item_combo_db.txt | 4 ++++ db/re/item_db_equip.yml | 40 ++++++++++++++++++++++++++++++++++ db/re/item_db_etc.yml | 36 +++++++++++++++++++++++++++++- sql-files/item_db_re_equip.sql | 3 +++ sql-files/item_db_re_etc.sql | 5 +++++ 5 files changed, 87 insertions(+), 1 deletion(-) diff --git a/db/re/item_combo_db.txt b/db/re/item_combo_db.txt index 81957dc05e..45c4bee648 100644 --- a/db/re/item_combo_db.txt +++ b/db/re/item_combo_db.txt @@ -1517,6 +1517,7 @@ 22238:830002,{ bonus bDex,10; bonus bLongAtkRate,5; } 22238:820001,{ bonus bDex,10; bonus bLongAtkRate,5; } 28763:510022,{ .@r = getequiprefinerycnt(EQI_HAND_R) + getequiprefinerycnt(EQI_HAND_L); bonus bBaseAtk,15*(.@r/3); bonus2 bAddClass,Class_All,3*(.@r/5); if (.@r>=14){ bonus2 bSkillAtk,"KO_JYUMONJIKIRI",30; bonus2 bSkillCooldown,"KO_JYUMONJIKIRI",-2000; } if (.@r>=16){ skill "OB_ZANGETSU",getskilllv("KG_KAGEHUMI"); skill "KG_KAGEHUMI",getskilllv("OB_ZANGETSU"); } if (.@r>=18){ bonus2 bAddEle,Ele_All,15; } if (.@r>=20){ bonus2 bSkillAtk,"KO_JYUMONJIKIRI",25; } } +300128:300130,{ bonus2 bAddSize,Size_Medium,5; bonus2 bMagicAddSize,Size_Medium,5; bonus bMatkRate,5; bonus2 bAddClass,Class_All,5; } //300141:300120,{ bonus2 bMagicAddEle,Ele_Water,15; } 300144:300150,{ bonus bCritAtkRate,15; } 300146:4521,{ bonus bCritAtkRate,15; } @@ -1525,6 +1526,9 @@ 300148:300142,{ bonus bBaseAtk,30; } 300149:300141,{ bonus2 bSubEle,Ele_Neutral,5; } 300150:4524,{ bonus bMaxHPrate,15; bonus bStr,4; } +400049:18179,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",10; bonus bLongAtkRate,3*(.@r_weapon/2); } +400049:18180,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus bDelayrate,-10; bonus bLongAtkRate,3*(.@r_weapon/2); } +400049:32019,{ .@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus bBaseAtk,30; bonus2 bSkillAtk,"LG_CANNONSPEAR",4*(.@r_weapon/2); } 400053:480054:490069:490070,{ bonus2 bAddSize,Size_Small,20; bonus bCritical,5; bonus2 bAddClass,Class_All,10; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bStr,5; if (.@r>=18) { bonus bFlee2,10; bonus bBaseAtk,50; } if (.@r>=22) { bonus2 bAddSize,Size_Medium,20; bonus bCritAtkRate,20; } } 400054:13493,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus bMatk,30; bonus2 bSkillAtk,"WL_HELLINFERNO",4*(.@r/2); } 400054:26151,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus bMatk,30; bonus2 bSkillAtk,"WL_COMET",5*(.@r/2); } diff --git a/db/re/item_db_equip.yml b/db/re/item_db_equip.yml index 2681aa0f1a..8bad39f3b4 100644 --- a/db/re/item_db_equip.yml +++ b/db/re/item_db_equip.yml @@ -97919,6 +97919,46 @@ Body: Refineable: true Script: | .@r = getrefine(); bonus2 bSkillCooldown,"GN_SPORE_EXPLOSION",-1000; bonus bBaseAtk,4*.@r; if (.@r>=11) .@val = 50; else if (.@r>=9) .@val = 30; bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",.@val; + - Id: 400045 + AegisName: aegis_400045 + Name: Pierced apple # !todo check english name + Type: Armor + View: 1952 + Locations: + Head_Top: true + Refineable: true + - Id: 400046 + AegisName: aegis_400046 + Name: Costume pierced apple # !todo check english name + Type: Armor + View: 1952 + Locations: + Costume_Head_Top: true + - Id: 400049 + AegisName: aegis_400049 + Name: Stripe Hat + Type: Armor + View: 1728 + Weight: 100 + Slots: 1 + Locations: + Head_Top: true + EquipLevelMin: 130 + Refineable: true + Script: | + .@r = getrefine(); + bonus bBaseAtk,20*(.@r/2); + if (.@r>=7) { + bonus bVariableCastrate,-15; + } + if (.@r>=9) { + bonus bLongAtkRate,15; + } + if (.@r>=11) { + bonus bFixedCast,-200; + bonus2 bAddSize,Size_Small,15; + bonus2 bAddSize,Size_Medium,15; + } - Id: 400053 AegisName: aegis_400053 Name: Illusion Morrigane's Helm diff --git a/db/re/item_db_etc.yml b/db/re/item_db_etc.yml index fbda490d98..1c6a5b24ce 100644 --- a/db/re/item_db_etc.yml +++ b/db/re/item_db_etc.yml @@ -37511,6 +37511,37 @@ Body: bonus5 bAutoSpellWhenHit,"SO_ELECTRICWALK",5,80,BF_MAGIC,0; autobonus "{ bonus bFlee,200; }",30,10000,BF_WEAPON,"{ specialeffect2 EF_TEIHIT1; }"; autobonus "{ bonus bSpeedRate,25; }",25,10000,BF_MAGIC,"{ specialeffect2 EF_POTION_BERSERK; }"; + - Id: 300127 + AegisName: aegis_300127 + Name: Wolf Card + Type: Card + Weight: 10 + Locations: + Right_Hand: true + - Id: 300128 + AegisName: aegis_300128 + Name: Wolf Lugenburg Card + Type: Card + Weight: 10 + Locations: + Right_Hand: true + Script: | + bonus2 bAddRace,RC_Insect,15; + bonus2 bMagicAddRace,RC_Insect,15; + - Id: 300129 + AegisName: aegis_300129 + Name: Poe Card + Type: Card + Weight: 10 + Locations: + Right_Hand: true + - Id: 300130 + AegisName: aegis_300130 + Name: Poe Richard Card + Type: Card + Weight: 10 + Locations: + Right_Hand: true - Id: 300140 AegisName: aegis_300140 Name: Deep Sea Sropho Card @@ -37653,4 +37684,7 @@ Body: Script: | bonus bLongAtkRate,25; bonus bPerfectHitRate,5; - + - Id: 1000235 + AegisName: aegis_1000235 + Name: Great Hunter's Mark # !todo check english name + Type: Etc diff --git a/sql-files/item_db_re_equip.sql b/sql-files/item_db_re_equip.sql index fe27e6b298..dc60d37293 100644 --- a/sql-files/item_db_re_equip.sql +++ b/sql-files/item_db_re_equip.sql @@ -6258,6 +6258,9 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`pr REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32302,'Crimson_Rose','Crimson Rose','Weapon','Revolver',20,700,150,7,2,true,true,true,4,100,true,'.@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,3*(.@r/3); if (.@r >= 7) { bonus bAspd,1; bonus2 bAddClass,Class_All,5; if (.@r >= 9) { bonus bCritAtkRate,20; if (.@r >= 11) { autobonus3 "{ bonus bCritical,20; bonus bLongAtkRate,15; }",1000,60000,"RL_HEAT_BARREL"; } } }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_crusader`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32350,'Farthezan','Farthezan','Weapon','1hSword',20,1100,130,180,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus2 bSkillAtk,"PA_PRESSURE",40; bonus bVariableCastrate,-.@r; if (.@r>=9) bonus2 bSkillAtk,"LG_RAYOFGENESIS",30; if (.@r>=11) { bonus2 bSkillAtk,"LG_RAYOFGENESIS",20; bonus2 bSkillAtk,"PA_PRESSURE",20; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32351,'Estal','Estal','Weapon','1hSword',20,700,195,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus2 bSkillCooldown,"GN_SPORE_EXPLOSION",-1000; bonus bBaseAtk,4*.@r; if (.@r>=11) .@val = 50; else if (.@r>=9) .@val = 30; bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_head_top`,`refineable`,`view`) VALUES (400045,'aegis_400045','Pierced apple','Armor',true,true,1952); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`view`) VALUES (400046,'aegis_400046','Costume pierced apple','Armor',true,1952); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (400049,'aegis_400049','Stripe Hat','Armor',100,1,true,130,true,1728,'.@r = getrefine();\nbonus bBaseAtk,20*(.@r/2);\nif (.@r>=7) {\n bonus bVariableCastrate,-15;\n}\nif (.@r>=9) {\n bonus bLongAtkRate,15;\n}\nif (.@r>=11) {\n bonus bFixedCast,-200;\n bonus2 bAddSize,Size_Small,15;\n bonus2 bAddSize,Size_Medium,15;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (400053,'aegis_400053','Illusion Morrigane\'s Helm','Armor',500,15,1,true,false,true,130,true,257,'.@r = getrefine();\nbonus bCritical,5;\nbonus bStr,5;\nif (.@r>=7) {\n bonus bBaseAtk,50;\n}\nif (.@r>=9) {\n bonus bAspdRate,10;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (400054,'aegis_400054','Great Magician\'s Ceremonial Crown','Armor',100,1,true,130,true,1811,'.@r = getrefine();\nbonus bMatk,20*(.@r/2);\nif (.@r>=7) {\n bonus bVariableCastrate,-15;\n}\nif (.@r>=9) {\n bonus2 bMagicAtkEle,Ele_All,15;\n}\nif (.@r>=11) {\n bonus bFixedCast,-200;\n bonus2 bMagicAddSize,Size_Small,15;\n bonus2 bMagicAddSize,Size_Medium,15;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_armor`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (450018,'Noblesse_Breath_Armor','Noblesse Breath Armor','Armor',20,100,1,true,true,true,true,true,100,true,100,true,true,true,true,true,true,true,'.@r = getrefine(); bonus bMaxHPrate,5; if(.@r>=7) bonus bVariableCastrate,-10; if(.@r>=9) bonus bMaxHPrate,5;'); diff --git a/sql-files/item_db_re_etc.sql b/sql-files/item_db_re_etc.sql index e7ed095ee5..41bce84783 100644 --- a/sql-files/item_db_re_etc.sql +++ b/sql-files/item_db_re_etc.sql @@ -3935,6 +3935,10 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (31024,'As_Bdy_Knight_Card','Immortal Cursed Knight Card','Card',20,10,true,true,'bonus2 bAddClass,Class_All,10;\nbonus5 bAutoSpell,"RK_IGNITIONBREAK",5,20,BF_WEAPON,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (31025,'As_Wind_Ghost_Card','Immortal Wind Ghost Card','Card',20,10,true,true,'bonus bMatkRate,10;\nbonus5 bAutoSpell,"SO_CLOUD_KILL",5,10,BF_MAGIC,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (31026,'As_Ragged_Golem_Card','Stephane Jack Earnest Wolf Card','Card',20,10,true,true,'bonus5 bAutoSpellWhenHit,"SO_FIREWALK",5,35,BF_WEAPON,0;\nbonus5 bAutoSpellWhenHit,"SO_ELECTRICWALK",5,80,BF_MAGIC,0;\nautobonus "{ bonus bFlee,200; }",30,10000,BF_WEAPON,"{ specialeffect2 EF_TEIHIT1; }";\nautobonus "{ bonus bSpeedRate,25; }",25,10000,BF_MAGIC,"{ specialeffect2 EF_POTION_BERSERK; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_hand`) VALUES (300127,'aegis_300127','Wolf Card','Card',10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_hand`,`script`) VALUES (300128,'aegis_300128','Wolf Lugenburg Card','Card',10,true,'bonus2 bAddRace,RC_Insect,15;\nbonus2 bMagicAddRace,RC_Insect,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_hand`) VALUES (300129,'aegis_300129','Poe Card','Card',10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_hand`) VALUES (300130,'aegis_300130','Poe Richard Card','Card',10,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_hand`,`script`) VALUES (300140,'aegis_300140','Deep Sea Sropho Card','Card',10,true,'.@r = getrefine();\nbonus2 bMagicAtkEle,Ele_Wind,3;\nif (.@r>=9) {\n bonus2 bMagicAtkEle,Ele_Wind,2;\n}\nif (.@r>=11) {\n bonus2 bMagicAtkEle,Ele_Wind,5;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (300141,'aegis_300141','Deep Sea Obeaune Card','Card',10,true,true,'bonus bMatk,30;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_hand`,`script`) VALUES (300142,'aegis_300142','Deep Sea Deviace Card','Card',10,true,'.@r = getrefine();\nbonus2 bAddRace,RC_Fish,5;\nbonus2 bAddEle,Ele_Water,5;\nif (.@r>=7) {\n bonus2 bAddEle,Ele_Water,5;\n}\nif (.@r>=9) {\n bonus2 bAddRace,RC_Fish,5;\n}'); @@ -3947,3 +3951,4 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`loc REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_garment`,`script`) VALUES (300149,'aegis_300149','Deep Sea Phen Card','Card',10,true,'bonus2 bSubEle,Ele_Neutral,15;\nbonus2 bMagicAtkEle,Ele_Wind,3*getrefine();'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`script`) VALUES (300150,'aegis_300150','Deep Sea King Dramoh Card','Card',10,true,true,true,'bonus bMaxHPrate,-5;\nbonus2 bAddClass,Class_All,(getrefine()/3);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_hand`,`script`) VALUES (300151,'aegis_300151','Deep Sea Kraken Card','Card',10,true,'bonus bLongAtkRate,25;\nbonus bPerfectHitRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (1000235,'aegis_1000235','Great Hunter\'s Mark','Etc'); From b61089093f4ebed2ebe5b57702417d7638ee6df2 Mon Sep 17 00:00:00 2001 From: inhyositsu Date: Thu, 29 Oct 2020 20:47:42 +0800 Subject: [PATCH 39/45] Corrects BuyingStore parsing (#5502) * Fixes a label parse check when loading BuyingStore values for items. Thanks to @inhyositsu! --- src/map/itemdb.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/map/itemdb.cpp b/src/map/itemdb.cpp index a3f4e4eb34..02b9a7f21c 100644 --- a/src/map/itemdb.cpp +++ b/src/map/itemdb.cpp @@ -534,14 +534,14 @@ uint64 ItemDatabase::parseBodyNode(const YAML::Node &node) { if (this->nodeExists(node, "Flags")) { const YAML::Node &flagNode = node["Flags"]; - if (this->nodeExists(flagNode, "Buyingstore")) { + if (this->nodeExists(flagNode, "BuyingStore")) { bool active; - if (!this->asBool(flagNode, "Buyingstore", active)) + if (!this->asBool(flagNode, "BuyingStore", active)) return 0; if (!itemdb_isstackable2(item.get()) && active) { - this->invalidWarning(flagNode["Buyingstore"], "Non-stackable item cannot be enabled for buying store.\n"); + this->invalidWarning(flagNode["BuyingStore"], "Non-stackable item cannot be enabled for buying store.\n"); active = false; } From 3dcfcf9f1125378f714508d231941b8e0d30c2f2 Mon Sep 17 00:00:00 2001 From: Atemo Date: Thu, 29 Oct 2020 15:04:09 +0100 Subject: [PATCH 40/45] Added items from Glast Heim challenge mode (KRO patch may 2019) (#5492) Thanks to @kyurejl ! --- db/re/item_combo_db.txt | 29 + db/re/item_db_equip.yml | 1365 +++++++++++++++++++++++++++++++- db/re/item_db_etc.yml | 273 +++++++ sql-files/item_db_re_equip.sql | 42 + sql-files/item_db_re_etc.sql | 30 + 5 files changed, 1738 insertions(+), 1 deletion(-) diff --git a/db/re/item_combo_db.txt b/db/re/item_combo_db.txt index 45c4bee648..0cfb058776 100644 --- a/db/re/item_combo_db.txt +++ b/db/re/item_combo_db.txt @@ -1517,6 +1517,35 @@ 22238:830002,{ bonus bDex,10; bonus bLongAtkRate,5; } 22238:820001,{ bonus bDex,10; bonus bLongAtkRate,5; } 28763:510022,{ .@r = getequiprefinerycnt(EQI_HAND_R) + getequiprefinerycnt(EQI_HAND_L); bonus bBaseAtk,15*(.@r/3); bonus2 bAddClass,Class_All,3*(.@r/5); if (.@r>=14){ bonus2 bSkillAtk,"KO_JYUMONJIKIRI",30; bonus2 bSkillCooldown,"KO_JYUMONJIKIRI",-2000; } if (.@r>=16){ skill "OB_ZANGETSU",getskilllv("KG_KAGEHUMI"); skill "KG_KAGEHUMI",getskilllv("OB_ZANGETSU"); } if (.@r>=18){ bonus2 bAddEle,Ele_All,15; } if (.@r>=20){ bonus2 bSkillAtk,"KO_JYUMONJIKIRI",25; } } +1870:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); autobonus "{ bonus bLongAtkRate,10; }",1,10000,BF_WEAPON; bonus bBaseAtk,30; if (.@sum>=30) { bonus2 bAddRace,RC_Undead,20; bonus2 bAddEle,Ele_Holy,20; } } +2060:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); autobonus "{ bonus2 bMagicAtkEle,Ele_Earth,10; bonus2 bMagicAtkEle,Ele_Wind,10; }",1,10000,BF_MAGIC; bonus bMatk,30; if (.@sum>=30) { bonus2 bMagicAddEle,Ele_Undead,20; bonus2 bMagicAddEle,Ele_Holy,20; } } +13347:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); autobonus "{ bonus bLongAtkRate,10; }",1,10000,BF_WEAPON; bonus bBaseAtk,30; if (.@sum>=30) { bonus2 bAddRace,RC_Undead,20; bonus2 bAddEle,Ele_Holy,20; } } +18191:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); autobonus "{ bonus bLongAtkRate,10; }",1,10000,BF_WEAPON; bonus bBaseAtk,30; if (.@sum>=30) { bonus2 bAddEle,Ele_Undead,20; bonus2 bAddEle,Ele_Holy,20; } } +18198:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); autobonus "{ bonus bLongAtkRate,10; }",1,10000,BF_WEAPON; bonus bBaseAtk,30; if (.@sum>=30) { bonus2 bAddRace,RC_Undead,20; bonus2 bAddEle,Ele_Holy,20; } } +21055:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); autobonus "{ bonus bCritAtkRate,20; }",1,10000,BF_WEAPON; bonus bBaseAtk,30; if (.@sum>=30) { bonus2 bAddEle,Ele_Undead,20; bonus2 bAddEle,Ele_Holy,20; } } +26165:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); autobonus "{ bonus2 bMagicAtkEle,Ele_Holy,10; }",1,10000,BF_MAGIC; bonus bMatk,30; if (.@sum>=30) { bonus2 bMagicAddEle,Ele_Undead,20; bonus2 bMagicAddEle,Ele_Holy,20; } } +26166:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); autobonus "{ bonus2 bMagicAtkEle,Ele_Fire,10; bonus2 bMagicAtkEle,Ele_Dark,10; }",1,10000,BF_MAGIC; bonus bMatk,30; if (.@sum>=30) { bonus2 bMagicAddEle,Ele_Undead,20; bonus2 bMagicAddEle,Ele_Holy,20; } } +26172:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); autobonus "{ bonus bMatkRate,10; }",1,10000,BF_MAGIC; autobonus "{ bonus bLongAtkRate,10; }",1,10000,BF_WEAPON; bonus bMatk,30; bonus bBaseAtk,30; if (.@sum>=30) { bonus2 bMagicAddEle,Ele_Undead,20; bonus2 bAddEle,Ele_Undead,20; bonus2 bMagicAddEle,Ele_Holy,20; bonus2 bAddEle,Ele_Holy,20; } } +26216:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); autobonus "{ bonus2 bMagicAtkEle,Ele_Neutral,10; }",1,10000,BF_MAGIC; bonus bMatk,30; if (.@sum>=30) { bonus2 bMagicAddEle,Ele_Undead,20; bonus2 bMagicAddEle,Ele_Holy,20; } } +27382:4604,{ bonus2 bMagicAtkEle,Ele_Neutral,30; bonus2 bMagicAtkEle,Ele_Fire,30; } +27383:4601,{ bonus2 bAddSize,Size_All,5; bonus bMatkRate,5; } +27383:4602,{ bonus2 bAddSize,Size_All,10; bonus bMatkRate,10; } +27384:27385,{ bonus2 bSubSize,Size_Medium,5; bonus2 bMagicSubSize,Size_Medium,5; bonus2 bSubSize,Size_Large,5; bonus2 bMagicSubSize,Size_Large,5; bonus2 bMagicAddSize,Size_Medium,5; bonus2 bMagicAddSize,Size_Large,5; } +27387:27386,{ bonus2 bAddRace,RC_Undead,5; bonus2 bAddRace,RC_Demon,5; } +27388:4038,{ bonus bMaxHPrate,15; } +28046:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); autobonus "{ bonus bLongAtkRate,10; }",1,10000,BF_WEAPON; bonus bBaseAtk,30; if (.@sum>=30) { bonus2 bAddEle,Ele_Undead,20; bonus2 bAddEle,Ele_Holy,20; } } +28141:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); autobonus "{ bonus bLongAtkRate,10; }",1,10000,BF_WEAPON; bonus bBaseAtk,30; if (.@sum>=30) { bonus2 bAddEle,Ele_Undead,20; bonus2 bAddEle,Ele_Holy,20; } } +28636:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); autobonus "{ bonus2 bMagicAtkEle,Ele_Wind,10; bonus2 bMagicAtkEle,Ele_Water,10; }",1,10000,BF_MAGIC; bonus bMatk,30; if (.@sum>=30) { bonus2 bMagicAddEle,Ele_Undead,20; bonus2 bMagicAddEle,Ele_Holy,20; } } +28774:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); autobonus "{ bonus2 bAddClass,Class_All,10; }",1,10000,BF_WEAPON; bonus bBaseAtk,30; if (.@sum>=40) { bonus2 bAddEle,Ele_Undead,20; bonus2 bAddEle,Ele_Holy,20; } } +28774:28775,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_HAND_R); bonus bBaseAtk,7*(.@sum/2); if (.@sum>=18) { bonus2 bSkillAtk,"GC_COUNTERSLASH",20; bonus2 bSkillAtk,"GC_CROSSIMPACT",20; } if (.@sum>=22) { bonus2 bAddRace,RC_Undead,30; bonus2 bAddRace,RC_Angel,30; } } +28776:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); autobonus "{ bonus2 bMagicAtkEle,Ele_Neutral,10; bonus2 bMagicAtkEle,Ele_Fire,10; }",1,10000,BF_MAGIC; bonus bMatk,30; if (.@sum>=30) { bonus2 bMagicAddEle,Ele_Undead,20; bonus2 bMagicAddEle,Ele_Holy,20; } } +32027:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); autobonus "{ bonus bLongAtkRate,10; }",1,10000,BF_WEAPON; bonus bBaseAtk,30; if (.@sum>=30) { bonus2 bAddEle,Ele_Undead,20; bonus2 bAddEle,Ele_Holy,20; } } +32111:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); autobonus "{ bonus2 bMagicAtkEle,Ele_Neutral,10; }",1,10000,BF_MAGIC; bonus bMatk,30; if (.@sum>=30) { bonus2 bMagicAddEle,Ele_Undead,20; bonus2 bMagicAddEle,Ele_Holy,20; } } +32304:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); autobonus "{ bonus bLongAtkRate,10; }",1,10000,BF_WEAPON; bonus bBaseAtk,30; if (.@sum>=30) { bonus2 bAddRace,RC_Undead,20; bonus2 bAddEle,Ele_Holy,20; } } +32353:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); autobonus "{ bonus bMatkRate,7; bonus2 bAddClass,Class_All,7; }",1,10000,BF_MAGIC; if (.@sum>=30) { bonus2 bMagicAddEle,Ele_Undead,20; bonus2 bAddEle,Ele_Undead,20; bonus2 bMagicAddEle,Ele_Holy,20; bonus2 bAddEle,Ele_Holy,20; } } +32401:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); autobonus "{ bonus bLongAtkRate,10; }",1,10000,BF_WEAPON; bonus bBaseAtk,30; if (.@sum>=30) { bonus2 bAddEle,Ele_Undead,20; bonus2 bAddEle,Ele_Holy,20; } } +32402:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); autobonus "{ bonus bLongAtkRate,10; }",1,10000,BF_WEAPON; bonus bBaseAtk,30; if (.@sum>=30) { bonus2 bAddEle,Ele_Undead,20; bonus2 bAddEle,Ele_Holy,20; bonus2 bAddEle,Ele_Earth,20; } } +32403:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); autobonus "{ bonus bLongAtkRate,10; }",1,10000,BF_WEAPON; bonus bBaseAtk,30; if (.@sum>=30) { bonus2 bAddEle,Ele_Undead,20; bonus2 bAddEle,Ele_Holy,20; } } 300128:300130,{ bonus2 bAddSize,Size_Medium,5; bonus2 bMagicAddSize,Size_Medium,5; bonus bMatkRate,5; bonus2 bAddClass,Class_All,5; } //300141:300120,{ bonus2 bMagicAddEle,Ele_Water,15; } 300144:300150,{ bonus bCritAtkRate,15; } diff --git a/db/re/item_db_equip.yml b/db/re/item_db_equip.yml index 8bad39f3b4..4074e672f8 100644 --- a/db/re/item_db_equip.yml +++ b/db/re/item_db_equip.yml @@ -16221,6 +16221,38 @@ Body: Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,4*.@r; bonus bLongAtkRate,10; if (.@r >= 9) bonus2 bSkillAtk,"SR_KNUCKLEARROW",40; if (.@r >= 11) bonus bDelayrate,-7; + - Id: 1870 + AegisName: aegis_1870 + Name: Royal Knuckle + Type: Weapon + SubType: Knuckle + Weight: 1500 + Attack: 190 + Range: 1 + Slots: 2 + Jobs: + Monk: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); + bonus bLongAtkRate,15; + bonus bBaseAtk,4*.@r; + if (.@r>=9) { + bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",20; + } + if (.@r>=11) { + bonus2 bAddRace,RC_Undead,20; + bonus2 bAddRace,RC_Angel,20; + bonus2 bSkillCooldown,"SR_RAMPAGEBLASTER",-1000; + } - Id: 1900 AegisName: Violin_of_Vicious_Mind Name: Violin of Vicious Mind @@ -54967,6 +54999,35 @@ Body: Refineable: true Script: | .@r = getrefine(); bonus bLongAtkRate,2*(.@r/3); bonus bBaseAtk,10*(.@r/2); if (.@r >= 7) { bonus2 bSkillAtk,"KO_HUUMARANKA",30; if (.@r >= 9) { bonus2 bSkillCooldown,"KO_HUUMARANKA",-1000; if (.@r >= 11) { bonus2 bAddEle,Ele_Fire,15; bonus2 bAddEle,Ele_Dark,15; bonus2 bAddRace,RC_Undead,30; bonus2 bAddRace,RC_Demon,30; } } } + - Id: 13347 + AegisName: aegis_13347 + Name: Royal Huuma Shuriken + Type: Weapon + SubType: Huuma + Weight: 1500 + Attack: 240 + Range: 1 + Slots: 2 + Jobs: + Ninja: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Script: | + .@r = getrefine(); + bonus bLongAtkRate,15; + bonus bUnbreakableWeapon; + bonus bBaseAtk,4*.@r; + if (.@r>=9) { + bonus2 bSkillAtk,"KO_JYUMONJIKIRI",20; + } + if (.@r>=11) { + bonus2 bAddRace,RC_Undead,20; + bonus2 bAddRace,RC_Angel,20; + bonus2 bSkillCooldown,"KO_JYUMONJIKIRI",-2000; + } - Id: 13400 AegisName: Cutlas_ Name: Cutlus @@ -62466,6 +62527,70 @@ Body: Refineable: true Script: | .@r = getrefine(); bonus bLongAtkRate,10+.@r; if (.@r>=9) bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",30; if (.@r>=11) bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; + - Id: 18191 + AegisName: aegis_18191 + Name: Royal Knight Bow + Type: Weapon + SubType: Bow + Weight: 1500 + Attack: 180 + Range: 5 + Slots: 2 + Jobs: + Rogue: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Script: | + .@r = getrefine(); + bonus bLongAtkRate,15; + bonus bBaseAtk,4*.@r; + if (.@r>=9) { + bonus2 bSkillAtk,"SC_TRIANGLESHOT",20; + } + if (.@r>=11) { + bonus2 bAddRace,RC_Undead,20; + bonus2 bAddRace,RC_Angel,20; + } + - Id: 18198 + AegisName: aegis_18198 + Name: Royal Knight Archer Bow + Type: Weapon + SubType: Bow + Weight: 1700 + Attack: 190 + Range: 5 + Slots: 2 + Jobs: + Hunter: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Script: | + .@r = getrefine(); + bonus bLongAtkRate,15; + bonus bBaseAtk,4*.@r; + if (.@r>=9) { + bonus bDelayrate,-12; + bonus2 bSkillAtk,"RA_AIMEDBOLT",25; + } + if (.@r>=11) { + bonus2 bAddRace,RC_Undead,20; + bonus2 bAddRace,RC_Angel,20; + bonus2 bSkillCooldown,"RA_AIMEDBOLT",-1000; + } - Id: 18500 AegisName: Cheer_Scarf6 Name: Cheer Scarf6 @@ -70783,6 +70908,664 @@ Body: hateffect(HAT_EF_RESONATETAEGO,true); UnEquipScript: | hateffect(HAT_EF_RESONATETAEGO,false); + - Id: 19472 + AegisName: aegis_19472 + Name: Circlet of Costume Time # !todo check english name + Type: Armor + View: 1891 + Locations: + Costume_Head_Top: true + - Id: 19474 + AegisName: S_Circlet_Of_Time_RK + Name: Temporal Circlet (Rune Knight) + Type: Armor + View: 1892 + Defense: 10 + Slots: 1 + Jobs: + Knight: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 170 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); + bonus bMaxHP,250*(.@r/2); + bonus bMaxSPrate,2*(.@r/3); + bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",15*(.@r/3); + bonus2 bSkillAtk,"RK_DRAGONBREATH",15*(.@r/3); + bonus bLongAtkRate,5*(.@r/4); + if (.@r>=11) { + bonus bDelayrate,-5; + } + - Id: 19475 + AegisName: S_Circlet_Of_Time_LG + Name: Temporal Circlet (Royal Guard) + Type: Armor + View: 1892 + Defense: 10 + Slots: 1 + Jobs: + Crusader: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 170 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); + bonus bBaseAtk,15*(.@r/2); + bonus bAspdRate,2*(.@r/3); + bonus2 bSkillAtk,"LG_BANISHINGPOINT",15*(.@r/3); + bonus2 bSkillAtk,"LG_CANNONSPEAR",15*(.@r/3); + bonus bLongAtkRate,5*(.@r/4); + if (.@r>=11) { + bonus2 bAddClass,Class_All,5; + } + - Id: 19476 + AegisName: S_Circlet_Of_Time_NC + Name: Temporal Circlet (Mechanic) + Type: Armor + View: 1892 + Defense: 10 + Slots: 1 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 170 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); + bonus bBaseAtk,15*(.@r/2); + bonus bAspdRate,2*(.@r/3); + bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",10*(.@r/3); + bonus2 bSkillAtk,"NC_ARMSCANNON",10*(.@r/3); + bonus bLongAtkRate,5*(.@r/4); + if (.@r>=11) { + bonus bDelayrate,-5; + } + - Id: 19477 + AegisName: S_Circlet_Of_Time_GN + Name: Temporal Circlet (Genetic) + Type: Armor + View: 1892 + Defense: 10 + Slots: 1 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 170 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); + bonus bBaseAtk,15*(.@r/2); + bonus bAspdRate,2*(.@r/3); + bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",20*(.@r/3); + bonus2 bSkillAtk,"GN_CART_TORNADO",20*(.@r/3); + bonus2 bAddSize,Size_All,2*(.@r/4); + if (.@r>=11) { + bonus bDelayrate,-5; + } + - Id: 19478 + AegisName: S_Circlet_Of_Time_GC + Name: Temporal Circlet (Guillotine Cross) + Type: Armor + View: 1892 + Defense: 10 + Slots: 1 + Jobs: + Assassin: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 170 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); + bonus bBaseAtk,15*(.@r/2); + bonus bAspdRate,2*(.@r/3); + bonus2 bSkillAtk,"GC_COUNTERSLASH",20*(.@r/3); + bonus2 bSkillAtk,"GC_ROLLINGCUTTER",20*(.@r/3); + bonus2 bAddClass,Class_All,2*(.@r/4); + if (.@r>=11) { + bonus bDelayrate,-5; + } + - Id: 19479 + AegisName: S_Circlet_Of_Time_SC + Name: Temporal Circlet (Shadow Chaser) + Type: Armor + View: 1892 + Defense: 10 + Slots: 1 + Jobs: + Rogue: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 170 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); + bonus bBaseAtk,15*(.@r/2); + bonus bAspdRate,2*(.@r/3); + bonus2 bSkillAtk,"SC_FATALMENACE",30*(.@r/3); + bonus2 bSkillAtk,"SC_FEINTBOMB",30*(.@r/3); + bonus2 bAddClass,Class_All,2*(.@r/4); + if (.@r>=11) { + bonus bDelayrate,-5; + } + - Id: 19480 + AegisName: S_Circlet_Of_Time_AB + Name: Temporal Circlet (Archbishop) + Type: Armor + View: 1892 + Defense: 10 + Slots: 1 + Jobs: + Priest: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 170 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); + bonus bMatk,15*(.@r/2); + bonus bVariableCastrate,-3*(.@r/3); + bonus2 bSkillAtk,"AB_ADORAMUS",20*(.@r/3); + bonus2 bMagicAtkEle,Ele_Holy,7*(.@r/4); + if (.@r>=11) { + bonus bMatkRate,5; + } + - Id: 19481 + AegisName: S_Circlet_Of_Time_SR + Name: Temporal Circlet (Sura) + Type: Armor + View: 1892 + Defense: 10 + Slots: 1 + Jobs: + Monk: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 170 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); + bonus bBaseAtk,15*(.@r/2); + bonus bMaxHPrate,2*(.@r/3); + bonus2 bSkillAtk,"SR_KNUCKLEARROW",10*(.@r/3); + bonus2 bSkillAtk,"SR_TIGERCANNON",10*(.@r/3); + bonus bLongAtkRate,5*(.@r/4); + if (.@r>=11) { + bonus2 bAddClass,Class_All,5; + } + - Id: 19482 + AegisName: S_Circlet_Of_Time_WL + Name: Temporal Circlet (Warlock) + Type: Armor + View: 1892 + Defense: 10 + Slots: 1 + Jobs: + Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 170 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); + bonus bMatk,15*(.@r/2); + bonus bVariableCastrate,-3*(.@r/3); + bonus2 bSkillAtk,"WL_CHAINLIGHTNING",20*(.@r/3); + bonus2 bSkillAtk,"WL_JACKFROST",20*(.@r/3); + bonus2 bMagicAtkEle,Ele_Wind,5*(.@r/4); + bonus2 bMagicAtkEle,Ele_Water,5*(.@r/4); + if (.@r>=11) { + bonus bMatkRate,5; + } + - Id: 19483 + AegisName: S_Circlet_Of_Time_SO + Name: Temporal Circlet (Sorcerer) + Type: Armor + View: 1892 + Defense: 10 + Slots: 1 + Jobs: + Sage: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 170 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); + bonus bMatk,15*(.@r/2); + bonus bVariableCastrate,-3*(.@r/3); + bonus2 bSkillAtk,"SO_DIAMONDDUST",20*(.@r/3); + bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",20*(.@r/3); + bonus2 bMagicAtkEle,Ele_Neutral,5*(.@r/4); + bonus2 bMagicAtkEle,Ele_Water,5*(.@r/4); + if (.@r>=11) { + bonus bMatkRate,5; + } + - Id: 19484 + AegisName: S_Circlet_Of_Time_RA + Name: Temporal Circlet (Ranger) + Type: Armor + View: 1892 + Defense: 10 + Slots: 1 + Jobs: + Hunter: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 170 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); + bonus bBaseAtk,15*(.@r/2); + bonus bCritAtkRate,5*(.@r/3); + bonus2 bSkillAtk,"RA_ARROWSTORM",20*(.@r/3); + bonus2 bSkillAtk,"RA_AIMEDBOLT",20*(.@r/3); + bonus bLongAtkRate,5*(.@r/4); + if (.@r>=11) { + bonus2 bSkillCooldown,"RA_ARROWSTORM",-1000; + } + - Id: 19485 + AegisName: S_Circlet_Of_Time_WM + Name: Temporal Circlet (Wanderer & Minstrel) + Type: Armor + View: 1892 + Defense: 10 + Slots: 1 + Jobs: + BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 170 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); + bonus bMatk,15*(.@r/2); + bonus bVariableCastrate,-5*(.@r/3); + bonus2 bSkillAtk,"WM_METALICSOUND",20*(.@r/3); + bonus2 bSkillAtk,"WM_REVERBERATION",20*(.@r/3); + bonus2 bMagicAtkEle,Ele_Neutral,7*(.@r/4); + if (.@r>=11) { + bonus bMatkRate,5; + } + - Id: 19486 + AegisName: S_Circlet_Of_Time_SJ + Name: Temporal Circlet (Star Emperor) + Type: Armor + View: 1892 + Defense: 10 + Slots: 1 + Jobs: + StarGladiator: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 170 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); + bonus bBaseAtk,15*(.@r/2); + bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK",30*(.@r/3); + bonus2 bAddSize,Size_All,2*(.@r/4); + if (.@r>=11) { + bonus2 bAddClass,Class_All,5; + } + - Id: 19487 + AegisName: S_Circlet_Of_Time_SP + Name: Temporal Circlet (Soul Reaper) + Type: Armor + View: 1892 + Defense: 10 + Slots: 1 + Jobs: + SoulLinker: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Head_Top: true + EquipLevelMin: 170 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); + bonus bMatk,15*(.@r/2); + bonus bVariableCastrate,-5*(.@r/3); + bonus2 bSkillAtk,"SP_CURSEEXPLOSION",20*(.@r/3); + bonus2 bSkillAtk,"SP_SWHOO",20*(.@r/3); + bonus2 bMagicAtkEle,Ele_Dark,7*(.@r/4); + if (.@r>=11) { + bonus bMatkRate,5; + } + - Id: 19488 + AegisName: S_Circlet_Of_Time_RL + Name: Temporal Circlet (Rebellion) + Type: Armor + View: 1892 + Defense: 10 + Slots: 1 + Jobs: + Rebellion: true + Locations: + Head_Top: true + EquipLevelMin: 170 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); + bonus bBaseAtk,15*(.@r/2); + bonus bAspdRate,2*(.@r/3); + bonus2 bSkillAtk,"RL_BANISHING_BUSTER",20*(.@r/3); + bonus2 bSkillAtk,"RL_R_TRIP",20*(.@r/3); + bonus bLongAtkRate,5*(.@r/4); + if (.@r>=11) { + bonus bDelayrate,-5; + } + - Id: 19489 + AegisName: S_Circlet_Of_Time_OB + Name: Temporal Circlet (Oboro) + Type: Armor + View: 1892 + Defense: 10 + Slots: 1 + Jobs: + KagerouOboro: true + Locations: + Head_Top: true + EquipLevelMin: 170 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); + bonus bMatk,15*(.@r/2); + bonus bAspdRate,2*(.@r/3); + bonus2 bSkillAtk,"NJ_HYOUSENSOU",30*(.@r/3); + bonus2 bSkillAtk,"NJ_HUUJIN",30*(.@r/3); + bonus2 bMagicAtkEle,Ele_Wind,5*(.@r/4); + bonus2 bMagicAtkEle,Ele_Water,5*(.@r/4); + if (.@r>=11) { + bonus bMatkRate,5; + } + - Id: 19490 + AegisName: S_Circlet_Of_Time_KG + Name: Temporal Circlet (Kagerou) + Type: Armor + View: 1892 + Defense: 10 + Slots: 1 + Jobs: + KagerouOboro: true + Locations: + Head_Top: true + EquipLevelMin: 170 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); + bonus bBaseAtk,15*(.@r/2); + bonus bAspdRate,2*(.@r/3); + bonus2 bSkillAtk,"KO_BAKURETSU",20*(.@r/3); + bonus2 bSkillAtk,"KO_JYUMONJIKIRI",20*(.@r/3); + bonus2 bAddSize,Size_All,2*(.@r/4); + if (.@r>=11) { + bonus2 bAddClass,Class_All,5; + } + - Id: 19491 + AegisName: S_Circlet_Of_Time_NV + Name: Temporal Circlet (Super Novice) + Type: Armor + View: 1892 + Defense: 10 + Slots: 1 + Jobs: + Novice: true + SuperNovice: true + Locations: + Head_Top: true + EquipLevelMin: 170 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); + bonus bMatk,10*(.@r/2); + bonus bBaseAtk,10*(.@r/2); + bonus bAspdRate,4*(.@r/3); + bonus bVariableCastrate,-4*(.@r/3); + bonus2 bMagicAtkEle,Ele_All,5*(.@r/4); + bonus bCritAtkRate,5*(.@r/4); + if (.@r>=11) { + bonus bDelayrate,-5; + } + - Id: 19492 + AegisName: S_Circlet_Of_Time_SU + Name: Temporal Circlet (Summoner) + Type: Armor + View: 1892 + Defense: 10 + Slots: 1 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Head_Top: true + EquipLevelMin: 170 + Refineable: true + Trade: + Override: 100 + NoDrop: true + NoTrade: true + NoCart: true + NoGuildStorage: true + NoMail: true + NoAuction: true + Script: | + .@r = getrefine(); + bonus bBaseAtk,15*(.@r/2); + bonus bAspdRate,2*(.@r/3); + bonus2 bSkillAtk,"SU_CN_METEOR",20*(.@r/3); + bonus2 bSkillAtk,"SU_PICKYPECK",20*(.@r/3); + bonus2 bMagicAtkEle,Ele_Neutral,7*(.@r/4); + if (.@r>=11) { + bonus bDelayrate,-5; + } - Id: 19500 AegisName: T_Mr_Smile Name: T Mr Smile @@ -81187,6 +81970,39 @@ Body: Refineable: true Script: | .@r = getrefine(); bonus bLongAtkRate,.@r; bonus2 bAddClass,Class_All,5; if (.@r>=9) { bonus2 bSkillAtk,"LK_SPIRALPIERCE",30; bonus2 bSkillAtk,"RK_SONICWAVE",30; } if (.@r>=11) { bonus2 bSkillCooldown,"RK_SONICWAVE",-1500; } + - Id: 21055 + AegisName: aegis_21055 + Name: Guardian Knight Claymore + Type: Weapon + SubType: 2hSword + Weight: 4000 + Attack: 280 + Range: 1 + Slots: 2 + Jobs: + Knight: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Script: | + .@r = getrefine(); + bonus2 bAddClass,Class_All,5; + bonus bBaseAtk,4*.@r; + if (.@r>=9) { + bonus bCritAtkRate,25; + bonus bCritical,5; + } + if (.@r>=11) { + bonus2 bAddRace,RC_Undead,20; + bonus2 bAddRace,RC_Angel,20; + bonus bUnbreakableWeapon; + } - Id: 21058 AegisName: Up_Dragonic_Slayer Name: Patent Dragonic Slayer @@ -87986,6 +88802,108 @@ Body: Refineable: true Script: | .@r = getrefine(); bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Holy,5; if (.@r >= 9) { bonus2 bSkillAtk,"PR_MAGNUS",(.@r>=11) ? 50 : 30; bonus2 bSkillAtk,"AB_JUDEX",30; } + - Id: 26165 + AegisName: aegis_26165 + Name: Royal Cleric Staff + Type: Weapon + SubType: Staff + Weight: 1000 + Attack: 100 + Range: 1 + Slots: 2 + Jobs: + Priest: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); + bonus bMatkRate,5; + bonus bMatk,170; + bonus bUnbreakableWeapon; + bonus bMatk,4*.@r; + if (.@r>=9) { + bonus2 bSkillAtk,"AB_ADORAMUS",20; + } + if (.@r>=11) { + bonus2 bMagicAddRace,RC_Undead,20; + bonus2 bMagicAddRace,RC_Angel,20; + } + - Id: 26166 + AegisName: aegis_26166 + Name: Royal Magician Wand + Type: Weapon + SubType: Staff + Weight: 800 + Attack: 80 + Range: 1 + Slots: 2 + Jobs: + Wizard: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); + bonus2 bMagicAtkEle,Ele_Fire,5; + bonus bMatk,180; + bonus bUnbreakableWeapon; + bonus bMatk,4*.@r; + if (.@r>=9) { + bonus2 bSkillAtk,"WL_HELLINFERNO",20; + bonus2 bSkillAtk,"WL_CRIMSONROCK",20; + } + if (.@r>=11) { + bonus2 bMagicAddRace,RC_Undead,20; + bonus2 bMagicAddRace,RC_Angel,20; + } + - Id: 26172 + AegisName: aegis_26172 + Name: Royal Foxtail + Type: Weapon + SubType: Staff + Weight: 1200 + Attack: 275 + Range: 1 + Slots: 2 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); + bonus bMatkRate,5; + bonus bMatk,350; + bonus bUnbreakableWeapon; + bonus bMatk,4*.@r; + bonus bBaseAtk,4*.@r; + if (.@r>=9) { + bonus2 bSkillAtk,"SU_CN_METEOR",20; + bonus2 bSkillAtk,"SU_PICKYPECK",20; + } + if (.@r>=11) { + bonus2 bAddRace,RC_Undead,20; + bonus2 bAddRace,RC_Angel,20; + } - Id: 26200 AegisName: Hippie_Rope Name: Hippie Rope @@ -88056,6 +88974,43 @@ Body: Refineable: true Script: | .@r = getrefine(); bonus bVariableCastrate,-10; bonus bLongAtkRate,.@r; if (.@r>=9) bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-1000; if (.@r>=11) bonus2 bSkillUseSPrate,"WM_SEVERE_RAINSTORM",20; + - Id: 26216 + AegisName: aegis_26216 + Name: Royal Whip + Type: Weapon + SubType: Whip + Weight: 1000 + Attack: 100 + Range: 2 + Slots: 2 + Jobs: + BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); + bonus2 bMagicAtkEle,Ele_Neutral,10; + bonus bMatk,180; + bonus bUnbreakableWeapon; + bonus bMatk,4*.@r; + if (.@r>=9) { + bonus2 bSkillCooldown,"WM_METALICSOUND",-1000; + bonus2 bSkillAtk,"WM_METALICSOUND",20; + bonus2 bSkillAtk,"WM_REVERBERATION",20; + } + if (.@r>=11) { + bonus2 bMagicAddRace,RC_Undead,20; + bonus2 bMagicAddRace,RC_Angel,20; + bonus2 bSkillCooldown,"WM_METALICSOUND",-1000; + } - Id: 28000 AegisName: Thanos_Katar Name: Thanos Katar @@ -88371,6 +89326,38 @@ Body: Refineable: true Script: | .@r = getrefine(); bonus bCritAtkRate,5; bonus bBaseAtk,4*.@r; if (.@r>=9) bonus2 bAddSize,Size_All,15; if (.@r>=11) { bonus bUnbreakableWeapon; bonus2 bAddClass,Class_All,7; } + - Id: 28046 + AegisName: aegis_28046 + Name: Royal Katar + Type: Weapon + SubType: Katar + Weight: 1500 + Attack: 200 + Range: 1 + Slots: 2 + Jobs: + Assassin: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Script: | + .@r = getrefine(); + bonus2 bAddClass,Class_All,5; + bonus bBaseAtk,5*.@r; + if (.@r>=9) { + bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",20; + bonus2 bSkillAtk,"GC_ROLLINGCUTTER",20; + } + if (.@r>=11) { + bonus2 bAddRace,RC_Undead,20; + bonus2 bAddRace,RC_Angel,20; + } - Id: 28100 AegisName: Thanos_Axe Name: Thanos Axe @@ -88682,6 +89669,44 @@ Body: Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,4*.@r; bonus bUnbreakableWeapon; bonus2 bSubSize,Size_Small,10; bonus2 bSubSize,Size_Medium,10; if (.@r>=9) { bonus2 bSkillCooldown,"NC_AXETORNADO",-1000; bonus2 bSkillCooldown,"NC_MAGMA_ERUPTION",-1000; } if (.@r>=11) bonus2 bSkillAtk,"NC_AXETORNADO",15; + - Id: 28141 + AegisName: aegis_28141 + Name: Guardian Knight Battle Axe + Type: Weapon + SubType: 1hAxe + Weight: 5000 + Attack: 270 + Range: 1 + Slots: 2 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Script: | + .@r = getrefine(); + bonus2 bSubSize,Size_Medium,10; + bonus2 bMagicSubSize,Size_Medium,10; + bonus2 bSubSize,Size_Large,10; + bonus2 bMagicSubSize,Size_Large,10; + bonus2 bAddClass,Class_All,5; + bonus bUnbreakableWeapon; + bonus bLongAtkRate,.@r; + if (.@r>=9) { + bonus2 bSkillCooldown,"NC_AXETORNADO",-1000; + bonus2 bSkillAtk,"NC_AXETORNADO",20; + bonus2 bSkillAtk,"NC_MAGMA_ERUPTION",20; + } + if (.@r>=11) { + bonus2 bAddRace,RC_Undead,20; + bonus2 bAddRace,RC_Angel,20; + } - Id: 28200 AegisName: END_OF_HORIZO Name: End Of The Horizon @@ -91346,6 +92371,41 @@ Body: Refineable: true Script: | .@r = getrefine(); bonus bMatk,4*.@r; if (.@r>=9) .@val = 30; if (.@r>=11) { bonus2 bSkillAtk,"WZ_EARTHSPIKE",50; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",50; } bonus2 bSkillAtk,"MG_FIREBOLT",20+.@val; bonus2 bSkillAtk,"MG_COLDBOLT",20+.@val; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",20+.@val; + - Id: 28636 + AegisName: aegis_28636 + Name: Royal Sage Book + Type: Weapon + SubType: Book + Weight: 1000 + Attack: 90 + Range: 1 + Slots: 2 + Jobs: + Sage: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); + bonus2 bMagicAtkEle,Ele_Wind,5; + bonus2 bMagicAtkEle,Ele_Water,5; + bonus bMatk,170; + bonus bUnbreakableWeapon; + bonus bMatk,4*.@r; + if (.@r>=9) { + bonus2 bSkillAtk,"SO_DIAMONDDUST",20; + bonus2 bSkillAtk,"SO_VARETYR_SPEAR",20; + } + if (.@r>=11) { + bonus2 bMagicAddRace,RC_Undead,20; + bonus2 bMagicAddRace,RC_Angel,20; + } - Id: 28700 AegisName: Ru_Gold_Dagger Name: Ru Gold Dagger @@ -91827,6 +92887,81 @@ Body: Refineable: true Script: | .@r = getrefine(); bonus bMatk,4*.@r; bonus bMatkRate,5; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Fire,15; bonus2 bMagicAtkEle,Ele_Wind,15; bonus2 bMagicAtkEle,Ele_Water,15; bonus2 bMagicAtkEle,Ele_Earth,15; } if (.@r>=11) autobonus "{ bonus bMatk,100; bonus2 bMagicAddSize,Size_All,30; }",50,10000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; /* Unknow Rates and Specialeffect */ + - Id: 28774 + AegisName: aegis_28774 + Name: Royal Gladius (R) + Type: Weapon + SubType: Dagger + Weight: 1500 + Attack: 200 + Range: 1 + Slots: 2 + Jobs: + Assassin: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + bonus2 bAddClass,Class_All,5; + - Id: 28775 + AegisName: aegis_28775 + Name: Royal Gladius (L) + Type: Weapon + SubType: Dagger + Weight: 1000 + Attack: 100 + Range: 1 + Slots: 3 + Jobs: + Assassin: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + - Id: 28776 + AegisName: aegis_28776 + Name: Royal Magician Dagger + Type: Weapon + SubType: Dagger + Weight: 1500 + Attack: 200 + Range: 1 + Slots: 2 + Jobs: + Rogue: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); + bonus bMatkRate,5; + bonus bMatk,170; + bonus bMatk,4*.@r; + if (.@r>=9) { + bonus2 bMagicAtkEle,Ele_Neutral,15; + bonus2 bMagicAtkEle,Ele_Fire,15; + } + if (.@r>=11) { + bonus2 bMagicAddRace,RC_Undead,20; + bonus2 bMagicAddRace,RC_Angel,20; + } - Id: 28900 AegisName: Guardsmen's_Shield Name: Guardsmen's Shield @@ -97499,6 +98634,36 @@ Body: Refineable: true Script: | .@r = getrefine(); bonus bDelayrate,-.@r; bonus2 bAddClass,Class_All,5; if (.@r>=9) bonus2 bSkillAtk,"LG_CANNONSPEAR",20; if (.@r>=11) bonus2 bSkillAtk,"LG_OVERBRAND",20; + - Id: 32027 + AegisName: aegis_32027 + Name: Guardian Knight Spear + Type: Weapon + SubType: 1hSpear + Weight: 4000 + Attack: 205 + Range: 3 + Slots: 2 + Jobs: + Crusader: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); + bonus bLongAtkRate,.@r; + if (.@r>=9) { + bonus2 bSkillAtk,"LG_BANISHINGPOINT",20; + } + if (.@r>=11) { + bonus2 bAddRace,RC_Undead,20; + bonus2 bAddRace,RC_Angel,20; + } - Id: 32107 AegisName: Black_Circle Name: Black Circle @@ -97546,6 +98711,43 @@ Body: Refineable: true Script: | .@r = getrefine(); bonus bVariableCastrate,-10; bonus bLongAtkRate,.@r; if (.@r>=9) bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-1000; if (.@r>=11) bonus2 bSkillUseSPrate,"WM_SEVERE_RAINSTORM",20; + - Id: 32111 + AegisName: aegis_32111 + Name: Royal Chello + Type: Weapon + SubType: Musical + Weight: 1000 + Attack: 90 + Range: 1 + Slots: 2 + Jobs: + BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); + bonus2 bMagicAtkEle,Ele_Neutral,10; + bonus bMatk,180; + bonus bUnbreakableWeapon; + bonus bMatk,4*.@r; + if (.@r>=9) { + bonus2 bSkillCooldown,"WM_METALICSOUND",-1000; + bonus2 bSkillAtk,"WM_METALICSOUND",20; + bonus2 bSkillAtk,"WM_REVERBERATION",20; + } + if (.@r>=11) { + bonus2 bMagicAddRace,RC_Undead,20; + bonus2 bMagicAddRace,RC_Angel,20; + bonus2 bSkillCooldown,"WM_METALICSOUND",-1000; + } - Id: 32203 AegisName: Accelerator_Chip Name: Accelerator Chip @@ -97872,6 +99074,35 @@ Body: Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,3*(.@r/3); if (.@r >= 7) { bonus bAspd,1; bonus2 bAddClass,Class_All,5; if (.@r >= 9) { bonus bCritAtkRate,20; if (.@r >= 11) { autobonus3 "{ bonus bCritical,20; bonus bLongAtkRate,15; }",1000,60000,"RL_HEAT_BARREL"; } } } + - Id: 32304 + AegisName: aegis_32304 + Name: Royal Revolver + Type: Weapon + SubType: Revolver + Weight: 700 + Attack: 150 + Range: 7 + Slots: 2 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Script: | + .@r = getrefine(); + bonus bLongAtkRate,15; + bonus bBaseAtk,4*.@r; + if (.@r>=9) { + bonus2 bSkillAtk,"RL_FIREDANCE",20; + } + if (.@r>=11) { + bonus2 bAddRace,RC_Undead,20; + bonus2 bAddRace,RC_Angel,20; + bonus2 bSkillCooldown,"RL_HEAT_BARREL",-5000; + } - Id: 32350 AegisName: Farthezan Name: Farthezan @@ -97919,6 +99150,139 @@ Body: Refineable: true Script: | .@r = getrefine(); bonus2 bSkillCooldown,"GN_SPORE_EXPLOSION",-1000; bonus bBaseAtk,4*.@r; if (.@r>=11) .@val = 50; else if (.@r>=9) .@val = 30; bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",.@val; + - Id: 32353 + AegisName: aegis_32353 + Name: Guardian Knight Jewel Sword + Type: Weapon + SubType: 1hSword + Weight: 4000 + Attack: 130 + MagicAttack: 180 + Range: 1 + Slots: 2 + Jobs: + Crusader: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); + bonus bMaxHPrate,.@r; + bonus2 bSkillAtk,"CR_GRANDCROSS",2*.@r; + if (.@r>=9) { + bonus2 bSkillAtk,"LG_SHIELDPRESS",20; + } + if (.@r>=11) { + bonus2 bAddRace,RC_Undead,20; + bonus2 bMagicAddRace,RC_Undead,20; + bonus2 bAddRace,RC_Angel,20; + bonus2 bMagicAddRace,RC_Angel,20; + } + - Id: 32401 + AegisName: aegis_32401 + Name: Royal Pillar + Type: Weapon + SubType: Mace + Weight: 5000 + Attack: 220 + Range: 1 + Slots: 2 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); + bonus2 bAddClass,Class_All,5; + bonus bUnbreakableWeapon; + bonus bLongAtkRate,.@r; + if (.@r>=9) { + bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",20; + bonus2 bSkillAtk,"NC_ARMSCANNON",20; + } + if (.@r>=11) { + bonus2 bAddRace,RC_Undead,20; + bonus2 bAddRace,RC_Angel,20; + } + - Id: 32402 + AegisName: aegis_32402 + Name: Royal Syringe + Type: Weapon + SubType: Mace + Weight: 1500 + Attack: 210 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); + bonus2 bAddClass,Class_All,5; + bonus bUnbreakableWeapon; + bonus bLongAtkRate,.@r; + if (.@r>=9) { + bonus2 bSkillAtk,"GN_CARTCANNON",20; + bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",20; + } + if (.@r>=11) { + bonus2 bAddRace,RC_Undead,20; + bonus2 bAddRace,RC_Angel,20; + } + - Id: 32403 + AegisName: aegis_32403 + Name: Royal Alchemy Staff + Type: Weapon + SubType: Mace + Weight: 1500 + Attack: 200 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); + bonus2 bAddClass,Class_All,5; + bonus bUnbreakableWeapon; + bonus bBaseAtk,4*.@r; + if (.@r>=9) { + bonus2 bSkillCooldown,"GN_CRAZYWEED",-1000; + bonus2 bSkillAtk,"GN_CRAZYWEED",30; + } + if (.@r>=11) { + bonus2 bAddRace,RC_Undead,20; + bonus2 bAddRace,RC_Angel,20; + } - Id: 400045 AegisName: aegis_400045 Name: Pierced apple # !todo check english name @@ -102583,4 +103947,3 @@ Body: Refineable: true Script: | .@r = getrefine(); bonus bLongAtkRate,3*(.@r/2); bonus bBaseAtk,20*(.@r/3); if (.@r>=7){ bonus2 bSkillAtk,"RL_D_TAIL",15; bonus2 bSkillCooldown,"RL_D_TAIL",-1000; } if (.@r>=9){ bonus2 bSkillAtk,"RL_D_TAIL",20; } if (.@r>=11){ bonus2 bAddEle,Ele_All,15; } - diff --git a/db/re/item_db_etc.yml b/db/re/item_db_etc.yml index 1c6a5b24ce..e074c5d9e6 100644 --- a/db/re/item_db_etc.yml +++ b/db/re/item_db_etc.yml @@ -33999,6 +33999,33 @@ Body: Weight: 10 Script: | autobonus "{ bonus bLuk,50; bonus2 bMagicAtkEle,Ele_All,10; bonus2 bHPLossRate,300,1000; }",20,10000,BF_MAGIC; /* unknown rate */ + - Id: 25864 + AegisName: aegis_25864 + Name: Sealed Temporal Circlet + Type: Etc + Weight: 100 + Flags: + BuyingStore: true + - Id: 25865 + AegisName: aegis_25865 + Name: Temperal Gemstone + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 25866 + AegisName: aegis_25866 + Name: Temporal Spell + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 25867 + AegisName: aegis_25867 + Name: Temporal Fragment + Type: Etc + Flags: + BuyingStore: true - Id: 25892 AegisName: aegis_25892 Name: Deep Sea Shell @@ -35862,6 +35889,89 @@ Body: Right_Accessory: true Script: | bonus bAspd,1; + - Id: 27381 + AegisName: aegis_27381 + Name: Himmelmez's Phantom Card + Type: Card + Weight: 10 + Locations: + Garment: true + Script: | + bonus2 bMagicAtkEle,Ele_Neutral,100; + bonus2 bMagicAtkEle,Ele_Holy,100; + bonus2 bSubEle,Ele_All,-30; + - Id: 27382 + AegisName: aegis_27382 + Name: Prime Corruption Root Card + Type: Card + Weight: 10 + Locations: + Garment: true + Script: | + bonus bMatk,30; + bonus bBaseAtk,30; + - Id: 27383 + AegisName: aegis_27383 + Name: Amdarais's Phantom Card + Type: Card + Weight: 10 + Locations: + Shoes: true + Script: | + bonus bMaxHPrate,10; + bonus bMaxSPrate,5; + - Id: 27384 + AegisName: aegis_27384 + Name: Mutated White Knight Card + Type: Card + Weight: 10 + Locations: + Right_Hand: true + Script: | + bonus bMatk,15; + bonus2 bMagicAddSize,Size_Medium,20; + bonus2 bMagicAddSize,Size_Large,20; + - Id: 27385 + AegisName: aegis_27385 + Name: Mutated Khalitzburg Card + Type: Card + Weight: 10 + Locations: + Left_Hand: true + Script: | + bonus bMdef,10; + bonus2 bSubSize,Size_Medium,25; + bonus2 bMagicSubSize,Size_Medium,25; + bonus2 bSubSize,Size_Large,25; + bonus2 bMagicSubSize,Size_Large,25; + - Id: 27386 + AegisName: aegis_27386 + Name: Cursed Raydric Card + Type: Card + Weight: 10 + Locations: + Left_Accessory: true + Script: | + bonus2 bAddRace,RC_Undead,5; + - Id: 27387 + AegisName: aegis_27387 + Name: Cursed Raydric Archer Card + Type: Card + Weight: 10 + Locations: + Right_Accessory: true + Script: | + bonus2 bAddRace,RC_Demon,5; + - Id: 27388 + AegisName: aegis_27388 + Name: Cursed Servant Card + Type: Card + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Script: | + bonus bHPrecovRate,30; - Id: 29000 AegisName: Rune_of_Intellect_Lv_1 Name: Rune of Intellect Lv 1 @@ -37288,6 +37398,168 @@ Body: Name: Alphoccio's Memory Type: Card Buy: 20 + - Id: 29672 + AegisName: aegis_29672 + Name: Temporal Jewel (STR) Lv 1 + Type: Card + Script: | + .@r = getequiprefinerycnt(EQI_HEAD_TOP); + bonus bBaseAtk,2*(.@r/2); + bonus bHit,3*(.@r/2); + bonus2 bAddClass,Class_All,(.@r/5); + - Id: 29673 + AegisName: aegis_29673 + Name: Temporal Jewel (STR) Lv 2 + Type: Card + Script: | + .@r = getequiprefinerycnt(EQI_HEAD_TOP); + bonus bBaseAtk,4*(.@r/2); + bonus bHit,5*(.@r/2); + bonus2 bAddClass,Class_All,2*(.@r/5); + - Id: 29674 + AegisName: aegis_29674 + Name: Temporal Jewel (STR) Lv 3 + Type: Card + Script: | + .@r = getequiprefinerycnt(EQI_HEAD_TOP); + bonus bBaseAtk,7*(.@r/2); + bonus bHit,7*(.@r/2); + bonus2 bAddClass,Class_All,3*(.@r/5); + - Id: 29675 + AegisName: aegis_29675 + Name: Temporal Jewel (AGI) Lv 1 + Type: Card + Script: | + .@r = getequiprefinerycnt(EQI_HEAD_TOP); + bonus bAspdRate,(.@r/2); + bonus bFlee,4*(.@r/2); + bonus bAspd,(.@r/5); + - Id: 29676 + AegisName: aegis_29676 + Name: Temporal Jewel (AGI) Lv 2 + Type: Card + Script: | + .@r = getequiprefinerycnt(EQI_HEAD_TOP); + bonus bAspdRate,3*(.@r/2); + bonus bFlee,5*(.@r/2); + bonus bAspd,(.@r/5); + - Id: 29677 + AegisName: aegis_29677 + Name: Temporal Jewel (AGI) Lv 3 + Type: Card + Script: | + .@r = getequiprefinerycnt(EQI_HEAD_TOP); + bonus bAspdRate,5*(.@r/2); + bonus bFlee,7*(.@r/2); + bonus bAspd,(.@r/5); + - Id: 29678 + AegisName: aegis_29678 + Name: Temporal Jewel (VIT) Lv 1 + Type: Card + Script: | + .@r = getequiprefinerycnt(EQI_HEAD_TOP); + bonus bDef,5*(.@r/2); + bonus bMaxHP,200*(.@r/2); + bonus bMaxHPrate,(.@r/5); + - Id: 29679 + AegisName: aegis_29679 + Name: Temporal Jewel (VIT) Lv 2 + Type: Card + Script: | + .@r = getequiprefinerycnt(EQI_HEAD_TOP); + bonus bDef,7*(.@r/2); + bonus bMaxHP,300*(.@r/2); + bonus bMaxHPrate,2*(.@r/5); + - Id: 29680 + AegisName: aegis_29680 + Name: Temporal Jewel (VIT) Lv 3 + Type: Card + Script: | + .@r = getequiprefinerycnt(EQI_HEAD_TOP); + bonus bDef,10*(.@r/2); + bonus bMaxHP,500*(.@r/2); + bonus bMaxHPrate,3*(.@r/5); + - Id: 29681 + AegisName: aegis_29681 + Name: Temporal Jewel (INT) Lv 1 + Type: Card + Script: | + .@r = getequiprefinerycnt(EQI_HEAD_TOP); + bonus bHealPower,(.@r/2); + bonus bMatk,2*(.@r/2); + bonus bMatkRate,(.@r/5); + - Id: 29682 + AegisName: aegis_29682 + Name: Temporal Jewel (INT) Lv 2 + Type: Card + Script: | + .@r = getequiprefinerycnt(EQI_HEAD_TOP); + bonus bHealPower,3*(.@r/2); + bonus bMatk,4*(.@r/2); + bonus bMatkRate,2*(.@r/5); + - Id: 29683 + AegisName: aegis_29683 + Name: Temporal Jewel (INT) Lv 3 + Type: Card + Script: | + .@r = getequiprefinerycnt(EQI_HEAD_TOP); + bonus bHealPower,5*(.@r/2); + bonus bMatk,7*(.@r/2); + bonus bMatkRate,3*(.@r/5); + - Id: 29684 + AegisName: aegis_29684 + Name: Temporal Jewel (DEX) Lv 1 + Type: Card + Script: | + .@r = getequiprefinerycnt(EQI_HEAD_TOP); + bonus2 bWeaponDamageRate,W_BOW,(.@r/2); + bonus bHit,2*(.@r/2); + bonus2 bAddClass,Class_All,(.@r/5); + - Id: 29685 + AegisName: aegis_29685 + Name: Temporal Jewel (DEX) Lv 2 + Type: Card + Script: | + .@r = getequiprefinerycnt(EQI_HEAD_TOP); + bonus2 bWeaponDamageRate,W_BOW,2*(.@r/2); + bonus bHit,5*(.@r/2); + bonus2 bAddClass,Class_All,2*(.@r/5); + - Id: 29686 + AegisName: aegis_29686 + Name: Temporal Jewel (DEX) Lv 3 + Type: Card + Script: | + .@r = getequiprefinerycnt(EQI_HEAD_TOP); + bonus2 bWeaponDamageRate,W_BOW,3*(.@r/2); + bonus bHit,7*(.@r/2); + bonus2 bAddClass,Class_All,3*(.@r/5); + - Id: 29687 + AegisName: aegis_29687 + Name: Temporal Jewel (LUK) Lv 1 + Type: Card + Script: | + .@r = getequiprefinerycnt(EQI_HEAD_TOP); + bonus bCritAtkRate,3*(.@r/2); + bonus bCritical,(.@r/2); + bonus2 bAddClass,Class_All,(.@r/5); + - Id: 29688 + AegisName: aegis_29688 + Name: Temporal Jewel (LUK) Lv 2 + Type: Card + Script: | + .@r = getequiprefinerycnt(EQI_HEAD_TOP); + bonus bCritAtkRate,6*(.@r/2); + bonus bCritical,2*(.@r/2); + bonus2 bAddClass,Class_All,2*(.@r/5); + - Id: 29689 + AegisName: aegis_29689 + Name: Temporal Jewel (LUK) Lv 3 + Type: Card + Script: | + .@r = getequiprefinerycnt(EQI_HEAD_TOP); + bonus bCritAtkRate,9*(.@r/2); + bonus bCritical,3*(.@r/2); + bonus2 bAddClass,Class_All,3*(.@r/5); - Id: 31006 AegisName: LoVA_Hades_Card Name: LoVA Hades Card @@ -37688,3 +37960,4 @@ Body: AegisName: aegis_1000235 Name: Great Hunter's Mark # !todo check english name Type: Etc + diff --git a/sql-files/item_db_re_equip.sql b/sql-files/item_db_re_equip.sql index dc60d37293..864cf1a373 100644 --- a/sql-files/item_db_re_equip.sql +++ b/sql-files/item_db_re_equip.sql @@ -664,6 +664,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`we REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1862,'Burning_Knuckle-OS','Burning Knuckle-OS','Weapon','Knuckle',20,900,175,1,2,true,true,true,true,true,4,130,true,'.@r = getrefine(); bonus2 bAddClass,Class_All,3; if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",15; if (.@r >= 11) { bonus2 bAddSize,Size_Medium,20; bonus2 bAddSize,Size_Large,20; } } }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1865,'Raging_Dragon_Fist','Raging Dragon Fist','Weapon','Knuckle',20,700,210,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bBaseAtk,4*.@r; bonus2 bSkillAtk,"MO_CHAINCOMBO",30; if (.@r >= 9) { bonus2 bSkillAtk,"MO_COMBOFINISH",50; bonus2 bSkillAtk,"CH_CHAINCRUSH",50; } if (.@r >= 11) bonus2 bSkillAtk,"CH_CHAINCRUSH",30;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1866,'Dedicated_Bandage','Dedicated Bandage','Weapon','Knuckle',20,800,220,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bBaseAtk,4*.@r; bonus bLongAtkRate,10; if (.@r >= 9) bonus2 bSkillAtk,"SR_KNUCKLEARROW",40; if (.@r >= 11) bonus bDelayrate,-7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_monk`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1870,'aegis_1870','Royal Knuckle','Weapon','Knuckle',1500,190,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine();\nbonus bLongAtkRate,15;\nbonus bBaseAtk,4*.@r;\nif (.@r>=9) {\n bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",20;\n}\nif (.@r>=11) {\n bonus2 bAddRace,RC_Undead,20;\n bonus2 bAddRace,RC_Angel,20;\n bonus2 bSkillCooldown,"SR_RAMPAGEBLASTER",-1000;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1900,'Violin_of_Vicious_Mind','Violin of Vicious Mind','Weapon','Musical',20,1300,130,50,1,1,true,'Male',true,4,160,true,'bonus bAtk,pow(min(getrefine(),15),2); bonus bMatk,pow(min(getrefine(),15),2)/2;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1901,'Violin','Violin','Weapon','Musical',4000,700,50,1,3,true,'Male',true,1,2,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1902,'Violin_','Violin','Weapon','Musical',4000,700,50,1,4,true,'Male',true,1,2,true); @@ -2926,6 +2927,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`we REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_kagerouoboro`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13337,'Illusion_Huuma_Fluttering_Snow','Illusion Huuma Fluttering Snow','Weapon','Huuma',1500,250,50,1,2,true,true,true,true,4,120,true,'.@r = getrefine(); bonus bBaseAtk,(30*(.@r/3)); bonus bLongAtkRate,(3*.@r);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_kagerouoboro`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13338,'Illusion_Wing_Shuriken','Illusion Wing Shuriken','Weapon','Huuma',1500,300,1,2,true,true,true,true,4,120,true,'bonus bDex,2; bonus2 bSkillAtk,"KO_HAPPOKUNAI",(9*getrefine());'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_kagerouoboro`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13345,'Huuma_Shuriken_Clearness','Huuma Shuriken Clearness','Weapon','Huuma',20,1300,230,1,2,true,true,true,true,4,100,true,'.@r = getrefine(); bonus bLongAtkRate,2*(.@r/3); bonus bBaseAtk,10*(.@r/2); if (.@r >= 7) { bonus2 bSkillAtk,"KO_HUUMARANKA",30; if (.@r >= 9) { bonus2 bSkillCooldown,"KO_HUUMARANKA",-1000; if (.@r >= 11) { bonus2 bAddEle,Ele_Fire,15; bonus2 bAddEle,Ele_Dark,15; bonus2 bAddRace,RC_Undead,30; bonus2 bAddRace,RC_Demon,30; } } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (13347,'aegis_13347','Royal Huuma Shuriken','Weapon','Huuma',1500,240,1,2,true,true,true,4,170,'.@r = getrefine();\nbonus bLongAtkRate,15;\nbonus bUnbreakableWeapon;\nbonus bBaseAtk,4*.@r;\nif (.@r>=9) {\n bonus2 bSkillAtk,"KO_JYUMONJIKIRI",20;\n}\nif (.@r>=11) {\n bonus2 bAddRace,RC_Undead,20;\n bonus2 bAddRace,RC_Angel,20;\n bonus2 bSkillCooldown,"KO_JYUMONJIKIRI",-2000;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13400,'Cutlas_','Cutlus','Weapon','1hSword',20,900,150,1,1,true,true,true,true,true,true,true,true,true,true,4,40,true,'skill "SM_BASH",5; bonus bStr,2; bonus bDef,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13401,'Excalibur_C','Excalibur','Weapon','1hSword',1,199,1,true,true,true,true,true,true,true,true,true,true,4,1,100,true,true,true,true,true,true,true,true,'bonus bInt,10; bonus bLuk,10; bonus bAtkEle,Ele_Holy;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13402,'Cutlas_C','Cutlus','Weapon','1hSword',2,185,1,true,true,true,true,true,true,true,true,true,true,4,100,true,true,true,true,true,true,true,true,'skill "SM_BASH",5; bonus bStr,2; bonus bDef,1;'); @@ -3267,6 +3269,8 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`pr REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18186,'Aiming_Bow','Aiming Bow','Weapon','Bow',20,1000,210,5,2,true,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bDelayrate,-1*(5+.@r); if (.@r>=9) bonus2 bSkillAtk,"RA_AIMEDBOLT",30; if (.@r>=11) { bonus2 bSkillAtk,"RA_AIMEDBOLT",15; bonus2 bSkillCooldown,"RA_AIMEDBOLT",-1000; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18187,'Falken_Shooter','Falken Shooter','Weapon','Bow',20,1000,210,5,2,true,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bLongAtkRate,10; bonus bBaseAtk,4*.@r; if (.@r>=9) bonus2 bSkillAtk,"RA_ARROWSTORM",25; if (.@r>=11) bonus2 bSkillCooldown,"RA_ARROWSTORM",-700;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18188,'Wind_Gale','Wind Gale','Weapon','Bow',20,1000,200,5,2,true,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bLongAtkRate,10+.@r; if (.@r>=9) bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",30; if (.@r>=11) bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (18191,'aegis_18191','Royal Knight Bow','Weapon','Bow',1500,180,5,2,true,true,true,true,true,true,4,170,'.@r = getrefine();\nbonus bLongAtkRate,15;\nbonus bBaseAtk,4*.@r;\nif (.@r>=9) {\n bonus2 bSkillAtk,"SC_TRIANGLESHOT",20;\n}\nif (.@r>=11) {\n bonus2 bAddRace,RC_Undead,20;\n bonus2 bAddRace,RC_Angel,20;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (18198,'aegis_18198','Royal Knight Archer Bow','Weapon','Bow',1700,190,5,2,true,true,true,true,true,true,4,170,'.@r = getrefine();\nbonus bLongAtkRate,15;\nbonus bBaseAtk,4*.@r;\nif (.@r>=9) {\n bonus bDelayrate,-12;\n bonus2 bSkillAtk,"RA_AIMEDBOLT",25;\n}\nif (.@r>=11) {\n bonus2 bAddRace,RC_Undead,20;\n bonus2 bAddRace,RC_Angel,20;\n bonus2 bSkillCooldown,"RA_AIMEDBOLT",-1000;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18500,'Cheer_Scarf6','Cheer Scarf6','Armor',true,1,369,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddClass,Class_All,60;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18501,'Cheer_Scarf8','Cheer Scarf8','Armor',true,1,369,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddClass,Class_All,80;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18502,'Cheer_Scarf10','Cheer Scarf10','Armor',true,1,369,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddClass,Class_All,100;'); @@ -3800,6 +3804,26 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19453,'Jeje_Cap','Jeje Cap','Armor',20,1000,18,true,100,true,1011,'.@r = getrefine(); .@dmg = 10; .@delay = -15-6*getskilllv("GN_CRAZYWEED"); bonus bMdef,15; bonus bNoCastCancel; bonus2 bVariableCastrate,"GN_CRAZYWEED",-50; bonus2 bVariableCastrate,"CR_ACIDDEMONSTRATION",-50; bonus2 bVariableCastrate,"CR_FULLPROTECTION",-50; if (.@r>=7) { .@dmg += 15; if (.@r>=9) { .@dmg += 25; if (.@r>=10) { bonus bIgnoreDefClass,Class_All; } } } if (getskilllv("GN_FIRE_EXPANSION") == 5) bonus2 bAddClass,Class_Boss,50; if (getskilllv("GN_CRAZYWEED") == 5) { .@delay -= 25; bonus2 bSkillCooldown,"GN_CRAZYWEED",-4500; } bonus2 bSkillAtk,"CR_ACIDDEMONSTRATION",.@dmg; bonus2 bSkillAtk,"GN_CRAZYWEED",.@dmg; bonus bDelayrate,.@delay;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (19469,'Saint_Crown','Saint Crown','Armor',20,600,12,true,100,true,1117,'.@r = getrefine(); .@a = 5*(getskilllv("AB_LAUDAAGNUS")+getskilllv("AB_LAUDARAMUS")); .@dmg = 20; .@aspd = 10; bonus bMdef,15; bonus2 bSkillUseSP,"AB_JUDEX",15; bonus2 bSkillUseSP,"AB_ADORAMUS",15; bonus2 bVariableCastrate,"AB_JUDEX",-5*getskilllv("AB_ORATIO"); bonus2 bVariableCastrate,"AB_ADORAMUS",-5*getskilllv("AB_ORATIO"); if (getskilllv("AB_CLEARANCE") >= 5) { bonus2 bMagicAddClass,Class_Boss,25; } bonus2 bMagicAddEle,Ele_Undead,.@a; bonus2 bMagicAddEle,Ele_Ghost,.@a; bonus2 bMagicAddEle,Ele_Earth,.@a; bonus2 bMagicAddEle,Ele_Neutral,.@a; bonus2 bMagicAddRace,RC_DemiHuman,2*.@r; bonus2 bMagicAddRace,RC_Player_Human,2*.@r; if (.@r >= 7) { .@dmg += 30; .@aspd += 5; if (.@r >= 9) { .@dmg += 50; .@aspd += 5; if (.@r >= 10) { bonus bNoGemStone; } } } bonus bAspdRate,.@aspd; bonus2 bSkillAtk,"AB_JUDEX",.@dmg; bonus2 bSkillAtk,"AB_ADORAMUS",.@dmg;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`equip_level_min`,`view`,`script`,`unequip_script`) VALUES (19433,'C_Resonate_Taego','Costume Resonate Taego','Armor',true,1,1823,'hateffect(HAT_EF_RESONATETAEGO,true);','hateffect(HAT_EF_RESONATETAEGO,false);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`view`) VALUES (19472,'aegis_19472','Circlet of Costume Time','Armor',true,1891); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19474,'S_Circlet_Of_Time_RK','Temporal Circlet (Rune Knight)','Armor',10,1,true,true,true,true,true,170,true,1892,100,true,true,true,true,true,true,'.@r = getrefine();\nbonus bMaxHP,250*(.@r/2);\nbonus bMaxSPrate,2*(.@r/3);\nbonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",15*(.@r/3);\nbonus2 bSkillAtk,"RK_DRAGONBREATH",15*(.@r/3);\nbonus bLongAtkRate,5*(.@r/4);\nif (.@r>=11) {\n bonus bDelayrate,-5;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`job_crusader`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19475,'S_Circlet_Of_Time_LG','Temporal Circlet (Royal Guard)','Armor',10,1,true,true,true,true,true,170,true,1892,100,true,true,true,true,true,true,'.@r = getrefine();\nbonus bBaseAtk,15*(.@r/2);\nbonus bAspdRate,2*(.@r/3);\nbonus2 bSkillAtk,"LG_BANISHINGPOINT",15*(.@r/3);\nbonus2 bSkillAtk,"LG_CANNONSPEAR",15*(.@r/3);\nbonus bLongAtkRate,5*(.@r/4);\nif (.@r>=11) {\n bonus2 bAddClass,Class_All,5;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19476,'S_Circlet_Of_Time_NC','Temporal Circlet (Mechanic)','Armor',10,1,true,true,true,true,true,170,true,1892,100,true,true,true,true,true,true,'.@r = getrefine();\nbonus bBaseAtk,15*(.@r/2);\nbonus bAspdRate,2*(.@r/3);\nbonus2 bSkillAtk,"NC_BOOSTKNUCKLE",10*(.@r/3);\nbonus2 bSkillAtk,"NC_ARMSCANNON",10*(.@r/3);\nbonus bLongAtkRate,5*(.@r/4);\nif (.@r>=11) {\n bonus bDelayrate,-5;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19477,'S_Circlet_Of_Time_GN','Temporal Circlet (Genetic)','Armor',10,1,true,true,true,true,true,170,true,1892,100,true,true,true,true,true,true,'.@r = getrefine();\nbonus bBaseAtk,15*(.@r/2);\nbonus bAspdRate,2*(.@r/3);\nbonus2 bSkillAtk,"GN_SPORE_EXPLOSION",20*(.@r/3);\nbonus2 bSkillAtk,"GN_CART_TORNADO",20*(.@r/3);\nbonus2 bAddSize,Size_All,2*(.@r/4);\nif (.@r>=11) {\n bonus bDelayrate,-5;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19478,'S_Circlet_Of_Time_GC','Temporal Circlet (Guillotine Cross)','Armor',10,1,true,true,true,true,true,170,true,1892,100,true,true,true,true,true,true,'.@r = getrefine();\nbonus bBaseAtk,15*(.@r/2);\nbonus bAspdRate,2*(.@r/3);\nbonus2 bSkillAtk,"GC_COUNTERSLASH",20*(.@r/3);\nbonus2 bSkillAtk,"GC_ROLLINGCUTTER",20*(.@r/3);\nbonus2 bAddClass,Class_All,2*(.@r/4);\nif (.@r>=11) {\n bonus bDelayrate,-5;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19479,'S_Circlet_Of_Time_SC','Temporal Circlet (Shadow Chaser)','Armor',10,1,true,true,true,true,true,170,true,1892,100,true,true,true,true,true,true,'.@r = getrefine();\nbonus bBaseAtk,15*(.@r/2);\nbonus bAspdRate,2*(.@r/3);\nbonus2 bSkillAtk,"SC_FATALMENACE",30*(.@r/3);\nbonus2 bSkillAtk,"SC_FEINTBOMB",30*(.@r/3);\nbonus2 bAddClass,Class_All,2*(.@r/4);\nif (.@r>=11) {\n bonus bDelayrate,-5;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19480,'S_Circlet_Of_Time_AB','Temporal Circlet (Archbishop)','Armor',10,1,true,true,true,true,true,170,true,1892,100,true,true,true,true,true,true,'.@r = getrefine();\nbonus bMatk,15*(.@r/2);\nbonus bVariableCastrate,-3*(.@r/3);\nbonus2 bSkillAtk,"AB_ADORAMUS",20*(.@r/3);\nbonus2 bMagicAtkEle,Ele_Holy,7*(.@r/4);\nif (.@r>=11) {\n bonus bMatkRate,5;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`job_monk`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19481,'S_Circlet_Of_Time_SR','Temporal Circlet (Sura)','Armor',10,1,true,true,true,true,true,170,true,1892,100,true,true,true,true,true,true,'.@r = getrefine();\nbonus bBaseAtk,15*(.@r/2);\nbonus bMaxHPrate,2*(.@r/3);\nbonus2 bSkillAtk,"SR_KNUCKLEARROW",10*(.@r/3);\nbonus2 bSkillAtk,"SR_TIGERCANNON",10*(.@r/3);\nbonus bLongAtkRate,5*(.@r/4);\nif (.@r>=11) {\n bonus2 bAddClass,Class_All,5;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19482,'S_Circlet_Of_Time_WL','Temporal Circlet (Warlock)','Armor',10,1,true,true,true,true,true,170,true,1892,100,true,true,true,true,true,true,'.@r = getrefine();\nbonus bMatk,15*(.@r/2);\nbonus bVariableCastrate,-3*(.@r/3);\nbonus2 bSkillAtk,"WL_CHAINLIGHTNING",20*(.@r/3);\nbonus2 bSkillAtk,"WL_JACKFROST",20*(.@r/3);\nbonus2 bMagicAtkEle,Ele_Wind,5*(.@r/4);\nbonus2 bMagicAtkEle,Ele_Water,5*(.@r/4);\nif (.@r>=11) {\n bonus bMatkRate,5;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19483,'S_Circlet_Of_Time_SO','Temporal Circlet (Sorcerer)','Armor',10,1,true,true,true,true,true,170,true,1892,100,true,true,true,true,true,true,'.@r = getrefine();\nbonus bMatk,15*(.@r/2);\nbonus bVariableCastrate,-3*(.@r/3);\nbonus2 bSkillAtk,"SO_DIAMONDDUST",20*(.@r/3);\nbonus2 bSkillAtk,"SO_PSYCHIC_WAVE",20*(.@r/3);\nbonus2 bMagicAtkEle,Ele_Neutral,5*(.@r/4);\nbonus2 bMagicAtkEle,Ele_Water,5*(.@r/4);\nif (.@r>=11) {\n bonus bMatkRate,5;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19484,'S_Circlet_Of_Time_RA','Temporal Circlet (Ranger)','Armor',10,1,true,true,true,true,true,170,true,1892,100,true,true,true,true,true,true,'.@r = getrefine();\nbonus bBaseAtk,15*(.@r/2);\nbonus bCritAtkRate,5*(.@r/3);\nbonus2 bSkillAtk,"RA_ARROWSTORM",20*(.@r/3);\nbonus2 bSkillAtk,"RA_AIMEDBOLT",20*(.@r/3);\nbonus bLongAtkRate,5*(.@r/4);\nif (.@r>=11) {\n bonus2 bSkillCooldown,"RA_ARROWSTORM",-1000;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19485,'S_Circlet_Of_Time_WM','Temporal Circlet (Wanderer & Minstrel)','Armor',10,1,true,true,true,true,true,170,true,1892,100,true,true,true,true,true,true,'.@r = getrefine();\nbonus bMatk,15*(.@r/2);\nbonus bVariableCastrate,-5*(.@r/3);\nbonus2 bSkillAtk,"WM_METALICSOUND",20*(.@r/3);\nbonus2 bSkillAtk,"WM_REVERBERATION",20*(.@r/3);\nbonus2 bMagicAtkEle,Ele_Neutral,7*(.@r/4);\nif (.@r>=11) {\n bonus bMatkRate,5;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`job_stargladiator`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19486,'S_Circlet_Of_Time_SJ','Temporal Circlet (Star Emperor)','Armor',10,1,true,true,true,true,true,170,true,1892,100,true,true,true,true,true,true,'.@r = getrefine();\nbonus bBaseAtk,15*(.@r/2);\nbonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK",30*(.@r/3);\nbonus2 bAddSize,Size_All,2*(.@r/4);\nif (.@r>=11) {\n bonus2 bAddClass,Class_All,5;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`job_soullinker`,`class_third`,`class_third_upper`,`class_third_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19487,'S_Circlet_Of_Time_SP','Temporal Circlet (Soul Reaper)','Armor',10,1,true,true,true,true,true,170,true,1892,100,true,true,true,true,true,true,'.@r = getrefine();\nbonus bMatk,15*(.@r/2);\nbonus bVariableCastrate,-5*(.@r/3);\nbonus2 bSkillAtk,"SP_CURSEEXPLOSION",20*(.@r/3);\nbonus2 bSkillAtk,"SP_SWHOO",20*(.@r/3);\nbonus2 bMagicAtkEle,Ele_Dark,7*(.@r/4);\nif (.@r>=11) {\n bonus bMatkRate,5;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`job_rebellion`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19488,'S_Circlet_Of_Time_RL','Temporal Circlet (Rebellion)','Armor',10,1,true,true,170,true,1892,100,true,true,true,true,true,true,'.@r = getrefine();\nbonus bBaseAtk,15*(.@r/2);\nbonus bAspdRate,2*(.@r/3);\nbonus2 bSkillAtk,"RL_BANISHING_BUSTER",20*(.@r/3);\nbonus2 bSkillAtk,"RL_R_TRIP",20*(.@r/3);\nbonus bLongAtkRate,5*(.@r/4);\nif (.@r>=11) {\n bonus bDelayrate,-5;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`job_kagerouoboro`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19489,'S_Circlet_Of_Time_OB','Temporal Circlet (Oboro)','Armor',10,1,true,true,170,true,1892,100,true,true,true,true,true,true,'.@r = getrefine();\nbonus bMatk,15*(.@r/2);\nbonus bAspdRate,2*(.@r/3);\nbonus2 bSkillAtk,"NJ_HYOUSENSOU",30*(.@r/3);\nbonus2 bSkillAtk,"NJ_HUUJIN",30*(.@r/3);\nbonus2 bMagicAtkEle,Ele_Wind,5*(.@r/4);\nbonus2 bMagicAtkEle,Ele_Water,5*(.@r/4);\nif (.@r>=11) {\n bonus bMatkRate,5;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`job_kagerouoboro`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19490,'S_Circlet_Of_Time_KG','Temporal Circlet (Kagerou)','Armor',10,1,true,true,170,true,1892,100,true,true,true,true,true,true,'.@r = getrefine();\nbonus bBaseAtk,15*(.@r/2);\nbonus bAspdRate,2*(.@r/3);\nbonus2 bSkillAtk,"KO_BAKURETSU",20*(.@r/3);\nbonus2 bSkillAtk,"KO_JYUMONJIKIRI",20*(.@r/3);\nbonus2 bAddSize,Size_All,2*(.@r/4);\nif (.@r>=11) {\n bonus2 bAddClass,Class_All,5;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19491,'S_Circlet_Of_Time_NV','Temporal Circlet (Super Novice)','Armor',10,1,true,true,true,170,true,1892,100,true,true,true,true,true,true,'.@r = getrefine();\nbonus bMatk,10*(.@r/2);\nbonus bBaseAtk,10*(.@r/2);\nbonus bAspdRate,4*(.@r/3);\nbonus bVariableCastrate,-4*(.@r/3);\nbonus2 bMagicAtkEle,Ele_All,5*(.@r/4);\nbonus bCritAtkRate,5*(.@r/4);\nif (.@r>=11) {\n bonus bDelayrate,-5;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (19492,'S_Circlet_Of_Time_SU','Temporal Circlet (Summoner)','Armor',10,1,true,true,true,true,true,170,true,1892,100,true,true,true,true,true,true,'.@r = getrefine();\nbonus bBaseAtk,15*(.@r/2);\nbonus bAspdRate,2*(.@r/3);\nbonus2 bSkillAtk,"SU_CN_METEOR",20*(.@r/3);\nbonus2 bSkillAtk,"SU_PICKYPECK",20*(.@r/3);\nbonus2 bMagicAtkEle,Ele_Neutral,7*(.@r/4);\nif (.@r>=11) {\n bonus bDelayrate,-5;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`location_costume_head_Low`,`view`,`script`) VALUES (19500,'T_Mr_Smile','T Mr Smile','Armor',true,true,65,'bonus bStr,2;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`view`) VALUES (19501,'T_Spinx_Helm','T Spinx Helm','Armor',true,137); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`location_costume_head_Mid`,`view`) VALUES (19502,'T_Goggle','T Goggle','Armor',true,true,1); @@ -4834,6 +4858,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`pr REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (21050,'Illusion_Tae_Goo_Lyeon','Illusion Tae Goo Lyeon','Weapon','2hSword',20,2000,250,1,2,true,true,true,true,true,true,true,4,120,true,'.@r = getrefine(); bonus bFlee2,10; bonus bLongAtkRate,.@r*2; if (.@r >= 7) { bonus bUseSPrate,-20; if (.@r >= 9) { bonus bDelayrate,-20; if (.@r >= 11) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; } } }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (21051,'Volar','Volar','Weapon','2hSword',20,2800,280,1,2,true,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus2 bSkillAtk,"KN_BOWLINGBASH",30; bonus bBaseAtk,4*.@r; if (.@r>=9) { bonus2 bSkillCooldown,"KN_BOWLINGBASH",-1000; bonus2 bSkillCooldown,"RK_IGNITIONBREAK",-1000; } if (.@r>=11) { bonus bUnbreakableWeapon; bonus2 bSkillAtk,"KN_BOWLINGBASH",20; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (21052,'Vernan','Vernan','Weapon','2hSword',20,6500,300,1,2,true,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bLongAtkRate,.@r; bonus2 bAddClass,Class_All,5; if (.@r>=9) { bonus2 bSkillAtk,"LK_SPIRALPIERCE",30; bonus2 bSkillAtk,"RK_SONICWAVE",30; } if (.@r>=11) { bonus2 bSkillCooldown,"RK_SONICWAVE",-1500; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (21055,'aegis_21055','Guardian Knight Claymore','Weapon','2hSword',4000,280,1,2,true,true,true,true,true,true,4,170,'.@r = getrefine();\nbonus2 bAddClass,Class_All,5;\nbonus bBaseAtk,4*.@r;\nif (.@r>=9) {\n bonus bCritAtkRate,25;\n bonus bCritical,5;\n}\nif (.@r>=11) {\n bonus2 bAddRace,RC_Undead,20;\n bonus2 bAddRace,RC_Angel,20;\n bonus bUnbreakableWeapon;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (21058,'Up_Dragonic_Slayer','Patent Dragonic Slayer','Weapon','1hSword',2000,200,1,2,true,true,true,true,true,true,4,150,true,'.@r = getrefine(); bonus bMaxHPrate,.@r/2*5; bonus bMaxSPrate,.@r/2*5; bonus2 bSkillAtk,"RK_DRAGONBREATH",.@r/3*5; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",.@r/3*5; if (.@r>=7){ bonus bDelayRate,-10; bonus bVariableCastrate,-10; } if (.@r>=9){ bonus bLongAtkRate,10; } if (.@r>=11){ bonus bDelayRate,-7; bonus bMaxSPrate,5; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22000,'Temporal_Str_Boots','Temporal Boots Of Strength','Armor',20,600,25,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,99,true,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAtk,7*(.@r/3); if(readparam(bStr)>=120) bonus bAtk,50;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22001,'Temporal_Int_Boots','Temporal Boots Of Intelligence','Armor',20,600,20,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,99,true,'.@r = getrefine(); bonus bMdef,5; bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMatk,10*(.@r/3); if(readparam(bInt)>=120) bonus bMatk,60;'); @@ -5368,9 +5393,13 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`pr REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26159,'Psychic_Spear_Rod','Psychic Spear Rod','Weapon','Staff',20,800,120,180,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Wind,5; bonus2 bMagicAtkEle,Ele_Neutral,5; if (.@r >= 9) { bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",30; } if (.@r >= 11) { bonus2 bSkillCooldown,"SO_VARETYR_SPEAR",-2000; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26160,'Dust_Grave','Dust Grave','Weapon','Staff',20,800,120,180,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); if (.@r >= 11) .@val = 50; else if (.@r >= 9) .@val = 30; bonus2 bSkillAtk,"SO_DIAMONDDUST",.@val; bonus2 bSkillAtk,"SO_EARTHGRAVE",.@val; bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Water,5; bonus2 bMagicAtkEle,Ele_Earth,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26161,'Penitentia','Penitentia','Weapon','Staff',20,700,100,175,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Holy,5; if (.@r >= 9) { bonus2 bSkillAtk,"PR_MAGNUS",(.@r>=11) ? 50 : 30; bonus2 bSkillAtk,"AB_JUDEX",30; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26165,'aegis_26165','Royal Cleric Staff','Weapon','Staff',1000,100,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine();\nbonus bMatkRate,5;\nbonus bMatk,170;\nbonus bUnbreakableWeapon;\nbonus bMatk,4*.@r;\nif (.@r>=9) {\n bonus2 bSkillAtk,"AB_ADORAMUS",20;\n}\nif (.@r>=11) {\n bonus2 bMagicAddRace,RC_Undead,20;\n bonus2 bMagicAddRace,RC_Angel,20;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26166,'aegis_26166','Royal Magician Wand','Weapon','Staff',800,80,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine();\nbonus2 bMagicAtkEle,Ele_Fire,5;\nbonus bMatk,180;\nbonus bUnbreakableWeapon;\nbonus bMatk,4*.@r;\nif (.@r>=9) {\n bonus2 bSkillAtk,"WL_HELLINFERNO",20;\n bonus2 bSkillAtk,"WL_CRIMSONROCK",20;\n}\nif (.@r>=11) {\n bonus2 bMagicAddRace,RC_Undead,20;\n bonus2 bMagicAddRace,RC_Angel,20;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26172,'aegis_26172','Royal Foxtail','Weapon','Staff',1200,275,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine();\nbonus bMatkRate,5;\nbonus bMatk,350;\nbonus bUnbreakableWeapon;\nbonus bMatk,4*.@r;\nbonus bBaseAtk,4*.@r;\nif (.@r>=9) {\n bonus2 bSkillAtk,"SU_CN_METEOR",20;\n bonus2 bSkillAtk,"SU_PICKYPECK",20;\n}\nif (.@r>=11) {\n bonus2 bAddRace,RC_Undead,20;\n bonus2 bAddRace,RC_Angel,20;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26200,'Hippie_Rope','Hippie Rope','Weapon','Whip',1000,140,2,2,true,true,true,true,'Female',true,3,100,true,'.@r = getrefine(); .@lvl = getskilllv("DC_DANCINGLESSON"); bonus bAspdRate,.@lvl; if (.@r>=7) bonus bBaseAtk,(5*.@lvl); if (.@r>=9) bonus bAspd,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26212,'Heart_Whip','Heart Whip','Weapon','Whip',1200,100,190,2,2,true,true,true,true,'Female',true,4,170,true,'.@r = getrefine(); bonus bMatk,4*.@r; bonus2 bMagicAtkEle,Ele_Neutral,10; if (.@r>=9) bonus2 bSkillAtk,"WM_METALICSOUND",30; if (.@r>=11) bonus2 bSkillCooldown,"WM_METALICSOUND",-2000;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26213,'Scarlet_Ribbon','Scarlet Ribbon','Weapon','Whip',1200,180,2,2,true,true,true,true,'Female',true,4,170,true,'.@r = getrefine(); bonus bVariableCastrate,-10; bonus bLongAtkRate,.@r; if (.@r>=9) bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-1000; if (.@r>=11) bonus2 bSkillUseSPrate,"WM_SEVERE_RAINSTORM",20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26216,'aegis_26216','Royal Whip','Weapon','Whip',1000,100,2,2,true,true,true,true,'Female',true,4,170,true,'.@r = getrefine();\nbonus2 bMagicAtkEle,Ele_Neutral,10;\nbonus bMatk,180;\nbonus bUnbreakableWeapon;\nbonus bMatk,4*.@r;\nif (.@r>=9) {\n bonus2 bSkillCooldown,"WM_METALICSOUND",-1000;\n bonus2 bSkillAtk,"WM_METALICSOUND",20;\n bonus2 bSkillAtk,"WM_REVERBERATION",20;\n}\nif (.@r>=11) {\n bonus2 bMagicAddRace,RC_Undead,20;\n bonus2 bMagicAddRace,RC_Angel,20;\n bonus2 bSkillCooldown,"WM_METALICSOUND",-1000;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (28000,'Thanos_Katar','Thanos Katar','Weapon','Katar',10,1800,220,80,1,1,true,true,true,true,true,true,4,120,true,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000;','heal -1000,0;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28001,'Katar_Of_Evil_Slayer','Evil Slayer Ripper Katar','Weapon','Katar',1200,120,1,1,true,true,true,3,100,true,'bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; .@r = getrefine(); if(.@r>=9) { .@dmg = 5; if(.@r>=12) { .@dmg += 7; } bonus2 bAddClass,Class_All,.@dmg; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28002,'Half_BF_Katar2','Half BF Katar2','Weapon','Katar',20,130,1,true,true,true,3,80,true,'bonus bStr,1; bonus bDex,1; bonus bLuk,1; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus bCritAtkRate,10; bonus bAspdRate,3; bonus bUnbreakableWeapon;'); @@ -5385,6 +5414,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`we REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28038,'Meuchler-OS','Meuchler-OS','Weapon','Katar',20,1300,190,1,2,true,true,true,4,130,true,'.@r = getrefine(); bonus2 bAddClass,Class_All,3; if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",15; if (.@r >= 11) { bonus2 bAddSize,Size_Small,20; bonus2 bAddSize,Size_Medium,20; } } }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28042,'Ripper_Cross','Ripper Cross','Weapon','Katar',20,1500,250,1,2,true,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus2 bAddClass,Class_All,5; bonus bLongAtkRate,.@r; if (.@r>=9) bonus2 bSkillAtk,"GC_ROLLINGCUTTER",30; if (.@r>=11) bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",20;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28044,'Agudo_Filo','Agudo Filo','Weapon','Katar',20,2000,270,1,2,true,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bCritAtkRate,5; bonus bBaseAtk,4*.@r; if (.@r>=9) bonus2 bAddSize,Size_All,15; if (.@r>=11) { bonus bUnbreakableWeapon; bonus2 bAddClass,Class_All,7; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (28046,'aegis_28046','Royal Katar','Weapon','Katar',1500,200,1,2,true,true,true,true,true,true,4,170,'.@r = getrefine();\nbonus2 bAddClass,Class_All,5;\nbonus bBaseAtk,5*.@r;\nif (.@r>=9) {\n bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",20;\n bonus2 bSkillAtk,"GC_ROLLINGCUTTER",20;\n}\nif (.@r>=11) {\n bonus2 bAddRace,RC_Undead,20;\n bonus2 bAddRace,RC_Angel,20;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (28100,'Thanos_Axe','Thanos Axe','Weapon','2hAxe',10,4000,300,80,1,1,true,true,true,true,true,true,true,true,4,120,true,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000;','heal -1000,0;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28101,'Tornado_Axe','Tornado Axe','Weapon','2hAxe',30000,4000,320,1,1,true,true,true,true,true,true,true,true,true,true,4,100,true,'bonus bAtkEle,Ele_Wind; bonus2 bSkillCooldown,"NC_AXETORNADO",-1000;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28102,'Half_BF_Two_Handed_Axe1','Half BF Two Handed Axe1','Weapon','2hAxe',20,200,1,true,true,true,true,true,true,true,true,3,80,true,'bonus bStr,3; bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player_Human,30; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon;'); @@ -5397,6 +5427,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`pr REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28116,'Mine_Worker\'s_Pickaxe','Mine Worker\'s Pickaxe','Weapon','2hAxe',10,4000,300,1,2,true,true,true,true,true,true,3,100,true,'bonus bUnbreakableWeapon; autobonus "{ bonus bCritical,20; }",5,7000,BF_SHORT,"{ specialeffect2 EF_ENCHANCE; }"; .@r = getrefine(); if (.@r>=9) { bonus bCritAtkRate,15; } else if (.@r>=7) { bonus bCritAtkRate,5; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28136,'Blasti-OS','Blasti-OS','Weapon','2hAxe',20,4500,400,1,2,true,true,true,true,true,true,4,130,true,'.@r = getrefine(); .@red = 10; bonus bUnbreakableWeapon; if (.@r >= 7) { .@red += 15; if (.@r >= 9) { bonus bLongAtkRate,15; if (.@r >= 11) { bonus bDelayrate,-10; } } } bonus2 bSubSize,Size_Medium,.@red; bonus2 bSubSize,Size_Large,.@red;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28138,'Maxi_Spanner','Maxi Spanner','Weapon','2hAxe',4500,340,1,2,true,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bBaseAtk,4*.@r; bonus bUnbreakableWeapon; bonus2 bSubSize,Size_Small,10; bonus2 bSubSize,Size_Medium,10; if (.@r>=9) { bonus2 bSkillCooldown,"NC_AXETORNADO",-1000; bonus2 bSkillCooldown,"NC_MAGMA_ERUPTION",-1000; } if (.@r>=11) bonus2 bSkillAtk,"NC_AXETORNADO",15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (28141,'aegis_28141','Guardian Knight Battle Axe','Weapon','1hAxe',5000,270,1,2,true,true,true,true,true,true,4,170,'.@r = getrefine();\nbonus2 bSubSize,Size_Medium,10;\nbonus2 bMagicSubSize,Size_Medium,10;\nbonus2 bSubSize,Size_Large,10;\nbonus2 bMagicSubSize,Size_Large,10;\nbonus2 bAddClass,Class_All,5;\nbonus bUnbreakableWeapon;\nbonus bLongAtkRate,.@r;\nif (.@r>=9) {\n bonus2 bSkillCooldown,"NC_AXETORNADO",-1000;\n bonus2 bSkillAtk,"NC_AXETORNADO",20;\n bonus2 bSkillAtk,"NC_MAGMA_ERUPTION",20;\n}\nif (.@r>=11) {\n bonus2 bAddRace,RC_Undead,20;\n bonus2 bAddRace,RC_Angel,20;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (28200,'END_OF_HORIZO','End Of The Horizon','Weapon','Grenade',2700000,2400,410,9,1,true,true,true,4,110,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28201,'Southern_Cross_R','Southern Cross','Weapon','Grenade',2800000,2000,480,9,true,true,true,4,141,true,'bonus3 bAutoSpell,"GC_CROSSIMPACT",1,50;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28202,'Southern_Cross_R_','Southern Cross','Weapon','Grenade',2800000,2000,480,9,1,true,true,true,4,141,true,'bonus3 bAutoSpell,"GC_CROSSIMPACT",1,50;'); @@ -5553,6 +5584,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`pr REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28626,'Illusion_Tablet','Illusion Tablet','Weapon','Book',800,170,1,2,true,true,true,true,4,100,true,'.@val = 10 + 10*(min(getrefine(),10)/3); bonus2 bAddEle,Ele_Dark,.@val; bonus2 bAddEle,Ele_Undead,.@val; bonus2 bAddEle,Ele_Poison,.@val; bonus2 bAddEle,Ele_Ghost,.@val; bonus2 bSubDefEle,Ele_Dark,-30;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28629,'Circuit_Board-OS','Circuit Board-OS','Weapon','Book',20,1200,180,1,2,true,true,true,true,4,130,true,'.@r = getrefine(); bonus2 bAddClass,Class_All,3; if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus2 bAddSize,Size_Small,20; bonus2 bAddSize,Size_Medium,20; if (.@r >= 11) { bonus bCritAtkRate,20; } } }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28633,'Boltijin','Boltijin','Weapon','Book',20,800,120,175,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bMatk,4*.@r; if (.@r>=9) .@val = 30; if (.@r>=11) { bonus2 bSkillAtk,"WZ_EARTHSPIKE",50; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",50; } bonus2 bSkillAtk,"MG_FIREBOLT",20+.@val; bonus2 bSkillAtk,"MG_COLDBOLT",20+.@val; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",20+.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28636,'aegis_28636','Royal Sage Book','Weapon','Book',1000,90,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine();\nbonus2 bMagicAtkEle,Ele_Wind,5;\nbonus2 bMagicAtkEle,Ele_Water,5;\nbonus bMatk,170;\nbonus bUnbreakableWeapon;\nbonus bMatk,4*.@r;\nif (.@r>=9) {\n bonus2 bSkillAtk,"SO_DIAMONDDUST",20;\n bonus2 bSkillAtk,"SO_VARETYR_SPEAR",20;\n}\nif (.@r>=11) {\n bonus2 bMagicAddRace,RC_Undead,20;\n bonus2 bMagicAddRace,RC_Angel,20;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28700,'Ru_Gold_Dagger','Ru Gold Dagger','Weapon','Dagger',1000,160,1,2,true,true,true,true,true,3,120,true,'bonus bStr,8; bonus bInt,8;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28701,'Ru_Gold_Knife','Ru Gold Knife','Weapon','Dagger',500,160,1,2,true,true,true,true,true,3,120,true,'bonus bVit,8; bonus bInt,8;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_ninja`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (28702,'Ru_Gold_Ashura','Ru Gold Ashura','Weapon','Dagger',1000,150,150,1,2,true,true,3,120,true); @@ -5571,6 +5603,9 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`pr REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (28766,'Repent_Slasher','Repent Slasher','Weapon','Dagger',20,700,100,1,3,true,true,true,true,true,4,170,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28767,'Jack_The_Knife','Jack The Knife','Weapon','Dagger',20,900,195,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bBaseAtk,4*.@r; bonus2 bSkillAtk,"RG_BACKSTAP",40; if (.@r>=9) bonus2 bSkillAtk,"SC_FATALMENACE",30; if (.@r>=11) bonus2 bSkillUseSPrate,"SC_FATALMENACE",10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28768,'Platinum_Dagger','Platinum Dagger','Weapon','Dagger',20,1500,150,170,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bMatk,4*.@r; bonus bMatkRate,5; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Fire,15; bonus2 bMagicAtkEle,Ele_Wind,15; bonus2 bMagicAtkEle,Ele_Water,15; bonus2 bMagicAtkEle,Ele_Earth,15; } if (.@r>=11) autobonus "{ bonus bMatk,100; bonus2 bMagicAddSize,Size_All,30; }",50,10000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; /* Unknow Rates and Specialeffect */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28774,'aegis_28774','Royal Gladius (R)','Weapon','Dagger',1500,200,1,2,true,true,true,true,true,4,170,true,'bonus2 bAddClass,Class_All,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (28775,'aegis_28775','Royal Gladius (L)','Weapon','Dagger',1000,100,1,3,true,true,true,true,true,4,170,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28776,'aegis_28776','Royal Magician Dagger','Weapon','Dagger',1500,200,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine();\nbonus bMatkRate,5;\nbonus bMatk,170;\nbonus bMatk,4*.@r;\nif (.@r>=9) {\n bonus2 bMagicAtkEle,Ele_Neutral,15;\n bonus2 bMagicAtkEle,Ele_Fire,15;\n}\nif (.@r>=11) {\n bonus2 bMagicAddRace,RC_Undead,20;\n bonus2 bMagicAddRace,RC_Angel,20;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (28900,'Guardsmen\'s_Shield','Guardsmen\'s Shield','Armor',20,3000,30,1,true,100,true,1,'.@r = getrefine(); skill "LG_SHIELDSPELL",1; bonus3 bAutoSpellWhenHit,"HP_ASSUMPTIO",3,(10+(.@r*10)); bonus bDef,(.@r*10); bonus bMdef,.@r;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (28901,'Cursed_Mad_Bunny','Cursed Mad Bunny','Armor',20,100,true,1,true,1,'bonus bAspd,3; bonus2 bAddRace,RC_All,5; bonus2 bMagicAddRace,RC_All,5; bonus bShortWeaponDamageReturn,10; autobonus2 "{ bonus bMagicDamageReturn,60; }",10,2000,BF_MAGIC,"{ specialeffect2 EF_WIND; }"; .@r = getrefine(); if(.@r>=7) { bonus bBaseAtk,5; bonus bMatk,5; } if(.@r>=9) { bonus bBaseAtk,15; bonus bMatk,15; } if(.@r>=12) { bonus bCritical,10; bonus bNoCastCancel; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_left_hand`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (28902,'Mad_Bunny_','Mad Bunny','Armor',20,100,1,true,1,true,1,'bonus2 bAddRace,RC_All,5; bonus2 bMagicAddRace,RC_All,5; bonus bShortWeaponDamageReturn,10; autobonus2 "{ bonus bMagicDamageReturn,60; }",10,2000,BF_MAGIC,"{ specialeffect2 EF_WIND; }"; .@r = getrefine(); if(.@r>=7) { bonus bBaseAtk,5; bonus bMatk,5; } if(.@r>=9) { bonus bBaseAtk,15; bonus bMatk,15; } if(.@r>=12) { bonus bCritical,10; bonus bNoCastCancel; }'); @@ -6229,8 +6264,10 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`pr REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32023,'Argen_Blanco','Argen Blanco','Weapon','1hSpear',20,1000,200,3,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus2 bSkillAtk,"KN_BRANDISHSPEAR",30; bonus bBaseAtk,4*.@r; if (.@r>=9) bonus2 bSkillCooldown,"RK_HUNDREDSPEAR",-1500; if (.@r>=11) bonus2 bSkillAtk,"KN_BRANDISHSPEAR",20;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32024,'Harve','Harve','Weapon','1hSpear',20,1500,210,3,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus2 bSkillAtk,"PA_SHIELDCHAIN",40; bonus bLongAtkRate,.@r; if (.@r>=9) bonus2 bSkillAtk,"LG_SHIELDPRESS",30; if (.@r>=11) { bonus2 bSkillAtk,"PA_SHIELDCHAIN",20; bonus2 bSkillAtk,"LG_SHIELDPRESS",20; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32025,'Fortridge','Fortridge','Weapon','1hSpear',20,1700,205,3,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bDelayrate,-.@r; bonus2 bAddClass,Class_All,5; if (.@r>=9) bonus2 bSkillAtk,"LG_CANNONSPEAR",20; if (.@r>=11) bonus2 bSkillAtk,"LG_OVERBRAND",20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32027,'aegis_32027','Guardian Knight Spear','Weapon','1hSpear',4000,205,3,2,true,true,true,true,true,4,170,true,'.@r = getrefine();\nbonus bLongAtkRate,.@r;\nif (.@r>=9) {\n bonus2 bSkillAtk,"LG_BANISHINGPOINT",20;\n}\nif (.@r>=11) {\n bonus2 bAddRace,RC_Undead,20;\n bonus2 bAddRace,RC_Angel,20;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32107,'Black_Circle','Black Circle','Weapon','Whip',1200,100,190,2,2,true,true,true,true,'Male',true,4,170,true,'.@r = getrefine(); bonus bMatk,4*.@r; bonus2 bMagicAtkEle,Ele_Neutral,10; if (.@r>=9) bonus2 bSkillAtk,"WM_METALICSOUND",30; if (.@r>=11) bonus2 bSkillCooldown,"WM_METALICSOUND",-2000;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32108,'Antique_Cello','Antique Cello','Weapon','Musical',1200,180,2,2,true,true,true,true,'Male',true,4,170,true,'.@r = getrefine(); bonus bVariableCastrate,-10; bonus bLongAtkRate,.@r; if (.@r>=9) bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-1000; if (.@r>=11) bonus2 bSkillUseSPrate,"WM_SEVERE_RAINSTORM",20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32111,'aegis_32111','Royal Chello','Weapon','Musical',1000,90,1,2,true,true,true,true,'Male',true,4,170,true,'.@r = getrefine();\nbonus2 bMagicAtkEle,Ele_Neutral,10;\nbonus bMatk,180;\nbonus bUnbreakableWeapon;\nbonus bMatk,4*.@r;\nif (.@r>=9) {\n bonus2 bSkillCooldown,"WM_METALICSOUND",-1000;\n bonus2 bSkillAtk,"WM_METALICSOUND",20;\n bonus2 bSkillAtk,"WM_REVERBERATION",20;\n}\nif (.@r>=11) {\n bonus2 bMagicAddRace,RC_Undead,20;\n bonus2 bMagicAddRace,RC_Angel,20;\n bonus2 bSkillCooldown,"WM_METALICSOUND",-1000;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (32203,'Accelerator_Chip','Accelerator Chip','Armor',20,100,1,true,true,100,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bAspdRate,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (32204,'Immortal_Dog_Tag','Immortal Dog Tag','Armor',20,100,1,true,true,100,'bonus bBaseAtk,50; bonus bMatk,50; bonus2 bSubRace,RC_Undead,4;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (32206,'Prontera_Militia_Glove','Prontera Militia Glove','Armor',20,100,1,true,true,100,'bonus bVit,5; bonus bMdef,5; bonus bAspdRate,5; bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3; bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Earth,5; bonus2 bSubEle,Ele_Wind,5; bonus2 bSubEle,Ele_Fire,5;'); @@ -6256,8 +6293,13 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (32263,'Shield_Ring','Shield Ring','Armor',20,400,1,true,true,100,'bonus bStr,5; bonus bInt,5; bonus bDex,5; bonus2 bAddClass,Class_All,5; if (getskilllv("LG_EARTHDRIVE")==5) bonus bDelayrate,-30; if (getskilllv("LG_INSPIRATION")==5) bonus2 bSkillCooldown,"LG_EARTHDRIVE",-1500; if (getskilllv("CR_DEVOTION")==5) { bonus bStr,5; bonus bInt,5; bonus bDex,5; bonus bBaseAtk,100; } if (getskilllv("LG_PINPOINTATTACK")==5) { bonus2 bSkillVariableCast,"LG_EARTHDRIVE",-500; bonus2 bSkillUseSP,"LG_EARTHDRIVE",25; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32301,'Illusion_Gold_Lux','Illusion Gold Lux','Weapon','Revolver',20,1800,160,7,2,true,true,true,true,4,120,true,'.@r = getrefine(); bonus bHit,10; bonus bLongAtkRate,3*(.@r/2); if (.@r >= 7) { bonus2 bSkillAtk,"GS_DESPERADO",40; if (.@r >= 9) { bonus2 bSkillCooldown,"RL_HEAT_BARREL",-2000; if (.@r >= 11) { bonus2 bSkillAtk,"RL_FIREDANCE",30; } } }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32302,'Crimson_Rose','Crimson Rose','Weapon','Revolver',20,700,150,7,2,true,true,true,4,100,true,'.@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,3*(.@r/3); if (.@r >= 7) { bonus bAspd,1; bonus2 bAddClass,Class_All,5; if (.@r >= 9) { bonus bCritAtkRate,20; if (.@r >= 11) { autobonus3 "{ bonus bCritical,20; bonus bLongAtkRate,15; }",1000,60000,"RL_HEAT_BARREL"; } } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (32304,'aegis_32304','Royal Revolver','Weapon','Revolver',700,150,7,2,true,true,true,true,4,170,'.@r = getrefine();\nbonus bLongAtkRate,15;\nbonus bBaseAtk,4*.@r;\nif (.@r>=9) {\n bonus2 bSkillAtk,"RL_FIREDANCE",20;\n}\nif (.@r>=11) {\n bonus2 bAddRace,RC_Undead,20;\n bonus2 bAddRace,RC_Angel,20;\n bonus2 bSkillCooldown,"RL_HEAT_BARREL",-5000;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_crusader`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32350,'Farthezan','Farthezan','Weapon','1hSword',20,1100,130,180,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus2 bSkillAtk,"PA_PRESSURE",40; bonus bVariableCastrate,-.@r; if (.@r>=9) bonus2 bSkillAtk,"LG_RAYOFGENESIS",30; if (.@r>=11) { bonus2 bSkillAtk,"LG_RAYOFGENESIS",20; bonus2 bSkillAtk,"PA_PRESSURE",20; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32351,'Estal','Estal','Weapon','1hSword',20,700,195,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus2 bSkillCooldown,"GN_SPORE_EXPLOSION",-1000; bonus bBaseAtk,4*.@r; if (.@r>=11) .@val = 50; else if (.@r>=9) .@val = 30; bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_crusader`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32353,'aegis_32353','Guardian Knight Jewel Sword','Weapon','1hSword',4000,130,180,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine();\nbonus bMaxHPrate,.@r;\nbonus2 bSkillAtk,"CR_GRANDCROSS",2*.@r;\nif (.@r>=9) {\n bonus2 bSkillAtk,"LG_SHIELDPRESS",20;\n}\nif (.@r>=11) {\n bonus2 bAddRace,RC_Undead,20;\n bonus2 bMagicAddRace,RC_Undead,20;\n bonus2 bAddRace,RC_Angel,20;\n bonus2 bMagicAddRace,RC_Angel,20;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32401,'aegis_32401','Royal Pillar','Weapon','Mace',5000,220,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine();\nbonus2 bAddClass,Class_All,5;\nbonus bUnbreakableWeapon;\nbonus bLongAtkRate,.@r;\nif (.@r>=9) {\n bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",20;\n bonus2 bSkillAtk,"NC_ARMSCANNON",20;\n}\nif (.@r>=11) {\n bonus2 bAddRace,RC_Undead,20;\n bonus2 bAddRace,RC_Angel,20;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32402,'aegis_32402','Royal Syringe','Weapon','Mace',1500,210,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine();\nbonus2 bAddClass,Class_All,5;\nbonus bUnbreakableWeapon;\nbonus bLongAtkRate,.@r;\nif (.@r>=9) {\n bonus2 bSkillAtk,"GN_CARTCANNON",20;\n bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",20;\n}\nif (.@r>=11) {\n bonus2 bAddRace,RC_Undead,20;\n bonus2 bAddRace,RC_Angel,20;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32403,'aegis_32403','Royal Alchemy Staff','Weapon','Mace',1500,200,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine();\nbonus2 bAddClass,Class_All,5;\nbonus bUnbreakableWeapon;\nbonus bBaseAtk,4*.@r;\nif (.@r>=9) {\n bonus2 bSkillCooldown,"GN_CRAZYWEED",-1000;\n bonus2 bSkillAtk,"GN_CRAZYWEED",30;\n}\nif (.@r>=11) {\n bonus2 bAddRace,RC_Undead,20;\n bonus2 bAddRace,RC_Angel,20;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_head_top`,`refineable`,`view`) VALUES (400045,'aegis_400045','Pierced apple','Armor',true,true,1952); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`view`) VALUES (400046,'aegis_400046','Costume pierced apple','Armor',true,1952); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_head_top`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (400049,'aegis_400049','Stripe Hat','Armor',100,1,true,130,true,1728,'.@r = getrefine();\nbonus bBaseAtk,20*(.@r/2);\nif (.@r>=7) {\n bonus bVariableCastrate,-15;\n}\nif (.@r>=9) {\n bonus bLongAtkRate,15;\n}\nif (.@r>=11) {\n bonus bFixedCast,-200;\n bonus2 bAddSize,Size_Small,15;\n bonus2 bAddSize,Size_Medium,15;\n}'); diff --git a/sql-files/item_db_re_etc.sql b/sql-files/item_db_re_etc.sql index 41bce84783..639356e2d6 100644 --- a/sql-files/item_db_re_etc.sql +++ b/sql-files/item_db_re_etc.sql @@ -3501,6 +3501,10 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (25703,'M_M_Overpower','Modification Module (Overpower)','Card',20,10,'autobonus "{ bonus bStr,50; bonus2 bAddClass,Class_All,15; bonus bMatkRate,-15; }",20,10000,BF_WEAPON; /* unknown rate */'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (25704,'M_M_Fatal_Flash','Modification Module (Fatal Flash)','Card',20,10,'autobonus "{ bonus bStr,50; bonus bCritAtkRate,10; bonus2 bHPLossRate,300,1000; }",20,10000,BF_WEAPON; /* unknown rate */'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (25705,'M_M_Lucky_Strike','Modification Module (Lucky Strike)','Card',20,10,'autobonus "{ bonus bLuk,50; bonus2 bMagicAtkEle,Ele_All,10; bonus2 bHPLossRate,300,1000; }",20,10000,BF_MAGIC; /* unknown rate */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (25864,'aegis_25864','Sealed Temporal Circlet','Etc',100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (25865,'aegis_25865','Temperal Gemstone','Etc',10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (25866,'aegis_25866','Temporal Spell','Etc',10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (25867,'aegis_25867','Temporal Fragment','Etc',true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (25892,'aegis_25892','Deep Sea Shell','Etc',10,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (25893,'aegis_25893','Deep Sea Fish\'s Tail','Etc',10,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (25894,'aegis_25894','Rotten Deep Sea Fish','Etc',10,true); @@ -3684,6 +3688,14 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`script`) VALUES (27361,'Contaminated_Wanderer_Card','Contaminated Wanderer Card','Card',20,10,true,'bonus2 bAddSize,Size_Large,30; bonus2 bAddSize,Size_Medium,30;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`script`) VALUES (27362,'Contaminated_Spider_Queen_Card','Contaminated Spider Queen Card','Card',20,10,true,'bonus2 bSubEle,Ele_All,-30; bonus2 bMagicAtkEle,Ele_Earth,100; bonus2 bMagicAtkEle,Ele_Water,100;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`script`) VALUES (27363,'Contaminated_Dark_Lord_Card','Contaminated Dark Lord Card','Card',20,10,true,'bonus bAspd,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_garment`,`script`) VALUES (27381,'aegis_27381','Himmelmez\'s Phantom Card','Card',10,true,'bonus2 bMagicAtkEle,Ele_Neutral,100;\nbonus2 bMagicAtkEle,Ele_Holy,100;\nbonus2 bSubEle,Ele_All,-30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_garment`,`script`) VALUES (27382,'aegis_27382','Prime Corruption Root Card','Card',10,true,'bonus bMatk,30;\nbonus bBaseAtk,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_shoes`,`script`) VALUES (27383,'aegis_27383','Amdarais\'s Phantom Card','Card',10,true,'bonus bMaxHPrate,10;\nbonus bMaxSPrate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_hand`,`script`) VALUES (27384,'aegis_27384','Mutated White Knight Card','Card',10,true,'bonus bMatk,15;\nbonus2 bMagicAddSize,Size_Medium,20;\nbonus2 bMagicAddSize,Size_Large,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_left_hand`,`script`) VALUES (27385,'aegis_27385','Mutated Khalitzburg Card','Card',10,true,'bonus bMdef,10;\nbonus2 bSubSize,Size_Medium,25;\nbonus2 bMagicSubSize,Size_Medium,25;\nbonus2 bSubSize,Size_Large,25;\nbonus2 bMagicSubSize,Size_Large,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_left_accessory`,`script`) VALUES (27386,'aegis_27386','Cursed Raydric Card','Card',10,true,'bonus2 bAddRace,RC_Undead,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`script`) VALUES (27387,'aegis_27387','Cursed Raydric Archer Card','Card',10,true,'bonus2 bAddRace,RC_Demon,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`script`) VALUES (27388,'aegis_27388','Cursed Servant Card','Card',10,true,true,'bonus bHPrecovRate,30;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29000,'Rune_of_Intellect_Lv_1','Rune of Intellect Lv 1','Card',20,'.@r = getrefine(); if (.@r>=7) { bonus bInt,5; } if (.@r>=10) { bonus bMatkRate,5; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29001,'Rune_of_Intellect_Lv_2','Rune of Intellect Lv 2','Card',20,'.@r = getrefine(); if (.@r>=7) { bonus bInt,6; } if (.@r>=11) { bonus bInt,1; bonus bMatkRate,7; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`script`) VALUES (29002,'Rune_of_Intellect_Lv_3','Rune of Intellect Lv 3','Card',20,'.@r = getrefine(); if (.@r>=7) { bonus bInt,7; } if (.@r>=12) { bonus bInt,1; bonus bMatkRate,8; } if (.@r>=13) { bonus bInt,1; bonus bMatkRate,2; }'); @@ -3914,6 +3926,24 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29605,'Chen_Memory','Chen\'s Memory','Card',20); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29606,'Trentini_Memory','Trentini\'s Memory','Card',20); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (29607,'Alphoccio_Memory','Alphoccio\'s Memory','Card',20); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29672,'aegis_29672','Temporal Jewel (STR) Lv 1','Card','.@r = getequiprefinerycnt(EQI_HEAD_TOP);\nbonus bBaseAtk,2*(.@r/2);\nbonus bHit,3*(.@r/2);\nbonus2 bAddClass,Class_All,(.@r/5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29673,'aegis_29673','Temporal Jewel (STR) Lv 2','Card','.@r = getequiprefinerycnt(EQI_HEAD_TOP);\nbonus bBaseAtk,4*(.@r/2);\nbonus bHit,5*(.@r/2);\nbonus2 bAddClass,Class_All,2*(.@r/5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29674,'aegis_29674','Temporal Jewel (STR) Lv 3','Card','.@r = getequiprefinerycnt(EQI_HEAD_TOP);\nbonus bBaseAtk,7*(.@r/2);\nbonus bHit,7*(.@r/2);\nbonus2 bAddClass,Class_All,3*(.@r/5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29675,'aegis_29675','Temporal Jewel (AGI) Lv 1','Card','.@r = getequiprefinerycnt(EQI_HEAD_TOP);\nbonus bAspdRate,(.@r/2);\nbonus bFlee,4*(.@r/2);\nbonus bAspd,(.@r/5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29676,'aegis_29676','Temporal Jewel (AGI) Lv 2','Card','.@r = getequiprefinerycnt(EQI_HEAD_TOP);\nbonus bAspdRate,3*(.@r/2);\nbonus bFlee,5*(.@r/2);\nbonus bAspd,(.@r/5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29677,'aegis_29677','Temporal Jewel (AGI) Lv 3','Card','.@r = getequiprefinerycnt(EQI_HEAD_TOP);\nbonus bAspdRate,5*(.@r/2);\nbonus bFlee,7*(.@r/2);\nbonus bAspd,(.@r/5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29678,'aegis_29678','Temporal Jewel (VIT) Lv 1','Card','.@r = getequiprefinerycnt(EQI_HEAD_TOP);\nbonus bDef,5*(.@r/2);\nbonus bMaxHP,200*(.@r/2);\nbonus bMaxHPrate,(.@r/5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29679,'aegis_29679','Temporal Jewel (VIT) Lv 2','Card','.@r = getequiprefinerycnt(EQI_HEAD_TOP);\nbonus bDef,7*(.@r/2);\nbonus bMaxHP,300*(.@r/2);\nbonus bMaxHPrate,2*(.@r/5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29680,'aegis_29680','Temporal Jewel (VIT) Lv 3','Card','.@r = getequiprefinerycnt(EQI_HEAD_TOP);\nbonus bDef,10*(.@r/2);\nbonus bMaxHP,500*(.@r/2);\nbonus bMaxHPrate,3*(.@r/5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29681,'aegis_29681','Temporal Jewel (INT) Lv 1','Card','.@r = getequiprefinerycnt(EQI_HEAD_TOP);\nbonus bHealPower,(.@r/2);\nbonus bMatk,2*(.@r/2);\nbonus bMatkRate,(.@r/5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29682,'aegis_29682','Temporal Jewel (INT) Lv 2','Card','.@r = getequiprefinerycnt(EQI_HEAD_TOP);\nbonus bHealPower,3*(.@r/2);\nbonus bMatk,4*(.@r/2);\nbonus bMatkRate,2*(.@r/5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29683,'aegis_29683','Temporal Jewel (INT) Lv 3','Card','.@r = getequiprefinerycnt(EQI_HEAD_TOP);\nbonus bHealPower,5*(.@r/2);\nbonus bMatk,7*(.@r/2);\nbonus bMatkRate,3*(.@r/5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29684,'aegis_29684','Temporal Jewel (DEX) Lv 1','Card','.@r = getequiprefinerycnt(EQI_HEAD_TOP);\nbonus2 bWeaponDamageRate,W_BOW,(.@r/2);\nbonus bHit,2*(.@r/2);\nbonus2 bAddClass,Class_All,(.@r/5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29685,'aegis_29685','Temporal Jewel (DEX) Lv 2','Card','.@r = getequiprefinerycnt(EQI_HEAD_TOP);\nbonus2 bWeaponDamageRate,W_BOW,2*(.@r/2);\nbonus bHit,5*(.@r/2);\nbonus2 bAddClass,Class_All,2*(.@r/5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29686,'aegis_29686','Temporal Jewel (DEX) Lv 3','Card','.@r = getequiprefinerycnt(EQI_HEAD_TOP);\nbonus2 bWeaponDamageRate,W_BOW,3*(.@r/2);\nbonus bHit,7*(.@r/2);\nbonus2 bAddClass,Class_All,3*(.@r/5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29687,'aegis_29687','Temporal Jewel (LUK) Lv 1','Card','.@r = getequiprefinerycnt(EQI_HEAD_TOP);\nbonus bCritAtkRate,3*(.@r/2);\nbonus bCritical,(.@r/2);\nbonus2 bAddClass,Class_All,(.@r/5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29688,'aegis_29688','Temporal Jewel (LUK) Lv 2','Card','.@r = getequiprefinerycnt(EQI_HEAD_TOP);\nbonus bCritAtkRate,6*(.@r/2);\nbonus bCritical,2*(.@r/2);\nbonus2 bAddClass,Class_All,2*(.@r/5);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (29689,'aegis_29689','Temporal Jewel (LUK) Lv 3','Card','.@r = getequiprefinerycnt(EQI_HEAD_TOP);\nbonus bCritAtkRate,9*(.@r/2);\nbonus bCritical,3*(.@r/2);\nbonus2 bAddClass,Class_All,3*(.@r/5);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`script`) VALUES (31006,'LoVA_Hades_Card','LoVA Hades Card','Card',20,10,true,'bonus2 bSubRace,RC_Undead,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_armor`,`script`) VALUES (31007,'LoVA_Realization_Hades_Card','LoVA Realization Hades Card','Card',20,10,true,'bonus bDefEle,Ele_Undead; bonus2 bSubRace,RC_Undead,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`script`) VALUES (31008,'LoVA_Lulu_Card','LoVA Lulu Card','Card',20,10,true,'bonus2 bHPRegenRate,BaseLevel,10000; if(getrefine()>=7) { bonus bAtk,6*(readparam(bStr)/60); bonus bMaxHPrate,readparam(bStr)/60; }'); From fe68c66706a7bc8ae34ce6ca6c29690246363330 Mon Sep 17 00:00:00 2001 From: Atemo Date: Thu, 29 Oct 2020 23:25:58 +0100 Subject: [PATCH 41/45] Added items from KRO patch july 2019 (dungeons update) (#5493) --- db/re/item_combo_db.txt | 38 ++ db/re/item_db_equip.yml | 1034 ++++++++++++++++++++++++++++++++ db/re/item_db_etc.yml | 481 ++++++++++++++- sql-files/item_db_re_equip.sql | 37 ++ sql-files/item_db_re_etc.sql | 50 ++ 5 files changed, 1639 insertions(+), 1 deletion(-) diff --git a/db/re/item_combo_db.txt b/db/re/item_combo_db.txt index 0cfb058776..dce14d176e 100644 --- a/db/re/item_combo_db.txt +++ b/db/re/item_combo_db.txt @@ -1518,6 +1518,7 @@ 22238:820001,{ bonus bDex,10; bonus bLongAtkRate,5; } 28763:510022,{ .@r = getequiprefinerycnt(EQI_HAND_R) + getequiprefinerycnt(EQI_HAND_L); bonus bBaseAtk,15*(.@r/3); bonus2 bAddClass,Class_All,3*(.@r/5); if (.@r>=14){ bonus2 bSkillAtk,"KO_JYUMONJIKIRI",30; bonus2 bSkillCooldown,"KO_JYUMONJIKIRI",-2000; } if (.@r>=16){ skill "OB_ZANGETSU",getskilllv("KG_KAGEHUMI"); skill "KG_KAGEHUMI",getskilllv("OB_ZANGETSU"); } if (.@r>=18){ bonus2 bAddEle,Ele_All,15; } if (.@r>=20){ bonus2 bSkillAtk,"KO_JYUMONJIKIRI",25; } } 1870:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); autobonus "{ bonus bLongAtkRate,10; }",1,10000,BF_WEAPON; bonus bBaseAtk,30; if (.@sum>=30) { bonus2 bAddRace,RC_Undead,20; bonus2 bAddEle,Ele_Holy,20; } } +15391:20946:22208,{ .@sum = getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT); bonus2 bAddClass,Class_All,5; bonus bMdef,8; bonus bDef,50; bonus bBaseAtk,15*(readparam(bStr)/15); autobonus2 "{ bonus2 bAddClass,Class_All,10; if (readparam(bStr)>=120) { bonus2 bAddClass,Class_All,15; } }",1+(readparam(bStr)>=120),10000,BF_MAGIC|BF_WEAPON; if (.@sum>=33) { bonus bAspdRate,20; bonus bDelayrate,-25; } } 2060:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); autobonus "{ bonus2 bMagicAtkEle,Ele_Earth,10; bonus2 bMagicAtkEle,Ele_Wind,10; }",1,10000,BF_MAGIC; bonus bMatk,30; if (.@sum>=30) { bonus2 bMagicAddEle,Ele_Undead,20; bonus2 bMagicAddEle,Ele_Holy,20; } } 13347:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); autobonus "{ bonus bLongAtkRate,10; }",1,10000,BF_WEAPON; bonus bBaseAtk,30; if (.@sum>=30) { bonus2 bAddRace,RC_Undead,20; bonus2 bAddEle,Ele_Holy,20; } } 18191:15388:15389,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT); autobonus "{ bonus bLongAtkRate,10; }",1,10000,BF_WEAPON; bonus bBaseAtk,30; if (.@sum>=30) { bonus2 bAddEle,Ele_Undead,20; bonus2 bAddEle,Ele_Holy,20; } } @@ -1573,3 +1574,40 @@ 610012:28509,{ bonus2 bAddClass,Class_All,5; if (getequiprefinerycnt(EQI_HAND_R)>=9) { bonus bCritAtkRate,20; } if (getequiprefinerycnt(EQI_HAND_R)>=11) { autobonus3 "{ bonus bCritical,15; }",1000,30000,"GC_VENOMIMPRESS"; } } 630006:450145,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR); bonus2 bAddClass,Class_All,5; if (.@sum>=7) { bonus bDelayrate,-5; } if (.@sum>=18) { bonus2 bSkillAtk,"LG_OVERBRAND",20; } if (.@sum>=22) { autobonus3 "{ bonus2 bAddRace,RC_Fish,50; bonus2 bAddRace,RC_Demon,50; bonus bBaseAtk,50; }",1000,10000,"LG_OVERBRAND"; } } 630007:450146,{ .@sum = getequiprefinerycnt(EQI_HAND_R)+getequiprefinerycnt(EQI_ARMOR); bonus bBaseAtk,30; if (.@sum>=7) { bonus bLongAtkRate,5; } if (.@sum>=18) { bonus2 bSkillAtk,"LK_SPIRALPIERCE",20; } if (.@sum>=22) { bonus2 bAddEle,Ele_Water,10; bonus2 bAddRace,RC_Fish,15; } } +15392:20946:22208,{ .@sum = getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT); bonus bLongAtkRate,7; bonus bMdef,8; bonus bDef,50; bonus bAspdRate,4*(readparam(bAgi)/15); autobonus2 "{ bonus bLongAtkRate,10; if (readparam(bAgi)>=120) { bonus bLongAtkRate,10; } }",1+(readparam(bAgi)>=120),10000,BF_MAGIC|BF_WEAPON; if (.@sum>=33) { bonus bAspdRate,20; bonus bDelayrate,-25; } } +15393:20946:22208,{ .@sum = getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT); bonus bMaxHPrate,10; bonus bMdef,15; bonus bDef,80; bonus2 bSubSize,Size_Medium,(readparam(bVit)/30); bonus2 bMagicSubSize,Size_Medium,(readparam(bVit)/30); bonus2 bSubSize,Size_Large,(readparam(bVit)/30); bonus2 bMagicSubSize,Size_Large,(readparam(bVit)/30); autobonus2 "{ bonus2 bSubSize,Size_All,7; bonus2 bMagicSubSize,Size_All,7; if (readparam(bVit)>=120) { bonus2 bSubSize,Size_All,5; bonus2 bMagicSubSize,Size_All,5; } }",1+(readparam(bVit)>=120),10000,BF_MAGIC|BF_WEAPON; if (.@sum>=33) { bonus bAspdRate,20; bonus bDelayrate,-25; } } +15394:20946:22208,{ .@sum = getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT); bonus bMatkRate,5; bonus2 bAddClass,Class_All,5; bonus bMdef,8; bonus bDef,50; bonus bAspdRate,3*(readparam(bDex)/15); bonus bVariableCastrate,-3*(readparam(bDex)/15); autobonus2 "{ bonus bFlee2,10; bonus bFlee,50; if (readparam(bDex)>=120) { bonus bFlee2,5; bonus bFlee,30; } }",1+(readparam(bDex)>=120),10000,BF_MAGIC|BF_WEAPON; if (.@sum>=33) { bonus bAspdRate,15; bonus bVariableCastrate,-15; bonus bDelayrate,-25; } } +15395:20946:22208,{ .@sum = getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT); bonus bMatkRate,7; bonus bMdef,8; bonus bDef,50; bonus bHealPower,15; bonus bVariableCastrate,-4*(readparam(bInt)/15); autobonus2 "{ bonus2 bMagicAtkEle,Ele_All,20; bonus bHealPower,40; if (readparam(bInt)>=120) { bonus2 bMagicAtkEle,Ele_All,10; } }",1+(readparam(bInt)>=120),10000,BF_MAGIC|BF_WEAPON; if (.@sum>=33) { bonus bVariableCastrate,-20; bonus bDelayrate,-25; } } +15396:20946:22208,{ .@sum = getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_SHOES)+getequiprefinerycnt(EQI_GARMENT); bonus2 bAddClass,Class_All,5; bonus bMdef,8; bonus bDef,50; bonus bCritAtkRate,3*(readparam(bLuk)/15); bonus bCritical,2*(readparam(bLuk)/15); autobonus2 "{ bonus bCritAtkRate,10; bonus2 bAddClass,Class_All,7; if (readparam(bLuk)>=120) { bonus bCritAtkRate,10; bonus2 bAddClass,Class_All,7; } }",1+(readparam(bLuk)>=120),10000,BF_MAGIC|BF_WEAPON; if (.@sum>=33) { bonus bAspdRate,20; bonus bDelayrate,-25; } } +15397:20947:22209,{ .@sum = getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_SHOES); bonus bMdef,15; bonus bDef,30; bonus bStr,8; bonus2 bSubRace,RC_Angel,15; bonus2 bSubRace,RC_Demon,15; if (.@sum>=27) { bonus2 bAddClass,Class_All,10; bonus bDelayrate,-20; bonus bFixedCastrate,-20; } } +15398:20947:22209,{ .@sum = getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_SHOES); bonus bMdef,15; bonus bDef,30; bonus bAgi,8; bonus2 bSubRace,RC_Angel,15; bonus2 bSubRace,RC_Demon,15; if (.@sum>=27) { bonus bLongAtkRate,10; bonus bDelayrate,-20; bonus bFixedCastrate,-20; } } +15399:20947:22209,{ .@sum = getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_SHOES); bonus bMdef,20; bonus bDef,50; bonus bVit,8; bonus2 bSubRace,RC_Angel,20; bonus2 bSubRace,RC_Demon,20; if (.@sum>=27) { bonus bMatkRate,4; bonus2 bAddClass,Class_All,4; bonus bDelayrate,-20; bonus bFixedCastrate,-20; } } +15400:20947:22209,{ .@sum = getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_SHOES); bonus bMdef,15; bonus bDef,30; bonus bDex,8; bonus2 bSubRace,RC_Angel,15; bonus2 bSubRace,RC_Demon,15; if (.@sum>=27) { bonus bMatkRate,7; bonus2 bAddClass,Class_All,7; bonus bDelayrate,-20; bonus bFixedCastrate,-20; } } +15401:20947:22209,{ .@sum = getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_SHOES); bonus bMdef,15; bonus bDef,30; bonus bInt,8; bonus2 bSubRace,RC_Angel,15; bonus2 bSubRace,RC_Demon,15; if (.@sum>=27) { bonus bMatkRate,10; bonus bDelayrate,-20; bonus bFixedCastrate,-20; } } +15402:20947:22209,{ .@sum = getequiprefinerycnt(EQI_ARMOR)+getequiprefinerycnt(EQI_GARMENT)+getequiprefinerycnt(EQI_SHOES); bonus bMdef,15; bonus bDef,30; bonus bLuk,8; if (.@sum>=27) { bonus2 bAddClass,Class_All,10; bonus bDelayrate,-20; bonus bFixedCastrate,-20; } } +32248:32250,{ bonus bAspdRate,15; bonus bMaxHPrate,10; } +// 32248:?,{ bonus bFixedCast,-300; bonus bDelayrate,-7; bonus2 bSubSize,Size_All,3; } +32248:32251,{ bonus bVariableCastrate,-15; bonus bMaxHPrate,10; } +32249:32250,{ bonus bAspdRate,15; bonus bMaxHPrate,10; } +// 32249:?,{ bonus bFixedCast,-300; bonus bDelayrate,-7; bonus2 bMagicSubSize,Size_All,3; } +32249:32251,{ bonus bVariableCastrate,-15; bonus bMaxHPrate,10; } +300001:4062,{ bonus2 bAddEle,Ele_Poison,15; } +300002:4334,{ bonus bLongAtkDef,10; bonus bMaxHPrate,5; } +300003:4337,{ bonus bBaseAtk,10; bonus bBaseAtk,getequiprefinerycnt(EQI_SHOES); } +300004:4339,{ bonus bDef,20; bonus bDef,3*getequiprefinerycnt(EQI_GARMENT); } +300005:4335,{ bonus2 bSkillAtk,"SO_EARTHGRAVE",getequiprefinerycnt(EQI_SHOES); bonus2 bSkillAtk,"SO_EARTHGRAVE",10; } +300006:4336,{ bonus2 bMagicAtkEle,Ele_Neutral,30; } +300008:4406,{ .@r = getequiprefinerycnt(EQI_HAND_R); bonus2 bMagicAddRace,RC_Demon,3*(.@r/2); } +300013:4407,{ bonus2 bAddClass,Class_All,10; bonus bMaxHPrate,5; } +300014:4407,{ bonus2 bAddClass,Class_All,5; bonus bMaxHPrate,10; } +300015:4378,{ .@r = getequiprefinerycnt(EQI_SHOES); bonus bMaxHPrate,4*(.@r/4); bonus bMaxSPrate,4*(.@r/4); } +300016:4387,{ bonus bCritAtkRate,2; } +300017:4005,{ bonus2 bAddEle,Ele_Dark,15; } +300018:4085,{ bonus2 bAddEle,Ele_Holy,15; } +300019:300020,{ bonus2 bAddRace,RC_Dragon,5; bonus2 bAddRace,RC_Brute,5; } +310076:15397,{ bonus2 bAddRace,RC_All,12; bonus2 bAddClass,Class_All,5; } +310077:15398,{ bonus bPerfectHitRate,5; bonus bAspd,1; } +310078:15399,{ bonus bDelayrate,-5; bonus bMaxHPrate,5; } +310079:15400,{ bonus bFixedCast,-300; } +310080:15401,{ bonus2 bMagicAtkEle,Ele_All,12; bonus bVariableCastrate,-10; } +310081:15402,{ bonus2 bAddSize,Size_All,12; bonus bCritical,10; } diff --git a/db/re/item_db_equip.yml b/db/re/item_db_equip.yml index 4074e672f8..ba391614ea 100644 --- a/db/re/item_db_equip.yml +++ b/db/re/item_db_equip.yml @@ -16221,6 +16221,41 @@ Body: Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,4*.@r; bonus bLongAtkRate,10; if (.@r >= 9) bonus2 bSkillAtk,"SR_KNUCKLEARROW",40; if (.@r >= 11) bonus bDelayrate,-7; + - Id: 1867 + AegisName: aegis_1867 + Name: Safety Knuckle + Type: Weapon + SubType: Knuckle + Weight: 1800 + Attack: 210 + Range: 1 + Slots: 2 + Jobs: + Monk: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); + bonus2 bAddClass,Class_All,10; + bonus2 bSkillAtk,"SR_KNUCKLEARROW",10; + if (.@r>=7) { + bonus bAspdRate,15; + bonus bBaseAtk,40; + } + if (.@r>=9) { + bonus2 bSkillAtk,"SR_KNUCKLEARROW",15; + autobonus "{ bonus2 bAddSize,Size_All,15; }",1,10000,BF_WEAPON; + } + if (.@r>=11) { + bonus bDelayrate,-20; + } - Id: 1870 AegisName: aegis_1870 Name: Royal Knuckle @@ -54999,6 +55034,39 @@ Body: Refineable: true Script: | .@r = getrefine(); bonus bLongAtkRate,2*(.@r/3); bonus bBaseAtk,10*(.@r/2); if (.@r >= 7) { bonus2 bSkillAtk,"KO_HUUMARANKA",30; if (.@r >= 9) { bonus2 bSkillCooldown,"KO_HUUMARANKA",-1000; if (.@r >= 11) { bonus2 bAddEle,Ele_Fire,15; bonus2 bAddEle,Ele_Dark,15; bonus2 bAddRace,RC_Undead,30; bonus2 bAddRace,RC_Demon,30; } } } + - Id: 13346 + AegisName: aegis_13346 + Name: Grinder Huuma Shuriken + Type: Weapon + SubType: Huuma + Weight: 1800 + Attack: 280 + Range: 1 + Slots: 2 + Jobs: + Ninja: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Script: | + .@r = getrefine(); + bonus2 bAddClass,Class_All,15; + bonus bUnbreakableWeapon; + bonus2 bSkillAtk,"KO_HUUMARANKA",15; + if (.@r>=7) { + bonus bVariableCastrate,-15; + bonus bBaseAtk,60; + } + if (.@r>=9) { + bonus2 bSkillAtk,"KO_HUUMARANKA",20; + autobonus "{ bonus2 bAddSize,Size_All,20; }",1,10000,BF_WEAPON; + } + if (.@r>=11) { + bonus bDelayrate,-20; + bonus2 bSkillCooldown,"KO_HUUMARANKA",-1000; + } - Id: 13347 AegisName: aegis_13347 Name: Royal Huuma Shuriken @@ -59914,6 +59982,282 @@ Body: Refineable: true Script: | .@r = getrefine(); bonus bHealPower,5; bonus bDelayrate,-10; bonus bMaxHPrate,5; if (.@r>=7) { bonus bMaxHPrate,5; bonus bHealPower,5; } if (.@r>=8) { bonus bMaxHPrate,5; bonus bHealPower,10; bonus bUseSPrate,-10; bonus2 bResEff,Eff_Sleep,10000; } if (.@r>=9) { bonus bMaxHPrate,5; bonus bHealPower,10; } + - Id: 15391 + AegisName: aegis_15391 + Name: Red Dragon Plate + Type: Armor + Weight: 1200 + Defense: 110 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); + bonus bMaxHPrate,15; + bonus bMaxSPrate,10; + bonus bStr,12; + bonus2 bAddClass,Class_All,2*(.@r/2); + bonus2 bAddRace,RC_Dragon,7*(.@r/3); + if (.@r>=11) { + bonus bFixedCast,-200; + bonus2 bAddSize,Size_Medium,10; + bonus2 bAddSize,Size_Large,10; + } + - Id: 15392 + AegisName: aegis_15392 + Name: Green Dragon Plate + Type: Armor + Weight: 1200 + Defense: 110 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); + bonus bMaxHPrate,10; + bonus bMaxSPrate,10; + bonus bAgi,12; + bonus bLongAtkRate,2*(.@r/2); + bonus2 bAddRace,RC_Dragon,7*(.@r/3); + if (.@r>=11) { + bonus bFixedCast,-200; + bonus2 bAddSize,Size_Medium,10; + bonus2 bAddSize,Size_Large,10; + } + - Id: 15393 + AegisName: aegis_15393 + Name: Gold Dragon Plate + Type: Armor + Weight: 1200 + Defense: 110 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); + bonus bMaxHPrate,20; + bonus bMaxSPrate,5; + bonus bVit,12; + bonus bAspdRate,3*(.@r/2); + bonus bVariableCastrate,-3*(.@r/2); + bonus2 bAddRace,RC_Dragon,7*(.@r/3); + bonus2 bMagicAddRace,RC_Dragon,7*(.@r/3); + if (.@r>=11) { + bonus bFixedCast,-200; + bonus2 bAddSize,Size_Medium,6; + bonus2 bMagicAddSize,Size_Medium,6; + bonus2 bAddSize,Size_Large,6; + bonus2 bMagicAddSize,Size_Large,6; + } + - Id: 15394 + AegisName: aegis_15394 + Name: Purple Dragon Plate + Type: Armor + Weight: 1200 + Defense: 110 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); + bonus bMaxHPrate,15; + bonus bMaxSPrate,10; + bonus bDex,12; + bonus bAspdRate,4*(.@r/2); + bonus bVariableCastrate,-4*(.@r/2); + bonus2 bAddRace,RC_Dragon,8*(.@r/3); + bonus2 bMagicAddRace,RC_Dragon,8*(.@r/3); + if (.@r>=11) { + bonus bFixedCast,-200; + bonus2 bAddSize,Size_Medium,8; + bonus2 bMagicAddSize,Size_Medium,8; + bonus2 bAddSize,Size_Large,8; + bonus2 bMagicAddSize,Size_Large,8; + } + - Id: 15395 + AegisName: aegis_15395 + Name: Blue Dragon Plate + Type: Armor + Weight: 1200 + Defense: 110 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); + bonus bMaxHPrate,5; + bonus bMaxSPrate,20; + bonus bInt,12; + bonus bMatkRate,2*(.@r/2); + bonus bHealPower,4*(.@r/2); + bonus2 bMagicAddRace,RC_Dragon,7*(.@r/3); + if (.@r>=11) { + bonus bFixedCast,-200; + bonus2 bMagicAddSize,Size_Medium,10; + bonus2 bMagicAddSize,Size_Large,10; + } + - Id: 15396 + AegisName: aegis_15396 + Name: Silver Dragon Plate + Type: Armor + Weight: 1200 + Defense: 110 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); + bonus bMaxHPrate,15; + bonus bMaxSPrate,15; + bonus bLuk,12; + bonus bCritAtkRate,4*(.@r/2); + bonus bCritical,2*(.@r/2); + bonus2 bAddRace,RC_Dragon,7*(.@r/3); + if (.@r>=11) { + bonus bFixedCast,-200; + bonus2 bAddSize,Size_Medium,10; + bonus2 bAddSize,Size_Large,10; + } + - Id: 15397 + AegisName: aegis_15397 + Name: STR Soutane + Type: Armor + Weight: 800 + Defense: 100 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); + bonus bMaxHPrate,10; + bonus bMaxSPrate,10; + bonus bAspdRate,10; + bonus2 bAddClass,Class_All,3*(.@r/2); + bonus bStr,5*(.@r/3); + bonus2 bAddRace,RC_Angel,8*(.@r/4); + bonus2 bAddRace,RC_Demon,8*(.@r/4); + - Id: 15398 + AegisName: aegis_15398 + Name: AGI Soutane + Type: Armor + Weight: 800 + Defense: 100 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); + bonus bMaxHPrate,10; + bonus bMaxSPrate,10; + bonus bAspdRate,10; + bonus bLongAtkRate,3*(.@r/2); + bonus bAgi,5*(.@r/3); + bonus2 bAddRace,RC_Angel,8*(.@r/4); + bonus2 bAddRace,RC_Demon,8*(.@r/4); + - Id: 15399 + AegisName: aegis_15399 + Name: VIT Soutane + Type: Armor + Weight: 800 + Defense: 100 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); + bonus bMaxHPrate,15; + bonus bMaxSPrate,5; + bonus bAspdRate,7; + bonus bVariableCastrate,-7; + bonus bMaxHPrate,2*(.@r/2); + bonus bVit,5*(.@r/3); + bonus2 bAddRace,RC_Angel,10*(.@r/4); + bonus2 bMagicAddRace,RC_Angel,10*(.@r/4); + bonus2 bAddRace,RC_Demon,10*(.@r/4); + bonus2 bMagicAddRace,RC_Demon,10*(.@r/4); + - Id: 15400 + AegisName: aegis_15400 + Name: DEX Soutane + Type: Armor + Weight: 800 + Defense: 100 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); + bonus bMaxHPrate,10; + bonus bMaxSPrate,10; + bonus bAspdRate,10; + bonus bVariableCastrate,-10; + bonus bMatkRate,(.@r/2); + bonus2 bAddClass,Class_All,(.@r/2); + bonus bDex,5*(.@r/3); + bonus2 bAddRace,RC_Angel,6*(.@r/4); + bonus2 bMagicAddRace,RC_Angel,6*(.@r/4); + bonus2 bAddRace,RC_Demon,6*(.@r/4); + bonus2 bMagicAddRace,RC_Demon,6*(.@r/4); + - Id: 15401 + AegisName: aegis_15401 + Name: INT Soutane + Type: Armor + Weight: 800 + Defense: 100 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); + bonus bMaxHPrate,5; + bonus bMaxSPrate,15; + bonus bVariableCastrate,-10; + bonus bMatkRate,3*(.@r/2); + bonus bInt,5*(.@r/3); + bonus2 bMagicAddRace,RC_Angel,8*(.@r/4); + bonus2 bMagicAddRace,RC_Demon,8*(.@r/4); + - Id: 15402 + AegisName: aegis_15402 + Name: LUK Soutane + Type: Armor + Weight: 800 + Defense: 100 + Slots: 1 + Locations: + Armor: true + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); + bonus bMaxHPrate,10; + bonus bMaxSPrate,10; + bonus bAspdRate,10; + bonus bCritAtkRate,4*(.@r/2); + bonus bCritical,3*(.@r/2); + bonus bLuk,5*(.@r/3); + bonus2 bAddRace,RC_Angel,8*(.@r/4); + bonus2 bAddRace,RC_Demon,8*(.@r/4); - Id: 15405 AegisName: Fafnir_Scale Name: Fafnir Scale @@ -61426,6 +61770,44 @@ Body: Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bBaseAtk,4*.@r; bonus bVariableCastrate,-10; if (.@r>=9) { bonus2 bSkillAtk,"MO_FINGEROFFENSIVE",50; bonus2 bSkillAtk,"MO_INVESTIGATE",50; } if (.@r>=11) bonus2 bAddClass,Class_All,10; + - Id: 16099 + AegisName: aegis_16099 + Name: Rubber Hammer + Type: Weapon + SubType: Mace + Weight: 1900 + Attack: 160 + Range: 1 + Slots: 2 + Jobs: + Priest: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); + bonus bMatk,180; + bonus bUnbreakableWeapon; + bonus bMatkRate,7; + bonus bHealPower,15; + bonus2 bSkillAtk,"AB_ADORAMUS",10; + if (.@r>=7) { + bonus2 bMagicAtkEle,Ele_Holy,7; + bonus bVariableCastrate,-10; + } + if (.@r>=9) { + bonus2 bSkillAtk,"AB_ADORAMUS",15; + autobonus "{ bonus2 bMagicAddSize,Size_All,15; }",1,5000,BF_MAGIC; + } + if (.@r>=11) { + bonus bDelayrate,-20; + } - Id: 18100 AegisName: Shooting_Star_C Name: Shooting Star @@ -62527,6 +62909,41 @@ Body: Refineable: true Script: | .@r = getrefine(); bonus bLongAtkRate,10+.@r; if (.@r>=9) bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",30; if (.@r>=11) bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; + - Id: 18190 + AegisName: aegis_18190 + Name: Bolt Shooter + Type: Weapon + SubType: Bow + Weight: 1700 + Attack: 210 + Range: 5 + Slots: 2 + Jobs: + Hunter: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Script: | + .@r = getrefine(); + bonus2 bAddClass,Class_All,10; + bonus2 bSkillAtk,"RA_AIMEDBOLT",10; + if (.@r>=7) { + bonus bVariableCastrate,-10; + bonus bBaseAtk,60; + } + if (.@r>=9) { + bonus2 bSkillAtk,"RA_AIMEDBOLT",15; + autobonus "{ bonus2 bAddSize,Size_All,20; }",1,10000,BF_WEAPON; + } + if (.@r>=11) { + bonus bDelayrate,-20; + } - Id: 18191 AegisName: aegis_18191 Name: Royal Knight Bow @@ -81333,6 +81750,54 @@ Body: Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,(300+(100*(.@r/2))); bonus bMaxHPRate,(2*(.@r/3)); if (.@r >= 7) { bonus2 bAddClass,Class_All,7; } if (.@r >= 9) { bonus bVariableCastrate,-10; } + - Id: 20946 + AegisName: aegis_20946 + Name: Dragon Scale Hood + Type: Armor + Weight: 500 + Defense: 23 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); + bonus bMdef,2; + bonus bDef,20; + bonus bHealPower2,15; + if (.@r>=7) { + bonus2 bSubRace,RC_Dragon,2; + } + if (.@r>=9) { + autobonus2 "{ bonus2 bHPRegenRate,2000,1000; }",1,3000,BF_MAGIC|BF_WEAPON; + } + if (.@r>=11) { + bonus2 bSubRace,RC_Dragon,3; + } + - Id: 20947 + AegisName: aegis_20947 + Name: Clergy's Manteau + Type: Armor + Weight: 450 + Defense: 40 + Slots: 1 + Locations: + Garment: true + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); + bonus bMaxSPrate,5; + bonus bMdef,10; + bonus bVariableCastrate,-10; + bonus2 bMagicAddRace,RC_Angel,(.@r/2); + bonus2 bMagicAddRace,RC_Demon,(.@r/2); + bonus2 bSubRace,RC_Angel,(.@r/3); + bonus2 bSubRace,RC_Demon,(.@r/3); + if (.@r>=7) { + bonus bVariableCastrate,-10; + } - Id: 20948 AegisName: Illusion_Morpheus's_Shawl Name: Illusion Morpheus's Shawl @@ -81970,6 +82435,41 @@ Body: Refineable: true Script: | .@r = getrefine(); bonus bLongAtkRate,.@r; bonus2 bAddClass,Class_All,5; if (.@r>=9) { bonus2 bSkillAtk,"LK_SPIRALPIERCE",30; bonus2 bSkillAtk,"RK_SONICWAVE",30; } if (.@r>=11) { bonus2 bSkillCooldown,"RK_SONICWAVE",-1500; } + - Id: 21054 + AegisName: aegis_21054 + Name: Claw Sword + Type: Weapon + SubType: 2hSword + Weight: 3500 + Attack: 300 + Range: 1 + Slots: 2 + Jobs: + Knight: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Script: | + .@r = getrefine(); + bonus bCritical,5; + bonus2 bAddClass,Class_All,15; + if (.@r>=7) { + bonus bCritAtkRate,25; + bonus bAspdRate,10; + } + if (.@r>=9) { + autobonus "{ bonus2 bAddSize,Size_All,20; }",1,5000,BF_WEAPON; + } + if (.@r>=11) { + bonus bDelayrate,-20; + bonus bCritical,7; + } - Id: 21055 AegisName: aegis_21055 Name: Guardian Knight Claymore @@ -83662,6 +84162,54 @@ Body: Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; bonus bMaxHPrate,3; bonus bMaxSPrate,3; skill "AL_INCAGI",1; bonus2 bSkillAtk,"LG_BANISHINGPOINT",10*getskilllv("LG_CANNONSPEAR"); bonus2 bAddClass,Class_All,4*getskilllv("CR_DEVOTION"); if (getskilllv("LG_INSPIRATION")>=5) bonus2 bSkillCooldown,"LG_SHIELDSPELL",-2000; bonus2 bIgnoreDefClassRate,Class_All,20*getskilllv("LG_PINPOINTATTACK"); if (.@r>=5) { bonus bMaxSPrate,7; bonus bMaxHPrate,7; bonus bLongAtkRate,5; } if (.@r>=7) { bonus bMaxSPrate,10; bonus bMaxHPrate,10; bonus bLongAtkRate,5; } + - Id: 22208 + AegisName: aegis_22208 + Name: Dragon Scale Boots + Type: Armor + Weight: 600 + Defense: 35 + Slots: 1 + Locations: + Shoes: true + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); + bonus bMaxSP,500; + bonus bAspdRate,7; + bonus bVariableCastrate,-7; + if (.@r>=7) { + bonus2 bSubRace,RC_Dragon,2; + } + if (.@r>=9) { + autobonus2 "{ bonus2 bSPRegenRate,500,1000; }",1,3000,BF_MAGIC|BF_WEAPON; + } + if (.@r>=11) { + bonus2 bSubRace,RC_Dragon,3; + } + - Id: 22209 + AegisName: aegis_22209 + Name: Clergy's Boots + Type: Armor + Weight: 400 + Defense: 35 + Slots: 1 + Locations: + Shoes: true + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); + bonus bMaxHPrate,5; + bonus bDef,30; + bonus bAspdRate,10; + bonus2 bAddRace,RC_Angel,(.@r/2); + bonus2 bAddRace,RC_Demon,(.@r/2); + bonus2 bSubRace,RC_Angel,(.@r/3); + bonus2 bSubRace,RC_Demon,(.@r/3); + if (.@r>=7) { + bonus bAspdRate,10; + } - Id: 22210 AegisName: Fluffy_Fish_Shoes Name: Fluffy Fish Shoes @@ -88802,6 +89350,45 @@ Body: Refineable: true Script: | .@r = getrefine(); bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Holy,5; if (.@r >= 9) { bonus2 bSkillAtk,"PR_MAGNUS",(.@r>=11) ? 50 : 30; bonus2 bSkillAtk,"AB_JUDEX",30; } + - Id: 26162 + AegisName: aegis_26162 + Name: Welding Wand + Type: Weapon + SubType: Staff + Weight: 1200 + Attack: 160 + Range: 1 + Slots: 2 + Jobs: + Mage: true + Sage: true + SoulLinker: true + Wizard: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); + bonus bMatk,200; + bonus bUnbreakableWeapon; + bonus2 bMagicAtkEle,Ele_Neutral,7; + bonus2 bMagicAtkEle,Ele_Fire,7; + bonus2 bMagicAtkEle,Ele_Water,7; + if (.@r>=7) { + bonus bVariableCastrate,-10; + bonus bMatk,40; + } + if (.@r>=9) { + bonus2 bMagicAtkEle,Ele_Neutral,8; + bonus2 bMagicAtkEle,Ele_Fire,8; + bonus2 bMagicAtkEle,Ele_Water,8; + autobonus "{ bonus2 bMagicAddSize,Size_All,15; }",1,10000,BF_MAGIC; + } + if (.@r>=11) { + bonus bDelayrate,-20; + } - Id: 26165 AegisName: aegis_26165 Name: Royal Cleric Staff @@ -88974,6 +89561,43 @@ Body: Refineable: true Script: | .@r = getrefine(); bonus bVariableCastrate,-10; bonus bLongAtkRate,.@r; if (.@r>=9) bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-1000; if (.@r>=11) bonus2 bSkillUseSPrate,"WM_SEVERE_RAINSTORM",20; + - Id: 26215 + AegisName: aegis_26215 + Name: Safety Whip + Type: Weapon + SubType: Whip + Weight: 1400 + Attack: 200 + Range: 2 + Slots: 2 + Jobs: + BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Gender: Female + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); + bonus bLongAtkRate,10; + bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",10; + if (.@r>=7) { + bonus bVariableCastrate,-10; + bonus bBaseAtk,40; + } + if (.@r>=9) { + bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15; + autobonus "{ bonus2 bAddSize,Size_All,15; }",1,10000,BF_WEAPON; + } + if (.@r>=11) { + bonus bDelayrate,-20; + bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; + } - Id: 26216 AegisName: aegis_26216 Name: Royal Whip @@ -89326,6 +89950,41 @@ Body: Refineable: true Script: | .@r = getrefine(); bonus bCritAtkRate,5; bonus bBaseAtk,4*.@r; if (.@r>=9) bonus2 bAddSize,Size_All,15; if (.@r>=11) { bonus bUnbreakableWeapon; bonus2 bAddClass,Class_All,7; } + - Id: 28045 + AegisName: aegis_28045 + Name: Bolt Crusher + Type: Weapon + SubType: Katar + Weight: 2000 + Attack: 300 + Range: 1 + Slots: 2 + Jobs: + Assassin: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Script: | + .@r = getrefine(); + bonus2 bAddClass,Class_All,10; + bonus2 bSkillAtk,"GC_ROLLINGCUTTER",10; + if (.@r>=7) { + bonus bAspdRate,10; + bonus bBaseAtk,60; + } + if (.@r>=9) { + bonus2 bSkillAtk,"GC_ROLLINGCUTTER",15; + autobonus "{ bonus2 bAddSize,Size_All,20; }",1,10000,BF_WEAPON; + } + if (.@r>=11) { + bonus bDelayrate,-20; + } - Id: 28046 AegisName: aegis_28046 Name: Royal Katar @@ -89669,6 +90328,42 @@ Body: Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,4*.@r; bonus bUnbreakableWeapon; bonus2 bSubSize,Size_Small,10; bonus2 bSubSize,Size_Medium,10; if (.@r>=9) { bonus2 bSkillCooldown,"NC_AXETORNADO",-1000; bonus2 bSkillCooldown,"NC_MAGMA_ERUPTION",-1000; } if (.@r>=11) bonus2 bSkillAtk,"NC_AXETORNADO",15; + - Id: 28140 + AegisName: aegis_28140 + Name: Saw Axe + Type: Weapon + SubType: 1hAxe + Weight: 5000 + Attack: 350 + Range: 1 + Slots: 2 + Jobs: + Blacksmith: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Script: | + .@r = getrefine(); + bonus2 bAddClass,Class_All,10; + bonus bUnbreakableWeapon; + bonus2 bSkillAtk,"NC_ARMSCANNON",10; + if (.@r>=7) { + bonus bVariableCastrate,-10; + bonus bBaseAtk,60; + } + if (.@r>=9) { + bonus bLongAtkRate,10; + autobonus "{ bonus2 bAddSize,Size_All,15; }",1,5000,BF_WEAPON; + } + if (.@r>=11) { + bonus bDelayrate,-20; + } - Id: 28141 AegisName: aegis_28141 Name: Guardian Knight Battle Axe @@ -92371,6 +93066,42 @@ Body: Refineable: true Script: | .@r = getrefine(); bonus bMatk,4*.@r; if (.@r>=9) .@val = 30; if (.@r>=11) { bonus2 bSkillAtk,"WZ_EARTHSPIKE",50; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",50; } bonus2 bSkillAtk,"MG_FIREBOLT",20+.@val; bonus2 bSkillAtk,"MG_COLDBOLT",20+.@val; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",20+.@val; + - Id: 28635 + AegisName: aegis_28635 + Name: Safety Manual + Type: Weapon + SubType: Book + Weight: 700 + Attack: 200 + Range: 1 + Slots: 2 + Jobs: + StarGladiator: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); + bonus bCritical,3; + bonus2 bAddClass,Class_All,10; + if (.@r>=7) { + bonus bAspdRate,10; + bonus bBaseAtk,40; + } + if (.@r>=9) { + autobonus "{ bonus2 bAddSize,Size_All,15; }",1,10000,BF_WEAPON; + bonus bCritAtkRate,15; + } + if (.@r>=11) { + bonus bCritAtkRate,15; + bonus bDelayrate,-20; + } - Id: 28636 AegisName: aegis_28636 Name: Royal Sage Book @@ -92887,6 +93618,79 @@ Body: Refineable: true Script: | .@r = getrefine(); bonus bMatk,4*.@r; bonus bMatkRate,5; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Fire,15; bonus2 bMagicAtkEle,Ele_Wind,15; bonus2 bMagicAtkEle,Ele_Water,15; bonus2 bMagicAtkEle,Ele_Earth,15; } if (.@r>=11) autobonus "{ bonus bMatk,100; bonus2 bMagicAddSize,Size_All,30; }",50,10000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; /* Unknow Rates and Specialeffect */ + - Id: 28771 + AegisName: aegis_28771 + Name: Metal Detector Mk47 + Type: Weapon + SubType: Dagger + Weight: 1000 + Attack: 200 + Range: 1 + Slots: 2 + Jobs: + Assassin: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); + bonus2 bAddClass,Class_All,10; + bonus2 bSkillAtk,"GC_CROSSIMPACT",10; + if (.@r>=7) { + bonus bAspdRate,10; + bonus bBaseAtk,40; + } + if (.@r>=9) { + bonus2 bSkillAtk,"GC_CROSSIMPACT",15; + autobonus "{ bonus2 bAddSize,Size_All,15; }",1,10000,BF_WEAPON; + } + if (.@r>=11) { + bonus bDelayrate,-20; + } + - Id: 28772 + AegisName: aegis_28772 + Name: Jewel Detector Mk47 + Type: Weapon + SubType: Dagger + Weight: 1000 + Attack: 190 + MagicAttack: 180 + Range: 1 + Slots: 2 + Jobs: + Rogue: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); + bonus bMatkRate,10; + bonus2 bMagicAtkEle,Ele_Neutral,7; + bonus2 bMagicAtkEle,Ele_Fire,7; + if (.@r>=7) { + bonus bAspdRate,10; + bonus bMatk,40; + } + if (.@r>=9) { + bonus2 bMagicAtkEle,Ele_Neutral,8; + bonus2 bMagicAtkEle,Ele_Fire,8; + autobonus "{ bonus2 bMagicAddSize,Size_All,15; }",1,10000,BF_WEAPON; + } + if (.@r>=11) { + bonus bDelayrate,-20; + } - Id: 28774 AegisName: aegis_28774 Name: Royal Gladius (R) @@ -98634,6 +99438,41 @@ Body: Refineable: true Script: | .@r = getrefine(); bonus bDelayrate,-.@r; bonus2 bAddClass,Class_All,5; if (.@r>=9) bonus2 bSkillAtk,"LG_CANNONSPEAR",20; if (.@r>=11) bonus2 bSkillAtk,"LG_OVERBRAND",20; + - Id: 32026 + AegisName: aegis_32026 + Name: Blocking Spear + Type: Weapon + SubType: 1hSpear + Weight: 3000 + Attack: 210 + Range: 3 + Slots: 2 + Jobs: + Crusader: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); + bonus2 bAddClass,Class_All,10; + bonus2 bSkillAtk,"LG_BANISHINGPOINT",10; + if (.@r>=7) { + bonus bAspdRate,10; + bonus bBaseAtk,40; + } + if (.@r>=9) { + bonus2 bSkillAtk,"LG_BANISHINGPOINT",15; + autobonus "{ bonus2 bAddSize,Size_All,15; }",1,10000,BF_WEAPON; + } + if (.@r>=11) { + bonus bDelayrate,-20; + } - Id: 32027 AegisName: aegis_32027 Name: Guardian Knight Spear @@ -98711,6 +99550,43 @@ Body: Refineable: true Script: | .@r = getrefine(); bonus bVariableCastrate,-10; bonus bLongAtkRate,.@r; if (.@r>=9) bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-1000; if (.@r>=11) bonus2 bSkillUseSPrate,"WM_SEVERE_RAINSTORM",20; + - Id: 32110 + AegisName: aegis_32110 + Name: Safety Lute + Type: Weapon + SubType: Musical + Weight: 1400 + Attack: 200 + Range: 1 + Slots: 2 + Jobs: + BardDancer: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Gender: Male + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); + bonus bLongAtkRate,10; + bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",10; + if (.@r>=7) { + bonus bVariableCastrate,-10; + bonus bBaseAtk,40; + } + if (.@r>=9) { + bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15; + autobonus "{ bonus2 bAddSize,Size_All,15; }",1,10000,BF_WEAPON; + } + if (.@r>=11) { + bonus bDelayrate,-20; + bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; + } - Id: 32111 AegisName: aegis_32111 Name: Royal Chello @@ -98993,6 +99869,56 @@ Body: EquipLevelMin: 100 Script: | bonus bMdef,10; bonus2 bSubRace,RC_Player_Human,3; + - Id: 32248 + AegisName: aegis_32248 + Name: Safety Pendant R + Type: Armor + Weight: 100 + Defense: 10 + Slots: 1 + Locations: + Right_Accessory: true + EquipLevelMin: 170 + Script: | + bonus bAspdRate,5; + bonus bAllStats,5; + - Id: 32249 + AegisName: aegis_32249 + Name: Safety Pendant B + Type: Armor + Weight: 100 + Defense: 10 + Slots: 1 + Locations: + Right_Accessory: true + EquipLevelMin: 170 + Script: | + bonus bAllStats,5; + bonus bVariableCastrate,-5; + - Id: 32250 + AegisName: aegis_32250 + Name: Safety Epaulet R + Type: Armor + Weight: 100 + Defense: 10 + Slots: 1 + Locations: + Left_Accessory: true + EquipLevelMin: 170 + Script: | + bonus2 bAddClass,Class_All,5; + - Id: 32251 + AegisName: aegis_32251 + Name: Safety Epaulet B + Type: Armor + Weight: 100 + Defense: 10 + Slots: 1 + Locations: + Left_Accessory: true + EquipLevelMin: 170 + Script: | + bonus bMatkRate,5; - Id: 32258 AegisName: Ring_of_Jupiter Name: Ring of Jupiter @@ -99074,6 +100000,38 @@ Body: Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,3*(.@r/3); if (.@r >= 7) { bonus bAspd,1; bonus2 bAddClass,Class_All,5; if (.@r >= 9) { bonus bCritAtkRate,20; if (.@r >= 11) { autobonus3 "{ bonus bCritical,20; bonus bLongAtkRate,15; }",1000,60000,"RL_HEAT_BARREL"; } } } + - Id: 32303 + AegisName: aegis_32303 + Name: Bolt Revolver + Type: Weapon + SubType: Revolver + Weight: 1800 + Attack: 200 + Range: 7 + Slots: 2 + Jobs: + Gunslinger: true + Rebellion: true + Locations: + Right_Hand: true + Left_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Script: | + .@r = getrefine(); + bonus bLongAtkRate,15; + bonus2 bSkillAtk,"RL_FIREDANCE",15; + if (.@r>=7) { + bonus bAspdRate,10; + bonus bBaseAtk,60; + } + if (.@r>=9) { + bonus2 bSkillAtk,"RL_FIREDANCE",20; + autobonus "{ bonus2 bAddSize,Size_All,20; }",1,10000,BF_WEAPON; + } + if (.@r>=11) { + bonus bDelayrate,-20; + } - Id: 32304 AegisName: aegis_32304 Name: Royal Revolver @@ -99150,6 +100108,41 @@ Body: Refineable: true Script: | .@r = getrefine(); bonus2 bSkillCooldown,"GN_SPORE_EXPLOSION",-1000; bonus bBaseAtk,4*.@r; if (.@r>=11) .@val = 50; else if (.@r>=9) .@val = 30; bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",.@val; + - Id: 32352 + AegisName: aegis_32352 + Name: Safety Saber + Type: Weapon + SubType: 1hSword + Weight: 2500 + Attack: 200 + Range: 1 + Slots: 2 + Jobs: + Alchemist: true + Classes: + Third: true + Third_Upper: true + Third_Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); + bonus2 bAddClass,Class_All,10; + bonus2 bSkillAtk,"GN_CARTCANNON",10; + if (.@r>=7) { + bonus bVariableCastrate,-10; + bonus bBaseAtk,40; + } + if (.@r>=9) { + bonus bLongAtkRate,7; + bonus2 bSkillAtk,"GN_CARTCANNON",15; + } + if (.@r>=11) { + bonus bDelayrate,-20; + } - Id: 32353 AegisName: aegis_32353 Name: Guardian Knight Jewel Sword @@ -103036,6 +104029,46 @@ Body: Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r/2*10; bonus bMatk,.@r/2*10; bonus2 bSkillAtk,"AB_DUPLELIGHT",25*(.@r/3); bonus2 bSkillAtk,"AB_JUDEX",25*(.@r/3); if (.@r>=7){ bonus bAspdRate,10; bonus2 bMagicAtkEle,Ele_Holy,15; } if (.@r>=9){ bonus2 bSkillAtk,"AB_DUPLELIGHT",30; bonus2 bSkillAtk,"AB_JUDEX",30; } if (.@r>=11){ .@i = getskilllv("AB_JUDEX"); bonus3 bAutoSpell,"AB_JUDEX",(.@i > 5 ? .@i : 5),100; } + - Id: 550006 + AegisName: aegis_550006 + Name: Safety Foxtail + Type: Weapon + SubType: Staff + Weight: 1500 + Attack: 300 + Range: 1 + Slots: 2 + Jobs: + Summoner: true + Classes: + Normal: true + Upper: true + Baby: true + Locations: + Right_Hand: true + WeaponLevel: 4 + EquipLevelMin: 170 + Refineable: true + Script: | + .@r = getrefine(); + bonus bMatk,350; + bonus bUnbreakableWeapon; + bonus bMatkRate,7; + bonus2 bAddClass,Class_All,7; + bonus2 bSkillAtk,"SU_CN_METEOR",15; + bonus2 bSkillAtk,"SU_PICKYPECK",15; + if (.@r>=7) { + bonus bAspdRate,10; + bonus bVariableCastrate,-10; + } + if (.@r>=9) { + bonus2 bSkillAtk,"SU_CN_METEOR",20; + bonus2 bSkillAtk,"SU_PICKYPECK",20; + autobonus "{ bonus2 bAddSize,Size_All,10; bonus2 bMagicAddSize,Size_All,10; }",1,10000,BF_MAGIC; + } + if (.@r>=11) { + bonus bDelayrate,-20; + } - Id: 550007 AegisName: Freezing_Rod Name: Chilling Cane @@ -103947,3 +104980,4 @@ Body: Refineable: true Script: | .@r = getrefine(); bonus bLongAtkRate,3*(.@r/2); bonus bBaseAtk,20*(.@r/3); if (.@r>=7){ bonus2 bSkillAtk,"RL_D_TAIL",15; bonus2 bSkillCooldown,"RL_D_TAIL",-1000; } if (.@r>=9){ bonus2 bSkillAtk,"RL_D_TAIL",20; } if (.@r>=11){ bonus2 bAddEle,Ele_All,15; } + diff --git a/db/re/item_db_etc.yml b/db/re/item_db_etc.yml index e074c5d9e6..4ed3e771da 100644 --- a/db/re/item_db_etc.yml +++ b/db/re/item_db_etc.yml @@ -22178,6 +22178,10 @@ Body: Type: Etc Buy: 10 Weight: 100 + - Id: 7000 + AegisName: aegis_7000 + Name: Event Stone Coin # !todo check english name + Type: Etc - Id: 7001 AegisName: Mould_Powder Name: Mould Powder @@ -33999,6 +34003,140 @@ Body: Weight: 10 Script: | autobonus "{ bonus bLuk,50; bonus2 bMagicAtkEle,Ele_All,10; bonus2 bHPLossRate,300,1000; }",20,10000,BF_MAGIC; /* unknown rate */ + - Id: 25759 + AegisName: aegis_25759 + Name: Green Dragon Orb + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 25760 + AegisName: aegis_25760 + Name: Blue Dragon Orb + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 25761 + AegisName: aegis_25761 + Name: Red Dragon Orb + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 25762 + AegisName: aegis_25762 + Name: Gold Dragon Orb + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 25763 + AegisName: aegis_25763 + Name: Purple Dragon Orb + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 25764 + AegisName: aegis_25764 + Name: Silver Dragon Orb + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 25765 + AegisName: aegis_25765 + Name: Large Dragon Bone + Type: Etc + Weight: 200 + Flags: + BuyingStore: true + - Id: 25766 + AegisName: aegis_25766 + Name: Small Dragon Bone + Type: Etc + Weight: 100 + Flags: + BuyingStore: true + - Id: 25767 + AegisName: aegis_25767 + Name: Angel's Dream + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 25768 + AegisName: aegis_25768 + Name: Valkyrie Ingrid's Armor Fragment + Type: Etc + Weight: 30 + - Id: 25769 + AegisName: aegis_25769 + Name: Valkyrie Reginleif's Armor Fragment + Type: Etc + Weight: 30 + - Id: 25770 + AegisName: aegis_25770 + Name: Valkyrie Reginleif's Armor + Type: Etc + Weight: 100 + - Id: 25771 + AegisName: aegis_25771 + Name: Valkyrie Ingrid's Armor + Type: Etc + Weight: 100 + - Id: 25809 + AegisName: aegis_25809 + Name: Redium + Type: Etc + Flags: + BuyingStore: true + - Id: 25810 + AegisName: aegis_25810 + Name: Rindium + Type: Etc + Flags: + BuyingStore: true + - Id: 25811 + AegisName: aegis_25811 + Name: Odium + Type: Etc + Flags: + BuyingStore: true + - Id: 25812 + AegisName: aegis_25812 + Name: Purdium + Type: Etc + Flags: + BuyingStore: true + - Id: 25813 + AegisName: aegis_25813 + Name: Whidium + Type: Etc + Flags: + BuyingStore: true + - Id: 25814 + AegisName: aegis_25814 + Name: Dynite + Type: Etc + Weight: 10 + Flags: + BuyingStore: true + - Id: 25815 + AegisName: Ein_SOLIDDUST + Name: Hardened Dust + Type: Etc + - Id: 25816 + AegisName: Ein_RUSTHELM + Name: Broken Trap + Type: Etc + Weight: 10 + - Id: 25817 + AegisName: aegis_25817 + Name: Bizarre Stone Carvings + Type: Etc + Weight: 50 - Id: 25864 AegisName: aegis_25864 Name: Sealed Temporal Circlet @@ -37783,6 +37921,292 @@ Body: bonus5 bAutoSpellWhenHit,"SO_ELECTRICWALK",5,80,BF_MAGIC,0; autobonus "{ bonus bFlee,200; }",30,10000,BF_WEAPON,"{ specialeffect2 EF_TEIHIT1; }"; autobonus "{ bonus bSpeedRate,25; }",25,10000,BF_MAGIC,"{ specialeffect2 EF_POTION_BERSERK; }"; + - Id: 300001 + AegisName: aegis_300001 + Name: Poisonous Card + Type: Card + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEle,Ele_Poison,25; + - Id: 300002 + AegisName: aegis_300002 + Name: Toxious Card + Type: Card + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bLongAtkDef,5; + bonus bMaxHPrate,10; + - Id: 300003 + AegisName: aegis_300003 + Name: White Porcellio Card + Type: Card + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bBaseAtk,20; + - Id: 300004 + AegisName: aegis_300004 + Name: Neo Mineral Card + Type: Card + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bDef,30; + - Id: 300005 + AegisName: aegis_300005 + Name: Abyssman Card + Type: Card + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bMaxHP,10; + bonus2 bSkillAtk,"SO_EARTHGRAVE",10; + - Id: 300006 + AegisName: aegis_300006 + Name: Jewelry Ant Card + Type: Card + Weight: 10 + Locations: + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus5 bAutoSpell,"SO_PSYCHIC_WAVE",1,100,BF_WEAPON,1; + - Id: 300007 + AegisName: aegis_300007 + Name: Jeweled Ungoliant Card + Type: Card + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEle,Ele_Fire,40; + bonus2 bAddEle,Ele_Water,40; + bonus2 bAddRace,RC_Formless,40; + bonus2 bAddRace,RC_Plant,40; + - Id: 300008 + AegisName: aegis_300008 + Name: Angelgolt Card + Type: Card + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bMagicAddRace,RC_Demon,10; + - Id: 300009 + AegisName: aegis_300009 + Name: Spectrum Plasma Card + Type: Card + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + .@r = getequiprefinerycnt(EQI_HAND_R); + if (getiteminfo(getequipid(EQI_HAND_R),11) == W_STAFF || getiteminfo(getequipid(EQI_HAND_R),11) == W_2HSTAFF) { + bonus2 bMagicAtkEle,Ele_Ghost,10; + } + if (.@r>=10) { + bonus2 bMagicAtkEle,Ele_Ghost,10; + } + if (.@r>=14) { + bonus2 bMagicAtkEle,Ele_Ghost,10; + } + - Id: 300010 + AegisName: aegis_300010 + Name: Arch Plasma Card + Type: Card + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + .@r = getequiprefinerycnt(EQI_HAND_R); + if (getiteminfo(getequipid(EQI_HAND_R),11) == W_STAFF || getiteminfo(getequipid(EQI_HAND_R),11) == W_2HSTAFF) { + bonus2 bMagicAtkEle,Ele_Wind,10; + } + if (.@r>=10) { + bonus2 bMagicAtkEle,Ele_Wind,10; + } + if (.@r>=14) { + bonus2 bMagicAtkEle,Ele_Wind,10; + } + - Id: 300011 + AegisName: aegis_300011 + Name: Holy Frus Card + Type: Card + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + .@r = getequiprefinerycnt(EQI_HAND_R); + if (getiteminfo(getequipid(EQI_HAND_R),11) == W_STAFF || getiteminfo(getequipid(EQI_HAND_R),11) == W_2HSTAFF) { + bonus2 bMagicAtkEle,Ele_Holy,10; + } + if (.@r>=10) { + bonus2 bMagicAtkEle,Ele_Holy,10; + } + if (.@r>=14) { + bonus2 bMagicAtkEle,Ele_Holy,10; + } + - Id: 300012 + AegisName: aegis_300012 + Name: Holy Skogul Card + Type: Card + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + .@r = getrefine(); + bonus bHealPower,5; + if (.@r>=7) { + bonus bHealPower,3; + } + if (.@r>=9) { + bonus bHealPower,2; + } + - Id: 300013 + AegisName: aegis_300013 + Name: Reginleif Card + Type: Card + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bUnbreakableArmor; + bonus2 bAddClass,Class_All,30; + bonus bMaxHPrate,-15; + - Id: 300014 + AegisName: aegis_300014 + Name: Ingrid Card + Type: Card + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus bUnbreakableArmor; + bonus2 bAddClass,Class_All,-15; + bonus bMaxHPrate,40; + bonus2 bHPLossRate,1000,4000; + UnEquipScript: | + heal -10000,0; + - Id: 300015 + AegisName: aegis_300015 + Name: Purple Ferus Card + Type: Card + Weight: 10 + Locations: + Head_Top: true + Head_Mid: true + Head_Low: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddClass,Class_All,3; + bonus bMaxHPrate,-5; + bonus bMaxSPrate,-5; + bonus2 bAddClass,Class_All,(getrefine()/4); + - Id: 300016 + AegisName: aegis_300016 + Name: Treasure Mimic Card + Type: Card + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bCritical,5; + bonus bFlee,30; + - Id: 300017 + AegisName: aegis_300017 + Name: Black Acidus Card + Type: Card + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEle,Ele_Dark,25; + - Id: 300018 + AegisName: aegis_300018 + Name: Silver Acidus Card + Type: Card + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddEle,Ele_Holy,25; + - Id: 300019 + AegisName: aegis_300019 + Name: Bone Ferus Card + Type: Card + Weight: 10 + Locations: + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddRace,RC_Dragon,5; + - Id: 300020 + AegisName: aegis_300020 + Name: Bone Acidus Card + Type: Card + Weight: 10 + Locations: + Right_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddRace,RC_Brute,5; + - Id: 300021 + AegisName: aegis_300021 + Name: Bone Detardeurus Card + Type: Card + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddRace,RC_Undead,40; + bonus2 bAddRace,RC_Dragon,40; + bonus2 bAddEle,Ele_Ghost,40; + bonus2 bAddEle,Ele_Undead,40; - Id: 300127 AegisName: aegis_300127 Name: Wolf Card @@ -37956,8 +38380,63 @@ Body: Script: | bonus bLongAtkRate,25; bonus bPerfectHitRate,5; + - Id: 310076 + AegisName: aegis_310076 + Name: STR Blessing + Type: Card + Script: | + bonus bStr,10; + bonus bMdef,3; + bonus bDef,25; + bonus2 bAddClass,Class_All,10; + - Id: 310077 + AegisName: aegis_310077 + Name: AGI Blessing + Type: Card + Script: | + bonus bAgi,10; + bonus bMdef,3; + bonus bDef,25; + bonus bLongAtkRate,10; + - Id: 310078 + AegisName: aegis_310078 + Name: VIT Blessing + Type: Card + Script: | + bonus bVit,10; + bonus bMdef,3; + bonus bDef,25; + bonus bMaxHPrate,10; + bonus bMaxSPrate,10; + - Id: 310079 + AegisName: aegis_310079 + Name: DEX Blessing + Type: Card + Script: | + bonus bDex,10; + bonus bMdef,3; + bonus bDef,25; + bonus bAspdRate,10; + bonus bVariableCastrate,-10; + - Id: 310080 + AegisName: aegis_310080 + Name: INT Blessing + Type: Card + Script: | + bonus bInt,10; + bonus bMdef,3; + bonus bDef,25; + bonus bMatkRate,10; + - Id: 310081 + AegisName: aegis_310081 + Name: LUK Blessing + Type: Card + Script: | + bonus bLuk,10; + bonus bMdef,3; + bonus bDef,25; + bonus bCritAtkRate,15; - Id: 1000235 AegisName: aegis_1000235 Name: Great Hunter's Mark # !todo check english name Type: Etc - diff --git a/sql-files/item_db_re_equip.sql b/sql-files/item_db_re_equip.sql index 864cf1a373..cbf35a98c5 100644 --- a/sql-files/item_db_re_equip.sql +++ b/sql-files/item_db_re_equip.sql @@ -664,6 +664,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`we REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1862,'Burning_Knuckle-OS','Burning Knuckle-OS','Weapon','Knuckle',20,900,175,1,2,true,true,true,true,true,4,130,true,'.@r = getrefine(); bonus2 bAddClass,Class_All,3; if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",15; if (.@r >= 11) { bonus2 bAddSize,Size_Medium,20; bonus2 bAddSize,Size_Large,20; } } }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1865,'Raging_Dragon_Fist','Raging Dragon Fist','Weapon','Knuckle',20,700,210,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bBaseAtk,4*.@r; bonus2 bSkillAtk,"MO_CHAINCOMBO",30; if (.@r >= 9) { bonus2 bSkillAtk,"MO_COMBOFINISH",50; bonus2 bSkillAtk,"CH_CHAINCRUSH",50; } if (.@r >= 11) bonus2 bSkillAtk,"CH_CHAINCRUSH",30;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_monk`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1866,'Dedicated_Bandage','Dedicated Bandage','Weapon','Knuckle',20,800,220,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bBaseAtk,4*.@r; bonus bLongAtkRate,10; if (.@r >= 9) bonus2 bSkillAtk,"SR_KNUCKLEARROW",40; if (.@r >= 11) bonus bDelayrate,-7;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_monk`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1867,'aegis_1867','Safety Knuckle','Weapon','Knuckle',1800,210,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine();\nbonus2 bAddClass,Class_All,10;\nbonus2 bSkillAtk,"SR_KNUCKLEARROW",10;\nif (.@r>=7) {\n bonus bAspdRate,15;\n bonus bBaseAtk,40;\n}\nif (.@r>=9) {\n bonus2 bSkillAtk,"SR_KNUCKLEARROW",15;\n autobonus "{ bonus2 bAddSize,Size_All,15; }",1,10000,BF_WEAPON;\n}\nif (.@r>=11) {\n bonus bDelayrate,-20;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_monk`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1870,'aegis_1870','Royal Knuckle','Weapon','Knuckle',1500,190,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine();\nbonus bLongAtkRate,15;\nbonus bBaseAtk,4*.@r;\nif (.@r>=9) {\n bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",20;\n}\nif (.@r>=11) {\n bonus2 bAddRace,RC_Undead,20;\n bonus2 bAddRace,RC_Angel,20;\n bonus2 bSkillCooldown,"SR_RAMPAGEBLASTER",-1000;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (1900,'Violin_of_Vicious_Mind','Violin of Vicious Mind','Weapon','Musical',20,1300,130,50,1,1,true,'Male',true,4,160,true,'bonus bAtk,pow(min(getrefine(),15),2); bonus bMatk,pow(min(getrefine(),15),2)/2;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (1901,'Violin','Violin','Weapon','Musical',4000,700,50,1,3,true,'Male',true,1,2,true); @@ -2927,6 +2928,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`we REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_kagerouoboro`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13337,'Illusion_Huuma_Fluttering_Snow','Illusion Huuma Fluttering Snow','Weapon','Huuma',1500,250,50,1,2,true,true,true,true,4,120,true,'.@r = getrefine(); bonus bBaseAtk,(30*(.@r/3)); bonus bLongAtkRate,(3*.@r);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_kagerouoboro`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13338,'Illusion_Wing_Shuriken','Illusion Wing Shuriken','Weapon','Huuma',1500,300,1,2,true,true,true,true,4,120,true,'bonus bDex,2; bonus2 bSkillAtk,"KO_HAPPOKUNAI",(9*getrefine());'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_kagerouoboro`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13345,'Huuma_Shuriken_Clearness','Huuma Shuriken Clearness','Weapon','Huuma',20,1300,230,1,2,true,true,true,true,4,100,true,'.@r = getrefine(); bonus bLongAtkRate,2*(.@r/3); bonus bBaseAtk,10*(.@r/2); if (.@r >= 7) { bonus2 bSkillAtk,"KO_HUUMARANKA",30; if (.@r >= 9) { bonus2 bSkillCooldown,"KO_HUUMARANKA",-1000; if (.@r >= 11) { bonus2 bAddEle,Ele_Fire,15; bonus2 bAddEle,Ele_Dark,15; bonus2 bAddRace,RC_Undead,30; bonus2 bAddRace,RC_Demon,30; } } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (13346,'aegis_13346','Grinder Huuma Shuriken','Weapon','Huuma',1800,280,1,2,true,true,true,4,170,'.@r = getrefine();\nbonus2 bAddClass,Class_All,15;\nbonus bUnbreakableWeapon;\nbonus2 bSkillAtk,"KO_HUUMARANKA",15;\nif (.@r>=7) {\n bonus bVariableCastrate,-15;\n bonus bBaseAtk,60;\n}\nif (.@r>=9) {\n bonus2 bSkillAtk,"KO_HUUMARANKA",20;\n autobonus "{ bonus2 bAddSize,Size_All,20; }",1,10000,BF_WEAPON;\n}\nif (.@r>=11) {\n bonus bDelayrate,-20;\n bonus2 bSkillCooldown,"KO_HUUMARANKA",-1000;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_ninja`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (13347,'aegis_13347','Royal Huuma Shuriken','Weapon','Huuma',1500,240,1,2,true,true,true,4,170,'.@r = getrefine();\nbonus bLongAtkRate,15;\nbonus bUnbreakableWeapon;\nbonus bBaseAtk,4*.@r;\nif (.@r>=9) {\n bonus2 bSkillAtk,"KO_JYUMONJIKIRI",20;\n}\nif (.@r>=11) {\n bonus2 bAddRace,RC_Undead,20;\n bonus2 bAddRace,RC_Angel,20;\n bonus2 bSkillCooldown,"KO_JYUMONJIKIRI",-2000;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (13400,'Cutlas_','Cutlus','Weapon','1hSword',20,900,150,1,1,true,true,true,true,true,true,true,true,true,true,4,40,true,'skill "SM_BASH",5; bonus bStr,2; bonus bDef,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_alchemist`,`job_assassin`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_rogue`,`job_swordman`,`job_thief`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (13401,'Excalibur_C','Excalibur','Weapon','1hSword',1,199,1,true,true,true,true,true,true,true,true,true,true,4,1,100,true,true,true,true,true,true,true,true,'bonus bInt,10; bonus bLuk,10; bonus bAtkEle,Ele_Holy;'); @@ -3161,6 +3163,18 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15379,'Lava_Leather_Suit','Lava Leather Suit','Armor',20,1000,70,1,true,175,true,'.@r = getrefine(); bonus bBaseAtk,100; if (.@r>=7) bonus bBaseAtk,50; if (.@r>=9) bonus bCritAtkRate,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15380,'Lava_Leather_Robe','Lava Leather Robe','Armor',20,750,55,1,true,175,true,'.@r = getrefine(); bonus bMatk,100; if (.@r>=7) bonus bMatk,50; if (.@r>=9) bonus bMatk,25;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15384,'Ritual_Robes','Ritual Robes','Armor',10,400,1,true,100,true,'.@r = getrefine(); bonus bHealPower,5; bonus bDelayrate,-10; bonus bMaxHPrate,5; if (.@r>=7) { bonus bMaxHPrate,5; bonus bHealPower,5; } if (.@r>=8) { bonus bMaxHPrate,5; bonus bHealPower,10; bonus bUseSPrate,-10; bonus2 bResEff,Eff_Sleep,10000; } if (.@r>=9) { bonus bMaxHPrate,5; bonus bHealPower,10; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15391,'aegis_15391','Red Dragon Plate','Armor',1200,110,1,true,170,true,'.@r = getrefine();\nbonus bMaxHPrate,15;\nbonus bMaxSPrate,10;\nbonus bStr,12;\nbonus2 bAddClass,Class_All,2*(.@r/2);\nbonus2 bAddRace,RC_Dragon,7*(.@r/3);\nif (.@r>=11) {\n bonus bFixedCast,-200;\n bonus2 bAddSize,Size_Medium,10;\n bonus2 bAddSize,Size_Large,10;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15392,'aegis_15392','Green Dragon Plate','Armor',1200,110,1,true,170,true,'.@r = getrefine();\nbonus bMaxHPrate,10;\nbonus bMaxSPrate,10;\nbonus bAgi,12;\nbonus bLongAtkRate,2*(.@r/2);\nbonus2 bAddRace,RC_Dragon,7*(.@r/3);\nif (.@r>=11) {\n bonus bFixedCast,-200;\n bonus2 bAddSize,Size_Medium,10;\n bonus2 bAddSize,Size_Large,10;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15393,'aegis_15393','Gold Dragon Plate','Armor',1200,110,1,true,170,true,'.@r = getrefine();\nbonus bMaxHPrate,20;\nbonus bMaxSPrate,5;\nbonus bVit,12;\nbonus bAspdRate,3*(.@r/2);\nbonus bVariableCastrate,-3*(.@r/2);\nbonus2 bAddRace,RC_Dragon,7*(.@r/3);\nbonus2 bMagicAddRace,RC_Dragon,7*(.@r/3);\nif (.@r>=11) {\n bonus bFixedCast,-200;\n bonus2 bAddSize,Size_Medium,6;\n bonus2 bMagicAddSize,Size_Medium,6;\n bonus2 bAddSize,Size_Large,6;\n bonus2 bMagicAddSize,Size_Large,6;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15394,'aegis_15394','Purple Dragon Plate','Armor',1200,110,1,true,170,true,'.@r = getrefine();\nbonus bMaxHPrate,15;\nbonus bMaxSPrate,10;\nbonus bDex,12;\nbonus bAspdRate,4*(.@r/2);\nbonus bVariableCastrate,-4*(.@r/2);\nbonus2 bAddRace,RC_Dragon,8*(.@r/3);\nbonus2 bMagicAddRace,RC_Dragon,8*(.@r/3);\nif (.@r>=11) {\n bonus bFixedCast,-200;\n bonus2 bAddSize,Size_Medium,8;\n bonus2 bMagicAddSize,Size_Medium,8;\n bonus2 bAddSize,Size_Large,8;\n bonus2 bMagicAddSize,Size_Large,8;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15395,'aegis_15395','Blue Dragon Plate','Armor',1200,110,1,true,170,true,'.@r = getrefine();\nbonus bMaxHPrate,5;\nbonus bMaxSPrate,20;\nbonus bInt,12;\nbonus bMatkRate,2*(.@r/2);\nbonus bHealPower,4*(.@r/2);\nbonus2 bMagicAddRace,RC_Dragon,7*(.@r/3);\nif (.@r>=11) {\n bonus bFixedCast,-200;\n bonus2 bMagicAddSize,Size_Medium,10;\n bonus2 bMagicAddSize,Size_Large,10;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15396,'aegis_15396','Silver Dragon Plate','Armor',1200,110,1,true,170,true,'.@r = getrefine();\nbonus bMaxHPrate,15;\nbonus bMaxSPrate,15;\nbonus bLuk,12;\nbonus bCritAtkRate,4*(.@r/2);\nbonus bCritical,2*(.@r/2);\nbonus2 bAddRace,RC_Dragon,7*(.@r/3);\nif (.@r>=11) {\n bonus bFixedCast,-200;\n bonus2 bAddSize,Size_Medium,10;\n bonus2 bAddSize,Size_Large,10;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15397,'aegis_15397','STR Soutane','Armor',800,100,1,true,170,true,'.@r = getrefine();\nbonus bMaxHPrate,10;\nbonus bMaxSPrate,10;\nbonus bAspdRate,10;\nbonus2 bAddClass,Class_All,3*(.@r/2);\nbonus bStr,5*(.@r/3);\nbonus2 bAddRace,RC_Angel,8*(.@r/4);\nbonus2 bAddRace,RC_Demon,8*(.@r/4);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15398,'aegis_15398','AGI Soutane','Armor',800,100,1,true,170,true,'.@r = getrefine();\nbonus bMaxHPrate,10;\nbonus bMaxSPrate,10;\nbonus bAspdRate,10;\nbonus bLongAtkRate,3*(.@r/2);\nbonus bAgi,5*(.@r/3);\nbonus2 bAddRace,RC_Angel,8*(.@r/4);\nbonus2 bAddRace,RC_Demon,8*(.@r/4);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15399,'aegis_15399','VIT Soutane','Armor',800,100,1,true,170,true,'.@r = getrefine();\nbonus bMaxHPrate,15;\nbonus bMaxSPrate,5;\nbonus bAspdRate,7;\nbonus bVariableCastrate,-7;\nbonus bMaxHPrate,2*(.@r/2);\nbonus bVit,5*(.@r/3);\nbonus2 bAddRace,RC_Angel,10*(.@r/4);\nbonus2 bMagicAddRace,RC_Angel,10*(.@r/4);\nbonus2 bAddRace,RC_Demon,10*(.@r/4);\nbonus2 bMagicAddRace,RC_Demon,10*(.@r/4);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15400,'aegis_15400','DEX Soutane','Armor',800,100,1,true,170,true,'.@r = getrefine();\nbonus bMaxHPrate,10;\nbonus bMaxSPrate,10;\nbonus bAspdRate,10;\nbonus bVariableCastrate,-10;\nbonus bMatkRate,(.@r/2);\nbonus2 bAddClass,Class_All,(.@r/2);\nbonus bDex,5*(.@r/3);\nbonus2 bAddRace,RC_Angel,6*(.@r/4);\nbonus2 bMagicAddRace,RC_Angel,6*(.@r/4);\nbonus2 bAddRace,RC_Demon,6*(.@r/4);\nbonus2 bMagicAddRace,RC_Demon,6*(.@r/4);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15401,'aegis_15401','INT Soutane','Armor',800,100,1,true,170,true,'.@r = getrefine();\nbonus bMaxHPrate,5;\nbonus bMaxSPrate,15;\nbonus bVariableCastrate,-10;\nbonus bMatkRate,3*(.@r/2);\nbonus bInt,5*(.@r/3);\nbonus2 bMagicAddRace,RC_Angel,8*(.@r/4);\nbonus2 bMagicAddRace,RC_Demon,8*(.@r/4);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15402,'aegis_15402','LUK Soutane','Armor',800,100,1,true,170,true,'.@r = getrefine();\nbonus bMaxHPrate,10;\nbonus bMaxSPrate,10;\nbonus bAspdRate,10;\nbonus bCritAtkRate,4*(.@r/2);\nbonus bCritical,3*(.@r/2);\nbonus bLuk,5*(.@r/3);\nbonus2 bAddRace,RC_Angel,8*(.@r/4);\nbonus2 bAddRace,RC_Demon,8*(.@r/4);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15405,'Fafnir_Scale','Fafnir Scale','Armor',20,1500,120,true,100,true,'.@r = getrefine(); bonus bMdef,15; bonus bUnbreakableArmor; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bSkillAtk,"RK_DRAGONBREATH",50; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",50; bonus bDelayrate,-2*getskilllv("RK_DRAGONBREATH_WATER"); bonus bLongAtkRate,2*getskilllv("RK_DRAGONBREATH"); if (.@r>=5) { bonus bMaxHPrate,20; bonus bMaxSPrate,20; bonus bDelayrate,-5; } if (.@r>=7) { bonus bMaxHPrate,20; bonus bMaxSPrate,20; bonus bDelayrate,-5; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15409,'Bloody_Doll\'s_Dress','Bloody Doll\'s Dress','Armor',10,500,40,1,true,90,true,'.@r = getrefine(); bonus bMdef,5; bonus bMatk,10; bonus bDex,3; bonus2 bSubRace,RC_Player_Human,7; if (.@r>=7) { bonus bAspdRate,10; bonus bDelayrate,-10; } if (.@r>=8) bonus bUnbreakableArmor;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`equip_level_min`,`refineable`,`script`) VALUES (15417,'Armor_of_Purple_Thread','Armor of Purple Thread','Armor',20,800,60,1,true,100,true,'.@r = getrefine(); bonus bBaseAtk,10; bonus bPerfectHitAddRate,5; if (.@r>=7) { bonus bBaseAtk,20; bonus bPerfectHitAddRate,5; } if (.@r>=8) { bonus bBaseAtk,20; bonus bPerfectHitAddRate,10; } if (.@r>=9) { bonus bBaseAtk,30; bonus bPerfectHitAddRate,10; }'); @@ -3223,6 +3237,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`we REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16094,'Gene_Rod','Gene Rod','Weapon','Mace',1400,195,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bUnbreakableWeapon; bonus bBaseAtk,4*.@r; bonus2 bSkillAtk,"GN_CRAZYWEED",20; if (.@r>=9) bonus2 bSkillAtk,"GN_CRAZYWEED",30; if (.@r>=11) bonus2 bSkillCooldown,"GN_CRAZYWEED",-2000;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16095,'Lucis_Flail','Lucis Flail','Weapon','Mace',1000,180,160,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bUnbreakableWeapon; bonus bAspd,1; bonus bMatk,4*.@r; if (.@r>=9) { bonus2 bSkillAtk,"AB_DUPLELIGHT",40; } if (.@r>=11) bonus3 bAutoSpell,"AB_JUDEX",max(2,getskilllv("AB_JUDEX")),50; /* Unknow Rates */'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_monk`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16096,'Bright_Pendulum','Bright Pendulum','Weapon','Mace',1300,210,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bUnbreakableWeapon; bonus bBaseAtk,4*.@r; bonus bVariableCastrate,-10; if (.@r>=9) { bonus2 bSkillAtk,"MO_FINGEROFFENSIVE",50; bonus2 bSkillAtk,"MO_INVESTIGATE",50; } if (.@r>=11) bonus2 bAddClass,Class_All,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (16099,'aegis_16099','Rubber Hammer','Weapon','Mace',1900,160,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine();\nbonus bMatk,180;\nbonus bUnbreakableWeapon;\nbonus bMatkRate,7;\nbonus bHealPower,15;\nbonus2 bSkillAtk,"AB_ADORAMUS",10;\nif (.@r>=7) {\n bonus2 bMagicAtkEle,Ele_Holy,7;\n bonus bVariableCastrate,-10;\n}\nif (.@r>=9) {\n bonus2 bSkillAtk,"AB_ADORAMUS",15;\n autobonus "{ bonus2 bMagicAddSize,Size_All,15; }",1,5000,BF_MAGIC;\n}\nif (.@r>=11) {\n bonus bDelayrate,-20;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_barddancer`,`job_hunter`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18100,'Shooting_Star_C','Shooting Star','Weapon','Bow',20,190,5,true,true,true,true,4,1,true,100,true,true,true,true,true,true,true,true,'bonus bLongAtkRate,20;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`script`) VALUES (18101,'F_Bow_Of_Rudra_C','Rudra Bow','Weapon','Bow',2,185,5,true,true,true,true,true,true,true,4,'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;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`range`,`job_archer`,`job_barddancer`,`job_hunter`,`job_rogue`,`job_thief`,`location_left_hand`,`location_right_hand`,`weapon_level`,`script`) VALUES (18102,'E_Bow_Of_Rudra_C','Rudra Bow','Weapon','Bow',2,185,5,true,true,true,true,true,true,true,4,'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;'); @@ -3269,6 +3284,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`pr REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18186,'Aiming_Bow','Aiming Bow','Weapon','Bow',20,1000,210,5,2,true,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bDelayrate,-1*(5+.@r); if (.@r>=9) bonus2 bSkillAtk,"RA_AIMEDBOLT",30; if (.@r>=11) { bonus2 bSkillAtk,"RA_AIMEDBOLT",15; bonus2 bSkillCooldown,"RA_AIMEDBOLT",-1000; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18187,'Falken_Shooter','Falken Shooter','Weapon','Bow',20,1000,210,5,2,true,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bLongAtkRate,10; bonus bBaseAtk,4*.@r; if (.@r>=9) bonus2 bSkillAtk,"RA_ARROWSTORM",25; if (.@r>=11) bonus2 bSkillCooldown,"RA_ARROWSTORM",-700;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (18188,'Wind_Gale','Wind Gale','Weapon','Bow',20,1000,200,5,2,true,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bLongAtkRate,10+.@r; if (.@r>=9) bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",30; if (.@r>=11) bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (18190,'aegis_18190','Bolt Shooter','Weapon','Bow',1700,210,5,2,true,true,true,true,true,true,4,170,'.@r = getrefine();\nbonus2 bAddClass,Class_All,10;\nbonus2 bSkillAtk,"RA_AIMEDBOLT",10;\nif (.@r>=7) {\n bonus bVariableCastrate,-10;\n bonus bBaseAtk,60;\n}\nif (.@r>=9) {\n bonus2 bSkillAtk,"RA_AIMEDBOLT",15;\n autobonus "{ bonus2 bAddSize,Size_All,20; }",1,10000,BF_WEAPON;\n}\nif (.@r>=11) {\n bonus bDelayrate,-20;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (18191,'aegis_18191','Royal Knight Bow','Weapon','Bow',1500,180,5,2,true,true,true,true,true,true,4,170,'.@r = getrefine();\nbonus bLongAtkRate,15;\nbonus bBaseAtk,4*.@r;\nif (.@r>=9) {\n bonus2 bSkillAtk,"SC_TRIANGLESHOT",20;\n}\nif (.@r>=11) {\n bonus2 bAddRace,RC_Undead,20;\n bonus2 bAddRace,RC_Angel,20;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_hunter`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (18198,'aegis_18198','Royal Knight Archer Bow','Weapon','Bow',1700,190,5,2,true,true,true,true,true,true,4,170,'.@r = getrefine();\nbonus bLongAtkRate,15;\nbonus bBaseAtk,4*.@r;\nif (.@r>=9) {\n bonus bDelayrate,-12;\n bonus2 bSkillAtk,"RA_AIMEDBOLT",25;\n}\nif (.@r>=11) {\n bonus2 bAddRace,RC_Undead,20;\n bonus2 bAddRace,RC_Angel,20;\n bonus2 bSkillCooldown,"RA_AIMEDBOLT",-1000;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_head_low`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nosell`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (18500,'Cheer_Scarf6','Cheer Scarf6','Armor',true,1,369,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddClass,Class_All,60;'); @@ -4829,6 +4845,8 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20942,'Manteau_Of_Guardsman','Manteau Of Guardsman','Armor',20,500,15,1,true,100,true,'.@r = getrefine(); bonus bMdef,15; bonus bMaxHPrate,5+3*(.@r/3); bonus bMaxSPrate,5+3*(.@r/3); bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20943,'Geffen_Magic_Muffler','Geffen Magic Muffler','Armor',20,550,20,1,true,99,true,'.@r = getrefine(); .@val = -10; bonus bMatk,(10*(.@r/2)); bonus bMatkRate,(.@r/3); if (.@r >= 7) { bonus2 bMagicAtkEle,Ele_All,5; } if (.@r >= 9) { .@val -= 10; } bonus bVariableCastrate,.@val;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20944,'Anti_Magic_Manteau','Anti Magic Manteau','Armor',20,750,23,1,true,99,true,'.@r = getrefine(); bonus bMaxHP,(300+(100*(.@r/2))); bonus bMaxHPRate,(2*(.@r/3)); if (.@r >= 7) { bonus2 bAddClass,Class_All,7; } if (.@r >= 9) { bonus bVariableCastrate,-10; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20946,'aegis_20946','Dragon Scale Hood','Armor',500,23,1,true,170,true,'.@r = getrefine();\nbonus bMdef,2;\nbonus bDef,20;\nbonus bHealPower2,15;\nif (.@r>=7) {\n bonus2 bSubRace,RC_Dragon,2;\n}\nif (.@r>=9) {\n autobonus2 "{ bonus2 bHPRegenRate,2000,1000; }",1,3000,BF_MAGIC|BF_WEAPON;\n}\nif (.@r>=11) {\n bonus2 bSubRace,RC_Dragon,3;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20947,'aegis_20947','Clergy\'s Manteau','Armor',450,40,1,true,170,true,'.@r = getrefine();\nbonus bMaxSPrate,5;\nbonus bMdef,10;\nbonus bVariableCastrate,-10;\nbonus2 bMagicAddRace,RC_Angel,(.@r/2);\nbonus2 bMagicAddRace,RC_Demon,(.@r/2);\nbonus2 bSubRace,RC_Angel,(.@r/3);\nbonus2 bSubRace,RC_Demon,(.@r/3);\nif (.@r>=7) {\n bonus bVariableCastrate,-10;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20948,'Illusion_Morpheus\'s_Shawl','Illusion Morpheus\'s Shawl','Armor',20,600,8,1,true,130,true,'bonus bMaxSPrate,10; bonus bMdef,5; .@r = getrefine(); if (.@r >= 7) { .@bonus = -10; if (.@r >= 9) { .@bonus -= 10; } bonus bVariableCastrate,.@bonus; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20949,'Ladon_Skin','Ladon\'s Skin','Armor',20,600,15,1,true,100,true,'bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5; bonus2 bSubEle,Ele_Wind,5; bonus2 bSubEle,Ele_Earth,5; bonus bAgi,5; bonus bVit,5; bonus bMdef,10; .@r = getrefine(); if (.@r>=7) { .@val = 10; bonus bSPGainValue,10; bonus bLongSPGainValue,10; if (.@r>=8) { .@s = (readparam(bAgi)+readparam(bVit))/20; bonus bBaseAtk,15*.@s; bonus bHit,5*.@s; if (.@r>=9) { .@val += 10; } } bonus bSPGainValue,.@val; bonus bLongSPGainValue,.@val; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`equip_level_min`,`refineable`,`script`) VALUES (20952,'Nameless_Assassin_Muffler','Nameless Assassin\'s Muffler','Armor',20,100,10,1,true,100,true,'.@r= getrefine(); bonus bMdef,5; bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus2 bSubRace,RC_Player_Human,5; if (.@r>=7) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bAspd,1; bonus bHPGainValue,5; bonus bLongHPGainValue,5; } if (.@r>=8) bonus bSpeedRate,40; if (.@r>=9) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bAspd,1; bonus bHPGainValue,5; bonus bLongHPGainValue,5; } if (.@r>=10) skill "AS_CLOAKING",3;'); @@ -4858,6 +4876,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`pr REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (21050,'Illusion_Tae_Goo_Lyeon','Illusion Tae Goo Lyeon','Weapon','2hSword',20,2000,250,1,2,true,true,true,true,true,true,true,4,120,true,'.@r = getrefine(); bonus bFlee2,10; bonus bLongAtkRate,.@r*2; if (.@r >= 7) { bonus bUseSPrate,-20; if (.@r >= 9) { bonus bDelayrate,-20; if (.@r >= 11) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; } } }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (21051,'Volar','Volar','Weapon','2hSword',20,2800,280,1,2,true,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus2 bSkillAtk,"KN_BOWLINGBASH",30; bonus bBaseAtk,4*.@r; if (.@r>=9) { bonus2 bSkillCooldown,"KN_BOWLINGBASH",-1000; bonus2 bSkillCooldown,"RK_IGNITIONBREAK",-1000; } if (.@r>=11) { bonus bUnbreakableWeapon; bonus2 bSkillAtk,"KN_BOWLINGBASH",20; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (21052,'Vernan','Vernan','Weapon','2hSword',20,6500,300,1,2,true,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bLongAtkRate,.@r; bonus2 bAddClass,Class_All,5; if (.@r>=9) { bonus2 bSkillAtk,"LK_SPIRALPIERCE",30; bonus2 bSkillAtk,"RK_SONICWAVE",30; } if (.@r>=11) { bonus2 bSkillCooldown,"RK_SONICWAVE",-1500; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (21054,'aegis_21054','Claw Sword','Weapon','2hSword',3500,300,1,2,true,true,true,true,true,true,4,170,'.@r = getrefine();\nbonus bCritical,5;\nbonus2 bAddClass,Class_All,15;\nif (.@r>=7) {\n bonus bCritAtkRate,25;\n bonus bAspdRate,10;\n}\nif (.@r>=9) {\n autobonus "{ bonus2 bAddSize,Size_All,20; }",1,5000,BF_WEAPON;\n}\nif (.@r>=11) {\n bonus bDelayrate,-20;\n bonus bCritical,7;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (21055,'aegis_21055','Guardian Knight Claymore','Weapon','2hSword',4000,280,1,2,true,true,true,true,true,true,4,170,'.@r = getrefine();\nbonus2 bAddClass,Class_All,5;\nbonus bBaseAtk,4*.@r;\nif (.@r>=9) {\n bonus bCritAtkRate,25;\n bonus bCritical,5;\n}\nif (.@r>=11) {\n bonus2 bAddRace,RC_Undead,20;\n bonus2 bAddRace,RC_Angel,20;\n bonus bUnbreakableWeapon;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (21058,'Up_Dragonic_Slayer','Patent Dragonic Slayer','Weapon','1hSword',2000,200,1,2,true,true,true,true,true,true,4,150,true,'.@r = getrefine(); bonus bMaxHPrate,.@r/2*5; bonus bMaxSPrate,.@r/2*5; bonus2 bSkillAtk,"RK_DRAGONBREATH",.@r/3*5; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",.@r/3*5; if (.@r>=7){ bonus bDelayRate,-10; bonus bVariableCastrate,-10; } if (.@r>=9){ bonus bLongAtkRate,10; } if (.@r>=11){ bonus bDelayRate,-7; bonus bMaxSPrate,5; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_assassin`,`job_barddancer`,`job_blacksmith`,`job_crusader`,`job_hunter`,`job_knight`,`job_monk`,`job_priest`,`job_rogue`,`job_sage`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22000,'Temporal_Str_Boots','Temporal Boots Of Strength','Armor',20,600,25,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,true,99,true,'.@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAtk,7*(.@r/3); if(readparam(bStr)>=120) bonus bAtk,50;'); @@ -4951,6 +4970,8 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22200,'Lava_Leather_Shoes','Lava Leather Shoes','Armor',20,600,50,1,true,175,true,'.@r = getrefine(); bonus bCritical,5; if (.@r>=7) bonus2 bAddSize,Size_All,5; if (.@r>=9) bonus bCritAtkRate,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22201,'Lava_Leather_Sandals','Lava Leather Sandals','Armor',20,500,25,1,true,175,true,'.@r = getrefine(); bonus2 bMagicAtkEle,Ele_Fire,3; if (.@r>=7) bonus bMatk,25; if (.@r>=9) bonus bMatk,15;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22207,'Imperial_Boots','Imperial Boots','Armor',20,400,12,true,100,true,'.@r = getrefine(); bonus bMdef,10; bonus bMaxHPrate,3; bonus bMaxSPrate,3; skill "AL_INCAGI",1; bonus2 bSkillAtk,"LG_BANISHINGPOINT",10*getskilllv("LG_CANNONSPEAR"); bonus2 bAddClass,Class_All,4*getskilllv("CR_DEVOTION"); if (getskilllv("LG_INSPIRATION")>=5) bonus2 bSkillCooldown,"LG_SHIELDSPELL",-2000; bonus2 bIgnoreDefClassRate,Class_All,20*getskilllv("LG_PINPOINTATTACK"); if (.@r>=5) { bonus bMaxSPrate,7; bonus bMaxHPrate,7; bonus bLongAtkRate,5; } if (.@r>=7) { bonus bMaxSPrate,10; bonus bMaxHPrate,10; bonus bLongAtkRate,5; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22208,'aegis_22208','Dragon Scale Boots','Armor',600,35,1,true,170,true,'.@r = getrefine();\nbonus bMaxSP,500;\nbonus bAspdRate,7;\nbonus bVariableCastrate,-7;\nif (.@r>=7) {\n bonus2 bSubRace,RC_Dragon,2;\n}\nif (.@r>=9) {\n autobonus2 "{ bonus2 bSPRegenRate,500,1000; }",1,3000,BF_MAGIC|BF_WEAPON;\n}\nif (.@r>=11) {\n bonus2 bSubRace,RC_Dragon,3;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22209,'aegis_22209','Clergy\'s Boots','Armor',400,35,1,true,170,true,'.@r = getrefine();\nbonus bMaxHPrate,5;\nbonus bDef,30;\nbonus bAspdRate,10;\nbonus2 bAddRace,RC_Angel,(.@r/2);\nbonus2 bAddRace,RC_Demon,(.@r/2);\nbonus2 bSubRace,RC_Angel,(.@r/3);\nbonus2 bSubRace,RC_Demon,(.@r/3);\nif (.@r>=7) {\n bonus bAspdRate,10;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22210,'Fluffy_Fish_Shoes','Fluffy Fish Shoes','Armor',20,100,12,true,100,true,'.@r = getrefine(); .@hpsp = 3; .@val = -10 * getskilllv("SU_SHRIMPARTY"); if (.@r>=5) { .@hpsp += 7; .@delay = -10; if (.@r>=7) { .@hpsp += 10; .@delay -= 10; } bonus bDelayrate,.@delay; } if (getskilllv("SU_SPIRITOFSEA") == 1) { autobonus3 "{ bonus2 bResEff,Eff_Stun,10000; bonus2 bResEff,Eff_Sleep,10000; bonus2 bResEff,EFF_Stone,10000; }",1000,30000,"SU_GROOMING"; } if (getskilllv("SU_GROOMING") == 5) { bonus bFixedCastrate,-50; bonus bNoKnockback; } bonus bMaxHPrate,.@hpsp; bonus bMaxSPrate,.@hpsp; bonus bMdef,10; bonus2 bVariableCastrate,"SU_FRESHSHRIMP",.@val; bonus2 bVariableCastrate,"SU_BUNCHOFSHRIMP",.@val; bonus2 bVariableCastrate,"SU_TUNABELLY",.@val; bonus2 bVariableCastrate,"SU_TUNAPARTY",.@val; bonus2 bVariableCastrate,"SU_SHRIMPARTY",.@val; bonus bHealPower,10*getskilllv("SU_PURRING");'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22214,'Authority_Sandals','Authority Sandals','Armor',20,500,10,true,100,true,'.@r = getrefine(); bonus bMdef,10; bonus bAllStats,10; bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; if (.@r>=7) bonus bAllStats,10; if (.@r>=9) bonus bAllStats,10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_shoes`,`equip_level_min`,`refineable`,`script`) VALUES (22238,'Great_Hero_Boots','Great Hero Boots','Armor',20,600,15,1,true,150,true,'.@r = getrefine(); bonus bMaxHP,1500; bonus bMaxSP,150; bonus bMaxHPrate,.@r/3; bonus bMaxSPrate,.@r/3; if (.@r >= 7) { bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; } if (.@r >= 9) { .@val = -500; if (.@r >= 11) { .@val -= 200; if (.@r >= 13) { bonus bDelayRate,-5; bonus bVariableCastrate,-5; } } bonus bFixedCast,.@val; }'); @@ -5393,12 +5414,14 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`pr REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26159,'Psychic_Spear_Rod','Psychic Spear Rod','Weapon','Staff',20,800,120,180,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Wind,5; bonus2 bMagicAtkEle,Ele_Neutral,5; if (.@r >= 9) { bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",30; } if (.@r >= 11) { bonus2 bSkillCooldown,"SO_VARETYR_SPEAR",-2000; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26160,'Dust_Grave','Dust Grave','Weapon','Staff',20,800,120,180,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); if (.@r >= 11) .@val = 50; else if (.@r >= 9) .@val = 30; bonus2 bSkillAtk,"SO_DIAMONDDUST",.@val; bonus2 bSkillAtk,"SO_EARTHGRAVE",.@val; bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Water,5; bonus2 bMagicAtkEle,Ele_Earth,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26161,'Penitentia','Penitentia','Weapon','Staff',20,700,100,175,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Holy,5; if (.@r >= 9) { bonus2 bSkillAtk,"PR_MAGNUS",(.@r>=11) ? 50 : 30; bonus2 bSkillAtk,"AB_JUDEX",30; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26162,'aegis_26162','Welding Wand','Weapon','Staff',1200,160,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine();\nbonus bMatk,200;\nbonus bUnbreakableWeapon;\nbonus2 bMagicAtkEle,Ele_Neutral,7;\nbonus2 bMagicAtkEle,Ele_Fire,7;\nbonus2 bMagicAtkEle,Ele_Water,7;\nif (.@r>=7) {\n bonus bVariableCastrate,-10;\n bonus bMatk,40;\n}\nif (.@r>=9) {\n bonus2 bMagicAtkEle,Ele_Neutral,8;\n bonus2 bMagicAtkEle,Ele_Fire,8;\n bonus2 bMagicAtkEle,Ele_Water,8;\n autobonus "{ bonus2 bMagicAddSize,Size_All,15; }",1,10000,BF_MAGIC;\n}\nif (.@r>=11) {\n bonus bDelayrate,-20;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26165,'aegis_26165','Royal Cleric Staff','Weapon','Staff',1000,100,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine();\nbonus bMatkRate,5;\nbonus bMatk,170;\nbonus bUnbreakableWeapon;\nbonus bMatk,4*.@r;\nif (.@r>=9) {\n bonus2 bSkillAtk,"AB_ADORAMUS",20;\n}\nif (.@r>=11) {\n bonus2 bMagicAddRace,RC_Undead,20;\n bonus2 bMagicAddRace,RC_Angel,20;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_wizard`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26166,'aegis_26166','Royal Magician Wand','Weapon','Staff',800,80,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine();\nbonus2 bMagicAtkEle,Ele_Fire,5;\nbonus bMatk,180;\nbonus bUnbreakableWeapon;\nbonus bMatk,4*.@r;\nif (.@r>=9) {\n bonus2 bSkillAtk,"WL_HELLINFERNO",20;\n bonus2 bSkillAtk,"WL_CRIMSONROCK",20;\n}\nif (.@r>=11) {\n bonus2 bMagicAddRace,RC_Undead,20;\n bonus2 bMagicAddRace,RC_Angel,20;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26172,'aegis_26172','Royal Foxtail','Weapon','Staff',1200,275,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine();\nbonus bMatkRate,5;\nbonus bMatk,350;\nbonus bUnbreakableWeapon;\nbonus bMatk,4*.@r;\nbonus bBaseAtk,4*.@r;\nif (.@r>=9) {\n bonus2 bSkillAtk,"SU_CN_METEOR",20;\n bonus2 bSkillAtk,"SU_PICKYPECK",20;\n}\nif (.@r>=11) {\n bonus2 bAddRace,RC_Undead,20;\n bonus2 bAddRace,RC_Angel,20;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26200,'Hippie_Rope','Hippie Rope','Weapon','Whip',1000,140,2,2,true,true,true,true,'Female',true,3,100,true,'.@r = getrefine(); .@lvl = getskilllv("DC_DANCINGLESSON"); bonus bAspdRate,.@lvl; if (.@r>=7) bonus bBaseAtk,(5*.@lvl); if (.@r>=9) bonus bAspd,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26212,'Heart_Whip','Heart Whip','Weapon','Whip',1200,100,190,2,2,true,true,true,true,'Female',true,4,170,true,'.@r = getrefine(); bonus bMatk,4*.@r; bonus2 bMagicAtkEle,Ele_Neutral,10; if (.@r>=9) bonus2 bSkillAtk,"WM_METALICSOUND",30; if (.@r>=11) bonus2 bSkillCooldown,"WM_METALICSOUND",-2000;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26213,'Scarlet_Ribbon','Scarlet Ribbon','Weapon','Whip',1200,180,2,2,true,true,true,true,'Female',true,4,170,true,'.@r = getrefine(); bonus bVariableCastrate,-10; bonus bLongAtkRate,.@r; if (.@r>=9) bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-1000; if (.@r>=11) bonus2 bSkillUseSPrate,"WM_SEVERE_RAINSTORM",20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26215,'aegis_26215','Safety Whip','Weapon','Whip',1400,200,2,2,true,true,true,true,'Female',true,4,170,true,'.@r = getrefine();\nbonus bLongAtkRate,10;\nbonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",10;\nif (.@r>=7) {\n bonus bVariableCastrate,-10;\n bonus bBaseAtk,40;\n}\nif (.@r>=9) {\n bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15;\n autobonus "{ bonus2 bAddSize,Size_All,15; }",1,10000,BF_WEAPON;\n}\nif (.@r>=11) {\n bonus bDelayrate,-20;\n bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26216,'aegis_26216','Royal Whip','Weapon','Whip',1000,100,2,2,true,true,true,true,'Female',true,4,170,true,'.@r = getrefine();\nbonus2 bMagicAtkEle,Ele_Neutral,10;\nbonus bMatk,180;\nbonus bUnbreakableWeapon;\nbonus bMatk,4*.@r;\nif (.@r>=9) {\n bonus2 bSkillCooldown,"WM_METALICSOUND",-1000;\n bonus2 bSkillAtk,"WM_METALICSOUND",20;\n bonus2 bSkillAtk,"WM_REVERBERATION",20;\n}\nif (.@r>=11) {\n bonus2 bMagicAddRace,RC_Undead,20;\n bonus2 bMagicAddRace,RC_Angel,20;\n bonus2 bSkillCooldown,"WM_METALICSOUND",-1000;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (28000,'Thanos_Katar','Thanos Katar','Weapon','Katar',10,1800,220,80,1,1,true,true,true,true,true,true,4,120,true,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000;','heal -1000,0;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28001,'Katar_Of_Evil_Slayer','Evil Slayer Ripper Katar','Weapon','Katar',1200,120,1,1,true,true,true,3,100,true,'bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; .@r = getrefine(); if(.@r>=9) { .@dmg = 5; if(.@r>=12) { .@dmg += 7; } bonus2 bAddClass,Class_All,.@dmg; }'); @@ -5414,6 +5437,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`we REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28038,'Meuchler-OS','Meuchler-OS','Weapon','Katar',20,1300,190,1,2,true,true,true,4,130,true,'.@r = getrefine(); bonus2 bAddClass,Class_All,3; if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",15; if (.@r >= 11) { bonus2 bAddSize,Size_Small,20; bonus2 bAddSize,Size_Medium,20; } } }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28042,'Ripper_Cross','Ripper Cross','Weapon','Katar',20,1500,250,1,2,true,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus2 bAddClass,Class_All,5; bonus bLongAtkRate,.@r; if (.@r>=9) bonus2 bSkillAtk,"GC_ROLLINGCUTTER",30; if (.@r>=11) bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",20;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28044,'Agudo_Filo','Agudo Filo','Weapon','Katar',20,2000,270,1,2,true,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bCritAtkRate,5; bonus bBaseAtk,4*.@r; if (.@r>=9) bonus2 bAddSize,Size_All,15; if (.@r>=11) { bonus bUnbreakableWeapon; bonus2 bAddClass,Class_All,7; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (28045,'aegis_28045','Bolt Crusher','Weapon','Katar',2000,300,1,2,true,true,true,true,true,true,4,170,'.@r = getrefine();\nbonus2 bAddClass,Class_All,10;\nbonus2 bSkillAtk,"GC_ROLLINGCUTTER",10;\nif (.@r>=7) {\n bonus bAspdRate,10;\n bonus bBaseAtk,60;\n}\nif (.@r>=9) {\n bonus2 bSkillAtk,"GC_ROLLINGCUTTER",15;\n autobonus "{ bonus2 bAddSize,Size_All,20; }",1,10000,BF_WEAPON;\n}\nif (.@r>=11) {\n bonus bDelayrate,-20;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (28046,'aegis_28046','Royal Katar','Weapon','Katar',1500,200,1,2,true,true,true,true,true,true,4,170,'.@r = getrefine();\nbonus2 bAddClass,Class_All,5;\nbonus bBaseAtk,5*.@r;\nif (.@r>=9) {\n bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",20;\n bonus2 bSkillAtk,"GC_ROLLINGCUTTER",20;\n}\nif (.@r>=11) {\n bonus2 bAddRace,RC_Undead,20;\n bonus2 bAddRace,RC_Angel,20;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`,`unequip_script`) VALUES (28100,'Thanos_Axe','Thanos Axe','Weapon','2hAxe',10,4000,300,80,1,1,true,true,true,true,true,true,true,true,4,120,true,'bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000;','heal -1000,0;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`job_blacksmith`,`job_crusader`,`job_knight`,`job_merchant`,`job_swordman`,`class_upper`,`class_third_upper`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28101,'Tornado_Axe','Tornado Axe','Weapon','2hAxe',30000,4000,320,1,1,true,true,true,true,true,true,true,true,true,true,4,100,true,'bonus bAtkEle,Ele_Wind; bonus2 bSkillCooldown,"NC_AXETORNADO",-1000;'); @@ -5427,6 +5451,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`pr REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28116,'Mine_Worker\'s_Pickaxe','Mine Worker\'s Pickaxe','Weapon','2hAxe',10,4000,300,1,2,true,true,true,true,true,true,3,100,true,'bonus bUnbreakableWeapon; autobonus "{ bonus bCritical,20; }",5,7000,BF_SHORT,"{ specialeffect2 EF_ENCHANCE; }"; .@r = getrefine(); if (.@r>=9) { bonus bCritAtkRate,15; } else if (.@r>=7) { bonus bCritAtkRate,5; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28136,'Blasti-OS','Blasti-OS','Weapon','2hAxe',20,4500,400,1,2,true,true,true,true,true,true,4,130,true,'.@r = getrefine(); .@red = 10; bonus bUnbreakableWeapon; if (.@r >= 7) { .@red += 15; if (.@r >= 9) { bonus bLongAtkRate,15; if (.@r >= 11) { bonus bDelayrate,-10; } } } bonus2 bSubSize,Size_Medium,.@red; bonus2 bSubSize,Size_Large,.@red;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28138,'Maxi_Spanner','Maxi Spanner','Weapon','2hAxe',4500,340,1,2,true,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bBaseAtk,4*.@r; bonus bUnbreakableWeapon; bonus2 bSubSize,Size_Small,10; bonus2 bSubSize,Size_Medium,10; if (.@r>=9) { bonus2 bSkillCooldown,"NC_AXETORNADO",-1000; bonus2 bSkillCooldown,"NC_MAGMA_ERUPTION",-1000; } if (.@r>=11) bonus2 bSkillAtk,"NC_AXETORNADO",15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (28140,'aegis_28140','Saw Axe','Weapon','1hAxe',5000,350,1,2,true,true,true,true,true,true,4,170,'.@r = getrefine();\nbonus2 bAddClass,Class_All,10;\nbonus bUnbreakableWeapon;\nbonus2 bSkillAtk,"NC_ARMSCANNON",10;\nif (.@r>=7) {\n bonus bVariableCastrate,-10;\n bonus bBaseAtk,60;\n}\nif (.@r>=9) {\n bonus bLongAtkRate,10;\n autobonus "{ bonus2 bAddSize,Size_All,15; }",1,5000,BF_WEAPON;\n}\nif (.@r>=11) {\n bonus bDelayrate,-20;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (28141,'aegis_28141','Guardian Knight Battle Axe','Weapon','1hAxe',5000,270,1,2,true,true,true,true,true,true,4,170,'.@r = getrefine();\nbonus2 bSubSize,Size_Medium,10;\nbonus2 bMagicSubSize,Size_Medium,10;\nbonus2 bSubSize,Size_Large,10;\nbonus2 bMagicSubSize,Size_Large,10;\nbonus2 bAddClass,Class_All,5;\nbonus bUnbreakableWeapon;\nbonus bLongAtkRate,.@r;\nif (.@r>=9) {\n bonus2 bSkillCooldown,"NC_AXETORNADO",-1000;\n bonus2 bSkillAtk,"NC_AXETORNADO",20;\n bonus2 bSkillAtk,"NC_MAGMA_ERUPTION",20;\n}\nif (.@r>=11) {\n bonus2 bAddRace,RC_Undead,20;\n bonus2 bAddRace,RC_Angel,20;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (28200,'END_OF_HORIZO','End Of The Horizon','Weapon','Grenade',2700000,2400,410,9,1,true,true,true,4,110,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28201,'Southern_Cross_R','Southern Cross','Weapon','Grenade',2800000,2000,480,9,true,true,true,4,141,true,'bonus3 bAutoSpell,"GC_CROSSIMPACT",1,50;'); @@ -5584,6 +5609,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`pr REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28626,'Illusion_Tablet','Illusion Tablet','Weapon','Book',800,170,1,2,true,true,true,true,4,100,true,'.@val = 10 + 10*(min(getrefine(),10)/3); bonus2 bAddEle,Ele_Dark,.@val; bonus2 bAddEle,Ele_Undead,.@val; bonus2 bAddEle,Ele_Poison,.@val; bonus2 bAddEle,Ele_Ghost,.@val; bonus2 bSubDefEle,Ele_Dark,-30;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_priest`,`job_sage`,`job_stargladiator`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28629,'Circuit_Board-OS','Circuit Board-OS','Weapon','Book',20,1200,180,1,2,true,true,true,true,4,130,true,'.@r = getrefine(); bonus2 bAddClass,Class_All,3; if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus2 bAddSize,Size_Small,20; bonus2 bAddSize,Size_Medium,20; if (.@r >= 11) { bonus bCritAtkRate,20; } } }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28633,'Boltijin','Boltijin','Weapon','Book',20,800,120,175,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bMatk,4*.@r; if (.@r>=9) .@val = 30; if (.@r>=11) { bonus2 bSkillAtk,"WZ_EARTHSPIKE",50; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",50; } bonus2 bSkillAtk,"MG_FIREBOLT",20+.@val; bonus2 bSkillAtk,"MG_COLDBOLT",20+.@val; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",20+.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_stargladiator`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28635,'aegis_28635','Safety Manual','Weapon','Book',700,200,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine();\nbonus bCritical,3;\nbonus2 bAddClass,Class_All,10;\nif (.@r>=7) {\n bonus bAspdRate,10;\n bonus bBaseAtk,40;\n}\nif (.@r>=9) {\n autobonus "{ bonus2 bAddSize,Size_All,15; }",1,10000,BF_WEAPON;\n bonus bCritAtkRate,15;\n}\nif (.@r>=11) {\n bonus bCritAtkRate,15;\n bonus bDelayrate,-20;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28636,'aegis_28636','Royal Sage Book','Weapon','Book',1000,90,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine();\nbonus2 bMagicAtkEle,Ele_Wind,5;\nbonus2 bMagicAtkEle,Ele_Water,5;\nbonus bMatk,170;\nbonus bUnbreakableWeapon;\nbonus bMatk,4*.@r;\nif (.@r>=9) {\n bonus2 bSkillAtk,"SO_DIAMONDDUST",20;\n bonus2 bSkillAtk,"SO_VARETYR_SPEAR",20;\n}\nif (.@r>=11) {\n bonus2 bMagicAddRace,RC_Undead,20;\n bonus2 bMagicAddRace,RC_Angel,20;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28700,'Ru_Gold_Dagger','Ru Gold Dagger','Weapon','Dagger',1000,160,1,2,true,true,true,true,true,3,120,true,'bonus bStr,8; bonus bInt,8;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28701,'Ru_Gold_Knife','Ru Gold Knife','Weapon','Dagger',500,160,1,2,true,true,true,true,true,3,120,true,'bonus bVit,8; bonus bInt,8;'); @@ -5603,6 +5629,8 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`pr REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (28766,'Repent_Slasher','Repent Slasher','Weapon','Dagger',20,700,100,1,3,true,true,true,true,true,4,170,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28767,'Jack_The_Knife','Jack The Knife','Weapon','Dagger',20,900,195,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bBaseAtk,4*.@r; bonus2 bSkillAtk,"RG_BACKSTAP",40; if (.@r>=9) bonus2 bSkillAtk,"SC_FATALMENACE",30; if (.@r>=11) bonus2 bSkillUseSPrate,"SC_FATALMENACE",10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28768,'Platinum_Dagger','Platinum Dagger','Weapon','Dagger',20,1500,150,170,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bMatk,4*.@r; bonus bMatkRate,5; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Fire,15; bonus2 bMagicAtkEle,Ele_Wind,15; bonus2 bMagicAtkEle,Ele_Water,15; bonus2 bMagicAtkEle,Ele_Earth,15; } if (.@r>=11) autobonus "{ bonus bMatk,100; bonus2 bMagicAddSize,Size_All,30; }",50,10000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; /* Unknow Rates and Specialeffect */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28771,'aegis_28771','Metal Detector Mk47','Weapon','Dagger',1000,200,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine();\nbonus2 bAddClass,Class_All,10;\nbonus2 bSkillAtk,"GC_CROSSIMPACT",10;\nif (.@r>=7) {\n bonus bAspdRate,10;\n bonus bBaseAtk,40;\n}\nif (.@r>=9) {\n bonus2 bSkillAtk,"GC_CROSSIMPACT",15;\n autobonus "{ bonus2 bAddSize,Size_All,15; }",1,10000,BF_WEAPON;\n}\nif (.@r>=11) {\n bonus bDelayrate,-20;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28772,'aegis_28772','Jewel Detector Mk47','Weapon','Dagger',1000,190,180,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine();\nbonus bMatkRate,10;\nbonus2 bMagicAtkEle,Ele_Neutral,7;\nbonus2 bMagicAtkEle,Ele_Fire,7;\nif (.@r>=7) {\n bonus bAspdRate,10;\n bonus bMatk,40;\n}\nif (.@r>=9) {\n bonus2 bMagicAtkEle,Ele_Neutral,8;\n bonus2 bMagicAtkEle,Ele_Fire,8;\n autobonus "{ bonus2 bMagicAddSize,Size_All,15; }",1,10000,BF_WEAPON;\n}\nif (.@r>=11) {\n bonus bDelayrate,-20;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28774,'aegis_28774','Royal Gladius (R)','Weapon','Dagger',1500,200,1,2,true,true,true,true,true,4,170,true,'bonus2 bAddClass,Class_All,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_assassin`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`) VALUES (28775,'aegis_28775','Royal Gladius (L)','Weapon','Dagger',1000,100,1,3,true,true,true,true,true,4,170,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_rogue`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (28776,'aegis_28776','Royal Magician Dagger','Weapon','Dagger',1500,200,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine();\nbonus bMatkRate,5;\nbonus bMatk,170;\nbonus bMatk,4*.@r;\nif (.@r>=9) {\n bonus2 bMagicAtkEle,Ele_Neutral,15;\n bonus2 bMagicAtkEle,Ele_Fire,15;\n}\nif (.@r>=11) {\n bonus2 bMagicAddRace,RC_Undead,20;\n bonus2 bMagicAddRace,RC_Angel,20;\n}'); @@ -6264,9 +6292,11 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`pr REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32023,'Argen_Blanco','Argen Blanco','Weapon','1hSpear',20,1000,200,3,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus2 bSkillAtk,"KN_BRANDISHSPEAR",30; bonus bBaseAtk,4*.@r; if (.@r>=9) bonus2 bSkillCooldown,"RK_HUNDREDSPEAR",-1500; if (.@r>=11) bonus2 bSkillAtk,"KN_BRANDISHSPEAR",20;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32024,'Harve','Harve','Weapon','1hSpear',20,1500,210,3,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus2 bSkillAtk,"PA_SHIELDCHAIN",40; bonus bLongAtkRate,.@r; if (.@r>=9) bonus2 bSkillAtk,"LG_SHIELDPRESS",30; if (.@r>=11) { bonus2 bSkillAtk,"PA_SHIELDCHAIN",20; bonus2 bSkillAtk,"LG_SHIELDPRESS",20; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32025,'Fortridge','Fortridge','Weapon','1hSpear',20,1700,205,3,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus bDelayrate,-.@r; bonus2 bAddClass,Class_All,5; if (.@r>=9) bonus2 bSkillAtk,"LG_CANNONSPEAR",20; if (.@r>=11) bonus2 bSkillAtk,"LG_OVERBRAND",20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32026,'aegis_32026','Blocking Spear','Weapon','1hSpear',3000,210,3,2,true,true,true,true,true,4,170,true,'.@r = getrefine();\nbonus2 bAddClass,Class_All,10;\nbonus2 bSkillAtk,"LG_BANISHINGPOINT",10;\nif (.@r>=7) {\n bonus bAspdRate,10;\n bonus bBaseAtk,40;\n}\nif (.@r>=9) {\n bonus2 bSkillAtk,"LG_BANISHINGPOINT",15;\n autobonus "{ bonus2 bAddSize,Size_All,15; }",1,10000,BF_WEAPON;\n}\nif (.@r>=11) {\n bonus bDelayrate,-20;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32027,'aegis_32027','Guardian Knight Spear','Weapon','1hSpear',4000,205,3,2,true,true,true,true,true,4,170,true,'.@r = getrefine();\nbonus bLongAtkRate,.@r;\nif (.@r>=9) {\n bonus2 bSkillAtk,"LG_BANISHINGPOINT",20;\n}\nif (.@r>=11) {\n bonus2 bAddRace,RC_Undead,20;\n bonus2 bAddRace,RC_Angel,20;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32107,'Black_Circle','Black Circle','Weapon','Whip',1200,100,190,2,2,true,true,true,true,'Male',true,4,170,true,'.@r = getrefine(); bonus bMatk,4*.@r; bonus2 bMagicAtkEle,Ele_Neutral,10; if (.@r>=9) bonus2 bSkillAtk,"WM_METALICSOUND",30; if (.@r>=11) bonus2 bSkillCooldown,"WM_METALICSOUND",-2000;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32108,'Antique_Cello','Antique Cello','Weapon','Musical',1200,180,2,2,true,true,true,true,'Male',true,4,170,true,'.@r = getrefine(); bonus bVariableCastrate,-10; bonus bLongAtkRate,.@r; if (.@r>=9) bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-1000; if (.@r>=11) bonus2 bSkillUseSPrate,"WM_SEVERE_RAINSTORM",20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32110,'aegis_32110','Safety Lute','Weapon','Musical',1400,200,1,2,true,true,true,true,'Male',true,4,170,true,'.@r = getrefine();\nbonus bLongAtkRate,10;\nbonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",10;\nif (.@r>=7) {\n bonus bVariableCastrate,-10;\n bonus bBaseAtk,40;\n}\nif (.@r>=9) {\n bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",15;\n autobonus "{ bonus2 bAddSize,Size_All,15; }",1,10000,BF_WEAPON;\n}\nif (.@r>=11) {\n bonus bDelayrate,-20;\n bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_barddancer`,`class_third`,`class_third_upper`,`class_third_baby`,`gender`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32111,'aegis_32111','Royal Chello','Weapon','Musical',1000,90,1,2,true,true,true,true,'Male',true,4,170,true,'.@r = getrefine();\nbonus2 bMagicAtkEle,Ele_Neutral,10;\nbonus bMatk,180;\nbonus bUnbreakableWeapon;\nbonus bMatk,4*.@r;\nif (.@r>=9) {\n bonus2 bSkillCooldown,"WM_METALICSOUND",-1000;\n bonus2 bSkillAtk,"WM_METALICSOUND",20;\n bonus2 bSkillAtk,"WM_REVERBERATION",20;\n}\nif (.@r>=11) {\n bonus2 bMagicAddRace,RC_Undead,20;\n bonus2 bMagicAddRace,RC_Angel,20;\n bonus2 bSkillCooldown,"WM_METALICSOUND",-1000;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (32203,'Accelerator_Chip','Accelerator Chip','Armor',20,100,1,true,true,100,'bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bAspdRate,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (32204,'Immortal_Dog_Tag','Immortal Dog Tag','Armor',20,100,1,true,true,100,'bonus bBaseAtk,50; bonus bMatk,50; bonus2 bSubRace,RC_Undead,4;'); @@ -6288,14 +6318,20 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`equip_level_min`,`script`) VALUES (32238,'Illusion_Morpheus\'s_Ring','Illusion Morpheus\'s Ring','Armor',20,100,1,true,130,'bonus bInt,3; bonus bMaxSPrate,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (32239,'Illusion_Morpheus\'s_Bracelet','Illusion Morpheus\'s Bracelet','Armor',20,100,1,true,130,'bonus bInt,3; bonus bMaxSPrate,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (32242,'Old_Detachment_Ring','Old Detachment Ring','Armor',20,true,true,100,'bonus bMdef,10; bonus2 bSubRace,RC_Player_Human,3;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_right_accessory`,`equip_level_min`,`script`) VALUES (32248,'aegis_32248','Safety Pendant R','Armor',100,10,1,true,170,'bonus bAspdRate,5;\nbonus bAllStats,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_right_accessory`,`equip_level_min`,`script`) VALUES (32249,'aegis_32249','Safety Pendant B','Armor',100,10,1,true,170,'bonus bAllStats,5;\nbonus bVariableCastrate,-5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (32250,'aegis_32250','Safety Epaulet R','Armor',100,10,1,true,170,'bonus2 bAddClass,Class_All,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (32251,'aegis_32251','Safety Epaulet B','Armor',100,10,1,true,170,'bonus bMatkRate,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (32258,'Ring_of_Jupiter','Ring of Jupiter','Armor',20,500,2,1,true,true,100,'skill "AL_BLESSING",5; if (getequipid(EQI_ACC_R) == 32258) { bonus bBaseAtk,15*(readparam(bLuk)/10); bonus bMatk,15*(readparam(bLuk)/10); if (readparam(bLuk) >= 125) { bonus2 bAddClass,Class_Boss,15; bonus2 bMagicAddClass,Class_Boss,15; } } if (getequipid(EQI_ACC_L) == 32258) { bonus bMaxHPRate,2*(readparam(bVit)/10); bonus bMaxSPRate,2*(readparam(bVit)/10); if (readparam(bVit) >= 125) { bonus bDef,300; bonus bMdef,50; bonus2 bSubRace,RC_Player_Human,3; } }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (32262,'Rasen_Fuma_Orb','Rasen Fuma\'s Orb','Armor',20,100,1,true,true,100,'bonus bStr,5; bonus bAgi,5; bonus bVit,5; bonus2 bAddClass,Class_All,5; if (getskilllv("KO_ZANZOU")>=5) { bonus2 bSkillAtk,"KO_HUUMARANKA",Baselevel/4; bonus2 bSkillAtk,"NJ_HUUMA",2*(Baselevel/4); } if (getskilllv("KO_KYOUGAKU")>=5) { bonus2 bSkillUseSP,"KO_HUUMARANKA",10; bonus2 bSkillCooldown,"KO_HUUMARANKA",-100; } if (getskilllv("KO_MUCHANAGE")==10) { bonus2 bHPDrainRate,50,1; } if (getskilllv("KO_MEIKYOUSISUI")>=5) { bonus bSPDrainValue,2; bonus2 bSkillCooldown,"KO_IZAYOI",-25000; } if (getskilllv("KO_SETSUDAN")>=5) { bonus2 bVariableCastrate,"KO_HUUMARANKA",-50; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`equip_level_min`,`script`) VALUES (32263,'Shield_Ring','Shield Ring','Armor',20,400,1,true,true,100,'bonus bStr,5; bonus bInt,5; bonus bDex,5; bonus2 bAddClass,Class_All,5; if (getskilllv("LG_EARTHDRIVE")==5) bonus bDelayrate,-30; if (getskilllv("LG_INSPIRATION")==5) bonus2 bSkillCooldown,"LG_EARTHDRIVE",-1500; if (getskilllv("CR_DEVOTION")==5) { bonus bStr,5; bonus bInt,5; bonus bDex,5; bonus bBaseAtk,100; } if (getskilllv("LG_PINPOINTATTACK")==5) { bonus2 bSkillVariableCast,"LG_EARTHDRIVE",-500; bonus2 bSkillUseSP,"LG_EARTHDRIVE",25; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32301,'Illusion_Gold_Lux','Illusion Gold Lux','Weapon','Revolver',20,1800,160,7,2,true,true,true,true,4,120,true,'.@r = getrefine(); bonus bHit,10; bonus bLongAtkRate,3*(.@r/2); if (.@r >= 7) { bonus2 bSkillAtk,"GS_DESPERADO",40; if (.@r >= 9) { bonus2 bSkillCooldown,"RL_HEAT_BARREL",-2000; if (.@r >= 11) { bonus2 bSkillAtk,"RL_FIREDANCE",30; } } }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32302,'Crimson_Rose','Crimson Rose','Weapon','Revolver',20,700,150,7,2,true,true,true,4,100,true,'.@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,3*(.@r/3); if (.@r >= 7) { bonus bAspd,1; bonus2 bAddClass,Class_All,5; if (.@r >= 9) { bonus bCritAtkRate,20; if (.@r >= 11) { autobonus3 "{ bonus bCritical,20; bonus bLongAtkRate,15; }",1000,60000,"RL_HEAT_BARREL"; } } }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (32303,'aegis_32303','Bolt Revolver','Weapon','Revolver',1800,200,7,2,true,true,true,true,4,170,'.@r = getrefine();\nbonus bLongAtkRate,15;\nbonus2 bSkillAtk,"RL_FIREDANCE",15;\nif (.@r>=7) {\n bonus bAspdRate,10;\n bonus bBaseAtk,60;\n}\nif (.@r>=9) {\n bonus2 bSkillAtk,"RL_FIREDANCE",20;\n autobonus "{ bonus2 bAddSize,Size_All,20; }",1,10000,BF_WEAPON;\n}\nif (.@r>=11) {\n bonus bDelayrate,-20;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_gunslinger`,`job_rebellion`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`script`) VALUES (32304,'aegis_32304','Royal Revolver','Weapon','Revolver',700,150,7,2,true,true,true,true,4,170,'.@r = getrefine();\nbonus bLongAtkRate,15;\nbonus bBaseAtk,4*.@r;\nif (.@r>=9) {\n bonus2 bSkillAtk,"RL_FIREDANCE",20;\n}\nif (.@r>=11) {\n bonus2 bAddRace,RC_Undead,20;\n bonus2 bAddRace,RC_Angel,20;\n bonus2 bSkillCooldown,"RL_HEAT_BARREL",-5000;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_crusader`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32350,'Farthezan','Farthezan','Weapon','1hSword',20,1100,130,180,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus2 bSkillAtk,"PA_PRESSURE",40; bonus bVariableCastrate,-.@r; if (.@r>=9) bonus2 bSkillAtk,"LG_RAYOFGENESIS",30; if (.@r>=11) { bonus2 bSkillAtk,"LG_RAYOFGENESIS",20; bonus2 bSkillAtk,"PA_PRESSURE",20; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32351,'Estal','Estal','Weapon','1hSword',20,700,195,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine(); bonus2 bSkillCooldown,"GN_SPORE_EXPLOSION",-1000; bonus bBaseAtk,4*.@r; if (.@r>=11) .@val = 50; else if (.@r>=9) .@val = 30; bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",.@val;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32352,'aegis_32352','Safety Saber','Weapon','1hSword',2500,200,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine();\nbonus2 bAddClass,Class_All,10;\nbonus2 bSkillAtk,"GN_CARTCANNON",10;\nif (.@r>=7) {\n bonus bVariableCastrate,-10;\n bonus bBaseAtk,40;\n}\nif (.@r>=9) {\n bonus bLongAtkRate,7;\n bonus2 bSkillAtk,"GN_CARTCANNON",15;\n}\nif (.@r>=11) {\n bonus bDelayrate,-20;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_crusader`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32353,'aegis_32353','Guardian Knight Jewel Sword','Weapon','1hSword',4000,130,180,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine();\nbonus bMaxHPrate,.@r;\nbonus2 bSkillAtk,"CR_GRANDCROSS",2*.@r;\nif (.@r>=9) {\n bonus2 bSkillAtk,"LG_SHIELDPRESS",20;\n}\nif (.@r>=11) {\n bonus2 bAddRace,RC_Undead,20;\n bonus2 bMagicAddRace,RC_Undead,20;\n bonus2 bAddRace,RC_Angel,20;\n bonus2 bMagicAddRace,RC_Angel,20;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_blacksmith`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32401,'aegis_32401','Royal Pillar','Weapon','Mace',5000,220,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine();\nbonus2 bAddClass,Class_All,5;\nbonus bUnbreakableWeapon;\nbonus bLongAtkRate,.@r;\nif (.@r>=9) {\n bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",20;\n bonus2 bSkillAtk,"NC_ARMSCANNON",20;\n}\nif (.@r>=11) {\n bonus2 bAddRace,RC_Undead,20;\n bonus2 bAddRace,RC_Angel,20;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_alchemist`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (32402,'aegis_32402','Royal Syringe','Weapon','Mace',1500,210,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine();\nbonus2 bAddClass,Class_All,5;\nbonus bUnbreakableWeapon;\nbonus bLongAtkRate,.@r;\nif (.@r>=9) {\n bonus2 bSkillAtk,"GN_CARTCANNON",20;\n bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",20;\n}\nif (.@r>=11) {\n bonus2 bAddRace,RC_Undead,20;\n bonus2 bAddRace,RC_Angel,20;\n}'); @@ -6447,6 +6483,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`pr REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (530006,'Up_Undine_Spear_K','Patent Aquatic Spear','Weapon','1hSpear',20,1400,195,3,2,true,true,true,true,true,4,150,true,'.@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bLongAtkRate,.@r/3*4; if (.@r>=7){ bonus2 bSkillAtk,"LG_CANNONSPEAR",15; bonus2 bSkillAtk,"LG_BANISHINGPOINT",15; bonus bAspdRate,10; } if (.@r>=9){ bonus2 bSkillAtk,"LG_CANNONSPEAR",20; bonus2 bSkillAtk,"LG_BANISHINGPOINT",20; } if (.@r>=11){ bonus bPerfectHitAddRate,7; bonus bMaxSPrate,5; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_stargladiator`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (540010,'Up_Thousand_Sun','Patent One Sky One Sun','Weapon','Book',1100,200,1,2,true,true,true,true,true,4,150,true,'.@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bShortAtkRate,4*(.@r/3); if (.@r>=7){ bonus2 bSkillAtk,"SJ_PROMINENCEKICK",20; bonus bAspdRate,10; } if (.@r>=9){ bonus2 bSkillAtk,"SJ_SOLARBURST",25; } if (.@r>=11){ bonus2 bAddSize,Size_All,15; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_priest`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (540011,'Up_Demon_Hunting_Bible','Patent Exorcist\'s Bible','Weapon','Book',20,700,205,190,1,2,true,true,true,true,true,4,150,true,'.@r = getrefine(); bonus bBaseAtk,.@r/2*10; bonus bMatk,.@r/2*10; bonus2 bSkillAtk,"AB_DUPLELIGHT",25*(.@r/3); bonus2 bSkillAtk,"AB_JUDEX",25*(.@r/3); if (.@r>=7){ bonus bAspdRate,10; bonus2 bMagicAtkEle,Ele_Holy,15; } if (.@r>=9){ bonus2 bSkillAtk,"AB_DUPLELIGHT",30; bonus2 bSkillAtk,"AB_JUDEX",30; } if (.@r>=11){ .@i = getskilllv("AB_JUDEX"); bonus3 bAutoSpell,"AB_JUDEX",(.@i > 5 ? .@i : 5),100; }'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`range`,`slots`,`job_summoner`,`class_normal`,`class_upper`,`class_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (550006,'aegis_550006','Safety Foxtail','Weapon','Staff',1500,300,1,2,true,true,true,true,true,4,170,true,'.@r = getrefine();\nbonus bMatk,350;\nbonus bUnbreakableWeapon;\nbonus bMatkRate,7;\nbonus2 bAddClass,Class_All,7;\nbonus2 bSkillAtk,"SU_CN_METEOR",15;\nbonus2 bSkillAtk,"SU_PICKYPECK",15;\nif (.@r>=7) {\n bonus bAspdRate,10;\n bonus bVariableCastrate,-10;\n}\nif (.@r>=9) {\n bonus2 bSkillAtk,"SU_CN_METEOR",20;\n bonus2 bSkillAtk,"SU_PICKYPECK",20;\n autobonus "{ bonus2 bAddSize,Size_All,10; bonus2 bMagicAddSize,Size_All,10; }",1,10000,BF_MAGIC;\n}\nif (.@r>=11) {\n bonus bDelayrate,-20;\n}'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (550007,'Freezing_Rod','Chilling Cane','Weapon','Staff',500,40,150,1,2,true,true,true,true,true,4,100,true,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,.@r/2*10; bonus2 bSkillAtk,"SO_DIAMONDDUST",.@r/3*8; if (.@r>=9) { bonus2 bMagicAddEle,Ele_Undead,10; } if (.@r>=11) { bonus2 bMagicAtkEle,Ele_Water,7; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (550012,'Up_Shadow_Staff_K','Patent Shadow Staff','Weapon','Staff',20,750,40,195,1,2,true,true,true,true,true,4,150,true,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,.@r/2*15; bonus2 bSkillAtk,"SO_EARTHGRAVE",12*(.@r/3); if (.@r>=7){ bonus2 bMagicAtkEle,Ele_Earth,15; bonus2 bMagicAtkEle,Ele_Neutral,15; } if (.@r>=9){ bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",25; bonus bVariableCastrate,-7; } if (.@r>=11){ bonus bVariableCastrate,-8; bonus2 bSkillCooldown,"SO_PSYCHIC_WAVE",-1000; }'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`weight`,`attack`,`magic_attack`,`range`,`slots`,`job_sage`,`class_third`,`class_third_upper`,`class_third_baby`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (550013,'Up_Freezing_Rod','Patent Chilling Cane','Weapon','Staff',750,40,195,1,2,true,true,true,true,true,4,150,true,'bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,.@r/2*10; bonus2 bSkillAtk,"SO_DIAMONDDUST",.@r/3*12; if (.@r>=7){ bonus2 bMagicAddEle,Ele_All,15; bonus2 bSkillAtk,"SO_VARETYR_SPEAR",15; } if (.@r>=9){ bonus2 bSkillAtk,"SO_VARETYR_SPEAR",20; bonus bVariableCastrate,-7; } if (.@r>=11){ bonus bVariableCastrate,-8; bonus2 bSkillCooldown,"SO_VARETYR_SPEAR",-2000; }'); diff --git a/sql-files/item_db_re_etc.sql b/sql-files/item_db_re_etc.sql index 639356e2d6..eaec6cf5ac 100644 --- a/sql-files/item_db_re_etc.sql +++ b/sql-files/item_db_re_etc.sql @@ -2158,6 +2158,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VAL REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6985,'Reactor_A_FROZ_','Frozen Reactor Blueprint','Etc',10); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (6986,'Reactor_A_ASPD_','ASPD Reactor Blueprint','Etc',10); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`) VALUES (6999,'HPdrainStone_Top','HP Absorption Stone (Upper)','Etc',10,100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (7000,'aegis_7000','Event Stone Coin','Etc'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7001,'Mould_Powder','Mould Powder','Etc',466,10,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7002,'Ogre_Tooth','Ogre Tooth','Etc',658,10,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`flag_buyingstore`) VALUES (7003,'Anolian_Skin','Anolian Skin','Etc',968,10,true); @@ -3501,6 +3502,28 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (25703,'M_M_Overpower','Modification Module (Overpower)','Card',20,10,'autobonus "{ bonus bStr,50; bonus2 bAddClass,Class_All,15; bonus bMatkRate,-15; }",20,10000,BF_WEAPON; /* unknown rate */'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (25704,'M_M_Fatal_Flash','Modification Module (Fatal Flash)','Card',20,10,'autobonus "{ bonus bStr,50; bonus bCritAtkRate,10; bonus2 bHPLossRate,300,1000; }",20,10000,BF_WEAPON; /* unknown rate */'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`script`) VALUES (25705,'M_M_Lucky_Strike','Modification Module (Lucky Strike)','Card',20,10,'autobonus "{ bonus bLuk,50; bonus2 bMagicAtkEle,Ele_All,10; bonus2 bHPLossRate,300,1000; }",20,10000,BF_MAGIC; /* unknown rate */'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (25759,'aegis_25759','Green Dragon Orb','Etc',10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (25760,'aegis_25760','Blue Dragon Orb','Etc',10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (25761,'aegis_25761','Red Dragon Orb','Etc',10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (25762,'aegis_25762','Gold Dragon Orb','Etc',10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (25763,'aegis_25763','Purple Dragon Orb','Etc',10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (25764,'aegis_25764','Silver Dragon Orb','Etc',10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (25765,'aegis_25765','Large Dragon Bone','Etc',200,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (25766,'aegis_25766','Small Dragon Bone','Etc',100,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (25767,'aegis_25767','Angel\'s Dream','Etc',10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (25768,'aegis_25768','Valkyrie Ingrid\'s Armor Fragment','Etc',30); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (25769,'aegis_25769','Valkyrie Reginleif\'s Armor Fragment','Etc',30); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (25770,'aegis_25770','Valkyrie Reginleif\'s Armor','Etc',100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (25771,'aegis_25771','Valkyrie Ingrid\'s Armor','Etc',100); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (25809,'aegis_25809','Redium','Etc',true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (25810,'aegis_25810','Rindium','Etc',true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (25811,'aegis_25811','Odium','Etc',true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (25812,'aegis_25812','Purdium','Etc',true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`flag_buyingstore`) VALUES (25813,'aegis_25813','Whidium','Etc',true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (25814,'aegis_25814','Dynite','Etc',10,true); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (25815,'Ein_SOLIDDUST','Hardened Dust','Etc'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (25816,'Ein_RUSTHELM','Broken Trap','Etc',10); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`) VALUES (25817,'aegis_25817','Bizarre Stone Carvings','Etc',50); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (25864,'aegis_25864','Sealed Temporal Circlet','Etc',100,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (25865,'aegis_25865','Temperal Gemstone','Etc',10,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`flag_buyingstore`) VALUES (25866,'aegis_25866','Temporal Spell','Etc',10,true); @@ -3965,6 +3988,27 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,` REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (31024,'As_Bdy_Knight_Card','Immortal Cursed Knight Card','Card',20,10,true,true,'bonus2 bAddClass,Class_All,10;\nbonus5 bAutoSpell,"RK_IGNITIONBREAK",5,20,BF_WEAPON,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (31025,'As_Wind_Ghost_Card','Immortal Wind Ghost Card','Card',20,10,true,true,'bonus bMatkRate,10;\nbonus5 bAutoSpell,"SO_CLOUD_KILL",5,10,BF_MAGIC,1;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (31026,'As_Ragged_Golem_Card','Stephane Jack Earnest Wolf Card','Card',20,10,true,true,'bonus5 bAutoSpellWhenHit,"SO_FIREWALK",5,35,BF_WEAPON,0;\nbonus5 bAutoSpellWhenHit,"SO_ELECTRICWALK",5,80,BF_MAGIC,0;\nautobonus "{ bonus bFlee,200; }",30,10000,BF_WEAPON,"{ specialeffect2 EF_TEIHIT1; }";\nautobonus "{ bonus bSpeedRate,25; }",25,10000,BF_MAGIC,"{ specialeffect2 EF_POTION_BERSERK; }";'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (300001,'aegis_300001','Poisonous Card','Card',10,true,true,'bonus2 bAddEle,Ele_Poison,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (300002,'aegis_300002','Toxious Card','Card',10,true,true,'bonus bLongAtkDef,5;\nbonus bMaxHPrate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (300003,'aegis_300003','White Porcellio Card','Card',10,true,true,'bonus bBaseAtk,20;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (300004,'aegis_300004','Neo Mineral Card','Card',10,true,true,'bonus bDef,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (300005,'aegis_300005','Abyssman Card','Card',10,true,true,'bonus bMaxHP,10;\nbonus2 bSkillAtk,"SO_EARTHGRAVE",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (300006,'aegis_300006','Jewelry Ant Card','Card',10,true,true,'bonus5 bAutoSpell,"SO_PSYCHIC_WAVE",1,100,BF_WEAPON,1;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (300007,'aegis_300007','Jeweled Ungoliant Card','Card',10,true,true,'bonus2 bAddEle,Ele_Fire,40;\nbonus2 bAddEle,Ele_Water,40;\nbonus2 bAddRace,RC_Formless,40;\nbonus2 bAddRace,RC_Plant,40;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (300008,'aegis_300008','Angelgolt Card','Card',10,true,true,'bonus2 bMagicAddRace,RC_Demon,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (300009,'aegis_300009','Spectrum Plasma Card','Card',10,true,true,'.@r = getequiprefinerycnt(EQI_HAND_R);\nif (getiteminfo(getequipid(EQI_HAND_R),11) == W_STAFF || getiteminfo(getequipid(EQI_HAND_R),11) == W_2HSTAFF) {\n bonus2 bMagicAtkEle,Ele_Ghost,10;\n}\nif (.@r>=10) {\n bonus2 bMagicAtkEle,Ele_Ghost,10;\n}\nif (.@r>=14) {\n bonus2 bMagicAtkEle,Ele_Ghost,10;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (300010,'aegis_300010','Arch Plasma Card','Card',10,true,true,'.@r = getequiprefinerycnt(EQI_HAND_R);\nif (getiteminfo(getequipid(EQI_HAND_R),11) == W_STAFF || getiteminfo(getequipid(EQI_HAND_R),11) == W_2HSTAFF) {\n bonus2 bMagicAtkEle,Ele_Wind,10;\n}\nif (.@r>=10) {\n bonus2 bMagicAtkEle,Ele_Wind,10;\n}\nif (.@r>=14) {\n bonus2 bMagicAtkEle,Ele_Wind,10;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (300011,'aegis_300011','Holy Frus Card','Card',10,true,true,'.@r = getequiprefinerycnt(EQI_HAND_R);\nif (getiteminfo(getequipid(EQI_HAND_R),11) == W_STAFF || getiteminfo(getequipid(EQI_HAND_R),11) == W_2HSTAFF) {\n bonus2 bMagicAtkEle,Ele_Holy,10;\n}\nif (.@r>=10) {\n bonus2 bMagicAtkEle,Ele_Holy,10;\n}\nif (.@r>=14) {\n bonus2 bMagicAtkEle,Ele_Holy,10;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (300012,'aegis_300012','Holy Skogul Card','Card',10,true,true,'.@r = getrefine();\nbonus bHealPower,5;\nif (.@r>=7) {\n bonus bHealPower,3;\n}\nif (.@r>=9) {\n bonus bHealPower,2;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (300013,'aegis_300013','Reginleif Card','Card',10,true,true,'bonus bUnbreakableArmor;\nbonus2 bAddClass,Class_All,30;\nbonus bMaxHPrate,-15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_armor`,`flag_buyingstore`,`script`,`unequip_script`) VALUES (300014,'aegis_300014','Ingrid Card','Card',10,true,true,'bonus bUnbreakableArmor;\nbonus2 bAddClass,Class_All,-15;\nbonus bMaxHPrate,40;\nbonus2 bHPLossRate,1000,4000;','heal -10000,0;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`flag_buyingstore`,`script`) VALUES (300015,'aegis_300015','Purple Ferus Card','Card',10,true,true,true,true,'bonus2 bAddClass,Class_All,3;\nbonus bMaxHPrate,-5;\nbonus bMaxSPrate,-5;\nbonus2 bAddClass,Class_All,(getrefine()/4);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (300016,'aegis_300016','Treasure Mimic Card','Card',10,true,true,'bonus bCritical,5;\nbonus bFlee,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (300017,'aegis_300017','Black Acidus Card','Card',10,true,true,'bonus2 bAddEle,Ele_Dark,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (300018,'aegis_300018','Silver Acidus Card','Card',10,true,true,'bonus2 bAddEle,Ele_Holy,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (300019,'aegis_300019','Bone Ferus Card','Card',10,true,true,'bonus2 bAddRace,RC_Dragon,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`flag_buyingstore`,`script`) VALUES (300020,'aegis_300020','Bone Acidus Card','Card',10,true,true,'bonus2 bAddRace,RC_Brute,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (300021,'aegis_300021','Bone Detardeurus Card','Card',10,true,true,'bonus2 bAddRace,RC_Undead,40;\nbonus2 bAddRace,RC_Dragon,40;\nbonus2 bAddEle,Ele_Ghost,40;\nbonus2 bAddEle,Ele_Undead,40;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_hand`) VALUES (300127,'aegis_300127','Wolf Card','Card',10,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_hand`,`script`) VALUES (300128,'aegis_300128','Wolf Lugenburg Card','Card',10,true,'bonus2 bAddRace,RC_Insect,15;\nbonus2 bMagicAddRace,RC_Insect,15;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_hand`) VALUES (300129,'aegis_300129','Poe Card','Card',10,true); @@ -3981,4 +4025,10 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`loc REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_garment`,`script`) VALUES (300149,'aegis_300149','Deep Sea Phen Card','Card',10,true,'bonus2 bSubEle,Ele_Neutral,15;\nbonus2 bMagicAtkEle,Ele_Wind,3*getrefine();'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`script`) VALUES (300150,'aegis_300150','Deep Sea King Dramoh Card','Card',10,true,true,true,'bonus bMaxHPrate,-5;\nbonus2 bAddClass,Class_All,(getrefine()/3);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_hand`,`script`) VALUES (300151,'aegis_300151','Deep Sea Kraken Card','Card',10,true,'bonus bLongAtkRate,25;\nbonus bPerfectHitRate,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (310076,'aegis_310076','STR Blessing','Card','bonus bStr,10;\nbonus bMdef,3;\nbonus bDef,25;\nbonus2 bAddClass,Class_All,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (310077,'aegis_310077','AGI Blessing','Card','bonus bAgi,10;\nbonus bMdef,3;\nbonus bDef,25;\nbonus bLongAtkRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (310078,'aegis_310078','VIT Blessing','Card','bonus bVit,10;\nbonus bMdef,3;\nbonus bDef,25;\nbonus bMaxHPrate,10;\nbonus bMaxSPrate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (310079,'aegis_310079','DEX Blessing','Card','bonus bDex,10;\nbonus bMdef,3;\nbonus bDef,25;\nbonus bAspdRate,10;\nbonus bVariableCastrate,-10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (310080,'aegis_310080','INT Blessing','Card','bonus bInt,10;\nbonus bMdef,3;\nbonus bDef,25;\nbonus bMatkRate,10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`script`) VALUES (310081,'aegis_310081','LUK Blessing','Card','bonus bLuk,10;\nbonus bMdef,3;\nbonus bDef,25;\nbonus bCritAtkRate,15;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`) VALUES (1000235,'aegis_1000235','Great Hunter\'s Mark','Etc'); From 1dc714cd5432fd8040bd00a584f763ecf0dae646 Mon Sep 17 00:00:00 2001 From: Atemo Date: Fri, 30 Oct 2020 01:27:21 +0100 Subject: [PATCH 42/45] Corrected the value of View and EquipLevelMin for 19628 according to aegis data (#5506) Fixed #5503 Thanks to @lChyztl ! --- db/re/item_db_equip.yml | 4 ++-- sql-files/item_db_re_equip.sql | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/db/re/item_db_equip.yml b/db/re/item_db_equip.yml index ba391614ea..4edd6a9154 100644 --- a/db/re/item_db_equip.yml +++ b/db/re/item_db_equip.yml @@ -73344,10 +73344,10 @@ Body: AegisName: C_Headset Name: Costume Headset Type: Armor + View: 87 Locations: Costume_Head_Top: true - EquipLevelMin: 1 - View: 97 + EquipLevelMin: 20 - Id: 19629 AegisName: C_Tiara Name: Costume Tiara diff --git a/sql-files/item_db_re_equip.sql b/sql-files/item_db_re_equip.sql index cbf35a98c5..c97e8dc267 100644 --- a/sql-files/item_db_re_equip.sql +++ b/sql-files/item_db_re_equip.sql @@ -3967,7 +3967,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_cos REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`view`) VALUES (19624,'C_Round_Eyes','Costume Blank Eyes','Armor',true,185); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`view`) VALUES (19625,'C_Bunny_Band','Costume Bunny Band','Armor',true,15); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19627,'C_Satellite_Hairband','Costume Satellite Hairband','Armor',true,1,266); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19628,'C_Headset','Costume Headset','Armor',true,1,97); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19628,'C_Headset','Costume Headset','Armor',true,20,87); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19629,'C_Tiara','Costume Tiara','Armor',20,true,1,19); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19630,'C_Crown','Costume Crown','Armor',10,true,1,45); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`equip_level_min`,`view`) VALUES (19631,'C_Poring_Fedora_Hat','Costume Poring Fedora Hat','Armor',true,1,919); From 45dc0448eb67efd429eed9c86b0e5c3f25718d8e Mon Sep 17 00:00:00 2001 From: Atemo Date: Fri, 30 Oct 2020 02:04:53 +0100 Subject: [PATCH 43/45] Corrected the 'Script' of item 24252, 24423, 24424 (#5507) Fixed #5501 Thanks to @computer294 ! --- db/re/item_db_equip.yml | 11 +++++------ sql-files/item_db_re_equip.sql | 6 +++--- 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/db/re/item_db_equip.yml b/db/re/item_db_equip.yml index 4edd6a9154..f0b0e7d448 100644 --- a/db/re/item_db_equip.yml +++ b/db/re/item_db_equip.yml @@ -86867,10 +86867,11 @@ Body: Type: Shadowgear Locations: Shadow_Left_Accessory: true - EquipLevelMin: 1 Refineable: true Script: | - .@r = getrefine(); bonus2 bSkillAtk,"AL_HOLYLIGHT",20+(5*.@r); + .@r = getrefine(); + bonus bMaxHP,.@r*10; + bonus2 bSkillAtk,"AL_HOLYLIGHT",50+(.@r*10); - Id: 24253 AegisName: S_Thief_Pendant Name: Thief Shadow Pendant @@ -88977,20 +88978,18 @@ Body: Type: Shadowgear Locations: Shadow_Weapon: true - EquipLevelMin: 1 Refineable: true Script: | - bonus2 bIgnoreDefClassRate,Class_Normal,5+(getrefine()/2); + bonus2 bIgnoreMdefClassRate,Class_Normal,5+(getrefine()/2); - Id: 24424 AegisName: S_Tempest_Armor Name: Tempest Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true - EquipLevelMin: 1 Refineable: true Script: | - bonus2 bIgnoreDefClassRate,Class_Normal,5+(getrefine()/2); + bonus2 bIgnoreMdefClassRate,Class_Normal,5+(getrefine()/2); - Id: 26007 AegisName: Illusion_Spectral_Spear Name: Illusion Spectral Spear diff --git a/sql-files/item_db_re_equip.sql b/sql-files/item_db_re_equip.sql index c97e8dc267..60f44f67f1 100644 --- a/sql-files/item_db_re_equip.sql +++ b/sql-files/item_db_re_equip.sql @@ -5227,7 +5227,7 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_sha REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24249,'S_Magician_Earring','Magician Shadow Earring','Shadowgear',true,1,true,'.@r = getrefine(); bonus2 bSkillUseSPrate,"MG_COLDBOLT",20+(3*.@r); bonus2 bSkillUseSPrate,"MG_FIREBOLT",20+(3*.@r); bonus2 bSkillUseSPrate,"MG_LIGHTNINGBOLT",20+(3*.@r);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24250,'S_Swordman_Pendant','Swordman Shadow Pendant','Shadowgear',true,1,true,'.@r = getrefine(); bonus2 bSkillAtk,"SM_MAGNUM",20+(5*.@r);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24251,'S_Merchant_Pendant','Merchant Shadow Pendant','Shadowgear',true,1,true,'.@r = getrefine(); bonus2 bSkillAtk,"MC_CARTREVOLUTION",20+(5*.@r);'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24252,'S_Acolyte_Pendant','Acolyte Shadow Pendant','Shadowgear',true,1,true,'.@r = getrefine(); bonus2 bSkillAtk,"AL_HOLYLIGHT",20+(5*.@r);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`refineable`,`script`) VALUES (24252,'S_Acolyte_Pendant','Acolyte Shadow Pendant','Shadowgear',true,true,'.@r = getrefine();\nbonus bMaxHP,.@r*10;\nbonus2 bSkillAtk,"AL_HOLYLIGHT",50+(.@r*10);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24253,'S_Thief_Pendant','Thief Shadow Pendant','Shadowgear',true,1,true,'.@r = getrefine(); bonus2 bSkillAtk,"TF_POISON",20+(5*.@r);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24254,'S_Magician_Pendant','Magician Shadow Pendant','Shadowgear',true,1,true,'.@r = getrefine(); bonus2 bSkillAtk,"MG_FIREWALL",20+5*.@r;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`script`) VALUES (24255,'S_Archer_Pendant','Archer Shadow Pendant','Shadowgear',true,1,true,'.@r = getrefine(); bonus2 bSkillAtk,"AC_SHOWER",20+(5*.@r);'); @@ -5397,8 +5397,8 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_sha REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_shoes`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (24419,'S_Temporal_Transcendent_Shoes','Temporal Transcendent Shadow Shoes','Shadowgear',true,1,true,100,true,true,true,true,true,true,true,'bonus bAspdRate,7;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_right_accessory`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (24420,'S_Temporal_Transcendent_Earring','Temporal Transcendent Shadow Earring','Shadowgear',true,1,true,100,true,true,true,true,true,true,true,'bonus bMatk,15;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_left_accessory`,`equip_level_min`,`refineable`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (24421,'S_Temporal_Transcendent_Pendant','Temporal Transcendent Shadow Pendant','Shadowgear',true,1,true,100,true,true,true,true,true,true,true,'bonus bBaseAtk,15;'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`equip_level_min`,`refineable`,`script`) VALUES (24423,'S_Tempest_Weapon','Tempest Shadow Weapon','Shadowgear',true,1,true,'bonus2 bIgnoreDefClassRate,Class_Normal,5+(getrefine()/2);'); -REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`equip_level_min`,`refineable`,`script`) VALUES (24424,'S_Tempest_Armor','Tempest Shadow Armor','Shadowgear',true,1,true,'bonus2 bIgnoreDefClassRate,Class_Normal,5+(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_weapon`,`refineable`,`script`) VALUES (24423,'S_Tempest_Weapon','Tempest Shadow Weapon','Shadowgear',true,true,'bonus2 bIgnoreMdefClassRate,Class_Normal,5+(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`location_shadow_armor`,`refineable`,`script`) VALUES (24424,'S_Tempest_Armor','Tempest Shadow Armor','Shadowgear',true,true,'bonus2 bIgnoreMdefClassRate,Class_Normal,5+(getrefine()/2);'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26007,'Illusion_Spectral_Spear','Illusion Spectral Spear','Weapon','2hSpear',20,2000,240,3,1,true,true,true,true,true,4,99,true,'.@r = getrefine(); .@val = 3*(.@r/2); bonus2 bAddEle,Ele_Dark,(20+.@val); bonus2 bAddRace,RC_Demon,(20+.@val); bonus2 bAddRace,RC_Undead,(20+.@val); bonus2 bSubRace,RC_Demon,(10+.@val); bonus2 bSubEle,Ele_Undead,(10+.@val); bonus2 bSubEle,Ele_Dark,(10+.@val); bonus bHPGainValue,50; bonus bSPGainValue,(.@r/2); bonus2 bAddEff2,Eff_Confusion,1000;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`weight`,`attack`,`range`,`slots`,`job_crusader`,`job_knight`,`class_third`,`class_third_upper`,`class_third_baby`,`location_left_hand`,`location_right_hand`,`weapon_level`,`equip_level_min`,`refineable`,`script`) VALUES (26016,'Royal_Knight\'s_Lance','Royal Knight\'s Lance','Weapon','2hSpear',20,1000,205,1,2,true,true,true,true,true,true,true,3,175,true,'.@r = getrefine(); bonus bLongAtkRate,3*(.@r/2); if (.@r>=7) bonus2 bAddClass,Class_All,5; if (.@r>=9) bonus2 bAddRace,RC_All,15;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`subtype`,`price_buy`,`attack`,`magic_attack`,`range`,`job_summoner`,`location_right_hand`,`weapon_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_notrade`,`trade_nocart`,`trade_nostorage`,`trade_noguildstorage`,`trade_nomail`,`trade_noauction`,`script`) VALUES (26100,'Paradise_Foxtail_Staff_II','Eden Group Foxtail Staff II','Weapon','Staff',20,135,165,1,true,true,2,40,100,true,true,true,true,true,true,true,'bonus bDex,4; bonus bInt,4; bonus bLongAtkRate,6;'); From 6d6e338495db8e3241bd117525b3875e2ddf86de Mon Sep 17 00:00:00 2001 From: Atemo Date: Fri, 30 Oct 2020 15:12:12 +0100 Subject: [PATCH 44/45] Added card from KRO patch (october 2019) (#5504) --- db/re/item_combo_db.txt | 21 + db/re/item_db_etc.yml | 766 +++++++++++++++++++++++++++++++++++ db/re/item_db_usable.yml | 2 +- sql-files/item_db_re_etc.sql | 50 +++ 4 files changed, 838 insertions(+), 1 deletion(-) diff --git a/db/re/item_combo_db.txt b/db/re/item_combo_db.txt index dce14d176e..abceecce5d 100644 --- a/db/re/item_combo_db.txt +++ b/db/re/item_combo_db.txt @@ -1611,3 +1611,24 @@ 310079:15400,{ bonus bFixedCast,-300; } 310080:15401,{ bonus2 bMagicAtkEle,Ele_All,12; bonus bVariableCastrate,-10; } 310081:15402,{ bonus2 bAddSize,Size_All,12; bonus bCritical,10; } +300076:300082:300089,{ bonus2 bSkillAtk,"LG_BANISHINGPOINT",20; bonus2 bSkillAtk,"LG_CANNONSPEAR",20; .@r_weapon = getequiprefinerycnt(EQI_HAND_R); .@r_shoes = getequiprefinerycnt(EQI_SHOES); bonus2 bSkillAtk,"LG_BANISHINGPOINT",5*(.@r_shoes/2); bonus2 bSkillAtk,"LG_CANNONSPEAR",5*(.@r_weapon/2); } +300077:27013:300092,{ bonus2 bSkillAtk,"NC_AXEBOOMERANG",20; bonus2 bSkillAtk,"NC_VULCANARM",20; .@r_weapon = getequiprefinerycnt(EQI_HAND_R); .@r_shoes = getequiprefinerycnt(EQI_SHOES); bonus2 bSkillAtk,"NC_VULCANARM",5*(.@r_shoes/2); bonus2 bSkillAtk,"NC_AXEBOOMERANG",5*(.@r_weapon/2); } +300101:300089:300094,{ bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",20; bonus2 bSkillAtk,"RK_DRAGONBREATH",20; .@r_weapon = getequiprefinerycnt(EQI_HAND_R); .@r_shoes = getequiprefinerycnt(EQI_SHOES); bonus2 bSkillAtk,"RK_DRAGONBREATH",5*(.@r_shoes/2); bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",5*(.@r_weapon/2); } +300102:4633:300092,{ bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",20; bonus2 bSkillAtk,"GN_CARTCANNON",20; .@r_weapon = getequiprefinerycnt(EQI_HAND_R); .@r_shoes = getequiprefinerycnt(EQI_SHOES); bonus2 bSkillAtk,"GN_CARTCANNON",5*(.@r_shoes/2); bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",5*(.@r_weapon/2); } +300104:300081:300124,{ bonus2 bSkillAtk,"SO_DIAMONDDUST",20; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",20; .@r_weapon = getequiprefinerycnt(EQI_HAND_R); .@r_shoes = getequiprefinerycnt(EQI_SHOES); bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",5*(.@r_shoes/2); bonus2 bSkillAtk,"SO_DIAMONDDUST",5*(.@r_weapon/2); } +300105:300081:300106,{ bonus2 bSkillAtk,"WL_CRIMSONROCK",20; bonus2 bSkillAtk,"WL_COMET",20; .@r_weapon = getequiprefinerycnt(EQI_HAND_R); .@r_shoes = getequiprefinerycnt(EQI_SHOES); bonus2 bSkillAtk,"WL_COMET",5*(.@r_shoes/2); bonus2 bSkillAtk,"WL_CRIMSONROCK",5*(.@r_weapon/2); } +300108:27172:300097,{ bonus2 bSkillAtk,"SC_FATALMENACE",20; bonus2 bSkillAtk,"SC_TRIANGLESHOT",20; .@r_weapon = getequiprefinerycnt(EQI_HAND_R); .@r_shoes = getequiprefinerycnt(EQI_SHOES); bonus2 bSkillAtk,"SC_FATALMENACE",5*(.@r_shoes/2); bonus2 bSkillAtk,"SC_TRIANGLESHOT",5*(.@r_weapon/2); } +300109:300097,{ bonus2 bSkillAtk,"GC_COUNTERSLASH",20; bonus2 bSkillAtk,"GC_ROLLINGCUTTER",20; .@r_shoes = getequiprefinerycnt(EQI_SHOES); bonus2 bSkillAtk,"GC_COUNTERSLASH",5*(.@r_shoes/3); bonus2 bSkillAtk,"GC_ROLLINGCUTTER",5*(.@r_shoes/3); } +300110:4575:300083,{ bonus2 bSkillAtk,"KO_BAKURETSU",20; bonus2 bSkillAtk,"KO_JYUMONJIKIRI",20; .@r_shoes = getequiprefinerycnt(EQI_SHOES); bonus2 bSkillAtk,"KO_BAKURETSU",5*(.@r_shoes/3); bonus2 bSkillAtk,"KO_JYUMONJIKIRI",5*(.@r_shoes/3); } +300111:27320:300083,{ bonus2 bSkillAtk,"NJ_KOUENKA",20; bonus2 bSkillAtk,"NJ_HYOUSENSOU",20; bonus2 bSkillAtk,"NJ_HUUJIN",20; .@r_shoes = getequiprefinerycnt(EQI_SHOES); bonus2 bSkillAtk,"NJ_KOUENKA",5*(.@r_shoes/3); bonus2 bSkillAtk,"NJ_HYOUSENSOU",5*(.@r_shoes/3); bonus2 bSkillAtk,"NJ_HUUJIN",5*(.@r_shoes/3); } +300112:300085:300114,{ bonus2 bSkillAtk,"SP_CURSEEXPLOSION",20; bonus2 bSkillAtk,"SP_SWHOO",20; .@r_weapon = getequiprefinerycnt(EQI_HAND_R); .@r_shoes = getequiprefinerycnt(EQI_SHOES); bonus2 bSkillAtk,"SP_CURSEEXPLOSION",5*(.@r_shoes/2); bonus2 bSkillAtk,"SP_SWHOO",5*(.@r_weapon/2); } +300113:300095:300096,{ bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",20; bonus2 bSkillAtk,"WM_REVERBERATION",20; .@r_weapon = getequiprefinerycnt(EQI_HAND_R); .@r_shoes = getequiprefinerycnt(EQI_SHOES); bonus2 bSkillAtk,"WM_REVERBERATION",5*(.@r_shoes/2); bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",5*(.@r_weapon/2); } +300115:27308:300093,{ bonus2 bSkillAtk,"AB_ADORAMUS",20; bonus2 bSkillAtk,"AB_JUDEX",20; .@r_weapon = getequiprefinerycnt(EQI_HAND_R); .@r_shoes = getequiprefinerycnt(EQI_SHOES); bonus2 bSkillAtk,"AB_ADORAMUS",5*(.@r_shoes/2); bonus2 bSkillAtk,"AB_JUDEX",5*(.@r_weapon/2); } +300116:27311:300093,{ bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",20; bonus2 bSkillAtk,"SR_TIGERCANNON",20; .@r_weapon = getequiprefinerycnt(EQI_HAND_R); .@r_shoes = getequiprefinerycnt(EQI_SHOES); bonus2 bSkillAtk,"SR_TIGERCANNON",5*(.@r_shoes/2); bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",5*(.@r_weapon/2); } +300117:4633:300095,{ bonus2 bSkillAtk,"RA_ARROWSTORM",20; bonus2 bSkillAtk,"RA_CLUSTERBOMB",20; .@r_weapon = getequiprefinerycnt(EQI_HAND_R); .@r_shoes = getequiprefinerycnt(EQI_SHOES); bonus2 bSkillAtk,"RA_CLUSTERBOMB",5*(.@r_shoes/2); bonus2 bSkillAtk,"RA_ARROWSTORM",5*(.@r_weapon/2); } +300118:300085:300088,{ bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK",20; bonus2 bSkillAtk,"SJ_FULLMOONKICK",20; .@r_weapon = getequiprefinerycnt(EQI_HAND_R); .@r_shoes = getequiprefinerycnt(EQI_SHOES); bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK",5*(.@r_shoes/2); bonus2 bSkillAtk,"SJ_FULLMOONKICK",5*(.@r_weapon/2); } +300119:27307:300091,{ bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",20; bonus2 bSkillAtk,"RL_R_TRIP",20; .@r_weapon = getequiprefinerycnt(EQI_HAND_R); .@r_shoes = getequiprefinerycnt(EQI_SHOES); bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",5*(.@r_shoes/2); bonus2 bSkillAtk,"RL_R_TRIP",5*(.@r_weapon/2); } +300120:27121,{ bonus2 bMagicAddEle,Ele_Water,15; bonus bMatk,10; } +300122:300121,{ bonus2 bSubEle,Ele_Neutral,5; } +300123:300121,{ bonus2 bSubEle,Ele_Neutral,5; } +300125:300087:300114,{ bonus2 bSkillAtk,"SU_CN_METEOR",20; bonus2 bSkillAtk,"SU_PICKYPECK",20; .@r_weapon = getequiprefinerycnt(EQI_HAND_R); .@r_shoes = getequiprefinerycnt(EQI_SHOES); bonus2 bSkillAtk,"SU_CN_METEOR",5*(.@r_shoes/2); bonus2 bSkillAtk,"SU_PICKYPECK",5*(.@r_weapon/2); } diff --git a/db/re/item_db_etc.yml b/db/re/item_db_etc.yml index 4ed3e771da..f1bda83176 100644 --- a/db/re/item_db_etc.yml +++ b/db/re/item_db_etc.yml @@ -38207,6 +38207,772 @@ Body: bonus2 bAddRace,RC_Dragon,40; bonus2 bAddEle,Ele_Ghost,40; bonus2 bAddEle,Ele_Undead,40; + - Id: 300076 + AegisName: aegis_300076 + Name: Broken Security Beta Card + Type: Card + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bVit,3; + bonus bMaxHPrate,10; + bonus2 bSkillAtk,"LG_BANISHINGPOINT",10; + bonus2 bSkillAtk,"LG_CANNONSPEAR",10; + - Id: 300077 + AegisName: aegis_300077 + Name: Broken Cleaning Robot Omega Card + Type: Card + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bVit,1; + bonus bDex,2; + bonus bMaxHPrate,10; + bonus2 bSkillAtk,"NC_AXEBOOMERANG",10; + bonus2 bSkillAtk,"NC_VULCANARM",10; + - Id: 300078 + AegisName: aegis_300078 + Name: Sweetie Card + Type: Card + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSkillAtk,"RL_FIREDANCE",60; + bonus bUseSPrate,25; + - Id: 300079 + AegisName: aegis_300079 + Name: Red Pepper Card + Type: Card + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bMagicAddRace,RC_Fish,30; + bonus2 bMagicAddRace,RC_Formless,30; + bonus2 bMagicAddEle,Ele_Holy,30; + bonus2 bMagicAddEle,Ele_Water,30; + - Id: 300080 + AegisName: aegis_300080 + Name: Greater Red Pepper Card + Type: Card + Weight: 10 + Locations: + Armor: true + Flags: + BuyingStore: true + Script: | + bonus2 bMagicAddRace,RC_Fish,50; + bonus2 bMagicAddRace,RC_Formless,50; + bonus2 bMagicAddEle,Ele_Holy,50; + bonus2 bMagicAddEle,Ele_Water,50; + - Id: 300081 + AegisName: aegis_300081 + Name: Research Assistant Bot Card + Type: Card + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bInt,2; + bonus bMaxHPrate,10; + bonus bMaxSPrate,10; + bonus2 bSkillAtk,"MG_FIREBALL",25; + - Id: 300082 + AegisName: aegis_300082 + Name: Greater Research Assistant Bot Card + Type: Card + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + if (getiteminfo(getequipid(EQI_HAND_R),11) == W_1HSPEAR || getiteminfo(getequipid(EQI_HAND_R),11) == W_2HSPEAR) { + bonus bLongAtkRate,10; + } + bonus bLongAtkRate,2*(getrefine()/2); + - Id: 300083 + AegisName: aegis_300083 + Name: Dried Rafflesia Card + Type: Card + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bAgi,2; + bonus bMaxHPrate,10; + bonus bMaxSPrate,10; + bonus2 bSkillAtk,"NJ_KUNAI",15; + bonus2 bSkillAtk,"NJ_HYOUSENSOU",15; + - Id: 300084 + AegisName: aegis_300084 + Name: Greater Dried Rafflesia Card + Type: Card + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubEle,Ele_Holy,30; + bonus bFlee,5; + - Id: 300085 + AegisName: aegis_300085 + Name: Special Alnoldi Card + Type: Card + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bStr,2; + bonus bMaxHPrate,10; + bonus bMaxSPrate,10; + bonus bBaseAtk,getskilllv("TK_POWER"); + - Id: 300086 + AegisName: aegis_300086 + Name: Greater Special Alnoldi Card + Type: Card + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + .@r = getrefine(); + if (getiteminfo(getequipid(EQI_HAND_R),11) == W_2HSWORD) { + bonus bShortAtkRate,10; + } + bonus bShortAtkRate,.@r; + if (.@r>=11) { + bonus bUnbreakableWeapon; + } + - Id: 300087 + AegisName: aegis_300087 + Name: Broken Gardener Beta Card + Type: Card + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bLuk,2; + bonus bMaxHPrate,10; + bonus bMaxSPrate,10; + bonus2 bSkillAtk,"SU_SV_STEMSPEAR",10; + bonus2 bSkillAtk,"SU_SCAROFTAROU",10; + - Id: 300088 + AegisName: aegis_300088 + Name: Greater_Broken Gardener Beta Card + Type: Card + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + .@r = getrefine(); + if (getiteminfo(getequipid(EQI_HAND_R),11) == W_BOOK) { + bonus2 bAddClass,Class_All,5; + bonus bHit,20; + } + bonus bShortAtkRate,.@r; + bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK",15*.@r; + bonus2 bSkillAtk,"SJ_FULLMOONKICK",15*.@r; + - Id: 300089 + AegisName: aegis_300089 + Name: Verporta Card + Type: Card + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bStr,2; + bonus bMaxHPrate,10; + bonus bMaxSPrate,10; + bonus2 bSkillAtk,"MS_MAGNUM",25; + - Id: 300090 + AegisName: aegis_300090 + Name: Verporte Card + Type: Card + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus2 bMagicAtkEle,Ele_Earth,10; + bonus bUseSPrate,5; + if (getrefine()>=9) { + bonus2 bMagicAtkEle,Ele_Earth,10; + } + - Id: 300091 + AegisName: aegis_300091 + Name: Papila Card + Type: Card + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bDex,2; + bonus bMaxHPrate,10; + bonus bMaxSPrate,10; + bonus2 bSkillAtk,"GS_SPREADATTACK",10; + bonus2 bSkillAtk,"GS_DESPERADO",10; + bonus2 bSkillAtk,"GS_FULLBUSTER",10; + - Id: 300092 + AegisName: aegis_300092 + Name: Greater Papila Card + Type: Card + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bLuk,2; + bonus bMaxHPrate,10; + bonus bMaxSPrate,10; + bonus2 bSkillAtk,"MC_CARTREVOLUTION",50; + - Id: 300093 + AegisName: aegis_300093 + Name: Papila Ruba Card + Type: Card + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bInt,2; + bonus bMaxHPrate,10; + bonus bMaxSPrate,10; + bonus2 bSkillAtk,"AL_HOLYLIGHT",50; + - Id: 300094 + AegisName: aegis_300094 + Name: Greater Papila Ruba Card + Type: Card + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + if (getiteminfo(getequipid(EQI_HAND_R),11) == W_2HSWORD) { + bonus bCritAtkRate,20; + } + bonus bCritAtkRate,2*(getrefine()/2); + - Id: 300095 + AegisName: aegis_300095 + Name: Papila Cae Card + Type: Card + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bDex,2; + bonus bMaxHPrate,10; + bonus bMaxSPrate,10; + bonus2 bSkillAtk,"AC_SHOWER",25; + - Id: 300096 + AegisName: aegis_300096 + Name: Greater Papila Cae Card + Type: Card + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + .@r = getrefine(); + if (getiteminfo(getequipid(EQI_HAND_R),11) == W_MUSICAL || getiteminfo(getequipid(EQI_HAND_R),11) == W_WHIP) { + bonus bMatk,20; + } + if (.@r>=10) { + bonus bVariableCastrate,-10; + bonus bMatk,20; + } + if (.@r>=13) { + bonus bMatk,20; + } + - Id: 300097 + AegisName: aegis_300097 + Name: Aries Card + Type: Card + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + bonus bAgi,2; + bonus bMaxHPrate,10; + bonus bMaxSPrate,10; + bonus2 bSkillAtk,"TF_POISON",25; + - Id: 300098 + AegisName: aegis_300098 + Name: Greater Aries Card + Type: Card + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus bMatk,5; + bonus2 bSkillAtk,"NJ_KOUENKA",10; + bonus2 bSkillAtk,"NJ_HYOUSENSOU",10; + bonus2 bSkillAtk,"NJ_HUUJIN",10; + if (getrefine()>=7) { + bonus bVariableCastrate,-5; + } + - Id: 300099 + AegisName: aegis_300099 + Name: Silva Papilia Card + Type: Card + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubClass,Class_Normal,20; + bonus bHealPower2,15; + - Id: 300100 + AegisName: aegis_300100 + Name: Gran Papilia Card + Type: Card + Weight: 10 + Locations: + Left_Hand: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubClass,Class_Boss,25; + bonus bHealPower2,30; + - Id: 300101 + AegisName: aegis_300101 + Name: Broken Cleaner Card + Type: Card + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bStr,3; + bonus bMaxHPrate,10; + bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",10; + bonus2 bSkillAtk,"RK_DRAGONBREATH",10; + - Id: 300102 + AegisName: aegis_300102 + Name: Bath Manager Card + Type: Card + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bInt,3; + bonus bMaxHPrate,10; + bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",10; + bonus2 bSkillAtk,"GN_CARTCANNON",10; + - Id: 300103 + AegisName: aegis_300103 + Name: Azure Princess Card + Type: Card + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + .@r = getrefine(); + bonus bMatk,15; + if (.@r>=9) { + bonus2 bMagicAddRace,RC_Fish,10; + bonus2 bMagicAddRace,RC_DemiHuman,10; + } + if (.@r>=11) { + bonus bDelayrate,-3; + } + - Id: 300104 + AegisName: aegis_300104 + Name: Bookworm Card + Type: Card + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bVit,1; + bonus bInt,2; + bonus bMaxHPrate,10; + bonus2 bSkillAtk,"SO_DIAMONDDUST",10; + bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",10; + - Id: 300105 + AegisName: aegis_300105 + Name: Roaming Spellbook Card + Type: Card + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bInt,3; + bonus bMaxHPrate,5; + bonus bMaxSPrate,5; + bonus2 bSkillAtk,"WL_CRIMSONROCK",10; + bonus2 bSkillAtk,"WL_COMET",10; + - Id: 300106 + AegisName: aegis_300106 + Name: Red Pitaya Card + Type: Card + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + .@r = getequiprefinerycnt(EQI_HAND_R); + if (getiteminfo(getequipid(EQI_HAND_R),11) == W_STAFF || getiteminfo(getequipid(EQI_HAND_R),11) == W_2HSTAFF) { + bonus2 bMagicAtkEle,Ele_Fire,10; + } + if (.@r>=10) { + bonus2 bMagicAtkEle,Ele_Fire,10; + } + if (.@r>=14) { + bonus2 bMagicAtkEle,Ele_Fire,10; + } + - Id: 300107 + AegisName: aegis_300107 + Name: Meow Card + Type: Card + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus2 bAddItemHealRate,513,500; + bonus2 bAddItemHealRate,512,500; + - Id: 300108 + AegisName: aegis_300108 + Name: Sewage Venenum Card + Type: Card + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bAgi,2; + bonus bDex,1; + bonus bMaxHPrate,10; + bonus2 bSkillAtk,"SC_FATALMENACE",10; + bonus2 bSkillAtk,"SC_TRIANGLESHOT",10; + - Id: 300109 + AegisName: aegis_300109 + Name: Sewage Cramp Card + Type: Card + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bStr,1; + bonus bDex,2; + bonus bMaxHPrate,10; + bonus2 bSkillAtk,"GC_COUNTERSLASH",10; + bonus2 bSkillAtk,"GC_ROLLINGCUTTER",10; + - Id: 300110 + AegisName: aegis_300110 + Name: Sewage Waterfall Card + Type: Card + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bAgi,2; + bonus bInt,1; + bonus bMaxHPrate,10; + bonus2 bSkillAtk,"KO_BAKURETSU",10; + bonus2 bSkillAtk,"KO_JYUMONJIKIRI",10; + - Id: 300111 + AegisName: aegis_300111 + Name: Elite Bellare Card + Type: Card + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bAgi,2; + bonus bInt,1; + bonus bMaxHPrate,10; + bonus2 bSkillAtk,"NJ_KOUENKA",10; + bonus2 bSkillAtk,"NJ_HYOUSENSOU",10; + bonus2 bSkillAtk,"NJ_HUUJIN",10; + - Id: 300112 + AegisName: aegis_300112 + Name: Magic-poisoned Dolor Card + Type: Card + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bVit,1; + bonus bInt,2; + bonus bMaxHPrate,10; + bonus2 bSkillAtk,"SP_CURSEEXPLOSION",10; + bonus2 bSkillAtk,"SP_SWHOO",10; + - Id: 300113 + AegisName: aegis_300113 + Name: Unleashed Magic Card + Type: Card + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bVit,1; + bonus bInt,2; + bonus bMaxHPrate,10; + bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",10; + bonus2 bSkillAtk,"WM_REVERBERATION",10; + - Id: 300114 + AegisName: aegis_300114 + Name: Magic-poisoned Plaga Card + Type: Card + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + .@r = getequiprefinerycnt(EQI_HAND_R); + if (getiteminfo(getequipid(EQI_HAND_R),11) == W_STAFF || getiteminfo(getequipid(EQI_HAND_R),11) == W_2HSTAFF) { + bonus2 bMagicAtkEle,Ele_Neutral,10; + } + if (.@r>=10) { + bonus2 bMagicAtkEle,Ele_Neutral,10; + } + if (.@r>=14) { + bonus2 bMagicAtkEle,Ele_Neutral,10; + } + - Id: 300115 + AegisName: aegis_300115 + Name: Magic-poisoned Sanare Card + Type: Card + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bInt,2; + bonus bDex,1; + bonus bMaxHPrate,10; + bonus2 bSkillAtk,"AB_ADORAMUS",10; + bonus2 bSkillAtk,"AB_JUDEX",10; + - Id: 300116 + AegisName: aegis_300116 + Name: Powerful Magic Card + Type: Card + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bStr,2; + bonus bInt,1; + bonus bMaxHPrate,10; + bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",10; + bonus2 bSkillAtk,"SR_TIGERCANNON",10; + - Id: 300117 + AegisName: aegis_300117 + Name: Sharp Magic Card + Type: Card + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bAgi,1; + bonus bDex,2; + bonus bMaxHPrate,10; + bonus2 bSkillAtk,"RA_ARROWSTORM",10; + bonus2 bSkillAtk,"RA_CLUSTERBOMB",10; + - Id: 300118 + AegisName: aegis_300118 + Name: Boiling Phen Card + Type: Card + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bStr,2; + bonus bVit,1; + bonus bMaxHPrate,10; + bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK",10; + bonus2 bSkillAtk,"SJ_FULLMOONKICK",10; + - Id: 300119 + AegisName: aegis_300119 + Name: Boiling Swordfish Card + Type: Card + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bAgi,1; + bonus bDex,2; + bonus bMaxHPrate,10; + bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",10; + bonus2 bSkillAtk,"RL_R_TRIP",10; + - Id: 300120 + AegisName: aegis_300120 + Name: Boiling Piranha Card + Type: Card + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bMatkRate,2; + - Id: 300121 + AegisName: aegis_300121 + Name: Boiling Marc Card + Type: Card + Weight: 10 + Locations: + Shoes: true + Flags: + BuyingStore: true + Script: | + .@r = getrefine(); + bonus2 bMagicAtkEle,Ele_Holy,5; + bonus2 bMagicAtkEle,Ele_Water,5; + bonus2 bMagicAtkEle,Ele_Holy,(.@r/2); + bonus2 bMagicAtkEle,Ele_Water,(.@r/2); + - Id: 300122 + AegisName: aegis_300122 + Name: Yellow Pitaya Card + Type: Card + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubEle,Ele_Neutral,15; + bonus2 bMagicAtkEle,Ele_Holy,3*getrefine(); + - Id: 300123 + AegisName: aegis_300123 + Name: Purple Pitaya Card + Type: Card + Weight: 10 + Locations: + Garment: true + Flags: + BuyingStore: true + Script: | + bonus2 bSubEle,Ele_Neutral,15; + bonus2 bMagicAtkEle,Ele_Neutral,3*getrefine(); + - Id: 300124 + AegisName: aegis_300124 + Name: Blue Pitaya Card + Type: Card + Weight: 10 + Locations: + Right_Hand: true + Flags: + BuyingStore: true + Script: | + .@r = getequiprefinerycnt(EQI_HAND_R); + if (getiteminfo(getequipid(EQI_HAND_R),11) == W_STAFF || getiteminfo(getequipid(EQI_HAND_R),11) == W_2HSTAFF) { + bonus2 bMagicAtkEle,Ele_Water,10; + } + if (.@r>=10) { + bonus2 bMagicAtkEle,Ele_Water,10; + } + if (.@r>=14) { + bonus2 bMagicAtkEle,Ele_Water,10; + } + - Id: 300125 + AegisName: aegis_300125 + Name: Green Pitaya Card + Type: Card + Weight: 10 + Locations: + Right_Accessory: true + Left_Accessory: true + Flags: + BuyingStore: true + Script: | + bonus bInt,1; + bonus bLuk,2; + bonus bMaxHPrate,10; + bonus2 bSkillAtk,"SU_CN_METEOR",10; + bonus2 bSkillAtk,"SU_PICKYPECK",10; - Id: 300127 AegisName: aegis_300127 Name: Wolf Card diff --git a/db/re/item_db_usable.yml b/db/re/item_db_usable.yml index 0e566c8d8a..845f446513 100644 --- a/db/re/item_db_usable.yml +++ b/db/re/item_db_usable.yml @@ -31534,7 +31534,7 @@ Body: NoMail: true NoAuction: true Script: | - warp "dali02",117,69; + warp "dali02",117,69; - Id: 14506 AegisName: Dun_Voucher Name: Dungeon 1 Hour Ticket diff --git a/sql-files/item_db_re_etc.sql b/sql-files/item_db_re_etc.sql index eaec6cf5ac..c17b17cf57 100644 --- a/sql-files/item_db_re_etc.sql +++ b/sql-files/item_db_re_etc.sql @@ -4009,6 +4009,56 @@ REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`loc REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (300019,'aegis_300019','Bone Ferus Card','Card',10,true,true,'bonus2 bAddRace,RC_Dragon,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`flag_buyingstore`,`script`) VALUES (300020,'aegis_300020','Bone Acidus Card','Card',10,true,true,'bonus2 bAddRace,RC_Brute,5;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (300021,'aegis_300021','Bone Detardeurus Card','Card',10,true,true,'bonus2 bAddRace,RC_Undead,40;\nbonus2 bAddRace,RC_Dragon,40;\nbonus2 bAddEle,Ele_Ghost,40;\nbonus2 bAddEle,Ele_Undead,40;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (300076,'aegis_300076','Broken Security Beta Card','Card',10,true,true,true,'bonus bVit,3;\nbonus bMaxHPrate,10;\nbonus2 bSkillAtk,"LG_BANISHINGPOINT",10;\nbonus2 bSkillAtk,"LG_CANNONSPEAR",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (300077,'aegis_300077','Broken Cleaning Robot Omega Card','Card',10,true,true,true,'bonus bVit,1;\nbonus bDex,2;\nbonus bMaxHPrate,10;\nbonus2 bSkillAtk,"NC_AXEBOOMERANG",10;\nbonus2 bSkillAtk,"NC_VULCANARM",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (300078,'aegis_300078','Sweetie Card','Card',10,true,true,'bonus2 bSkillAtk,"RL_FIREDANCE",60;\nbonus bUseSPrate,25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (300079,'aegis_300079','Red Pepper Card','Card',10,true,true,'bonus2 bMagicAddRace,RC_Fish,30;\nbonus2 bMagicAddRace,RC_Formless,30;\nbonus2 bMagicAddEle,Ele_Holy,30;\nbonus2 bMagicAddEle,Ele_Water,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_armor`,`flag_buyingstore`,`script`) VALUES (300080,'aegis_300080','Greater Red Pepper Card','Card',10,true,true,'bonus2 bMagicAddRace,RC_Fish,50;\nbonus2 bMagicAddRace,RC_Formless,50;\nbonus2 bMagicAddEle,Ele_Holy,50;\nbonus2 bMagicAddEle,Ele_Water,50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (300081,'aegis_300081','Research Assistant Bot Card','Card',10,true,true,'bonus bInt,2;\nbonus bMaxHPrate,10;\nbonus bMaxSPrate,10;\nbonus2 bSkillAtk,"MG_FIREBALL",25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (300082,'aegis_300082','Greater Research Assistant Bot Card','Card',10,true,true,'if (getiteminfo(getequipid(EQI_HAND_R),11) == W_1HSPEAR || getiteminfo(getequipid(EQI_HAND_R),11) == W_2HSPEAR) {\n bonus bLongAtkRate,10;\n}\nbonus bLongAtkRate,2*(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (300083,'aegis_300083','Dried Rafflesia Card','Card',10,true,true,'bonus bAgi,2;\nbonus bMaxHPrate,10;\nbonus bMaxSPrate,10;\nbonus2 bSkillAtk,"NJ_KUNAI",15;\nbonus2 bSkillAtk,"NJ_HYOUSENSOU",15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (300084,'aegis_300084','Greater Dried Rafflesia Card','Card',10,true,true,'bonus2 bSubEle,Ele_Holy,30;\nbonus bFlee,5;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (300085,'aegis_300085','Special Alnoldi Card','Card',10,true,true,'bonus bStr,2;\nbonus bMaxHPrate,10;\nbonus bMaxSPrate,10;\nbonus bBaseAtk,getskilllv("TK_POWER");'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (300086,'aegis_300086','Greater Special Alnoldi Card','Card',10,true,true,'.@r = getrefine();\nif (getiteminfo(getequipid(EQI_HAND_R),11) == W_2HSWORD) {\n bonus bShortAtkRate,10;\n}\nbonus bShortAtkRate,.@r;\nif (.@r>=11) {\n bonus bUnbreakableWeapon;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (300087,'aegis_300087','Broken Gardener Beta Card','Card',10,true,true,'bonus bLuk,2;\nbonus bMaxHPrate,10;\nbonus bMaxSPrate,10;\nbonus2 bSkillAtk,"SU_SV_STEMSPEAR",10;\nbonus2 bSkillAtk,"SU_SCAROFTAROU",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (300088,'aegis_300088','Greater_Broken Gardener Beta Card','Card',10,true,true,'.@r = getrefine();\nif (getiteminfo(getequipid(EQI_HAND_R),11) == W_BOOK) {\n bonus2 bAddClass,Class_All,5;\n bonus bHit,20;\n}\nbonus bShortAtkRate,.@r;\nbonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK",15*.@r;\nbonus2 bSkillAtk,"SJ_FULLMOONKICK",15*.@r;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (300089,'aegis_300089','Verporta Card','Card',10,true,true,'bonus bStr,2;\nbonus bMaxHPrate,10;\nbonus bMaxSPrate,10;\nbonus2 bSkillAtk,"MS_MAGNUM",25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (300090,'aegis_300090','Verporte Card','Card',10,true,true,'bonus2 bMagicAtkEle,Ele_Earth,10;\nbonus bUseSPrate,5;\nif (getrefine()>=9) {\n bonus2 bMagicAtkEle,Ele_Earth,10;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (300091,'aegis_300091','Papila Card','Card',10,true,true,'bonus bDex,2;\nbonus bMaxHPrate,10;\nbonus bMaxSPrate,10;\nbonus2 bSkillAtk,"GS_SPREADATTACK",10;\nbonus2 bSkillAtk,"GS_DESPERADO",10;\nbonus2 bSkillAtk,"GS_FULLBUSTER",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (300092,'aegis_300092','Greater Papila Card','Card',10,true,true,'bonus bLuk,2;\nbonus bMaxHPrate,10;\nbonus bMaxSPrate,10;\nbonus2 bSkillAtk,"MC_CARTREVOLUTION",50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (300093,'aegis_300093','Papila Ruba Card','Card',10,true,true,'bonus bInt,2;\nbonus bMaxHPrate,10;\nbonus bMaxSPrate,10;\nbonus2 bSkillAtk,"AL_HOLYLIGHT",50;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (300094,'aegis_300094','Greater Papila Ruba Card','Card',10,true,true,'if (getiteminfo(getequipid(EQI_HAND_R),11) == W_2HSWORD) {\n bonus bCritAtkRate,20;\n}\nbonus bCritAtkRate,2*(getrefine()/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (300095,'aegis_300095','Papila Cae Card','Card',10,true,true,'bonus bDex,2;\nbonus bMaxHPrate,10;\nbonus bMaxSPrate,10;\nbonus2 bSkillAtk,"AC_SHOWER",25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (300096,'aegis_300096','Greater Papila Cae Card','Card',10,true,true,'.@r = getrefine();\nif (getiteminfo(getequipid(EQI_HAND_R),11) == W_MUSICAL || getiteminfo(getequipid(EQI_HAND_R),11) == W_WHIP) {\n bonus bMatk,20;\n}\nif (.@r>=10) {\n bonus bVariableCastrate,-10;\n bonus bMatk,20;\n}\nif (.@r>=13) {\n bonus bMatk,20;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (300097,'aegis_300097','Aries Card','Card',10,true,true,'bonus bAgi,2;\nbonus bMaxHPrate,10;\nbonus bMaxSPrate,10;\nbonus2 bSkillAtk,"TF_POISON",25;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (300098,'aegis_300098','Greater Aries Card','Card',10,true,true,'bonus bMatk,5;\nbonus2 bSkillAtk,"NJ_KOUENKA",10;\nbonus2 bSkillAtk,"NJ_HYOUSENSOU",10;\nbonus2 bSkillAtk,"NJ_HUUJIN",10;\nif (getrefine()>=7) {\n bonus bVariableCastrate,-5;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (300099,'aegis_300099','Silva Papilia Card','Card',10,true,true,'bonus2 bSubClass,Class_Normal,20;\nbonus bHealPower2,15;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_left_hand`,`flag_buyingstore`,`script`) VALUES (300100,'aegis_300100','Gran Papilia Card','Card',10,true,true,'bonus2 bSubClass,Class_Boss,25;\nbonus bHealPower2,30;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (300101,'aegis_300101','Broken Cleaner Card','Card',10,true,true,true,'bonus bStr,3;\nbonus bMaxHPrate,10;\nbonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",10;\nbonus2 bSkillAtk,"RK_DRAGONBREATH",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (300102,'aegis_300102','Bath Manager Card','Card',10,true,true,true,'bonus bInt,3;\nbonus bMaxHPrate,10;\nbonus2 bSkillAtk,"GN_SPORE_EXPLOSION",10;\nbonus2 bSkillAtk,"GN_CARTCANNON",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (300103,'aegis_300103','Azure Princess Card','Card',10,true,true,'.@r = getrefine();\nbonus bMatk,15;\nif (.@r>=9) {\n bonus2 bMagicAddRace,RC_Fish,10;\n bonus2 bMagicAddRace,RC_DemiHuman,10;\n}\nif (.@r>=11) {\n bonus bDelayrate,-3;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (300104,'aegis_300104','Bookworm Card','Card',10,true,true,true,'bonus bVit,1;\nbonus bInt,2;\nbonus bMaxHPrate,10;\nbonus2 bSkillAtk,"SO_DIAMONDDUST",10;\nbonus2 bSkillAtk,"SO_PSYCHIC_WAVE",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (300105,'aegis_300105','Roaming Spellbook Card','Card',10,true,true,true,'bonus bInt,3;\nbonus bMaxHPrate,5;\nbonus bMaxSPrate,5;\nbonus2 bSkillAtk,"WL_CRIMSONROCK",10;\nbonus2 bSkillAtk,"WL_COMET",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (300106,'aegis_300106','Red Pitaya Card','Card',10,true,true,'.@r = getequiprefinerycnt(EQI_HAND_R);\nif (getiteminfo(getequipid(EQI_HAND_R),11) == W_STAFF || getiteminfo(getequipid(EQI_HAND_R),11) == W_2HSTAFF) {\n bonus2 bMagicAtkEle,Ele_Fire,10;\n}\nif (.@r>=10) {\n bonus2 bMagicAtkEle,Ele_Fire,10;\n}\nif (.@r>=14) {\n bonus2 bMagicAtkEle,Ele_Fire,10;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (300107,'aegis_300107','Meow Card','Card',10,true,true,true,'bonus2 bAddItemHealRate,513,500;\nbonus2 bAddItemHealRate,512,500;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (300108,'aegis_300108','Sewage Venenum Card','Card',10,true,true,true,'bonus bAgi,2;\nbonus bDex,1;\nbonus bMaxHPrate,10;\nbonus2 bSkillAtk,"SC_FATALMENACE",10;\nbonus2 bSkillAtk,"SC_TRIANGLESHOT",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (300109,'aegis_300109','Sewage Cramp Card','Card',10,true,true,true,'bonus bStr,1;\nbonus bDex,2;\nbonus bMaxHPrate,10;\nbonus2 bSkillAtk,"GC_COUNTERSLASH",10;\nbonus2 bSkillAtk,"GC_ROLLINGCUTTER",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (300110,'aegis_300110','Sewage Waterfall Card','Card',10,true,true,true,'bonus bAgi,2;\nbonus bInt,1;\nbonus bMaxHPrate,10;\nbonus2 bSkillAtk,"KO_BAKURETSU",10;\nbonus2 bSkillAtk,"KO_JYUMONJIKIRI",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (300111,'aegis_300111','Elite Bellare Card','Card',10,true,true,true,'bonus bAgi,2;\nbonus bInt,1;\nbonus bMaxHPrate,10;\nbonus2 bSkillAtk,"NJ_KOUENKA",10;\nbonus2 bSkillAtk,"NJ_HYOUSENSOU",10;\nbonus2 bSkillAtk,"NJ_HUUJIN",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (300112,'aegis_300112','Magic-poisoned Dolor Card','Card',10,true,true,true,'bonus bVit,1;\nbonus bInt,2;\nbonus bMaxHPrate,10;\nbonus2 bSkillAtk,"SP_CURSEEXPLOSION",10;\nbonus2 bSkillAtk,"SP_SWHOO",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (300113,'aegis_300113','Unleashed Magic Card','Card',10,true,true,true,'bonus bVit,1;\nbonus bInt,2;\nbonus bMaxHPrate,10;\nbonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",10;\nbonus2 bSkillAtk,"WM_REVERBERATION",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (300114,'aegis_300114','Magic-poisoned Plaga Card','Card',10,true,true,'.@r = getequiprefinerycnt(EQI_HAND_R);\nif (getiteminfo(getequipid(EQI_HAND_R),11) == W_STAFF || getiteminfo(getequipid(EQI_HAND_R),11) == W_2HSTAFF) {\n bonus2 bMagicAtkEle,Ele_Neutral,10;\n}\nif (.@r>=10) {\n bonus2 bMagicAtkEle,Ele_Neutral,10;\n}\nif (.@r>=14) {\n bonus2 bMagicAtkEle,Ele_Neutral,10;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (300115,'aegis_300115','Magic-poisoned Sanare Card','Card',10,true,true,true,'bonus bInt,2;\nbonus bDex,1;\nbonus bMaxHPrate,10;\nbonus2 bSkillAtk,"AB_ADORAMUS",10;\nbonus2 bSkillAtk,"AB_JUDEX",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (300116,'aegis_300116','Powerful Magic Card','Card',10,true,true,true,'bonus bStr,2;\nbonus bInt,1;\nbonus bMaxHPrate,10;\nbonus2 bSkillAtk,"SR_RAMPAGEBLASTER",10;\nbonus2 bSkillAtk,"SR_TIGERCANNON",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (300117,'aegis_300117','Sharp Magic Card','Card',10,true,true,true,'bonus bAgi,1;\nbonus bDex,2;\nbonus bMaxHPrate,10;\nbonus2 bSkillAtk,"RA_ARROWSTORM",10;\nbonus2 bSkillAtk,"RA_CLUSTERBOMB",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (300118,'aegis_300118','Boiling Phen Card','Card',10,true,true,true,'bonus bStr,2;\nbonus bVit,1;\nbonus bMaxHPrate,10;\nbonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK",10;\nbonus2 bSkillAtk,"SJ_FULLMOONKICK",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (300119,'aegis_300119','Boiling Swordfish Card','Card',10,true,true,true,'bonus bAgi,1;\nbonus bDex,2;\nbonus bMaxHPrate,10;\nbonus2 bSkillAtk,"RL_HAMMER_OF_GOD",10;\nbonus2 bSkillAtk,"RL_R_TRIP",10;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (300120,'aegis_300120','Boiling Piranha Card','Card',10,true,true,true,'bonus bMatkRate,2;'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_shoes`,`flag_buyingstore`,`script`) VALUES (300121,'aegis_300121','Boiling Marc Card','Card',10,true,true,'.@r = getrefine();\nbonus2 bMagicAtkEle,Ele_Holy,5;\nbonus2 bMagicAtkEle,Ele_Water,5;\nbonus2 bMagicAtkEle,Ele_Holy,(.@r/2);\nbonus2 bMagicAtkEle,Ele_Water,(.@r/2);'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (300122,'aegis_300122','Yellow Pitaya Card','Card',10,true,true,'bonus2 bSubEle,Ele_Neutral,15;\nbonus2 bMagicAtkEle,Ele_Holy,3*getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_garment`,`flag_buyingstore`,`script`) VALUES (300123,'aegis_300123','Purple Pitaya Card','Card',10,true,true,'bonus2 bSubEle,Ele_Neutral,15;\nbonus2 bMagicAtkEle,Ele_Neutral,3*getrefine();'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_hand`,`flag_buyingstore`,`script`) VALUES (300124,'aegis_300124','Blue Pitaya Card','Card',10,true,true,'.@r = getequiprefinerycnt(EQI_HAND_R);\nif (getiteminfo(getequipid(EQI_HAND_R),11) == W_STAFF || getiteminfo(getequipid(EQI_HAND_R),11) == W_2HSTAFF) {\n bonus2 bMagicAtkEle,Ele_Water,10;\n}\nif (.@r>=10) {\n bonus2 bMagicAtkEle,Ele_Water,10;\n}\nif (.@r>=14) {\n bonus2 bMagicAtkEle,Ele_Water,10;\n}'); +REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`flag_buyingstore`,`script`) VALUES (300125,'aegis_300125','Green Pitaya Card','Card',10,true,true,true,'bonus bInt,1;\nbonus bLuk,2;\nbonus bMaxHPrate,10;\nbonus2 bSkillAtk,"SU_CN_METEOR",10;\nbonus2 bSkillAtk,"SU_PICKYPECK",10;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_hand`) VALUES (300127,'aegis_300127','Wolf Card','Card',10,true); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_hand`,`script`) VALUES (300128,'aegis_300128','Wolf Lugenburg Card','Card',10,true,'bonus2 bAddRace,RC_Insect,15;\nbonus2 bMagicAddRace,RC_Insect,15;'); REPLACE INTO `item_db_re` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_hand`) VALUES (300129,'aegis_300129','Poe Card','Card',10,true); From 0964881a81a910dfc8b5ff02944e3f0fdf99488c Mon Sep 17 00:00:00 2001 From: Atemo Date: Fri, 30 Oct 2020 18:32:09 +0100 Subject: [PATCH 45/45] Small correction of getiteminfo script command (subtype shifted the values) (#5508) Fixed #5505 Thanks to @Triedge ! --- src/map/script.cpp | 109 ++++++++++++++++++++++++++++++++------------- 1 file changed, 79 insertions(+), 30 deletions(-) diff --git a/src/map/script.cpp b/src/map/script.cpp index 59e266aeb8..b4dceefc35 100644 --- a/src/map/script.cpp +++ b/src/map/script.cpp @@ -13959,23 +13959,48 @@ BUILDIN_FUNC(getitemslots) *------------------------------------------*/ BUILDIN_FUNC(getiteminfo) { - unsigned short n; - struct item_data *i_data; - t_itemid item_id = script_getnum(st,2); - n = script_getnum(st,3); - i_data = itemdb_exists(item_id); + item_data *i_data = itemdb_exists(item_id); - if (i_data && n <= 16) { - int *item_arr = (int*)&i_data->value_buy; -#ifndef RENEWAL - if (n == 16) - script_pushint(st,0); - else + if (i_data == nullptr) { + script_pushint(st, -1); + return SCRIPT_CMD_SUCCESS; + } + switch( script_getnum(st, 3) ) { + case 0: script_pushint(st, i_data->value_buy); break; + case 1: script_pushint(st, i_data->value_sell); break; + case 2: script_pushint(st, i_data->type); break; + case 3: script_pushint(st, i_data->maxchance); break; + case 4: script_pushint(st, i_data->sex); break; + case 5: script_pushint(st, i_data->equip); break; + case 6: script_pushint(st, i_data->weight); break; + case 7: script_pushint(st, i_data->atk); break; + case 8: script_pushint(st, i_data->def); break; + case 9: script_pushint(st, i_data->range); break; + case 10: script_pushint(st, i_data->slots); break; + case 11: + if (i_data->type == IT_WEAPON || i_data->type == IT_AMMO) { // keep old compatibility + script_pushint(st, i_data->subtype); + } else { + script_pushint(st, i_data->look); + } + break; + case 12: script_pushint(st, i_data->elv); break; + case 13: script_pushint(st, i_data->wlv); break; + case 14: script_pushint(st, i_data->view_id); break; + case 15: script_pushint(st, i_data->elvmax); break; + case 16: { +#ifdef RENEWAL + script_pushint(st, i_data->matk); +#else + script_pushint(st, 0); #endif - script_pushint(st,item_arr[n]); - } else - script_pushint(st,-1); + break; + } + default: + script_pushint(st, -1); + break; + } return SCRIPT_CMD_SUCCESS; } @@ -14006,27 +14031,51 @@ BUILDIN_FUNC(getiteminfo) *------------------------------------------*/ BUILDIN_FUNC(setiteminfo) { - int n,value; - struct item_data *i_data; - t_itemid item_id = script_getnum(st,2); - n = script_getnum(st,3); - value = script_getnum(st,4); - i_data = itemdb_exists(item_id); + item_data *i_data = itemdb_exists(item_id); -#ifndef RENEWAL - if( n == 16 ){ - script_pushint( st, -1 ); + if (i_data == nullptr) { + script_pushint(st, -1); return SCRIPT_CMD_SUCCESS; } -#endif + int value = script_getnum(st,4); - if (i_data && n>=0 && n<=16) { - int *item_arr = (int*)&i_data->value_buy; - item_arr[n] = value; - script_pushint(st,value); - } else - script_pushint(st,-1); + switch( script_getnum(st, 3) ) { + case 0: i_data->value_buy = static_cast(value); break; + case 1: i_data->value_sell = static_cast(value); break; + case 2: i_data->type = static_cast(value); break; + case 3: i_data->maxchance = static_cast(value); break; + case 4: i_data->sex = static_cast(value); break; + case 5: i_data->equip = static_cast(value); break; + case 6: i_data->weight = static_cast(value); break; + case 7: i_data->atk = static_cast(value); break; + case 8: i_data->def = static_cast(value); break; + case 9: i_data->range = static_cast(value); break; + case 10: i_data->slots = static_cast(value); break; + case 11: + if (i_data->type == IT_WEAPON || i_data->type == IT_AMMO) { // keep old compatibility + i_data->subtype = static_cast(value); + } else { + i_data->look = static_cast(value); + } + break; + case 12: i_data->elv = static_cast(value); break; + case 13: i_data->wlv = static_cast(value); break; + case 14: i_data->view_id = static_cast(value); break; + case 15: i_data->elvmax = static_cast(value); break; + case 16: { +#ifdef RENEWAL + i_data->matk = static_cast(value); +#else + value = 0; +#endif + break; + } + default: + script_pushint(st, -1); + break; + } + script_pushint(st, value); return SCRIPT_CMD_SUCCESS; }